CREATE TABLE `role` (
`roleid` bigint unsigned NOT NULL,
`name` varchar(255) DEFAULT '' NOT NULL,
`type` integer DEFAULT '0' NOT NULL,
`readonly` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (roleid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `role_1` ON `role` (`name`);
CREATE TABLE `users` (
`userid` bigint unsigned NOT NULL,
`username` varchar(100) DEFAULT '' NOT NULL,
`name` varchar(100) DEFAULT '' NOT NULL,
`surname` varchar(100) DEFAULT '' NOT NULL,
`passwd` varchar(60) DEFAULT '' NOT NULL,
`url` varchar(255) DEFAULT '' NOT NULL,
`autologin` integer DEFAULT '0' NOT NULL,
`autologout` varchar(32) DEFAULT '15m' NOT NULL,
`lang` varchar(7) DEFAULT 'default' NOT NULL,
`refresh` varchar(32) DEFAULT '30s' NOT NULL,
`theme` varchar(128) DEFAULT 'default' NOT NULL,
`attempt_failed` integer DEFAULT 0 NOT NULL,
`attempt_ip` varchar(39) DEFAULT '' NOT NULL,
`attempt_clock` integer DEFAULT 0 NOT NULL,
`rows_per_page` integer DEFAULT 50 NOT NULL,
`timezone` varchar(50) DEFAULT 'default' NOT NULL,
`roleid` bigint unsigned NOT NULL,
PRIMARY KEY (userid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `users_1` ON `users` (`username`);
CREATE TABLE `maintenances` (
`maintenanceid` bigint unsigned NOT NULL,
`name` varchar(128) DEFAULT '' NOT NULL,
`maintenance_type` integer DEFAULT '0' NOT NULL,
`description` text NOT NULL,
`active_since` integer DEFAULT '0' NOT NULL,
`active_till` integer DEFAULT '0' NOT NULL,
`tags_evaltype` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (maintenanceid)
) ENGINE=InnoDB;
CREATE INDEX `maintenances_1` ON `maintenances` (`active_since`,`active_till`);
CREATE UNIQUE INDEX `maintenances_2` ON `maintenances` (`name`);
CREATE TABLE `hosts` (
`hostid` bigint unsigned NOT NULL,
`proxy_hostid` bigint unsigned NULL,
`host` varchar(128) DEFAULT '' NOT NULL,
`status` integer DEFAULT '0' NOT NULL,
`lastaccess` integer DEFAULT '0' NOT NULL,
`ipmi_authtype` integer DEFAULT '-1' NOT NULL,
`ipmi_privilege` integer DEFAULT '2' NOT NULL,
`ipmi_username` varchar(16) DEFAULT '' NOT NULL,
`ipmi_password` varchar(20) DEFAULT '' NOT NULL,
`maintenanceid` bigint unsigned NULL,
`maintenance_status` integer DEFAULT '0' NOT NULL,
`maintenance_type` integer DEFAULT '0' NOT NULL,
`maintenance_from` integer DEFAULT '0' NOT NULL,
`name` varchar(128) DEFAULT '' NOT NULL,
`flags` integer DEFAULT '0' NOT NULL,
`templateid` bigint unsigned NULL,
`description` text NOT NULL,
`tls_connect` integer DEFAULT '1' NOT NULL,
`tls_accept` integer DEFAULT '1' NOT NULL,
`tls_issuer` varchar(1024) DEFAULT '' NOT NULL,
`tls_subject` varchar(1024) DEFAULT '' NOT NULL,
`tls_psk_identity` varchar(128) DEFAULT '' NOT NULL,
`tls_psk` varchar(512) DEFAULT '' NOT NULL,
`proxy_address` varchar(255) DEFAULT '' NOT NULL,
`auto_compress` integer DEFAULT '1' NOT NULL,
`discover` integer DEFAULT '0' NOT NULL,
`custom_interfaces` integer DEFAULT '0' NOT NULL,
`uuid` varchar(32) DEFAULT '' NOT NULL,
PRIMARY KEY (hostid)
) ENGINE=InnoDB;
CREATE INDEX `hosts_1` ON `hosts` (`host`);
CREATE INDEX `hosts_2` ON `hosts` (`status`);
CREATE INDEX `hosts_3` ON `hosts` (`proxy_hostid`);
CREATE INDEX `hosts_4` ON `hosts` (`name`);
CREATE INDEX `hosts_5` ON `hosts` (`maintenanceid`);
CREATE TABLE `hstgrp` (
`groupid` bigint unsigned NOT NULL,
`name` varchar(255) DEFAULT '' NOT NULL,
`internal` integer DEFAULT '0' NOT NULL,
`flags` integer DEFAULT '0' NOT NULL,
`uuid` varchar(32) DEFAULT '' NOT NULL,
PRIMARY KEY (groupid)
) ENGINE=InnoDB;
CREATE INDEX `hstgrp_1` ON `hstgrp` (`name`);
CREATE TABLE `group_prototype` (
`group_prototypeid` bigint unsigned NOT NULL,
`hostid` bigint unsigned NOT NULL,
`name` varchar(255) DEFAULT '' NOT NULL,
`groupid` bigint unsigned NULL,
`templateid` bigint unsigned NULL,
PRIMARY KEY (group_prototypeid)
) ENGINE=InnoDB;
CREATE INDEX `group_prototype_1` ON `group_prototype` (`hostid`);
CREATE TABLE `group_discovery` (
`groupid` bigint unsigned NOT NULL,
`parent_group_prototypeid` bigint unsigned NOT NULL,
`name` varchar(64) DEFAULT '' NOT NULL,
`lastcheck` integer DEFAULT '0' NOT NULL,
`ts_delete` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (groupid)
) ENGINE=InnoDB;
CREATE TABLE `drules` (
`druleid` bigint unsigned NOT NULL,
`proxy_hostid` bigint unsigned NULL,
`name` varchar(255) DEFAULT '' NOT NULL,
`iprange` varchar(2048) DEFAULT '' NOT NULL,
`delay` varchar(255) DEFAULT '1h' NOT NULL,
`nextcheck` integer DEFAULT '0' NOT NULL,
`status` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (druleid)
) ENGINE=InnoDB;
CREATE INDEX `drules_1` ON `drules` (`proxy_hostid`);
CREATE UNIQUE INDEX `drules_2` ON `drules` (`name`);
CREATE TABLE `dchecks` (
`dcheckid` bigint unsigned NOT NULL,
`druleid` bigint unsigned NOT NULL,
`type` integer DEFAULT '0' NOT NULL,
`key_` varchar(2048) DEFAULT '' NOT NULL,
`snmp_community` varchar(255) DEFAULT '' NOT NULL,
`ports` varchar(255) DEFAULT '0' NOT NULL,
`snmpv3_securityname` varchar(64) DEFAULT '' NOT NULL,
`snmpv3_securitylevel` integer DEFAULT '0' NOT NULL,
`snmpv3_authpassphrase` varchar(64) DEFAULT '' NOT NULL,
`snmpv3_privpassphrase` varchar(64) DEFAULT '' NOT NULL,
`uniq` integer DEFAULT '0' NOT NULL,
`snmpv3_authprotocol` integer DEFAULT '0' NOT NULL,
`snmpv3_privprotocol` integer DEFAULT '0' NOT NULL,
`snmpv3_contextname` varchar(255) DEFAULT '' NOT NULL,
`host_source` integer DEFAULT '1' NOT NULL,
`name_source` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (dcheckid)
) ENGINE=InnoDB;
CREATE INDEX `dchecks_1` ON `dchecks` (`druleid`,`host_source`,`name_source`);
CREATE TABLE `httptest` (
`httptestid` bigint unsigned NOT NULL,
`name` varchar(64) DEFAULT '' NOT NULL,
`nextcheck` integer DEFAULT '0' NOT NULL,
`delay` varchar(255) DEFAULT '1m' NOT NULL,
`status` integer DEFAULT '0' NOT NULL,
`agent` varchar(255) DEFAULT 'Zabbix' NOT NULL,
`authentication` integer DEFAULT '0' NOT NULL,
`http_user` varchar(64) DEFAULT '' NOT NULL,
`http_password` varchar(64) DEFAULT '' NOT NULL,
`hostid` bigint unsigned NOT NULL,
`templateid` bigint unsigned NULL,
`http_proxy` varchar(255) DEFAULT '' NOT NULL,
`retries` integer DEFAULT '1' NOT NULL,
`ssl_cert_file` varchar(255) DEFAULT '' NOT NULL,
`ssl_key_file` varchar(255) DEFAULT '' NOT NULL,
`ssl_key_password` varchar(64) DEFAULT '' NOT NULL,
`verify_peer` integer DEFAULT '0' NOT NULL,
`verify_host` integer DEFAULT '0' NOT NULL,
`uuid` varchar(32) DEFAULT '' NOT NULL,
PRIMARY KEY (httptestid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `httptest_2` ON `httptest` (`hostid`,`name`);
CREATE INDEX `httptest_3` ON `httptest` (`status`);
CREATE INDEX `httptest_4` ON `httptest` (`templateid`);
CREATE TABLE `httpstep` (
`httpstepid` bigint unsigned NOT NULL,
`httptestid` bigint unsigned NOT NULL,
`name` varchar(64) DEFAULT '' NOT NULL,
`no` integer DEFAULT '0' NOT NULL,
`url` varchar(2048) DEFAULT '' NOT NULL,
`timeout` varchar(255) DEFAULT '15s' NOT NULL,
`posts` text NOT NULL,
`required` varchar(255) DEFAULT '' NOT NULL,
`status_codes` varchar(255) DEFAULT '' NOT NULL,
`follow_redirects` integer DEFAULT '1' NOT NULL,
`retrieve_mode` integer DEFAULT '0' NOT NULL,
`post_type` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (httpstepid)
) ENGINE=InnoDB;
CREATE INDEX `httpstep_1` ON `httpstep` (`httptestid`);
CREATE TABLE `interface` (
`interfaceid` bigint unsigned NOT NULL,
`hostid` bigint unsigned NOT NULL,
`main` integer DEFAULT '0' NOT NULL,
`type` integer DEFAULT '1' NOT NULL,
`useip` integer DEFAULT '1' NOT NULL,
`ip` varchar(64) DEFAULT '127.0.0.1' NOT NULL,
`dns` varchar(255) DEFAULT '' NOT NULL,
`port` varchar(64) DEFAULT '10050' NOT NULL,
`available` integer DEFAULT '0' NOT NULL,
`error` varchar(2048) DEFAULT '' NOT NULL,
`errors_from` integer DEFAULT '0' NOT NULL,
`disable_until` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (interfaceid)
) ENGINE=InnoDB;
CREATE INDEX `interface_1` ON `interface` (`hostid`,`type`);
CREATE INDEX `interface_2` ON `interface` (`ip`,`dns`);
CREATE INDEX `interface_3` ON `interface` (`available`);
CREATE TABLE `valuemap` (
`valuemapid` bigint unsigned NOT NULL,
`hostid` bigint unsigned NOT NULL,
`name` varchar(64) DEFAULT '' NOT NULL,
`uuid` varchar(32) DEFAULT '' NOT NULL,
PRIMARY KEY (valuemapid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `valuemap_1` ON `valuemap` (`hostid`,`name`);
CREATE TABLE `items` (
`itemid` bigint unsigned NOT NULL,
`type` integer DEFAULT '0' NOT NULL,
`snmp_oid` varchar(512) DEFAULT '' NOT NULL,
`hostid` bigint unsigned NOT NULL,
`name` varchar(255) DEFAULT '' NOT NULL,
`key_` varchar(2048) DEFAULT '' NOT NULL,
`delay` varchar(1024) DEFAULT '0' NOT NULL,
`history` varchar(255) DEFAULT '90d' NOT NULL,
`trends` varchar(255) DEFAULT '365d' NOT NULL,
`status` integer DEFAULT '0' NOT NULL,
`value_type` integer DEFAULT '0' NOT NULL,
`trapper_hosts` varchar(255) DEFAULT '' NOT NULL,
`units` varchar(255) DEFAULT '' NOT NULL,
`formula` varchar(255) DEFAULT '' NOT NULL,
`logtimefmt` varchar(64) DEFAULT '' NOT NULL,
`templateid` bigint unsigned NULL,
`valuemapid` bigint unsigned NULL,
`params` text NOT NULL,
`ipmi_sensor` varchar(128) DEFAULT '' NOT NULL,
`authtype` integer DEFAULT '0' NOT NULL,
`username` varchar(64) DEFAULT '' NOT NULL,
`password` varchar(64) DEFAULT '' NOT NULL,
`publickey` varchar(64) DEFAULT '' NOT NULL,
`privatekey` varchar(64) DEFAULT '' NOT NULL,
`flags` integer DEFAULT '0' NOT NULL,
`interfaceid` bigint unsigned NULL,
`description` text NOT NULL,
`inventory_link` integer DEFAULT '0' NOT NULL,
`lifetime` varchar(255) DEFAULT '30d' NOT NULL,
`evaltype` integer DEFAULT '0' NOT NULL,
`jmx_endpoint` varchar(255) DEFAULT '' NOT NULL,
`master_itemid` bigint unsigned NULL,
`timeout` varchar(255) DEFAULT '3s' NOT NULL,
`url` varchar(2048) DEFAULT '' NOT NULL,
`query_fields` varchar(2048) DEFAULT '' NOT NULL,
`posts` text NOT NULL,
`status_codes` varchar(255) DEFAULT '200' NOT NULL,
`follow_redirects` integer DEFAULT '1' NOT NULL,
`post_type` integer DEFAULT '0' NOT NULL,
`http_proxy` varchar(255) DEFAULT '' NOT NULL,
`headers` text NOT NULL,
`retrieve_mode` integer DEFAULT '0' NOT NULL,
`request_method` integer DEFAULT '0' NOT NULL,
`output_format` integer DEFAULT '0' NOT NULL,
`ssl_cert_file` varchar(255) DEFAULT '' NOT NULL,
`ssl_key_file` varchar(255) DEFAULT '' NOT NULL,
`ssl_key_password` varchar(64) DEFAULT '' NOT NULL,
`verify_peer` integer DEFAULT '0' NOT NULL,
`verify_host` integer DEFAULT '0' NOT NULL,
`allow_traps` integer DEFAULT '0' NOT NULL,
`discover` integer DEFAULT '0' NOT NULL,
`uuid` varchar(32) DEFAULT '' NOT NULL,
PRIMARY KEY (itemid)
) ENGINE=InnoDB;
CREATE INDEX `items_1` ON `items` (`hostid`,`key_`(764));
CREATE INDEX `items_3` ON `items` (`status`);
CREATE INDEX `items_4` ON `items` (`templateid`);
CREATE INDEX `items_5` ON `items` (`valuemapid`);
CREATE INDEX `items_6` ON `items` (`interfaceid`);
CREATE INDEX `items_7` ON `items` (`master_itemid`);
CREATE INDEX `items_8` ON `items` (`key_`(768));
CREATE TABLE `httpstepitem` (
`httpstepitemid` bigint unsigned NOT NULL,
`httpstepid` bigint unsigned NOT NULL,
`itemid` bigint unsigned NOT NULL,
`type` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (httpstepitemid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `httpstepitem_1` ON `httpstepitem` (`httpstepid`,`itemid`);
CREATE INDEX `httpstepitem_2` ON `httpstepitem` (`itemid`);
CREATE TABLE `httptestitem` (
`httptestitemid` bigint unsigned NOT NULL,
`httptestid` bigint unsigned NOT NULL,
`itemid` bigint unsigned NOT NULL,
`type` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (httptestitemid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `httptestitem_1` ON `httptestitem` (`httptestid`,`itemid`);
CREATE INDEX `httptestitem_2` ON `httptestitem` (`itemid`);
CREATE TABLE `media_type` (
`mediatypeid` bigint unsigned NOT NULL,
`type` integer DEFAULT '0' NOT NULL,
`name` varchar(100) DEFAULT '' NOT NULL,
`smtp_server` varchar(255) DEFAULT '' NOT NULL,
`smtp_helo` varchar(255) DEFAULT '' NOT NULL,
`smtp_email` varchar(255) DEFAULT '' NOT NULL,
`exec_path` varchar(255) DEFAULT '' NOT NULL,
`gsm_modem` varchar(255) DEFAULT '' NOT NULL,
`username` varchar(255) DEFAULT '' NOT NULL,
`passwd` varchar(255) DEFAULT '' NOT NULL,
`status` integer DEFAULT '0' NOT NULL,
`smtp_port` integer DEFAULT '25' NOT NULL,
`smtp_security` integer DEFAULT '0' NOT NULL,
`smtp_verify_peer` integer DEFAULT '0' NOT NULL,
`smtp_verify_host` integer DEFAULT '0' NOT NULL,
`smtp_authentication` integer DEFAULT '0' NOT NULL,
`exec_params` varchar(255) DEFAULT '' NOT NULL,
`maxsessions` integer DEFAULT '1' NOT NULL,
`maxattempts` integer DEFAULT '3' NOT NULL,
`attempt_interval` varchar(32) DEFAULT '10s' NOT NULL,
`content_type` integer DEFAULT '1' NOT NULL,
`script` text NOT NULL,
`timeout` varchar(32) DEFAULT '30s' NOT NULL,
`process_tags` integer DEFAULT '0' NOT NULL,
`show_event_menu` integer DEFAULT '0' NOT NULL,
`event_menu_url` varchar(2048) DEFAULT '' NOT NULL,
`event_menu_name` varchar(255) DEFAULT '' NOT NULL,
`description` text NOT NULL,
PRIMARY KEY (mediatypeid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `media_type_1` ON `media_type` (`name`);
CREATE TABLE `media_type_param` (
`mediatype_paramid` bigint unsigned NOT NULL,
`mediatypeid` bigint unsigned NOT NULL,
`name` varchar(255) DEFAULT '' NOT NULL,
`value` varchar(2048) DEFAULT '' NOT NULL,
PRIMARY KEY (mediatype_paramid)
) ENGINE=InnoDB;
CREATE INDEX `media_type_param_1` ON `media_type_param` (`mediatypeid`);
CREATE TABLE `media_type_message` (
`mediatype_messageid` bigint unsigned NOT NULL,
`mediatypeid` bigint unsigned NOT NULL,
`eventsource` integer NOT NULL,
`recovery` integer NOT NULL,
`subject` varchar(255) DEFAULT '' NOT NULL,
`message` text NOT NULL,
PRIMARY KEY (mediatype_messageid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `media_type_message_1` ON `media_type_message` (`mediatypeid`,`eventsource`,`recovery`);
CREATE TABLE `usrgrp` (
`usrgrpid` bigint unsigned NOT NULL,
`name` varchar(64) DEFAULT '' NOT NULL,
`gui_access` integer DEFAULT '0' NOT NULL,
`users_status` integer DEFAULT '0' NOT NULL,
`debug_mode` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (usrgrpid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `usrgrp_1` ON `usrgrp` (`name`);
CREATE TABLE `users_groups` (
`id` bigint unsigned NOT NULL,
`usrgrpid` bigint unsigned NOT NULL,
`userid` bigint unsigned NOT NULL,
PRIMARY KEY (id)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `users_groups_1` ON `users_groups` (`usrgrpid`,`userid`);
CREATE INDEX `users_groups_2` ON `users_groups` (`userid`);
CREATE TABLE `scripts` (
`scriptid` bigint unsigned NOT NULL,
`name` varchar(255) DEFAULT '' NOT NULL,
`command` text NOT NULL,
`host_access` integer DEFAULT '2' NOT NULL,
`usrgrpid` bigint unsigned NULL,
`groupid` bigint unsigned NULL,
`description` text NOT NULL,
`confirmation` varchar(255) DEFAULT '' NOT NULL,
`type` integer DEFAULT '5' NOT NULL,
`execute_on` integer DEFAULT '2' NOT NULL,
`timeout` varchar(32) DEFAULT '30s' NOT NULL,
`scope` integer DEFAULT '1' NOT NULL,
`port` varchar(64) DEFAULT '' NOT NULL,
`authtype` integer DEFAULT '0' NOT NULL,
`username` varchar(64) DEFAULT '' NOT NULL,
`password` varchar(64) DEFAULT '' NOT NULL,
`publickey` varchar(64) DEFAULT '' NOT NULL,
`privatekey` varchar(64) DEFAULT '' NOT NULL,
`menu_path` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (scriptid)
) ENGINE=InnoDB;
CREATE INDEX `scripts_1` ON `scripts` (`usrgrpid`);
CREATE INDEX `scripts_2` ON `scripts` (`groupid`);
CREATE UNIQUE INDEX `scripts_3` ON `scripts` (`name`);
CREATE TABLE `script_param` (
`script_paramid` bigint unsigned NOT NULL,
`scriptid` bigint unsigned NOT NULL,
`name` varchar(255) DEFAULT '' NOT NULL,
`value` varchar(2048) DEFAULT '' NOT NULL,
PRIMARY KEY (script_paramid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `script_param_1` ON `script_param` (`scriptid`,`name`);
CREATE TABLE `actions` (
`actionid` bigint unsigned NOT NULL,
`name` varchar(255) DEFAULT '' NOT NULL,
`eventsource` integer DEFAULT '0' NOT NULL,
`evaltype` integer DEFAULT '0' NOT NULL,
`status` integer DEFAULT '0' NOT NULL,
`esc_period` varchar(255) DEFAULT '1h' NOT NULL,
`formula` varchar(1024) DEFAULT '' NOT NULL,
`pause_suppressed` integer DEFAULT '1' NOT NULL,
`notify_if_canceled` integer DEFAULT '1' NOT NULL,
PRIMARY KEY (actionid)
) ENGINE=InnoDB;
CREATE INDEX `actions_1` ON `actions` (`eventsource`,`status`);
CREATE UNIQUE INDEX `actions_2` ON `actions` (`name`);
CREATE TABLE `operations` (
`operationid` bigint unsigned NOT NULL,
`actionid` bigint unsigned NOT NULL,
`operationtype` integer DEFAULT '0' NOT NULL,
`esc_period` varchar(255) DEFAULT '0' NOT NULL,
`esc_step_from` integer DEFAULT '1' NOT NULL,
`esc_step_to` integer DEFAULT '1' NOT NULL,
`evaltype` integer DEFAULT '0' NOT NULL,
`recovery` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (operationid)
) ENGINE=InnoDB;
CREATE INDEX `operations_1` ON `operations` (`actionid`);
CREATE TABLE `opmessage` (
`operationid` bigint unsigned NOT NULL,
`default_msg` integer DEFAULT '1' NOT NULL,
`subject` varchar(255) DEFAULT '' NOT NULL,
`message` text NOT NULL,
`mediatypeid` bigint unsigned NULL,
PRIMARY KEY (operationid)
) ENGINE=InnoDB;
CREATE INDEX `opmessage_1` ON `opmessage` (`mediatypeid`);
CREATE TABLE `opmessage_grp` (
`opmessage_grpid` bigint unsigned NOT NULL,
`operationid` bigint unsigned NOT NULL,
`usrgrpid` bigint unsigned NOT NULL,
PRIMARY KEY (opmessage_grpid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `opmessage_grp_1` ON `opmessage_grp` (`operationid`,`usrgrpid`);
CREATE INDEX `opmessage_grp_2` ON `opmessage_grp` (`usrgrpid`);
CREATE TABLE `opmessage_usr` (
`opmessage_usrid` bigint unsigned NOT NULL,
`operationid` bigint unsigned NOT NULL,
`userid` bigint unsigned NOT NULL,
PRIMARY KEY (opmessage_usrid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `opmessage_usr_1` ON `opmessage_usr` (`operationid`,`userid`);
CREATE INDEX `opmessage_usr_2` ON `opmessage_usr` (`userid`);
CREATE TABLE `opcommand` (
`operationid` bigint unsigned NOT NULL,
`scriptid` bigint unsigned NOT NULL,
PRIMARY KEY (operationid)
) ENGINE=InnoDB;
CREATE INDEX `opcommand_1` ON `opcommand` (`scriptid`);
CREATE TABLE `opcommand_hst` (
`opcommand_hstid` bigint unsigned NOT NULL,
`operationid` bigint unsigned NOT NULL,
`hostid` bigint unsigned NULL,
PRIMARY KEY (opcommand_hstid)
) ENGINE=InnoDB;
CREATE INDEX `opcommand_hst_1` ON `opcommand_hst` (`operationid`);
CREATE INDEX `opcommand_hst_2` ON `opcommand_hst` (`hostid`);
CREATE TABLE `opcommand_grp` (
`opcommand_grpid` bigint unsigned NOT NULL,
`operationid` bigint unsigned NOT NULL,
`groupid` bigint unsigned NOT NULL,
PRIMARY KEY (opcommand_grpid)
) ENGINE=InnoDB;
CREATE INDEX `opcommand_grp_1` ON `opcommand_grp` (`operationid`);
CREATE INDEX `opcommand_grp_2` ON `opcommand_grp` (`groupid`);
CREATE TABLE `opgroup` (
`opgroupid` bigint unsigned NOT NULL,
`operationid` bigint unsigned NOT NULL,
`groupid` bigint unsigned NOT NULL,
PRIMARY KEY (opgroupid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `opgroup_1` ON `opgroup` (`operationid`,`groupid`);
CREATE INDEX `opgroup_2` ON `opgroup` (`groupid`);
CREATE TABLE `optemplate` (
`optemplateid` bigint unsigned NOT NULL,
`operationid` bigint unsigned NOT NULL,
`templateid` bigint unsigned NOT NULL,
PRIMARY KEY (optemplateid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `optemplate_1` ON `optemplate` (`operationid`,`templateid`);
CREATE INDEX `optemplate_2` ON `optemplate` (`templateid`);
CREATE TABLE `opconditions` (
`opconditionid` bigint unsigned NOT NULL,
`operationid` bigint unsigned NOT NULL,
`conditiontype` integer DEFAULT '0' NOT NULL,
`operator` integer DEFAULT '0' NOT NULL,
`value` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (opconditionid)
) ENGINE=InnoDB;
CREATE INDEX `opconditions_1` ON `opconditions` (`operationid`);
CREATE TABLE `conditions` (
`conditionid` bigint unsigned NOT NULL,
`actionid` bigint unsigned NOT NULL,
`conditiontype` integer DEFAULT '0' NOT NULL,
`operator` integer DEFAULT '0' NOT NULL,
`value` varchar(255) DEFAULT '' NOT NULL,
`value2` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (conditionid)
) ENGINE=InnoDB;
CREATE INDEX `conditions_1` ON `conditions` (`actionid`);
CREATE TABLE `config` (
`configid` bigint unsigned NOT NULL,
`work_period` varchar(255) DEFAULT '1-5,09:00-18:00' NOT NULL,
`alert_usrgrpid` bigint unsigned NULL,
`default_theme` varchar(128) DEFAULT 'blue-theme' NOT NULL,
`authentication_type` integer DEFAULT '0' NOT NULL,
`ldap_host` varchar(255) DEFAULT '' NOT NULL,
`ldap_port` integer DEFAULT 389 NOT NULL,
`ldap_base_dn` varchar(255) DEFAULT '' NOT NULL,
`ldap_bind_dn` varchar(255) DEFAULT '' NOT NULL,
`ldap_bind_password` varchar(128) DEFAULT '' NOT NULL,
`ldap_search_attribute` varchar(128) DEFAULT '' NOT NULL,
`discovery_groupid` bigint unsigned NOT NULL,
`max_in_table` integer DEFAULT '50' NOT NULL,
`search_limit` integer DEFAULT '1000' NOT NULL,
`severity_color_0` varchar(6) DEFAULT '97AAB3' NOT NULL,
`severity_color_1` varchar(6) DEFAULT '7499FF' NOT NULL,
`severity_color_2` varchar(6) DEFAULT 'FFC859' NOT NULL,
`severity_color_3` varchar(6) DEFAULT 'FFA059' NOT NULL,
`severity_color_4` varchar(6) DEFAULT 'E97659' NOT NULL,
`severity_color_5` varchar(6) DEFAULT 'E45959' NOT NULL,
`severity_name_0` varchar(32) DEFAULT 'Not classified' NOT NULL,
`severity_name_1` varchar(32) DEFAULT 'Information' NOT NULL,
`severity_name_2` varchar(32) DEFAULT 'Warning' NOT NULL,
`severity_name_3` varchar(32) DEFAULT 'Average' NOT NULL,
`severity_name_4` varchar(32) DEFAULT 'High' NOT NULL,
`severity_name_5` varchar(32) DEFAULT 'Disaster' NOT NULL,
`ok_period` varchar(32) DEFAULT '5m' NOT NULL,
`blink_period` varchar(32) DEFAULT '2m' NOT NULL,
`problem_unack_color` varchar(6) DEFAULT 'CC0000' NOT NULL,
`problem_ack_color` varchar(6) DEFAULT 'CC0000' NOT NULL,
`ok_unack_color` varchar(6) DEFAULT '009900' NOT NULL,
`ok_ack_color` varchar(6) DEFAULT '009900' NOT NULL,
`problem_unack_style` integer DEFAULT '1' NOT NULL,
`problem_ack_style` integer DEFAULT '1' NOT NULL,
`ok_unack_style` integer DEFAULT '1' NOT NULL,
`ok_ack_style` integer DEFAULT '1' NOT NULL,
`snmptrap_logging` integer DEFAULT '1' NOT NULL,
`server_check_interval` integer DEFAULT '10' NOT NULL,
`hk_events_mode` integer DEFAULT '1' NOT NULL,
`hk_events_trigger` varchar(32) DEFAULT '365d' NOT NULL,
`hk_events_internal` varchar(32) DEFAULT '1d' NOT NULL,
`hk_events_discovery` varchar(32) DEFAULT '1d' NOT NULL,
`hk_events_autoreg` varchar(32) DEFAULT '1d' NOT NULL,
`hk_services_mode` integer DEFAULT '1' NOT NULL,
`hk_services` varchar(32) DEFAULT '365d' NOT NULL,
`hk_audit_mode` integer DEFAULT '1' NOT NULL,
`hk_audit` varchar(32) DEFAULT '365d' NOT NULL,
`hk_sessions_mode` integer DEFAULT '1' NOT NULL,
`hk_sessions` varchar(32) DEFAULT '365d' NOT NULL,
`hk_history_mode` integer DEFAULT '1' NOT NULL,
`hk_history_global` integer DEFAULT '0' NOT NULL,
`hk_history` varchar(32) DEFAULT '90d' NOT NULL,
`hk_trends_mode` integer DEFAULT '1' NOT NULL,
`hk_trends_global` integer DEFAULT '0' NOT NULL,
`hk_trends` varchar(32) DEFAULT '365d' NOT NULL,
`default_inventory_mode` integer DEFAULT '-1' NOT NULL,
`custom_color` integer DEFAULT '0' NOT NULL,
`http_auth_enabled` integer DEFAULT '0' NOT NULL,
`http_login_form` integer DEFAULT '0' NOT NULL,
`http_strip_domains` varchar(2048) DEFAULT '' NOT NULL,
`http_case_sensitive` integer DEFAULT '1' NOT NULL,
`ldap_configured` integer DEFAULT '0' NOT NULL,
`ldap_case_sensitive` integer DEFAULT '1' NOT NULL,
`db_extension` varchar(32) DEFAULT '' NOT NULL,
`autoreg_tls_accept` integer DEFAULT '1' NOT NULL,
`compression_status` integer DEFAULT '0' NOT NULL,
`compress_older` varchar(32) DEFAULT '7d' NOT NULL,
`instanceid` varchar(32) DEFAULT '' NOT NULL,
`saml_auth_enabled` integer DEFAULT '0' NOT NULL,
`saml_idp_entityid` varchar(1024) DEFAULT '' NOT NULL,
`saml_sso_url` varchar(2048) DEFAULT '' NOT NULL,
`saml_slo_url` varchar(2048) DEFAULT '' NOT NULL,
`saml_username_attribute` varchar(128) DEFAULT '' NOT NULL,
`saml_sp_entityid` varchar(1024) DEFAULT '' NOT NULL,
`saml_nameid_format` varchar(2048) DEFAULT '' NOT NULL,
`saml_sign_messages` integer DEFAULT '0' NOT NULL,
`saml_sign_assertions` integer DEFAULT '0' NOT NULL,
`saml_sign_authn_requests` integer DEFAULT '0' NOT NULL,
`saml_sign_logout_requests` integer DEFAULT '0' NOT NULL,
`saml_sign_logout_responses` integer DEFAULT '0' NOT NULL,
`saml_encrypt_nameid` integer DEFAULT '0' NOT NULL,
`saml_encrypt_assertions` integer DEFAULT '0' NOT NULL,
`saml_case_sensitive` integer DEFAULT '0' NOT NULL,
`default_lang` varchar(5) DEFAULT 'en_US' NOT NULL,
`default_timezone` varchar(50) DEFAULT 'system' NOT NULL,
`login_attempts` integer DEFAULT '5' NOT NULL,
`login_block` varchar(32) DEFAULT '30s' NOT NULL,
`show_technical_errors` integer DEFAULT '0' NOT NULL,
`validate_uri_schemes` integer DEFAULT '1' NOT NULL,
`uri_valid_schemes` varchar(255) DEFAULT 'http,https,ftp,file,mailto,tel,ssh' NOT NULL,
`x_frame_options` varchar(255) DEFAULT 'SAMEORIGIN' NOT NULL,
`iframe_sandboxing_enabled` integer DEFAULT '1' NOT NULL,
`iframe_sandboxing_exceptions` varchar(255) DEFAULT '' NOT NULL,
`max_overview_table_size` integer DEFAULT '50' NOT NULL,
`history_period` varchar(32) DEFAULT '24h' NOT NULL,
`period_default` varchar(32) DEFAULT '1h' NOT NULL,
`max_period` varchar(32) DEFAULT '2y' NOT NULL,
`socket_timeout` varchar(32) DEFAULT '3s' NOT NULL,
`connect_timeout` varchar(32) DEFAULT '3s' NOT NULL,
`media_type_test_timeout` varchar(32) DEFAULT '65s' NOT NULL,
`script_timeout` varchar(32) DEFAULT '60s' NOT NULL,
`item_test_timeout` varchar(32) DEFAULT '60s' NOT NULL,
`session_key` varchar(32) DEFAULT '' NOT NULL,
`url` varchar(255) DEFAULT '' NOT NULL,
`report_test_timeout` varchar(32) DEFAULT '60s' NOT NULL,
`dbversion_status` text NOT NULL,
`hk_events_service` varchar(32) DEFAULT '1d' NOT NULL,
`passwd_min_length` integer DEFAULT '8' NOT NULL,
`passwd_check_rules` integer DEFAULT '8' NOT NULL,
`auditlog_enabled` integer DEFAULT '1' NOT NULL,
`ha_failover_delay` varchar(32) DEFAULT '1m' NOT NULL,
`geomaps_tile_provider` varchar(255) DEFAULT '' NOT NULL,
`geomaps_tile_url` varchar(1024) DEFAULT '' NOT NULL,
`geomaps_max_zoom` integer DEFAULT '0' NOT NULL,
`geomaps_attribution` varchar(1024) DEFAULT '' NOT NULL,
PRIMARY KEY (configid)
) ENGINE=InnoDB;
CREATE INDEX `config_1` ON `config` (`alert_usrgrpid`);
CREATE INDEX `config_2` ON `config` (`discovery_groupid`);
CREATE TABLE `triggers` (
`triggerid` bigint unsigned NOT NULL,
`expression` varchar(2048) DEFAULT '' NOT NULL,
`description` text NOT NULL,
`url` varchar(255) DEFAULT '' NOT NULL,
`status` integer DEFAULT '0' NOT NULL,
`value` integer DEFAULT '0' NOT NULL,
`priority` integer DEFAULT '0' NOT NULL,
`lastchange` integer DEFAULT '0' NOT NULL,
`comments` text NOT NULL,
`error` varchar(2048) DEFAULT '' NOT NULL,
`templateid` bigint unsigned NULL,
`type` integer DEFAULT '0' NOT NULL,
`state` integer DEFAULT '0' NOT NULL,
`flags` integer DEFAULT '0' NOT NULL,
`recovery_mode` integer DEFAULT '0' NOT NULL,
`recovery_expression` varchar(2048) DEFAULT '' NOT NULL,
`correlation_mode` integer DEFAULT '0' NOT NULL,
`correlation_tag` varchar(255) DEFAULT '' NOT NULL,
`manual_close` integer DEFAULT '0' NOT NULL,
`opdata` varchar(255) DEFAULT '' NOT NULL,
`discover` integer DEFAULT '0' NOT NULL,
`event_name` varchar(2048) DEFAULT '' NOT NULL,
`uuid` varchar(32) DEFAULT '' NOT NULL,
PRIMARY KEY (triggerid)
) ENGINE=InnoDB;
CREATE INDEX `triggers_1` ON `triggers` (`status`);
CREATE INDEX `triggers_2` ON `triggers` (`value`,`lastchange`);
CREATE INDEX `triggers_3` ON `triggers` (`templateid`);
CREATE TABLE `trigger_depends` (
`triggerdepid` bigint unsigned NOT NULL,
`triggerid_down` bigint unsigned NOT NULL,
`triggerid_up` bigint unsigned NOT NULL,
PRIMARY KEY (triggerdepid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `trigger_depends_1` ON `trigger_depends` (`triggerid_down`,`triggerid_up`);
CREATE INDEX `trigger_depends_2` ON `trigger_depends` (`triggerid_up`);
CREATE TABLE `functions` (
`functionid` bigint unsigned NOT NULL,
`itemid` bigint unsigned NOT NULL,
`triggerid` bigint unsigned NOT NULL,
`name` varchar(12) DEFAULT '' NOT NULL,
`parameter` varchar(255) DEFAULT '0' NOT NULL,
PRIMARY KEY (functionid)
) ENGINE=InnoDB;
CREATE INDEX `functions_1` ON `functions` (`triggerid`);
CREATE INDEX `functions_2` ON `functions` (`itemid`,`name`,`parameter`);
CREATE TABLE `graphs` (
`graphid` bigint unsigned NOT NULL,
`name` varchar(128) DEFAULT '' NOT NULL,
`width` integer DEFAULT '900' NOT NULL,
`height` integer DEFAULT '200' NOT NULL,
`yaxismin` DOUBLE PRECISION DEFAULT '0' NOT NULL,
`yaxismax` DOUBLE PRECISION DEFAULT '100' NOT NULL,
`templateid` bigint unsigned NULL,
`show_work_period` integer DEFAULT '1' NOT NULL,
`show_triggers` integer DEFAULT '1' NOT NULL,
`graphtype` integer DEFAULT '0' NOT NULL,
`show_legend` integer DEFAULT '1' NOT NULL,
`show_3d` integer DEFAULT '0' NOT NULL,
`percent_left` DOUBLE PRECISION DEFAULT '0' NOT NULL,
`percent_right` DOUBLE PRECISION DEFAULT '0' NOT NULL,
`ymin_type` integer DEFAULT '0' NOT NULL,
`ymax_type` integer DEFAULT '0' NOT NULL,
`ymin_itemid` bigint unsigned NULL,
`ymax_itemid` bigint unsigned NULL,
`flags` integer DEFAULT '0' NOT NULL,
`discover` integer DEFAULT '0' NOT NULL,
`uuid` varchar(32) DEFAULT '' NOT NULL,
PRIMARY KEY (graphid)
) ENGINE=InnoDB;
CREATE INDEX `graphs_1` ON `graphs` (`name`);
CREATE INDEX `graphs_2` ON `graphs` (`templateid`);
CREATE INDEX `graphs_3` ON `graphs` (`ymin_itemid`);
CREATE INDEX `graphs_4` ON `graphs` (`ymax_itemid`);
CREATE TABLE `graphs_items` (
`gitemid` bigint unsigned NOT NULL,
`graphid` bigint unsigned NOT NULL,
`itemid` bigint unsigned NOT NULL,
`drawtype` integer DEFAULT '0' NOT NULL,
`sortorder` integer DEFAULT '0' NOT NULL,
`color` varchar(6) DEFAULT '009600' NOT NULL,
`yaxisside` integer DEFAULT '0' NOT NULL,
`calc_fnc` integer DEFAULT '2' NOT NULL,
`type` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (gitemid)
) ENGINE=InnoDB;
CREATE INDEX `graphs_items_1` ON `graphs_items` (`itemid`);
CREATE INDEX `graphs_items_2` ON `graphs_items` (`graphid`);
CREATE TABLE `graph_theme` (
`graphthemeid` bigint unsigned NOT NULL,
`theme` varchar(64) DEFAULT '' NOT NULL,
`backgroundcolor` varchar(6) DEFAULT '' NOT NULL,
`graphcolor` varchar(6) DEFAULT '' NOT NULL,
`gridcolor` varchar(6) DEFAULT '' NOT NULL,
`maingridcolor` varchar(6) DEFAULT '' NOT NULL,
`gridbordercolor` varchar(6) DEFAULT '' NOT NULL,
`textcolor` varchar(6) DEFAULT '' NOT NULL,
`highlightcolor` varchar(6) DEFAULT '' NOT NULL,
`leftpercentilecolor` varchar(6) DEFAULT '' NOT NULL,
`rightpercentilecolor` varchar(6) DEFAULT '' NOT NULL,
`nonworktimecolor` varchar(6) DEFAULT '' NOT NULL,
`colorpalette` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (graphthemeid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `graph_theme_1` ON `graph_theme` (`theme`);
CREATE TABLE `globalmacro` (
`globalmacroid` bigint unsigned NOT NULL,
`macro` varchar(255) DEFAULT '' NOT NULL,
`value` varchar(2048) DEFAULT '' NOT NULL,
`description` text NOT NULL,
`type` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (globalmacroid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `globalmacro_1` ON `globalmacro` (`macro`);
CREATE TABLE `hostmacro` (
`hostmacroid` bigint unsigned NOT NULL,
`hostid` bigint unsigned NOT NULL,
`macro` varchar(255) DEFAULT '' NOT NULL,
`value` varchar(2048) DEFAULT '' NOT NULL,
`description` text NOT NULL,
`type` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (hostmacroid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `hostmacro_1` ON `hostmacro` (`hostid`,`macro`);
CREATE TABLE `hosts_groups` (
`hostgroupid` bigint unsigned NOT NULL,
`hostid` bigint unsigned NOT NULL,
`groupid` bigint unsigned NOT NULL,
PRIMARY KEY (hostgroupid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `hosts_groups_1` ON `hosts_groups` (`hostid`,`groupid`);
CREATE INDEX `hosts_groups_2` ON `hosts_groups` (`groupid`);
CREATE TABLE `hosts_templates` (
`hosttemplateid` bigint unsigned NOT NULL,
`hostid` bigint unsigned NOT NULL,
`templateid` bigint unsigned NOT NULL,
PRIMARY KEY (hosttemplateid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `hosts_templates_1` ON `hosts_templates` (`hostid`,`templateid`);
CREATE INDEX `hosts_templates_2` ON `hosts_templates` (`templateid`);
CREATE TABLE `valuemap_mapping` (
`valuemap_mappingid` bigint unsigned NOT NULL,
`valuemapid` bigint unsigned NOT NULL,
`value` varchar(64) DEFAULT '' NOT NULL,
`newvalue` varchar(64) DEFAULT '' NOT NULL,
`type` integer DEFAULT '0' NOT NULL,
`sortorder` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (valuemap_mappingid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `valuemap_mapping_1` ON `valuemap_mapping` (`valuemapid`,`value`,`type`);
CREATE TABLE `media` (
`mediaid` bigint unsigned NOT NULL,
`userid` bigint unsigned NOT NULL,
`mediatypeid` bigint unsigned NOT NULL,
`sendto` varchar(1024) DEFAULT '' NOT NULL,
`active` integer DEFAULT '0' NOT NULL,
`severity` integer DEFAULT '63' NOT NULL,
`period` varchar(1024) DEFAULT '1-7,00:00-24:00' NOT NULL,
PRIMARY KEY (mediaid)
) ENGINE=InnoDB;
CREATE INDEX `media_1` ON `media` (`userid`);
CREATE INDEX `media_2` ON `media` (`mediatypeid`);
CREATE TABLE `rights` (
`rightid` bigint unsigned NOT NULL,
`groupid` bigint unsigned NOT NULL,
`permission` integer DEFAULT '0' NOT NULL,
`id` bigint unsigned NOT NULL,
PRIMARY KEY (rightid)
) ENGINE=InnoDB;
CREATE INDEX `rights_1` ON `rights` (`groupid`);
CREATE INDEX `rights_2` ON `rights` (`id`);
CREATE TABLE `services` (
`serviceid` bigint unsigned NOT NULL,
`name` varchar(128) DEFAULT '' NOT NULL,
`status` integer DEFAULT '-1' NOT NULL,
`algorithm` integer DEFAULT '0' NOT NULL,
`sortorder` integer DEFAULT '0' NOT NULL,
`weight` integer DEFAULT '0' NOT NULL,
`propagation_rule` integer DEFAULT '0' NOT NULL,
`propagation_value` integer DEFAULT '0' NOT NULL,
`description` text NOT NULL,
`uuid` varchar(32) DEFAULT '' NOT NULL,
`created_at` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (serviceid)
) ENGINE=InnoDB;
CREATE TABLE `services_links` (
`linkid` bigint unsigned NOT NULL,
`serviceupid` bigint unsigned NOT NULL,
`servicedownid` bigint unsigned NOT NULL,
PRIMARY KEY (linkid)
) ENGINE=InnoDB;
CREATE INDEX `services_links_1` ON `services_links` (`servicedownid`);
CREATE UNIQUE INDEX `services_links_2` ON `services_links` (`serviceupid`,`servicedownid`);
CREATE TABLE `icon_map` (
`iconmapid` bigint unsigned NOT NULL,
`name` varchar(64) DEFAULT '' NOT NULL,
`default_iconid` bigint unsigned NOT NULL,
PRIMARY KEY (iconmapid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `icon_map_1` ON `icon_map` (`name`);
CREATE INDEX `icon_map_2` ON `icon_map` (`default_iconid`);
CREATE TABLE `icon_mapping` (
`iconmappingid` bigint unsigned NOT NULL,
`iconmapid` bigint unsigned NOT NULL,
`iconid` bigint unsigned NOT NULL,
`inventory_link` integer DEFAULT '0' NOT NULL,
`expression` varchar(64) DEFAULT '' NOT NULL,
`sortorder` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (iconmappingid)
) ENGINE=InnoDB;
CREATE INDEX `icon_mapping_1` ON `icon_mapping` (`iconmapid`);
CREATE INDEX `icon_mapping_2` ON `icon_mapping` (`iconid`);
CREATE TABLE `sysmaps` (
`sysmapid` bigint unsigned NOT NULL,
`name` varchar(128) DEFAULT '' NOT NULL,
`width` integer DEFAULT '600' NOT NULL,
`height` integer DEFAULT '400' NOT NULL,
`backgroundid` bigint unsigned NULL,
`label_type` integer DEFAULT '2' NOT NULL,
`label_location` integer DEFAULT '0' NOT NULL,
`highlight` integer DEFAULT '1' NOT NULL,
`expandproblem` integer DEFAULT '1' NOT NULL,
`markelements` integer DEFAULT '0' NOT NULL,
`show_unack` integer DEFAULT '0' NOT NULL,
`grid_size` integer DEFAULT '50' NOT NULL,
`grid_show` integer DEFAULT '1' NOT NULL,
`grid_align` integer DEFAULT '1' NOT NULL,
`label_format` integer DEFAULT '0' NOT NULL,
`label_type_host` integer DEFAULT '2' NOT NULL,
`label_type_hostgroup` integer DEFAULT '2' NOT NULL,
`label_type_trigger` integer DEFAULT '2' NOT NULL,
`label_type_map` integer DEFAULT '2' NOT NULL,
`label_type_image` integer DEFAULT '2' NOT NULL,
`label_string_host` varchar(255) DEFAULT '' NOT NULL,
`label_string_hostgroup` varchar(255) DEFAULT '' NOT NULL,
`label_string_trigger` varchar(255) DEFAULT '' NOT NULL,
`label_string_map` varchar(255) DEFAULT '' NOT NULL,
`label_string_image` varchar(255) DEFAULT '' NOT NULL,
`iconmapid` bigint unsigned NULL,
`expand_macros` integer DEFAULT '0' NOT NULL,
`severity_min` integer DEFAULT '0' NOT NULL,
`userid` bigint unsigned NOT NULL,
`private` integer DEFAULT '1' NOT NULL,
`show_suppressed` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (sysmapid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `sysmaps_1` ON `sysmaps` (`name`);
CREATE INDEX `sysmaps_2` ON `sysmaps` (`backgroundid`);
CREATE INDEX `sysmaps_3` ON `sysmaps` (`iconmapid`);
CREATE TABLE `sysmaps_elements` (
`selementid` bigint unsigned NOT NULL,
`sysmapid` bigint unsigned NOT NULL,
`elementid` bigint unsigned DEFAULT '0' NOT NULL,
`elementtype` integer DEFAULT '0' NOT NULL,
`iconid_off` bigint unsigned NULL,
`iconid_on` bigint unsigned NULL,
`label` varchar(2048) DEFAULT '' NOT NULL,
`label_location` integer DEFAULT '-1' NOT NULL,
`x` integer DEFAULT '0' NOT NULL,
`y` integer DEFAULT '0' NOT NULL,
`iconid_disabled` bigint unsigned NULL,
`iconid_maintenance` bigint unsigned NULL,
`elementsubtype` integer DEFAULT '0' NOT NULL,
`areatype` integer DEFAULT '0' NOT NULL,
`width` integer DEFAULT '200' NOT NULL,
`height` integer DEFAULT '200' NOT NULL,
`viewtype` integer DEFAULT '0' NOT NULL,
`use_iconmap` integer DEFAULT '1' NOT NULL,
`evaltype` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (selementid)
) ENGINE=InnoDB;
CREATE INDEX `sysmaps_elements_1` ON `sysmaps_elements` (`sysmapid`);
CREATE INDEX `sysmaps_elements_2` ON `sysmaps_elements` (`iconid_off`);
CREATE INDEX `sysmaps_elements_3` ON `sysmaps_elements` (`iconid_on`);
CREATE INDEX `sysmaps_elements_4` ON `sysmaps_elements` (`iconid_disabled`);
CREATE INDEX `sysmaps_elements_5` ON `sysmaps_elements` (`iconid_maintenance`);
CREATE TABLE `sysmaps_links` (
`linkid` bigint unsigned NOT NULL,
`sysmapid` bigint unsigned NOT NULL,
`selementid1` bigint unsigned NOT NULL,
`selementid2` bigint unsigned NOT NULL,
`drawtype` integer DEFAULT '0' NOT NULL,
`color` varchar(6) DEFAULT '000000' NOT NULL,
`label` varchar(2048) DEFAULT '' NOT NULL,
PRIMARY KEY (linkid)
) ENGINE=InnoDB;
CREATE INDEX `sysmaps_links_1` ON `sysmaps_links` (`sysmapid`);
CREATE INDEX `sysmaps_links_2` ON `sysmaps_links` (`selementid1`);
CREATE INDEX `sysmaps_links_3` ON `sysmaps_links` (`selementid2`);
CREATE TABLE `sysmaps_link_triggers` (
`linktriggerid` bigint unsigned NOT NULL,
`linkid` bigint unsigned NOT NULL,
`triggerid` bigint unsigned NOT NULL,
`drawtype` integer DEFAULT '0' NOT NULL,
`color` varchar(6) DEFAULT '000000' NOT NULL,
PRIMARY KEY (linktriggerid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `sysmaps_link_triggers_1` ON `sysmaps_link_triggers` (`linkid`,`triggerid`);
CREATE INDEX `sysmaps_link_triggers_2` ON `sysmaps_link_triggers` (`triggerid`);
CREATE TABLE `sysmap_element_url` (
`sysmapelementurlid` bigint unsigned NOT NULL,
`selementid` bigint unsigned NOT NULL,
`name` varchar(255) NOT NULL,
`url` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (sysmapelementurlid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `sysmap_element_url_1` ON `sysmap_element_url` (`selementid`,`name`);
CREATE TABLE `sysmap_url` (
`sysmapurlid` bigint unsigned NOT NULL,
`sysmapid` bigint unsigned NOT NULL,
`name` varchar(255) NOT NULL,
`url` varchar(255) DEFAULT '' NOT NULL,
`elementtype` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (sysmapurlid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `sysmap_url_1` ON `sysmap_url` (`sysmapid`,`name`);
CREATE TABLE `sysmap_user` (
`sysmapuserid` bigint unsigned NOT NULL,
`sysmapid` bigint unsigned NOT NULL,
`userid` bigint unsigned NOT NULL,
`permission` integer DEFAULT '2' NOT NULL,
PRIMARY KEY (sysmapuserid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `sysmap_user_1` ON `sysmap_user` (`sysmapid`,`userid`);
CREATE TABLE `sysmap_usrgrp` (
`sysmapusrgrpid` bigint unsigned NOT NULL,
`sysmapid` bigint unsigned NOT NULL,
`usrgrpid` bigint unsigned NOT NULL,
`permission` integer DEFAULT '2' NOT NULL,
PRIMARY KEY (sysmapusrgrpid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `sysmap_usrgrp_1` ON `sysmap_usrgrp` (`sysmapid`,`usrgrpid`);
CREATE TABLE `maintenances_hosts` (
`maintenance_hostid` bigint unsigned NOT NULL,
`maintenanceid` bigint unsigned NOT NULL,
`hostid` bigint unsigned NOT NULL,
PRIMARY KEY (maintenance_hostid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `maintenances_hosts_1` ON `maintenances_hosts` (`maintenanceid`,`hostid`);
CREATE INDEX `maintenances_hosts_2` ON `maintenances_hosts` (`hostid`);
CREATE TABLE `maintenances_groups` (
`maintenance_groupid` bigint unsigned NOT NULL,
`maintenanceid` bigint unsigned NOT NULL,
`groupid` bigint unsigned NOT NULL,
PRIMARY KEY (maintenance_groupid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `maintenances_groups_1` ON `maintenances_groups` (`maintenanceid`,`groupid`);
CREATE INDEX `maintenances_groups_2` ON `maintenances_groups` (`groupid`);
CREATE TABLE `timeperiods` (
`timeperiodid` bigint unsigned NOT NULL,
`timeperiod_type` integer DEFAULT '0' NOT NULL,
`every` integer DEFAULT '1' NOT NULL,
`month` integer DEFAULT '0' NOT NULL,
`dayofweek` integer DEFAULT '0' NOT NULL,
`day` integer DEFAULT '0' NOT NULL,
`start_time` integer DEFAULT '0' NOT NULL,
`period` integer DEFAULT '0' NOT NULL,
`start_date` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (timeperiodid)
) ENGINE=InnoDB;
CREATE TABLE `maintenances_windows` (
`maintenance_timeperiodid` bigint unsigned NOT NULL,
`maintenanceid` bigint unsigned NOT NULL,
`timeperiodid` bigint unsigned NOT NULL,
PRIMARY KEY (maintenance_timeperiodid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `maintenances_windows_1` ON `maintenances_windows` (`maintenanceid`,`timeperiodid`);
CREATE INDEX `maintenances_windows_2` ON `maintenances_windows` (`timeperiodid`);
CREATE TABLE `regexps` (
`regexpid` bigint unsigned NOT NULL,
`name` varchar(128) DEFAULT '' NOT NULL,
`test_string` text NOT NULL,
PRIMARY KEY (regexpid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `regexps_1` ON `regexps` (`name`);
CREATE TABLE `expressions` (
`expressionid` bigint unsigned NOT NULL,
`regexpid` bigint unsigned NOT NULL,
`expression` varchar(255) DEFAULT '' NOT NULL,
`expression_type` integer DEFAULT '0' NOT NULL,
`exp_delimiter` varchar(1) DEFAULT '' NOT NULL,
`case_sensitive` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (expressionid)
) ENGINE=InnoDB;
CREATE INDEX `expressions_1` ON `expressions` (`regexpid`);
CREATE TABLE `ids` (
`table_name` varchar(64) DEFAULT '' NOT NULL,
`field_name` varchar(64) DEFAULT '' NOT NULL,
`nextid` bigint unsigned NOT NULL,
PRIMARY KEY (table_name,field_name)
) ENGINE=InnoDB;
CREATE TABLE `alerts` (
`alertid` bigint unsigned NOT NULL,
`actionid` bigint unsigned NOT NULL,
`eventid` bigint unsigned NOT NULL,
`userid` bigint unsigned NULL,
`clock` integer DEFAULT '0' NOT NULL,
`mediatypeid` bigint unsigned NULL,
`sendto` varchar(1024) DEFAULT '' NOT NULL,
`subject` varchar(255) DEFAULT '' NOT NULL,
`message` text NOT NULL,
`status` integer DEFAULT '0' NOT NULL,
`retries` integer DEFAULT '0' NOT NULL,
`error` varchar(2048) DEFAULT '' NOT NULL,
`esc_step` integer DEFAULT '0' NOT NULL,
`alerttype` integer DEFAULT '0' NOT NULL,
`p_eventid` bigint unsigned NULL,
`acknowledgeid` bigint unsigned NULL,
`parameters` text NOT NULL,
PRIMARY KEY (alertid)
) ENGINE=InnoDB;
CREATE INDEX `alerts_1` ON `alerts` (`actionid`);
CREATE INDEX `alerts_2` ON `alerts` (`clock`);
CREATE INDEX `alerts_3` ON `alerts` (`eventid`);
CREATE INDEX `alerts_4` ON `alerts` (`status`);
CREATE INDEX `alerts_5` ON `alerts` (`mediatypeid`);
CREATE INDEX `alerts_6` ON `alerts` (`userid`);
CREATE INDEX `alerts_7` ON `alerts` (`p_eventid`);
CREATE INDEX `alerts_8` ON `alerts` (`acknowledgeid`);
CREATE TABLE `history` (
`itemid` bigint unsigned NOT NULL,
`clock` integer DEFAULT '0' NOT NULL,
`value` DOUBLE PRECISION DEFAULT '0.0000' NOT NULL,
`ns` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (itemid,clock,ns)
) ENGINE=InnoDB;
CREATE TABLE `history_uint` (
`itemid` bigint unsigned NOT NULL,
`clock` integer DEFAULT '0' NOT NULL,
`value` bigint unsigned DEFAULT '0' NOT NULL,
`ns` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (itemid,clock,ns)
) ENGINE=InnoDB;
CREATE TABLE `history_str` (
`itemid` bigint unsigned NOT NULL,
`clock` integer DEFAULT '0' NOT NULL,
`value` varchar(255) DEFAULT '' NOT NULL,
`ns` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (itemid,clock,ns)
) ENGINE=InnoDB;
CREATE TABLE `history_log` (
`itemid` bigint unsigned NOT NULL,
`clock` integer DEFAULT '0' NOT NULL,
`timestamp` integer DEFAULT '0' NOT NULL,
`source` varchar(64) DEFAULT '' NOT NULL,
`severity` integer DEFAULT '0' NOT NULL,
`value` text NOT NULL,
`logeventid` integer DEFAULT '0' NOT NULL,
`ns` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (itemid,clock,ns)
) ENGINE=InnoDB;
CREATE TABLE `history_text` (
`itemid` bigint unsigned NOT NULL,
`clock` integer DEFAULT '0' NOT NULL,
`value` text NOT NULL,
`ns` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (itemid,clock,ns)
) ENGINE=InnoDB;
CREATE TABLE `proxy_history` (
`id` bigint unsigned NOT NULL auto_increment,
`itemid` bigint unsigned NOT NULL,
`clock` integer DEFAULT '0' NOT NULL,
`timestamp` integer DEFAULT '0' NOT NULL,
`source` varchar(64) DEFAULT '' NOT NULL,
`severity` integer DEFAULT '0' NOT NULL,
`value` longtext NOT NULL,
`logeventid` integer DEFAULT '0' NOT NULL,
`ns` integer DEFAULT '0' NOT NULL,
`state` integer DEFAULT '0' NOT NULL,
`lastlogsize` bigint unsigned DEFAULT '0' NOT NULL,
`mtime` integer DEFAULT '0' NOT NULL,
`flags` integer DEFAULT '0' NOT NULL,
`write_clock` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (id)
) ENGINE=InnoDB;
CREATE INDEX `proxy_history_1` ON `proxy_history` (`clock`);
CREATE TABLE `proxy_dhistory` (
`id` bigint unsigned NOT NULL auto_increment,
`clock` integer DEFAULT '0' NOT NULL,
`druleid` bigint unsigned NOT NULL,
`ip` varchar(39) DEFAULT '' NOT NULL,
`port` integer DEFAULT '0' NOT NULL,
`value` varchar(255) DEFAULT '' NOT NULL,
`status` integer DEFAULT '0' NOT NULL,
`dcheckid` bigint unsigned NULL,
`dns` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (id)
) ENGINE=InnoDB;
CREATE INDEX `proxy_dhistory_1` ON `proxy_dhistory` (`clock`);
CREATE INDEX `proxy_dhistory_2` ON `proxy_dhistory` (`druleid`);
CREATE TABLE `events` (
`eventid` bigint unsigned NOT NULL,
`source` integer DEFAULT '0' NOT NULL,
`object` integer DEFAULT '0' NOT NULL,
`objectid` bigint unsigned DEFAULT '0' NOT NULL,
`clock` integer DEFAULT '0' NOT NULL,
`value` integer DEFAULT '0' NOT NULL,
`acknowledged` integer DEFAULT '0' NOT NULL,
`ns` integer DEFAULT '0' NOT NULL,
`name` varchar(2048) DEFAULT '' NOT NULL,
`severity` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (eventid)
) ENGINE=InnoDB;
CREATE INDEX `events_1` ON `events` (`source`,`object`,`objectid`,`clock`);
CREATE INDEX `events_2` ON `events` (`source`,`object`,`clock`);
CREATE TABLE `trends` (
`itemid` bigint unsigned NOT NULL,
`clock` integer DEFAULT '0' NOT NULL,
`num` integer DEFAULT '0' NOT NULL,
`value_min` DOUBLE PRECISION DEFAULT '0.0000' NOT NULL,
`value_avg` DOUBLE PRECISION DEFAULT '0.0000' NOT NULL,
`value_max` DOUBLE PRECISION DEFAULT '0.0000' NOT NULL,
PRIMARY KEY (itemid,clock)
) ENGINE=InnoDB;
CREATE TABLE `trends_uint` (
`itemid` bigint unsigned NOT NULL,
`clock` integer DEFAULT '0' NOT NULL,
`num` integer DEFAULT '0' NOT NULL,
`value_min` bigint unsigned DEFAULT '0' NOT NULL,
`value_avg` bigint unsigned DEFAULT '0' NOT NULL,
`value_max` bigint unsigned DEFAULT '0' NOT NULL,
PRIMARY KEY (itemid,clock)
) ENGINE=InnoDB;
CREATE TABLE `acknowledges` (
`acknowledgeid` bigint unsigned NOT NULL,
`userid` bigint unsigned NOT NULL,
`eventid` bigint unsigned NOT NULL,
`clock` integer DEFAULT '0' NOT NULL,
`message` varchar(2048) DEFAULT '' NOT NULL,
`action` integer DEFAULT '0' NOT NULL,
`old_severity` integer DEFAULT '0' NOT NULL,
`new_severity` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (acknowledgeid)
) ENGINE=InnoDB;
CREATE INDEX `acknowledges_1` ON `acknowledges` (`userid`);
CREATE INDEX `acknowledges_2` ON `acknowledges` (`eventid`);
CREATE INDEX `acknowledges_3` ON `acknowledges` (`clock`);
CREATE TABLE `auditlog` (
`auditid` varchar(25) NOT NULL,
`userid` bigint unsigned NULL,
`username` varchar(100) DEFAULT '' NOT NULL,
`clock` integer DEFAULT '0' NOT NULL,
`ip` varchar(39) DEFAULT '' NOT NULL,
`action` integer DEFAULT '0' NOT NULL,
`resourcetype` integer DEFAULT '0' NOT NULL,
`resourceid` bigint unsigned NULL,
`resource_cuid` varchar(25) NULL,
`resourcename` varchar(255) DEFAULT '' NOT NULL,
`recordsetid` varchar(25) NOT NULL,
`details` longtext NOT NULL,
PRIMARY KEY (auditid)
) ENGINE=InnoDB;
CREATE INDEX `auditlog_1` ON `auditlog` (`userid`,`clock`);
CREATE INDEX `auditlog_2` ON `auditlog` (`clock`);
CREATE INDEX `auditlog_3` ON `auditlog` (`resourcetype`,`resourceid`);
CREATE TABLE `service_alarms` (
`servicealarmid` bigint unsigned NOT NULL,
`serviceid` bigint unsigned NOT NULL,
`clock` integer DEFAULT '0' NOT NULL,
`value` integer DEFAULT '-1' NOT NULL,
PRIMARY KEY (servicealarmid)
) ENGINE=InnoDB;
CREATE INDEX `service_alarms_1` ON `service_alarms` (`serviceid`,`clock`);
CREATE INDEX `service_alarms_2` ON `service_alarms` (`clock`);
CREATE TABLE `autoreg_host` (
`autoreg_hostid` bigint unsigned NOT NULL,
`proxy_hostid` bigint unsigned NULL,
`host` varchar(128) DEFAULT '' NOT NULL,
`listen_ip` varchar(39) DEFAULT '' NOT NULL,
`listen_port` integer DEFAULT '0' NOT NULL,
`listen_dns` varchar(255) DEFAULT '' NOT NULL,
`host_metadata` varchar(255) DEFAULT '' NOT NULL,
`flags` integer DEFAULT '0' NOT NULL,
`tls_accepted` integer DEFAULT '1' NOT NULL,
PRIMARY KEY (autoreg_hostid)
) ENGINE=InnoDB;
CREATE INDEX `autoreg_host_1` ON `autoreg_host` (`host`);
CREATE INDEX `autoreg_host_2` ON `autoreg_host` (`proxy_hostid`);
CREATE TABLE `proxy_autoreg_host` (
`id` bigint unsigned NOT NULL auto_increment,
`clock` integer DEFAULT '0' NOT NULL,
`host` varchar(128) DEFAULT '' NOT NULL,
`listen_ip` varchar(39) DEFAULT '' NOT NULL,
`listen_port` integer DEFAULT '0' NOT NULL,
`listen_dns` varchar(255) DEFAULT '' NOT NULL,
`host_metadata` varchar(255) DEFAULT '' NOT NULL,
`flags` integer DEFAULT '0' NOT NULL,
`tls_accepted` integer DEFAULT '1' NOT NULL,
PRIMARY KEY (id)
) ENGINE=InnoDB;
CREATE INDEX `proxy_autoreg_host_1` ON `proxy_autoreg_host` (`clock`);
CREATE TABLE `dhosts` (
`dhostid` bigint unsigned NOT NULL,
`druleid` bigint unsigned NOT NULL,
`status` integer DEFAULT '0' NOT NULL,
`lastup` integer DEFAULT '0' NOT NULL,
`lastdown` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (dhostid)
) ENGINE=InnoDB;
CREATE INDEX `dhosts_1` ON `dhosts` (`druleid`);
CREATE TABLE `dservices` (
`dserviceid` bigint unsigned NOT NULL,
`dhostid` bigint unsigned NOT NULL,
`value` varchar(255) DEFAULT '' NOT NULL,
`port` integer DEFAULT '0' NOT NULL,
`status` integer DEFAULT '0' NOT NULL,
`lastup` integer DEFAULT '0' NOT NULL,
`lastdown` integer DEFAULT '0' NOT NULL,
`dcheckid` bigint unsigned NOT NULL,
`ip` varchar(39) DEFAULT '' NOT NULL,
`dns` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (dserviceid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `dservices_1` ON `dservices` (`dcheckid`,`ip`,`port`);
CREATE INDEX `dservices_2` ON `dservices` (`dhostid`);
CREATE TABLE `escalations` (
`escalationid` bigint unsigned NOT NULL,
`actionid` bigint unsigned NOT NULL,
`triggerid` bigint unsigned NULL,
`eventid` bigint unsigned NULL,
`r_eventid` bigint unsigned NULL,
`nextcheck` integer DEFAULT '0' NOT NULL,
`esc_step` integer DEFAULT '0' NOT NULL,
`status` integer DEFAULT '0' NOT NULL,
`itemid` bigint unsigned NULL,
`acknowledgeid` bigint unsigned NULL,
`servicealarmid` bigint unsigned NULL,
`serviceid` bigint unsigned NULL,
PRIMARY KEY (escalationid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `escalations_1` ON `escalations` (`triggerid`,`itemid`,`serviceid`,`escalationid`);
CREATE INDEX `escalations_2` ON `escalations` (`eventid`);
CREATE INDEX `escalations_3` ON `escalations` (`nextcheck`);
CREATE TABLE `globalvars` (
`globalvarid` bigint unsigned NOT NULL,
`snmp_lastsize` bigint unsigned DEFAULT '0' NOT NULL,
PRIMARY KEY (globalvarid)
) ENGINE=InnoDB;
CREATE TABLE `graph_discovery` (
`graphid` bigint unsigned NOT NULL,
`parent_graphid` bigint unsigned NOT NULL,
`lastcheck` integer DEFAULT '0' NOT NULL,
`ts_delete` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (graphid)
) ENGINE=InnoDB;
CREATE INDEX `graph_discovery_1` ON `graph_discovery` (`parent_graphid`);
CREATE TABLE `host_inventory` (
`hostid` bigint unsigned NOT NULL,
`inventory_mode` integer DEFAULT '0' NOT NULL,
`type` varchar(64) DEFAULT '' NOT NULL,
`type_full` varchar(64) DEFAULT '' NOT NULL,
`name` varchar(128) DEFAULT '' NOT NULL,
`alias` varchar(128) DEFAULT '' NOT NULL,
`os` varchar(128) DEFAULT '' NOT NULL,
`os_full` varchar(255) DEFAULT '' NOT NULL,
`os_short` varchar(128) DEFAULT '' NOT NULL,
`serialno_a` varchar(64) DEFAULT '' NOT NULL,
`serialno_b` varchar(64) DEFAULT '' NOT NULL,
`tag` varchar(64) DEFAULT '' NOT NULL,
`asset_tag` varchar(64) DEFAULT '' NOT NULL,
`macaddress_a` varchar(64) DEFAULT '' NOT NULL,
`macaddress_b` varchar(64) DEFAULT '' NOT NULL,
`hardware` varchar(255) DEFAULT '' NOT NULL,
`hardware_full` text NOT NULL,
`software` varchar(255) DEFAULT '' NOT NULL,
`software_full` text NOT NULL,
`software_app_a` varchar(64) DEFAULT '' NOT NULL,
`software_app_b` varchar(64) DEFAULT '' NOT NULL,
`software_app_c` varchar(64) DEFAULT '' NOT NULL,
`software_app_d` varchar(64) DEFAULT '' NOT NULL,
`software_app_e` varchar(64) DEFAULT '' NOT NULL,
`contact` text NOT NULL,
`location` text NOT NULL,
`location_lat` varchar(16) DEFAULT '' NOT NULL,
`location_lon` varchar(16) DEFAULT '' NOT NULL,
`notes` text NOT NULL,
`chassis` varchar(64) DEFAULT '' NOT NULL,
`model` varchar(64) DEFAULT '' NOT NULL,
`hw_arch` varchar(32) DEFAULT '' NOT NULL,
`vendor` varchar(64) DEFAULT '' NOT NULL,
`contract_number` varchar(64) DEFAULT '' NOT NULL,
`installer_name` varchar(64) DEFAULT '' NOT NULL,
`deployment_status` varchar(64) DEFAULT '' NOT NULL,
`url_a` varchar(255) DEFAULT '' NOT NULL,
`url_b` varchar(255) DEFAULT '' NOT NULL,
`url_c` varchar(255) DEFAULT '' NOT NULL,
`host_networks` text NOT NULL,
`host_netmask` varchar(39) DEFAULT '' NOT NULL,
`host_router` varchar(39) DEFAULT '' NOT NULL,
`oob_ip` varchar(39) DEFAULT '' NOT NULL,
`oob_netmask` varchar(39) DEFAULT '' NOT NULL,
`oob_router` varchar(39) DEFAULT '' NOT NULL,
`date_hw_purchase` varchar(64) DEFAULT '' NOT NULL,
`date_hw_install` varchar(64) DEFAULT '' NOT NULL,
`date_hw_expiry` varchar(64) DEFAULT '' NOT NULL,
`date_hw_decomm` varchar(64) DEFAULT '' NOT NULL,
`site_address_a` varchar(128) DEFAULT '' NOT NULL,
`site_address_b` varchar(128) DEFAULT '' NOT NULL,
`site_address_c` varchar(128) DEFAULT '' NOT NULL,
`site_city` varchar(128) DEFAULT '' NOT NULL,
`site_state` varchar(64) DEFAULT '' NOT NULL,
`site_country` varchar(64) DEFAULT '' NOT NULL,
`site_zip` varchar(64) DEFAULT '' NOT NULL,
`site_rack` varchar(128) DEFAULT '' NOT NULL,
`site_notes` text NOT NULL,
`poc_1_name` varchar(128) DEFAULT '' NOT NULL,
`poc_1_email` varchar(128) DEFAULT '' NOT NULL,
`poc_1_phone_a` varchar(64) DEFAULT '' NOT NULL,
`poc_1_phone_b` varchar(64) DEFAULT '' NOT NULL,
`poc_1_cell` varchar(64) DEFAULT '' NOT NULL,
`poc_1_screen` varchar(64) DEFAULT '' NOT NULL,
`poc_1_notes` text NOT NULL,
`poc_2_name` varchar(128) DEFAULT '' NOT NULL,
`poc_2_email` varchar(128) DEFAULT '' NOT NULL,
`poc_2_phone_a` varchar(64) DEFAULT '' NOT NULL,
`poc_2_phone_b` varchar(64) DEFAULT '' NOT NULL,
`poc_2_cell` varchar(64) DEFAULT '' NOT NULL,
`poc_2_screen` varchar(64) DEFAULT '' NOT NULL,
`poc_2_notes` text NOT NULL,
PRIMARY KEY (hostid)
) ENGINE=InnoDB;
CREATE TABLE `housekeeper` (
`housekeeperid` bigint unsigned NOT NULL,
`tablename` varchar(64) DEFAULT '' NOT NULL,
`field` varchar(64) DEFAULT '' NOT NULL,
`value` bigint unsigned NOT NULL,
PRIMARY KEY (housekeeperid)
) ENGINE=InnoDB;
CREATE TABLE `images` (
`imageid` bigint unsigned NOT NULL,
`imagetype` integer DEFAULT '0' NOT NULL,
`name` varchar(64) DEFAULT '0' NOT NULL,
`image` longblob NOT NULL,
PRIMARY KEY (imageid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `images_1` ON `images` (`name`);
CREATE TABLE `item_discovery` (
`itemdiscoveryid` bigint unsigned NOT NULL,
`itemid` bigint unsigned NOT NULL,
`parent_itemid` bigint unsigned NOT NULL,
`key_` varchar(2048) DEFAULT '' NOT NULL,
`lastcheck` integer DEFAULT '0' NOT NULL,
`ts_delete` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (itemdiscoveryid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `item_discovery_1` ON `item_discovery` (`itemid`,`parent_itemid`);
CREATE INDEX `item_discovery_2` ON `item_discovery` (`parent_itemid`);
CREATE TABLE `host_discovery` (
`hostid` bigint unsigned NOT NULL,
`parent_hostid` bigint unsigned NULL,
`parent_itemid` bigint unsigned NULL,
`host` varchar(128) DEFAULT '' NOT NULL,
`lastcheck` integer DEFAULT '0' NOT NULL,
`ts_delete` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (hostid)
) ENGINE=InnoDB;
CREATE TABLE `interface_discovery` (
`interfaceid` bigint unsigned NOT NULL,
`parent_interfaceid` bigint unsigned NOT NULL,
PRIMARY KEY (interfaceid)
) ENGINE=InnoDB;
CREATE TABLE `profiles` (
`profileid` bigint unsigned NOT NULL,
`userid` bigint unsigned NOT NULL,
`idx` varchar(96) DEFAULT '' NOT NULL,
`idx2` bigint unsigned DEFAULT '0' NOT NULL,
`value_id` bigint unsigned DEFAULT '0' NOT NULL,
`value_int` integer DEFAULT '0' NOT NULL,
`value_str` text NOT NULL,
`source` varchar(96) DEFAULT '' NOT NULL,
`type` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (profileid)
) ENGINE=InnoDB;
CREATE INDEX `profiles_1` ON `profiles` (`userid`,`idx`,`idx2`);
CREATE INDEX `profiles_2` ON `profiles` (`userid`,`profileid`);
CREATE TABLE `sessions` (
`sessionid` varchar(32) DEFAULT '' NOT NULL,
`userid` bigint unsigned NOT NULL,
`lastaccess` integer DEFAULT '0' NOT NULL,
`status` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (sessionid)
) ENGINE=InnoDB;
CREATE INDEX `sessions_1` ON `sessions` (`userid`,`status`,`lastaccess`);
CREATE TABLE `trigger_discovery` (
`triggerid` bigint unsigned NOT NULL,
`parent_triggerid` bigint unsigned NOT NULL,
`lastcheck` integer DEFAULT '0' NOT NULL,
`ts_delete` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (triggerid)
) ENGINE=InnoDB;
CREATE INDEX `trigger_discovery_1` ON `trigger_discovery` (`parent_triggerid`);
CREATE TABLE `item_condition` (
`item_conditionid` bigint unsigned NOT NULL,
`itemid` bigint unsigned NOT NULL,
`operator` integer DEFAULT '8' NOT NULL,
`macro` varchar(64) DEFAULT '' NOT NULL,
`value` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (item_conditionid)
) ENGINE=InnoDB;
CREATE INDEX `item_condition_1` ON `item_condition` (`itemid`);
CREATE TABLE `item_rtdata` (
`itemid` bigint unsigned NOT NULL,
`lastlogsize` bigint unsigned DEFAULT '0' NOT NULL,
`state` integer DEFAULT '0' NOT NULL,
`mtime` integer DEFAULT '0' NOT NULL,
`error` varchar(2048) DEFAULT '' NOT NULL,
PRIMARY KEY (itemid)
) ENGINE=InnoDB;
CREATE TABLE `opinventory` (
`operationid` bigint unsigned NOT NULL,
`inventory_mode` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (operationid)
) ENGINE=InnoDB;
CREATE TABLE `trigger_tag` (
`triggertagid` bigint unsigned NOT NULL,
`triggerid` bigint unsigned NOT NULL,
`tag` varchar(255) DEFAULT '' NOT NULL,
`value` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (triggertagid)
) ENGINE=InnoDB;
CREATE INDEX `trigger_tag_1` ON `trigger_tag` (`triggerid`);
CREATE TABLE `event_tag` (
`eventtagid` bigint unsigned NOT NULL,
`eventid` bigint unsigned NOT NULL,
`tag` varchar(255) DEFAULT '' NOT NULL,
`value` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (eventtagid)
) ENGINE=InnoDB;
CREATE INDEX `event_tag_1` ON `event_tag` (`eventid`);
CREATE TABLE `problem` (
`eventid` bigint unsigned NOT NULL,
`source` integer DEFAULT '0' NOT NULL,
`object` integer DEFAULT '0' NOT NULL,
`objectid` bigint unsigned DEFAULT '0' NOT NULL,
`clock` integer DEFAULT '0' NOT NULL,
`ns` integer DEFAULT '0' NOT NULL,
`r_eventid` bigint unsigned NULL,
`r_clock` integer DEFAULT '0' NOT NULL,
`r_ns` integer DEFAULT '0' NOT NULL,
`correlationid` bigint unsigned NULL,
`userid` bigint unsigned NULL,
`name` varchar(2048) DEFAULT '' NOT NULL,
`acknowledged` integer DEFAULT '0' NOT NULL,
`severity` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (eventid)
) ENGINE=InnoDB;
CREATE INDEX `problem_1` ON `problem` (`source`,`object`,`objectid`);
CREATE INDEX `problem_2` ON `problem` (`r_clock`);
CREATE INDEX `problem_3` ON `problem` (`r_eventid`);
CREATE TABLE `problem_tag` (
`problemtagid` bigint unsigned NOT NULL,
`eventid` bigint unsigned NOT NULL,
`tag` varchar(255) DEFAULT '' NOT NULL,
`value` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (problemtagid)
) ENGINE=InnoDB;
CREATE INDEX `problem_tag_1` ON `problem_tag` (`eventid`,`tag`,`value`);
CREATE TABLE `tag_filter` (
`tag_filterid` bigint unsigned NOT NULL,
`usrgrpid` bigint unsigned NOT NULL,
`groupid` bigint unsigned NOT NULL,
`tag` varchar(255) DEFAULT '' NOT NULL,
`value` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (tag_filterid)
) ENGINE=InnoDB;
CREATE TABLE `event_recovery` (
`eventid` bigint unsigned NOT NULL,
`r_eventid` bigint unsigned NOT NULL,
`c_eventid` bigint unsigned NULL,
`correlationid` bigint unsigned NULL,
`userid` bigint unsigned NULL,
PRIMARY KEY (eventid)
) ENGINE=InnoDB;
CREATE INDEX `event_recovery_1` ON `event_recovery` (`r_eventid`);
CREATE INDEX `event_recovery_2` ON `event_recovery` (`c_eventid`);
CREATE TABLE `correlation` (
`correlationid` bigint unsigned NOT NULL,
`name` varchar(255) DEFAULT '' NOT NULL,
`description` text NOT NULL,
`evaltype` integer DEFAULT '0' NOT NULL,
`status` integer DEFAULT '0' NOT NULL,
`formula` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (correlationid)
) ENGINE=InnoDB;
CREATE INDEX `correlation_1` ON `correlation` (`status`);
CREATE UNIQUE INDEX `correlation_2` ON `correlation` (`name`);
CREATE TABLE `corr_condition` (
`corr_conditionid` bigint unsigned NOT NULL,
`correlationid` bigint unsigned NOT NULL,
`type` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (corr_conditionid)
) ENGINE=InnoDB;
CREATE INDEX `corr_condition_1` ON `corr_condition` (`correlationid`);
CREATE TABLE `corr_condition_tag` (
`corr_conditionid` bigint unsigned NOT NULL,
`tag` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (corr_conditionid)
) ENGINE=InnoDB;
CREATE TABLE `corr_condition_group` (
`corr_conditionid` bigint unsigned NOT NULL,
`operator` integer DEFAULT '0' NOT NULL,
`groupid` bigint unsigned NOT NULL,
PRIMARY KEY (corr_conditionid)
) ENGINE=InnoDB;
CREATE INDEX `corr_condition_group_1` ON `corr_condition_group` (`groupid`);
CREATE TABLE `corr_condition_tagpair` (
`corr_conditionid` bigint unsigned NOT NULL,
`oldtag` varchar(255) DEFAULT '' NOT NULL,
`newtag` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (corr_conditionid)
) ENGINE=InnoDB;
CREATE TABLE `corr_condition_tagvalue` (
`corr_conditionid` bigint unsigned NOT NULL,
`tag` varchar(255) DEFAULT '' NOT NULL,
`operator` integer DEFAULT '0' NOT NULL,
`value` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (corr_conditionid)
) ENGINE=InnoDB;
CREATE TABLE `corr_operation` (
`corr_operationid` bigint unsigned NOT NULL,
`correlationid` bigint unsigned NOT NULL,
`type` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (corr_operationid)
) ENGINE=InnoDB;
CREATE INDEX `corr_operation_1` ON `corr_operation` (`correlationid`);
CREATE TABLE `task` (
`taskid` bigint unsigned NOT NULL,
`type` integer NOT NULL,
`status` integer DEFAULT '0' NOT NULL,
`clock` integer DEFAULT '0' NOT NULL,
`ttl` integer DEFAULT '0' NOT NULL,
`proxy_hostid` bigint unsigned NULL,
PRIMARY KEY (taskid)
) ENGINE=InnoDB;
CREATE INDEX `task_1` ON `task` (`status`,`proxy_hostid`);
CREATE TABLE `task_close_problem` (
`taskid` bigint unsigned NOT NULL,
`acknowledgeid` bigint unsigned NOT NULL,
PRIMARY KEY (taskid)
) ENGINE=InnoDB;
CREATE TABLE `item_preproc` (
`item_preprocid` bigint unsigned NOT NULL,
`itemid` bigint unsigned NOT NULL,
`step` integer DEFAULT '0' NOT NULL,
`type` integer DEFAULT '0' NOT NULL,
`params` text NOT NULL,
`error_handler` integer DEFAULT '0' NOT NULL,
`error_handler_params` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (item_preprocid)
) ENGINE=InnoDB;
CREATE INDEX `item_preproc_1` ON `item_preproc` (`itemid`,`step`);
CREATE TABLE `task_remote_command` (
`taskid` bigint unsigned NOT NULL,
`command_type` integer DEFAULT '0' NOT NULL,
`execute_on` integer DEFAULT '0' NOT NULL,
`port` integer DEFAULT '0' NOT NULL,
`authtype` integer DEFAULT '0' NOT NULL,
`username` varchar(64) DEFAULT '' NOT NULL,
`password` varchar(64) DEFAULT '' NOT NULL,
`publickey` varchar(64) DEFAULT '' NOT NULL,
`privatekey` varchar(64) DEFAULT '' NOT NULL,
`command` text NOT NULL,
`alertid` bigint unsigned NULL,
`parent_taskid` bigint unsigned NOT NULL,
`hostid` bigint unsigned NOT NULL,
PRIMARY KEY (taskid)
) ENGINE=InnoDB;
CREATE TABLE `task_remote_command_result` (
`taskid` bigint unsigned NOT NULL,
`status` integer DEFAULT '0' NOT NULL,
`parent_taskid` bigint unsigned NOT NULL,
`info` text NOT NULL,
PRIMARY KEY (taskid)
) ENGINE=InnoDB;
CREATE TABLE `task_data` (
`taskid` bigint unsigned NOT NULL,
`type` integer DEFAULT '0' NOT NULL,
`data` text NOT NULL,
`parent_taskid` bigint unsigned NOT NULL,
PRIMARY KEY (taskid)
) ENGINE=InnoDB;
CREATE TABLE `task_result` (
`taskid` bigint unsigned NOT NULL,
`status` integer DEFAULT '0' NOT NULL,
`parent_taskid` bigint unsigned NOT NULL,
`info` text NOT NULL,
PRIMARY KEY (taskid)
) ENGINE=InnoDB;
CREATE INDEX `task_result_1` ON `task_result` (`parent_taskid`);
CREATE TABLE `task_acknowledge` (
`taskid` bigint unsigned NOT NULL,
`acknowledgeid` bigint unsigned NOT NULL,
PRIMARY KEY (taskid)
) ENGINE=InnoDB;
CREATE TABLE `sysmap_shape` (
`sysmap_shapeid` bigint unsigned NOT NULL,
`sysmapid` bigint unsigned NOT NULL,
`type` integer DEFAULT '0' NOT NULL,
`x` integer DEFAULT '0' NOT NULL,
`y` integer DEFAULT '0' NOT NULL,
`width` integer DEFAULT '200' NOT NULL,
`height` integer DEFAULT '200' NOT NULL,
`text` text NOT NULL,
`font` integer DEFAULT '9' NOT NULL,
`font_size` integer DEFAULT '11' NOT NULL,
`font_color` varchar(6) DEFAULT '000000' NOT NULL,
`text_halign` integer DEFAULT '0' NOT NULL,
`text_valign` integer DEFAULT '0' NOT NULL,
`border_type` integer DEFAULT '0' NOT NULL,
`border_width` integer DEFAULT '1' NOT NULL,
`border_color` varchar(6) DEFAULT '000000' NOT NULL,
`background_color` varchar(6) DEFAULT '' NOT NULL,
`zindex` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (sysmap_shapeid)
) ENGINE=InnoDB;
CREATE INDEX `sysmap_shape_1` ON `sysmap_shape` (`sysmapid`);
CREATE TABLE `sysmap_element_trigger` (
`selement_triggerid` bigint unsigned NOT NULL,
`selementid` bigint unsigned NOT NULL,
`triggerid` bigint unsigned NOT NULL,
PRIMARY KEY (selement_triggerid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `sysmap_element_trigger_1` ON `sysmap_element_trigger` (`selementid`,`triggerid`);
CREATE TABLE `httptest_field` (
`httptest_fieldid` bigint unsigned NOT NULL,
`httptestid` bigint unsigned NOT NULL,
`type` integer DEFAULT '0' NOT NULL,
`name` varchar(255) DEFAULT '' NOT NULL,
`value` text NOT NULL,
PRIMARY KEY (httptest_fieldid)
) ENGINE=InnoDB;
CREATE INDEX `httptest_field_1` ON `httptest_field` (`httptestid`);
CREATE TABLE `httpstep_field` (
`httpstep_fieldid` bigint unsigned NOT NULL,
`httpstepid` bigint unsigned NOT NULL,
`type` integer DEFAULT '0' NOT NULL,
`name` varchar(255) DEFAULT '' NOT NULL,
`value` text NOT NULL,
PRIMARY KEY (httpstep_fieldid)
) ENGINE=InnoDB;
CREATE INDEX `httpstep_field_1` ON `httpstep_field` (`httpstepid`);
CREATE TABLE `dashboard` (
`dashboardid` bigint unsigned NOT NULL,
`name` varchar(255) NOT NULL,
`userid` bigint unsigned NULL,
`private` integer DEFAULT '1' NOT NULL,
`templateid` bigint unsigned NULL,
`display_period` integer DEFAULT '30' NOT NULL,
`auto_start` integer DEFAULT '1' NOT NULL,
`uuid` varchar(32) DEFAULT '' NOT NULL,
PRIMARY KEY (dashboardid)
) ENGINE=InnoDB;
CREATE INDEX `dashboard_1` ON `dashboard` (`userid`);
CREATE INDEX `dashboard_2` ON `dashboard` (`templateid`);
CREATE TABLE `dashboard_user` (
`dashboard_userid` bigint unsigned NOT NULL,
`dashboardid` bigint unsigned NOT NULL,
`userid` bigint unsigned NOT NULL,
`permission` integer DEFAULT '2' NOT NULL,
PRIMARY KEY (dashboard_userid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `dashboard_user_1` ON `dashboard_user` (`dashboardid`,`userid`);
CREATE TABLE `dashboard_usrgrp` (
`dashboard_usrgrpid` bigint unsigned NOT NULL,
`dashboardid` bigint unsigned NOT NULL,
`usrgrpid` bigint unsigned NOT NULL,
`permission` integer DEFAULT '2' NOT NULL,
PRIMARY KEY (dashboard_usrgrpid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `dashboard_usrgrp_1` ON `dashboard_usrgrp` (`dashboardid`,`usrgrpid`);
CREATE TABLE `dashboard_page` (
`dashboard_pageid` bigint unsigned NOT NULL,
`dashboardid` bigint unsigned NOT NULL,
`name` varchar(255) DEFAULT '' NOT NULL,
`display_period` integer DEFAULT '0' NOT NULL,
`sortorder` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (dashboard_pageid)
) ENGINE=InnoDB;
CREATE INDEX `dashboard_page_1` ON `dashboard_page` (`dashboardid`);
CREATE TABLE `widget` (
`widgetid` bigint unsigned NOT NULL,
`type` varchar(255) DEFAULT '' NOT NULL,
`name` varchar(255) DEFAULT '' NOT NULL,
`x` integer DEFAULT '0' NOT NULL,
`y` integer DEFAULT '0' NOT NULL,
`width` integer DEFAULT '1' NOT NULL,
`height` integer DEFAULT '2' NOT NULL,
`view_mode` integer DEFAULT '0' NOT NULL,
`dashboard_pageid` bigint unsigned NOT NULL,
PRIMARY KEY (widgetid)
) ENGINE=InnoDB;
CREATE INDEX `widget_1` ON `widget` (`dashboard_pageid`);
CREATE TABLE `widget_field` (
`widget_fieldid` bigint unsigned NOT NULL,
`widgetid` bigint unsigned NOT NULL,
`type` integer DEFAULT '0' NOT NULL,
`name` varchar(255) DEFAULT '' NOT NULL,
`value_int` integer DEFAULT '0' NOT NULL,
`value_str` varchar(255) DEFAULT '' NOT NULL,
`value_groupid` bigint unsigned NULL,
`value_hostid` bigint unsigned NULL,
`value_itemid` bigint unsigned NULL,
`value_graphid` bigint unsigned NULL,
`value_sysmapid` bigint unsigned NULL,
`value_serviceid` bigint unsigned NULL,
`value_slaid` bigint unsigned NULL,
PRIMARY KEY (widget_fieldid)
) ENGINE=InnoDB;
CREATE INDEX `widget_field_1` ON `widget_field` (`widgetid`);
CREATE INDEX `widget_field_2` ON `widget_field` (`value_groupid`);
CREATE INDEX `widget_field_3` ON `widget_field` (`value_hostid`);
CREATE INDEX `widget_field_4` ON `widget_field` (`value_itemid`);
CREATE INDEX `widget_field_5` ON `widget_field` (`value_graphid`);
CREATE INDEX `widget_field_6` ON `widget_field` (`value_sysmapid`);
CREATE INDEX `widget_field_7` ON `widget_field` (`value_serviceid`);
CREATE INDEX `widget_field_8` ON `widget_field` (`value_slaid`);
CREATE TABLE `task_check_now` (
`taskid` bigint unsigned NOT NULL,
`itemid` bigint unsigned NOT NULL,
PRIMARY KEY (taskid)
) ENGINE=InnoDB;
CREATE TABLE `event_suppress` (
`event_suppressid` bigint unsigned NOT NULL,
`eventid` bigint unsigned NOT NULL,
`maintenanceid` bigint unsigned NULL,
`suppress_until` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (event_suppressid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `event_suppress_1` ON `event_suppress` (`eventid`,`maintenanceid`);
CREATE INDEX `event_suppress_2` ON `event_suppress` (`suppress_until`);
CREATE INDEX `event_suppress_3` ON `event_suppress` (`maintenanceid`);
CREATE TABLE `maintenance_tag` (
`maintenancetagid` bigint unsigned NOT NULL,
`maintenanceid` bigint unsigned NOT NULL,
`tag` varchar(255) DEFAULT '' NOT NULL,
`operator` integer DEFAULT '2' NOT NULL,
`value` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (maintenancetagid)
) ENGINE=InnoDB;
CREATE INDEX `maintenance_tag_1` ON `maintenance_tag` (`maintenanceid`);
CREATE TABLE `lld_macro_path` (
`lld_macro_pathid` bigint unsigned NOT NULL,
`itemid` bigint unsigned NOT NULL,
`lld_macro` varchar(255) DEFAULT '' NOT NULL,
`path` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (lld_macro_pathid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `lld_macro_path_1` ON `lld_macro_path` (`itemid`,`lld_macro`);
CREATE TABLE `host_tag` (
`hosttagid` bigint unsigned NOT NULL,
`hostid` bigint unsigned NOT NULL,
`tag` varchar(255) DEFAULT '' NOT NULL,
`value` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (hosttagid)
) ENGINE=InnoDB;
CREATE INDEX `host_tag_1` ON `host_tag` (`hostid`);
CREATE TABLE `config_autoreg_tls` (
`autoreg_tlsid` bigint unsigned NOT NULL,
`tls_psk_identity` varchar(128) DEFAULT '' NOT NULL,
`tls_psk` varchar(512) DEFAULT '' NOT NULL,
PRIMARY KEY (autoreg_tlsid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `config_autoreg_tls_1` ON `config_autoreg_tls` (`tls_psk_identity`);
CREATE TABLE `module` (
`moduleid` bigint unsigned NOT NULL,
`id` varchar(255) DEFAULT '' NOT NULL,
`relative_path` varchar(255) DEFAULT '' NOT NULL,
`status` integer DEFAULT '0' NOT NULL,
`config` text NOT NULL,
PRIMARY KEY (moduleid)
) ENGINE=InnoDB;
CREATE TABLE `interface_snmp` (
`interfaceid` bigint unsigned NOT NULL,
`version` integer DEFAULT '2' NOT NULL,
`bulk` integer DEFAULT '1' NOT NULL,
`community` varchar(64) DEFAULT '' NOT NULL,
`securityname` varchar(64) DEFAULT '' NOT NULL,
`securitylevel` integer DEFAULT '0' NOT NULL,
`authpassphrase` varchar(64) DEFAULT '' NOT NULL,
`privpassphrase` varchar(64) DEFAULT '' NOT NULL,
`authprotocol` integer DEFAULT '0' NOT NULL,
`privprotocol` integer DEFAULT '0' NOT NULL,
`contextname` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (interfaceid)
) ENGINE=InnoDB;
CREATE TABLE `lld_override` (
`lld_overrideid` bigint unsigned NOT NULL,
`itemid` bigint unsigned NOT NULL,
`name` varchar(255) DEFAULT '' NOT NULL,
`step` integer DEFAULT '0' NOT NULL,
`evaltype` integer DEFAULT '0' NOT NULL,
`formula` varchar(255) DEFAULT '' NOT NULL,
`stop` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (lld_overrideid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `lld_override_1` ON `lld_override` (`itemid`,`name`);
CREATE TABLE `lld_override_condition` (
`lld_override_conditionid` bigint unsigned NOT NULL,
`lld_overrideid` bigint unsigned NOT NULL,
`operator` integer DEFAULT '8' NOT NULL,
`macro` varchar(64) DEFAULT '' NOT NULL,
`value` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (lld_override_conditionid)
) ENGINE=InnoDB;
CREATE INDEX `lld_override_condition_1` ON `lld_override_condition` (`lld_overrideid`);
CREATE TABLE `lld_override_operation` (
`lld_override_operationid` bigint unsigned NOT NULL,
`lld_overrideid` bigint unsigned NOT NULL,
`operationobject` integer DEFAULT '0' NOT NULL,
`operator` integer DEFAULT '0' NOT NULL,
`value` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (lld_override_operationid)
) ENGINE=InnoDB;
CREATE INDEX `lld_override_operation_1` ON `lld_override_operation` (`lld_overrideid`);
CREATE TABLE `lld_override_opstatus` (
`lld_override_operationid` bigint unsigned NOT NULL,
`status` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (lld_override_operationid)
) ENGINE=InnoDB;
CREATE TABLE `lld_override_opdiscover` (
`lld_override_operationid` bigint unsigned NOT NULL,
`discover` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (lld_override_operationid)
) ENGINE=InnoDB;
CREATE TABLE `lld_override_opperiod` (
`lld_override_operationid` bigint unsigned NOT NULL,
`delay` varchar(1024) DEFAULT '0' NOT NULL,
PRIMARY KEY (lld_override_operationid)
) ENGINE=InnoDB;
CREATE TABLE `lld_override_ophistory` (
`lld_override_operationid` bigint unsigned NOT NULL,
`history` varchar(255) DEFAULT '90d' NOT NULL,
PRIMARY KEY (lld_override_operationid)
) ENGINE=InnoDB;
CREATE TABLE `lld_override_optrends` (
`lld_override_operationid` bigint unsigned NOT NULL,
`trends` varchar(255) DEFAULT '365d' NOT NULL,
PRIMARY KEY (lld_override_operationid)
) ENGINE=InnoDB;
CREATE TABLE `lld_override_opseverity` (
`lld_override_operationid` bigint unsigned NOT NULL,
`severity` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (lld_override_operationid)
) ENGINE=InnoDB;
CREATE TABLE `lld_override_optag` (
`lld_override_optagid` bigint unsigned NOT NULL,
`lld_override_operationid` bigint unsigned NOT NULL,
`tag` varchar(255) DEFAULT '' NOT NULL,
`value` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (lld_override_optagid)
) ENGINE=InnoDB;
CREATE INDEX `lld_override_optag_1` ON `lld_override_optag` (`lld_override_operationid`);
CREATE TABLE `lld_override_optemplate` (
`lld_override_optemplateid` bigint unsigned NOT NULL,
`lld_override_operationid` bigint unsigned NOT NULL,
`templateid` bigint unsigned NOT NULL,
PRIMARY KEY (lld_override_optemplateid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `lld_override_optemplate_1` ON `lld_override_optemplate` (`lld_override_operationid`,`templateid`);
CREATE INDEX `lld_override_optemplate_2` ON `lld_override_optemplate` (`templateid`);
CREATE TABLE `lld_override_opinventory` (
`lld_override_operationid` bigint unsigned NOT NULL,
`inventory_mode` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (lld_override_operationid)
) ENGINE=InnoDB;
CREATE TABLE `trigger_queue` (
`trigger_queueid` bigint unsigned NOT NULL,
`objectid` bigint unsigned NOT NULL,
`type` integer DEFAULT '0' NOT NULL,
`clock` integer DEFAULT '0' NOT NULL,
`ns` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (trigger_queueid)
) ENGINE=InnoDB;
CREATE TABLE `item_parameter` (
`item_parameterid` bigint unsigned NOT NULL,
`itemid` bigint unsigned NOT NULL,
`name` varchar(255) DEFAULT '' NOT NULL,
`value` varchar(2048) DEFAULT '' NOT NULL,
PRIMARY KEY (item_parameterid)
) ENGINE=InnoDB;
CREATE INDEX `item_parameter_1` ON `item_parameter` (`itemid`);
CREATE TABLE `role_rule` (
`role_ruleid` bigint unsigned NOT NULL,
`roleid` bigint unsigned NOT NULL,
`type` integer DEFAULT '0' NOT NULL,
`name` varchar(255) DEFAULT '' NOT NULL,
`value_int` integer DEFAULT '0' NOT NULL,
`value_str` varchar(255) DEFAULT '' NOT NULL,
`value_moduleid` bigint unsigned NULL,
`value_serviceid` bigint unsigned NULL,
PRIMARY KEY (role_ruleid)
) ENGINE=InnoDB;
CREATE INDEX `role_rule_1` ON `role_rule` (`roleid`);
CREATE INDEX `role_rule_2` ON `role_rule` (`value_moduleid`);
CREATE INDEX `role_rule_3` ON `role_rule` (`value_serviceid`);
CREATE TABLE `token` (
`tokenid` bigint unsigned NOT NULL,
`name` varchar(64) DEFAULT '' NOT NULL,
`description` text NOT NULL,
`userid` bigint unsigned NOT NULL,
`token` varchar(128) NULL,
`lastaccess` integer DEFAULT '0' NOT NULL,
`status` integer DEFAULT '0' NOT NULL,
`expires_at` integer DEFAULT '0' NOT NULL,
`created_at` integer DEFAULT '0' NOT NULL,
`creator_userid` bigint unsigned NULL,
PRIMARY KEY (tokenid)
) ENGINE=InnoDB;
CREATE INDEX `token_1` ON `token` (`name`);
CREATE UNIQUE INDEX `token_2` ON `token` (`userid`,`name`);
CREATE UNIQUE INDEX `token_3` ON `token` (`token`);
CREATE INDEX `token_4` ON `token` (`creator_userid`);
CREATE TABLE `item_tag` (
`itemtagid` bigint unsigned NOT NULL,
`itemid` bigint unsigned NOT NULL,
`tag` varchar(255) DEFAULT '' NOT NULL,
`value` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (itemtagid)
) ENGINE=InnoDB;
CREATE INDEX `item_tag_1` ON `item_tag` (`itemid`);
CREATE TABLE `httptest_tag` (
`httptesttagid` bigint unsigned NOT NULL,
`httptestid` bigint unsigned NOT NULL,
`tag` varchar(255) DEFAULT '' NOT NULL,
`value` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (httptesttagid)
) ENGINE=InnoDB;
CREATE INDEX `httptest_tag_1` ON `httptest_tag` (`httptestid`);
CREATE TABLE `sysmaps_element_tag` (
`selementtagid` bigint unsigned NOT NULL,
`selementid` bigint unsigned NOT NULL,
`tag` varchar(255) DEFAULT '' NOT NULL,
`value` varchar(255) DEFAULT '' NOT NULL,
`operator` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (selementtagid)
) ENGINE=InnoDB;
CREATE INDEX `sysmaps_element_tag_1` ON `sysmaps_element_tag` (`selementid`);
CREATE TABLE `report` (
`reportid` bigint unsigned NOT NULL,
`userid` bigint unsigned NOT NULL,
`name` varchar(255) DEFAULT '' NOT NULL,
`description` varchar(2048) DEFAULT '' NOT NULL,
`status` integer DEFAULT '0' NOT NULL,
`dashboardid` bigint unsigned NOT NULL,
`period` integer DEFAULT '0' NOT NULL,
`cycle` integer DEFAULT '0' NOT NULL,
`weekdays` integer DEFAULT '0' NOT NULL,
`start_time` integer DEFAULT '0' NOT NULL,
`active_since` integer DEFAULT '0' NOT NULL,
`active_till` integer DEFAULT '0' NOT NULL,
`state` integer DEFAULT '0' NOT NULL,
`lastsent` integer DEFAULT '0' NOT NULL,
`info` varchar(2048) DEFAULT '' NOT NULL,
PRIMARY KEY (reportid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `report_1` ON `report` (`name`);
CREATE TABLE `report_param` (
`reportparamid` bigint unsigned NOT NULL,
`reportid` bigint unsigned NOT NULL,
`name` varchar(255) DEFAULT '' NOT NULL,
`value` text NOT NULL,
PRIMARY KEY (reportparamid)
) ENGINE=InnoDB;
CREATE INDEX `report_param_1` ON `report_param` (`reportid`);
CREATE TABLE `report_user` (
`reportuserid` bigint unsigned NOT NULL,
`reportid` bigint unsigned NOT NULL,
`userid` bigint unsigned NOT NULL,
`exclude` integer DEFAULT '0' NOT NULL,
`access_userid` bigint unsigned NULL,
PRIMARY KEY (reportuserid)
) ENGINE=InnoDB;
CREATE INDEX `report_user_1` ON `report_user` (`reportid`);
CREATE TABLE `report_usrgrp` (
`reportusrgrpid` bigint unsigned NOT NULL,
`reportid` bigint unsigned NOT NULL,
`usrgrpid` bigint unsigned NOT NULL,
`access_userid` bigint unsigned NULL,
PRIMARY KEY (reportusrgrpid)
) ENGINE=InnoDB;
CREATE INDEX `report_usrgrp_1` ON `report_usrgrp` (`reportid`);
CREATE TABLE `service_problem_tag` (
`service_problem_tagid` bigint unsigned NOT NULL,
`serviceid` bigint unsigned NOT NULL,
`tag` varchar(255) DEFAULT '' NOT NULL,
`operator` integer DEFAULT '0' NOT NULL,
`value` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (service_problem_tagid)
) ENGINE=InnoDB;
CREATE INDEX `service_problem_tag_1` ON `service_problem_tag` (`serviceid`);
CREATE TABLE `service_problem` (
`service_problemid` bigint unsigned NOT NULL,
`eventid` bigint unsigned NOT NULL,
`serviceid` bigint unsigned NOT NULL,
`severity` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (service_problemid)
) ENGINE=InnoDB;
CREATE INDEX `service_problem_1` ON `service_problem` (`eventid`);
CREATE INDEX `service_problem_2` ON `service_problem` (`serviceid`);
CREATE TABLE `service_tag` (
`servicetagid` bigint unsigned NOT NULL,
`serviceid` bigint unsigned NOT NULL,
`tag` varchar(255) DEFAULT '' NOT NULL,
`value` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (servicetagid)
) ENGINE=InnoDB;
CREATE INDEX `service_tag_1` ON `service_tag` (`serviceid`);
CREATE TABLE `service_status_rule` (
`service_status_ruleid` bigint unsigned NOT NULL,
`serviceid` bigint unsigned NOT NULL,
`type` integer DEFAULT '0' NOT NULL,
`limit_value` integer DEFAULT '0' NOT NULL,
`limit_status` integer DEFAULT '0' NOT NULL,
`new_status` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (service_status_ruleid)
) ENGINE=InnoDB;
CREATE INDEX `service_status_rule_1` ON `service_status_rule` (`serviceid`);
CREATE TABLE `ha_node` (
`ha_nodeid` varchar(25) NOT NULL,
`name` varchar(255) DEFAULT '' NOT NULL,
`address` varchar(255) DEFAULT '' NOT NULL,
`port` integer DEFAULT '10051' NOT NULL,
`lastaccess` integer DEFAULT '0' NOT NULL,
`status` integer DEFAULT '0' NOT NULL,
`ha_sessionid` varchar(25) DEFAULT '' NOT NULL,
PRIMARY KEY (ha_nodeid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `ha_node_1` ON `ha_node` (`name`);
CREATE INDEX `ha_node_2` ON `ha_node` (`status`,`lastaccess`);
CREATE TABLE `sla` (
`slaid` bigint unsigned NOT NULL,
`name` varchar(255) DEFAULT '' NOT NULL,
`period` integer DEFAULT '0' NOT NULL,
`slo` DOUBLE PRECISION DEFAULT '99.9' NOT NULL,
`effective_date` integer DEFAULT '0' NOT NULL,
`timezone` varchar(50) DEFAULT 'UTC' NOT NULL,
`status` integer DEFAULT '1' NOT NULL,
`description` text NOT NULL,
PRIMARY KEY (slaid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX `sla_1` ON `sla` (`name`);
CREATE TABLE `sla_schedule` (
`sla_scheduleid` bigint unsigned NOT NULL,
`slaid` bigint unsigned NOT NULL,
`period_from` integer DEFAULT '0' NOT NULL,
`period_to` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (sla_scheduleid)
) ENGINE=InnoDB;
CREATE INDEX `sla_schedule_1` ON `sla_schedule` (`slaid`);
CREATE TABLE `sla_excluded_downtime` (
`sla_excluded_downtimeid` bigint unsigned NOT NULL,
`slaid` bigint unsigned NOT NULL,
`name` varchar(255) DEFAULT '' NOT NULL,
`period_from` integer DEFAULT '0' NOT NULL,
`period_to` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (sla_excluded_downtimeid)
) ENGINE=InnoDB;
CREATE INDEX `sla_excluded_downtime_1` ON `sla_excluded_downtime` (`slaid`);
CREATE TABLE `sla_service_tag` (
`sla_service_tagid` bigint unsigned NOT NULL,
`slaid` bigint unsigned NOT NULL,
`tag` varchar(255) DEFAULT '' NOT NULL,
`operator` integer DEFAULT '0' NOT NULL,
`value` varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (sla_service_tagid)
) ENGINE=InnoDB;
CREATE INDEX `sla_service_tag_1` ON `sla_service_tag` (`slaid`);
CREATE TABLE `dbversion` (
`dbversionid` bigint unsigned NOT NULL,
`mandatory` integer DEFAULT '0' NOT NULL,
`optional` integer DEFAULT '0' NOT NULL,
PRIMARY KEY (dbversionid)
) ENGINE=InnoDB;
INSERT INTO dbversion VALUES ('1','6000000','6000004');
ALTER TABLE `users` ADD CONSTRAINT `c_users_1` FOREIGN KEY (`roleid`) REFERENCES `role` (`roleid`) ON DELETE CASCADE;
ALTER TABLE `hosts` ADD CONSTRAINT `c_hosts_1` FOREIGN KEY (`proxy_hostid`) REFERENCES `hosts` (`hostid`);
ALTER TABLE `hosts` ADD CONSTRAINT `c_hosts_2` FOREIGN KEY (`maintenanceid`) REFERENCES `maintenances` (`maintenanceid`);
ALTER TABLE `hosts` ADD CONSTRAINT `c_hosts_3` FOREIGN KEY (`templateid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE;
ALTER TABLE `group_prototype` ADD CONSTRAINT `c_group_prototype_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE;
ALTER TABLE `group_prototype` ADD CONSTRAINT `c_group_prototype_2` FOREIGN KEY (`groupid`) REFERENCES `hstgrp` (`groupid`);
ALTER TABLE `group_prototype` ADD CONSTRAINT `c_group_prototype_3` FOREIGN KEY (`templateid`) REFERENCES `group_prototype` (`group_prototypeid`) ON DELETE CASCADE;
ALTER TABLE `group_discovery` ADD CONSTRAINT `c_group_discovery_1` FOREIGN KEY (`groupid`) REFERENCES `hstgrp` (`groupid`) ON DELETE CASCADE;
ALTER TABLE `group_discovery` ADD CONSTRAINT `c_group_discovery_2` FOREIGN KEY (`parent_group_prototypeid`) REFERENCES `group_prototype` (`group_prototypeid`);
ALTER TABLE `drules` ADD CONSTRAINT `c_drules_1` FOREIGN KEY (`proxy_hostid`) REFERENCES `hosts` (`hostid`);
ALTER TABLE `dchecks` ADD CONSTRAINT `c_dchecks_1` FOREIGN KEY (`druleid`) REFERENCES `drules` (`druleid`) ON DELETE CASCADE;
ALTER TABLE `httptest` ADD CONSTRAINT `c_httptest_2` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE;
ALTER TABLE `httptest` ADD CONSTRAINT `c_httptest_3` FOREIGN KEY (`templateid`) REFERENCES `httptest` (`httptestid`) ON DELETE CASCADE;
ALTER TABLE `httpstep` ADD CONSTRAINT `c_httpstep_1` FOREIGN KEY (`httptestid`) REFERENCES `httptest` (`httptestid`) ON DELETE CASCADE;
ALTER TABLE `interface` ADD CONSTRAINT `c_interface_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE;
ALTER TABLE `valuemap` ADD CONSTRAINT `c_valuemap_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE;
ALTER TABLE `items` ADD CONSTRAINT `c_items_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE;
ALTER TABLE `items` ADD CONSTRAINT `c_items_2` FOREIGN KEY (`templateid`) REFERENCES `items` (`itemid`) ON DELETE CASCADE;
ALTER TABLE `items` ADD CONSTRAINT `c_items_3` FOREIGN KEY (`valuemapid`) REFERENCES `valuemap` (`valuemapid`);
ALTER TABLE `items` ADD CONSTRAINT `c_items_4` FOREIGN KEY (`interfaceid`) REFERENCES `interface` (`interfaceid`);
ALTER TABLE `items` ADD CONSTRAINT `c_items_5` FOREIGN KEY (`master_itemid`) REFERENCES `items` (`itemid`) ON DELETE CASCADE;
ALTER TABLE `httpstepitem` ADD CONSTRAINT `c_httpstepitem_1` FOREIGN KEY (`httpstepid`) REFERENCES `httpstep` (`httpstepid`) ON DELETE CASCADE;
ALTER TABLE `httpstepitem` ADD CONSTRAINT `c_httpstepitem_2` FOREIGN KEY (`itemid`) REFERENCES `items` (`itemid`) ON DELETE CASCADE;
ALTER TABLE `httptestitem` ADD CONSTRAINT `c_httptestitem_1` FOREIGN KEY (`httptestid`) REFERENCES `httptest` (`httptestid`) ON DELETE CASCADE;
ALTER TABLE `httptestitem` ADD CONSTRAINT `c_httptestitem_2` FOREIGN KEY (`itemid`) REFERENCES `items` (`itemid`) ON DELETE CASCADE;
ALTER TABLE `media_type_param` ADD CONSTRAINT `c_media_type_param_1` FOREIGN KEY (`mediatypeid`) REFERENCES `media_type` (`mediatypeid`) ON DELETE CASCADE;
ALTER TABLE `media_type_message` ADD CONSTRAINT `c_media_type_message_1` FOREIGN KEY (`mediatypeid`) REFERENCES `media_type` (`mediatypeid`) ON DELETE CASCADE;
ALTER TABLE `users_groups` ADD CONSTRAINT `c_users_groups_1` FOREIGN KEY (`usrgrpid`) REFERENCES `usrgrp` (`usrgrpid`) ON DELETE CASCADE;
ALTER TABLE `users_groups` ADD CONSTRAINT `c_users_groups_2` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE;
ALTER TABLE `scripts` ADD CONSTRAINT `c_scripts_1` FOREIGN KEY (`usrgrpid`) REFERENCES `usrgrp` (`usrgrpid`);
ALTER TABLE `scripts` ADD CONSTRAINT `c_scripts_2` FOREIGN KEY (`groupid`) REFERENCES `hstgrp` (`groupid`);
ALTER TABLE `script_param` ADD CONSTRAINT `c_script_param_1` FOREIGN KEY (`scriptid`) REFERENCES `scripts` (`scriptid`) ON DELETE CASCADE;
ALTER TABLE `operations` ADD CONSTRAINT `c_operations_1` FOREIGN KEY (`actionid`) REFERENCES `actions` (`actionid`) ON DELETE CASCADE;
ALTER TABLE `opmessage` ADD CONSTRAINT `c_opmessage_1` FOREIGN KEY (`operationid`) REFERENCES `operations` (`operationid`) ON DELETE CASCADE;
ALTER TABLE `opmessage` ADD CONSTRAINT `c_opmessage_2` FOREIGN KEY (`mediatypeid`) REFERENCES `media_type` (`mediatypeid`);
ALTER TABLE `opmessage_grp` ADD CONSTRAINT `c_opmessage_grp_1` FOREIGN KEY (`operationid`) REFERENCES `operations` (`operationid`) ON DELETE CASCADE;
ALTER TABLE `opmessage_grp` ADD CONSTRAINT `c_opmessage_grp_2` FOREIGN KEY (`usrgrpid`) REFERENCES `usrgrp` (`usrgrpid`);
ALTER TABLE `opmessage_usr` ADD CONSTRAINT `c_opmessage_usr_1` FOREIGN KEY (`operationid`) REFERENCES `operations` (`operationid`) ON DELETE CASCADE;
ALTER TABLE `opmessage_usr` ADD CONSTRAINT `c_opmessage_usr_2` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`);
ALTER TABLE `opcommand` ADD CONSTRAINT `c_opcommand_1` FOREIGN KEY (`operationid`) REFERENCES `operations` (`operationid`) ON DELETE CASCADE;
ALTER TABLE `opcommand` ADD CONSTRAINT `c_opcommand_2` FOREIGN KEY (`scriptid`) REFERENCES `scripts` (`scriptid`);
ALTER TABLE `opcommand_hst` ADD CONSTRAINT `c_opcommand_hst_1` FOREIGN KEY (`operationid`) REFERENCES `operations` (`operationid`) ON DELETE CASCADE;
ALTER TABLE `opcommand_hst` ADD CONSTRAINT `c_opcommand_hst_2` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`);
ALTER TABLE `opcommand_grp` ADD CONSTRAINT `c_opcommand_grp_1` FOREIGN KEY (`operationid`) REFERENCES `operations` (`operationid`) ON DELETE CASCADE;
ALTER TABLE `opcommand_grp` ADD CONSTRAINT `c_opcommand_grp_2` FOREIGN KEY (`groupid`) REFERENCES `hstgrp` (`groupid`);
ALTER TABLE `opgroup` ADD CONSTRAINT `c_opgroup_1` FOREIGN KEY (`operationid`) REFERENCES `operations` (`operationid`) ON DELETE CASCADE;
ALTER TABLE `opgroup` ADD CONSTRAINT `c_opgroup_2` FOREIGN KEY (`groupid`) REFERENCES `hstgrp` (`groupid`);
ALTER TABLE `optemplate` ADD CONSTRAINT `c_optemplate_1` FOREIGN KEY (`operationid`) REFERENCES `operations` (`operationid`) ON DELETE CASCADE;
ALTER TABLE `optemplate` ADD CONSTRAINT `c_optemplate_2` FOREIGN KEY (`templateid`) REFERENCES `hosts` (`hostid`);
ALTER TABLE `opconditions` ADD CONSTRAINT `c_opconditions_1` FOREIGN KEY (`operationid`) REFERENCES `operations` (`operationid`) ON DELETE CASCADE;
ALTER TABLE `conditions` ADD CONSTRAINT `c_conditions_1` FOREIGN KEY (`actionid`) REFERENCES `actions` (`actionid`) ON DELETE CASCADE;
ALTER TABLE `config` ADD CONSTRAINT `c_config_1` FOREIGN KEY (`alert_usrgrpid`) REFERENCES `usrgrp` (`usrgrpid`);
ALTER TABLE `config` ADD CONSTRAINT `c_config_2` FOREIGN KEY (`discovery_groupid`) REFERENCES `hstgrp` (`groupid`);
ALTER TABLE `triggers` ADD CONSTRAINT `c_triggers_1` FOREIGN KEY (`templateid`) REFERENCES `triggers` (`triggerid`) ON DELETE CASCADE;
ALTER TABLE `trigger_depends` ADD CONSTRAINT `c_trigger_depends_1` FOREIGN KEY (`triggerid_down`) REFERENCES `triggers` (`triggerid`) ON DELETE CASCADE;
ALTER TABLE `trigger_depends` ADD CONSTRAINT `c_trigger_depends_2` FOREIGN KEY (`triggerid_up`) REFERENCES `triggers` (`triggerid`) ON DELETE CASCADE;
ALTER TABLE `functions` ADD CONSTRAINT `c_functions_1` FOREIGN KEY (`itemid`) REFERENCES `items` (`itemid`) ON DELETE CASCADE;
ALTER TABLE `functions` ADD CONSTRAINT `c_functions_2` FOREIGN KEY (`triggerid`) REFERENCES `triggers` (`triggerid`) ON DELETE CASCADE;
ALTER TABLE `graphs` ADD CONSTRAINT `c_graphs_1` FOREIGN KEY (`templateid`) REFERENCES `graphs` (`graphid`) ON DELETE CASCADE;
ALTER TABLE `graphs` ADD CONSTRAINT `c_graphs_2` FOREIGN KEY (`ymin_itemid`) REFERENCES `items` (`itemid`);
ALTER TABLE `graphs` ADD CONSTRAINT `c_graphs_3` FOREIGN KEY (`ymax_itemid`) REFERENCES `items` (`itemid`);
ALTER TABLE `graphs_items` ADD CONSTRAINT `c_graphs_items_1` FOREIGN KEY (`graphid`) REFERENCES `graphs` (`graphid`) ON DELETE CASCADE;
ALTER TABLE `graphs_items` ADD CONSTRAINT `c_graphs_items_2` FOREIGN KEY (`itemid`) REFERENCES `items` (`itemid`) ON DELETE CASCADE;
ALTER TABLE `hostmacro` ADD CONSTRAINT `c_hostmacro_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE;
ALTER TABLE `hosts_groups` ADD CONSTRAINT `c_hosts_groups_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE;
ALTER TABLE `hosts_groups` ADD CONSTRAINT `c_hosts_groups_2` FOREIGN KEY (`groupid`) REFERENCES `hstgrp` (`groupid`) ON DELETE CASCADE;
ALTER TABLE `hosts_templates` ADD CONSTRAINT `c_hosts_templates_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE;
ALTER TABLE `hosts_templates` ADD CONSTRAINT `c_hosts_templates_2` FOREIGN KEY (`templateid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE;
ALTER TABLE `valuemap_mapping` ADD CONSTRAINT `c_valuemap_mapping_1` FOREIGN KEY (`valuemapid`) REFERENCES `valuemap` (`valuemapid`) ON DELETE CASCADE;
ALTER TABLE `media` ADD CONSTRAINT `c_media_1` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE;
ALTER TABLE `media` ADD CONSTRAINT `c_media_2` FOREIGN KEY (`mediatypeid`) REFERENCES `media_type` (`mediatypeid`) ON DELETE CASCADE;
ALTER TABLE `rights` ADD CONSTRAINT `c_rights_1` FOREIGN KEY (`groupid`) REFERENCES `usrgrp` (`usrgrpid`) ON DELETE CASCADE;
ALTER TABLE `rights` ADD CONSTRAINT `c_rights_2` FOREIGN KEY (`id`) REFERENCES `hstgrp` (`groupid`) ON DELETE CASCADE;
ALTER TABLE `services_links` ADD CONSTRAINT `c_services_links_1` FOREIGN KEY (`serviceupid`) REFERENCES `services` (`serviceid`) ON DELETE CASCADE;
ALTER TABLE `services_links` ADD CONSTRAINT `c_services_links_2` FOREIGN KEY (`servicedownid`) REFERENCES `services` (`serviceid`) ON DELETE CASCADE;
ALTER TABLE `icon_map` ADD CONSTRAINT `c_icon_map_1` FOREIGN KEY (`default_iconid`) REFERENCES `images` (`imageid`);
ALTER TABLE `icon_mapping` ADD CONSTRAINT `c_icon_mapping_1` FOREIGN KEY (`iconmapid`) REFERENCES `icon_map` (`iconmapid`) ON DELETE CASCADE;
ALTER TABLE `icon_mapping` ADD CONSTRAINT `c_icon_mapping_2` FOREIGN KEY (`iconid`) REFERENCES `images` (`imageid`);
ALTER TABLE `sysmaps` ADD CONSTRAINT `c_sysmaps_1` FOREIGN KEY (`backgroundid`) REFERENCES `images` (`imageid`);
ALTER TABLE `sysmaps` ADD CONSTRAINT `c_sysmaps_2` FOREIGN KEY (`iconmapid`) REFERENCES `icon_map` (`iconmapid`);
ALTER TABLE `sysmaps` ADD CONSTRAINT `c_sysmaps_3` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`);
ALTER TABLE `sysmaps_elements` ADD CONSTRAINT `c_sysmaps_elements_1` FOREIGN KEY (`sysmapid`) REFERENCES `sysmaps` (`sysmapid`) ON DELETE CASCADE;
ALTER TABLE `sysmaps_elements` ADD CONSTRAINT `c_sysmaps_elements_2` FOREIGN KEY (`iconid_off`) REFERENCES `images` (`imageid`);
ALTER TABLE `sysmaps_elements` ADD CONSTRAINT `c_sysmaps_elements_3` FOREIGN KEY (`iconid_on`) REFERENCES `images` (`imageid`);
ALTER TABLE `sysmaps_elements` ADD CONSTRAINT `c_sysmaps_elements_4` FOREIGN KEY (`iconid_disabled`) REFERENCES `images` (`imageid`);
ALTER TABLE `sysmaps_elements` ADD CONSTRAINT `c_sysmaps_elements_5` FOREIGN KEY (`iconid_maintenance`) REFERENCES `images` (`imageid`);
ALTER TABLE `sysmaps_links` ADD CONSTRAINT `c_sysmaps_links_1` FOREIGN KEY (`sysmapid`) REFERENCES `sysmaps` (`sysmapid`) ON DELETE CASCADE;
ALTER TABLE `sysmaps_links` ADD CONSTRAINT `c_sysmaps_links_2` FOREIGN KEY (`selementid1`) REFERENCES `sysmaps_elements` (`selementid`) ON DELETE CASCADE;
ALTER TABLE `sysmaps_links` ADD CONSTRAINT `c_sysmaps_links_3` FOREIGN KEY (`selementid2`) REFERENCES `sysmaps_elements` (`selementid`) ON DELETE CASCADE;
ALTER TABLE `sysmaps_link_triggers` ADD CONSTRAINT `c_sysmaps_link_triggers_1` FOREIGN KEY (`linkid`) REFERENCES `sysmaps_links` (`linkid`) ON DELETE CASCADE;
ALTER TABLE `sysmaps_link_triggers` ADD CONSTRAINT `c_sysmaps_link_triggers_2` FOREIGN KEY (`triggerid`) REFERENCES `triggers` (`triggerid`) ON DELETE CASCADE;
ALTER TABLE `sysmap_element_url` ADD CONSTRAINT `c_sysmap_element_url_1` FOREIGN KEY (`selementid`) REFERENCES `sysmaps_elements` (`selementid`) ON DELETE CASCADE;
ALTER TABLE `sysmap_url` ADD CONSTRAINT `c_sysmap_url_1` FOREIGN KEY (`sysmapid`) REFERENCES `sysmaps` (`sysmapid`) ON DELETE CASCADE;
ALTER TABLE `sysmap_user` ADD CONSTRAINT `c_sysmap_user_1` FOREIGN KEY (`sysmapid`) REFERENCES `sysmaps` (`sysmapid`) ON DELETE CASCADE;
ALTER TABLE `sysmap_user` ADD CONSTRAINT `c_sysmap_user_2` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE;
ALTER TABLE `sysmap_usrgrp` ADD CONSTRAINT `c_sysmap_usrgrp_1` FOREIGN KEY (`sysmapid`) REFERENCES `sysmaps` (`sysmapid`) ON DELETE CASCADE;
ALTER TABLE `sysmap_usrgrp` ADD CONSTRAINT `c_sysmap_usrgrp_2` FOREIGN KEY (`usrgrpid`) REFERENCES `usrgrp` (`usrgrpid`) ON DELETE CASCADE;
ALTER TABLE `maintenances_hosts` ADD CONSTRAINT `c_maintenances_hosts_1` FOREIGN KEY (`maintenanceid`) REFERENCES `maintenances` (`maintenanceid`) ON DELETE CASCADE;
ALTER TABLE `maintenances_hosts` ADD CONSTRAINT `c_maintenances_hosts_2` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE;
ALTER TABLE `maintenances_groups` ADD CONSTRAINT `c_maintenances_groups_1` FOREIGN KEY (`maintenanceid`) REFERENCES `maintenances` (`maintenanceid`) ON DELETE CASCADE;
ALTER TABLE `maintenances_groups` ADD CONSTRAINT `c_maintenances_groups_2` FOREIGN KEY (`groupid`) REFERENCES `hstgrp` (`groupid`) ON DELETE CASCADE;
ALTER TABLE `maintenances_windows` ADD CONSTRAINT `c_maintenances_windows_1` FOREIGN KEY (`maintenanceid`) REFERENCES `maintenances` (`maintenanceid`) ON DELETE CASCADE;
ALTER TABLE `maintenances_windows` ADD CONSTRAINT `c_maintenances_windows_2` FOREIGN KEY (`timeperiodid`) REFERENCES `timeperiods` (`timeperiodid`) ON DELETE CASCADE;
ALTER TABLE `expressions` ADD CONSTRAINT `c_expressions_1` FOREIGN KEY (`regexpid`) REFERENCES `regexps` (`regexpid`) ON DELETE CASCADE;
ALTER TABLE `alerts` ADD CONSTRAINT `c_alerts_1` FOREIGN KEY (`actionid`) REFERENCES `actions` (`actionid`) ON DELETE CASCADE;
ALTER TABLE `alerts` ADD CONSTRAINT `c_alerts_2` FOREIGN KEY (`eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE;
ALTER TABLE `alerts` ADD CONSTRAINT `c_alerts_3` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE;
ALTER TABLE `alerts` ADD CONSTRAINT `c_alerts_4` FOREIGN KEY (`mediatypeid`) REFERENCES `media_type` (`mediatypeid`) ON DELETE CASCADE;
ALTER TABLE `alerts` ADD CONSTRAINT `c_alerts_5` FOREIGN KEY (`p_eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE;
ALTER TABLE `alerts` ADD CONSTRAINT `c_alerts_6` FOREIGN KEY (`acknowledgeid`) REFERENCES `acknowledges` (`acknowledgeid`) ON DELETE CASCADE;
ALTER TABLE `acknowledges` ADD CONSTRAINT `c_acknowledges_1` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE;
ALTER TABLE `acknowledges` ADD CONSTRAINT `c_acknowledges_2` FOREIGN KEY (`eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE;
ALTER TABLE `service_alarms` ADD CONSTRAINT `c_service_alarms_1` FOREIGN KEY (`serviceid`) REFERENCES `services` (`serviceid`) ON DELETE CASCADE;
ALTER TABLE `autoreg_host` ADD CONSTRAINT `c_autoreg_host_1` FOREIGN KEY (`proxy_hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE;
ALTER TABLE `dhosts` ADD CONSTRAINT `c_dhosts_1` FOREIGN KEY (`druleid`) REFERENCES `drules` (`druleid`) ON DELETE CASCADE;
ALTER TABLE `dservices` ADD CONSTRAINT `c_dservices_1` FOREIGN KEY (`dhostid`) REFERENCES `dhosts` (`dhostid`) ON DELETE CASCADE;
ALTER TABLE `dservices` ADD CONSTRAINT `c_dservices_2` FOREIGN KEY (`dcheckid`) REFERENCES `dchecks` (`dcheckid`) ON DELETE CASCADE;
ALTER TABLE `graph_discovery` ADD CONSTRAINT `c_graph_discovery_1` FOREIGN KEY (`graphid`) REFERENCES `graphs` (`graphid`) ON DELETE CASCADE;
ALTER TABLE `graph_discovery` ADD CONSTRAINT `c_graph_discovery_2` FOREIGN KEY (`parent_graphid`) REFERENCES `graphs` (`graphid`);
ALTER TABLE `host_inventory` ADD CONSTRAINT `c_host_inventory_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE;
ALTER TABLE `item_discovery` ADD CONSTRAINT `c_item_discovery_1` FOREIGN KEY (`itemid`) REFERENCES `items` (`itemid`) ON DELETE CASCADE;
ALTER TABLE `item_discovery` ADD CONSTRAINT `c_item_discovery_2` FOREIGN KEY (`parent_itemid`) REFERENCES `items` (`itemid`) ON DELETE CASCADE;
ALTER TABLE `host_discovery` ADD CONSTRAINT `c_host_discovery_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE;
ALTER TABLE `host_discovery` ADD CONSTRAINT `c_host_discovery_2` FOREIGN KEY (`parent_hostid`) REFERENCES `hosts` (`hostid`);
ALTER TABLE `host_discovery` ADD CONSTRAINT `c_host_discovery_3` FOREIGN KEY (`parent_itemid`) REFERENCES `items` (`itemid`);
ALTER TABLE `interface_discovery` ADD CONSTRAINT `c_interface_discovery_1` FOREIGN KEY (`interfaceid`) REFERENCES `interface` (`interfaceid`) ON DELETE CASCADE;
ALTER TABLE `interface_discovery` ADD CONSTRAINT `c_interface_discovery_2` FOREIGN KEY (`parent_interfaceid`) REFERENCES `interface` (`interfaceid`) ON DELETE CASCADE;
ALTER TABLE `profiles` ADD CONSTRAINT `c_profiles_1` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE;
ALTER TABLE `sessions` ADD CONSTRAINT `c_sessions_1` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE;
ALTER TABLE `trigger_discovery` ADD CONSTRAINT `c_trigger_discovery_1` FOREIGN KEY (`triggerid`) REFERENCES `triggers` (`triggerid`) ON DELETE CASCADE;
ALTER TABLE `trigger_discovery` ADD CONSTRAINT `c_trigger_discovery_2` FOREIGN KEY (`parent_triggerid`) REFERENCES `triggers` (`triggerid`);
ALTER TABLE `item_condition` ADD CONSTRAINT `c_item_condition_1` FOREIGN KEY (`itemid`) REFERENCES `items` (`itemid`) ON DELETE CASCADE;
ALTER TABLE `item_rtdata` ADD CONSTRAINT `c_item_rtdata_1` FOREIGN KEY (`itemid`) REFERENCES `items` (`itemid`) ON DELETE CASCADE;
ALTER TABLE `opinventory` ADD CONSTRAINT `c_opinventory_1` FOREIGN KEY (`operationid`) REFERENCES `operations` (`operationid`) ON DELETE CASCADE;
ALTER TABLE `trigger_tag` ADD CONSTRAINT `c_trigger_tag_1` FOREIGN KEY (`triggerid`) REFERENCES `triggers` (`triggerid`) ON DELETE CASCADE;
ALTER TABLE `event_tag` ADD CONSTRAINT `c_event_tag_1` FOREIGN KEY (`eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE;
ALTER TABLE `problem` ADD CONSTRAINT `c_problem_1` FOREIGN KEY (`eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE;
ALTER TABLE `problem` ADD CONSTRAINT `c_problem_2` FOREIGN KEY (`r_eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE;
ALTER TABLE `problem_tag` ADD CONSTRAINT `c_problem_tag_1` FOREIGN KEY (`eventid`) REFERENCES `problem` (`eventid`) ON DELETE CASCADE;
ALTER TABLE `tag_filter` ADD CONSTRAINT `c_tag_filter_1` FOREIGN KEY (`usrgrpid`) REFERENCES `usrgrp` (`usrgrpid`) ON DELETE CASCADE;
ALTER TABLE `tag_filter` ADD CONSTRAINT `c_tag_filter_2` FOREIGN KEY (`groupid`) REFERENCES `hstgrp` (`groupid`) ON DELETE CASCADE;
ALTER TABLE `event_recovery` ADD CONSTRAINT `c_event_recovery_1` FOREIGN KEY (`eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE;
ALTER TABLE `event_recovery` ADD CONSTRAINT `c_event_recovery_2` FOREIGN KEY (`r_eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE;
ALTER TABLE `event_recovery` ADD CONSTRAINT `c_event_recovery_3` FOREIGN KEY (`c_eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE;
ALTER TABLE `corr_condition` ADD CONSTRAINT `c_corr_condition_1` FOREIGN KEY (`correlationid`) REFERENCES `correlation` (`correlationid`) ON DELETE CASCADE;
ALTER TABLE `corr_condition_tag` ADD CONSTRAINT `c_corr_condition_tag_1` FOREIGN KEY (`corr_conditionid`) REFERENCES `corr_condition` (`corr_conditionid`) ON DELETE CASCADE;
ALTER TABLE `corr_condition_group` ADD CONSTRAINT `c_corr_condition_group_1` FOREIGN KEY (`corr_conditionid`) REFERENCES `corr_condition` (`corr_conditionid`) ON DELETE CASCADE;
ALTER TABLE `corr_condition_group` ADD CONSTRAINT `c_corr_condition_group_2` FOREIGN KEY (`groupid`) REFERENCES `hstgrp` (`groupid`);
ALTER TABLE `corr_condition_tagpair` ADD CONSTRAINT `c_corr_condition_tagpair_1` FOREIGN KEY (`corr_conditionid`) REFERENCES `corr_condition` (`corr_conditionid`) ON DELETE CASCADE;
ALTER TABLE `corr_condition_tagvalue` ADD CONSTRAINT `c_corr_condition_tagvalue_1` FOREIGN KEY (`corr_conditionid`) REFERENCES `corr_condition` (`corr_conditionid`) ON DELETE CASCADE;
ALTER TABLE `corr_operation` ADD CONSTRAINT `c_corr_operation_1` FOREIGN KEY (`correlationid`) REFERENCES `correlation` (`correlationid`) ON DELETE CASCADE;
ALTER TABLE `task` ADD CONSTRAINT `c_task_1` FOREIGN KEY (`proxy_hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE;
ALTER TABLE `task_close_problem` ADD CONSTRAINT `c_task_close_problem_1` FOREIGN KEY (`taskid`) REFERENCES `task` (`taskid`) ON DELETE CASCADE;
ALTER TABLE `item_preproc` ADD CONSTRAINT `c_item_preproc_1` FOREIGN KEY (`itemid`) REFERENCES `items` (`itemid`) ON DELETE CASCADE;
ALTER TABLE `task_remote_command` ADD CONSTRAINT `c_task_remote_command_1` FOREIGN KEY (`taskid`) REFERENCES `task` (`taskid`) ON DELETE CASCADE;
ALTER TABLE `task_remote_command_result` ADD CONSTRAINT `c_task_remote_command_result_1` FOREIGN KEY (`taskid`) REFERENCES `task` (`taskid`) ON DELETE CASCADE;
ALTER TABLE `task_data` ADD CONSTRAINT `c_task_data_1` FOREIGN KEY (`taskid`) REFERENCES `task` (`taskid`) ON DELETE CASCADE;
ALTER TABLE `task_result` ADD CONSTRAINT `c_task_result_1` FOREIGN KEY (`taskid`) REFERENCES `task` (`taskid`) ON DELETE CASCADE;
ALTER TABLE `task_acknowledge` ADD CONSTRAINT `c_task_acknowledge_1` FOREIGN KEY (`taskid`) REFERENCES `task` (`taskid`) ON DELETE CASCADE;
ALTER TABLE `sysmap_shape` ADD CONSTRAINT `c_sysmap_shape_1` FOREIGN KEY (`sysmapid`) REFERENCES `sysmaps` (`sysmapid`) ON DELETE CASCADE;
ALTER TABLE `sysmap_element_trigger` ADD CONSTRAINT `c_sysmap_element_trigger_1` FOREIGN KEY (`selementid`) REFERENCES `sysmaps_elements` (`selementid`) ON DELETE CASCADE;
ALTER TABLE `sysmap_element_trigger` ADD CONSTRAINT `c_sysmap_element_trigger_2` FOREIGN KEY (`triggerid`) REFERENCES `triggers` (`triggerid`) ON DELETE CASCADE;
ALTER TABLE `httptest_field` ADD CONSTRAINT `c_httptest_field_1` FOREIGN KEY (`httptestid`) REFERENCES `httptest` (`httptestid`) ON DELETE CASCADE;
ALTER TABLE `httpstep_field` ADD CONSTRAINT `c_httpstep_field_1` FOREIGN KEY (`httpstepid`) REFERENCES `httpstep` (`httpstepid`) ON DELETE CASCADE;
ALTER TABLE `dashboard` ADD CONSTRAINT `c_dashboard_1` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`);
ALTER TABLE `dashboard` ADD CONSTRAINT `c_dashboard_2` FOREIGN KEY (`templateid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE;
ALTER TABLE `dashboard_user` ADD CONSTRAINT `c_dashboard_user_1` FOREIGN KEY (`dashboardid`) REFERENCES `dashboard` (`dashboardid`) ON DELETE CASCADE;
ALTER TABLE `dashboard_user` ADD CONSTRAINT `c_dashboard_user_2` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE;
ALTER TABLE `dashboard_usrgrp` ADD CONSTRAINT `c_dashboard_usrgrp_1` FOREIGN KEY (`dashboardid`) REFERENCES `dashboard` (`dashboardid`) ON DELETE CASCADE;
ALTER TABLE `dashboard_usrgrp` ADD CONSTRAINT `c_dashboard_usrgrp_2` FOREIGN KEY (`usrgrpid`) REFERENCES `usrgrp` (`usrgrpid`) ON DELETE CASCADE;
ALTER TABLE `dashboard_page` ADD CONSTRAINT `c_dashboard_page_1` FOREIGN KEY (`dashboardid`) REFERENCES `dashboard` (`dashboardid`) ON DELETE CASCADE;
ALTER TABLE `widget` ADD CONSTRAINT `c_widget_1` FOREIGN KEY (`dashboard_pageid`) REFERENCES `dashboard_page` (`dashboard_pageid`) ON DELETE CASCADE;
ALTER TABLE `widget_field` ADD CONSTRAINT `c_widget_field_1` FOREIGN KEY (`widgetid`) REFERENCES `widget` (`widgetid`) ON DELETE CASCADE;
ALTER TABLE `widget_field` ADD CONSTRAINT `c_widget_field_2` FOREIGN KEY (`value_groupid`) REFERENCES `hstgrp` (`groupid`) ON DELETE CASCADE;
ALTER TABLE `widget_field` ADD CONSTRAINT `c_widget_field_3` FOREIGN KEY (`value_hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE;
ALTER TABLE `widget_field` ADD CONSTRAINT `c_widget_field_4` FOREIGN KEY (`value_itemid`) REFERENCES `items` (`itemid`) ON DELETE CASCADE;
ALTER TABLE `widget_field` ADD CONSTRAINT `c_widget_field_5` FOREIGN KEY (`value_graphid`) REFERENCES `graphs` (`graphid`) ON DELETE CASCADE;
ALTER TABLE `widget_field` ADD CONSTRAINT `c_widget_field_6` FOREIGN KEY (`value_sysmapid`) REFERENCES `sysmaps` (`sysmapid`) ON DELETE CASCADE;
ALTER TABLE `widget_field` ADD CONSTRAINT `c_widget_field_7` FOREIGN KEY (`value_serviceid`) REFERENCES `services` (`serviceid`) ON DELETE CASCADE;
ALTER TABLE `widget_field` ADD CONSTRAINT `c_widget_field_8` FOREIGN KEY (`value_slaid`) REFERENCES `sla` (`slaid`) ON DELETE CASCADE;
ALTER TABLE `task_check_now` ADD CONSTRAINT `c_task_check_now_1` FOREIGN KEY (`taskid`) REFERENCES `task` (`taskid`) ON DELETE CASCADE;
ALTER TABLE `event_suppress` ADD CONSTRAINT `c_event_suppress_1` FOREIGN KEY (`eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE;
ALTER TABLE `event_suppress` ADD CONSTRAINT `c_event_suppress_2` FOREIGN KEY (`maintenanceid`) REFERENCES `maintenances` (`maintenanceid`) ON DELETE CASCADE;
ALTER TABLE `maintenance_tag` ADD CONSTRAINT `c_maintenance_tag_1` FOREIGN KEY (`maintenanceid`) REFERENCES `maintenances` (`maintenanceid`) ON DELETE CASCADE;
ALTER TABLE `lld_macro_path` ADD CONSTRAINT `c_lld_macro_path_1` FOREIGN KEY (`itemid`) REFERENCES `items` (`itemid`) ON DELETE CASCADE;
ALTER TABLE `host_tag` ADD CONSTRAINT `c_host_tag_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE;
ALTER TABLE `interface_snmp` ADD CONSTRAINT `c_interface_snmp_1` FOREIGN KEY (`interfaceid`) REFERENCES `interface` (`interfaceid`) ON DELETE CASCADE;
ALTER TABLE `lld_override` ADD CONSTRAINT `c_lld_override_1` FOREIGN KEY (`itemid`) REFERENCES `items` (`itemid`) ON DELETE CASCADE;
ALTER TABLE `lld_override_condition` ADD CONSTRAINT `c_lld_override_condition_1` FOREIGN KEY (`lld_overrideid`) REFERENCES `lld_override` (`lld_overrideid`) ON DELETE CASCADE;
ALTER TABLE `lld_override_operation` ADD CONSTRAINT `c_lld_override_operation_1` FOREIGN KEY (`lld_overrideid`) REFERENCES `lld_override` (`lld_overrideid`) ON DELETE CASCADE;
ALTER TABLE `lld_override_opstatus` ADD CONSTRAINT `c_lld_override_opstatus_1` FOREIGN KEY (`lld_override_operationid`) REFERENCES `lld_override_operation` (`lld_override_operationid`) ON DELETE CASCADE;
ALTER TABLE `lld_override_opdiscover` ADD CONSTRAINT `c_lld_override_opdiscover_1` FOREIGN KEY (`lld_override_operationid`) REFERENCES `lld_override_operation` (`lld_override_operationid`) ON DELETE CASCADE;
ALTER TABLE `lld_override_opperiod` ADD CONSTRAINT `c_lld_override_opperiod_1` FOREIGN KEY (`lld_override_operationid`) REFERENCES `lld_override_operation` (`lld_override_operationid`) ON DELETE CASCADE;
ALTER TABLE `lld_override_ophistory` ADD CONSTRAINT `c_lld_override_ophistory_1` FOREIGN KEY (`lld_override_operationid`) REFERENCES `lld_override_operation` (`lld_override_operationid`) ON DELETE CASCADE;
ALTER TABLE `lld_override_optrends` ADD CONSTRAINT `c_lld_override_optrends_1` FOREIGN KEY (`lld_override_operationid`) REFERENCES `lld_override_operation` (`lld_override_operationid`) ON DELETE CASCADE;
ALTER TABLE `lld_override_opseverity` ADD CONSTRAINT `c_lld_override_opseverity_1` FOREIGN KEY (`lld_override_operationid`) REFERENCES `lld_override_operation` (`lld_override_operationid`) ON DELETE CASCADE;
ALTER TABLE `lld_override_optag` ADD CONSTRAINT `c_lld_override_optag_1` FOREIGN KEY (`lld_override_operationid`) REFERENCES `lld_override_operation` (`lld_override_operationid`) ON DELETE CASCADE;
ALTER TABLE `lld_override_optemplate` ADD CONSTRAINT `c_lld_override_optemplate_1` FOREIGN KEY (`lld_override_operationid`) REFERENCES `lld_override_operation` (`lld_override_operationid`) ON DELETE CASCADE;
ALTER TABLE `lld_override_optemplate` ADD CONSTRAINT `c_lld_override_optemplate_2` FOREIGN KEY (`templateid`) REFERENCES `hosts` (`hostid`);
ALTER TABLE `lld_override_opinventory` ADD CONSTRAINT `c_lld_override_opinventory_1` FOREIGN KEY (`lld_override_operationid`) REFERENCES `lld_override_operation` (`lld_override_operationid`) ON DELETE CASCADE;
ALTER TABLE `item_parameter` ADD CONSTRAINT `c_item_parameter_1` FOREIGN KEY (`itemid`) REFERENCES `items` (`itemid`) ON DELETE CASCADE;
ALTER TABLE `role_rule` ADD CONSTRAINT `c_role_rule_1` FOREIGN KEY (`roleid`) REFERENCES `role` (`roleid`) ON DELETE CASCADE;
ALTER TABLE `role_rule` ADD CONSTRAINT `c_role_rule_2` FOREIGN KEY (`value_moduleid`) REFERENCES `module` (`moduleid`) ON DELETE CASCADE;
ALTER TABLE `role_rule` ADD CONSTRAINT `c_role_rule_3` FOREIGN KEY (`value_serviceid`) REFERENCES `services` (`serviceid`) ON DELETE CASCADE;
ALTER TABLE `token` ADD CONSTRAINT `c_token_1` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE;
ALTER TABLE `token` ADD CONSTRAINT `c_token_2` FOREIGN KEY (`creator_userid`) REFERENCES `users` (`userid`);
ALTER TABLE `item_tag` ADD CONSTRAINT `c_item_tag_1` FOREIGN KEY (`itemid`) REFERENCES `items` (`itemid`) ON DELETE CASCADE;
ALTER TABLE `httptest_tag` ADD CONSTRAINT `c_httptest_tag_1` FOREIGN KEY (`httptestid`) REFERENCES `httptest` (`httptestid`) ON DELETE CASCADE;
ALTER TABLE `sysmaps_element_tag` ADD CONSTRAINT `c_sysmaps_element_tag_1` FOREIGN KEY (`selementid`) REFERENCES `sysmaps_elements` (`selementid`) ON DELETE CASCADE;
ALTER TABLE `report` ADD CONSTRAINT `c_report_1` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE;
ALTER TABLE `report` ADD CONSTRAINT `c_report_2` FOREIGN KEY (`dashboardid`) REFERENCES `dashboard` (`dashboardid`) ON DELETE CASCADE;
ALTER TABLE `report_param` ADD CONSTRAINT `c_report_param_1` FOREIGN KEY (`reportid`) REFERENCES `report` (`reportid`) ON DELETE CASCADE;
ALTER TABLE `report_user` ADD CONSTRAINT `c_report_user_1` FOREIGN KEY (`reportid`) REFERENCES `report` (`reportid`) ON DELETE CASCADE;
ALTER TABLE `report_user` ADD CONSTRAINT `c_report_user_2` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE;
ALTER TABLE `report_user` ADD CONSTRAINT `c_report_user_3` FOREIGN KEY (`access_userid`) REFERENCES `users` (`userid`);
ALTER TABLE `report_usrgrp` ADD CONSTRAINT `c_report_usrgrp_1` FOREIGN KEY (`reportid`) REFERENCES `report` (`reportid`) ON DELETE CASCADE;
ALTER TABLE `report_usrgrp` ADD CONSTRAINT `c_report_usrgrp_2` FOREIGN KEY (`usrgrpid`) REFERENCES `usrgrp` (`usrgrpid`) ON DELETE CASCADE;
ALTER TABLE `report_usrgrp` ADD CONSTRAINT `c_report_usrgrp_3` FOREIGN KEY (`access_userid`) REFERENCES `users` (`userid`);
ALTER TABLE `service_problem_tag` ADD CONSTRAINT `c_service_problem_tag_1` FOREIGN KEY (`serviceid`) REFERENCES `services` (`serviceid`) ON DELETE CASCADE;
ALTER TABLE `service_problem` ADD CONSTRAINT `c_service_problem_1` FOREIGN KEY (`eventid`) REFERENCES `problem` (`eventid`) ON DELETE CASCADE;
ALTER TABLE `service_problem` ADD CONSTRAINT `c_service_problem_2` FOREIGN KEY (`serviceid`) REFERENCES `services` (`serviceid`) ON DELETE CASCADE;
ALTER TABLE `service_tag` ADD CONSTRAINT `c_service_tag_1` FOREIGN KEY (`serviceid`) REFERENCES `services` (`serviceid`) ON DELETE CASCADE;
ALTER TABLE `service_status_rule` ADD CONSTRAINT `c_service_status_rule_1` FOREIGN KEY (`serviceid`) REFERENCES `services` (`serviceid`) ON DELETE CASCADE;
ALTER TABLE `sla_schedule` ADD CONSTRAINT `c_sla_schedule_1` FOREIGN KEY (`slaid`) REFERENCES `sla` (`slaid`) ON DELETE CASCADE;
ALTER TABLE `sla_excluded_downtime` ADD CONSTRAINT `c_sla_excluded_downtime_1` FOREIGN KEY (`slaid`) REFERENCES `sla` (`slaid`) ON DELETE CASCADE;
ALTER TABLE `sla_service_tag` ADD CONSTRAINT `c_sla_service_tag_1` FOREIGN KEY (`slaid`) REFERENCES `sla` (`slaid`) ON DELETE CASCADE;
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (1,1,'Cloud_(128)',0x89504E470D0A1A0A0000000D494844520000008000000044080600000049473D690000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000130B4944415478DAED9D095C9357B6C0BFD6E7585FFB7C9DE9D8BE71AC4F2B90208EB6DAE9E8D4D73AAF4A36709916B58B1DEDB46EAD9DF6F5D7AAD5B6501F8E2BB8B405C55D2B5664114101954DF645F61D091076C2BEAF77EE395F022124102109A0DFFDFDAEC48404B8E77FCF39F79C73EF650821CC58E8B43DA6D21F67185B2DBDCFF7611F2B7FE3888CEBD8103A08D6661CB378F1BF31F3E78F672C6C7EC598882630D3173FC14CB599881D1EC373F0DAFC0DE3F17BA1C3FB54C0E0843E0600E89DE55478207010EC7CEB7FA75F27317F90FC9A31B3FE2D337BD9738CB9E0778C99D5EF19DEB229F8189E83D72C04BF615E58F29FF4F9FF50BC6F027E0E07C3E806A047F03654503093A750E181204D4493999996CF33330526CC2C8105334BF412632AFE13C313BDCA9849FE073B5FF2670AC32BF81A5FFC070A029F3EFF027DEF54FADE6799E92B9E66E6583E8930A066E040183500F4AA7A85E04150308B6176F3C5668C89601EC317BD4E856EC5988956D3E7D63D39EFCD8FADB7DA1FFCCEE9EAB583176F06EE7272F3DCF8FF275DD66C3B7CC0E68B43767F59FFEDA7E3CC25627C1F5F321F8198B9FC79D410A049C064F4688547178451227C3A1B411860CB51C553C19B4ACC7156F351E8EF0B377C47E51C99169490D3189626ED0A4DCD27C1C9527227F13EB995904BFCE2B3896F6C16B91E9D49BC22D3897B781AF92534A5E3B45F74E9B72E5EBE6BB61FFDE6D905EF09E867CF45CD00E602B4CBD485135535020780D185AF98F560AF412830E3F9560B199E78F9A497DFFA78CF698F80B094BCC6F8DC62129B5D44A232652432A3107B443AFD9A098F652482FE3F2CBD8020182952729B82E11B9345AE52102E0527910B8189E4947F6CEB76270FEF397FFDBF77E8E7BF8C2665C61BCFE1CF06D3A0D0061C00C6123ECC3C50C5D3E8ACB7B09E4685F012158C90E149FEEE78D12738495ADA99925F4612F34A49C2FD129290574212EFB38FEFE5961080222E87ED00470CEDD15932124D2151820260DC4D9592807BB9E46A582A391D104F5C6EC6757F7FEE46F4920DDF6FA666E545FCD9A0794003A136601E196D30B2C28701E7AF7C066722A87B9E78D527F6C7CFA4E497B665165592F4C20A929A5F4E520BCA494A3EF432922C2D23491408806228300427E7118FF05472C22F8EFCE41B4DB63B7B063CB3E0ED37585F833A9BE07FA06FF06898849113FE145C9E4D46E78C27FA5F2AFCF55EC1B16979A5D524A7A48A6451003265952443C682003DAD407F3084A51510B7BBA9E487EB5164FF95900AC1E63D9F30E692D9B89C04930066E9118060046CBE42F8B0343311CDA25EBAE5E4056B3E8DCBCA971754D4120020970200106417CB2908F2416100105461481808862C168628050C601A9C7CA3BB1D3DC3BBB61EFEC575FCEC652FE3D211560A08817673A029EA38D6A290C677F840ED2B854FEDBDE587BB76E79654B616C9EB487E790D9196D590BCB26A72BF147A955160006D004EA2836738D971C23B64BC85F51F11020C24F59A83FEA168701A15114A4DBD37F0346A630EC6153E387CB00E37B3E4337C6B4BC107DFED2EAEAAEB2CAD6A20B2CA5A524835006801008185A1BA07865C250C1484FE302840E80343994E30C466F7C2E0169682107CE5E4758B31B79EC7F0964E612C163F85A165F55034C611A82683D7D955C4245C56B281AB49F81CF813F07DF0FDA334F8642C001EC7417871C5D3E8F0519BFFFBD7FEF699ACB2A6ADA2B69194543790E2AA7A025A40565937A2305C096521F8ECD8554FC64C30177D02102806A76C9EC28822869BC5FF85D149BE703A7D7D263A913C218F851B1DCA99B8BA80F7F3DF780681500B3E3D120020F1F047A363450784277A759CB9D50719D25279557D3329AF692465350DA4944250525D4F4A2808230DC3E590648460CBC19FCF60E088673D0385CDB39C814EAB055D3AF2850B19BED562F061A8F32881B805632AF9EBC4D96FDAFC6AF6F215F47D62746ECD450BD8D0B44AF069FABA27464BF0C938AA1F55259D31E682798C99704D6074725A4D630BA9AA6B2695754D04B44039744D30C8B5C3205587A1A43F0C99DA60505D49F481818240FBF93B09DD0E1E619D7F5AFBF53F189EE42F7446BFCE988B97D2DF7FE5132F2E5F27DA68B7FB8B03E72EEE3D7BCDFFB84750EC25FFA8EC6B61C9A5FE3119353E91A972F79084E28B01D139872F07DCF9D0EEF8BE05EF7DF96E4FF069CECA677B571A23AB0D0C0C00251C53B482DFB0A15DB1D5E1F35E1EF5CDADA4960250DDD04C400B4097531046130CB13945E4E8B5C86EDBF3FE258F9B2FFB7CC2DC159FAFFAE280B393DBADD8E07BD9B589F7CB1096B89C12F421942B8B88F402EA54C232339F84A648315CED1393D97A3928A1F2F0D5C0709B6D0EFF60834F4BA6A14904B360337210187EBD0F76D35CFCDFB4BF46BDEBCDB50DCD1D0DCD6DA4AE8942D0D48220D4A8C020AF6FD20043432F0C55C683C19F2E11C1141CBA7CBB2C3829BB2109A292D45C284D05085E7D69C986A6D9A05338C25080308450107C63B23ACF06C4CAEDCFDDB8B1E8FD9D2B59DF81FA07908F18214D60D8D9CF16694C66EDA878D5B5C098D8E6D676D2D8D2461AA05310401B0C07866235180AB5C150DA0B43CE60301454A0BF00305CB893488E5C8B2431D44954371308825AC049230CE9BD3004A7E4915F42929A7FF00E2B5CBDE3C856C6DCCA14A3A1305623008161673F2E87A8036526593279C1DBDB9A5ADBBA9ADBDA49735B0701109AC6000C206047AF08CC2E0EE4333C280C1EE1A9AD3F7A47547F607FDA16210033890929E33A86864BEF02D16CC0070A34DE8948C8C86AEFE824ADB4B7C1D7F60ED20220E800038050D330300C004259B53A0C751A60A8E91370CA530B38F5C250893040C009B289103256E625D47D86445518D03CE806C3F5A88C8E63DE110D1BF79EDF83130556081616187D1CE300D0D90F5E2EAC91CD846F3CFFFADFBE6E696DEBE8EAEA269D5D5DA4A3B38BB4D3DE36466000D50DBE00A499330AFB9B89E1C0E01591D6E2E819DE24DA7AE01DAC838078039B917C6CAC02C0067DC0AEC1FA97DAFE83A7DDFD88A2757713D245FF194B306417571127DF18723128B18F66D0170CA7FDA2EBFE7939B068AAE5FA5730C884FE80EDE3631400EAC840B2078B35B1666F4B96B4A8826868DD00423780A00186F68161A85785A151330C953AC050A40603F80B05E5FD61806A23F00552F22B502BF49809993A0C1A329652CD194B250C008183C7DDDAED2ED7BDD11480EF841143C36B01C3397F33979930A60289F0C35D47890E6DB4C39040850666001C38F524953E60084EBEDF79C823AC7DE1DA9D42B68895D5028686C030EA1F133E74E9479D3F77FFB038F2804D230C3D264215061684BE30B492FAA6BE300008C38501840D00F8DFCBD1EA330C1786A31E772BBE74F2BA8A5A007C28C6F0BE80FEAB7AE72BD43F96694BB6149656D6906134A3C2A0127DD404C331EF48E21E91A6D14C684A5F67EB90BE562D6C094EC9EB3CE87EB7C56CF9C78B14D5CB130CBD22D0DFAE1DB059A0B6A0B60ED6B56622D19445EFDA758304F5D4461A865301F1E4ECED7B83FA0CC381C1D13DB472E3FE0B7BB11E017C293AB6A30A800177ED40D40F967EB360D386E4BD75DB1DAE100335551800049D6150F1170683014050850152C5A005FA642CE5DA3296432B6C710D4EACDF71D2270827118CA981978443133CD879A8EC51EEDA015A71D60BE632A6E2D760E947EDFF8EA317BCEF11233463C17083AE04C00F8099CF6A867ABDC300758BFBDD426A581F8A2EA5156569230A409FFA7D98EDA0E6A15A86A5F425143A6CE0A04EDF0CC1C69D82CDBBCF7DB6FF6C4C607C6613FC71B03E868100C18C6518C2D2F31100107E7F33A11F180004FA33DA177D606B83C52430D154762FE9BBEE50B7598F25DC0B2762FA123662425104143A9809C5A0EA459BED8FFCE01E9CEDEC13D50603A4AD1FA5EA136AF3210002836750107480A1450D86C696816100411DA17F837AFABA425BFA7A88852D4E3E918DAB76FEB4AB273CACDCDCAADAB5EC7E7E5020068FE9C3AC87BA37589BC28C874D997C2BEBDFBDBE76EBFE4BFEC9CEBED1ED8E5EE1E4E7A024DCA205CB1AF8C3D9A40F3BA8E084C10002E1212952E21A928C193617BF38B47D06D70A7A84E1ECED84DE245543B3416038773BBE6DD5CE1F1D189E700E4E384819C3E61928475376B66AF929D4C8C3A83B1C5CE5C30FC2A81EFD65A0FC89275EFF9DB37BE0F19BB15DC7BCA34860521E0EC8833618708887D3CF417860E08CE22F2861500B38B5AB86A2078001006643D17DCD843E61002DF9CE37CE17218B8A5554B3AC2D181381A28B66298A6BCCB0CC0C4AD5A0DA0AB289103B0093A12C62D50104ED331FD40E66A7ACA75155FF4728855AF1C93F0F5F0A8C6F74BA1183B16C18ACE1369891A0053C23D3D10932661B0A0C25F2867E9AA11F0CC3AC72BA169549B6EC3B1F4E27DB262AE8B7D1A9860E3BA3F1B1E82DAC41A44B6DAC4B04AD0C9B5A0008800134042C2175D8E1A4D9E6C3CC07E163250FD87AC99A6D475C6F9EA0B31552A3B54398F1BA34185008F38E441BAE66D0270C3ED199C4F6A477E17B5F395CDF7BD233F897808854BFC8E4FC5BD1A98577E2D28B82E2338A3C83E2329CDD0242761DBBE4BAFC63FBEFD96DF342019E9100DA4159CD3C48C999F60ADED954B5A0BD17BFBDEFECF5D093FE71C42F3E0707E4616FDA3296EA3018AAB0C53534191DE507296C894ECFAF7176BB1528D96CB78B9A08096A6D7022C17F58D8B3E9F531AD00F409E5023D607BA8BAB175BE7AEB1C757C40E5EB2FA6C7C130100CA069C1611E6A95D3E580C858BE78D326340F78300675E041AE1A20E85FC10BC4282A783FB273BEF43355F9700803D78C0343694D3D39EC1581DA6038256FA9D2D2E66F7F703D858EBB05751C2160A71253E803404F150F2C2BC0E93315BFF682E586AFDC4253BAC123059BC735DD60186E610B04845C6EC6E9ADB0658F8BFB4576F526E4A9D61DAA03C0CE7EC84061158FC4E6AC6F84F4CADD54FC50AE190F86D89C625C11E9ABCA896A84EEDDC7DD4E43593E3AF5E0DFA998825EDBFF9CE593B8A6A4B3FFCF6B77D87B4566D0757A11275D7D642C752C6C01184253A5981AD667C91B85A073F1BAED9FE086149562935E0030950B615EAA26E8FAD2F54E5C091CB604BF28D78C0B03049A40F0FAAE72BA161C170905BA98AD552936E955FFE02450CFDF6A8BBDEDCDB86CAC58E59AF161C8A23E80214ADEA836E8126DB0DD8A0123F005D82CE363ACF70FDE212679848B76FDE8E60E317D884A71CD883028FC05082E19AAB0E594E79DAB18DBC168A1B2E610A244508B8E513FC9928BFE51E9B07DA9ED1108F88C7618F45DE5E41791188B3B9DC1D79BCF561BB100B0275CCC84F46E405C566D8AB48C93CC43084372AEAC983D86CF7A0666783144AC2CE336B7329DBE74DD6AD8B664E85C3DD71E0C067D15B694D734B463E10E9ED2A25C0EAA0060B565F72608F9C20771EDE183A1545ED7DC1F001513F0ECC2D52BE2738A3B4165706D1482304C18F28ACA2B31858C69631B850950730283EE65C92080C0B5B10F837AFA3A3557761F6301206B90399B26565906F244AFBA78DCF6CB2E96777343FCF0C1703D28C68F3D9277E914363184C5222A81A059A29736D9FD640F09097D54FB706D0461D090B1FC70D7919D180EC663EE7A02418A50305400F1C566E32C24CB127264551038E0DAC3034345756D155671BFD077C3496F32883DBC792A4403DFDF76681F64939AB95CC043D35CAEF89DA1F25D80A65E65CB59DF5DBD982F16584001686452762EC494BBBA397760ACB782E2F2C2711656D698EC834D3D2ABB8DFA9683B1972A4D0547C1D4F2A34F4BABEA3BAAE992B09B8360CCB6CECEAECE8FBE39B6136B04A1D46F8A3204ACA80720EA7BFBA72976F79A882CAD36DBED91D7357541108143604C0690BA0F9C7277C68BB37A4E1ED930BE5F4918D1749C3BA40DF962ABBF7FED78ACAEB1A51B82099C39185BEDA49BFFCFD4EB5F8AAA1F6A3D351C43A7F9842F0C0CE1A58C73293DD6EBB71F71AC6D686E6F6C6D33CA064FAE0DAFB5B4B6B5399CF53C81671B4381AF968250A26567107B851B648BF0A8733CE94BF8DCA277B7664A8B65AD7465C041307A5B5199BC64F966BB2FB1241C663E081FEDFE20FB0288A67BFC4013CC8493ADE907C1167033D1EAAF1DCEB994C96B6AB8A11E5DADB2BAAEDAC9F5C685A75E5CF526167D40BC1FCE1798AA7D5308197873A8725B38FD00581E42FC18A3489225B05B68CDE77BF7DD0C8D8B949555CAB9E11F99D6D6DED19E929D9F79F482F799897397AF42670F3692C2665EBC9760F093C8753B18029C07C81882738867FF52DF00CA8CA97FC0F044EFCE5BB9F5AB7D27DCCE5FF209F2F70D89890C8B4F4F49CE92DECFCA2B2ACCCC93D15E24E3FA50BBAC304B5A5498965B9017959499E277373EFCCA8D509FED87CE383EFDCAAAB5B80D0CCE63C45A3FEB6938EBD9DB4D74BA8B40F7B37F95973C0208104BC6EB52608B32C000B762286ECF60AF7A5D01B767B0BB5825365C1F4EB77A8B8EE99B38A6780A8B5040FB62F61C26E11CAA9D4DD853D9A8970F7E5BCFE5D8BA5D7EF9E08740B30524139032CC1FC039362AF7E7E025900086251F3D50D60B9DC5F52176183FBC5B1176F62C33C16B6B946702B04BBB49EC8D2C7D0F8820863825ACDFD170EC8510DA6FD0523DD182EB43EFCADBC8F09A99C51A4E0541553FA45345F5704EE00077E8A99F6BC3F5A175D531B5518CF330CE0552EDFF02DCA524A9371DC0180000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (2,1,'Cloud_(24)',0x89504E470D0A1A0A0000000D49484452000000180000000D0806000000B36CAED00000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000021C4944415438CBAD92DB4B14511CC74F2A2122450F3D083D2CF8DE63F4120C11FE0783F8D67B10F66445D06C2F6D5941598A6B4B86CC2E66256E8CAD542666175BD3DA09476D6FCDDE9CBDCFEECEACB397F975CEC452C9AA90FB851F7338FCE6FBF95D0E0200B45320C4345114D37AE1D6E34EB3F9451BBE68DA2DBFAE477D6374E0CA3DC789A7B36EE91D1FD03FACFE04F6F5A2D2EF98E1FB869CC7F70D181873767FF3862B412903DE680A845002F8A0042BBE18D8B8F73233E83A8910DD7CB1FF51877970A27DB7CEEA544F1FFC22F80BD9421192B202B1741E4209190218F6C380C5C131BBA44DCE2F2B9FD64478B3B2AEDF665D8B16EBC4E13D016434D71ED82FE13354AA552896CA902F6A90C1B0C45F30414C827B238CBF71F0043661D91785EB63D31CF97F470059A8C974B675DCB520E83AFCA37205C3340C53FFC0564509C3B2E0DF4CC3462409339F85D2F901F6505D00459F6B7F3835C70BC15855CA168CD110D37AAAC1327915D238E2383F9ACA01D9977964AAB7ABA7AF0351544BAD1B632CA3DC025FDD5EF61E22D9250C53B512E4D42D88604838993360EB784F77598E25DEC872DF75D4E30D95611FD27171A42B75EB372C853B8BA464B00C3B8F21FBF4C7337241854689C0B47205140CB33A5E9D3696FBD6FD5D8406CB27C65486996B31963C34CE757D5DF3CB8D3096F38AFE727EC973C736796ADB33A59B7BAFDA4C96E127F4CD91673DFF15D6E7DD976FD88F90A9D47C7F0129D2E0172D250F240000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (3,1,'Cloud_(48)',0x89504E470D0A1A0A0000000D49484452000000300000001A0806000000F135DFD70000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000005794944415458C3D5980B4C935714C7AFA82C6CF335E6962C4E32401E4137591337F6C874A81B4F751B922D19C4647318936599899A4D863093395FC8700EE7467460419D30C74307CA43606AA55A942ACFB640A12D2DB4E551DAD2F6ECDCEFFB982D0222C3514F72494AF27DDFF99D73CFFF9C7B090090892EB46984EC74210151AE8417F138F10E798C90A8E9ECFFC9B4FFF2EE71FB30A187A2D049DFC859E8F002E215B6782E2F6A45CC8E435F7EB8FDE0A6159FC48712FFF045C427E26906EC21833C78C4791B67928088851BBE4AD9F267A548562CAC3754D4CA6C976A65507A530A85D7EA6D274A84863DFC6241F067BBDE2301EF3C4581A71C80717E41949BABDF9A25B9A5D7046299CA266EE9845A990A6E4A95206A56C0F5A60EB8D6D00E57EBE550764B0A5965A2C184F4FC32E21FEA4178BC99530B80CEBB2F8B7E45209628A42A2D4814DDD0D4D1050DED1AA86B53C3EDD64EB885303508730361844DED08238773C206D87BB2443AFBD5F7BD2904571F2E4CADD02DB67CF90CF6F7C4B6DA38A38F1FF17DD7B75C78BB49A9ED858EAE1E906BF4D0DAA9031907D38830F5720DDC41189A19164681301D508ED9D89D75A18178626DE0F6C3FAF1F5581EF35A5C525ADCEA8D8991AE2FAFF367B61AC24C3A0013312CC8ED07D2F76BF47DB6EE5E0368F4FDD0A9EB0365370BD386302D084333D37C0F8C0A6194701E6B233E2DE76AF289C2BFB38B058AB29AE6C12B775AE1925866FBBDEC86FEC0C9E2D297C2BF08A44A36B900F8C259BC0FDEE850770F184C66E81B30418FC108BABE01188251218C0261DA298C9A8351DAC3A811A6134E55D4323035123633C246769B5DA96B83AADBAD7024AFAA6D43E2D1F50F522FF78FFEE2C867F7FD9A9B69B3D9C062B58279D00246F320188C1C4CBF11B408D3D56300F598305D58D812A814CBE00ED6CB50664408731D61AA11468030074F97D67BACFCE8055A179301E082DBC7EFAF4A6113D8D9108C09610610A61F617A11463F1C46EB0843EBA54050CFC03462F1D3CCD0E2AF6DE1940C61AAC42DD66D69B9C768639C30C0BF1D165F32C33F729546AB37C328664598410B0763BA3F4C89A8196174D0823052252A998253323B9823F955F279BCF50BC7A34CF73A4EA5CD6BF53334F26FC6C4C7261DCDA990E0877A0D26B89F8D08637084B9823D424595AC9B533235A764CABBB25C545D670CFE74D7AA21791D0BC4CE798CB8EFEBB3C8A2D0A5DFFF56589C5D22D495DF9458695A69BA69B19D1736321F1B8F8D0643A3AEED1D004D0FA764F6B2CCC150F5DABC376337CAED73CCC23AC4C03EC9C8F93098BB91F75C396749C4A6B567CA840A1AA9D18CAA0F75E641CC6AE560CC16E659BA7A1046D7CF29D90830A9A72F36271CCE3A9D9C995FB4FF78DE1F1BBE49DD3A67590C6FF868C2FE098A72F3098D0BB980730D55998769168431238C11610C9899BE01B3A32C230C6D9054768737CC5A6987697B72C67EE2B5E6F9A1A6C72A0DCE2A99458256BA57FF2FB339C0A02CDBF5185A0B5D083252C3A42029FC023EF6A7F96C7D0404B8867FFE5D34CE2E569822C37271E831DDE8FC580DB351AE36CD0F8A0E64CF1E581C2959E732A84A38838DB76126FE94FD357388224BD7CECD29ADAEA40F3A9B8DD53033F2CA8FE3369A4DC88BAB9FD891CA4FA0E9726673906584D995766A2B5910E4C68ECADE21819276B57313D899C168B2BCF5F1B620747E3ADB03B0A2F905E567A9123C0A967EA6E817DA0FEEF6017A52C243C6C5CB35429379D0E6CCCE5FBC2CBA447CC23CE9CE711C25E8958857A4F79EF433FBEA24729595B64F2732B952A34D3CC4DFC99CAF715E1B7998A3D7250BC3E6D1E3A3C7DBB12B36271DDEF243C6D99F7FE4E7674EC54ACB2E3CF6EDE1ACA4E0D86DE1D4273AEE0CBFE1186594C6EE4CB7151DA0FC82DD99AE3715CB6F9D3B73FFC4DC2FED1CF1E0FF0FBF0B1FE0DCB2A0670000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (4,1,'Cloud_(64)',0x89504E470D0A1A0A0000000D4948445200000040000000220806000000EF55DF8F0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000079B4944415468DEDD9A095053471CC6575BADDADA6AADF72D348906A9F5AC578BAD821082755AB463D5F198D17A745A75EA4C47456CB5965A19CF7A753C40E9082A15B1155144E5964308844302E4E20A8124842360B2DDFFBE2406884080AAF09F5932191EC9DBDF7EFBEDB7FB401863D4918D543784BCBB2327A7D7D194753D10D7B3277D85F7C8F335F2FBEE704D477F6F9BEFB7433B3E654A0FE4E8FC26B2731E8458BC71C8DE858BD80B1DE92BD7C51EB1DC87A389BCFE6884676F06C8CB07D1311FE24946D6DEF56DD2EC10C7F593355EC7F79DB9FEE0515044922C243A5D13783F4579212C417AF4CABDF8953B8FED422CFE34348E3F0AB13DFA22F47241B47FD441E28E64C4D9AEB30FFADDB81E9729AE4DCA95E34739729C902DA32D364B86A385121C919A87C905D82F3C49E713703BC96DD3FEB5442D23D18899BD61DA742A00749EC38D8F751BFDD9EA1FD73CCA2A5009250A9C2129C5E9E2122C2828C6A97945F8B1A80827E716E2C427004586E3B3A53836538AC39273F1853BC9F5DEE76FC6F59CF885235510F1884E01808EFC307E1F32BFD97BFEB87C245B5652272A2AC7B9854A9C232FC3D93205CE942AB0D008232D9F8191620546708CD07020F05ED1D0B9AB3E46939CFA9994C09829182618A7A975BC81B65DF664BEFB9EBF7E4EA650E9A50A359694AA70414905CE2F2EC74D61949A95610DC6ADA41C7C38384AF3C197DB9CD1B8F9EF90CF7E839A2918A683C760F27E04622F18468CF45D0A1ECCB683A64C1B00909118EB31D8F3DB5F36152AD5F5252A2D2EAEA8C485E51A2C2FD3E0E660643503E3BE201F1F088C2C1BECB4E25334DE653262F3E64D5EB275EDEA5DC77C769F080AF0B9107A75FDDE533FCFF4FC6171CF498B2650381444FB1461FBE883737378B324C54AB54A5B83CB2BABB152538D15EA2ADC6618050C8C5B893906EFB3A1F907FD4313C21284EA641131D21CE2195912DAA232C4F8DF47D93A3FB2A27CE7EBBF971AE818A75EED8160DBC5207DAE87FDF9E0F06BDA1A1D865659ADC3EAAA5A6C8251A6A96A0843F97C184F1AC31097E28B11A9382653625446A1799A24980C948088212B4A7094A07AFFC5B0FB0EEE9B1DDB03C196D1EF8E267DDEAFCFA4C56E8A0A754DDD533DD6D53FC535BA7A5C5D5BD70046853518E52618EA0630F2280CA5190674FE6A7406856152C663238CA44630220522C36F7FDD4DEFF7D15763204FFCBF0020B971168ED9E87DFC303696DE60C04FF57A4C61D43584A169050C991186B8118C73E1C95415541992D2666184C408AAB71C093A4DCDB30D2A68FD8520330E6FCAE57F1E24622BD59130202C41272D95912535C1808CD110C6E16BF7653357EC9E85B8DC9E1D0E80598FC9E8C312C47173CF9316A9710B658641A648AD1146951946AD7518155A5C648471375544E7B9D8DA349131308416301273E406AFB3376F3061CA361534BFA3A3A6E7F916599686928DCCF4E94BB6FC8A6D2C8051FFB4F5304A892A2046DF4911592843651546B6058CDF2F47A4D1AC60639AB4DE790822F6AE03911DCFA1FFF465BC4D3E17CEFB064688FDC213757FC766D211CA2537019D6A6D196C80212A56D27D03C0B054467330CEDC8C2D462C670EBD777372F46E313936CDF75C2732E2EEEF73176D5E7D32245A7EF5A1A00EE61B74186E4255C58C1644D9A087E9D4880C06DB54D11A1869647E030C2528435DD5228CE0E8F4DAE1F356B9D3D408DB6E78B55B3C884E0BF0AFE76CBF1B761E9C9418DDB64301D782A3D27570232D152C7D7033065B2958C2D05BC2A8A730400D26182AA33220703D0F06E483A5DB7C03F81BF77AADDF73D277C7E14B7FAED971F4A77E5397F2116BE13434DE6D341DDC4653E499EC217BDBBB4C3E16189E109D2136B4B543ED29F8CAC630AA8DCAA834C3A8B102A3124709C5540D00436254463E5146B654A1BF1D2790EF3D7DC58F820033777A96198C00D6F580357EABEF45FF8854D18BEF790B3074CDC1A86460C46749290C489FA00CB95119963002C3625306CD5AB90071160F302981497844FA43E62CE785C409EBE08B5EB56A0D0C81B8D80CC3A40C6B30A253730A07CE583E87990E748927E6306EFEA813C1910F60A3F2AA9781668CA6308A4867CDCAD03E5386C20A8CE3976F055093A42B05ACF5135CB837E3322AC07C3A53598751F74C19169B344B18F11922291ACF73A07D877573C08CA5331EA489B4B81357B3301AED5865A5AA5AC4769BCA6406F283E5F2CD9C7861BE1A77916A09469E5CA1A6872E1480710AC4A4E596E02E588D61D41018318FB332108BCF614E94C0041D9C47863E4C89EE6C1ED036187A7CED4E6C9069DFC02C83242E3AF237F0F30A153506DCB5AB42ADD53AAFF17247ECD97DE93248C3003CBB235171DFA9C0634A4D95FE65A4C01751244B18761EF2DF83D81EC34C274816CFF5F87D606938EA1FE24F1C13AEED529D27D15A1F101A7911367A8CF9311BA386677E908E8839CCFD7AFBFAEC8242B9A18B4821FD498168D9569F0DC8C1D58E3E57B0D815363DF8043A63DC86C03AB962FBC1EF8F5F0A0D0889888B4D118AC4458A724DA952A57DD55B81ACA42C2A2943107023F2BAD7117F2F34C1F5437ABE41834FC32DF1734E83883BC2236C16FF3DD824913F9E40830387370BB178735FE9C6769D0DA75734E9B19DC7D23E405F18C7EFD6EA33C126FFE84095E1D4AB5334B857186D7A08D2FCA9D07F630D43FEBD29775D0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (5,1,'Cloud_(96)',0x89504E470D0A1A0A0000000D494844520000006000000033080600000068820D610000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000D154944415478DAED9C0B5893E51EC0DFB0CBE9649E3A9DEAC4C9F2026C13B39432BB295D74B00147EBAC4CAD9E3AE9C93AA5873C7AB253E9732C2D05D3524951434BB110949BA2221707C81D06088C316EE33E068CEB06DB7BDEFFFB8DB1B18DEB80D0BDCFF3BA293E1FFBFEBFF77FFF7F431863345E9BAC9B98BDC50E21C124BA05BA4DFF0EFF8EEC7AFEDF787ED65193C1F8099D08D8C5E51634CDF57768CE923B9083FB14346DE95DE811FEDDE831F23AE3A53F2067D7C9E841C1EDE467B7219735B71840B9C906607882B743AEAE3753A183C0672EB90F71780F23961B0B39793C8A58BCC79123EF49F27E3EF9F95CE4C07546CE5E0EC8D9F32134DBEB7EF41081E3E2F97BE42CB8958131F1418C9DF0C1AC80E0E194CF5C3215B1798F20B69B2B62F35F9EB3EC23EFF7B71F3AECF3F3B99863E7920A8E4626157E1F7439757B4078D4A6EF4EFDB4D4FB9B4FEE7659CE434E6E4F5020D3090C96D79D54332638883138F5C464C089654EFC547AB2397CFEDC651F6CFAE97C626E625EA9FA6A413916E695E1B8DC521C9753826344527C315382CFA717E18894427C3A210F07C689B4FEE792E59FFB9F097579EDDF02728DD904823DBD2ED58889699A4659F8BA53EFE4F927E4C8E79013CF5DF8D6A75F5C4ACBAF1595D4E04C69154E9754E20C09BC32EFD38A2A71AA5886530A6538B9B0025F2DA8C049F9E514CCF9B4227C8A80381C95AEFDFAE4251177ED576BE975E1FAE02B26A0368CAEF0C15EB316DB836DBF95E3B532342E235F2C93E36BE57538AFB40EE796D5E29CD21A0C30B2A5D5388BECCCE22A1D10CB3062B34BF0AFC21C7C202259FBD991882B5317BDB588F88DBF50A70D3E660241183DE13391CD83C46E3F3BFF55EF4D79A5D5EDD26A051657CA7121815020ABC7F915F50C8CB20160149987114BB4E270549A6657507C93D7FADDFF442CCFE9D4240D12C26F01D4280020C2B727271FECBD236FE1DA2D07F696D6367697D53561698D0217130892AA065C44B61E4685218CDAA1C120FE2348780DFB862468DED976D4870098491DB40E82C1B6D3E71BF033C33D8EE1AD95854F6E026C3E87FB009CFCB55BF77F57A368D5CAE44A5C5EDF84010281814BC8EE1F46DD9061441187BD3B2441BB72CBC16D5413C01C419E010206270D3EC2593099C92FB87F44EC65F7D00DEF416B7AC25B9A04A23183615DD3C3443BF742B8F8C4ABEB37D634B674D734B6E22A8512573628B14CDE8C2BEA9B8D61D4580F46544611F60D4EE85EBE79DF26E2F0A751E74C37F10FA019B33C9D11C7731EE2B82F80034237BC77E43D86381E8E34AA8230190ED118F912EB091F3E309CAE595CE729F35E79B3BC46D12657B6E1FAE6365CDBD48A090C5CAD6819268C7A5318A5E66140A4E473FA8ACA89FFE17246D0FCE720ECB57F6EE5DBAF6FF2D9B9D1F7F8895D011197FC43E3B24E5C482E3A1A2E14ED0BBE2C24F9863FF7FD6DEFDE326FA90B9A41123FAA294C783B010010D3F3D453B7D353C7E1F2D37225C5CD6D1DB8B1A5032B5ADA7183B29D82A82320C602C6B1E84CCDE643A192FB9F5DF5C546DF63677E894E91A614947765145531BE43CC445309D7CA68FE114FF28F1851090EBE22521E894894ACF9DFE12DB7CE218922683368C328FA07EB9C7EA8D380AA9313B7EC832FBF6EED50E396F64EAC24BBB9AD1337B5F6C2E8D10A13180DD6830121ECDEB349F862BA582B32E33352C41049C998B09638F1440318B139521C1893D9FCEDE9D8AC85EF7CE6859C797F460F92C3354A9A609DD30F21276731B1A1BC574B2A6B1BDA3ABB707BA71AB791DDDAA122305458D9D60B836A85B5601010E66044A58BB15F648AB1992A3686912AB60C2332A540BD374458E1B1EEEB9514824E137E530098D34F220D505596FB33EBB61FF257757563B5BA0BC36B2779ED505986D16835180D263020B7D81B7A155FC92B35315359063020034F338251A187712153A2F936F84A9DDB873B0454C3A94FB0AE291A29003B1ABE39F16720969B202123AF58ABD5628D468BBB351ADCD5ADC16A02A23F18542B0C6128AD072338F11A942E18CD2837F519D90630328C60C8F43022530B543B4EC5C81EE6AE9E4BC3558175CB1D234FBAA076CFE6BB3871DFDDAC06891B2CB330D4E66128470AA3CE14069CF03D671389E06B8DCD94018C1C02839A281D8C4C3D8CDE1C23E0425AD32787C22369384B4D11B21B7700FAB81F922E369FBBFF447834EE675982D14160B4EB6050E76D04A363C4300E4424936CB9C2AC993284913B008C9DBFC6D6BAAEDEEA815C48786AC5A2DFC89C2F2D39783920366F85A4BC4A8E07B9CCC1E83480D16604A37360188D9661909014C7644B759AA1C0508F328221EB8541B5C2028C10614ECB7F0E8545E84AE0B78D0B00A3FE2D7C089AD2F35DEE7B7AC50622502D1EC63284A12630545686119C9087C3920B0C34A3714018F96660644B6B8816C4C9A92F8032074293C60C80BEC20926074E3D6489D02274F26423B6BBE7AA8DBB8E632BAC1E18542BAC04031A3B2763458C66C87B34A369401826155BB20F4624D52FFFAFDF4788FDE23D90F98F3A00BDE0E1B443040042A73515F7B988C57F9E245EAF11009B7D8E04678102F4F1C1235A70BDEE0161A88C61B49AC2809032203ACBD44CF585516B1E8661F9FC52A6A4EBE37DA77FD1D596AC6286FAB7F110E34369179A2AB405C87F7E12FBAFAFAFDF1510E8179A50B93F2C49FD7DD855ED1E9275FA8624E0DD6712F0CF31D934F6869B02B33262AD18210C48D802E372B0BCB91F9F31000C4935937DE792686A476074312DDC19565B611B8FD20C7A8CC6B29D87700BCAB530B1C0727F81CD7B6FFDBE90B81212556842487C0D31327C48B8797537135AC27BB82188A7C3530AF1C173A95485ADB5FA850191944A6D1606F4968D3463983000A64F505C3D9DDA0067DC53CE069304E3343D656DD00E7D9FA17F18E64F3EAD9D93F49BC39D07E585ED3F86251C8E4AD740B31C4ED6601708048A5ED159C534CCB4E6B20CA3CB040698128B66AA2F0C85218C6613187B42842DC889985E47DE42C4F15C408290A7A10A8066D1719A474944E8C4740249E63C88C90DF30D1510BE23EF4907B7D5EB8E5D4A6B0D12E6D19B198973851BB3A68F182E0C5A0A19120CA51E4605D97EE149EA05CB371C59B1D1C7FFE35D3F9ED8713838C2EFD78B718782A363D7EDF03FE8E0BE662D31D55E68162D83CFD6F98B29964ADBE6AB9A24B47CFC6FFFF23E199BAD8E1595D0C864A22C0886AD0FA385C280E42E305EC46885BCD96C974F52A5C0C2ECA28663E1F1C9DEDF1CDD4382942504C02C2A5733053DE3C1295019125ADE355FF0C6C998CC36E8B94EE46502A36F5D6A8830AE919CE05C9A98C2E8B79761D0728D4ACE95F2566FF1A69D38980464A227BB3E0074A6076C1787B7D8EFACB03422B570429DFC5185A1EB65F48CC5F468C6601B4B05E5B5AAB7377FBB950EA551C7EDACAFAAEAA21EE2B11F73BD0B7AA3AB3ED9FB3D4CA2C12FBD5E572F0CCD906040E31FC2D2BE9A31982E1F81D0B97CC3CE0DC4CA90A8F2993B0D2224F207A80589F56F9EB3D4ED6C525E3BD4D26F9445B3EF41C2803924739A31D896AB305B5C8AD81EAE34C8D1F516989A3E94174872B17EE771BFC854B1D543C6EB050664C70399A9812AB69B7C7FDC4E1339C81798F1175A6A9802E6E760687C1AD4BF6DCB3C0C803050976FA0966B8430F32A4499B49E46B3673AB844AB9A4F9F4BC95780BAD8D6207A19C36CB9661494C86812076129CD96E10F07F77B1F705DC54DBC56A6818BDB96F560F4EDF2553734AB9013FF251A921A0278E1EF9F0B520B2B6CD21F290C5DCBB5DD42CBB55AD1DC4101C0432650CCA300D82FDE73F36CAF67D2C4151D7001DBB21E8CBE2D5769655D3DC98E17D1491266FCB1D70987276489AEE7F87FBC601896CF53728A44F4512B186660262C7AC3509F80307F69955C6D13E1E8C080BAD4DEE361FB69271186D998305437DDC0F2B2BF7BFE4A5E91ACAE0348D996F557534B6B8BC34BEF7AD25E424F22867BE67B60DCC2C9E3D14FF71CDB57256F1E668BDDB6FAD104EDA7BE01DB69895A9F03E801E09B68310EC8B0DC5F8849CDCB8190C9B6ACB7422F279FA7CD9BE9B4AFAEEF27F7D6A50574EA61321DB275725F9A5B545E09E1934D1146BE246555D23BE62E73A30FA5D31284403FD2623A680BBD4DA22693E7BEFCBAB8BCBA1AE2D8EBA92C3DD62BAFA82CFFF93736AF4033B90E86CFAE61F32D499D438626336DA7B92FFD2532FE0289613536A730B4D5D0A4547EF5C3A9FD60D2E9280FD87D9A7819F786CD4F3C0304F85E06A0C6E12D6471D7FC23EC7272BCA2A9A5C526DAFE57A74AAD3A7F25FDD2D4456FBE861CB8F398E79705169F5FEE7FEE1F665F7A26E0E0592B36FFE5573EDCF6B97F50D499CB57B3D35373C48505D20A5959555DFD8DB6CB99D7DAB41C717ED079E1C52F0F04FEE0F1DE56EF491C2F3E4DB4584BA653734EFBC0839C8AC096C6110104A4CEE04466719DE95C0CA4D31CDE6262A6DC119BE701238A37D4E6F0F93015AE9B105C80586E73E81789C08907C14372CB9CFA7E47D9073F90DBF3DD3EA04EF00BA09C0ADA01E3E9347C251B7EF98DB0E9FD2EB6A79D2D3898200F70B0F6BA678DA9E007F760DFF0BEDD4AA07BDA1CA0C0280BD5921B701B8E26A2DE07BC873233FA7F8086396385BFB0100000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (6,1,'Crypto-router_(128)',0x89504E470D0A1A0A0000000D4948445200000080000000790806000000F1A3291A0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000033BA4944415478DAED5D07785BE5D53E92BC77BCF78EE378C4711CC7994D08653440080402348C42F9A18C104849986D082DA510282D7FA1A52DF42F7B43C3DE09213B8EED78EF29EF255BD61EFF7B3E4B89AC58B69CD834A1BE7EEE73A5AB3BE4EFBCDF7BDE73BEF35D49CC66334D2FFFBD8B641A00D300986E0507CB85175E38C36432796BB55AB34422D17CF9E5973DD300F8812F6BD7AE8DF3F2F272494F4F5FE6EFEFBF08ED130C1068F47ABD1A20A8FBE69B6F76F4F7F72B76EDDAD53C0D801FD072F3CD37FB8787875F1A1919796B7272724A7474B49FB7B737B9BABA120040434343A4542AA9B1B1512197CBAB7B7B7BBF3C7AF4E8EFDF7CF34DC53400CEF065F3E6CDF31213139F49484898879EEFE6E9E94952A994782B93C988DB080C2040A0D1680410CACACACCCDCDCD258383839BB66EDDFAE53400CED0E5AEBBEE9A171111F1FE82050B6266CE9C49A07DB15FA7D31D3B8641C080B06DABF6F676DAB76F1F7577770FAAD5EAEB1F7CF0C177A60170862D1B366C880F0B0BDBB574E9D2D894941472737323854241A0771A181820F87CB18F57E802F2F1F1115B2B1818041F7EF82103A41F20380B4C50380D80336459B76E9D4F666666FE92254B5266CD9A250C0AFF4EE5E5E5D4D2D2422E2E2E820DAC3AC0C3C383FCFCFC081A416CF9735E0A0A0A04130407071F361A8D2BEEBEFBEEA169009C010B28FBBED8D8D8DF2D5FBE5C1817FE9C3EF9E413EAECEC64C3EB61F42AF8FB43E8DD2A30800C7A60665C5CDCB28080005788450A0C0C14AE81F5C08E1D3B982D8C58CFBAEFBEFB764F03E0F4F7FB0130E077A0FE74EED14CF79F7DF619151515115C421F18E0AED2D2D28F010025C060D46AB512B805F76BAEB9E6A7F1F1F11B2116531904BEBEBE2242D8BD7B37F5F4F4B0ABF8064C70F10D37DC30380D80D378D9B87163D6ECD9B3F7E5E6E67A32951F397244F872F4723D8CBD116EE0F9929212DD098D2591C8CE3AEBACA4356BD67C9C8425343454B8828A8A0AE13EF05A8935EBCE3BEFAC9B06C069BA6CDBB6CD05D4FD97ECECEC1B43424248A552D17BEFBD277C7F5454D451B8817320EE3A1D36984422BDEDB6DB6E59B870E1FF227A90300BB0186C686810E21061E156B88187A701709A2EF7DF7F7F1084DD073939398B66CC98217CFF4B2FBD2480801EFD02DCC02DA3F57EDB0534EFBB65CB9683C9C9C9A9414141840880AAABABC96030B04BF80CBA600D2202CD34004E4FFF1F0F21F7C5A2458B9239BC2B2C2CA477DE7947A87D2CB77EFAE9A77F19B7D12412B77BEFBDF7D9B4B4B49F3300B8E73300E03E0891403544E532B8998EC9FEEE5B9FFE7B545B5B5BEED0802E4C6FD2B79256BDFFCD179EEE9A06C00416D0733CC2B83D080123B9C7EEDAB54B8838D0BFA6A6A66639C4DF412700C06EE081ACACAC8719000C24B95CCEF4CF19C35E4410F3110ED64FF677FFF08B9DFFA7D51BAEAB6968A646793BB5B6773DF6FEF37FB8771A001358EEB9E79E6450F811D0B72F87701CFA81F209EABE373F3F7F090C59E1CC75AEBCF2CA2BC022AF3300983DBABBBB45480816D0C20DE4C2D5144F0500CC24B9AEA1A58D2A6A1B48DED6390D80892E37DE78632EA87B0F7ABC2B67FD3EFAE82342CF2788FA0E44033F420858E5CC751042A69C7BEEB9472004BD3931C4A124A78FC100E6D6D6D6CB1F7FFCF177A60A008D02008DD4D2D6310D80892ED75F7FFD7218FB1B44001236DAE79F7F2E42383082BCB8B8780544618D33D7898989095CBF7E7D4974747404670C5908724E80DD0AAEF7CBEDDBB7FF61CA0000FA670668699D06C084976BAFBDF692F0F0F077D9687D7D7DB477EF5E82B062003443C82D473857EF2C00E006F2B18DE768C2D2FB454A198CF29B279F7CF2D7530580260B009AA70130F1E5B2CB2E7B06E1DEAD3CA8C300E05C3E67F1121313FB61C4E7DCDDDD7BA0EA8D6817130EE7F4AE09AFC57BEB7E7E0F637BA5A7A73F04571286A882D5BFE8FDBC4047FCE9A9A79EBA73CA00D0DA2E5C40B3BC7D1A00CE2E2B57AE3C0F06FC2D42B4F99CBC6100B06AAFADAD15E3FC30A430A0759067BC85E91EF44FD694309FCB2CC00347D000656092BF023CD5616161075E79E595BEC904007ABE6080A6690038B77099178CB30B4653E1FF55C25832182A06060A82EF9672EFE5A15F5E38A6771600EC46D8F81C05F0F99C07600030B340605621D41C848BF8CBC68D1B9F9F5400B40100358D0040DB34009C5956AD5A150D231D86C1C2D8C04CEB00419F46A3515992377C9891B74CF158F4FC06AF5D79C5F15C146A6D28B3052CBCE5C5CC6DC823866017F1062E460DC3A7598EBB75F3E6CD7F994C00B4B4750A064034300D0067960B2EB820DCD3D3F3087C7504276DE0E7C56A2DF6B07DCF2EC0DA266C40DECFBDDAFEF8D1CEE5F5E8D1A374E8D02115CEF5E2EB60BDF3C1071FFCD33400FEB30C10020014D902C07EEBC8A8636D47DBC7238BEFBFFFFE0098C6CF02A2CD5BB76E7D623201206FEF1422B0A1B9751A00CE2C5CDF0F0395C005449E8A719D39A7B8B8985E7BEDB55E183ED072FB077E87657201D02518601A00CE33801F18A00C822DEA648DED2C10B836E085175EE8020384586EBF6DFBF6ED0F4D26005A3B860150DF340D00A796D5AB577BC1B7570200D193D5EB1D7D56575747CF3CF34C1B1820C2A2017EF7F4D34F3F30F900680400E4D300709201601FF79AF1003019CCC0F5054F3CF1841CB78DB2DCFE89679F7D76F3E402A09B2AC10075D300706E59B76E9D4CAFD737F8F8F8449FAA8F1FEF184E2B3FF2C823CD68D7180B033CFDFCF3CF6F9C4C00B475760B06A86B6C990680B3CB9A356B9A008098C9E8ED639DC3C3C208FB9A4C2653ACE5D67FF9D7BFFE75EBE402A047688069004C60B9F8E28B1B0180D8A9A07FDBF79C05DCB2654B83D1688C17D922B3F9794405374E2600DABB860150DB300D80893040032281B8A9A47F5E797C61E3C68D0D7039F1965BBFF4F6DB6F5F3BF9006804009AA701300106A80700E22733E61FED334E2DDF72CB2DF51A8D2681EF0B57F0FA071F7C70D56402A0A3BB972A6A1AA8661A001302409D878747C2642781ECF7F1A8E04D37DD54AF56AB132C99C07777ECD8B176D201001750533F0D808900A006464A9A2AFAB76E79B9F1C61B1B542A95D5057C0806B8683201D02900D048D5F54DD300984032A81A064A9E8AE48FED96E70BFEFCE73F6F181A1AB202E03300E0FC4905404F9F6080EABA69004C04005530D2CCA9A47FEBF6861B6E68542A95711617F00D5CC0CAC904409700402355D5354E03600200A87075759D3515B46F7F0EBB004403D63070CF871F7EB8745201D0DB2F44E0340026068072D073EA54D2BF757BF3CD37D72B148A04CBAD0FC205E44D2600BA1900700195B5D300707AB9E8A28BCA0080D9531D06F21661605D7F7F7FA2E5D6850040F6A402A0AF5F948455D6364C03C0A97F120B0050824DDA54D33F6F376CD850D7D3D393687101651F7DF4518679121ADA0A809E3E8560800A66807F3C390D00EB525D5B1761329BCF339BCCDFA6A624D749AC959E443200A010DBF4C9AAFC196BBB71E3C67A00C0EA026AA0016633166C56B280C37CF2006864104C03A0BEB1C907FFC3A52693F96AB3D9B4125B99C96CE2C6DD6B329A5EAEAEA97AE7969B6E1ACACDCD3D84C3674F552998ED76D3A64D8D5D5D5D7196AFD87CE0C0813408509397979711C7984B4B4B4DB6807016085600F4F60F03A0B2A6E1B177FF1B01D02C6F75412F3F0F8686D1CDAB61742F9EC781AD28E8140030F196DF9B746AB5E6EB1DFF7E6F4E697171A4B5D073AAE89FB777DF7D77736767678CE5EB76161616CED36371717131AA542A038E31787A7A1ABDBDBD4D0083D1020293F30018181681FF6D00686D6BCF8351D9E857984CA610616C6174D3F12D1BDD640181DDE73C7FAFACB4842ACACAA8B3B383A62A2D7CCF3DF7B4B6B7B7475A68BEBFA8A8E847F8BE3A0080CBCD751E1E1E3A060483C1C7C747DFD0D0C0538A8CE3318115007D8A0121022B6AEA7FF800E8ECEA4E16463799D6639B3C6CD491C63D1108C300B0DF67FB9A6706D754575163433D69008CC90C07EFBDF75ED8BF3DDC0200554141C1B98840740C020B1078AB0518B43A9D4E1B1818A8ADA9A9611098C602C171000C5A442000F0B71F20007AFBFAD1BB4D570CFB7573DE084A37597AF9284070E0028EEF3F76BC656BB91EFCB5A9B1BE4ED2D1D12E7191C9C44C9F5301C2030F3CD0DEDADA2A00807BB58001AEC5FDF452A9940DAF67E3431368F1313F805ACD0FA36E6969D14D1400558802DEFEDBF61F0600060695ECC72F86B1D6E33BB17F773946E5CE18DF96FAC732BEED75ECCE359A8CE656B95C51515EA6AAAFAD6183B8A1B7BAB161613009A85B0A034B790B4127037DCBF8C9E2008C8C41C3F30D79FBDC73CF75CAE5F240B89C7740EF2FA2970FB1E1C1027ACBAC231DAEA961E30F0C0CA882828234136180FE81C16322F08C06804AAD96A1E1570EFB75132B799F137AF028867364FCF18060DD371620ACDAC160306AFA7A7BBE2D292EFEE6DDB7DF2CC53E7718901F2B27B658DDD0A3DD61447780C30306F50130BCF8354F2B6B6A6AFA02A1601DEE63C0717ACBD6808F0CEC02703D0DAFCC02C9C9C9FA9D3B773AAD01FA0794C744E0190900AD56370F46B91A8D7E251A3DC256B04DC448270840675DC088EB8D715DCB7E8341DFD3D7DBF7715151C1C7AFBDFC5239B79BC5BFF356C253C72CAF39E96436180C267E7228B6469E520EB018C002266CC57B16805A340218440BEAD73B23006D01A018540EE701AAEBCF1C00188DA63834EA7A4BBC3E7B5CCA1E8DFA9D7501A3E98271C064FF5D8EBF1EF9FD0C7A43F5A072F09DA28223EFBEF9DAAB722B10AC00E0054666639BE002C49641C15BD0BD993F03608CBEBEBE06D0BED159E38F0A0088C0B7FF7A7A036006D675687CF6EB4B4DDC5026278C358EDFB79E6B6B7CE5909AF8C109C9F1D1C4F378C76201675DC638403483CEF76A349AD7F30F1D7CF7B5975F54E0DA120B00D8E06C6C33E85EACBCDF9204B226804C134902D9026040392446033915FCD65F1F3BED00C065311762BD1AEB2A1652A631E8F6547A2D1F276FEBA06F0F1551615915E90D46CA4A4DA64BCE5F4E2E52A9D342F0F8F54E52589ACC5A93C9F8B1DE607825FFE0C18FFFF487EDB60F9A34DB6D4F2A0D7C02009801A0014E170030F297635D8FF532AC0136FFE8388D3A7116E079FC85E535B4FBC011AA6B6E23571719CD4D4BA145D919141E1A48358D2DB4FF482994BB8C1664A5516468B0839EECF8FEA3B2C628C61F05387D38F64D5CFB655C7BCF7557AD9BB41E6605C0A052254460F96900800C4B4FFF29D698D10E98508F1ACDEFDA189F7DDFDEFCA3B4FBD0515220140AF4F7A545F33261E4D924438FCF2FADA47DF925D4DEDD2BEE1D13194A7900405A721C69B47A727375199B059C7501A3E51446D722F5D8FF0AF6BF7CC3D557554E1A00862C00A8FECF0080E7BC5D65317CD67807DB3792A39E3F160B34C8DB69E7BEC374F86805218EA29484185A963B976627C7535FBF82BE3B5C4C078BCA48ADD5122772325213C106E9141E1C442DED1DB4BFA09C4AABEB29342880D69EF723F2F5F1764AFD9F7C0E6254301DC6FE97B0FFF59BAFBFA6F35400A014001816816F3CFBFD00801F76B0D662F415AC739CBDC1C4FCEA71E3EB8D063A72B492BEDA7788EA1AE5E4EEE6460BE6A6C3F07360C8195455D74CBB0F165249759D38DECFC78BF2F079EE9CD9E4E1E146251575B4AFA0849ADB3A2928C08FE6CF49A5AC59892405402A6A9BA8BEB915CC9040916181637E3F7B1670944D1C2F22B1B99E01E77E812D5C84F9FDDBFFE77AD58401A0521F13816F3CFBE8D40100B1EA8550AED7E0E56AAC1E13BDF8311F3901BA1D1818A29D07F2D1E3F389131E6CECE50BE7092A67A571A8A89CBE3D50486D5DDDE21E71D1E1B424279332521249ADD6D20130C1FE825262A194141B0950A45122B61A8D8E0A4AABE85071A5F88C470567C645D1B20573C8DFDB1BCC621052C63C6117E0FC60D428D75362FBAE452F7C75D7AD37999C01C01003000C505ED7F0D81B7F9E4200DCF5C0D6AA9F5D7985322B33EDA44A9A9CE921D686A96B6AA12F761FA48385659C92A5CC5949B462510EA526C6121740EC3A5020FCBF4A334CF373D367D2D2F973292A2C8878BAF477F8ACB0B44A18312B2D9916810D8266F85337CE65401CADA8219DDE409E1EEE94353B99B25393C014EE5451D748F925D5C4B4BA72D13C4A880E9B0417E04482CAE67A96D76DF8EC551CF3F2DD1B6E293C2D00B061CB0366A9444AC14181FB6FF9F9B551C14141311306C0188D658041F61796C2F007789A13797B7AD0D2DC2CF4F81C18CF4F0C797EB3F73015C1787C0D7F5F6F5A323F4BA87D366449551D046121D5C245F8FBF908A3E764A69287BB2B2201B91084D58808F8DCB0E019343F7316744302E9B43A3A82B0B1A0B40680D2D0CCF828441133291C1A41DEDE4D550D728A8F09A3A890A063C6740484F15C86338351A3B04629CE7B09DB57EFDBB4A1D91E002AB5C6321AD8F4D86B7F7E64EA0070C73D0F0A0048A412C2569B91366BDFFACB2FCD757373F39E90FFB7FB47FB0606E82BF4F62FF71C221ED8888908A3B397E6521E841B7FBE37BF58185EDE31FC28FC0450F8F2BC6C11E36B757A847825307C11F54000C64745D092DC4CF8F37832184C5400C3EEC3E73C7D8A693E35290EBA6016C5848752476F1F5C4805950238AC05E64013CC055B787B7850757D0BE5E3DC8EEE3E01C4CC94044A9F1927EEC761A6F8A9B8890AC1934872D91D8F434DBB865D84F9ED79D9D97F3A0E8046A101A614001BEFFD950D0024D84AC9452AEB38EFC767D52C5FBA68B1C4921377D6FFD7D437D1C73BF7C280C5A2117220D8CE81E16726C451674F2F7DBDE730845D010DE11F649AE7CFCF82FF8F8E80F1BA7A69E7FE23C2C71BE1AFB311F72F051B44C20528E0D3B9B7F3674C8F5E30604E460ACDCF48251F6F4FAA6E68A103702DF52D6D1400A6C8C9980503033046131557D60134D5D0052A0A0E0CA0B9B313291980EBEB1FA482F25AAA696A85C0F4A4F396E488EB9E54C2689CF0D63EC3690F04CBF5345E5EDEED6161E1F16EEE1E5409D7555E33C500B8F3BE5FDB32007A8144F42AF1B3AA1E1EA5EBD75D2A498C8F4B1B0B003A9D013DBA903EFA7A2F68BE89FC40E3672FCEA5B316CFA71988E34BABEAE98B6FF78B9ECB0DC10662D1C7FEDDDBD39DCAA076BF41085856DD403E5E9EB438670E62FF0CF19A9F98C94C50545ECD630D14111A440BC1222C08F95A85A0F8FD45A54243704E6001DC4312841F8BC0C310836C7CD605F151E1307C324587075313AEC9AEA109D103BB9C39B31284986C6AEDA4A338DEC3DD9DB20192007C367A786BE732266130CAFEDA12898C4CB0435B77FFCB7FDFBEED9AA91381F76F355B7BBE3D002C5B736848D0C1AB2F5F9B1410E01F3CA2A8A37F803E456FFFFCDB7DC4050CC9F1B174DEF285B4706E8608F1F61C2EA2CF76EDE767DE8BE33987BF72492ECD43CFD6198CE8D14761F87CE2B9F0319161C20564A7CD227E606771452D446121D535CB0533A581AE170314B191E1A4181C1459C0C3259582BE3909C411046B80D6CE6E3041397A4F135C8094D292E271CD6461CC2AB880C310913CEB868FCD8291E3E09AAAC01E45B85F3FA293200036038088C0E7E5082539D3188FEFE622939EE460D42414B798CDB5B80EBB8857B63FFCABEA4905C0A6071EB201C008C35BC0700C14EAA4F8D8BA75975C3C0BF1B5CB075FEE1606E6731643D49DFFA3859418174D9DF0AF9FEDDA2BFC3BD3BCAB8B0B62FB34B8813C8A8D0AA3AE9E7EE106BE3D5CC843C642ADAFC89B8773A34488B7B7A09876231AE801B8D84F739A97D9C0D7C78B1F9D4EBB0F1FA552F4527737572106E763F5F1F280719B11099489DECDE76543F065CD4E12DFBD180C7404510067D7E260CCECB424E10A588016C2050CC2A584C3E0CC04C1017E5452C3EABB994C601C7615B313A349A95693275709B9B94CEAC8A6A388698C34F4011CFF32279B9E7A745BF72903E0970F6E333BE8F9230060751383831A75A752EB865365E7AF58443F5EBA003ED88BFED9FA0F7A43F532B9BC97409EB5A182FACF466F5F01B5CF9F57D4B21B3828DC8087BB9BF0EDCB1192CDF0F5A14E08B79DFB8E0861A7D5E9282A3C8496E1F339B367E2BE0403D6D277078F52636BBB08FB3803C88A5EB880B21A1165301B85CC08A0DC2C8E02E248A3D60F4701F0FDEC025261440E2B7D3D3CE9280462110CCFE1660CEE95857031C017FB2B1B60F8266190997191608F38E80D1515617F3B80CDE058383785DC5D5C471A6B42F50D273D18657FBC01DB4F0518CCA61D7FDEFE3BF58401C0932A0000D34400C07F872B9B283B33DDB4707E92E1CBC01D6EEF05FE1F29838F8331B7FB2C7AC8FD098A312408B5FF39FC3FFF004244683040311F3E3C433CAFB7122AF76B3005C7EFCC249930C4B205D988D3C3057BEC2F2801CB148B2882133D9C0C9A191F237A320BBE43472B488D102F313A422483E2711E33C781A2721105F034EE4C6885B91626E0DECE54CF6E23292602204A222F4407456094B29A26D1C0B312A2291D86E7EB1654D4214AE9A1197EDE9481688159A2AB7700806C20230C330BA1655890DF382CE04CB430B112B751C03480F3DEB130C3CEE7FEF8B8694C005867D35C7EF9E5D2B8D44CC309D46F75093686B78D146ADB15949834935A02AAE98B8417CCDAD96D12BDF748004ACD320ADF9B45A1EFC2E747CC0153E40D8771E88DACE4BFDC7350503A0BBD25F3E788D5CF076CD0D323B2800761444E16658105964114868506527B678F48061D8521D11422919497359B4240E79C0E661750D5D02C94FC3C440873617CAD5E2FB4028B4116913CC6C09AC00DBEBDB00C8647ACCDCDC30C9181A841641371FDA6B62EF24374C1FBA2213CFB0695B846234459AFC841A442CFC446603F744377DF0034853F79BAB9394A008D5BDCE2B8C4CD717DE368C7FBF9F9F43EBEED57410E016031BE2427274786ADEBD917AC1972A6E7DB02A05F65A4196191D4E6DD404F856DA61F697E4233124CA6FC942FA5268971F83E0619A5372EA60D6E5B68B1CF5234601FEDDA5B84302F1F226E48E405380BC8E19A0C028B439E6FE006CAAAEBD12BDD85DF5F949D2942BCCAFA46313A585D3F6CDC5CF87D1E0FF0F47043F8D74C7BF22DE30133FC6801F6CF460FE6288041548AC882FFE3B499F1C26DC8C0609C0B28859FE7C10E3E760E3ED3E8D965D488A167D614AC07E210552887347019F50210AEF89E29095194848842A5D5E21A4DACD2C9CD45064609873B09E2D06862256E2759E86A7F3C97AC05F8FB89F194FB36DD211915006C7CEEF50505052EFEFEFE1EB8B8F7B9ABD7CA9D0580D54D706A40E6174A5D1EEDF4FBF0DBE9EC81B574A1E21A7A2EF67E92450F9917E9CF926C0AB997225D236877F777F4B4EE31AA88DF4FA13BB36855DDB5746ECE6221FAF8F777D848D68450587020FD68C15C010AB6DA11F4DC6F0F16204AE8A560F8FEC57001D9108DCC6F85F0EDFB1009F02C5A4E00E565A7C10891A0E83EDA0726A8802FE7E40EFB774E04B1A03B84EB95094048281D46CF8491F560A40218BEBA412E0698E620DA488E0D27B5560FC337504D63AB689394B808AC9122AFC002B15EDE4932B4476274182540DCF2EB16B88BEAC6769A11E04DB3E323C72F8639F56CA2B0898FB7B748790BFBC14EF7FF721400588DDFD5D5E58AD5CBD7D7D74FABD5069F77F1658746A3FE130160058965BF9B27F5FBE8695BC48D74DEC01574BEE22A7A34E2360AD7C7D2F5ED779A0CB35AE9CDB0BF4BE5896523524921A670BAB9EB5E72F92A5AE4FEB9F02135310E6C308F6625C68A240FFBFDEFF28BC467893151B42C17BE1FD4CDF4CCEE635F41A9386E56422C44591A446330F1D3B5F74044727A984526D37C36DC8756AFA58347AB442E82BF3F1B9D470C79C8F94869B5107DEEE83DBC7F16689D078C4AAA1005806DD86524432BCC4E8A054B11584A4E550004FBFFF8C81008C508AE29878855E07839E90D06C1049141FEE394B83936BEA3C8C13EFBC87DDA039190275C28DB4FD84532DC411FB87BE3A80090A6A7A7BB802ABC70E119106161D817030678D359EAB7D709433EEEF440CC75B44AB19ECE19B85C0020521F4FD7756FA6E7437F4BA6D001B33AB359A2753951A0FA57C4D24F77DF47E7E42CA2F09020E28722EDDC5F20C6FCD938C2F7E7CE11953E9C56FE0E2E80451F37CA1CB0C06244021C69F090EF1E08CDFA9676F285BB60F79009033345733EA0042E854BC73825CC61219F9F5F5A25E89B0B4CB8C7A725C508562B835BE05ECF868C8B0811A0F00298AA9BE438BE5988471E984A8350F4F274A77EE802DEDF3700A04687085048860BFF471AD3A90490932E80C32FCBDC47FEFE120B2BDB02E0C1CD779E08007E966E4B4B8BDBE0E0A09F9B9B5B1814729CD1684C3A7FCDE54F394BFDF6003002819B127F461729AEA3950397080044EB92E89A9E4DF45CC836EA97F5D006C543F475CEDF4CE50907A45C32E73AE4450B1B7E427778DD4DB1EE71D4D1FD097DB5A70DD142AFE8B91C212C9D9F290A3AF889D9CC1245A06837DC2B17826F6156BA68FCAAFA26DA8DD0B005C704F80F0F12A52727204218120C5102AA77E13232B800761B2C1A3917C08A5F943941DCCDC1CA9142657D8B283F1B526B293A2C186E2381FC7DBC107676E1F87AE2B1F910B8A0CC94580AC0F71A5469201E9BA8B5AB8F62008899B11142544E410268C4F5D891BBCA5C44826BD80EC3F692580C3FCCE012FAD5E6BB4607405D5D1D1773FA638DC00989D89F0C003CEA90FA2D37B1A57E7B77F152C4BF28D2904CCB072F120088D5CEA4F5BD770A000CC8FA6873FB1F6997EF077430F4135A6158697A78E6C35237B33BB575FE938203FF81F0AE0171BA2B95555E0E51772F50ED2B8CCB19424EEEF8F9FAD052F8FE9CCC59428471AA960B4439E1C475048BE7A50B21D737C0A56425C33D1E869F87989F5D002F9C7B60BAE7866531980D267003EDB3E03B545C25046328228979E9C930B41FB541731C29ABA55EC5A0C82066A6C421DC0B102EA81C60A96BE910C7A525458B54F6C90C2BDB8D018C9B00E2CE63ED80B69DD1DEF8FCFAD75B369D08806DDBB64977EEDCE9A650287CD915E3C058ACF159F3F3AE8A8C8E5D2C834F7096FA25365B83544FB53EAD94A89D2B0010AF4DA5AB7A3708000C49076953C7130200EF073C4F5B5B9FA758972EE3F2BC676549714DA3CC220AA5D7FEBD92767C1121DC020B421671463440414905ED82E139E1339C289A23F2F79C82FEEEF051F8ED7A72E5EC607A8A303E6B55CEF71F2EA902C0F422A99393315344184DED9DC23D70F83603EC9183E880C708F83D4702AD0837D9B03C981417110A97A0A7CA865630855CEC4F4F8EA5E000DF711340630E0039A5FE4D62F453141B5B8DEC0400B6DEF3CBD14520423F17A552E981C50F5A20949900378A9A11183C3B63EEBCD541A1A149CE50BFE484AD8CB4326F7A24E2764AD2A4D3BABE5B0500D45215DDD9F1D831003C2CFF3F4AF429A694A83F93CC6D91393B732F2EAB1B01829A86646A6CFA3545452C12BFD1B7BFB04C0C060D20746495BF14BA203E3A42A87DD6059CE66511973B2715864F013D4A84CBE0641067FAB8D864013EF3F5F64034810801D79377740BBDC06061D13630A4160C510B46E014737A729C1078DCEEBCAF047A418237AC1562A10D4EA6B47DA20920CE97B01661512119617C9B91DB118038EE0E1EBAD70100F8350B411F1F1F0F34AE0F9776A3E387400BB0208C884B4CCA4BCBCCFE8997B777C071EA1F1F00BCDF2491D1D688CD94ACCDA0CBFA7E2100A093686843E7A3C700F05BF94B14EF534829914F5261C393E84D5ACA4DFF2B147E1355D5659052B91186391B62AB13FEF829344C31BDF0C612C4F719B41C6CC02381FCFCBC9D070A450128C7BC7959A9C772099C20DA638910B8146C2142C300B8107EDAC6DE8272507EAB2832C94184302B3166B868A4A24ED40F7243A7611F0F2CF1C00FC7FDAC1754D0059CF14B4608C8A19E5363FF1398DD641F1DB0D1D56A8DB8C671816735F8F8C6E775DB7D773BCE0358934088C1E1065D3DB1FA180C86193886DD028BC3A8CCEC9CF31267A62C7105A78E67785B80947B94539147295DD07FAD0080017FB775FDE618001E6D7995627CF305000AEAFF2846FDE6C6DF450D9DB798BDDDD71962A3DC5CD5BAC7283DE533083DAD65BA9927FCFDED545675217DBDAF08E15C8318AE5D3877B628026585CFB9FDE194B152B8058E108203FDC11A2AF4F8D2E1513DE80216831950FD1C437172A7B0A29627888ABC3FBB1A0EAB785C221F0CD2DD3B00651F4E19A07B6605DB5EEBC8F8E3A56DC7CAE6717E6148C53F4DAF1F41E7D6D85E62B36F3C57B0EDFECD927133812B56AC90222A90858585B901005E5AADD60F6C3003170C052384FB050424E7E42D5A1D1E11359B95F27800B0BA0BADC4403A830F3D0B00B0F2FE45D743C700F058CBEB14E57B4800E048DDFFE21C83004085FC1EEA195C4479B31F3467A4D6497C7D4E2CA26D6C09A6E75EB9882282CF1686E7EF540630EC3A542874417C54984827470407D290460DD7512E1881FFDB392988043292212287AB850F96548A9ECDC3BC2CFCB8DA98C1935F564DCD6DDD622898EB017CBDBD4EA6087442C79B10F20EAA866848A9B2DAE7585B3A03806336B101C0C30F6C918C3B18640B0418DF55AD56F334682FACFEFC73ABCC06F83C3C2E313167EEFCBC0BFDFDFC439C01007F591EC27BCCEFF7E21FBDA9FBD7C700B0BDE52D8AF0DD6F01C0B338476B01C07D00401EE5A5FC9406D40B283AC2C79496F2096E319C56560E795271F91AF4E20DB887371D6DACA4BDDF55103F4F979340CB73B34445116B8643472BA1EC2B44CF663A676DC0C2ADB6A90D6C502E06967850874BC84211DA2941B72213D8D82A42BCECB444F1F914957F8D385EA556516F9F4280E0B841EDFCBD9DC073460BFCE6817B244E8F065A07851022726ADCD5CDCD4DE8039CC353BF82615CD60791F37217FE38353D6385BBBBBBC7A8DAC00600FCBAC7A58FBE70F99A56F6AF3B0680279BDFA530BF3D0200F9B5CFA117AB0400CA5A1EA43EE57C0180EE81A554DB7E2BCD4D7C9822237A60B03C7295DE856BFAD27BAAB7E98DD8BF92DA6B80323FBC90AEF2B886126322C47CC10288B87D8525A446A8C6FE9FC3433FCE257476D19EFC5211DAF12CA3055C3B08B0F0B07311FC7F6975A328FAC84E4DA404884B567E8E14BAA36711381A0072A4FE355A2D75F7F40A5F3FC2A8521B5F3F8ABA77D61D3CF2AB7BA5B67313C79D186265030041C2E304303203811F94E00B77C0B37FF9F7F1C27DFCFC12962C5B71715C42E21CDC4C72A2E16D1214169650E925B4C3EDDF00C00BF487E6F728C46FB700C0E1DABF436C298701D0FC6BEA1B9A2700D0A55841751D37D1DC843B49AB0FA2FAB65F997A432AE9B5D467A4BD312343C79CFE65B4FC9BF554B4AB450C30C5C10D70781802FFCF2562DFE5978858DFDBCB13864FA194B868115296D6D40330B522E3C845A119600A16919395B071647C16789DDD3DA4802825FB106E84514F0D007BBFFECC1521BFC9FA5432A7A786D9BA056C5DE01678D62FBB053FE884406603E116E2E3B3F2962CBF38283838D2BEE71F4B18D9B8895A491D3DE5F938DDD3F6E763003854F34F507ABF004069F343D43F345700A0B3FF6CAAEFFCB90080461726DCC38B21DB491FDA631ECA6C94C0598DF8CE3235228197AFA64B822E11C51D9CD4D98B48804701DD5D5D4468C8A961169C3CE0333C694425CAC4391AE0ECE354CC03B0BF1EF7F8F6CE4ED0BD7914756F35A8D4CEBF8FA4FC138132BA3BF87CC73BDEBEBEBE3AEB1349263C37D0365A001388DC010CE985D7EC1682F0CF31102272172E5A393767FE8F3D3DBDBCC702005FCE283522EC929144F63525473C41076B5E2437971E018092A6DF9042952900D0D1771E35745D670140841088CF073F4A1DAECDB469E051FA26FB6FA692F8BD527E40805777105D5279235DECB296B41A9DA80C6221C72A9FF3FE39E9B3448A96433A4E0F77F52A282A2C58E40502FDBD273CE43A660590830A60AE5F6C6E918B0213DB6CEA893D7C6CE38FCE06A36B810FDE7A3508BA6EA8A6A646CF2C7052B3836DF54159193F8359E6CA19241894DD82D007CC06FC234DCBCF3EF7A29929B3E6BBB8C8648E42446B2849D201F8DC7F524DDBD5304EBB004071D32334A04A170068EB5B454D5D570B00A8B43154D5FA4B01801E9736DAD2FE341DF4FE9A7645BC4D4BF44B4C77786E929A0D1231EB87C33DAE3164E1C723845C17C8C59F3C42C8D5BEECFFF3E6A652745888B353C04F69AC9EFD7C7D63B3F885B111461C1500D25119E164F4805EAFFB62EFD79F5F83F61ED8B76F1F3FA7C8784AD3C3EDF501878DB89E2710E68B9B0472FE80D9203A3A367DC539E75C121E11193F1600AC5946F6812A5D334506DE0617F0000DAA5305005A7B575373F795C300D0C45155DB5D02000A59376DEA785200E0B5C0A7E9BEB66728541D642C29AF94C2D0128EFF7910890DCD7A602F0CCF833C9EA0788E04B8E287CC74B253C09D4E00B1206D92CBA945DE2A8E939EA4F14FD002E38486069DAE55DEDCF46C536DE547B0473BF49B625200E0481F0C0E0EBA734109FF843A878D781DCAD9C405798B96E52D59BA8AEB0D464F22D9EB053DE9208EBA078992C22E2379EF45D4D2B34E0040A94902536C1000189229E88E8EDF1F03C0D6B67F90A9534AC5A5A5F0F3A9A6A57353253AA351C2A9632EF8E4FBF03C8079F0F32CF026710AB8C304505B5B3BD5D43540BCEA4E30E08921DB487730112D60CB0626A349D3D5D6F2456D65D9BBF81E0DD06A72B0724F5757D7A9B980B180601B36E266EE60031F34A6700BAC0FB02FEABC5517AC4ECB98B39835C4D800B0293895286948DD474A5D08057A3F8886F4870BB899FE11F43BD24887E8B6CEDF1E03C06FE52F92B6DB4045478B697ECE3C51365E565262EEE855486627C6D2C2ECD9623A98C3F97CF6B57A4E4E011FCD05F4291454565145FD8A013BA33A0F8089EA01F446537F6F77615D45C9FB68FF5A7434395C7327BC740FDE2B4F49044E541FF03382386CE4B432878DEC163862088F8C9CFD930B2EBA342E2E3E45324A8DC189238F2305247B0A324BE93BCD1E6AD77551AE66391551017DE0F61ADD67789406FB87E8C8D1725AB9348F3C5CDD10DA95535C58903EC0D7DDECE5E5E37652099B0964F3781E43596525445EAB1D4D4B1D50FAE4B803CD90B2B9A9AEFADF7D3D5D47D1426DF81F3AD0F63DD80EF0A02A567D7E7EBE71C261E0A9B885868606A10FF09EF5811F4463A035AD9C9B97B768C5D9E7AC9E11302368ECAA237B0038668B13A20E9BCFB97B949795A90D64767391B9C94E750AB8FD1800978D55D5D45145750D190D46C7C677920D8E33E0D8EEC0A0D70D74C89B3E6F6F69DA8DF7AD6C78B47737BE93026D3D845ECF032806CE01D83E9D6CCA9F13681F36725A19F7647D20D2CA0C041E64BA60F5C517E4CC5FC0D944B7318D792C9218DDC0E301C0DAC000A2A9A4B4542B7375F7308B7638F529E0CD1077478A8A49A552D919543ACA08DDE4B802DC5CDFDBD5BEBFA5BEE6537C2F9E4ADE8EE3BAE0EFFBD0F395E8646A4BAF378DF628DAEFE541918EC2467C396F4B0DA2D007A1E1E133D75CB2766D4A4A4A86542A938CDEF3270E00FB19CEB6514777778FBEA2B2CAE8E6EEE171524210FB38677F28BF80DA3A3B471990190B005207E19D53EEC0AC54F457B637D67DA8D5AAAB2D74DF89EFD383A61DE0E97A1D1D1DBAECEC6CC35B6FBD6572F468BAEFF551B1F661637474B4AB42A1F0E4688181006084601B9E337FFEFC5517AEBE343824247CB2A87F24004E74313555D5DA96F676E0CED5D55917A0D16AE8F091A382EE398E3C91A6A50EC6E79D48E08C617C9D56DDD9D9D2F889A2B7879F24D28A766B478FEFC67756E0B8A1808000CD68747FDA3C2B78B4B0115B9156062B88B432D688D56B2E397FC9D265E7787979794E16F54BA50EB405B6FC3886FCFC239ABE41A53BDE4B1D8DDC71E9774979397A7D9118657494811B8F0D26A20586BF9F51D5D7D1F66D77BB7C17F7785EF1FF745AE95E83055B5D6262A2897BBD330FA3FC8F3E2DDC7E26121A93879DBD39ADCCFA80AB9182838313AEB86AFDDA8C39737264525E2687FAC73A4739A4341E387058A731183CED59A0A9594EBBF6EC15B43FBA4F771E00CEEA017462A352A128EC696DFC1C6DD268A57BAC3DD04C0370A12A1BBA9FD0EF10FDC77F2F60347D605B8D644D2BCFC9CA9A7BE9DACB2F8F8A8E8A1937529800F58F758E5C2ED71D2E386A369AC9BD4FD14F5FEDDC6DAE6F6C963832E031553EAA6A77D21DD885861A95AAA1AFBDE553B54AC90F9A6C63BA4747E1D9B6FD4CF79E9E9E5A8040EF0CDD9F960018AF1A49AFD78BB4B2259B187EF19A4B7F7CF639E7AEF2F3F3F19D2CEA1FAFE2F9C93FFEAFEA95777778F207D2B114FB18C63F7178766C2D6032E8FB155DED5F29157DF9ECE76127A1EEC100BD60C841A67BBCD6A7A5A5199DA5FBD31A00CE5623E1FB86FAFBFBC75EF7B3EBD7E6CCCF5DE4E2EA221BB7E74F1000F615CF8F3CF684FACD0F3EF51C378133C6889CB37A000A53AB54F41E1CECEEDC85FF95E7668A648EC5F003F84EAA9E9E1E2D04B4F1647BFD690D80F1AA912C935782990D80FE8CF5D75CBB2E2121317932A9DF7EB0EA37BFDFAE7E73C7279E6319DFE1A08CB35A404266CD90B262B0BBE34B8341578F7BB3C86BE7640E68BF9F53B84CF768030367F24ED5F0A735004603826D3592451F045A26B1845D74D1EAE5ABD7AC5913103063C664523F6F796100BCF1EF8F3DA50ED2AF137507F65AC0A8D7B60DF5757DAD550DF10F5CB7A2B7B7617F27DC1FABFB416CD5B674EF28A6FFC10160ACB4B25D355228C0117DF3CDB75CB278E992E5EE6E6EAE9341FDD65F9E7DF8D1C74F00807D15CEC9E801B3C9A8540FF6EFD10EF6F3AF9AB65A445E077A7BCF54D0FD190B80F1D2CA3C89058DC569E5B0993367CEFA9FFFB9E9CAD4B4B4F453A57EEB2200F0FE479E12A9738339E38586123319F4EAC122F560DF2EC498C2CF5B451ED3BD4AA51AF2F1F1D14C36DD9FF100182BAD0C9A1C319B69D5AA0B175FF9D32B2F0F0D090D9950A46043FDB600789D01E060BEDD58B1FD0836E0805EAFADD72BFBBE31E874F54CF76C788EE9F1BD7BF1BDA794EE7F100018AB1A69707090F5C1B16A24B044E42F7EF18BD52BCF39E75C2F0F4FF78952BF2D005E7BEF43CFD13378CEB902321A7AF4438A6F4D7A6D198FD6B19F67BAE7DC3DDEF3889D48E6C4C7C71BA68AEE7F50007026AD6CCD2626262626DF76FB862BB3B3E766F32093B3D46F0B8057DFFDC073B411B9714343B35963D20D1D32A89507ADE95BCBDA8DFBF543BB28D55C3C6019A7FFBE0CFF8301801D10A4D007526B5A199E8127B1F85BAB91CE3DFFFC0537FCECFA2BA2A2A3A29CA17E7B008C9C9E359EF1C9447A6D8549ADFC8EC8C4E9431679ED5C99C3740FF13A88EFC843B5BAEF8BEE7FD00070548DC4FA0054EBCB6569EC16F03AE2B6DB6EBB00A1E32A1F1F6FEFB1A8DF1100C6D30252B3414EBAA13D6434F230612B8B3C363ED33D56CEDD0FFD27E8FE070F004769E5A0A02077DB6A241E760E0D0D4DD8B265CB950BB1F0F32F1C19DF1E00F620180100330DCA8C9A0312A3AEC4326023B7D23DEED9C78647AFD7FCA7E8FEBF060063858DF6935C972F5F9E7DFBEDB7FF14BD31C1D1753811F4CA3B3B3CEDAE6D6B7CBD8B51572A35E80E4B246656F672CB383D9765F59C2E74FF5F0780D1DC023C828BFD24574E2BDF72CB2DE7E2984BFCB09CC00000C0AB7600E045FC32A8D9D8E866D241E0995AB04BCE15B830B8E8F53C6237563DDE69D13E3F7400380A1BADD548D649AE3CC804571173FFFDF75FB16CD9B2E52EFC34A9630CF084F29577FEED637B3D19997ADC497F4446E65A9CCBA95BD1EBF1DA3A703368538F673CDD0CFF5F07004761A3ED2457BD5E1F04DA0ECDCBCBCBB8E38E3BAE4E494949E5731E79FCC9FE97DE7A3F40F47A32AB5D495FEC6A3656E09C0E363CCE6FB50DEDAC29DCF1EAF1A601701AE9039EE4CAD54888CBAD6163E875D75D77D6FAF5EBD73DF7CF170D2FBEFE76A00B99CADDCDBA5256F3303267F0388DDB6A2DCB827B19C4B9EAEF23853B0D80294C2BDB4E72C5DBC839D93967EFDBB3A7432A31F37C3A56F11CCEF11C3B1EAEED51A9540A7F7F7F953355B8D3003803C246DB49AE00C50CAE58C6E75CB9EC02706870783F5EF732DD6B341A250FDC9C4A59D634004E537DC0696518D99327BAE223DEF27E9E54C953AC54F6A19DF90C6CCC6900380082B51A89F5010CEF0A20B8C0E0524F4F4F6357579701ECA03F1D3279D300F81EF4010C2EC1CA358A1250BD392424C474A61B7E1A001304021DFF6503F39922F09C59FE1FFCA75EC13BC1567C0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (7,1,'Crypto-router_(24)',0x89504E470D0A1A0A0000000D494844520000001800000017080600000011218F2D0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000047A4944415448C79D555D4C1C55143E77FE76F67F4110851A15D66D29155B6C09028235D1041FFCA1151AA535A68D3F2F3ED0DA072A2249638CE1AD10131F488DD4DAF6A5BE6852B14DA891861A3492942A942DCB82DDCE02BBB0ECFCCF78EE024D2196526E7232BB33F77CDF39E73BE75E62DB36AC77353434B0C5C5C54F949696BE9C48246E0E0E0E5EEEEAEA4AADE5C3AD17BCBDBD9D292A2A7AB2A6A6E6179EE7ED6030986759D6C7F8A9732D3F06D6BFB88282828FFAFBFBA71B1B1B770D0C0C9C22841C5EBDE9F31327376F88606A6ACA8EC7E38F4D4C4CCCB85C2E6D7878F8723299CC5ABD2F37DBF7CD8608A2D168706C6C2CA4AA6A7E7D7DFD8F82207C886489969696A32B005966631A20A0C3EBF56E451D805A616121E0FF74474747F0EE7DEC2A82756780DD666A9A06D4308BCC13173F393929AC00241B24307051E065F025020E5FB32B32601E9000C5AD1AB911EE6A3E72F47DA7D379079C9A699A045BD58DDDE5C28E228B1AB0F7D700A37C0AAD4951B526C3B20BE930E6E4E6C0C1F73EB06F4BD2C878387CFDB72B57629BF2F3DDB22CF7B32C1B40379D1AC7927B123C84B60FAD09F12A2C1C70C334E0FA8D71884971C8F27921E0F3108FC7132A0A85428AACA8A985859F5E797D8F74FEECCFF3D851060521AB342034BA93A7CF34BFBDB7FE539C503FA60CB3C93918BA3602A39128D0786CB04051B0E6F8CDE771811FCDB4CC8C1E0A3545956445FB5E53D2DF86B63E7DA2BEEEC58A1504CDC7DACFBB9DCEF28AF29D092147289E8848A81E0BA24380B4AC403AAD824D4C30751B6B8F80587F0EDB9112091C8B04CA3211761BC889E4DC71FC7DAAB3E3F87886E0C8279F5DF07ABC2F71820857B7FC6AF1052A04610B13FABB9C760F8D0234C30419C9545DC7773AD0125ABA0604BBC6E712C1324D24513224948C412F1CBAFD4C6565A5331E9BF2733C072E9187CDC9528609E731D3D235ABA2AC13A34C010A8D911B40CF5D8EE3709858602C1C029E8780D795C98696D6C67D0612D159109D2241411C2C15E78DD75EED7E34EF9119BF3F50F5B87B9383631C1020D3448D611E453FD8C3A24A40C9C1B2F1A063061428DBEF869C806F71467403A396419A9E415D6856149B50FDCE90E5FB80F6716D6DAD7B57C5735F3FB3A3EC4D973FCD19E6048A29C169F7BF7668B2C47A78BE80F5B9DD909BE5BB2330D5287C3302B762B78156C1210819437C4557B572B2FAC2A144070E1CDAF66C79D977DBB7EFD8268A0CCCF229F06A59908C4B326AC063C9385AEBB1F108FCF9D710E8A893B004CCF3AC959A9DBD284D45DEEAEBEB93C8BD6E34E4618EB5B6BE5B5555DD81875B40144570A2318458BD972EAADD3DE7B8545AE605C722B0039F862247E5F99943977A7B2FD84BC0DC1A879B8524DD7575753D7BF6367C555B5BB3DFEFF37248C46467E7B0B7E2713E530AACB76D1AE9D44CAC2B168DB48E8E8E6AF65D5173F73941E94615890EB6B5B57DF1C2EEDDA79FAFAE2EA3DF741416B331414FF7CF2567DF191A1A0ADBFF538E75DD074B8EFF20D1CE9E9E9E7D16902F594B67C842FAF0D53F7E3F4BB35DCBF9818CCA434FE5929212CFF249B096FD07E7378AC36FF5B9D50000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (8,1,'Crypto-router_(48)',0x89504E470D0A1A0A0000000D49484452000000300000002D0806000000E84AE8C20000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000C394944415468DECD59797014551AFFFA9A23C964323399841C431297641192800445401158964B1441C505FE40CBB5BC58DD558152AB40D42D4B74AB74B5D46555C492E5AA756545290F40969543399248C81072907BAECC7D4F1FFBBD9E193239882C90945DF5AA7B7A665EFF7EEFFB7DD76B902409867BE041BDF0C20B345E53D77A6E2AF180613B1E7EF8E1B4091326DC555A5A3A9FA2A86C87C371C1E974EEDF8BC7975F7E19B9DAF98795C0AA55AB0C4B972EFDB8A2A26221C330C0711C90737B7B7BA8A6A6E6DDFAFAFA575E7FFD75C7D53C831D2EF0EBD6ADD3CC9D3BF7D9ECECEC857BF6ECE16D365B43565656D3B871E3261A0C06935EAF7F223737F704FE74FBD53C871E2E02D1689441C9DC515B5B0B6D6D6D5FECD8B1E33748EACE03070ECCB6DBED6E9EE7598D46F3C05B6FBD55F88B24200802E7F1784C168B0570F5BF6F6969B190FBDBB76FEFEEECECFC421445F29B12249A3BD43C1FEDDAF3E0FD4FAD7F7244096CDEBC990B87C3A66030A846F084802BF57BB4407728142256D2E047F55073E975BA7B150CF7C088FA4020106011E06D66B399382CB8DDEE5FCF9933E73E0C1862595919DBD1D1918F3E00B1582CE3B22664A89175E243870ECDC788739FD7EBADA7695A8D60E7E2ED25281B151E62777737178944BC4AA592C6A8F4EAA64D9BEE5FBB76EDF94BCA841A6102083A53A7D34DC10164A5073B938116EAD9B76FDF34B4D690321A02FFF01010E207FCDC5028140C3A3AA065B82109D0F4C81240AD5F920086CF8BD728219900FE9EFB997C3BB20430FEF343014FB1008B7E22E1EFB9A17D78E42D104A021E0C787210E0E8CC11FC3D3BF482D0239EC8A297E303E8EC047818CFDC953A313D4C16189240D22A541C59E4E79C98A687D9071A1B9D9934EBBD1B857F371F13CEDC3C6D5AC38FC78F0F00DC5F4EA43A45120226348DC964526382E3713A5EEA572253C394071458222C8CF1E24A4EC92F426C2A49C4D507E9F64577DC0993AA2647EBEBEAC066B5282E65094200B1D2587294E07C0578B8B04EF2E2756CB808D07EBF7F06AEF44A9E17EE1125C89220D91D414AA7046034E62874B760B9C0F392DD66ED6C696AB160654AB22F939696C665666672E9E9E94A24D284055F35CE9D86BE101C3F7E3C354854BB6A0213B1F05A2108E272C45678112C409FF64E4413F4219278BE4E6F28D4646615C6F8F2483010FCC6D2DDFDE9D62DDBBE6D6D354759961510B888F5938084A2757575FCB5CAC4C53856E058894E368E2493DED5EE1D440A35F58D70E65C33E4E5E8E5BAA5B4C4040A8EED6391041DA542A95C945F58B8E899E79E76F2317E7784173F696BA83B823DB384ADA63478A4B9FC309A8DE3311CDFE368C6F1671CE3E2ABD9572ADE4000BE3A741476EEFD163C5E3FB02C0D1DDD362424C27F8E57CBD716BB132451EA4BA4F75A4F5A6606A4C3A631654D7FFBF0E397DEDEFCD1D8C14B89CB90D04B7F7963C15DF3E7BF54317E6CD5C0B0D8FBE0A6D60EF8EF896A60B1B7D56AD221148E80C7E707A33E0BAC0E27CA48029552013FD4D6439ED100E72F74C0D85F9980410BCA52480698544B8A5231DE7D9EA2A4E7DF7CEFFD5318AD3E1143E2F6356B1EB35C76356AB7DA73B76CDB51956BCC3EF6FB552B0A0C7ABD2911D321CAC7E0F00FA7A1BEA10546E51840939E066D9D56C8CC4883DC6C0304B139512995F23C36A71B8C3A2D64C5E28184C03DF5D339FC4F3A960E2CE418B280C5154D95563F594E224360C5D75E7EED8DFDA3F2F2F3863040EFAEC49F9E5D7F3F3AD4161C2807365A5A525C337BD68CCAC33F542BBDBE008C2EC8C3D56CC5582EC075A60268EDB2800A0165666440E3857630646981636870FBFDA0CDD480C3E1224B87A267C11F08811243A6DBEBC3CF24748A509C9F0B1CCB002FF0F29C2447C843485E0B29DF0922CFC7768ABCB82D43217DB561C3067E0081A79EDBF000A7507CC8C9041842029CFEA8408D0FC281595B19432C0796363D02B1730A74D66C0806C360E97142515E2EB85142515C712D5AA4A3DB0E1A3C938787C35150A915D0D3E385F43415048221B40207E1501438050D91280F05461DCA919643442FF8FE04523FF3768117768A0AEEFD775F79B106E54551E5E5E58A48389CC560DDCD30B4BC7743468E2E8369613B9931A76F93222E51B2E95BE1D88D7BE07CB4017B550D64A81054282CAFAEDF1F941D58AD5692D88FD6E02082A424A1370C129844371C47CB0BA046324DED1670B83C60757A0644AD3ED24A7C46B846AD3673B53E3DFD35794E0C5F14AEB6D1E77155C8C0E9DEA1442B280506D2BD3994C93C95FADAF98D5433E6207C7ECB3B10605A202D8D07B7C7276B5BA144C0D1982C91502802344325B6152560D0A222AEAE5AA5003F0227FE22E077247211C22266F0EC2CCDA009319504518646A3C16728C8BCD13E61D4E5B05F8845C25E9A495A213E267B27825688F7DE6A672EA53F38199EF971BAB8E4962761C59227A120DF8CA615211DADE10B04658990CF64DB44810F24A488B47C443E189DE26044C84857617010A0243F074619B5C9227020F8F8F64BBC2FC045953F13C6429C00F3DD77DF11569821FD0D1DAD2DDFABD5EA5C9DCE301A9B0D9A410BA8191564502A883012F430769028116E55F82873CB74686DBB5E2819DD4A4F2CDF86408BE042A71232D46A5942D14814F45A2DD8511A99E96A945A141B130A571F7D00BF2BC937823E3343262362AE20842F0E297EC6EC4F763864DFA0E4AE8C92F5484A0B24513367E6ADFF6413955F046F76555656BA6A4F9D6868BBD03CFB861BA7FC717451F15862912C4A0B55A20E82BC0F9AB806140525EBDD15CA6554EE80A4C960814A73508D93CD409DBD11461B4DD0D8D6091A04A1428B78D132066D06B8300A5D67CA033592483A67AAD6E3C91A9D39C683A3A707424880A5E33E295082EC4B9440818817483ADA270F903D1BB2A5B36CD9B266B3D9ECB0592CC7AE1F57BEBC6ACACD0F626196CD62EF318F9901C7259493549D88F11438DC39943F50097F55FF2475DF749A3A3BE608ACFA663D5A42054E8F170CFA4CE8B438609441072585A392912491D012A0E37A9117A5DB6A831EA753EEC248B24417EC5D75F94C2A594002BC4802D0A0BBD3E47E555515FA36ABC7EFCBA6CF98F9C4841B262D42A9A94898A5682F4AB00E7C610A9B0D1746211BBCCD0740640458D0BE58087A22CC688CF34D1D5D50906B80E2BC9C81311ECF31242324AEBB2C5668696D97F54E9C351909D9E439E51E46CC26A7D5F290B5ABEDF090DBEB84C8CC9933951E8F27D760304C9E336FC1BAF1E51555C43FE2090FB517F3A11EDB605FB403FCA20F4A5B276144D18AD6EE4E6172E5588EE85B069BD2D4A4C678BBA307EACC66F0622EE905CCF6019D24819D8FCFDAD9B6ABA3B5F93DAD566B46FF0D5CD6FB818D1B37D2BB77EF4E43072F282FAFBC63D69C394F1415179BE249AF77707DAE19E8ECEE8A7475592886E514FD93940F33F6C9EA5A68EFEC22BDF1A08093D7A8D498BBC77ED8DAD6F2263AF76997CB656B6C6C8C4AC9573E977BA07F3067CF9ED5AA54AAE2790B163C74EBCC592B8D866C0D9BC8DEDC206408883367CE84AC3D4E620D368211E8444D0DD4D4D6C9F21F003895044D4B41BFF79CBDA3FD9D4824F82D46A48EE5CB9707B09410AFF80D0D9115764D1C9230A04F8C5F76DFEFD64C993A753676592C77096B105002CF8B7FDFB235B4F3B3BD2A5415C324A422036507AE3A1F0DDB7D3DB66D986077A185CEE3B3DC2819A17FBFCC5EC18E0399208A3CAC53A74E757FBCF5A3C6E3C78EDEB6F49E7BD79597575C1F0741F71B0CC9BE34D64274381A93C153C98892088D4222D288021FF4FADCFB431EE707E833D5A8752B028F48975869FA2AB64EC423478E84E6CF9FDF867AFC74E386F5776FD9F2C1CB769BCD4132269D529210C044E75222548A423C9B261397200AC44218BD9CA79C5D17D684BDAE67F13F07172F5EDC7EF0E0C1B034844CAED94BBE59B366B1C160508BF35DF7F8E37F78EAB7F3E62EC9D2662A935222ABFBE22B9B423B3EFB42DD4FF71225C4DA85906707D6CC7B519AE730CA390793CBB0BFA54CFA0702C82E2B2BAB7AE4D1479F9F3E6DDA4D1CC7C9F52821F08F4F3F575FD43A25B9693EFC1512D88D163A85F72C478F1E0D4BFF07A86BBA379AE21F1604B47FED9A35750B172E5CB472E5CAA74B4B4B4793BC29FF4EE0238C18394109D1ED78E330326F2D2A2AF2EFDAB54BF845BD272661B7B9B93903C914AE5EBDFA91C6D6F6DBFFB5676F5021F1FF4697F81A0999D1077A4E9E3CC94B570864D8DFD427B239790FA04329E5E3F3B2F0763BFA4537CA2592A8C17E996FEA07ABAF309E3346A33176257219ECF81F3D0880D812A4D7290000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (9,1,'Crypto-router_(64)',0x89504E470D0A1A0A0000000D49484452000000400000003C0806000000D689BC640000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000132D4944415468DEDD5B09701367967EADD67DF81096EFDBC6C6273E201C018F434E8E21243B2159488A1C9B996442364C48323BC9EC26EC4CCDD4D6EE4C656633BB6CB2D949A5865C540E42428024600E87C336D8C6B7655BB625CBB26CC9D66D49DDBDEF6F49B66C8C6320800BC18FBA5BAD56BFEFFFDEF7BED7DD501CC7C17C796DDEBC99369BCD225CF41F3D7AD47F3D7E93BAD10050F87AE081074452A954949393532C168BB36B6A6A6A07F12597CBBD870E1D72DED400ECD8B1236EE9D2A53B351A4DE5A2458B1663D0E2A1A1214F5F5F9F115F874F9E3CF9AFDDDDDD43D78A11C21B19FCF6EDDBD32A2A2ADE2D2A2AAA904824E076BB617C7C1C944AA5343F3F3F233A3AFA672CCB16C6C6C63E89BBB7DE540C78FEF9E7D5656565AF9794943CD2D5D505F5F5F50C9E8B363232D294989898B170E1C214CC0EE8E8E880D1D1D1F79292929EDCB06183EB873E0FC18D9A7D81401085AFB524C023478E80C160787BF7EEDDE59F7FFEF9EDEFBCF3CEAA868686432E970B643219D97D6D737373D64D9302BB76ED92C7C7C7DF25140A631A1B1BC16EB7EB51EC7E8BBA1712BCBE9D3B77BE8200ADC27D14C88C68DC762F8E0B370B03A448EF24A43674767602CEB405D5DF1EBE0302D2AED7EB6B8826041993F5E69B6FCAE772F04FF61F2AFDE3FFBCFBF1E6A75F7A6D5E028081B3F8A624000C0C0C10E1B37BF115BECFF0F030879F8F12614421244383FB29E6727CB1449296181F7BBF4040DF332F5300679BB15AAD31168B05C8C0D91D45207CE1FBD034CDD96CB631C200866100D360018221BA0C8301E4CFBC04E0C2850BF7A9D5EAF564D9E974824AA55AB966CD9AD377DC71078B8132B8994553C4A130666049E401F0F97C29582D56A340EE7BF4D1473D73889F1FF30E8075EBD645605024370D18D8009A1F52875D7EBF9FC62C208227437D2029C222037CADADAD1674893459CFCBCBFBDDC8C8881697EBBE1700FC23A0E6210350D5FD389468723270E661B6111111C1BF9352F8D65B6FF5A32E14A2608AE768B1E76719C4D9F4A3A03141619B7510EA9341824186B0C417E076D19C011008E6A50690E0B95070E1633630303538A21718D81C01989B065CF732F8D1471F11CBCBCC36E3A1E56900500400344D734E018A9AA755800DBC66A57E3820C13278990C98C7659068C0E5D09F0CF40AE0F1F0D56FCE0C105082F99702E435530A4C07633A285839A86060736300CCAD0ADC28002E3B05D03D86D8239EB3080AE6290057980254B02912FD9022785D0068EFEDCD68EBECDEA0D3E948174873010ACC9A02D3874824E2F50AFD003986809A437437B40A188DC698719FEF2196E1FE5EC0B22B198E05A7C73776B6AEEE8BF7FFB627C260D07FAF010A0704679EA73EAEAB939393A3B049F26280A4836482FDC38DBF208241CB0522D126C6CF6C6558EE2E9C0321071CC97908BC43A4582CDDFAF0B647017D3ED3DADAC2EAFB7A45DF9702C132280902A0C1C6280901716467673BB0323810080F37C3B5BD60D65C73008418CC9D3E96DD2A124B36E1092A48A430713A5C60F06FC1657C29140ABAB4B48C2E2E5E4CAE0F58BBB4DA419DAE875CFD10C9E5723284D80388703F21197ABD9EC3C04F9B4CA6A32888524C053F06EF9DBD125C432B8C27B31CCF612BC3B00F62481A0AFF61B9D06C034CCC3C3F82EB105C9EB21D40A9524517162F8ECE2B282466E79C5EDFFFC9BE8FF77E8B9DE05858134521EDC7699AF623C85ED404AFDBEDB66383E4E32E7165F75AB4C3B948C9ADF87B5BD0CE674D060A933487A901FAFC0CB4747643527C2CC8A592C9CFA68034F17D4A229594A76764966FFFC50BBF1CF77ABFB6DB6C1F7EF2E1FE8367CF7EEB09A60087C1B3128984E9EFEFF7CF96FF821F0880041C0FE1D88AA39C2F6313391D38F910CDC3677774CC0E276AEBA1B55307F90B33F95CEEE937C292E24510A1904370E7A9A911CA90C041C5429A5E8F2DF1FA471E7F686CCBB6CD1FFB7DBEF7BEDCF771D5DEBD7BD9A09FE0BED70C5C21001138EE0F06BDE6A272C9859DEC44E081EDDA9E7E3872AA16DC9E71585A9C07910A057C77BE09A2544A589CBF9007C46AB343E5B252DC9DBD38352E6251403CF1DFC7714A1FBF67E3FD863BD76F7CDFC7F9F7E06EF557EB06A7005055555D525979EBCBB8F863D2BA5FC2C54DCB690EBC5E1F54D73540756D0324C569E0D6F262A47D0F1C3C761A0A7232615DE50A686CEF82FAE64E285E9409524C85BFED3B0CEA4815AC282B04BFCF0F4A85F4921AC185B103B727E1DB0B142B78E12F6FFDB5193DF51EFCFA7B3B9F79A2F74A00987267E8D9175F792D2252B5F1A9C71E51A624252D9C297826AC4E9BCC16F8FAC419E8ECE9456AE74354840A4ED69C07EB9803562E290289580275175A402997F38177F51AA0B1AD1BB2521320353116DA902DDE711FE46424C3C8980D92340B203A22700D9099E20782CBECB4F5C9FDC8F58593AC9FD9E3A1FC7BCB0B4A2B388AFAF4F0F1D367FEF337BF5C3E6727483A2E97CB5DFAE7DD6F67FEE57FDF39EE74BA2C3350009ADAB4F0FADBEFC3FBFB0E426E660ADC525208C7CF9C87330D4D5081D45EBA380FCE37B583C53A0AAB9696829FF1C381A3A7402E9322F5178305F5A1BB7F1072D353D1E38BA0BE550B328904FA0686E0445D13385C1E9E55D304725236264474822D3891B01A856137CD50C60BCD4DBFB25A2C44020497C5805FFCEAD5D7685AF02A961AE08790B62D595CDCB2E19E3B97A09A0B8F7E57C3D33C3B3D859FD153E79AA0014FFE96927CC8CF4A83D3F52D306C198565B88E0E904F0BA9440C6585B9601E1985B62E1DCE7E1244462AA1A1458BBF21809CF464E8C7C0C7EC4E484B8E455659611497D393E2C0EE74436E46224FE47016B0C1657FC82992F519D8E16749D7E97FD7C7327B2204DCD1575F7D959D15809DAFEC9A028030F8EE6759DBA8CB2FFFF13D95C2C6D89350653A0619DFAD84B54B5683582482E367CF83026777596921CEAC01EA1ADB90D629909B958AB3DB89C15B61F1A28530EE1DE7014B40AAA7246850277AF9EA909E1C8FDF1BC0CF7D909A1007FD8326BE97D7A823A1CF38043969893C580AA918F7E7A65AE54BA6CAB4ED2C3380EFEFFBFCFE3DFFFD87DF9FBF0800D2603CFFF26BBBB0E7F87578F0A161F5D170AEE800A75F7E86B2459B41EE5341D981FB60BDEF2718683A9CAA6D04FDA01941C80795520EA7EA2E008D295582CAAF331841AB33407E761A286532A8C71422A530393E065AB43AFC6D01A4E28C77A34620EB2021269A4F11A207D1910A68EFD68352298305B8EE1EF7A256445FAE464C6C2780CB6452FD7FFCE65F52263480049F9B9BABF079C723890E9013174C1B1A951CBC0C50B77DF373883D5BC43DD8F81CB72AEF16D85DFACFF027DBBF4149490E2C2F2F809A8656BE14AE2C2F22EE0D4ED65E80B81835942210EDDD7D60C61429CCCDE44B61B77E1016A20E102A13F03271A649EE5B5123F2903D169B0DFA4D23B84F22389C1E18B28C21703268E936F03A112A135C982F996EB9B930BF4126551D1D05D15191C99366095FE5E5E552A55299EE7639D3A7044E07DE092042F0828811838893C298D54F197BBCD47B9EB7397D66131CFBD11E7859F133F0FABD7C7D379A47A0A6B1154A0B7220332501CE9C6BE66787ACEB0606C180B42ECECD06A7CB0DFD4613069BC65703D390058A72D2F9E03A757AC84D4B066CACA077C00C7999492014D06018B242166A0549878912195E26277C4458F0A82252DC5FA554F02010164CF1015EAF57820D468CCF372EA7C383A7A60291E7CC011176A5B8067E8A8134ED4A8A3529611957CE6C8D15D3A9CB9FC41E211E34312FC389B32E387AAA0ECA8B1641715E36D435B7434652022CC5F573CD1DB89F1FD3238B2F8BBD864128C9CB84E6AE3EF40B3D287CC918F41096493D2CCA4802130A6857BF09B252E24086558399EC10BFA7D708044AD24A80E011074B916DECA43F20B79CA8FCFC7C8EDC84340D99FA44025A16A956A78945C489A216082775208E8D85282E1ACE2AAB21C59B85CE9D855EA116D68E5508348A2FB8B4640715A3EE447A77E10CDD032A05875AD08DFE40090B5114491518F7FB70F63371E6CD6019B563E0D958166DA0ED1DE02B0209AEAB6F10838D07894484FA3184E66A0182178BE722E08398DA2EE33A7194E4D2393BF919366BE04590F96BC354C012052E9004962B57AFDCC50340907AECB1C7186C2E5C2A85C23C3C646A1CE8D335CB95AAF86875541C4D0BA9F0AA2016902F49812587C1BF46512F2C1B2F01A9404FE9FA13A1B67133239748A9F2C5BFA58AF20FE0C967C2B1D31436457E28CBCF813E8309063045CAB1343A30052E74F44036E63E52105ABA7A21158531265A051D2888C429E6A3CF902210BC6DC6000381069783B31C083C10BCD7E7059BC3C1034005CF910AF9426AB245B86DF5ADBB26449034153A9D6EBCA6A6C68CE9D06CB7DBBF3875FCC80BC7BF3DFC7BAB65443F298C144FA50ADF0A88A3A24018BC4B859FE22CD0401A33873781F6F9CE52066329B9F487BAD00BA57747835ED58D46A9051D630EC42F88C67EE11CA891197918607DD01394176483B6CF88C08CC36AB4C8297131171BA04B74920460339A1FF3B0057C5EEF0420E12C095F9FD107042B025559594923080A9CF538ECF9738ACBCA1F2C295D72AF2A2242454E34C4063F86FEEF8ADFC1CF6D8F407CD4215CF3C280751364C5BF01C3B6D5782C29F781B20F6A2B3EE32FE12D6B590FEA8FCAA0387D213FE34417521362213176019C47109472191464A7F2604F96B4D9EB3B1FB87998779DFCED40727E023A20DEBC76D181C9A383934807D64F1D3D2C228FDE0967F0FB04113F9EB0BDA0A0C0AD5028461AEA6AFBB56DAD8756AEAE7C625141C12A343F42F203323CD83F312F0125B5E3C9C9F1C710794E88C70830C3E717510DDE1658FFDD76EE44F65E4AEA50C2AAB222A8A9ED8418343995B794C0B9960E5E0B962DCE4581134F08DCF48E73F2E2D26459B358ADA01F30920BA5C18069D2AB23D9D900F5598A5F6683CB2C859F110600AF8EE4E2AA5338DBB57B52207027EB8A152B5C6EB77BE89B4307B44D4D0DAB6E5B73C73FA4A567E4921F550A94408B228112FC147FE01B648602CF4D183C5F21EA851054860C4A335A0EA9ADB7B22D7E3D55B9BC846A42B5AF462BBD14B5408DD63834BB53949D9B49D939B0399DD0D9D50D0EB4CCA1990DE438AF4C930113A50A6E0881E272D8DB070CFA5DC8707AC614B8C4E565F238ABA0BDBD5D8A416B7035ABB4BCFCDED5956BB66862340BC21D23490D2FD38BB96F058F4F087F848FA0C2762F9C971D87CCB3B7607B9CCD757676B045B9E974727CEC0CB49EB0AE17D1DFE5F6406B7B070C1807A7519B0ED27D2ACDC3D3C1EFF78E990C7D7BFBBBBB3EC092DF3E323262D66AB5DECB7A5032689A84E4C227061B8F23F7EE75EB1F5FBA74D9DD728542229C6CA2826008603A38A16593C9E4350C1839A94C2E096F6C480AB0D380184745EFE8D0426BA79657FCC9FC0E0618CAEF702082C12365BCD661D3B1FEEECEBF62AC17B0DC1B1000475D5D1DB99CC65DD193A2C43A6767678B542A5504DADD24B55ABD64E37DF73F5550585C261262D914064E44480B215C34E969836C6B6D6BF38C5847D1E4098533895E8FAE0F6AEA1BC0E5744DCE6CB8C085013185050201E7B48D35197B7BFECFE3719EC6DFD3A19E8D56555579B9904382AB7C54960081FA20F1783CD108447A7149C95DEBD66F782225352D3910F0ECC18796C9031338231E9BD32D61584E4002370F0FC3F1EA336034992E9EE9694A3F55F591EEE39E8161A3FE03876DF4101EBFD3E9749A9B9B9BDD81CB995303BEEA678543FA60369B652E974B83C7CBDAB071E3D6DB6EBFE327D15151CA9900B8D4BADD6E63BE395AE5FDF0B32F85FD06A368469ACFC2028E611C76EBF0C151F3E05E5C6F994EF76B7263247860869414D48771A4AE75DFA79F1A8E57551DD8F2F0C34F2F5BB6BC422012D182193ACCE99DA75ABD80D6C4C6D23DBDFD221230FFAC5850DD0322CECB7BC0D905959EFF80637D0E87EDACCD3CB407995F8F60F610BAD7D6D64EA1FB35BD351604C28740D8501FDCB83AFC5F6FBCD175E2D8B1D50F6DD9F2745E5E7EEEA55AEDC941F1F1F0DD1A1516F04540841E8464399FDBA1755A863FC046AE3A4077D710F6366E72E99C9B03BDAFC9E3F2C13BB702648404B5418D4625FDDE4D9BFE6ED3A6FB1E898F8F5F30732A0440F8FA489577C7CBAF892F95DFA174C0BA661E778C7EC978DD87318626A4BA016DBC7D36BA5FB7BBC36169E1465B3D888DC9D8BECF3E331EFCEAABC34F3FF3CC4F6F5F73FB5A95522999CE80B0E7078286860A73754116E09CFB5CCE938CDBF939FE4C3DEEDB1D19196999AEEE371480196CB503D9E041F765F9F3EBAFF7EDDFB7EFD3EDDB9FFDC7254B969491071FA6DFC5255F236D2FB061F9CE01C379DDCD3EB77D1F6EA9C1C0DB30CF074522911B8367B82BA4F27579482A4C1FC69011EEB6B636F38E1DCF356FD8B061EDB66DDB9ECACCCC4C9AE12992100B3881CFAB07BFE720769BD5780CF27F06FA9055B6EAEA6A1F7795397C5D9F122314C500C82DF0116484E3ABAFBE1ADABF7FFFF19D3B776E43301E442A2B900D1301512C332AE63C27F1BD0ABF7B1EBF4B9E131E269EE14AE87EDD4470AE4249DA6E6CB2E4389BB1090909852FBEF8E2B35E962B7BEEA55F8B45E06F1071FE2ADCED1C96D6163CCF81A8A828C7D5D07D5E01100E04B6DDA47F56CA64B2C4B4B4B4E53A9D4E899B47F0DC3A50237A67B2B0370D00E1B61A19211E1B1B53A1B0299115C4548D3536367A66B2B0371D0061FE81A48640A3D17073353357F3FA7F49685BF974DCCEF90000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (10,1,'Crypto-router_(96)',0x89504E470D0A1A0A0000000D49484452000000600000005B08060000008C2580560000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000225E4944415478DAED5D07785465BAFEA6A74C7AEFBD878434123AA22E8A050B20AB28EAEA457DD4A58A8AC8E2AA5C5DBDEAA2AE5E752DA082C86557D0BB0A5C4A80908490C6A4F75E276D32BDDCF73F249884992484E86A6478FEE764CECC9C39E77BBFEF7DDFEF3FE70C3C93C944571FFFBE076F2A02C0E3F1040B162CE06118B76EDD6ABC0AC0CFF0B8E69A6B84C1C1C1D6BEBEBE7E8E8E8EB7E874BA20A3D1A8C2DFA5858585BBDE7DF75D258ED57815809FE071FBEDB73B2E5CB8F0497B7BFBFBFDF1001002765C7ABD9E3A3A3A282727A7B7BBBBBBD2CECEEE493C4E5E0560121F1B366C080C0F0FDF9F9A9A3ADDCFCF8FD8F188C5E2412A225401190C0692CBE574E0C0018D9595D5078F3CF2C81357019884C7EAD5AB1D6263638FCD9F3F7FBAA7A7278176B88C6741974824846093542A258140C0BDBFB3B39376EDDA65F2F1F179099FDD7215802B786CDBB68DEFE6E67670E6CC99376249D5D5D5949E9E4E3D3D3D646B6B6B605580E00BC2C2C228343494038455C289132718481AA552E9B779F3E6F6AB004CCCE5F010BCB4A8A8A8A36969691296D91F7CF001CB7425787E1F02BCA3B5B5B52D2828C81BC1DFE2EAEAFABBE8E8680134829A9B9BE9D0A143E4EEEEBEEF89279E587A1580093C962F5F2E484949D9336FDEBC3B91ED8C56A8B4B4D4E0E1E1B1EEE4C993EF9D3F7F5E3BF8DEE4E464D16DB7DDF60C84791B40E034E2E0C183646363A3CCCCCCB4FFEAABAF0C57019800FD383838D4C2E7FBC2DDD0962D5B08D95EBE73E7CE4873561305237CFDF5D7F35131D1CECECE949D9D4D5AAD9651D2031B376EFCE42A00974F41FCBFFCE52FDDB366CDB2CBCDCDE5E8273131F15F1F7FFCF1629385037AF6D9671F831EBC834AE0F4A2BDBD9DF87CFED7EBD7AF5F761580CB7C3CF4D043EEF1F1F17531313192DDBB7753464606A39A9D9F7CF2C92A4B00DC71C71D2EB0AA2D090909C2AEAE2EAAADAD65AB0B366DDA34DD740541D8FBEDA1075ADAE44F9555D708EA1BDBFEF18F8F5E7F6ACA03F0F8E38F2F9C3E7DFA112F2F2F7AF3CD37A9B1B191929292FE022D78DA52B7CBAA0654D5814A71620D1AAB0250506B484888CFB265CB26AC03070F1FC377F2B69F2D28A6DCE2D23DDF7CF8C68ADF02006B20C26F300106B7734D565C5CDC9AAFBFFEFAAF96B2993927F07D0D80F3170A85545353C3744005101CB76EDDAABD5200720A4BE85C51C96F0200DE638F3DF65A4040C03AD6607DF4D147A456AB69DAB469377DF3CD37DF8DA61BEBD6ADCB43E3368DF508CC8EE2733A80E8B076ED5AD5950270EE7C09E5C87E0300C0823AA0C33D82E62B894D35ECD9B387EB78BDBDBD3F426677E12D06AC37322A1A5C6218D8710606063E0CDDF063EF67228CCED9E0E8E8E8F4D4534FF55D3900A500A0786A03B078F1E23BC1DF1BE0E1A72388560C80B2B232B2B6B6269148C45C8DC5CFB2E36416D4DFDF9FF5001C6DB175D0820A74C9C7E7CE9DFBC6860D1B6413052057564A67CF4F71006EBFFDF6DDE86697817ABA91BD6A70B84EA150B0891E761006A3D16802A79BB014E1B8C400C8846118789D558209C1960030E025E2A9F0F0F5F56D069D25639B4B4051DF4C14803C5919659F2F9AF200EC4416AF6414C2B27E700C3E67DC3E783C6C1D1B6C0E68E4FB06C7175F7CD1060CDC0736BF74F3E6CDFB260C401100289CE200DC76DB6D9F3A3939DD672EA0964019EDBD7FFFFBDF5BEAEAEA3C590C30EE7EF1C517BF9C2800F945E59455289BF2007C0CD1BC7FBC811F0B14F40D2D3299CC7360F3AB5E7DF5D5CF260C40310028904D790AFAC8CECEEEC18966FCC8E77BF7EE6DCDCCCCF418D8FCC36FBDF5D6871305A0A0A482B2F38BF6FCE3C3D7A72E004B962CF91022FC87C9AA00F40D6D870F1F761F70498FBDFFFEFB7F9B2800850020EB3700C07F4BA5D287AF24F043FF3E72E44827BA6797010D58F3E9A79FBE3561004A2BB90AD8FFC16B5317805B6FBDF53D74AEAB279AF123DF7BEAD4A92E08B1238B03C6C62FBFFCF2B58902701E0064FD060078074DD463935501595959BD3B76EC9060D31276926DDFBE7D2F4F1400595915654284F7BF3FB501780B017CF24A033FF83C3F3F5FF9CA2BAFB046CD0E63DB810307FE7425006403807D531C80D7D058AD9F8C1E808DA2A222ED4B2FBDD48B4DBBA2025E86286F9E280045E5D59C067CFDFEAB5317805B6EB9653BBADDA727AB02CACBCB0D2FBCF0421B36ED8538BC76F0E0C18D570440010078EFD5295D012F0885C22D93D103B0C14ECA6CDDBAB50E9BF6C7780B14B466A2001457D47022FCF57BAF4C5D006EBEF9E62D00E085C9E801D8F38686067642BF1231080105FD0D14F4D8440128A9AC81080380775F99D214F40C9FCF7F79B22A809D9479EEB9E74A8D466304E2F02128E8E1890350CB89F05753050008A458241245878585E5B346959D52BCE9A69B3660F1EA644DC6B10BBA9E7EFAE96200108538ECFCF6DB6F1F1898BA368DF744FD2000A555B574365FB667F7AF1C005E655DDD2CD21BEF455096194D26672CEBF47AE3E75D9DADBBB76FDF7E0328E895A153CC5722C4EC9AA24D9B3695180C86487CCFBEECECECFBB16D83838383412693B193FBC6B1C01804A0ACAA8E7341BBDFDDFEEB03A0A9A929C26032AD34188CF7188D26765D3F194D46EE22DB0BC3C42DBBBAE44DA7D2D3BD4B4A8AC968305C7133A6502868E3C68DE500204CAFD77F8FBE603500D0E8F0D068345ABC4F0F9DD061170D9640B80840F50000EFFC4A00686D6D7527E2AFD01B0D2BB10F293F067B44E0CD00C12EB2ADAEAAA28AF2326A6D69E64E474EA402542A15AD5FBFBE0ADB0B46CC4F151414FC11FBA2469569D8920DBCA6C2BE6A2C8130084079753D07C097EFBCFCCB0500A26723B2B25A82EF5C6934187F87600A2F09F825D97F61BD89051E835DF66318F25CA7D5182B2B2A5455959586FE7E8595B39393D8C9C9695C7AC0AE0F5ABB766D3596416AB5FA7F403B6F0A0402167C167015F4A61F0F4557579712CFF5A3015051534F5979BF4C00F8388885C8A49508DC9D08A87458704D26F3996F0188D12A44AD52F75456565417CBCEABE59D1D46045388EA604380AC16A28913B0C19E632964AF83F75BDADADAFE899EE0281C960EDBD1B10A600060099652F4B7B7B7ABC7AA808A9A063A0B17F4F98E5F080028E97864D6BD08FAEF7150DEC303FA63202F6636D6FD98E117D60F7DDFF0D74C968119F80EB54653D1DCD8F8DD911F0EFD70FA747A87995D64CE0A52623020F0D855BD0180E8F1375BA5635AD0D7D7A70C080850E7E4E4E8C7D280CADA0650D0BF1F005F1C0884D4B8124189B514F47165FF957C76B86E18351A75865C2EFFFABB7FEEFF2E373797BB06885D3181801B519D2604DD3470058509596FECEDED353201F6F2F2D28D16FC6100D435721AF0F95F5FFCD901B0C758CAF1BAC9B40099CB3358C86C73C1BC98D14382C6042DBFA49262C38228D0D7737420CC077D045817D7A9902007B46ACD17278F1F3974F2E4493D026D4290B903494A4A223B3B3BD3B163C788865CCA329E3EA06A00805D3F1300228C1B3056B2291A0C2BD3B08C348DCEDFA64B8304CA008796507A561E75F5F651F2B4484A4D88A1DEBE7E6AEBECA298B04002695F6EF68FE6ACDAC13FBB41443B57AEB8F3EC306EBA8CA00C02505DDFC489F0AEBFFEF92705200DE35E8CE56C0A77C44E9BCFEC3182D221EFA113D9B9743AA790ECA436343B318EE2A242E97C59159D3E5B404D6D1DA8022F9A9B124F5E6ECEA4D5E9C9C64A3C91ECB79810A8CE52838976190C9ACF1FBAF7DEEA894C453000CE0280CF7E0200420732FD9E81BFCD3EC6ED5E065E2BA9ACA3A3A7CF52616905B23B98E624C7939BB3239D3A9B4F67F264846E88A6478551EAF468E2E15F465E211596545168802F5D3F2799BB0555C0E70D007FE9F75EA4BE8164189AFD3FD2E3704BCB2E23C5FB4EE12D3B0D6AFEDE471FBDBB6BBC00D434347322FCD99B930300CBEEBB06029F369E0D8D2DA446D268749471AE908E9CCAE6686656D2342EF05DBDBD74FC4C2EE5175790839D2DCD4C88A5A4D808AA6B6EA15339E7A9B1B58392A2C3404B11A4C236B2F28B5021D5E4898AB8F5DA592416092796FDA3540E3CA7D664301EC4FA5D5D2E76DF6E5DB64C3B1A00B500206BB20078FEE55777DD75DB92D898E888F8F16CC452160EAEEB9077D3E15359743C33979C1DECE89A9989C8EE08CA2B2EA56319E7A8AEA99542027C680E6826D4DF9BCE169622F0855CE6A72544535C6408DED302F08A88B90D2F77174A8A09237F6F0F9295D5D0F9F26A4A898BC467BD860BFFC45C93B9F775E1F35F194CC69D1B1F7FE49459001A5B3811FEF48D6D570EC0134F6D3E066B36DFC3CD3D63F5032B035C9C9DBCC706E0D20328AEA8A67F1DCF2076E16A426C38029F4CAE4E0E74ECCC394E6C5510DEE4B828F07B1C8985223A8175D905C5E4E7E541B39362C90F016697FC659C9351674F0F458504520AAA804DC69D2D2CE6AA20D0C79312A243492814D0395939F52B5534373996ACAD2493E19A2EFDACC1586D301976F148BFEB9975EBCA0601A803006701C0C79301C0939BB61C1300003E38962FE0ABE2636232EFBA7349AA4828B4B6483F0320A8355A3A95954BFF8BC077F7F4D1829949DCE89077D1A1F42C62779238486D696E6A02CD4A8CA5C696363A9A914B65D5B59488E03211168B4574E6DC794E0BF8E07AE6881262C3480EC1CEC82BA286E6369A1611CC6944574F2F65A362EAB19D30E8435C4410F52AFAA9A8A29642504D81DEEE93E59A2E9D93321AB35C5C9C5ABCBC7D6F6D6E9343848B01C0D62B0760ED33CF1FE3F1008080CF5D73CF0682DF74E3750B6B67A526CF3407407BA79CFE752C0341CE240F3717BA7E6E2AC7E32CE0DF9FC8A4AABA060A0FF24715245114FCFDD98222043E87FA556A646C1CCD981E4B9D5D7044594C0BCAE1785C39FA890C0E4030ABB92A60C29C8C4A8AC6E72BB8CEB3840B36A3A8E8D00068462BE5CA2AB87D8A03408E7636945F5A45D61231C00AE128ED8A5D9399CFB2180AC562D8E5DE0C919BEDB5FF751977DC9807E0D9AD1C05B1C00BF83F82C086B5B555F15D772CB10E0EF00FE44E9C94578107D311E8622E888BE6A791B3A33D1D41B61F86D8F6AB549CA82E9C9D4236D6D6087A36A567E6919BAB132D484DA45804AA0854722CF31C55D73723B3436866620CB938D85326C4361319CFB6970637E4EBE946B9A0A46C80CA7A82A498700AF1F326596535E5155590BD548A40079308AFE516575253BB9C22827C28D8CF8B2A6B9BA8073D45EAB470125D14ED49EBB687BEA7D76030EDC372A7BDD8747CACDF2B320BC0FACDDB00006FFED0C00F0342C037898482A68E3EBD57674F2F7FD1BC99742D027C5479988A8E3753417A3DDC8C945B376F4602B5B4777295910B2D88879B59882A700700CCFBB3C06BD45A647B2C37546A15A567E7739D7014B23F155520417665828EF2107C0F7C8E09AE9BB3039D2B2CA30264B80F8049840EB00A398B751DDDBD14838A08823E94A0AB2EAF6D247F4F5754933F35B4B5C35575522280922221C60384B979AA41FB6AAE7286CC6535180DA6CFF53CD3CEB7FFF305D9B801D8F01C001008CC5400EF2218A0283A5FD30A1B394DD335AB42FCA5F43D9EDCB381047A112D6EB99B9EB1DD46C5F90D1CFDB477C83920E6A725924EAFE7FCFF49F87D37672768413CC7E5E535F5740295C1F83D05C2CCFC7F37ACEA4980548A9E2102C14B8D8FE2BEFB4C5E3195D5D481D27C11F830EA44C0B30B4AA9AF5FC96943A08F079C510D74A59E02F03703A3A9AD930AE198980B8B0DF5E7EE942FAA6AC0732985C13D8D6C24275737B8F7E4311765326ABE7CFF8D379ACD02C0CEBB2E5BB68CEF1F117B14253E973F827E46D251738F86028343E8F58027C82540646A0FA8E25D9CAB505A53E2FEA5749FCBFD08662CD53436D30FA8820264713C023E2F753A32D79DF3F427D003B0AC990337341D995C5EDD40E900A805414B8A8D042011D4D5A7A00CF404F54D6DA8A2508ED3D9DF59D00196F90931A1E487EDE597545029021BE4EB49B1E181DC36F24BABC9CED61ABA10C835700578DE0E410F053505F97A505D4B07F4A7972202BD38BD9854D734E4B3ECBB1DECED0D2F6D795A780900EC36CE989818A1542AB59A7BFDE2EF8542619A19EAB9B0E45D58EAF922B27174A76DDE7FA0453D2B48EFD063CA9B7E90E7DAEB4BAB748FD26D6EB7D38ED6B7E85C4321397F3B8DE625247181678F6308FAA99C02F286A79F37633A37E9C6E8E364761EE9B1B3331362B8CAA8AA6FE47A02C6DF297043B1E89A4BE198CE0038B61F4C947DB08D1C886F49551D9C8F17070E7325E720E656A0AFE991C164035B9A5F520DB7D40E6A72A7F0401F6A87E8CB2AEAB963890CF426177B5BAA696EC76744B0CB7613CB7E3395C3426C05EB6C8F26532010D2B3EB9FE40D0380053F343454E4E0E06087E76E0B6EB879B7959575DC05CA115CA41E7355C097BAD276EF35745DDF1DDCF4E119E90FB4A6E9797D41C221C1FF05EFE569EC1403F3D441F440ED06927F27E15C4E7C542828290181B1E1827E1A1DB20B7A8439E88EC34137AC77E09A31EC6A5A02D6414C59A7CC44D9DACA8AA323771727CA829B2AA9ACA750043411816FEBEC864897E14079DC7327500EAB800A88B02F7480D14F1F7A8582D21A52838622F1395F0F6700D34915F5ADE4E9E240019E2EDCF78E6F5271F4EC67F732DB585B9190BB8B93C725CDE60D7F1C0E00FBC1BBEEEE6E2902EA851136E7DA456FD84AED82CD077D0428220928E8455AD0772BE9797ACAB23D428FB46FA517021EA2248F2863797816DF4417AA4CA8B2A215A736D27D7EF772F6F1FF4EE710BBBD93F13BAB027727473A0DB1CD406530E7331B60F8329A427396955FCCF1775A7C34393BDBA14F28A2E2CA0B3A900C37C4B239B3A0843B5FCCBA644F8835D30159792D79B838521CE88865675E4915C9D19FB00A08863E302A2AAAAA8783B2811678C26E0B26E51C058B2B735B62049EC7E35F0C3E0F31DBB271CD8F00B001EA817313388A44A2207C306EEE75376CB5B777F0E18FA41FDE104086F4089F7BEDA2484D3269F91ACAB1394E0F776CA68DBECB696BD34794E976C0D41092470BD437F21E73584B2AF9F7646BF337AAACB3A6AAEA0729257E36B6C5E37480053A18B67236B4C0C9DE8E9B376281F7F170E3ACA9BDAD0D9DCE3D0FEB5B4B9121FE5C57CC1AB1D3B945A45269383A0A04A7B3D7F3E0A2ECD1F025A00AD8EC692E025F0F816714C5B2BE4FA9A642BC8F05202AD8178E4832EE066C2C20D8462F24AD80E3FDC1C41D04E2F9A7D60DAF00F6A34662B1D84EAD56FB0188E8889869BF0F0C0D5F0440C416A967C87A8D50432D36FDD420AAA33CEB93F460E7D31C002F347D4C87EDFF870CA4A7553D8B0D735377082243CB2E8ABE5E6F4F87D317D3277B7DD10F847353CE2C034F64E553CEF9520A4627CB28492211C13515A221ABA1E89000F41B51D4D3DBCFD15637962CF011086229C49BE908DB06B3A5CCAAE623F065358DE4E705FA090B4085185119B5D01425B6E5476E835C3F8E69EBB1B2DF0087C7513AA79317026F0E80AD9BD60F0780FD00D2810307ACB021473C67991F24B5778C8B4F485AEAEEE51DC1786C24F58C0484C717D271FB3354689349AB3A367000FCB9E9333A64BF97FBA2FB35A914E9FB1659D9CC31C6C77C8B8F6849A99290AC6C111AA78DB0852AB8A41ACEEB47870572DD31FBAE1359055C271C83EE370D816756F324DC505B4717373BCA4ED4D436B45246BE8C743AD04F6C1805797B5021C02A80E8BA39D973226C6525A2F36575D4D0DA4191D0137F00326C12714C31B50C04FBB140E6C478605ADE00D57001B700C49F9EDE70890873F6B3A1A1418C2A605AE0820DFB20F0013EFE81B363E3136EB57770741D493DC3AB8347B512F87EBBEF69B9FC510E80971A77D1F70E7B886FE2D37DDA140AF77E83B22B3EA294B075A4D647187DDC5FE4F7ABCB492C7E9D62C2CF524D43347576BE408A7E6F3A8E064D060E67BE9E75D24A8D9AD201461DAC6732BA59E6745ADABBD0CC9DE72C6A22783F32D80FFD44239D83805BC14EB21EC1155A520477C47A02464F11013EDC3E8FCF460E5C1263327FFE805DD6C226FFF47ADD00BF0F04993718FC1F7BA78B0060B9EDD98D3C733674500F848E8E8E128542610F5A726340E0A5A0B8C4E45BC2A3A2E74B245692D128A95FA0268DC18636F82CA7ED0D5FD0FF3A7E4922A398EED12550A8D75B9453F901CD08BB9F4A1BD7918DB8C33477C6173C6F8F8E21B424A22FFF398BEA1AEEE64498CDFF1FCFCAA54A74B32CA06CF6B4A75741E910EA46F87736131A0F9098BDCC845E308A4944150478B9711D30135D0FE70B222C81BD9CD8F4C3704D60DFD1D7D747FD2A25E87E38BD8C04C21C0DFD79F3533C8B9DF060356467678BECECECACD9CFB9A0C43CB0DA4F2AB58F9E3173D652DF80C05854076F58150CE9110CD8FC5AD747E899E677E85BC7CFC9CA684D2B747114EAF936E554BDC70150D2B891ECAD4BC8DEA6886C6CE38D49D3F6F0454235E517CD43496FA00A632F9D2C3B4B9DE97CCEB2B2B92036D39A7EB680D83538B1E1C11CF7772110A77364D00205D7C445C1153130B20BCBB98027C6849023FCB7855391979C3FB8E4929861D96F2405DC5B5777CF85C66A28DD580060280D0D82F1E2739B78639E9264402C58B04000A4D9CFD0DAA0DC9C5111ECB6FE8080C0E0B4A4B4B43B5C5CDC3C87F608438742A020835A4ABBED3E261B839496EB6328C4F35D3A57F52E074071C3D3E4602323A9551955B7FD819243D75249CD76BD343840F8B6E4552A8D3A4D482EBAA67909DD55F528E5645611BB193A1C34331360E8747AF409326E06343E32849B8696C31165A23356AAB59C15F571779EB44B5DD81C554B5B3B69900423036B09084B3AF0F2F3CF08062FFA1DF59CF0202D25252509A00D121B1B1B29DEEF8AE18D11989236FBA6B8E909D75BDBD8585B9A374A179CA2064307DDAC0F0400EF0180B739008AEA3793A36D0100A80200AB2839E43FE874E97EFACCE715D2863699E47E7517B344DC2DA5EB773E4E37862C40972AE14E531657D6C08A067055A0D5EA38FA61F33D4C1B98C71FB8F777C499B1E14098BFC86B78F66B21AECD2DAD5CD673011C0CFED06CE7F12F713AC35F1B0E44C6D11FAC8F1D3BA6E57ED3683C57450C00C1BA6521BA652B6CC41E0D8F3B96BE365269E4BC05D72E0B0D0B4F100A85FC41911E0A066B2BD57A197939EFA0DCEA37390064F55BC9C9F61CD9486AA9B67D2500584DA74AF6D3DBEE9B29A5FF1A92B86B4DE9B1BB79D67D8E745FED1F29C534939B9E66A72B03E07266A12F608D0E3B27500C918D41871B0FB7231008C631893676F6B386AE1519DFD4DCC2BD365444870360BE124603E0DB7DBB9D5D5C5CFA8E1E3DAABFACCB5206F5A1BDBD5D848182B071C46A464BFE7EFE8129F3175EB7CCD3CBD3CFD2249E91DA48DEEF844AB81B006C23676936598B1BA9AE630525063F4619A55F7300CC522C221BA394F6BB7C40DBDBFFA6EF53F409D0F9F258773C27791AB93A482947568E5146013E9E340376D47648236518E844270404D6C9BBBBA8B2BA96D46ACDF0AC1EE166CC57C2106046BC863EA151DED1F272E1B9B37BB18D6E76D5DD842ECC6273478C9620CE4C1F6CD1B039335A62B615227DC38CD4998BA5767652B31379DC68A73EF4003CDE3700A786EA3B965162D0139451B68703606EDFCD243149E89F4E1FD3A6E61D94917986E2C342F4B393638485A555E87C65DC69CDD9A802768E792C1B39DE8BC4FAD16394555452875C7E9156CCF2FB082046D301B61E34A7E96C6DFAA15426FBD468D41523564D709A8ACBAE0073FA30685B954A25BBD9D90D20F848ACADC36E587CD3F298D869A968A605969AB70B7EBC8FD41054B1E01D6A903F492F5B6FA439BDB79000BD037350EB5B5EA7E3C7D369466A0AC93BDA4D3D5D7253725C043FD8D7EBF26DA485D94C1D34A4ACAA9A6AEBEAF03A8D4921A3399D1140987AE41D05356525BB954AC57984AC16DFD7021AEFBB2C0D180F2DE5E6E6B2A96C6B3C750008EC2760FCFC0202126FBCF1A6157EB04D969AB791B3ADD877D283AC7A750A6AE7B55294249A9AD0BD7201C7BEB206ABACAC5405132816084582CBBB6674E415D706AAAD6FA4A2E252D268B5E310D14B2BC112006A557F53634DD5BEEECEF60C1678C4A30546A64BA552292B2A2A7483BF6F3A6957470FDA568D4623D26AB5B6103127ACF2C2F09F3377EEF5F3175EBBC4C1C1C9C15C373DDA6CABC0D2FC93466394C98A347C91D88A7DFDE55E6DDDD121A79CFC7CEAECEA1E75DEE6127E37AB033FFE6DD4E9156D2D0D3FB4D4D7FC0BEB6BF07D0DB0F09DA06905FA2A2D327FD87D06937A79BA39DB0A305CF0E5DE1821B7DDB17479524ACA5CEEE6080B9DF458137F17336F00C48E8E0E5D6969994120B6B21A0FDD309ECFC9CBA7AA9A5ACE9D5D4A1D9681184D07D80D1CA09BAC96BAAAFD087839E25A8F636EC5FA5E8542A196C9647A7337FCFD2437680CB5ADB05BECD748ECB153EE58EDEBE7E7177FFB9D4BEF0E0D8B881C76A267E41C13EF4290C70B1468495DDFD82AE009F82273D9AF37E829BFB088720B0A49AF378C8BC32DB999914028157D15ED8D35FB950A45FE00DD3423C9BA241289D2CDCD4DB777EF5E8B97B9FFA4B72899B3AD00C203FD82FFAC3973AEB971F1CD4B5D5D5D5D2E877A4603831D64D6D96C75578F42823AE70F4E1FB06C4F3F7D869B431A6BBAE0D2205B06C0A0D3C8E56D4DDFF575C94FE2ABD9BD668D5656561DE07905B25F0B9B6918EB7F6EFA596ED263B615FAC067D31AC8465B88F4A06D0D5AF1FBBB97CE9A33F75A6B6B6BF1E550CF68A028FAFA0CA732CE68ABEA1A25DF1F39666AEBE8145CFEBC8D251D60401B358AAE8E93F2D626C6F35538BE3A1C4F2BFEEE198D6EFEAD77499AB3AD58E58A9DF6F1F2F1895DB9F2BE7B626263E2047CC4EA32A86768E58CFCCCACEB166B551A9DD8B2971FFF0C26B724BE51ADEC91F5B4351F4453C56EF0AE41FC18DDC8D97F9FE2EBEBAB1D8D6E7E11F7090FB5AD6C5A839D040225B11FCEF39B356BD6DC3B97DDB5C2CBCBD3F3F28479E4B810BC99D7DEA055AA470060CE4E8E0300834EDDD4DBDEFA9D56AD3C87F5D5D8EF462CDB91480AD08E663C74F38BBA517BA86D4526B1D956665B3D3102EFBB6FD51DD75E7FFD0D525BA9F5B0D956C1E8811F36FFC46E6CB86691B61F15309688F2863458239B2E93D1A050F5C88FAB153D27B0C9AA8166AA15FBCCDC8D2A2121417FB959FF8BF9A982A1B6954D6BB07B88215E2EAC9B7677778F5CFDC8232B1312935250213C4BB3AD664F8F5EB0853463C122AD52A3158F3D6F634607783CBD56D59BABEEE93A846057B0ACC768C2DF72504E3F1C8E6EA4A7FFD501604E1FD88561CCB6E240D9D938DF3973E6CCBC6FD5AA95FEFE017EE3A59EC147CA82DF818234E28B6E661CF336EC3D469DA65AD3DB75D868D0C9900C95E8651AB08B6DA0CC5E18098E6E2EE717557E35BF9632D4B6767676C2185973B6152FF93FF8D0434B6EBEE5965B1DEDEDA56351CF4500E65FAFED576BC596663047026032EAE50665DF718356758ED10DEB64F1D966D8CA6E08AC12C9714574F38B076034DB8AD55E68EAC2D7AC5973EF4CA835A88A6F897A8602D0A7548BCD77B53F56028F67529346794EAF529CC27AF60B5A4C641B50851D96A610A6340023F5010190000C36DBCAD9D6B4B4B419AB573FB22A2C2C2CD81CF58C04C0F2992C9E916FD0969BD4CA1300A17C20EB6B27EAE9A71400966C2B56B1D956775093DF1F1E7EF8A6BB962D5B8ACA7030F7D9410006B6338C868426438BC0A03E6D32E88B10834A4637AC93BD124F3F2501B0645BD9FF7EC46C2B4009D9B469D3BD786D01FB65144B00B0070340482685D0A4CBE11B75792CE371FC6CD4E3EF76886DEFA0A7FF29B3FE57098025DB8A8C65D31A3EA9A9A9094F3EF9E483515151914300500300AB818B6075129EBE5460D0666133D51895C8F85A7CFE2715D9290580A5698DC18BC85015BEAB56AD5A74CF3DF7DC0D5A724E99FFBBFE3EA5CA4644867A31E9B3C968605453F5738AEC940460AC8BC890C941A0A57B5EDBF19E7F577B4BB1808C4D38CE4616788C3A34763F9BC84E69002C5D44C66C2BEB1F1064D643D86028D9F4013B1FFB738BEC6F02007367E35005B600815D48C640D1816AFAD8CF8FFDDC22FB9B0160E4D938E88300C116020C3E96462CF5A01B1678A3E91774D0530E809115316495C9F40B3CD8FF077745D6E4B1A518C80000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (11,1,'Crypto-router_symbol_(128)',0x89504E470D0A1A0A0000000D49484452000000800000007F080600000027FACA070000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000261D4944415478DAED7D09781BD775EE9901402C240812043791D462AD14B539B663D9969DC64B9AC475DA24551AB769BEB85F9CB64E9E9B67FB392FCD4B6C377DCF4DDCE43DB74993C64E6CA771B3D5511CC7892D458BB558BB288B5A4891E2227127C19D048865E69D339801EE5C5C8020C54D2DE6D3D59D19020360FEFFFE67B9676624555561A196A79E7A4A7EF2C927D5871F7ED8575A5AFAE16834BA6C7272725C96E56EFC73EB515CFC7E7FE8E4C993117521BFE87FE2455A88F3FAC0030F3856AE5CF9B0C7E3F990C562A9743A9DBE8282825CB7DB0D914804FAFAFA606C6C0C46474787900CE791186F9C3A75EA7BBDBDBDFEBD7BF746B2B05DC304F8EA57BFFA3904FCE1E5CB975F77CB2DB7584A4A4A40511440A0419224ED35C63691E1C2850BB06BD72E181F1F1FCBC9C97979C78E1DFFEDC48913E12C74D718013EFBD9CF96AE5AB56AC7D2A54B6FAAA9A9B1565555018EFEA4D789BE4F381C86BABA3A387EFCB88AA468989898F8F457BEF2954359F8AE11023CFEF8E35B7D3EDF4F366EDCB86CC3860D8072AF8D76FA6C9477ADD1BAA102AC1AB0DFEFCC9933B07BF76E4025180A8542F7A1FF70300BE12227003A78D7555454ECC3515F45E0A3DDD7A43D180C92AC6BB69ED649F66D361BB85C2EC8CDCD053413DA3611C12003820EE817029A00407FA1677878F8F6A79F7EBA310BE32225C0238F3CE2C5D1FE7A7575F5D64D9B36416161A106624F4F0F343434405B5B1BA09C6B403B1C0E1AD91AF0797979808A01E41FD07B68BF4182FEFE7ED8B973278C8C8C10518EE3F16FFBCC673E93F50966B858E7F2E068E33F8300DE44F69E3CFC40200057AE5C81C3870FC3A54B973479A7FD086E0801ED42A02524841D55C18166C183231CCACACA342210418804A4106BD7AE8563C78E91A978576767E7C7F0A35ECE42B9C808F0E8A38F5621589F282F2FB778BD5EC0F81E308CD3E49B1C3A0213F7FBD1C13B846AF0DDB7DF7EFB2812204AEFC5FDF977DD75D72308FE87F175CBC864949696C69580D481CC04AE5BB0FFDB175F7CF1954F7DEA53C12C9C8B880068D757151515AD40FBAF3975434343505F5F0FB5B5B59AEC23317A11F84FA1677F10657D82A23F23D983C08E20511EBFFFFEFB5FDABC79F30BF8FE2D14311091ACD6D857B6DBED94272013B1A6A9A9E97ADC75380BE72221C0534F3DE542DBFC97EBD7AF77916493938752ADC936D9FFCACACA0934018F628CBFB7AFAF2F28080589086124C21904F99328FFAFE37A1581AF8F7CCD749003893E83157D8607B30498D922CFC541FD7EBF1781B985462C81454091C377F9F2654D0DD0E33FDBD8D8F8666B6BEB64BAE3200F945FFFFAD7F5F8DA7FC66328A42244263A26398A742C722AD134DC86A4CBC9C2B9480880C015622B21D926800838029F3C77F2F871FB0D94EDA10CF3FB91FDFBF73FDFD1D1D14461231180F2064400DDD450585989247067E15C24044050D6A38DB613504400F2E6DBDBDB35B0707718D56027019B219954741A270606060E1BB903722889486412F40492134DC9C62C9C8B800028C556B4D937E5E7E74BE4BD53E837383808DDDDDD5A0208E57B18B7DBA779D8303A8A7BC8E9230210A9885C141A528F7E8184EB7767E15C1C0A6045395E46CE1A8143809103482AA02773FA4924A639BDABE2318E22010244282200650E8900D4EB2AB04E32B245D96541098058C8A564FF69C4130128FE27D06841520C846976679A4B7373731712C04F21241D8B8E6D4C26E9B38715DBB76F97B3902E3001D05BA75158A0E936E24CF69A4840EB345211AC8091F0998653A9A28228E803F4D1F10C025014601000077F694D4D4D560116831388E038087072DA0830C373D7C19A44074E99EE31E93D78AC7EE3988602E8A42202E4EFDBB72F8BE842278230D45371643A28E4A3914F2120D97F024C6F93E8D14F7B060A5543C1F7068CE9636A06017412E43CF4D043D9B2B1852600CAB382A3D146C0934F469E3B3552046A086268260A80219F4ABE83110150336A07743361411F204B808526007AEB9B7C3E5F0129008143E093E7AE834FC06D5AB366CDD7EEBCF3CE100248F97F220C1122CA6EF37D6565A58CFEC52ACA2AD2B1890806C128278066C18A21283CF1C413595417820077DF7DF77AECFE0E01FB08DA6989649F24DA700009245DB2AB11B86A2362632337233214F54426B2FD7AB1A84600DA479F4321277EA6ADB6B6F6BF23B1EA512D2EE267B6640B48E78900F7DD77DFEFE349FFB2EEE85DC011BFE2CA952B4E8AD3093C9A13A032309ACE9D69010ABD8F1484C027C0693690C84361A1AE3454DCF28FB84F753A9DC76EBDF5D6167CDBFD5988E7810078D24BDC6EF7CDE4A8210986A9E1081C217B8F6D9852B6E8A4E52140767CB9933CF6E9462006D8A40034EAA9728880A7631329481D5C2ED7892D5BB6F83C1ECFCDF859D9FA8079340111042382A03850EA8B69A433925F45CA8004C02E1AD049D1AF878756DDA1233B102F4F639D3B7D5D95620B6DAB7AC68F7AFA0C891C4404DF5D5D5D7DA31E866A916316DEF9234054CFD700DB0844220235248505FB3C831CFABEA4F599FC9D88F0D8638F0D23F01EC6C46409308F26802EDD527802889A91BB9FCD6638926C8619F765EB03E6D3041804301CB6546DAABFCFE43D3AE0942882AC022CB009988B119E0941C84FE0E698B20A305F0440272E82C0A75480B95005FEFDE470926399558005F201C83B9FED519DE9DF35B4D119A4109159B204984F13A0C696590378BA0D1540D5C33FE3F85913309F0A10B300736FEB53FD8D1480F301B20A309F51009F0798ED113E55A3CBCAB82820AB000B9D089A0D6730D3F7D8ED7629AB000B9B0852E762D4671A56A2092005A0EF61FC26AB6478A6D965EE093053F0674B15AC56AB1CC205BF4BFC376DDFBE9D54209485797EA28079B3F72255400590A3D12881ED32488261619600532CB352148AB63792CA0798ADC4101FF70B14C082C408B3E44052641DC1F920C0744DC04CD2C553BD871400B8CBCD3032C83A82F34100AA05982F6F3FD53E520012234E99B204980F022000D1AB8D00AE56157402443865CA9A80B926801E6A45AF760467AA0AA9DE8304A0AF62BAE2089DC2AC02CC3501C8F3A372AF9928C06CFA02341BA89797671560BE15006D2D9D78693E337FA2E9605C4C04C07D5905980F1F80AA3D1108693EBCFD54EF111100F76709300F0490DADBDB156364CEA65D9F8E2A10018C4AE2AC09982702E8E5D992BE2ECFE7A817F900C493AC02CC130174F0E9ACE7343636DA100479AE62FC4CDE235200C84E094FB9586708BCAC377ABF0B623784905281361FAAA047017C822AAB00B3490092791D689BDE9CD80AB195D2E5D9C62DE067CBAECF80001217A26609305B0460463E9D54873EF23DD84AB055910960093017E5E1E94891350173AF0086CDA70B3CDD3AF85E6CE57A93E77BD4F397A1F13E0DAB005BB6DD695555C5A52A6AAEA2AA2E6D9D7A6D5B5B77E27A08D727703DD694D8BA626CAB6AB0A3E1ACFA5F8E008CB4CA3A0148FAF37412D095BEB9E3E3E37E97CBE5A30B3D71F49339B01A57EFCEA52A501D60FFC020345D6A86D160D81B0C2B1051E849240A4C46A3FFEF5D77DCFD2D04D2852FB625BD1F5F87800BD615BA7375F23ABEA874E5BA00AEFB71FD32F6D4DAF45E6B782EDA86DA5B47AE150264FCC008DDFEDB75C0BDBAEDD7EC3FB6327D3D372F2FAFB0A8A8A8C4E7F39517141494DAED7617E5E9911C16FC1BDD4452BBB4DBB8C67FAA0B3F8D9EC8E41F1C868EEE6E68EFEC86BE8101F023F04343231055A21A80084A0C2C2180CAD480A7204182B8B84FFF9CD87E765D616F58358CED327EE73AEC4FE0A93B21CB52ADBFEDD2D8B54E801CDDF6BBF56690C1ABAB815327894D3717A43056B7DB9D8FA428C5BED0E3F17891041E043F8F52B5440E5C57911C329244C67519FF2E836C91039361189B08C0E0C8180C0E0D43587BB6500A205902B0A019C0C4DF97211984E4892B81F9582613669C2F883FEE466F0A9EC27A592304365923C6E9CE8BE702D70A01241D50C309644D01B55C7DBF4D278A852181B12D33BD66AF9100560FB1C2575C525C5EB1DA955FB0CC96632FC193E35004009AC14C00986AF4C75ECF8D5EF6380253C01229F93822DF45D5815739A7496381800CB2B14EB7C4DF8FA4785592E5575BCFD65E5EEC049018608D519EA3373B3BEA3902B0DB71021495947957AFDF786BA1B7F836BBD3B1014FB08507337EE25311211D801C013219C54202F0801BEBFA90D7D7803D95898054075DDF29A56FB5B224BF8AFDAB176B8F9E5E5404E04860349923852C68867268AFABDE747DE9F2D5EBDEEF74E57E004DC08D382A2D71FB9A0180199120C9794B72E638C005441082AE8D75F34DAC0C2224620F2327160F9D8079F2598C0C3155B0586D20D1F313A2110119E43654861DB8FE2F678F1E685C14044811194882065C2FFFC1F64FAC757B3C8FE30FDB4E5142ECE401141478A1B4A4184268EFFD83E8D80DF64344BBADEC54244821E753C8786A2967C1077D1B7479374820204022E68C1341E26480FE773A73F177964179F912F0798BA0D857047DFE61D8BDEF0D08EBB7BCA3D7CB92C42B8582FB5EC3FE9BB507F7EC5F3404988210F1A1F0E77FF9375B90E57F8B1B1F4110A458F58E1DBC8585B07279156C5CBF06B7656D544411A4C64B6D70115B5FBF1FFAFDBD18CE8593CC003FF2C5044800AB4C27D914977701E8F175C6DEEBFB8CC58261AFC75D08959555505C4440FBA0A4D807EBD7AE829A75AB713DF6149571746EFFFA912FC1C953C792FD04486922C881FC06B6FF38BAE78DC8A22200BF3CF8F92F6EC593FFBFF0F8F792474E0E980B4701B1FFFACDD5505652A4FF28E07E746C9BE2F8F30D973432F4F4F521217A201A090B46B1C2012E2044A6A0EBA33821ED3AD8BCBD5763A3DB6177E088AE80125FB136A209ECA59515B06563352CAD5A02F63445C9CF7EF72578E1472F69A48E8F78DD449814C0301B9AE308467F19FBAF1EDAF9DAF38B8E007FFDD8970B1194E7F0B81F65E3647211BC28F7D72DAFC091B0124F9E5DD38A38F032FF83132D1C8942DDB98BD0D0D4023D3DBDD0DBDF8D04897080A7B7E162C0811BEDC9CE9D4180828222A027A095E0A8F615D1432D7DB0B17A0DAC59B5020A3CD37B5A4D67572F3CFCF857A0B9ADC9EC1C9AD6138321C97904FD7C81B41BB71FDCF7FA2F5A1605013EF78527B72108FF4EB7865314B36D35B6490D725D799A0958B37239AC5BBD1CA8A0572479B2605F281C815367CE43C3C566E8EAE94132F4306488D9EDA2421F783C05D0D4DCA07D1EA85C8A19D2387786A49B8800E0C92F40B0D762BB0EDE77E7ED50BDE6BA199FA7A7BEF6CFF09B375FD78584013E3622E220430AB300E6B0721CDB17B17D6BD78E9FAA0B4280CF7FE9EFA916E04BD89E40102C2CE0FCA834A78325C877E7A359F0C2C69A35B06A4555FCC1D18639908D98594E26C6E464088E9EAC83FA46244377B7E67EAC5AB11C3E70CF1D50545400FFF4DD7F43E5389DF84C1664860C90960090907D8829C1EA55EBE0B39FFE3324F0B2699FAB93B5E7E0C9A79F01FF507F0264BE1790210978CE4FC0FF0E62FFC06F7FFEA3A67925C0634FFC43199EE01FE3717E8FF7A8152595979D3C2F20491628C4515B565A0C376EA981CA8AF2B804B24A602648821013C190F6191E775E7CFF64280CDFFCF60B70F6C2199303191FD91C01803109091F2FB6EEF5FAD074D5C0873E7817BCFB5D337B3E151DFB0B4F7E1D8E1C3F6C063D6EFB7932E86600A40CFD04A91BDBB65FFDF8C54BF342802FFCDD3339F8FE03E884BD3BD9DB663CF6344430D970DD67B05A7270041741657919DC72D3E6B8E79C641E900C2633214B09C5D0C882244062FCE3B77F8024A813938021030BB8D1FB7CA528F76BE08F3FF401A8A95E9531D05D3DFDB0A4ACD8B4FF57BFDD0BDFF9FE0F20140A1A0902A34B069E053AE57A729611B75AF03C6CFBC50F9FEB9C73027CF1EFBFF11D7CFF5F659645E31520D56B20A12074E3871C0794A277BD62D952B8EDE6EBD1B6BB937D030378D9500B9921494C099E79F639A8ABAFA307D49AE37B9E08B19302BEE2320DF83FF9C8BD70DDB2CA8C81DFB3FF08BCB1E700B4B6B640C5920A58B17C29DC75C72DB072C552F8C213FF000D8DF5A6916F801A5781A43E06320B38EF2842B259388BDD7B7EFA83EF0CCC1901BEFCF4B39FC4F7BE94DEFBD6433460A75FA739E5ABBFD7E5C8431254C1C7FEE8FDE8443A93154136E7DA65960CB81E42127CFDD9EF41DDF93A860066FB4E3E49697129AC5BBB06EEFFE8BD38824B3207FEC011D8B9E720462A1763239C498A381DB9505A5A066D575A92F2C5F15491C4640D993E250998B019B8305ADF3E42E6E0E5EFFD5374D609F0E433DFDE84EF3B82003B85A029D38FC58D491552066374929FE02D2C42676B05BC77DBBB213FDF9D36429053388B86A9980C85E06BCF3E8FE6E02C7E0493E9C3D355E22B810DD5EBE0E338E28BBC051903BFEFE0317813816F6A6E84707892CF059A36A524E053806F02998B10985EE253CC9C99C0F6D197FEE59BBF98B59AC078B6CB223FA155D0E0886193308A1E5629526CF44BAA94795C0E46658FD1DBA020DF035B36AC03373A761D9DBD3030348AA389EA0372C061A7BA012BE4E4D8D14C58E93B31A0CB8C69489C24CA3DFCCFBF7910BEFEADEFC3F90BE74C8EDFC4440023891ED8F1FA2EB8FB3DB7C2F2A51553007F1C76ED3B08CDADCD108EC4EE4161B5D978CC852C481AF5714790DD2F023C31F24DA09BD64D7EC1E770C72F6655019E7EF6391FBEA753A1722B351349575280AEDB7A601232E92A849584876EC1114D2957ADA75A4089B665741EAD5A0512EDA3DC824D7B8D45DB47DB5A8F7F2365AA7DE73C0C8F0DC625396E0AE88E63762754942F41DB5F05EFBD7D2B9A9E8A38F0070E9F44E00F414B5B0B4422193CFED034FA25300F7C894DA527ED17FB04900474FA75A9E65FBFF9BFCFCF9A02C816CB36AAB5938CF06DCAD12DC79521391123A75002C8607F14475E04426176C246B49ED8C74EE0683795D0CAD512797DE36F8A1281CB1D97E1727B1B1C3A760C9620199662584A2AD47AB915A24A443BC954A9A4A6C73DD5BC89C00F30EF4F10426C164CBE417A02FC15AE3C3C6B04C0D1B57CBA397699CBBE09D50032D8C79000D8BC3DBB1FCCE01B402FABAA82E19151E8E9EB650087A4620EBEB083DEDFD1D9AE35ED545B2454119BD9999B7AA64C6812CC45EC9CDD17EE4BD7A75CDF34AB3E407373D31DAB56AD49025AE17A55083AA49C75330398E2BA418E14A22AE438A0E887E458ECB07AD50AF8FDF76ED36C3A9992BAF317E1786D1D34B75D81C1A1C1F8C4250F7C34AA421946042E97039D3B549B68589BA0A2B4733442935B518844E9398851CD144463B5807AE246658D7D922EB00027178F24FB04E67DA9B745BEC1F0E0C0DA5925405757976DEDDA6A731E1D6DAAAC03986AB48B4901422200BF3DD59C3C93BEA5AB549D760754AF5E09EF43E0298914375FE8336C46A7921A55139F387D0EDE395B8FF6BC1D4627464C36D96A8D45319FFEF3ED50EC4B1C834844F31174534A0A2D437A1F0C4E6A8EE4D8441026020108E076507FC22911C620D0C4F804B45EE982C97000954432178F70C0B20525661F201970B6D804A4C4BEE1A101FBAC12A0A3E34A3F395B6680E534A08BE49D051D84763E793A563C279FB0DB0AE4B9F2B439F77B7EEF1670E7E5A6AF8747B3B0F5C6CD5A23F05EFAE9AFE0424323460E4A5CDDC70363F0DC0F7F068F3CF400381CF638891CF61CAD4D6721A2BCFEE65B50DBD98DE8844DEF37016F025C448884B248A2F090731407FDFDC15925C0B9F3677BFCFE7E282E2E4969D745F65B28E18C1D4F0D7A42DA690419E7C42000ED2BF47860D3FAB570C7AD374E1B1832096FBD7D1C1DBE4EB0E518956D894920FFF0203CFFA357E0A1BFF8B8E8CAA38C9653EF5C80575EDB0981C9092D4165DCBD4EE2CC84C9096481E6404E992D0476EE20F61BEA4E1D1B9CF53CC0E1A387E0C37FB45D5C50C1839834FD2A98834F220167CFE93FFC417FFC07776AE5E1E72F3643674F2F9478BD5AF1054DCEC4EE1195F972BEA109F6634877B9A38BF40363F818F8A2B0B8BDA3137EBAE30DB8FFA31F9C1101B66C5C0B76BB0D8E9DAA83CEAE1E181A1DD5AAA04460B3F303291D426EFEC00C7C2293D8547F0E0607FCE15927C0A1430760FDBA1A58BF7E8358CA33250264B64E8F96BB71530DCA7B6C3266DBD61BA0DF3F08DE42CFB447657D630B1C3A7A0AAE74766944B311F0AAC5880120B953B5B374AEE122C6FF859A799976E88CDF91BE3B3572162F3434C38977CEA13FD58BBEC7984E5E33F0AC7368023A891C821EFF1F1D1D815DBFF9E594DF6D460420705EFEF10FE1B147BF084545BED42555A239780129F869589E00E5C53EB8F3F69B4DDFC1575438ADEF7CA9E5321C3C568BA3B91B5449CFDA992A7A5526B2534D45BEC6D6E113A7A1B4B80836D5AC99F1041A25AF3654AFD21A119BC870EACC05E8EEED83B1401043568BC90F30397D02FF40347F4024DBF9DA2B109898981302689F450F847EE1C5E7E191CF3F8EB6D336456D1D089D3F91CDE7C960C11372EF3D7768A9DE992C2D973BE0C88977E08A017C0E07BCA8AC5B85E4048FCE0ECAFB7B0BF3A1724959FC4F0383C3701AA3891B36D780273F6F3A3915D8B07EB5D6880C540379FA6C03F4F4F5C30446107622A9281AE0E60F7827F1EDDDBF85DEEEAED9AD07D02F0D0357C992A751D21E275993650BDC70C34DF0C94F3C107B4A2870F576023B9FAEEE4EE59338C8E4DB6FDE021BAB574F1B788A0AF6EC3F06A7CFD5836CB52457F072D5BC49DB712150794DD0E6141EF8F81F6ABF79CF81A3D070A90DC291B076F24B7C85B072D952B861CB7A6DD672260BE516CED537C1D90B4DD0D3EF87108692C65D6F85E0334EE2F9B3A761DFCED7615C7BC8F608F6A3EF60C8BAE5AA0860804FAB3A01FE874100EA972E5D067FF1C083182F9708490049EB7C554E7271062594565496C13DEFD93A63B9A5CFECECEE8177CE35425B07C5DE21C06F6D22417C1E80035D4D22827971615848F9000287BB318976B1AA55B22019BCB0E6BAE5683256A3139833433244E0D8C9B3B0F7E071C8F3E4C62AA2809B37C07F5124CD892307E07CDD6918D3809F05027057026957FAB88ACBFF8F6CB13CC212801A5DF1FBF18FFD29DC74D3D62429E77D0048458C380100721D39F087EF7F0FCCF47ECFC1C9100C60C4D0D3EB87A191314DA63BBA7B3593629C409537F20049E4E012C3D3FE1E040CE51CCA7C45B076F572A85EBD22E3888542DC03474EA16968A6E2486D5ADBE404EAEB63232370F4D05B28FB9D3036363A2D02583319F590B81F9055259759B0D033FB7EF4F24B70B1F122FCC9C7EE47C63B920B2FD3128099919354D876F3F519814F77AA1F1D1B87DEFE41181C198511047B68740C1DA02004C361CDE9328628913431C879585501E82A5C05F6DA62B3C67E43FFF0307461D879F8E4198D0C356BAFD366195345311730D43D72B20E82A130D81C39C94EA0BEDED57E19CE9FA925A0D30EE4544F4EB16600BE718127FD123B9E88B45A76E2C451686D6B817B3F781FDC78C3BB35E7842580287FCF1360DDCA2A282F2D4A1A0D816010FAFC4338A24791DD13303C3A0EA3E3014DDAB5DBC431F22DE1B6C36231397062E0B9BF73AFB94AFC4D9EB341863E54A39DE89F506D431946151BD7AD8425E525DAB9EA1F1882BD078EC300FE46BA3782C369155E6A16084C403B9EE7AE8E2BB1D2F7A9CDB89004D634E0CB60BEBCDBA13555B54FF56194297C19D5E0CD377F03EF7BDF0734B340B2A70AAEB0E1C951989F8B76B30AC322BF06F0F0C8388CE0081FC7111D0886B4220F76FE5EC2E8C0213B12E2ADF232AE32BE1C7F152F1B0D4C21F6575B3ECF390A36BD78A4C73F0CED7B8F82CB6987FC3C1774F70D400E3A99AEDC5C61D5501815C1EFEF037F5F8F26F719724FCB0B8A486015D87C1E7CE33E00D4DCAAAA3832FDCD03037EF8D9CF7F0CBB76BD0977DD750FDCB2F5B6D81CBAA81A575FA7F2EE37DF3A192BD432A907B2101D2953C9365FCC91E17A32F03C51521A0298521AA4A96A43A4A4D7C64C9D04A38110E4BAF3CCAF65AA868218D78F0E0FC26470DAF7949021761BDD291540E264DF009F665662378652D569C736C3C343F0CB575F813D7B77C1B65BEF802D5B6E8092D2D2B80F9038F9B1DE962327EDE78B39D8A454E6C04352AA571504FDE27070161613F6C97583FC3E99CC18AA0149FCC4F818E837659FC9A7CAC6AFD0EFE4A6261180937E037C870E3EDDFEA580149AEEAC35D3DF4FCFF6DDB9EB0DF8DD9E9D505E560E9B37BF0B366EDC0C65A5E5602ED386A4C28E94644861E3D534B65F480C412A3879B067E81426612BA5799DF9AFE41492ED27279AEEA144612079F557493B03E7284F02AB40FA8DBB79E430239FC0D7EF05A43A676330F4F4F6C0EF76EF4455F89D5632BD0989B0710392A1AC2C05F069F625D9789533EBAA500152D9FFA91CC2ABF503A4A4DDB1509A8A5C296434C2EB59D41D2B6302A22213C0C6FA164EFA3D0C018AF0100E98E5A5AFAF17F6EEDB0D6FEDDF0B5EAF17962D5D0E5555CBA0B2B252538744ED9E481978E78EB7E582D725A39F76FF4CFC41494A9FA052F519CEF8154E7A9B83C5204054FF51D4144305ACDC0B8D7BFFE440E20650742730E396700599440157B30C0D0D612C7F86EA0E627268CDD154A1B272292CA9A880254B2AA10849A20A0036DB7795034A15029C0CA63A05D0EA34CE7B2C25AD55054523B1EA66ED2A0449B3EF3293A398C345D2F18CEA2A608A19AD9CFCF30A6010C0686E759E6FBF4A69D5AEEE2ECD64D49E3E19ABC87138A0B0D00B059E42F014148027DF03F9D8DCF9F9DA35040EBB33A5D3974C8CA9F6A72705814AE561541718033AAAB5D84D3194B85D8F37FDFA85795C8CDBFB525D40840D0B0D13C0CB3FAB002EDD0C30B78253ADB0C04B2814D2CC86DFEF379F5CBD9113E5761319DCDA5D3C6CB89DA3DD803247FB1B4D05DBACFA3504DAB502B15ED54123D229D1D8BA92E23E44D14844CB42D23E8BE03BB069F2055E8C9B7BB337F152443E0070593F23F9E3D29B534F042DF82FCA640285424FCA851B40C4AE1C8AF53C40A95BEAD758F4BF49F2A23F1D5130DFC54D62D33E322715EC73000C12B0CDA62AD13064976B69E9E346BFA914594E9338B0089A55894483D9737AED2C68AE3A78D079072195D7A38A5CDE682838A2AA4A247B6AAF1902EC4917BEC81CE80AD3A2BAD718318510AA1A8D06837DD9537B4D80DF828EEC1926099434A865C1A88FEA214348EF27F516D25B647274A855894627B3A778512FE1C9C9E03382416C22812C18F91106F809AE6944C070291818ECAFD7AE09CB2E8B72090426BE37190C9E3106AD8000940854790530D84240D39CE338367AC8C1A8DE8FEB44084643938381E181E6ECA95E7C4B687272AFBFBF8F6E0C11D4B1349240C9994062819E0D3494C090FF091D74A79E0FC8D143C37838313936D26E7338DD8EBCFCD2EC695F343990D6F62B6DFF57C72FC098EF2898E7034C89209573FC26F5BF8D31C01BB38446A8A8B169ACBFE73CB985B985454B21FD7D11B2CBDCCBFEE18BF5E7BE110E87FDBA5A07040A1097FF380152A84010CC0F7A309208ACB3A8B5F1C1FE8BE16060A0B06CC97A59CEB167A198776F3FD4DDD9F1C2A9134776E88376CC30D59C0F90140558056160844B08494CB4C0021F6698150E05C6C37D979B47BCE5953568127C5958E667999C9CEC3879ECF0D72F35355C60FCB454A35F6147BF89008C0A182490F50318B2AE708EA21116D26BB489220A0DFBDBDB8EBB8B8A9717F84A57CA28075988E66CD4477ABABB7EF7FA2F7FFEFCD8D8E800073C6BFB4DE0F3C7B1720755F4D230C30C0097405098911FD49BF181133A119CA3FEBEFAB1417F2B926085A7B864856CB367CDC22C2D511C6457DA5AF6FCF6D73BFEA3B5B9A99D89CC58E027199C4CE0A7AD0A66009720513AA470B90263F40719E0E94BB8F59EA68F9DAAA238077BBBC687FABA9B0A4ACA96794BCB57E5D81DCE2C8433F6EE030D17CEEEFCC9BF7DFF976DADCD3D1CE8012EE40B73765F11812F24806E0A802181CA10810D132719128CE904C8639A564F8087730CF6748D0EF576371696962F2F2A295FE9C8CDF56421CDD8B31F3C75FCC8AE7FFDD6375EC3F0CECF803DC18C7676D44745B23FAD2B83F417AB8C398870A16298518109C6F3348A4772F566D41238880803DD9DC3D8EA9DB979858525654B3D45C515AEDCBC822CCCE665627CCCDFDC74F1D881B7761FFED9BFBF78167D2B7E9407190F3FCCB4A820E39712FC9404E07C0289C91EB191824104366B68148EE431E01BFB8C849223303E361C6869EAEC6C69B211197CE515CB0A7D2595B9EE7CEF7F55D0C746477A11F41307F6EE3AFCEA2B3FA967C036CE6F88013DC43878A972FDAA9AC1A5DF5396773126C1901459E00F18AC1CD7411E3546BE88004CB3231986AE3435B4632332E4172FA95C965F50589297EFF1395DB9EEFFAC80078381117F7F5F7337FEF2C387DE3AB5F337AF363100B31370931CE8610EF42827F7538EFA6911208549104D1987F4E30518B360874481A99D23819D6B362483FF72637DBB7E1C1BFA8CAEA292B2B2425F71A9A7C05BE2F614F8642AEABBC61694F0C8E040FF95DE9EEEE6D6E6C6A61347DFAEAF3B7DB29703975F0F7380B3C0B3E73F69864F9DC60DA06774BB78E62A2200733531FBA8581B9346361E2D6BF40E6EDB58CFE152CF36E678F4487A4B61517191AFB4BC2C2F3FBF0005C28D2A918F2DCFE972E6592CF4C47A715DDF5CD6045A628FB151C3A1D0283A6D0368C307C64647FB870607FA2E35D6B71C3EB0F712EE673DF410D38704FB238291CE3B76D1AB01FEAA08300511D8BA429E103C2978D07398D719DB56EE587C999AF679F8552C9E42AFBBC05B54807DBE3BDFE3C9CD737BEC7687DD6AB3D95038AC162BF536DAC4FF72B41EF7D82CC80A03580212CF6418CF4B5851559AFAD6D6B10F294A149B128A4622C189F1F1A191E14154F1DEBEEE8EF6BEE6A686FE00DD9420E11B453875644165B7D9D7B25E7C941BE50A978FB92AE06785000C11D89A335940082BD3F3CDC61184DF3640B731C761C990EA79C56C0A1BC03C5125312750B55A6DB2D3E5B28642A1F06430C0264F800340E1EC6E14922BA7A20230C30C31A22946765800385FC9336D1B3F2F0498421552A9035F786A15F436665D86144F2107F3649505A67E9E719299E6A21C85CB7DA80260221C09D2B588601F1B5E47B9CFE6CBB794D918EDF3428014AA20220370E0A52248263D3BF2F9092C99035F12643E8193571048AE22500255306AD979F728F7DAA8E0782A47C039077D5E08304D424802F02401B0EC8817BD9E3F8E88009022FDCDAB81A84FA5104A1A6055C1A85638E2C15CC8FBA222C0146400CE5E8BC8C1DB7511F0C0810F199800358D490001584A0AB30102B0457F1729CFBC82BEE00498062940E0C84969A45D12387D52060A2022829AA2871492AD0AF609415717CB495F4C0498013144A04F05B43C4DF0610A7548F77A555DEC27F75A20C05512642E976B02E0A996FF0FB34D1EEB0232D91C0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (12,1,'Crypto-router_symbol_(24)',0x89504E470D0A1A0A0000000D4948445200000018000000180806000000E0773DF80000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000047F4944415448C7AD556D685B55187E6F723FD27C775993B426B529A5741397ADB5B128EBA0E80FD14145E9FC338B5445A6A05044D03F326C0545860CBF50A65018B6F8B16E9DD4E8D6B1424D8A0C2DDA8E655BD2765D933669BED39B9B9B7B7DCF6D5AD2D221B6BEE1C939F7DC93F739E7793F42C9B20C6546F5F4F4E8BBBBBBDF37994CEDA22846A7A7A7BFBE70E1C2E0D0D090003B3055F943575717D3D1D1F1763C1E7FDEEFF7DF5A5C5C6C42A2CFDC6E771BECD03611D8ED760A4F7D7C0CADBFBFFF84CFE77B359BCD6A0C06C3F1FF85201C0EAB229188399148843D1ECF525F5FDFF0D2D252A25028D8774A4095C7A0B3B3F33D8AA25E94242949D3749C65D98C4EA76BD0EBF569A7D379ACB7B777FABF12D0E50F1A8DA6D1E572D91C0E870D1DC23A868787FD8140C0895BA6772551110DE580ADC86432443E6ED731B817812008722C1663774D90CFE7A96D9C03C683BCDEF90DA835D32081712B01A6ED3A01BBE32C22DE71EEC400BF69B1585AAD562B5D5757271B2A2DA682285B42F3B36268EECEFC6A3E8F17120C02CF27711ECBF37C8C5251B3986D57CC34F83011F2F74C53E4A8C0614FFBE34FB6B47ADA4E565559F6DF0ECE31C1B910A023942AAFC8251404E5662CCB41DDFDB5D0585F0F5AAD0EBE1B3EB7CA30B49763B97727C7BC7F6C5B076FBCD3F78920F0AF3034A372D53AA0A9B101F43A2D0467E720164FC0C8E8A82259B5D5062FBFD00DED8F7A60391A832FCE0CC0E5F17150ABD5282723B334FDF9C8D0C0894D04274F7D7AB49017CF17CA4EA9D36AE1D083FBC16C3400A7E1E0F2D50958595981AEA78F2AEF47BC976061310CB22C01851F955AB546A2A671A49F3B73FA83C10D82975E7FEB4AD3BE078E8824B8784A328A45118A38B755ED85473CCDC0B12C9C1FFD15388E83B6870E2A92A5D239F8EDF76BC0A38C2AD51A01198381EB57BF3FFBCD918D4AFEF9979FE2CDCDAD401B194506E278AFC50C4F3D76589129347F17C6C6FDA0A25910448948019566133CDCE2403237CC048210B81582643A43EA0906C6BCD18D5681016674B61AFAD4C71FC2B3CF1C83E6432D204932B8F7D54368210C89441A62892448941AEC363B905BFF1D98550E36F9E775A8B15AA0C66E855496071922E0BD780EB2E994A810A073520B2E59145DA954120607CF82CF3701EE030721B61205A7A31668860196D34175B5162422294211B6348AF8158E65C06ABB0F6ECCCC28598787E0886F72031DC22D1545FDBA5CD1E832F8FC1330F5D714603705A3C1082693198C462318F418704EA3C44153A1016D854ED9B3AEFDBA2101A90996AC14119942267D9BAC6F578D45A948DA08E47239C86433C0E7792501B6FCDD963B273DED4BF25342C023A68A62E187447861BC20F059D885A5D3C985E0CD1BAF61A24C12F568649350AB083E7C9BCF66AECD07660EF3B69A272C365B03C3B255A8E0BFF6A05C2E9BBD33179A892E472E9DFEA8FFAB542A75971C1C7DCB9B2A9964130E2684015189A8B53B6A0F98CC7BEC06A3A9126130198DAC4AAD4EA11051A9282DA2F39BDE911F7DB817D760B5E458DCB6556C6A526BD9A52975517509AA529C48DCC4120A044489EDFCFC03B71E6B6242A160270000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (13,1,'Crypto-router_symbol_(48)',0x89504E470D0A1A0A0000000D49484452000000300000002F0806000000A58249C90000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000B174944415468DED55A697013F7157FBBBA25CB97245B9223DBD80E60D3842BE14A4873113E0065723913326DA7F996F443DBA15F683B65683A30D366DA0E90494A67C8B4E9346498D264202199128E002D606C63B0C1E05360F9D061D9D62DAD76FBDEEABFB26C6CEC3009B86B3FBFBDB4FBFBBD7B57E6244982D92C9B376F366FD8B0E185F2F2F2F52A95CAE9F57A3DA150A8EBE2C58BFB5D2ED7CDEDDBB78B701F166E26021C2E3B76EC58BB66CD9ABF2C5CB870BEC96402FA0CCFF3E0F7FBE1F2E5CB6DCDCDCD3F55ABD5C7EF0709F54C276CDDBAB562EDDAB5EF151616CE3F7DFA34DCBA752B61369B23B5B5B505687915CAA27038BCBFADADED793CBDF15E13E0EF7470DBB66D457575753F426BD71E3F7E1C1A1B1B5BCE9D3BB7F48D37DEB09C3973A61E41F7462211D068342EBBDDFEC383070F6AE714814422C1A1B51FEFE9E981AEAE2EA1A9A9E9AD43870E5DA363070E1C38D2D9D9F9273C87C20C0C06C3B31E8FE781394540AFD77368619BDBED064CD8686F6F6FA772ACB5B535B96FDFBEFD98CCC3A228423299B4626E14CF2902084844E04594AC482486BBE2B9C703810011F3098200284614C39C4A620AA1EEEEEEA2FEFE7E181B1B4BA147F4EBD6AD2B88C56222C6BDE4743A0DB83F68341A6587A1278C73A68C6EDAB469652A95FA4D7E7EFE13C1605087E0380A152A9FCA42DB65656550525222328F9C4452BFDDB56BD789FBEE01ACEB4F3B1C8EE73039D3D8BC0298A8A3E9743A8CA492485AA5D56A39F402A096743A1D8FC7B4586A97E0FA46FCF8FD27808005B230765D1556222B7A82040A0A0A80F4E4752AA77BF7EE8D63D869E6440E207801AD2A8709E999D69127604323EFCC0D0254811490A4675AA7DC402F242994FE2F3DA010C0F5B9E1012507EE043ED70398F4108D4689F43D25C0CFE481E9004F26A49046D1CE090208247527C093D7691EC2304ADFEB249E96008E05E26CC387343544E681FB4B80CB2C3A4C48FD9DC04F458E79E0BE57211D8ACBE7F35551A39A29F62755A2347E36EB81FAFA7A5573E760B1944E73AE62EDF0891327846F7D1642EB17A0AAC51162557575F5F7707E2BC14E6BC631416FB55AF534C0E188A1292A2A02BDC108DEC03078FDC3104BC4E1ABD36742B1783281A3F5080660B120A48BD282C00969795A85B4901E451DC0ED405AD6A900AF520DF29CFA9CC1A03A35D0D1E1FB2608500858511C2845CC23B44F633617E6D52C5AB4AAC8625BA2D5E9ABB0F658101410C0348DD4E48D095A069DD18AA748338F02DD9BA37BF2721FC16EDE86728AE75527794E77AAB3E5ACF7AEA6518EAE08A062C26D7C79CB43F905965D368BE5C979952E7E7434049DF894E61F0E20A8DB41D2B6BC5F242D32D02CD9093CDE93EE4BBDA3D2550155F32A615E65059E2BC1071F7E08747715AF92500E6878D5AF2E9CFE77F75DBD9578139F898538B7239D4EBD69B7D9552B962F863247095A8A2796D0D5ED86EB1D5D70F5FA0DF007FC9944C699281E8F2168310B5A110E2458B17C05AC7C6429549697C3FC9A79E0B09728A30BFC78EB2FE07CE345D91B8A208914C7F3FB745AE9AD639F7C32346B023FFBF5CED74541F81D82B208C2B8656D360BCCAB70C1A20535E0B497CA64A807B45EEB001C45A1C255067BFEFC3EF40FF68F5B9C955993C9084F3DF104FCE09517A1B4C43AE17E878F7E09BFDFBD47BE16EB29E8098584ACC3185A3F39F2D15FF7CF48E0973BFF588F803FCA8644B6D28CAFD3C75C4E276C58FF345AB30CD468792243613130E483B777BF079E81013C4F94C7EEA71E7F0C36AE7F260B3C1C8DC191A3C7E04253337AA21A1A9A2E21E9810C78464226C0F1B91E9130BA5FFB68FF3B1F4E4B60C78E835A2ECFE74390F999A413592CE726601A346A2DD4CEAF019BB508B4F860A3D36941A7D58241AFC7751D8C8C8CC181431FC370701456AF5C0EAB1E5906CB1EAE83683C0E47BF3801C7BE3A8BC70220677126EF282AE5D0A41F9EE7E4E456BC217B84B679D540A5D558BE7DFB7661CA3E90D2F43F99AF33E74F4C4091593FA39598BE76A303DAAE2B312EB150C1C74CF48C0E49A530E48C26035CBAD206972EB7C90F3E94DC63A130453DE4E59965021C97AD1E32788E55A60CF89C90CA78C3D1E71B7B06CFFE624A02274F7DF950FDCBAF66008BE284B227834F8F27A5288DAF4B48A00A7363D5A34BE1E1BAF9F24D07BD3E387BBE09CE9C6BC0474F1DBCF6D2664C5A1B442351882593904CA620859A72A7A1A915BA6FF63242138567E1A4103976F89F95D376E2A69646CFB3CF3C07768773DCDAB9A07380D385D7AE5A06410C97BA05D55812CBB2D789608C5F6EEB80F6CE5E30184DB2C53FFBF224BCBEE525A8282F9B704F9F3F08A3636190785A1F661EC82531EE8D21CC93F6AB5786A6CD01A3BDEC5567A9F31F3FDFBA0DF47ADD94C0C9DA94138F3DBA18962FAE9BF0F9582C01172E5D81962BED1045CBCAD7A7BA9FA99560B514C1F75FDA04EEBE01D99A0F5695CBE094A5AF7F08DA3B7AA0DBDD07C323237259568890B7FEB66F3712687D1EAFFBF16D04A881E94B1C5B741AED07369B0D5E78FE1558BA645916BC942522C103A55658F7DD9513275824E50F04A1F9CA75E8B9E9C9342C822EFF8E6B03267C349E90C3C564D063E8954175A50B3DE8CC5E2B1E4FC2A7C74EC3A03F40290D7EDF009C3AF6395C6BBD0C03FD7D5902EA1CF0D4750D3878E5D3383682EC3FF8FBFBD0D0700E5E7CB11E9C8E32D99A4440AB51C1776A6BA017AD383A1681514C4A0A81D170345BF38D7979132CAF6865316B7499FBA2B83D5E70F7FBC0A46FC5D26C972B597B971B92A914E4E1BC75D3DD03ED6D2D983B912CDC0939C0C053A0964A42CA853CB237EAEEE982DD7BFE00AB573F068B172F436B55815AA386C6D66EB9E2486C2C9030804DC6CC7707F28F74BBE5332D77BA99404E5FF07883726899F30BE4DD9E5B6E884523B74DD1142DF4E241CDE61E1AD62C280BD103D5B7BDA140AB36349C874B979A418F35BEAABA06E63FB800AAAA6AC081C94EC93C4E4462866624D89890C52E4D66C1B15D622651556AEC271AD068B4100E87A67DEF4C731A9E2FA9993BC8E476940508D671A7E98F42C4EDEEC538EC87FFFCF7AC6C75BBDD9179C165CE07FA0687AA8EC968C086669009A34933E334F600AA686410F2889CBC541EC9A4085C8B8D50A59AD5146D64CF1D698580968DCE259220A8BECE3C9E4A2561104BDBF0B05FB61A81C8E88C15D9EBC79C63B84DFBB58AD6CA1ABED65D21C026E5EC232579517EB5904EC6C724312DC01C5D301C83A8DA9438E41970AA692328D4208663C1E0B5390A5E8C44C33BA94F52D5A65D6AC684BEB8184069A76A948A47C4907F482CB4D917CA33C01C58B089F97DDEC17742A3A39FE2E618114042929AFE60322571871F852C9F226F24C2A1803712EE2A2C752E292EB157CEF46DCEB7B5E0A369A2BBABE35F870F1FDA9F8844DC3479A044E950B60F906B90047D853448D3003BE926EEAF0E0E7AFA22C1E18AD28A79CB0B2D56AC541AF5BD009E4C2462DD9DD72FBCBBE7ED775B5B9AAE526833CBC715EB4FE8C48C449CC5568479E4164A59321173DCBA71F5A287E72DF9C5D6AA625B6965B1D5E62CB0D88ABF29CFE0A89E1E1CE8EFE9F7DCBCD2DAD27CFEF0A1030DF1789C3050D2869861099B28E5CC3F53BD95E0586955B386411D9ADA6221D305ACE41662592C76B82A6B9090DD603098B0FEE36F9E1EC5909767426DD6E37E0D954FECB249ACFD311CCFA32861511442424A08E1636A7068B0EFFAF1CF3F3BEFF50EF818D80893282B30A9C9C0677C26CE21C233325A263A462A8F899E351575CE9B0C35134EAFD7D3B680D68C3020C9493ACE804618D824B3B4C02AE494C067F556620A329043489D039A67C7B9492494F0127224CD2A5FAE56C02AFB246996FF85C2CDF6BF55EE40287742E472D6737343CA6D9630C55847397837B9F33FD0996C4041A692E80000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (14,1,'Crypto-router_symbol_(64)',0x89504E470D0A1A0A0000000D49484452000000400000003F0806000000501DCECA0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000FF34944415468DEDD5B796C1CD779FF66662FEE2ECF2597F729528765C9B268C9AAE3D4B22C25A8EAD4285A3B409BF60F418652D428E0B6A85114B5A43A810BA468D20641A0C0418AA27013CB8728F992654BB225459464EBA068923A68EEF25A1ECB63C9E59E73F4FBDEBE19CEAE96144529A8D6237C7C73EFFC7EEFF71DEFCD48D0340D96B3ECDAB5AB6CF3E6CDDF292F2F6F1545B129994C2A82208CF7F5F59D3D7AF4E887C78E1DEB871C58843B2560CF9E3DD6356BD6FCD1EAD5ABFFB1B9B9B9B5A8A80854556546F71A1919819E9E9E2F2F5FBEFCD2F4F4F447070E1C48DECF0448FBF6EDBBA30B3A3B3B9F59B76EDDCF57AC58D1128FC7617C7C1CA2D128C8B20C369B0DEC763BB85C2E2F1EFB96C3E198ECEAEAEA686D6D55EF57022C4B3D71FFFEFD22F6E803DBB76FFFCF9A9A1AAFCFE783EEEE6E50144546A0E308DADAD0D0508A0B14171783D7EB2D45B778756060E033BCBC27E709884422AEA6A6A617D0E76B464747E1E38F3F06ECE54B7EBFFF071D1D1D9FA3FF6BBB77EFFE6B748D3D8D8D8D4544427F7F7F092EFF70F0E0C1EF3FFBECB3899C26007BDA8E60B691DCCF9C390348C2747B7BFB6EF4F78BFA39087CDFF3CF3F0F6EB7FB25ABD50A641817BE3D34345485877DF72301E21D28205F92A4BAE1E161B87EFD3AF97C5F381CF69BCFC10C106B6B6BFB11BA472F1E630420715EB49AFBD5059644004A5842308D168BC51E080458E04B24123368F1CC7391A0C8C4C4443B1206783E20691624634D4E1370FEFC7907125047698EFC3F168B0106B8290C74B7F83582D610FC249DC37E40643FB132A70920FFC7A68CC093511C409BC094989500ECF109520092C4EA0324A112B38823678320A639010B9C4DB44E850E4A9F3240F9B66DDBFE12C1A9A80CAA02A9556B6B6B85B1B1B13A5407AB09A85640024B9D4EA7152F8FE55C25F8DC73CF95616FFF127B7603163AE5580B5851DE02499BCB3B6DA1FB2161803501E4E7E73302F0FC28127768E3C68D3F7DF9E597CFE69402B0B72B0A0A0A9E4630D8C94208D7C7B1472308348A99404680024ADDCE09D1C8F03C088542AC764015A8485C78CB962DDFC5FD27F096B9450081A4068159B1DA2BE40628692A790DCBDCD6F791BDF2CA2B3790281109B0E55C0C20FF26C36066D5073DFAC067B16DF37E1A2952DCC0756BCE1180BD267312B2025CCCF46B50442A650E5C724F01287D1941288B01BC9D0A50011A118064E6A6027402EE42052A2720F7144075909A5AEE48F619C614909331006B798A01EA1D024E338AA5540FDC8F04DCB614C602282D062CC70D904495BB932DE708C0F4450FAFDE2968B3D1F88013907B0A181C1CC4C24FD19693FE4C04B07BE17AEE2900C7F634C8D19693FE3209C83905E0034B3E9F8F86C2C2728B20329A19E24B6EA4411AF5F063F968F5E802D6E516416605E092336950422B406B40DB80967737A5301220E80A2072D73DFE789198803245534A939A5AA6CA9A0BF3CC94AA262764419990C296099FEF72485BEE6BABBB9D0FC06724D97BD15AD01EF47ABD8F783C9E661C0A7B7074E774BBDD765C779496963ACACBCBAD788C6682D908302F2F0F66E72230303C0253A11998C3F5EEEBD7E6A6A6A65DC9A41C9555C5AA28AA4555149A28C12A2BD52201C63ADBC613D02665599940122730084D8892388429F594458213637D7D23BF4B0274F997A095F3D6494AA00922EECBF6C2C2C2E2FAFAFA5A6F6555B3DDE9F68064299635A15891158B0E6E1EA8CA81EAA04925E9E0557E9ECA8F6BB4AEA59434FF6CA9891851947A24094E4A92F584D5A29DBC79E5CAD8BD2440E001D2CADDC16A325B717171FEC62D4FEC70B8F3BFE174BB1E43C015493969805539D814A8F99ED5F73317318155950CF7D1E65D28F57CFA330AF46CCC28AE545554C3E8584A0882247D49CAD044CBAFBACE7E76F19E4D89994811BFF7BDBF710B6EF1FBF8402F3AF3DC158DF5B5B0764D0BF69406377A7DD0D7EF87FE810136196A06AF0364EB0C3C079E019AEEA3B70C3C075E5850040DF57550575B03F535B5D856C3CAA62638DD7E017EF2F39F8188AA10445D1922A9E4535192FEFDF327B6BCABEDDDABDE1302FEEAEFFE798FACCA3FC487F738F35CB0FEC1D5F0C0CA26B0D9AC20997E7C6C7C12BAAE5D87EB37FBC0D7DF8F64C4E78322023348D07B99AD6B693DDEBCA2051E6D7D18EA6A1030825EBBBA19E38B33ED7946C782B0EB85176164748429422465E8CFC1DC44A0F576FCB3EBD377DFEE5E36017FBB7F7F8992105E5364F58F5593EFD203DBED0EA8ABAE8446EC9D07563583153588CC1B840C0E8FC2D5AE6E54C510AC6A6906F2AB37DADA20118FCFF73A81663D3E4F80DD6687279F7812FEFE85DD1854B3CFA6FFDB4F7F01EF1C39CC5D424CB5049AA94130A942A0B9B87D1FBCF9FABFDE31012FEEFF499105E2E7B1D75BE6C1CF13304F8606F998059A908855CD4DACC7240B11418488062118C1E1E8F153F0FAC137D96CB1AA71E05CF2349BBC65D326D8B9E32978787DFACBA4E0C41474DFE885C7363D0C3D37BE8297F6BE02D1580C285A994910798C60E08D164D12FEE5EDFF7E6DEF9209A0FBFED3AB3F3E8CE09E36FCD4085C664BF765ABC50A1BD7AF8367766E078BD592065EE2647CF8C929F89F37DE047AB34624B89C4E947C2BFCC18EADB0724563DA738C0527A1EDFD8FE0E4A933100A4D83B7AC1CF29C79E0C77843E8D93F83844C350846D660FB24E9F9D70FFCC76B4B22E0873F3EF01D59510E2F04349BB95D6E588BAE505C5C083624C266B380953E9A40A35841400BDC2E26EB9367CEC1C143EF3277686C68804D0FAF87CDAD0F414D5505FBFD91B10938F2E12770F6FC7998999DC9E81A960F8C96252D1309A299084198274010FDF5A5AEA6BDA6C0B8E0848864B36E1715294B4F6BC6B61EB5F5731218F0BEE8E864B256B95FAB66FFA62088AD45A20792C066B73155043090B57D1080231F7D028D75B5E0C5C2EA72E79730179963CF9297E7CCCC48FA0A8B2BA9ED4C2598DC4234B6EB835175079E7CF4B6044C4F4EEE2C2BF3A697B6A6E8CD8019DBF3EB462ACB88EC44427959196CC69E5EF7C02A0C8ED7A0B3E706F4F6F9405664764E617E013460D44F601A7DE8C1B52C9D527D9148CA2027536D924CC1F54492A947E0E0B21390E11668D7BB3BBFB924027A7B6FDAABAB6B3340AB69BDAEA7B05B5A8380D4B9759515B069E37A687D68ADF13AADDC5B0ADBB77E03AEDDF4C11B87DE83C9E969882713E02929863FFCD6D6455ED4AAF0C9A976F8EDB92F607A269402A6AB21733DC328185E3A776676497382573BAF4C3DB96D472DF9D3A23D6D809EEFF10757B5305F1F0B0661C3BA3518D81A6EB9FFE474080B998B28F56E88C5136C0C41D79EB970094A3D251814D7677DAE7822010E749DDA9A4AD0063454839CD6FBF3D5E2AD6A080C0DC2F0607F6849040C0E0E44DF7FAF0DFEF44FBECB7376664FEB249853990A9EE222D8B9FD9B58AA4A59EF4B03A4B3172EA3FC7B51D2099626093C95BB7A3C3E7EBA1D4A8A0AA16545BDFE7A9E65115A9C18407FFFF71E61361B9E83ABDDE446FD3018184D4DC00A26028C00294012DDE5D8BBEF2C793E407495570BA7CF7C06959555B075EB5359647EEB3AA5B89D4F3DBE20F8C9A91006BA4F2138359D4A91749E06A9929781D78CAAFFE8C9DF42184792D77AFB6002AFA3D8D0D25807CD4D752CA8D1928F2A7B6CD30666E17004BAAEF762393E0CC3A3E369994146A28F1F3F0A33984617258080A7F20C0D7A34E6ACEF1C7A0BFC7E3FFCD99FFF05381DCE546437556F66F93FBA610DFA70D12D3F42120F4E4EC1D4F40C34D455B36BA2B144EA970CEC29E80605D89CBE7005F47159DFC030B3D3A89EFADA4A5881E390066CF5C5ED76E2FE2A18088CB3EF129862F0DA99D0149C3E7E0CE53F60CAA35908E0E0453ED475E30318B3371D572FC3F08F06E1E99DCFC0239B37830D6F6E0C58B4542CA8F67A580F052743109A0D63800AC3CC0CB5B3108EC40C9074BE2059C1E9B4CCEF9B7F139BB69EF5652D82F20D8E826F6004F2717C50535906B555E5ACE7FB0602EC38CD4B50878C0606A1EBEA158846E76E19EDEA932D968CE1AF9DCF0495E303A415E15485FDE6E0EBF0F1898F60C753DF864D9B1FC560E4307A3F1A97E1834F2FA4C6F1DAFC684E0391E5716374A78131BE37B60D199834B050852EE85D28604D01E00F04C13714A452171CF83BD4F3C9780C8630E04D06C7179AED12F45FB0986461E593203401D2840F9997EDEA10A6AB436D6FC1FB1F1E81A6C615B072E51A68695E0994326D360707A399F2BF96D6FBFA5724696D1A01FAAA961D7D8686F5B901FA4CD761CFC32C118391E1A10515C4314B5C049A854B5FE2B33D34F343A1B719EF605F6C9448BDEEF3F7C12032FDD9A913589F3B3140B54073730B96B68DE0F194B148AC193DAE47F92C6D1ADEDBC0C78BB0444FB9123E3A05522B124024504659C262E39DADD2774D16132B4440295A355AAD39062C6549627EBE79F33AF87C5FB18729C0AACE534A738505E8936E1C27D01880BE1AC963C3684A7D34ECB551C0421049ACECA8F2A30F5214CCEDFABC0165173D361060024E32A72C62919635C96CE704D057EC060122278042B8879470B713B291680412810492116484A4CC6AACB35EB3A6EF4B5F4F6D5B33B64D53ECCB5D129C0051076E362B9FF4B42BC9F80C7C3D972BA630C2FC5FE52EA7725910434925160D2E128B7372C1BAE52615B926CC9A1E351434FA8887EAE4496A9564622C3E1BEAFFFA80D7A2E1D9997D1C6752EF5C9D00991FA05E1FE22C8DC766A6BB1391F0E8D7A0E7E393C1E0ABB158AC0337C37A0064D19F5EFCF2098608BD0C46F3F348C982FBECF84842492456167B2B5A78BACCA925168DFABA3AAFFC607878F0225777442780D501A6E44B2AA0B1F230DF478AA01A3214094DCE26E391404979F5DAFCA2126F2E004FCAC9B0FFABDE2387DFFEF57FC5E371C2348546813DAE83372A41DA401528FC6088CB438F09E416E3C9586C64D4DFEB9F1E1FA92CABAA5D5BE829ADCE1C58DC0F4B341A99BEF4F9B9C3BFFAE5CFDE9C0A060334B9C58147383EFAE6F1D639414E82AA33C4B3C12C676E98BF2C2D8B47E6FC83377BBA027E6B495149691D12515B58EC29B7E417E4FF7F00566439393E1AE81DF0F7755CFAE2DCF94307FFB7038B29BDB7C31C788C2B5C597438CCE381C0C1CB9C8C391E1B02BC50222B5492C98289D140271A0177399CAE526F5575A3A7ACA2A6A4B4ACC262713B7F47D15C0D8E8F0F8C0606BABAAE5EBDF4FE7B6F5D0A87D8405F073BC72DA6A7740E5CCBF6BA7DE1F702FAFC522A5358780DEDE01523998B5B7E464BC01D9E52AFB7A0C4E3C973BADC4E97CB892342679ED34D6FD79D4896C3459B2EA7C391E7A2FF8D228822FB2033AAC84A4455E4B9643211961372389188CFC463B1995834321509CF4E5CBCD0DE3334D41F3401D67B58076C06BD20F025BF1ACB204227C3FCC6D8C1B386FEFADC69AAB7F573B319BB2F4D923A9DF962381CD2A3B3CC5B1D44C2B42FCE6353DC94CF93A6EBF4824EBD1DF03B7E396A9A34317F5F249A00594CA4584CFB7402CDE0C58C71B9CAC1CA265F554CFBCD269BC851CD551D18934B4B07252C77D06352869910C1542B88E69ADBA422B39AF4E36A16031328D55496DF15E07B46C00284C022A95158A0850CB0E913035982E0BD0CAAFF07B7BC38A039A5AA7C0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (15,1,'Crypto-router_symbol_(96)',0x89504E470D0A1A0A0000000D49484452000000600000005F080600000017B4C2400000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001AA74944415478DAED5D09901BE5957EDDBA463392E63E3D33F6D873F836600C3826608249C8C6040824D9DA65D95C9BCDA6B6B65249209B6C6D88A9DDAD902CCB1536F16643415CB049A08209C159C0388180EFDB339ECB735F9A4323CDA1914652ABF7BD5FDDD2DFADD68C663C361BAC1F7EF7A16E8DF47DEF7DEFBDBFFF6E09B22CC3A568F7DF7F7F8ED96CCE5EB972E51687C3717B2412A9C4BFE5C77DE3F8F2A9975F7EF93DABD53AB97FFFFE61B8829BB0D40408D81E78E081FA9292921F21F05B56AF5E9DBB66CD1AC8C9C98168340A3E9F0FBABABAA0B9B9D9333333D3363535F5E4F7BEF7BD5FCA97CA12AE240276EDDA6546E0BF6B3299BEB663C70E27AEB3FD168B05D4BF4324F8FD7E080402D0DBDB0BADADAD818989897DB8FEA5C71F7FDC77A511605EAA37FACC673E63DAB469D38F2449FAE2BDF7DE6BCECACA82D9D959D6097C740CD6911CB0D96C8C94868606703A9DF6D75F7FFD9ECACACA65F8365BAF34024CE8FE4BF2468383835F2F2E2EFEE65D77DD65A16D8FC703EDEDED70F2E449E8EBEB83E1E161B68FAC9F081145919D8732C5B6F1D8CA0B172E946DDEBCF9B58C042DB03DF2C82357BB5CAE8377DC7147166D0F0D0DC16F7EF31BA6F704305ABC172D3E60B7DB2DB9B9B9F9797979E6E5CB9743616121F308FA0C7BF6ECA16367F09C1A348A918C042DA0A1EC3C8EC1360B331D989C9C84975E7A09BABBBBA1ACACAC7B7A7AFAD903070EEC46EB9E4192C4BBEFBEFB13CB962DFB161EBB818E2F282860D244847476766623418FE2F6FD574A50BE680250FBAD5BB66CB9AAA2A20230AB01041B1A1B1B01411E44D03FBE6FDFBE76C452E24E79BEAEAEEED5FBEEBBEF1994A17B2816504C282D2D250228487FF24A4A88C48B7D830D1B363C585B5BEB0A0683E0F57AE1CD37DF248FA0FE1882DFA6039F35D4FBC9D3A74F7F03A56AC4ED76039D4B52459E80CD8592765F8680F4727E1101DE41E0515A49164C246066338505D6CFF0B568AA73F7EEDDDB3B3636F6120566F21C4A4FC91394B4F5D32FBEF8A22943C03C6DFBF6ED62381CAE26E0C88A9B9A9A00B701ABDD51AC72A5B9CE258D6F696979786464C4437183CE5333225C5F8D9E61CE10304FABAFAF17106C1BE5FA945E6251C5E4073DA33B3B3B5B9AEF7CB4F2713C6F00AB6146209EC36408DFA318B3234B8680791A5ABE8840658742212641580B00653608E0D0F8F878349DF740E087315362E723996A5A9A83D5B13D43C03C0DB59ACE671E4000928E9384200101AC84D321208AFA3F44DEA356CC4400BEAF05E3436D260D9DA76185EB40AC4C94C9908C908E534730039882A6E50178BC8FE487BC88E447AD92D19396650898A7915420F0261A66A0EC87AC582121442FA7294141029F485083B9326E5498198A98A3EDD8B1E3C3A8D94F60017535A69D8C8063C78EB120BC62C50AB2FE0815C924335C8F6F23C0124A5614CF75AE5AB5CA555454049839B14A9AA40C25E889E3C78F3F803D9C2140D776EEDCF9EF68EDB7E0B979983A56A30C992906504E4F952D0553A5A84A2790B32A9808A0F35439C2F41430908F63A6F5FB9A9A9ACF3FF8E083531909521A5AEA2D08D835A8D56124C18B8091B5CB8585858C50B4604AF32364E1E811F4371CD8ED069E2021E0D19E9E1E029C86B04D44209E336BB7DB7B6EBDF5D67AFC5BF7E0715FC59E2180D3FEB032AE6FC15E4C56AC76BA0E4052428D52528C07B88804705F08C115946EA163B00B780E6D8BB44EAF516A8B013C676060201FFF8E99BC01971FD89A60B104C8A4D36ADAC977DAA74A8BCBE5A2A519BB532587278B274DB7CFD4D9D939A37E3EF4086B8600ED185094075C4FC45CE4E8F719EDA758803126C2C5918C07E80BA874C09D8B9CB9482302507AC22A01B83F43809104A503F8422C5FDD47F10563477C2CE9833C2EB4680216036CBAE4281224A91E80CB4C0C58480CB858728800CC9C246E2A4BC603741E105D88DE2FC41B780952332A243C43403A316029E4471D8C4302641AD6C864417348D0A5901F75481AC18F5211A6109E890173A5A14B9D111101349CA17AC0075982C4454A5074A1BABE905A80085067CE7DD083F062AF88494B213FA9F62BE9677C9816C9C810A0F380C8A5921F5582780FA001D80C0189004CE6195ECAA06B1403E84F7184673C80E74095A0858EF1A41B1B14D99139D233041849D0A5AA05681F822E673C20597EE878533476C96BC9826E8A5A40CEC4004EF7B199948A341BF37351B1CC251B0F328803190FE0822E814F375FB8B0976385EAE009586CCE3F1709BC045DE931808EA10BEAF9D869B2547D3018CC550AA48BB2FCB9C85132A12B7B389AB37E22A080AC1F7B55201010C2E1F00C8DD1D09494A5AE05E8627E48922CE1A88CE9960C81B074F3D537DDF6981C95EC72349A1D95952E45ED5149CE9663DB109524FA4C01EA98A605705F4096A23318B068DEA41BF7F50851A93762117ABC9D9D0346F72E5CEE36E7BC2085009B62FD65D82B8800F2049BCD5656545454515C5C5C9D9F9F4F3323B2EC76BBD5E9749A1D0E8785A69AD3842D9AF19CEA62BCC96C8671EF040CB887C13D320A1E9F0F3C9E7118C31E8948311265CE4B548FD1EC9335DB09E2D5752257624B597B1CA5D203A228F4626ED12A8AA61366513C9E6F13CFB6B7B7CFFE7F2280F4D7893D0F3B494F31F64265DDAE6428740C4D51A17BBC0A5D2E575E61616131925088E0DBAD562BBD6612CCE82DB2608DC860094951CB6C2862A201371E5459052D25F0F21C64D0B66CB82D2BE7D252F534EE7BC63BCD7512C0D48839C00951301D8F88E637DC2D67BADE1702940FA7663F36A56763CFE1C08F13A0489ABAA4F34C35750D2B9655AFDAE2CCCFDF82165F96006E1E203912640E7CFDF1BC07C4A54CD9A71210035C051E14F0654D6D192380BEAFC893115B0AE2595CDD8B5EB2B7FDF4B1539795002EFF57E3814901D8CC6D8BDCBA69EBCD1FD9545056F10974888FE2495551FAD2D1484212640E78054C59B16C234FE04993354BCEAAE3C72A4B15787A1D12B18618487C63393EE221C4BEA8C61BB2B2B263F245379D8802234714841E5CDF6B3299779F3BF476F36521C0800C3E8312D4FED9CF7FE57693C5FA2DFC925B09305422A82C2F876515A5D0373004EEE161181E76431883AC21B03C19B24E420C09E0C1E7AC3CAA000EDA40AF141549D3B645CCB84A8B4AA1BAAA1A3F2B7DDE3258869FBBB3BB1F9E7BFE3976BCA812932042C67F5E378BC263C7DF7EEB8DCB4680BEEDDAB54BEC1BF3DF835FFDDB08D4D5F809A1B8B008965756C0C675F56CB26ECCB5057274E8EE1D80D60B5DD08F840C0D0F41440AC7AD39C98AF552C24B8A465E62DB9ACC2A0EBE0A7A6C98DB6E77C0F2AA4A282F2D878A7202BA0C6A5654E3675D0D79B9CEF8F7F2FA26E1CBFFF020B4B63733CF10635F822382932A416CC2CDFF3874E3F5CFCA0F3D14BD6C047CF59BDFDD2C45A59FA3E5AD252B952419F273F3A1BEAE06D637AC02ABCDA27C40214957A9B577F640736B27F4F6F7C3A07B10A448380E349F9A463596CD93A00DAA09F0633A6FB55861C3BAF5505E5686BD9481BD616D035457966BEA0CA3F6E8D3CFC0F3BF7C21663C90F8FC1A12285E88DC771384F7A282F8853FBEF6EBB64B4A00FDBDBFFFC787BF264BD2F7111CABAAEDF1340FDF331BF5B3B4B8186A9657C2BAD5ABE253D613812DE6CE22291A7EAFF32D17A0097B776F2F0C0C221998A297969422910D70BEB51D49EAD6CA4B12E83A9DA705FE575A5C0E6B5637C087AEBB16EEFCB35BD3FA7E6D1DDDF08D7F7A084647471901F1D800DA18A1E962DC1B02B8F8E76D57AD7DECA134BC61C1047C73D7A3455238F82C82FD89784A286B09881762CA32D7990B1568810DB52B614D7D0DB33E8123401413DE41E79E6D6AC578E1811DDBB78223271BB5B80F763FF702F4F5F5CC093E28190EF301391664EB6AEBE1C35B6F807B3E793B381D39E9C9EAF79F80FD6F1F608003E701C049694A2214793209C201BB1CDCF9AB5FFD2AB06404A0DE67FBC17E1841DD10D5CB441211B261EE5D985F0495CBCA60E3DAD550BBB29A81CF7B05ADC7B74531FE7A47571FFCE4993D18CCFB92C08F03AF6ABD2C40437D036CBB7E0BDC7DC747214BB901DCA8B5A3B5171516407E9E8B6DBF7BE838FCDB634FC26C30A0583E1810A17A04E8C017F51EB1AF24DB74D7EEDDBBC34B42C077FEE5D1FFC1A3FFDC1874E38247BBCE174102661EC5B0BCBA0A767E6C3BD8AC9604F8AA67702490555156F2F44F9F83FEC17E0EFC84EE1324AB15E077DE7E0B58CCA9475A1A9BDBE1957D6FC2C933A759AC68A8AB83B5F57570ECF4193877BE31919672CB38F820C4130B8D3C899C772462C32FD65697FE652A394A9B80EF3EF2E4D7F15B3E6A987B6BC04D1032171939D90E6858B5126EDEB605B5BE88D7D004E82A014282842E94A3A7FEEB5918181A88EBBC09F7D7A3D4DCB4F53AD871CB36B63D17F0AFFEEF5B70FADC399809F84173ED936DA001A8F5810006440889B8A091225D1D01899415E5E88BCFFDF8B167164D003D8A4C709478113C8716FC6422B48590960C352DCCC34C696D432DEABB1DAD8F9E9662856CBB1DBB0D7B364A861533282BF30A5A37E3316AE641ADABA71F7EF4D39F63E61423C182165CB37C39D4D6AC801BB75E0B2B31F0EB5B53F305F8ED1B07D0BA9B20180CCC71B515626072B2C3EF8BC702AE7A8639628292359DFCD9933FD8BC6802FEF5A9FFBE4188CA8752163FBA4228BDB17FFD3109C2B0E40733066A9309ADC764468BC66D8B192CB8CF6C8EF560300C3DFD3D10BF2EA114594446754525ACACA9866D376C66B7CDEE7BF36D683CDF0CB3A160BA591E47869048FDB86D813388C47A429AF45D164D37ECFEE1C34716341C1DBF1E68326F97C5548550B2BC247B8211F8609CC37301952AE630D606EA7E474E0E9324DFC404CB70E83E3359C976E24BFCB777B08FF5770E1D45F204088563839BEABD6BF3CD39E06FF0E441E65FE701D78E25F164F099117C12772E8E80BEFEBE9D2B96AFD0498DAE12D578828195F3C303D1E461027D07AE92CD75BAE0EA8D6BE1B69BB7218816387CFC0C34616DD0D1DDC31E75C313408D32AD8AF2120887C23112D9CDE3B8C4AA3B1296D83E498AB0216F22188B49456A54108DC8E0C1E6E428EE016000BC9A4109D0D3D571CD822FC8A8ADB5A559AC5D559BA21235B2F4A831E8290A270DF04A60A5F7C8CFCB87CD1BD7C1CD1FBA0EB2B212D64B819BFAB43F00078F9E82B60B9DD0D5DB876086181124355BB75C05D7E0B9296675A0572029A1085B0683B3189003F87E33E85D53F087F78EC2D8F838D0708F568E5213A15907AE66507A575B4B74D104B434378DDC79E7A7E2566E0C3A0F72744EEBE6C197680A8A9C0086C82D292A846B37AD83EBAFDDC46241AA46417C755D0D66446E162328EB50E3C12BFBF643517E015457951B0D286280B7B2CE93F2FA81F7E0E8A9B330393D89898145334AAAC01B0756B30DDA220D7452C49E0AD97CCEBD68023C9EB1E0201640D5D52BB4E3EBD1B96484D7794EEFF98BF978FE47AEBF8691D082566C315B18F09BD637CC7BA7FDC0E0301C78F7301B362009A1EA9A82B53AD6194299F9E5DE7DF0E5CF7D1625CC91CE282F6C5AD780DE13C22CAB0F86C7C634201B011E972C0D31C931A2A7F3024AA53FBCE82CC851B2EC1745A5259F7DE01BDF4629B0278F3CA6DB75B2B3B2AA123EB5F3D6F85352D279BCC1E0D008BC73F838B475F5E2E790E292A52441DC387F6C4143205FF88B4F6176B4B099F803EE112CD2CEB3D15B26475420265C62EE78C05D5B08F8FDF0EC4F9E8081FE9EDD92247D65511E406F37EEF1C0F32FEC81BFFD9BBFA3DB16932FAACB5C559AC6784D8E3D0B3EBEE346832CC3B8B947C6E05DD4FB0E2CC4C8006255AE2901BAB2A2B9D882FF8F8E7BE1E5D7F6C3A7EFFC58FC6F0CE17BE5B99C60CF4A3D44B1ACAC84756AFDE86D679A5AA1B77F10C67D93209A44C34A1974A92979F8FEDFBD02FEE9A945CF8A6025654E7105DB6E6E6E84DFFEF615B8EBAE7BC0685E506AE041430E2173EB4DD763D1959516FBE7DB3A61FF1F0E434496D8F585F84515CEFA35EB712662DB5D7D83F0D63B47E0AAF5ABE1ED83C7A003258624ABB2A20C6A5754C386B5B5AC204CD52A2B4A596719E1A01B8BB90B8C940904D68C758AB6628E6D10F8870FFE1EDC28DD8B1A8CE32E438AD9C5E52F98CCE67B99CE626F6858039FFBEB2F81CBE94C99C3270F0FC7E0A17A617DFD72B861F3C60549C2D4F40C4B3F5B3A7A94A028A74180BA1ADBA01A429DFCCB075F8A3D5598B6D6D65461505FC90AC0F9DAB8D707BF7EED00F803B3AC30042E130A0666E0D03B6F41475B2BF8BC1E98F0F9C0E71B4F4F8204357A24AE015B94656204B1BD0D7EF0837F85FBFFEA0BB076EDBA39E48623451938CB47D7BFEEEAF529BF181144B9FDF098177C93533031398DCB69CC4CFC109C9D65D359648DE4C87AD98F93A3E301523F434A8081110FF4BB47E1D0C946A842E9A95D59C58634F4D248F5C4BB4730F5EDEC6359973DDBAE9121CFE8301C3F72103C63A30B9F98C581AF5E64B7B2D90F067333A7FDD3B0FBA74FC3B6AD37C26DB7DD0E4545C5C9E3F23AEDA7AAF4C6EB37C5C7FD43582879BC130C68DFA41F26A7FC0CE840301477EB38D8E89059367B02725EF3F5FA6FE0D5F29CB5AFB6F50F8F41CF109271A2112ACB8AA1AEA61A0BBB62686CE9C058D0861956146C2C7E2406ECE8216183BD3DD0DD75018BBD70CA29B6FA47329B0D3E8BA858BD559982423A93325A1D46B68F9D38069B375F0B1FDD713B94975768D2CD84FC44A1382F17F57888C9C9D4D40C735F992E88A9F2C1FE47A0F1CBF1430BA0795DD668BCACD37B39096D79010408493BFB873DD033308AB1C7041189D25D0BD8CC89B494D2EBC9491F8C0C0D826F7C1CE6F9338292F1C94904289ACF83EF50265F15E0F1733E42923EC4A95327E0ECD9D3B061C35570D34DDBA16E551D678C31127CD301F0628F0551815991FA59F80135999710EEF538E43218CA8FFEF5C5FB00684642191A420C2C25CC82C56A63536D7C5E2F8482690DF2A9AA22F1249839E9014EF3739499703403AE148FCE4E375836359D8396962670B972611392B171E3555053B34AB9E74BD61092349026CB5AD2787931901C7E7F92AD5FCC640F215E7669E0B39AA97A8E4DABA4F9AB1313DE854E8436299F4CD27B80C04DB8CA52AC9F26E352225C8E50642DF43BF831461C397A08E5E928381D4E58BF6E03AC5EB30EAAB0F872E4B892C9E065C560841374E468E54647C2C53E7D5D09A8EA7C20BAC063620F9535B30C4910177563916ADC9486C9CACDEEB2999B6865E2743F376EFD44820CB68BF93E3398969D38791C4E9F39C58A9882FC423609AA0A7B454525FDCE00FB72098BD6790257E1EAAB5DD9908085C84FE208894649D924B098818A420CEC18E0025C6453A76D46141298F29875EE6151E67CBA9419D105312296F651011318B4CE374F416B5B0B9B954679383D35312FBF805D2DCBCBCD658F3B2319733AE91738ECF1E10A8DDAA7003A9503D0B07424121B9AA6E168894D3B4C4C7164964EB7C82AF5CEC5639EE401846348218139995997FD5815021C0A09B9CACCE84BFA28792A8E3C9E31F0FABCF14135B5E8A3D841D52F4D71B7586CEC32250540ABC58C0590955D1FA0D7453610A7A29F20470D6F9428B0E922CA7BAB20F3A05FCA86C62372F36945558AF404A82C652952443D2B2A452EDB7CF95404C59ECA1BC1250137C3B458E4882260C5F8654C7E5B5D17E1FDFC41022460502140A367A2410DC0CF7E663D1A0A4D40A65D6C3BC98D30A83DE91E313502AA0F58658E1C0905A7E00AFDA5BB256A34FFA585C3379E69F004A84FB40D2B81625659D255F1D9C86C603883E3E25A2422BDAAE029F186CD13A0824FD139A83036AD74BAEA3D1BF08DB747C3A1E90C9C0B06FFDCE4A4F7C70A01618E80240F90948308F049EC3EEC5E6539895E30EDF78C3661400C67604DAF614DE1191B753F0CB1E75E07B81434CA7B00AFF9218E00BA283AA2740FA5EF52243C3E3DE23EF77E67457F1A961F1E18ECEBF94E2010E8559424A87880A47A00AB84E91F652C487DE63F313501899BED3432159E0D84C7077AA6F24A2AD666BB728B33501B149A3EEF5B278E1C7C6A6666C6AD60E9E708D0C4003397FDA804849413F4F2A406E602599266BD437DD3E1E04C4D7E4979C3BCB79B5C212D2A49FEB6E6A6FF7CEF8FBF7F43017E52919F1905BF7810D68C862A5EA05AB95EE355690A2A6FE457862972A7BD9E40606A7220AFA4BCCE55585465BA428940B999E9EA68FBDDBE577FFDE2E8F0F0A002BA0A7C4031DC881E7CDE03781224CE4564CE2BD4EC684A619791807161D233D8EBF18D0C9E2F2C5F569F5754B61CABD12BE237C042B3B353674F1FDFB7E7D9DD7BC7868747146CFC4A9FE1321FF5E75CE439AF88E93C21A4AB0D54022615022843CA53C68C5C52249233D2D733EA191A385358B6AC2EAFB0B832C7E9CC87A51ED27A9F1B3D31D23D38D072E6E4D1834F3FF5C3D7C74747BD5CBAAE6A3D9FF14846966F48800109116E1951185549F0AAE02B0376AC2311D923FD3DC3D8B3AC367B6E5179454D41716995C39557F4A74A063D57C23D34D8D2DC78E6C84BBFD8F35E7BEB79B702F80C27332AE821CEEAA37CC663F4DEE6142CB3933822A206B1604A21C1A1F41CDD7A766836601FECEEE8C56EB366D95DA515952B9C79F925D88B1CC8082CC1AFB95EA2601AF1793DFD282B1D3D3D9D6DAFED7DE9687767FB18F7DD839CA5CFEAA426A21FCA99EBB791CDF3B91B97A286B96A39A4FC71D51B68F49486B1B395650EB7CE7A2818B0F575B67740EC7913568CD7598565E56505452565F9E8224E576E41564E8EE372FF5640241C0A4E4F05C7BDDEF17EF7407F47CBF9C6D677FFF85647D0EFE7819ED5813DCB59BA8A8BC4E7F873593DDFD2BE474C375F48E06A04F54A8FFAE00E9B4288BEDBB8AE1E67D18FBC2207D9798545F9AEBCFC3C576E5E6E8EC395EB70BA9CB6ACAC2C8BC56AB1DAAC16B3C56AB6D1938A2C36FAC7CC2E178AB16B07B200614166E357E1A82C87408E86F03B86C291907F066BF9E9C9C9719F776C6464D83DD2D1DEEA1E710F4E7229765807F02C272B3CE011CE18554B973801497BE07231CF8A10382D17B9CE3FC84325C4CC01CD3F59C5A63B867FC28AFE2120F1197AEA4780C45336E87E26C8B1DBF11C31EA0FF843ECE91ADA9FCA8A70D6C9CB4458076848B72FCC1DA7079C9798B4A466C9084841849E0C91F30E154C8B8E20B3C17EFE8A9109129305F40408BA21743000862782EF111DA011DD6B3C59FCFB447543C9515DCC5C1C8E4B31CC9F820C3D29820E5C51B7AEDF27E8CE1574E00B0604400A0B4DFA29451D41B26E9FACB36EBE2E922F16F42527C0800C484188A0B3665E5E0483F5B9804FCA197444188138D7B6FE5CCD52BE4417A4844B7DA12B05217A624007702AC05359BF11197A50C1C89253BCCF2503FCB213B04862C000F4F98E9517B8FFB2029DAAFD1FDEE710B125BBBB070000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (16,1,'Disk_array_2D_(128)',0x89504E470D0A1A0A0000000D4948445200000080000000180806000000320BF5E50000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000010F74944415468DEB55A696C14E7197E6777767DE35D9FE0038CB9C261623087482348802828213FA234AA447E04A45655A4AAAA447EF657941F8D1A892A51A3A64242423489841285464D40A8342424DC4702C6107C801D03BEED5DAFBD8777A7EFF3CE7CEBD9F1ECDA28C948B3F3CD3733DFF3BDC7F75EDF6AC160B0351E8FFB0CC3D0C83AE605CB8A02C1F2F2A58D0D5E8FE6A1E1915103FDB15829E5E58D512A95D43C1EAF413FE331119D3092E49D5AB8A0CA4FA4D1C8A3626A3906D7DC6E359A989834C8EB4BD65697FB30F0E8E8988187014F8C465379944A32A6D7C4D47202B8E3692E13989C9C34743DCFA8AA0C7A53A914854261C3E74951BE3645E1949F928CE9F5DAE9CC81ACE59AC2F4C3FE817E0A87C2A9D0E870B7DFEF677EE6C9C9324FE8B1582CC00A50E3F17848D334C2A452060D2EA8AEF42FACABA5C6C6465AB060016DDBB68DDE7EFB380D0D9D26BC1B8D4669C99225D29E9A9A9213DFAA361392D1C6A9EBBA9C914884128984BC8F76717131E9BE0A9EE8806FF1A285B478F162AAADADA5279E7882DE78E3180BEA2CE5E7E753381CA665CB960951764C8CA530B2618E8F8FCB3DDE652108667930C0F813BE8685F5545D5D4DC78E1DA34B972ED1FEE7D7D1CD5440BEC35153533303D38E61A71757F09199CBF39E4863329F85E99555D5F2FDB2258D545A5A4A478F1EA5CEF63BB4777B13757B82C24F3CAFABAB9BC14F279E1B26E8C495652AFDAC4C543B7F3E75C4E2068FB71434819745454518FF9E5E50504085858532000E619AD797A14D3D3D3DF4E38F3FD2E9D3DFF3046FD28B2FBE48C3C3C3A2048A216A32AA6D3FC180EA870FA98E0966F5A7918101FA9E3187C7C604FBB1C71EA387FCDC7E74747488829D3A759519D5462FBFFC32F5F7F70B5315D18A416E9860402DBFBFC0C21CE6F1BF2B29A1310B130CEEEDED258B6C518886860611CAD858273D8C106DD9B245F040A77DEC6CB8E85BC2E3D7048382D9373A4A67ADC50241AC5EBD9AC642E1F4DA2CE1F92C5AB48896D454B095EDA1BE298D366CD820988A4E2786F31E74AE64A157050282D9CBF8171813FD10727D7D3D452626C9EBF18A42CF9B378FB66EDD4A57AF5E95F17530036641AD7E741ABA778649B975EB160B32C95A4CB242410C040B2075B5B7ED5768E5325E017F7CF659B6AF013A70F02075F1E426F93908C5E166DBDBDADA449B71AC58B142CED9B0D433588B35CCA0DF3FF30CB154E9AFEFBD471D2C64AC4460625CD3B64F9B4A589DCACA4A4A5CEF94FB850B170A6F9C18D9DAB0664D3E1FFDE1F9E785CE370F1C203F0B1ECFC05737D30DA5F34C8ED2405B8FDCC3E2421673C1C315BCDDC074EDDBB54BE8FCF35B6FC99C1526E8C478EC3F69EFDEBDA21458F450BCCB972FE7E9E88012A8D58F41A389D40C6198E0A60208F35C4E11A4EDEA7C6667B661BD0393A79E3BBD1DE6924AB98FEB86E1360F3B1E143C1333130F8C135AAD7BAC986C18594FD068A7D339273C9A0EB7C8C70AE3999AB6B8C05482733B150D19F46A9974D86937DB26CDCACACBCA671CDC8B0B80D953AB1F2B24118E640C8877366FDECC93BD26F77D7D7DF29ED3D73BFDBFF2CD308177D934FDE3CB2FC96082FBD9078FF3CA50BE58B4D4B134A0981B376EE4D619B987B9C6AA768B31EC7D0A136377B09B5298C3D60AC5BC95C23B57E3DDBB77A9ABAB8B9AF3CDFBA1A121F9C62DA671A31763B7339DEF9C3841062BD320DFC798F1CA178B301C8AD9DEDE4E6303F7A9D663DEC3152AF39F0B57B5C1DB56E6CB3BC78F0B26E88C5B8B1942578797DB1F7DF491B81DF0BCD8B486317101F00B6AF5E3A35064326392555555545151C141D962F6C3BD74EDDA351106FA4094DD37D9AF767FD5CE7EB19BC7CA67468C7350E5E7C957F28431CEE0E020391519E6B8ACAC8C311BF99D4109CEE0BF61A29DE367BBDE62CC2E1ED4CF3445D8E7175A4121CC2630359BFCC148C439172E5CA0965D2D549657262E08C2007FEC74E6A2F53BE6E7F74C936436ACC43ECBF443391E3C7840C52C00058AB1D177E3FA0DFACDD6260A721078FDFA75190782B28F9D0BF3122FD02B56F037CE82F55B4A06790E70BC5532AF54780BD9AA130A29AE61E7CE9DBD1CE5D760E580099854F7FDFEC1C292E28ABAEA4A669817E91105CB384245EAC42B6B6222C2D6C06F9918F3C73272E6D598799DBE18E92B19D3DF4C2250D2F3687E65990829CC049532E3D979D1A404458CE9CF33C7D4EC631A19634E5F35D779D94D649485E22FC8A772048ADC373830C4CCD1282FBF803CF0C35309F2B3F5488F61C7C8A011CECB9D76A74B4AB04214E6175230584A71E6F9085B2908238F237360C65868CA15D9BF150423831A57B7EB9C27043F3595A2B170D8181DECD7A058CA0AB09534B300DC405BA011623ABC9A042F95E565FCF23C2A0B0425FD0A87033C58179BCA2EAAA8AC2243524643AE8631DD4ED97C955CDDFA32AEBCBAD8DCE2A864AB525C2293E36093577F28C066BD83BABBBB19B342DE356CDF092EAE645E536A2EF66786FBB341C6F4B0A2549495CB7D7F5FBFF8E7354183067C95629D2AABAAA6E9B38F99CAA437A39F663E577C981A9F824E5339F31656618873F43C2D49CB4B0B68D45F6E625654DAF83513D75078D9F8EDE88FC723A25C9A759AE198D9D691134201B0FAF13226051351C42B03796B5D5D2D07B401DABE7D3BBDF4D2DFF8D93792B67570EE0A3F6DE4146C2AA38DF15454ADFA46395542BAE7F355D320AF8602C65DC8A94B90CD376A0F3B76BCC9ED6B9275B4DFC9C4B40744B361822E15E8C2950013EE243A19154CDC23B63973E60CADF696D3ED89219ACFF9F3BDAECEF48A748E9DEDAA022EC553E5AB514F0906D8DAB0204B98E72B998F3DACD8B76EDEA0F9C900752487C5ED753126E69D8B9FCE7E58111C8859D056D8E023167184E9743BC402C024C0F7AC59B34606F048243BFD12FC2598A30EE4910051819E4A392058679F2ABC94B7B6D286EA6A0E02F2A99573D04BDCEEE771215010FD90579F3D0B806F1C16F36806323B76EC9831AEFD547DEA0A3A16B00F6FB630AF5FBE4C1739F618191991201098F719C34E2778B169D3263226DB8579CDCDCD2248157839719C6DD0B992F9B48E5339A44BD7396E39C958E8875240A1E0DAECA098CBA6E635940A750B664B4B8B0875363C75C5D86BFBFBA9891518745E39778E4EF198AA0E80382D1A8BA75D883343D0A1DDB00228F6A8CA9EE650001C5F7FFD356B55821040C36260E273CDC90154C30CFFF5962D92ABF670E4ABCC90D262B7E3D4A9534C64325D34C1FBB361A936567A3DAF7085D979F3E6AC98B06C78FEE07FE6FC10FC211E996B4E0E813430E62BBC40A40EC098AEB4D978BB6EDD3AD22686E9CED96EB987B5556977AEFA83D7AA2FE05CC18AFD0A5B4BD0D9C68BCB2D05D534CAB0228A07A200CAC429BFA0B9E4E4CB972FE7DFAEAC39FEACF9B1D3F43063818B95AA821727260442D4969EDB9CB1B2D41F907383710AD3997AAAB4CFAF52272B757B245C471D4045DB10949906662AC0FDFBF7C9131DCB785F5500E7520370AB03A879AB7A0269D38A0F05DBB3678F588723478E7874552B5FB56A959840017128407979B9F8605D3F29F72823825900724B8D9CF798483814A23F7DFA2979B017C05A1CB2D216A57C4AC8EA406DDE5400F338C7A60D6E682E982A478E7040758B31BDC82AF819D23F60A4A36CA1721A1339F8C58B1769578359986965B7851845D5E7DD30ED6D607EC3BEF706E7DB924E733B6EED27A48B4F0ECB0A05E8FCA18DD6579BEF5D665705254CEFCBE4E0ABDA07F92FC737E73FFC50AA7D43700FB6804F65106405F8C8F290DE4201D89A18BAAA0841C0A8B5E32573C51AE9AA11560E80F6EC59CF42F0896F8679443DDDBE49E2DC18716E64A8EA0202B21AAB68836005CA644BA4A41F4110AE7BF76EE418A448E6064C9430B31562DC0A25939652C5D9FFDA3111D7C872D44C4CD0849C1926D65FD3442BF5A044E4C0441DC4BE0164C756025105A838F7F55B2B33CE4C9E6FDB0CC2F84556E14BC55650B0582249F3EA9B68853F204A8AC00DBE3B5B11C8BE4984730282B5825485093C15F0025305C06AE3482998B67FFFFEDE8686861A30182B0C675777EF6049B0AC2219352B82497E314373D356479B752736FB2665E68706E746451CAD46C743E67DCAF8495BBEEEDBA80E53C9CA5F5C1AA0F0C8503ACACF2C1FDBDD5296D1B49C5398F104F51360868607A779EB403557ECCC11B5B910EFF252212BC5E0E090D1D5FE8386FD8D7DFBF6490C77E8D0A11EDD5EB65581549273CC025DA315EB9AA52287A0EFF1C71FA72FBEE861C1B74A5916AB1F51AD5DB39C5B956E7DD9B652C7C72312216FDAD022E322E86B6A6AA2CF3EBBCBE6B355560BDC02B6669DA6DE8997ABDFFE2C140A53622A4E1BD6AF1386A00A08DA5ED9584BF7F2168B55C06E1A5CE06C984E1ADDB66DD3663C3E499B376D14B770FEFC790A0FF7D373CD8BA82FBF5E30C15B60CE15CF8DAF19DBE3C964DA52C30A1D3E7C585C00BB8394AE4AC030193855FEE8D5BD691F0D7381099D38F1B1D40190AADCE19CBCB3B3D335F776469AB2C5CC7EAD005127EAD37C1D62131FB57603319E2A43ABDC5D8A421C517FF2C9610E5CAECA5E043051AB77C3C88689AABF17E68AFB8758C8A00FA9D3FAF5EBA512988CC6E41B28972ABF76DFEDA22B91117137B76FDFCE0806DD30ED6D1FD383522CB2F224D3D46FD520C0FC952B575AB1801950A22E005A43FC5D47473B754C0D4B1F3055CCE0469BB3EDB7309130C7515CE2318109F78E05E3D37D6218D42287CB051F240B5079BAFD3492A90C038AA0042B039528C80F051A2B8898532A08BFD6D8D141BF7BEA294955FE79E4087D83ED606B924AE0F66036C441236A01AA6FE7CE9D33B64973A582F87ED5BD7BF42AD223F6E37F3F7488BEB514208DC982F0D8301121C3D251DF15B987D2A958245BEA67EF83326F635EFD165BD08C79E0FDF7E933C60226E60E2B13894CA4E30E15605715FB29F9F096DC3FF9E493A27073DD82469CB29B1577CF8E1D82F99777DFA51396C2621CA4F862012CDEE17EF7EEDDBC984F98FB02D01408589D2022954ACEF0A0888E5107C8960ECDB6158CDDA86266004E44ABA87943D9907998EFCDF45D67CF9EE5159972DDEA9C4B4AA633038A51EAB6FEF0A22C1C98309D9F4FD389FF398802B8A481B952317B9FC415A093155C15919C3B73F603FF7158BEB431233D7ED42D681F302D3A5510EDDCF6C65CE0FF116022DB81B233EFBD3A18625700499574BF33B5A4A79F7E9A3EF8E05F8F9C87AB13E6B607D54456B0040B9FD16582AA50E416F4A0FA77F060C78CC2C66C79BFBA42C114668A05A1A2DF744EAE6542626B1696A32A8702E4C2143A1526F332899D40AB449B2E3E6999FF7EB971E3069BE1487A1AEA2F76B9F0EC0A87639CE9539812C85A825741ADEC04F2CF0B2FBC203C01CF91627306E21705801981E0714209F24BF40C7B8C4008FE50D74D2D3E79F2A4A42F6050B6FAB4D377DDE6F3F4B7DF521E2A6B9C56C6785520B8449A028138C58FAAA4FA2F1E0EFC5F0F65DC5C984E1F7987DB2781893496573D56225C17842C984666F10934C134BEBAD94C6FBFFAEA2BB1884E7F9C0BF3DF2CBCFF1C3F8EC8D85434FE16AB5AB9272726E8BF70EE2C3DD76406D4C08702D86B0FB3D17994B13EFEFC738973E248ED5876F85EB90B5825254F7B808A673A34029D500275169594A62347300BEF201F7EEDB516CEC72BE91EFBD6B56BD7A60B47F608D9B96F3D5B1F821E6084C3E3F833AA100641403131FEEBAFFF8A31EB65AF1E98F0A3D9C6CAF5DF00671B98E3D83861E500C3B0DB880580E0D0BF7C396DF2150A2FF097AD7C4B79B2FDD7C1D9CE361FF9B30D333E2FCF744108A2A1146BD9ED04562CA5167FA1283902522766B6FF22CC85E6582C2E16003C045FD5C618B2008D997A89B5C500F1CA129404CB26CA6A16FB13B189E29FF2576FCF9C1278EB5D5D9FD2743D968C468BE81738DC7274C64C68BA2FFE4B61BACE8331BD5E3D31158B16CEC2B49FEDD0BDFEF8485FCFFC91C18184BDEACA8B29FE7F92CDED5AF8A47A870000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (17,1,'Disk_array_2D_(24)',0x89504E470D0A1A0A0000000D49484452000000180000000408060000009463FF180000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000011849444154189505C14B4FDB401480D1EFCE339080ECAAF481229058B1E137645F7E7DBAAD5A09894A6451CB5128D89E3B733947B6DBEDE9C7E3E3A6D54F5C7D110ECFCF7C3B9DF81513B7370F6C36CA300CAC9F9EF803749F7B40501CF3E1C0F93411EEEF79FDFB9B8BEB3B8661E0EBCB0B3F4550D529EC76BBACADE17DA556C187C8FB6A8534509D29C51011EA7A8D2F05039A092146F4EC0CF51E514562469C23E58C5E5E12A699E3F1E85DD775D00C284CD34C356354C5309C87FF6F6F2CA5F0AF56CC794AA9346BD4AA1484D7DA00A8E6D0A2B4D6185B238440DFF7E2F6FBFD29AFB245BF62B33EC75B631B02294652CCF45D474E99EFCD9052C8399153C439472C0B7DABA4942C8891520433AE9685B2CC8CE3583F0013BA8E908485C7E60000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (18,1,'Disk_array_2D_(48)',0x89504E470D0A1A0A0000000D49484452000000300000000908060000007477AFE20000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000004AC49444154384F4554DB6E1357145DE7CCC51ECF8CAF1927B11D038E13C425F4A14A0952C8A51212156F7DE4B552FB1D3CF01FFD15FA042FA8524B0554248D703071EC90D8F175C6335DE7D0C258A3339E59FBB6F6DA5BA4D3E93600EFFEDEBEBBBFB72B5AEF0730641FA66561369D613A9D603A1E438EC618C473483B853841B2BBB32D9E3F7F8D60C184340CCC660A3BC56C34829C4C711ECE202D1BC55209DDD6014C378F62A188F97C8E19BF4D89894643885988B32844DA7192E66A531CBC7A09BF5C43369BC53C9A633AA34FFA9D0F4788A3087DDEB3689EFCFDE6F5A85C0E86F2EAD5AB6EBD5EF77CCF132926DD7AFF11FBFBFBB8B3B181B5B5265656561098267EFDE121526767104890B24D61F1DD71AB8B9D9D1D6CDCBE8DE6EA2A6AD52A9AB68D27DF6D2226369D4AC17733B8DEB8829889AFAFAFA1525966210564320E361D07BF30C669A703DBB245D6F7505F0AB4DD6AA381A5A54514F27990643CC8FA78BC52C3E969076E2623F6F676DDADAD2D5F3C7AF4A83F994C7CC7F592DDFBDBE2F0B08B38561D30BFB2CA0E64423245D624034BC3C4F7FB7B78F6EC25164A364B82C6AA8E85C43AC49EB273969341295840FBE8002937AB598DC8E0F43F6C3219C3E4F3096F3F97C31A4978F3C7EF282C56E0B0B8907E14764AAC18B3B324A1CBFF76DAC1D1E101AAD5EAC0ACD56AA2DFEF633C0D6190D53831353B524A2049F41DB3881C1DF6E9D06097D43B2904933190225BFAE2BB44E199B8EFA4B52C0CD3804D9F699EAA488BB68276B1F2C96404637864B743BF266568126B89B90EABB0EA8AE358630D7E4F117F46020C436A3F2A4749A054EC59962912823F1C7FC4F6F6366EDDBA8566B3A9AAC4029D3DD9DC84797E4E5D46BA034ACB9D931EEEDDBB879B376F6295EC552B153458D0CFEBEB087BBDCF49D1B651AF68BCC22C2F2F6B596432197C43EC8FB4E9112B85D4645417039E36AE5DBB46092D214FACEAC67DD7C5C320C019A5A9FC2A5905416088A74F9FF6DFBE7DEB77CF2F928D1B3744A7D3E790F56153CBAADD21872C224349AC062A84244B2AA98D8DDBF8EBD53B262235131A4BDC9CB7626CC2AE49D342B15840A77D8C94E3E9A06C95C6451CD088C3ACB1FCEF643C2C96031C1FBD839F2F2145ACFAA6B021B173621579E13CD6F13B271F71F7EEDD89541A570CB869475CB9526790A26652B1E4B16A9743684B811B9E87541273809CCF434686A230C32DB4801CB5ADB00E83DA4C719DCF2675E0D1B6902F209B52F23090CB6575118A1C499F0E136C3099313797654ACE53913142FD9D83AA3BA264A5164796D8153E8FB8B9D40269B55A78F1E245284F4E4ED06EB7A947E8816DB53E684934B805F40662DB8A0CF298ED372E2E34238C8DE170886EB7F705ABA4562E97B1C2E00F78CE3E7DFA3C13C4D62A4BDAAE42621658B0EFFB5A16D789DDE2F305FD0AFE54B28B41499F0A5B2C16BF60EF10FB2D89B9BCBCD43E554C622C831AFB89129A546AF574A15414B66924FF1C1D627039C439875B253AA1447E3BFB8428E3EAC14B848C4BDCEF713C4B7ABD0E2E06035CF407B8E4AEBE64F0973C25B131D4A09949EBB80D2F974F144153258930A26D822E89F993B2743D1FA66D27A661A1DDE9C2F1FEDF56941A25A316C007CEDD1BDA7AC47208E3EE6987AEC2C9BF78BC39D24D63522D0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (19,1,'Disk_array_2D_(64)',0x89504E470D0A1A0A0000000D49484452000000400000000C0806000000D2F3BBC90000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000007504944415448895D564B6C1BD7153DC37943724851143592F5A1E4C88E637D6CB96EE5204BC3710BD8591428BAE82248760D90753701BACABA5DB45D6613A4408174EF14698BB6A88BDA559554AD23D3526D49D4CF11298922298ADFF9F4DC478E237788C7F799FB7BF7DD73DE28DBB6D73B9D4E3A91EC2BDF7AF3D6C5D9E959A4D313F8EFD37F6160208D442201BED7ADDD6EBF3C66737D1FC7952AAECF5F312EBD7A29B8FFB7C748A53A181B1D85EB795ACE75455EF4BAFACD6653CF3DCF47DC8E231E8BA1B4FB0CF1C13138CE10629C6B1F6CAE34D7EDCE5B2D7438F6683730CC606EE6B5C8D2E26270617410BE3D8073E7CEF13DFDB4BB318ADF4EC7D56BE2B31B7707B9C7B9A3A8651AFDFDFD3595C964D2A6693A1DCF3B4DF7A70DC7C9E0F0B081C07731911D478B4E1B0D70EEC135008FC6DEA856104422F86DB188E1E16124B989FE548AC9B28D95AFD6F1DE7B77B543695484EFB95A3F43F9EF5DB880DF3D7982C56A15737373F099C0C9C94918C7DB689926EDF4699FE2A7D3EADA6830803BF4D70A027CBC95C7C8C808127D29633093C1D4F909E330FF040BB7BF857ABD0E5F92D56E691DB1933D39C1DD9919FCFAE1437CC5B5D9D9598C67B3D6F56B57D3E57259A9F1F171300128F314E589D011FDC0300C249349DD075C9026C1CA894629E3F7D6CF3E9665E95EF4C48E3CA19E9C9AE29A4D198373E385BEA1C772B2A2138FC7F5BAC8BBBD3579AF7DF6E29077B2268FD896271A8D6AF9504F29A5633529273E23BD58453F168D1A520DE24B8DB254250152CA7566E8E0E88819CEA2500890CBE560D17058F69E6497ED2F5494521A1C74F4BCC57195996E349AB8FEED57F08FC57FF25DA65BBA0C4297B2EBA1924EE3A3FD021A03037068A3745C260412D8C8E7516A1AE867F0CF9F3FD7C1777ABE24419615C5671A4E84D6D83898060D9FC3C343E477F6707E6C0AABAB6B4813B21EFD48D94BB24C65619B95F98BF5753459A923D4AFD51B28140B5EBBD520D4D3AE927292E7A8548645C74962DE34D994A9D74DC97CC464F3C0BCBF386DD38C40598A29E558B9B0B9A1583C469C2A24EC36224644373929B1C173D1B2F2A74C0597BEA23C19A55815C4BC850EA1E27D534EDC40D75BA05B1048D54037598A702027482558017986EF65CDED5549E007DA86AE40B12515C79F19315EC425D5A51CC7C1D6D616B3AC741909216D6C7CAD9517161634AE4E4F4F35A6645CABD5F046A1008F063E26A62581A227E5DFA44C2EB78E0F3E785BE34FE4C32636129B9BF821F1F89B2FBEC003CE673896CACC66B3F08A9B68D0CE057284C887FE640362EB478CAB4E1FBFDCDED63E2DCB445F5F1FE66667B0B7BA8C5B3F7853FBF846D760F37089F3775F7F1D3FFBFC732C934FA6E9F32C34558A25221090D44A7665EC384994CBAE4E8C380F5B484845C118E5248B52E6660F8F4288F248194B20221FEA494FA2C53392DF690FBB41976C34BCCA4CAC1577B0BFBFAFB17BD6A7B41DC1774FC7D395D2E598020F23ECC5E7FFC75BA6ED15DAAC5347F385AE081F57AE5C1108C4949C9C10E1F6EE1E8ECB153C26EED36907CD561B1B3C31C1A3EB0A89750390327D10513A881431DDA25C87763799AC269D5EBB368A7F3F7AC4D349D1A1A73129B2A25B27BC3E2D14E1F1E49C988DFDE2016CAE952BAB68987DB089DD1263D09091600D81591409FA7B20B750E0223B799EE5CD78B88967EB1B38A5FFC1B157B1B5BDA32BC2D757A4E85988B33F8AC6F0E9C101BCF12C26780D0B07484C21612AC97658E21992D35566C6B6B338A99634C68CDE09753ABDDE2723B79BB0186485998F276C8DBB577895DDB871036BAB7FE07DDC210FC4BB777144EE700A324B1E7D2584DCA8DBE6353B3C34A40315DED95AD9E5C60710ED718F4F920B7402BBDF0111C667D1CFA904CD4351E4A0F3931378BA9A839D8CC08D0D13DBD0890978586E8FB85D564194FA4DEAD67840C3FA5BC1C5E2E222F809D0562764EF52A9A4B12D952CCEBEFC724597DACD9B377572CE36917F8BB22D6EE2E76B6B18E22648299A50B689CFA74FD7F1CE3B3F469858B11BEAF6B1A27E72FB363EBC770F7FAD54203750089D66268D3A713E3F3FFF423EE40EF1F93E658FB9F90FC91F222F5522DCB3F09DEB78B6FC1077BFFBFD97E20C752FD2FE4FEFDCC1FB9F7C8225CEA5DAC91FC6D4D494BE45D401CB43F053AD54F495234667672F3209EB3A4BB291B085D8FA235B8A272749D2A7A3A27A23D3D3D3FCFF0CCBCBCBDA79F8C5283AD2C789FF8F9696348784DF16C2DC12EC5EF11089D17E7DF5865F9CA19EF4F7A81BED71C7D9EF80FF3C5A4192BDE875BF30DB2FB50ED77E75FF3E8A1C77757DCC5F9D577DC9842432AAF2F9FCFEEEEE6E9510A8546AA7632BB9356368E89CA1EC44705CAD692782474F48C724DBC723D88CC635BE078747B4D17AABE5ED7DBDAF7EFFA73FE3D6EDB9606FBFA81329EF7CB9CC9820C5ABB44D3CFF5DEE686718E399411C954F8238AFCE93FCB6111BB948DB36F1AB60C548B02A46351BB6DFE58F1DE919FC6BA97ECE3D345DDFCBEFECAA54C681337439A8910BE2E495087D58B60F9BBCE5F77496D8C72E5DC665DAE9101EF9CDCD13729A47C2AFFF0F76E33820C635A0230000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (20,1,'Disk_array_2D_(96)',0x89504E470D0A1A0A0000000D4948445200000060000000120806000000A472DBF20000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000C154944415458C38D585B6C5CC519FECFD9B317DBEBF52DF63AB11DDB499CD88404A5710837D10AC8431E2B21A40AA90F4595DA271EFACE4BA5BE2221E853A9A2A2482D1214418B2008D4125292364E1C4262C7F74B6CAFC9FA6EEFDADEDD73FA7DB3677667379B84638D667C76CE37FFFCD76FC6AAADAD1DCA6432D52262B1C5DBBBF69C7CE2F1707D438344A351CF71E2924ADF95D5D515A98A548BEBB9E2BAAE78AE97EFBD7CCFF7FA5D61ECF7B95C4E92CB2BB9C78EF43898EEB577B44B2A55254B4B236259B6D801BBF2B79CECBAFE7BCF58333F677D6B4B828EE37576B4DBD333D35EAD979240431BD6CB4A4D348A39929F2F6E7E5C26A318329AFBDA486FBB2D8D758168B456A6A6A6BC8EBA90E4A22D92256E4DB5819197C97BC0DE5D2DBFE72999EECECD7B7333D3AB559148AABABA5A1CC7493B507A4330188C5B96A51465071DB7A1BECE7AACAF578E1E3D6A7DFCF1F73236322C4D4D4DB293DE926C369B5FC86FFCA6D0EFEC480DFADA5048D6D1A76C5BAAAAAAA4A9A15ED6D7D7ED46F49D9D9DD60B2FBC202FBFFC7BE9EF0FCAEEEE2E0529C12A1F7BE9B4D441BE30E625F17E1332B4B6B64A385C0FA5E4A4AB73BF844341EBBB8B9F497A392D5D5D5DB2B1BA5A2267255C677B5B62903107BC05FC9F4AA564EFDEBD52150CDAD19A1A79E2F831191EBA6DB9D6AA4C245665FFFEFDB2BEB2F24039D51858D5998C5443DE0DEC6D050A86834B474787C0D905D66AAAABAB6B8AC562FC66D1A9AFAF570AA0B771223D523F23232392482CABF1ABAFBE2A3B5030DB3604AFD4EFDCBE2D6FBEF8A2C89E3DF2FA5B6FC9403028584C685CCBCA6352D01B376EA831BDE095575EA98C658CDB2626E475E07E3E3C2CE70707650572D2B02918463F0D88D853BDDDF2F5445E516CE53866DB42F4FC028EF23270FFF8E187F2A74442C95603C5A7773305DCBEBE3E694E4DC9F8745A9E7FFE79E58095F0F43A5B0B0BF2E73367A4B1BB5B7EF7CE3BF20564A46E239188589B29397DFAB4C20C87C38CAEA043057133B45E1A9377A5F8E4ADEAAAB14A075E69DAD1EFCCA61FCFFF5E7F2B5611976B15E655C0782026C7E63BF4960F1C0804E04879E7A1C14DAF37B14ADE1B7B35D7B20C5943309295CABFB0112D0FC5F34C44A500B557CB07B4D1534E463DB1D81C86024383DECF4858DADA297CDFDFDF2FA3A397E5CE1D91F7DF7F5F09430F20A8D9B838DFDB00FED5A79F4A0C069DC5DC1016E3EF9EA1282EFADC73CF61F44FE5851F7CF08112CAC4317BBE1F87630C7DF28942B8E72B9BF2E671F3CF0A52C3375787C48EC5657E7E5EA6A7A7D5EFE5729AFFBF078C7FBCF79EA4917AF81B15A5B28057B4C0CD9B37A5D5DEC0A8462E5DBA54D87FB98C057C7CFF9B2FBE901A44FF3CC67A6F3ABB30FA67666654C4421719EBECD9B309A4A138BD7F6D6D4DE692ABEE13BD3D762D0CD3DA1A97801396C5C4BCFA2DCAC2A60C8BC572AE2A3039169B9C9F035D3F1FEADF0AC52D271B5B6939D4DDA91486DA22AB6B9B10641205D89148288CB9F979F7E56C03936B7939B75030D3E96D0947AAA46D6F5C26A7A6C4C2DCC6E6B82A78D570024BE0B15294EFBEDAA270BCE23AFE3CCF0A487DAC4639E638D25F635D4CA2B17A287157AA9036450562F15BAD8F9CC675F3BFE58CFD70E33B999C4C8EDE51CAF70DB0A82280758096621EB3ED0016A9923D4D8D2A8FCECFB9120927258BEA4F833898C7C297CBE6142B507D212AB218DFDF2358651306E08698FBBA0F1C907FFF6B1C35A006511790784B5C095B8269F6B9E21A85B5E87DE88360500D903F09E7C825A7A19966711065CCE5AC3125D19A3523B718C959F33DE4A0A228675363A34CC000B1EC9A64DD1818176A1AF405D2528295CD95660557BDCB15E4542917D1B5B39BF2EB61B139F46A16085A6973731306B048ED241E8FC3084DF2DD8D2914E3DBD2D3D323CB4B4B85D03353911E7B1B1BD2896FE97D638B8B328BB9C4A1E21D282A04C13BDADB55BB70E16F284811A5A44462E13E2CB38F20FADA312F83FF47D6D76509EF0E1D3AA470290FEB587B5B9B4C2E8CCAC4F8B8F4F6F6CA06E6B195E3EAC694D00A87DB0743AD61DE00D2101DF0009C231474940EDA8079E5CA15097BBB32323EA68AE7CAF2724107E5A958E90599E43075009D4E4207637EBE272E9DBBBCAE290330BD2CA07A53190183054D4E4ECAD8D8821A23553D92AD6CDFBA256FBEF4528105CD225AB8B859D8B8F8F5EBD7D5985EF6205CB36F871C64419F0D0DC91272E80A14C0881583AD3437374BFD912EF9EC56425A5A5A54F43E94ADA0FEFC1CEB6B16741DEF281B71B36E5141274F9E9448E2A6C8F296AA892CA095F00AEC0A7AFCC34F7F9A67416FBF2D237847DC7CD12D2533CA00F47EF25FFD5881A20118C62D2D75F0D007B3159315F19985D521A5AA15DAD26611E6C3A830D9C7A398550678B3106219DC5E8CB53C83C770F3EB1B9B3F9AADB06D41718B886AE22B197D2F31A9F822F6D3E1B915595B2596C5760F726692C992FD6B7C46CAC18307E5F8F1E3323E3E1E74C86C703852DE4FE6601B8B3FFDF4D3924C0EA0D8D5C9B973E7145D355940F9418CCAF9EDC08054C3B3D661BC3A60B3B8D3D37508D0C39E7CF24984E45750DA9A9C3F7F5EB1AF92035D19F6F758F31BA402A6B075608681450FB6A0681A967318C117FF7B5BF61DE8552C039B2BC1A984FB2E70CF7DF49164613CCA4525E1C028D1DA98929569EA36CE364B6114F5685CBEFCF2CB82124DBCF2357E7DF9B204BEFD5652302CF74E1DD0C92D2B5098A7199AF5C61B6F24E0E9710ACD94F3C37ADA6D8C56D9E4D401DB1107F9906197D9CD532ACFA23595AE7DB69FE7E36A6889CF10B47F1A1E0065D1302C5091AA6A650F2514FF50774ABEF1A4886BF978FE6B4F9F32E881601EE14858C995A24158D4602017453180825951462D95578CA0F23583C80A1EE47490B353DB29D48390220B2CD6EC4B62CF333ACF2BCAE8157FE05BA51A30BE2BDF7C2DA74E9D524C1007B1658716A38299C7D84064657FFB411526274E9C906BD79288826B8A677723AFD1A28C027EA3A3819EA20BB30EC92D5F21C4649D9984817B0EF6A92B045E45BCFBEED712689950DFB2A0168A189A89A7FFD79E475C7D90CBF9B4B1AFAF17B56A4CEEDEBA2AED47FBD5FAA479BC3E29C7D363DD732E65D4275C321C0B35A0A9B14165860B172E48570D0CDA7A44CD5557157E2620069BA903FD3FE792D4D0B952A9B4D2416A7B57FD3E3A3A2ACB28E6D853D6D18AE4C6D82410561F333531ACEFDE5D020BFA4EA5237AEC06984EA58DB0B77FF8417E8662E8C183BE854286A1340AAC0E697E0AE20619E65F7D751998D5B26FDF3E65DC4A78BA6F01EE31186E01DF0D22BFCEE1DD91234754683394282B8BB0DD522FC323232ABF5209CCDFE5C6D498DCF74F78CD817A34837917B077D691C3870F03339FB3C9AE5823F7C67272094A7BEAA9A79452495A2A61AA31F47316543500855F9B9B93FFF92C8858B67F8054853EFF8DE750A95C8C8A658B36440A358006181C9C159E3D18360F6540ECA1A0D74E9F562CE8261891EB332075CA348AF0D5AB570BC6E0DDC8A370DBB189D79E7D56B1A091C1C1E2B584C1AE1859F1ED76191E9851E71A5E7E3D94AD40E1FD8810CD826CFF5E295F2C8B7590F73F3B772EB2CC2B2A6EB2A08A774CC0F92574A55810CE109ECF82F24CC8529140676114C190B6438BD21AB42A0D50DBD85C589C29E7F87107E13D2AB3B3B36A01ED3DAA2E1863368F477B1CDD3D586CC75092BE9FD1CF33CF3C831474551986B5A71CB37C9D1064FC048A1FA54797F168FD2C81CDCC8E4CAB42C46FEFDDBB57229BC6D36983D173077BFE3B8A7B02BD4E1B4A5186AC9751507BC2DB6ACCB4C1EFCA653465DDC1F87314EE309C770B637DC5A15910D32F2382A4077DC4613A20D82A429BA9A0ADDB295C98D100C9640E130FCBC58B1755BA204879F815F23F4E8E7F651EC5B7AB98DB86852814AD6E5EC6D15BCF9C3906C1EFAA68E0FF3A84CD5AA0FF9F04EE2C366EC3B3B7B17E1330A90886348B1DE725405387E696E5D0E32794F2A92CA60F13C7ECB98F4BA867FF999F976DCC6B0013A33312371A0BABDF1925346CB0C6C6B9A253DD0B919A5381E5873A3DB67038FC0B746AC19937316E413A220EF560811868DDEA546421050C62D15012BC15425B878F9D0CC6A2557B2801267A05675054DEBADFF5FCC77ED00F9A1905822910AB1A5E92E8BB91D249953F7DD8C3AB18271CCE850212CA64726E21303C17D2DBDE8F43A930C50E64B0D560D00958607FE675AC81FB08292B28646B2B951DBA3110C0FE33FE757CEAFFC2F8362A4F39594A0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (21,1,'Disk_array_3D_(128)',0x89504E470D0A1A0A0000000D4948445200000080000000200806000000DA2270250000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000012124944415478DAED5B696C1C659A7EABFAB0BB7DDF89ED90C389E31C0E21178782920021419646485C5AA4956656CCB9935FFCD81F2B062131B33B1A21E6CFEC6A58105A4644C88878A2109189476449E22C0B28C48921977360E772FB6A5F7DB8AF7D9FB7EA6B5797ABDB6D8E4D18ADA54F5DD5FDD5F77CEF7D7C652D954AD1EDFEDBBD7BF7727CF0D8C563078F22A779F9ECF5EBD0F36DAD3BC79CB0A66947F9F3307F76F2DF19BA03FEB4DBA100BB76ED2AF2F97C0F5984DEF45D0AF90E559C9BFCDB5FA110BAAEFFF5E0C183B7FEA615E0D9679F5D97482494C0B7F2F0DE4E01DEAE35B3CD63AF709ABFEF8442783C9E63EDEDEDE1EFB5023CF7DC7395B1586C2713B69B3120F4857702A3BF274A11E1711C0AC1E3F0BBEFBEDB9DFA8E04F5AD29C0D34F3FED2A2B2BDBCCEE6CB7E9DA37F3D0BF0FD67707E40773CD0FF09070E176BB3BDF78E38D1B778402ECD9B3A79E05BECB14F8233C2A6F7722F65DAD798779932F9048C23B442291A36FBDF5D6D4FF8902BCF4D24B5E06DC9A4C269595B7FE0D64E7DFBB6AC3367F9A47175F76BA5CAEC39595959FBFF8E28BC97929006B937BC992256EEB0FEC6A52172F5E8CBEF0C20B4D70EB3C6F77AE12ED4E11DEFF2B050DA3BA808760433DFCCA2BAFF4E754808A8A8ABD6CD50FF04305FC90E0159794BA2BAAAA5D0B16D6FB5C2EDD977D63791098E7AE59E1C85B5848A18949FAE6AB6AB60C3BF309F5ABCBED21AFAF90C29393E975B52C6BE4654D79DCB83D5EF2141450786AE26B2058D74B39A3DB164D2593A1EBFDFDF1E0E8682A1A090D7BBD5EADA0A040E34A23CA3F77B9A3D1E8B670385C6F9622A26D65553593353535C5ADAB9A69E1C2855454544477DF7D377576DE205D3F4BB76EDDA2050B16505D5D9D80707947F1789C58E3E413F7D691ED3BEBFC60708C868702B4E99EF5B23630D7AD5B47870F5F17CC818101F91E037BCCB6EE7C308747462934364AEB5BD70ADEA79F7E4A376FDEA4BF5B5F43570A9B687C7C5CE8AFAAAA92E7B261E5331476743A4AB17894EE59BB4694FE934F3EA1A9B1617A746D230D143464607E533CF3DA5FBF7001C513C954383459C661825801845EDE4F899B3582F02506188B4DBA74176BAA715FC856893910F6A1437F666174D1C68D1BE9FCF9F3D4DBDB9B7E460DA77B6C449F9AA202BEF6A03460451BE14D4463310A8542B461C306C689905BD7D398ACA122ECFDFBDBC9EFFF54E69C3B778E382CC91C2B4E2ECC42581DDF0373D4EF27567662A5A7D6D656C189F33CCC0716573174F5EA55BAD17F953E9F1CA765CB96098D972F5F4E6364C355989E48840AF81EE54F827102CC3BE04120AB56ADA202BE8F27136238F5F5F5228C71E6C395CBBD74213A488D8D8D8279E9D225474CEB7D1A93795800BEF23DB084B7D1A860DC75D75D223F0EE3A270A0190A063EE059B79F9902E12BEBC7465D9E8C7480262626E8DAB56B0CCA8C64CAB66DDB261A343D3D4D5CEBCBA7F5DAFE39C92EB69919FBA3071F242A2DA5D7DE7E9BBA8A8B69606444B0B129BB438325DCB871231D6676EEDC294A910DC3BE0F3CBF9231FF61FB76C1FCF73FFD898E9B0AA0ACC0F098333EB394E7C1EBD0D049B9DFB46993CCB36238E1AA6B28F3C3AC003F7CE821C17CF58F7FA403CC74250CF07A7232336187A5D795B052DC3C27F75BB76E95FD65C3B05F43368F312FFFFEE187893598FEE50F7FA0C3A6312BDE862351B96E6969113C28625F5F1F3CB9EE86203149B9722C9AD45CB3A20EDC63241223C64A5BA075589315A7DF74DE40B18FD309C6D3588BA24C00E71E5452523293E4689901ECE38F3FE63D251D1322A73DD831DD0A93190F0F00416014830887580D8B971E6DA7A100CA2B5A87B2BC6CDFB9AC7432260C0A03D6A7B217ABD2AD5CB992F4D0089D351500F39C30720D3C53CC34824EFC4186F85E373D2AD88ABD6CD9B24568C77C784081F3F166A1F9CAFAC1A050343E4B0176ECD8417BF7BE3D6F41A831C9EEB8872D128C89B2E08971B129B559A73F58FD9B6FFEC7BC70AC73C7D9F3F45CB96260B2C269A6E041A7313795A100086B23EC9596A824D14101E6C21C633ACF9898A08D4CC12BA102CFAAE667CE9C21776C2ADD3183D0D4FEB20DAB82E06F94BDDD190E53C04CF0B3C054F394D661DD93274F8AC141E618434343710901887DCAFA4174349E9989238E70999836D083070F8A8B854B4E9831D4C93AAC31EB1C8FA3DDDD1203638C19E5E7A078A3A3A3E209343309B55A23E221572172DFD1D121EECE6E214ED70AF722AF77ECF4692AE47D4699607C070BC03ACA2D6BB650F7C1071FD0CF1F5C2CF7478E1C11B76ECD8FE6A2F57DBEFEE0C409D2F83A62B1501522247FB7D039363646FFDD759C7E704FA3DC1F3A7448E62AEBB5C77C27CC037C7DF0F871D4F43872946731204F843C8D733A5DD7E80A2B261400037C60BE27C503E00B08128290F81B8A88BB4FF0E2C36C1103810067AE09FAC94FD751205045FDFD7D1C47560B619288A413940425B1312885F95DC292BC648C8431B7BABA9AC6589960793133831D1A1EA6C0E0A058ED2F7FB981F16BE95A7F3F352E5A244A97562C333357C950321B160F7F62E6BAB6B64E62F1E86810662ECF22F182301083E3CB96D226AF8FEF83AC848B984E97F1AC499B7DED84DA4B3235B32FEB1ECDEB185B672814266F8197851C638F73413EB7DC7B1F152F5DCC9885341A0C4A9C86D2E5A2271B3FD3FBB35C4FB027D44CA5809169A692C8755B5BDBF58686867A681DB405095BFFCD814997B7B078515D0DD7CA2E1A1C1A125B8944CA395F08CAC2BADB3547C5AC39DF69CE3391A8E8BA9B16D45573BCD645F1E45484317DBE200B899353977BEE0A5CA33C2B79A6271AE19ADC4F556525622160BE24667A9886933E510C274C4DCBB31BA0CDFE25129D661EFAA9BCB4D80819F0A45A827C14A771CEE513967C212BB3F2E1B9E5124A160C0653C1E1410D96AFBC00CBFB861B59AEE90E644350048D055051E4A7C68685E28A51362007F8ED6FDFA7C1C1FF92A49117A4A6A6A6B4F5E5D30B80F58238B842898F66B68F10545B5D4501B6FCC6FA85B474E9522991506DBCFCF27EC63A26D9382CD40933572DAC30A1D8AA96073E68AE2C2F138B5CD4582F78FBF6ED9364F79FDA5A693251428525C5C20F3690748E94ABAFA086CA09C2A1703AB422E4C0DBD6D7374819B8F8AE46AAA8A8A0F6F676EABD78817EF4D03A8A929F3CBE42590F984E6B67A317D68CF9539C8328392AFA6BEB1650D0D45ACDA6BDE910800688AA0F35236D4C4FEA67F7FBD5575FD1D1A33D6C29E7E9C9279F1461D8DD6EB61A190C681818A0C54C70928531C8E5DD2916C0302B11F017B16BBFC5BF5BB7867A1CC23E72A49B93DBF3F4D4534F89D239613AC57F60D633CE120E3149664280AF3F673A917340F810B878361314B910F0A08C1313BD14980C483880612841DB856E6D0EA9EF56B04237309D29A6F316F3F4387F620DB8F4E5CB97D3142B85A2137C476EB5A2B19682637D1488A6E8FEFBEF4F633A09DADE9082A05B5816F54C678A8DA48F31FFC72C2351FF237F9304D892A8662800AC19C4F7F4F4506565A5111B746D969BFBE28B2F588BE348DE65513C93AD06B77F4A1F8009FA47D4AAE5E5F4EAEBAF939F179A604B54798793534386AC360C4F64ED03CCD50B4042D7C29FBF78F451A98F5F79ED355136580894DCC95542116B6A6A28D1DD2BF7B0423031DF9A1C6BB7B2107EBE7BB760BEFCFBDF9387F9A9AC71066F06144AA18747E9E6993EB937926D2DEFDE0378BB9EE9FAF1638F096FFFF977BF230F2B1D7E9F49D067BABC7683D1412086792864587F32354B1E6A4EAE926CAE5E8055AB5422A23669F4E1B55998F17832A3F4742ABDB20EA728C9B8694CDB0465E1D6F389B96A72FBEFD91205EBEFDA2CCC4406E67C7A004669A9CDC2B37A48A3C432BE43DF67D7AE5DF4281B061B94E686556140DB6121E94D5A1684AB42574CD73F967B9413B0B03C7BD1A2A9298EEFFFFA97BF1083D1205BFD84E9A6B0A119C66476E580497454EED1025661279F388C98AB5B314D6BC13C78AF999A5CCF0875F0843B6A8C7B743F91A3585DBCFDDAEE8E7BD8BBFCFAFDF705F33ADF47CDD8AC4A49946AD632106DE6C0B5ABB4DC3C63CD87B776CC6EF63CBF3E70403007785FD366FD0F4CC557CD540A780684413C27AD60550E3CF0C0035CE205D2D6A1848187CAD9B5206EB6B5ADA18181292999C0E0C58B17A76B4EE53DD25EC46C6A284B1F65F73AC1DA2D09193A57BC9142163E8432C8259FD533A6CCF210CAF1F8E3ADBCAFA83469B069841F3BA64A8232CA1B9C37F0FEC6190B8C98E451660A1F49E08859652851601FD7AF5F17DA1E5EB1991ACBABA55D0A4CE4460A43792D5C635D30D44A672F7BAD5E08190D350E03453C179E0CA10EADEDAAAA6A1CD1A513601CACF55EE9A375DB3650A35E2EB916E8AFADAD152553B45A8795CFB8BFC082076682950F98C57C0D3CEC13BCADA8A81467A71254847AF001B2D59E7FFEF9EB9C75D743F83871C3B8DC776DB2B4A2B2D80BB7CCF9C0D45428235EA6B8A6D65C7A8ED248732C5172554F49668ACF5F4A2E2E893033140EDB7E4FC821557EE7B15A5E47B6700245A5E5948A478599611BA65106BA66EF7C4E5A7355831A1B5329AF1D157C94A2D639090E072EB7DB71212D0B8E3647F9A933DF46464753572F5DD4E0E99F78E20931AE8E8E8E9B6EE546AD09149A171E2D452DCD2B24290273D6AC59439F7D864EDC25A9189045AB33049599E6FA9CEB37D4FD11B69A96D5ABA41102CD5EBD7A359765E382094B01A60A53F3C174DA03C6D0D030737C9A56AE582E567AEAD429F1048F3597D2B582C5E28A61FD7258656936655B2F1F9AD1EF482539736F6E9635BBBBBBD95B4CD1BD2BEA68C853275E41D1992FDE5CD79362C046198BF53FFAE823510056F8945BC511755022AE831FF47A3DE9F88FC9383CF8CD6FFE4D8E83716276FAF4E974C292AB244B0B8BD7855EBBD01A45FC67A6AAD32CAC5DCA38B158301DFFD5FB00BFFAD5AB721CBC76EDDA34A6537BD411932DDA033769C104ADC8D6A15CA5A525148A18D68F7086F88B10305818A0CF2747A42A387BF66CBA2D9BADFD9C818D362E62307E47E7CF0C13C04599595464B85EAC8970F6E5975F726818A67E3D4817A2C67B16B9301D3F2D9871540866C8C1EF5060BFCF4F63CCE7B8742243526283BF9274E24BB83EEB482612192E04C99771346B246B8F3CF2C8ACE3E05C2521AC6A2933F6A98D1BA151F4CEFEFD7482CBA5000B029687FC021BB3BA2E242AB07A9558B7B5B5CD2AC9E63A0E5EC689E3D3F7DE2B987B3B3AE838C7C72913537201A655B760621F721C3CDE23F7A8C9731D07DBB141C356C67D7CF366C17CBBBD9D0EB002401810287229E3DC630614DF55F957120D19A5E7F6EDDB338E83739580AAC4DECE983FB8EF3EC17CFD9D77A8D3F4CA301618705C7216A31C45FC0746575797283EDE0812A660F36A4892630B24274E9C60E5308E83E77B1A883F307211DE206282DD663DAF8E66672A8FCCD875ECD8B18CE3E0F99CCCE1CFC7162F982C78B7591B8309608A53C06C66B76C1C07F7E4751AE85422A2BFD1D4D82874EA8CA9DC3114C0E9353A7836390E3EDE3BAF1348EB1EC0C326F656A0D37A9AA86A7F957FA9C41A4A688635DD8D1B280034490DFE7A9602A02BB6776FFBBC05A106183FC0564D381F47E6CC1B7199D63153B36762A215FCE69BFF9915732E45444E81974EC86C8A000F0C8297733A82C65B38F03C0D398E83E7EA0BE0C06784DD2D99E59F660A3EDD7BB02939DE72724FCF9CBEAACA225F3CA3D73F4D23EC05141F74B3FC5359BFB401D8D53DF3CC33423BE6E3153FA6D5230A80388CA114A0C05F92D10740E6884E9CFAAAB3B35318A5E271B6F8648D9197797471F2E1C571337B8029160EDCB0AAEDEDE25747D0EA381847D06805DB8F66B36162CDAB7C7D82310BD08E35190BCD87C20BA66925EA0FEB83B61F6EAA4D7B3DF0459DCCE57A1D4C5D7730C6C17DFB24EF905A9B695547B3469329F3854E94A3273FFB8476B654CBFD871F7E987E6B291B6FEDD7EFF1DA07DE7BCF380E86F2984AA7FA15BAA59251CFA45F5481CB9723438B121414A9B8A109B3D01041B2F2B39F6DE0BAB25AEA65C44AB8527BB69DAD676D1D7EFEADD4BC46C60BC603276936A0B00760A2FDBC67CF160A04EA2407B16266C3C8865B88F70F2CBF815660EA1E4F46D307D50E3535D3268FD1A3C01B3B709BF9E0D97FC77D99E55A0E6AD0E1F4185D55D4FC0883CD2B5BA86CE50ADAE4350C02CAAF30E78B5BCCD795B679D3AC14F000C8A9A05CAAFDCEFB4969EBD7AF3FC54CD740BC624A717945A4BA7159493216F57FA37F3B9AC7DBD59AE64A686EF73463FAE6F5FAF5D77C855B9ED25D71CDE58E2562617FFEABE9DF881FC0E4DC209698B6D0A97D3BF464EDC030DEF08D6B65A34303D36479F3883D70EC7F0108698FD5A38C52720000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (22,1,'Disk_array_3D_(24)',0x89504E470D0A1A0A0000000D4948445200000018000000060806000000D9AB5E130000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000018E49444154289185904F8A135118C47FDFFBD7AF9BF993C45132C8B81AD45518F00CA22E0457D979214FE201240B5D78830105575E4026A3E2A4EDA4DFEBEFB50B276EAD4D4155511425E338B2C772B99C596B9F02CF4B29CF44E474EFFF87BF96523E88C8FBDD6EF771B55ADDEC3B25C6F8E6C5CB57AFEB78745C551253CE92FA1D590BD3A313C42A43CEF4BB1D2967BC01EB1CC607D2AD56D70DDAB7D48753F2308C7DB7DDB65D7BF3E5F3A7B7F6E2E2E2DDE3470F8F839BFA935994EEE777CE53CFA6AA38BB7FCE6C12299A395D5FD109CC4E2654DEFF9D77BDE66EEA397C7046D95C7330B943D76EE46C7DE5AF8483F97CFEC42C160B5155C01242205615C55A4A51721EF0DE1342C055150561181401BCF7D81028C6A0AA08E3BFAC840A80B66D314DD38CC330607DE277D7313ACF3711C4188C516E362D2965D6CE63EA48DF6772B9FDBF69F8E51C591595C0A08A738E1F7524C40820E6F2F2B2F52130AA10BCA7E4CC3D6B1104303475C458C3B42863DF136385B3165585ED960320788FB302E3484A89E394D03CA0A5E81FC739C561226564990000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (23,1,'Disk_array_3D_(48)',0x89504E470D0A1A0A0000000D49484452000000300000000C080600000024BA3E510000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000053E494441544889AD554B6F135714FEE6E199B13DB6E347E247E224240DE1212A955208AFB41554455D7483CAB28BAECA4FA01B547E032BFE45B7A08A765321A42054A9905425C1896DECE03876E2C41E8F67A6DFBD0EA88B2051B5231DCDBD77CE39F79CEF7CE78C120401DEE7B97EFD7ADE75DD2FB9BC46F982927AF3ED9F3E0EF3F73EDF29CF154579C0F77DC7717E7DF8F061E77DE252DE95C08D1B378C582C76914EAF514704FDE16101FC1FC11FB27679EF6FDC3FE0FAFEDCDCDCD2EDDBB7FD4313A06807890C6EDDBA35E3FBFE351134CF3EE799FDAECBFEEDFE3F26D7A4FC2C12627CF7EFDEBD5B7A9B80699AAB83C12073FED265FBB3C545A5B1E54055F6605926FA4E1F4EBF8F3E85F4916B3A80E70738F7C9193C7BBE81E4888E9011A2AE43BDA18ED4EDF5A8E723164FA0555F8761A7904AA524620EF55CA947FFB4133650554C158BA8BC58463495A36E52DEE5B8435D1183B843F86EEDEEFA7F2D3FEF66B3D9BA5A2C1633535353B15432A9244712A8961BB87CE922E68F1EC5D4D42472D93124BC017E9C3F8A50ED15745541D8322074374A0D2C9C3B8BB9D9594CF2F2B1D10C8A0317DFE7B270AA15D8913032C9044ECC4EC3E7F911FA4B33303B6241D7147CD0DDC7B7DC57CB1BB042218CA653288E266184344C8C17E41D11D3808A00E719C3D77614D54A19A94442BD72E54AF4C2850B797D6666466617305BCBB2303D9DC3A3478F64F9243A0259CABDE565F4A35184348DC804B06D1BC5621A4F9E3C19227EA0EB537EAA54A08F8C8095854B79F9B20C239AC0DADADA5B3D217BB47B5DABC18EC5E8D39367E5D74D247351944A25B9EFB192E2FD9862753AF25E6FE061696909131313039DE8636F6F0FEDCE1E3A7CF75D1FA6A950CC0392B1E80CB8D5EB42B7C2A400F7818F9D9D5D0C3C452663327145E8515C02D1E1651AED05837DCF87467A884727CA2AD72A4150F81614D9F73C4423119AAAF4E741A30F917888BAE24CEAAB1A443BF458C5307541FBE13985816A024193A5D2F9A152AEE3D3C5459C387E1CA23A857C1E498672EFEA55E8CD2D782CA52E1D2878556DE012E976FCD831566E1AF95C0ED3FCF6C3E9D3E86F6E42D77526676276322FAB344B7F6363A4643C0E8B099EA0EECDF979D4580591A448A4400A093B01EC2829C94908833D76351EC337A4E966BD0E43577966F0FBA8A6DCB97367777575D56E34B771F6CCC728AD37885517268D860DECA2CF32EA7D071D22A412194D0B6161E12C1E3FFE03A9A42993719C61A30DA8AB12A936AB106265D2990C6AA5355228CE868E497407EEE0806E3D285C3769176752939345ACAE3C4322934584C988E615FA4237A0DF80D469D3778454DE20C5161616BA3ACB186C6F6FB364869C12B55A9FC6862CAFA485F8C9F41514C9BD173B3BA49125A9C1A6273D4C7232CAAA78073F231FAA03E478C13E2F8F84C344358AA8A5C3D75489BA4BA445BF69DC1BF49F61A337D8CC21A26ED3CE543C39A90C41A183512AA812A66E982CD966D282017556E2E9D3A79E2ACA57AD56258A02C1F5F50A4E9D3A85594E1636892C799206DF712A294C5450417052A0B2B9B98593274F4AAABDD11DE7C55F65B3E8351A1200E1B758C849BBF1F171A4D369490B31308EF0FBE704ADD56AB12714C9FBFC685A52A850284840A3222926FE11C1389748A0DD6ECBFB678674D4B4442271736565C51DCB4F589CAB30CC10A7C60BECB2E3B7E95834769783EC97661303A2291A352036598ED781EF62AB51439B0DDDDA69A3B3BF8F1D36DE126D14EA7A444F6330D55A1D513B8E9EE3CAB9DE276D02367F9355FF9DD41053480B9912F5579C4291585CEA88FF85686CF19419F49FDCDB764C542468345EF70878F76F6265D90C03A2C2520000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (24,1,'Disk_array_3D_(64)',0x89504E470D0A1A0A0000000D4948445200000040000000100806000000A6E779290000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000007D54944415458C3CD564B6F14D9193D555DD5EF6E77BBFD1AF7D8A63D1690F070060424AC4013C646C922DB2C461A468A50B28C94ACD820651B947FC0229A153B56D10488128949C691F10C5826360663FC6CDB6DBB1FEE47757555CE77ABDBD8D89308924869E9EA5655DFEF7DBEF35DCD755DBCCBEFE6CD9BFAD8D8D8393E8EEABA3E4A3DE7F9ACBFA9EFDBF41FF6FD2DCEAEF3DB3DEE5F341A8D3FDEBF7F7F09EFF8D3DE2601D7AE5DEBA9D7EB239AA68D3A8E73859F52FFCEF9C3FEFB4F82FF967353920C59B55AEDCF77EFDE2DFF571270FDFA75D3E7F35D9480A5D25CC387C9FC8FAAFCAE49B1B81E4A32F8FD8BDBB76F4FB8FF22484D607BF6EC59DFF8F87883E79C1B376E0CB0BAA31234DF3FE2FFB1FF9740DF02117BBF6F48BBB04D15426EDDBAB5AF5DB45028F40D619D0945A2F9EFFFE0623A93C968C9441AD9EC730483619522F6D9FE657BBBDDB0D55E28953194E9477B2A85EC4A159AAF08EADD77BE75D669B4641BA8556B080403F0691AEAE52D18E124E26D7165D36938076D3ACE6B7DAE83BEDE5ECCBD788EDE8E245C7F18E148F80D5F1DEAB1D5EEBDDB28EEEC384FBEFE2617F01B7A3C1E7FA947A3D1742A958A5158EFEDE9D68E7E90413C9A8255ADA03D11433C12423860C2EFD3C8700DB8B685E3E522CEB936F29B1BCC4E1D91901F94C5B9331FE2ABBFCDE0485F1A895804D15000014387A1BBD01C1BD1C23646F83D95DFC2DACA123AE978B22D8663478760D64A70A92B60F8A04BA0560D56A58C4AA988C2D626BE532EE17B5615AFE69EA3B09D43C83430403B215347EED5347D8DD306135CB7945CB95840717B1366761557180316E631F77C16C9784C4F2493C1D3A74FA77A7A7A068D743A0DF6394AE58A8204E18FA5A52CFC7E3FCE9C39839D9D1D944A25B5CB2A168B38BBB5853AABD6C8666118061C564451F3FABADA4F9C3801CBB20EC8C66C1B3F1A1AC2F4CB970AA2BAA6A9F3814000897814E5601043FCBF755E56B95C5636CF87C3280A82E89FF88BA6EC602683D9AF570F9593BD9F323FA13F5F4E4D7936751D7D7DEFEB03030320F27DDAE8E8E8068348AD66D7978F1D3BDA7BFAD44974750DE0E1C37BCA314DE059AFC3A6F3B2CBA21732EF50A572515AB56C7C387C0A172E5CC0E79FFF01B19885301DF66464594A4EE0AF13DF36DF776A3544A2510403419E0DE1C5D463B4F7F62B9BA2B365AB4E1DA24793E0F95EE6B304118EB6E1D489E37870FF1E067B3BE106E36CD9E0AEAFB2A4080E77F1B7C6E70A57B2BD1D534FFF51884723F164329933BABBBB95C202B32CC25BF93C7C4601422141F671381486A594D69542CBF20CD4AA55F8F8CDEBCD3AAA0C68796505A619222A1C65C873E24D5926A2AA81A9A5BD06CF3650AE54E12794A55743B4179040E4FCAEDDBA4AA2EC11DB4B8CA6B92A2883ADE0E7B20D136C652553B7F6CA4912EBD0C9373E9E176E94A24ACC6A75757581B3938EFB55D5DA1309ACAE6CC3E2B781FE7E44A311262108935017C80AA95C647F5D62BF6DACAD916EE934892C1A89D01113E3E333181E1E463C16A35C0801BFE9419D963B3673F8ACA3033D9B9B585D5D4182FD1FA4EC91817EA422A67037128936A6C6558455270F94A5ED0A797CCC647E4435AFE6E751AD54943F6DF138C93783ECC21C863E18548109CA2459D20225F247E7C63A7E2171900B16171798E0E0EE949065C4E8A8F4556B284A56020173970FF62E1190DD6E3EB7DE75E949FE84F95B72ADFFF63D4BBBD8CD69D0FCAE359DA9B15A5A503B28D3647E9B01DB7B7C697140A5E271578BF9F7CAB56CDACDE9A346A3F8CDEFC2199C027EDFC8C8C8AFC901E185570B45C30CC41C5634160B22975B433E5F203C2B282A22232313F602AF7932F52C0311D4384442DD1662D23D72722B585A9E5746A5ADA4820271816B9E7213D4B5E93354EF576A964AC02611B15528C30C86141AA5AD04CAB23BF45912FC8C0FB384B2204DA7BCB489D89E7B398FF6EEF790DBCEAB73D23AC21B6EB3A24572CA57D45F525C1351455E5D5BABF5A5D3A49B80A54B8F085CCA341CE51C7D9FB3B523D5A7C8C8343DD8ABDB922A9554C681C5207C342241CBB4F013E61DECBFCC9123AC4858415FF3AE8CCDAC534E12451B0E6D99AA78AEB21762D029F245C0AD79320A114EF3BE40B430685BF860876392C5107F4597F823720EC772C8A934DBB3B17BD7B0853FD80A55CA596C050811B3A50C264F744C4C4C607272B26EC888910A94B84B40D2474F9ECC2A45972F5F3E740CFE90E72DB6CAEF5EBC50C46330F3527D1983D3D32FF1C9279F1E3A06E3ECDF9F9D3F8FDF3E7880BF140AE8ECEC54728A8796A32811E69CCF074699D8FC7932890293F91B3ADECEC07DAA55039C3EC31C837FC5D59FFEF8809CAC01FAF1CBAB57F1AB3B77F077BE73F6F35EA26BBD2CB4C46D88D359CEF302D95F6A6D92C88E1FEFC6D8D8341E3D7AA402A912FAB20B3CE5F94B1A08F35C6B44FA838637930707D5FEF8F1E35D3991693D0719C89DA74FB1D1E40087B06641541FAFAC6F22D81DC7B367CF7665F6CAFE89B246F3FA2AC5D19A1C30C9F92EB4363333B3EB9F37713CF90675FF9E71E4640C37B9E5E4C993BE18C99D13D0AF5DBA746972696929BCBE91DBB97CE5E3EF767574B2223D58595E909E52765A5749A779BD6C28E75F5F3949606EBAF73D8D15758B45B653B9C0B60868CEBE73ADE7D7575C8E4957A6804A64ADC2AB6C4C5A4A934650671CCFA64784CE9E6F245ED370BA521DFAE2E2A2DBD5D90EB956F98908EF0A2DE4D778C3E786B22FDD383333BDE6D8F510B9AFF44F6BD5282037CD73570000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (25,1,'Disk_array_3D_(96)',0x89504E470D0A1A0A0000000D494844520000006000000018080600000005E9F8940000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000D224944415468DEE559596C5CD519FEEF329BB7786CC7B1E32CB6639B903DA10941590802140414A4AA2A45A4CF3CA03E21DE7800893E50F5A51201A52A9578404195401555687042C8AE40C0C106123B5E623BDEE338DEED19CFCCEDF79D3BE7FADA9D4953200A52AF747CCEDC7BCE77FEFDFFCFB1E1388EDCCDE7A9A79EDA883DF6A33D819F7BD0828BE7DC090DB79BF313AFFF16ADDE308C63535353A7CF9F3F3F7337E563FCD40A78E18517A2F178FCB1B4C029F88A9F9170FF57EC18E69C417F2C954AD57FF2C9278DCE4F2CB01FAD80D75F7FDDECE8E8F8455AE06C3BD0AC7B2DDCBBA49C2178C6717CAB374DF3D8E1C387FBEE89025E7AE9A53286956432F904087A1CAF8AEF85706F37EFC7AEBF43ECEFE91D5448381C3E75E8D0A1E9BBA280175F7C31505050B00B6EA8AC1C6B3671EDCF5138F7707D1CED1C95C1FCF1CE3BEF34DC49B8520AA8ADAD0D2512094FA09D9D9DB1575F7DB592C20618E3F8A318E7FD1F0BF787AC1F4E87AB63B66DD7BFF9E69B3D1915909797578FA4B90D931DB665CB2BC25555D539A170D88AC5E3924C06C5B2E2004D8961983F28CEA5528E244054416E4412734981B215AE69C65C3732163A9366CDFFDAC8E0708964422C3B2039E190C46231094842E28E254E0AB45A664627BDED9BF430991209D8A6040301851B3292C8C6486BE0C3308DF989467654BEF2BF9DC3D375AD23317C636832271249442211090402976C086313045F8C0641A5C40C469C3595AB8CF5EBD7CBB66DDBE4C2851E696B3B2928C9A4A4A444388F02748598FC8F31BF43E3323939A97A2857AD6BEBE894FB6B36C8EAD5AB65FFFEFDF2C61B7F97DCDC5E999999916834AAF6D618FE1E74AB9E58487C0A97DFC8808B3F275BB66C96D6D65669BE7846CA6A374A4E4E3E99936030981153D3CC3D496F5C195A52C6C7C7A5B0B05082915C292F2992B56BD7CA071F7C20B54B44CCC2D50A1306EBC9806B32E16B5C2D03E2969595054A97950586870623C4C9CDCD259E6973434EA2DB9059D334D2D66748737333847F8B21490E1C3820B3B3B38A585A057B7FE3BB19CCFFD5CA950274F9B4AB4BBE04211515152E413E6BA0B01A1A2ECB430FE5CABE7DFBB2E2E93E1FB87BABABA57568481A6EDD9216D049E14C4D4F2B37B12C8B0C4A4EDD4A69E81F909D3B77CAD2A54B3D2CF2B518978A7F68624236D4D448C377DFC93FC01BDFAD5AB54A627309858BC42A2BC14F65785C4E770FC833CF3CA3849C894EDD6640E3EF4A4B25525C2C9F7EF1859CC2DE94654E4E8E8C4DCEC8F2E5CB65DDBA75EA775F5F9FAB006E44CD112CE9131535D7DEDE0F06455929BFB35111FE9E8D424841914F6EDE2C307939DED0E0C549D5FBA2D7B56BD7B05F4A5974515151465C5A097BE216E7E7CB93F0C6935877E9DCB9794CB634B9A42F7F691114D027A1504850342CC0E55E862FA651903550DA2F1F7C50AEF7F68AD3D7A7BEBB34CFCFA3B0A4F3A21A53561A8F464BDA88ABB19511E3DDE31B36485155959CA20CE2718F5E1AF78E1D3BA4B2B25279279410B4972C59A2DC8A56C23033369BF036DFB46993747599D2D272594E9C38213A4CE9B0E0EF55F841FBE3D9B312407818F20BDF17C389F1C8238FC8C183671533C425233A2CF8439AC61F035D7F3A754A26C0F82DECBF10D77D6EDCB8214DDFB440D1F9720B5E323C3CEC097A71E86123F649BC6B39724406305F870EE2FA158593B05485585DDAF21D3C85C2E7BC4CF4AA3170FF7CE182049B9AE47A3CEEE1E9FEF8F1E3CA58D8C0F7AC4D4BA16609CC091373E32A699289919111B82463ED7A15CFE88E14D66266BC06B76B4D1363AC5923D55A398A3947114E410D0C0CC8B3CF6E8487F5AA776565E55893505E9148509949B7D7FB00B78563B86D3EBC214CD7479B46C8B0918469383DB06223372AB52BAB5528205F342C85319750F82E9D496F7C136D88DFB17FA50A2D3197B7A42BE081C14131C1EF54B858EA9697C934425E141E4BEBF504AF7957FBB8345F617E21EFAB2B654D2A09D9BAB87CB4C768AF511E400590090ACB1A9F96098C7BFBFAD14F6352898A89D333B372BDA70F85404A098D3DAB0D0AD6EDE7DF6B61BB1685E48AB50EDC6F746C4CC6C627E43C2C24910CC8F46C5C6C2B21D73ABBD4BCC5EB35BEB7A77E97FE1D430246B923C3376FCA18B00B429612400C7CD8D8730A0A5A88E55A78CA4F2FE9272F100E2B2A621BA62DB3F0CEA1C1213717988E328E18046B817E85E1685CC7E333E5A38DB8AA8C43E5184295C6F934160ADDAF04E5015402E3269540E75B929F271BD6AF93FBEEBB4F8E1CB9226D575B54528BCD4E7B995F572DFE710A4417605C000B198510C6B029ADB0385AA8ACA7086EC7F8C7C4FBDC737F4095852A6636E9E60F8D91A1175A1EE684D086208431609797974B183473CE6A244E968CDF9FFB54264763528D843D367A6B81B0336187406F2130E9313DF8CD24CC2419CEC9937C14129B366D94CB9771D83562D23E38AE681F1F1BF52A283F9E270FD056803E07C21D05DE0DD0C0F98C1E991E9BE510ADA7BBBB5B09CB32E7B3E5D5AB5791A9DD58FAFCF3CF674DC2BA9F44DC7B0B252693F0CB6FBFCD8B13E5AEFE984AA15CBA7449456F56024F3FFD74D6C4AEC74B41C72BC065127E0F317904CCB20C9D8195EB87C97CFBFDD5F279EB88AC58B1C2AD6616E1F81B0DE2B750DAAF1F7D54DEFEE823F92BC22285489A1C5FC9B6810975BC5DDA100D76EFDEAD8499094FEF33D5DF2F7F7BF86195845F3E78508E4109E499854E2C31B5C0289402B8212D804252CDA7007FE5C0857AB1BF5FDCFC87297F1564FA94C00A22E54BA6999A1F3FFB29D4597040F31273BA5848F9C28E1FD77BBF08737E7DE613AFC6CD8AB798569FA0FDEBE9A19B512DB6B5B5056C5A286B75F63D3D3D0B04F5204AB4D6D673489622EFBFFFBE9AC33C91CDA51D7CFBCDC71F231687E406AC2B9C766F8637F15541B424D3FCA74AEC3CE850D1D9C20F7B13D6D5082B0D006F10B8BC6AA5C539BE328845C3E98B9725182D975E24E48E8E0E4F40FE50E9FFFD17D076F8DD77158D9A3686A108A2827E9AE0D5E5F61446F972E6CC19AF0ACC1A32E121078E1E951C600D0397C6A6BD83C6A22B307D7E305E7BEDB50178C1328620D6E74363934E59D1122314712B8EFCBC5C3037A6625F80824C272DDA8FA313B01A8B3716C5B83B4F74C2825F17151628D7585EB15C795A2F146EB0963614AC8BE7A42D4CEFA37EBBD85EF24B9F01D4893827570A40633F4288655B122D8CA21A89C358C2D84A2759C75BEF62A4E6F1453C3EF477F219005608063788444C39E4E6E6493C362BC1B02B03C5739AAE793C97363F1FA93426EDC4312DF9F2FC5975C3C0121FF2BE69EB939D8E6B042C45C2E595010F21CDCD384E9B4D120EDA2A093196E9BA5FF7996A62C6587545188F2BCFE9EEED93952B2A54FDBB67CF1EF9F0C3AF6559694C591D5D5297B67ECCC5E70DBE9B51954DCA3B381A60AAAA72350A841919EDBA2C36728185FD4A4A8AD45E7EAC6CB5BBFFB4AC0200EFAD900F994BBA71A22FB726C5C8AB41DE09CBB265CB549EC886EBA797B44ADA5B6D1E2CE3EE1E5DC04CEF99B43920431418438261B9FF31A4D6A994C1C111B972A549B66EDD2A3751EE653D03B032C0E1673BAF36A0A46FE1515740880E6F56FA8A83551743CE679F5D94EDDB43EA9E88A12F1B265B01CE0E6B316F12F434E16CD28B77BC8AD0A5208D82FB98C31DAA7060E26445477E162B500B897CAF85602A606CFD38059F82B02830567E8665AB8B47D2C610120D3B72B1B5551E78E001191D1D5587BC4C774BAA61CFDD505E0861ECDBEBD7A5291DDEEAEAEA249E743C453364F2BADA9E4967695E3B4C4C4C486E618917FF2898C6C61E085094D5DEAE02623F896AEA15CCD355D07C2E4A2D48965F7DF595AAABA998BD7BF766AC7CFC7D29FA97717A6615D4892AA8D77F1591C62D2D2D95929A55D2F14D8FAA8858F665AB547415F430F6D755D0E9D9595FC1309F4777EDDA25C9F60B184DA988A0EF7FB255585368BFDFB9D3AD82DE7A4B1A7D27615E45301FB2D4A517C1A04D5BDF2EB214A512F2A2F30AE0C4BA3A473A3B9BD509D67F41A6DDD6FF2E06411FC571DD8105C47CD95F2738FD6CD9B2057F2F7827E3FF7619674358471B1BA50D9637B7A8D2D0A8B4CC81EE7EF73A1956C9DFDADA32E1B3B563CEBFBEFE5A86D1FBAB32C307DC887D6B02AE15D3406F7721A96482BD4F36374B047CCDA4AF223C5CC88037C18C0054446D6D6DC42628BD802E41A22BAA2CAF7AA09B8F8E5A1208D44A7D7DBDBA71F4DFAF2CBE864D22FCBC078506B1F1282CB20C1B91286ADB7F1DCA5CF2D8631B21A0EB72FAF46975C8CB7667C3368258DE0D3A2DE04CC0BBA2BC8680524C860A71AF0DFA517F5F6AEF979A0D5B65686808A173503199E9CA588F4F20BC7C0EAF8A238415A018A08018BAA2E1882A1638664595CAB3900F2AA5A1A1419D3F386F01DFFE31B00E214C1A90E704C2501164401C756119087A06A2E930506A7E838F41123D323262D4AEDF9A1F2DCC2B3271C49F4B261CCF70D5CD63A67FC818D9FE25E17D56B7842989E74582A15432E9F0AE65E10223E3FAECFFF334D2A12DE99881603268990130E3A43C6B4B1938503A77F02F988C1F50F8266DC1013D601989B984E3FBC712700D673180713B30DFC78989C9C4D5EF9B60DB29E55238044FFF1B7E86C6BFCEEE897A0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (26,1,'Firewall_(128)',0x89504E470D0A1A0A0000000D4948445200000080000000600806000000D57A7A490000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000351D4944415478DAED7D09945C6779E5F7B65ABBBAABBBD5AB56CB9225599BE50563E34DD8181B830D780984254372806C0472CE4C801CE624B3713287335B92C984330B64920C13E684B01A07B398252CB665E345963759B2B574ABD5EABDAADEFECFBD7FBDD77A5D5DDD1660036EA9CE79A7AA6B79EFD5FFDDEFDEFB7DFFFFAA0DA594BCD26F47EF5A5B5CF3D9230D3977FB896FE62BFE1B18863158ABFDC1B9509EA500886EEF79AD19C66F21105E0E709D03C02F79F61B73D12754B7BC20AD5A8697DCF714D7C95BBAAB3FCDAE4FDED5DF11DC51FDE0C43B7B3BCF01E097F4F6FFEE14D33868EC9258EE5EF4E21F8B611BCEAD51A0F6C99D3D5DCBEEE82EC38A6EEDB941DE6F38E9531D5154B526E4435DE3EABFC8DEF30AE700B0C4C0B9BFD3BDE1D9376CCEFF224EFE4D4EC7E5C6B858D653CED717BDF8472AB6A3CECF185346391E8D0FCA72E75818E81537FECF33939D95F4A9A2A566E3BC9C528FC5BF16EE9CB8FA1C00DADCE6C2C15EC78B3F3E506874FC224EDE99B1FE98BC3FB7DA9D96BD869D3E3FFBF6CE55FAC1FF3E3611AF31DFA59E94DEA076F269D9BBD76EB71F2F42C21F918D8E3845F95786E9BDBFBA57E656B9618FFA5E5413233A62FC7782FD1C001664FFDA62A150FFA8CC19FD954A1BF384D7F9E0A715F713EF32CA2FC63EF10BC69581AD94D559BEDE3FD5FB5ED98C2C078DE7A7ACFB74C0E00BECFE9EEF845B8CC3D18FD5BA46F1D1DF59B49F4B8C921AF5FE201855452FCAD97270A0184FA80FF97D231F887BECBF09602D821FA97575D57B897EFF877BBABCF7756EC902EEAC04801B45FDC651F3EDB16F8C89E9D416BCF8CF36E48378E6F7BC1BBBDE25B7AE2EBDA8D34EB754DBEF12B36BBAEBEBEEAF57AE5CCA897BC5CE8F8547E372682B31EDF87D613DFEF5C6E6998B8F4EAEB1837DF18572FEC02A1DA48989BCD5977F7780BD44C7A27F2B6F30E6A5600A067136DF79C87B207A7F18814BC2D8142732E3205EED3D6FBCC73961441A0073CA084782AF4EBF637D772D083FE03D25DF70FB06D69ED500884D35101D54FDB1A8C7E55387DC052FE2EFB054BC4F1D519FF407E73E2677EDC82DB9A33BB73B8DF774FE8DDCB966DE68DDF95915C50142B1CFFABABC69B8D8EE63E1F3F2AB7EA024546258865C1B06F10EA3D75FE71402330C94E189BF2BB8BD6BA7BF39FEDC9C788F8545A5FCC371C7DC40D76FA6FBA8C22548B7AAE920632B345C25E5AA1F174C333828DBD490FA4A8433E76BFE41D56D45C160F88C7151E361B53AB4BC7F715603C0CC35DE1ED41478D6F9A776AF178B271E5217185FF5BE241F758B473EB0A48616C69D70BFDCC28FE8BF6FE8EAD500ABC4F7FB87E2E25C79EEC34D5658F8F9605AD63230D6065B2CCF3083D9A810C6B9C7AD20EA0A44493C17AC0F5E908BD40BF6F58557A9BF502543053102FD94FA439C4B13905F38396B56CC3F527030B9AB2C55182CD465F4D950C572D09D8A0DE7B835E86C713400BCD9D808DDDAAF4493AA83FB99FB7EF83EFFF6EE8BCE4A00903AA313EA96B0AC549433F3F21B1D03344FF2FED5A5DAAF547F77F22E945D9F5441D12AFC66DC236EE36BF28986EAB97411F5C394CD3E571FF69E539D12B9793E3755521F9A7B5307C8DBF896CEBC47E4C382FDDD54EAFC8DB9770FF6E33D263FEC1F898B2101306849FD6428D655C6C18EBF3DB1BFA8826B3533F8E6A0FB58F43EEF7824C6FEFCDBAD7ECBD4993EAD2AD23D3CAFDF66607D4BFA0DB7F006316A97292D37CE85C6FE0847F1676329AC01C0AA66130423F1DB55D9F479DCC6786C4DCF849F7DA5F7097E2A00947B8CADFE61B521720C9AF0DBA78F597F553BDFD9E94E4603FE33F1BF29C7CE7AFDC6CF8D8E1917CA9FF873B1E1CF84FF4703E3749D6ECD74EFFB5FEE887A2C7063A39637E3E48CF60433D6C76CBFBA2FC4D9358E44F9292FFA1FC158FC7B8D03F527A6DE5CF9F4CC7BCBEFF5C0D6D26D8A5930245E1FCDE42E377F7B9F188E5F8B7F358FAC8D8CB8379C515B032BA81B977813850D8E181D86402A6C69443AD0D18C7DB359B08A7E4DE5651334E7AD635D52C61B2B32600E19AA3E15E9012A9DEF0883EE8EC41B9C55864530F0EFA9FBE3CD56AFFF91B30B00EF310AB517C2FFE08EC64E585726C6E1ADC171B93CB8B7F00E335615F770DCE557BDDD47EF5C5BAC7FB47A49AE647D2ACA29A93D146F448C37CEEFE7B818FE49F5BAC6689C8F4C08B95934E9DA91A165F7487C95EC9EBE3E886321DDBACFC6B72ACBB0E79E887A677EA0DEE93D677E1035BA74ECC88B896F903FDFFC54FD7BF167767CB2F269ECEFB2E25A4BCA5B6DCF9F9052E8AAD81B8F9F100848D7F69C043E1EC1E8F993C68ED897B5B235FCDDCA4539838D4455B236D7AE197D0DF67985B5511AAE0766C1FE0B83B694D6430A3CC9395563739C6B7A86C08F65E2DEF88353B777AF3F7B00303DD0E99F48F4B7C7948265ACF246A32E99369F57B6E3860858ACE26D7D7BE6DE6655E47B56DEBE5EBA8DD0ABC7529B88FF5CDE3DD82CEF201120E3FB221B05C02A538CED339A968DAA1AAF9F8C73B9E7739F34BB2D3DD07387A3DCF40FA30B7416CE44C6E40FC30BF9D8E934712C1115A9D787C78D1EF570FE8EC61119E093F18471993FABEC70DA28CC7D43AEC4D1A4D86F8BB3DA14F72353EF8D63F3C3B3BFDF316EBC60FD7667C59678DC92B8A13EE51E92FFA626CDDD854EA718F94673FF3428FD96F88D587253F6E6EAD682A4C671E6B9A814CE583B562E00B456F777A49D34D796B25F5703211EE7872D0644A2825279DFFA82590D8A1867236AC870FDB1E886E001ABA08AF19F9A6553D3A67B34A6699AAFEFFB22F541A32AAAFBAD39296E6A6800945E653C1544B1B8C763A3EBC2BC84187E9F2C00190941DC0C3C59813A0FB3A637E7706E6B2F82A2468D5C7D3A922030253A625CE7CEC666A164DBEE9832A3064EAC4349E7AFA3CCEB5277041FEAFACB93F7F97F577F26B65580AF79D416D530FBD46AB559956229C28454D7404A107D13C7CD038C2E323E443D595D9F13A76ACD83C0B3C36D2B1600F5B7AD1A1A351B9F9E0A4E5ECEBFAD1ED509ADCF29F8E88E01476A41A04A97DAFFB178F7A9A3B3338DBB022396D893EEDAE1F892FA6C882A4D8A5D1B730655D79D89F38D5A804F264D94E1DA8CD12D9EB1DD176FADD22EDFEA3662A7DF94B9E958F25DA694D737F59703CDC7A9FE7A412CF5F130690A20537137F6B4AB5F5374FBC70C9380A9E01C1BB3308200927B6543CC6DD1847CBCE38F8E7EDFBD7B762CB28F1E688867011C27A140086EEE9A50E2F303318A4A3A7A2C1D7C5A43AB00962A99E2BB4DAB32B80B2C807D72CB79C6FE150B00C38ACDD08F37BA5DD147B8F0C2DB58BB2E88443A37414F4B9194B69BDF3456A16CFF4F5DEFA81F93B70CDC5084663A737E5DFABD28AE85DDE1FDF94143BA60A4BC3928792E67BB9332ACD96463E5528878C1C080876BBDF2E1BDE715A23963B3B3D9A8C760013AB5551716C4860B67603BD739F359C7BF278EF8CD9E00291F813979D817063D5F010320752BC30E0268480DF2135CE74A749927C6D78AD5B107C32F4AA7EAACECB1A0FB4AA26BEB120D83C90857FC1D4AD44C7BF6A7F87A1FFE86EE970008BFDE0440A5C796C12D38B71EC3ABACCA3FB97201D088E1A365953F1DAF5F83BF6B078D3D160A9F3E04460A1830C374A71F501F0C4FD89FA81F8B2FA06282F8F3DE4C548E63E54C3D1C6E155764008305D650622B1802394F503EC5AEF53F07B616253E052D0FCD7F9E3BEFE4BBCC51EBCAFC80E9C43A679179F0085DEB723AE8F90E533A864F8360FC28028EC007D0E691E7413BE7E524CFACB598B2900600C1F594F4DE82BF6F6D88755F410A4FE54DF72430FAAF41E7384A61270074B127E1F5759C1F80045251FDE42D3019FE6E5CE849B439D078E8E873C4AD477A5C6C8063ED650519BE26FFED42251A5F990040353E3612FED9A9FDE1DA629F798FC851DF1F559B2467B03D26D1A4855ACEB8B9BB2F9F778E58433323A165B918F939F3FAC0336CDB304BB52755B73B8181C591065FEB78E187273E3EF3A4EC7F61DAFD5AF0B87181C5283F076484C63BCD4B823F53AEB1AE1AE71CC339DD01E6C0073C594461CD4E00C64ABA736089438FD4E5890766A5EF1D001ECEABA3AFA92E761E06B56489714128DD7F8C4F3F8732F080A3E99C8197F5C8783047F7C69C367A6107FE660309F1A507088742F172780E0008CF03D0FA43298089BC469C5823D120EBBCCC28C9ACA1561E00DE6F38CF97CA5F1E79C87B93D969F895B0FCE74FC876CB9B8CFB017FE1F20B038365CD9966A5C79199D150EB728C11F68E19D599F1D02CE6E0112661E83068E16A0CE00760971AEA2F82FF5AFECBE7BFE65F7EFC71BF69B10F838A5D439C3D2809378592376DE9196E4ECD33F30AC87C0B55221D8583FBA16DC579163871D493EA6B703E5B02A96EB4A59A7CAE500600FA50F75F57D7C7305FB0C57B434DDCAD08A8CE74437A2EB7A463322FF6FDF0B7633887195333400454461D7173746A9093E1405CC8847A8D2F3E98219D9D3002FA03B563D6760A2B0B0028D59E1F29DF7BE41BFEEB617CA5A3D7B9DB302367A3756A380CA56C174F676748278E013EFAACA70362A2A657B4CEC8C64AB7ADF5D75F158AFF963904DA3E5EFB78F1432FDCEBDF5E1AB264ECB827DEA5AED0DEC7184CB30F004280947D3AA1EC4233DB4ADD0080DFCCBEE14D0529D2854B9309729B0086F5306F1F9D91DCA591F60EEC0F189B70ECB5014DA918B330717543DCABEB283B59AAC2545E0760AE0B24581B4AEEEB65B17F58D020E0F789CAD80F829FDB87E7F0D980FBB9B121ABFE15C07031CC26939ECE36926A70E5D4792B0700EF5F5D7AFA85D9CF1EBAC7BB3640208DA2110E6D2D7E5119D6D5A652BBFD50151C64571A22CAEDC1C7EB28CB62612F2707DA0504A473C0D699C7D2CB79374C0006BF706F79DD91FBFDB7F6BFD61267BD21A58D860400807F15B2CB6AEA6F3D8A4F4F38A1D89CBBBCAE9B31F94E18304FCDD3EFF62B2A52C5313AFB1DB1FAF15E666D0EE7506B82132422C126AF194C6C018C5CCC78758652BC22D6E71FE239EF8A864415047B0615C0A379312791F1082EFD00BF5B61DC16EBF1BC28F604708CB0074C4716E98BF43E74536873F0AA15038099496FC7D107FD9B597B33BBBAB758CF3A8E7A4EC5F10E84689D729453E8349B59C6E03F5B93F266433A8740DB434DFACD152DE91DCC89872CDAF8EFE0A4BB63C9DD5316C70740AA86ACFADD481A53B1545019441564E92E4F0F3AF5D75E1D890F8DA656D76FAE4B6CC7DA9977556D89FC6665A0291E40DB7355975C7C55A7E4D78B068FF5644EACE38E0608670CC2C148EF93E10ECEC731BAA0E9D871D72DB166007A017F20A0E7177F4320DE269F3D0D301880C273C0D7315D53F2CFE2C188DDDC178E1302448D759EF8004ED88DAD1ABD6201B060510367DC2EA9153F00CD9E7735F935EA3ED3347BE1E9F704AB839A1D494701FCCA013EF25C436651340DDE6A8BF36518AE89269E8AA0FF68C092F8120FBA1E897920A7CB2DCF8CA5B8C1D041370AB6ACE92C8A3F1249B03AC97A4697D9DA1B89330B5DC7C1BC9D011B345284E33AF4435F032B3D37BEDDA1592C37C143BDE68B0E10A008A8B81930CD26749B9D1A0DCD5B24F3FB1104BB715143D8AC880BB17E2DEC8277E985341C4365E1DA521F870CF4260745D6133031A4CAC7B9C24F6C59110C702786776244DD90D6D95C3A31D8552A45DDD127A2B5C12EFF0AF7ADEE0CC4A06AE8AC1A39EE4B791B060B83517C5D2CE50B4DADBDDC9C35C8BA6DC83AF83CF39425DE6657EA7B6B62F688A6D34DBF658ACD8564A39614A1BFE631473F1F31C30603DD80CC7FABAC1DBA7B6943FCDB1AD27707CEAB375AF005349527F2D1D8EC49ED9A9A84306A6414D23ABD055FD3D99B0022FD9B99AE92C7347E212424CDF200554163675D5CDC070045882DFB791F52D0E0F72B1300AABA2218A0165BBDE38783FE205961BD7377453A3CE7DD1E32B18E2FAB9CB87B6E0481BDC91775C4168540E70693120AAFE7A19FD69C2D01DCBABF26D003C78CE3640FF53700C59A074C0D1EFF3C04790A2670B32FCE3F56A4F2F705997CC79428D06A80C1B579668772E21EB6F57B0546D2D86BA0DA9895EAE79AE31DA35C73E113E2BCD28164D6D7763590A9C8DCA7F312D9CDE735CC5526E353E4B4FCBDE0299C77BD0A3400042659A91ACDB349F3FD78D24A3E1489BD2200706AC63B7F7632D2AC30BC362FEBD737DB9DDE065F0204D49CB664EE380234D8A4E54D17E1F53E4FD7CF5603266FCCC660812A7370FD784FA407C8C0E3502C6637FE2EED8DF5FB49A3F16EB769FE14FB04CD8D010B281174F10842F18725E8F48C365B1C709FF5F93A5F0A2FE4A48E8CAFEF70A1EB4DDA4EE3E2E2D87E57A4EB742D0DF1C2B82DA0C039949FC7C146D8F4FD3180988F470CF97D6B5666EB75F06245CAD5BC74ADAA638392602B775952E9859F198A5072CA032B0200B32A788D9E90295BB2E3F52598401A9C58EABB5C1D3C65C532781B6A6B0C6E0E03D7D963CBDC5A98219AB7310C5CA3A928640666A51E7C1AB0BE50025D2E62F4BB9A59A3A997060F8F6BAFAEEB9E42643503A95083BB786C21759D1370F9D8C2415F52073877595D3F5FDB8672AC92E87A4B6075B327C964C3B7B00FB8FCE390A6E3A840469A010FEC4D38A79274ECDFAF91A132BBE1A7E32258609A66D7920900E2C999D3072977960052968C53473FF27FE58F5FF90040F9873A7B0F1FAEDD9993E055AEC4D36CB999DA40696D04E5F6BF078334866C07D5B34E225F68678CAC6DC06455E6600669E1517BABA03991D2ECC4C8E240250CEA7786A7475DF77F6399DD83CCFB5159376C144AC83823FD5E77281337CE8029A226C527FBB24E562437DAD00176928CE6E3DAD0455238392EF9E3C7E70F4F30061B19E42603A98C32A8842ABCBA42F865D98B4A6AD3726ACB4DEAA9573C00E626E37250970D2CA17A6E30C45DED4B9E3361363416D994EA9FEEFEA124323D436B3CB39841F0ABA14C5F5193E8E118D999944C41B35DBA887A5BB255B5D1E3DA26578AD071D333E1C6837900B0CEB7477BC4393A23A56FE67580730C34CCE4E8EBDF24435FFAD2A2C328F8142D332D59AED24C4F0011E5F3F01F3D60BDAA04DDDD52397020B48AAED88E83E3477A0B791F86B2526EF300E8B042A7518F3A872FCE897171A09B2774D7AC73B5964789EF9905314F9B3233E489BBDE93002E5825C1F12BA14C5E3527966BE8CC57D1C2E0B60BF48287EA748BD53E61CA6C5FA7149E3F29BD9F4E028DCD427978E2866BA5FFEB5F6FFB85544B166783EC97E02710DC10C16580FD55AB74C9525FB7AE795C0FDFA7BF5F3A7EF843294016C64746E662CBEAB5E048B9398582F4F6F68A5BAB8993CBE98E54B152E95F1100A8D3D4F7C5DED03B51B2C1D5DB08B484895687D92022931C98B1AAAF1D389DB78459F3CC8E9C3A1D8D68894063B3279A413527D74AF1D0887EEC8C621B6FD6F3A3375D213DF7DCB3EC17C86674844C9D5BB346073760A03B3B75ED172170F50D1BC49E9A126B721226729D54BFFD6DA9CCCECE5F53AA92EF3679DB6D927BEEB9E6A98721921DFE05C0486F458068FCD8B1EC298CAD080094368D9F187E8739CE691B9DEDA46F3877DECFEB2F351B7230B7C5D533727AF0C225323A796C81B275F622B0F6A92E31667BA4E389E3928369349AD3F972F2BA9D52BDEFD48BCC4B43723A3A507FF788D7D72763D75D2751B1088982DC58602504C9705D9DE1F6C4841410C489ABAF96DEBBEF5EC40CEEEAD52233336039B508442966CF96DB3C009E78B5549D50B6A7A3A09B1EB1CC374616E55DA69366002839BAEC13D67CB0A53180FB588AC7A64E9BB7BE2E690CF54BFEE8E8E24C061533637D527342D1A4E6D19B6FD6AF07E5B2D8C8DE228C5CEF7DF7E94CB61A0DFD1EBEBFF39147E6B3381BD4B88D24A8767E00008B708C18E7D1D8B2452280ADF7D9672B7E10E845257A5FD07F1BD4DF05E9D0C7E17EE2B8634500C071ED8B69E9D2BF0398BBA817149F74C7748BF514E879AC136EBAAE83AC3768756DF545527DE4D1053B76870BD0F2E0748091A90CAA3B38289318440F5AAABB3DA4680CF6891B6F14677A5A423C2E1D3C2895C71F9755DFF8861E680EFEF4EEDD923F791286EFF84275E1EB34704B6473886344958A065788FB185B00063905AA57900C857331E6E650B92831A0EDD691231223E0D6C888CC4E4C347C48404757973E4603AF53FFB5F6E33C4DFA87B9B968450020E6FA0852F6ACA183CAE05AB343523A844187C3D6948D784EEDDA21D54717069B0BBCE224C069F67A3053CC2A13200830E83904D781E61631B085D15148434D6C0C7C09039E0DD8E4C5176B0A17CF93A88D5BD7999B642BC1A2190001D5C7C6312903E98DC09ABCE1064E186883977BFA699486C725FFE083F386CF3FFF7C29FEE0078B59820A58AF6BBF1FE23B2800D56F9CFE19220BB2C33E406376B6B1220070DEBF2CC6D6B4A9A0D9F393FD53BBD649E5D12685C7CCDA816E69403F39F801B382038B216ABE06CA072D53A7AB8F3D26DDFBF6E9D7783B81200CB4B8760F018B53BD4DDD3AF61762DF756AF4F0B0046009966634710C660D8160E042043C7FE89058001065C101882C802684E6777DED6BF02DC10263C72073DF367C81B49186A5D8E3ACF200E66C351774558CDA86EE66A984ACF559F220180C0A83EB60AB3CFBACA6621B266A7AC7623698DAB54B72A74E2D306F044A030009011AB201F59C52A03309D44ED6E0BE4D02063A6B005074EC1EB476D597BFACD960014B00509D94879680696D4F65A11D7B64DE47CF110058218CA4810A2186BBE7A6E803F03C5963F08107AA940093D9CE5219E3C27210D581EE0D2452D0B72200E00E0F5738180C7C170C15E93AB5F20C6A6BA0A9E964025230D920C2E005D0590F2EBDBE7EBD280C1A079912C0C735BC8F4EDD4550BBBFFF7DA9227BB5CBC46D1C01EDB9F7DE455938073316B304CBD0B26AA92EB9EF18E7CD8A8000ABF13308A0C2DF31CE4F9F075884E7E28109349BE17D2618C300A51BF89E04B851AF8B01E086D75C23F9CF7D0EE56F28A3F5FA1420D99DFDDE036BD7CA09304EE676726534829E7A6A42071B1ACC019CA3AE32B0D4597C690655F7D8E9C6A1DFCC568B6557D250E97CE2099DB566A2935EC22285175E386DC81824661CD8236EA1DD8880622001A4F4DE074B4C2320FC3B6610B94C1BC7E57E276FB9A5F9796627B2D17AFE79710E1C681AB9B1311DD006805562305B7A060D7C3687F250B5E92528DF9728635ECF1A0998DEBE7D557DE3C6666943BD44907C00A0E7A187A417199BEA79960DD2819BDDBE5D6CC88260E0D88C09012017F2A18D191D386995C10798A8EBAC00681AC9222640448D3F856059085A8CF718308CB963C7A4822051E799A93E1884E7957FF2C905016357CFDFBA55F2F7DFBFB00BC87B304C96F6972A0F977A6DE99684A10DA0DE8C57F62F85CC9F7CD7FEFDE35DFB4F5FE0A25D3D190081A317D0148FAD013668C0A0E9060CB292A68C81993BEFBC669623D805386D13C134918DCC4477F366E98609D4EC10864D874D9387E01551EE2DC84EF80A13E0B391D10B66E6922D6A71EB519B86632A0D3C47F6F56924850C026F413988C16EDEAB5FADF55E3F9FF401F467F15DFD37BE513F1EDCB74F7B00EABD915403161EF7AF5993CC04C2607A5EE78A00009C77791AF44F7AB5A18BACE149F3757C59D27C11545E3C7C58CAA07A2B09246BF30AFC42D684CDE2B98EA429933E6F6EDAA4B5363BEB960D2A01C44A821B03269401068A5240B385E783A1211D400F2CA503576BFE2A0D9F8B93C99B18659D39D6ECCC52C375E9B66D9B4408B8097D37F81AC06582590C50BD2290B17FF3E187E78DA39101E388EB4E0158DD347FDC570D9F3D3D1DDCA94130373535B1325AC1C78ED5B0C92428BE2BA5F8645068C6F20000E99AC10A18982458353A686A34CD1882E6C3ED73468D8FE324AB98ED1337DFDC0C16071CC1E3C0F3331E1825828760C61B49CF9DC1A3417411BCD237BF891DF8E2408A78AF5025346EBC510A2CF75AA8DB7BF39BC541D5909DF2D594BE674F33F8F87EF300A4D47537FD5DB4C474F059E501509695262FBA48D33E295EEB2B506E01F50C5C0D0E9A59C0E738AFCE0C3251BA51BF5DB04409F26127CD165DAB23A87C8F956624BB8BC84482A1F8E31F2FD0EADA6B5F2B856F7F7BD1A20CE3820B444E9C98678C6CC097ECE3B7793ECE4C502C2A1D5BCAC8D6E7E7CB64C84901CCC45630CB424E0A990071A15C5E1965A03D32525F3532B260406648F199606936C073E52CC5736105EBF6A347170E7AD22B3732831EB74CB6CC9771D8A2844584DACDE740AF2CE382D5AB9B7A9E9495DA7B70CE004CC5BF0D9AC9E4B598C673EF5EFDB7DE0FEB794A01DE1FD3E0A60C836309658CAD68F629D6677EDF81AC006093BB061F7AA84ADDE77761EDCF39810A5E1FC7383520697C2E8EE395510636AAD57CEDC20B7533846E5E374A90C52EB49706302DEF1828376108F601D8D225ADFBE973F01026A75939B8FAAA8C4877EE2C560949A0F85E06913D026AB2EEB35F7EB97E6F441D1F1F6FF6E7210B94074A428C2AC06060C028E6030FE8C01A5C9C81529112643DF69898D8386143F9D01E00B263B091D4621CE54D6F12F5A52FB56500FBF6DB25F8E217F5DFA3BEAF3D4076C0C8026EADB6F22400659F5F8223AF8376CBAC061213C5F28F595F0213B4D2630D925184815AE0E2F15C214BF118D41A34BB08CDCEBE2F40E9C62CB4602C174CD75E769998070F8A3131D15CCC9BD23200C5E0AB642E7EFEFD64004E284D4C2CA6F564D6AFF57923CB424B740DCFBA5670A352C9916E59F24942897AA60CB449632708984A7A04D4F6B4067701184DC1346EA44A64B6BB71E382ACD3B53ACA44C9042344A60B4D65329B373F810303A9D825E45C7FE6796DD8F48F3FC40B276D78BE38A6C239EAE793D7F95993FB20836402CDCF5BEC14D2D96701969E0767082919BCE6D0751DEABD0343CB5290134079EC7310E363D9CDA10B3CEF15BD22C84807606AFDFA1BFD9E9E7F4CEB61668187F22D8F6C9CCF1EBCC632CCE1A44A3247AE176A60406CB64793D62EDD3FA5C2C0401B5353F3FD02D6E01180603DF594AEBBF93E7A8468E74E4DDFCD966447B3FD4B7ADFBE5D8CB437C17A9DFB27D000BAF899679A1709F279968A040DCE571D3AD404015F831C29B6B4595AD23F504278DE0406C0C7F32378E2C4A8EAFDB17D5CAFEBEFF6D74F3C71B25EAFF771295808D0CFE2F32AF98E9932F091CF2A75D12B9E01A0C581995026F5DEA6762318365CFD02EAC6E0392DDDB80899C1A06AEF40C74CF3C752907E003A6EA6F44A50905592DE8195EE17D96B646463DE38C22B18FBF62DD66A667DA6F337DF6F00ABC4F00731CBC5963E0441121D38B0803D0C1CD7DEBC59BCEF7D6F51E9A8E728C29093FD7D691F200DFECA2C033B3A721E4C205BAE0E4A2FDDAA655D8F20449C3C6186D117B00F90183E4EAAB06D4B374D16D0034B13C90C6256D28D23BBB594B0F667F6B10D9C4A060D1B0D1EE83DC4B1F9B71E689A438209D94813A88FCB2D793F33356E316F6913274A6604DB957971CBA452BA52FD27990EE622104A021784E8FB577819382F016395CA75B8FB164D5C9E862FBB3002FACF468D2495C0FC3CFB9E3DE2B08B9619B400CFD999CE9AD6C9D7BF5E2CAE07484B36DEC36FB06C13488C064A3237A09091F4068AA68EBA4F30D10052CBA9BB00A202F024599943CDD6B40DA9315811B06F90F8002391007D4FF0A59D3C1E874002B59B9CAB6083887F138CC93DFFFECCF3CF8F23E2ABD8FE95C423E401F09953A7C4E7441898061EE0D1CFC6F1EE573C0304FDFD85C6155734339CD3B97A0DB8D5D4620C1441C00CA496EB8E1DE700A89FD0694EF35253D9A9237384D4653C36924030CB8C348B53B0208374BD9E5CAC316FF868D0C02A2A990B9877EE6C44B17B98D0F87C86426A2CB047F0DDEF2ECAE0024ABA4652D2659B3CC5DB6E93FA17BED07C9EBD840494044619A563FD9BDFD47FD7A6A7DD3A409FA57E4E074F8E2D5808AC568404C889136EF1F39F5F78654C92E1F3148AC1D2860DA51B8D9D994CAE043086066A773DEFCE16F075D76933A78D18414167FFE637CFF70148EF3AD094060CA83E26FB010092C9852200806E2327C0A2A6D38DAB369341F40BF41C510BEDA70CD4AECDBBE079CA0EB7A4B2E1638F3D0BFEAE611C072BBD1C9C0740383C5CF2508333386CC29062230683548C2CA00788711FD1B9836EB3D057A0510340313259265CD6C58C4F5AB93A202CD5F8FC430F9D061AA7842111E1E38F8B41F0805EF55233BA6CFA073081C5D93C1E83CFA30230E82338B9C3E311883069793CA73F4FF920E8706F0E0D8973C925BAAAE0B91360BAC24867056916B365608B57583050F84C0EA0E57D3F40CB9290121406C1CA6805CBB16375CEC107175FAC339C668ED41E4187A3DDBBF59CBC6EA1726D3E25829FA13626664D711128F49AC0D1F71C64028999CDCF6666DAE2ACE3261B3030005A6BA6E6B8E0F33BDF59F47C1E34ED7EF5AB8B7AF7E53BEE9039503E8F4D30782815F91EEE871E22C6B95849E08B7BF78A4913CB3674A6B36703A49D642B7C6EE8D147BB7961086B7EB684EBF013E3902C1FE75BE2BA856619B8325AC17E77779ED9C906891ED4D15131324B9FCC166327E92C1B2582AE9C3535EB6B78026DD49821C840D6E65CE0C936AEAE0C98B104108D1D3D02EB740602C023786206839F076816ACE36B99CC69EBDC2905D46BB200375628BCF1BC706C6FFFFE05EFCFC3701A007A7D896B0A8E2B3589BD55DB4D07FFCCEEFB0CFE9BCECFE3BFBA9E6600CF8BA8C37A1A97DD3D04850B2734DDE371B8664DF3A4A895CC56068EB53EB59E994EB7CECC67F0D23E41F2054C646C888CCD0EAEB56D9BA665BA7606814E9E9B4D238A7D73E28555408ED9C80123CB906D38C308BA2FDC78A3064B764B7D459CEA793A1D9C4C4CB5FA8438533A9E6919D8124596828EF1D2FE8349F58BF10061186B4A67278D416739840C9796324F71D28612C1EBEE9811975E0A6B3CA07D826EE00010028DE462120692B44BA06889C8C8413A3D1BA5C0A1894CAA8310D41DB548420E5A1E819582A347939F706D82C6616712E00C01A410E75D7ADDEB74B3899F71009490134B3C277C2607368A083AFA1BAE6B24DBD14412E00451763979B6F667A30BE04AEBFFF9AA8093478E5396B1B1760030CE30D06A89CFA9565CBD1C8C6067766EE82B65AEBE5A5368DA1357CC7CB65199D93484BC1E80E6892D6252380770D72E5D9E65075030F8268011736610EF35B92297460DACC2FD308074DCE6451735D7EEC179F3BD26EB7D945911E99BEE3C93C50BAE23A0D760D673F510CEA7BE6FDFA2E055C11E13FFF00FA79FE72A65BCBF7AC30DD21819118BC7C7DF2580CBC2BD5E5CCA657089740C3FF2480F3D00375E14E2615C3817702259E89AEC775AE62F825F36F0AD046364EE9703C2CBCA0AA7AF0C8204C8134F344B39AEBEC99E31E85A3813472DE599B147CF660C8D10331F996420134DF6FDA9F5649024BB430E1636BD1F0C720EACE2665BAF94E85B6F15FFD967F53E293936C0E2ECD82136BC4298CCFEF118640F07E711224011D824A40C91F693CE60AB4F98BF4E203D16670D09483CAE27731CADB781BBEE92B1CF7D4E3F3E2E420FD0D59286ED32DD398380CB8B047D2905522FA71F98074094CB5906CA31065590F53ABB49D70C009820622790349DB994CBE41A428225B95C8BA55AEE55AFD227CB4C67402DB083EED4316349A5D817571C47000A299B32416DF7592E62739F7E7A7EFF95DB6E93E9CF7F7E41065B3846E5A69B74D998E324144A5576F31C3E26E5B38C24A091AD7CAD04860971BC00A0092841C93CC1190EA7B194F6B3242C701D82E3F4E0BCED25685D2D43F98BAE5D5DEE1C2007EAE59082850C90ED9A912EAFBA4A2FB0E0AC9979FDF5CDDF7FA3F632986CB1122CA0525DBBB369C38106BD072D4BBE0A6F7883D4B910939771031874E5361823475F80CF59085407E85A7F06741B0118216582FF9192149FCCCEE90B497901298E5D03005A53A6FB965B64E22B5F69029053B85C74021096C1601DEC5A52F7F1BC837360A693F2F95E1E8B2021B31060FC5CC80529C2AF5ED08B40729CC8E245A3C9AA60DD3D0598A64E9D9AC9CC6B2DC702714B2FAA75D981D186195A25A3B58268CB0E7AC653A9458F9707C09A3565135AC839F418944D77CEBE78C88CE4F46DF23E0B591F20EB191C06D340E998BFE61A9D71FA80F83C67E568BE22E8BACEC8F4726C1A430046334EB2A6D0650996292F8BD8BFA66AF6D9F1D9123C09CF895D47760709983CB2BDFC9AD748C86B1109386C7172F958EAE8F5C5A5ECE861D3EBF711B8DAFE85FFD7A1846AC7023B3520070C3AF5DFC3F9755D79A506C2C0830F76B2F4E3E7EBB89F4BCBCACC74307F444216FFE2EA724B0FD3609B67600ADB01A1756D4BDB9232FB5CF258B503C269093872A4864DCCDDBB2506ED73AA549765A061065B9B393A7A368312AAD54D1E0C9E0396F033D3B6640C3A6E93E0C03D33BCF496B7347BEEEC9E652FF1E6C965BB709C86C640BBA8466A99A9E8023B80691079E10A4A446E456477CF79E749C06B17F177FF5BDFDAFC3E90AF004CC26AC2A6B1CBFCCA47ABA6EBECE7774385910509A0CADF05AB32D84BD5F290811C2A206B093D574B64F572D566BB60C799FE99D18639E40C24A82D1BCC03C0D8B2A56AB231C21F6A40F6C6CCFA84666D663DAFF625A52298ACE15962F16FEDDC79E50FB316D91322E338F85C58A9F03840E9969A3302C161778F9771016064902E00CC82F3D780624501596116869C6DE379A49545321BA79984976F81A13C6C3E8E416699FCCE77167C31966D036F7FBB4CDF7FBFD83090056CA5E4DA4066BD2E03F11EF60C48F75A0638091545ED359F920216A21CA4D3C271532A0B6D00F06201592E80AD414F19462DB3EFF8C582FFE2B3814F3E39A5E0C449DFCC5C076E5D9771D462CA022999AD62B657290B9C1A8564B8040606D2C27B2D5073055E41B756D9BFE79534C8AA80810210CC24C319382F0106B72A4CDDE43DF76876A03E135C3964752F74DA4BD6F2939229333C170294818F96599C19F19233BCCE8C6EA5FE3EB0D149948764901C671301883CBF334092E33591C9FAC2A11FFFB82B4AAF6402A85D781102205B0662E467E5CCFEFBDA999479EA0CB658DA5CF0DCC64CB6630AD5CA02A73B818383450BE68632E03FF040B3878E007B0C30A56078587270F4346F31DD3B9B21AC9BF13800A507AC120E1F5E509373A2C7C68076C204FA780F834873E6F06210300733DD4B96934749B7CE05381AC904920D309E4CEAF834730990EEBD7B254039A86B772E49E7CA25FE3045020C6E613261B5DC8D1E82DB5265602201CB9681AA39B02FD5BF96FF49023EDFA7928517342DB59FB615C4E9B980C949CFE6A2C7EBAE13877DF4A4DBA6D70720B80DB08320F3F3D0CA06034C478C4CB591399DA0F13859144A0AD73FC986E072A3DE17703F91FDB1267CB6F3F2CBF5C40B3776E47A6FBF7DBED54C50B82C3F5BCC4D9474F00204781C6E7F413A010843EF7CA77EBDF3D24B35ED53FB1950ED2B90D504469098C29FF5C632908B439C5CAE5B4647AD9728F822CB5FA36A2C039074B67C595648CBC9140876E2108D7B6DDB67F633C86E62E858F691DA8B085681AB68D839A321E20211320582C4B9736A619D4D24F6E099E1434392DFB2452AD75EAB6BFC1C40D275E38DE222B09402BA7B9FF30E78DC60EB3973EBE65A029C5319A6CF46C6F725C0600948405112A44D00B52F8096CF26CBD7B3B70A00A117AC601FA5AD5BF5C524FD4919C86F9F650E1AD50503669A9AF6752948738BEF37001FA32F8881B13C3536369D29038D970800B24420E3CC7D24B2E85774548BBC186D8C67D6102A3BA590D785E18FFEBD690EEF54EACD08E37A7CA3CBAC38BE243A7EBC8B1D42063B663B98990F6ACE412EBA11600E3A9B3B5C04EA410298BD0DDCFBA078EBB9E7B49BD71A8E8C2C423EFAEEB843D3AE45A640D0F2901666BBC795419CC7E78F4880710892A9EF7D6FFE843B5FFD6ADD1ACE015C167C400A0C068C0EDE8537614097A47B56160B7FD8E1741988F3A4B41458DF032404876E05A30CE4B22F0E96070F90D5FEB40C84F95567E8018C3635FD72C6D16CC9F0EC85D0514BB6A732649E819758F0BA9D6940181F8EE32979E081BF4E766615C0101F328C0B76C5F18D96529BF1E65D761C6F89407934713CFADC830F362B0538F93CB4BDF7AAAB340D9392756F00D9E661E0A9C9B5279FD47A9D3A76062F87CAA007EC4050F033FC9B81A84372082666A74A7A0834930CE20C9C7D7A2BC2D917366CD0D243094ACB40BD7F1C7B0E950C8F198C8D2D5D06B2B9848D3237FD831F9C5E22010F40ECA5D3C1CB04F6A5F600B284B337329A6F2D5101B42B47B320CAAE99D51E206E59AB11250731113EF34F947A4C9E7AEA8914141703FCB719C69E01914B06EBF5EB7CA536E2857E4A814B394056CC02147AE73066058062F56FFD960E1C03CE8AA1CCF7229B081452BAD6F4E4122E6DF640B779808099A803877DD29DF3BD7C8D52325F01F08255046FEE9147F4B6C0D0BDED6D3A706CF2B0B9436F90EA9F0B96E2E29028993A3ED35630CBBF025883A0E0CFC5E6CBE51E3976CC5CA2D7FFB37800F345F43E5E8641D2F785C916B7F9FC3C00DA698F91D9CCCC663D24E23EA4D4B7F0F83BB27FFF9F721FBF22B27A3700D123B2A71045D762476BF8FF9698D573D80AD0CC34C00C461E7F33EBF99881640956DEB1433C808274CED66F1D5EA4BC7DFBE92A80B5385906EF5DFDDEF7EA0A420784252A9886FD065D5A667EC899725207EB70CBDEFAEFBC533392057016B1BF221844923634CD6283FE86656B181AD47ED23D570531E8F400D390A709B0113D008E36F11232C09900A35D9D9F3581612691C3CC16B534949A0048DCA0CA988356041B4B0022D51CEBEF440E623B8CC79F97871FB6C00E79A8E8760CEB1ED4501755C3F06A492EB2D45D37D0327BFAACF769DAA8C30409753ECF1F82A06B478098F564115DAA71197A62D4C80E29A0C82805F888C2FAF53AB05EB22C3CFDBC036F92D6F5F3238A40D37CB61A504AC6D0BBDE2521F4BE0380EC7FFCF1325BC11334AE09537055F0CCC2FD192F33005EAC5C8C5BBC41906C7E9BE0ABD696B0BDC432A4330584D906103642E0FE9908857A9F7EFE9E7BAC2B447AE0EFF70C0110A82376E70D836BE9CB6979573B70406F15CEDE011C74FC64854EFE702440A01779A0A2A04E9B49374E9F28B29F264E1B3998D3530006BB872C012933AC0008181A394E2173D6910D1F760AA3CC8F4AA6C0E0B9CCA20A62776754843AD3B55C29582A164B3239699E81015467B850E427F108AD01F733810F64D1AFE32D3317F022EBD2960244B40C3BCC03828F61ADDC1F347F599BBF1869F79D3A95BB6D72723358627B2FCC252CDCAEBCC8E6D4C93238338997481D3BE99E0D24561EFDAC02927904ED01D26B0B33AE9F5B0D154C299D4700C0F25CE98C4CEFB9E926DD9822107CF80C1A4EAF4DEF21BD712108B5BF04396019C88B45F56CE0C444FC123280B14CAB37ABE969C0B3F7410BCDAB33594B60FCAC73CB691FA1E50B984B3084950022DDACEC3DC0507ADFB66D7B3BC7C737154E9EDC843CDF8117FB5200B49BD1E394320D1ECBC6F2CE9DDA5032937597110C405F50E26F14B5FB2CC0C07EC3348056E0C415BD087C077D00C7E5EFEFBF7F360EC30A9784F14A20CE06B225CCD7D232706A6AEA19B8945F7B89A93DABE1ADD9ED67821D65CAC325B3FCCC1685FEB467BC9021D2756CEA450061B503044C44E30F0F1CF87C1618D78B0CBD0A9271A1655D5DF4FD0BB0E3B5BC2678FEF849976FEABBDFD55B5A5ED24B745F7FBD5E03C01E845EC089FB0640C1B67476D227A6E97CE619BD4DDE77DFBCE984CD9CC317ACA4B3811ED72E2E8E98F1227D00E30C74BC55BFBD36010F33C18EE5A789F6CB0180E5009159C5A25EC43F982D8C6027CBACEC6F881CC276440E1CE0B2620B829C7FA3C8055B4476821A76F49A26BDC4E082734070592A72ED40DAD72730758F01F4BDEA8D6FD4FD05CE0632BB3528D8E8CAFE4064E682D3EC8DA51FA5A0CCF51090925CB95C451968BD04D9EDB56878AB797B4902FEB203A00D18DA01C258C63F64C16065C0A001310D2FF1B722BC5E8D3F656617A7A6EC3D0F3FDC7B89C8D6B5F0132845B7C3596EC3073B5ACF45CB02B61CAA065D5E26B38F4580A2C28B5F78410900C1DE0341511C1D75F2EC5B90EEF15E5D06F2472DB18F310206400B162F0A6D2DCFB2DA9D0D76BA2DA5DF2F57CC7F7E00384340B433947E6BA99901859305452308ECEF0741E3FBDAB40B3540FF44D4EB45D6BFE5D8B19B41DA1508C0B682C846A395AAD9CF47B075B329319C9C3C9A7DE411CD14A55ACDE14AA0996455535A06F20AA1255CFE52D9ED6632BC5DC07F2EC1FE8503E0A7A830C236EDCF56B9705A361B1F74EE1679FAEE7FFAA78329930CC347BE0E2C71BEC885E520782D2250C59B7BDA9D170D25B753F024C6326520223785C8B2FD585B22BB97D4EF5F54C07FA900F01300221DB47089EA22CB0E6DB7E308C45F21CF85F2F1E52F7F869FBD5CA41FDB85908E6D40C25648C72616074BC51B917C6ED6F727C0175FC1F6D001916792ECF633741EB62BC7D42FE90F4FFE52FFD0F18B00A25D8561B561875CCB7D2A21F68F448E63E3EA936F731F300DF6C74E9CB87E0EEF190220F81B2648EDC333000DA864DFB8C8242FA36F63D67EEEDAFD52DD0CF50AFE49D4363D08A3050CAD5585D302063BC32459D969A5F3A04D76BFE282BDE200B00C186409EF90650853162EA78A5A2650B2341EAF8460AF6800B401C352EC90FD7BA935742B32D8670D009601446BD9D6AE443DAB6EC6D9FAC5CFDD4E3BE873B7730038773B078073B7730038773BFB6EFF1F6F7C8B1BF3E2652E0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (27,1,'Firewall_(24)',0x89504E470D0A1A0A0000000D494844520000001800000012080600000041EC1E9E0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000369494441543811B5C1CDAB94551CC0F1EFEF3CE7799999FBDA1DC597C29B24227951304245A556AE24E88D68E92AE81F701141DBA27D6DAA55B86FD5227011AEB216891712830A3135EFCBCC9D79E679CEF99D5F230A4584D3A6CF47CC8C59E2C5E5335ED28D2B3F0F066BFB57BA2B85EDE7B307EBFC0762663C14DF5D7A495BFBAD5CCC4A3EDE5C1FBFD9DF6B8BED913CC8D15873DE89DC4BBD7845DAECB4DDB65738942E753F197ECE0C626620E286AF2E7C23257792973E6A1FC5717A3FFE2EC7D3D88ADE9A1FC7A195D9B3E927396823FD3A3F35BC15AC3A2E67775D1E5CE5093C1F88BBFD5AF7C3AAC7411BBA17A3262FBBB4DB3D2DABEDE56C6E63AB25DE4E45679F30F1FA7CB53BFAF284A7EB0B993C3DF6CCE07FBD5E9DDABA69EFEC3969B43BA95B1D4EEC347A3A7BCEA477CE93AF97C4730D320FB23BF8A602DBD7A22722CEA5C80C7EABE5AD5DAF4B4F1723F94222F4C09749C624ACDF924E3AD8C8E1C7A2E9DEC927BA3D977DBABD31F865A3F5078ED4E1D2059EC8CF5D4877C358C8EEBBE06EECDE29EE556DB659783FCABA6EA7E9C4B939DAB224AA96613229AD69B87FD76E8D5B3BF6FDB75233835FF9626D15E960DEE72EA5658D11CD329A22213D4F52256D6E1245B0188955852B0AE7CD70297966F029EB252D0AD40C0B8164468A110512606549AC2A34256C32416344550921904288CCE02731EA1496129A122642604A048D11055208688C685DA3CEA1AAE6BDC7A79431836FDA36A973281052C29C23C588360D3A1E93BA5DD47B529EA3DE837364A391A4D18818823283AFF33C8F55858D4644E74866A808A92C094C753A2810DB963818A0AAB4759DCC8CE07D2E221E3020316553FC8D1F8D462D53D13934040C083162DE13016B5B625D23DEC3FC3C4E843CA5AE1F8D7850D70BC0121081044411098002F6901F7A7F356D6F1F7355B566228B1148790EAAA82AA24A363F0F22C4CD4D4C957A674723D03AB7082CF3880101A8811A684424FA97AF5DFB52442E03C57B2B2BC7F6989D595A5E3EDB71EE68D63407AA7EDF5B96A1DBDB4855E1AB8AA269F2D0348C542B601130C000052AC001AD992531331E9229FE92019DC3B072BE28CE3C531427F7F6FB2F74B2EC501EE3535F0D06B72631AE7E371EBFBDAE7A03D80686400D04334B3C2666C6BF91291E112007BAC0C21B4B4BAB716BAB7B137EB80E7F00CA6336C53F8899F17FFA13E957F4FFE373D1E20000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (28,1,'Firewall_(48)',0x89504E470D0A1A0A0000000D4948445200000030000000240806000000CF45B90A0000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000B404944415458C3D5586BA86565197EBE75D97BAF7DF63EF773E6CC9CB99D9933A37373346DC6746A94D082404D12956A42050BC27E4844F547240821210A2A42FA11989009D19F402235210B31F152E3389E716E9E339773DBF7BD2EDFFABE9E77CD3A769C4693DC102D58ECB5D75ADFB79EE77D9FF779BFB560AD454FF63B2B975D3886BAD4F57FDC8142CF9EB56A77F07EDB8DCA83520A1F66E37D69D77D383B7E08011EA81E78F7DA03D531996B7A4DF5D3FAEEA1EBD1E3CDB91418DC3732195DDDF7A98CE22DAA7CA9814B5F1AE95F398EEF1EB81F464DE32B233B1057037DC4F9A9BE6B641F1E564E54F71EC5E503555B57D7E853F6B7F896AAF6924096EEF76C5FBDC68F9AC71E771DFD232FDEF4921E38798FBDCEBCE4DFDB795908B56F1E3DD83718BC18AAFA13E1847BCFE08F6BF5D6F5FDEF28E58EA909FD2813EB332E9F32F3585B558D2DB573FD1DFF06BDCF9EF6FF10BE908E966EC2E3C638693F3E731F9E7C32ED7D06FACE79D1DBE666DDF5AE6DF79FBA4DCF7B4F777EE53E81FBE1855F1F9C8ADAC92F9A85E543711D3B31933ED7B8B3FA58B868C7B10E693AA636C6A173BB1A70AFEC2ED9093C82B2DA6F8FAB2F247EDCC690BBD547F7BCF3D9A5E7F4A1F6E4EF77F52203DEC5271AA71B41FBB4193413F89AA9DBE3C5EBCD75D1EFD486C57AF5877649FF466B35693D6C4D5B6ABAF1F7C4B1A9DADBB7D143A01C273A6EEEA4026DFB4DE395AF7575FD6FA5EFF881BF3545FC4B6F58B9E5510FCBA7ED68C8B0D54ED8472A4A7DCEFE9B043E4206E6EFAD3E1816CCADEE940B1BA86E12A9AB1B7F34B7051BDD6277D1DC58BEC3AF073701C53D6EC4A18E3BE6C10C028B6762784A394B87B597D4E0EBB2556A6F6ACE3C866FB6BA898B49BDC35FEF2059AF293007EBF6179114CC4CEF32C0623B7BACFFD6F6E9F41B8561F7AF63933EACC215AD7311528521A58D53B9D52E9E7D3CFED3C45D6E4957E26F97C72B700B0EACE3E3C80B4DCCCCB4307E55097D8E077D7B07F6F562B1705D8CC2EE1449DD811A354837C4B035174152C2D8FEC251FBEBAEED0981E6E191E9B79F6D3EB566B3FF8A1E492FF74B0A0B8C6A6A148A03AE93EE48D07CDA3FD034A11AA620AC6BBDC22860D71A846F39D8B2AF82644F88D2740AE7550FE1F6182A3008AA29D20ECBFAA40B3D9E30C52EF0E510E1730EC2D1F8AABE5E65E0C452FBBBCB75ED5CB1B752581AE9AC6FCE6A4457441839D507356510EFD788C7AC5A5BA0B4962DE2CD114A059EBFB14B32458CCD97D0DC1BA13B9CC0B61512636027627A1CD0ED6390C394D922A1851262C58C7CB205EB29AF27123A718F2A35CE160E6EBAA604BD3BDE9D3453A88D06EEC7F9D06718E1C91861C5C01CD462BA30733E74A8A0794E3714E25BDAE83CAFD0DA146580A39D1C7FBC007F8EE3CF95E19EF1503815E1159BE0A9B9C4064FD96E50F1EBBB0F248737DCD0030241BAC6754A4BE5D143168D0D21BC0241FED9425302AD9D219201834431A2C905B926438C7208B4271338B30A85A30524F3050C3F1AF0E438CA47976C38B64E790B0B08272690160A88E318F56EE36863A9BEBDB650283BAE5B3EFA7234FBF9EFF780C09AADE7BACDFD5E2D1AD2E3DA0A5060797707A92689B104FE591FC5C32EDC8501944E7704645A797389E0B6B84EA7034380495F1F4C42629CB03E35AA54BB8D68781868B5E0CECF239A9C847EE75CAD1586082A1534EB754956AB372EF49035CECFFD31E7480995B309BC858A094E44A1C1A4E7B554212D97A1D23403AA64A596246E73DB06F8EFBC03677919E1A64D701617D12548776909A943672A16A9FB1076600066688875D1861D1B0B2ACD66968D01920BA3A8D2331B9DF8D9CE2ADCBCA6B476D220287BDD2E92FE002E81C4555E8EC452150CC159463EA63C5C01DA6864D7FDD75E43B8650B1C46371E1D85E238C3E90CC7D820804E12C7B0B87D062235A6B78B39EBF926F57D18463821188974C8E8599288791E1239024928130241C2281B21C8B19DF17168DEDFBAEC32983367107B5CC4BEFA2AECEC2C3425644E9D827669A35164848027C79A0D2D4D4DEF1A9965E7646A33F08C745C2A41D56A8825C24CBFEEEF87226091115964320181C8E23F2518CDFB0DC7D9F5EB33D2E99E3D5C2BD4B2FBAD04E0C409E86E379255438DC55DA22C9330ECF48C4097293604E1106C2A11A42CE4E10E6520359081E23D582121BF04661951295E23BA97E395170DCE637299C879CBFA30CBCB25C51AA9B226248B7EA954EE9984E4619611930664442E04C494236206B4D4005D2615DD93A4E66FC48CC4049988E4E41CEF49E82E722D21D184634536096517334309C98AEE55966CBE45394E6F6B80E0ACE8381519F1C1228B849910203123AEA5509989342F584D19E8C14124721F752F36AADF7C33031D1F3E8C84AE15CECC20A2746292EBBCF20A3A73731D0954C4ECB99CDBC9DA5E8F241433A599550A19C982E85B5C44342C5ECF885B5AA51D19813D7F1E86BF86805988506BD7421F3B066CDC084DCF77A6A761E84429FF2B923524AD76ED82B7B858B6B4DD2233D4A09488BEDDB30C48B463662016024C6F5698E216E234927E3E50D39512463591CE4AC029759DF09CB893D9B62DCB86A5B58A5389198843C9AE29C3CCB55C57797C8E6441EAA040ABEE59060844413240FD670529A0A42EF202C6D818F4E9D3507419C34C2846396134C5E3418086F503014709A624E088FC4828EB059C2724E166BBDD01EB0479A167CEF7AF8F062BBFEF595E7F98979D8C8016D710E07C80A4DCCAB1EC0424EE649801776A0A31E583356B60E9EF102B2458E42EA4A40E48CAA1DC9ACC94614020054E39056C70857A3D08593B8C3C42799E9B75CE20072DBBB9E83763F89F485C201086D670622B5ECE87A66293B9D71BD68043CDB709CA6526A49005AC910296D0491D884C48D29175CE1B6F2020D994241D922C70CC8527796E999293261670FCB95A4D809572C059F9AD3A5E01CD242BF34199B950C4A25F89AA00931BA4DD0B1949B71092E2A4BE4301459052BCA9EC6289241ECFCDC1E5F90E1DA8BC7D7BD6D4407538222F91A0F404DE2B72120BD51CCB65481551545A251DBB0AA8CD09E9FC375D4D5094B742222B62765225F61933DA9A0F48281D9D17A1F8BDE5E2ABCBFAB02CCE9880B4783A49CA6C31970C1ECF5B4AA9B273A7ACA5A03857266F1EA7329EF7B7E6E6E22E03E0E5D738961D11C57C2FE5729297B472BE07AB76B9872D1D6E8EF9DDFAE1BBB8727FB076EDF4C0F9F3D70E0E0DDD608F1EDDD5BF6DDBC748B102E9B61261EAD827894CE3D2B1F3DE205DB8C09AD02457E002CEB06865936C44E25CBC5FE425D61CAC5B57EE6380EA3481F2059772736097EA07AB3310E5E7DC55E7574C2E51F9042A6726BB5F25EB43C0CECB06070F166BB51DC39393FBBC30DC5CDCB081698AB3884AD43B6C541E65E773412752C9166BD47D67E6C2078792BC07C83B018370A4D138F67ABBBD55AC342491539DCE83CF03CFE0831B9ABD0834F598BD47C83A8A0B016BBC5C4B36D7964C9634D9C67E02BCC005D98B9054CFCE06DB80E1BB943AD0BFB0B063FDD4D427EC912353A58181351EDF07B2C226308FD1EED2328BCC4AF682C3A985A014B3AC68A576C41C0ACC62D1987E36CBD2C55F0A5739D16AD0ED1C74B802FC921FB6565577BAF2CD56642E13BCC517B5EF2D2C9CCCD27EFCB868B47263BDBEF9E0CCCCFE815A6DFBBA4D9BAEB6274F6EAE6CDD5A12A0B24B21CB84DDE3C7D15A5C8CA50FC842CE917A33C6CB25B45A2E2B116EE7C7517EDEBC5F5FF8C02F03ABB2939122A1248F029384856781D9676BB597850C4E9EACB2DA2A5FACD5F6AE5D5C9C9EF0FD3D238383BBD5FCFC046D55059E574AD8F05C66A0D56C36887056BE11E773AD44385EB1D10FFBC54E7D942F7BB9E4566AC7CB9D42B233C05DBE5E07D3C0E01DE3E35736CE9FEF7B0398EF7ADE8B7FD1FAD53CC27A2540FFED2746F5113F4D5E4C06ABACCE5DF5E952AFF2716B7BF5D05E12F85F6D0EFECFB77F027609EFBFCBE612740000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (29,1,'Firewall_(64)',0x89504E470D0A1A0A0000000D4948445200000040000000300806000000A14B7C1F0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000124F4944415468DEE55A598C1CD775BDAFD65EA7BB67E5709D2187EB9014499112174596252BB2A5D8826458486225B11DC4B2B22080F31120F14FA28FC4800103897F12C14A820846100341E2C4366C481F06035974249291448ACB90438A339C7DA6D95BADEFBD9C5B5343B528468BE32605A481625775BF7EF5EEB9E79C7B5F0D85D69A3AF90A1E280FBB2F56C7E923FA323A7D03CBA667AE5F3C214CFA33F1EE7BF2E7FC7ABA7B3D3D25EC8F16005F15591242FC5CB3FF7AB9227C3A929CF31C9BFA7BE558D77337821075571EA7A7F6DBB219FFAE9C2F7F9B07DF7E0078C15F29EF55BAF4DBAF7E992CFE68E28975D9F79AACFA58A5FC8EC07CFD752984133ED8BBCDFBFDF2A728333B175F1523D1B1D24BC90000E13DDCF3683C4DBF16CC9DFF98ACD05BE171F5797AA4B28EBE985F7D7B01F8D488132DE9BF0CAFD1D49D7F4BF1ABC850BFAA7D337EBAFBD075CAE2E57FB63CB4C2904CA4FFFDBB6DDF45E7C493716CF445F3F11FA931F90CB9545403F2EF9BAFE8BBFD2FE377C746ECE84AFC9D385043B22CF7C557CCAFB516955177E4F3B519F385E8A99E03B70F804A980BC7C5215DCD4C301F76C4E3FDBE41FFE21D8D7F488D427732067A8DA6F4F3741F99DEAF761D0A96D48E878CE2376ABF57DAC4146ACEA9AC2E083BDE21D74692D6D72F14FE50949C6F45AE267F49FDC5ABB3632AAEE829F7617959F55863FE380D9A231605137AAF7745AFABBE1E7E9F1EED2BDE16001ACED223ADB754216E455F8F7EA36B9F6CCA6F76F514DF0C24896A6C7C8B3E2EAC9A57FC42ED9C3A32961D315B13FA6FA4238CE64BFA0FFC97E4C9F95F2E1C97108CD12B227BAD31A11D910DE78CCF075EDC74B63814C77ACDEEE7EC9DD666416A8F247B8BDE1E6595CEACB7A9B5A8F354349C859371DF5CC1FFF35B0B00D379FF7EDB5FA0CFC98C1652C8C3767F66C25F50FB5BF9C68FCDED42D6CFCBC769DD80EB9FD5A7A85FD0C89F8E3941A4D75B05B35C9B97E6D2795D983F1AEF11DD2619425834697EC9BFAAF3D13C6D6CBEA1BB8BAB0CB21F506B6A7FE7FE89ADED8D3AD09F8EEAF26B56C512960B35658428AE769D10626A4EABCFD0133B9D5B02C0D8C39BDDA9CFE5BFBA347AEEC1B0A6B73BC336896EE3E2E282F74555D4C58597E2D5993556C10FB4457B1BF9FE4F5AA7EDBB74D4C851C61A12BE250D72D759640D18D4427F716D3E22110AD118D3461CA227A86A4B697CB7DB239A32CDA91FC48F2FCE0542696DEA0371A65031297634654A26D9684F7AEF70486608123C256F0900DDDDE4864BFA7782A65A1B45D45318B4497A34E48D1BCFE42B762E6851AE7E4E5B9523B6F4EE5287AB35F5C3AED5B61D5DB5FE29DB6D5778957D5B5C32F206655699343B13D2D58B3E7979496E8F49F93E8B0A8705891E4DCD97C586AE87C870F6680AFB24298CD15945E17D2DB28790794FD2E00E97FA0F9AFF46FFAC3B0FC0CC43ABF24B93577F34FFBA1CEEB1F2C7FC50E7D8CE4B8EED2E9C0F4D396BE6281256753A14B9239AAE7E83FEF8CD7FF00F2A5EDAB0BADFECD74EA617D446F002E95BB71BC30D8C9BF2A9F4A598F2FD16E5D65AA47FB349200AC5C392B29F0030C39A8C3336854A931A50248B92E4675B148F46C4AC51BDFAC0CFDD877C6000508FEBBAF6ECF8D1E0A03B689C505ADC6F66C95242D3D4BC4F214639D0666E954DF9FB88745D9841AC0F66B60AF21EAB136310F6C7686824C59B233232829CAC41A3F774D1DA071D0AB744649998A42429B4700CC4643E1A901A54E4AF8E89A6014C2028CE49728EE6281E0023EE0FC85F1351D81B6DA10EF6EB498343B37DB9D98BD73EE36B45FDBBEC53E176EF118B8435331F92B73EA0A101D8B9145440E6E34331C5AF9B5438A8A932E990B88C4C6D84D67B11C80538F88116194B26E9454DE55E8BBCED11B52468BE15E9441CB18F407B239C8305404E976292DB907DDC5B0C0754B8E090AA1A1477E1F3FD604225CE75B455E77F2627E3CAF4E5283FB23547C592FD85C6BE9AE1BD6952A96052F6971499F598C47FD9140F8514642419DB021201167C47407AD222F3B44D11B2969F4526EBA0D56300EEBF6188A75DF286438A034DF53B9BE88C107CA409C4A295941A7578C2A42077D2A6B1254517E21A75BD4C54461F982F2B2AE7C542C701A8CDC5070D9CADFBB449CD919611808AF97BB088E32655FB31004B4082282A488A4C85AC2932701D4299E1885C0E0651C5DDA0F625979A830D8A7778E4238B7E19EC68A21C620E6B12523ADA47CE4448F6958874AB17A5C1267B763699637C6DABF1833151C06414051115CA5D5428557FFC57973A0900F4EF679D2343D0AA8F8CB28E15D86CF5A1CD5D0D7AC3C86AA31E8500C5CFE2BB652627BA5F8E5C27D77C5EDBA0C89D86E17D0FD2A80F526E6C9E7AA7306FF7362A9E3D478A5BE7C16E128D0629CBC2FCAB49DA3619E532F49FA3606AEA623637B79BA7CBE6F364604C6DB118749601A7483807752DBF0FD9F55087E1C63A58CE686D9B4F116B934D6EC3F23ACC0541F6B44B168CCB9D8096FDB5943F334DCEB4418D8D5BA978EE1C692CBCBA6713C9560F4A9C43515717C55BB650542A81F2D0088293C522655F7B8D9C304C8089B76EA5E6F878B586FACBAF3C7E535B5CE47B5FEB2C00A8B1F6F7CC6EA6B321518658A3D0AA093D3B571565177B2873A545CE140604FD2A3BB168846818FC810112128E5EA9801D156A8D72DF6B502D0D343B3646E6B56BE46DD8408537DE48C8122148E7E2458A0B050A3047637898341840085AE2B3CCD050B90B41AF34A4E5FE7E0A3DAFD2710F287DDF2DD87308BAD9AF72E797244CC06A0E6F8463C5A4B259325A2D04E99270A5D1BA7B33B9D06C667A9A1888CAB1634970B5EDDBC9C4E225B21B9BF092356BD04576530C30BCBBEE4265582285CFEBDBB691C07CCE2BAF90C4B5C4186362226159230CAB9EB15C99A3001501D2F0EAF5A58E03903BB1B55F658AA40DC3A86F1A31320830F7D65B1483A626CE23BC736082E9A954A2DFC6BA7549796E1E3C48F6DC5C42EDA0A787B2A74E9175FE3C799B36917DE142A2638F83AE56D1ED81FA004463BE104C213048394E220905CABB9393657761D9F40B18A770AF6CB1D8790698BEF455564002924C04C9B46C6CDE4C0E321A819AD94B97C8999CA426E8EC0298080B0E5DF840AD968C856792422625B227474692AC53B34911E688FAFAC81C1F8757C04F009075FC78C298107230CF9C4932CFD732F580461C5FF78016CC12DFD73A0E80402A0D98119B175BBA82FE848732060A1A58447DED5A8A11B403DA7B082883859BC8B28F2CBB3897002340966D802391D118DA150040631EBE56F88D06900AC0447BF690669021ADE88E3B9231847BF175161E500253F8A5908C1200F35BAD7CC70180168D1088B33699920640900C062818A13C31181A0B6AC2F8F8715D04BD73F912D0A977F83099972F134106DEFAF5649D3E8D0A017FD8B831C9B0F9E69B14011C03EF9C6D056FD0CC1C1CCC1A66909E9949E4548FE36A0BD726BC811361612DA661581D07001990C6FC3C859C71802011AC444638330C886056F0018A276D390E0D703416AA780CC6B2BEF97B09B628649B52D757D0BB60200102617ECD20E39DD80B608CCC008D4A42BDBD941F1F2F3B5887840C9C4C86AE0154DC67B1E300C4888A356D40E76C52261661C08C245861229B6C460A0B64B70EE10316A89E30071937B8EE7366F1B9E073066708FB59F806FF4EA3D429780003A811948674B8EE0BF843F2397B00BE1300BA3E35D58838F3CC023090AB401445E58E3F118AE35809767B644E206066408080154C304076226489CFB9F663E34011020910BC9A9AA200A6C7E0490016B2E9711964F384CB73158941756E72D81863643C46F5500028E2AA3038488A4D13F78A30CEE9EDCD58083C86472C613D0CA05FAF573BCE80C8B2CC100B13685C42642C3125DC9C1D5DB05E61464C6BD67C84C5EB6BCBCD99C66F1239205309AD99CE600D1B5AA26D3E0738C412615920CB9ACB1ED77FCC4F0856C06324DF837B0E00CFBAE723C3DE83F932C562B9F312E03B717690590681835758B8466DE78A903444A911AE5CB39635BB3B589000866C2B18A002480476C8575F4DA4216098715AFA8C1D3B283A71223937711E9E3CB9EC0100C2C1387F6626A871AB9C96C12680C1DD6E01035005241067534B4C0E41247AE520F139A11472D6399B1A6ECE8647F85CE19C407596078F2504C18ECE9916F7DE4B8ACF31CE3C7488241B1E823276ED5AFEC30FFBCBCE9DC9FD140015003357ADE68BD6B22F1B584BF7AA5514349BDD9D0760656387C019086E5AB8AC25343E7B761918985C1224CA9EE260E0F802A54E72F691714A29CED5437010F83EE20A01433551197C068ECD0EA58F302F67DF84B45806017C47833DB0FBAAEF38EF6885FD66B3D6F6C03A793406D074FBF9FF1980A4C481DE498639D3C838C1FC78F1021993CC04068375C9257245BF00260658CC00CE98FFB39F2519B5E11D3EA8CEDA7741F5008019BC11424623DEEC60ED59001AB35C00940350B80A7455ABE50CC6F2F7DC0AC768CEEC6CB620F8D1FA0D4FEE577286734D6F3F5FF9D0802C33404A4D1C3C6796B7A74C79CE169A16D6743223B3002028D6282F000084D8D018C86E04804CE8D506ED63766FC8C7397080628C4D2404D018282E392D5491182067005203FB8695577E749496C6C7530758F6006601EEC994C8A441B61FEA26D7094B3E0C08CB0C304D2179EFCD8D0D16AAD1CAB24693CD0A7FCFAD310385ADAC01660490057FEF40C38A37482867DCE4B09663060EEF26AE03F40B0DFCC601484DF408025B641772C97125018B8AFBF793E0E6096D334A2095366E2C175306700C59C86A7669C9C3AD9D1B02E5E731A20D8495929E8CB99115EFC58EEB1E20785383850850537199E3BD013732A066885657A26E5BE8FDD9B14DF4F04929E35E9FE5C393F006EAE597934C67618CD5175F2403342E622BCCBD400E19B6009E66DA73806C7CBC4F007B3C00D3041B107ACD07136D6ECA000CCB2A97CD56B0B1B26FC280F62057CE657AA89B7D0F60D48D402C03E07911973203755D3203B8B63328FCD88AB30D4A5B0884172BB83AF066060BF4018C85F2D780C125C1626B1CC03CB9B617EFBE3B9140628CDC5FE0737E3553DA33E55B6FBC41167EE7E2BE19B0A472F972790E0C60EADBF81D37434DA27ACA807724F326D7ED00DCECA09435FADD0CA8567D7BF7EE44CB89D639430830006D6DEEDCB829C2A2183E0BB4F4B0C9F1E1DC051824673CC3D9E53E3F0536425768711D47807C14F7EE25138C32D8E8184800C8F32465134C88004E086017E0011EEEEF0240DE0B704BAC3DAF3B65C0FBBD549B3C568E382538B5C9E6FADF599809162ECC3B89BEF2F4F9F3CFB9B3B3FB8ABDBDF7A2191A3584D894DDB54BB0E32B2C9E3734ECEA8B3FFD29991C086A7BCCE6C70F4B609A26165C47C3C32E5F0498DC38E5E111363B3C7B0B82668FE0121BB011B269A20C1ADC7CE17B5E52F7F0706909520B3166093D0497C15AB3D96081B517819B04DFEE0F715BA68D34C9E60DFE71FD10E960233DCCF4703E41D4F72B0303F73A3333DBD1F6ECEBEAEFDF8B1EBF5402CDD9C579E1BC5D665DD7500D38A012EB1DB437796BCD2BC1B983206BC78E25D22AC03B243E33907D9B4D9319C726080099354717168E2FE6F3FB4CFBED78E73DEFAFFFB5D97CF6039AFA8D46A9DAA4C14CE027BB7EFA0EFBD2CA4A0D41A606B1825EF002E4FAC2CCCC951441976667DD2789468E4C4E3E20C6C7370194DD952D5BB6D74E9C305D5481E29D77262594E905DA266592E9EF83CE4CFB10CC30D36D72628200AF06C630880C02035BCA640A5368AD2300CC65D0E3A74A96256F60C0BBFEA0FFBF00B1120F071BA6817BE9B95C3142EB2625422F57BE442851CA0CFEA1F13CD1D2F3E3E3271340608DA3939395FB95DAB96E7272EF867CFE1E79EEDC064CB82A8FA6874B1B4BC0418B9B4C85E9D9ED793FC11587106801DFB3841246F1F3070C74D1666770F076987D60717151A70088F7C9BC6AD33C07DB6ACBF64AD0EA5DE87DD09E41BCFD175AA3EDB056C0488FECC788567F72EDDA7BB2131343E824760DECDC390A26389CF52E660900E08CF3919C83018DD75E4BDE5F223A39EBBA7BD2845017E43559AF3FFB1FADD63FDEC4F0DA69DD4A93E4A5D7D10AFDDFAF29FAC08F9BDA2692A96444DB021AA977D83F219AFDC9C4C4197ED8CC80749F39937B8068D30EAD778FD4EB87E9ECD935A869EB0BA3A3824B229B649E9F27C22B7AAE5CE9AAD5965B7F7E2CC665B0AE7523CD7EDC166CAB2DC361BBDE3F6C2B2C7E517F794E01116D666AA5D4CDA460F0C34DFE6F76F646A2D2934343F738972EADEE43312C126D2B8D8E76FDE8D4A9D7B1B9DE85485A9952E9F2FCB56BFF7995E8BBAF139D6E0B384E03D6FA17B078D1A93FBDA780B44BC54A1B9A6C0A463E05272951BF353838144F4D75813A63385E4303D46CCBAED41D5AA8E8F4FF15BE093BDACBADD12EABB643EB5BB1B05B05C07B99AABE5D0BB8DD007C545E06FD3F7FFD0FB25CDE52518571F30000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (30,1,'Firewall_(96)',0x89504E470D0A1A0A0000000D49484452000000600000004808060000000967F0630000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000023314944415478DAED7D69905CE775DDFDDED6FB74CF8AC10C00622156120B0112E0022E224532A4683A914D2425878C1CD9DAAC248EAA9254F4C38E92AAD8B17F38A9248E9DAA5454962A8EE5B8CA4E282B52289122B45012201220C5153B06C00C304BCFF474BFFDBD9CF375BF4663082E62A86828A9AB9EA697B79E73EFB9E7DEF740A9344D6559BD1EDC989B9D9DCD0D3C33B3203F032F63B99D50A8A63F35D0944DF233F25A76041875F978C3094F5DF1E5BF508E3C3C5E7CC38D9452D9DBC337DE68C78F0EDE230FAADC4F27019F5546EF05BFABAFF729CB98556B2A8717A67BC18D262A7BE2FEC5FF347760A0FABA6D0E2833FE95BE0FCA81EB1D7EDCB3E5644135E3DF8AD3EA7F918F29FBA78B8003CA0967CB1F940FAFFDB14457BCAAFA3189C4948FDD6877C94691B2CCC62199347655C2E41979585D9909DE582E9D30FE61F8F2C456FD399D9538AF5E4E9E970F85516DEB4F0F019F55966F953F642C9A1F90D835AFC888C7464B6F3B2B10B1F2ABEBF25725E08CFACD309F46F1E4B97BBCDB86F78727CB8F069F2EDF2B7F9C8666A978207E466DF6C2DA7FBDA26644C1D6F052BA2B48D566EED7F5FABE6038D693412355E179F9FC616481FBA9E2B83EEE7B9980C6914AD59C35FF59DC3426E4EC94DFFDE1D8C8DA78DAFB8F8B8F8C0E5D75C30F5786E591D5858CA070B8FC0BC1C2DCFF78DD7A1F2F8F84CF27D7C6696A0449F899B8993C12BA3214BD60FD917CF6B386EF4451BC299D885E4E7E497E71B8A2B7F9BB837DDE99E049FF6CD2970EC7D5C579B72F7859EE09E324E7C3DDF9DF8D776CF32BBBA305E33F378BE53F38B60CEBC2DB26C0CE952AD18974431ACB37E5C934EAD1E8A9204D779861EBEBF22BB5FEA5DBB981DCE68ED6FFD5E18F8AA5F7238B07DD6FA61F083E32B0AD376B9A0D75208852890A862DB3E9FE643C1C8D03A318B5D2FE70F5EFED946B836FC625B9E44D2766C3F6FFB07DF6769C0CC985A44F4938966870A330B5E319E37369BF123F48245854FF38386DAC6D7E3DFD8DB181C1EDEF59020CE5EF0EEAA96D5A76431737143DEF43E5BBE4F3532DABBFF058F003D9D6ACA7FFED0AB782F7495EEE0C5F540FEDC1C7C5BF5DFEB85C7AA41E9969EA9E8EFF22F86879B33C565BAF0BAD6B3CCAA8CD8D591224519ADF61FC6E62AA5D912F4EF3FF989F885E55A3E6A8B9C39754C28B6ABFFC3924E54F269BE9A0FAA7D64D86943E9A4CA579339131F1C2B958FA76E684EB7AC7937BD244ECD64C6A3427FCBF9CCEB2E73D45C047862BADB3D1EF85469AC6897A78E144F94F5CF3C20AEFA4F1C7EE238363A7EB95D7D476F55CF37072FF7C351ACD52A36E2EFCFEE257E41F4156B4E6FBE78D4FCF4D7CF9E6B8ACE2C543F116CF559FBCF0EDE495FA072B9FF34F25DBD29A12555262EE95FF9EAE8D37265EB2D35A6DAA703EBD33280493A6A14C67AD25519496E50F4505736A87312437CBCA44D4CAA85689DCD0DEA45CBF118B89FDD82B4D695D480654D57090A5523F1C8F1BE3C16FBDE708705B4ECD7D2D5D1721521395FC7DFF92DC1FF946A17526BDC648ACDCEABF79F18FCCF1F4A0D7485438ED7EAE5D64D33452B2C69BC7167995C89C246194E6A4687E2532C4F4C354169E497EBD753EB2EA07E3479B27E272657B4E122315F744B23B3965FD07EC7F4DAE64E5C29974205C5096773191DAD69C448E98AD3FB5EE4D5ECBEFC8F5991F71064C898BF107E71FF2FE8DBD5AF5795E22712232B0232FBE9F1A85217B2CB6900D90B8D927E24F2E3E363AB2FC09806BC88A56B418AE06B88633664A70291A4E47E598B34225BE9F388699D482A78DC79C11F3911017D97A2DD9D7980F4BDC2E99317ED35E6FA6F97B9353F2C534B6D7AB69F77C5A2AAF73940F5D689C8DF30164A205E25C3F15280F0EA6A43298DB629EB48717CF27B68A94E9CDAA01A3610F354FC64AD512A97E38AE249EDC78E99F98BF13BD680C1BD326D835FE461A261F35CEDAF9DA5A473860B16C25694E89E51B766D4B1ED296486B3A2A58A15F5CF6042CC8AA6A312AFF991C583DE039EEBD5A9F5722FDCBF142A96CFD7A63D63B201551738BC12DF32F4769D232864BEB1D41C4E3B223538EA9DCC8FA8173464DC5F65DE105EE337F637AAAB51049BECF90C26A5B280BD95F2E0B53A110B97C64C9C5977D00960A7892C6C5D028E54C71C358C2FDAEA8A1F4A599DF701E997E2E5A3579C2135545C423A3CCDDC8B6959114062D31613A5333150BC78A5A890CAE73C4AA1AC814099396152C7B022006C3ADF3C9DD0BB63FE8B972F3C00D8E38C34AF223C6135E2D79DC9B4C3F32744B3EC125EFF7E324F61A516B78B32301645C5989D128CADAD6E6994F95D7D856DC976C68DCD53764C6E64A1954A9C0FB8C5C9F9718ED5671D492043D2C09BE741AF900029ACD48E6A723C9D5DAA7E7F49BA8ACB138FB1349AAB1188F17B7378EA7DBABF7E360DB62F16E76250173890317950769C8C4605520C813A90CA1A8BB8998D8D586BB4A525A6F1E2D56CDF9654D40FD6FF5D726CFCEFFFB188AEF844614D4934DD05A49812E107F205FB7572D9E49D68BA78C2490FD922A67F6505C45E195913BEC30F9CCDCAF05FFB634EE7ECFF81D27843ED7D5BEE057FD43F2927373B16A2B824C79280C5BC2F668C575059D018B00FEF4D1A64C05AED49019C511ED5CA5B6CA166B4F227D9F4486BC0A79993624B70B6E08F5A2B2C39064750802D0C8611FE9482C6909F673BF27C9B5A138E386B49001261C6F7148C9F843E621F1A6BCE54B00BADAB9F9F04BE70F07F73A65EB8B79DBAB43FF070D53891103B4A65DC81986CC4D45F86CC8FCA96455BE604B7D22946004E9FF6B41143E6B3D73EA8BD1574F1DF4ACB880C804606A7B724DBCDD5723AB50413BEEBFB4C2A6A391A1358EE4FA0D9D05678F7952FD5424A5F7A5521DB5992CD27F8D2DE103AE443E022087066B3414358A827C0B4075913E2741D419AB9D052B42C403EA0F5AC5D6ADAEA4EF4776AC877491F510E26827B74A69ADBD3C09789FCABF7ABCF117670EFAB7421692A1D1DCE3419C1F0F90FD5691DA926AF04EFCD0153F8692E03262E8F42022D5C50546377B623CE798A7FEB57CB9749D329BB022E13E80C0CB45548603912844AD59C076F85CAB997429FAD01B6F2C8BCAC382960C49D744123FE88A3D8C63E00CA30DF8DC8FDE2F06B0E5441F478D21AAF745126D02D27553ECA70B922E1A1216910BC8D4FC77F019E716EDF525FF7702093720405AD43375AD2C466AB91060F57E3851297FF2F45FBBF7F37D65DC3A95CB1B0E8AE0BD096CA39347AA0383D3A75C295F634A61D6100B6CF40D238AE179D67DC29218452FFF62CEB10643C9DF8E28BE00F9D9EE4B042D16A8870CC512238B9A370040446BDE87A59C8C759417CBA6ECBBAF5FBC18608790681C4B354C31A0E7E1BA401F3BC9613F43F87D14FB5E8755F05B7CBD2FEA9C253980CF6090048162A762CF5B621DCD897BA32BF1100E7E9D8B75F2E28D86C5E6A727B68C893CBBBC0880779FBF18FD3D6A31637260ADF54C5C4EEF4AC68352B1258EE0A2CE9D8633418A8FECCEC9989BD7856D68CC9178A72FD6ED81A8C3058910A9A51B52BDE735EBF392D4E15A52463CB47930D23E3F2E201BB6F85A32DCD700AAD106CE415D305170EBC0CB70213795589245584CAC1287A40912331C71408A422B3A2374D526297D5897074210B89B782E38BF095BD2ADE8871DD404AE739B27218A781A9B5B64D91130EFF6CD9C8E365287875638327A4DEEAE68653812DCE82D86DF17F16A915C9A0D6400DAECDD8422691444BD02A0E0A85BBB3C89119DA999C8E2FD4D31BE0309B805B6D5851B0198F9FF5D96E61D8B200719508B250770FCAD9EB8D86E648B21EEB79131C7A0E528C811004EB04D00C2EABFB420A5678AA25A20236C0786F6A949FB4FF6E22FB193EAAC119C436BB327D69425DE582051DCFE3EB641FA50409F003321B5652741A72F7AE3F5A9A8C0F73BF69471C66ACCDF00ED2CC4B5C62414E4FE50566D73241CF12029908DA69218D7138EC6B07EB087289021A23FAC46702CA644061AAD7D2D5100A688222CF300B18C6DFA13291CB3C5395490E62D4DF85D6A7A5372276061C742BD4D1CB76145772BF5BB1ABA39EB8EFFD2CB7FF99699629D37C4C6629D33F4FBBF429776AA5197D24B15E93FEA4A7508923A884028D932B42A42A619AF2D3B02E616A25DCCE66BD0319A9B63F16BD05EB89A08000D1E303500D5B223F3A3BE06DE9C698FD7E322D609DB4D4FCAE80578E940DC06AC106B941AFB172540F4338ABDD1404A271D29BE9097C53D4DED58E2722CEE164F5A1B034DA0AE171D75D153253825026B4C0D497EA28EF728BAE74166BC0AE9674BE1CC194D46B64CAE1139FA7C2AFD237999BB78F9DE7EFF484D0CFBE2D7FEC11F244F2F2B02FEFC803237558A0F9896923500DB5F0590A1F9B06CC2BA56DA9D8AF1248A2C8B1E523C826637F6B4A4F29D92B6762C90294063116EEBF29507698D7510C57AAD4D9E145ECBB52D61D8F16158BFBE17D2356F8873C4D4D19C34374AE59553625F40545F848DC57E67F6ED94DA77BFDBAE01247F0C24586DE5493B8C25962573E7F32F18A677FDD52E78FA9C4C6C7B240D961501F73803A5E37173C3EADB6D8977A0A9013831EC5CCCA206904CC80D6580E005F9B6A369ADF5C5851FB7EA964469DA83C295D17B856C309AA1E70B632622B925B53FCB8943802F39E297B748F5C84BDDF566F78D4BE107137AD3A4033897D0346167079051FDE8074635E0ADB131BD4D303C8CFD5D10E7F871A3A21661610D44FD88E40A05F15D579C7C5EFA0607572CA769A8266020309393DB92E9DA43289A68749C0534356CA0A20C484807B2A285F65E839181CDC2361C7490C9A29092819F10B58C5E6712D1ECAE93CA4B67C5C67B0B513EBB6F8F0C2092BBFC58A678DBEC36D8B91CE4AF26EE8A1592ECDD0BD76448542C8AD9426D0090F59D3BC5080249F17DE5E04161C1D0E4E0BCE2DB6F97C2F7BE27F3CDE6DC3CAD53577A46204517B358985A7604C875975AD5BD0ABD148A9D67681DA73C249D0A9158901D447CD2C988EEC6B30418D6F1520D11DDD460ABE600481A90F2F153DDF5E6F68C49E1950BED9A01104300BC70DD751295CBA831395161885EA224E1CD37EBE82EFEF087527BEA29B11616D04C25328FEF2BCF3C73390B10FD8CF6388A7A6B727B1C4155731CCB8CDA7655479052B25C5F6D887F1B97F93FCD3BB34812C80CE32AEDF8717BB20070430DB033095F9E5E237D47261089ED0B6BAE5F2DA51327DAF70EC62B12AC5A21F3C58AC4958A069072310310FDC141299C3D2B85E3C725373525C54643EAFBF649B5075C7ECE9D3CA9DF6789465023484F0CC2C2BE3E98831189B02F1F7F53489082BC488780456C5F3E71A2AF54AF4BB15A1517C7E035310BF2C8A466A331BAFC08E09B3346EA4CB525432D8E4AE9F8B4385326A2109DEBFAF56D8011498CD4F91DD74863EB908E604A0065C3A51EE3029D4B9734B8B9E96959C476D5A347BB113AB77BB7548E1CE982AD81B56D69219A096C02C2BC55AB24015911B2C4989F6F175664CDC20D3748B872A5140E1F16E7E597C569362506C021A48A9FD39E3A5177DDD905106F829CF9E9E92BA4687E6666725912B0EE5F968B0A8596402C5CB70D8D504B5ADB4B701F689E00BA87936704E651E44AA7E04EE6E6C4032059E4535A5AAB574BE5D5572561A1C4BA3EE4A4BE658B961512E503AC188007F86CCFCC68B018BD2181E7B6DFFA96E47EF003FD7DF3965BA478E810B230EC829BE03B6362A2DB87459D02ADA7A0CC109C438A2028BA6EA5849A61398E94ABD5AE04E5F05BA9561B589604CCEDBA29A136172111C5D3A77504BBE3E35D80F95ADCBC59ECD9598940923734240148F1A9C5C800039A1B02000F9F23009A07498563C7C444140720B0EFFBDF977216F988F02264477AA2968537F17DED6A12B81592D2BAE61A4900220380775862120812040598EB88E769E0591374A0E077F3C517256D34A21085BACEE8C731AA902B6682075240D8E2B224A0383111371021941582E8420AF8DEEF006A414B592C1580F67041D5E79F1703F2C2E86C8098D22BAFB4A31224B8909EDC6BAFE9F7218B2BD66F5C7FBDDE0F0109601B29339A0C7C6760DF94AF06A507D9619D3B2726EA44BAB82806A426DAB1439C6F7E53ECACD802FC1899653FFBEC150D5872C71D62E2B84DCF73831E1FCC624D423A52182C4B0298A6D46B1B60B4D6ACE9463E2390003B88A0182005B8F800693D0750F89BC28551A319C15AB7E15C5813B81E33AA0040F2D06D0352136CDD2A25D8C47CA7D813A216223AF79DEF5C061136D3029982F5BBDF41CFE39E6C4971AECC146622CF21E592E33DBC610976ED92EAD4D4904FF2901D093283C597FACFBE200AC3E5598411F506B5D9EAF86D6601DD0B0BAA42AAB35806B8E00234BE8034A7A6B710E979109501B378E38D5282D4649F9B00C33C7346131201241670175ACFCF29F6A7895ABB163D9ED2000A2428465DD1C0625D35DFBE7318E3BCE2DB6ED312A3262785B7D4126C136FDFAECF43CE9F07932D514F3C2129F631DF68CCCE215B7BFDBFBEB3866B5AB645B876E448B8B871A338B818164A46568428A33C6842202301961011AA359F60F17BCA09EF80D3CB0328FFEEBB45B0ADDE0E5910DD74934400C286A428D40F3A9F80128546CCC43E8A943180E9A32FA0A4581DF2825B6F15F3DBDFD69962649980EF0C7EC7846546A04631130435ABDB0F909C284AE43DF2EA1230B3678F4DCDF6A8D9908E3C8A710E17A6250640E65F7A49F2D451E8696BD326C953263AC0781B36B0FDD7171F216B480401EF4A0832C37AE185EE670170295C54D73A9270463A330164B2CB4D6C5B678CFECC85C5999F33C2F91D8E45F9916C3D6616F6393039391422006CFCC62CE0082240165BD8E7B21C45E812303F9FEAD4D69DAF251E4024F08C7416CF103A4AC9509DC80F3ABFD346D2FA05E80318F142922857B4ADAC096888582362446F8C0C32504B52DA5A68BF2607DB515608A88F262A01C006239A520879622397206314BC7E0257C573E3F152DA4B92CC510465880B8A78FC8D6FC88CEBCECC45D17B6814C15BA57041316C5F1E1795E71C856E0717EEF444728048B70142EF67ABF33BC948B0BD0DA0BAA301D400ABC7A9C490238335224D2FAF0362544756F4D8005A9FF4D411FD35C04E507BBA45987D058305F5A9773D13E4C7081010F2BA7FF8662228980128C4D565494063D3264B4F1971B1993564A46736D4A45504C82CCE49661D5944115D8CF0940332CE76D01F304285BF2303747384A22A28A849677AA93F73CE43F038740309DC56E05CA8EB29481046392CA87EA13027FC0EFBA23B12661E171C8B99A33ACD9AE0B389F58626264662EC3F931E838FA4E09C8B38C6ECC58BCBD3863AAFBC12D9B8085E8CCF4846A46751AA18E9BD910F0F6EB1FDEF442D3FDB9DCF5A6EAEBD56F7082A8BFCBD7BC584FD3432FB4930D1F5A63D43B414D9215827FB4E3113F03921B19DEFCCFDFB25443F90155B41C028901AB1F9CAB2830F78C5F1C5B934DDB8D40559201F84B8CBD386AE5A65D2121A702A2C8A9C364658CC4B9774D1D3832F44B440D35910992DCC04C54807E82CBC3AB211B5FA2F9634EB569935002F650443DB531C8796538F924908DF333B207929B51BDF1BD877C263707BCE9B1018068A73DCD343181D3774458FD0FBCC0DD6E7F881F7034C5C431EB5A73638B872591210E5F34A5F180160EA0314855A60C0E7B3F06A8F8EEE989D66F74291190A9991453AE7F70A51ABB2D9CD0D3788EAED5611E529F51D8D97508A281F28C609E73F1C1B70B289662DA615666146D1E6D8C15CB74EE4C2056D8DADDB6F6FAF07826390CFF7F648FB6167C571060264E4CC9991149217732087633890CA69F60AEDF3B8B03CA7A1CF3D17F2F13D467F48D7810BA1C3E1382201D0D45EDD1BD0BD641A4E3BC8CCE8447AC26E93910ED034918C6AEC4FBB1492CA4C80CB49B92F164B2C26877133335D5931396A3E795212664A873887C3BACE0D1C4D3CA2DA06511E87753D915F440FB2F8E4933299245A82B26B63062CFB3EC0BBE1063BA1B5E3400CC58CD1A40B1E2505002A80A2080A7F87E62BF405DD4C80E6A7AC1174267428948EAC66B099036931DC120B332DAAB16387A873E774C346593211D50A9E3E06110A516F82740B7291740AB581EED9C988EDC896013279C32626F12493528563B197E0BFB871B06F16611BD1CFBF0328F67CEF359BCB53828C679F0D53467E26299CB76CDB26829A90F0EE12A2994D9026854D11359F91CF3E8063045C200190AC71A204913C90A6BB64D6162E00CFC67E82E79EBB4C204831B76F97E0F0E1EE777900EE1E3C78658483A8268AB774663F0E88A114716461216858B08B207BE8FCF9216615357F06D293D95E16E5FACCCCF294207FD72E5BFB6B4A0AC7BF940C64816E78185D2CBE58E4F9E7DBD1D689FC6EA4239215DC53CCA9286D28160B35209D98D0D348DA43C5E68CAEA46317B56EB3D8E258CC000BEBF17D4C3B4A3745A2B3DB8ECC2E76DAD0757D7C2C2CF4B4AE5EE70E5A56802FA5E9A545914DEC84AFF86F6120A82CA4061284F52E55EFE01F9CA7EFF27F5CA34B00278E2C5CC24E15A02BCE683AE92ED75FAF47C3BC41CEF78C76BA21FA71BE5776E761636E4799600F41C2B0AFF08517BAFA6EA3D3F5F958494F5433D25B8C74648D01D20AF81C81C40811ECECD9A3F76D23FB020EE178BF984598B58AC5993D06CF8F0519E71773748D05DDBB9507790E7ED7D20322388E26DE70451574EBC612ECD5559EE1485FFF4CC78F731C8D229CA2B0B14072B6C2F90DA3923AAC2D65B5DD4026B850465D0C8292CEFD5683CE855E9CAE06516E41BA14A7A800C066E4B3F8C2CE1A9CCB0060EE9F7A9F80704A083346838763711CEEF674DFDC7FE58E3B64FEE9A72FF703A81336806DFDF0875A0E0DEC8F4B1F08F39171FDF57AD5C5F12EF1EE1982A8B71F40CF51EF5CF752D0D325EF55CFDF2E111971EF562674098877EEB475C7C901178B1A8AA4762B3D5A6D427262D841C13A02FDB5D6ACE9126452BE380CA3E3E18D1D64807633202B87C8777B6EBC338A5D4819C18F5E7D556C14F532EA0FA3DC04B0FC9D7D006D266741FCCE8615E53E431CAF6B73B57F8E3491ECB463044203E77B89B785978E22101CEC094018D89873DE02FCEC1E7F7A95DF3B6AD696B1778D80F0F9E7C3147E5CEF1C059172A3DB7D3A14B812CA8ACE026605A3F7CC19ED40C29EBEC0A1C4C0E71BAC1DD826876D992526B6C9533AB03F926A036C1FFB88E6E6C43F7B565B4EDAD546CF8D990A8AE93C6744941A8E424056EDBEFBC4C3712DD61BAC9F1F1FD77294749E8A28202878D3A76F66A68F0F4E72F6C3FAC31B33659C13A5E8E2C58B75B9F2B1FC74C9927496A519203DDF49DBA728B554A27E54522E9FC8962D96C188A627E7E324B848363531D2D880066740D381D89027CA08239FFAAC239F9E1E80988C52687F046069295B1D67A3EDFBCD37CB22EF0563314010B3A60AA003C8830972CB20C9C47E233EC586FDE679FF192485FCCB7BCB703424257BE5E98220412E328DAF79D4178B599524511DDB5451ECEB90A2DE1B32497B5067BE09F8460FD0E61BD484AB6DD7CD8CA575FBCDC8B95C84D109B3B962D1D4DA8EFDD8D05401298C7A8B5D290764EC0538847BF9E5B68E639FCEC68DE2812076AD0EA4C2D9B9536C640733A7C8FBB47C9607FBB620251C3593A0B0634B2DC8DE5C47DFF9AA80DC26EFB8C1BA32736C2CFD77DD2501A4CF0680FDD81FA3DEA0F5E58D7A481C6B07E589FD4000C051A5BCB4338A28E2D82CC644954F4954793F6066C67A83A27BB5F74BC1CC9EFF4A7A817FBBD2F5C636F4D0A190C5D280CE3B005D37459C50E2AF7FEA9444883E0BE00600DA40B41A00B3C0BB5D884CBA973CC701D0FF905A8CAC717B1AB532A27C0151CF88B7200583BFFCCBE2621D7D0238661500F33E8287636860791520204166845872381649EAF62C7CBC0485BE05A22CEC93D952421DC9B1BF40F11F39776ED8A151E093127C900004CC4EB56F0304C21271E5BF0C7A9B6E6769C4F7CA55464ABC44A67A1D567AB5BA71B91143113690B21CE32688361FD24110A8DBF9BD7BC558B54A14E4218788A5F32030212E6AB12331BCC8DCE6CD5DF928C2EDB03962B4337B6CF4083ED6F7F1D90150F55E40A1D5151C835E9F36B60FEF6D009B8D28B87E71D3261DDD8CF4AE71E04D1B2C7E87CCFE7BEED144C1EFCC200BD6759FF8A854327940CF671740F6D2FF748D7A1BE0CB12E0E39E1AA17AA42BB90A416F9E0164E66B96E5D9D75E5BF44F9C1013205BBB77EBB94C0C995088380FDE3CA0AD43A4E6107D212501A45062083E673F5A6A8E1C9185679F9508C09421278D4387B44E3B88E2E1871E121FDB316A6BD07B3DBA40A41240CA870779E2A2C1C47E339248900D32B98DEE2F203DEC016A77DFAD1D118909B190BC0E5ACAE84C3F730C209C7F368A98ADD74980F50E0C4B3680CD8035AF0274D459A443502FC19D0183BAA2605BF8823B35FF328A36DD11C7EF5751B4D53E7366AF79F6ECEEFCA64D2B3CDE89C285594C735C30359740B34788A8B7DFFB9EE4204DCD8E27CF23D2FB3FF0015D582D489579E79DFAE93676AB1E80EE2DA23C99C1071ED056D3C6BA04D8EE644D0EE4923482CB4C24714580DF2B45BA08734088EF591F68816B38DEE8B97343D3F82E9B82F68E221A0B0B8D3790A0B74B42BA240B7A97AC26184BA42859225DDDF759EA648BD93939FDF79F8F8C6C1CBB787167C53076E7D3744F75D3A6EDAD575FB5F5136D008F52C1468712432B497DA7AD341075F3743BD93D5968BC0F208A94281663DE2983BB0900741E40CF7CF5AB97D745E413644A90C3811B96C2DAB5E2C37EE6F1B789E2CF7EC1C7C2DAD0EB82B2D797447ED012D9DDDB8091EC611C6BBED178FA0BF5FA27DE02E8377232E9550A71BCA416A45721AC373BA26C1B0446A27A0EA696E8594648468A0DF5CF3D2AB203EE9BFF8A6CF7E0860D7B83E3C7BB0F3AD152B68E1D933C8AB8C959109B29640CA373F6892774C1EECACBC1833ADA0B28FA8CE21C328CA016914D734F3DA50B72DA799A2D234537549414D483227A0976CFFA3145CE85208124D44703F978AB75242E1677D286F21F66E8510424CEC77AF566F34B7F15C79FF97FCC8037EA21963AA5A85DF7BB4BD8932D5A82D4526BDAE3639792D19B219A10FEBD5B64182DD66E78A01BC676ECB8C33F7A742D562C67969235C0622306B928C2AE52AB0B008F1D2B9B2ADAD18CBC7934626CFEF220A37AEBAD9A10CA4A0EFD051D0FC125C876C7F968D9CB4E169930F4F0C3BA863C353777EAFCD4D45A9F96B9F3687A960968D9FED7E322BFFD363320FD110A746FA4871DC0F99F44F097809FF63A21EB4DA67DD9EC2379034274767C5D64110B6DC897E5E8D1DF8789B40F886CDC0642D6B55AEFC3D9AC46EB7FEDE2DC9CC1268B20339AD930E59029830F3E281E64CB01487D208CEF5D80C82CE2BADA89F144512306EEBD57D7044A9CC139131F14E343B7585FCF9290610DB8B20BE8C9BC9E3AC3E2CB268C7D40C375918EB3EFA406A837C8862CA233D0FD0EF059D4479934BD6923F636C6AF57236469769838BAFD796830DE3F2F2FBEF8A7CC94F548865F8074ED76DDFB70962B8A22DBD1F40D4668FA1C3EC29EC90B081A78FFFB359894AD3EDE844114BB2085BA4FEBDB6B5FB94E71EB56F48745BD2D4964115E3931313007E9E32822828CB5F0BE0972F894F4DCAC4E39F34704BCB7982E9516AF07F87069417EABD1C48F1C09BD84B0AFE8B15B460F2957D48E13228D7F27322DCF3D773093AEFB44C6D167EFDCBEB070376FC98394CD00DEF12033EC8459D433CDAFA188C77CFA0EF698055D5B56382A8E3F38B6EE9522BE2EB48771AB19F5BDA3884E36F03FA365BD85EC484F745F4D52FC2580778BEF3B9F05BD938A74E5C1E24EFDC8D2F1CD6A8703DFD3C4720AA4FC35BF47AB94FB45912DFB215B2A8E579644B63A2049DF7204192CDADDC9262DEB6DB7E9C11EA5886E89376E5823D853D0F6B227E0ADC81AC7E39DA15CA71173AE42C09B4949AF8E47BD6EE75D9D86BE1BAFAB10B254AED4D2EC20195C60CE735F10F9FE175E7CF1486685AF1719B853E4FA9B1A8DBB80CA302AFB166C5822C0EC3358E07B8BF0E0FDF74B1E5DF3CAC9C9815948CE227A01CA4F3F08CA8A303AE456E73CA21E29E905DBBB8A9CBCA3E8FEFF4EC05BD48FA49321D1558A796F76E43AA4E45E8069C172519E7D96E16F5A6DE95ABB47A99D1B5DF726B03B5AC067C5FFDC07229CD952FFD6B7E43C2408088E2F09F126907E01C6F56BF838D901DAEDFC0D97C8C98F05ECAB169A9FD4FF7FC09BD8DDD765079BDE1E62EC1EC2CC1522C5FB513F50E8B7ECBAF3CEDB9BDFF8C6D057E0CA10E955007E14E17E58F5F5BDF6B5850592D8EAB184D18F3BBA9735016F93904CAEEC1E42723D8BDDE368920EB0DE1AFCCF1991B9AB78F0E42709F6B226E02D0859DA99674BEF04F275ADFEBB55287F2609780B425E777B70B945F64F1D013FAD2FE3E710FC9C809F13F0F3D74FEEF57F01BD129E0E0720CA810000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (31,1,'House_(128)',0x89504E470D0A1A0A0000000D4948445200000075000000800806000000355B26160000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000202B4944415478DAED9D075C13E71BC7D9A3ADB6AE0AA22C4185305440EB42C4ADB8C1554414B50E0415151544D1CAA80A560554B4AD9BBD05441C2088227B6FA50E6A6DFF6DDD03F2FCDFF7C8E125E432206040FBF9FC4C808CEB7DF3FC9E716FEE24004042DC14A120A912212F59102E2779205C5652431CB7519C25761B14F9856417A4FC0845494070215C5EB201C18D0997959818262321D99EDB929898A81C1B1B3B3A2E2E6E29D20674DFF033542115D5455226EA2BC9CB915F4A02020B912CB0286A315C40704BC36425EC11DC2EA278BF909010E99898188DE8E8E88908D86A046E3FBA8D442A080B0B7B75FAF4690808088083070FC291234720383818D0DF1E220522CD41CFEBF2192A1F4577953C15DD4512105888C260597023A870E59064259F21B88711DC01AD79BFADCB2D7E39E6EB9E121511761F4182C8C848F0F1F1017B7B7B58B56A15576DDCB8113C3C3CE0E4C993F8F1EFD0F3AEA20F831392CE67A81C8AF946CA35E66B4988C6EA8AA052E19251FBC19259702598086C6298B4C4F45029092961DF73CD5C93188779C6B07EAE31ECB45F5070EED713A9B13131CF305C7F7F7F70717181D5AB5783A3A3236CDFBE1DF6EEDD4B442D8E5E1CC5289A212E36E6F9A5D8A8F284A8903BD7C302A3B22EBA4DFF0C1529B687D492D8EE5210DB4D0A105C8861816D8ADAAF3E442D174B0614B580E056874A4B6C4270BF11F47D37599A246F9D6F049BAD8C61CD1C1342F656235FF96C5B9E131E12948DA2B001473002F7F4524C78E9B5988BF9D7224EDE490F399C9719E4712FFFBCEBEBD2B0BD5078CEB94905E79CB77DF2502FF5921A17D753EA6D5C0F049504CB821BCD0997B72563B0582F10DC6308AE1EBFF75E3D67581406B96EAE09382F3002272B23588F2217DFE2DFFFB876C6CD82F3DB9B8071022C3CBF0DCA23BDA034740F9485FD48A83474F7BE4F1A6A7C6F29DD4BDF4AFD830471BD907A2251E152A396CE9215D82D9915B5802C1910D86BA1921273432425A4B946AA95F1B54D968D514A82744450B7A0E8C5BF77B51D978EE11507ED24C095477A12B78DF7BDA0246437145DD801E463B03EE9484D5096528E5796AA8D579202041730D84B54B02CB831C25AB21C3BDCD046B8B508EEB61009899E9C91BA0141744610B72D180A38BF9236BC16C97BEDE4FC925077288BF0608F502E518B01E3C79586EDF1FC24A126F695FE3251453A3BA18F1420B8C00696132E356ABF91E46EC95FB05B7238A7254B37C17D8DA2F617047728DE8E8D96C6C9182A09D39165BD38C762A82852D3A8008B2E6C47F0DC899FCBA3BCD96E4B82771176FC4946EA655569E9CBFDA42F21B080C042021637B8BD3E5872AC682D1950D402029BBECF40356BCB3C0471BE31914BC928DD6C85F3AB31FCB46E6A010656866D17038CF66EB25BBA88FD24A126A9491FBBAC260D082E20B8D004B78FF407B07496DC9D8F25F32BA4D82D99807B4E4116BC7554C065A6010112456F537E2523950E6071902B8AD49F1A0BA5F01F097D7285D2154D69E72B1AD290A48E4405CB0697BB25C789CC9239A216095932044949C2917E3D60BB990E2A941AC1BAD99A65E0C8C4799500877326592821DBC5503F00FE040BA5642DE985C9FDA599082C1060B9C1A5462D9D25F7E463C95D3E58B200BD2DA725133AD5ED4B7037D200EF5593F38A83DD9AB7329C518B72696938B2E908CF4FA750BA3A4066CC556D9937082C10EA8FC0927049B05CE17280EDCDA3906AA925CBB05B720805EE45399977D7668D80FC804D8DD178D19580C99E671BEDB7E8A2CBA79353AFEBC80CBC3648E6EF6B036500C10504971D2C275C2AD8965AB2F0E346AE964CC20D959682C4EF74216BAF1D11959F74A1748321F3ED755D991A041610586802CB0DAE20968CC12AF328A47859B2F0BD2D9B25938A56ED0537574C81C2D3DBD85A9AB2F07D9DBF4F4DD197F9E2869ECC1D0416B0105C680697044B67C9AA8D4A6C95254BB674DCC8D59249857FA50857A70F871CDFD54DD68C7BD5FCB35BB74B48484872AAC3434D3594954A3590894A319001041710DCE660B9C115C49205EC6DE3DAA2B7E5023744521212866A41E64E1B22528B83777B2088D21449B1D46E70DBE4456F0E913D9C3A5816520D115416585AB86C964C13B5EA748594E0962C48211529606FDB0C2C4B51BDBBBD4B18C5B8B8A34B971EEAEAEA0A5A5A5AF20C06430EC19461016E17B0227FC13423D94D3787CA02020B3731580EB86C607959727F1E96DCEEBD6DB37123F7A8450A9694FC678BB6F69DD95A5AFDBB75EBF675AF5EBDBEEADBB7AF220B2E19B9921D066ABA89EC3CA48634635940708184DB0816895FD4F2B1E416F7B6BD04EF6DA35AD8DB92DAD3B7EF63073D3DB067304AC76B68E87FFBEDB7BD555555BBF5EEDDFBCBF6022BB217BAF59DEC885BC3655FA70F9305041648B0694339E17244AD1EEF428AD692D5F858326BDC78A99DC68D18A85FD7AE751828A9750C46F92835B5E17DFAF4E987D413472DB6E4B6B66291BC48C64839AD8C11B24F115840600971C265B364431E96ACC3DB92C5B5B73D2727F3DF465D5DA042C55ACB60549AA8AB8F5152525227C15222B64DC0B6FA056E8F96EB797B945CE5ED917290315216105C20E19260D38D9BC315A690A2852BE0B831BE8DC78DA13212F52E5AFD999C402960AB8CD4D4C6926039AC58BCA0669ACA29DC31954BBF33460E105C4070115839026CC677CDE1B259F2101E962C82DEB6B5E346617ADB834ADFFE63AFA7F714011408AC8A8A4A8FB604DBE227DE1D2727996926179A39560E1058C060EF8C6E0EB7C99287D15B726A3B5872424B2DB92B6F4B3ED355F10905DC9FBCC0AE41568CC09AA268554515717774FB85919191ACA80BA7964335973B88C0C25D3339C8C4A2C06D16B574966CD4724BE6396E5417CDB891DF529AF02FA55E6C1934900DDC2A5DDDA7745049B0C3D4D547E3E289048B808A146C8B9E943D41DE3E6B821C648D4750CD91C67D009B694A0FF7160F4BBE290A4BEEDF8A71630B96D2EC53EFF7821BB8E53A3A7FF1033B5C436314B2E1BEB8DDC17DAC28C10AFD849CC9F233B327C937644F9407126C967973B89C60692DD9848F251BD05B727B8C1BE90AA9C0DEECED0B55EBF5F4EA4FB9B8BCE50576AD9E5E85B1AAEA080454455D5DFD1B518215EAC1B953E54D72A6C8BF44602167923C60B054B82458812C995F21D5524B16416FCB6F294D7877D9BF37327469819DF3F67EF5E79F7FC2B97DFBDEF1033B14F5B1FDFAF5EBA3A9A9F9350BAC4C6BC10AFCC0BCE9F21A79D3E49FE44E93070417105CC070B349B813E41BA3763C7DD4D25AB220BDADF88C1BEB5DB53569A3D065C68CE71828A933EEEE6FF958719991BABA49CF9E3D95F15811CF8C5B0B56A007E5CF94EF963F43BE34CF421E105C20C1E6B2C052E10A65C92DEA6D0518378AA0B7A55B4A7344ADD7135ADB1D3CF84D6D5515930A15EB173737BE608D35348C7BF5EAA5D4BD7BF7AEACA9538BC1F27D40C16C05F982590A290533E50181857C0C96032E19B5BC2CB9A9906A034B6E9B7163F3DE365859E1B1233D1CE6F58888B79C4049056EDBF686A7153318A5269A9AC678568CA2B64B6BC6893CFF58345741B2708EC2C5C2D90A80C02221A82CB824D83C326A5B6AC962DCDB52E1C62949BF74D619D84007E5D0BA752FE880920AD8BC992F582355D521BD7BF7FE16836DE9389137544B05CFA2790A503817690E1209776673B8825872532125724B16416FCBC792BDB5FBFE8F0EC6A6D1A35FFE515707FCA062F96DD8F09A0FD8621335B5C14A4A4ABD5A3A27A6FD43F17C851F8AAD14A0D8520130D822122C52010B6E3ED592A7F3B1E4093C2CF963F6B6028C1BCFA877ADA5CDA3FAFAF54577EFD60B0294D4CFF6F6AF04006BD8D23931D75F962E549856B240A1BE643E828A85E01671C2E511B5BC2CB9A990E267C9A35A61C922EC6DE3D464FFDAC4A37D09F6F57D250C50523E3FFCC00F6C9191A6A65E4BE6C4CD7E51B6587168E962C5E7A58B14A06421D2022416D8A6A8A558720115EE0C3E963C898725B770DC9826B27123D7A86DD8ADA3F99C6EC7BBCD99F3BC254049EDB7B37BC90FAC71FFFE0C61E7C46C3F942F51542DB3567C5CF6BD2220B880C1962EFC00B798132E356A85B064410AA94C31E86D8F0FE8F93BED4E1F3AF44D6D4D0DB4062A96B7AD2D4FB0EBF4F40A4DFAF7D7C5E34441E7C44D772A962A7E5D61A35884C042B93582FA7DA34AA970A9514BB1E442612C790A0F4B1678DC48534889D09263B4151E38EA3168DB97D4D8D877AD058AF5E4C913D8676DFD820FD882615A5A3A82CE89897F2A9729CA56DA2A5E456001ABDC06890A77F107B83CA396CE925BD8DBDEFD48BD6DF2009997DB190368477C47376E7C210AA054B07B172E7CCE67A4983F525D7DA0205327E29F2A3BC53395CB1501C1050497005B4182452AA3C2A546ED023E85D46CF6DE369F1AB51F6BDC68C8DF927D74551ED3ED5C2753D3177FFCF10788122A0116BDE62E4B4BBE6087ABA86853A64E5C0B2789EA955FECA95EF10520B050458245AAE084CB236AD90A29212C59E071E3B8B61937722BA44275BB54D1B62F0606EF4B73731B440D940A76E7ECD93CC1AE63307247F5EBA7897B583A1B96F8EF7E61DA43EF89D5082E54AD5064874B82A5B3E445C25B72BE30963CA18DC68D34BD6DB29EEC53273D1DDA950B11FEFEAFDB0A2829EC023B66CC78C6076CCE780D0D55960D378B5689BABABA7FFFFEFB6FF8AFB638F7A1A7D9EF4D518B446BC9D61F2C996B21C5AFB715CF7163C35E7D0DDA83DBEE5656CFDB1A2815ACF3D4A9FFF1017B77AA9A9A1219AD6C50CBCBCBFFBD77EF1E3C7AF4089E3E7D0AFFABCACD7BF0E3E83A915A32AFDE7666DBF4B6B7855C4AF39B418F0ADA9D6864F4FAE1FDFBD05E5009B07575B065D2249E60ED198C3B8B070CE8D90C6A6666E681FCFCFC37A5A5A5505D5D0D0F1F3EC42FCAFCABEC4E41ADFBF0BF692DD9E68325732DA4F8F5B6735AD1DB8A78DC983444F1FE069AF6653D6A5F321213DFB5275052758F1F8393B9F9BFBCC0A2EDCB58A6AEFE4DB3EA372525A51F827B3C3737F77D494909545555C1EFBFFF8E6D8059977FA3F4DE4EA3E70259B258F7B6DC97D2A499C8BE72D1D3A6ED138F393BBFF818409BC02207DD6466F60F2FB048B7B60E1CD885EB44E9E6CD9B9A191919A77372721A8A8A8AA0A2A202EE23DB41D6DC509371E97EB5CBE037CDA2D656F0DEB6B5E3C61C518D1B29517B74701FDA6A77CBB8712F9EB441FBD202B0CC4DA6A63C17B339EAE9A5AD6530BEE23AFBC595545C5C1C03010ECFCACA6216141400CABB80F32EB26666C9D5903FABB6E9BFA7B56491F4B60AEDD2DBC60DFBAA9447FBF2AEA2A0A0E1630325F5E8C183860D63C6D40902962B545C26E371949F9F9F695252D2D5BB77EF02CABB40E6DDDADA5A6641C2D97FAAB6EAD6136097F329A44468C9B922B2E4F491F24F37EBEBD04E8D620203DF880B50520F6A6BEBB79A993DE10576DBD8B1E53CA1E2E3792A2A2A031C1D1D575FBF7EFDE99D3B7700E55D282E2E86CACA4A1CBDCC82B85FFEABDE32A8A12D7BDB36584AC3F41AA2F1806EC7EC5BBCF8B9B8012575EBE6CD87BB67CDA2851AE0E2027CA1220D4460C7C5C7C727959595C1EDDBB79928EF427676369079B7A6A69A591073E2BF9A2D039882F4B6425BB2887BDBE0EFBA17D05A98B1F1AB47A8481457A828B01E444544C0AE19339A6DFBDEF9F3F1E9E005866A7EE9D2A5245C1163611BBE75EB16130950DE059C7731705435371444FA3DABD9A42576E346126CDA58C57BA87DA19B1A35642627BF1757A058687FDF8B8C8C7C16151E0E6E16161F8ABA912321A2F11CFF2D834A0ADB302AA898696969805A22C8CBCB03DC12555654341486FFFCBC66A3266D6FDBCC92DBA0B7E51C37DE1D2FF77AE7606DDA2AF2A4ABEB0B71068A8502A8DCD8D878CEA953A7FC2243439FEF9C360D1CF4F5E1F4A14304D056432555585808A8D765A6A6A6627B6ECABB6565A50D8521075F546F50178B7163E070E5423AA0CE13263CC787C03A02546565E5C94A4A4A0C1B1B9B4141A74FFB1D73737B4B021519542C54111315F2B56BD7980830907917032F292E6A28BCE8F9B2CA4195ADB7AD6887DE96B4E46BE65FD1025D6F68F8AEB2A88829EE4039A1E235C278FD128ADABE08E611A4B722854A858B6D38393999892A66484F4F07B2252A2E2C6828BAF0E3EBAAF57D45376E1460294DF61485BFB618E8D04E8DE2CF9C11BBF64518A8F88039668718A921A8A7440E950A17476A626222F3EAD5AB40CDBB4505F9F5456777BFAE5AD7A73D7A5BE6C161EAE57440BD6D6DC5B67D11162AED6A4251412585C78C186642420213452F907937272707F273B3EB8B4FBBBEA95AABDCBA71238FDE36767CB74C3AA01B860F7FF5B8F100C667A82D111E336298E8759849494970E3C60DDC1611D19C977DB7BEE817E777956B7A8B74DC983543B166A33EE33DCD22EC86EC9494FA8E0454ECA092AAA9A921F26C4C4C0C13593350F36EEEDD3BF5C5A736BFAF58FDAD287ADB37EE43B56897789EDEB3E76547032AB65049E11932EA71213A3A9A89AC1970DEC53FE35164D6EDF4FA92131BDE57ACEAD5E271E33933A5DB7440774C99D221DA970E0795149E21632BC6D75743EF0157AE5CC13D2F61D577336ED6171FB3AFAF58D953A8DE3663F657B9B4436F43C3B73565651DA27DE9B05049E119328ED6F0F070888B8B036ADECD4C4B795FECBFBAA1624577BE965C345FE1EF6D8307D14E8D922E5E7CDB51817638A8D4B932068AAF7888F22E6E89F0408368893252AEBE2F3EB29259BEBC1B4D6FAB088747ABE6D1013DB87265876A5F3A0D545278868CDBA0909010888A8A82F8F8783CD020F26E464AF2FBE2C3CB991576DDD8A2F6D28C6E39B4DF211D31E245476B5F3A1D5452F8F01EAE948382829AE5DDF4AB89EF8B7C6D50E47E0377177EF964A30183FB37B5F5F5EBF3D2D3C5661543A7815A7BFF7EABE0E2C37B286299172F5E24F22E9E715EBE7CB9B1254A8E7F7FDAC3B5EAA09DDD4B8F79F360E78409E0646CDC04F582B77787B75DB184EA65650537108CD6462E3E02141A1ACA3C7FFE3CBEC52D115BDEA51E022C2B2E06F73973FEE92C40C50EEA9661C388A839F0FDF79085AADAD6C2C5932864C9CCB367CF0267DEA51E02AC2A2D15EB83DE1D1EEA96553F82A3F10870343080131B374209DAE9AD858B23F3DCB973CC3367CE60C810111141B44464DE7DFCF8B1D88C021FD6D6743EA8EE2773C0C53F0B362CD9060E0683C1C9C808823C3CA01AF5A8ADCAD7B5B5C4B21A14A96F0303039FE4E7E7BF406DD14BD416BD7BF4E8D147835AF7E801E4DC888198801DE0EF680EE13F6FEC7C503D4FE7C1DEB365E07AAA049C3C2F838379E3AAB8EDA6A61077E244AB8B292C1499F0FAF56BA2B0C205557B43AD2AC9851B61FE707EAF0D04AE3182E04D2690E8360662778CE89C507D2E1480775005EC395346442CB17A6F7B10388C9FDDB81ACEC20252516EEC4850EB1E3F84DCD458883BEE0AA7378F878B1B8C21DE7514A47B99C36DEFF14D8A731909113F6FEA7C50FD428BE1E7F02A02AC7B60360172B35F2E381E2D00C70DC7C1618419F1BB402727B1865A5D9A072911C720CCE37BB8B0E93B02589A073B444E755AA88191A51010738F00EBF95B6EE31193E379B0F9585123D89F11E84956E0696929B65013029C2066FB48B8B9CF8C2744AE500F3B753EA8A7E3CAE197845A02ACCFF9FCC62FF39ECA0717946349B00EB3578A35D4789F6590EE692EB462B77752A8BEAEBE7036A18A00EB17524440F53A53D0986359605B0B157F79BA2DA15EF2590E297BCD8456A4F308883CD209A16E9F3015368F3285437B4FC0898846A8BE170A3F144F08EC8639ABC41CAA1D5CDD6D2AB4C2B70CEF9C5063AE95C3E19D0761A39109388F9B4C40F50B298643ACE20983DD34EF07B1861AE7BB022EEF1C2DB4429C8621A89B3B1FD4E4DBB59094F527842514C1BE65EB1B7BD4E99670F0C8A526B05BAC568B35D4589F55A8E81925B42E6E34E99C5053B31E404AFE5F04D8C86B558DD52F824ADCCE5F013F1DBF01CE0BC41F6AD4B61142EB9CA371E7847AA7E011DC2EF91F01F6526A0D013328A10C8EEC3F0F9BC79883A3BE016C9DB148ACA1C6F8FC0061283F0AABD3F6461075744BE7839A5B5A07B955FF12609333EE379E70EA4A3984A53C42557135783879C3368B05E20DD577355CDC344C68FDB27648E7845A52F9044A6A9F116053B37E27A0C65DAF84D88C3A02ECF9E407B0CB7A9D58438DF65D0BE71C8C8456E01A4388F2DBDAF9A0C69E3C0B950F9F1160EFE43F6C5CDD97564DE45812ACBB8D78438D42507F5B3754681D5F65D0F9A0E283E318E21E8B9970252201F24A1E133FDFB85DDD543C61B07B6DEDC51BEA217B085C3D5868F9AFD087683F67F1808A4FE4419EF3A1B587C52E9F39032EE3C6354E92162C06970993E156564D53F19494F5043C96AF176BA891BEEB2160A581D03ABC5C4F3CA0E293F263A8E8BE19827A5924DFA5A9AA82202FAFA685618756AE831BA9854D60BDECC41CEA2107388200092BDFA50C64BF1F192A3EED283E213F92167A913189898909225DD79B9B0BC71C1C501BA30F8E8686E0E7E40AD76F55C1FE950E620D35C2D7017C10204175CC1E415DC5808336BA1F1DAA143EF3333E673B7A92068AD6EF9292922EB5C5BADECCE46462A521B1E0DAC8189C4DCDC41A6AF82147F8C97A90C0CA0C37842B81FAE8BE0E44FB6FFBB850F17550F069BDF1855B516E1D72EDDAB5A8B65CB49D74F62CB89A9B1370C51BEA06F0FE7E90C0BA136108C9270D88FB1F1D2ABE060A3EA5377E22823AE882BB7B5A4966669BAEC6C7F936D8DB9BA8943B0B547F7B1DF879E5A08F0B9533AFB2AE87A2EA37776EE9CE7EFD2074EB56A82E2D6D53B8D595959D062A55E20095B060FC24DCDAF8CF9B57BCA3776FC0DA33681024FAFAC2FD7BF7DAFDBB351D196A4CC0769140453C26090D951AADB860C236EC6D6B3BFEC8F4E90F48B058FB478C80B4A0A0CF50DB1FEA440455175F92B32550F1E5316448B0B8C5396A67E78C60BEA2C20D98350BF2AE5FFF0CB51DA016161696A1E2753CAE73F0E53859970A130C2A0758696CC5F805F005D151AE553A666B1BBC5747A78104EBDAA70F9C5DBD1ACAF3F23E43A585BAA3D5EF5F5454548272AA290A326D9C165997099316EAF2D5E4C558F11371458C8B27326AD7CD9E3DD8DFD232CF5545A5296A776B6A4294BB3BDC639D87FF3354D142CD484CAC40963B1CCF0F70114B5E9B46E80BCD53C036452DFE84E03E167F5A3C972E5DF8F3A4494FA996EC69680857F157296A6B3F4325A11E7369D17B96A6A743A48B0B780D19023E66662FD0BE37E8D1A3870AE5F260524243A5814BE45A9CA8D1A7E51B5C891D5DBEDCDBCBC8E82D15EE217373C88C8DFD0C5548A895393910B76F1F1C183912A8FBD3D7CCEC39DAD7FD5947D0BEE07AB12161A072CBB59C963CC1C44433C0DA3AD1BD7F7F2675634E2E5A044519199F34D4D8E3AE3C5FFB5E490924A156F1F0C4896C2039A03E43FB5A89D745FC5A04955BD4522D1957651BE6CD33F59B33A70217504DC514CABDC14E4E50555CFC192A4B0F50ED71FDF871A283A0EE2B4EB9A9A981DFCC990F02D7ACD9C1EF729B2D86CACF927112C79FA8FD4B97AEF6193BF63FEA06EE193000E20F1C80FB35359F18D49DC46B3C7EF000D2CE9E8553C8BD76F6ED4B0BD24559190E8D1FFFEF713BBBA0B5B36619E043A13D7BF6EC22D0F55345216E968C37006F088A60153F5BDBC07D0606F5D48DFE69D830B879FEFCA70175F14038B3D916CED8D9C12E0D0D5A9058DE26266F4F2C5992B27BE9520B5CABE0B486F7257642D605E765F85EE958C460D92C1927736C1778FA31DBD454CF7FD1A2F45DC84AA8FF1347A74F879C2B573A1D542F240F0B6DF01A6B08BB347983DC3B68504380955589EFF2E50E08601F5C08E19900AB56A1C29416F89AE46D00578AB5016C968C3658798BA5E58CC316160F5D9494D8ACE6CC8A15509A9DDDE1A17ACCD4869F260C853D03B5798274535585A316168F0356AEF41DCA6068E20F3E6B1F75C1C180F71B763D4A644A9181C373FFB705546EBD2DDE38FC89232D191FA7F5B1B575D93F7224DBC87197BA3A44B8BA424D0BCF03F1B1A07ACE190007A618C38FFA3A3C41E20FB2EFB871CF8E2F5F1EB66ADAB4E1B8EEC0FB83E566B83D54E0169582C06C73A8FC2C195B0BFE64AAA9A9691CB5B109A58E1CB1F6E9EBC3958000A18717ED09D5D372201CB418065EC6863C411279D2C8E8DD716BEB34376BEBB9B8C6C01D02EEEF497B65B527B2149052C2806C57A83496CCD6DB624B5E3271E2707F2BAB7CCE6AD0C7D4146E47468A0DD4506F7BF09D3B12F68F322152062F907B060E64FA5B5A961D5AB16233FA20F7238B1ED624EE0B5E51D9AA7DDD5E50051937624B765DB870C9A1C9939F72EEA013F3E743C1CD9B1F05EA23E416A9BFFE0A815656B09332E7E626BC9000157E757E767647BF633006F0287A645B6AAF620595576FCBFAE412E346644DEA3E36360770694FDD61787871C1C1012A8B8ADA1C2ABE186D4670309CB6B5251A7F7E7912F5E2CF8F2D5D1A6D3B69D268FCE1E453F4882C2AC506AA20E3C67EFDFAF519C260E81EB5B6BEBC5B4B8B6DE4E8AEA505715E5E5C8717AD818A2F809B1D1B0B17D6AE853DDADA7CF3A49791D1FB638B17DF76FBFEFB45CACACA6A6D51F47438A8828C1B712E5A397DFAC4A3B36757728ED1BC8D8DE1C66FBFB51A6AC1D5AB10BA7933ECC3DF93E50312C166FACF9B577970D932177CF8ABAD8B9E0E0955D023407807BA2F5EECE0336EDC7F9C3BFAC8E4C9907DF9B250504B333220DACD8DF860F003898BB7C3D3A6FD7974D9B213A3060FD6A32B7ADACB5E3B0C547E964C8E1B91B40FD9D8FCE2616858CF99D77E5BB60C2AF2F268A156E7E7433CB26D5F5451F3034954DE63C7BE08B0B189B7B3B030C7791E57E9ED5DF4740AA8025AB2EA18636393230B1766B8A9ABB381F8C9C8880D6A555151FD95C387E1E89429409D60D1E6C92143DE072C5A94E5B270A12D3E6EF9B18B9E4E0395DB521A6E4780D07DCDF5B3665951478E9EFAFA6C50777140E726F7C63C597DC0D6D61D7F214C9C8A9E4E075590712369C91ED6D6BBF68F1AF58A132ADDA12DDC1E1D9E3AF5E9115BDB5FC7A01715D7A2A753421574DC88A30B41D03BB1664DF413D4EAD0413D3866CC4BBF254B2E2F9B3A752AFE469FB8173D9D1A2ADDB891B4640C055B262E68562F5A342EFEC4893FC2828309A89E8307E33C99EDBA70E10AFCCD783E458FD8DB6BA7834A67C938BA7AF4E8810F2477C7EB9211B0BE87B66E5D7764E5CA9D6A6A6AEA089E2A5E8147DA6B6B0F6F7D86DA4E96ACABAB4B54C938F23038D697A6BB77EDDAB5FB37E83F0CB2A3153D9F1C543AB84818182E701430402C6D6D6D792E203B7C54765AA874B64C0128DDD941765AA83405956467B25641F47FBF6882BE724DFB2D0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (32,1,'House_(24)',0x89504E470D0A1A0A0000000D4948445200000016000000180806000000FEBE0D4B0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000004834944415448C78DD56D4C5B551807F0E7DE964BDFA1043A0A8CB1C286C8E8C88848CA4450D064EA3682236101B78E38464C8C6612753A58B2AC44E6074D140C3234594A34E21CB82540CD8A803A0B38C78BC828E56514182B2DA5ED2D7DBBD7DB52B0400B7BBEDC9373727EE79C7F4EEE414892047FF53317799E70215F391CE435D2098D274852FF56E101CEC18C82776D41E12FB359AC870902ECEBACD74AEEF89B8FF8836F4721498813FDCDE5043EE120817080D5E524E586285EB346B2AF2D3949FC777A4A620AA0846EFFF10F239F08EE3C8044BA70DA1F141AE772A34E0037EE7280A76DE0B12128FDA98967A5F97B113A6D61FFF1F777ED08771C44D80C92FE2B05A4FD8F026C58C0FB45992C5B4856EAD4B56953867C60C01010FEA110A1C568B116D241BEE2C19C9E0828D0BB5B2FEEF2F6B9C766195CD540CC6EEE3C82E4B40C0E3EF20BF7BFC4A8239DE4B9D5C99BD00D71AC8E595DE8587774E21E92C3C16D66F3A3C99595AC76B57A61033CF83AEB03D24E54AFA3DE087C8FEEBB20D567E9E4C6DB7992C3C4A9AAAAB0AB4545CB2B4B4BDA7FF4FAECAEB9B9C71EF8C1296611B513393519D931026FFB3E44DC1FE7EF89FDF8E64D3E8AA260C371A286C21D46E3CC98D198FDCBCCCC22B2D823572C359DCF702E1B395B51DF3856C7F4F6A0FE0E52945CDAD080468B44D8DAD171B399F8F4E449A3CB649AD459AD39487373F3BE1801FF2232A5CAE3777F16465896B10D11F89CC2E940669B4D22BEB8F8B4FD88541AB2F926E02693ABF6CC193D4ADD4A4FC6252525C28A8A8AE9E9F1513CCC30B4127EB7368C309BE9DE3CD72220DA74516AA33039EC7C6363380428A542D1BE3C3111B70ECB64B259F7C0FCFCBCF3A1E681456018B4EEEA6D88705A2C3477AEE34BAC1EC5626C4AC58D1B5C2687830682BBBABABEADAEAE3EBB055E2BAD566B9F1C1DB2C62C0F59987F36E1D70704BB8F5EBEE24A914858B04D058471A311EEFCD80EB9854780C1E1C0E4E4A46D74640467A1A825EFD8B198CD9069611A8239A180B178DBC31683015A3AD4B030330FE5E75E8060361BDC57AAB7B7D79C9999C95903C71475806BBA804D2781975D0182F8B49DE1CE5BBFC3A2950E0527D281CDE77BE0BEBE3EB344225987FFBAFE1E3816D59EF6DEA39740204ADD1EB6E338A85A3B00894D85D4A49080F05DF945783CA6F2B4334E5F858838F156585A581879A1B2728E11B27A351D361BDCBB751B52F27281C9E3F985BB9B64A0EE6D836026027965B510B127792B9C9393432F4E48500813130F3F9D9F4FA76118F8D676B0BB5E7DA76E1DEE562ABF91D5D494ADFFDD1004416BCBCB9FC3ACD6C6F8AC2C517C6EEE13C32FBE2103DDA006A6552A1B121A5AF3667D7DD59617845A805E5F56F636CD6EAF4C29280889148BFDC23DF24F60E1DE08D8750E82C6E44EB122855F5C696FFF52AD56DB2993F4FBE65138929696C63C2B1637328383F39F292DC546B55A73FAA1439C71A512C63A3A488BD1A86745477F37303777F9F3D6561DE5B83618815EE9B5782E15178BA231EC27278625D8351A8221142A29E542537FFFBFC3C3C30E3200B02DEC1BCF4752A9F0FBEEEE05EAA86E8CD869CE7F4552180558747E940000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (33,1,'House_(48)',0x89504E470D0A1A0A0000000D494844520000002C0000003008060000006A9098E10000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000ACC4944415468DEC599775C53E71AC7334820C55107A2202E2206C35270946A411C2DE0069CA888E38AA3CE8B560554B84ED40A5AD072FD2848951050212053020A82B202C680A0809F6A9D54114145F2DCF73DE4E0099B88B77F3CE4437272CE37BFF37D9E379F373400A075B6049AB4FE911C7A7E048B715CA04EE3B6777C6C6CAC964824B2140A85AB6262627E4A4949D150E5BAB83AFD86786D9A66540F7AF6956E74B8FC0D1D2235E872219B1E1BCEA4D9A2D3D1A9C76E983FD6D477F79A8C3F422F141D3C7810366FDE0CDEDEDE101C1CFC262E4A109C2E38EEF8558105341A53A4451745F76640D4B70CB8DA830E57341138870E11EA7410326925E10CDA26745C4F0278B6C5D8CD8E16B00595A7EBB4B23B82C30F0B85FBDF49C33CE19E600FC8847BF2BF2AF0355D66606C7F06C4F46380A82F03A27B21F09E08BA3B82D624D28608360257A3550B19B4DF0E1BEACCDFE6680E9B1C2C60DB3C8B6A59843790B0B8A4E15E795F0D3871186347FC2026C40D64C2351D06C46A23702D04DE0741F752A44D6A82D366D100690267B47A80B72517B63999574B2F61D8BD702FCC0B3D7AA184F74ABE0A70328FB93089CB94270E6342C2102610E0BA087C0082D656A44D684287ABDD1B3489E434A60D481308E6B0EB5317DA4061903B018BC1A502CFDC2E074E3356B312F3D53E5CE7A941B2811A2070481C8AC00723703D9C36131A35E9D3A0C9D59E94B4494D50DA023A8267A94182B529E41C5A0DC591FBA534D4A8B426CDAA32F0ADD16CC31BA35895A9266A2036528394916A707D04021F8EC0F529690F6C489BD424BA0FA529BB353465A326286DD4944445F4ED215BCEE3590E193244034133BE08F8F6185AFF8C71ACF2740B16DC18CD82343316A41A23703E0237A4A44D6AA2D7A049EC004A53F66E68CAAB645336D1E460BF7EC51BF8FC37B30D0C66F7EDDBB77B47A05B7C52328DA69935919D9D69C9868CF12C481FCB829B187C1402375523C089B4494DF43F6BD2D894ED6872AE3BA764BD91D1AB9F8D8C003D56DB73B94E5A5A5ADDDA836E3E6B9D68CCECC96CD19D496CC8FA810D9913D870EB3B16A0B4217D0C023757A44D6A62F85913A5A6A46822D2229BB24193C86E8C975B78BC4FEBF8FC6A373EBF86849E397CF85C6D6D6DCDB6A09B3D916BA71E98FBA33AE44C51873B366CB86D8DC02722F0EF15E064DA5813D33634194CD1A4BF9226F2BDFA839F1290C6C675F1172FD6AE37357D4F42633D747474BE69AD1195FE2998C5D92199A10EF976EA90FB13829EA60E286DC069DFB642E0386DAA26E69F35696C4ADEE7A6C49AC437D1E477BD9EF7301CAEB33E3E6F9E3F7F0E79E9E99FA8D0B3B8DC198A46A4B70A2C75E22CBAEBA0212F9CAD019299087ABA3AE4D922709CF6D4067022ED963419DD9A264C254DA206B2CB3719F109D8EDB6B6951896ACECB4B4BAF526261F14D06F1D0C0CEC5A8226FEC8166A58A1FA706F9E06481D35A070AE0614CC42E0386D7B05384E7B0ABB41132B8A26D4A66CA289D2EC1EC6ACDD6938FC35065A6766F6AEBCB4B49E0A8CEB8E58FC910AED686060CBE572D5A9D0B4FB2BD986F79771FE2E76E640D1220EDC5B80A011384A1B0AE760707590E0B4494DA62A6B9249D5640C451313654DFC78038A142AD4270985354D61C9CA4C4AFA80DCFE0CCDE54E43C0AC46E0BFFCE62495AEE040890B07EE2F45D0085CB61081CF47E04E081CA5DDAA2636144DBE57D6E40645932B7C4D29E9ED91B56B2B5B83252B3D21E13D098DE67495338F674D4E0E5A6969E9D31765D2BC3F8FD89696B822E8651C285E82C01763700DC09ADC6D4913B2295BD0843ABB5347B15E6CE3F38886DA6869F9FAD9B367D01E30AEB4D8D8DA466823A3D76BF9FC310470626262CFCCCCCCBD3299EC4D59416651F13E9B1725CB15E0544D9C289ACC6C43931F9434911F301D52A61861EF0BB3B3EB3A024B96382AEA1D7A5F2D71778C8DFFDE646232BAC10B24B58F8F8FAE4020089548F2EB6E2747BF927A4C7C8B35295E4A499BA24901A9893D4513EAEC46E061637AE5902A5CF2F3ABEA0C2C59F1E1E12FB7585810E7D8696353D5088C87B59D9DDDD4070F1E407272726D7676767D665C64A574F777EF94345940D1644EEB9AA45B6B94A211568F2FE4E1E0F04A15585C0F1F3EAC0EF2F52DD93A6E1C8406044033E0478F1E012EE436C4C5C5D5225DE4E9A28B95B29D636B7053624D64AD6892AFD024E747F55A0FB3E1C46AB661F4E8AA3F2B2AE4AA0297979757EBEAEA9A05FBFB2F8A8E8ECE691598ACFBF7EF033AB0E6E6CD9BF21B57822B8BB65BBC6FA689A3B22667270C2054D8606CFCE926FAD0AAC25281F97C3EBB71E1680B982CD494F2C8C8C81AB1582C4F0D0FAA94B98FFA4068B2A84113A94293B4E9DD72496F4FB9BBB73BC2BE1A305977EFDE95878585D5242525C9C597022A8BB69A7E2435299CC779E16EC2ABC2B05B274D7AF9A5B05D024C964422A90F0D0DAD419ECBAF5FF0AB946D36AA3B6239A49418612626EF4AA4D24E8DB02E052EC8CA02D1E9D350515EDEECB59C9C9CFA73E7CED520CFE5D76262AA9245A2AA9890902F56E18B80B3C562D8BEE904782C580962A1B0C5C4B3B2B23E9D3F7FBE322A2AEA555959D9878E023DB897076961C7202F2DAA6B817D4FA7C18E7F07C0C6B5C7E1D0F235505450D0ECB8274F9E40017A1ECDCE8FAD01FEF5E431E4260B20E1A41BC4784D06B1B715641E428F978E762DF0E9A044F0D97D063C02B361E3D6B3909590A012706EC205B8B97F52B3125F3AD6B5C0273D8F81D7A2D5E01B9401BFEC0A6E11F8F1E3C7ED0327FE01F19E139B9538EC78D7022726E743E0FE40D8BFC1133C56FEA23A70721844BA8F6F562961BF762D7086381B2E0684C2D594523871384465E0BCEB4208F9D9BC59A508FC3A0F6C6F6F3FA525E00768790EF6F48480CDDB419C5102E702235507165F86C0D526CD2A45E0DF39E08103077266CC9861D5D662917BE306F8AF7103DF95EB540746E3CB77A9A1529D75E7434AF8A98E032BA059CB67CD1A971612D2EE2A972210404166A68AC0D17068314FA94EAC32540998E13C71E2805FA74E7D79D2CE0E8D9F8476C1BB0A18576BC01515156F11B0693360121ABB1CB862C5C14316161FCFB9BA822C27E71F052ECACF7F8B9846989B9BB35ADCAAC23EE317174E9EAC1DE8EC1CEF3372A43C62D72E78585CFC7F03AE40D74AF2F78753B6B680AE5FAFADADDD0F7131DBDC6EC569E34D8C7D4B968C3B397B76E97F8C8D21019DA4A52F405D019C18721C528382E08C8303ECD6D1817D0606F20047C7A280356BD6533753DADE8B6DD81D67E21DC5A3CB97FFEBA895D5DBA3132640462B5F803A0DBC70049C5830018E4FFB013CF4F488F2B7B77F7A66D52A3F271B1B5DC556155369E7A743BBDE0A4DD009BE3DE5E2F2DFFD26269F02E7CE05496A6AE757BA9428F077B602FF1953C06BE850D8D9BF3F1CB3B6AE3EEDE272798B83C328C5CE250BDFE13637033B08CEC09FDAD9DA9A7B72C182AC3DC38641E8BA75502C91B40DFCEC19E4C7C541D8C68DE0CDE3C14E6D6D38686E5E17B078F1AD03AEAE737AF7EEDD034F81A6697ED1CF5E4D35C1BBE5BB172F9E7EC2CEEEC91E7D7DB8EAED0D8FCACA0860F2FBF05D74072276EC800366660424F6F2948343C989152BDCD1A8EA83172B742EB58EFEBEA11230356D9CCAA041837A1D7571F1386C6959EB377932017CD9CBABCE77FC7802127BE96767F7FC94AB6BC0B4B16387E20F8AF56AED967F35606ADA58133D3D3D9DDFDDDCA26FA354F7EAEBCBB197BF2D5B265A87564FEC7E4B0DA4D235BFE4CD4DC0D5707A3E6E6EE3BD5D5CE6A2E6E9DB5E03FD63C04D1327BDEC2A486AFD0FCBC58EA110BF6B7E0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (34,1,'House_(64)',0x89504E470D0A1A0A0000000D494844520000003B000000400806000000A4C00FB10000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000EE8494441546881D5DA075493571B07F0104280EAE76028DBD93292220A4AA10AAEA2965A1504418A1450BF5641501495218238505B4645A155111702828C02828CB287833D05515A51B115B5AD15519EEFDE246F7889490009D8EF1C9E030792F0FEF2FCEF784F2E050028A2A8CB92940FE3A5C4EAE2E8D40309148AEA3BBE8E587272B232AA5931313174515D1B51227991D4D114F984D162CD57468941BC342A49B1D77134B1F8781A65A1B0E7392F9B2E197A648F27C2C5474444B404040474FBF8F880979717040505BD8C8C8CCC467FFB26252565D2BF029BAC44F92079BC7849D2583148FC8F1820345CF90081A5C4204E520C2E4B506A63A9944D3114CA68DEE76EB560C8B8ADD685EDEB4CEE8707EDCB3D772EF27E6060201C0B09791E71EAC7BB97CF9DBC959B70BAB82836B8A43CCAD7E7BD62F75228D4D40962893FCB512159860A49E3A89088D009188DBA7C459A83A623348DF20CA183115A9D8C7536D383ADABD9B5C55C0F0A4FBADDAFBDE40D75B1BE5017ED0375317BD93F47799D79AFD834256A68AA02155226A092A7C2CFB2083D1EA35197C770BADC1B6D889360A17B62C528E9D114CAF26D5FA8CB6DB5D003570E74F3AAD970FDCCEE8EEAF3BBA0E6A20709EC03E80D88786FD80C35AA7BBAAA385C55168734452A10685697113A09A3F9459BCE8A36C48AA3A252EE1D66AAC08E2F75C015619DCD6643F1A91D0F6AA3BC58C8EAF33BA11E816BA3F7BCBFCE664E13B7BA3645BC2763B238A4AB21B00A022B71D013395D26477B8CC06863305CA2512164B21C782ED282D2889D8F708C31B03ED60FAA2FEC6277F6A2E7E911C7666BD08CB33EA275654E17876B53514D11878C4908AD4AA0495D1614ED0FD8D18E23A2CDEE32A0F10C099315BA0A9D56201C01F64591DE8DBB1C36A2D83C065D2B478BD699A349836C751A647D4803D465169AE8729F684F24455B8627DAA304445B8C8D8E1F3B0A72CCE64265D836D6D845D13E43A150C4700D3B364F97A298A72D712FF7631AFCC2A4014203EA32A02E23B4381B3DA5174D443BB59F685F21A22DD937DA311C74AC3815AECED17C55E0BC2A9EC160D011560215F55DD0037A500E8332BA404FE256FE2C09C8D391805C6D1AB0D00C8426BA8CD07CA3AD2C24DA6305459BD227DAB822E8F4AA6F198C70656565591515156984151F2CB87FE87C0AAD489F7EB5688E0414CE9680025D09C89F89D033D868A2CBC2A27DB59F6827F613ED68AAD813370D8DAE2D4C26ACD7D28A525252529D3871E2280C1629B6D4887EAAE4533A141B4840D127088CD0A8CB80BBCC4693BA2C28DA9378A2AD408AB62C4FB447BF15ED9EBD93541B3194287B4DCD3804561B2C58E81FAFCFA7FB9419D30181A1642E021BA242E0227D52970718ED8C7EA29D2C20DAA1F2E39B31708396D6AF64B08396563C8AB40A27D2D421616F2E91B2BFB1980ED717A25A4007167A1E42E32E1BF676F99DA3AD2224DA9C6D67CC3889361706830B74323078C20B4658E58182F9FEB26299A449F932C9EE5B4B24E1E667927063111B5D369FDDE5D2B91CB401A7CBE468EB088E36EE32FF6873BA4C8A76920CF59F5DEA1FFECD85CE9CF9775B6B6B8FFFDAB57F91C18E082C2B2BAB3479F264A9FEC06FFDA276E5289DCAE592CF2B4C25A1FC7349B8B514814D502DE6A0892E8B22DA9379A24DDA761E9DA27897003933996FF25353BB3A3A3AE0D1A347E06B65D507BC1E8D6179797985E9D3A74B0A03F7855A48AB559949DDAF5A2905555F4A0242030BBD0CA197B0D1DC68CF17126D3D9E68F3ACCDC2A29D86D0512AD20D64CC3177F767184A140B6C69F9272F184D5813386B31DF2589FB43F9D7E3C6D55948D5D4AE96821A7329A85E85C02BA4A012A12BBE6077B97C29073D8CD14E5593E8D8C6D07C4D20B62D58F00CE3C85816F8E143F031337B4E066F6030E2D12C2D2708CCE92885DE60239D536F2D05756BA4A0D6128131DA0CA171975790BA2C2CDAF37AA35DC41BED99BDD1C65DEE13ED0FB9D17EE3A739E501779C6A6BBF6CAAA979CD0B2583BD56ADE205C7E18D87AEAEAE042F9882BEC49AECA42F36DA4A43C357A8D64A43BD15076D41EAF24A76972BBFE089F66742A2CDB336F7469BC637DAA7D5656AC8179E7CE6CC0B415032D8E3CB2F9F919FB7514B2B8EA1A222C30BA6B4384A1F6A769086DB5F4B0342030B6D83C0085D87D1A8CB838AF682DE6897F0467B766FB47197F34813589AA6648B0BB37799D96F67F7B43F2819BCCBD4F42919FC0D024F1D3F7E2C79D341E96C6B286D0F5CDED0EC88C0F6088CD1EB10FA2B0EDA9AD46584AE26A2CD3B810D21DABF68D3FEDACD54EFEDCE9C397F3EB87F7F40503278E7B2659D64F0B74C668C2A8522CDC5D6D6D6B6DEBB770F1EB7D656FC76646933174D747988D12EEB2FDAA8CBC1DACADCD9D789C9ECBE5950F06A3050A21E22F07613933E1B8FCD4CE685BD9CE58892939323555454E45A5959F9F0CE9D3BD0567BBDA1C97FD123BED1B66647BB9688B61929DACB79A26D2224DA86BDD14ED41D5D49BEB833070F3E7F1728510F1E3C801D26261DE4D744750E83B933D5F1E3C747A7A7A77BDFB871E36953531354E45F7D54EB63FCFCAD68AF1D7CB47197F945BBC050B27D3B53B38BB8A8DDA6A69D438192C03DBB962D6B278377191B67F54ECB482E232333C6D0D0706E7676767B717171777D7D3D5CCF4C7A52E733EF2FDE68D713D1B61412EDCF79A24D5A9BCB8CE8AFFD674E6DE3C65747E7EFBBCDCD3DA2C0E24249FD63BFB53517FBFDE6CDF01656515151B7B4B4F4766B6B2B20F0EB82828237D5D5D550921EF7A4DEFBD3BF6F135D1E64B46FF144FBE2277237C9DBC19CC4C47F4405C5D5D0D0F0F86C6464C67E2BAB1EEFA54B2131214130B6ADAD0D70E1719C9F9FDF9D9B9BFBA6A2A2028A53633AEB3C0D5EE06837BE4BB451970B164BD791979960171791C4975C682876A0CDC527DF1F3EFC697444C4CFC9C9C93DFD62896A696901349975A388BF41E31A0A932F3C69F098F392776DE61BED3E6BB3D4730F1DF53FB8DB4123A3A778D9182E2CBA1B1A877D083B63C058A29A9B9B212323E3D5B56BD77AD0E3A020F1EC93FA9DBA5D7DA3DDBBEDE48D76A8810A77F6C5DBC186CA4A81DB415162FBDC080C144B149EB153D16D575A5A5A4F616121E4C59DEE6CD8A9FB4A60B45197B33E1F574A9E21AF8487FF391C509163896A6C6C84A4A4A4AE9494941E34AE2137E6C7CEFA1D33BB79A35D6521DDE6A6ADF58280FA595BFF315CD061C3128597A9F8F8F82E0487ACAC2CC8893ADED9B07DC6EB46F632D5ED3F7BDA1D6E57F5F49EDDFFF5D761830E3B96A8BABA3AB874E9D24B04C7631BB2CF8774C66E5EDAB87BDE3C70D5D6C6CB4CF78D5F7E79399C50916283D7AF87ECE868A1E89A9A1AB870E1C2CBD8D85840E31A2F5F505E5EDE13171EDE31DC5091627DD76F87AD6BDD20C0CA1ACA323385A2ABAAAAE0ECD9B32F10FC399ED010FAF7A1205A1B6B203FF114DCBD5D3B32D8832E7BC1FF7C23B83907818BA92D9C7072821AB4F60A7BCEE3C78F7BD0160E3233339F0C06F7F0413B54165C85F4B01D70C5DB04D2BC3E859F3D0CA1A1A26864B047DDFC2024BE053CDD4260C7C17470F18E0357A325D08C666641CFF9FDF7DFF17E15D08CFD6C20C89AC2144809B084546F232838B0104A0216712B1581470CFBFD164F884869867DBB43616F5026B8FF58035B566E80DB6846161536E7D44EC8DF3F9F6F257918406345F1084D504EEEE06BBD1E7CED5DE1E8892C56A4B79A6D142D36C203AEF918F1AD3877FD91C39EDC7310AEDD7808FB1DB68087E96A3878281ADC2DBF112D36720F24ED36E45B51AE7AD058593232D848BF4350D6F0044E1E390567CE66C101173F705F6E25526C76A42FC4B8CDE15B914EB3460E7B7A9717D4DD7D06174222203EA104E2F3DBC1C776B368B1E7F6C359E7597CEBA76F74A0A9AA7464B0574242E080B9059CF4F287F4ABD721F36607F87FED245AEC850008FFEF0CBE15EAF8F1D0B1727272FF410FD0292B2B6B1286C5D580360B27B76F07FFD56B2029361302D66F112936F3E25108B267BC55C18E0C08B463206CD9D0B0F8936C2525258D9B376FD6F587250AED73E1A88D0D6C9D354BB4D8A84008B0D178AB2E1F6242F046CD2163C5F0477EAAAAAA4AE75D5DDBABF2F20684252A272606EEA01BFBE1C61E59C7FE3E242C072C2E2F2F3F3AD4DCBCC64B5919CE6FDA044DE80207831E6E2C5103C1AAA8A8E80BC3E24355341CE7E31B36781FD6D77FB977EA5448F4F38356215D1B48A1BDB168B1D5C2B1B76FDF7E84275B94D631023F79E780A938D2F37575E5C2ECEC2EFB6968BC3980EE4533C3C2007F54F26FC7D6E4E642E2BE7D4FF1FC831B2710CBDB657C3863CBAA55CCE3161615DE2A2A10686C0C250909FF02ECF53E8F6F2C2B83245F5F38A2AF0F1E1327C2A159B35E4D98306122FE60BA5F2CB9CBF8081D5E960EAC5B671EBC74E923FC623F5A5A4215BA217F9FD816F47AA90101AC06E06BC2E5F7D1473D27CCCD1BC3376D72E23D452314CB8316C7D1C603FE98A3A31F1ECF7812BBE8EC8C268BAA11C31EB2D08020F3B910B27811782A28B080DEAAAA70CCD4F441F8C68DC12B8D8C58A7DF38470DFA1C2619109637DA682C7CA0ABA1A17862DDBA2B7EEAEA3D7BA74D83447F7F686D691916EC212B0D08B69807DF191B809792120BE8A9A808810B163C0F777088755DB95207EFFE38C78368820E720E0ACB2FDAEB972CD10B5DBDBA1A77F9C08C1990FDD34F7C27B1C16233228F40889531042E9A07F8B589981E9E33A72BCCD6366F9FBDBDA99A9ADA78D61BCF3E4E20DEDF11DD4163F9451BFFD37D3636D6414B963CC61714B470219425250D1A8B3F6D2F8E8A82085B5BD8A3A6C605EE6730DE84AD5953F39D83C36605050579BC17E09C7912D8459162F9451B9F430AB4B70FC0EF3EBEC893D6D6505D582814FBB0BD1DCAE2E3E1FC860D80870301F49932058EAD58F15BA8A3E361E6B469AA53A74E1DCB997086F7BCF120A24DC7D19EA9A939E9988D4D0A1ECF3882512E2ED08EA28DB17979794FF1B9A6F2B4348842931B7A0C17881F1BF4D9679D610E0E17D72E5E3C03E16448934DBF311D112C6FB4F14481A36DBB70A1C10FE6E6751811FDEDB72C6CE4B66D2FF0068500E23A6268F8CF095BDB4C774B4B139C0EFC86BD4B4C47142B28DADE6BD6D825787A3EC3D843FAFADD1888C0AF8F5B5955ECB7B3DB806F3EF09236D498BE172C6FB4656565C7E093A3970E1FBE78DCC6A6FA0747475F849B8C4FA2F1C4745890C38EE58DB69696161DC37044F1F7FED6C4FF4B2C9F4E53898966A49044FD0F55A3E6737511C09E0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (35,1,'House_(96)',0x89504E470D0A1A0A0000000D494844520000005800000060080600000099BCB5F40000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000174E4944415478DAED9D07581467D786573AE633B144A508A2A0940524014505451463B017442C2016940404141114455014D46814691A5B8C82D2A409A84855E9257410B12218F325C69298007BFEF71D7660D99D05161676C9F77B5DCF05E8CEECCCCD33CF39E7C519680040EB4F454989F844490E4A8D90A0AD08A3D144FBFBFDFB5BFDFA66318369B637060F82286924A941102931E859A4186D0F023DB237FBF5F4F414898E8E56888F8F378E8B8BDB1C1B1BEB8B1471EDDAB532F4F52DF4F74E313131AAFF6AC0319FD216C40C19D41CFD9F4170E313A4C1AD90919B31E88F11E2B44B487ABCECD3D9FAABB93F9C3C148920BE464021383818DCDDDDC1C9C909B66EDD0A5BB66C816DDBB6C181030720282808C2C3C39F22D801E8B50BD13683FF3580E33FA3E9C60E15791FF3D92088F9741060C8D14CC8374837B7828608315A56B8286D2D72B54457FB755AA667B763A51ED8AF9CFEE1B887D3BDC8B06B056161612D274F9E24407B7979C1B163C7202020002E9C3FDF14161AF2FC766C4471F28D9F3233C203D30A423CB60E78C0893234A5F811220D71C345207618D2D056C8C8CDD0C1CDD26D6E8648711A848BD11A910E84D26872DCF6FDEDD2C9D64E667A4068851E7CB36C32B859CD7EF5839FEFDD94A88B05F7C2FD4BF2238E3F2BBAE6F567E91557C0AA08F384D2AB6E507EDD03CAAF79F80D68C0F18AB46137478A542041FCE72210370289808C44BA9915B47487D8001419D8D14DE122B4EBC8D186540E766482DDC1048D1DBD6DC5E4971866F9B57D50197E102AC3BC888F15D7F713801158A808F782B29F76F90E58C0092A34C92459D1F4041911B8391A69542BE4780C79783B68223686748C8D28D6D8102762032244691026422B46A0372149930EDECE04EB8CA362F96402F67673FD06EC500CB68373D1C7B25077E2F3AAC84308B887FFC0044CA30D4A1A231A92242F0A89722290208BC4844CBA99044DC4C667DD8B0D0C1AE5332047FF17413EEA61A8EAB1CB5CB70DAC0372B30BFA7AC72AFDC68AB0FD50157598702A5665F88156B011DE6DD007AC836F2B89F9DE5214855B0AA2804023C84818B24C3BE87832368673890D6E4550BCD5CD0832840FA23102658782C78C89E0B2B235877154D899E9BFC0394BC444E85E4204D0903D08BA0F01BA32E2E0C074F0EDF122B677C689C26D25A4B108B2622B64D2CD24687EC506061D368806178748C1E1496361D7D22FC0C562CA2F0444EC5AA683B19B7126B346C6807370CA04D105C92AA2CDC9CAA270673C023CAE1D32E9E6B6D890E18C8D3832368676121B9C45B035361064141B1022260AA7C68D7C5F70CCA62D7709A018348A0DC2B903D1C1296AE2BA29AA62EFEF4E1483BB13C400812620B3BBB91F6283008D5D7D536B1CE4B8AE41203DDB628215FA807170AA9A9452AA865863AABA18A4A821A9B64326DD4C82BE3596D3CD6DB1C1AD08B2F5CE1CB121D11E1BE12CB1418046BA31F233485B6D0CA5175DDB1C3C60BA884C2DDAB0742DB18A344D3148A38B01020D04680C7922276841C406A9700931B83D6B12E41DDE80007BA3966D9F1F8D461361D120A1028C7BDD0C1DF1F48C496290AE8DA485206BB240566305CDE9E6B622A84042E6121B5445B0EB91BB431164058D153741FEEFE425D342B6CAC90D56515191D4D5D515478045F90DBAE71BA383C8FC523C140932BF1007041A08D04CC81DDCDCDFB141DD3B73400E1115AD73A0D36F4D515292193E7CF8A763C68C914670C5F909B9C71BDE9F22E17B7FB238DCD343D24590316802B278073793A03BBA992D36A88AA03CA79B7B3972772882D769B48F6E2A2A6F1D3435E15B4DCD747579F9097272729F8F1E3DFA137E42EED1465953C56D1F4C158707FAE2707F0A12099ADDCDFD1D1B3CF4CEBE3232AF315C52B6747A96EA98315AA3468D1A3D72E4C8FFF00B32CF1BE4184A2ECC369068CE9A2E0159D310641234BB9B49D0DADC6383CACD6DB1415504F934725F18225DCF0A97D4563A3D47454E4E0743667572BF01CE3616D7CD9929F13E678604641B221920C8D3C5218BCACD7D111B7CE89DC3A444DE38ABA9C13774FA534AC81A1A3913E5E52721C0A39890C57AE3E26EBFB0689694529EB17863EE2C09C8359200041A08D00464363793A0D9DDCC1A1B74EAD8A072331F476E86E7F8B17F90306D34341AB840CEC6712123233312E5F2E0DE40EED68B4A16D08615984856E6CF9180BCD948C6083209BA839BFB2636F8D53B078D1EF68C1DE6664DCD5FB941565750A0E3C2C7EC2E7A04B9CB173C34A54916CE934C2FF84A120AE64A42BE8904B481667733099ACACD24682E459000AD4E1D1BFC18B92386893738D1E91C204FD8D9BD0DDAB9F32F2E90B3E88A8AEA08F0702664515E2177D9EB169B4A8516994A42E1D748F310641234829CCFEEE6BE880D3EF4CEB1C345FEDEA3AAF2911DA09381C1FBC68606F8E5975FE0B4A32337C80F26CACAAA61C84A4A4A52BC42EEF41F8B1749F9FEBC50128A174842D17C241234959B49D0333B898D295C62834B11E4D7C8FDBDD2688EAEC15E4BABA92C3FBF19C325E5676FFF2717C8F7D5E4E42622C043F1D4C70B64AEFF50BA4CD2B6648914942C96849F1721C8ACA0D9DDDC9BD8E8E3DE39544EFA0915B4EBA74E7D60854BEA84AD2D37C8F7F030327EFCF8CF10DC6E43A6866B26B9B07CB95473E9320478291202FD33091A412E66753309DA4412288B20066DD8496CE871890D3E8CDCF1F2A2BFBB68A8B5B0C3F258BEFC2D155C52DFD9D87CE006993E668CF2B061C3306489EE0C221C7F51653158AF7CA5D4FB723329285B2105A5CB9148D04CC8BD8F8DFEE99DBD272ABE6687B4EDCB2FFF7AFEF831740618EBC8860DEFA920A3892F63E2A851E3F0DA45772077F8A2D2424A09A9B162951454984B01020D65246804B994DDCD2468D34E6283AA0862D0D3FB36362E290FADE580ABA9C9C88C8FFFA72BB8A40E5B59BDA384ACA191A12E2333F6F3CF3F1FD2D548DDDEEBAEF96C58D55AE9CAAA35D250B95A0A1068C0A0CB49D0087219AB9B7B131B7DDC3BDF1C2F51BF9DAEC101C6DFD9F96D77E162BD7AF50A0EAE5E4D09F91B0D8D740459B1AB758BD65E771B4DB2C64A3ABDDA521AAAD74903020D954CD01516ED6EE6880D6E45D0B41532D7D8A02A82FC8B8DBFF7D12770407136327AF7AAB1B1DB7059217BAE5AF59612329D9E4E979555E86CDD82E8756B364A873EB496869AF548560832025DC50A9AE9E66EC706959BFBA9770E5097A9E368C9B4B5FFA92E2969E1152E2BE4FD2B56BCE592C9A9DAF2F2F2DC466ADA231B69DFDA4DD250BB511A1E6E406282AEB66A777315AB9BC9D830A38A0DC956D05445705E2BE4BE8C8D58F5C1B58E14106E9C39F3674FE1B64146EE775FBAF40F2E4E4E99ACA424C3EC913BB898F6E66979E60BDF39958F360F0656D035D6ED6EEE2C36CA5863636927B1C1CFDE9962E44ED5147FB34B53ED1FF693F7B2B0E02977BB82BC67D1A2375490BFA5D393F5E5E547B0BB98F6F4E9D377F812F8ED4959EEF3C346B5B59BA509D0AC6EEE101B046469CE2268D6EE6641C4C6512D85171C27AEA7F7A1FEF973BEC06585EC6A6A4A09D94E53F3D61255D521AC2EA6151414DCAAA8A880C7A8376C686860FCFAB030FF99F78C673CC7065511E46BEFCC7DE4BEAE33B482A2256BC94D4EEE764BC68B1A11649779F37EA7828CDEF7A6B5929254872EE2DEBD7B73F3F3F3B3CBCACAA0B6B616EAEBEB19F525F74A1E794C7D4DB8998C8DF59DC4C62AC1C446EA64C9173B343518EC277AD6DDFD5D5FC02585CC08CE2626FFA5828C14E749A74B700C1AE9E9E98B7272728A4A4A4AA0A6A6069E3D7BC6A8BA97F0B4DA5DF73DA59B2D3BBAB94F7B678A91FBFE54F17FF64F52E158CF753131798B63AF2F0113905FBE6438CF99D3C805722C86DCB16743E16C6A6A2A191E1E6E959191F1B0B8B818AAAAAA707C300A6F85BDAE76D3F9D8A108AEEFE8E6FE8E8DF37AA339A3415BFBEFDA8A8A1EB764BCAAFEC50B86DB575FBDA482BCDBD8B88003301D51C76B9F8A8A8AF4A0A0A08BF7EFDF6F2A2C2C049CD38F1E3D62E4275CFD6FF52ECDBF89D8E067EFCCE3C89D3C7D7035554B76F3F2E55EB764BCAAA8B0F0D54173738E63F1DBB103B802969191D1D8BC79B31DEA32A0B4B4143233339BF3F2F288CF517C30F2E37FFCEDE14E7A93206223C748F28D9BB61AC78A97AFB5F51FFD0D17EBE79F7F7E151B1D0D07CCCCDA8EC573C912888B8DED1CF0A64D9BEC500EE32C060C1AED08D2D2D25A504E139F57565632F263CEFDFE70A77A332FBD736F47EEEF75153816721CF5F5DF37D4D7F73B5C2C14A32F76EFDEBD27322CACE2C08A15E03C650A445CBD0A717171DD074CEAC99327505454042929292D595959C4E715E5E58CBCA8E0DF1F3AABB6F4756CC4CF1C5A4CD11A351766643409022E09184DCBB3C78E1D3BEEF2F9F31B2EFBF93DC6707B049815346AED1877EEDC6941390DA89F86B2D252465EB8FF9B873B2630FA62E4CE9927F57C879646133BE04BDEDE7DDA9275173062A68457D7CCCDCD25626363ADE3E3E31FF71830293CA0A0C860DCBA75AB05751E909B9B8BE3A325EFFAC93F1E6E57E6676CFC73405799E3676BBB4D4D0592BB9D01A631EFC10E0B0B93E8356052757575802283919898C840390DD9D9D9505850D09217F2DDDB5AC7F1BD1EB9438C46157244838ECE5F8F51C11556C01C83466F009342AD1CA0C99071F3E64D06CA6978F0E001E4E7E5B5E45FF17D57EBA0D4A3913B6BE127158E5A9C2D597278F84741C3ED77C0A4F0C88D0B210A7A46727232868EA224BB25EFB2F7FB1A3BC56E8FDC08F29BDD3A6A1C73FF715B5B814783400193C223372E84D1D1D138A701E77476D68396824B5E1F6AEC14BAEC9D03672896B2C3DD317DFA3B34A60A1CAC500026555D5D0D4949492D376EDC0094D3909A9A0AF733339AF32FECFBB3FA1B79CA913B79F1D0028EDCD5D26A2AC9CE6E163454A1034C0A0D2780DA97E6C8C84840390D77EFDE858CF4B4E6FC1F76FF556D2BD756048B577FD2B8434B9DE3BF3B851E3F2ED0964CE801932A2F2F07E4E666D4CA100D398A11484F4D69CE0F76F958652BDB72505F996301C563C992DF040D53A0800BD2D3A1024D76BC6C83D736C2C3C39BAF5DBB0628A701E774CADDE4A6E8B0B057D1172FBE893879B225C4DB1B5C8D8C3E3C451D8AA0610A14705C703038EBEA42E8A143508B3297976DF1DA466868685348480844454541424202EE42801CC7D3E3E284A66B10286017EB3DE0347705B8191A42FCD9B3C448CDCB3EF01AF4952B579A9020222202E735E0360F39BDCF0137BCAC87F2DC54E106ECB9F722785CAC841D3BCF81C3B4D9E0357F3EA4A182D6938105B9F76D6363634B4C4CCC5F7979797CFBE930ABEAAA4A2033FA0708F7B1862BDBA742B0BD8170033EECF523F886D410909D165882A3B51738E8EAC3776BD7423E6ACD78D91FFEE1E2EBD7AF895C2E2828E00BE086972FA038F3262404BB41D89EB970C3752AA41D3082EC2373085D7034146EC0C70EFF04A7221F11909D17AE859D27EE81E3F107E0B8C6051C27E94032CAD89E002E2C2C7CDF53A88FABCB203DEC14C4F8AC821B6E0690E2D50E945D420FD8EFE815381BFF8480ECB2781DEC3BFD005C82CBC0D1BF041C96D810AFE96FC0B7FCEDE081EF6CC8F29DD3A52E380939E0136E47E172E22302B2EB927570E84C36111718B2C352C100BE8D006778CFEA96CE0BBB838FD838C1AE5973E1A4CF25D8B3742D9CB894D79EC9CBB608C8C1DB20D97366B774CE61867003BE121C066151D9B0DFCC12B67FA907470F5E6ACF64B3AD82011CE008897B0DBAA5738E33851B70D8F908482B7E0D09398DB07BDE2270313281DD4BD6C051BF247035B71508E0A480ED10E336AD5BFA41D81D1CFD6314E454FE4640F65A690957A30AE03BF753B07DF254705D682110C009813B207CE7946EE9ACB0034E0C898692BA3F08C807CD2D212AB1142233EAE1D28D52705FB94140809DE1AA935EB774C641C82322E4D051A879FE96807CC8C20A12EE96117181217B59D9090670900B5CB2FFA25B0ADA26C40ECEB97307DC8D8DE1C0C2C5702732117C565B424A46455B267B5BDB0B04F0CD6057386B3BA95B0AB4EF07C08A8A8AC3646565D56D6C6CBEE5750DA1AEB616AE1F3902CE7A7AE0B568092444DE69CB649F8DDB0402383E7837046CD6EA9602EDFB3822F0D397F03DB9727272AA5BD11F5E0193AA2C2E86B34E4EE0A8A505276CECE07672311CB571100CE033EE70723DBD539DDED4FA31A03F00ABA8A87C3A6AD428657B7B7BEB9E02268517788E5A5880A3B636B84C331008E0B833FBE0C83AF54E9510A80597F7D2C1DFAE8F01CF9A354B0CDFF7853618E3EAE0B0F6495D5DAF0093C28B3CFB4C4C040778AD5AA7BAB49B0E7E5BD4FB163013B2087E2E02DA6084D7DAB55B7C757521EDD225BE40C6DFACB2FC7CA1044CCABF2F23827431BE1509BBD877FDFAA57BE5E460CFE8D1E0376F1EE42725F105F4BF14B0312F80F17DB712F8C5A7366FB63E616CFC0643769791818BEBD743796EEEFF0366517575F573D4DA1AA1CE6B2CF3B65AEE805921E382876F11C57D71F0C68DA70FEBE83461D0FB1414207CD72E785459F9AF031C606FC4F3FE6B6A6A9E214ED371DD62DE52DB396036278BE15B44F1ADFB0B0D0D9582D7AD4BDD3F6E1C03833EA0A60649DF7F0F4F1E3FFE9F055CFFE409A45DBEDC88C07E89AE7819E6C39344BA044C015A1C6F8C7B64770B8BD9FE8B17D7B9CBCA12F97C6CEA54C80C0DFD9F018C6F55C842E77BD1D2123C1415F1F9FF8DD84CC0031A1ED47802CC02194B14EF80D9C68DF87ED3A66DC767CC78872163052C5A044577EF0E68C0FE5C00E3A753E54547C3952D5BC04B4505C873661AEC23762FD59302BB05982A36702BA7AAAA3A043FE73170C3860B8734359B8942885C7DD9C606AA0A0B073C607C3363317AEFEB8E8E70505DBD03542C4F151546D0F2E58FCED8DA6E67760F1DDCCB33607637E3228863035F1A165F7DA511686191E531762CF1E6FB9594206ADF3EA86BBD637440012ECFC880283737F0D5D1E180BA6FCC18DCB2BE3EB379F3D9454646CACC6585C1DC9E7AC233600A378BE222882F0FFC18C2BDAB562D3CB560C10BDCD2E1033AA4A505770203E1298FFFC3A7BF01FB2C9F08DF994E86C393E81C50B18E1B1A7E386B6D7D73A7B9B9213E4FF281CECCCCE5FAE4EC1E03E6161BCC758CD1DF6FD8B0E7D8F4E97F92077862E64CC88E8A122AC03E2B55E1C4E2A9E0ABA74309F5F0A449CDC1AB57E71FB5B65E879FC68ADD8A8DC47CF046B71E49DE6BC054B1812F191C1BCACACA0A01969661DE1A1A2DE4419F31338392CC4C8101F65DA50627971BC05183C9405E65AC42058C118872D57FD32694766365F10C805B5416B78A91507BFC603A7EC5060E7E7C39AD9A33473760E5CA223CA0E093D82B2F0F21F6F6505352D22F8063FC77C329F31970C2D800DC99A33FABF0F1F87DFDF56B344C9DFFDAC0401D3FD6163FE14F8EF9007D2654515EC0F609606EB1810F16B731A87FB638F5F5D7AFDAAAB0B232C4787BC3E3478FF80EB8E1C50B7870F52A5C58B70EC86F2C47AECE98F1E1CCFAF589DB962D9B858F0F5F75D814F898D97F2B419F3E3FB8B7B1812F2D72E4C6E3E4F1F5EB7D8EE8EB7F244FD40755EB9473E77A0DB8F1E54BC84539FF136A13F1378F0A2A7A2F2257BDADACACD0F1C853142C9E22406080B98DDCD821F812541F3F7E82BFA565FC0155550679F2A74C4C202F3E9E27C0B8572D4A4A826B0E0E70108DEE545071AE062C5F5E870AAF2702AAD855C1128EDFA3D173D044EF8C6303150FD975262646A757ACA8C039480239B7660D946565B103EE70F34B597A3A44BABA82CFA4499450895C3535FD35000D4126D3A669F2A360093560AAD8C00EC2278D5CA5E06161617372EEDCDF580125FBF9B5012E2A2A7A5B9D9B0BB1F817A1EAEB5342257335D0CA2AC96EE9D239388EBA2A587D7ECEFD09985B6C6057E1CB161599F1C7ADAC4EFBEAEAFE836105CD9FDF06D86FFEFC266E507DBEF8A22970F5EA028FD5ABAD998BDE7D52B0060C606EB18173514141416EB28686F6E9356BEE9E3333639080BDB5B55BA872F5B8B5F541B4AD0A2E587801AA2F0BD68003CC2D36302859595945F72D5B96E6C5C6BE494A4C8443DADACDCC5C7D7DDADAFAE26C7DFD2FFABB600D48C0DC6263C488114310E4CF11C431673C3CBC82366E8CFA66D93263FC6319E6C2F670320284C5AD420D98CDCD04687CA96388B848E14C1D8AFEE0BCC6058B056ABF15AC010F982A36981025981217B608189080B94487080B78A186CAAAFF03B287F0DCCFCD12530000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (36,1,'Hub_(128)',0x89504E470D0A1A0A0000000D4948445200000080000000500806000000D1007DE40000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000296B4944415478DAED7D09785BE599F5AB7D9725D996F77D8BB778CBEAAC40580209490861874217A6A5B47428B4D39676E83CA50BC3B4408769673ACF749E29745AE84F29744A292D242121AB93D889F7DD9665CBB6646BDFA5FF7CD74B6479939D00094479F448BEBABABAF7BEE73DE7BCEFF7DD1B5E381CA62B8F4FEE8377B9038087C7D47B1C4BB8ADA32B231C0ED98A0AF2AD57C2FB3106C064E079FBF6EDE33DFEB5AF6B355AEDAD3894BB00838DA150D88BE37A23140EBD180E85DF2C2B59E1BF12EA8F0900A602FFBB575F95979494EE14894477F1F9FCEB107431329FF0CA9880107C42F0F11AB660F9CB58FE626579E9E12B21BF4C01C002FFD5C71E133CF4D017AFE20B04F7F079BC3D08AE8A0B3617F4100BF664D0431C08A6DF4F0081ADD38D755FC2672FAEAAAA68BD12FECB00002CF086016325B2FC6E04F14EEC6FEA44D027821C1DFC5940381FFCF3EC30F1DD9358FE523814FADFF56B5699AE00E0127B982D635908D4DDD83FF62C9908EAEC2C9F06C03C2C30F3F399A0B07BFD64B07AC3765FD0A210F17F93AF117F7D73ED3AE715007C440FABCDAE43B0F62158F7E075035E79D1419B06C1022C305FF0D9FB603044C30E1FF55ADD6476FA4924204A538A294525266138ECECB5F9CEF9C2A1D753F89E6776DCB8DD7705001FF0C3E9724911B49D212ED343DB27CCDCE2418F2DCBCF6FC31F0850EFB89BBACD2E72FA02A49208292B4E4AC94A11B90341EA1FF7D080DD4741ACAF5788285325344B04F4D2803DF8D7FB775EF5C615005CC487D7E7E3233057214077E3752F02A49E8FA6C353591E9304CCD67DBBC74F9D2376EAB6B826828B4CCFD5CA482B1391D9E1A5AE313718C14B42018F3254124A578B884F3C3239BDD463F593C317249D44E028D40A9F13F2C2FF75D375DBBAAE0060998F402050C5341DC182990BA52E29980B51FF1C1260B2B9A9D564A50150BD109563B64E41B9F17212F379640013B49B1D64F304480926C8D1482815C10F80097AAC1EEAB3FAC883F73AA900A010E3954F6358B7CFE6274F306C5709797FC853F3BFB2FBA61BCC5700B0F8231BBF71D7A4A12B09C5EAD4630C7EE47B7F20048AB75193719C2C2E2FA911DC42BD9AB2107C1F02DA316CA30E04DE87F5F408789E4E4E897211D9BC01EA343B21035EC216393064C7894826E4D1A0DD4F3D362FD6099194CFA734159F52647C0A84C3811E5BA013FBF967B13FF4DDAF3EB067EC0A00CE3F7478DE86E7DD78C2CC8578B1D0787456C7AAFF2EAF0F411FA3A6A131F240DF53E3E4549CACA16468FC88DD4D2D4356EA8504B00E5276BC820AC0042CF3876C1E6A1B75802DBC2446B0B3210D396A092010A66E78829E310FB9611A353003592A11E9E542B261FBBD90864157901442A20C059F12A5641BF384F78F7842EF695CA6671F7EE8F3814F2200A478DE3C19F4ED788AD8C2F054F0E609FE8548C008E8BDBE7F84DA4CE32400B51720DB8B53B5A4120BA96BD4468D60020600A948482BF42ACA4B54918005D7E2A416938DC6DD7E8A938125E295941E27212798A06DD489007B38BF900283C8E48101600815433700617607285E26A06C9590B4123E0DBB00087B80C6C010F1621ECC237F58C60BBFD4E70A1E7CE2817DAF7DDC01C0C7F3EAC9A0DF82A73A7A856900CC4BFD4B0B7E3018A4CEE1713ADD334286313BA965622A4F8BA7A2E4380A60BDA6010B023FC60553A7945019966723C01E7F909AC104AD9001C612691A19150210490A31681E2C31ECA041308290CF98404A795AE617C2D40326E8B078C885EF3340E469C42483611C4029D9CD4CA23F44C9723084924FC003F53B82D4670F5210A7354F45FD4992F00B661FBDFAD5FB6F6FFF3801A00ACF7BF0BC03CFD485565C38F873077D86D64F028005ADBE6F844E750F92D5EDA3349D92AA3213115C158D3A5C74BA6F94DA06C771E2C3948980AF4CD3518A5A8ACFBC7416A0E818B1410278949FA8A462B0814C24805F704236AC6401132891E545900726033ED07E3BA4A1D3ECE63C418E167E0172C24621BAC0025D635E0A6079965248D9A81AD8FE77C138F623F07C80264321A074198FEC00472F0031EA234A9352578E3CF48380DFFFFFBEF0D9FBC72E4700644F663A7B16C7FAA5508C65DC7C2C60819B3FD63548677B4D1C2D17A7C753755622E914526A1F1AA7533DC3D46FB19348C0A712D07F45BA8E945231F54202CEF49BA97FCC414AB1884A53345494A4E618A409F4DF0CB03891D5C900493140910EEDB7B8FCD434CC4A463700C28734C8010809F910C816B30B12E026111822572345E0855CFFA0CDE223038CA2147E2017604891B38A012C650D9085C982148CA2E0911080E9728469D40B80C8422733A4E1A7702EFEF4C5CFDEEFBB9401101F61E66AD9FA4BFD8105BB750BB040A7698C8EB4F6531B8C9D5222A29ADC24AACCD2835288CEF40E535D8F89AC4E0FA920018C09CA90F12C439B8C16806284AB02925572AAC8D0A2FC53D118FE3E6330C32FD8D82628374141A5C96AD2022C8671279D1BB271E5618242442560880C643CDB46D3B0936B20B1C6D10A9D9432D4623203282D00C900CA420D78BF402BA62418C421C842FBB89FC611F81498C35CA5803BA60E5B8086DC61CE23E428C39C0FE9721099BD14CE9207FF922A0E7E0FE7E1F057BEF0B9F0250580677EFAB3773FFFE9FB562A150ADD7236BEB8FECF0CBE2F18A0339D4374A8A58F86AC0E50B99AD616A451718A8ECC0E371D6D1FE04C9F8FE9B156496B72F5C86A1D39BC5E006218C018E1B2B230298EAA321290DD32EA0113D4411EFA50FE4941FBA5A91A2AC5E722E83803433D8CE2B8CB47E9A0FE720042AF148335DC1C208C762FD7292C4954E0558C807B0008179960085945B0225E420930917DA8225A20F40E7F0026103E01EC10808CB4020C46540B7A09A4472D203E8F8121880A224CC00CE529899482100DB9880C1EF24AF9E1238532DFC38F7DE90B8D970400BEF4F8B7C23C01CFBAB976DD995B76DCB881CFE70B970A8019DDBC3980C096D990C9EFB5F4D2D13603A7F565A0F80D85E908B28ADA0CA374B8DD401D43163632482B5275B42E2F95D2B40A3282DE8F761A39E327100890ED3AAA011B30D7DF6434D3C9EE111A7178281E66B01AD2C124C0E3F753BD618C1A1078D61B2844B657401E94623EA7FB67B07C0CCE3E5B0740E0330D1C7F174AC8B3430EAE6A60D54269A28CD458BF13E6B0193EC1E30F53AE5644057162CE2C36030C43D846920C32122782B10C7360304002E021A94045DCEB1080D06E0FA3D4244A9186284B16E4CE53A74B308253733841E47FF4E9C71FEAFEC800F0E5AF3D11E641F3F83C3E89C5A2AEDBF7EEB254AF2C5FB524002C2201233627FDECADE3E446E06B11F47578323D3FDE3140875BFA51C6B9B880AECA49A6750529A06231B50C02146D46EA81B1D32924B4262789CA91F1ACDF7F02F45FD76D2217B6979BA8A69AEC78CAD42869D4EEA1137DC3D43468858EF3692598A03C4D4302ECCF592C3B33304E5E00A208D95E9E124732219FF30A2CF04E9F9FF2E1074AF1995CC4A3E61117C704011C43118052A89390D513A073236EAE5C4C818C14EB44F89D30C0E0A75E48851A52B1224E400928964DCE103583096C3E949A308BF90A260B21EA74A28A70F34881EFE5CA02A4158682262FEFCCA89F5717E60BFFE9C56F3D38F0A102E091AF7F7B1A007CBCF270E2B46AF5894FDF776742B25E9F73B1F49F513A7BEF0495FFADBE9B8E751800083FCA38196D5C918120263338D189CE413A049630A36CCB498CA3F50044A15E43C33617BDDF61A4863E33E703CA91EDAB73F4A4938B51325AE93898A06BD48A6C96504D563CB45F83A0FA200D16540863DCB13116284B5171FBD160B472A0805FA4157A2500A10050881A86EC9C27C0EAF00972041E5506FC40C390930B7CBA4A4CA59005563E3642E03BC77D600A1E1583EF993934B903D4044098994740E08B200BA07DEA40F5D085E08B2111F98A102589C384A282DA9C3C1A0BF028451CA46C89DF8D7AE335ECDF8B38677FF9EE371E0F7CE000F8CA3F7C671600F838C390027F5E76D691BBF6DD52299349D50BEAFF121A40AC957BA2D340F530786B40F325E909340EED3F082660FAEF4586576525D106F882248D9C5A61F80EB50DA01A18E3FA016B60146B201F42EC6703A4E308FCC430AA8874C8C5DAEC44AE1164B2A2AA805F6886C633635793A5A332BD9A1C608CBA7E0062D086CC25AA48555359B20AFB14A6536007561D48C00A15C94A045ECEF983D3837664B38FB2504194EB6508268F1AC00CAD281355D848598298D2E0152CDE20D58F78C8043F90241750491C9FD460924E7B00EB865814A850C5A30C79183E224C2DB63021F3492F0E51BE3C4832FE2CCF3482F3F61B24D88B4F7DFB1F8E7F6000F8FB6FFC63980BFC6C00707ACC17F0C6D75655756EBFEE9A2A3E5BB844FD5FAC01F4C7BA367ABBA18BA428E36A0BD3B8C04B84023A89B2F0002A0493D5451930831B0A535105C483F6FD74B4630865E3108CA11FE65143EB010AD61A66E30087F1598FD94E493087EB0008A6FFC33076470188560498B5876BD2994954911D947E0280681A7670630AD5692ACA47E0FB51119C1CB0718E3F4F2BA5CA6405496128CF80059A47DD2417F2A83249065088B801A433260FF5D97D94082F511E2FA67818C26E5405E7503EFA83083C642157C5E7FC48D37898FA5C21829DA015CC2708438BCD6A62CF76BCE7A6B9FDE8BB4F745E54003CFACD27C391813F0F800850B057C8DA75576F0EAD5BB33AE5421A40D1DD3FD6D96B1F345356421CB910D083CD7D74A875421ECAC00E9B8BD2512920AB2101EF81254E2090AC4EAD41B9B8213F995452119D4105C002CFD6C98327A8CD4BA42C80A67BD44E87BB87A90B3E221126716D5602E85E0DD3886AA367949A018844E62F323494AB535027AA88E3FDE3647278B9B18455600889803816386B824F41E0AB00867CB83B365E706AD0495D9000AD54409589124A5508E1057C7466C40BB609518146004F20E41A4DCD9600B5C313A080A012358F92A414FBB99BD96739CA494428FCDB1F7FFFC9D10B02009B8B070084E6CCFC080030799892091E05C76FBF658F2C2F374772A10DA0E836707DAF89DE6AE886F6AB695361066915626A1D1CA3FD4D7DD4681C45F68A11F4145A87C0B342FF28FCC2E1F6418E09CAD375B4312F99121068D6003AD83E4403A8FD33210DB5399086042532DB49873A87A91395006B13AF83346481395A0190233D161A7179A908EBAD499F30887503308E461B89F1BE26554585F15280344875830E6A35B3BE019FAA93E4DC2092D1E1A793A8F546E101F25015AC4C9010F49C9A2C7E6A1EF371256929982053C96399B3DCE047AE1FC0F23FE3FD8B78FFFA4F9F7ECA1D3300A62EB4D8B76F1F3FB3B02CB024003077847D50CAC4EEFBEEBA43AA542AF93347F72E7C0088ADD73D3C46BF7EBF990C16D0B9464157AD48E7B2DEE6F1D2FE6603823FC49946660437C228CA211BA7C0040750399851721625C5D126008205BA13013ED06E823438C01090130022552DA54600E570B799CC087C31BCC37A008265F949F8813A839510335A053094EB15DC38C30900E22CF45F0E40AC8669CC873C8CB87C74CCE82483CD4BD92811ABE113502000205EAA1FF5726DEB721D2B1F8508C4C252391F10A2833F0770ECF8FB552C7F11EBBFF3F39FFC28342F00A6E6DCD7D4D408C462B170C3B6EDAE05A97F0E004C1946BFDF17CCC948F7DDB26BA78CFDC252C6FE17668E294660741FA6E2D47800C1466F9FEBE5DAC20A8988B6C02FACCB4FE298E070BB91DE43E099C9ABCC88A7CD608804050BB085F6B70D8209DC54920C56C9D773945F8FAAE03D3001EB0296A15AD890AD23B95840C77B2D74BCCFC25519ABE013AA52D4D0F0109D348CD329A39D80315A0D59603D0256121E31D8B871831425CC698A9C12E001DA2C1EAA1B72930B7A5FA285718C673D02BA18339C179F3135B1DC989696FCFD6F3FF6F72FCC02000B3ECBFAA6A6268146A391D8ED76D9F5BBF79962CD7C7E14307893DFF3BA5DBEF56B56D3EA55D5E2A50E00C53203781846F017FB1BB806D235A519B43A5BCFD1FEBB4D063A84CA818DCAADCFD5D3E68254780221C7047F6B1EA0518787AA200D9B0B92290E5EE174BF99F68309C6DD3E54001A484602B25540477BCD74044C809FA4B5991A5A9516C7B5928FF78FC1248E73E76E559A1AFAAFE49A40EFF759A969C481808B687DBA8A9B62D68DAAE0E8809D2CEE20D73DACD64B0978588221BEB0E0B3F752A9B47F5575A55121954A6EBEF1FAAA190098CC7C7E7E7EBE302E2E4E2A140A557EBF5FB76DE72DF5730160C884F2CA344241FC689C5A45C5C52B48C017CC09802906F179DC9E1D375C274C4D4D112EC508C63A033888483B3C1E7AF564275705880502DA5294429BC106ACAC3BD265A2BF0114368F8FD6E626D296FC54B08580EB11BC0B86B079FC1C20B6803914C8F863587E104CE0C76FACC9D47112C006744E20E30F0110CCA0AE4AD3709E20100AD25104FE143C810ADF5D9FA1A6029D8C8CA830DEEBB3C103F8285723A175A90A8A833758CEDCC6E999CDB19E93C9EF0AF83C474971D1497D7CFC7A04458278D4030095D100E033DA47E065D8685C3018D4B361DE6B6FDEFBFA5CD46F341AE9C0C143D3D2A1D1C4D1DA356B2833236D56E0235FD9C59B0886E7E69D3B8043312F56DD5FCA896A44FD3F0443B72E2F05EB04697FCB0032DEC075F936C10F305048B03F87E013DE6931726CB12A3381AE2E4AE632FE082A83FDEDC3E446363323B809609140FB59D3E8DDCE11AEC3C802BF21474BACFE3986E547200F42019F3680215682094650291CE819E324808D326EC85051B25C38EBF8A6DE2F06EEE5B000FB34232DF5704E664621CEBF9EC565D2DED5EFBEE986D900D8BA75ABD86AB5AA00023D9665E29973DDCD7B5F988BFA0DC6013A70E0D02C47F99907EE237C7F5E004C3189CFE70DA42426F8AFDABA4576316700479E145657FFE24023B541EBAF2E49A72D90003618B3BF7590FEDADC8F4006B9E6D035C5A9A8F3057418D9FEB7E641B2A3C45C979D405B210D6C7CE074BF85FED23644E32E3FD723D89C1BCF01E578DF181DE81AE586A86B9934A4ABC9EE01E0BA2D131280806FC6723697E08338BED9DB39BF3DB55A75B6B8301FA110164F5D3C3D05003C6703E0B6DB6E1374757549F0771CBBF40A81CAC16BFEF5BB6EFDC19C001818A0FD07DE9B0EBC582A23B91AC6A88C4F3919D79054265910001C40B02D87DDEEAB282BA5E21545E265517F0C278FC9542018A4B7CEF5D3DB4DFD9C57589F9744D70314ACF173A4D3446F36421AA0FD6B50015CB72285D4F00A0D70FB6F42324C760F55A468695B51126965423A6D18A3B75B4D6447C9B72E53CB994436C7E05D80819586ACBBB8355B43257A2573BE4B376B31067FAE7323128B8C4579793D72B9AC96B955EE1FEF7CF0278040F57B76DC381B000683410CE3A786FB4F4280D8E48FDCEB77EDFDC95CAE9F01E0E07B8749AA8C23455C1C55945A48A9403D2B0CD2E848021517EE9837F09100E04DEEA4D361736FDE502BD6C5C70B629D01BCD42C691D1AA30618BD2D8508300CDAE1F621FABF863E1A7379685556226D2F4FA37800974D2CFD63433FF58EB9A834398E6E284EE166169D353240186918E6B13A5D4BD716E809CA400711F843900036516473B69656C313F0B84658ECA5ED02AE3D264F84D3E882FC1ED769B56B713E6591419FCD0073008049406969A9502412C9B1612D029482F7E99BB7DDF043B9529513EDFA6D0E071D3B7D9656579B60023DD0BF30F9FC02F278043087095451360100F66BC14080C41209CC087F46E0A3AB874000641AF47BB76EDE248519E12D47FF63CDB6FF3DD60E3630504D5602ED5C9949492A29B599ACF487FA5E6A1FB651A13E8E760010591A39B58DD8E8F5B306EA313BB951C2EDC5C9A441D5F01E02FF6EC78449DC98A5A54D393A184F5ECC7D8D184AB6988E2F51A77D3F39392907E7316532C03477F64FFF5D7FCBCED900E04A40C602A0333996C5E14712B138A9A4A27A57464ECE3E8948A28A2CFBD8BF81C1A3949EDE028A1591C32926B747486EA79ACA4B6EE600C0F4F1BFFFE75754909F474EA78BAEDEBA99B45ACD3400E6EA2BB85DAE409C4A11A8AEAE96862F82419AAFA676C0F573F30247ADF4FBD33DDCA8209B3CBA7B650637A1A4D7ECA0D7C004CD8363949FA8A29BCBD228552D4359384A6FC12BB0BEC26A30C13630810A1E62597A3DEF452E8B075F2C117564A6A6F9C1D8C5D3418F0AFC3C3250BFF7E69B2AE7EC03C0080ABC5EAFC8ED764BF0500602012D3E4A502814992B57ADB9579F92B655C81708223337141AA3B32D75949F3B48FD462D4A2B1E15E6DFCA0180EDF4F32FFC6CDA2B20B369EDEA6ADAB07E3D49C10A0B0D348D8F59BC79B9B9BCCC8C74F107D920E931DBE8EDC6016E2E61259EEC8AA2574F77D3C93E33A56914B467653A15E9D5DCACA237B0DEB0DD0B4F10473795A6C0E889973CC0158BBF59E8F8F0872D5E176F04DD177141E3D1649023B27F6120CC0D80E86610F37678C8584F00ACC08090989C9ABE7265F5EA07B43AED8AE87A7F78B48BBCBEA3D4DA9E43375EBB651A00CFFDEBBFCDAA16AEBE6A336D040866788B593E6162A72DE65177C5CA9562954A29085DECEE58C455C3EC3D9B44FADC3BE7285E21A55D1519B43A4347E786AC00442FF58D39B969E4BBCAD3294B2B5BDE0CE70BD1FF6030849A7E343D3D5D2B100A44E783CC218022FF9E0E7C54F6B3671800D8371F0022DBC1600336BC2B843164D5811C8BD578C663C7F5651555DB0A5694DC2193CBE323EB7EF66B23660BA526E9B91F6307F4EC4FA7BB8E241489B96A212F374CD9E9C55459B66141004CC94DC0E70FB99C0E6F656585144CC18B2598CB75DE6CFE401C4C62EFA89D5E3ED5C35D4B901E27A7BD95E95492AC59108017038C7301CAEF75BB929392850AA5523C95F11411E88580102D0338A900C08ECA9846035977B0A6A6860141E4F178A472B95C8103D230590039A4ADA9ADBD3D2B3BE73A8148249ECBF5B39DFFC9F3FF4A52B90281D752618197D2926D933B469495FA0069E212669788DCB6661B459BCDEE170B05C1FC827C69F8E2F6C8676D67D0EAE2CAC3827815CAC384C951BA25CE6D58AAFE476DCFE7F6F8144A7938212141723EA367067E3610A265601610EAF7EDDE5919D37C80C83B719D3E7D5A08FA1159ADD66959C077F5C9A9A945ABD76DB82F519F54057B302398ECF9CAEB7FA6F48C512AC831C314B26E206A1697981BADCB4EFB34E9B409F366FE7CE30C2693C99BA2D7F3E31313453175C5A24623E70BFEB26F4671C1035C33C7387C7E5F10CEDA979A9E2E8B2AE16851202CEA07A8FEF63DBBD855DAE1982F0C594C160086A492B295B59535ABEE56AAD429D1F57E6BC719B8D6FD1C43884541320CAA499FE0A434FD83CB0200FB1B272F3C3468F464E7E44A645209FF8206976265938B7085D342C10F058361489D479F9C241173A41A41EDC49B0708D1B41FBD7ED4BA440DB7EFDD5D353167271C5ED2A5618BC982402048A9DDB475775171C90EB1442C8B348AECE0EBEAFF4489FA36B23B2538603E15E7DD4B5A4DD2A2D43FFF1034CA468F37386E19F501085C0324F401057F39B7A459CAFD0DECB6718F5AAD1628952AD1B4738F0AFC9C4058A21FC00F9E7DE607DFABA9ABAB0B2C19008BC902CA461D4090A8D56A73375EB5EDEE8CCCCC75023EAAC688EC1E1D1D27E3C88BD46D50D1351BF651824E1795F9338130370066B7992D16B31F8F504A4AAA64D189A8F364ED74C7F122DC8F28D6061032DE8FE5C1F8F804E9F9922DAA93376F462F0684D97E00FBD8F81F2F3CBF6AFFFEFD3EFC6E68D95707CF270B6C3C0101D73159285CB1A2BA76C3967B7409F1D9D1F5FE99738D545C50484AA57C41EAB7D96DE4F705482215539C4ACDFADD0BB699FBFBFB3D4AB95CA850AB85E18B7C338A453D43A4D75844FF7D3E4FC86EB37913F44952EC3B8F1715F8A50321363F10F4070EFCDBF33FDE8EC4F5BDF2CA2BA10BBE3FC05CB2808772726029110797B461F3D61B2AAAAA77432ED4730E0C2D40FD7DFDFDF4CC732F507666268169E8B65B77D3EAEAAA05C71998967677777B987B4685C28F9E5114BE80797717CA026C7BA3C326B75AA3154B2412C154E02922D053819F4B06E6E8EDC7E407F0FB4E8B65F4676FBFF97FCF9ACD66CBF5D75FEF7DF2C927C317E50611F3C90282A166630B4C16542A55E6D5D7DD707B6161D166815028986DFAE6A6FE7E433FFDE09F9F9DF17B2B8A0AE981FBEEA2D4E4E405079A5C2E67D0D06FF021CB648BF60C96C402CB0BBE6574C4CB1708F94A15749E22747A56D0170742AC7E805D9F333A3AF2EEE1FDFB7FDCD7D7DD0299B4E0E96A6C6C0C5C9004C42A0B38810A0684A926526E7E7ED9D5DBAEBB3B2535AD2816D76F300CD0534FFFCBACDFDABB6B07EDD9B5730E269939E0C4958D4326DFD8B895D49A38F1C59480581B4076AB2DE070D8021A1DBB583C3AF0D15A1D2503B396C5EE07EC366B7BDDF1633F6F3C5B7F14923C8CCFC7C562B1738AFE97650263040145CA027E54EAF3F994F82D0DCC62024E4ED2BADA8D5B6A376EBC55A556C72FE4FAFB0700801F3E73FE3E34934DA58A723B29A47974DBEECFA0B4942E0880A9EDB5B7B77B0261124A2512E162C15CAEFE4706DFE3F386868C835E8D5637A9F3340F8DC7008425F8019FD763696E3AF7EB43FBDF7D037F8F20F816C8B21D2BB0411E3F0C6070497D808B210B4949496CBE814C2412A92665418F9D4ABBFEA69DBB2B2A2AB789B8C2773600D8DC83A77EF46392ABE210F838AA2A379326CEC35D4EC566F814E57C918A8B2A660E354F8121BA7AC072D05FB8B9B9D92392C8A4001DEF83680085822130579F5B2492892552A6F30B19B668202CDF0F8443415F4F4FCF9BFBDF79FB259FDB3D8065A3D8271B8EDB05DDF756555505A632FF43BB4D5C2CB290919151B87DE7CD77E6E4E4550804FC19F5BECBE3A69FFEE2575458D04BC97A3BD73F605D44BB434222518856E43F4CA5852B17CCFCB9C61B6C566BA0B5B52D205528A51733F8A6C121AFDBEDE129542AF1C263F3170F086C06E0A869F8E4FB07F7FFD26834B4B2AC47828DC1903BC0BE5E7CD58FBA3F38D5FCF9D06F1439972C600765A026C5942CE07D724DCDEAB5D76EDFBE0F35714A74C3E7E8C943E4F6FE867C0111C9A47EEAEED3525A8A8D56E47E090C50397336F202818FAE3C50367AFB0D033C308278590DA04920D86CE301A37130A08ED34A6319949933F0CBF0030E9BBDFF54DDB1FF693977EE288E6B18FBC91A22769D4EE732180CFEA9AC9FBC5C2FFC91DE2974215900007400022B1B5376DCBCEBC6B5B51BB6CBA552D944753001847038487FF8D32F49A1384D769704B5B49036ACFA3400501D11D889201FAFABA3B2E212EAEEE9A1CA8A72EE0612B327AB4E828CF547CF9E735B6D0E310F2B2EA501E4F1FA429D1D1D5E199804ECC59B3FB093C18DCEFE65FA01BFCF676F6B697EEDC8A1037FC42E0FE1D84691F156ACE394C964DE49AD0FCD95F51F1900E692053601050651CC64018BB926123389894949397B6FDDB7AFA4B46C35AB1923B3D7641AA163A77F445DFD12BAE9EACF517969D1ACCC7FFA27CFD3E9FA06EE64262626D017FFEE3354B9B23CAAD49C79BD830FA6EDE4C9535E4F20C8EE79C80B2D7267938E8E0E4F30141289593D4FBC99141D1DC8981A388BCB00F62760E8EB39F0DEC1FD2F7B9CCE3E2C1F66748F04B223F3DD78F597949404A3B5FE920240B42C949696E2180422D6418A9685B2B295957BF6DE725B6A5A7A56348D1F3D5E4779B9D9949A92340B003FFAF17374F0D0FB337E73CBA60DF4B5AF3C4C2AB56AC6BA635E0B25C813A77DC7A879345077AA3E10E2F1A47335808C03033ED38899E44A8578FE5EFC3CDDB80BF003E691E1C6E3470EFDC63438D888F36562748FCFADCCE421EBD9DDC602B164FD250180B9D8009A25889405C606AC9B88CF93B7DFB4F39A6BB66DDBA1C623BAE11349FDD300F897E7E8C0A199FF451052951EFCCCA7E88EBDBB6600E05387EF227D7C02FD53E10F4923D54C33447B47BBB7B1A58D5106372DCD6A1D0FB4B777F8518A72D2742183324BF1034EA7C374F64CDDEF3A5B5B8F0602814166F2266B7A07D8D3B390C9BBE401B0145950AAD59977DF73EF9ED5AB56D50A4562E142A6EF07CF3C4B07DE9B0080582627659C96CA4A3C9410EF247E584B8F3EF4CBE9EFDC5F77071DDFF42665F514D323B26FD1CD09B790903FE119D8E93976FCB8FB8D3FBF1D0610D88C65FE6C3D5F40E397E80722D7671DBBCED696B74F9D38FA268EDF88FD31E195D5F4367CEE36994CBEC54CDE650380586481B59419100A0A0A8AEFBCE7DEDBF2F3F30BE703C0F7FFF9593A7EAA9E141A1DE56479A8A47098BC308DECDA05D3B092BEFBF557CE33C0C9DBE9C4D56F4EEC83974F37BAF6D10BCA5FCD909BC79E78322812890573F6E229B2854B74A17E808D0E1AFB7A4FD61D3FF29AC3E1E866260F2B8D4216C7DD6EF7924CDE650580586581F50ED894F56BAEB976C3EE3D7B76E9E2E3E3A301F0D63B07E98DB77F4F576DEC86B91370135146CC7292C902D4DE9940CF7FFF57D300B88F01E0AA3F9D970AAF843A048E19339BBEFAAD7F9C06C0BC8332CBF203338160318F74359C3AF1DA88C9740EB119C2B10E23F096B94CDE72B3FE9207C07CB2C0A6AB63119B8914C79A4808901E2727EDBE4FDDBF63F3962D5B9119E248A3E80FF8E9C5977F08D7DE80D2D147BD062DC56B9D30790A7AEA9BBF9B367D771DB9954E5EFD67E209CE03A053E89AF618ECC100206400882ED96649C1F2FC80DBE5B0349F6B78B3ABBDEDE814DD33938735AC3846E7724DDE650D80C56481B594A7AA858C8C8CFCCF7CF6B3B794AFAC281770972E9CAFF7FB06DAE967FFF5EF949FD74E9D3D3ACACEB0D0230FFE651A003DF61E7ABAE77B7434E72FE448327300E812B928F2BE578F7E9331804830776F3E763F100D04983A6F4F67EBA1C6FA337FC5F118F0A5212C1BC16F8F5D0C9377D9036031590000D408B8765216926B6B37D6DC73DFBD7BD2525393A3670DBDBDFF6F74ECD4BFD399C6647AFD573F9F0680CF662599564767ADF5F40BEF73F48EF60D6A538C53C47F4B0C007C674E0658AE1F6057780C1A0DE71A4E9D7CD3ED74B2BB810E22165CD60368761C97EB6298BC8F0D0096220B784DBDE79E7BAFDDBEE3A66D6AA54A1ED9F061E5DC7FFFFA65FABBFBEF992EF75ED9B299F2366DA2AA279E20B15A4D4DDE065A29AF9A79C7B46F7C7B02007375EE960804EB9865E0DCE9BAB7CCA3C3E7A6E89E993C00791CC7E460260F991FF8A0B2FEB20640F48DACD8554C53B20093A444F668704C9C2C242424643FF4D0C3BBD6D7AEAB110A45FCF96E71F3BB9A6ADAD6D242FDAB5651FA77BE43C9DBB773AC31F39E890080502C9879B9D5D2FC80C7EDB675B4341EE8EE683F8ECF8D2CEB234D9E070F2CF35D4C93F7B104C042B280E391E13CCE9085CACACAF2CF7FE10B7B503666CE058057AAABE89EA6266E9B56918842F7DD47DAFFFCCF9900F887278282A92A60D675770BC902582718F0F77577D6359FAD3F80FD3320D8835359CF7E124F974AA5F27E1026EF630D80586581958CAC9B78DB6DB76DB9E38EBBAED7C56BD591238D2F579D07007BB8C462927BBD337EE32B5F7F0212106102170D3C3765216C320D7634D59F7AC7ED72754F66FD109B9D83D771364923C2E4B1C087C21F72403E1600588A2C20D332BEF4E52FDF74EDB66BD749A412D6D6A3DFAE5943D73434504A28B42000040C00D1BDFC798060B78D8FB4369E3D601E363164B1F6AD91993C363B472291D8A24C5EF8C3CCFA8F25001692059455720021726C21A5088F471F7D7457454565816BD844679F7E9AE46FBD4525F002C13900F0C8D718030805735D6E1599FD3EAFD7D5D5D672A2BFA7F3241619A7B27ECAE4B95C2EA752A9F47C5826EF130780856401C7AA4010D8DDCD1358B5C080B063C7CEB59FFBDC676F4C4D4DD5D906066814DAAF7DE925D2B6B5CDD8DE97BFF6AD0909A0B9AFBB0B8543C181DE9EE6AED6A623C8F201FC169B92659C9CA461010819DDBB3F6C93F78905C062B2000AE66E7EC164011291F6C8238F5CBB7BF7EE4DAC9BE8B55848A29BF9BFE47CF9F16F41028482B9A6689987870C1D4D8D475D2E472F960D4C397C6C9BDDD69D0DD73A3F2A93F7890640ACB230552D646464E43DF6D8633B6A6B6B4B79915D2062FF7DCE3751068A04912D5C0784BEABA5F1F4B8C5DC36D9C8E1823F39566FC1321B2BED0030DF4765F2AE00600E204CDD0B794A160082A92612572D6CDEBCB9F2E1871FBE2927272779EABB0F3FF68D002440C83611F0F9BCBD5DEDCD83FDBD6CC08695738CEA0722C7EA59FF9E99BCECECEC4B2EEB3FB100588A2C307FF0E0830F6EBDF3CE3BB7AAD56A3918C08FD2513068ECEBEEEB683B8B754C91590F1631B1864E54D6072FD5C07F6201B0982CC030AA1910A66441ABD5663EFEF8E3DB7FFBFB3FA8DA9BCE35B99C4E0B96B351BA2116F8E8AC67F3EFD3D3D3839772D65F01C0D264413F593AB2BF8578EF61033693B373862FC7ACBF028025C802B1FFBA4728D480F299616426D08BAC67CE9EFDFFBFD6CB45EBAF006099B2C0869C116C39402145C6F391E501ACE66233713FE8B1FA2B00B8046401F5BB004C20B2D96C42A552C98344000721BFCBE50A7CD46DDC2B00F81064E1C9279FE481DAF9232323DCF83094210C50842F47BABF02800B00C2D49FC4FD4F441F7D0BF7623DFE3F3221A5A39C45D8950000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (37,1,'Hub_(24)',0x89504E470D0A1A0A0000000D49484452000000180000000F0806000000FEA40FDB0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000003864944415438CB95946D6C144518C79FBD7DE9DED1DEF56C1B11DA0AE5D0943642635FA84AD52812BE8049B589A117E35B9068359870490946F18B5A494C13133524980A6851230DE103DF88244DFAC1C60FDA0891EBD583EB95EBD56EEFF676677666777DA60583B1503BC9ECECCC6E7EFFE7FFCC3C23F9BE0F776B5353535B99EBEF230E313821A75B5A5AFE845534693901DBB66B1963FB6CC7E9A58436134AC128DA902B947CD326573877BFA7BCF0F92B7BF766572310C6DE8DBD17814F10420314C1D766E7213B5F049350A09401E50C98C3C07339F7B9F733E16C3854CC7ED1D7D747EF287072F887B75E78EED9A38AA2548AB94D085CCDE4E08FE93C30CE81310E94B14501DFC377B1E638B8E6828BDF5CE658DCE51701F8898183AF9FC590FD7F09BC73F8FD9135A150DB63DB5BC9D34F3EDE80D183619620393307E91B7F41099D3828C011C8712408E5E8C4432147882F39827260A0B8244D08F9C672D8A9CF3EFA606251E060FF9151CEBD4782C120544522B4EBD10E29168B6922F70514BA3A3D07C9DC3C1074E0BA4B601BA1028C7B05510D2022BB20FE17C189B12A1A1DABBFBF7650EAECEC0C363ED472B6AC62CD33A5D26F5243FD5310AD8C80AECA767B5BAB160C8564DC68B0B05FBE3E0BA9BC010B257BD151B5AEC2FA7219E86D606C931BEA6A0BBAAE6F5355F9C0A203499202AFEEDFBFE7BEF51B8E2F9846B565FF0ABB77BE018A2C7BB659A40D9B63BACB5D69E93459909A35102E838B6922948008A0681671CA9CBABA7A5D535509F713344D39F0CF294211098740E2F09181B5EB6ADEDC1CDBA2E5F379285916343EF8002F18060F57467501BC15AD18F148FB99CC35525D5553866E0302ACAA0A38949ABEE7EFFA4F1D08A1783C7EEFB6875B87A3F7D4748DFDF295F45AFC138C4603B3B0406766F392E74B1A45A1C964926011CA15E1B0AA2832E00309BE97CD64CEA78DB9F8C9C1C18274A74A16693B74A87F67F3D6A6136D6DEDEBFA8FBE0B3BB63743F9F361D878B9D1BA70E1A74045A452175011B52CCB90CF65276F5C4FF70E0D0D8DF937C1D2DDAE8A5B691B3876ECBD864DB589E95CAA6CED16171A37ED714F7D794E566EC2AD62C14CA7921F9FF9F6F487C87357BC2A9613EAE9E9A9EEEEEEFEBAEBD2A55DDE4B2F7B9F8E9C97B19879269DBA98BCF2FB8BE3E3E333FE32B0FF25707BDA1289C48EF68E8EE3DFFD385296999A7C7B7474F41C32BC555D762BB911696B6A6A0A4E4C4C94FC15007F03CC7928673F920FB10000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (38,1,'Hub_(48)',0x89504E470D0A1A0A0000000D49484452000000300000001E08060000006AA49DC10000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000009A34944415458C3CD58096C14D719FE67E7D80BEF7AD736BE387C61F00136E62A0E041BC78823265C7609A41052084DACA60529540AA547AAAAADDA544A294A88D2D048546D699300A58423C440A0226003C607870D3EF0B55E7B4FEFEEDCD37FC618D6612949A090919EE67AF3E6FBFEFFFBFEF766084551E0616C046E576FDC98C6CB72776E7AFA4D78441BF1A0049A9B9BB340A75B030AAC9415254514254592A413A224ED9605EE9F53A64CF17EE3080483C1C45028F4AC2088AB25592E40B0208A2236DC4BB7F678EEF08584FE10DF68659437BC42F487DF993729F038095858965D86E05623C8B9B8D769A06F831F04CE0A02B4F4F9C11BE4C040E920C809A02314EC270741923F2375B073DD33A57B713CE5511060B0CDC73ECF21C0320468088F7038014F8085AB3D2E104419F424A11130AA0478017809AFE900BCAC00069DA2F67147D1BABFF787D80F7FB466F9D1874D80C0360BDB6A6CE5D8ECB22C4794880ABEDDE981A61E37D0085040A0019607AB81867E244462E4D5380710B8892180132400752C59C164488066011DC82D2141FE3409C46D2FBEF85CF7D72670EAD4F9C459B30A5EC1C355D8C6847792B4280F811781C3A85E6AEB812E971FCC0C052E040B388E9921C1E90F42145E0B601FF5191332F323010609067809485083A19290F11919B383449090825142995DB550C20EA7C7F48F375F7BB6F72B11A8DCB2F5F9585B74E5F7D6ADB12726C4A785770A8F7E7D9B03AEF7F463444968EFF382D5C8E02028199605AB9E813E7F000C34093A1C3780FA67504E7E8E47E9A09CD01F6A46D47164CC960A5C25A2A8D950349F6872C39BBC1EE4134149D9373723F6EDF2F272E9BE045ED9F293E7699ADC45D1A4302E35F5F355E5CBF24C266394367058F4D56395405BAF1B5C03E84B49013D4D409F370876B30141739A0F1037F8433C44E949F0E21EF96A1252810B9A7C1450A5A932C2E823390928CC4E48F51031781E4F8BA05744072F8A7FC3F7EFFECD4FB756DF93C00F5FDBB68EA198F7288A02B59104111A97363654BE6C890D7B10B7B31066DC81100BC7EA5AC1829AEF720F00061E24EC13E445CC0C85D96091000503282102E5C2E2330AEE097930DA1492F4E03D233EE7E74430530AF83809120C58F248491B6BF07DB7DF7D15F7BB31687FD9FEDB5FB4DC2650515141C6A78C7B6984D9BC5D05AFDAD8A8D76B44444110BE3575B23C63FA347DB889A53059DD70B8C1E109401B4A4AD57CFF400862CC0CEE59AD22F95951D3BB5A1D38949109993AB18F05D3D21FE4C18625CA151420DEA843F0C4B06C0FAF7A83E79839764266E6F6CAF56BB7A86312D3A74FB74F9838F9E7A353522A55D01F1F3A0A469311E6979680D168D4880838099414CFA6921213A92F666268E0D65E0FF4A1AC9ABADDE811343782C44C62A5513453DB301B9D9E20C49868E8C57BD106B5007010632021DDCAA01C2355BAE104E2E362CE64A4A7259324E95AB2687E3E51545444F97CBE94AC89F9BF4CCB9C504123D883878FC29854012C6633E4E52CD608D0348513120A4114D8E2394FEA1986D1DD6B06F60559A8BADC013246DD8B0013AC7AB8D13B00F1517AE841AF586EF9C28CD9CA8B37691E183ECEDD63EA19FDD58CF45496A1A93C1D16046CB5CBCA16E66B19C8C9C9318FB0D932F3F3A66C4D1E3DA68C133CB4D373161F24607276397CF0D17EC8CDC986E9530B90080D82C0494686E60B0A0A8C5A890D271296196F2004D5ADBDC0A2279CE807239A5DF5875AA1668EB16176E488CF85471FC7F7C7C7C536454747E7EB0637206F1158BE7851BEE601752589246883C110139F943473627EC1B684C4E47CB7D703F1B123E18F6FBF03A3461B904406CC9CFA340C197DC0E7E363EC36BC378A89343B0F45B1CDE9031712A8EB7241D1B838342B1141DFC39F1324511143A160F298317A4C3715061C1BA111285F52963F6C26461E3A5C3D1AF05AD2C4BCC9153979F93FB0D96C23AB6B8F81DD7E1D7A9DD1B0B064E32D0224D0B788F4F674B34949C994C96CA68640A8154408D3B0748F08DF1D7D94A0C7CDDAEC7632CA62A1EF80BED3D46B68ADBA95CB97E6455C0BA955E9CA952B16BD5E9F32676EE9E6AC9C9C152CCF195ADA6B61F68C058304D013C140104C68F2284B943A1129DD9D1D6C42F228039E101AE8FF11E148D1F77ABD024E6A726C6C9C5E1701787816505AE7DEDBB9A3F09E8BB97059C5C52514149794FC3823337306CD30C450E477BEBB0B5A5ADBE1FB2FAF87DCEC6C2D2381C080D8D3E3106DF61843E408DF1DFD402828F5F7F6F1B1717146AC2EA0238749651870C42B39BABBF75EA8AFDDB4E7FDF73BEEBB9CFE82ACCAE614176D1A356AF46895C05B48408256484C2460E592D7C166B5DF9657575717E772BB09466F6422D5724DE73CA7B4B6B5B166F3082C327ADDBDA23DD4FA9C8EFA0B35E75EEF686B3B8155D0555555257EE9EF812159E140298B9E5EFC52E1ECD9AB481ACC9F1C7F0757962E7866C1CFB0462780CBED01034E82F123E380C268363436867C8101465174E43063B7B671218ED321783A2268F2CEB581015FDFB586861D8DF59776F33CDF555353C32AEA94FE55BFC8866485EC63D1DC9396ADA8D83275DAB4279B9AAF9159E3B3202A2A0ADEDCB1134E9C3A0D951BD7C38AA5655017BC08130CD9F2C59A4B9C3FC8191C0E87D8D67E531A61B118EE802622EA5D1005AEB5E9DAFE9AB3677E8F389BC68E1DEBD9B3678FF4C09F94E1B2CACDCD2D5DBA6CC5E6ACECEC0C553A6FFCE12DE8EEBB00E9E902CC9DB5193E1F7F0A4E5A0FC16EE3BFE1DAE9EBDCE1AACF1892A288BBAA8B1A7162F0182727B9F366EB85DA9A73BFF3783C67700EE8397EFC38A744FA7879908FFAF06AB560E1C2B565658BD746DBACD17FFDE0D7E0F2DD80A2C297219817805FC5BE0ABBE8BD10FC0FF0073FA96222571842934F7F9FB3F372DDC5779D0EC75E5CF3B4A4A5A50D7C31EA0FF5AF44B8AC4C2653F60B2F7C777349E9534FF5F4F6D15123CC40FC6B3F18F252C15E3A176A4F35F2078E7CCA44D27C2814F0375D6E3878B3B5E5CFA8F33AF48BB3A1A14150EE03907888FF853459617D4E1E3F7EFC9CF5EB376C2A2C2CCCEEDCF22AA4EEDC09D4F9F370D2EBE3F71F3EC684CB07FB0BED2DD7CF375FAEFF13823E8DE0DB117870C8A4FFF7FF429164D5D8D868C5F92365DEBC7915DF7EE2890DA30E1CB0C76CDC0827FD017EDFA1A35A067026551C5D9DADCD571BF7081CF7315EBB82045CD5D5D5C223FDB1753F59E16956256ECB972F5F70A9BE013E3A78C4E0F7B85D37AE5D3EE675BBF6E1E2F02C02EF0C2F8D8F9D40B8AC264D9A64C4E8E267446261E9FCF91B8E1C3DC63BBB3B0FE37B4FE0A4D784BEF1AA13D263FBB5F865B6E2E262CAE9745A106C229E5AD5885BAD56C7BD4AE3378EC090ACF0E389ECE8E8209B9B9B85AF239748DB7F0178B0CFEEA76491710000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (39,1,'Hub_(64)',0x89504E470D0A1A0A0000000D49484452000000400000002808060000004ECEFCE90000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000F274944415468DEDD590B7454F599FFEE9DC7BDF3CECC643249264FF262080430521AC000D51A8A085A4B10105ACFEE1675A554B4AEF882D2A3ADBB9EDD233D5DED39B6A7ADA0AB6CD7EDC36AF5AC07CEAA298108E44120EFD72493C924F37EDDE77EF7262193210F68517487F33F7772F9DF99FFEFF7FDBEDFF7FDFF4388A2089FC7ABB1B15157515111812FD88BF8AC0820F075F6ECA52CAD9EDC4610E40E41106FE239FEA420724713B1D86F2B2B2B03FF2F09686B6B33D0B4EE6EFCE45D8228AE170441C1F302F03C0FBCC08F5F79218EE30F1CCF1F5511C2BB4806FB652740E9F3056FE704761702DE8CE0B4E34065B049E027DEE388B13CF4F922E08FB16CA149F59627CCBFBFFB8EEAD7F0B3C42F0D01B158ECABBC28EE44696F43803661022097045E10A613E18BC6A17D2404B1040F59063544590E46A20CA4D30A20003C6331B6C9A117F7DD5353D3F24525A094E3B89D18E99D08AA2845DA9723CC0B53EF39BCDF3F16844BEE00504A1281533018884184E1201BDF279084814002CC1A123424018361160C2AE8D328C56381187BECD19D77B5DC6802EC38EEC5711FCEBF792E6927034F302C5C708D4197370059460DE82925B40F0741A500C84BD3823B18036F38010E23051CC7C340280E669CA35311E00E33A0C6793A0508DE18D797AB219FF30563FFFDE877B77B3F2F02F438EEC6B113C76D3814D24D4106285C19F524227CE12834740D832F1283051946943B8BC091049306D27534B47BFCA80A11F2CDB44CC070380E39A804692983C13858340A50603EB8430C98D40490680BDE180F66959888B062939E108E149A95AF6FDDBA95BFDE042871D44C80DE82439BFA80146121D9E09288E81EF6C1994E179028E3A28C34E81909806B2C04CE2C332811510BAAC144AB90081A3A3D2188731C2CB068D11718F060C4738C6A34470E861178A64E090954C5688C834C4C8D107A468415204D0D301AE741478AA1282F9CD62BD8177EF88F7FFFFE7521E0D91FBFF85875D5CABB6E5DBB669554C7677A804F01CFB02C7CDA35048D3D6EC8B6E8215DAF81B3DD6E6071F115F936180BC5A0DDED8782743DA6800A9A07C6404729A0D0AA85EE913044121C145834083A0EC1188BA941C118121244900EBD123C115626C24291E08E72A055E07A4501C6E2026451228C312290A2E0D52884B74209F18D9F3DB1E7A3BF9A80BDFFF4CC2125491ED4E9B4CDDFD9B18D285E50509E3C599A9B1AF5B6C111F0062398EF1CFCA5AD1FEC261D2CCE498756D728788251A8C8B12048165A0646A1C0669053A0C9E50525AAA4C0AC870E54092F88B2127AB12C329C00B9260AFA7D311010A855A3940D120B062E16CB0492E0D012E067501108DE4E8B30181540896B33A90470C7C4A14235FBCFBC187DEDF9030746AF8980470E1C3C84F23DA850600E920A31D36EABDFBD7D6B91392D2D7D8A8029F052B993CA9C746DEDF700AD54C2074D9D2069A722C7065D98EB7DA341589A9B2E3F7BB66F042B80066C88A6D9E593159167D6C045AC0E122179981A6DDE30A8F003AC5A25748F46C18CE59144E4AE200385461504904CC90FF2F50AB95A48E44924F48505344C1172690E8D4A5E1F8BE5F93D4EE08F6A80FDFDC18307E3F312B0FFC94387140A729C001C4A1C044932B959B6D11DB5B5768A5293F3558020D6F953ED2EE8708FC18AC24C70F9427061D00B0B33CDA04290E75109F9661D58751434A2279835E809061A9A877C60C00A60C1BF2FA13FD8F56A040E3209C5161AA2711606D0278A4C6AB942487E50A027A03BC82161229418D0A545E1CA358DAF2B88E3B7C8C8D1745A7902C910AE2000539EDCFFE4B387954AD55393E0652294B21A80E75876F1C2526EE3861ACD5C1560F27E34918037EB5AD10C4DE08F2490845158E2B0C8913EDF3F4E8259AB8673FD5EB0E9298CB40ACE0FF9651528484012C2509A8EB1C394E840124ACC14F89184618C7A9985825E4C0B16BF67B15989BD8338DE7C25AD434829C9496B7561257BC361C978E9A9A7F60FC804D4D6D62ABABABAF4ABD6DFF6BC4E6F7C48022E7D80CFE7034BBA158C7AC338214806138F25D6A1472E723AD5F33540E31E318A2E1F057F9485464C81250E33D67712CEF478A0C08AC6A856C2A748C802AB0E9B24021A07FC5066D3CBB23F3F14042792106304E8F245A1DCA6914BA30FCD72998D962BC27C2539B55AD134D5B37C698547ABA57EB965C3869F4B4E4FE036558BA08B2BBFBAFAB98C2CC71D12D84824027F78E75D50625EAFABBE058A8B168CAB415606097C221EABB9FDEB6AF407C595C0AF5C8C0BBD208A15E3770D5D50EE184F87D3DD1E28B39BB0F151407DEF0838ED06D0E2F79DEAF362F47572E3D134148045197A082618E8F3C7A132530F59D81DCD44F65C0141A0C1B2D2A2B3963473154992D863910F6EDE54F38A4CC0B265CB4C086CF9D29B571E72E4E6574B20C348C09FDE7D1FECD95AC8CF07C8C95C0DF68C3C19FC648A88A82595824CDCBA7E2D4D900A62A6C508294448E5F1BFCEB4439A468DE55009FFDBEE868576239A9E1A4EB60FCB4A30A3F3D7F58C8213814BDD513392B0DC61C434A06156B267F93E7C2F64DA333E7664663A0905994EA2C1220192513F78F7A68DE304545555D18944C2915358B4D9E95CFC039DD19029A5467B571D46DE05A108B6AA89255052B41C2EB57780DD960E8EEC6C98344BDCDFB336AB995F5AB1949E8AC2DC5171FBC3700E53C26ED0C20717FAC181AD711E96C2136D6E2C897AF40424A1D70B4B5015CBB24D48F63828819F27EA49F2D7D054735E4E8E1A555C2A356768E8304900FE3D4E80045432C075EBD6A903818045A552152DADFCCA9EBC8205DFA4685A130C0FC2C8683D50AA72246009FCF467AF48F36175D54AF8DAFAB553668923E01B8B1717172932ED99AAF9F609938BEE1AF1CB7B83B7CEF44006560649011FA2124AF0BAA6D0826D30C0D5784D32F11CCB45D22D695E8BC59A4F207092C0884F5C6522E42B3C78CFE64DAF245701024950E01657CBB26C86D56A5DB67C45D52359393955C82021883C2E540D4790002B9A54D92211ACA63258B1ACE63201D24086C5B1D19178B9D34951B4869C2482E3E78E5E1C374E27DB86C0839D63CDC24CA0B075BE6A839BB8CF62C9105926E6C8CDD5A854D8D225014F2540A120A613907494459697972B753A9D0189C8295DB8E8F6A595373F6CB15AF31448DBC94F3E80C28276ECFC54100ED9E16BB7EC86E4BE61D2245986E183C120535656A2C1605DB56C679A2324CD993C6B1092E6E1F61CC2C1602CC39EA1D668B58AE9919EBA4E1121DF7BA8F6EE3B5F9E7537281181DE40E15B0B125150B5A6FADBCEC54BB62331FA31DF20B475BE07F18415EEACD999420039ED6FBFDF8FBEC70A5999D9D46CB215E692F63CE70DC1809F5153D847A499D5E3E67639C7A71320DF9FBA876DCDBE5DDB6B7F3AE779406A5A982C96C56BD7DDBAB7A4B4742D7A85228CDB5E8B256D1AF8D30D67211E4FC0AAAAAF409AD178990C976B204EAB29A556AF575EABB467021E8E84B95824C2D96C19F4A4B9259B1C31ED3A3D0D3020FD635ECF8EFDDFFBDEC757752072455A389D6BABABD73D9C9D935B922AFD636F1E878F3F39055AAD160E3EF938E4E6382E93802547ECECEC88EB0D460ACB2639056AEE149856469984383434144783A3952A157139E23312305DFEBCC02506FAFADF3CF93FEFBF8041EDAEABAB8B5FD391586A5AACA95EB76DE5AAD5BBB0194A9B94FEEBFF711C4E9F6B86923225D8D279D87ED7613099D2A6558B582CCA777674323A9351239D04258317E6686EFAFBFB62A83C15ADD12953A32A5F2F1391F27F04881EF7505DFD271FFD8BCBE56A4053F722F8046217AEF94C30392DA4A3328AA29C776CDEB267E9B29BBE8E6DA6AAF562075CEAFE15184D71F00768D874DBD3906DCF9E562924B224428687DD4C6FDFA0A8A2D4D4ECB92F8007E7F9034130184DEA2BCB598AB9A5A820180CF4369F6B3872A9B5F53DEC7506F1FB230D0D0D9C3801FCAF3E159E4C0B9AA68D1835475151C9AA4D9BEF7CA8A4B46CB104F2CF1FBE0143DEF350BBF919C8B465CAC0DFFCCFB741C47FDBEEB90B8C06C365425A5B5BE3C3DE5125AE7E9A3F040341BEBBA79BD11B4C1ACC9859EA390133A501820DB65D6C7DFDD3FABAD7707DDD0683C177E2C409468AFA753B169F3835222A2B2B69B55A6D6618A6704D75F5960DDFB8E3DB76BBDD160C8720CD60C40D082D03DDB3F71118700D624A98E0E5975E84FCDC1C38E33F0526AD099C9A72B1FEF499B83F14A6130C034D2D17E2B833A550F12441CE10F1D41C9F8838B6E75C7F4FF787F5751FBD8C2A6DC6E73D1A8D268AE0797106B0D7E58791D4B4C0C5946EDD76EFDF55DF52BD51A7D7539391FE8787BF0F71360ACE720128B5083F7AE2381C75FD128E141C8207F8C7609FF6498C7A807BFEC597444AA351A546754ADE33D678717878E8425343C3CF3D9EA18F31EAFD1890404B4B0B971AF5CFECA731292D8A8B8B551861032E3EC79E9575F37DBB763F5879D34DCBA56EF277EFBC03839ED77157494034A6841F3EFE36FCBAFF17F0C2A2FDA0E228E85444416AB61E3FF82351819BABF9CAD9E4351C0A785A9B1A8F7577B6FF11F17462FA781B1B1BA51320419C07E075FF6D70222D484C0B0A415BB04B2B58B566CD866DB5F7DE5F585890CDB07178F537FF06C3A36DF0AF878FCB8AF875F45578CBF40BA83774CA9FF183670E8BA81862B67236099C6112B1AEB64B1F5C683A770CE7B7C4E3F1414CC570B2C9DDD05F8793D3028928BDEFBEDD3B37DDB9698BC56AD10E0EB9A1302F0F2E1E79090C5D5D90FEDCD360C9C8979F7DECE94348809220529A9AC934900EFD067A7BCFB7369E3D8666578F72EF429FF14D96B62FC4CFE3B3A585B4C9DAF3C003DF5D5BBD76252E9ABCF0931F43E5E1C3102A28004377B7FCCCA34F1D14492420B5AB93A07BBD9EFE8B8DE7DF0E047C27F07E2BAA6C702E93BBE104CC9416D84415AE58B1623D12717FBAC753C01D3800592D2D40C7E31387B312010A22D9F8A2E170B0B3EDC2876ED7C09F71CDE730F23D9148C4DFD3D3C35C6BD43F7702664B0B24A26CC78E1DF76CFFD6B7BEA93D79D298B67BB73CEFFB079E9D304169D3C231FD3D1DE77BBB3BFF24705C03CAFD223EEFAEA8A8881E3F7E5C10FF46009F2B01A96981CD8911CD2B47AFD72FD9BB77EFFD1B376E5C8369A1DCF7C43322C61EDBD781DE1E343996654EE1334DE8233DA15028D8D1D1C1FE2D51BFE104CC96164EA773F5BE7DFBEEFFF7577FA5ED6EBB7806CB5B3DE6FE599C7A09E53E82353D7635A5ED4B41406A5A606475A8063B4ABC086F67E308E07F75E0E847F02104CF8A9FC1626F3801A96961B3D974D8C1E931F20C9211C49A2E9536FE33FBDE2F0A01C97B0B5404894488D7C3E4E67BFD1FBE7BEA5343C65B240000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (40,1,'Hub_(96)',0x89504E470D0A1A0A0000000D49484452000000600000003C080600000099D4BFB40000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001B454944415478DAED5C09745BE599BDDA9FF6C5BBAC788D1DC776623B4EBC64230B24049AA440422949688796E5F494D2D2164A3B14DA59CE749939A70B4343D7694B4F5BDA613A94522890400849C86A27766CC7966D59B665CBB265EDEB7BF3BD17CB516C794B3225A528E73FD27B7E7AD2FBEEF7DD7BBFFF7F8A88E3387CF078EF1EA2EB0900113DF8E7679F7D56BA7ED3A64DF4E576C6E238C1C8C4BF2F2A2A1AFF0080FFC7C0EFDEBD5BFCD4534FAD9232CC1E3144BBE96B65B12C0B96A3C1B22196E55E8CC7D9E7E412BC5C5E5E1EF900806B14F8AEAEAE62A954BE97037737ED29990878D2E02EBD16FEC68DD2F36FB928FBCB952BABDFA1D3701F00B0C047E7D0508686137D8482BE873EBDE1F280A70C3AA61DC3F1FBE2DDFDDEF0E15030FEEB3DB7AC7BE9030066790C0E0EAA18B57A271B8FEFE1586E6B9C65A5DC4430E935383EC8DCFC8088C559D8C703B0B98388C438E4EAE4C8D648CED8DD91132296FBEE3DDB379EFD00808B0F89DFEFBF9182B68732F6360AA0667A16CF15F44BFB029118BA47BCE8190B402D9762915E0183420ADB7810764F042AA90816AD94A5E7437DE391664621FB977FB875C3D0DF1D00D16874658C65F75286DF45C113C494E312999E8A5266C97EDA3FE20BA163689CB23E08B35689229352F89BD515C0A02F8C2C8D0CF93A05E2746CEF58080E7F0CE94A092C1A492814E70E8E06A26F8B75A26F7F66DBB6F0FB19806221D32F8ED2E9419D12746E062026FEC683D5E3F4A075D00D5F2882A20C2D0A0D2A380361740E7B311E8EA1C8A844BE810105189DA37E78823158888E16E9647087E2E87587E189C491A392C0AC96B89CC1F8B1502CFE9B2FEED9F1F3F70B0019343E42630F9DA781A7148E4D91E9B30131858A829128CE0F8CE2DCC018141231CAB3F5C8D629D14960B40D79201303A504460E65BC6D34888E118F60838A081C335582CD138495AA002C90A797214B2545BF37823E6F146A9EA2D462AA14AECFE18BB76A25DC538F7CECF6A37F6B00A868ECA4B197C6161A527E273719C43982CEA506C2E50DE28C6D18ED8363C8356A506936422115A3D9EEA28CF710080C9666EBA057C8D1EA184707016250CA509AAE814E2EC605971F5D44497A464A6030C2BE4E02C84EC1CF524B50A095C21B66D14D5A41CD1DF234621016E8F5C5066512F6A56C15FBF8FD1FFDE8C8F50A8084C68D1341FF300DCDD403388E9BB798B249EEC73A3C8613DD43708CF9519E6BC2321A4E6F480063909C4E69A60E15B42F1A8DE36CFF287A467DC837AAB0344B87683C8E16AA8AFEB1202C7A0625692A90F6A0DDE987D31F458181A723051CDE30BA888E481650485521A69AE97247E189B2C85389619401B6409C0DC5387B898AFD8A5FCABEF0857DFBFCD70300AB787AA171178DACD90E5C48F68729984D3D0EBCDB3920D0C7CA822C1467E9D1DAEFC2A99E210A2C8BE58BD251916DA0E0FA71BA6F04A3FE10D191016554050E02A679C00D77308A25196A94A4AB314CA0B50E7911245B5A96AE420ED15127554417D1112FC8A5460502F4B91DA32184E31C8A4827E81058C7237085582C229DD0C938F47A5984E26CBC4C17FFDD7040F45A578EEAA7BFDDBD3BFE5705E0C8B113F734D6AFFC0ABD2C9DEF89E693FD63BE208E74F4E144D700724D5AD4179BA165E478D73A8026CA78938AC1CAC24C14A66B718EC038D9ED84442242B5250DF92635DA1C6E9CB18F920E885199A3A74A60D041827CCEE1859AC4A13C8BA72329CE5155F03D42BE4189128382843B82F323014844222C31C941EC84B6D13009791CC5444D6A99089D040469398AB422FE62D0E9E32015712856C7877D11BC4612F23FDFFDC2279EFFAB00F0E92F7EF940469A49F9E0BD1FCFC9CA4CCF9BEB2417E967E6ECEF1E1AC55BAD3DE8181C45557E161A4BCC70F90278A7BD9FBAE23194661B098C6CE87830BA0671AAD70933D1CCCABC4C1854329CE87112FDB84807D4A8B118A057CAD1D4E712E887A79E6524D43CF5340F8C63982CEBD20C0D0AC9AAF68C06D0E2F4C1209760693A4F4F4459C301A14A78201802A2958020EA41A95E4AC188A36D9C8598025FA21182834E2F0772B52854C5C180EDEA0B8BDB9462F689EF3FFAC0E9FF37001E7AF4898312B1E806B1581C295FBAE4C8BE3BEFA85528E49AD901489DFD3DC4F12F1C6D45655E166A0AB2D1DC3B88436D7D70FBC3585178110C7F308CB73BEC820057E6A6A3AE380B01B29E473A1DD47879509E63444D9E89BA5E16EF760FD33E1F96E6E8B0DCACC7B0278453541521A2976ADACE25CEE7A9881FB95A0615996A12DF289A867CF47D808A7486048DC3B99110BD874539012111B138E78A0A6E6CA95E4215C2A17D3C86D13087C574D506292754842B2C420101912E8973D690C84697F76A99CCF3D897BEF4A5B16B0AC0C38F3F71502C12F300801F528974F8C60D6B3A36AD5FB75A24128953D2CF1C221C0885F183574F62CC1FC4DA258BB0AA28872AC28537CFF76194AAA18180A8A18CB70EBB098C7E8C0723A8233AAAB198D0E3F2E1A87548D081DABC34D206A34047276C4EA8A813AEA5638C5415A7C931750CFBB098346159B64610DF53F671C14D2DCF520BDFE58CC3471AC361592623504CD3500811DA5F494068E5206022700458AA0831B219112E1010F600874235070BC3C146D2DC1310215B1E471E1385846323D464BE14E3D85F8E6B942F7DF7A187C2570DC0E71EFFEA410AFC240089A150282EDCB1E316AEA26C49E99CFC9FC2F9C4851147ABDD89DF1C69255F2EC3BAA51694641971DC3A88B7DBEDD0100DAD29C9C6E24C0309F230DEE97240463AD050948902A31627889E4E52E01791EFAF2BC8101CCDB19E11C11D2D371B5099A5A50ED98F137D63824D5D61D6526F11C789FE71FA6C0E2BB2D5908A45383948821DE55045409814629C7506A9878891669065D54829F01174D1763ED9D5628D08763F8B0EA2A73405D1939A855C94CAD971EE381B7B9E8D8B9FFBD63F3DFE16DF165D11008F7CF96B04806802001109A144784E00A154C86D77EFBA3DCD62C9550BF49394FD5CD2E45A7C620A2215108E510F947219FE74A68B787F00A54433EB4B73A127213E44401C232D305390D795E492504B71E8C2203567A324BE063450658C136D1DEE1C12DC4F5D7E3A96666A7056A88A31E410F5ACCA330834778CB645F4AFD6A28582AEE128558497C47745363925B58C2A20800EB2B1257A39CAA80AACEE085A5C61EA9CC5A830483144D5706E2C020D3571E57AF2DF126E5E169BB66D718EFD15351DBFFC8F7FFB7ACBBC01E0E7E81FF9CA93048064BD644A055C1AFC2581356AD5FE7D7B3EAA56294996E66D43938020BB79CE3E8C2CAD1A3EA2A8D75B7AC80D3951451674FD120B02E108DE68EB876D641CF545D9A82F4C47B7D38BB73A064938E3584355514C8DD809DB0855868B5E93B3CA3362884039DC3D02D23134D036431574B87794282C8A5504043F6FC453D139A2AB42724955992AF47988AE06FDC8A0CEB93A430E0F356D278743D46572586E92529588E611F48B549C6236E00CCBC59F8328FEABEF7DE31B03290198580E1455545448B7EEDCF5BA542A5D3B35F0A9008945A3B192A2FCD887B7DFCA5C36B53CD714C414CD384B81EF22C15E4DDAD0E574E3B5161B7C04C00D5415D579E9E47A9C38787E000CD9CC0DA5D930EB9554010E9C2237C457457D7E1A594F3FDEBAE084826CE5DA823430C4FD87AC238216D42FD2A3941AB526A29EE344470514F8BA1C2D86FC24F6760FF50462ACCA510953DDEF0E92532251AFC950C0425DF442BBFA5912919ED8037916F33F7FF991870F4E02905812B4DBEDF24824A2BE61CBF6976472695D32F5C462317A9680611429C108878291F58DF5A8AA5A2E5FD0C24AD297E5840938375E6EEA41757E064A4807DEB9D08F036D76E4EAD5D8B83457E075BE2ACEDAC7504B416FA4AA681F1AC7C10E07543209369664414974718080E823401AF379D1267A228B7AB8770C66AD026BF2F482337ABBC70DBEC35A4D55C1D0751EE9F750071D436DB6128B0D32707368DB65993EDBE4E2C4DFD52A95B576F9F251A59239B9FD962D0F2603206E6C6C545090F5B49DB3EEC69B7FC1285515C9013E74E830FC013F1472391A1AEA909E96369D9AA888629150F0D69B6F966566A64BE733F936D305062331FCF04033E452096E2AB780B75E7F6EE94387630C6B176793286708BDC0EBE707A92F9062D3921CA8C9EFBFD63608EB88176B0A3388F7F5383B388E373B9D30AAE5D850601234E980D5455D740CEBF30DC8A00C3F6CF3C04A1D722DE94265062308FB7CA6C967BCBE29EFA3D88C572E2D3B633218568BC42219857BFFCE0400FCD8B06183241C0EEB28FB7369BB6CCDA62DDFD4687505C9D4F3C6C1B7F855AD045DE1C33B3E84ACCCCC494D98044122064B69A19049C2B7DCBC959149A5A2D9B23F799DE032FA4ACAAAD75B6D78F55C1F362F356315391FBE31FB336D6768186C2D370B8B337F6EB59335F5602D01B3BA300DE71DE378B5FD62556C2EC9103AE5D785AA08625D8151585378872AA299B4A09A2A64658E1A845FCAEF993014892ABDCC64CC52DD9467F145B9E6C3342A29F0263E6E02D38B44FB6FBBF5E64B0010EFCB886E0C3299AC9082B87CF5C69B9ED4EA74B9C9D9FDC6813731303008994201834987E2220E4579AB613464A7D008914057A1503066CECA88AD6E68601692FDA92E2636B13EF0345545B656855B962D12A6315E6EEE4553FF28D62FCEC20D645F2F0C8FE3E516BBB054BFA52C8B8E55E22FED834263B626DF48CD9A16477BDD34C650464DDA3AAA027E2A622E8D62E73BBD3EF13EBD4E7B7A7141814622959424023F39C420006EB9BC025C2E97562E975BE880256B376FFD37AD4E5F9CEC7ADE7AFB08A25C0C55CBDD483304E1F12910F2E7A074F18D98C92D25F6FB3CE3E1CA8A72516161819C9B710D989B97CBE0ADA58C38FED7C72E0895B0AE24079BCB7260A73EE07F9A6CE49C62B8B93C0725191ABC461570B4C745026D1444F954BF1B6F101DF18B383716A7C1447A3297464DB7D3B37F57322F7D8B0B0B06A867AA9F167861080CB2FFF6EDB75CAE010482DCEFF71B685FB65AA7ABACACAA7D303D2373355586880F227FDC98FB75E88CC324C85244A212B8468A505DB15EF8DB6BAF1F80DEA043C5D23264F2D424BA4449FC33FFE13E8F3BD8505727D76AB592F9AF92A5CEC66EAA06BEFB1DF206F0DFA7BAE1F004F0A14A0BAA2D461C6C1FC26B6455AB730DB869493651D338FE445A61A4806FA3AA58A463E6B4920BCD7E2AB8803933F38C41AFAF25BA5188C4D3832FBEF47A1A007C25F020C80281809AB480E72B73FEE2D2354BCB2BEFD3EAF505896C0E059D181879073A6D08E3EE7C2C2BDF2464C9779F7E46D007FE436A6AAA70D3E64D9053A335B53A48E8D9682414262018FE73AF46DCF86DAB739C8647E811F8C6ECC5E63E724F5A02231703EE00FE40DBFC637B8599284733E3F2E8659C3E9FB5EAC4FBC8B6CA64126BAED99C2695C9F4B304FDD23E310FC0AD0FA6EC036A6B6B25A15048C1308C96B6D32968B9CB56D4EE2A2A597227A360B4894076F576201A96A2AAB24CF852DFF9FE7F4E3617320583EDDB36607965CD65029D0C86CFE78DAA95CA785959193317A75EDED8A406CB4196F395D67E6ACED2E1271AFADDE91E8C0522D84140ACCA375D2EEE0BACB69992231A090732D2D258BDC1A0991E74203505F143BC7FD7CE29004CBD4DF0F4E9D3528D46A3A44D3DD15016A3562F6E685C73AF7951C106A9848825D9F5F0007CEF3FA1D4E860C96350581084411784885D4F94D43883465C04C6E574862C66B32423335336FBDAF1FC2CA12718C12F481FF8F5831B8A33853580E4F74D752FD31CCD2CD596784D8E3146F6389A63362B67CBF49906F1C4FE3B6F9B01802420784A127BBD5EBEB15293433246A3D19CBC82A2952BEA1A3E999E915196082C7FD2175F791DA5A556A41903084524F07894908B6BB0B266C39CDD343FA13D3CE4082D2E5EACA0D2135F7E1B0B3747F6B357E8601698FD7CC6C7635C2410089973731929398119038F84DB990104E0D93B6FDBF1C09C4B92C9D31306834141FAA0A55D022D55D5AEBA655955F5DD6AB5C69408EC90B30D3D036F0B20787D0C14D22AD4ADD894BA0226C459224AEAA623E1B87BD415295E5CA29CB6C6CC710BB78413599C4C61F1890E76615AC3C2E31E0F9AD24C32955A2D154F7735F31A89F7D1B5FDE8A3BB6E7B809ED9792DCA2768E9F8F1E332028201BF46219566926D2D58B7F1C67D254B4AB7CAA4725922A8C74FBF0999FC14D8D86AACA9BF2125F5CC665DC7C646A3B14894CD369B15F311E2AB989B9933FB7D1E4F4442CD9CC968928B164033B3E90119919FFEF8074FDF7FF0E0C1F8826E4B49454BFCD445667676D5FA8D9BEF35E75AAAA4C2FC9118C1700481801F3959592903DED36B834AC520128EA26471514A30EC7DB6904AA592AAB53AE9822C6122E3AFA86A2E82110C06E2019F37929E91A54CD0EC42337D8611F379BD8FED7FFA3BDF3B79F2646CC1F705A5A225FE062D12EADC65D5D51B1BD7ACDB6B3018B35366B9E4D2EBC3878FE237BF7F01F1781CF5752BF1915DB7233DCD3401D625E7C4CF1F765BBB4346539A823E437CCDB37FCAFB283B39E7B0236434A42B6454D4B3D28C781E81C7A5E3A89A4EB536373F79FAF489C3C420DE0557C04CB4448D95928223B8251A799BB76CBBB3AABAFA5646A954CE443D8708805FFDE6D24D0639D959F8D6BF7E7DC66E3AE0F7C57B6DB688C994AE8C73DCB47999A9F71B5D49F60F391C210ABA54A5D648AF2CDB5303150A0687DB5ACEFEE8CD036FBC40D7D24FD4ED3E72E44878DE1AB0105A22004C7C3C4D26D3D26D1FDAF1B1C525A5ABF8CC9DAA033C00CFFDFAB79048A550690DA8AA8A412157E0EEDB1E8546639C5123861C4391E191114EA3D52AAE55F6F39AE3F3FAC8CF1B15D7806226075577A8DBDAF5BF87DEF8CB4F89297AA9BA5C6AB5DA6BB15822CF3FFF3C311DC75D939B7353D112E943065D5C6E45C5B2C6CD5BB7DE93959D9D97EC7ADE3D710AFFFDF26B58B5D28B0C53801C10AF1D1C562D7F1CF97985986B31A8BDA33D14088549FA15D22BBDE53D1808C4FBFBFB233A837182E771D5419FF8991B37343878F4E8DB07F70F0C0CB4D0B9878972DC3E9F2FD4D2D212BB7823C9C5C05FD3DBD367A225FA53DED66DB76E6F5CBDE6368D56A34904F16CEB4174D95E46669A1FA36EA530BFB469F5A30440C19499D5D4605086714DCD4D215624E59D99683ED9CFD3562C1AE5ACDDD6909C512A6432B9786141C7AC5AE071BBBB4FBE7BEC275D17DADFA6EF3840DF719428C7AF5028A23CE77353027ECD7F1F90A886A9B4449F63A6CEBA64D7EEBBEE5E56B57C2D5588D04DF3370EBCF8CA2FE92D2711E724D8D8F01816592EB9A2FEC141381C43F00502D8B46E1D2866D380F1783CB1E6E673319154C6CC95FD365B6FD81F0C89552AB56CA6064A2C5EB8DD0C8742EEF6F3E77E77FCC83B7FA0EBB513DD0C9383F386E8416E279E9CF57F955FC84CA5252A3F1D65413A6584A5A4A4A4F6C3BB76EF2D28282C49B89E31771F7EF8F3DFE3DEBD1F83C59C3319DCD6D6363CF6C4D784736693507FEABE7BB17EEDEA141A21426FAF2DDC7EA1932228954F6DA446465CD13EBB3DAED1EA9899A8467C053E9FCE1DEDEBB61E387AF8ADE7229148277D4D0751B03B23232340239AE0FAF7EC3762095A723A9D3297CBC5CF9DF04D5C163D2FDA7CD34D5BB6DCBCED0E6A728CA91775C46821001EFDC7A726CF279648F1CD7F7A120D75B593C1BFF7DD7DF866CDBF23576D118272FACC99A07D704846C92FA560B0ADE7CF87158C92114B24A2ABA29AA4E3F9C7B0C371F6D4BB477FE1740E35F1EE86C6483018F4517547F8ACE75DCE75F123BDA9B4148D4635C48B7C1367E657E1F6ECBDE7238DAB1B37308C523E95EFCFB59EC7A35F791252B91C1ABD092B6A82D06BC328CADF815D3B3E2100B6C6B60C928C383E2DFA12F619EEA37D12442311F627FFF55CB0B77F8091C9E592ABCDF8E463BDDE71C7B933A77EDBDDD5F9166DDBA80AF8DFA18DD323D4D9D9C98BECAC59FF9EFD4C35152D1110825BB258F296EDFBF83D7BCACB2B2AF9BB311295D0D9D58327BFF51D2CAFF46391D94D6E895FC502E4D2F5F8CCFD8F0995B2A6B712A395366119F289F0B7719FECB3C27B9F79F6C741DBE09032C57CFCDC419F68A092034F14E3EF6C6B79B5E9D4C91769BB87C600C5CF359BC85E97BF139E4A4BF4309068096EE9861B36ACBB63F7EE3B73727232135560ED69C5AB07BE0D9DCE8D711F43819040AF69C0C30F3C2E00D5D0558EB12ADBC5BBFAC24FE173B22784F73DBDFF479300CC9CED98B332C839C5EDB69EE34D278FFF3E1C0EB7D3C7F4118D3AE933C8F4B8C353ADE5DFC42FE5931780F8351C9E96888E84268EFE54B8F79E8FEDDCBA65CB4DD47029139AF0C7575E465BE7CF41C90635538F87EE7F5208F49F1C7FC42F44CFE044DE417C21FE353C22FFAAF0194FEFFF61D03630BD0216623B478687ADCDA78FBF303AE23C4DDBBDFC4F9EC9D88CCD5764AF5B0052D112D954862E8EBF392083774B99D9D965F7DFF7C05DF5F5752B28E34413DE1FDF7EFA19E875267CF6C17B11F57AD0F3873F60C9BEBD7825F412246A6087E2CE8B00FCE087C1DE0187F24A02EFF7FBC6CE9F6D7AA5AFC7CAFB792B9FF5B47F842AC09B10D92BCDFAEB0A8054B44443452DBB3E414BAB56D5D77FE213F7DE59545C6C99EA96824E278ED4D5C152538D826F7C0386AAAAC973F200F4F4270000E6A305D4A485AD17DA8F75B6B5BE4ADAD445A38786834EC777B2C19A9A9AD8D566FD7509C0545A224A92D36B7ECA5B68E24898F3EFBAEBAE6DBB76EFDE66341A27BB691E80CEC646D4F5F7C3A7D542F1B39F4176FBEDC2F9BEFF83679300983DE3F925B801BBADBDFD5CD32B54856DF499DD14783B55DC087D073AB536722522FB3705C07C6889DC53C9A71F7A68D7A64D9BEA19854212181E465B43031A072EDE741CFDFAD7217BE2894900BAED8373AEDB8EB99C8EF696E603EED1D126FE3F70E1B93E612DE9B3835723B27F9300CC444BF410DC12EDCEABACACAC79F8E1CFEEAE2C2F2F3AF3B5A7A07DF14594B6B4804D02E07BCFEC0FF62401306D9A38E0F775B69F3F3668B71DA7C379BAE9E61B2A7A76310CE3BB526BF9BE0160265A22414E4BD0D2CE9D3B377EF2939FFC905E2E37B87FF213A4A5A743FEF18F4F02D0DD371D803811BDBDC77ADEDAD97E982CA695CED54587DB886AF8ACF7A49AB5FCBB0560265AA2D73AA224BE89B350B6163DFCF0C33BB76FDFBE96684926128B130004AC7D03AAE46962E7E0405F577BCB9170287481AEDD4A19CF673DCF5F2E0234903C577FBDFE5705D70D2D9125541125196857165D475E7E7E7EE5E73FFFF93BEAEBEBCBF8E308005F97AD5FB869CAEB768F59DB5B4E7AC6DDE7699BB795567E1A81BA5B2701EA996BD6F2030066A1250AA09AE237494B24D0AB3FF5A94FEDF8E39FFF22397BBE9DB17575B40C0FF6B74C345282B5E4A711AE6543F57705C07C688974A260D9F2EAFAE6A6D363B4EDA543FBE95A7B68F00D959382EF25EA0ABF1759FFBE0160365A2220F8B9A44CFA137F93579040E097058782C1A09B783E4080C5DEABAC7FDF01908A96888A54E46AF85FF7CB20FC275E511F811230994C61B296EC7CE6EA3F00E02A6949A7D3493C1E8F84A88625CA89FDB5ACE5DF3500538148DA755D053EF1F83F3F4AC8DF08E055B60000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (41,1,'IP_PBX_(128)',0x89504E470D0A1A0A0000000D4948445200000080000000770806000000CBA9486A0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000469A4944415478DAEDBD09741CE775267A6BE9BDB1EF3B081204778AA424521B45C9912C99A216CB9215CB637B3C9ED87EF39289CF7B939997F71C5B19FBD867DE49CE8B675EF2C63E4926893D5AADCDB22D89B24459124549DC4970074010FB0E347AEFAEAA77BFBFAA1AD58D060190A028D92A9E6255575717AAEADEFBDDF5BFBF6A1806E52E122FCE8FD64A79B6577B3172F60DE77123DFC37DB2642DEA02892F5D84113EEC972CE5127A8E7BF884F88B65008BF83671656B5FCED9B7B7570B09F2115F77ACF667831F47FF040916C8000EE23B89AE58ABEAD83ABFA7AB840486630591356B4D3BF635FB5C3CDA274C701106C8437CD55A5DD6EA71ECDB4C215F259BC0C891FAB4B5A6784D58DBA4754F36238009A44F98E0E22AC066005BD241742FAF3EC76A3382EA60820F93016C023A896F133ECE6BCC5A15EB73EE6F7E6796FFF1F40B2FBDF6DBF73B7FFA5FBFFF274BC1004EE2DB12EFE73568AD05D6D66F7DE77620C1876910DAD7D72C82DAC48FF21AE135CC6B28473D19BF8BAAA0ACB878A7AC2A472E1B011C567FAEF407EA56ACBAAFA8ACEAFF54155552555972A9AAA4280AEF2BC4C74855B12AC4C7F833AFAACBFC2C56955CB222CE51C4F9B2B96F1FE3DF2B2ED9FC9D754CB6AEA3F0B9380F5B1CB3F7C567C9BC9624F3BE2CBE3764593214591C334686065FFDD2A35FF8768E7DA05F258FE50ABB43970FBC4E04901D0800B80FF21F2872B9D480496CC522B8B52A4A8601CCCFCE7394ECCF8A4D74E76745308193814C46318F9B0437BF9B610045105DB1892F56BE4B49861D43962953682156DAB205520E26F8DD5A9640F1E653016E4BF707182F7D8A452C152F9B5F70C60294B01AA63B60606BEEB3A565AEFCBE259D09A3F37BE7DF1A62CB3F3298163A43B1C6ABA4898F06A0195FA567C4167F49DC141F9014BE96A1886BB1A8F3751432F85A06AE0BE6900D52DC2EC128BAA6B92D7565DB030987C1FA3B8502B2242F0903487910C06DA18017F04C7A8AFC5E3F1504032C854C1A866101CDAAC48C6142372451B52514E7C892208CAC307198D0E6C5F9B30646D1585AF9BA695E0D30071F914DC2524A12D7D3F9B306A99700F326E467F6C1888221717C468395545533CFEAAAC356B10D56392790F5BB01004B8800B96A40A0001F7043CA37B4B5D1E6EBAEB7882B5B30AC0862CC6C2D6816902DCF7C97F7378EF3ACEFB3CF551CBF993977F67733D7EBB9D04DA7CF9D234D170CE0B59E41CD0964FD6E6900495A72159015FCE1F7EA0203AC685DB9F4CA67116CBE90BFD6D4BC8C4E9F3ACD68A5AB795C55E9432248DEBF73A53C8FA53402295F14909F87D15C12C6D7C743240C5632B026F212FF8AA8801C2F4A2C0F3DF490D87FFAE9A70DC7394B9EA092E5A54580DC2DA32C38E063427CF386C54DD3DC49ACA526BC64137C6464449A9E9E96E2F1B874E2C40971CEDAB56BC9EBF51A050505464545850186B0F9652918612955403E0703CF2843BF2E89B5F121B835B2627A2A57324CED94F81D3B76C820FAA143876426B09C4AA5C4DF2D2E2E16E74C4E4E0AA7269148187C8EBE65CB161DCCC0BFD397021596DA08CC5505E21EE53910E0B78786E9ED43838CBAECB4B195CF4E99E9FAF1676CD9B46762C0C7338FC3B993CDB0BCF82C1BE631E7EF29F37BFB7A9A807571AE7D9C3FAF5FB7867EF0831FE4D589922C5D11C8CF47785BCD54555529A15048F5F97C8209D2E9B41C8BC50CB7DB6D3082EABCAFF1391AA38388473012E86082CB45852BC50099056E17A26EF95EE36428499DBDD34C1FCD74E0412CDE373F9BC766F6CD9C8C241CFDD9E799DF698EEFD239BFB3CEB37EE775BBE67821F215B1F66CB807D4777676CABDBDBD72515191C28465CF577131C155BFDFEF6249C767A5B2B2D25B5B5BEBDBBF7FFF443299D43C1E0F9F924EF15769669C34B67830561597C508708DAF280388C08FAAB26BA5CDFAEECE1B6AE8F6EB6B8421225BFE3A7C7F49046624711C6E9A9471DF48C40F24C53CCF0CEB9A913CE1DAC9F6BEE470F52447D44FCAB87F5E8F27EFFDBA114E965C578CF0807A10BEACAC8C3D245965A2BA755D776B9AE661E9F7FEC9B7BEB575ED9AB53B0B0B0BFF40370C2FAB80BD9D9D5D2FFDCF7FF9A7D7060606C27CB924FF2EE972B952CC08A9CB6704E9CA32005B8086CBE3A59EAE2E5AB37E63D6775EF7A5C50132FB4A8EDF9FF94D8EAF9F132FB0BFCB5DBABB3AC9EDF593ACCAC652121EC61D134866A22A0CE32A13DC859525DBC3F7E6FDF297BFBC6EDBB61BEF2DAB28BB5B51D44A66064AA711E1D4A8A0A070FBBA75EBB67FE77BDF0F8F8D8CFCE6CCC9D32F3EF5D4E37B1939E2600666842418014CC0E80146D016C308B2245D690450080C303C3E41636FEE219FD7C344322381080F9BC4C84EDE8838BE6C2207228272E65C392BAE2F1845440C554BD255716D441625B155C456C9208A22A27E76F44FB2E203260C4AC4224865E555245FE8BE6C1D9F4B7868C37038EC62030E70EF79E081071AEFFACC671EA828AFB8D7EDF1B482E85A3A4D69DE8256997F86B9323A064BCBCAEFBB6E5BF17DEB376D1C1C1D1DFDE5F1E3C79E7DEDE5974F30E1936C2BA49829C008E9C5308274C5114084779920FC8ED3C924F14BE087212B5963256E209D76424796731239B220AC99F091330CA3AA363A209C2C5BD73199248DAC215F43939D9140730B62E35DD80F6E58FFB9FD3E2A707BE852DCE2F9086FE979F7CE9D3B4B1F7DF4D17B2BABAB1FF079BDD733D16548BA9621BAB077C53E5984270713D8E7B0C9505D5E5EF96F6EB965C7BFD972EDF527C646475FF860FFFBCFEE7BEBAD016684A493116CCFA1A5A545CFC7089274A56D00C4DDF9B6BD2CCD2BDADA2850583803C702FAA58C0A7042BC88D9AB26C1715CCDE87B4B5D58E7AB82A836A3D8E95DF33CD53A47FC2E2B142C67FD3DECA79329A10222D1082DC690CEB5EC59CF4B2CE5B0E34078575B5B9BEF7BDFFBDE1D7575750FF9FCFE3B0CDDF00888D7D23392EE24307B2AC74F77D2F1339D74C7CDD7F333488261673185F53B97CBBDA6A2B26ACD9D77DEFD6737DFBCFD9DF1B1F167DFD8FDF24BDDDDDD2130023C075637E97C8CF0E2AB7BAEBC1720DE8F9EA6E52B57514979C5D5C905CC6103645DAF40A692D212FAE0FD0F48D774E95288CF96BD625BF63FFBD9CFB63534343CC2CC701FFF9D529C2408CF6EAA496853DA21D22026AB747AEB832374A6EB02AD68AAA3AA8A52FAE9F32FD38AE67A6AAAADA282A09F7C6E778651C8629E19A620C5EDF16E6766D8FED9CF3FFAFD4834FCF2D8F0C8D32F3CFBF49BEC3A269811D2B98C00665B0227601E06300C14D291D7EBBB7AB980052E503DE974921920BD280D6013FFE73FFF79EBB265CBBE1808041E66A22FCB89E56713CE92E0BEC1117A7DEF0714610658DDD24415CC84474F9DA30DAB56D0356B565047773FB95D2A8D4D4E89736FDAB44EA8D51995E06082CCB529E0F1F81EACAAAD7BF0AB5FFF77439158F4B9A1FE81275E7EE9F9A36004C4129811B44775C17D225877390125753E3F53963E3E49341DF5020BA8FB705AF9D0F790FC7F7AEAB9EFDE75FB8EC63B6EBF7559FE848EB9EAFCE20F1E3F45EFEC3F4AA54585D4D25847078E9DA2C327CF32D15BC9C5AAEF42FF10AD5EDE44F5351574AAA39B5AEA6BA8ACA48876EFDD4F2B9B1B840AA9A928CDD831B6ED60E43018DF6895C7E3FD465D63E337BEF4B56F9E8846234FF7F4743D79F2C8915EB8E638871141417471CF9E3D97145D9CC70B302198E48F4728589F81D4052DF0ED61ECB14BE74A2493A52FFFE68DEBDEDCBBEFEC171F7ED0BD6AE58A2627024463317AEDADF7E954E7795ABD6219B53637D27B878E09625E7FCD1AD6FD1DD471A18F56B534F2B9093A7CE22C9FD744CD4CFCE1F149A10A0A0B02D47EEE3CD55797D3FB474F53735D2523848B7C1ED78C4A713082D3BE60E458E3F1FABEB3ACA5EDDBB5F5CBDE624F02D15191F93C7FFE3C5483663382334F301F23CCEB05C84A7E45D3D13B4DE7FBC30221109E95EC0A21848F61A95BFB3022ED7482BD669D87EFB195C9FA6C571B59D7C03D1039FE06515D6D35DDB36B571E31D5495B60E19725FD48DE280CFB2A33BB0CFB82757DEB4F9FFEB951565C7CE64B7FF8505D2C910EFC7ACF3B42CFAF6768AF282DA6770F1C1544DF7EFD263A72EA2CF9BDE3B48699E260FB696A3FDBC5CC514F67BB744682612672154D86A6052AD45555503812A3C9E908AB55371D3AD141D5E5259448A5D876A8316BA0B2EC0BCAA808877B89FCCCADACB628E03256DDF699FBFE29118D3D7E70DF6F77F3B124338264198BE2D7F395C3ABF365D76068E55BDA3BA6E8C537BBAF4A2878DBD6EBF23280CE0C60E8C682E01FEE1E12386CF4C908EC28CC010EE3520A47A22BFFDB8FFF213911A3C4EA478A5CCFB87E2CBFDBDB465F6DF95FC8E7F3D2C973DDB4911962F58A663AC2F08F77BCBE6DB940825ED6F70DB51574E26C37F50D8D523D13BEA3A79F42E1081506FC343032CECC504EC1808FA2F138AB0D95F61F3BCB285141F14492AACB8AB35CC719A698653B2061FB3997D7F3B92D37DF36924CA69F4E26E33F7D6FCFEE03CCE09ACD0497E50598AEE06C6C5EBBBC8802BE964B460045325D24D9B46418018C4521407E0D228B08DC42162473D8EF96D8DF96F9452A482367791DFCDC6EB7CB5DEAF7D1DFF6FF1D15AC4DE86F6F7F424E1C99A6AF36FC31C55365A6C1B77A394B7FB3D0F5705D9BEB6AE864C77901ED4DF5D5D475A19F827C8D9282A050058DB595E4F7791809A2CC0C3E1A1A9B6406090A43B277708CCA8B8374E814A34863B5B06910049B51070E7B214745F052C17FFF2BA595551BD893F84FCF3EF9B30F6C26B85839FCC593418A62B07B42D35393C47E70D677CBEB0BA8B5A9E823130A0E87A7F921515CBAF05030EB7E89215FF2FBFD9259FB301367B0EFA3C0C34C956462EEBD496E4B7F5A1F6E6D97BEB9E56EA97EED32DAF1F617E9E80983D6B5B508783FDBDDCBC65F3313B98AFA87466879632D151715084468666600024C86C254565C48BD03C35454584905CC04BD8C12B51565D4C3E745D87EA86204E8EA1B66242822BFB00F66E207E46404B2914132545939142C2A6A5055E5E67878DA0BDB866D1C8399C08E1DE45505F326833CBE00F2DA9448C4C8E3F664C2B2F9093913189232F5FB765047CA848925597614905AC120C98A284A8EEB8B7D3963D0981B1339CC523113327496FA31BEC782A2924595FC225DCB4C80BF6148D20C233A99506195539EAA10D775C901B97F2842AD876E34289092AEA9F15343D92B74E8D81636ECB6512C9EA04E1882EC014C31B13B7B06A8A5A14648FBD8C414553391BB581514050354C144EEEE1B12866094A57F7432245440EFD0182386975635D78AD0B286BC42AE97E0701DD35AAA87DF6B9A69B319C7801A89B4A686422185D14D675567D045AAA1E775035D0C652ED54FB1705820011482205E66108792A786DFB94A399FCD97AC661D9B091367982963C59ABA5D63EB4ED7CD448BA69B9FCD30AC4E40A9D28A4A5254B73867210B2C665C9E1940C73A36D2FF57B5F54D45B2DBB56E26386522DABDE3BBE883C2A3CC0CCCC09A4A8901B7F48789DB69EDDA7FA475EB4FD2B51B7E454FBEF8676CC8EDA0A3A73B454008D27F82ED84E1B1096A62229FEAE811D25E5F5D21186379630D45FC26EC37B15AB830C0D21F6543734583E3D98C2CF8A78CE41B944A26A3E17064D8170834417D81F0F6D888783CE6F27ABD0AA380C6AA4EBF0C37D0649D742A4D2E85DD9502B799DE95959910708611A40CF133D2E31CD193F59D94511136438858BF62218055FA2D598C8B2770E933C112BC10CDE40C1301783B1D0A91EC7623127851C20306716D245A0E1D3A64D4D7D76B535353E983FBF61D3AE43EF8C5EDB7DEF648754DFD37F9A516D9B908B7E4A355A9669A964C3B43A84739C52EDD4D343C52CC84BB47DFB4EE45B9B9E1475455F147F4D26F9AD9F81B133EFFB1331DECE679585DD6B30BD94DCB1AAAA992A11D4CD0DA542BCE1B1E9FA2752B1AC98E38DAAE67BE9C027FAF0FF4F78FBBDCDE2297DBDD0C8697A44C058F899669941C286A24124943C5C1E3B1EB1317C500B8AC9E4E919BA1B9AE65C5552B0B9F652FE4B9DE407F1F1D397A3CF302E75B601C21AC8AA40BBF58E4E613463A1D79EB37BB9F292B2B7B77DBF6DBBE5E59557D97700EF9FA8D5A03E9EC109DD4AA685C1E633460DBC0502899228A6BA7E589C97AA3AEFA1CF3C7492ABEA598CE1DEE27D7541BAD6B6D1141A2C69A4A110BE8E81EA0B6967AC1B43D2CF5AB781FD1C24C1AD961FD3BA11F4CD0DFDF178BC612B2DBEB2947E92B905068414B58D00E01FB69BE31542681F8FC7CD2252300AEA6692996969AAB170A5E6024B2AEBE810E1E3C40FCE00BBD3951ACC9BEB38E8A1D9FCF978846A332EFCB6363637DBF7CEE99BF6A5BBD76F77537DEF88DE2A29236E11530233EAA3D424FC94F9B1E0786BA60C412635447DF3A69622A453F617BE2C8ED7F21C9D7C9D4BFFB5EBAB96B27DB048D74FC0C5BF64D7502EE3B2F0CB0E7D0C8B680DF546956726976F6D014DAB1D131ADBBA747F7787D62A4165C5D1DC4262B2D9ED9379921954A8B77C0284788175CA60A309624EFFC612C292B273F2FE52D3580A8D98E1D3B321C6D490C5EA2C1B68F76EAC4F183A74FB6FFEFB77DEAD377ADDDB8FE51F60A8B61D07E59FA0219BE618AA63CFC768E5BD7545822151A4C8F49F7FCFA3FD0E9F2BDC6DDC907A45343FD542F55D01A360C4F77F5D0CA65F5B4FDBAF542E2859E27A77B478E3437A28F51E3C8E1A3BAC170A9AA2EC5D6F336E6CF30808502BA60A151360E8661D8B20148CCD0971909B443741F8305F1F1851A81362FC0166077096154629D496C3809C3905FA8A8DDE3979E7CF38DDD2F1C38F8FEBB3B77DDFF8565CB967D5A868255EA29E06DE217BE8C55E409B68302BCCF46A2E1223DEAA2FADE6BA523877B69DDF246E3DC853E09C6DF9D376DB10C582D8FA467E979DA7FE0A03E3E15925C2EC61DC9B4EE4DAAEBA60724605FCF3000F83F1A093F79E6E8B1BF89C54283A845644350B4CA59BB76AD61058516890064EADA0F0FEE2F3317A0E1452D2C1B68A1008C239D8D24E40508E5DBCC0442FA9175836A505535C92F3F119A98883FF12FFFE36F57AD59F3FAA7EFDAF9D5CAEAAA35A26E416D22BFAF852A4B518F78237D33799E5C457ED26536CE142F824052799157F7F9037256669172A27B16239C3A7D5A6F3F755A525D6EF019CD58F77AC60596244745146F93C9D8FB03DDE77F3432D87F823F4F31CD527EBF5F63B52618E0BBDFFDEEA5DA007353E5F50F8678EDB3CABBCDD1D799926E91C94A9B9F0DBB998766ED6B26E75AA5E322EC2B4ABF35F139533E6E978D5BD79330DA1BE7F38BD8B4713DFDCD8F7E941701347DE191002713E023AB03C0A611080474480F72F02C494002362D52A8E14B9C387E3C71B2BDFDDB77EFDC75EBCD37DFF2A8DB1D2C53ECF881E2A74DDE0DD6F0783E56630F9557646628E3C891A386EAF1CAD9091F13F38786868D377EFB9691D20C8BF08643B767CC7C0B00CC637A3ADD3F3C3AF8F7833DDD6FA6D3E929BEBF08337182D12C190A85B47038ACAF59B3C6B85838F8E22A0083B495FC0C108EA66870347655720195E5657322403ABDB8360033E555A64DC0680026D0611C161515891B60E2A7E129A451704084CADEF82BBFFEE52B6FBDFDDB035FF8C2171FDAB871E3A7F9982BABB2C9E1ADC0E361D522DD76DBAD527FFF80D17EF214A3838AF82CC56251FAE5AF5FD187C62664050D3850FB28E98E7E07FA8CCEB75D63438B85C6C79E1BE83EF71CDFD718AF2126FE347F1F65D48A336AA5D8A04DB38BABDBEEDF2585824529B7EA62C19BAD5777DE52473BB7379891C14C59B8E5CBE77503A56C97D12E139B150A96E609059B41A4B972F626722C7EB15E90E1A815806D80913C88A669FC77D3FC92D38002D805FC9213E1A9A9F88FFFEEFFFD07D6B17B1EFEC32F7CA9A9A97943D6F3E5E416F05CCD4D4DD28AE5EC1A1E39AAFFF3E34F19FB0E1E4685B94844A1FF819403F394F1EFC5564F4423EF8C0FF6FC34198FF782F07C2F203C243F06E2A3D218A11B665E51547A79C9205931BC5E3F4D4F8C93D717C8B2074CC24B1F895C006877F8D0414AA661045E5E0308DB43B02447A80588A1DBEDD6F91E34188618E4C1865A924F4D227E70F2E4C9F8637FF1ED1FDCB36BD7365EFFB0B8B8B43213C370D4503A19E1FAEBAE95FFEC3BFF39CD2A4B22D2F3BA7336F44B3A2B422D752E323EF2CF91A98976FEBB53FC77A799F861267A94EF25CE7C9960FB25C544C7E013CDAE1F9CAF26409DCF0470F9BC0209C68706C4B85B3523A1769857B50A47244770C72CF336A3866495749B2821C93694C962049F94F94BB6259C5D3265C0B01331505D44F934C3CEFBEB42E4B14DA6CC8088D75FC0DF5F7E27987C6A0189151855500F6004B611601F64D00044F8C58B2FEE796DF7EEA3DFF8E637EFBDE1C69BEE66A671CB39C5AC3613081D6E18BAAEEBB3DC39B3458AE9EEE9863E118F4E3E1D9D1C7D838F4EF1F7D37C7BD3CC8480FB18743E069BA0B47C6A6A4AA82C26BE6133F065158488C02760DAED315D97744A9485CB8E913F666790DC12EE995E3E92DDC787EC7E3EB63E9BC95118566ACB4E6680E43082D0560604D6C5563319C0FA0C7FDFFE0C0673FB03223CACA597AE15D0C5D0002F1A8C0038C0200F1B0D58F7C6FEFAAFFEEA7FAE78E9A5BD7FF2EFFED74756AD59BD292BC9640989B8BE6668C2D873B873F6A0633E96D212F1D7E2D363CFF2CB1F05F121F5FCE7D00D4DE87AFE5BF0503252BF69D3265BEA175C1636AF0D6068690A87264452C8EDF559FA5EB2DAC298102DB27B429FCF0CF392C4A0103533744C308C2467868E4916F3CC0C0F339B3D896B90F91DE20F88B349765B185110A058F50556B650B841493A7ABC9D42D1303381464BB95C0C0DC6C7C7856DC00820BC05A0019F0A894C749E3D1BFFD33FFDF7FFCFAE5DF76DFED297FED5E7ABAAABAAED77E3902F20884FB260DE5603FCCE0F27A3A1278C34FB9426E1432C8061483D6F63401C18A3CC8828128515AD1F3870C0E075D1AD71E74100D4DC27C8E3F6516169D9473A17B0B26D15FDED4F7E42A964FA8A44ADF2A10112337019B1D806A2153710B103780B2FBEF8FC3BAFBCF2EB13DFFAD6B7EEFACCCE9D77BB5CAAD7C10129D3CFB77D2EA38F9289A7E474E29004B8976561E4F11AE13F1F6382C7715DFC1D364E91E9D3D8CDD3170AF78B660074DB48A792E40B147EE473015E9F4FC4EA1752166E8F09B0DFD7638F3D36E7B9DFF9CE7768F6889C6C34404EC142038CF113DE02332DD4428209C6421A8FFDF0873F7C8609B5F7CFFFFCCF3FB761C386EB2553DC93962A08CB46E2176A2AF91B48BC6DDDF3F530A034CAFB31C420C05C401CF8F896D40BC9BF9C6613F31A811FA79E6A696BD4CEC51E89892D2132C69223F66B6A6AB2387A6C6C4C2A2B2B138FCDDF195FFFFAD709E7B7B7B71B601430842D1FF9D0004C6005905288C859F6011821C6CC12FEDAD7BEF637F7DF7FFFAA3FFAA33FFA57C29332F457BD94784ED6688C1922CCD78980F0CC4042EA59D8E330F29889527C5FE9E1E161DD92FA25E9843EAF116856DD7C3C720190FE397201526969A9D4D6D60682CB309C311E00C70706064419221B55080583F8228182A4D0C4C484B17CF97223168BE9ECEBEBFC5B01B7CC10B9E15563EBD6AD7A7777B7E80AC2922A6C04261ED353D889227804286786F03DFBECB313CF3FFFFC81F2F2AA123F2546C124400A308925EDC2B5038AB0B781EF84D4E33E9642EA17C10073D37E783C4EA353095121641A7C64167ACAE6BEE9254876B32161B8C9966F2B7A4EC852A68054B6F6ED63665998798E621785CAE6319C5B5A52429B376FCE130A4689549617200A3FD1DEB6AEAE4E6E686800C1512AA532911526948282500CF404F1711E32824C3074F630104AE57334E406100DE4DFA6D9D7D69811B4A79E7ACA6026321819D00748E2F3C064C47F032802DC4F332210BB66B00FEC50729CFF0EFA1A8BAEEBA3A34383E820C2F78048239824C1F79B60F44858529F66D522823A97ABEB2F9901E6FA53FB8E8D5ED5B2F0677EFE4C1E04C8CE06A22D2DBF74947F2B4C34374BB7C4845098F8E821E86642BB9821053130C40AC487C10997175137101EC401F1E0E2415231566F707010C916DCB871CB2DB748172E5C40FC5E418B1830426565A51849CD08A217161662A4AFCE8C83E2932433058236E83380224DC96E2103294770C98A2DA450CE858414C2B9B03720F54B01F98B6680B95A9135D70668C7B53566BD004AB6C5000F735F16235974B3CDAB886E5925DEB9E79231F37B69665F26DD0A7F671FB77FB7BC65597E15E08803A04E0E711836D0D4EAEA6A3718805F3ED3D4E56642A2C419AB97CFF3D53534AE9715B5C83074D1F516C6AF9D9FD7D2A989D0D4E4A158243CC8EF5EE866263EFCF0A4455839180C8AB91478ABA24B18E8047BA0BCBC5C67461085A708202121C4BEBB86FBE22D882F2241252525B80E10030CA7B12AD1F85ADA9592FA851B81FCD65168994CC48495ED5C36B496D035ABCA2ED90D5CEAB27096220A85A3C2B207F199D0324BA4C2C4F7B044AA2C512A1FF3F377E08292FAC6A66D8545C537BA3DDE4DFCF3801960D2ACE2532BF86415A2060A8B5017D9178E84BBA291D07F4D84C3EF01CAA11ED01F88CCCEA4FE548A8AE0AAF1DFC818838811F0318DB73A131DA8026283114440895504D2CF69561F3AF43C7EF7F0C30F6BAFBDF69A601E3616E9C73FFE315DA9092FE645008F3F40A189119A1C1BC67876335023CD047BEC3E40AA15D09132A5DEE6796690479ED9DA811FC9EAF861957DCB8EEE1FB215E4219BA9CC5620A64D619F239B0356F0BB443C417BDFDB4710FE34C300338DCC7A5965C9F232FCC3B0C3679FCFEF2FD9BCE5BAAF0682059F6229F7CE1079FEE8212BE6BA503852C7DAE2667741E9512D1AFD0ADB69E3E811C4F75F1025EFAE94A27E5742B763C318935DDE0E89B4FD6E35B547D2927DB00358C291514CF3BD688C0E80FA74717131880E3480FB28D08291826EB8E106090802E9677B83606F383C58FAD08C404865C01FA471668044346286716DA34D323B76D8BD19659A495BCE8E171834531041992A1811F2C531D4B9593900110E36CC70B09046EB58DE55334439B8BFB098548F1F9E00A01F2366DD2C55015E7DBCEF69686C6A5DBFF19A3F555557831D5A5EE81263828C4D4C38EB0E36A841FFD3E9C9D883FCAC5E5D525792E2FD73C5CC5FB87853CD585E6D18F24D4949FDF7FC1D7AA38F93A47591A21F74798C37BC52AA03553CB02D18BDD2701959ADA42CE3117647DA2EA4406A9A0D4BB8A4BAE57DE87061ED18C5158B0398410A9D92A80C767BC9C3ABD0CD769CDF2AE19E61063BDEEFCC6649568DBF230F6090990832A41C57C3C8C41EA45906A83113934045B8E35CB6CBE86CE7790C92106D09D1B28D2D673F135F815EBEE1A69B6F6F6A5EF6289FEBD1B5C5E50A302874646C7C76CC21AD2DE7E7A9E277EFD63C45DF51D058DBCE69640DE5129FE06D5418B25AC1DBEB9386F18D04DF8AA16B9346523F2FC9C1836EC5784349D309A8101883F002F8FAF023D3A3A3A36946318D66E63D10C8C04C80913F99F8C4A530C3BC0C801141A94492CA6BEA3F92A160C96A25D7D3D3433FFCEB1F413AD1E6C5CBF05FC04C1078E0C1CF7DBEB2AAFA56DD4A2C2D8AF82CF9436218F65CEF5429337CC1CFB13FB95C71105C332CE6CC6A1F438EBA3FF19DCCBAAA94F7793536A70CE36B2986412D2D8FEB5AEAB822192F16ABEA6E559513AC32E081A4AC55A003D408A3850E2FC14204C426163D33CAC543C1862E25F825F8831FCD50B018374F66FA985F0415057D343E4A68F5E2E7557DF0A1876FABA9ADBD55D3169F21C430AF81A1E139FB0D30AAE9BAC7B3C1E50DDCEF546BD87F3615A10B7A8A9A24959A64951AD9DE29B3D3DC598C4139E3FDE016AA6506796EE5CFB74EF28DA76389417645DEF3B9E889228F72D44A022511580010B18D934201281B8C69780E768DE342D1609E5C00896AA08F7A20D06937F03B87FE2FB8EFFECFAE6D5DD9F6078BAC1216CB2843FEE8F8F845CF61F409C9C1D2AF43EF3907709C6335D4AE2745F0EAA491A6D39426F68829C02FB1816FAE8199A18E142A37E41994C8650AAB1642656873BB5CB5FCF901FEFCC0482A954C2562E78D74E2F5E280E7F1804BEEB7CAD4124C7CD81249361653CC04DA927408B173F41F650E302C23915F84DD934FB97BE7CEF5D76FDBF60797621B85D9D01D1C1916ADEA2E1A1D73B90BD92B929DE3F7D27CF897F18999192AC4F077730809F2B79DCC105DBCCAC26F94A88E99A196D5185A43545853E464F723CA660C663A371B8A2B797F25BB10DF188AC5C2C944BCDDD0D32FD4177B9F62B777925503BDF5D65BF01AD2AC12A4CB2C08D1E9439D654D5A9CD4E39FF0DF354DD404E0586BEB8AE0CE7B767DCA9CBA6871F71E4F24E8FCF99E0CF1F1FBA191112A2B2D154D1C2CB528BC0E9FBF40CEED01F8763444239A393D8E087393D9FF80464748631B456E594E4A4989380E5CEA3134EA13D5D44972F3C3573333881508C1ABE2A81C9E610C5BD56016B682A03F10DCCA9FB64EA5D3DF8F4622439191D1FFBCB1B9F1EF11A0A2054C9475510680CD04AB39DF6B7CE5DD7E7A656F9FD9D11B215AB2C3B696910A4EB74BBDAD8EE0B291B63E6B5607712BCCEBF89D9409055B65E3524E9858D2E9DACD9BE8C73FF9B15925C4E7B0121481A0F2B272DA79CF3D15F0AB17ABF7E349F624CE75655AE2F4F50FD2FE4387692A344D0F3D70AF6000104065E21795556659FBD89F6404DA1D9F16155392E5122B96C723575691363E49FAB973246FDA44A963C7C8BF798B78669B5160CD0CF1E711F41AA494204C3933432513BA92B765E8DA9A354C3CDBC8445713B60DAAA3D3E37732F1FF092FF562E301168800C69CE6648AF12E96485F2417A0E5C9056899F3E4AC5C803E7F2E80CCF3145EA3D1A81503D045FA37CEC40703ECDCB91363FE257D91D63ED0E31C131F08C4D615BDBFFF10759EEFCE5233780F1EAF874A4A2ACD59D07260FAA5D028A50CAB438AE140000C693F7C885C75F5E46A5B49F1BD7BCD8018334CE8572F91E2F551D1F65B499F9820B5AACAF4862CF531C1CC30C5CF7B8E9F5FE16B16B39B5D0166E033CAC99CC1CDD9582A1A0E017184938DECE7F83C76CCFC0C2049066E365F91C53DB7D4D1BD3B1A3ED45070A66C4C96CCD1B4A934255872113993307CDDA72EDAD54BA69274BAA343A0C9F474987A7AFBC9EFF3515BEB72668C94B8762A9DA2EA6005050B8A4976B92D776EE6C59F8947E9402C2CB47886F8821198284F3D49BEEBB7919B891BDDBD1B79677EEB0AC50F1E20576191288DD3C7C62879E10285F7BD4BD5F7DE4FF1BE5E72171692ABA4CCCC969AA3E0699AFF6E8405E2020BC81DAA8F5C42C1180E0698C2BB41F65206F1DBDBDBE77509E7350215978726C74699FB7D2C5D9E0F53CDCFB9D8032B91B38FC6A262C652848A176BF1B34D4DA7CF7560342D8598F8181B585D55415E9674AFC78BBA00739F579FCF4FAADB47B92E9FD9C24DA69B9839CE3223401528B6F4F3B6E80B8F923E3040A993272978E38DA4060B28FAFE3EC00E15DF7C0B450EECA758FB715299E97CB5B5143B7B863CE5E5143D7D8AA4FA0692748382CDCD963169AA9432564741973B4B05E8A25F828630BA66CD5C22A347D065750963902515C5A0BE000DF4749B15B8E6AC1C44343342D549599146238932839B8D193FD72C61D1456307DDA1C3EC70AF617662147A1D826C3643C4796657105BEA24C30E534BF4E0671FA43686D6C5EA7C48F589B367998992A2072098A1B0A040CC45603200B65EB1F5F8D025DD2370D9C8A387D71514D23A262CBE1B4925E80C33E5396686CE788C22FC0CAEFA7A52580588D1D67C526005AB823367287AE82079D93E483303176DD840D3478F526A68884AD7ADA7F13D7BA8B0A1910A5A965936056526E66C60A1C4E01867C4311A0D0BD4846CA8C840A5D3A2E885ED008D2EB5450C089581544898664EE1225DA41DAF41B9E150C3B4E710F7B7DBB819E6BEF9D96C74603862FE2241638F0310DF69A45B8C607AA566F4EFF6DB6FA7D5AB57D162753EAE79E2F45911424E2493E2EF1415156411DDC908490B6D80342E972ADE456EDB369B31AA151F55315ADE6C949A5E045F1F8CD0158F5077324E097E10A8834075B51922671513E135CA08E163C997CACA68FC9DB7C9CFE7143636996A90AC6E6B96B835303AA924650592A6C647CDF884B837C3CD760D862508A223388489AC6014E6A2813A5F3108E031169AA282A222BE41BF5595E318D625295686D03963889529B4B28192330B28CFCC1292192F60959A67C61020DBA890F51B79268FC00C9082E1C72F951D626A686A5E34F1B19C619D1F8DC604A3E16F14B1BE9D91FA6CE977B95D74DDA68DC21E4042686C6C9CC627A784BD1065F4408614AA11E7390339B69D50C70F52CBD7BA894AC4BD0EB2CDD2CD0C7181B77D8938A519FABDEC19C816910D6634D7AAD51439DF05BF945C8C4AA2BE42323D8B227E6F452E570E0312251871C050A313533B8E9F3EF7C7A5A5C1E7B6AE5B7B26140A25101CEAEFEF1745AC7651ABCD08F3AA80241B3745EC079794965F955C805D46668E02322511567B5151F12515AC5EE8EDA3B1F109714DB876B68E37A5DE9BC508B8A7B5ABDBA8201814BF2D2B2D215ADE9255848A6B8D8C8E8A84D1E46488A69831705F814050A8CFACE81E3F4F03FFCD7AB6276EB4F4F680C5083D89180DB107A2FB14E13E96A0258F65009ABD121DD22FE21433F09FE0DFDB4DB518D16A2643D3FF9199F43FF6F58D451EBC4BF43E8ED7D6D6A6D6AD5B875031DCC34CDBB88B3380664878D95ECF87DF2D3CA33EC0AD56EA37C92F0B0C00E28339166BF18FB30477F7F68A412E18CD842EE868E0E4C923FD2827ABADAEA2D292E2396224EC9E7576091B62E3BA3559DF4D304274755FA09EBE7E668C09815A858505EC5D046675FE6A6041A8E7FBB89E1102CF33C4CF38C0EF7C80D5C5582A9979DB7644B1D1EB2717F4BFC30619E81BC92036D0C9FECDB6ADD706CEF40C3ED65A5FFD433811EC3E27AC390D5187A8CF8F00A25B459AAEC622395E341800B90FB864056C70B94437B0C559FC30F4A0F75DACC7FD3EAF68F72A0C3C5E7D5E87C5CF5B37C339D0A0AEA67ACEEB411D2070545B5335EB3B20C69A552B69F3C6F5E27328344DE7BACE53D7F90B22BB8841AC258CAA85FC2CCE6171604A1B21446899BF18668607538CE2F9F9992BF81E737306E313A6FE1FE66B87C311B15FC71E85C7ADD27832FDCDF6AE9E6F32AA461841F73145BFBDAABE76FFC30F3F2CBA86CC1F0AD6AF4E2EC0B00230D813FE3EC31C241695B68B957C40F5B1F653A22153794990826CB1CFD6F9A60A60C389A5768C962F6B9EF37A0383438C247D74C76DDBC5EF9CCBF90B3D74F0C83166301FDDFD07B78963907E3083CD10D34CA413A74ED3B1936758674FB06A29A7F2F232DB0A9889FDC3E2679550EFF359FD12F3E40860A8B34783C218A837480E0CD56DD76DA29EFE41D1A0428CA54CA7036CF37CAAB8A8601323413DEA10E7550186D30BC859FA86A3D43F1AB34AB966FAFBDA9FED322FB32CDC0A8EC894E9F76BEB35D9EE129EB98E94E9202E14A0E51A565694D1ADB76EBFA4DC443BBF6C247960ECA1EEDF49F05C46006C03DACF9CED60555328D4405D6D0D55575688A0148CE2D3E73A69626A4A1887B94B3D9F0B15535355393BD11489505FFF00353736D2D66B378B1591C7E3274ED1C1A3C768606884554E29D5E01A56E879766F6072740C657533312E0CD9EEBE5E766D4D54DCBA65B3886B08A35C358363A04761810FE89752A4B4CAF640FAB1C71ED3D5B984CFA2BF59B295E7A40327C7AF485938720AB25811779718C6647EF9E5F4F84FFFDEB65E1745FC8EF3DD343C324AA8046FACAF65B8F7CD967E4BEF8F8D8F8BF3676C86491A65343874F4B8B039AA99A80D75B5B461EDEA59B6017207C7E0CAF1756EBDE986D97107669CF70F1CA6FE8141561B356456A693682A0D4373E3FAB5E2F34956531F1C38449D3D3DCCB025A2025AB599811C96BFE5025EE8E9A64824CAF03F2610A4B2A25C08CBD8F8A460220D55D90810C11B619536159A928381A0DCD5D525F5F6F64AEAC510982158D80AF914406B43017DE6E606B3D45BB6CBB9ADAEDE6496830BCB557294804B33DF2B8EF33225E0B2993D33DBD36999E38F3C74BF80C8C5067B609D9FEB3C2FF65B9A9AA8985DD9B9A41F2FF1C8F193F9CD5BD17C33CD2FBB571877884206037E66A87A6A6AACA7E68606265601336A25B5CE51B21E63D76FEBB59B28E068BA0D4242F281361BD8905CBBAA8DD6AD36577C77FCE429DAFDC65B8C36215ABD6A15DADB66A9639C33C95EC879403F89E6DE74E3B6EB29321D3189AF5B4D273449DC1F5443783AF26C79C0835952C000B36C002367E55F2B140E4DCDEA16BEBAA588D6B6962C592E40CEB4A637DF388CCF241B40D0A5B50C898BF5F7619D1F3EDE2E5E528D05E359011E87EB07E2BE77E060F6DF90E6F678206980D8A3ED27043AE06F54313AB43435B0158ECEEABEACA9768E9D3849070F1FA395ADCBE986EBB638CBEE69556B2B5596970B64C929C9A7F56B56534B73938841BCF2FA1EDAF7DE3EAAAF6FA0FABABA0C03401545A371F1F91A4611B4CB37CBE6156BC8B9265006EA6C626222D45051F45FD8A036508EEEF40266139E44330E4D62ABB9B7AF4F3433C2D800D951B62D65023BB2357C4BCECC3364077924E7D87FC91C2266168A2AA6C4CBE6F8437C6758CDB044353033008CBE3BEEBCF3928C48BC74C02EACFD6BD6AE61E3D16F59FADE0C1378D8E003F1DF79EF03F69F5397E5B242B7F7B044BDF1DB774450A8A5A99156301AB42E6F11845CD5BA42D8063345A56966A0930251EEB9EB8EBC5E0BEEABFB422F7DF1F30FD2239FBD8F3EFFC0BDF4DEFE83F4C6DBEFF2BB52184D7C6CB30C0850282D2EA22646A2543221548628CA45A08BDF2FBC12335914F98BC2D202A173972D5B66300ACC3202ED9E6F58F14652A2EA4E51A9B7BF9F34F64D7523339749A6D05127232B2D69867ACDE209BBDBB7A1CFCCAD2742BE9A63DFB2F6C531A132C4640DF45F7EF043F1308B4DF2F4B19E1D1C1E16FBD75E738D184B684BBDC742019B701F1C3CCCD23C7D49910D9129CDD3960E21E6E3274FB34A39219E0D05252B57B450DB8AE5CC10CB84A72159ADF091750423E62EB8C74DEBD7D14DD75F97B95FFC661B2308D6B31D5DF4B53FFEDF843A02A26EE3F3C00898B19544199F29FDA85F00E30D0C0D9DA92C0EBCCEC751648A1E883A2A899D08A05B5B9BF8A212553430E08B048ACA1CB5FD342B25EACC4A1916C167EAF92D6267DABDE48EBEB1C60158C527B019BEF8F987A875C58A4B48EFA684F4638105DFDAD29CA5F3B3BD833334343C326F902B5FABDC4D1BD6512DC3FEC9D3A769747C8A064746E7BC27F8E760C837DEDA2BD07159738380FEB5AB56329CD7CE0E559FEB10310B7812F014F22D4F3DF762666CC3AA95AD6216924C03494BF783315C1E17D4A1EE53E53FE353232839472F219142E773D55CD8B72A2F50C2169514399E194061E4247BF254A5987EA99E35C043C0B961257BAC811E330CA0CD248274D3A78591B876CD2A7AF0FE5D97D49CE0284B1DF4BFAD13ED38BF9413CB80CFEC2CFA58548093CF1B1B1FA37DEFEEA3C2E2120A85C3E2A755EC2A6ED9B8818DBAB3D43B382CBC88DCCB222671FAAC49E0675E7849C435D6B4B5B2E1B78AD6AF5D253292355555E2BD2C6FCE1F8B787BDFFBF4EA1B6F0AC62C2808B2A02C6364F392D93ADE34FA64967EDD4A238D8E8EBC5259E8EF822D8A318D18BD1C0C06B3E2008643FA933603280AC6A95BC060386BF1B21311B3096F6446F6648DF0C987008E6C9F64253DBEFCE82326BC2ED2EA47252FFC78117CE11709DDABE4E92938CE96337CEFB9CACEF336C7CE3904DD1B8A4629C16A0B317F7C0DC8BED0DD4DEDC78F5379F58C6403829BD805839D80D9439C0BD4CFDEF7F7D35BEFBE27DE1D8C41DC37C2CBF906E6A244EDAFFFDB7FB7549044D76DBE866D81804016CD32FAB09FD6C4542A140A8562D5C5C1EF230C811E044C7C0C3211238CF2A980B405FF302BC3B2AAC6CCFEFB46F63466F9243F0FF16DDDAF6772FC0E06D01C0C60CC483FE613BEC0440CF18B5AC330E9F12EBC08E558FBC92C88CE477C185707D8F55A483C215F0014888278C2D0D028AB2FC36A506D3ECF2BBF79838606FAC5EC258816C223629F9BFEED571EA5C3478E90918A53BFF020A6F3F217040891C48EAE6E7AF617BF126E1B42CA602C4411E1C9FCCDDFFD8426A7CC78FF32F610CAD8BE41EC410C69B7023E68258FD15C78C2E8F4F48FFC4501B49D01E7253176C0592CAADAFD721D4C603380F4DE9ED75E381E287A875DB202FE034126AC8F4FF760DE633E5DB16B1474F37AD21CD1E4993C7CCE01610819928C56E85EBFCF5D10F4078BD09F35A53D7CEAF459FF91A3EDB49C75F8268672EF3C8C00E91AB32057E8FF3C717C58DE078E1C15DB4B5960906EBF712B1D387890CE9E3945C5651582A1B080081114A656550BBB06526FF6304CD2134F3E4DC78E1FA3652BDA281C8D2EAA4A79FFA1236CF91F124C56C296FEB0656B209FB16AE5722A455654B2665ED34DE98F24CD51D2232323BD6585FEE731ACDDA2691A43CE1F7EF8E159E960A70AC8103312898CF38A27F4592B8641BBACDF658A542ED57D42F52EBF54A0BDDBAD06FC15E5E5555FF9B75FDF35393DEDD7AC526FBC8077D91DDAB07E8DD0AF41D699F9C6061C35B35C99A5A2AC7496AB06B72B66F9CC97B280715E637FFCDD77F70A624EB12423E0F2D95D9F61D83F467855C313532CA1A1CC4B840FDF3F324685E555AC8BC72E32CC6CFE05A9675B70D0301BDE85DBE3162824026FAC02927A4A14B9A4D22943D1D3FF972CBBD1702A8641233E9F4FC328636751889A1304B2C533E9F89CB45502229722C260AE4EE25F1213A02B873592D75B5C5C5CF8A57FFDD53B8A8BCB5A4A8A0A6822141206130CAC383FD09EB7DEA55FBDFA1B114943046E595383F0B18B8B0AA9837DE9692B0B664A876F16A39C3DD79931CA2EAD5ED1FC36C6045D7FCDE64C9E046AEBD0C14374E4E85131C39A614DB409C6B869DB752298D5C9F7D7D9DDC3DF49667465BEBF295DCC16914496B2A2AC5CC0BF09FDA6D1A7B1DE1F8F98CFC8D2FF4E45D077C2A25B1C7D0C31450EA4DFD1E8CA6400BB075E0E683B5542D221F54A26457D790502125BA418C9EBC658BE929212C5EBF36A631363343834486E975BC4DC910646260FC59B80D6C1A11161BDFFEAD598805FE8E4FB767E3A735140F143F7EF9A1517C07AA94B390A624A8A583FF78AD62F2227611526E29ECEF70F92AFA084EF3549B6D501DD3DC8F6404747279555568AE8DC45A39917C9B83ABF42CC60357B0D0D6C87D8011F19B614A03F1A16D21F8E4492255EF75F22F18826D268208DDE46A8089AAF24CC703081CD00B2651CDA129FBB5ED282C91A21FD2CF9EECACA4AC4A653AA8C962969610C41F261196BA9345DBBE51ADA71CB8DB46FFF417A9B8F4DF377A22C9C5758FD46C6402BA0473E7BBF59B9632D309890DD5B80619FF7206209EB99119F7BEE7951D8E1F1CE84C411D089C763E6C00CD1CDD46DA102D189536758DD844D14EBEECDEFD14A8B864C5AB7B64DE41C0A8201F10E4CEBDF34BA2726CD7100A189897F2CF6BBC7F96B58FEF0E8D2E878962F99A63A7464A65ECCC10C56C37AD2E780FBCB620074EA424B73560129E827D12FC276112DAF21CDFAEDB77BDF1355BB2B19F21FFB3FFE03A25A6C71EFA1DD7B7E4B306E019508AA7CFA53B765A2666602262EB26B0B50457352077AF7F95FBC444986EE7822452E8F46417EF93BEFB89D0EB27D82D87F1FFBFCB975B298BF4856DDA4C87671AB96F5C2F2CFC374F1635515E5BC565053439D302504F185DFAFD1C0C490E89036363E3E52E8551F47A349BC026612510F88AE66F92A83D53C71EDCC8992E4E8DCB0903B5CC4C2EE081800192E31AC19BD735E7DE5D72FDFB47D47414945D96D8383C3C509DDD925441711BE03AC6BDDAA4BA45CBFF2858785A4353735B2EFBC6A96C176F2D4D9B9A7915BE05DC38A87D4CB4A8A7C6C57A012C9C3EAE985175FA243870F5343530B91359C0C29621867D3E1693A74A49D7DF6D06555433917B884AB56AE10E164B7353FA2EDF7636C04EC1B315E221AFD9EEE96316D4C042D6BD1CD8C577DAE54FA3C55C1995FE432C4652F77DE79A784797ACACBCB710FA20D1B3876DF3B6FA15DEA51B609EA56ADDDB0633A1A6B1E181E519DA8301D89D0B32FFD9A9E7CEE45E11EDEC5920F1709C691FDA06758F762BCDF828DAB798E89F671960E4739D8E8C808155754893C88CBAA4FBCFEDA4DD471F61CFBFC87A9A2A67E492BA4DA98F88810227328205FD232E5F9DDBDFD96E1377AD8E7920EC2ED630680EE87FD2662FEBC5ECAC4917332C4922CE87983F668E88F834005263CB2DC4D997596F6EEDB6FFE1CAEE78A956DEB3CC1F2CD3D7D8325985E3D933BC0D83996B27F79EA19FA879F3E2E2CFFFB76DE459BAF59CFD677F292010AC406C2E04577759FA78ECEEE59C36C4BCBCA1C1DC54C94D9BBEF03EAEA38C70C1A254DF18A1A3F5A00E4CF678B00592AD9EA47B818255EB6D1876C5F171BC4313136329E76E989BFE49B0FA1A53C7A1BF25643D4EF6285342A5DA5053705AB14B5693054C0B50C611396B1693344216F03674F9F7A1FA8E0F5FB8B562C5B7ED3F854B8E5426F9F2BAB59143F20F4F5FFF78FFF4C9FBFFF5EAAAAAAA04AD697019F6FD1F78694F1D98E0E7AF9955768D9F2564168BC78C0AFD783F4F800F50F0DCFFA1D6A048ACB2BA9B0D49C1A2E63F52FD06ACA87AF60C6D6D615B46E4D1B0502BE8C3D81F73731394ABDECDD988521633F75933184B6F27CFF70FB52E8309A6F30C84782017053686ED4DEDE8EC689500170E445BB34F4C487FF8AA951785B0093016B8CE1E24CFBB15FF0716F734D5DABE4F65D7BAEABBBCC46055B45E0252321741ED53B88A0B1AB585E5E2A6A15164289483422BC87EABA0651C983702E3C0C620FE5E4C90EEABE70815DBBAA0CC1107740E46FD4D14C6AC1DA729ED396373752154BFFCAE5CBCDE49928F1C2ECA0713A7EF28C55BA36D1EB32528FEBE6E451114C2481F67374B9FD01AEF402EEC4FCF6A5A5A568A78A19300C87F4C38A0DF036C844050314609FBFC3EA1F1AE8434CF554B15B0DB6AC6DDB36303ABEE25CE7798F2D7533E9668D864646D9521F1286545D4D0D13D437AFF421955A525C9C691E895AFF8EAE0E9A189FA4404161265175EDA68DD4505743EFECDD4BB53595EC960E2EDAD59CEBCBC2C2A02885BB61EB1647899726B27D308831329A055DD3A2A1BF900C639255E9344B7E1C6DE76EBCF1C6AC90EF479201EC001446B1DA7187C2C242F43F4AB0FEC2CC18982CC18FD6AE203C18811F120C60A3829FCF8D0CF576BFCAB2FDE6356D2DCD4952AE75B9DC95F97A0AA2AFC0C93367484B6B22D75E59592E2A95164AB0E2A252F65A8A852760A7B121F5BF796D37192862F1F917657348F3149BAC686916DE4DA5B037B4CCAC229DE7BB44032B11E7181B7D921FAE9BEF2764E6BA6229D84FB921DF8F24033899C01AC56A8C8D8D69838383E89A898ED92E7EF02812507C4EC86206C4780B2C2408A24B27B6608648681221EBEEE282C083B144B252CB493F3BD3D0A8EB478816D5B928A5425E7DE1649A3986EC5DB0B88CE289B8E929684B336711D2C240A06DA220C42EF4D04580ECF0B16326F12727FB8D64F4097E479356C83781269368526DA77B3FF20CE060028C55036C61AE5BFDBDF7DED31A1A1AF030E8992F5C44F4DBE73564D906A0580068809599050623FAD915ECFEF54B8FD7D5D5D5B7AE5E77239BC2D50C9352A638C58AE1DB0C811CC2E163ED42C28A8B0BA8B1B69E0241FFA20D5AE19BEBFA9C528D733EB5FD162A08FA442592ADBFF33118FBED545E564A9FBAF516F260C22ECBE8C3A45D6FBFFBBE882E62FAC2C8E4D85F329C4D604E21BC1F4C1B87FEC573057D3EB20CE07431315CC99A94016DD2E58A8A0A942FA5311D2A381C63DF59CF611A95B0E53206A016F87311BFA462BE4C31A2C23D3D3DC9DEDEDE41268C6FDDC64DD7F9038195E393939E395BCEF23A3C324E0383C3620411EAEB9BEAEB44C5CE522C88DE1DDCBF8F9E79FA19FA4FDFFE8E885F6084723EE84709FBEA95ADB46259B34014BBC40B95CB6356DB9789F1B16798F85DFCCC93FC3ED0C15C483FA3A7B198F1131F1906C813921661686BBA163171039A2BA3FB05225C984A8591018C803A37CCAD03AF010811618980DA280232B071E93FF8C17B6FF2FEBEA69696A6F2AABA6B2743D3A54832E5670433F288FA82EE9E5E61ECD5D65553737DBDC8C12F228793B540E5D45655D1CDB77D8A3E387058246DF25D0465654146A03B6FBBD54AF698BABFAFBF47201596E9E9D040727AF2097EA649CC21C8CF2BA4FFCC9933101A6309670DBBFA8C60C3273E433DA0EF3EA66371AA07CB6D84E720B656F50B18A2C87223A12AFCE73B3AE2DD9D9D5D3E9F3FD8DCDAB62DA9E94DE31393EAC55001F0DBD57541349102F48240CD8DF554182C20459D27D093338803892B973760CE6B94E774E4312AD85D45E20B65EC8240CC0409468A975FDF630E184DA7F5D0E8F0F7791F319329FE3E8A994630BDED8E1D3BC0008B7ACF1F5906984B3D90391D7A967AB052D6E8B69DC45C3B60000496201D96912856CB9BF04722E1F88923075F4542AFBEB965955A105C373A3659A4EBA92C14C8B7F6F6F69BF105AB54AE910D488C072C62D7509AA33C66212001266F6095033775F386F559DFBDF2FA1B9951BF93E363CFB1A3D7C5520FE917757EC8F5DB68B9E4CDA23F0EEA01FB56F3644CCE809EFCF006F0C6420E4FA1C01954B23C0A5F4F57C761FE7C42C53CF095355B929AD1343A0E5BE1222DEA1DB3979E3E738EDA4F9E160C01431065E835D5D5A270C59E0574214B79A93976E1EE3B6ECF3A8EB105A7F86F600987C3835323834F32F127F8EFC12B8AF273A76A6B6B752BD6BFB4F3067E4C180188A041F73537378BD93CD918C2546D0209602C324CDA8C10743202C2CC967AF0A51289F860CF790C9C70F9BDFED24045D9A6702C5E37323AE69ACB4E70AE2273C87A1D163E565BAAC10888E5A34A1961699470E516AB62E816023E5BB76CA2CAF2B2CCF189C949DAFDC69B621FD3D24D0CF7A3D1C3383338E61016D93E86FE746565A57E2903673FB60C30172220B7505D5DAD031231DB5671717192A50653B8000DC28E3882CD08014B35081B0188C0E77863D1703C1E8BA0FA52AD292EAA52BC818DE3A1E9EAE1915145CBC30473BD781CC79070ACF91634BA40887987359AF857BB5F1759CCEB375F234AC35FF8D52B62A08B19F019FB453C1281D53F6147FC3097E0A542FFEF0403E46104049430955B861158DA30BA49CCEE8D383910017104CC1DC4FB3633046D44B0ED04D86408404D4F4DC4A5D0643FCBACDA5A575517376835DB0B95C363E36EFD22FD1316B2A0C52D0A453128166313CF32F131B0E5674F3D2B3C8EED166344A391E1D1819E27F8DEC601FD30FC50E685221A867FC3F2FBE9F796012EC60896D720E6E8999E9E4E5A53B062223FA8061FC3A998410C2860E51D0296AAB06716C3EA41EBB5E9A9F14EFEEE4291CB9083950C2FA4AE8E2612B59353E160341E932FE7DE31540B452CF63A323A618DC3D4F5E1BE0BFFB76DF5236906AB1F851EF0F931A1D442227EBF170C908F11F2790D988D132F1173FAF27E9899414C1FC7D225A41FE8603181B011C004B0136C54007ACB12C5BD941AF5F914B5CC5724A7A9A45297D515D178B27A626A3AC8B0BFA84284742A110E0602DE4834A6A29C0C891E14A02663B15F45A7A73B6112C0AB61433386546F4747C7A27DFEDF1B06B898D78097068F01337825128994553429BC063ECD2D2681B212501632088FC1CA4C62608C0FE758F90920831827A190965034ADBFC8454A7145814C352515D1A4D11889C72B63F164301E4FBA99A84A5E55904A6B83E73B7F415A3A595DE8F5A68B0B6F18199FAC1B1E1A09C5278705F4A35806412E24CA3043C8A5F8FCBF770C308FFB28F5F5F5E9A848665580D9BB14967C154125188DBC0581BD203A98C162029FA51A7C3622582B5001E7BBC010187329A552719F447D3E9F2A1356E625C3905C494D2BD449AE481B465952D30BD84C09F4F59C3F994EA726851BA7A5438A967EAAA6D033191D1F44CA0F469FF0F9F9FAB0633031F565197EBF770C305774D1A91E6C54884422628E5F865FA41DDC9817D092769BD85E8BF8BE9C7D9F652BE05C0CA0C1B03B4C4D2BE627C616CDD73DAA8C3A877E0953AB126B0E9F9A8C4F4DC09AB70B38B0454413441F65E2C3ED0B21BC8D0ADF8181812581FEDF4B0658082AD84623FA2D63381526A0043230F4BA603C82B820321FF33041BC963AF0F167AF850C5EDB68247318DD0C2A481256CC3422329F988BD8523F5831DD3CCAE3309124BC16F8FAA3FC19C61FCABC924343434B06FDBFF70C301F2A80194A4A4AA49E9E1E94A8C180C47CBF2A54057F467008FB2ECB28F4D82AC3B60D2CB5E0B266167559CC0054C02A63726ACC180E2FCF927884B1050AF0F19495DC42954FC84EF6A07C7EA9A0FF1306584084D1A92290164670098359D166054CC116B9906AABCF0208ECB6A4DDC58483FA0003B82C467159E7BA2C14C082C921A31602601FD28FBF9B468C1F8C81D437133E59505070D93EFF270C7069A820540460D74686CECE4EC9361E09D316B0FDC82EA5C2B6038C48317816C466220AC312EFD966141C2391F637090D66C28A29E3EDFEBDF87B289567DD0FA947C0278D78FF42AB7C3E61802BCB0C86534DB0CD206182EAE9E969CC580A74909911C4E0598FC7235B0C01E58E55188418168F1032660A071380D870ED58CF635671C3EFF78BFA48B44AC00CE336F1AFCAECE19F2C0B620671CCC910EC4548555555343636060F4362699620F6600EECE37CB8735830B53C0670B091872173E26FB0FD616040677373B371A588FF09032C11335C8C21E05E82291821A8A5A5453086F3770D0D0DFA9933673018C5D8BA756BE69AF6355003615CC1C91B3F61802BCF10646F77EDDA95F7B788E7E7127BA975FD5CCBFF0F7AA46003BDDAB0A30000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (42,1,'IP_PBX_(24)',0x89504E470D0A1A0A0000000D4948445200000018000000160806000000DA7D5C880000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000005AE4944415448899D95794CD36718C7D10D9C9B66997FCCBF66CC2E991ACD260A0C127153608988504B951B2688DC3D38CAD196ABB450AEB2022D052C57A1E52A1410142B97A82071611E88782128BA2563C6C40DE877EF8F8811C236B25FF2CD2FBFE47D7F9FE7FBBCCFF3BC262626266B8936127D41B473056D23FA98C81480C97F893C6B967D9B7CB875DBCE5C0B2BDB7BFBBF3F38E9E4EC3279C2C37B3220286892C5624DF279BC8722B1B89FACDBBC1A80AEC3707C39E033C7C347C6CAAA6A50A7D3A3F342370606AFE1C6ED514C3C9EC4EF337FA0B7DB3047D6ED5A1EA99D9DDDBB7BF6EC317D3BEA95005F1DB277BC1F2F10C12F2C05C1EC34B0B86988E30B919C928E1A7535EAD415F364DDDEC54DD44FD56AB545FFC080ECBCC1D05054547C8CC03650E95E11E04A67DC2F5496A152AD814EDF860BDD3D18BC368CD1D1514C4D4DA1C7D04539D84B455AAD69709C999919FE65F4AE51DBD2818AFA16D4B7B4A1A246FB549C9B2F2B2AADE452A025003A83F12035331FA7A324602564232E390729A25C6466E5A1A5B919BAFA5ACA8105959288A8B80AB654F022A28D3557DDA041C1991A88652548CB2D42F64F7208445946661C5F4BAD5D04987B7AFBDCCD931540595A068DB60E6DEDEDE8EDEDC1D0D0206EDFBA85165D23E5C08272E0EEEEFEA92055DC2E69CA34AACFFACD25948B202BA9824255050E9737EB7D2AE40501CCD8D8D86C7CE3C0CFCFEF5176E11930F9058817CA912A2946567E090AE5A5E8E9E985BEA961C1C1EB0D6B77ECD8B1299CC939AED3EBEF8D8C8DCE6BEB1A670F3AD1661D69EE46678657BF9393EB374B1CF80704DCC9CAC9854C26834AA58256AB21A9D1A1A3BD0DDD06038AE585738B00A23502818082985959596D552814E28B3DBDD3BBADED262C6D0F045A5A5A6EA6D3E9EFBC7D06DB8382831FE5C92BC04E922351A48430A714B90565902B55E8BF3480367DF3BCA9A9E93E8D46B3A152ADF6529695D3A552E9BAF0F0F0750E0E0E9BACADADCD6D6D6DB790F7FA951ACDDCCBC76B2C36261A71D11CA42625422C4C4176463AF2242214C9A488E1B0E73224928C4EC3C55FF567CF4171A61219B9B2DF1232652F7D85D9734C816832949BDC18C08E7621D19B510E57EDA0AFFF125A5BF5C6A1E1EBF3DDFD03C894168093988CBCE272D065C5783F29199B1378B04C15832EC947B030C718C84E1CA752F9E69019C74F8C725891E04486239E38E1C77391CC4B442A9F87A202196EDEBA8DE19F475053DF84F46C293A0C3DE8EAB90445A31E61A5E57048CFC4AEA85858A40A112E2FC3291677D6FA80E37E2A5D0B0EFCFC4FAEE840595681B1BBE3181BBF87BECB57515DD788EB2337708DC02626A7303B3F8F274FA73172E326CE765D8482345D85AE1D6E7E81F00F651A3D4F856451802D2EAEC7AE44443211191901369B034E5414A288FAFAFAF074FA19EE10482D89FED5AB57683DD7056579350A4A542824D157691B317075104FA69F2FC06A1A9AE11B4C32919C0EEF003635A14DD65BEFFFCE659F8D5DFE6E0BEB92ED5F5B947CBE7D7709C3CBB7A3A1B9159D24B2B6CEF318BFFF0057868651DBD8BC00C82B2C8654AE84205D8293616C780686223C2601FE214CC889F3600E574D9D83C9EB3CBD4739A12A8A92999999794A9A5044AAE54F39A998BE81AB0B696A3F77011A0250A96B490A8B17460333361141AC18780484E088BB2F54D51AA465E5BD0C0C0C5CB83FFE71AE53E5E6E1E16113C58D2B0D61C73C53914158D7D442003AF2730584644E49A48588E6A5E03401500EE25344D0779C473833E687C57EF8D7CB83AA676A3433188C2F23222233D332B21E46727973115C1E35D4C027D513CD4F815F70047E0C65E1E1C4634427265D5ED2C9ABB9A5A85C52206767E74F68349A67C0E9904E9AA7FFF36F0F1DFE6BBB951DAC0F1E46AC20CD982496CC9261F8D1924E5E25E0CD2D4645676F6FFF0101ED3A7AF4288D28F6088DDEE2EAE696EBE6E3E3BCD860FF0BB0DC1505A3A6665858D83ACAE1DB2362517F034B66C609ECE617C80000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (43,1,'IP_PBX_(48)',0x89504E470D0A1A0A0000000D49484452000000300000002C080600000023163B670000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000010CD4944415468DEBD597B705CE5753FF7BDEF5DED6A57AB9564C9B265640B0B18C731B101DBA549A96B120782834361E29A4E9CD04CC80C0492D000D3061A98E91F506813320D0CA450D3695AEC0C01031636D81023DB922D4BB6852D59EFDD9576B5EFBD7B1FFD7D572B4B9665F328E1CE9CF9EE63F7BBE7F13BE7FCBEEF72A669123B388EE3310890E9F1931CC62CD1CDE9493F878363EF82F24C611BC4057196CFF98FF3FFB2D21A240F4943729012E6353E2B25EFBDF779E7E38FDF9E9DEF9958F6BCCD5951D1180CD76F1378AA9004C12ECB92202B3229B2C4C9A24C922C912CCB1091D8B588519224531224D366934B2E973B036BBA7EFE0F0FBF84F9129857FDAC22F1C57555BFC5B0695E03CA9E760A82BC3C5815FA81034A3B1D36B229367260B4DBED645714B2D915B2DB706E63CF601844C67D59826122465CE70A85E398ABAD1C0D1615FDB33080E72E8EE86903EC22E9952D8B1A68CD756B2DE5149929A958A32CCB33F7D8F59CE74C54B548BB76EDF2622E3F64A80CAF8B630FC7ECEB4B454B10F84B1AC026C24F0487CFEB218EFB78C09F7BB8DC6E12384EC1A972A9FC292BCEB5B4B4881E8F475055950B8542FAFAF5EBF5B6B636A36CCB79C6081F1181729C60823875B9EF708C8E9D8AE2A1064D209C86B2A443549CEBD63D810937F5EC178FFC9C16D42FB0A254B68FBB94E23E9F4F29140AAE9B6EBA6969636353D30B2F3CB7671CC78A152BF26EB75BC54FE735E49206F03CAF0D8D8C9256CC93471468FD650C3A0CE353F846C29222B17B12CE314A56129388DF9EE8EAA0DE13C749D3CCC2C5148772029456B66FDFBE70D5AA55DFF2FA2A3649B2DC9CCF17E8BE9F3C901B1D1D69EBEF1F78E93F9E7FF6F5D6D6D60CE66686B01C325F79EDED8F3680E339AEC2EBA5FAC54BA0DC34C6CB98670A2B5219EF30603A07CA06B1E725AD44870F75087395BFE5965BF82D5BB60456AE5CB9D9EBF5DE2A8AD2970AC5223F3C1AA59E9E5ECA17550AF9BD0E5F857F8362736CB8E7FE9F8E8F4F4CBC323C38F45B18FCBECD662B1A86CEA6E2E68BC83903449E177D1E3779BCBEA9A4FD8449CCEEB51FFC409E1B009B37B8C410E467AA23912FC147FC3128DDDB3740C9549A345D275DD768241A87334472B14AA74801A7D3B5B5A67EC1D6BFF9EEF74FA753A91DA9C9A41BD093608336175A33101278931784FF570E1874BE83186C8C52D1FFC1E18E355DDDDDB1C492A4C7191194E5EA6A282C91815EA74DA944A94C96E2E3098604B2B35E23092C828D92A2DC7FB2F714FDC5576F7E67ED576E7CF6F8E1F77EC5A0356D843893E9BC9ECFE56874B09F1607446AA9F6A17995EBBC5C16E483A248D63DA92C228C4EC4C62836364CB96CBE38DBFB800007C858D1B3D9EC412AE4A92B76C2483674717F357E359719A9470474320C83583F95914F79B544495525970DCD12B58C3D8318BA69289541FFCF2626269E2BF719CB809972C793A9381CF00AFEC4B1A79CE50D4160224051D14A58A630AB56EC1ECB4EDDD0817F0D9ED4A864E8B3E983190C068DEEA3877AC68687BE07000F35AB0D545768E26B07FCB87CCF58DAB4930A4AC62A087895F56EAFDB410BC295E4049C98F26323A399783C9E1104B155D3F40AE4846DDDBA75FC3C10E2443651A4AEFE53E7404FCF49DB6C08B1BA8E9765DBDF7BF7771D1FBCDF7EFD0D1BBE77F5D2E5DF34F8882D573CCABF5DC8507FB8CD5CF5E15738874D217F95DF7204AB4CC3C323E6C953A73487CBEDB2E13D2A228368755DBC8CB236543EEF3C95A03303297437C312918D28CD126F4EDDE34CDC434EF06C34E9AEEF7E87AA23D554D44A73BBABC138D1E2C58B138886FAFAEF773E72ACF3C8CE8D1B6FFCE1C2E6BF5EFD35BB8E8CC2CCB26E44A363A09402178BC668F75B7BF4926E0A70B6C414370D339988477F79BAE7D8AF8B38366CD860CC1301A0C1D02C4CD687ED541DB097891BC3BA082FF32401467239C124519CEA0900AA0DDE8B45C7289DCA96E67A68DA88DADA5A1DF82D0EF4F5A5FFF55F9E3C73CD75D75DBFE9EB37DDD5505F5BEF88D8F91557B5D28BFFF95FDA732FBE2C28369BC0E6E44A6AA990CDBC9A880D3D65944ABDC8B938BA77E1A1871E321F7CF0C1B911100DAF2F48C978D45290855406335018F384E2122FC1E325E2759E4A682FAA6E52DAD4510A0DEAEBEBA54251A39C5A2CCDD76C58C52837A53CCA61098AE4DFD9BB77F2DD7DFB0E6EDBB6EDB68D37DE786B85CFEB1225B1A86A9A932FB1F7940E6527D24F9572B90FF0FB31E443BAA1A1A1F8F2CB2F1BF3965193D3C57C364D55B50B3E1599C3CBE9178F3FAECC479B1E7EF8E1E926C40CD1901799743A0D1AA4A69F79E6992777EEDCB9FBBEFBEEBB13956899A616C775ADF09B82A1EE061A06F1EE4426932974757569EDEDED17D08B994E6C0A3C6B2A2C11A21305CAE6B2800E6F414442F591D9392A0FBBC7CA9D88FB2C523268E0CA955F20AFE22543D3AC46E27038B88D1B374A8F3DF6981D4AD8E041FED1471F3540575484DFA2DA50A808C5F47C3EAF2693C9C9BBEFBEFB744D4D4DB58B53C781F971E8398ECE9D41EE94E67A7D5E03E01A9D79911D89944A237118C093558BAD64856AD0D74A5A5160C9CB59F7D8F51557B45AB993CDE47444856F6A6A723736367A03A1D02A97C77B3DAAAB472B6946A190EF8E8E445FD1B47C372375681A1582A6A9289345E4C740341A1D04C64B28D105703B15554CFB2842C795E96F4DF3B2CB6FDEB6EDCEC7D2897196D01624041EF5195E0705200E9E9E691A26B105A389DECB6AB7C994CF15A8776078707FDB9B3FBAE38E3BE46BD6ADBF5F14A4E6624925157CA788E694484ED2782281559CF0EB54263F5A3085BFC74C2AAC1F3574BD0308785D32736DE02323800E8B94CA96AC485806BD79D70CB30C587ACB6DDFBAFD9FC2E8039F2607F2851CFDE481876236497C61CBEDB77F0749E7B0142F1B303E91A0D1588C29C19AE1F122C94D054397F66B45AA856BC27088006FA01492AE95727A493D89A8BEE612B917EDA23180C8E40F1C38A0EED8B1E3BC559E508691A73250D9DAD272F9F5DE8A0A464DA76CC3682D99AD912B2F76B899454FF984955411D2D171D8FCC6E6CD5FC0B953B7889A6E75EAD37DFD144F24D0A4746B1E9BD3138053C437B53CBD5BCAD30934B44E70AD5160B4C0F20BF5D9A3D8C376C57E8DC1CBDB3325FAFEC8447A93A8D8CD2307DF3B8422304F153239639ACCBD7F344EDDBDF129E266B51AAD4CEC58F39A2672BA45E44434B59F3DF06352EC36DA78E3571D5843F3ACF94C1FA0C6148DC7A9F3580F5587ABE8CAD656926C767EA858A0F7D43C29C8253E9D2173629CC6C0AD26143B9D04ADB7811507B0C8AA02941BED5E072270E5F040DF3D98F2DFE184D20564CEE44C4D5535FAB0FB28F9E1A5B5CD2C07C07B041979A060C133C57D4039304E458465012A0BFD7ED72B584BAF239FD7CB33AC4F1FC9548ACEF40F80D398B4FEBAD5140E0589971D16C709A03ADC46D57406D03B0D0E5844DFE141B1CDC94920BF482518AD2E6EA231F8F44A9B9D24F41D4357398F272C40F7D2051100DDE3585206AA2256E7B53AB03CC53C0581B151618A81A2A909D64E8460113AF044C2EA8AB020015F99513E9BCD51FFC0203941101B16D4512858494B973459C42F3E9E246F22499598C7E4FCC44516D01822D20F19860CA099B2B582D366A32ABC3B8039C6913FC542A1FEA55DAFBF964AA536B0FD2724B731630069AC6292CF1FF858648E19C6A280D2486EB7E73CE59992A7FBFBC98F7C0A550628080904FC545713B19E7BB1706A6E5A481EB79B8647C6682299A0607C9CAAB01E305C2E12E1C409ACF04631B713F987164D2740D9510484EA70F8DA33631309ADA4EF4583FCF28C01067FAE467D9C058D0432B7A0A692EEBDE7877389031D3DDE4DD5A12A8A44C2140A0468143C69EF3BFBA9D3E7A3EAAA1021516859F312DC8F51B82A4891EA2AEA3B3B407F76ED1A9A048CFE78E80815A2196A451E70802883DC646A12954EA5E5CB16101AA0E875BB57320489E5850153BF9000FE6C836769111634CD619F05A5A9758068F505365AD0413EA07ED3D557AF26467567E3FED4E93EF243D1D6CB975A9E1F8392A7B18464FD62742C6AC18A45EBB53D6D54571DA186FA3A0AF8FD042E64FD5F45D9FDF2BA6BF17B93BA7B4ED2C90FCFA08225E90CE658BD6AA5C599ED98371A8DFDD2EFF0D1B401454E10933A12763096B4967ACC6A560659E9631C5D05C10239B4943540397EB0FD4E60DF773EEEB1A21B1A1EA16F6FF9267900932860D171ECF8057B4991709846C6C6686874848E76F7205FB2AC0050D3A285D48C3C7103466C9E96A59759F2E3877E6E45290443D9FB6313E3F14535C17F3E72E4882ED2D4E66C8E13A82F1E8B756A5AC9017C49E88AFCB411258DD5F412B12AA51B1AE7B43BC46030146693CD56AC13D059B27891A57C064AB51FE9BCA0F533E526C663804381352C4AA5D3D4725913A27496DEDAFB2EBDFAC61ECB790B1199E5CB965ACE6BEF38469B36DE80EE6F90AAA966319FBBCB5E1548328E74CE80DE9E9E4EC8CDE5AD4107CDBFC5CE5556563A9E78EAE97F449286DF68DB4B3E4421025CBBDD2E2B21D7AE596D45EB70E751CB789AB3D505E24671F486DAEAB0F5FBAA6010D188523A9B3BF753A6F4B1EE1374A8E3A805A9B5D7AC012CBD9404C4CF9E1DD85F13F0B6A11215592FE0CB0D81ED0DA42083906EC81148FB5C013B6C07093BA9D81CFE7E245D2818A03064370C397EE2247DE36B1BA9BEB6062FEF4175522FD88A645B973A946B69BE8C26D359E291532934B1D168FC82AD3CAE6C756D2442575DD1427634CAB383C3259FC7711788DE245BD49C5BD49B5307637E05481A929C4FD851575737B9FBD55D0FB81DCA814C3A9BDFDDB6CFAA1C0EBC80ED5CF7F6F511EE5F807B563AD38015565BD4036319FC4228AD603F9672F36D484A289F5FDFF897E443998E239F4647869ED072B981279E78E2DCD6FDC7F988317BA78D71FD4924DDFB07F6ED7DECC8C1FD3FB5F3FA6F1AEB2283BBDF7ADBB875EB763AF0C74394621D75CE7F47464741B7B3A8385EE488978228AFE3A82E6CEB9C3BFF25651E0636B0E68B48EC46CAA0381CEAE81CF0D9E57FC3BBD3D35B2A53EB984FFE0D82DBBA75AB0263DCF86F0009570BAC2FC4FDBA4038F2E7CBAFB8F2EAC9C914C776166CAC93862A2D4F328FB38A552882262047D2E5BACEF817BB5F2C0BE351EC9A25FBFD77FF9D950F2FFDEE7FF4E1FED39B249EDFFBE4934FA667D36A9E3EF9613EFBECB3C5FAFAFA7174E80FB1A23A080376C3A03FC447867EB577F7EB8FE8C5FC41C0221B43D8DF3F7888DE787B1FF57E789A8AA0D58C3BB143661F4B1CF699EA6457ACFE62F11BF49A6FDFB69942307EFFC10F686870E8795484C3A3A3A3D9B96B02EE33F80AC4AD5FBF5EC0D2CF066E540943EA119546161130C8C6506DFD75A974AE6E381A1573B93C388E66F5818A0A1FB960007B7B8191B97284D878E5F265E8337F4B070EB6D37FFFEFAE915C227A031C759239EE4F61C0B99DE8152B5688CDCDCD7628E283112178BB01F33760ACF287AA5B414A569C1D1AF6C7E2135C2E9F9F8200B0EE72BAC09B6090CB4155A016575CDE02235AE80F6FB61903BD3D5BB082DBFDF4D34F276763FF333760F69C9B376F6638918BC5A20784308077D4E27A21C608ECAC20D9715551D317E50AAA1F154C614D6F5A8FEBD75E630E0E8D587A35D454BF9C9E18FB514343C32098A736EFCBFE549F74594450ABB9AEAE2E40270756EDF02157AA108D08C66A3CAEC4BB3DB876283657555ED7EA6050C8E37426782DBF87B73BAB39B5F0783A9DEEDEB97367FE628B7BEE73FA266DE509925E413374005EAC82F9604410C660FDC4796188BBBC8B3786F32CC628AA584F63636382F1FE8B4EFC397E54A7F257166210733A9D12FAA20DC969C7B98C47320CE3C0785917646D5C8DC562D93D7BF668979CF3F334603E63D8AE1D6066F53228CCA19A993B76EC98F6F8472AF77F85959895F5D1768B0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (44,1,'IP_PBX_(64)',0x89504E470D0A1A0A0000000D49484452000000400000003B0806000000CB8C8CDC0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001A014944415468DECD5B09705DE5753E7779FB223DAD4FB264D996BCEF98CD2C610D365B9B1070429B342421D0A18466867426A49DB2CC3493A614C23443636842D23681E0C685409612C6369B6D8C171959F2266BB3F4B43C2D4F6F7F77ED77FEF79E2C6BC386927267FEB9CBBBBAF73FDF39E73BCB7FA5DAB64DC54D9224997718C5BD441F6DB30BC3E23D368B3E619B5A10BC28AC03C359D83B3E021093053730341E780D1F5BF664D43F0900140465817D18A518C1C2F16410CE1780A2F0698C718C58E1388761FE31847BF89FB7DEF9E883F73E3F270005B35758E0D2CA9A9565E19AAF2B921C5455C5ED50150736C9A1623854C23139D5FC5EE5BD5315E7AAEA24957F5765521555FC86730BF7191E97271B08FA13CDCD875EF8E98F7FBC9781C13BFF2856E0F7BB9FC4EEF90FB280A2E90754A76379A8ACF28B4E08E2723AC8ED7491CBE5243786D385633E773AC9E5764C1C3BF19B8B81C1B1000883C15255064901280E2A2D2FA7C181FE76BCA30D238BA1FF31405065E59C5C402AEC7DB665967921DCC56B57013D1FB49BD7ACD0B6436815D720A09A17902D808F1D798D0B61D5E2398457B0E7870F8FC528994EB36B0530C60A6EF5B113A22CCBE70C0043E5C4EDDEC6F975B464F94AA14D4741A8A2F917CF8B5A9EF99EB3AFF1BD475A0E93A91B1EBCC35578D739714A819CC5E11D77DC218EB76DDB562458FA200B3A1F000408F80355913EAC55CE2E93A96BF8D55627BDAFF807F65C824368B9A3A3430E04020AEFF9DAD5575F6D25120973D1A245CC257601077B6600A47302A03819599214994DBBB83DF5FC513AD5350C63D549B273183A8E796F906469E21A5906EC197B1BE7E2BEFC7E5E4D05EDD8F1BA788EC3E12429AF8D3943EA64C1DBDADA94E3C78F3B7C3E9F6B7C7CDC5D5F5FEF2D292971E07A0C7C93C36FB9952B57EA2B56AC306703423A470B98085DB22ADBA9AC465A2E274CF9AFEF5C7E6E2EC0FB19EE13DA370CD27483D1A5D9343E497879C3860DAC7547301874E352E01BDFFCE6358D8D8D9F0DF883D7EA86AE0E0E0EBDD97EF2E44BDB7EF9FC6B00661C80649B9A9AF4BABA3A06C29A0C84721E1650604D5930D38EDFFD06A42615C88FC90EAC5F1050E510A8F07566784400579EF8F2A4A788DF14B02F9C89E4428AB1F6A24B3FC8CF2508AE40B36A3299747FEF7BDFBB70C992255FF00782B7C25E2A73398D721A2CCB9028140ADDB066EDBA1B9A162F8E4547867F77BABBEBC5177EFEF377745D6720B4C9403CFB8BEDE707009386D7EDA68D37DD4C30BD59357B3E24A840BE23870FCF2A3C9BFBA14387D4A79E7AAA0942FF39CCFC76A4268B59604DCBD1582C4ECD6D276870780C737253B83C443E8F0BE6AD94969684EEF42CF3DDF9E0B7FFB627161B7BA9ABABE7176FED78ED287882334F432ABC632EB23C1B0089243F1EEE74BAE8A39701F98D43A11356624D9F83780134AE3EF60FFFF8D4A51B37DE0D1616815B83F0DD7DFD74B2A3872243C3005321B693783C49C9780A7E645369D04FA5010F599645B2A2CCF7FB830F2C5EB2E481DA79F30E2793F1177B3B4EFF12724B004399EA1AB302904F0ACF84E7639D314A654C5214891CF8495144A880994BC2BFA060ECF3D7F81E15D754BE07C741BF97366FDE2C9EA343209EE8D48DCD7E6868C8FD5E73F32D6DC74FF4DFBCE97A53757B1BFA0686686C3C4136FEA6ACC44FB17802CF55584194CE64059F44A2C3D4DDABC3629D140A0658BA22186B5D6EDFDAFAA6458F0D444E9B6B2EBAECAECAC6C6EDD153A7E200C29C0AC2341770383D13E73D03698A8EA6F0420BC11B0F97ADC2B18D3D80E173CA5F9341C48A943F57F05B7959C904004EB895694E03400287718873C25D1080D59A1D6FBD43472BDBF5CEEBDF506F3F7D9F141AA8A10C48D9EFF5523C91242E269DE0A3642A4DBA6E88872433391A198F0B2594C245446CC57D966D29B9ACA6385CAE67ABCBC2DF5D346FC1A3F869EB5410CE0640516CC3D0A9A7FD38B93D1E5A1106D1D5B9407CB2203F07B4C084E774E4D35CAE01980CF32498CF0015D61454C5D6DC72683FF1ABC66209003073FD03E293E126769E439CE4737A1C4D7B36D34BF5BFB02F6CACA31BC7964AED5D2B04D9B2F6B3D95CDEE2709EE58805EB628BE0615AB6508465E5075E6D1BBAD656120C8431A74FE572B99F8073ECC969F874120C0411EAB362C22C0C3F865D0305D2A4A8E02C64794EA111A700C30100E10F3626020D988645866D928EE7B8FD7EA40BD300B05D2E978D77EA3DA7DAEF6E5ABAF4B180CF77E1BAF42AEAF20FA076A8932E5443E4AE78DBBE7443B374E4D82594CD35C0E45D02084DD305D05CA704BC2ED42D0E112934440C960DA418075886CFEF5FC9B25826A900CB198D46F5395D0033A7054D4BE68CEFE79B0AEF7B770FE9F6740BE02406313F7BACF570F389A32D5FBFF8B22B3EB762D5EA7B575163A58984CBD053D43F1C96949883FE30EF5D5BAF3B2C5D7068539E8700BADFEB86FFFB8415E48A828FC7AC8E531D9A073194E76218851CC4B615DC27238B94662741B02643F541A9EDF9A6C23C61B3E0B3932D80F37A102142B81E676BD8FDE6AEE7DF7FBFF9EDCD9B6EBA7BE38A0D7FE2F19253378F906626498BBAA5EAA13ADB842505FC5EA9B1B2063CA00BC1D9DC33D92CBDFBEEBBA66658B2D3E576EB109C530CB612D3D09B63D1E856B89B05CE999B04A54972BCB627F29148F03BDF79483CC782099AD6740B603FE42E1142950DFFB4E0625A2E95CABCF4AB17BFDF7068D16F6FB9E54FEF6B6CBCEA423748F42198BAB25495507ADBAD2D47E051A62C7C1DEEB667EF1EBBB3A7CF46C9AE308FC8AC75088EEA76646468E0D9BECE932FE03D030040ABACAC9C1D00F8BCED70B927CEE787BD545EE2FAD061B0B8E998A8AECF4C8205104C2627A4B566696929A2A696E9387932F9C3A79EE8BCEEBA4F5FB3E9E69BEE0EF8C3B5B012F8BC4BBAF2CA2BA5542A696F7FF915EB85EDBF96987CE06A80D2107C05D1B54C22F66AB4AFF739D3D4BAA1D868369B4D969595E9B03A6BD628C09BC7EDA5536DEFE71B1C90B892094EA4BF855457E608200BC213292F5B0D04C6159AA85E11F132897142C24E6CB209CD9A350A4C0241242B5CED613330E11CE6907AFDF5D7E26FBCB173FF57BFFAB5CF5F7BFD759F551D3E2F734B7575B504F337D259CDC5442C046757D312FB6389D16732C9E411CC6D08CF1CC7F3D2105EDBB56BD707E7010AC82B180AE501500B4D0E47BEB353CCF58BE12E3F64F1776C723C0159CABB9154D8733448F7F4CE09401104DE152A3B0BDCC020E878471623F9A31FFDEBD6DFFEF6373BBFF1C0035FB96CE3651B3107445A250B927349FC6EDB3E6DA6C67F6AE6526FE1EFFB3146E152C9919191DCFAF5EB8DA99A9FD50232A90455D6D4FF9F36449C6FBF452F4D2741A990A74F054258D28103070CB88585B06580B973786EBABBBB3BFE37DFFA56DFB5D75E7BD1FDF7DFFF6558A6DB340DC9A119DB0D3DF36B28A28FCD1D8F89E339198FC7A3B5B7B75B18B3F60CCE02C0966CB891F621B3FED9A38005DFC444276E5CBC78B1B46EDD3A251C0EAB4F3EF9A41C8FC7C51FA304B6A135EB9E7BEEB16A6B6BCD471E79C406083A88CB42CA6C721F20856DE7CE9D633B76ECD877D1251B2FF05AFA3110EF10FC6714C08D01A8542C16CB71889D4DEBB3BB004967B591FEEDA593D47D7A8CF32992B9D121612F9A1EF956BF4C86687EC8DC28215D9CCBA25162504DB89CB66D7B310F2C9E6B00000827A1DA53962E5DEA5DB870A1CB8B0DC590079356E02252269331E1AF39089F40359A00101A8E25DCE3A8A9A9917B7A7A7490640C1820EA65870FEEDFD7E972A9563A9DCB40F81448922D456F6D6DB530EC7369BA4E298624DB8190532C5CBEB069217CBA71A2C9E928647C22F3635EE0FE8052DCAB136931EF5D0EE78449F746FA452D8070A6AE5AB52AB06CD9B2F2F90B17AE0E876B363B5D9E8D5053197C59E6D86D68DA783C993C958A277FB660C1825711115CEE60E852179EB3C2EF3F063EC88D8D8DE9A823B200C2C4330D284DEBEDEDE510A7AF5CB9D206D9D9E7DA719EC6013EAF9F4EB61E422CA77C5E2F31E323EC494A9EE531A4A2C5E31D79EAB2C9E4A4D9E4B86C8AC444A4C3087D1A921509CFC42DCAFCF9F383307FEF159FBAEACBA1B28ACFC12A142E6A587051C9C1FA0CD32A892752F32DB2AF71F982FFA499F1DDBAE2FB2500546D8F07558E957055F87A2ACA6A9AC386F1BACF69EFE710876767D845D8346139E6A38F3E6A3EFCF0C34CAA74CEFD00D67B3693A1F98B9691D7E7C9174082CC944234289060B10DEEC8FFA62AF956793E75560BADF4FC6F5C03FCF867FFCE16E282E61BEEFCE25FDC07CB5FA64F274591D20E46A322B9C9739274A5E40D7DDE65939AC2B5A465CA65B65402B05603E4D596C3FE52DC346DD3E14E82BBBA286DBD167099FFD1D0D03004E5A5C12FDAD6AD5B8D2D5BB6582FBEF8A208B3735B003497CDA4A9A4AC222FFC478C0279B75169F5F265B47BCFDEC0BDF7FDD5378225C1C5C60CC28F8EC56870688826A7A296A4D6B8DCCEF9ACC097B3E3D462E7A80416D98067D6C322E7593285C821D9961DB06D8F0045B3CC0723A94C5CD7922D92696EAFF0A6B6C12DC66111695884391504754A0892503E4E9C47A219141329684F2E94BF92586D51C51258E11A67895C268B73597002DFE70197AC5DBB06B97A8E3200F52B77DDB5A1BA3A5CAD1BFA34E161C28227389748A5D3140C04A07D54A6DE60035C814E6A193A626A1055122ED53E3A403DE11AB1C0E0852FCEC33CC238ABC628B31D9C2D06612597835B2ECF68FAE3C3C9F8402A97D9021076B35BCCE102C8E31D67DAE2EF1C1EA4C8401CAF40DE8F2131EB63705D20AE498573F8BD2463D867EEABAA08D1E38F7F9F7210AEBAA6962A59F81934CF001D6F3FC5551CBDB3F700352D6AA0B5AB565045756D217A58F4726C5008CFEB4C72224E32AE99070F92A3761EAFB151B796A3E1F90BE828F717705E092EA982421A25272FF149AA43AEC9F68CAE01C3EDA5292B5253AA41589329D150E43479BC3EBA768D9BD4F5FE82F6D5423A5C58FA129ACE67836A213354278E65418EBC22A4221AD4CEABA79934CF95DCD113ED343A1A23176A90CFDCBC893C1E3755876BB93B8362C6A6613D47CB31176736436308A57622492ACA44A9B48468384A6636472AB256DB3940D99161722F594609581FF88356F3753C6374A89F798B0597A73649A75980C3EBA52CF2789D5773A47C7E2F15989FF54E85BF35395472EBA9C0F8CCE216A200F7F10C5317B7D5D5CDA3DB6FBB4D6871EAC6A56CEBF113944E67A8A2BC8C4A4B8218255456564A999C4E590CD5A5522DF2FCAF01007EFE189B3FCAE06E2D4B3D20EBD1BED3A206E1EA4F0250AACF4F3EBF5FB8C642878B3C18DC8CCDC105C1D34E64862E90A159B082E91D219629938C53FD828513ABBDE74382C5D618CC8852C914ACC89B7FCB14005801474FB68B46457555059514846710D6AC5C8E7ADF2FEAFB91D1318A440669786C8CC6A1F900F0DF585E4197DA242245ACB69E7A705F0480F4E7B294839539785D82018095B8312F5E98619E6A39DAF1D4FEE6A30FDF72D5A54BDF7AEBAD447979B90E3EB0D4B33C00D998656874E64B99F3DB5830EEC07024E19E2283C1317EEA76B2A3538057120C4C689E896F5E4D58089FAF4ADDC4D1A2B1B1812E0EAD2B448A3184C9611A188C8A156707F8636D304817C821A1E918875158C228F6F5BE8030FFCE482F883543090078C1FA35659D036343B8777824327A0F1EF9F2594B633033DB3893B3D3DE962890CFE59322D92AD4FE08CA12578E76FE9C1B217C4DCE5FE386C8C517ADA70B376C10663E758BF40F523295A47A105851EB81809FDA8EB723EDEEA57055A50082398575508ECA94B721E407D01A95E17C695313AC6354FC6D734B2BB47B9CC6E329AAC1DF559684847588A628F6D1E81075A21AADACA8202F949249672487AC56DA12DD845AE11575525CCC7FC4242974FE5B3E23E43FAFABABA14B2EB958F401A66EE3F1389D38758AD6AD5841951034AFFD20B51D3B09ED8E0A8D0F0C0ED17B079B8505D684AB841BF0C49B162D148D17DEC662317045489C7BBD1EFAE21DB78968B27BDF7E6A693B4E6E70C17CF00F73D7C8C82842A746576CBC8485271B9655162AA5FEC8E9FF696B6B93D44949A0813FD0E209C4DC43FBC5D71F7EA838E091C58B24910ECBC23D44DB5B2AD6FF92D0145FE7D6D5ADB7DC74A63132C53D0EB7B6D192A6466A6A5A3461FA478F9FA49EBEBEE924097F3ED5D945C71025F8D8073E59D8309F1A172EA0DA70B5981303CACF109D698C0BD6AEA6654B9A0447BDB3F73D3A05CDF7F4F6D1BAD5AB44F66ABB5DE4F379614DC3CD4DF5F3DE6C6A6AB28B16C0769F452E9E9421389F7007CB36D8944CC1C0DCD3E382861B1BECE70634AC17CA5C5D43BE0F50BEFBF70F4123DE19435E47578FF0C92B601D2C3CE7FD91FE0184C193678AE929B82D86B0FD43511A1A1E1121731F2C63F7BBEF8979D4D654C3151A69F9D2252222F19CFA613D4CA2BCDD7AD30D74F7FD0F5249202840E3DFB9838584C80CB99D7F393A3A9AE67E4311009E7102B17898FBEDB630695B4C382F7C3ECC19DCDC84E0CC13FC404E6C0C01824937DF701D2D5EB4684607E14CEF18045DBF66B5303FDE62E3713A04FF9DAD93C056D4DCD22652631FCCDCC865C4422B629920CF535DDD74A2BD83B6BFFA3B91972C85E639E5AEAA28A77075153DFBD3FF447619A14DD75F2B5C889594A11C0D7577FD6C41B8BC3B1219E6CFF668B20524BB7ABBDFD52DEBCBB96C86CB539F6D5A4EC478251F222D2AEEF950EC396F9065052416A828BBFDB6E7B7BF5C33BFAE165A58212655DC5ADA8E0A6B59DCB8B000488E0EBCDF3265BDF06C184241BF28CC38A1A942A86C87B0CCF40A46774F4F9EB80A7F92C67DFB0E1CA2DD307BB63E264E4EADD93AC2D5952214B292FA2291D1C679558FA3944E70918431E102CC589991FEFE3E8C9848B1F3DFF3A84434EB67160865722814F27CEE4B5FBA0693ACD1601DAD60E4577EFF072A0D961083510F32EA02BBF3A4EAE7D50A2B3A0CCDF3826961F97ABAF6E11ED19131B1BC2623BC1C3C70900225A5E2EFA11C1A4F2609F17A1274D259F00DC06DD8D7375EB401BCE4A22CDE350E77D332898794F2E0B0DFEFCF15CA64520B1D59A2331F35724D1D2F083E674280CC4A417D5F5A5555AD777423DEA6D2E44119FDD95B6E14E6F9AB5FBF4A575C7629AD84266EBDF10621EC31647F49143CD22C8FADAAACA0DEDE5E9172D72274B11997575609CD76F79C16DA9695B9231513F335575E269EC5C5531491A0B3AB7B7F5D796867341A4D3EF1C41366B128528BF1AF00825518269DC327B2DCDEAAA9A971B7B5B5B45E7EE5557B5D2EE7FAEEEED3AE8E8E2E31D15B6FFC3458BF896EB8E62A417A5DDDA745D93BD7C661D0B4F3EB0E879A0F91D3EDA51078A3AC24400CB269DB67E5173391E7C2050DB46ED52A41CC9C51B677741A254EC74348CC46B87334B924562785297BD20FE7F40DDF962D5B14B84012FED5B7E3F5D77E884B0BEA172C58DD30AFF6535DBD7DE13777EF937EFFFA2EFA97AD3FA1BBFE6C0B983B9C37D71960E57586C6BA06242DA705E9F2E73A55E11A41B41998FDC1AE2E51A09D21499AD18A3C6E0F6DBEFE1A915E33F99EECECA4A18181E76ACA02A74646465285C6C8EC2DB1F3D9B8EBFAC8238F64BABBBB7B812E78CE88F67476F6621C8045552D5BD878D56822B912C98977C79B6F8B28C07E5D8952995779CECC5F1284C851417CA18ABAA2BFBF9FDC10980B254E7272288E58F3A6359B6EF245DB65975C44CB972C16D1E908F8E8547B475F38E47F16E763030303C69C0D910F91FB8B107AEFBDF7C600400696308C49F4E05A258EC3A73BDB7B2058E58A86DAC6450DF59B3089F29C96A6E111C475D4F025C8E3D94FB980112E857A807D3D07AD33E971E4181E1EA6E1D111E417FEB3486FA62D8CCC71F3A7AF46D873533B2CE6E8F11396994D7C5B2929E90F0402E91FFCE007D3D0FB4800147178E699670C588219894472D05C1C6E1165B70018E500209C4C8CF737EFDBD3B572F5BA8DA1CACAF5394D2B65D3EE0333772241E2BC82A3452572FDB36C3C1F1260CEA5C2158A65795539EA03DBA49EC8D0841571E6FA999B36511DDC666C7C9CF6ED6FA6E8E0E036AFCBD59C4C266348D08C735A19FA089660177A0DDC84CC85C3E1244C6E0421672093C9F05255B4B5A57918BFEFF5F87C558B162FDDE8727A1B07D219571659DE91B663E20307B7D34D30170A0603B3E608A3B1718C31F1854A31695AB37A255D7DE5E5A25FB1F3EDDD003732A898D9A76DC539C8DF123EFDF4D336989F3E1600A60041DC74E0C54EA49A064010293622C628AC21825BC2A944227CE4D081D3384608AD595455567EF1486CBC2A954ECB23A9518AEC19107ECF0FABABAD4185584501DF99D5666EB07850EFE75B6CFCED6009DD76CB66917CED79EF0075747659F1D1A1BFC30DBD784E62E7CE9DD39AA11F0B003380310184D3E9CC689A365600A18C499279627030324083115EF008D655CFBB206B98CBBBFB22012631B68896D6A322712A468A1097D0A525488F7D28805461314B173789AA9043E81BEFECA1E1A1A15724C338805C62841751688E2F543F3600A602C1A115AEA1C31FD3C81D4600463F8464C2AC0028D5CC15837DDD43EC2255016F45556970DDE0E858C35074C49BD3AC7C9202CD7379CCA3B85D7CE17A7A1F35C37FFDF72BD48454BBA2AC74343132F843585D3FAF0D70A49A6B7E1F3B0093B128BA060853076166F95B5F70C4102CA117829763C2550C443A91A8C0DCBB4A54DB1F0C87BCF0E385A8E51A93E94C452C1EF7663239D92E28D5E6E54F53EF0BFAFDD5D1E11115ACFF18CC9EA3CFF873CF3D27F2FD4F0A00B312262F863261E27A04D74B713D045038249461842453EB43CE7EA8CC2DBBCBDC25CC7C2EDDA6724B522A92F198AE59DA7EAF2C672DC3EAC925B58300320A00B462BEFF89026036C22C5845BAABAB2B06C2EC07005EDC12802041987308F7F0925810D7BC3876AB92E4B02D5D570C2B6658561AD772B82F827B7AF1B7A973591AFF7F05E003AC225B5151910081B1553853A914EA2E8F1782B9A15D370475F331B7F030C6F99B00F08901D3E725F238409D93F83E7100CC66151CF16019B95DBB76A5F09302BE10FFE1869458E57F67E37B79451884AAA7D369FE88C2DABF7FBF71AEC27FE20098090C3EE42F450A9144F8F4A38F3E2AB5B6B68AC88072DC2E2E8317EF3F9FF7FC2F9799D8BFFECAFB820000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (45,1,'IP_PBX_(96)',0x89504E470D0A1A0A0000000D4948445200000060000000590806000000C1ED215D0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00002E684944415478DAED7D77781CE779E73B657B436F0440825D043B298A14498992A5D0B22C4BB629C58E4FD1D9899DF81ED9891D3BE7387E2C3977973B3BF9E3EEC993BBC48ECF56747191EC9314D996AC4A35B3486207488000088020D11765FBEE94FBBDDFCC2C76D10816C98A9E5B3E1F676776303BF3D6DF5BBE6F25D33469FA4BC28B37CEEE1CDB6BFD3267D99AE66C37F83E7A4985CF5740781E72C1283CFE4E30C12C20BC610FDED7DFEF8C100C9885F00A868AE1B2B7CA1C8CB89692EF105D9B36747B18EF4726A885CCB009CD447763F830BCF670DBE73A1A712DB460BAC971089DC5C860A4ECC1FB396606E4E43DCB845BBEF52DD5DD19F7FCFA9FFF2671590C28907ED92632133E8011C688600431FCD39870ADCC502113349BD8698C38C604C62446ACF0DCF72A13FE64DBAE6F3E977BF31378BBF24A34C0917E0F13BFBA7EE9CE92AA9A2FA98AE2515459551555555DAAEC5224ECB8485154C9ED52B155C8857D97AA90E2C25671B632E12FECA110FE9E146C5DF656C5E7B82429B2C2FBA62ACB7C2D13C70C7C8FE67179722E972BD7D971F6E7DFF8FAD77E52E00F8CF7AA299115C55065C5B812135428FD6C6E42B24B5DE20BF8B7BA999818CEB6F8BD5A749CF7C55655EDF398F8F671FB98C31466186F9981CE5661A6802132B6B284214B3430D87FD2D6C4AC3DF4025FF11E64824457CB008F3039A611646915928A4F400B52EC214B264E360B3CB2014FCEC3B4B71886814B804E62E864EA380B173160ED4C8929680A4A624F50D3FA1B5C55D649D1659258BB540F69B91C9BC3906D92920540E0BD8968E8CA18506882D8CEFB410ABF0A12EDD9B19D1A1A9708B321A455997D6B9915FB7DC15055E7BD5AF0B99C3F2E8EC985E759C7A2D1513A76F204699AEEB5FD51A1FFB9A60C601F78AD7C8A740577A64EC3FC161364F296448254BF788920DE74624F27F4F463EABC0C508A19A0CC64406DDD223ADBDE469964DC6B6BA56B1A0CBE2A824F437ECEB13C13AE9421B22C5F1318AA4A4C52457967D454BAACF39C1844B95AE217105EBAF7DE7BA5E1E16129168BE5AF170A85CCCACA4AF3F1C71F379D532F971192245D1503F291AF224B922AFD76CDAD84EF97A4BC765E71005848F83D7BF6C820BC1820BE9C4EA70B455644E0CDCDCD061861ECDFBFDF703463A18C90AF920145372DABC5EA343699A56F3F72120E530715E042B19519BAF3BE1856E03AF5B946B2699DC7FBD6E7FC5ECB9FCF5BB23FFBCEB7FF2BDD72EBAD450F230921B832E2CF46F84C26A3949494A8A3A3A31CFFB8FC7EBFAC691AA0B56A60ABE3B886CF359CA781113A3382B582DD8463A2E66386749526A8C8964D37411EB74C37ACAD1488889110DF93EC0C413043980DE7187F2EEC46C179E298D8B2581BE25AE2986C526D6DED8C8729B807F35A103E97CBB921F51E2F5E8140C0FFF9071FBCB9A1BE614F7FFFC091C77FFAE367BBBABAC693C964069039130C0673D012ADAFAF4FC775F48598275B60AE09034C2DA7537C72824A4ACBC431BF57A57DB73515219EB950909A0FB8A69D378BC32D3CE6BCD2A914E980B01EBF5FBB521B0F620A5001C2BB1CC2E3B97C7FFA677FB663ED9AB5F7E0F86D269911483E85C2E17D5FF9DA5F7C736478747F5767FB538F3EF2C8FE4422110723D2914884199163466CD9B2C558BA74A9311723E42B4441331F0680DF1B8CD0F1132DE4F35AF1000755AA1D54A90A07588A08B2C4713E867D378E2BAA7D0EEF73D4CC8CE0F364652A3A760230D9223C07306C72F851C471FC5D5DC362928E9DB81CE2E7090FA957407015C30D61F77CE10B5F5873FDF5D7EF2B2DABF83060707D0E44D7721AF1D6C0978A842449DED2D2920FAEDFB8F983FF69D59AD191D1D15FB59D69F9F92F9E7AEA0898C48C1039A9A3478FCECA88A77EFDF2B5F301EC80992801102E1C0E0A93C14457A7497B910608624AD84A969902313918E320CC947432142B8C1554B603359DA35E8D833D49981CBE7D5DD74805612005976D6E401C05765D1D1F1F777DE94B5FAABFFDF6DBF781701F77B9DD6B59D273203A6F99E04CF889589CA2E313545D512A8E3903CF545E565676FFD66DDBEF6F5EBBA1331A8D3E71FA64CBE32FBEF86C37AE97814669F82EAD9011D70205153B133D47EB6FD8466E977B4E7333B709BABA3880B76FBCFE2A08965D8851954108B6F3EA830F3E18DEB76FDF4741BCFB20F937B10902B184A41712B8ABF7029D6AEB14DF934CA7E96CF779AAAFA9A48A9248D17942235DAE65A565655FD9B673C7979B376F383C3E3AFEB32387DF78A2B5B5358A6BE7A06DAC113ACEB7D4D0E6C24291933A474E43F2B85C5714585CAB176B859ED3E44B991D26FE3DF7DDB7F48B7FFCC7DF0496BF1B8703CE39EC47980C3C58FA0F1C3949FD83C3E4F57828994A0B13E8F5B8280B069DBF3844274E77D2AA650D2269E8C3F1626698B24B756D2F292BDD7ED36D1FFCCF9B6FBCE9F9F8C4F84F5E7CF697CFC3D4A5B2D9ACC2760C6650BE9C5862760D20CB2CBC1371C042B594EF9BCDD17CC467B3C392DFDBD3BFF5AFBEF3DF777FFC23779CDBB1EDFAB585D7181D9BA0570F1FA14C362B046A1C66A71C921F0A06B8C443BA69503299C6BE8FFC3E0FF5F40D503293A5AAD230909F8B4A428122463020C3D6EB76B9EE0A9794DE75E7C77E77349D4E3E313A32E232749D033C176B44A18F988F0973A0204564240B5F99AC4E47DB4648962D8CCE5B919CE37D308BDF4BE298649F4376224F12CC949DCF67F97B3EB66BD72E6A6C6C2C6000D17CC2F3F0C30F131E90713CBC36B9202B0DFFFACCF30D2FBEF246E727F7DD5392D5CDF2A3A7DA44E63501694F249254555E4A6591B070F4E96C8618E9F94074BFCF0BB764501A84175959DCDF70744268860F4C08057C1401831CDF51CC10F05375FDE1C0603F199A9EDBB8FDA66F4C8C8DFDE8B5179FE964F86A07747332419D4B4A65B5D809C6931A7DFFC9762BA0B28764E6ACADC1FBF6FBFCE739FBB873ACF873C9C8155DE79FBEF78FD31800273D8FF2B6B4B448C0E632075538D1A5DABE04845CF6A39F3D698C9AE9F4997DCF7872DEB474CFD9CF5264A84A68001355823478DC6E7C4996137E423B3C2ECB4FE16648D30D91A9650D61A6300387A3E314F47B85C9522D824E31C13673001640AEEA5F46CA4ABFBEF7EE7B0F6AB9DCF70061FFCF5D77DDA5CFC58439E380E91EBDACC443FFF88D9D050E57B6918F938C93A739523B9D5D1407C853893BB9E03A3806A759F47D9AC6819A346781837339303F92CFE7C3EDCA4A61321044904361C9EB3A5D4FE98A3EA3A3FCB8DCBDA89D3EDCF300B9639064363D862E88EF76BBC43D88929CAEE3BE64616644240E46B1066512295270DED0E80460B95B149CC201EF741F911F1002035A2585ABABFEF284DBFD93A79F7E5AB8A4D99830070324F205C2D47BAE03EAE91337332F0A2A4240724106559E9939B589CED228D9E9067E6691F611E6CA92521920405216586192677E4F5857299829236940954F053BCDF4920169A4FC0DDA1930A8E3DC6E32658FEDE2D8D718C45539A68D535461C6A43219A119160C97854F08FA3D14F0B867202B6700B975783D5EBFC7E3D90E3E0CC339BB39D107E79C87AB97660088E2F3F9459A40677B8D0792B8A2E5B62B5E5CE9724F55C1DCA2E2E59E591573DB553111C429E2B890305B855902735A4E6C3930CA023266B239E12CDCBEA020CC5C2F4E0D400B4C607EBDEDC4A917823B027F5F565EF60720BE579823B8851DF12DB43FFC3AF9E31592FB5409DD50DE66AE5B7B4672B9E3341A5D4D67BB1A48725B68C7417C7C8FA699122650B624833C7625B0AEB2D4BADF5C01F1C9F20BA9547232194FC67DC1C0727E3E5D17518F0426B81147683045F9169B05C501B96C5AD8BB903F9C8F58F9C13849C7EF85C4EA9C4234280B3B6E18A60872B2995C01DE77CA8C53E648961D73250B66C8B62972FB205D818038164F24A8A7B76F5E06B03471E6922D472A351E7BE5F95FFD5D6363D38B1BB65EFF67BEF2F29D7C4D9FACD29ECC2EDAEF799D0C58B3B158B5F4F2812A209B2173EF9E9F4995E5B7D3E1F67D8222ACD94C387E06BE677E1E2EAB7278B8BCB15610D4927A9A323518F01FFAF99EDE98D7E70F4340C306EE5947E0699B7090525639E9074191662B00CD15070083A7A9BAA9C9CAEBFC1602B1BEBEF3944925943920AAF0519CADECEEEED6E03FD290B4587777E7999E9EAEAF6DB9FE869BD76DDCF479AFD7B3A8428ED03DC69DF4B2F22AFE6E4448EC58AC42FAE50BF7D023DEACF9F6BE3F94761DFE386D3DF94161EF99E91E085E0E9AC88467AA710C614C0BD01835B5B79DCD66B49CE2F1784B38E690748BF01297609909C297698CD4E604DFB3063A92012324BD33B58085C701064BDCBC6733C45BB26489E676BBB3204C12630204187EFBCD432FFCF89F7FF0471D67DB1FC5B154D0E5A18F793E445EF566487719AE0D0D373C949A7449EB5FBC9B9A5B77190C49D9C667B16DACADA2E6E58B853018B3D8F9EEEE73C6818387F46426E366030DFC2F823E669E1870F0D0182D118FFF5F4E75635C6E1CE0A4567F7B051961D22C3B4AF369013301810FE7F1CD542A652412091D2A9FC5FBF4B34F3FF5BF8F1C3AF0D29D1FF9E8679A962EDDA5BA564A41B5993463188E7E90D6660728A52322CE8581BA0D93B1FEAA25F5524EE48D7245769EB723C323E6C137DF32897B75144B5B249674DDCA03E942FA75CA66336F0F5F38FFDFFA7ABA8EB202215216B585D922E3397C803423B33799C8D10FFEF5B4C8E34B76FBA62C0A2C867DCC7A2F8664EDCBA6F5BEF86FECCF9C73EDFD2F7FF94F69DBB66D530CC0C3999A7EA9685930E1EDB7DFE69CBD8998C004FA3060C2F8A173B0BF99A1A1A1E4F7BFFBBFFE7ADBF6ED5B6EDF7BC71F54555635F9BCF500094DF4800D165CAB05B090345D334F1C3F6148AA4B7622691EA9648A9E7FF125633C969015972AA9EC016D625B484E129D207A2633383832F4BDFE9ECE5FE3EF46713C09E9CFE2BE38323667AB6BA8735926768E34AD600C783D551F949C5A61E13FC32ACC08A2CA79224F1D73DE2BA2154596A698323DEF648840CC5C80A99AD204403DB3B5B555347181B07A8EB379B29CE671E8C081E4E183075BEFFBC4EF7D1851F7BDF00FA1E2F845462C12906EBE79B7141D8D9A478E1D17D1C0FE575E355ACE9C9514974B667F28394E5697040D2403FFE5CC746C22FAE450EFB99F02760EE17A51DCD624FC440AE631575F5FAFCF0641E7334126384D3A20976A174A4201177DE1136BDE95820C4BDDF8440C8FAFE80BCC1B0926D80F69421B0C405403A64843A0A6411BB220461AC4483DFED31FFFF4A5179E7BE3337FF8D9DFDBB061C31E45F41F147776D42DAA93162F6EA4CF3DF8A7DAD1D6369553179477B096B96154A50314E5D2A9DF4C8CF43F02953B07BB3F06664F60701F13131FFCC86A070E1C30E6AA2DCF1907945556531A7030191BB7A5DFEE60730A2A85D16DE17B688E245B9D6DB264075B42F72411E64F85EE858ECD10CE4E981D9C97CA66C950DC6481BE0527EFF23979471BBABABA848A81101A0801D3AE65709F299884E4DF7EE7DB7F77FDF5D7BFF4A97FF7C0034D4B97AC74D05EE18049823F3554416C6176F4BCE93175AD2B161B7B24159B380A8247717C1C23664B7D9A5B2B1904CD47FC794C9095905301C7B8EECEAA26A0646135AB508A597A38B2B589CE4C102D0D7642D52A695B5D700E84E374803033BAC500C6D94EF633AB8121B88EA15F7E2BE82CDA60F6F5F5B13670CE5E03B1B2F8AE0CB6A9B7DE7A2BF1E69B6F767DEA539FBAE5A31FFBD8BDE565E5A58E7059690329030E781C73A3F3D6D4C67389D8CFF5D4E47360E828AE3386E799C4F9095C37059A6481F9B5356BD63866C7BC826CA8449363231408472810299F41EC773A0ED060FABEFF831F004D64AF08864DD306DDD1865028C47E814D524E2478B359364BC9471F7DF4E9279F7CF2ADAF7EF5AB1FBF152F10D565FF7DA600E9E4243DFB62269BFC3938D1CF761EA7B0B911528F58848BF95C3FD6417C4E3B18575C0F80444A5A2E4B1EAFAFB885EC5D7A21B0A1F2D232D23229E5122D85F4AD6F7D6BD6CF1F7AE8A1428D301C6D80741A2096CE389D6DB4A30D205CF2E1871FFEA7279E78E2E5AF7CE52B9F5CBD7AF506495652C2446AB9A3722EF963E86E17E8300A783C8EEBC56009126068BA50EAC17013A8CCBCAA8AD81458FAED15640C43A3EC4C13243536364A20BA0462C9BC2D2B2B93CE9D3B273534344C41E6C949F38B5FFC227DEE739F33EEBBEF3EB30029096D3873E60C85C3611310D50806839CA5E40921699C963876ECD8E4FDF7DFDFF1C0030F6CF279D4AD1E23FB038F629E00292641D2491BDDC4D9A123E6C8E025500E886EB4B4B4980B91FA4B9BA0590264BE6432ADC1DC98A4CA0671A2520148C937DC2A4E878393A6B69B7065273B2A4FCB90CA536969C05B98872224C48158611C800796A0E240278BF9E6DC08B414201C251A8DAAE5E5E572329994AD34B626EC6E4D4D0DDB7B6DC58A151A18C584E7AE373A74E89009E9362A2A2AA8A3A383E1AFC1D2CB7011C4E4C9213CC3C5FFC31FFE70109F3DE702C0D734838F73A49D842FE12E6D76E6A25D7ED3A64D0BB2F597A701B3BCA21319FADADFBDFD8E16643E74E79DF9EF134ED9B49C321E96892F373535A9CB972F17FD3E207E7EFA14CE7571CD56B25E3C83864D4C16B69ECD43925109882F0876C30D3748907C5720109057AD5A25AA9B2323233A8E39F30F38AD11E74A1B2B0EA711B8F8CE3D426072361E8F67B1D558EA21F15724F59766803233100B220EF8A37DABADF262BED4689723ED12A4559A94A6CA947629D2D9E6CF9D769C057FC3C68D45DFC7CE2FA78B34B104022A8B162D72439AA54824E202D178CA5408E6A3A6A6AE7E177C55B36E182EC3D0659807E6007C983606813E1A8B4DBC9198983843D6542726A4525B5BCB4EC08DA899136526CC918EEBEB70CAE6C0C080067AEB5CECB1B5C960330373C34467AD62476E3CF7DC73065D83D99B736980E90BF869727498422565C0E4163AD9BC32C26990390A318531813AF3983C95A2968B2A628AB826EF271177F0FED0E0007574F702D62A3A131F26C60D02852B2B2B15486E685573F38722E192BDAACB7D1D08AEB0B66802C64E0D4E81237ABD2B99C999BE52F7392D97FA935C3C7E94B54593A48AB412FC07496580A91F03E55FF078E82CAE9D8566E538780293397660FFA08F8D8D01187808668DDADBDB45F56EC78E1DD2DEBD7B4DA747E0DA6A002E150C95028767C510D35A4CCE91CBA41B808976354BB6F32085BEBA285F0EBC2F86CE5BDDCA12629FCB8D9C41E4DC3BD75F75CD6A98D20CEE58B35A495835F8EF20E5AEAAAAAA10A4D65F575757B963D7EE2FF8FC816D16A1E78F1346A2514AA5D37C774B65C5F3A4ECC9EDA65C8E3435F81080DE162BD3296D3315E573A478393819278FAF57761B4755597BD1AF538B24E5D27633169BA62C408098BFB66CD932D159FCDDEF7ED778ECB1C74C46638CBC2E971992CD049E81C273B1AA3096DCF63B77DC7DE7873FFC99646252B4095A5D0C72513951145A64BBA8621F7386E87493E47C7026B1F44B76F79B5D7674127E923D1F4CB26BB00AF68747A3F4F21B87E85C57E7CB1DA74F3D06D393D8BBF78E159BB76DFB0FF8DBF2296937F2123F5D03FA078728914C16830B43FB7A5A33BC86EAFFA6512428B3D776212C40E4DA0424A1D734F4636E457A3AA41ADC2FC94E39CB4C81D6088DB1DBDB9DAA97B15066CC61820C8A4D8C51455DFDBB5E90516C269EEBEEA6CECE7637CC4FC9F61B6F5CB563D7AECFE3593CBA7EE9F4D0E0F0C80CE25BEA2995ABFEC8E71D2DD5307E9D4B5215BEBF11C8AFD494EC4A97F539BC30620D5709DE978015EB317E3F0AE78218A9978CEC6B7E97FAA82B9B3D47D6BC661E399827917E86666880CAC6A5A640CDCA0003FAB990077DA7E200FE6E6E1B71CBAA67CB962DCBF67EF043BF07A62C88F8ED1D9DB3F6B2CB926C4A3EFF9D6E45F53B4596DF6493F4A699257C22C040184C6884B636904275785F8EED0CCD80449A1EEF525C83C7032399542A9BCDB4939E7BB6CAAFFC08DA1005724AF5F7F7A711A364C1046D3E26CCE903CC7739FECDABBD6D42B8F85D595911F8FD073EFDBB70C4FE8510BFE5749B3063CEF50ADA03E1C254C9EBF3AF76BE675CD7E8955CCA4273A6D54C9C964CEA00F43D479A88847C78FE45B24AB56044AD60882C9C5C21435C6AD0E7F7073680191B12BAFE1F4712C9F15C2679844CFD5FA2D189C7CACA8415D22F2F15C1FF8CE2BF49A434FAE5EB3D53933344B6DC28785F306983739A5C882998C031B56F4FDA206B9F1BA07882C6273FF9094280249C33609FF0319FFEF4A797FA03018FB600E27775F708E26B20EC850BFDD479AE876EBD7997D5E3836B45CACAA788071BF3CBC4983041AA24E5A7E11A1D5DA40F0D926BEB5692E1ACF54090FA40BB7E51B33045FB5DB5A450354C6495A452B92989E9B953DAA1B2E6B2C9BA150CB9F5626FD7BA322AFB1A07824E6A64813E409A31253D07E472B2239A9F8264CD0FB6A61D59539134FBB89E9F7AE44C5192856F2A98BEC49F19CEF4246BDAD26DB77D8010645116C447B043376CBF914A4A4B1764767A2F5C14367F3216A3370E1C164E5CE4F04134B7EAA6D2CA2AD1EEEE10FF743A4927B3A929E2F313C7E23C3384BC9B3753F6E44982F3A14C4B8BC8EE06D6AF174C94004547F1DC63A6416D785EAE8C95E3F30A8C1A7CCE3EC4B08BF6C9448C645DD4B465EEE2BBACCE380E2519B13084243B3D501272D35F3FB875E14E5855175490B1D095D514C5929F02213510A9BCA2821642FCBE8BFD340AB8191D1BA71818D70C2DD2C1D41C8049D01FA4521052525C537D9DB8F6D3C35181CAC4F44B466B389E3D7A945C8B16510EC497D219924259AB210DBE28D3DA4AC6E4048556AE266E42F7D7D793CCED2BB8FF98C85D18E487A9AA92A73AAA476213884344414946142E5D56454C4C490A96D0E8C0C5BC4390ED228B28B6D890917B6624CBA658C7C8AE01F027F96EB769693D3EC19CE65E6CE230C3D7AFDF408B97342D88F817FAFB69606808921F1797ABA9AAA280DF87E1273F06202249D000472A1D0DF846C3323A9749515B32419DD086F3D934796EB945F80166863E3A42FA204C51382C9ED14CA5C8C4F58C71302E18A6C9B7DEA292952BC9555222FE864D6C83DB436E49CE339A103F01D1718E4981439619112DDC07300EC3C55C5E1FA451170515A9A0ADCBB097CE70AA59CE977281C5EABB74822F1BA7E31A22F0D2ED00AC08B75B7FC37CD9B665132D5BB69C1662F319E7B3F4A75269D1B51688842DA28BE1132D95395C3B93CB92EAF28868DBB4F13EE0255DE75269356C3CEF67717FDDE93475A692D40DC60C725B644DADD0922C98AC43C358A39919FAC438052ACA2900EFEA4C5E0EC1BC5578BCF9169654D28AE8C942935EC431B96834CAC19ACE5DDD85A668D6406CD7CD1FB87BF7CDBB3EC319CA8ACA9A6B5E9071D213AC35CC24C038989F2CA2EF9060DCF4A06AFAFE48748C4EB69E1601145F5710DC21BCBDADA9AAA4E6EB560B068D08133546E3937198A984980FC0A90A4E89CCD6729EC677F4C21FF464D27401DA118543161ACED3A7F0776938EA605575DE8CAD7079A9D9EBCFFFFDB98E76B893047574F7A48787A3ADAA2CBFF2A13DDBBF3931319145542D161C711831BB0F900D29872F2F59DCF48E1564EC4893AB5EC459E050A46441DF91869F38D3DE21DA0679FA5431E1ADF7DCD7CAC4E717274D1B16D589C16DE89CF2E0F362305B0343C3D40F1336323A46C9748EBC38974D2C3BF0EB60FB579B614BA21959E17B2F403B06708D586D9DB584189B5EC872A33F40882FF20C48B006E061C0682FBE73735975D5E6E1B1C9A72A4B234E149D0303F4B97D80665C513D7681A49FC2FB2006A246487E90AC4627FD12451A20B1D36784C9F1E76DBD6FCAEC60CB91F49AD5AB6665F8A9D63382117C7E08DFC9A36151AD48AE71235677EF79EA397F0191F4A8D09448492979BC1EA1C9AB60E3570643E23A49DCE700846608E66D027F570B73E7405C36D90C59A3639334311913CD0C1BD63553FFC0E0FEC914B0A4697440A3BF71EB0D9B9EE4479A2B12B689215D73A97708C9034124F984C4FA2E9958E3D7E9F6B394014261671B0C068A08CF5B4EC98C4F4CD0C58101AAA9AE120F2F203488F4EA8183B475E3068A84C3F9EB9D077CE5F8E1A61BB78B06AD15CB968AE10848CB99366A3D739606016B4B4BCBA8241211E62A0C8684DC2E5A5ED82B6ABF1FEC1BB0DA17CFF709EA6DDBBA498004BE17105EC573AF0E05035F8763FE057C42760E276C55A48A0A329359FA2FDF3F51B0C480967F9F2FC208EC6F2D5F203E37B4A9B8C0CCE53BE9B855D2EB92E9B65B77D337BEFEE70B72BA3D904E76BC0D75B5545559516476580B18671F3FF596B0F967BBBAC4FD57C259D6D7D6507D7D1DEDDEBE5DF4FC3BAFCE73DD82A037EFDC51F43D1D5DDD70EE1769CFAE1B69C3DA6631D854B68219474FB488497E6508EA6A6AAA67F51FFDFD1781CE86844FE3FB8CC0AFB136713BBFA4C954561AA14422C56D94CA962D5B24755A25D8B4C300D398163378DD0ADDB2B5A660A902B2971D30F3C7E482F7D6B20434F33CD98A2A79DED5673E73FF8234879DEE998E4E2A2F2DA5258D8D33CC0FFB83577F7348CC2F28345717FB07E87CDF05D20F1E160460F3B3A4A181962C6E10B0BAACB464DAAC1C9D6A6BAA68F9D225F963275A5A61263302A1AD5B739D20F24998B2D7F07D091C5F0ED4C6F3229C547C3C364983F02D0C4CB65FBF99E289A43099B29816E5C17796D2F8D8F8E392D727B5B6B6CE608061A34C44F406C501B94A3884E7B8C0ABD0DD7B165F71679C6C4FC466F306EEE341AB0554BC94DDE7CF4F8208FC10EBD7AEA19270B888013CE5F4B50387C49C8222B430CD7AB2669C6E3B0B3FD026AE590E18B97449232D6B5A4C8BC1144666A7E05F2ACA4AC5B59DD7D2258BC5BC85826E0CC120D62E1FFCC30BFB5FA35367CF530382330F40C1F9BE7EC1A48DEBD6088AF27D6B9295B2E77B07732E365695FE087EC7E47E51B590F0763E3B07C09555E1D9BBA0F672DF79581723FF408E1D2FB4E76296885ED0E1266C3CABA76EC703A628C858785FA23B6EBF8D56DDF7F105055B6D9D5D5C54A16D9B36516D75956DF72DE2F3EBE8F193343C323A77B5638E0383C3C3C257BCF2C601211C8B1BEB69C5D226F11DD3937B6B56152F84188546BA3D6E61C2F6DDFD61418B378F1CA37F7AF427C2F1962040634DE584A29BEC2056F1D85D75B92F13B9B25C870600C9C350675542D6E134BE34AD33B1105E0BE2DA13D784B321C38E282D69366C7FE1045D46BE4F5E77FAE405132C629B42EAEEDDF7D105999E18A49A9D64457919A4FFBA227B2FEC38EC353BBB85BC2AA0C9DBB66CA0336DEDD4DED553C47C76D20C6D99E07C3C0C74B472C5725AB372055D875108220EBF7D0C840F513DCC59A15630743DD3DE2E34E9C66D5B0472E2E39AAC91AC29E4F2A874A1EFE2C1DAD2E051EE53E576184ED0A905B65FB78B0A09044EDC15509C2AA6A94CA231BDE4C844B7A35F2BEA752629388CB0D68670BB14FAEA9F3C2810C742A4FFC4A95671EDCDEBD70B261476500F0D8F502B88395FA9AFB000C179A21F3CF22805012DF99A6B11272C6D6CA0370E1EA20B70AC85AFB1F1091C3F4CAF423BF8DCC5302F0C6DD7375F479B37ACCBDB7CE7954CA6E8DBFFE3EF054D56AF5A41914838EF5344950F7E2F1E4FE4CA03EEAF72FF28505FB6A9A949CC1F56F325306BE1540E122615B77B92D3BA4E5DC0B4E7FB1B6621138C295363D77A674ABFF5DED4AD952643909C51A82F3BA24244326B92ADBF9F864646849FD8B4BEB988F84C4C363D7409F23BAB1832CE0F427B5235752210E37BEAE9394F870E1E245544B00655C1A6DF7AD32E3AD5D242C75B58135279E163C4D4D6D1453F7BEA17E481E9698649626CBF71FD5A1171FFCFEFFF50385E8E2BD85C71F0A783F8B2BD145D1674191B1BFB615D596800DF9D840FCC71839813093B1AA0D91A103B75E2C88B43172FDC93CD64783D9D60CEC8F97912324CBA6A55E81DAE19F9A5540DE77FE79061D8F3CD141928C51D8E448266BABAAAADA3F377DF3E7E829A602337E221F88166C48120D08996D3E2FD22C0CEC2862D8E9C8F1C3B29187E49932F3A6C64DA04E77DE0D041384DBF605E241C120CF506C3F97887AFF7D453FF4AF1548632F92512A419653C96F6836F1DA1370EBD29EE9319C73929BEDE0D5B375219EC3F0B273B5EEECF49A653343A1A8D56857DFF887BE776C60CF78E3AFD87B3F980D4D8D0D000062F1BEC276B29630F4D2DA0B7E04524B8A7C7E3F1A8BEB2B2C0AE9D376EBCF3231FFDEC249C14C3BAC36F1F150E70E5F2A570580D70820DD6EC750EB8605A92764DB7B2BCAC085A1E8359E26506E892C6C7DA326119A232242D05F2E1006DCD8A65F49B8307058A6198C82691353C8E404EA7E9EB7F4AF396523936E157D392066AACAB17ED2BDCE5CD0C494E24C504BF5C26FEB0A9F8C7407C7E288DA53F9F0D75FA261DE12B6006778AF11FB8686AE542F91202379D0172381CF65454549420E888404DBDA525119894B508FBFB04EC7BEDC061FAD5732F513C9910D06EEDEAD5F92B334E5FDFBC267F3D7694B158AC5838E7F97E8E1B2621F12CE5F50DF562CB26F0A9679E8526E5002F4382F8B7DFB4930EBD7918CCA9A40B1707E67CBCB998C0669203B672405891E9D524CA61CB2BB20C0D0F9F2CF1F95E83A38FC1F4647B7A7A8A56FE550B7BEA696A5960A3C024152E5D7F39793909C4976B6B6B7D1830F91E230D69BC0049ECEAEE15F8FDA377DD41837080FB5FFF0DC2FE7620940E01F1766EDF2620E147EED89B37513D403BEC13E6F0B4336E6D15A49C531DBDBDDDA47A7CC2143183D956872325762E4A1708E857CFBF00014889495452910FB9B4A231DDD8173435348AC9E81CEDB2F473AD02C65EF74BFA5F1886340E3F94BA78F1A236BD30A34E9FD8300D15CDB662E18219003CAC5457572B6084363E31D65F5DD790EB4FA65CECA0A3E3E3F4D42F9E1548E1037B76D3FD9FD84787DE3A4AC74FB5D0EE1D3788918F8447A3D48B88F6D22D4E533777B6F31CF583085C750EC3806EDBBC911B73C5326A69FB9C50284093B10465755E33C2234083A66B0BF99AFC6B515D0DAD5EB95C3860617A60FB0711C0A66066A323234F843D4A2F231F4E45D7D5D5CD58F95D9AE7274C88AEEE1733A44D9B3629CB962D0B80FB3570A4CB716CF9BA0D1B6F099755EC84AA97B279E03224E74D3855CCC868EFAD7B8406D42152E6DBE0656638F79FB3D1CBCCFA802198385FFD80F713F1188D83E96E9F5F68DFA6F5EBC80B89EDE83A47E7CEF7E7D1D1F4BF9FAF36C1587FCFCE9D882F360A84C8D74827D374B4E5141CEF585CCAC4EF80DDEF71BBDD51487F9ABBE816344DB5E0A42B6E3C6526DE7DF7DDE6E0E060865720C42ECF28193875E2F87E6C8FFBFDC18A65ABAEDB1D4B259777F75EE00E67102845FFFC93C7E97B8FFC0BA0A3873E76D79DB476CDAA79D60D9AE920D9F44442613A7BAEABC09E038A82F09542CA2D22B2FFE9E2C089D7030A975C517FD36A04691BD6ADB11DAF053B5B7ADA84E34DC4C6FE26E052A3600ACF259855FAE7D4806BF5BAEFBEFBE4D2D25217181084B32B038AA906232AF09DE5B09325D80F633F5853B768853718D9DED1DD5B01272909AD8046F043FEC1FD9F12814F6565B9C8B5E4A55ED766B6266ABAC0E0C78E1D251F1C6C2920E1F6AD9BA8BDFD2C45276222B22E966443980DAB3F756152EFECB3C3FDC0CD3721485C2BEE85B5B083E385B31D34343474CAA5673E87E7EC0D85422C78DCA0652CB82BE25ABDD8E17067586F6F6FD26EF5CED8CB098C605BCACD16BCEDBFD0378ED0EBB44755C3EB572FDF313436B9AAADFDAC57B68B34CC108E4E59C5AB2B2B0461E75A2A1E112735352DCB136DFF6BAFB339201782311F0647C00C6D5BC1947308C61604A7A6BD1839AD5EB19CB66E5A6FF7C84A14872F39DBD945C9442A4BE9F85F1A8A320AB39B282B2BD3A2D1E89CBFFA21BD0BBF06C2538A64D840955BC3813ABCF84E5E6529088246C00CD6FF12DEE238EF87B10D044391464F30B273CD9AEBAA9C950F9DA527F97DC0E78603AC1758BEA8C8AFE9F9C5986693E232C0E0236FBF45C148A99803A74FFFDB4BF9015C7BF9B2A5F4910FDE2E8249CD1690675E7899C6272769F042DFDFCA7AF6A7207E1F1835B175EBD68C334D6AF6D948EF42D721AB1F42F11CCFD185438EF10C43DCF40088DD8BFBEAC4E0A44E3B4CD259BCEFE262556C72BC253A74E17145A25E3C8861E8C51D16D1F1181D397152C411DD3DBD96C99A3D782D7A71D3565DC312F20782B3A259966E0700CCF6E238A619B69F530ECEAF871C4770C84D61D1D1D116339B7A8613A610B084DFEFCFA71CAE7A8AD2559622F31017CCE0004FEBEEEEE6F66E5E4680E7D74EDA4E3AC49DC81865EC2B0C38B0979E7BE627EC27D6AC5BBF35102E6DCE64730127CB2AA4131AD189B8820B369CF0E3DC3E9B2955ACFFB39064451170A08D6B56D26BAFBD4A2BD6AC833DEF2C2696AA8AFAC0EF7C608F203C434E2E6B9E81DD4FA5D3D9EC64F4615E250BE7811FB12C4CEF257F6EE55D61C03464257E0989B58267B4F35202C16030C3613A18C2886102A78E715292138378CFF370CB4F1D3FF62AF6DF8C9496D52C6A6CBA01C7EA321943D60D3D9F8165D3D4DA765654B15805962D5D4CD51515A240244D43D4D21C35EBB33D88375C5E6A873D9FEE1EB880BF7BC776AAC235D91C4EC2F4EC7FFD0D91A61F1F19FC7BEE15C37D8D01F3A778191DC0CE4BDAF7778D01B331C3EE16E3650574EEAB8799CA42B2786E6E8227CAB14F65A7CDCC00D3CA583BC6A3A3718C8BD01C7F655DC37AAFC7DB8C38C2AFE7EB1116BA61661C3FD16A2F3B43545F574B353555140E06E75DE57C1C4194CBE3CDDB7D87FAE150889A20FD3BAEDF92D786E75EDA2FD20D6363D1D6746CF2D78AE578E3761A67413FB725BD177E92CB09FCB85909CE5AFCA01054D8CD8B0FE2236196B02DC57E296FD969DB8D6401B188AAD7571D2AABBC3E9ECAD42493492557B04EB4B3F68FF39E4D166729972D5E0C275E9D2F37CE073FB948BB148EF70144EB0D7621E6ADA3C7E9B9975FE120323BD07DF6DFE3DECE605C84204D0C0F0F671F7BECB105F5F5A8F41E784D374FD008CECAF24C452D1008A4418438AFC9C044B77D846084CD9850369D8A8D5C60DB411E7F30B2CC152A59171D9F28E7998EC5553AAB50A4C161B7B6B58921BE130C61CDE0E45F085B5ECC95171AB4FA5B89AAAAAB80F79BF3C41F1E1DA597006FC53C83E1FE7FC0775CC07B5EB02301E26B7335E2BE673560368D606D808F90795D505E0DD5C30BB921A065AD809A87B08DD89AC04C88D81AE1FCEA1F435D37B4626D4637575D1C180E4FC4262567C9FACB79660EB8EEDC7B1BB5777489947563C3225A0494348AB8647C7CAC75A4AFE7CF211C5DD0B2C1542A156F6E6ECE3DF4D043FFB619309D11DC5FCF9019EAADC4E3719EDFEB867433239C9F5C149A81AD8823ECFD00DEE77F85C9747997A7B2DA8AF1C95859747CD2BDD0E77618C0B560869A1CE8EDDEB18D936FD99EB6339F85A29E8630F4410BC62F5CB890656071D54B15BC575E85AB9EB049E2E5062A2B2BB5FEFEFE2C88CF2B25728E899DB48FA12A88108634B2364438A8B3612D33C247D9541C0EA5D517F6AAB561BFDF54DC2B53BAD130198B9722CA76CD5661CB57E1600A23413F2F0C118EE6C624C01CCA2427BEA7EBD93E7C9F8878B9CC78B9C47FCF3360B6E4A0AD152C691AA05E16617E1A7E829B082679E124263859BFBE17B6734DCC84A0EDB0FD82196478243D3DE633CD2381B047AD0A54BA3226D56B065569BA5192D5B410E20D6F3A93514D7CE5C0C5BE83998991B6B0626AE125F54D99442290C9269EC7B5863026F93767E80A7F6E57FAB7FA13BDD3CD93B52C84A2BA7816752EE701F139DDE1E79487AD05CC187E1FB4DF8B722B4F7DE55F54B285917F5DC96E7C165A97E31931B2B5CC8153A4E2A0917B61BA780B1F350E4148CF956C7B5F68C042CC13B77BB35670CB07023BB1EA094C860B8CF080311ECE3FD96B4CF8712C08C6046C98EBD4BC7930F475E398F30B8319FC9730ADD2AC587D851788C576001A37ECF7FBE3A150284B57F163D3D2FBE947AA9D78827FCCA7B4B4546A6F6F97797D098E0D402CD60C972DF1CE4A2BE247AB799F8F3313F05E386D6E28B0032A0E06D9D7E478DD08B2D6151AC7E7E3887813FC2B4B0BC5FCEF2B0D58A0AFE0E564F44422C18B686711BD0A24C5E60A5B87214C6C17AF9E622F55C6088935872FA1F17237BC161CF679BE973043782F1678E2250A2E07F3BFEF19301F33C89E16C4B105B442E2008FA36E105886C952703AFFE00FFF74B5C22BB0F0E250B6DDCFE1331EFCB30026CC9AC939FEEEEE6EE34A50CFFBDA045D6EDA835FECC4BBBABAA4A54B978A1FF8844D97B9B9165A22C1C4985C4A840689A5F2F97C5E361FC196397DB2DDFF67C05532C47915202BF172883D57EAE46A5FFF0FFE9FEAE508C4E5AB0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (46,1,'IP_PBX_symbol_(128)',0x89504E470D0A1A0A0000000D4948445200000080000000770806000000CBA9486A0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000042924944415478DAED7D07941CD775E5ABD0B97BBA2767CC600683418E0401E624D2924052A468525AC96BCB3E92B5DE635BDEF591B5ABB54451B62CDB3AF65AB22DDBD27A751C762991546010259212098A240890C879069373EA303D9DBBAB6ADFFBF5ABBABAA7270224C0150AF8A762D754D57BFFBEF8DF97354D83E245C0C5BACB1B94585FE9452BDAD6ACC7B5522F776D2958E465125F588411DEED8F2C14137A8167B846FC95320027BE415C916F8B45DBC6FA4A214129E2AB9666EC6BF83AEA352458260358886F25BAC49B6C595BCFC3154202CDD288C80A6F39CBB6625C4BAF768D0916618012C49779B3F1E6B06C1B4C215E219D402BEAF539DEB2D8D27C9DE1CF6430023181708D091617010603183D9D88EEC4E6B2348311640B135C0906B012DF207C0A5B923789EF5B45857A8DDC0B334029E2BBB17979F3F1B59B9FB35B90E0DDD60334DEAB550BF113D8E2D862D8A245E249BB260A1661008BD66F308001F99EC6751B3EE4AFACFD1FB2240BB22C0A3659162449C26D09F018C8323509F018EE63936DFA3E6B32D844895D23B1EB457DDB3886BF976CA2FE3B7E4CE4F791F05ABA8ED674CCD866FB827E2F41C46D919DD74451D024911DD3A627275EFCF58F7FEC0B45FA817A852C96F7140288160620B8F70A20F86D36D9A3135BE204E74D924C06D0F7ADD74885FB924174EBBEC498C0CA403AA3E8C77582EBE7F20C2031A24B06F159C3A71444D26380AB32651CB1725C17C85A98E0DAB20C1160E7B2DF8378E99238B164FAD8F8814D0D50A0A6E9E680466B7D1B352DBDE1F71654248C8ADF1D7FABB135FE48435AA808C50A364161BB1A41339DCAE5BB2DFD25F650784090F05E9AC4EE855D1DEF238186F7D2E8BEC41CA20692DDC6184555143B1757863E90B628ACD750A00403082510C0CE51C049F00C6A16DC4E37F8BC1EEC85481A846106CDB2808CA14337F544D9E8A1748D2830C28812120709ADDF1CF7156214057B2BDE37874D23E6C023A24E58C80AEC7E2AEE2BD4EB0582791DF2CD6D6244C690743C2FC1CA6BEB906755D9A2AB180AAB58E4C8BAB62C6005885614C00376EAE5DB3A3B61D79EEB3971450EC31223467ECDA19941B6983F57F23796EBF8F9C26B25CB6FF2D7CE3F97BFDFF0D02074F5F480A2320670F277908B1C59D79625444081F307BFAB8D18605DC7FA12DED877CBF12B2CEBAFB5B4AE85AE0B5D8856AA5CC254BD46FC15F8014C2F20422DA2B9C094AFF7C482CCAA316DA224F1AF89802510A0788D284B1C20BD675E865B06A502585705E11F79E4317BDA37532565846A546B3DAAA286D05099D9DDD9107AF4D147D52B8D00C5184F2E0291E42B08EFD2F7BBC43F234ABAA50257C04DFDC9FFFA5885A60A77684AAE1D8D956A5555AA544DC5B556A5AAB456AB54B75A266551C1D55494540A365A0BF0E6E951F59E0F7F2A82FB33C81433787E4653B5193C3B838AEFA8A609AFDDB9B7EDE43BC124F242C4E70CC014B052CB2F8E4FC1EBC7271075F19950CB47A34C37FD709FD6A8DA2331C8C6D38F937127EA6E79B62F6AFA31EBEFC1FCBD713F85C13ABBD6388EFB5BB76C82AF7EF5AB251E5C20ABE05D81FCDFFFFDBF75689EF84D4A4E7D1F1AA77723EBED428289ACB308AAEE93D004FE5EA52089FFD3FD17F4D415B8AE1025613D99CF1A59505ADEBFF1FAF1A1F0DD0F7DF255648803686FBDF2D3EFFFC3E9CBE1D594173B49661779DD4A7DC64834037D2373481F4537E08958B8ADEFEBC7F2DB7A4C466086FEFCEBF4738AE55CAEE877FC3AFE3BA7DDB680BE28BEA3DDFDB38F7D7D9BAA68F7A86AEE6ED107B728AAE8228004F27130C2236B93A92A90AB4365A631B12D1E615D40CC632B089C49046412125D881464C2824E52CD5C335661B716CAB13D80D73E408C73FFC77E37F8E0C73F734090C45740C87EF707FFF277C1CBCE00CCF123CB685A29F3CEDD73433DDC797D3D7B4991DBEB64FB0BCC3123B0E364A609A6F906CC7F2048FA75BA5B57F7E431D34E34B6058BA92758BC7E8269FE391D8E92CF6B2777B260BBEC84FFFC57FFFE839AA2FD317E8F1B6A6BCAA1754D0383F191F129181D9B86743A5DA08882C0F941357AB8CABEA54AEF86BD5BC5DE4D8E315523421736A2BCD1AD9D4E07D4D554417D6D3534D455B3F5D0C8183CFFD26BF45D2BF1DE0FE17D1F1224F96B1FFBED3FFA5710E4BFF9BFFFF467172E1B03A006A8D91C4E18EEEF874D5BB7179C73DA57E70730B7A522BBDFFC4D91AD5FE42F30CE152F83FD7D6077BA4194C5CBE6E97BECAFBE7533F2FED7917177E5B42C6CDFDC015B36AE63C424C6DEBAB183C9F10B17079030E3303C3A01C9744627367352A99CE0D8B3559DC02AEBE59AB9CF1AFE0B94F918916BAAAB90E895D0D850039B3ADBC1E37699CF9348A6E0F93F790DEC76BB291A58130517AE3F8D1DEAB77FF377BFF82F6093FECB77FEE7A391CB80001210034C85C2107CF500B8902345EE0924F7B04E8CC2E00DF3E38B3A7290475034AF150BFCFA8C5198C750E63D5D66F726CFA2C0D6125B4B26A248CCEB6778FF04EE1F10445DDF73B85C5059550BE2D0E0A513FEB1C74439B0E6F3A2207F499034C9F8D0672EF4C3C0D018F6C42AE85CD78AC4AA60EFB57BFB46D8B3733364B359387DFE22F40F8EC1F8E40CB4B73631F43C71A69B135C3589AEB2DE0E260364730AF87C5EF88DFF703FFBCEA596A77F7200829159930140D0513ACF0C22FDFF046EDFF39F3FFB67BFFDCDAF7DFEC7978600CCBD8B04C16F9CCB6420168B81E117300338D43B8D808E281605724446583DE0239A0C23CB063A903B59E4F7D19924475143BC87225A3D81FA9A88ADBFB72EE90D3169C75EE2B33B40BC0C0AC0934F3E29B9AADA7E841DFB5E92DC4428E303D3F3A43239E81D1C878BFD2350E1F74173632D6CDBD401814019381C36B8E9FA9D70CBBEDDEC7A7A4F5D64BD08474E9E9F0FF59A2EEBEBEBAAF077DBE1AE5BF7B16F652C842EE1D92854960760723A0887DE3E95EFFDBA96CE1921CF049C211AB03DF3077FFCB58FFDCD9F7EF67BAB4700F2BBE31776626F5ED7D9099EB2B23C1C33E8174C11608578E6B3977582D371D994F75C5CF0EB65465483518CF0AE7E9DCCAF61BF2B70058B057F8FB673992C1301F1441C2E55311E8D685F9124DBBDA248269A1ECCD29534BDF7E6D72244E349388DA870EA5C0FB434D5C183F7DE05368E76BA2EA33FE7AF3DB21F6C361BBC7DFC2C675C5D04342092ECBD6E2BDC71F31E769D95F03F7FF5301C7CFB24CC8422D0D2DCC0089B53147018BD7F1E034081586058200AFFF6B92F7F3DF4175FFCCC4BAB4300BAAB9A83F6F51BA0BCAAFACAC40216D0010AEEE713A1BCA21CDE7EEB6D403B7AD538F0F7DFF9FE5EBCE7E758E20897DD44684D33D685CA1B110AFB0012A899C9EB7078165C2E2742B81DD1C0C1908C89417CD6FFC89840422638CF885511F0C1FBEFBA09766CE934894FF77BF9176FC1E16367602A18E6286283D1F1695DC92D203E377C2DC4CFEF9BCD868CF8177862950CA069944887DAA8EBCAC50296B990E8C9E532C800B9D5DBC4B2FC2BD8314BF4762EBF558D13DF7A5C83C1D16918189962D72B8ACA7C15845C4CC7B1884B423597DB494C0A73F1343CF1F4CFE0A73F3F086B5B1AA11CC5C9A9F33D30139C65C4733A9CC52191BCB74398BFB6E44314A3C1CE3FF9AB6FEFF9C21F7EEAED55E800A667ED3DB130825D42DE472C16BFB7CCEF9FD7CB4DD9AD5AB4788B265FCA9CCB6BF802AC45B3714D532D2A90E3104BA4209DC9EAA240D39F36188EC2C45488398E02655EA61092A730A7E89911A22858086C41E7A275F1B6D190E1EEC6C32B67009D8B25B82CDAD5BBE00A3608B1DA656060A066F7EEDDF95EAE1611B79801166CC014C00DED6B60CF8E8D50591160F7BF7EE716C820F18F9FBE0007DF3A0D49C6081A5300776EED349F83EE91CDE6D8B564FAC59349B8D83784BFEB864C56318373F39140C82BC9427E3F1A9DB3AFDA0A104BD8DCB4F48ECCC1C0588C6B9D1AFB432C43882920C0615077851AE104A3155C47E7692D02DF37B28DF83DE819002C7F03D046AE837BEFBB6FFE432171944BF096F7F5F745F6EDDBD7526CAB17F670B5D086D774A5AE32E04505CDC67AF37A24FCAE2D1DE0F1B80B1F0F2FEEEA1D84F33D43CC294E329D7EFDEA9BC7A1A2BC0C15C97AB307DBF15ED4BC5E372AB74978EBE859A65750828DF11DE7890110B8134A30B74924C593A989D559015CD12AB59CED9D85675E1DBC22AEE07D7BF7946400951367B54BD785AEC8F1E3C7E0BA3D7BE63B6BB4F9CC60987236ECEDEFBFF306F0FB3C6C5F282136BB7A06E1F8998B301D9A65C47118DE4CCE402FBDFA36FCEABD7740C0EF9BF75B72067DE4C17B50C751E0CCF95ED43926600415430D4A8801238782C5223418991A4311905DA51F4010B82938FF8536B7FBC1E36A5B3502481C9E289750F766692B4280D21204EFA628AB933EB8B46FBD199E7DF639A8ABAB83B56BD72E2EDB2D0870E3AE8D8CF85662184B38128597DF3806A1488CBD3CB9B1F9C8D582E44405775E387018F6DF75039C40B3328448B2A6B1163676B422B3D8B9922AC18EADEB59CBE57270AE7B0086C7A6606C2AC8E220854820C0D8D818CCCDC574A7D3AA824192A4D9511B9D9B8DA0F65A0867ED4D3EE868F15F35AEE0586C0EBF292597AEDC15CC53E3C9432F2AC840DFFEF6FF82FDFB3F08B7DE7AAB09DD0590CFBD77B45E535F09EBD63696BC2F4309BC756B531D245343480881FD8EFF07CB86EEEA4D2BF0E48F7FA1CB43520E67FB9119FAA1BEBA1C95C81A58DFD66CCA7FCAAEDEB6691D6CD9D08666E359142BC36866DA39EC2BD0D73B804C14D69F7511457EC96090C3E581482402E97412659CC374CB962664DE312498F9FB86534730DDC482285A1248B93348E01E45C1727FEE7D9B6FFB7298E3724EC5170EE233FAFCE52B4EF915F4AE43CD8E5F4BA2FBD2077CE69967A1A7A7171E7AE8C350555555B2F77B5C76B86EFB06769F543A83BD7D0E66E7E2301B4B60CF4BE0760232D8534999B6D91DA6E7D2ECFB46E4AF806BE62BC6C1681C66CE92C3A98FC509D63456436B733DF40F8DC1A90BFD90CA28A86F78D9B5A150182E5EEC81542A6D515E17F68D2C69069207CB26BB21198B31242081C088670EE2904AE4F05B9B50B4AFF768B9E058DE4D6C3213273A752292EDA4CC30D308E5A0C2ED6D22142965845215D53520C97676CD0A896F24C17AF163D9AC9DE5DCB97370E1C20520CBE0831F7C3FD4D4D4163080CFE78663677A201A4B42329DD6459001EDB896F0DBB964398F0626CDB5425A6BA5285FC244C2FF33B3C80C284E4E2033289ADEE11C7609A6A66750891D84B968544F34B13C278A0B91DE55D334758508A0CBE41C9A2436095FC667D7C3BBA29477019B8C2098C417C5E2009195C0FAB5A2795E32C587207104E0A9DF024FE3A7A7B6A946A8547F2945E70C1D01704D2F2EA256AD2ED30C30609F139F34AF2AEC290E28527AE9631E397204BABABA60F3E64DB071E346A61F545557A14D9FE55680C81C3786450025D6665F2FB15D08005A4182CB42BCA060479845D40B06433039390DF1789C6718A979065079A0299396754067E363B5653300FD253597053B427363DBBA2B96163E4F5F2871BFF1B1513879EA0C43856512DF481E25E5A6025B1D76107B696B481745C3C3234C1C9E3E7D062A2B2BA0B5B5151A1A1A5044543293CE54EE0A923A16DF5E2E001021E7E6E620148CC0F44C10C228DF4911D4BD8F3A2A9228D41940332D22A277269934B2A4D5E2F191F2525F4A4113A2BABAFECAB98297E9896C6C6A8663C78E524876B90F67F47E0F67805AFC2E0B30805410DC2106A48F3E39390989441C262626A0A2A29CE90A2E978BFBEC4533E803DCD2B1C27FE1264735456144252710859633D450B78846E7602618844C26A35FC308AE70D19827BEBE2E4401FA238954D2182761D44F588908D040788F645367F1E3E5966F061203D83802F8B1059819B180392C08D6F18862C1BECE102A324382318BE1E051155D67C9293906D906B1C86145C4C96515247486B986B3485C4658CE040AFFAD82BFCDF1DFB29EADEA0129E695347A3BA140311368AA19ABC8A653C6BB8A2B62002301E35D73055FE2C27AC5F29440EB18086334B4239349CED81CAEB5A51C625604D0730384798C904F5D93780C216FEA194E2495F7604664CE1C744C33CC4D959B9A8617B2609D27AC15EA8D1E6F105F51F3A2807E33393E721116181FB93802805810A7BEEA63010A7D98654503B5A2C6460FA7E2B3431E5FC59E920E31512C480CC933825870CCD8D7C56CDE6F0016E78FA6E51544D3AF50702CAFECCE6BD6D432556F56E52FCF047C3F978B9D3F79F0FC4286A6BC34414A53E5E5B727B18DF2F46E7DF4B599D2CD1C20397D5F338A79287C5BD1D3C779EA3873FBB2D46F85ED9BE9E346DA38BF9F40E28BAE1754D8B97D2B7CFD1BDF288900CAF25DC11A97895449841598884C8F9EF6056A76DB9D9ED6620428116B2F393CDDDA61348BCD6F350F0BAC030B53184487528EA7851841D52CE220CF040A5708C786FBBE89FA4492BFEBCACC4092FD64B2950C9DA209343193BC22B1801AD4BA1742805C6ED9D120A3C2085516097353D0313E78EE89A6F61D9F96649BBFD8123074814246C88B04E3585EC9CEC37F0102584CC402BF8025B8944F0BB72202948C4B981A7F11234442D32F1C79FD274FF277CCAC9801582AB76CC31BCF97ABFB6F6984FDB736EB9E41332D9CDBF225CD40A1D06434D2C4E6B98285255CC1BA13A9B4EB1538722CD1F535CA74A1FC6D9301425C17107299B43AD67FEA1F6A9B373E6277BADB0CE21767DFCC8FCD17C6EC0B98C06ADF6B5A911F402BB20E0ACDC802E629100D5084149C2118F115756A6CE8F123AF3FFF8FFCDD62FC5D57E607104449733ADD30170E81D3E52980379DF0C255110BA0773A71FC18645822C5B2BDC186EC27111031A408B67426954C0E5F3CF6F7354DEBEFF606AAEE2413CAA07731E1F34C918FC9CF37F38ADCFEDA7C0760B12F402BDA2E5028C1A25F1421033EFB78D799237FD57DEEE86B78D10C7FB7147F376D852200BB85CBC990203439CEC6DDCA660F35DCBCB299FE9477EEE869DEBAD710784AB78E128268842D45A6970AE65F325E4A28C897D748B1636FCD951BCD88FBABECABD03A9355D92D9C6E1F9E5F9E08E028608881844524A4788F999D1AE97E323435F48BA6B64D777B3C9E1B2898572AE267BE85509ACB4AEE17107E3E2A944291F9CC94BF3E954E0C0FF5763D71F2AD577E8C1646908BB539FE3E593D5F465B1903B0002BC1B4DDA1FBDD73599604295A46FEE895418A53B8F3B57C04435102D19493C043BD06E1354B8EBC91D665D8BBA6364BA68D45BB2553CAD867B6B7DBC3DCC3CAF27580622630CACEA5390350CFF1E732A9E9810BC706C707BB7FD8B979FB4D0D8DAD9B5C6ED73AD02BA814E4EABDD34B31F552E9E44424183C393ED27FF0E89B3F7F959816F42A6931CED41943435F681CE1923A8086766A2C1A664121BBD3C5E5BDC0CBC2E810CDA27B4C9EE78779096C50886C0E1D630C2388E6D031C1F0AE09F9216182710FD0CF91FF812A0509465918961020F1FC021E2DC4461EB25367CE423411432658593E808509340B13A42C4C409E42773A191B3B75E48D5E6C5437C9BD71EBEE0D1BB76EDFD6D6DEB9D1ED26AB41939663D916F38BB0025358C966E742C1E93393E3C3C72F9C3B7E78A8B77B88EB3009CB3AC5096F68FDDA628348E5A59C65A81481C3EE82B28ACAAB3A16B0BE73037CF3DBDF866C26B7E2AEC83F90A1181A4C90E11F34CADDA846E14C27A2A1F3CC89B786B1BD4EFB8140A5FF7D1FB87FCBCEDDD76F696C6EAEF5FB033ED966C366F7E1B3B996040823DC4D7E5784BD4C261B4BA712D1443231974E262333C1E98BBD17CEBC75E4CDD7CFE1A319444E41BE4066C642F465117E590C40A904B96C065C9EB2AB3E16E0241F3C79E09691166ED44634BECF638F3DC6D65FFAD297D8E103070EA8535353D944229173BBDD9973E7CE1965738C225A360B53D82391A0E3A9C7BF7301DBD396EB58F3F97C8EF68E0D81BAC635E55595D5E565814099DB5B5626C9B2233E37178DCE86239150383C333D191E1DEA0B8E8E0E4573E426CCD73E36889BE6CD287D9785C2FAC8068A692B1936BEA412F85EAAA9C65CAC8B338080C41688D09B366D62DBF5F5F5051C1D0C0685DB6FBF9DBD3645DFBABABAD4F6F676EDECD9B3B9643209A80C8A3D3D3DD662DA465D656B0D65738DF7104F1C7B5B046A85852B8AAB9C5B8B5A5AD756225B89AD167933575505754925D0C82F7B2F2CD4FB1788050815151542676727115C4CA7D322F66A468CF1F1711613A0244D3C2E54565652C2A64643BEABABABB59A9A1A0D09AFAE59B3064D6227EA9F6AEE85175EA06411B3D6434B4B8B180E87053C478D122F04BC9682EF42241259AC5A4971D5F385F6D512EE6B582DD157C0000BD37E2A948299D934CB10D2153ED0133D457D5BB71204A3D81053DC8C91ACACE684289809A422DF368EE96961FA359291142AEAC7E8DA8AF272D8B56B570957B0C60753E41FDF6EB7B3F2B68D8D8D62737333115C42E2CA4864446159C2EF27A14C27A660D7E1B68008AC513E642C1653F11A051560059981C9D7B2B232E5339FF98C525E5EAE7EF39BDF644C838CA5C6E371E69CC0DFB02F862284EE81FAB1A8F5F6F6B287C17B188C03455EB952F6DEBC63EF449DE3251960A13F79E8F4CC154D0B7FEAFB4F954080C26820254E22F104FCF012F67C3BF66E219BCD4A0E3DCDD68E84B6D1F839D02BA25142282B8A45262F59064478FCE639FC4D068FA7F15826954AA5272626B2A81BE4485410B20C0D0D89B5B5B5740FC1EFF7B382112E974B45E2ABBC3CAE160A8558CF45D1A33DF9E493B079F366F6651F7DF451ABF7F05D97B84B3280B84028B8B5C103B75F57AFE70B50CA361BE0A16F53E9582A8EC08A65502914E029DEC5D78296FFBD90DFA661D982918B60396EFCAEBD6D6D691160F10350B530ECFD222A61725D5D9D9D1800E537D2D466C70FEEE679004EBCCED5D8BC66AB28C97ED4C059D55B527E0DEF9B92CB86A3B391E3C9786C02E9134382C691F80964A20C129AF57CAFD7CB14433C27F36A21243614420FCAA9E166A68A4AA58A08A022F155D43560CB962D2A29A04F3CF18486C735D249DE6D86586A5C8046899699749269D9D6655B4739ECD850B96A33F072A7859382168D2598664FC447428BD80B2524BE03E5B88CD08D9699CD8DE7880BCA9BD6B4EC2BF3076EB43B9C3BC9D6D71D4C0A4F3E55CD819E74CC53E6A7BCC8D1583CD69F8847FF361D8B1D46422788C0882246655277360B7E44FD14F57C44911CDE23ABEAF169D6083508558829108D541447CC3D4BC437E4FCA73FFD69EDDD64882511C0E1F640343C0D91E014CB3B1779D50FC3D963D40192B943473053BDF5EBF28914427EBC3F3F278842618285209A49282C2BD8602ABD1488AE5318D788FA8015FA5D3A958683870F0175FE1CC200328D884A988C72DA89F04F8A1DEDBB5C6E77F9AEDD7B7ECBE3F5DD85BDDC9927F2D2DEC37426D3188DC51B515ADC6CF7559C5212894F284A2A84BF2544F125C0795F5692BF2450B5634D0B92E817403D6283EC2B36411941DA31F38DC40931033E634E375C14EB14376471309430180299C064088B057BD99861691180C4F4B8BD1042064827E2BA1BD750DA04BD6287112D132D63D3E62BBDF3439E2C6D4AB50EBCB48EC8B564BE688561CE82A6682C1DDC5D1600D9E1264B80A09FEC6F3BCA670F3617D9E2CD6B5A3AB66EDFF107B26C6B365CCBCB5D92A91404C3616BDEC136D9EB7E3217493E84EFEA5405793D48CECF4B7AFCC286AB3A541EEA344DBC2923489FC197A1DAE8214155FA502E1EB30BF0B253CDF610432023134AB035A203999A0C25B29418C84DC19191111219840E2AF755A85674B81466585A09C41E92A1CC60BB131CD8986C36FCFC3C853BCF0C86BFBFB07A856809973206D1748B58D084225343337D0FC23C05542B08A4A8966B6910C4C5BE01EC4E2C4D5B40A8B5A132E646E24B289FE51B6EBAF9CE96D6B51FC76B1DEA0A478F269329980E86E6FB1C724A3BBE0F4B24551CFE47252AAC5D9CD5931F4544D646B526CAD5B8DE9BD2B4DF496A365553950872F10092F0985D82579C39E51C55A14150C8204364F0FE591225333333394431A5D80740E8F0F0C30FD31A56CB0C4B32008D08CAA6335055DF7455BA82055E4A6E787818FEFCAFBF41BD53C01EEF44F8F72113781E7CE8573F52535B779B9129B322E263CF9F9C9959D81402A95273797F15EDC976C9427045E3CC5994D903858C21A2ACAAC06D6CDAAE8CA67D328358A7E4C490AA64CF4882F64C40965F9265318DE28B2C902C6F6495E4F098821689DAD4D4A47244D0101D563C33CAE2AE604D15D2F811DCDEABD315CC46E2821E3EC60F017EAF0B42332051EFC7263FF4F02377D43734DCA6AC62CC781251657C726AC17A03886AAAEA706CB3393D0F1466F268F0836C1C86D42CB40832B48832AC417DA7D208731730861102369902CD50B95203C76DB87F5B041F3C974C4FA02972D86583EFFA1DD2297205A388CB90324140843A4E3693C928B1582C8768A7A089A9222A2C1B0DE425332755E5AA77045AF506FCE624FF7D1F7AE0C39B3BD677BE6F2543C58C6506217F26145AF41A449FA8E8ADF834B0215779A2F6A0183AAB6698F3EABC96832E3400D022060F7EC4667CB86664864690A04A13F32851CC143C17424668B3DB6C0DB8FF20EE3F388D0A64369D1CD072E997031EC7E31E9B3896A3BA3808D448FC34EA0F14B7C8221328CB1505F25201686384EB554B7CAE2452FC849E551244E903FBF76FBD7EDFBEF7AD46378AD1408FE92956E06951EF98CD5E865691684DD3CAE1E11FA7C2F9192AD8F0773662904571FA9021FAB189CC6E14A01199A101C5583D3244359F22A7B862A8953190E9EC0E87633D6EAF47CDF13F4D2693B14C3A755653734F37059C4FA0D91B41D100AFBDF61A791C732812969C2B71091D408577D53925ACACD7D33F634004E504D0B18E8E75DEFDF7DE77973E75D1CA9E3D954EC3C0C0B0497CFAFDE4F43454565480CD1CE4A932ABC3E5F68985B580005E4F44615AD1A7C7616E6ED0EB1FC0CC3428A8A3886DED2095979BA3338635054659367506ECF8F275C80CAC114260934A2483E6954C9A85CDE7757BBC7B716FEF6C2EF795443C3E199F9EF993EDAD6BFE99BBA6D54B4200D299486B2EF5195F78730C5E3838AA57F426172D186E5BAEA412A71BA9DEBC22B8A8E5F8BEC22B887337AFE57782E90AE669E342919B5850E1BA5D3BE15BDFFE96393C8A46D59023A8AAB20AF6DF7B6F353982562AF75319B4247AFACD9238A3631370E4F809988DCEC1C30FDECF1880082023F1FD953505DA3E6D4710815E4ACDB18C29819BC412B778C49A5A5042A8F0F7F480B87327644F9F06F7AEDDEC9D0D46216D6612F7A7B19D812C234C1532430D12BA06D79554B5D59A155CA464223A90F95B97980BDD83C4FF17FAA8DC64BC142B405B509DCC22DE25D3B94562014A895880625E2716C402D4A563013CCF41027D0896CA074050F83785C42706D8BF7F3F0DCB12D4156AFB841E3D487C42201A8FF7D691E3D03730582066E83B389C0E282FAFD167412B82E9E7A23390D5788514CD820034A4FDC471B0353681AD733DA40E1ED41D62C830D1E79F03C9E902FFADB7811A0E835C5BAB5B435C7C84911966F17D7BF0FD25BC6700CDEC6A6206BCA20AF419DCC0C2148958940D50A73F4B318AD0127ACCD20C20081AAB925922C67EEF2D8D70FFEDCDEFAA2BD84C1B13F5220E346C3D8D3D17CD211068F8BA4B5EB1A997C966A0ABB797A1099553191E1903B7CB059D1DEDAC4A17DD3B9BCB429DB71ABCBE0088363B40112C77A7127034196352DC243E630424CA13DF03D7F5FBC08EC44DBCF412C59DF1AB4B903A76146C657E961AA7D2C0CFA121881D7A13EAEE7F0052A323602F2B035B79A51E2DD547C1C31CFEDD38768821EC2077CB2EB08158308228119BA56F43D14B91887FF6ECD9254DC2259540C9E680487006B99F46BD3ADE4D31BF706E1C1F444981974432C1AA6992AB78A51A3FEAD4D0D5D3CB46E34691F834C6BEAEB69A9569A7F1FE9423C0B6B1B95C6E90ED2E2836F998298ACC791332C7456404120592D1FB71EDFFD8C7411D1F87ECF9F3E0BDF14690BD3E48BC758860070237DF02F1A3472079F60CC8C874AE8606485EEC0647551524BA2E80D0D40C82AA81B7B5952B93BA48A94471E4B5D9E78D09C09E4A6E74F222B23F8FE6A0B2D4A4D98BEB00F84FA664509707C68707F50C5C7D560E302A560845D98D2C8C0642E1A817FED1541D4F596107D522C3AC152D40350640EA43BDF49FEBA35E8D5E2768869B5A80873EFC107422B4AE54E653AF3E77F1223251069928C998A1CCE763459C7406A0B593AD1D2EAA1BE160B8AC9590C35B7C65B005094BE7A6B369E846A6EC4166E84B25218EEF606B6A020945001B6D4DA565D6A128E8EE86C4F163E044FD20870CECDFB60DE64E9D82ECE424546CD90AA10307A0AC790DF8DAD6729D02CC89399B6D0E3638C6EA714C24627C9432501452A6AA2094F4827A80B2987368710450B53CA4520F53F4295C8445CAF1160C7B32C7B1E9FB6619373E9C49DF079DB8169FBF620C6FE669DF1A53F67446D0AD52DDFB77E79D77C2C68D1B60A5329FEE79AEEB227321A73319F677FC7E5F01D1AD8C90E168434863B3C9EC5B148CCCB188843AC905B58896376B15BA1581F72746E84FC56130938234BE0889034F5D9DEE22471113C79640847061CF172A2B21F4C6EBE0C66BCAD6B4E8621078B535DEDD9A119D64100A1C49B3A119DD3FC19E4DB3A35E83EA909D119D9C4354EE8694C2158D0CA24B091E93D159F0F9FDF8806E9E956319D625483C42689D3184470A793450B04601C5FC2C21E678019E6A6E8E21A068A304FC37F98199A4146649F1C38F8A063134B7B4AE98F8B474A3CC4F24928CD1E86FF851DEE67B7D61EFB7D96DB067E776A60F5040884AB28422B34C5F48207A50849444235D6775E4187A4223BE4803DEEB262867CF3A813ACB2032C410AE47D329C821F43BD132103991356434DB868D101FE827BB146C884A22AF3D48D7F8F1BBF96DB62206044823E21043CD84676F3FD3D5F37B1515DE1FEEDDB2B93B1A8DA6C939343636461E428D87F94D465852046450B9F1A31D5C5E5175456201A2A5E8218904EA89A4B5FBFD815525AC0E8D8C4230A457E226D3CE90F17AAF771630023DD3E68D9DE0F37AD96F2B2BCA01DADB0A9250E95ED333332C60148944611619839E8BAA76C9B642A6A0B98E9BF16F36A13E712397DBE39C1186D34998440B447549CC7C2CA7923C5C01D46B255A7A3FF353E4E13F8DBF378A6A21A2D547A2739F4326FDDCE86830FED0FB6FA3EC995443434376CB962DE42A26F350337483C51940D104FAD84EC7BB5F2DDC141FAC74BB1EFACDE0C7220620E21373AC54E3A7BA798323236C900B8D66A22AE82E92F1257A3FA59335D4D542457960011F099A677DFD4C87D8BE6553C1B9302244FFE0100C8F8E216384196A9595F9D0BAF0CC1BE0D98C1DA1099FE37A44087A9F497CC771FCE6E3282E822C75C0A864A17B14D738DD947A54A0838C8F4E9B884DE864FC66DFDEEB3CDDC3138F7534D5FD391911683E131AF0E4297D0CDDE20CC0EAD6E4E04A2C82E543130350EC834C321F2A5C36560D6C651A3F297A24F76D28C7DD54D3DFC5153C6C2EA745E3C735D5E8253468ACAF5BF07E240EC871D4505F3BEF1C21C6A60DEB61D7F6AD6C9F6AFCF4F40F40FFC0108B2ED220D67244D5327C17EBB038624A0321986B194F4C21C31353CCD0FBE33B57E33316C70C42615DFE4FE1BD63B138DB6E448BC261972194C9FDCED9FEE1DF41548D23821E428A7E614353C391471E7984E5262EED0A56AF4C2C40E30E18DA62F63EC21CF5588FC7B3E29E4F507DFAEC05566BA7AADC0B5ED4D8E7CB7C5D04507D9F69B4CBDBD7B62E78BFF18949449251B8FB8E5BD9EFACCBC0D0301C3B799A158BFAC0FBEE60C7A8F71333180C3187443A77A10B4E9FEF46991D46D152C52A8D0986F564F8FE49E34791D0E472F17A89256204A4A8A34543893124DEA8E790A2BA6FCF4E181E9B60E565D958CA5CCE833ACF5D01BF6F2722411365352F290234AB1550B48C4E25606C26C953B9F2F57D8D7DB368028099126ED40C36AF039EEA6D661941BEBE302FDE0ADC34ACA9AE84DB6EBB7555B189B3F8B129C843CA1EE5FD5B095ECC0804DB04EDDD177B51D4943131D0D8500F7535D5CC29454A71574F1F846767997258BC34E1B52462EA6B6BE6079AE271181D1B87D6356B60EF75BB5823CFE3997317E0D8A9D3303E398D22A702EAE91EDCF55C5C9AD6BA4FFFC3E1105364074747D83C03B4ECDDBD8BF93598522EEBCE31A24799CF45E89795849C8CFA40EEB1C71E53E5853A1FA7BF9EB255E2A2A3E743EF485A38C51444D6C8EF2E208C896CEEBCC7FFFD9F8BAA6F2C6FE91D1864553429137C4D5303C2BD6B7EEFE7723F180AB1EBF33A438495673B7EEA0CD339EA90A8CD8D0DB06DF3C679BA01C50E4E932987F7B9EDA61BE6FB1D9071DE3A7A02C6C627506CD49B05A0EDC82CA4686EDFBA99ED9F4731F5F6D1E3D0373C8C0C5BCE32A0658319000A269BA22343C383108F2710FE830C4168DA39EA2CC1508431914259D9E420226B0445DA6C7456F47ABC627F7FBF30323222C88B21304230D3154A09808E661F7CF0E6663DD55B34D2B979556FD0D3C199E62A5852C085FC79C9729D99022EEAD133BD3C9D621EFFE8C30F30885CA9B387B4F39EBE01B6DDD6D20201346517EAFDF4114F9E395F5ABD1580859B8786479872475E48AFC78D0CD5042D6B9AA0B5B91989E54346AD818E0552D69368FAEDBD6E27782C45B78990D4F3096DB6A122B97943276CD9A8373A77E6FC0578E995D7D8CC611B376C40FDC757208EE99A085A210304FDC08A7BC38DFBAE87F85C5C27BECA67285504F67C241A6273F11F54791CA2DFEF270698A703140F3FC25F4B108BCECEAB16BEB1CD0F9B3BCA2F5B2C40344BD3EB5F9C94CF8C3EC0021A1012576AEF93767EE2CC59F691EA398C1738782CA61F11F7F0D163857F639171FFD4D308624F9D3DC7D081FE462DA2435B4B336AE15459DD5530D5CEE973E7E1D889D3B0BEA31D6ED8B3DB9A760F1B3A3AA0A6AA8A214B514A3E6CDDB411DA5A5B980FE285970FC0A1C387A0A9A9199A1A1B4D0620519448A4D8FE0E44112A97AFA7CD4B7CE65285A10C89B370381C6DAEF6FF252AD4DAECEC6C811F603EE1F512F68A805AF3C8E828249309363640B4A46D0B96DA79FAF02DD19C67C870F208D6B1FF823E444C4F1495F41E2FEAE30FE99CC66B13B36C60640052FAEEBEE79E552991F4D1097649DBDFB179139BBDC361F5F42103D0146C44FC370EBF6DCEE3B35A939564FB30F6A8577EF106730AB5B5AC817588061DED6D8C901B3AD631DD209F549A43063ACF10E5DEF7DF5DD26AA1E71A1C1A815FFBC843F0D10F7F083EF2E0FD70F8C83178E5F537F15B496C2289E1D1713E0B999FCD5E96CDA499C86049B98A3E7F3159257AB028FEC5B20A1F93B96BD7AED51005E62981D611A96C0832CBBA936418191B03056D5363C64B6B3123D5520DCB0893EAAE5BD5ACF69D9F7D83BB7C15CB36D7F6D9313EE31699627FF9D53F672FB3D220CF28CAD989A929B67DDD8E1D6C2CA1D1EB1D1C050CC2BD7DEC04F6E6B95579368C499FE7E516A4D208DF5D2852CEB177A38492F5EBDAA0735D3B32C45A73FA37FA3D451D1DF6F9156AE919776EDD02375DBFC77C5EFACD3E44106A177BFBE193BFF7874C1C11A2EEC3EB881168C65660697C7AEFA7FC0562BCF1C9C9EE9A80E7653C4E49A60A7E07953289AD08608C403588CF3251E90504BC89C75F69C9ED877921D1C2D265F90997AC152B0B8A19168CBEE1E30078F209E90CBFF69187A163DDBA558477B3ACF7D3421A7C475B6B81CC2FB40EBA61726A7A492757A952B93BB76D810684FDF35D5D30139A8589E999059F89EC7362C8575E3BC8D0716D6B3383FECD1BD6239C37CC7755F7F4329F0559126429945A9EF8E133E6D8860DEB3B50BB77E48B5671D94F8C6173D8481CAA2E59FC23BC344E29E708FF0A0BA1D3BC84C5B00FF93A3909411253E6008AA232E7A5B2524A4DAC98AF5C5D54D7D6188AA5E6CF11D39092B879D30678E881FB56559CE014F63A92FF864C34FCFCC5859DC866B6267DACC8C1499338848270E8CD4350162887682CC67E5A8BA6E2EEEDDB50A9BB08231353CC8A28BE2DF924BA2EEA047EEAE9E7985F6353274D4ABD01B66EDEC02292F5B5B5ECBBB4B796F645BC7EE82D78F195571963D27CC31DEBD622B239D9F734943E117BBFCAC3483333D32FD494B9FB4917A5318DC16050F57ABD057E006BC954A31A4542926C095DF3B6D4B92F36478C630584D7CC913D05237C4A218025DA27F0A0C76F7CFCA33ABCAE50EBA74C5EB2E399F3053F24C95EA9444D419A55836CEF85D2CE4B16C72E3A44B2379A48401AC516F9FCE93441F6D0E0209C3D7306AAEAF23D9B20B8054D30D21362F144C17D48FC1C7CEB08BCF6E661F6ED4819A4E726F772A981B994A2F6D77FF74F5C0409B067D70ED4053C0C5914AEF4E9D3CCB2A954201A8D26EB02DEAF901B02BF770A894F834CD808A352222007965269A22C27F5A16B96796E16EAF925886FC87ED58CF117D6B3351940CBF77E9A4F78088918C50FB50961D2E15C7E12CAE9B3E70B20BA14F149B93A8AA6D772FC09A51CA08428E44F989C9C41F1A5E50B33E3FBBCF0F35760727C8CCD5E42DE42B288D0E6864F7DE2E370E2E449D0B229186316C45C49FEA20E449EC4DEFE41F8C1B3CF33B38D5CCAC458E445244BE6EBFFF06D88CCEAFEFEB5682154A27E43BE0736A49D3B7C54411FCD456F98989BFB86DBEF99C5F76555C368EC80355954E655B2040B13180C201C3EF0B3A7CF78FC6FA049E6C33FE045C2BAF07207CD94C6AB62319D5ED5EF272CE04DCEC7E18B0E3045481390CF6C92D3EDB2FBBC6E2F6AA67E25AB3C72A1EBA2FBE4A9B3D08E327C2742B9730946A0DE15E490CBE47F093F3E69DE474F9E02BD04CFCA1752486FBD712F1C3D760C2E765F8040653563285A880834C163556D1DD36BA8D7EB350C33F0DDEF3D09A7CF9C86B5EB3A219648AC284BF9C8F193A8F91F674C568E9AFE14D735289EB1617D3B54505454E033AFA97AEF8F67F451D2D3D3D3239565EE1FD1B0764ED3DCA64D9BD4471E79645E38D82A024C62C6E3F110367A43176F340CDA987DA2B8E6CD6AB468013F2AA1BDDD2E7BDCD55555B59FF8D4A7EF8BCCCDB9159EEA4D1FE04D3487B66DDDC4E4ABD7E3293936E0941EE53297EACA8A79A61A995D496E33AF6621C6F919DAE36FBE79901173167B32395C3E7CDF0711F64F037DAAA9F02CF6D0A8F911C9861F9B0E4259552DCAE2E022C3CC965E28F46C741C2A984DD685DD616728C41C6F2802326A9625B96473594D52737F2C8AF628324F92068DB85C2E8546192F34638866E99E19CB7E06F275F3EC50580C49B894F83055E5E023799D8140A0ECD77FF3B7EE0E042ADB6822E57034CA142652B052F842075E7B139E7FF1E7CC93461EB8B52DCDCCC60EF8CBA0176DE9391E05D37B876B1EA35CECE93395B2D5E52BEA6769BAD7AD3B76997112125BC78F1D8793A74EB119D6343EE71031C64DFBF63067561F3E5FDFE0309E1374EFCA527F53584C17115894B2BAB28AC1BF0EFDBAD2A7A0DC0FC5F577C4DEFF46B5D7758ED30D3F6126B77BF76ED6FB49F61730001703C5A06D1509194BAF97203FD9C2A5240808A891D2485E3B8DE52B2F2F979C2EA7120C0761627202EC363BF3B9531898227994BC49D03A3139CDB4F7E75F4C32F82599FCA1FDBF62DE94A0F8E107EE9BE717A0B6DAA58A1262CAFD289F47A806901E93E08989F44C036313E0F295B3D93F0CAD8364F704EA03BDBD7D505953C3BC738B7A331789B85A4F91CF60235A0DCDA887180E1F91742982FE448CF5FE583C9E2977DABF4C81C7743A9D447194412457282368A99430CDC2040603885C39B4CE38616DAB5A90F06C1C3FF67C7B4D4D0DF9A6B3B228695450839421EAF9A4192BD91C5CB77B07DC7ECB8D70E8C831781D8FCDE13963EE1CD2FA355341F3C1473FFC809EB9C317529828BAB70CC5BEE441F2256C4546FCE10F7FC4123B1CCEBC4B9C1C3AA954521F98C1AA99DA392A009CBBD08DE226A6A3D8E048698B56583164C296CD9D2CE6E0F37AD837D0B57F5DE90E47F47100D170F83B01B73D84A749F3278B2E170E87B552C134D92223CD7C310B3308901F8F5E0AEE2F8901A85217956243119025F9C4EA4598131EF19AC028DF7E71F030CBDA5D8F90FFD87FFF2C79B550E33E002F1DF80590724B50494E955FB9EB0ED36BA60760522CBAB60C51B4207548EEFEE8D9E720A35041E62CD81C0A78F1E3EFBFFB4E3886FA09F9FE47D1E62FCE93A5F98B44D90E92989FC6050A3EA2B04C8EC81FABADAEC2560D2DCD8D4C9560C46776BF02E3E14956212D180A4D9739E5C7F1DB91A941561CCB07A42A23B09C6AE146D954FE61842264102E031FB305CD1162008A70B161CD0853EA8B2FFCE4A737DD7ABBAFBCBAF28E8989A9405AB55609519987EF28CA5ABB6C6321D74F7CEC11D6D35A5BD6A0EDBC619EC276FEC2C585A7915BE65393164FBD5E94B2E042BD8232911C289E9E7EE639387EE20434B7B401F0E164142226E56C2E3607C74F9E459B3D7A49D950D6854CC20DEBD73177B29DCF8F68D8FD343682F41B365E2291F853D52ECEA2661DC7EF96A1BA44D8D48542E94B640517D62B1784CB971A74CF3DF7087D7D7D34D51A3D032BC3461C7BE88DD77E4E0E3DD4091A376CDE76FB5C22D93A3E352D5B51612E1E871F3CF713F8DE0F9F61E6E1FBB1E7938944CA91F1A2DD287B69BCDFB295AB258EB1F2715C86533AD8CCF43404AA6B591CC4C6F313AFBF6E27F45EEC419BFF0454D7375DD60CA94E243E79082972C8205F50CCF4FCC19131AEF8CD9C70D9846364F6210390EC6755D049E9C3B68A71010B33C46559A8E60D2A2739AA8F438E0A24DE2C3737A9F2A6F2E6EBAF7E9F4CCF75EB3BB738BC55BB864727CA698E5E33764063E7B097FDDB134FC1FFFEF7C799E6FFA1FDEF875D3BB6B2F9F6560B50446C4218FAD0FD8303D0DB37386F986D4565A5A5A2988E32070FBD0DFDBD3DC8A009502427CBF1836540FE52BA08214B0D6AFDE42EA6142F43E9A3685F3F2AC44936363295B3A9E92FE3C353ADE13815A3C235AB46B658228D0C5768A18722AD9472D3485121AE45080B7365D36088325C7B2E765D788B50C1E976FBD7AD6DBF29341B6B1B1A19B5154F954AF2FA1FBFF3AFF09107EE87DADA6AA84179E971B956FC6C1432BED8DB0B3F7DE10558DBDEC1084D1F9EE0D7E9A0F0F8388C4D4ECDFB1DE50804AA6AA0AC223F69D34AB4A652F84ACCD8D1B10EB66CEA048FC765EA13F4FDC291191841EB464F0C09FEBB1DB449FCBB317C7E32FBB2A858ABA506835C150C400F45C58DCE9E3DAB50C9132AC048DF80CAA7E14B90F32986971022D0644E9498EF4D225C749F3DFD2C1E77B6D637760876D7753DFD8395062A1822823E32058406287B873C68682A565555B05C85E550229E8833EBA1AEB19965F2903B972C0C400BE5FCF95E181C1A42D3AED62418F91DC8F337632926B56C69B9C465EDAD6BA0167BFFFAF6763D78C652BC0434395370E67C374F5D0B8FD8B4ECE3D809A2F81CF144229141EB4A814BAD0FF04E2FC49D88026A4545450EEDD5143EB866E9FDA4C57A70ED45A21203F8681BCF51734F8E8F924FF542C02E7BDB3677EE1B9F09ADEBE91B7018BD2E1F6E5660727A0635F549A64835D6D723415D4BF63E0AA596070266F148CAF5EFEDEF857028021E5F9919A8BA6EE776686EAC87370E1E8486FA1A344B27566C6A2E74B2ACCCCB52E16ED8BBDB92E2A5B0681F29C434321A3BBAA224A25F14342D82A2740E7B7E8A4ACDDD78E38D052EDFAB92010C07148D6235FC0E65656554FF288DF22B29CBF21C12D14DA55D89F0C408F892C400062AB8F1DAF8E4C8E08BD8B75FDDD1D9D69A01E93A9BCD5E53AAA620D51538DFDDCD66ECA4587B4D4D15E833C82F8F60017F055A2D01738A56724153AFFFF9CF5E028D92585CEE15E91CC212C926EBDA5A997553C3F40D85C7F905E81BE86705AC989F2338F33D7CB9417C9EA81EEB4A66497F2A76F95E950C6065023E8A550B0683CAC4C404154B4CE347B0E18B27280085D7443933908FD7C791C04B553A694DCC108F46C8653D18F0791E4AA633354A51F8D91A86A6BC7E72D152762EA552515C7DF964CA1FA3E89D375009A9744AB714565191ACD442616142A07D2C21C448F4509983ECC4E9D33AF12391312D93F82E7EA30877F9A63D1E0F397DCC70EF55CF001626A0B16A045B1A15533E7CF8B0D2DCDC4C2F93A13A79642222E1C8B68D72DD8028E62134A086CC420A23D5B3F3BDF493E71E6F6C6C6CEAD8B8E5465485EB102685FC44CB5A0143500CE1C4E9B3AC8705023E58D3D0041EAF7BC50A2DB3CD5575C15E4DD7DC75EB2DE0F3BA58269221BF4B3118DAED5055590177DD760B3868C22EAEF4D1A45DAFBFF916F32E22F2A9F148F0CB086761643CEAFDA42265A97EF1424E9FAB9601AC26260D57C2C68A1E1E387040ACAEAEA6F4A59CCFE763892A34F61DE55C023F768C9B8C1E120BB8EFC78F14C0DB04C82B3C3C3C9C1919199940C2B8B66CDFB9C7EDF1AC0F45228E054BCE629B9A0EC1F8C4141B4144F9F52D4D8D2C63E7722CE4BD3B76E4103CF5E453F0DFBEF028F35FD008E552D04F29EC1BD777C0BAB5AD0C518C142FCA5C0EF2B22FE150F029247E3FBE7304BF07553067BD1FD1535BC9F889AB86014AB8A4991B9AA00C2D0536710355DEA6EA17E4E1C2750A91811881F2DC627839590D841071EC112436FC840CA85CBA8FBD7DF855DC3ED4D2D6D65255DB785D243A574141A6D28CA07B1E29BF60707884297B0D8D75D0DAD4C462F02B88E1142C24721A6A6BE1E63BEE82B78F9E60419B5237A1B4322F22D03D77DCC6833DBAEC1F1D1B664845CBDC5C743C3317F92EBE5304DB1CBE2FEBFDDDDDDDD4692EDF9C4157032318F049FB241EA6A7A7559A8CC12A1EB8D94896035BF3EC1762083F37234954B8077A7B53837D7DFD2E97DBDBDAD1B92FA3A82DA170445E0C15087EFBFB87581129825E2250EB9A2628F3FA40929770F4140DE2A0C095CDE9D1E7352A7139C531AAD15CA5C017A5B133022113A411297EFAF2017DC0682EA74667A6BE82DBE43399C5F309448D347E17E5F6DB6F270658D177BE6A196021F140BBC5E28187ACB394F088CC90220620C712F50EAE24B2C6AD09773C1E4B9D3B79EC450AE835B5B66D907DDE2D33C1885F55B3052850AA8D8C8CE9FE059E2AB70615481A0FE847D35058203D663920414CDE8C2287CCD45DDBB6169C7BE1E557CC51BF9150F08768E8F563AFA7DECFF2FC28D66FA0E5652F16FD5E100FB4CD8B27E750E667B1979035405F2C6AB1147C56A712B7285CC3FDBD2770FF9C6CB77B2B6BEA776714AD652644BAC22225EA2DB3977675F7C0D9F35D8C214811A434F4FABA3A96B8624C2ABD9CA5AA421FBBF081BBEF2C384E630B2E74F7B0ED582C36313B3DF13D247E18FF1E5945097CEF6C434383CA7DFD977BD6B0F7042310222824FB5A5B5BD55028A4A03294C14B181290B28830693082D7CA08E466E6E2C1954DA75313C3033470C2E676BA2B3CD5953B63C954E3F44CD0B6909E606D2C7288729D347C6A46AF2646205F3E6529935B9A52B88A935569E816397CF6EEDE09355595E6F17024022FBDF22ADB4682ABE1A9312AF41042069FC57BB3681F427FAEA6A6465DCDC0D9F72C032C8408145BA8ABAB53091291117281402083BD86A67021348859FC08062378B868603A0221025EE34C2662A954324ED997727DC05F2B393DDB43D1B9BAA9E9194929C1040B7D783A4E43C2A9955AA8D005B9986FE7A3899F7FE96516C5BC7ED70E961AFEF4F32FB0812EBAC327F86C2A1E27AD3F6C78FC70C9AE16FAFFBF6080128C400E259AE4D16404EC6D34BA8914C514F9C90911C88F407307E1B6C10C5E03110C3D8174327240CDCD8653423432867D56EE68AC6D4C69B011F5859AA960C8AE2E523F61390B95B8A544511A144B63132F22F16960CBFF79E207CCE2B895334622119F9A191FFE2E3E5B88A09F143F4AF3A2241A847F8DDBFDF04BCB008B3102B71A94AAAAAAECDCDC5C863C8CF8016D6806926870219CB219C4080578DCC1C3458531B3183507955E9B9B0DF5E1B921BF4D13BD35082F206F4CA4D30D91D99837914A8A97F2EC34548B92588C363D13E6E33055756A74E86B86D64F4133D2FA29D1836CFE6F7DEB5BCBF2F8FD5230402946286535A0E24453B2A4713B89DB316406367D1CF62ED6FB091D3813301D819880F404031508BD4501524EC8CEB85C925CE9F28B3928AF5145795D2295A90BCFCE7911F657948890CBA6635E8FC7194F24654A27A3400F25A06692C9E71373737DA4129055838A669242BDBDBDBD2BB6F97F69186031AB813E1A590CA828A2DE97CEF2A4496635E065763609140F4071646016038F4CD2C018175DC3E313840C6C9C84044A5A529431BF0DA440B54F84FAF2EA44465B134FA56A92A98C3795CAD891A825A798CF6673CAC440DFB3A0E43275654E672E5076C37428D23835391D4D45A618F453B20C39B92850463384ACC6E6FFA5638025CC4761747454A58C6414055989E69A1345999C4AA434E29A08EC24A2133370267071D1E0321081374205BADE460C41632E856C36E51260D4E59245A086BCA469822DA328652A88D5394DABCC28AA0FD514CFE8F0C0F95C2E1B61669C928B4A4AEE89FA324724119AA0901F297DCCE6C7FB931E934306B824C5EF978E0116F22E5AC583810AF1789CF48414C22F851DEC342F20EFED06B19D9CF8AEA26D17D715E85A1A4043C3EE686A5A363F31ADA9F8BA431629CF614CA0A9550125874BCEA466C3C654F0C6086DF26812D16790F864F645C9BD4D19BEE3E3E39705FA7F29196039A860288D546F998653D10494840C08BD36521E89B844643CE6408238B93870E1BE932383D3501A411F4697470541A0C66617A7C827CD45CCC50F359A3B90D2E314D24FF0DE64EBCFE03E297F94E695999C9CBC6CD0FF4BCF004BA10231437979B9303C3C4C296AA4408A894442265181FBE41CA26D1B570A1D86C83074032E166C7C66511B670642056A22CD27CC67134DF01E9FE1B388D2F12C0F6E51964FD408F650FAFCE582FE6B0CB00C0FA355445058989C4B349895CAAC1053A046CE7A35AFB34004B6F3DE6E43C291F82006B07146B1F16B6D1C0568A1C921131C01689B7A3FFD5D9A77988E91C69F40C2677C3EDF25DBFCD7186075A8C04404C1AE810C7D7D7D82A13C024D5B80FA239A9412EA0EA444B2C1B3446C2422532CE93B1B8C42C78085FD7542133351A3E9638DFABDF4F728551E653FF57A72F8E4C8DFBFDC2C9F6B0CF0CE3283661513A833083441F5DCDC1CCD584AE8202223B0C1B30E8743E40C41C29D1A530869583CB99071CD4AF210B1C9B44339AF5162ACDBED66F991542A01514635887F45660FBFB62C8B19D8312B43A01521D4D6D6423018240B43C0DE2C50B727E6A06DBA9ECC395A1049541AC0814A1E0D99637F03F50F8D0674B6B6B66AEF14F1AF31C0656286C51882CC4B620A4408686B6B638C61FD5D7373B3DADDDD4D8351B4BD7BF79AF734EE413910DA3B3879E3350678E719028CF57DF7DD57F2B7E4CF2F26F6E596F50B2DFF0F44B91E614568C69C0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (47,1,'IP_PBX_symbol_(24)',0x89504E470D0A1A0A0000000D4948445200000018000000160806000000DA7D5C880000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000005B449444154484B95947950D46518C7D102B3ACE88FB27FD266B244C6C1692092B4014B896654405A500E399215976BD993E55896639705966B71818585750159586E5840906B39952BCA1011F106AF6A3AC61953E0DBFB6384A152A9DFCCF7BFF77D3ECFF7799FDFD7C8C8C8682DD1EB441F126D7F86B612BD43640CC0E8FF8AFADE7C7FEBF60CAB9DBBAFDA7EB977E680A3F3CC118FA333FE0101332C166B264628BC214D4AEA23E736AE56EC79800F1CF61F9C529F2E43659D1EAD1D060C0C8D60FCD2246EDD9EC1AFBFFD8E1E43E71C3967F1AC02BEC182B7697EECDD078E049959D2E9FF72497DDBF6D93B5C8B1449E11B1C0F065B0C96408C881809E2E21351A62D45A5B6789E9CFB64E952B434DB53A6289A4CCF2EFE83199184C3C77808E289714A5B3B1FC817DFF6A0F3D37D9822D365C0219ADBB51C951A255A1DEAF44DE8307463686414939393989D9D457767FBDC1220427CD235235F0769563172D415A869EA40729606E5352D902BB5E0C7C91121564094ACAC5F06D0DCDCAE27A464E104570656541A22E2D2112FCD404A6A261AEAEB5157554E39B0A22E58EF710C4BCBD5A2B4B613DFFD781963E353D05434A3AAD1809E7363E8EA1F4541A91EC224E50F4B0033CFA3DE573215D95015AAA1ABA8445373337A7ABA313C3C844B131368A8AB995B02BCBBD93C6B8BC5E7642409D0E90DE81A9C404BCF186A5AFA5150D64C9C1581C14D848B77E8C8B2035F5FDF9B6939A71016938D48891209B27CA4661520475988EEEE1EE86BAB971DACDFF0C6E1CDDBAC7FF16184A3A4BA0D6DFD1750566FC049753562652A0487536FC27D6CB9DB217CD9819FBFFFE5D4F40C28140A68341A5454E8C868EAD0D2DC04436727F29539CB0E88D6989A9A6EDA696B1FC212C4AA32728B0DA9B9C55704B1E9833E019CD30E4E1E024B1B7BB3955B641EC060DCCC5416831DAB44B45405497A2132B2D550AA34E8EB1F4093BE7EDED8D8D85AA7D36D28D16ABD54EA229A5C2E5FA7542A8DE964356934DA4B14F879FF819997B7D754389F87081E0709B1D14892C4232D3911993229721572F039ECB964992CB9B5B3EB27FD99B3C83B5582E40CC5CF51298A873E92B4B930917426481057E3CFE63913988948245AFB9F1DF4F6F5A3B151BF303C3A366FE81B408A3C1B9CE83864E61781A6C8C7ABB171D81825C4A70949A0C9B2C090A42FD0D9D1D34B8E161FD9EDF091490E8B090E330491C4494CA40071C26824C408919BADC0C5894B18FD9E3C66552D12D3E468E9EC467B773FF26AF4082E2CC2578929B0E086C32A418210A51AC7598227367B1C6C49ED358B0E7CFD8E3DD3814A5D8CA92BD3989ABE8ADE738328ADACC1D885718C10D8AD99593C999FC79DBBF77061FC22CEB47721AFAA01C575CD70F5A5C32F286CC1F378602A05D8E47CE89BF3A1CC303099A160B339E070B9E012F5F6F6E2EEBDFBB84C20E5A4FB478F1EA1F16C3B5445A5C82ED02087747FBAA206038343B873EFC122ACACBA1E3E0C3289B8441CF56753096DB4DEC6F60B67EB5D76593BAC6C0ACC3FB62AD862BEA3C0CDCBA7A5BABE11ADA4B3A6D6364C5FBB8EF3C3A32412EA17019939F9241A541025CA702C980D4F7A1042F851F00B0C8392386770045AEA1D8C9ECEE915CA09B551944C4C4CCCE2C51229D9963F9564637A070617C7D47CB6033A02D068CBC908F391765289B0F06804B0F8F0F00FC441771F684A7510A7663EA43F4DD6E7E638B56E1E1E1EBBB88288C24036FFBE860461656D0301D491E27990909C92C973C013C6E30401500E22E3A5D0B7B421248CFF35D5F80B0194A87DB6B4B434767373FB28349499224E4EBDC11408E742054288A4A98821DBC38B89872F2314DF06B170E3D66DF0A263CF3DFDF18C5605ACD01A0AE4E8E8F89E8B8B8BA7FF89C056174FBF079FEDDBFFD87CA71D6CF6EE47B848BC109B247BE2EEEEFED6CABBAB15FE9B28DB5477F6F6F6AF1190859393930B51F841175AC32157D70C576F6F47FC2332562DFA022DC2ECECEC5E0E0E0E5E47395C19114BFA0B7650F272BBA723970000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (48,1,'IP_PBX_symbol_(48)',0x89504E470D0A1A0A0000000D49484452000000300000002C080600000023163B670000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000010684944415468DEC5590B7094D7753EFF735FD2EE4AAB5DAD160909014620102298C405DB404DA64E87627742D43A8C3DF1389D90BA6DDA4EE271625AC3C4F6D4782693C1539AF4154FDB090C9E34894DEA87EC20E300018C400224210492D06BB50FED4ABBDAE7FFE877EFAE40484A82DD84FECCE1FE7BFFD5FDCFB9E73BE77CE7AE609A26B14B100411830499193FCE65CC12DD9C59F42E5C027B1794670A5B21251047F15EBC93BF2F2AAD41D290042405C9635DE3AE185054D4E6282BABF7FA6B9F92442A5324C9A6AA8AA45A54B2A88AA0CA2A29AA42AAAA4264629F658C8AA2988AA49856AB9A2F29294D62B1CB2F7E7BDF61AC1783E4EE8627E4A2010E4952D7782B7D5FB3436987DD4A568B95EC186D361BD92C16B2DA2C64B3E2DECA9EC130888A795581618A851B97CA64BAB0565BD11BCC2BFADD32C026935ED1B8B48E363DB8992B67519992163EAAAA7A6B8E7D9EF39C492E97A5A3478FBAB0563964A4E85DBA1B06B017013992DDED72221EEE0C7773AF92D2529204C1825BCB9DC44FCBBE7DAA334ACD592D1BD0F2BA2F97CFFBB45CCE99D3F213F9BC16363523249A7A5FEBD1FFE8FE4D06142E1126C8858F1F9E0FD3A5AB213CD4A00944D0909674480EF73A9F93980885672FBFF4222DAE5DCCBD54B46FC16DD8B7EFBBEE9C243F63B55AB679A7D5C69C98B74BC81F8660600745322589649654F0CF944DF25694D3DF7EEBE5C9EB0343AD9245FD71539DEBF0F3CF3F6F2C6880288ADAC85890B46C9A9CB2445B5730E8580AF886620858B2286C4EC13D46850731C9F8EE95CB1DD477A58B34CDCCFC2AA7BDF09D1FECD6ADF66F072ADC9EA575D5E47295D0E08D510A86A2149988D168304CBA8ECD01043EB7ED017AF0F73E45FECA0A7AF55F0EB922F1A99D9224ED1C8ED1B35FFDC60B7FF54FAFEC699B678080BF2C73B9A876D93D506E06E345CC33852D4A11EF306026068A06B1E7792D4FE7DB3B16AC1FDFFDB71F3D62B3DB0E2A9A42F1448A4E9FEFA252878DB66C5A4FEB9B57523EAFD34FDF6AC306E8F48547B6F135DF7CF73845A393343A1EA6B23237DB6078495A234AE24FF6BCF8BDC6179EDB3D729B01B228CA6E6729395DEE42D07ECC206673E7CE7EA42E64403A99D853EEF140418DEFB20E45D9D87AFC2CF764D3CA65B46E4D0375765FA313673AA9DCED246749097FAF6618A41B260C00B0046684E832057A0ECBFEF9ED1092445394A4FF530C18B470DA3F71E2847DD7AE2F92C694D70D3230BA9D25D4DCB89416F9BD349948527B672FD2B69DF25076E3A7D7920C5DD8A6F55CEDA7FEE1208522711E1B0662647070283B0F429220EAE9548A82C383B4CC235363951BC5AB98E7D5A2201E2C1685CF2945612F8A85C7293C3E4AA9E974761EF851E5EB576F4A1D3A748876ECD8411515153CD3DDBB661919D8DDAB0323340CFC472693E40654D81EB4FEA21DCF4C18E9A09A2A1FDDF7A9D574B1A79F0687C768E0DA20259289DC0259884C0B76006B222BB07504161724494C901D2499072C5398652B36C7528D6EE85C1136E60DDD98A33CFB4AB9A16BCEAEAE6EEAE9B9420F3FFC07D4D4D4441D579018B00E539404853CE5E53453B8CDA227D98EF70D06E9747B178D21C104C7C7112F1A6A4E46656BB34A3F0B4282CCF018585CFB8963A0A7A7D73AC701ECF332182049B2C203B1AFEF1A37786A6A8A962CA923B7BB8C1741AD181BD96C9652E9344D4FA768727212DF4B503A9DA14C068267F95C9EE2B1B050DCFCFC2D0358192ADE775E8D51FFD01402C6E022B311B95A11CDC29C60620E3121B2D1A4A7BFFA15AA0A545156CB2F94FF8D442C74A6DC5F5B2FCB2CF5CA45F8C97C63A462DCE5A0583A95A61460CC0C48E13E93C9F2CCC482BFB0F339CAA433B99E8B677EC81D757B10030546214BD4FA6D54E5B115895BE16516552445920B738AC4DDCF6B822C120A138543E394989ACECF519ED5856BB1F0D0613043873550BB0D5EB0F194C8A0086170E1D0310BE36C619E2AC0D3E07A4D27A7C6AEF776BDD4DF7BB97B8667CDF2806CB8DC5E8A47425C413B9452C10C2C8C7942714554B0E37912759190B629A79B9430B13B80FDC0401FDCAB512A97BDCD00865140758211BCC848DF95647C6C834D1577BADDA56BEAEA96D4F0F71774E7DB6916D16FDEFC0F8C50CBA52622E3DDA1E0C8FBA73FF89FEF034A41B631334CF7A601A6A0CBE9E90455562FFE44644E86975E7EE515CB02FD86D9D2D292BC866B707070E4A313AD6F434A7E565555BDE391967B7D95557EC4874710C532640D3599989A9A8CC7A3C944221C8D467A4FB6BD752A9D4E278BDECC62397D412A219892A8EB1A4F71A1890C4DA7A6011D91434441F651D93D5CCEE654968D30CF3CA582066ED8702FB92C2E32348D031AF95CD8BE7DBBB27FFF7E1B5C6F6D6E6E16D7AD5B67003A39ECE0E4B163C762030303636FFCE887E7011181492C16138BCD9139BBBB634EF875CDD12C0FC0054AE1636C2A4763111820B20A4D8560856AD09707AD2CB1E015F81CFBBC766D5311A3291D5E11972F5F5E5A5F5FEFF2F87C9F2971BA1E4276756A79CDC864D2DDA1B1D01B5BB76E651896919BDCB2AE67F037694806998941D0006163D0A33B69888422FD5DD4B06AF5E79F7AEACBFB13B1280B680E09499489556746B004ECF42D8E0CAC1AEC7F0419C32F533E95A1BEA1D1E1936DEF3FF3C4134FA8F76FD9FAAC2C290DD97C8E72D91C65914162F1498AC662E8E2A47F9D4AA6831953FA3BAC9483F541C3D02F9886F18E4AE9636EBB3D78A706CD3260E517767DF1F17FF0D7D47EA218486752F4AD3D7BC35645FEAFC71E7FFC2B80859D2B5E34200AC6190C8779764131ECCA92BA3C63E8CA492D4BD5D81A3F3644C26EF08CA3E5537A3ED70BAFBE53220B876CB231E4743AD3A74E9DCA1D3972E4B618908A307256782A9A1A1B573FE42A2B63D4B4601B467E58C147A1D8EC08B79A9EE20D4BA92CC777749C3777B6B4DC8B7B07276D4C50A1AF0F0C522416E3399DAD6375383DD814F97D2D4D27F269BA92495227E01E0446332CBE909F9D169BDF66B1DD6F88EAEE649EFE726C22F1A86CB19917CEFEB27DCB962DE6FC1830056386CC9DBE18A1EEBE4881B84118692B103B56BC66889CCE899C8CA2F6F77BBE49169B95B6FFD10E3B7A689115A5992B3A31012216A1CE4B3D54E5AFA466D008C56A1347B219FA652E4D16C4920832674E44691C056EC262A35ED07A2B58B107F5A21250AEB7B9ECF040F3E8D0C0D7B1E4BF6313F20BA451131D9D46D7BA2F52397669F30AB9586C54C4810534A0C07D403930163CC2A28015A59F1D7D03BDF41672BB5C22C3FACC15075DE81F1CE27C67EB831BC9EFF392A8DA7971F2203BECA22AEA07F4AE830366517744D00613F40198A33C8CCE2D5B4EE3D8D366AB8D14D41D43CF094EA75F82EEF9791E30749880A0F454060A659E5560B5C03C2589B151A9400150D424C650E5422545F0910B7CC65D56CE4BFDCCC5B8CCE0D030394010EB16D790CF5B412BEF598EC647A348344EAE589C2AB08E29949310584CE3F0C8206414328462CAB891C36AA54ABCDB8335A2889F6C26537BF8E8BBEF20B8FF10AF48B1F6F29601A4B18C49EE72CF1D91396618F302522395963A6F539E29797D7090CA114FBE0A0F7A5B0F793CE554B328C09FBBD038352C5F42CED2521A1D1BA789788CBC912855466364A09191B18913E8F08258DB81F82BC1665E0165471290AAFCFE07FAC727625A5E3FBE6FDFBECFDE32C0106FE6A83B69681490B9C58B2AE81B5FFF9B3989CDA48BA0CE55BE4A0A04FCE4432716044F3AFE8B93D4E9765355A58F1028B4AAE11ECC87D1F77A29505549033786E8F71FD8449380D199F60B940925A90971800ACD21373935894C97A335AB16533299945DA5A51B1882E499CA07F53331E0CF3A7C8396A2A169F0BB39940A7D80CCEB021B3974C40209BBEFBE8D64859766E3FEEAF501B4846E6A5ABD92EFFC3894BC3E30C4EB45703CC461C5BCF5CEB136342B01AAABADE1BD4099DB5560A548BB9FDDF200EFBCBA7B7AA9F75A3F32589CFAB1C6C6CF6CE09CD9867543A1F0F7CBED6E9A31202B48725C47C00E87E3F8E3220BD4F59B743697CF732ECE9405BFA7AFEDFE32B0EFBE1DF7A0C223A363F4A5C7FE849C804908B0E8B8D435EF2C29E0F7D3189A9391E0185DECEE41BC4CB30440CB972EA106C4492960C4D6695CB982CB37F7BEC8BDE483A1ECFDE1896864E922EF772E5CB8A0CB45CE9112241A8884C39D9A96B7035F0A941450540466449E37E17962594A3734C161B3CB5EAFCFCF169BAD5827A073CFB2A55CF924943A77A1735EE967CA4D44C3804386152C9A4A24A871C57278E906FDFCF8097AEBBD637CF396C0336B56ADE49B77AEE3123DBAFD61547F83725ACECCA6534FDB2A3DF1D75F7FDDB869405F4F4F27E4F3C5A3415BB1C8CD6D5004F4B4F603FF78F00504A9FFBDB6E3E8A8DC1400AE4B4B4B78406EDEB4917BEB7CE745EE419A73D4158FC72982DA505DE5E7DFAFF47AE18D1025A65337BFCA94BED47D85DA3B2E72486DBE7F1360E9A238207EE3C6D0C9451E571B321163A6A6582C08EC20760A320C6144AB03D20E39375B5C2ED7B9C6C6C65E8BD55E3E88A0F3793DE487B4C290AE2BBDB4F391ED545BBD082FEF4176CACD3B8A6447973A946B6C5841938969121153532862C15064FE4E15ADAE0E0468DDDA46B2A150DE181ECDBB9DF6A7A3D1E8E4DEBD7B4D9A39C3340B17A3ADAC514840E20B09BB6A6A6A265BDF3ABAA7D46E39954C4CA75BDB3EE499C38E17B093EBBE8101C2FC3CDCB3D49900AC2CF84E0F8C65F0F321B582FD70E5163A9054903EFF78FBE7C88D341D413C05C7460E68A9D4D08103076E1EDDDFC98F18B34F1918D79F44D09D3EF5E1F1FD17CE9E7CCE26EA3FA8AF090CB7FEFC03E34F9FDC4DA7CEB4F3467C2E6D1C0B0641B7A791715C88111779915EA3C82EA220DDAEB750B484B1814D9F4660D75312C9A1BDA373C86D53BF87772766FAE1998EE9E39E680B4F3EF9A405C694E26F3D08B86A607D09E66B3CFEC0B6356B9BEF9B9C9C12D849829555525F05DF49B6E3BC2967270B88914431AF33FEC5E6B345613C8A7D66C1FEEC5FFF058F87C33FFE893E3A78FD5145148FBFFAEAAB89D9B45AA48F7F99AFBDF65AB6B6B6368A0A7D0DEDDE5918D00A83DE8E8C8DFCF3F1D6775FD2B3E9B380C574186E3F7DB69DDEFBE043EABB769DB2A0D58C3BB14B653F96D86DB7B293CDC2EB0BE737A8355FDAD5423E187FF2EC4734323CF29FC808E783C1E0F4DC9E40F82DFC0A24A0C392BC5EAF15DCA80286D4C22BF5CC236090F5BEEADA07A712A99AD150486647251A6A08AB03ECC0B60406B0B76718992B7A888DCD6B56A1CEFC199D3A7B8EFEFBA747C752B1D0C3D8A85EB671BF0B036E9EC2AD5FBF5E6E6868B04111378CF061B7EBB07E1DC6CA725F551348C9FA1B23A3E5E1C884C0CE7E380480F512470978130C2AB15325A8C5DAD58D30A291DE7EBFCD18EAEB790C1D5CEBC18307E3B3B1FF5B3760F69A2D2D2D0C276A369B7582107AF08E6A7C5E8231003BCB48B5AFCB6AFAD25426578E0C6661456F468F8736DF6F0E8F8C71BDEA1655BD9E98187FA6AEAE6E18CC535BF065BFAB1F12994790AB85CB972F033A29B06ABB1BB152096F043056E17105DEEDC467BBC55A5299D6B51A18E4733A1C31514B1F136D8E2A21977925914874BFF9E69BE95FD5E00B77E937691E27087A0B8AA11DF06219CC0D23BC3006FD93E082216CCEC0FD38EEA7318690C57AEAEBEB63737F56FAFF30E0A657D8FB18C41C0E8782BA684570DA70CF4E9B55763E04C6CBAA202BE3B970383C7DECD831EDD7AE79370D58C81834250C66BC96416101D9CC3C72E4C8CC8EFF46E5FE1782657CFAC9003A450000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (49,1,'IP_PBX_symbol_(64)',0x89504E470D0A1A0A0000000D49484452000000400000003B0806000000CB8C8CDC0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000019464944415468DECD5B097024E5757EDDD3734A33A39146A391B492562BED7DC272AD01E3050C9823366BB38E53603B95041C274EAAEC4AC510279838762584025CB888B1E3007612DBAC83C1E0D806BC2CD7B2F78156D2DEBA6774CD68EEB38F7CEFEF1EAD562BED017665BBF6AF3EA6D5FDBFEFBDF7BDE3EF550CC3A0CA264992CC3B8CCA5EA20FB619D6D0798F4DA78B6C532CC12BC2DA311CD6DEFE01809829B88A51E281D7F0B16ECC44FD6200C0129405AEC2A8C1F059C73341B850002AC2E730921809EBB888A15D340058666F63816BEA1B57D6861BFFCC26C93E45B1B9EC8ACD8E4DB22B187685704C0EC5DC2BBC7728E25C511CA4F0EF8A4C8A4D11BFE15CC77DAADBE92E787DD5E90307F6FFE4991FFC60070383775E3456A0CC307DAFE2B02F0FD4D6DFED80204E879D5C0E27399D0E7261389C38E67387839C2EFBF4B103BF3919181C0B8030182C4561906C00C54E35757534361A3D8E77F4601430CA170B081500785F65E85AAD07C25DB1761555575741BBA66685B6ED42ABB80601155340B6003EB69B1A17C22A9573086FC39E1F3E3995A04C2EC7AEE5C598B2DC4ABF982C805DC08159793A5A17D092E52B8536ED965015F3AF9C57B43CF73DA75FE37B0F751D24ADACBAF10EA7F52EE96222C10ACBDB6459566CD2FBB5CAF965D2CA25FC6A2833DE57F983F37AD97D5FFEC6EAB25A5AAA968CA0AA95EB34550D9631545573A8652D5636CA311D7B4DD362924DEAAB77E5773DF7DC73A50B890222F64B924D66D3AE6CDFFE712F9DE89F84B19649328A18651CF35E25492F896BA4ABB067EC0D9C8BFBCC7D736390B66E7D4D3CC76E779024CB74BE21F56F1EFA6E88D4CC6D4555BF4155CB378029C2C26B647EAFC4715B3C4F927592158914CD46BA5D82CB99C695D45DF93BEFF9AB5D9AAEBF02927EF967CF3EFEDEB90010A14B5664235B2851A95814A6FCD79F597E7E2EC0FB39EE13DA57552A95554697CEA5F1279E78C2399653BE521770FFFD65EB2E7529361B0D0C45E864FF308D4EC4F00C993459231BAE2BBA469A66275DD729545F4BED2D4DD4140E51536388C20D41F7F77FF8B3EB862363D7D964DB3FDDF3E70F6C511CB6AF3DFDED6F1C3B1B00A4005566A6ADBFFA25484DB2C88FC90EAC6F09A87008B4F17566784400A7497C26E9D9C46F782934633313084C7ACD65579DD3141FFEB7FFBA4AD57D3F72DAB5CE7CA14CBBF777534B53032DE968A59B365E45A3E3314A245214C3F8ED1B3B21BC8E8C4A276F9587AEB9721D7DE2F61B48C7B56C2E4FEFEC3A4053893488BC9A4193649BBC19EEBDE94B5FFD972F3FF1CF7FFBC4BC00E026F2B85CB4E1D6DBA8AAAA6A5ECD5E0809DAA0F943070F9E55F8C79F79A1C66977BCA848B690AA690093B5ABD1C9C1284546272054915A9A1B28581BA0F5BE6AAAF2B8E9D56D3BA9BDB591EEB9EB76CCD54D6FBCB397DEDEB98F12C9AC90C3EBF572860B379184E530BF613CF277DFFAEEEBDF7CE00B87E60600F757BB9D88E9CEDF1951732874C04AF4B384FC743CB629848D85662D6ABA09009B376B7AF7C1C3B4737F8F380F067C140CD6507D304013F1143DF3D397C8E3765132951116E9F7C9A46AA2F43001C06040ACBD0316F9187EFCE89C009849E1A9F07CB82F41D93CFB9C4476FC04D7E350013307E1002D28187BF31ADFA3E01AF3101FFBAA3D74CB2DB788E7944B2531F9F9B69D3B77D67F7AF36621B809802EEEE763DED705BCE21D6B57760A97602BD973A007A6DE452EB79B3E7DE74DE4F756999C83BFF9C56FDEA4E37DC310489E0182B9CF65F30BCFEA0276877BFA7C703407946152928EE00DC665D615C706F60086CFC9BC26237CDA24F3DC86DFEA6AFDD30038E0569A363F00BDBDBDE36FBDF516DD78E30DC252F40A0018F5013C67E3E564D66B44432363F436044F65F354051F478D49AFBEB19B2E5BB78C72B982708B3B6FFD08C5A69274A26F84FA86A39448E50480F9429EC627637DF30360B319083B3478FC884076451844B7C009E29305F9D9997D1533B961D2E31A80C9D024413303648666B4651061D7FE3D3C3F41486CD273660F30BB852B3638B66EDD4A7D7D2769D3A64DD4DCDC2C84B7C1BC365CB60299649252A92C25D359210C1896BC10DEE0A0827FC5B24E6FEFEE16CF7BAFB78F42709105E120B52D08533A5F4414D2697068842223115275DD383B097A7D08F505316116C610BE0413C73815151C5696875AC0C105924DA4C632FB8321910676D6549D5443A3329EE3C26475559B4B780EDCD5A54236ECAEF201807E7AF4D1C7E8FAEB37D2FAF5EBA91559E9CE8327B89170DAF07A4F092FA499C52F99820AF78D523A93A1C9C9189DEC1BA07C3E2F6482826D0C7AA53771060098392DEC5C72D6F87EA1A9F0AE9DEF52D9D0E64A1DB9F7D05C2EE6DB18005316830E1DEAA6783C4E4D4D4DB464C91200D122589D1562BA062BC5945BD7592833D728816B8A8502848ED3E8D8385C2287EB657010062C5B83128AC542A5DF513C93040DA84FD7CE99DA5E682ACCFE875A60AE9F7832C17229679B6115D32EC502E7F33998BF19D3191C16B25084A048D68A85A2D8178AE6BE58B96E1D3359AA782F0BCF20305099749A7B122EBCA7C4D5E8191620CD90E39577231F88041F78E07EF11C1D13D1F43939802F165253633D35C105499B62F7B3D0ECFBCC21E6B19564B13B56DC0056C08313215D9C1BC22A6692A71945389CAA42F0320F904164E8E40B331B32A70180971876A76BFABC35ECA13ABFF37D87C1CA56C6E4CA656DAEAE11F7068675553D383E7CF4C9BAC645773B1CFE1649242E66FC36C3974864208826CCDEB0DCDE1CC6196326189AC825342AE473C9C1BE234F1CDCB5F517FCDE4A2F42993D2BB7CB43277ADE331B1C90B89E094EA4BF56AA2B73049005E1899497AD0602E3CA74A8E254229F4ED20B5B7E2AFC2E5DD2E78B027C11D516EDCFA5A762B9F4DEF742CD1DB786EA837F00A1FD660C3F0586D961B324AFB41D5968EB781A04EB98AD03E1579D880EFD72EF3BAF3D96484C1EB6FA11DABC51006648BE40C00440B19A1C76B3B353C9F52BE1EE94B95A9AE2BD64BA9164ED391AE40687E70480B50021CB1608198CE8F8C889A3B1D1FE9F2C5EBEF6F2E5ABD65DEEB0DB56841B1ADAAC26CA796D857C766C6C34F25E746468FB9183BB7F3B3111EDB3042FCC6ECA9E6101F96C9AEA1B5B7EA70D11C7DB6FD10B67922037A3256B2EFAD7BFFEF5FCB66DDB8A478F1E8D47A3D181C387F61DC4F8EF9FFF84BC4D2D2DC16BAEBEA1ADA6B6AECE53551D70B89D0187DDE58776E54C369D48261353E9643A9E4CC426A391487F6FD7EE01AB019BB784E6DE8036570BEE34000CC99054B5F43EB3FEF9A3007C5C9051E5C6C58B174BEBD6ADB385C361E5B1C71E9353A994E8CC7FFCE31F3770AC777777A72726269200446A6C6CB4E73319E5D7FFFBFC6EF8B42D93C9C833ACA1D27DD62DB3D62C3F2957D6222A96763EFD00F662CBD7CCEDDF5F38867A1C9663A09EE7468784BD687A98AD7ED092687EC8DC28C13BF95C168D12951AC375B465CB73D62C25842495439BE4F7FB6D4B972EF5B4B7B73B3DD820901B5663838B48485634B85571E5CA956954A369E40025E4022AEE9110D381A35A74B95C1A2CC400407A7D7DBDB162C50AE3A1871EA2F311F69C00B045DA91B7570A973FBCB91D3EDD31DDE4B45B199FC8FC9817B83F60ABEC95E9B498F7286FA7139BE14854D40298BCB26AD52AEFB265CBEA5ADBDB5787C38DB7389CEE0D70CA5A082773A8524B2514769913D954E6D9850B17BE8CB8EF74F90257B9FCB586A2957AF1FC3C728202402A0218EE2E6B4F3DF594F6DA6BAFE9CF3DF79C5E59E7395F20CEE0802A4F351DEBDE8F584E665ECF2CCC610F59AB2459EDA8E98E9E611132D896995763E6D5441812E930421F676292879318B2B5B6B6FA60FE9E6B3E7CDDE702B5C14FC22A6CE5B219A3197411EA34DD9F4A675B11E9373AAB7CFF5AD252DBCBB6AA9F0240C5B03939AEA5A081A182AEEF579CFE5731C5DDB0882C00293CFCF0C3455851F9DE7BEFD56015DA830F3E689C0B8CD300D00583E6A975D132F254B9CD02489099CD8A06160956DAE076F337C566B6CACDD459B15AE9E66F5C03FCE0D91FB28538A1F9B6CFDCFDD92FC2F29795E7C80C39CB1B9B9810098EC949D2B59227F069A7414A16D732BA26D71A520DC0C2305683D53E3BA56906F82503EEEAA75CFE15AF53FB515B5BDB38949703BF94601DEAE6CD9B2BD6717612C49B3961207F6DD014FE034601D36D145ABD7C196D7F7787F7BE2FFEC5977C7EDF62750EE1E353091A1B1FA799A9A82E298D4E97A39515F86221495D4691FCB0C8363CB30516D9ACCB1420BB844CD06B18EED50C4A49D7BE12C9E653E552A64BD2B4E7839EEC165847121691834568B3415066C565492D9F8A0291893CB2AF2CB4275BE52F677B3691084D5FE32C91CB64712E0B4EE0FBDCE092B56BD788BC9CF3F93FFEFCE7D73734841B382F3F236EA380619EE05C228B02C687C2C780A01E8FAF0DAE40C74A793AA49520AA245CEA787C9406C38D6281C1035F6CC63CC2386BC0A835ECE4723A7DB092ABC12D57E74BE5472633A9D16C31BF19206C67B7388B0B208FB79F6A8BBF73708C22A329BC02793F86C4AC8FC17581B82659E7F07B49C6304EDD170A06E891471E16D559436313D5B3F073689E013A72FC042592097A67C75EEA5CD4466B57ADA0604393153D747A31312684E77526399D2299BB46FBF691BDA999D7D868A054A4C9D685D4CBD515CEEBC1252128A44372F0129FA4D8E5C6C2607C0D186EC7EC15A959D520AC4993683C32446E4F155DBFC645CA25D596F6152B1DB696BE84A6CD6CB052B929D3C7B220475E1152100D9A9A5B682ECD73C5D67BF4384ADF043951837CE2B69BC9ED765143B889BB33A2C8992C176939E6E228E4690AA1D44867487143EF357EE48F13A4A1225490B51A8E512AC426C9B56419A5617DE00F5ACDD7F18CF87894794B37D73E44F265CC6B01768F870AC8E3CBBC9A33A3A72689DFA5E9E603171964E8D38C6F565F66A5A66A6571DB8205CDF4A94D9BAC26E5E95B19A6DC7DE4286AF63C05EB6AA9C6EFC3F0536D6D0DE58B6594B865529C0A3539ECF42700809F3FC5E65FDF088D176810641D1F191235888C28220128A5AA5AB4C9D835DAED4E7263703D50840B82A71D6EB7DB0932D4662649A703C0454C26452D0BDBA7577B2F84042B753CCC88B2992CACC863BE651600AC80DE63C7C562494328487E4B780661CDCAE5A2DD9587EBC4E25314898CD1E4D41425A1792FF0DF5017A4ABB81102D0134D2D3488FB2200245A2C50115666E77509060056E2C2BC78618679AAABF7E4B7F71CE87DF0F6EBAE5AFAD65B6FA5EBEAEACAE0035D39CD03908DE96A894E7D2973815F454030AEBD3992704F91C1E0183F7B3B76B24F80E7F779A735CFC4D7DC1816C29B55A94B34333A3ADAE88AC03A2B524C214C4ED2E8D8845871B6833FD6FA7C74A91C109A4E70188525C4B16FA9F20AF3EF8B0C8BC5923400BCF49235B57DA353E3B877321689DF8B47BE78DAD218CCCC504FE5ECB4A36B02C817CDA448D6ADDA1F4159E2CAD130CFB911C2D764F31A3744AEB8FC12BA6CFD7A61E6B3B748748C32D90CB580C02A5AE71E5FCF91E348BB87291CAA174030A7B00EEA5099F2368EFC005AA35A9C2FEDEC8475C4C5DF1EE8EA86768F503295A546FC5DBD3F60364A744ED2749A9818A73E54A3F5C12079A0947C2E2FD965A5DE90E8D62D5BB6BCA4CC888BE6474C92ED7D7D0B65362774F87D235D79E515A20F307B4BA65274F4C4095AB76205D5435053FB3EEA397C0CDA8D0B8D732F6FF7BE03C2021BC321E1063CF1CE45EDA2F1C2DB542201AE0888738FC74D77DFB5494493EDBBF65057CF1172810B5AC13FCC5DB1581CA1B344D76CB89285270396551BA8A16864E8373D3D3D9232230954B94F964A23E6EEDF23BEFEA8868ABD6E59BC4812E9B07CAA412155EA7F49688AAF23D7A73B6EBFF5546364967B1CECEEA1259D1DD4D9B968DAF47B8F1CA3C19191334912FE7CA2AF9F0E234AF07115F8A4BDAD953ADA175253B841CC8901E56788CE34C6A56B57D3B2259D82A3DED9B19B4E40F383C323B46EF52A91BD1A2E27555579604D93073A5B9ADFECECEC342A16C0765F402E9E9121B8A827352E0275D175355B4B9A2868CCD6B22ADA5365ABCCE58623AFC17DEB1FEE87463C7386BC93FD83C227AF8175B0F09CF747A2A30883C74E15D3B3705B0C61A3E313BC982142E62E58C6F69DBBC53C9A1A1BE00A1DB47CE9121191784E51580F93286F77DC7A13FDE95F7E85FC5E9F008D7FE70E1612222DE0727C211E8FE7EEBAEB2EBD0200CF388D583C59823095969261F5D62A4B55DC6565D3562B8DC6B2B967506EBBE9065ABC68D1DC1D1A30F561087AC99AD5C2FC784B2453B4BFAB7BDE4E025BD181AE1E911AF362A85ACC8B8556C432419E27FA07E8E8F193F4FCCBBF1279C952689E53EE50B08EC20D21FAFE33FF89EC324237DF78BD702156529E8A343ED0FFECC270DD40243259121DE8191690E91F1ED859D6F5CF150B792E4FAB0C4D7720C6DBCC10A95365CF8762CF79832CDB4062DE60EDA736FDF8F9171B5B1734410B2BC4A42A5B574FAFB096C51DED162045DAFB5ED7ACF5C2D36108F8AA4561C6094D08A1F2388465A697310606074DE2B2FE2487FB76EDDD4FDB61F66C7D4C9C9C5AB375841BEA452864258D4422F18EE6D023C96432CD4512C6B40B3063E563D1E8084642A4D8E6F73CCAD97A710865722010707FF29E7B3662928D2558473718F9A55FBF4A353E3F31182D20A37EB03B4FAAA5B94958D141689E174C254BD367681FEE31119B12AD7119E165DFDE7DE4F5D788BF87722895C910E2F50CE8A4D3E01B85DBB0AF6FB87C3D78C94905BC2B09772BE5D3F7DBEA7C93D5D5D545AB4C26C56A4CD28C8F1A79C52465097ED6840099950DF57D4D28D4503E3980789BCD911B65F49DB77F4C98E7FFFCE265BAE64357D14A68E28E8FDD24843D8CEC2F8382479AE7B1A1FA200D0F0F8B94BB09A18BCDB8AE3E24343B303824B42DDBCE1EA99898375EFB21F12C2E9E261009FAFA07F62CA80BBC3E31319179F4D147B54A51A4CCE8CED2ACFEDA39BFE7E1F6566363A3ABA7A7ABFBEA6BAFDBE1743A2E191818729E3CD92F267AC7C73E0AD6EFA49B365E2748AF7F604894BD67DB380C6A86B9EEB0FFC07E72B83C14006FD4FABDC4206B86715A7E311779B62F6CA375AB560962E68CF2F8C93ED5EFB0DF8FC42C06704B334B6265668B7AC60FE7F50DDFE6CD9B6D70810CFC6B64EB6BAF7C079716B62C5CB8BAADB9E9C3FDC323E137B7EF927EFDDA367AE2A9FFA0CFFFD1663077D834D73960E575868E056D485A8604E9F2E73A2194BC4CB4BCACBDAFBF5F1468A74892E6B422B7CB4DB7DCB851A4D74CBEC7FAFA687C74F4E9C65AEF89582C96B51A23F3B7C42E64432625DAD9030303C340173CA74E0CF6F50D63EC85458596B5775C174F67562239F16C7DF36D1105D8AFF9EB0EA7D33943739220448E0AE20B55D415D168945C10980B2573ADAF2C34AFCDFBA18559B47DE8CACB69F992C5223A1D021F9D387E72241CA8FE3ECEA7464747D5B33644DE47EE2F42E87DF7DD97E066252C61129318C4B57A1C8787FA8E0F42B0FA156D4D1D8BDA5A6EC624EA8AA51C4DC610D751C3FB91C7B39F7201235C0AF500FB7A115A67D2E3C83139394993F118F28BEAD3486FAE2D8CCCF1968F7E447C32731C16D37BE4A8AE15D25FB5F9FD51AFD79B7BFCF1C7F5733645DF0F0EDFFBDEF75458821689448AD05C0A6E31C16E0130EA004038934E460FEC7AB77FE5EA751B02F5F597144BA51A36ED1130731F1224CE2B385AD423D73FCDC6CD900073AE11AE5029CB4375A80F0C8D0623E3D356C499EB276EBD9916C06DA69249DAB5E7004D8C8D6DF1389D0732994C02099A7ACE85910F680986D56BE02664311C0E67607231849CD17C3E1FC5EF13DD5D0726F1FB0E77555568D1E2A51B9C0E4FC7682EEFE4E5EE433D8761152572395C0473219FCF3B6F8E104F2431A6C4172A95A469CDEA95F4916BAF16FD8AD7DFDE0E70236336ADF0A461738C21E72F3CF9E49306989F7E2F00CC0282B8E9C05F8323D554018248B11131E2B086086E0967D3E9F0A1FD7B87708C10DAB828545B77452C910C65733939968D53E4DD51E1F7FCB0054D8DA81043E27BC0CAC60D1637EA7DB3C526214AF869D3EDB788E4EBDDDD7BE9645FBF9E8A8F7F0D370CE339E9D75F7F5D9BEF23CDDF29007380310D84C3E1C8974AA5290B845A2649E689B1B1C8288D450EA3FCF52D6868BEB4A06ACB0746225E2631B688AEEE5E9138552245804BE81A3FD2E32A14408AB098A58B3B4555C821F48D77DEA5C9F1F1972455DD8B5C22363535553EDB17AABF37006603C1A115AE51863FE6903BC400461442326106014A0373C5D8C8C038BB48C8EB09866A7CEBC6E2536DE313314FB1A49B490A34CFE5318FCA76C56597D07BA8197EF6F397A813A976B0B6269E8E8D7D075617E5B5018E5417B432F4FBC4A2E21A20CC3208B3809C3C098E1887250C43F03A4C38C440E4D2E920E6DEEF578C6A5F38E0811FB7A396EBC8E4F2C1442AE5C9E78BB26129D5E0C56EAD3CE2ABAE6E98988C2960FD7F84D973F4493EFDF4D322DFBF58009897309B9A9AD24C98DC30C2F51A5C0F00140E09B55C17495A690439FBFE5A97ECAA75F999F99C6583EA74C916CCA412E5925EDAE391E582AEEA83C54C691F809C0000A54ABE7F5101301F615A5691EBEFEF4F8030A300C0835BBC10C407730EE01E3F1FE39A07C72E4592EC865E2EDB543DA1EA7A0ED78AB82F827B86F1B75936FDF35920FD7F03E01C56510806836910185B85239BCDA2EE727B20980BDA754150171F730B0F2389AA34ABF2DA79B19845869902A8E5F3FDCF18170500F35905473C584671DBB66D59FC64035F88FFE1869458E1FFCE26BEB37338102C4A65FE7E607C7C5CDFB3678F7ABEC25F7400CC05061F02844A24113EFDD0430F49DDDDDD2232A01C372ACBE033BE1A39EFEDFF002B9CCFBC01A03F340000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (50,1,'IP_PBX_symbol_(96)',0x89504E470D0A1A0A0000000D4948445200000060000000590806000000C1ED215D0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00002C514944415478DAED7D09905D6775E6B9CBDBB77EBD77AB776DAD6EED12B264495E458C31D8310187CC0C2140C114542826AE09613C1E84A6B214496A3209C34C30788050A13CF60CC1408C318C2D5B966DC9B2F66EF5A6DED4FBF2BAFBEDCB5DE69CFFFEF7BEFB5E77AB9F6CD910D55CD5AFFFDEFBDEBBCB39FF39E73BCBFFB7A0EB3A146F026ED49987ABF4377BD357E8757DA507BC8536C1FE7E36C253136DCD7EFEDD60826E23BCC61B1DABB73A2318035620BC844DC6E6E0BDB40A236EE6C83789AE14359537ED5664826C6706273411DD89CD83CDCD9B937FD794889B2105C52AC72474165B065B8A373ACE1133709CDC724C906DA35FE44426C2FBB10579A37D6F11136E961AB23341E1C44E638B635BC216C516B37FF75663825C34FA5DD87CD50D6D07C3D5B57F244B925392455996645976C8A24312F0C00192240B4E878CBD040E3C76C812480EEC25B317017FC19B04F87B90B077F05EC6CFF1922089121DEBB228D2B5743CA7E17D1497C39573381CB9AB03FDFFE7F1C7BEF294CD1E68B7A20AB28F7E523701C921377B7CDE3D4E222636B32FDC970BCED331EB65997F8F88CFCFF37326538861D41303CD5E22A6204344EC45019B28C0D4F4E4252E8559DE549BADB82519E0622A47D7FC345AD948C54F901620F1260A3A7E59B759640D2D39359DF7D8340D2F8174624D055DC56FE14534D476BA4014D41925F18851D3F80D5E55544152451048BA641728B91CA9C3005749491B10805B5505919EF72229BC3292E8AE03FBA1B1A985A90D365AA5957B43ADF07D5B9365735FB67D2E5AE7D939D1FE3DE35C24320FE72F5D04455149227D45F6E79662805884F90D2688E02E0BF9A1A1B9C5D0D58C8046CF8ED768F2759BA3B03996B7BAFA75E073B920938CBBB9543A8A60F02DC58062182A0B34A625E9DD713C841BFA9EE98348B722F18BFD00CBF395444190855FAFB40B787F6482F06E38808F1C3BE62C9B170FE440D9A42B4AA5AAE995AAAA552A9A5A05D8AB9A5AA9A86A85A668695557E635559F57356D5E55D4790D9479558579B487A34ED9F9F20BCF3E3971B3185010921065B1E0DC42340B5FFFFE2534982A52014D28F62241773A66CD705CF39F2B20EAC6F7E8D8F89CF615EBFBD403FFEC2FBFFE1770F73DF7E44703519F0D829B43FC47BFFAF5CE6C4678BFAEABEF2F57A53B5551F309880074BA87A0B2ABD3DD54C1A20108A2104470502D881ABE0B7E80341134070326CC31C1FEBE8F7CB64794A417F1EB2FB93DF24B3FFAFE7F9B7FC70C100D5C5E70CEE514E1B6AD550C11111212080D998D114C636AC33C479F33BD61FB1E3BC77A7A598D5D8B9D1375A8ABAB2B1C0485CFF0B660E7578EFD5D932E088F239A7BB8B16E5DE5EC5C04A2F1247B3F7D85CBD27309AA81D608C969487809D1197A7E88EA740A4881CE7F43CF565B5509EBEAABDB53E94C7B4FFFD017045DD03FF6078FBE85C0E24F9FFA9F7FF5EC3B6180AEE454884797A02C5CCECE79DD327CF4486B01E2590D05C996C355F43D6939E2B19F33B7742A859A400397D7ABBC1DC21F3BF63DB7EACEFC7BF41C1FABA9087B0E1FD8CDFC1222FCF0B50918C1363C3A09D1581C44BC8F4A239C084D449734466CB64F0447884C7E4C6BD33AA8AFAD86BADA2AA8ABA984B6D646A82C2F8374260B8FFDE9DF810B4183C85487B8177D981F7FF20BFFE9A420097FF2BD6FFCE79337AE8250C1B9FD21B870B10B3C6EC31F9065272214EE54990E95C36896834568C951F8B9857E386364D38396C8E932CE8B92C0449E5E9C3966888EEA1B9B41387FF18689FF177FFBFD07E5A0FE378226B711C167234BF08B175F8786FA2A686B69802D9BDA606BFB0676BFFEA151181C1A039FCF03A8DFE1D5536791F13AF3610CE21B8DB4521D12FF339FF8087B27FBF6DC2F5F41D8BC8474721B6ACB505DE44C1E4446BCFAF92FFFF94F5C0EF8DC7FFDB3C7A64B66001960228A0F6F160CFA9968CA92C318B1ABF904A432E8C646889539613A5A2B72B4543C14343AC75F0E75A9C6BC5E348382C47E470F4D0FAFAA0AC88A42A3E08689FFD7DF7AEA33C8E0EFD0E815558D49113121935390D8E3D07BF51A549405A0A9B10EF6EEEC849D9D9B61CFF62D86178EEFE0F1B8E0E5D7DE3298A0EBCC0E6DDDB21EEE3EF43ED8BCA1C508D9E2358F9F3C03139333D0B8AE0E4E9EBE086E0F129FFE09603181EECBFB07B16F7DF4D8DFDCF55F8EFE51A43409C01F839A83EDB7ED43D175AEAA6E565741D773C4A442476C15B574F2D5572097CB8AA512FF7F7CF7476D4E59FEA626E65589443D6B5CA560CB64734CF52F456378FD1CF87D5E54AF2EB4710EF8C8878F60EF84975F7F8B31E5F06DBBE103F7DECE9E877E7BE2F5B3F0EAE9F3303BB7C8EE79E6420F23B239FAC1CE00531A8CB0CA363C710C7FF2C5D26C8024082E7488888BBFAE8DA442CD29253F80EC747C4050359745705DB3886E3240D78DFDDEC16B706560949D53514A8950743F620209AF1B094ADF3BF9E62538DFD5076DCD0D308E237E7E6189DDCBE3711704848D78B281992D3554D49096FFE6D8B1635F3A7AF4A8B6B60480A14EDE0D3FA054478C5400A9A352B72B577A1FDABAB5D3329E26F1758B19BAC500EA75F61D43D590046CEF580FFB7675204A4A4057CF20F4A1BA9A995F002F127B3DDA8EE6865A0A8D404EC94116018A826A3287FDE8181AF344CA466C8382CB9900412D5B1D22445F020A925844D2BE65B22A9CEB9D035134303AF52C3847C7C82CDA17D839817F077820CF185DA2F9F90ABFA773870E1D82A6A6261B030C2694BAF5F6F4CCEDDEB36B39D14D836A33AC12DEB4B62A0C4B88823A36B6C0CEAD1B99F1A7CD8DCC98289B636AD5EBF58082E375612906F7DDBD7FD93DCF5FEE83A9D90878D0C8311B66E8A0BC2DB031229D4E8BD3998C5EA2238684910B8D603CA9C0933FEE331C2ADE043D67F41A1DF37DEBF31C3F6F9E2BFC5CD07205D7F9CEB7BF55C4008D19EF9219D0DB3B7BFAD4693878E8A0416C3EBA89110643F8C8C7FD7D3B3723126A5B2671DDBDC370AEAB1FE16982A17D8FDBC3707FFFF004545FEA855DDB36433C91647683B69D5B37B13634320E83086B47C7A72199CEB20106B6D14F83626C7CE2C6FC00A148579497B9E05B8F1FB4195C84A662DE089B48226F487938BBC00F102D14C5A2A0B6E828E95DFBA628E4A8095A696A4D10D66F3D243CFFFCF3ECF88E3B0E3320A19B6AC7849478BCAEA67C19F1692375338884CCA29A717B3C86089AAE1AEE9FEBBA0AB3F34B303635073E544BCD0DD5D0DA580F35D5E5D0DABC8E35DA46C7A6D0765C868CA2320948A5D230323A0A49F46D1C9974A90C40CBEE0BC2E8D000EA400FE3E87551500102128DA8A9B52FADD0440BA61928012CF125F59045FD2A22081024492B81F82C9781847650FAE1B9E79E8337DF3C0D0F3FFC11E8E8D8C2A5C050416E04E4FB776F61486871298E2A28C9747E14FB251CF5E9ACC2DE57E794D78DFF2C677C6E31CE060A49E6E0B5196CB310F47BA0A1AE125A1A6AF0BA0A74F78FA04EC5C187EF3332720D2626263900405596490BA53100DFC9E3F1B230814AFA1A892650A8D8C9335E94E972E6B3604EE674399767C59C3C2BC6C2CE123B2F316A0B8C30A651A35E41AC9E4558C86022DEDFE9F1A311D64A213E85AA039AAAF824D1C9CECFCECEC1134F3C013B77EE84877EFB21A8AEAA62F773E3F3BCFA560FAA898C0130F47C78819C3F2F12CE1CF1F6D15F1C0FB1533187DC181A9F83A1B159233D8512373F1F818181ABCC4BD678728A06416C312291B4DA73DAABFA01B96C9A8D98803768E46EF988A7201DEDB311AB52764B832CEA71D2B9840CB2999C0DEF9B69C6BC3A1245535D898C192257454E8F0375AB8F9D8B271228B663D765002F269078D1409DAAE4C292C359F09D9E9E1E98FED634B32D5BB6B4437373135457571BA3DC32F2A6C70B7CDF24B65E142AD20B0E390065BF8DA1319F8F44606E761EE6E6E77150290CDE52D354CDB043F8BDC8DC94934777D5B5FC00C4E069A8696DE58998F7DE111B1BBB069954E27AEEB0C0336565D81A510282CB7C097EAD643209838383B0B0B000E170190BFC5557D780DFEF4329757215611058B0A1309303F4798E49690EA127496A16075A06161697606E6E9EE9791A7C6663C4377B1B1C8E8C8D52764FB25776AC2C011A2A21E1DDC90594EE07D04B2BC21AC924074FDA57A2CF20AD14D5359BDD0691079C4C26C0E572B2201A492F9D23754804264233B5A8904ACC5AE7720CFBF3EFF07DEA4D9F43D55426B54478854B405E0A746D6666C64C2EE556CA88D91E1C782CFED79790612A4D554BC9E8B12C5E2A199D5839AC2E5A467FA5A6DBEC00D74BDC49336249E6E70521695D5FE6F0B14684D64CC26B2CC067305281542231383F3F912D26EA2A36C08865D8B7682207DFFDC91516C71778F9A6C8122C1A3F67ECB32618C7A26EEC17FE867F667E971F3FFAE8BF837DFBF6E519802FA02BEA5A455D8A59C8158B4C769555D64FCB0E578D9D0106CA2A445DF673D6A5F4BCF397EF8BF78B9ACDBF58C6109B04501BBF76F51F6CA535D767000D2C328EC50AD78146D5CA0F0A66AED0FE4F3312338CA8A245E4FC39735F62A528A290674A71DC49638E98BE1603B2DCB59FC097F64D8DF4FCA0AEA5E3D38868CA5789C730886D3246E0684CE790D34CB7587BBAE5925BB0B4900976274FB71CC0BC4A62EA489B9E1CF9E1B9D77FF9235E5EA3AE89824832258494882C9851A42DE073C0173FDEF19E2464E8F916D1FD1705495D8301A44BA97C718C854B52B1E468EF9B9395EB367C2018AEBE1309ECB4D71DE725C0F07504A15002F204CFE31EEB34E8795EE8B67D4B7A964B463CB6D4D37FF9CC3706FB2E9E205F0F8C5A57B5243FA0BCAA06D2080793B1453EFA79059B955CB111519698AF20891C5AF2EA3633C66F41360B5ED875693E64C0D40E798F68F834C989FA657511A05124189E32BDD41C9786251C79F333D7FAA6A3F313275CEDBB7E271C0EEFE091817CDA5110D6000436861480CFE2FD22E27346657399C8505FD793674EBEF04F9CF024A5091A30C575ADF2AAD68DF039FA01A465E941199434896F9513E6194084E7992086FDCDA0147370CD8784BC01330366AA6A88B2A12B8DE867564166E075B4351C31CE04953321C75F9282F533E9647CB2EBEC892B91D9B1F6D68D5BF6006CE80895855A3972BAE95B26939A9E9F9BB9343B3D7EEAE2D993BF8A2F2E4EF06749F0C1A1AC5454BC6A2822BA3007BE60087CA18A65C47EB7FD00827F4F7EF7BB90CD6685B5E12A7B29954B037190DCDC18970AFFE4B5A1ABD88EBF86FB1E8F277CE08E233B76EDB96DFB96CEAD1D5EAFB7CA4B21CF65704FB075C2B2F3386072E80744E7E766FBA62747CFF4769D7FADEFCAC5214EEC38EF53FC5954B8CE041379150C2E28E86CB8DC9EE2477A4F3697CB0D15E172503229E97A9E30BDD3B163C7D8F1D7BEF63566BB8F1F3F9E1D1E1E56504A530303034BFC1DC96173A75229CF8BBFF86917B61FF1730E97CBE7DCBC794B797D6353B8A2B23AEC0F05CABC1E7FC885FFA553D94C22BEB4105D585C5C589C5F98999C884C8C8DCCCDCC4CC638FA4A7342A739B1B35038A964CD993DF2AAE6ED5D227BA98E98A6A1C7B95C05094D4D4D02125D40828BD49797970B43434342636323FBC2830F3E08D16854EFEFEFD7DBDBDB33DDDDDDD9B2B2B2E4D9B367259BDF60CDFCC96412D2C58B67046CA69364778034C85764AB454DB1F5E6E779CB516232435E0584AE201500C9B482EA460799EA6528E78A20C52AB8E52A44B4C2D4BC085734A3A362518454CC87A511DE0602810224C48CB3CD0F703A9D82C3E1109A9B9BE9E19C389A255429522412912B2A2AC46432291A616C8511A1A3A34341B8A9DC79E79D0A3243438F37874D476F54A8AFAF17914962269311C89B9D9A9A12C859F2F97CC2E4E4A439F2B4426B5B3879B0F8FCDB9D342297FAC5C85206BEF28DB7DED584CC071F78C0BA1F33CABA62C67488F8626B6BABBC61C306368A3D4662964D9FC2EF3AF0FD59590E8FB3E029359BC60D7F9B6C69694923D14D27484066C9A8FBCD51A621E1B58989099D98874CD18E1C39A2A3E430821E3D7AD4F417DE953909F22A19F1658E981FFD807FFBD17623BD68A51A793A92A7208DD4A4904F53F254A4D95BDF2D3A4F037FC7CE9D05F723579E42BD388A051CFDD2BA75EB9C1B376E1442A19003094229A980DFEFAFADAD6F3884B6AA139D1E87A6A922222CE200DA30652193499F8BC5964E2696967AB861A69937124A9B1B19E434477A229150508A72785D05254245E2ABF1785CC3EB6BA8E6745477FA238F3CA2777676EA379B21AB4980EEF179213A3F0B81B272C4E4063AD9BD29842A485C251163CF8AC9CBCF89F910B558901193D835E938897E071DCF4C4FC1C0F028C25A4925E223719CC8806055559584A335B0B9B3F383A160D97DB2C3B905092E1507BFA851085C72383E9CCCE4744FD839A4E4525FCAC5E3E7485A1441A84C4BFEBF27082B807A5E54945F8292ED436633438ACF9045463386901A4334A622F1D56030480CD16E26435635C2FE40187178963536AD45A7DA1811DD6B848966D11177F1EDB6DA1E3B5916A4D28CF02CA51B2956C2C2B72C68C543B91A451D8DEC118906FD0E47A1A3BABA3A505757E745355275E0D0E12F7ABCBE7D66C0EB7ADB5C2402A934CB42B58992EBC7A22B7718288229FB8F22D0DB638410847DBA207D2E0D4E0AE62C82AE8E0859ED9C2CA9BF7269705914B326C2C9A1DDC8213372F84E0A318404F589279ED09E7EFA699DD0D8DB618660836914D6ADC6D672E4B7EE7FE8810F7DE8D3C94494658A441E47B1A71359A2C5EEF9DA43BFDCCD379D3381463F2BD913790D8E6805FC78E19255D227E1F1EC7C045E3A790A8606AFBE3470E5F2D3A87A12F7DD77FFC6DDFBF67D017F5B911FED9A35E28B2560727A0612C96421B8D094C7D28AE6D664EF57B58281B272B00D070B2272650947C2A8AEA9E79D92F0D380AC5DE4B0338BEA2A8B12494C2946425AA9CC58450569105B5A80CAFA86F73C212371260E0D0FC3D5AB7D4E543F65FB6FBF7DF38143873E8FEFE252D70E51C3F4ECDC32E21BE22954C8DED0E74D2945D7147E914B4235DEBF09915F58177858C4F85C46F1D0754719EE97212BB663FBFD081A17F4914641CB9EF03AE41F38B2D9212E214C4ADC6E770E6D3F498682AA4A2B4E4196C4000DE5B394177DB7FC00BA3795083A45D9B567CF9EF5F77DE083FF0A995212F1FB06AEAE58CB2E0AA22E78BC0F3825D96B462F5FCB26E14D3DCB6AFF090C0491094D28AD8DE80ED4E37E05F6CB240347A4EE72B7E135A87D722E934A65B3993E5073CF577BA51FA23444C80944389B461F258B4C50AEC704F97AB1A8F7D2FFB5C49EAB10CA4E555555FA7EFF939FFA5D34C4DE5288DF75A597A931F37A66D08D5D5B9205B7C7DB6EDE675155E0E55CCA4073F8B222B6B4A0C30042DF21F4AD08A37AF0FDD78932D42123EA1843C47C229F3787ECF778BDBE1DC88C1D0955FD93B944723197499E455BF28F91C8D2D3E5E54C0BA93724012C68A615FE269152E09F5F1DC94FCEA0A9AA6C5286B96F9BB441314D4AC4D82670E48FF9A40D308E29464A13347EEFF73E0EE8B932E38C589CD9984F7DEA536D5E9FCF5542660C06874718F11524ECF8F8245C1D1A817BEE3CC4DE862075A8BC224F3CD431FF9C58602A4816046B1AAE363008EACC3438F6EE05118DB5EAF3C318D26E92E52C90D8F8B435820435A822AB05192A50728402E99049724965DD830CB9676274705B39947F050DB44A36E1066C80B06C4A7A0E91CBA581883505C9981F6C78E3C65424859F57ADA947E61425917BECD6F425FA4C33A72719D3968E1CB917D0C962C96EC4E070DBFEDBA12C1C2E49ED8C8E4F309D1F8DC5E0E4EBA79911374A0D7570CA4E085755B3727793F857D249B8944DE5894F6F1C8BD3CC1070EFDE0DD94B97008D0F64BABA5874D7B77D3B63A2E072C13CBEF782AE412FBE2FD5FE54E0E795D86AF173B2211ACF15241331105596D316BBBABA84D50CF22A3600AD0F2FF3061E1E280B38E1CFFF706FE94658964B4AC898795B7A361AF92924A48244AAA8AC8452883F3631C94A42220B8B1043C675A214A9C8D41C0213BFD70F6124A420390AF2BA3F9D8D3054C6823F84D6F07CF6DC3970AC5B073924BE90CE8010304A0C65B44599EE6ED0A24B10D8D48E765C006F4303A0EFC0DE21C6429F1A785155558B0E4B1AE6624BE887B0849288905578E69967F41B71C4C0EB2F83F9A909CB2098E93C628C68CE0201A307D32700B33A586485B846B55B51588FBEA01799174E1C62F8F6ED3BA0B9A5B524E28F4F4EC2D4CC0C9B6A4497ABADAE069FD783CD0B5E6C0811414009D0ECB95D64C0E38DEB61289382DE6402AEA2345C43A8EFBAFB6E66078819EAFC1CA8D3A88A8241F68E7A2A053A5E4F5B44C6F983103D7306CA366D02475919FB0DA9D846A70B9C8268311AD07F4244A79023890659244454BA0D201C861773B8A93A58650915C11679D2F8D219565ED42420CF91AA96F3C571BAA61A8E97CA1DB002DC6EFC86F8B26FCF2E58BF7E4329D5100CE7D3E8A79A1C5AB3C2170A1A4467CDC38AAF7278ED4C2E0BB2C3C5BC6DB3AA01E1256C71C8D08E3A9E8EB3F87CC3E9345C4D25611819334D6591B5754C4AB2C86415258C249A98A12E2D82AFB2027C685DCDC9CB01546F952EB7951B4E250D8F1E0C34E9463F26178944C85953296C6E57452B3A6287EEBCF7A1C3771EFA3445282BAB6A6F7A42C60C4F88BC7218611CAA9F2C7ADF01C6B862A7AAF8782EB20097BAAF30078AAECB086E129EF7B5D555D0B9A59D31688EA9A805588CC6514D2520994CB3500585442CD5646B69BCC728DA83914C1AC6513A2268909984D3F429FC5D1A0DB5BFBAC652631B1D6EE8747BADDF0F0DF4A13949C0C0F0487A7636D22D8BE2CB1FBC6BFF5797969628C4C1C2DB262356B601A226E4F0E665CDADEF5A42867B9A94F542E2A721102A2BE91E69B4133D7D036CD6234D9F2A24BCB14F75AD447C73364BE3BA7AD6A8C88A859DF17B544E3835330B93A8C2E6E6172099CE1973BD4463A99D2DA8FBDBF5A031A20959E17DC7513AA6F01AB1BA7A237140AA17C77293D7074EAA2BE50C489004E0CB20A3DD78CFDDE535D5BB6717A2CF568543A6179D4306A8ABDB00455B331FFB0E489FC7FB480CF41A71E4FBD9485E4BEF93B45CBAD2C3548ED7D2F59EBCDAC19E3CE98EF6CD2B32FC72770F63047D3F80F7A44613EDA8E299F202C3A3D760E4DA387AD2F34C5242656170B95D4C9237A38EDFE40FB0EB24F139A770D0CCA07A5BC2DFD5F17276E65D6B2A83AC9185289B8746C50C3BB675C2E4D4F4F1680AB1A4AE0DA0443F7ECF6DBB7E4CAFB49A27CC8921DCF4516F12924D9843E3E66123D6B366608D4D43EAEB870C221432B654D7E92B523B1492595C5A8289A929A8ADA9662FCF203412E995D7DF80BD3B774028982F21BD86F095FC873B6EDFCFAAB937AE6F63CD1C205D3DBDD0DDD30FD3086BC3E172280B8598BA0A2243024E076CB0156F996A6C7A6C8AF5C3D7C618F5F6EDDDC540023D0B125EC6F76E0FF87D8FA161FE19DA84EC2A46D8C848152464A259F8B3272FDA961850AC7D2B09C3B0BFB17C01FB5C53F27E819EB32AE9645907B7438423F71C86C71FFB7249467704472719DEC6FA3AA8AEAA2C503B240584B32F5C3EC3747EFFE0207BFE2A34960D75B5D0D0500F87F7EF07A7335F107175689811F4CE83070AEE3330388CC67D02EE3A743BECD8DAC91AA9CA6E64C6B98B5DF80CB3508E4E5D6D6DCD8AF6637272824DE8239B46CF1942BB46D244E5FC82224279380489444AA78CDE9E3D7B047979A18BB13AA156E433B89D12DCBDB7D6B65401F0650774EB9C68DB37962580E5DF130DAF32E0F3C0A73FFD899224878C6ECFC055A80887A1A5A96999FA217BF0CA6BA7D8FC02BBBA9A989C826B63E3A0BE719A1180D44F4B6323B4343732585D1E2E2B9A95A3B209D91BDA5AAC7317BBBA514D661842DBC6277C5C42557602EF97C0F31B10B59993B78964F15814A6D1B61030D9FFBEDD6C4A9393CD38A559982EBC67181617169F11DC1EA1BBBB7B1903348E32D1A3D7208E90AB8C5C78F20BDC123C7457F3DBAE8C63E5805CBD21F7F1456B18545C4BEFD3E7979008F412DBB77640593058C000377AA7275E3FC5E61414A08522ED499271A5B71FED402FBB6605C2C8B6962658DFDA0CCDC814426697D1BE549687D9B5CDADADA599CD5BB055633006917479D03EFCEAF809B8DC7F0D1AD139732128B83636C998B4735B07A3283DB72218217B7A7664CE445375F8876877F4B6B6365DB6139EC7B37308B8B2325AF641147B71EC1A6A17CD7A21538FDBF539C58E34353F1F2B3F57979766B37A4995E37D01EE7FFF11D8FCC8EF94E46CF55E1DA4A40AECDBB50BEA6AAAB9DE37884FDBB90B9760766E7EF56CC72A27A6676799AD78F9E4EB6C70343735C0C6B656768FE2E05EC7E64D85EA1825D2E9723215F6D1873EC468F1E6D9F3F09D1F3CC50C6F193A6824A91450749A65F292CBC879A8B947011CD9B9B9391501880543CD55094986D378D3344DD71744D9202E2B9CE5C60678C9B6067C2A285805A9AC169EF57907CCAC8F3788ADB351F7B18F3E5C92EA89E1A826235959518EA37F4B81BE677A1CF53519BB52B64A94E47D7B76404F6F1FF40D8E14309F8C34415B22389D0F223ADAB47103746CDA085BB0D941C4E9B7CE23E103D080EACC2E15045D7BFAFA9824DDBE6F0F434E745E11151015091C2E19C6C726DEA80BFBCF218DD27EBF9F05E8649BEE57795221818E539CF07241A8188A4BB20B6BE34DEFD7F07A0B272BA87C9E94D321C11F7FE90F19E22865F45FBCDCCDAEBD7BFB76C6047B05F5CCEC1C742331AF97EAB32720284EF4DDEFFF00FC082DE99A5BD14F686B6A84936F9C82F1E9D982DFD2CC979368375E41E9A0EF36A37A2168BBBD730BECDEB16DD9821DC9640ABEFEB7DF643469DFBC1142A1A0655358960FED5E3C9EC855F89C7F8C4C8921EACBB6B6B66A8C71B60224B3D63E2A399D510AEBE62BB4752B5E9367827D1980FC549CC2D16FECEBAAB1D2640047CE3C8A2F19223B225931C8363909337373CC4EECDADE59407C2226A91E5883FC665930E17C3F4A4FAAB6DE9A424433184FBDF106C8CC83D5A01A75FA3D771C82CB5D5D70A18B2421650D3E424CBD0383F0BF9FFD199B55D3892A89B0FDCEED5B99C7FDDF9FFC1E33BCE45790BA22E78F266718732C28D4A1D1F4A8EFD59707A6F0DE49B481B98F7DEC63BAE909EBB6C90EACAEF2F2C5B3FF776662FCB7B3994C081FD89FD3725E1CC10E54E9B291A137B9A659E54B9AF9BF794AD3F87C33494494E20C86427E3D5D53DD3B70F577DFBA70115A5147EEC497A0175AE60722812E765D61FBEB1076DA0BB6C8733E7BFE1263F89A2A9F55D888B00B8DF7EBA7DE40A3E965CC0B05038CA16E7FD0F277E87ACF3EFB1388A73290B196481096A5F168B4BF71E62C9C3CF5267B4E621CC5A4E87AB7EDDD09E5A8FF697092E1A5FA9C643A45B32623D541CFB7F0D963A8AA321D1D1DD6DAA72BD980D4C2CCCC1436AABBF782B194B10BF20BE895BC8804D5F4B85C2ED9535EEE3B74F0F69D0F3CF8F067A368A408D69D7EEB1C33809B36B4A1C16A4423D8C8D290CCE142D592E439DDAA8AF20268791ED5523A9B5973F49B3D1196202A41D230221F72D03A36AE87D7DE7883A1188289A41249C2E3E8C8A936C929902661F5A0206DAD2D8DD054DFC0E69C5195373124B99464F3C97299F8D774C9BB80C4A7975268F45BD1505EE26D0D3E1B33A8922CC9EB28ED7593258787F021C46030E8AAACAC2C43A7238462EA0E978550A56C45B77F8CC1BE13AF9F86E75E7811E2C90483765BDBDBAD2B134EDFDED9615D8F0C652C165B5EC0BCCA467E4314473C8DF286C606D6930A7CF6E7CFA324D152350146FCF7DF71104EBD791A995305E31353ABBEDE6A4C2035490E5B05425816E95504C8619F44E83B333B7BA9CCE33981863E86AA273B323252B0F2AF6CABB33735896EB30999150A564B8D4F08487CB1AEAECE830D55BE4B4BE3681CC79138383CCAF0FBC31FBE1FA6D1001E7FF53574FBFB10A10C30887770FF3E06091FBCFF3E4B458D20DA219BB08AA55DF6689B719453A863747418649787A9226230E9EA60A88CC7A25486809EFBE5AF7000A4D8242AA1C086AC2D684437B205AD8D4D6C323A79BB34FA295781CA5EF50AEA7FD0346111ED506A626242294ECCC845931DA00815ADB46261C90C403C2CD5D4D448C80865716961B2A6BE3137994C39C840471617E1D99F3DCF90C2BD771D864F7CFCA370EACC39B870B90B0E1FB88D35CB139E8FC0287AB46B9738E51FAEFFEA1050A12D659D83A840F7EDDE09A74E9D02A7EC0073C58640C0C716E6C822339C4E17030DCA5A4BE414BDFDBAFA5A68DFB4811960A67A50F74FA3039B42351B999BFBA7A04B1A25E443A1E8FAFAFA652BBF0BD7F9132600EFEC2F6608BB76ED92D6AF5FEF43EED7A221DD80E7366CDBB1F3EE6079E54114F530A9074A4352DC8442C5848CEEBBE72E2601F5E829D36324504753ECDF3EFBBC303FA031265E2F7F40C789780C1691E94E8F9749DFAEEDDBC08D237660700886AE4DE6275817FDFE7AB909C2FA771D3C88FEC54E8610E91AE9641ACE755D46C3BB101732F1FB51EF8F389DCE088EFE3455D1953445C9F6A5B75D804A4C7CE8A187F4E9E9E94C229188E321AD973675F9E285E3D85FF07AFD95EB376F391C4B25370C8F8E538533122805FFF0D433F0EDEFFF235BB7E7231F7E00B6766CBECEBA41CB0D24A99E502008FD4383367D8E5014095FC546B94144B23F83E43821D303C1B2B755DFD48E4EDA8E6D1DDCF01AB0B36BA49719DE446CE1AF7C0E39824C892303561CFDAB4AC0CDDA1E79E411311C0E3B90017E3476E588626A90119578CF0AD49365781CC4637F6DFDBA8D6E7F68FFC0F068251A498149054A04BDE4673EF1AF99E3535555C1622DD6A85795E5A589280984C1CF9F3F071E34B0618484FBF7EE82BEBE7E882CC598675D389235A636143EA9BA94516F1E93C1BDF7CE3BD049DCCA9E85A47080FC85FE01989999B9EC50339FC3F71C0D040234F0A8404B2BB92AE2666D6470A8326C747434C9274E64F0199690E873D887A9D882FAC9F1B14574BDAEB86439B8BD7DC3819985E8E6DEBE7EB7C8933419BE2E0389784D552523ACB08A56448F135A5BD75B443B7EE2555207E040678C16D7230F98A06D373265089DB192E054D146C8A97DE306D8BB6B3BAF9115208EB6A4FFEA202413A92CA4E3FF5193A47954BB89F2F272251289ACFA573F84F7E0AF81D094221175A04CA5E1883ADC784F0F4A801F091A426690FC97518FE7E93888BDCF1F0835B9FCA1831D1D5BAA737C9D06637D0685EDFB3C4E34800D0CCB1724F915C30B5FCD2E94230C3EFBD619F087C26C0E9C5AFCDBB5EC005E7BC3FA3678F003EF67CEA4C207C8CF7FF5122C46A3303D3EF6D7A29AFD5F48FC3164D4D2DEBD7B3354CABE1A03DE8B6511490A3474C573F8502934C831EC23F8D05348EC517CAEABD828A8D3872AA91FF7072959158B2E764566C69FA145B2F145344D2DACB0882CC6E0ECC54BCC8F181E193554D6CACE6BC146455BF58D2DE0F5F95744B334BA4D00B0D2467E4C27EA7E0A39987F3DE4023A87541416999FEFD2B3A99F53C0140758C2EBF55A2187773C45E91DA6222D888BCC603309878787A9BC3B4D0F8A848D72231DA04A646CB4D440A58606ECC5177EFE14D9898E6DDBF7FA82E1CE4C36E75335DBE84489B88A7E05256C28E047B17D52538450AE178E5E0538C0CE8E4D70E2C42BB0B1631BEAF3AB85C49265961FF8AD7BEF628427C84969CD1ED4FBA9743A9B8D46BE86836816BF87FC886551F5AEF9E756DE130614212BF69790482A8E1F3FAE793C1EC5EFF767C84D4786106258C2AFD2CC726A51DC8FE14B555CBE70FE153C7E33142EAF5DD7D47A1B9EABCF643451D5542B024BAAA9BBB79F65B14804D6B735434D65254B100945885A582567DD3F82FE86C30D7DA8CF8BCD0325F00F1FD80FD5784D528751543DC75F3DC9C2F48B73D3DFA45A317CAE05C4FCA99696160561E79AFAFD3D63C04ACCE0D5621A8AA94A75F5A8A6B238B252F871021B4D788E93D1266620D3CA493A1623F3716C132839DEAAFAC6ED6E97BB13FD08AF6AE5230C7443CCB870B19B79BA74B786FA3AA8ADAD86A0DF6F5B2362F9B6884E94C3E5B6F4BE49FD602000AD38FA0FBC6F8F250D2FBC789C851B161622DDE958F417926178E33C8C53D29FDB127E13FE2497E9F851B1121A6BB6081F8AB0134793173F626A09FB301E87A90763952C0ABAFBF033B7D3EDA9099457BD2F9ECAD426934929C78D3533DAB685959821C7F314A55CDFDC8C46BCC64A375E0F7E5292B60D0DEF27D15B6FE4899833E72EC00B2FBD4C4E64766AB8FF0FF0D97AB04DE0405A9A9D9DCD3EFDF4D325D5F5C8F01BB015AB2794088ACAAA68A8159FCF974622C471C4934A0A721BC118C11913C8A653B1B971D21DE0F2FA43EB1D81B26D91C5A50A9A075C98A53312450A1AECEEDE5ED6D83D9121241914FC0B604F8B78D34283467D2B40754D35E2FD4E8BF8B3F3F3F022C25B36CF6076F2EFF11EE3B81FC1674920F195D50A717F63256025892069401B21A28D10512DC9E86D5254D64D5281621EC03EC42581981082C2BFFA4750D78952B135A3EA9B27A666834BB1284D5D65527023EF4C0ED703F71D81BE814116B26E6A5C07EB1025CDA35FB2B8B8D03D3736F2651C1C832865D3A9542ADED9D9993B7AF4E8BF6C06143382EAEB0932A3784BF178DC89CC70E2E82646F838E1996460CFFC087EECC37DEBAF30E90EF7865456D9B8188D954716A3CE52DFDB6400E582096A92A377F8C03E0ABE65477A7B3E8B827A0507C3184AC1E2F8F8789680C58DCC9294E13778335F849B08155593565555A54C4E4ED25CDE34BE38C598C8487B08AA221182381A491A42E4D471584B8CF04036154783D2ED09BAE5BAA0D7AB4BCE4D29556B8CC6E261F4B21D2B65D8AC2C1CAAC290DF9B40A60723B90501610E64924BDF56D5EC18DE8F79BC9466BC51E2FFC63360A5E020970A1A690A42BD2CBAF969B41354441045624488E060FCF5BD208F351113FCDC607B19334073096A7AC1A3EB677D41975CEDAB726474685034A85654AD2CAB2801F437DCE94C46D6F1965313636F6496E67A8392AE045B1A5A3389842F934DFC12AF35832D8A2A32036FF3CFED0AFF52FF3069B17A329685906407FD15D05C8EFE8E00853BBC14F2E052408CA17D3FDF67E9569AFA8AC7E6EA29F4D76579E13393BA1CCD88118D650ECC2415398D540B33483DDAA8455A8B62B560DB2D2101A5A8272AF726A9A0920F74EC28E7422AC3818C7021635C147FE26B4C78F19C1F19E3E330D7CC795323E84BEBCC997F633383FF25742335CB962DC0CF63D84FA1C4CD7ABDDE782010C8C23BF863D3C2ADF4F7914D7F026D85100E8785BEBE3E91D69720DF00894592E1E023DE5C6985FDD16A3AA6F3C404DC67469B0A0AB84345CE20D99A1C5F1E2D8DC78BF8F9227ABC095A53A254CC7F4B494089B6424315A526120901476E16BD5786A4485D616F328488EDA0D553A82729A073B4EA0A2DD641CBDDE067295A1FC2E974323584FBA4F3D3B444C18D60FE5B9E01D76306F06941E45BA05408E4E091D78D0416516549F8750919427FBA5AA21558687128AEF769A5436A785AA3F584748AF10F0F0F6B6F07F5DCD22AE846C31EB491111F1C1C14DADADA04F46205D4E92215D7A29408A862744A25A204E9F8192314328F2D53533CD9EEFF33E01D32C4DC6CC88A6D26B1570B9DBCD3EDFF019AD0BC84D284ECCD0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (51,1,'Modem_(128)',0x89504E470D0A1A0A0000000D49484452000000800000004D08060000006E486CA10000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000028C74944415478DAED7D07785BD799E58F428200C106B0F7DE295222454AA20AD5DDBB23C7762663C79ED8291E6726DED89B38EBCCEEACB3F9BE4D76767637D96F67B313C7768AD793EC38892DC92A56A50A8B48B18955EC1D2441108520B0E7BF202410044050C52D44F20C02EFE1E1E1FEE79EFF9CFFDEFB24B1DBEDF4597E7476F744DAECF603769BFD09BBDD168DBFDFC2DF6FE6E766B7D3DA63C587E4B30880AB7DFD2A5CF77D369BFD49047D3F9EE57826049F107C3CDBF8F93C5EBF89F77F5D5C5830B616EACF380006868665B8D6DD369B0D3DDDFE109ED57CED083E2D0BBEEBFB36BB15AF0FE17880C1FEFFCAD617CFAD85FD330480E191D15204173DDDFE1882186BF71EE86BEFB9B08003188BFBB16F16E7F817C10C36FB91CDE5A5B635007C0A01303E31998EEB7A1C417C1281CA71F46E9FBDDCF1DA35E8CEE35DF7DB163FE7D83F84E75FE1F9CDAD9B2BEAD600F0093FA6A667B4B8960308E21308E216CFC17409E292E0FB018EA5C1773FBE19C7B15E786BE7B6CADE35007C4C0F83614E89002C8A39FB7EFC1D60F71130F7E07B6301F7F73C02C173CAE0FF9FC47FDFC4FE77F6EDDA31B506805BFC309BCD3234F22EB66D68F487F01CB294AA57A2746F2CE02DEFFBC902CBF58219EFFF912D25DEFFE3DDFB765BD60070138F79AB75031AFD4934E66368D4382F8DEE39E8BE82EF3B885E82EE23657806870EAFDF596486530FDC7D877D0D00FE3DD21080C7858AB7D972DD1BDD3D00EEC1F7D65BDD83EF1908CB41E53DB5F84819CB99E42ACEF1169EDF7CF8BEBB5BD600B0FCA1C5F6056CECD7B76093F8EC5DFEAA790FC78F8E8C524B4B13998C26CACEC9A5B88478DF2CE05B08DE400AB2D5321070FCAF1E7BF8FEE13F670028B1DD8BED496C77600BE037FDA76AFF1BDD6AB552477B3B35355DA689F1710A0C0CA4D4B474CACACEA6D0B030018A90D0100A0808BC8914B00AFDE1D8BF80E7230EBD60FBDD970E3C32FBE7000029B65DDCD3B13D8C2DC4FD00F7DEE7ADD19717749637BAC160A0C64B9744E04D2613821C4A79F9F99495954DFC0B3A3BDAA9BDAD8D666767492E97D3FAD2324A4C4A5A7E3E0F81F6167C77407A63123740CCE1EFDF2FEA85C34F3FF998F5F30680F58B3DFD316CF1BE0E5C59B0AD4CBD8303FD5473B186DADBAF904422A1E4E4142A282AA22404777A6A5A00A203FB161616D0EB03041B646465512800323C3C4C4303031419154DD131318BF9FD96A6005AA11C3DCA63115C6378F6CB4F5CF82C032015DBE38B81CFF3E703D71A7BD56ADD46D6F979BA7CB9892E5E382F8218A45452614121AD2B2E46CF0FA3AB3DDDD4D0D04003FD7D021461A0FE9CDC3C4ACFCCC46B29757775800DAE800DF4A4D16829353D8362E3A10F0012B8113044807710DE500AF00BD46DD8FF168F567EED2B5FEEFA2C0040E31473D82AF9D8D59CD82B45FAB07E33333374EE5C357AFC4541F9D1D1D154B67123E5E6E58BE31A1B1AE9527D1D8E9B26A9544A898949820D121213C5F1CD6083AE8E0EA11392C014AC0BC223343467345277673BF55EBD4A3680203E2191B2001829C0B284E25D83E8729DEE405875CA58EE6ECE38C6236CBF7DE1B967263E750078F5EF5E2FDDBEADF2C77B776EDF7EA3275E8D67EFEAEAA6D3A74F51D3E5CBA247E7E6E55179790525A7A4D0F8D8185DB87041ECB35AE749A10812B9BF685D117A7E040D0E0ED0E5C606EAEDED2505046156760E65C111289541108913D47EA58DFAFB1CD5DD60B59A5252D2281EE9035F4EFDFDBD422C4646C7E07BC903F5DFF672F43C8E7F1FC7F348E57B7FFB8DE74C9F0A007CF3A557AA48223DA656A91A9FF9CB27E519A92979AB3DF14A5537B3C542B53517E9C489130844BF1075151515087C39A9D52174E5CA15AAAE3E0B3AEF12A0D068B5B47EC306CACF2F24994C4AAD2DAD4803F5C209444646527E6111A5A7A71347927B7A4B7393D8C74C118500676466091D306B98A59ECE2E688B3E9C47460949C9140F2691C9E464B198490E1DE157AABA095DE3457F4CE3F8771D6312F6E32F7FEB1BF64F1000AF5649A4F6634C9112A9C49E94107FFA99BF783C3B3424247A55F9DFC38FD5E97474ECE8313A75EAA4A0ED94D454DAB66D1B9594940014F374E1FC39AA3E7B561CC701CAC8C81469200DC19D9D35507D5D0DD2403D9794293D2303BAA08462E3E2C80C67D0DAD28234D044737306210859136466660B708D8C0C53074035363A42EA9010211663E312D0F00BD407F618004B30C324A7A6511C00E12BF81E5D8DA794E13A4CED81497C14B8FAF1DEDBCC0CDFFBF68B8D9F0800A432720240E44A894C325BB17E7DCD83F7DEB91981095C9500C4F31550F1A14387A8B6B656F4CA8D08EAF61D55A0E4641A1A1AA693273EA28BC8FDF310804A88BE52D8B88D60040D72783F9CC0F973E7A8ADB54504B6685D311503302121A100CAA4D005576001D909B0FACFCD2F408F770842168C575A5B697A7A0A0C104B9970085AB802A3614E884576197CADDAC828C1062C321924E3D8C2212023F13E4F1AF858CBD14BCFDB20520400F1DA2BDF1EF85800F0AD575EADB293640900A478662A8682EE7DE09EFD436525C515BEF3BF5D50EAC953A7E8E0071FD055D03253F5CE9D3BD1E3B7932A3818A2EE121D3B765C80831FB1B1B1B4A5722B6D00D54BD1FB9B1A1BE92CD2C000520407A2AC7C231516AEC335C8A81B81AD056098EEF9BA929293A9B0681D0461121921FA5A9102AEB4B50A41989A964699D006A108EEC4C40498A08D86870645BD80839E04AD1110A8A0217C4F7FEF5580D04211DA488A8B4F10EF4F8C8F51685838052A14BEF3FE4D14B8FC18D8E2B1CAE38B29E2DDBF7FF5E599DB0A00D6009E00C0BD97FF0E51AB6B9F7CEC91D0F89898CC65133A907BFFF4A73FD1E1C38749AFD7236885B46FDF7E2A595F22A8FBA38F3EA2A3478E886030CD1742C96F072832A1DAE79016CE9C3943E71078FE6C167A6CF9A64D2215CCCF5B05682E5EBC4093F82C57010B706E6684B0F070F4DC31B1BFABB30362514139700FEC043888FDA0F92B6090C9C90952A9822905A060BA5F58B0D2D5EE6EA4803ED1D03171F14213F06F65304C8C8DA20DA482216213920438E45C65B47919C3F03106E12DF83EC7445CC728AE7FD688CFBEB7E8243EF8D1DFBD3A7F8B01F003570D000038032F5D048144D02B9E17929312CE1C78F0FE4295521971194AFDBDF7DE1301E400545555D19D77DE296C1AE7D9834801A74E9E1434AF8622AFDCBA9576ECD8415AF4B60150F171B0416D6D8D004559D946DABC658BD83705FAE614505B5343269311EFB1202C85F02BA40078FA4E58BCFADA3AA49241713C33417A66067AFF8270016D2DCD426F446834C22570AF37E867A9BDBD8D06FBFB445A61DB9880CD62B6206D748914C0C23026368EA2E3E3C9045619C6351A66F5140AB02524A71137DDED1B91F46E4BDDCE3B8ED7BFE5CAE37FFEFBD7CEDE32003835807BCF9748963EF331D5A74E9865E84B269349C515BABBEFBE9B76EDDA2DACD87958B8F7C1068DA0733E07EFDFB3670F825B29A8BCAEAE4EB0417B7BBB48115BC1049BD0E3996E99DE592CB205E407E7EF8D1B2B2008D3848B688018ACABAB25FDCC8C109325EB37088FCFCC71194CC02980754102DECB81758C861B181D1D154C30323C24B4465A461625227DE8F533D4DDD121E89E01C12C101BCFF585591A0013E867A691B6D46088042122192033D33A8021025A216A9533916E746EC38A035B9DF89C9816FF5F7FF41FDA6F18002FBDFA832A8BD97C4C11A4F20A00273BCC4199FFFA8D9F8B5E9D9691697CFDF51FF6AD2BCACF3E74F020FDE10F7F100DCE3D9AEDDDBEFD77C0C6E509357F02A2EFC8871F8A34900D9ADEB57B37E8BC48FC987A04F6C447C785B7E72A20B3413904610404A14E3721D8A0E1D22571AD79107C2560038D2602411D112E81078B38BF67E7E6E1FB0A281801EBED81356C6A142980CF93959B8B1C9F2802DE71A55558C6A0A020A48674B880649A86B8EC051330B838E0FC5E4828D2CCC8208D0E0D392A6510931A16890B369A9A1C278552854DE935EF2F49053EC4A4D782994717E29549CE2F8E54FEFAA73FFEE1D8AA00F0E277BEBB6FA4AFE720E7CE28203E0839D38DFAAF01E0D4B123545F7341882DDE58696BB59A797570704038A872DFBE7D08FC7E8A42430D0C0E800DDE17C167BFBE79F366DA83C073AFE5419C93274FC00D9CA0A9A9298A81676736282D2D15DEBCABAB8BCE9E3E4D6DE8D51C90B2B272047E3D29708D1D1DED5403A6E1A210EF2B0490B82EC0A065E7D00C06E1B2309783F3F20A280AE71EEC1F406A68C277E928183D3B0DAE2101397E62629CBA3AAE88C0B323484A49A530006674789006A113B8E123A3A3293A365EA480F1D161D221F8FC220442312232DA1100AE9BDAC9CF9948B7A11C7D1D4056B0E9BBA505252FFDC5930FF5F9048084A38CC7B7BFF7EFAB24643B3AA31BA7E989310A09D750642C2BE28025006041F4BBDFBC4DD36844270078E307D4B8FDCEBBEF997AE9DB7F13021B26676D7009BD56833CCC80D8010B1812A246EE1F84583C04D1572D3ECBA26EC7F61D94959323E8BB0EB6F1148031845E1787006ED9B295F20B0A8467BF547F892E5C3887EF770086470033B3B285FB608668BEDC88BF2DA25E900FF7100EBAEEE9EE12EF7339390C01E3AA613C348AA813C04A32D5F3B032A7062E23B35B602658809E88864B6121C8C01AC3F16300050783D380262A064095930E4C323335297493263A8EE44865FECC6DF05985BCC1B90D809F353B33FD4C4A72F23A92DA1F7CE08E3B8E7B058033F88F3EFAA83439AB68A73C407A98DFE2DAB96E6C0854AF272D7E10FF50A94C2A0070B5BB934E1C39746D9CDE7DE39E9B92926A5707AB24F9C8C1F7DC732FA8BC5C80A8B1A1813EF8E07DA10D542A156DDDBA8D764034B20E98410E6726388DFC3F3737470505854230B2729F999E1660A9811370067763F92688B824F4449DA82E72159083C4F50016849C4678A8B8A9F19210831A6DA41090B150FC83B07E6DADCDE2BC5C6DCCC8CA11167068A08FBA3B3B210A4D087C1C98204DA87FEEF1AC09188021004A4C5C120522754C4D8ED10440C181090E09A5706D144991862C261319D17681480FB2C5390ADE26B9DED4CC66B7CF4545696B0AF272C2E552598620233BED7CE09E1500C0C18F8888908644C6EE02FD7FE0AAFACD50C113C87F36D8A6E8F824A05E43B517AAA9B3AD45F4544F00706E6CD14ACBCA6D5FF9CA5350DF7AE99FDE7F9F86060741B909B41729620B04215BBA5E50EC51E802B679AC1B2A2006B76EDD0E0BA605BD0F0A50345CAA17F9BDB8B844D8431EED6307C1A0E06161065331C420079EAF9DE9BFB1A15ED40698410A8B4AA0EC63A0F47BA8199A8003CF168F2D23533BDBC176FC26AE2C72E0D3D233446EE7E2502FD8C30C17A246805913F0F31434C5C8503FCD038C2A7508CE114B018A20BC36930EEC6936CE011061A4C266772D2879B17EAB72151E8E570605F51415E68F2A158AF2C5B88A8D7C018083FFDA6BAF498E1F3F2E8D8A8A0A48CCC8DE1DA40C7ECF93EA37C0928D03080A85927AA0D2F9477A0ABA2750708F63B156BE7123DDFFC00322572FD81684853B74E820B5B6B60A8BB773E72EDA5C5929AC645353139D387E5CE479AEF26DDABC053DBE8214410AA8F936AAAE3E232C265BBCF28A4D62A088EB0575B0938D971C2563E1102014B5E8956C192F233DB0EA67BD920776E1F90203E8F1ADF82EB6796CFD32B273859E6091D805BB380B5662AD90989A86EFD28AB433D0DB43C6390329A191A2A195586CB2189E004BCCA29DD4D01021115AB49BECD6A700B7F34964127D4E46466D4478F866C43BD01978B13942ED1B00DCFBF15A860653A4E5E4EF016AFFC593E8E3677C254DA361AA4F9F103DD55BC03D6DFC6081B667CF5E4A494E144E606464843221C2F6EEDB2F067CF838EED1C78E1E11FBD8C6EDA8DA4145E8F5DC8DEAA0F4B99EC0CA9D67FD6CDA5C290A3E0608C9F3E7CF0996E0D4C5F304B95EC0BE9DC701EA010A0E3C57F88A8A8BC52820F7784E0DCC040C086602CEE9D3C8E36D2D2D00F83802ACA2D4F44C8AC47E30183441275C824EA496386882304DA428288D2305E8C647056344C620FF0706DE8269ED2BE67D5B7C5CCCE9C4B8F85C8426EA5A8F278918E1BC0E023F00303636C6CA3D28353B6F1F00F01B6F00703E7FF4E10764432EE48099F13F9BC926C492B7E0BB82842D17079645DF534F3D2500300DE57DE4C3C3A252C81541CEFD3B77ED12FEDF002DC02EC0A90B38B85BB76DA3A4A464317074F6CC696A80F7E79FCE76B26C63B918FE653DC0256376015C902AD95046514CF5C8FD0DF575348900F3686101528686F50780D0DA749946114CAE45B018E49A00A7049E53C0E28FD35542528A00046B2DEEF1237020AC7962002E6570C8B2805DAFFAF966013FD6375EB380A1C1EA86B4D49440B95C9A2B71449B246E8177A601C4CB3700AAAAAA64A9A9A9728040199390921B9B98F44BB91C02C20700AA4F1DA705E4BAB1D051EA7CA481A4A14481834A8A7C37890206157E310207A3BC62336CA2F69A78634DB06BCF1EA1EC272626E9E8910FA9FAEC19F1E34BCBCA68DBB61DA48D8A449046842EE0F9005CBCE1DECE81E79EC925611E596456E014B001B6910B418383FD02101CE0C8A8285A57520ACA8F15051F7607BD3DDD8E9144B88994B40C00DA2A02CF6561BEB684E4545149E4F2F0C4E82818A4470424263E51884B9B4FEB776BD6370604C8075393927B83948A4D926B41BF1E784F40B0496C3B1FB9E71EFF1800EF85E0ADA8F4BCC2674242C3FF5226932A978F0B48A9E6DC69B2C10AF6465EA5AB2FD7903479C171D6513945FD4326051FD7F80CBE2B23F0600E3B856F7CF39B8219B80A78F0E007C8E575600B8570015B610F4320B47AFB7AE9A36347C5D02F8BBE8DC8FD3C81440671C82383E7CE9E1501E52164012E008945E78573D5781E10815A5F5A2A02C953CA3905744240F2230381CF04BB70DEE67A00570739004CF5A919996202C9946E927A000A13041E079EF33FB7C9CD4D28593905005BC698A8A84B11116125B09941CE20D3759A5F4AFB1C787CB6BBB3833272B35706805303E05985A08401F15A589DECD4CC9CBF0A56876E71DA3F27002ED55E20FBBC5904B2B6A29AF45FEE25498463C5B5743C80329EDA44B669F2290C5D37BEE00D651B2934442D067BD896718590BDBF421148EDED1DF421C4224F10E5798095B08EDCE3B9378A790448036CF3580F6CAADC4AD1B0AC232343223DF442F5B36328C5F15CED9B47EA6A6A70D40AB891D241F57948473CE3A807F6960521D713582FB020540607D32C5254E79556D8CD09316894086BC88058DD2214CF03409E672A5FFF9C4A15D4121B1D1D2D97C9B5D7E8DD196CF2DCFB79CE642DDA85531318F0C16F7EEDABBFF7CB0540C92A109060EC0B85C8D3E0392A262EA13C313DE34BCA2055A233258841135820CE891CC0ABB15D34B8BB9D2CD9B324232965BE5241342925A3D44812A3C4A73E700509F76A9EE8F1C4935F1295C04650FC21B001CF0EE23A41D5CEDDF841A5A204CBB386CE2CEA029E3B58095DE0ACF99F3EF91175A2077361871D42764E9E106BCD48357562EE8105E9218DD6C136B2E2E711C3C64B7542F1736ACA2B5C2786818DE8E9ED7028C3481FEC00D2B37260F9D437B31AD9EF6165899D26E1E9E78355C131E442F3AEB44F6EAFB98A598FCEA943FA2C2A592F86C271CE5D071EBEFFB8DDADF4BBA40EC02078EFBDF764F1F1F101F8010A049F177C84E06F66030DB628B0C15D710989F701F92AEE4535674F12ACC792209A17CC2238B6791B5D2EAC27FD5DC3249D939162504551EF26936C24C02F56E0B1FD440837A65AAE19EC6197806099D1334FC305704999C5198BBEED555514053B370E77C2B6914BC03C61A462D366D1B3B97178C6D0856A477A60F7B061638560051E45ACAFB928042157FF0AD6150B2BC816B2A3AD857A003C3558291300D268A36E6CEC7F95134A6CB6F9F960459041131915EEACC7383AFD622FF70004B6A06DCD9771BD9D225D1500C00110B27C0C5CD1EED6CBF5C71163BB2B089695829DC520286B39B640F446D6042AECE2851FE1F85B13A45225E5E6AFFB82363A7ACB85D327A55A4DB8D740D6155C20FD77BA48B2388748D21F40513FCB24F5475ABF442237167BFB3BEFBE87B682D6B9F4FBD1B1632238C54077155C02F7780EDEB1A34785F8E3C9269B71ECFAF5A542B774B6B7C33D9C00754F8AE963E59BB688A2104F1ABD78BE5A502533C0BA920D821178EA380F10B503446C73B3F30A281E7A8193B0B719C0DEA67FDDD0FA46ABC5121D1B07AD27975CA37637A1E70A047EF423C55D696DA23058D882629E2D15B6440F58CCE67DFFF4B3FF7E0C62DFE60A82658341AEE940A954CA8C462340A4088432562218C1A0FB1004261C8769A363E38B70D1CF87A9555A46A9A7001AED463A7DD787647F544712D9E2774CC929F399CD44E352BF0A48BC71201808B4E804F6EEBF033D3E0A81679770588C19B0B5E4C00B4188BCC7799FC5E2F0F0909827C0FB788D00D7FBCF4310726D80052607DE314D5C225618B136E0F490851E9F01FAE4DF76BBD637BA9ED76234DAD1F918C08EF8924B316749E0AFFFCD95C8B696CBA2DD72F28B047379D20373B386BB7FFBAB5F1E413C17105B9B63E296DDEE7134D00982A6A62689930D66676779BD9F422E972B1110359E61FA2802EF67C4C6C6BE0E0BA9F6164C83CD40CDC57534F1500FD9E32D020829FF09283D16EDB740746E5CF1BB0B6CC0D5C4E6966628FB7342836C8120E400F3D470A6F4A31F1E169A814724B76CDB2EF481118A9F7B3C5708C54C24F494A27525621087F37FEDC50B34333D250461FEBA754210DE8EF58DEEC79BCD73A48098E45147895BE0BD0181DD4B777BAB18DEE622158F55F06C694F8E80FF98D4E91EF8FD6FDEFE10E279BEA0A0C0EA6401AF0B439C83432EE2506A3299E43C2194F581332D207061106025F0DE4F676767AF532995526FC1D34BF4341B324D0B81F3A4EE88A0D1B011EADADE42725C78E08C8234C7E3286048E1172B700148ABD588B2F0FE3BEF82F70FA2F1B1713A72F8905820C253CBB74010729AE086E7E1620E3EE7492EFA949597A3F7AB442DE1FCB93334323424344749E9463176E13EF6EE6DBA96AF428DAF19C0FC1E8F1FB0D3E052B4D4B574BB2CF0D7D3009F67B0BF576C9191D1949299254AE62B09C3D1F19147FEF59D773E04939BD46AB5F59D77DEB1F904803B1016EB0412675A080E0E0E6091C869818180F344CCCCCCDC013678146C90E22925B807B23EAD8674DFBB4252E5E297411F68DE48A1888371649D5F9915B8A1B76DDF41959595A264CCF57F6E0C66838ACD9B49062F5F5FE7184EE6CA220F316FA9DC2602CC2387D5674F0BC1A485B328ABD84C71B0761FC70D29F818B69461A07BE4D6EB74BD58B7F70684C9F1511AB8DA232A9429E8F5EAD0D0657AC01B108606FA1F3B72E8FD4393939326B4D13C3AF5825F00F096162C168B0C270BC0E71508B60002DB46F4B06804EE8B49494977C14D84FB0AA27101FAE0BE43647B44E7B2A28428F6F57C0A3B12E3570189376E901C0497E709DC7BDFFD6003959815CC6565AE277025707BD52E911FD9019C3D7D8A5AC01200B1083CCF0958F5CA9F15D6377A4B01AC3F02031414AC0EBE1E7497C0938BDA77EE33C1E272C59187A6E39352490BEDB32CF0EE69C30508B8C6C9AECE2B0F579F3A75C9603018F155D65503C0575A80F80A4020445A0000D460064E0BA9C8CD5FC9C8CCAC0C0D0909F416CC41D500B56CAA23D38323D79820704045B9CF6CF75B203A372EE9DE73CF7D622D004FF0E09540BB76EF150B444C2633F4C259A482F3A2514A913A8A21FE580B78BCAB88AF25E07ECC00769FFE3507E0B1736195EE39E84B7B3FBF2706988606C4849BC8A8188A044331AB791686EE4010A6C53A3333F56E6DF5C59F8C8D0DF621367CDF02F3AA52803F40E0B480E0C8915F38D09003E88244C22D0020A5608C2F232D1462BFC453102D560BB5A736D374CE182D68CCA41A0CA58477B3C92031D058D40829478329C010407693DD2F56C8445EE4B4B06BCF5E3122C7B57FB6815C33E011C54D5B2A892FF1162D01F799022CD01C53702AA11161A2BCBC44C57B093C3B9D19DD04E9C6C7440592A7E505062A96E9015F0EC130ABAF6DBEDCF08F3D9D9D0D389829560F001A2726262CF7DE7BEFC28A22701540E0DA81A4ABAB4B1A1212220B0D0D656D1088C02B11709116581F4037DC919C9272201E89D6DB0C22F7601EAB3A48922F4E11192524EB5552D4BB2914762E6A4945D11B2BF063FF1D778ADE333D3D2DA68AEDD8B55BCC37B88D4BC0AF1772705D3C89848786D9A52C0BBC7B1D7F110826A38174622D8204541F0B00A8571486AEAF2D66CB70577BDBCF1B2FD51D431C26D03ED3F8FE593C1BC10016D7DE7F4B6E11E3CA06AC0F783C8137B68DF8D220B68DB810BEAF6F281A36067AE1405A5ADABDB023C11C3C5FB47E7CC361B2BE30746D61BA7D1EB4F2C7584AFC1FF9B460F1BFACFCB5AF7F9D52D33284685A713DDFAA96807B0EBE0EBAC3326F21A54ABDB487BAFB781720F0F5CE4E4DD03CD24408D2843A2CC2637EF70604DB826D6E7070E077F517AAFF2FCE35C681475BF3EAA139EC3773F0DD6B00B7F42651DED202021000C11884DDC236E2A2581FA46BB4DAA75253522AA14865DE02382A1FA1B30F1F26F92EE3F5BB13E072137F5C44E187E2FC9E89F48D6FBE405F38708006FA07681CC1E15E793B9680F3D0334F73E73981BE7AA92B1098EE4D06BDD882009860049E97C5AD240C1DAD2DFE639BD24D9EA8AFBDF00BFDD4D4555CD334F6CFA0E31940F9260E3C7B7F1CB700FF6FF7590ABE85405892162016E5B088D7AA890C046CE10046597272F25331313139FC314F41641034ACBF40FA070648BA38D218DCA8A1DCEF56FA2D10D919FCF58B2F3A5636E1F3CDAD2D6434CD934C2EBB254BC02D16AB9852C6EB28642278E46572C6522058CD4632CFCDE23A0228481D2A269DBAEB015FB6D03867686B6DBAFCF3DE9EAE4B78ADE3C0E3371A70FD46EEF568F379BD5EBF909E9E6E63DA5F5CB769BFEDF709744F0B9EAA890C046603048E8737F76665653D01FD10C98DEF1E401E74EA0BBF4AFA281D59C34CA4698925556F2835A537D054DE28059A141430A1A098D38924D12FAF3F9494ACA7FFF8C31F3A16B770434A45AEA486C646B24B64628ADB8D2E01EFEBBB0AF09163D0C5E748DDF540F2AD6AAC66833847A02A18810FF2A807BC01C13A6F9DE8EDED7CABA5A181676EEB98EED1B966F1F71CDA165AD7340F676675EDF59E827FDB6F14E9CB36829EC4201382C225E47050558C46A3790C6EE16EA485207FA8FDD0CEF748FEF4F4B5D420695452CC1B991452A311A391CEE3B8D0F34FFFFBE72E00902EAE7794D0F8F80418A19524B2805509411E6E9EE4798162D1CCF55EB93CBF5FA76BF16435090048A1EA6508BC3FC2D009025C87797C74F40F97EB2EFE16ED388A604FB1BA476EE7C00BBA07035939D73B077DBC05FE63BD55ACA76AA2D336BA5613B1852160E9098989CFC4444797639FD497C8BB98708E46BED544D2F0EBBF818562FC4F0A28E270DC9281A45FFDFA372E339A962D72A58EF64EEAEEED0310643E83CF8B4ABBAF3A96ACF1F9AE077EB90F772DC7CAEC5692D8AC6497CA2191031D9FF52A0C97D607F8A19F9EAE6EBE5CFF8B199DAE13D736C5748F801BD0998C684B8B1BDDDB5D85DEA7E25EC1ABA926B23EC073594E4ECEB3B02DA99E6C23338269C144C78A0ED2DC2383248DBEFE6F3FC8461454F8F59D649B757C8ED711FCF32FDE5836A5CD7DD22B07B8A6A68EC67453D7E6F03B81C069886F5BC323590C28F2E0C13D01412EB5538084938C84166090EC5EF480372080CFBB7B3ADBFF4F7F6F4F0D7EB3C8F3789EC5EF32E23AB8AE2F049E3F74FF8903C0575AE0F10508C625D544FC482D74C1BECCCCCC2FF1E8A327DBC881698D6CA2CEAA463297E9443551322FA592BFD94B0143418E52317CF84F7FF63F9750BF27003801C2B79839537D9E668D26117C5E9738ADD78BFB0C2C29BE90C42B10643209A9E48EEF332DD869C1BE7C80C663D017DF5B58989F1E1EE8FF4D6B53E3FB786F129D631A6DA3C73687DF6382939A5F2DDD7F2A00B09A6A2218826D6338DF3C046EE1F1E8E8983BB953791B57304867C9A046A0E6024831AE5A9202FEEAAB5FA5BCBC7C316760A5E9EE623FC032383040FFF0D3FF2556FAB8DB2F6F4090E1B3C10A7C7F808C4CF36029EBC262FEF754C0F1600B89E675E36387AF3437FE0A411E62BAE7C0B3BA47C730A243589046AD3742F79F2A00AC641B796CC1B59AB89816D2F3F3F39F0B0E0E2E468F90F83B8F00E7A4471E7D94C620DCF8D6B2199919E2E60F524F817702635127BCF4EA0F844D73B763EE81C74748AD545008363382AE375A84765822EC3CD0BE2B100CB3FABAAED6967F9E9C1C6FC7F74FE2DA85AD63BA5FACE1CF23755AE1A86C3742F79F4A00AC544D64DBC845240602CF3D406F8E50A954650C04EC8BF30500E7BEEC9C1C7AE69967C58DA25A5A5AC4383C8F1CF23C435F0070AC947E4DDC59D47DA1852B1054B08011A12AE144A60CF0F616AB5FC2F05AF9D6621918E8E97EA3B7A7B39A038F6D1A0017B60E8EC8E4B475E8F9B69BA1FB4F2D006EA49AC8FA0096F1AEA4E4E427ACF3F34A5F96B1AA6A27EDD9BBF75A80F93E026DB07EBC72685DD13A0A8F085F42FD52976033003C31003F1481011415114A4A3C4FCE186886475A3D0A43CFF501FB826D766C74F8779DAD4DFF8A77F88EA1C2D671F9D659BB77E679B0A2DD5B31E77303007FAB89BC6EC19916B0C51417173F8DB4B013C1F6681B0F1C3820EE25ECDAC3D9D67576760881C7338F79191ADFD2C649FDCEC7DF7EF7DF5D630067EF974353446BC24913A6269DDE40E3BA1907DDAF200CE97AFE5F9899D21DEFBCD2FCB6796EAEDF69EB5CAB781A8D66BEB1B151E4794F25DCCF3500FCA92642090739E726F268231A2F7D4B65E50B60831CD7E0F332AFE79E7F5ECCEFF324FECC2633D242B39851949B9B2B6E57E3A47F270064B2806BC1D44684517C94864C660B0D8E4D8A9B5B7A0CBCBB2D5C0482C938D7DCD7DDFE8BC9F1F166F72A1E849D19ACE77715EF730D80D5561379ED0203016EA1222727E7790045C3A980EF32CA379D5A49F5EBA6A6C4CDA878D206DFD68EF58100C0BFFD3E49C100A1EA604A8D8F11E0181819A729FDAC473DE06D7A1680393A3CD4FFF6487FEF095CEB24079ED53DFEBEE12ADE9F0500FCA9262E968E83C9F18F5684A351B51B376E7C303232F2A1071F7A3888A9DD13003CA9FEBEBE3E211479BA1803E1873FF947CA4849A488B0501A1C19A3C1D1095A5C4DE553183AADA21D943E3D35FE87EEB6D6DFE3F528D33D023D0310CF71158F6BF7B7D2D67D6E01E0A99AC8FAA0A8A8E85A35116008E22292531FE070ED7DF7DDBF7DFF1DFB1F0D0B0BD7AE0400E78399A3A3C3A10F7816F1D8E41475F70D8AD93DDE47EADCEA0308A2413F73BAAFA7E32DB3D1D8CB553C047E9ACBB75CCC71DABA9BA9E2FD5902C09B6DF4564DE4B480868E79EAA9A71F2A2FDFB827305011E85EF07155FDAE0FBEADCC8FFECB7F23BD61CEEB0A5C4FBDDF6232758C0CF4FD72727C540CD3B2BAE7F2ADB38AC7B57B30D6C2C74DF79F1B00F85B4D44AF16B69181C06B1B333232329F7EFAE927B2B2B28ADDA9DFDBE35BAF7CDF3141C3C7044EE7E71716AC93BAF1D1DF22CF1FE53CEFAAEE7972C6ADAEE2FDD903C09F6A22982068B18824D202CF3FB8EBAEBB2A1E7EF8912F46466A635DA9DF23005EFEBE5D2A13B96279EF77DE7FC76EB7E867A60F0E74B7BF8BF61CE15ECF553CE477FED7CA8DF8DB723BAA786B00B8C16A225E47E0EFC8E79E7BEEDE1D3B76F0FC03A5B7F3BEF8F2AB362923C0E3DD3788E7EC5F1CEABBFA96D1A0EFE4C07F9C55BC3500F89916D013653C53D9594DE449AAE458E91C91949494F2FCF3CF7F11BDB242E22117FCF577BE67450A90BB4FD8B0CE5B7A278787DF9A9A1CADE1D13A6715CF752EDEEDAEE2AD01E006AB896C1B5DE71EB03E0013943CFEF8E34FC4C6C6A62C01C0BF79D50202087456F1ECB6859919DDE4EFC606FB0E72F9D699E7B99883A09BDCE7E2DDCE2ADE1A006EA29A889E1AC893505CAB897CEF83679F7D76DFEEDDBB1F54A954A18B0C60845350925D62351A668E8C0EF6BE63B35A8799EE798C9E6D1D58E613A9E2AD01E0165613A10D0410B8A21883C70B2FBCF085C2C2C2BD7001468BD9DCAA1B1D7AD3A09FEE5ACCF1D36CEB705A8373CEFD2751C55B03C02DAE26228042282ECE51548209D25ADB3B43FB7ABA1A116056F306B67438C51C2FB3FEA4AB786B00B845D544D7256DD815C8D6919FD13672677110A0B0706FE7CD69EB3EE92ADE1A006E836DE46D6E6E2E003D9DDD83140C2101206005A556A6793085C8F19F565BB706809BD407D9D9D992BEBE3E297A38EB04B10F5AC18E80DBA11D6C9F97C0AF01600546608DE0BA9FBDFC6799EAD700B04A20787BD83F670DF6FF01137CBAEC0E9053820000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (52,1,'Modem_(24)',0x89504E470D0A1A0A0000000D49484452000000180000000E080600000035F8DC7E0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000036D4944415438CB8D545D6C5365187ECE4FCFE9FAB7365B4117420C9BE0EAA8CAE06209CAA6F166C9C2606162BC592421811BAECC8C3F373823241AAEF47E5BB417889A45B36886E90523862C80A6800E28821B5BBBB6A76B4F7BCE777E7D4F6189982DEC4D9EF39DBFEF79BEF77B9FF7E35CD7C50621E4F3F9377466BEADE97ABFCED82C635ACA368C1F7B7A7A346C32B8FF097084FD9AA61DD599718448E3748F5ABD0ECBB241CFD075BDCA18FB4133F46F6281C04C6F6FAFB519815708EF10DEB26D679BCE74944A0AB2F7B2C8E7F2E0780EE14833784100CF8B6B42D0185B21B1F3ACAEA54E1E7F7796E6BBEB0A7C70FAB3CB470F0F4AC9AECEEEF9DBB7B1B8B0801C117B7FCB7E198661C1340D9038449F4890093E126124A23746C203CD60A9BAC652673E1EFDFD098153A31F1662D168CBA5F4C562EFABFBFDED1D1D419EE721F0020CCB248147E49EA06DDBB04CAB71EF9324B81C4FDFCDC759B1B5F16628E0FFEAF447EF7FC9F7F5F589E1501875B58A92996B999898088E8F8FA3582C81190C4C633089C0344988265B34DA8E43353151AFD51AEF1CC72538705C071CC7953B773DBFF2F24BC9D1865346464650508AD72391E6D7CADB72CDBE6704945801577E9983A294D1D6D6F6A8F474F1566FD2EA1DC786BF298840380CAF84A6657959B82287E5E7B66F6FB24C6367B55271F675EF39DBD8A2E1E1614155D56062F7EE71D3D20F3EE0B3DCBD67E721A442904419DD7BF762477B47A386815008B1580B913E7615A190CF231409A349F653B60CB458083E71F1A7EFBFDDF1844DBDED4A2412EDADF12DDF956A2B893F225761E76CD4660DBCD0D98943878FC01F0C361CE4112F2D2D41230B7B0E73292B59962149B25B564AD355A5706C6C6C6C995BAFD1FAFBFBE5AEAEAED75BE3F189FB0FFF6EFD6DCFAF7831BD0F5F9C3D876CF62E32B7FEC2FC9DBB944D18B2E72A41042F8AA8A9951B4AAE70FCDAB52B57D3E934236E97DBA893A958DCC0C040D381037D27C86B9FFA44513E383888602080D4F90B502A2A6D9F088BE633A6E7CBC5E27BAB85DC85C9C9498D389D351E7EA30EF4D4A7A6A6EAAA5A39777166664B7CEBD64FA8046A341A855F925CC60C28ABABDAF2E23F672ECDFCBC2BB770FF6B7260EDBFE4EB1D151B86579F6432191B1A1AFAFC7AE6E69B376EFD799955CBA732994C7E6E6ECEDCEC59F4D420C749743CC8D417C6F4F4B4E13E85E05FB8DA080B38BFAAE40000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (53,1,'Modem_(48)',0x89504E470D0A1A0A0000000D49484452000000300000001D0806000000EC30EF6F0000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000009CA4944415458C3CD580B705467153EFBBCBB9BEC2B9BC76E5E64F32890101A5E050A550A532AE561AD0D56C930C51922A0D60E6A61C01119EC74A4D5B1753A5A1C4785D82AD8A10333425B71686D3BA0502B69424C489ADD24E4B1D96437D9F77DF9FD7F489A84F028944E6FE6CEDDFCF7DEBDDF77CEF79D73EE6A5455A5DBD9DADBDB1DAA565F2D49628D244985A224BF222795BA3973CA1BE933D834B74840E80B0657CB92542389F243922C09004F9224133FCAECB3F4BE2CC975098DFACAB2050B7A3E0F04348944E20B4951AC01F04701D63102F60AE85102F23822236BB2284B7F5744A94E95534757AE5C19FDAC095402C8065956BE8163C15500AF10884663A4D3EB684226C6088DAD45F13D47534AEA901A8F9FAAAEAE96EF14817CEC5FC75E837DF6B5A29B1245BA78B191BA2F5F26BBDD41A224526E5E3E994CE6A93332E17EB907C7971555ACDBF8D863FFF93408D8B13F8A7D03F62F62D7B245767E3298C1C1413A77EE1CC56251CAC870516F6F0FA2AF27A7D349E150985C99592423338E8C8C2BF74F4960FCFF0DB228D62929F54FDBB66DEAB82502CFFCE257AF6EDAF0B5B9EE9CECA2F117288A32F6B09696163A7FFE3C9904814C160BF97D3ECAC97193C160A070384C4E000E85429488C701DE49F1589C32B3725818C8807B2679635276F85185BFDE4225AB5313FABFEED8511BBE69024FEEFC71935EAF2F2E9F51F6DE86EAAFCE1504A395AD2712497AE79D7F72F01E4F2E0D0D0D515FA08FCACAEEE2A0D9C35D2E1775767692D168A4F4F4747E8D252D9DE2F118A112915130E2495ABE661C2532D11B53158304D68E8BA2782890E53CF9526DAD785D023FD8BDB709269C0E1224180C81B2E222BF2A25E746A2514D5E5E1E353737935EA7236F490975767402681A0982893A3AFC949D9D438AAA40527178C14EC160908CC88A46ABA56422C141C762317E3D0398EE70904EABC33D34B5B426AFC9725012C5BFC073875EF8D94FCF4C4960DBF7B677A559EDB96648C300126FFCED1824108B2F98378F16DFBBD86CB3DAC8EFF7537E7E3E0D4786697060900AA74DA3FE603FD7B915E77B7ABAC96EB3533295E21E60C023C343949666E57E11606E11E70CC8540A478B258D5819D26875D72FC513B3732933C3F1DCDE5D4FBD344660FDFAF53AEFCCBB2FA6E29132A657A72B8B5E3BFC3205FB47C0798B4BE4C7373DAE8945A35A6C2051C03A30405B89D167D7B9E185E06090F47A03F7C410E4654336D8914927C13361245194E02B99743A03B2138397D241568247CC37949646A31DA89839BDC169B7BB1E5EF3A50A4E80EDA8C7A6928AAA06C168F4EA745AF2B75DA2A6867A9EF66834CA8F26B399962C594AE5E533A9B0A09057A218CC9A0B7975767490CD66053095868787B999FB0301B2432AEC7EA351005115E64E9005D21B82D16D7627F78811B2325E5576276602D994F2DC9E7773DCD9557A9DD68E20FEEF2B6B56CD1825A05DB76E5D5A6979E50E7CE97618D11C47BA4FF5BC469D1B1B29E7E76524362B9C04DB19E0AAAA2ABA7FF9726A6B6DE5751F99A128EE712173DD97BB28333313461E06706403E007070690D511520E6706CF062BBB767C4663BB56D3E3FF9B4CA6FA823C8FD5A03714B1ECB37D70A0BFBDF69B9BBC631958B56A15CA046539333317794BEEDA91919935EFC2B9331A5F693349FA24458309D2F875243769784493C924CD98594E4B97DCCBE5919D93431FB5B571726144977DADCD61E70D8E9D0BF4F651BACD76A5248BE4F6A04F6A35D7D0F9E8311577DA1D6187C3E11E05CEFCD4D7DB4D9EDCFCF6CD9B361643DE2AF780061B6464C08DAC74E67BF20AD6EAF5BADD8A249A58D49BCBEAC9BFB19EA6ED9C43628B3A262B9D4E4FB32A2B69F98A153CAA2910CB853F5A5B9AC903322CE2CC0F26B3055E0851A1B71895C83C45E5F998402A25922C26951CB7470B0C00AEE31EE9EDEE226BBA95B2DD1E16F8D683BF3B5071E2C489D4845162EFDEBDDA86860601117682D3D282C2C267044128668D29A0EDA5C450922ED4BC4B19A73DA47F336D4C564E48E1FE15CBD1E04C8407C307431C485656167575755271491924E4BA6E9541BD8737062131271F4558C481814203FDACAE70E0ACC4B3758554DF91BA3F561E3B762C72D52CC4B2B16CD9329DCD6633237A5966B3B9C6939BFB7D45966D0C6C4B6E23B5AFADA7E2A7E752383E444AEF4846E2205959399B97D92A94DED64B97A800669F565C7C039D6334190872905654AD51B92461F0548275741737BA169263EB28C3BEDEBEEEDD67DE7EFBE8F1E3C7E3D79C46476585AE9A8E8FF9A5A5A5BB51161F4136F40C70A7E0A7FFFEF01FE47ABD80EC0773C764C5EAFF030F3E480FAC5C4582D9748DF161E47304FD8495602B06419D4EC701C228008EA607D931E98D12420063BDBDDD87CE9F79EF45F4101F3A7EF4F0E1C3F20DC769262BD47C635F5F9F03299C357BF6DDFB5555A902588DCFDA4ABE451729F3D522EA29F393E52D07257B457A68F51ADA5C5B4B8D8D0D941415745C750278E6958FD0478CF003F3080709B928528A8FE446D3C7C0113C2534103CD554FFC1FE4824D200A2A18A8A8AE49E3D7B949B7EA1B9920D369D9A51E733DD6EF7CA92D2D27DD148249B49A75F0ED0BF6BDE24395DA4A21FCDA1C5B396D2779E78021D5DC7FBC20717EA29298DC8A8B5B58DE298AF0493C00DAA8334F45A56B7F0C735CED646C0E3FB9B3ADA2FEDEFF0F94EA39C06B0254E9F3E2DABE3407FA2574A4664DEBC79FA828282347CF44C9F3E7D0BDE03BE150E878460AA9FDA663452C6BF3C54682FA22D5BB7C1C499989FF4A437E8C987C9F5C0EF0F716930700CA48075A3016384CAC6F6118DB3462A89A960A0BBE7D7CD4D1FFE19A5F73266B1C881030724750AB0B7F44ECC6475F6EC5903A2624754BD4BEFBBEF69687F79687050C37CB068D162BA67E13DD07884BC455E3EA1B292F8D49E7D9C9001C0ED691612E197A4287383324260910C0DF61F6D6EF8F005006F83FFC22828A951B97C9A2FF563B242FD17103917A6D0F90B172D7A0EB5BFB87AFD7A62132C8B684F77372F875EAF9776FE641F65A39CB22D3C1C1DAF733516193ED3E16B7D36140CBE8FA0F4E3FB12478E1C51D41B00D4DCEECF2AA3B2C2DB98056348CEFCF9F31F5EBB6E5DCDCC19332B997458EDC64B0AC6EE0E3A7EF20D0A0C8479471E052FA692BE404FE72F03DDDD2761D01E5C17C54B93A4DE24B0DB26308E881623092671BD1540F257AF5EFDC89A356BB6C0F059A3D76CDFB567AC5C2AB2323414EA3FD8D5DEF6078BC5E287DC86162E5C285E4F2E7794C0A46A654475CA40172FD9BA75EBB7972C59F265F8457872D71E0572572097D7FBBBFCCFE3D917D18107702E793372B9E304A6EAE68876764949C9DCCD9B377FF7F9DFFCD610ECED7931361C3E0BEFF4B19F592697C5CF0581C9DD1C95290DCFB121D2AC630F83580411673A576EFB197792C0F8B28B48F39F699019E593EAFC7ADBFF017777D42D7614FC5B0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (54,1,'Modem_(64)',0x89504E470D0A1A0A0000000D4948445200000040000000270806000000BF984E3C0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000F754944415468DEDD5979701BF7757EB801022071F102C09B94784A3C44893AABCACE5492E3588925D1B54B27E9B4CED46EA66D9AB6761CD952279D8CE2493C492793C91F49D3727CB4D24C93388DEBD6634BD64DF1924452140FF03E00900048020440EC2EFAFD9600095094C3D892E3149AD5028BDDE5EFFBDEF7BEF7DE42128D46E901BD24C3C3C37FC009D424F0FC239CC09F1304BE79C6E97C67FFFEFD1C7D4A5E92FB4DC0F4F474B920449B389E7F8AE3851C5EE0090410CF0BC4897BDEC545F937A382D0BCBDA6A6F5FF0501814020331C0E3F09C07F0280B53C032A08C42F0316C12F1F4B78BF7CFC36CFF1CD61E25E7B78F7EED1DF37025200FC08803601C8670048B60EC004E06BBF4B22298AEFCE0B1CD7CC4742670F1D3A34FF692540CA71DC015C03D0FC1710715D1CA01003C7258047CE277D66FBE563AB44AC5CB74A521029F3CB88106D3669550FDC2F364AC0166C4DD89EC422AD1F2EEBE5C8864221BAD3DB4B93931354B7AD9EE47239FE9A34F93C769DC07F58AAB878817B83E7A8F9C96347DA3E6902AC0C700C382380D8B91F2A6B00F7CCCE5247473BB95D6E2A2E29017005F5DDE90576096DDBBE83B808472AB57A831E9144D26D644A734408BFF64C53D3E883224087ED0B31D00798E413BF64E7726B161797F940FF005D6F6921A9544A15159534333B43DDDD5D949999498545C520C445B320C79E93430AA592224B4B6449CF5C264258930E09840A2B9F57488AE2BCF3489966615171F6AB5F7D6AFEBE10F0DCDF9DCC3AB0B7BEF9F39F3DF48700215BEF6461256ACBFB60282882EEE8E8A49CDC1C2A02D09E9E6E1A7238A8BCA282B2AD56EAEFEB47D4235404352C2C2C80A83E32180CF8CE4E1ECF2C194D26D2A7A6DDA5A40D1A691074FC828B449B17BDD3FFF3F2CB2F731F9980BF78E1857C65543EA451ABFB9A1A8F2D56946DAA5E7B727C01EE1937BDFBEEBB343C3444F5DBB79336454B57AE5EA1C54080B6EF6810F3BDABEB16A50258C9A64D343C3C249E9B9F5F80A8A7D3E8C808095181AC363BF9BC3E9AF379A910E7A124421DAA8D8117EE4A1597C0FC22C2379F78FE6FDB7E6B02FE06049044392493C9488E2D23DD72E5CB4F35E6190D066B5CFE5DDDDDF4DF6FBF4D128984F6ECD94B2EB79B2E7C701E32CF02F01DE4743A45E363D1CECACAA29B9D9DE4F17AA8A2B28A94907D3FA29FAA4FA52C9B8DC641C2E2E2A24842084AF27A3C50839996901AA950884AAD49AE28312212D321A9C14A4EA3DB115EF837A9947BED5B2FBE38B641024EE543F8430CBC2CB6E17D302FC7D691614CDD76E9D22565717131D5D76FA76BD7AE516BEB7531FA9500C74CCF05F0DBE0F604B3BB76F52AA9556ADA5A5D433E447760A09F7273F344B93382984FE4E6E593DBEDA285F979CACCB6D2BCCF07420264C9C8203F5245269353AAD18873E5CBE6FB1B55B08E5AE0175C64B90557F0A1B3A74F9F5EB827015F7BE1546128B830986634251240E7DE7D879C539391C6C6469784C836ED9CA683070F92D96CA6F7DF7F9F1490FBAE3D7B687C6C9CAE5F6FA1C2C242447C0BF5DEEE415B3C052FA88462A4D48D9430994D64B7E7C223066929B244B69C5C9A71BA44E059569B980A3CC791C9928E6A32430A859252F47A0A06FCA4379812400A1B2BA7C9E706D17FFC428872CD3FFEDE2B6F4763C0571570EA54A1E00F0E06FD0B6430A7931652E5615E675EFF572CCC879C8D229F372FFD7163238D8E8E280B0B8BA8AE7E1B5DBFD64277EEDCA11D0D3BC80A1057AF5C11655CBBAD8E6666664522D8B9968C7490D005C214945B904FA343C3E279F6BC3C72433D68B0281B4A70B99C22F969260BB9A727C5F7BA5403CD7967C535C9946A968FC90D566CDE486AB084BB1B33B55A3DBAADBA6A5AAF561C3F7CF8F0C80A01A74E9D927AFCFE12ADDED4CBE4199807602E8228F174F5E239B1A9896F9A94146674427151A19445EBC0430F8BA5F0C207172071A39806DDF00A9044D5D5B52457CAE9467B07A26F86ECF3E8764F8F48787E51118D8F8E027884F2608E531393A231327F98C67B763C3D339BBC305C76DC88A0F817E6456029BA541CA37BA4C5DDBD041B573617175DB758CC3BA512898AE4928223070F0E8B04B00DEDA6ACB4AAB6D29C91D111973F6B007A6EB6D3C4D8E80A780C3C2BEFB350E2F6EDDD2BDEA0B26A0B6D2E2DA5CB972E62917EDAB96B37CDCDF9A8A3BD9DF2911236806A6F6B138DB064F3661AECEF17235E8CF7E323A3B86F08E715911329C3AECBC92D10D3C1EF873FA05C066196216C69304929BC61E36552A04C8BE5923DC75A2C934A33597099814B15D264028E1D3BA6D0683479F6A2D2FF54AA54157123743BA7E886E32A39FEB493D4033AD2BD9141A185F00A1911A448E596AD540849DBED76DA034258DDBF75EB26A25F43668B0529719974C8E3B2F20A3105584F505659496300CE4096C22366514D2627C6A9007D443018241788B0C334C5CE120A30593248A3D3890E9FD8880931F9AFAD0CECB34AA5EACBCFCD59522AE49512009732E0D2E5BE4E1E95171C39B24601B82055A6D1E416176DFA4A7A66D6D388560A9376DB950BD475FC2ACD3F3E4E969F1652EACFAC4929C136B942417575DBC88414780829A152ABE8C2F90F28035D6039C0B6B7B6822CF8425DBDD8134C4F4DD1D69A1A9A4705E8877F141597105BA463B09F6C3049AD4E0F650C91C1682613AAC2723EDF73924C52415488FA2D26E3709A21AD5C8A9BB2161CFF01BC4454D8E8F0306DADAA2B6E6A3A36B8E20190851424288D46632AA29A9D92A2AF2C2E2F7BCE6CC968E8E96C930898465CC6499278643450DD43BC3D48A9FF9E4DE4902511C1FA81924D25545B5B475BB66E15532282DE9FA5C4F090030007A9B6BE5E8C5C67471B721F84A6A54119372923234BAC048E813E444F0DA32CC4EA241B6980E22A884A04613E3B3B2B05F387421A03CE08082D069176BD506406E5151450302C147FF189230E560956AA00334298971C04A4E0C6461CB259EDF6FD0AB9F279B94CA28D83BC5D7683C69FBD499288948A9E6EA0A5592EC923D8565A564E3939763A7ABC51ECFA6EDDBC8189703B524147972F5EA44C34497900D8D9D60A53D5D0A6D20A2CB04F54C9A6B20A421A263540DC1A734B9A0F703CB41888A6A5A545F5FA5429032E89455C80538E0D3B4499E743654A945576DCE39D29738E8DF5A175169286212881F9014B14250069B1B7E0FBCFA05BFB465AAA3E8B952D06745A37415EBB8B342D06723CDC4DEAB114D2BE63A650709508663665E5E5B47BF75EA441059D7BEF3DD2C30BB66CADA1F6F6560AE3BC5A3455AC124C4F4D52152A86018DCF46CD4D040EBF88E2B309ED753CC725B1BD67C645F3A2A1E6538A56479204450C0F0FD69E7DFDF5AEB6B6366EDD7198A5445D5D9D0C0B56A5E2851CCCD26A75CF665BB39F42E3A38E83F4713EBAF297BF26BEC64F69FF65A5F4EF1427550AB621AD6833DCFEF38F1FA5BEBE3ED1EC768294F9B939B13962269A8B3278EFC6E66EF9B34992F52646B3057D858C124D2E145C84A93A51922D6460554354C4AA0F401593DD9DAD0706070787CE9C3913B9E7F300A68693274F4A585AE0A306A96184024A6C76FB37016A0F6428650067246E1AD87993A20A81D2DF282067FE38A9EE688977094964B066A861E72EDA0432AE5CBE448568ABABB6568B3EBC56D27187E7D6D476769E1B8D925A9D422A8D7A25A2A2BB831C9FC74D32345A668CD9EC58A20F509422B3B3AEB31D2DD75EF1FBFD433E9FCF7FEEDC39FE373E118AA78556AB55609E67CF0B2CB8F96E007A51A55216B052B8E20FD65B347CB285A4334AB2BE5A46CA8BFA24353030FBF6EFA7C38F7C561C7C7E9BBEDE8BA12A805E0079BE92E30C1C4BF0F0A25FEC5AF5B827EB34139D9F9DBB30E76DEFEDEA7E756262B415417441D47E449F037661C3CF041911AC5CA23CAA743A5D2A00A1C7B03C61B5D99EC51AF42CDAC17090DAB75CA6C9CFF592DAA5A592171A28C00788F3AF1A654D4D2D7DFBF4694C86FDB41058446323FB9007A9024007C42E91CD04324C6B4926876E3182264A8D715CA152AFFA408C80F052687AC4E1F851FFEDEE5F2350D358B7CFE1708459EEDF350B6C9484785A78BD5E0DC830E0702EA6C4AF83D547D0DDC918C8402840612E4C7D193D34F21C9A28879E327F5A44D23B4ACACFCFA757BEFB3DB1D162E5B5F3C64D2C94235E9CF8568988703C0DA16C4A005AAE54C622BE0C5E2241E9C6B52CF7E52ACDF2F1980FB03D8C31E8724E9DE9B87EED5F808F3D3EF3C2C71677ECD811C1FAA3D104D01FE9B1783C2DDC6EB7027EC0AA8519F7D952595575124BA8585A5ACE7D0FE7A1CBC7DFA6E03E4C76D31A2AFBF37D64D019E9D5EFFF8096BB4DA94804C8A40E10B1C42D1330363A461E989C4A931273F5B8A489142CC2486841AA48CA7131F2C874749717FB7B7A7E303FEFED81DCDD88BA1FEB8CB07C8FAE03F663FD3092981672B95C8F2DC364321D8422FE0129616269110807A82FBF8B22EA3065BC9F2B5EF7CD132F613EB0268DDD6CCFD2E267AFBD490AF52AF0B8DC35E8361572292DF1518A8A7F3BD9E4C2C1A063C431F0C3F1D1E1F3B8761AADFD1C93FBA38F3ECAAF8DFA7D23606D5AC05DD520C1807BDAA086AF18D2D29EC43145E220C59E077EF14B5FA2D99919B4C0C562994C7C08F3F72FFDA3F830245ED3554A05A56935629A843040AD443C4600CFF1F3AEE9C9E6C13B3D6F623913B887177F2BB89EDC1F0801EBA5457A7A3AFBD5C882C514EFDDB7EF250C40DBF159C20868D8B913F3C243E235A3688298E44B511A113111F0D74F9C022172F1418BC598CA467F9A5B0850748D22F08FF37967FF77A4BFF74718A0FA71BB19CCFB01EC97E0F0427483C0EEFB8FA36BD342A150A4A35A34D4D4D49CF4783CD6C6279E101F95C723CEA6434855EC120BD0A73302B22C66D2A14576CEFAC45E60ADC9A1F5ED9A1C76FCB3D73B7B1D7FD289416E3EE6EE2CCF85FBF5C3C87D4B0B90918632646D686878FC738F3DF668616161E9DAFC6746C814D1D2D64E6ECF1CCDF90377B5B75C64C93DEB9AFAC9F4F8D8AFF07902E47AF1E782151515DC46E4FE8911B05E5A204A29D84C907CCED1A3471F3B74F8F0D366CCCF0C3C03187F7DED1B2F8BBD413CC71970AC31BCE0F3FC726C74E827D14864E4A3CAFD1327606D5A40E64ABCD58384744C6FC5CF3CF3CC9FEDDAB5EB8F104979FCDCBF7EFEA5A80CE3672CFAD1C5C0428B6B72EC87FEB9B95B00ED84A2E6D1912E2536331F6B6D9F04018969F1D65B6FC96C369B1A1F0D6CC8AAAEAEAE6F6A6A7AB6A4A4A4829DF757CF9FE0A00A3917098FF9669C3FF6BADDEFE1BC49D4741F2AC6C792FBEF9480B5698148CA11E11480654D94EDF8F1E38750B3BF7CE29FBE43019FE7E7AEA9F1FF8032D88F1AB3F087002A4BE4E3CAFD5341C07A69816AC1862C034AA10966C9FA0637BEF662EF47E4C3F7EAE27EAF09589B1656AB55817AAE60C7A10C0E33C3128EF1F753EE9F3A021289603B80153FC7F60F1478FCF57F0F62DF64389EEFB80000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (55,1,'Modem_(96)',0x89504E470D0A1A0A0000000D49484452000000600000003A08060000004F8D5CA90000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001B124944415478DAED5C697414E7957DBD77ABB54B2DA9B5A1152124815824B1098401636CB31807BC81633BE78C2771166C666213C7269E9C3327F327F333936DE28C719CD88E1D2F079B5D60641601424212DAD1BE2FADB5257577D5DCF769714BEA6E89C5F15AE714A5AEAAAEAAEFBEF7EEBBEF7DD5286459A62FCB525B5BABB7CBF2363CD31EC9212F9724C7BB24395E4B4E4E3E4F5FD345F1253080B2AEA92947B64B7B24597E5092245FAC24C958792BC9E490A42AD9E1785DB22B0F2D5DBAB0EA5B03DC81A5BDBD7DB1DD2E3D2691FC28808E1803DB799569BA21780B639CC7CED764C7E8DF323333BBBE35C04D2CDDDDDD510E5900BE0780A67A067CDAFE89559EFC6CC3B91FCB0EF935FBC8D007393939C3DF1AC0C5D2D3D3E3A754ABBF23391874691D56850B306FDE1053CFEBC5F66D875D3EB43167CD69DC56FEA61B403B3434B44522423295EE9765490FEA205950883CBE959CB6F2D8569EB95F9AF85B9E76AEE4E2B32CB60D88B2D71536F9D0E6CDEB4BBE490650D8EDF6550E87BC47961DBBE1DD81EE69C495474FDB277BF27E57D1E3EA1ED255C941AFD955D21B3B376F6EF9BA1A6001B1A74B12737BAC672A990AD2A4973B9D83E44C7ABD01ABDE8531E64259AECE81A895E5137687E310D986DFDDB56BD7C057DD0061581F66E0B12E9327BD519E43129DB9CF66B351654525955D2FA1BEBE3E4A484CA4B4C5E9343838445E5E5E73F07E57D1E3D210BC7F08EBBBA0AB433AB21F83311C5F150318B13E300EFA46ACAA8903B2273AF0E0997D7DFD54585840A525A5F0781DA5A4A6D1BC98586A68A8A78AB232EAEDB5507C42022D4A5FEA0ECC5BA4ABC9F3DAF0DD3748B61FFAEEA38F5EFE321A8041DE340EFA8E7123CC586ECEFB25AAABABA3CBF997A8BABA8A620078DAA2C51410104025C5D7A8ACECBA3827362E9E12E72741CEC85455510109DB05432C213FFF805B3784C7F31CD7F1F7219B43F9FA33DF7BB4EE8B3640C638E84C3321B35D642EDE3F3A3A4A57AF5EA50B17CE535F6F2FA5A7A7D3E2254B6960A09F0AAE5CA11B353564341A69614A2A28683E7574B483924AC9D2D34371F109148B7564781846AB241BAE159F9044466F6FCFA0DF5AB28790923E618A720C2ADFDAB7EF09CB3FD500FFFD9BDFFD6AEFEE071F0B0E0A8A9CCB05C6E8C7BDF7A3F8A2BCBCB374F1E245F2F7F3A3CCAC1594BC7021959797210AF245D28D8C8C8277A75364541495959682928A49A552D3029C173D2F86DA5A5B9123CAA9134631858480A6E2C817D76AA8AF23AD564761E11173F3FE3946A8D3FE11ECFB5042F21EE80A3E7CF0E0AED1CFDD003FFEF717FFA1542A372F4E4B39FFD8EE0733B45A8D717603CC1C503900CB3D758A4AC0EFA9A929B46AF51A0A0A0AA20BE7CFD3A54BF9222252525369D9F20CD2A8D574E5CA652A07EF8799C329352D4D005D595E2EA2C06AB58ADC109F9028EE575559411DED6D148A73A3A2E791C361A7AECE4E0A0C36914EA7BF05EF7793B0A78CCDD18D7BBFE990E9D0817D3FCCFBFC0CF0D39FFF43A9526E871148AD56B5DEBB6963F5BA352B572970AE3B034C14425650C4A7797974E2C409A166B2D7AE05F0ABC962B1D099D3A7E95AD135F2F5F545146451FA9225D4DED646172F5CA0C6C6064A4E49012D2D21BE6F5161A1005EA7D35152F2428A4322EE40A454226AFAFBFB457E60E07B2DBD547BA35AD0981951C006617A532A55C815FEE2B93C79BF3C6B913775FFC435648754038A7A5D76D0A183079EABB8A306F8C90B2F230214DB55004239BE7A190CC58F3FB24B15131D95EC8AFFDB00E4C71F1FA1DCDC53141616461B376DA2C58B1753E1D5423A75EA24D5D7D7535C5C1CADC9CEA6F9490BE86A410122E19C8882E51919B40892B3A3A383AE5C1A4BCCE6F0B12888888CA60A80CEC6508392E62F5820F6D5D7DDA0EAAA4A61FC98D838328586514B531335373590C160A0B08848788B82861139FE814118A5E2E6BC5F96E7ACBA609C8BD81E72A8A4BFFEE781031DB76D80670F1C640ADA8E2810E08F1942C15E259BC3423FDDB37B67A28FB7B748CC454545F4FEFBEF434A16D28A952BE99ECD9B291034731211909B9B2BA823233393D6AD5B8704EB4D9F9C392D7241486828AD5EB506C9355EA81E4ECC9D3000E786C5909C3A48D222246C069FCF4D5E984AFE5049E530447555157923F9C62351070404524D4D1535238202007404A2828DDA545F2BB661E60832FAF8502F12B91FCE556B342E0D319BF7CFB1B6B1637B0454F59ABDDFE7FD5FFFFA59EB2D19E0B9175F991101132BEFC3F9032DF5355D92DD160D8015F7DE7B2F6DDA74B748A61F7D7498CE9D3B477E4890776DD840D9D96BC5FE93278E537171B1A09D35D8E70F7AE05CC02B13DB72E481C5A09F9E9E6EBA8C28A8ABBD41894949429EF2008B61E8DA1B35140ECF664A52236754945F175E1F81041E8DFCD00B9A633AE2F14446C790C1CB88E30D3408CA32212A7DFD02A80752D6E8ED43DAC92AFBF6BCDF43B2EF47EDFD773B395E0BD6AB730F1E3C28CDD9003FDCFFFC71288B0D5AF0AF33F0E26F44457969091DF9F07D24C59891170EBCD010141090F0C1071FC093CB68213C78CB962DA09F74BA74F9121D3D7A94BABBBA2827673DAD5EB3868686864462E6841B0ECE5EB97A15258192380A381730A72F5DB68CD2D216511B92ECD5822BD4DAD242490B92110529A88C07A8F8DA35EAEAEAA4F8F8448A898F13C7AB9194D92831C80D0683911A40517D7DBDA0B248F20F0AA6F69626C8D96E44A78902F0998FB1671B7D7D88873FF79AE196A46E13F2C55F1C92FCDA6F7FFDAB6B1E0DA0C0F2FD7DFBCFF67575ACF2F1F3A7C090302107C72868CC081FBEF316D5C11BB97DA007DF868787DB376ED828EDD9F39896E9E7E8912374ECD831E1E577DFBD19149401C9594EC78F1F8794AC100073144C28A2F3C80506BD415018737CD9F5EB7429FF220D23A1B321598A363536213117084A6343B0C7D7D654A3402BC7337889824D87676143F4A17A8E420404434535373682DADA28D814822808A781FE3E6A6B6EE47152A029149160A0011883AFA1C438E7D6E2B835A9ABD36A5BD35292FFF0D49E875F726900067FD7AE5DCA98E4B47795A4D8DA6FE9A2010C2628345C243206BF1B9E77F81F6F0BF0996379CB6BA8D94C89898936D9E1D02C5DBA94B68096E26263E993B367E918A260707090D6AFBF4B28224E8CB9A77301723EBC38815667AFA1909050F139FFE205F0BB0F2D87D1E2E0CDD7610C8E02954A05632C01DD44D275D4094C3F5C11B37198D7393730CFC7222A58093535D489BC108CEB4644CD43E40D52635DAD90ABA6503379FBFA5177673BF5E13BDE50653EFE41E298C36E279546EB06CC596B0697E7B21658909878DE6C0ECD00C4C777DCBB79C70C0330F8BFF8C52F14252525EAD8E445EF60C0F731E0B802F574B402E4510A85FA68A8ADA5C2CB1727819F58D9187CB338E8F4FBEEDF26850407283911B322BAFB9E7B888D5285E4791C91C151C08999252AC90AFAE493330264501AAD58B58A4CF0CC2BA8130A4053018181A8133229C86442522E40915622EA841450142FC54585C2E3E311019151AC8E6A4574B2C7C7C4A1721E19A13A24E9213840584484F0FA6E14739DEDAD2247F06705C669E9EA201BCEF5F147A2D6E96FAD6E70113D612121E713E26322554A5524471DD6F776DC77CF4C03BCF2CA2B4AF0B8CAC7C747B762DD86B7546AF53DACA527A8C7363A425DADCDA2F2644E77067EBA31F87BB1909C4F3EF9A4BC6DDB360527E523473EA6FEBE7EBAEBAEBBE0F1D9D4DCDC44A74E9EA40A1883B5FFEA35D95C73888AF91A14154B4BAE98BD8C46CA87426219CAFBD2972CA511DCB31006EBB5F42002988EE226E9880D95889CC2415D5D51262236028631C379F8EF664486061ECE3295E9A70B7966A0CF82083791C1DBE7B3A252BE9D024E866CD7572E489A3FA8D568D2C780170CC358BA37C0850B173438C12B75F9CA37351ACDC629C9777CCDCF3B038FEB7109FEF4CF4C119191111403CFDEB67DBB888202E87F8E822E1871EDDA75B472158A345CEF341233530B2B218E02C921A1A03B2BDA0F9C809765648A02EC72FE05A17652911BE213E6439256D0F592620A04452E4849258D564B1530564B53A3003E3A361EDFEBA3BAEA4A619470ECF3859777B6B58282DAF07700F9A37A669E7005E6F4026C36EF572815DD09B131C590E9AB01B84A803EE6F9632B0CF0802B03ECDEBD5B3530300021A1F6494A4DFFB197D1FB05A54AA599A805948AB16D69518108D792D50534BCDC42867A2305FC2592A46ED9AD31B891C6451903C1932C2C5999822A91304F2031372151AE58B90A8A6835F5A28AFD04F981B53E1B230351C01177FEDCA7A229B774F97261106E451482927C7C7C45438FA565190C710391608E08A784F9C982362BCA4AC90AE5153D0FC55A9899BAC0FB1C057C7E68781421D26F6EAEC18D2180A13DD4147CDE640A4A5328947E5340775AF1CF7B0F6EBDD7750430FF43261A71C1C0D0A8A88C8888E8E7F55EC674E728282F2DA6014B37152DBF44BDFBAB858657D7EB29F2E925245964B791C1F7E02EE7438F3C42815057478F1EA101484A4ECC2BE1F10D0D0DA0A413A0B87ACA02E8192B56425E36D359E40796A6CBB3B22835354D14665C2D73B5BB04B503F78BB885CDD238089E9C92B6186A46259E93BBA9DCB48B8262E23C518368D1A83514897D06A81E698EED87A9F3D453E7B3F91A069DAE2C3CDC6CC0B5E74D508DAB95151AC4C0D5FF38F8F212974938272747A54501C051808FC148C4663CEC7DE688A8BD5A9D3E900DD0587F83BADB5AC8AEB053D9D2ABD4BEB39AA4F0518AF9E512D29FF177999C9D3FB36C654ADABA751BDDBF75AB5039C7901FB858CB062531FDD422D19F3E755200CF51C16D8AAACA4A3AF7E959A1F5B356AC02BD4451290ABBA2AB57C8C797A360995033A530463D9270D4BC1824E605A27D5D05C5C4DB180804567377AA00037096A0C0008BAFAF6F8C3BD079E5DC5300E112841A2475D1E2C37B1FD97DBFECA4FD67A82028071D566F0CD61FA087601B95989CFA6888D9BC1137D71481870D06BD00D4EAB092553748CA4E355D4F2FA2C1EC0ED274E829E8ED4852D66BDC1AC40C25C3AA47A3510B4AE21AA0BCAC1C947494FAC0F56C8C65A09B0AD40F6740494CE02B56AD11DDD072146DF917CFE3BB1A911BB8DDC06A881512F7901642218106204D4B44FB9A5B1670A2CFDAE673E9827AA01C07129446A5EC0B0D0DF585932A27C12667AE5708A397145D15635E0407E1E6208EBC5F5A78F901602D4F18614A1D30610470B146A7D319B0DB8729093732F9FB07A5242E5CF8445D4D75AAD1A09B01EAD5B47CB2FCB49208EA55615151F84BA9A42DF076AB967865EFCECACAA446E401968A776DD82480AFAAAAA493C80FC323C3949DBD0EA0A621842B4149A7C90EAD9E91B902C02622019740115D167303E9CB3244345C4714B0149D8704CCB2581458B325D23978BFC3E120FBE8B0DD640A51EAF47AA55B9EC7B55895B110989FBC507469278E01EB0F4F1E39BC13C5AB63C208332A6136426E6E2E602435B8568B5D5EF8DB17D11084BF43A134F625C4C7AFE307720673C83E44451917A967572DC9263BF99E09A5C85FA6CD4A4B4C6D9C701F79F431D2E9B4F4F14787C1D97DB46EFD7A5AB27419358EE707EEE3AC806A4A05CFD754572131E741A5A9901F5688417204941617C1DB23452ED0E9F5B7D3CB99B28FAB72484BF243FEF244375D88B81BC8355C0C725B840BC8B1634A21452587E3E357FFF0DBEF00831160EC9861800923F096ABE2808000654B4B8B060F8180D019414DFE00DE8CEF3C0D0AD9121810E0351DD42E4307F505F5905713BCBF47A2F27BAE920A0FE05D10485E577CDD1AC317D529E787EC756B69C3466EEEB5D1896347515CD509E0976766510BEA8733B9A7444F29336B2525242589F9E22BF917C7A36039F90704DEB15ECE288A33C93E2A267AD851DC013F6C1D125297ABF2B88424617C57E7D96DB6E37F3DF4EA6E5C7F282B2BCBC64D3AB793F2CE86E0C97948488DC56231C0AADEB8400064EB4218E899E8E8E84C246F952B501BFCEAA8EC6779A4343B886C0AF27D3B9C42FE27DE631D91B4600125803A9A11C25990A75CA4F1E4CEA913C74501C7051A4BCFA6C6063A979727DA0799388FBBA277AA97C33437D8D72B9236277E77C0C3A3A9953BAE03FD140D8FF781134DE603E5CCF36DA3A327DE7EE3D0C3A869064C2693EDCD37DF74CCFA5A8A2B5A420234F06BE4304620BC3127CC6CFE9770B3398EAF359D722E2DCEA3CE3D5544810EF1C6E6BC979792E1537F8FB4C40030F039EB73842A62C5B32C230392351B859B853EC93D499D9D9D9409B9CAEDE9B142EA263B996E12716F77373CD840062FAFC90A5631C5FBC7F659A06EB8ADC1FDA620AC9EA889D791E191FCBADAAA972EE4E5E5239A06678D007786E096455C5C9C1A40E900941146F0032D85E03ABBE6CD9BF7A83F1606D019D87AFF5A6ACDA8219BFF30CD7B3B85A4160535473790BED98BB41D48E8A3AE8DC113EEFCF6C4F6071E10D4928B5CC0051CCF23B30252AB35B3A89AB937D0B85064CAF19985E74740375DED2DA297141C6A16DD624FE73B6CB68E86BA1BBFC9BF70EE1D00DF012AEFABA9A919D9BA75ABE3A60CE08A96582D198D463DCB567C0E00F051C0FFE9A8A8A8BB71238D3B2FBF907E9606F7D5913C42643C1642E63F2790DCA170A994F87B2C2FC359BAC6C6D0FABB3691D1C7DB75453A39C7EBE105DE698618B15AC5FC0203EF89E7996EFA7B3A851AE2363D3B87BB739542F148236D2D2DEF155CBAF02A927813C6D28DB51FEC31ECEDED6D7FEBADB7249749F866A281690994A4C245B58804031E8E7FDD120843A4454444FE2824246411B73CA7835AE55B41E53FCD230AB18BEB69AA8C94F8A395641FB67B6CF47D7CF498A02495666CF0B7F3DE2803D9DCD4249A725C8FB8F5623CDFF060BFF07C6FBF00D2C3F3679CA3FC0C785EFA2C96F3D78A0A7EDBD1DA5A0E6CBA70AF5EEC1EC218469DC1BFED97735DD11206E7851BFAB16CC5B537C4C7C73FEDE3E363E6013B835A6E2AA51B5B8A6838A30703204A7E219B74C53E1E13F4EFFEF0474A4C48A001146BE51595A275ECFC5A8C6BEF9FD64290C75E22181E1E111331EE3C788C3E4668D43A481A94447AA3F7B45C30960F940AA5B31AAAABAE2AFF7D7579791E9EA3132C60013B0C7A79790D8376EC4C3BCE45D81D793B7A3A2D21DCD4504C7A6CBD71C81FC085422D3D02B5F410BCC1CB19D421C71075F8B5925D3D4A7E55C154195E46CD1BAB486BD392F795200A3C1536253F1CF8D98B621E61FC2501A1846A1B1A49A5D6CEA99AEDB3F4524B5B2B7979FB4CF3F271E09513C514CE1FB1025D2569F446D15FF26428C961EF6F6A6C7CA3F8EAE57781673BD8A01B0E37C03000137E99CBC15E3FFE1A8FFCB9FC3E60DC103CABA6E0CE2AD3124043C9A8F461B504C0636263637F101C1CBC0EF754BAF2F0FCA44FA9737F19295478508826E399608AFEAF34B25BC78ABE3D7B1FA79D3B774E6991F36DAF41257575F5908CCFAE0C318CE4CA6F4F68B47ACF60F200243B4091488173154A95479E6760517C1D2B2B2EFC13C65C8F7175E199FAF0AC562C0CBC3D2727479AEEF59FEB2F64A6CB562C3A18C00BE1E88B434C4BE90B9293F7E975BA4406C8996EB89ACE5DF711591F6C218566EC7A11BF5F48817F8F12C7773FF430EDD8B1E3B397059CDAE5A3B651BA78E912F50D58C727DAA1E72507D55455D330BECB1331AEC11CA3118D92DF4486C1607D69925694E4DCE1746E3F40FB5FABAEB8FEFBF6D6D6427CEE649EC75807E17823EEE8E69FF6132577D5341ED01B099AF343889F9FDFDDF109094F03AD49D9CAEBF0E830954617527B661DD94C4334EFBD14F2BD6412C7EED9B28576ED7E88544E2F094C7F6D86EB838B972E534D7D2335B7B4B9AD4A27C0D4C0885E5A158C4534E290DD9E37916C514CB535D6DD78B5B6BAF2049E9B5FC4EA81730D0C0E0E0E634C364F74F34FFF91DEF4FCC0BF1D436ED073938F652BB735121313BF8BAA700700D6CC90A0F06AE71CC08D3A9EDC494949152F67CD9CB51BCB0DBC7DFEE55F8A09177760F214A8AF974E3CE7E0880DB982DC033F262BAD9DEDEDEF559414BD816769C5FDBA11D97D188395D50D28C7311BDD7C613F53F5D4E4E3FC80C1C4A72F59F2AC5AA55A0AAF52B892A0BCEFA9EF7D8F4243C3C45465B0C944C90B92455B7A72E66EDC200CD8BFFDFC17A406ED28A755B07CDCCFDB48069D867A07AD3462B3BB057DDC7FE4FEDEDEBCCAF292FF1DEAEFAF442477E1997B71AFA19BA59B2FFC77C2D365EBD0D0901E0332829AFC7038187235031EFE1CA49B797A35CDEB0B070E10CE11C07097947FE8C1BFA0E157609CA98817610054CACE6032F0817EDED40FE07B0786C43BA39EC01F1EB65637D5D6FCB1B5B9F12257B1C0CA026533800274E456E8E64BF14B7957D534CF3D4C34F9B0862425256D8B88887812CAC2F059B7D4979EFED7EF4FF174AE2D2A100D3C979CC6AFB4232AC62F4FFB5F3C3869006E25478404D108E8ACBDBB57D4039EE8C66177583ADB5ADEB85155F621EED58EFB7015CBB2D2EA544CC9E3B8DF16805FD87F55E0AA9AC66EA6259E120D420498D7AE5DFB0300B001FCAAE4F74C17A7A78F291FC567AF4AF29627734A4B4B45E732353555FCB06FFFCF5E1609382A2C84E76DA9B1AD8386507C4D017D5AC71248D8FA2D3D476A2BCA0FD96C238D2C2B1181BD30FE504747C7C85C64E557C600B335F9B89AD66AB54146A331313B3BFBDFB66EDF1EE36D341A5C299F89BFB9C2E57754434343E9F0D113141E6AA286D676EAB2F48A8EE9D47C30B5C3691D1C2C68AAABFE23F8BE946525BE60816018C4330C9BCD665B4F4F8F74BB74F3A534C06C4D3E00EB8F6734454545253CF1C4938F2F4C49598164AD98AE7A26A887C7C3FDA2C3478F537D739B9823507AE856DA6DA3CD1DCDCD7FEE686B3A03A377B0BA81030C8066ACA040DB44EFE64E03FFA532C06C4D3E3CA30FC009C4E190D5AB57673EF4F0C34FC02BA39D55CFF4E5B9032FBBAD7A05DD48D2A0A5BBF3DDE6BA9A7790775A59DD701F0DF71A9A6B15FBB533802B43C4C4C4A851E4F09B1A463CEB44351DF6D4534F6DDBB871E34E6F2E085C2CCFBEF0B2AC142F2DCCA87CA5C181BE332DB535FF077EAFC1A99DF0789695A26986C2D1EE3C69FE55FABF223EF76A1A80E9C1C94C4B7EF058881E53EC33CF3CB3373D3D7D8D92B9C869D9F7FC4B0E44806A4A153B622DEF6A6DF9536F4F5701F631DDF470D30CC6B5DE2959F9B53180BB261F1C5EC3F2949B7C5C4D735B232B2B6BC9E38F3FFE24E789C9DFBA3DFFD22822403BDEADECB27476BCD1D9DA740C4AA98D65E5CD36CDBEB106F0D4E4433418B88803A0416C88BD7BF76EDEB265CB433052C04F9EFFB995A5CE507FEFE1CEE686BF619CCD882051C5DE4AD3EC1B6F004F4D3EA76A3AC0DFDF3F74FFFEFD0FFFE9D05FBD5AEAEBFE66B50ED4E16B3DCCF3B7D334FBD6001E642B8A242D0C2266E3301E2EE6F86F1EDB28AB1A5E792EF6769A66DF1A600EB235383858DDDFDFAF0125A9F938FF3F4150363618C8FE45F2FCD7D600AE0C317FFE7C45434383E8C82117C8005F9A00FE8BA69BAFAD01A653131B637C3B3938F94B3AD0FF074DA05F0457DF4F530000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (56,1,'Network_(128)',0x89504E470D0A1A0A0000000D4948445200000080000000660806000000032399540000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000041224944415478DAEDBD099C1CD5752F7C6AE97DEF9EEE9E7D46B36943FB8690B0C40E5230600CCEB3FD191B2F9838B1835F5E127F7102BCD879C97B2F7E368E4D3E2F1F24C1B1836C6CF6C58A598C9040484212A36D24CDBEF6F4F4BED5FACEB955D5D312C286188186A87E53BFAEA9AEAEEEBA67FB9F73CF3D87D3751DE6DAB672DDE6C4C9137D75E7E26FBBF0A28B7FF1D4233FB961AE8CA5087374DBFAA77F0F69DD0B9CC003CF0BC00B1C703C1EE3FF1CFE2FE0FFBC2000BE0922CF8120F260A3633C2FE0AB4DE4F0BCF11E8FAFEC7A1E40E078F65A915590540D64590149C25715FFC7738AA280ACD0797A1FFFC7F75455C1F31A08877F098E52C6813F2F6AFE4C15F714EEFA79067887B732EF81B144054411896D1341B409788C0F6443629AAF22E0396406154FD8F13A5EA4F7E87A63B7D18EE7E81E36813ECFB36BCA92027A5905195FCB02EEBCC2CE9535DC91D865DDD819932083C812C718A3DB1300BE9243F601670DD173B8CBE719E01DDEEC28C14E87C88827220308ECD5383698C13A675D23801D8FEDC818C40C7646FC590660C447D12F21A14B28D5254585324AF5ECAE4305354245D5D92EE1FF32FEAF68B8A31995351D748DB3E8AE9FCB52FF3E6100019C76EE54829B4415ECB38C611017DFB31BEF11E1EDA7115E1404663A88F816B1CB48643AAED0FFAA497C05D82B330D784ED16807467C553369AE57897F9E01CEEA0F47C2B99CBC29E92613D80C7360AB6A05E3FD2A9398EF9D427C7CE5380ECAA8CE4BB2CA885F22A2CB4470620424B862487ED9D400924A128F4C60121F0F510B402DCDCF33C059D700A8CA9DF659B54F4CC0086B7FA3EA9F3511E6AB6031008244D4DA25C9243E4236227CB9AAEAE9158C63640249D34DC92782734CF56BB8D32B5E8A14E72CAA9F6780B3BD9124BB9CE22C08ACD10255FB4FBBC91036BC86272088EA5EA825BE6CDA7A53E513F199EA47705751666D7E4533249F115F33D4BFCA8E8131015900AE4AFB5318403FCF0067617308A401C4AAA45B9E80CDC4021626E0791D785040400AB1F7F0333C7A05483728CA4A0DF151F59B925F2E5520509884E18A885E800B251F55BD0AB3C4278947B2AA26E155D4068CFA06063C8F01DE951F8EC47509B62AB1AB1E80E9E6F1E4FB23E12BA924040B53D01470C191723D845ADAF12CC724BF6212BE6CDA7AB2F9153401C55402FEA0538072A50C8F1F1B8257A40828362FFB1CD97AC5243E630230094FC18359AACF09E99FD30C40011B874364522D9A7E3D3102058418E1D329F06646616D431082F17AC8E40BA04925A0C82753E70CEC11F16196F8A6AA67411F14FB582800B75E1884AB1333F0F0917ED8510A812ABA51EA7926F51AEE3A0248FC5224B56AD980F30CF06E6C14B02113603355BF40114093F0EEEC18ACAA0F42B8BE955D2BCB3254240938DE8BEA1C89AB700CD91BE85E634C50D1A0C6C7D7D8F5A55209DC6E373446C3703BEE1F9C4AC2B6D787E185821F39D08304C7EFC45DE7543CE46A7FDE790638DB1B0D38A97CF20448114BE969F0E5C661554308C28D6DD5EB88F8E572191405AF115410515009CC49CC8D33096EBDAA0623C8483649323E47C121A7D3C9EED5148BC01F5F1A811B27A7E1DF0E8CC2AF733E906D1E64009E31834172FD7400781E049E2D06004D81526A1A02C5295889121F696E3FE51A0ACF121169979011144E37E2F82A30778EED9AA1F60DF50FA68F4F580019A0C2B11801ED0E87A37ADF96781DFCC9157570D344027EB27F0C7E9DF5826AF79DC700EFDE86B63B330321751896350521DAD6FE862B3494708BF8A4CA89C08A0866140F8D8549687A55981600C3CF67000F980928739A01EE3943BDD732016D6DF551F833DC6F1E4FC0FFB7670A744D9D7326809F7392CF7102AA5961B94F85CB97CC8368387446E213D12D0628572A4CA2158ADD9B84A7481E233EBD9AEE9D445A03494E0C50AE48A7DE0377322767DAE2213FACAE772003503448AB7503CF6B80775CF6755D5DB56EB376B828C0CCB14158D0108680CF57FBFE29446344440690791B73DDC887B78238AA399143717C55AF0DEC180C60C7639E9B35039626B0D96CEC75746A1A9E3C3C09BF9C7142410CC00ABBDDF409CF9B80B36C004077D535821C0CC0DE4C02C4DE3ED8B8A8CB88E9D710DE92E012EEAA1D4C02EBCC85534C6620A125E2EB26E948895390883446093104980933DC698C40E0F0BE570660373481EAF5E1659C3917F40613704E33010F7374A3B0AE9DD039DADDD6B0FF14E25748E5A30DA7D7D9FF6543D299CAC757E406430BCC924C67E15CC3B72F9B9F254D50C6CF96C824D46816D234FFF58A25D00D33C0A98A659FE034F57F1E039C352CA0AB904F8C416329016D0DF12AB119E24797EF2422F43C65F020A128698362FB1A186A5E538D289E950EA7835EA51F1DEB08334A784151D161BCACC393132A7CEB501E2673A44D66BFC781A6E02F3ED00A4DD2388B41983608CE63807761CBA792D00259983FAF057DF659C046D23D8084E2976D842CFAE6C5A11308EF4751658BA00B36A6DE5583CC60919FB3C2B960DA7C4F000E569A20AB0930E96A0035E0060D19E8BEE1E370DBBC0A6314CB14047D5EF8CBF571F8F3972619F15542A073641E604E32C0CD37DF2CA0921682B97158B1744135D06348BE02239902A84D3D108C4419A0131D6E28B7F430FF3F24DA41514AC0A364DBF07F179BE133A7796947F69090768A5B84A2D8C5C0409C9C0E0EE9299269688447074EC24D5D7C1510D26B53340C7FB9B2023F7A24C7C2C8B815CDB1E5CF0782DE5917905FB56A556CD9F2D5AE8D17F4B0408F05F64AA532EC3F70007E78DF03CC569FAD64E73E047FC5954BE153B77CDC9C033298A1A7A501AE5ED50DBF786CC073C9259708CF3EFBAC3C17C6949F43C4E7D6AE5D1BBAF4D24B3FFDB9CF7CD259EBEB93FD3F71F224FCD3BFFC9831C2D9CC742710B967DF01F8D9430F3346ABFD0DEB2F5C07375E77F5D26432D9CAE21573024BCD9175015BB66CF1B7B7B7FFFE473FFAD16F3B1C0E7BB15834227C38F0B97C411F1CCF704EB71FCA782E97CBB2BD58C8A39690596AB72C4B4C6328B2CCCC069DB78E2DDF5EA45DB4D51CD36493DD9C70B283C7E3059FCF0F5E74FBC802B844195A9BE2803F075C2E17DB295AB863C78EC77EF8C31FDE7EE0C081718A5B9C3701BFE3B67AF56AF7A2458B2EBFF1C61BBF41C4AF89D069789C7CEAC927FEDCEB8D3F76E5076F7421F08FA1568EA1D98E216B87D0723B34E01C3C074EF4021C08DD1CE54AF916A922B965CBCFE7CCB5024874A7D3D12F08E25308112BA8DC699AA0CCE3B1C603AA1698412B34A969DC54299F9EF9D10FEFF16FDD7AE53FB6B6B6AE4689B79139A0FDA28B2EFA3D64D009D4525FC5F353FA392C65E7BC06C0C17485C3E10D5FF8C2177E128D462335011E0DA53FBB7DFBF6AFA1C4DDD7DBDB9B3AD340B7B4B4B82AE0D8C483D80302D76E176DCD1FFBC4A7AF9255CD3F399980E4CC0C9BED8B45EB201E8F4162727CE8A16D3FDE8EB71AD454ED84522ABD9E4A8DEC7F13C6B4F9FDFEA537DD74D33FD5D7D7CF47E614490BD01432125E7FF8E187BFF6E8A38FFE9F83070FA6CF552638A735407777B72312892CFBD4A73EF5C3582C16A9917C1DD57961E7CE9DFFB86FDFBE1F9D89F85D4B367E249F99FE1BA902F334ADC4B9DD1EF0FB021089D441B8AE0E128969961BE8B0DB8D4412537A9190AD7E9FE7D66C260DB25406404B5E57DF5E16EDAE17454FD3EF8F1CDE9EB4BEE3D5575F95D134BDFEE4934F7EE1FAEBAFBF3F140AB590ED2750888CC0E17B5FC9E7F393C824FF8CE7F2E722139CB31AE0820B2EB0A3442DB8E38E3B1E58B870E192F22CE022E21771F07F42D2BF6CD9B2D1C6C6C653ECEC2F9E3B704972E4E42F73E944354BC3E3F542281486483802ADF33A2180C78409545567F69C328BC8639B9E9E82C1FE13904EA5209D4E314C616DD1C6CE43CBE7C7972E5EBCF8944143C4EFC6DF70E535D75CF31D9FCF17438DC25B9A0019A0FCC0030FDCB27FFFFEC7F03717CF33C05B43FC2212B6E3F6DB6FBF17D5ECA504F42CE24B925441897FE9A5575FFDDFA1787C5810C537802CB9AC3A8747D37F9FCF2437950A19BE58C8315B4FA9E35E640402732E971B1CA8FAC9EE53568FA6D352B00AF3224A08300B08209178880D0470A3E6707B82654F20F4B5B6B6C043A77F9FA6AA5CA55472FBECF6AB2FBFE492FF8684F72203F016309C9999C9DC7FFFFD37663299179F78E289CA7906F8CDC41756AC58D18C68FF6FD09FFEA815E523D44FC783A3A39091142D180E83C0167F72E8CB1ABE38E58850A208119462FA2CAAC7739C11B9E3E97F7A93BDC752F978EBD8FC0CDD43303F679CD7D93546D44F67DF2470E6BD8CD8B1F1BD86372DA1961A1EECE7421E0F47DE00610B8B09464646C6EFBDF7DE6BD1453C40A6E33C03BC49A067CD9A35B1AD5BB7FE29DACF3F5651B26A409F9E4CA5B8483406B1860618471BDEDED4C8DCB8A9541A9A11C0D1044E01AF8D864290C9E5D81A80204A7C3A9B033BBA6A1E24C84C3A8D847181C74DC719E6B6F95055D3F594DF1F0906986330914C4263D458E43B399D84FA688431C544721AEA1143D0F12402C838322231411ADD4E27DEAB821AA4F7F583E0C57B22B6D0090B584C70ECD8B1A3F7DC73CF0DC8187D683694F381A0D3B68D1B3706366DDA74CB95575EF94574A138CBEEA3E4AB44380ED5754F57272848E880C7CD7605B5820BFD743F0EB88094139118A87F8D382C12D2E574808E3E3FCD1ABA9009E87A3A76E2BD54CA13C09DD60AEAAA826ABFC05613DB9171F2C834742F5A3E9E4ECFA0036168982C325BA958626B80745982C4F434332F4ED106535309F0793CB060C102189B9C24E6C4AFA8E856A8BAA7A767FEA73FFDE91FA0496839570245FC39447C1F82BD1BAEBDF6DABB51B50B96E413F1D176E6871349EE9A2BAE80582C0E53332958B6681104020126FDD671329B85A58B164210A5385328C2A29E6E884622A021F1BAE6CD833AF40058966F7D3D3B0E47081486F138024D0D8DE825F8A03E1E67BBD3E5448FC038F6FBFCEC3A3A6E46ADE3F379D9717767275EE7C2E318B4B7B5828BEEDDD8000B7A7A6011FE266402091940A99DA646F376D1ADB7DEFAF78871EA49E39D7703CD40CFBC79F32EBDF9E69BBF89AAD251135ED5D0F6670E0F0C96BAE62F08A490D8B4E5F23994BC043B4EA36640894221D400ED2BA2F8244B0923043F3935C5A67C93C919764CAA9A2496805F1EEF41E71C0ECA29D058583781D70D8F8C18F7452F60786494CD19922770E8E831082363D1BCD0F1FE01A8940D2C378E92EE46CD4266238DBFE3D091A3C8305E08F803106B6C740EF6F71F6E6F6BEBA160A369E660C3860D37A0B61947B7F32EFC7FFABD740FDF7306A0404F30185C77CB2DB77C1F5F7D35215E0D5568F6F917773CD0B6F8823FD8B07A25B4A0ED1F42A22CBB6031B4363733C4DED6DA8252D9C4A6738726A79884D23682C7AD2DCD0CA08DA26A6E6F6D657EFE04628745F37B18802C22D14913C45013A43219A8A82A74B41B29E5A3F879926AB2F5B2A28217CD4D137E7F19094FD7CD33AF4BA1EDA7EFA7580281BE0A9A85F69616365154A848FCA1DEDEFD535353B6582CD681DF2F5A9347975D76D9E773B9DC04BAA2FF80FFBF6781A2F7140452A0A7AEAE6EF997BFFCE51FA30698570BF890F8F99776EEBC0FFD2FBE795EE71FAE5ED0833EBB0A270606A109D5ACD36E871994520D07341A081A0C303101ADA8DE691B1C1F87798D8D0CA90FE3710B9EA7813F393C0CF39040341730818C81DFCFB00181C974B10C61AFDB60A0F149686EA86784647906F84AD882FE9F46AD434093B4433A9DC59FE866C9211447A01A036EBB8DCD011353F1A23072DF0F7EF01768BEFE3A1C0E3721E814C80C112844E2CB3FF9C94FFEF0F5D75FFFD7E79E7BAEF05E30C17BA60128D08376BBE7F39FFFFC773B3A3AE6D5A87D227E71FFFEFD0FBD7EF8F0B62B6EF8D0BFAE5EBC102E5EBB867D2E532CC0D5975EC28E1F7AE229F8F096ABD9F1EE7DAFC1559B3641AC2EC2D47214113C6100DA9EDBB90B2E5E7F213BA63C3FEB78EF81832C04DC8C924D66E3573B5E824D1B36B0F75EDEBB0F5A90D1082F50C068F7FE83B07ED50AF6DECE57F7C062D4228419F2081C8F9D3C092B972C31A283AFED870ED41C61641062D85D7BF73539FCAEB1EDFFBEFD2B5BB76CFD06D2386AD97E6402DB0D37DCF0CD6C369B58BF7EFD53F4F3FE5368000AF42C5FBE7CDE673FFBD97F58B76EDD95B5513E047D6574977EF58BC71FFFCA8265CB824B56AE79BE2D16E508A9CB920C9952B12AF123486892787A8671B4E70D08CC4842892882CDCE249134402A978710DA657A6F0AB54603328786C449209824C048F581E8BD5C4502BFD3C8FD4F23A0A4E8211596A27B1450F5FBD175D4341D8AF85B09FC096652484521A9B7A31BA9B19431B7C70B4079821CB05CC4443A79FF433FFDD7BF8E7823575D7ED9E55F47C207D15C709626989E9E4E7DFFFBDFBF01CDC8CE071F7C507A5F6B00727FD0D76FF8D0873EF4976BD7AEBDB236970F8FE59191917D0F3DF4D0579B9B7BA6E72F5CF8674DB11877D5E68B59F065D79EBDB006A590217B55837F7F69275C7AB121B1CFA2F45EB872250EA8F38DDF893B45FDE895249D024A6FBC8234C54E58B56C197850A593F4EE39D80B6B972F65EFED7FBD17714713848241662E0EF71D671E076D478F9F600031566754AEDB7FE8302C59B8800594B2C87C078F1DDDEA0B35FC6DEFBE7D0F79DC9E087A3C7F86E3E0E1CCB422D456A18F7FFCE30F7CFBDBDFBE160171EFBB192812DF65E2F3A8FAEBAEBAEAAA3FBAF4D24B3F6EA57399EE9E9C48248EFDFCE73FFF93482472D2DD146AB33BDD5B441CA243478FB2CF1F39719CE5E04D4C4CE2C0E650DA4A70B0F79061B347C7E0782804D51CBFD388DBD5318F610062809388E24FBDC8F887BC89D78F1C61B69EB6E999241C3A7C84D9FA14DA7D92FC006A050612C7C6699E88451E691DE131F42012D3C63C113E07ECA3F804652DE3AD1559AE0B45A33174730777EDDAF5038FC7135DB56AD567F0F7B8386383D6D6D6E6CF7CE6330FDC73CF3D1FBAE4924B4EBE5B81A277D5045C7CF1C5217CF05BD1DDFB5B42C416E8235F39954A0D6DDBB6ED0F1010BDF0E1CB2F77A43D8E351DDD8BEFC6B189210104BE1AD385D950AE95A74FC81AAA4BB8D875D5FF69968F7105721FCFEB56E817B8D9255F82112BAE7E861DD16A635DA70FE9D5EFB1B8C544F2664D08AEBA5E00CCFB52DD418E958B61670551504F0C0CFCE1AE5FFEF2197C4615C7A0E9DA6BAFFDBBC58B175F8FA0D041E6C08A16EEDDBBF7F9EF7EF7BB9F7CEDB5D786DF8D6492774D0320577B11F57F1041CFD7D005136B933AD0274E3CFDF4D35F191B1B7B717864B8FCE5D0CD483267DFD1A387BF8C03E922C2A99CAA0B206A68BB75228A8AC6581474B40448545ED5455DC4B7545D2582E12B7D86BE5711045AEBCBFEE81CCFFE370AF7F1941D4AE7CD73F4BE84277855A84A8550BD8FAA5BF760D7B2CF544050049D220282790FE4E6EAB1CC5ECBC029A2A47BBD6924BE8244D55000461F7DF4D1AF2206A843E7E70378A9DD62A2952B576EFAC4273EF177787C07EE1374FD9CD700E4EB3735355D86A0EF47E8EBFBADC91D33A327B57DFBF6BFD8B76FDFBFE19EB67ED76DDFBB4D94C625A1D05BE05065B21FE9F3F974340F7A2FFDD3DB0BA150889D6F6C6CD49F235BDADB5B7D98D3A76CDFCBEDAEBBEED24F77F1502044347B0B3EF2918FDC8FBF7F296A019BA505EC76BBFEC4134FDCF3C8238F7C6DCF9E3DC9B3E91E9E7506C007752227AFBBE38E3BFEADBEBE3E3E9BC55B62811EF47FFFF7CE9D3BBF87C49FD6E762E1E2DF61434D60CFE7F32BAFBBEEBAFB11087622E145CB33C031D37EF18B5FFC056AC67F447390395B63735663D114E84149BFE0F6DB6FFF7E434343BCD6DD43755D40B47BFF8E1D3BEE47E227FFB3119F3672F9703C5E7BF2C927BF94C964C669DEC3F28888365BB76EFDEF1B366CF8D095575EE9B63C8639C300942F87DCDC8DC4FF4E474747770DE0A38C9ED28103071EC107FF764F4FCF59B773E7F28668BFDCDFDFFFE233CF3CF3DF100BCD9059B498003502058AEE89C7E397AE5FBFDE3967188056EFE04B2BDAFCBF5DB264C9DA1A3F9FA27C9513274EBCF0D8638F7D1DEDF9104A810AFFC9371486625F5FDF532FBCF0C2DD94E84A1AD21218C43D1EC409F7A1F95C4526E31DC70077FD8FFFD3B1EBA517AE433C7D4C97CB079013477F1789A440CFBA75EB1AAEBFFEFA3B2FBFFCF2CF58E95CA6F44BA3A3A3FB1E78E081DBF1FF5E74F92438BF59E3C6A17B4841A23F42D0FC65947E4F6D32C9D0D0D0E0B7BEF5AD0FA28771E83F1A23204F78CB962D4D8AC62DB5395CDD6B2EDCF008F7B15B3E5B191D1BB75BCB6978745F795E50398193F103153C5F4007258FBE78063DAF193444D32AA8137A451D2BC8A5814C62E23524EC38AAB1323DC48A152BEAAEBEFAEA3F46D5F5E728ED7C0DF1E5E9E9E9BE9FFEF4A7B70D0C0CEC468EAF9C27FB1B09844C10479BFF97388E9F442670D6868C0F1F3EBCFF9BDFFCE6873B3B3BFB77EFDE6D1345B1311C6F58E6727ADA45416C14443E0E3A17D53908A16A0FE2B157E77437E5ABE89A66D3344DD074DD0A82D0A49AC4FDFEC73F234F279362B0A913382AA7AA916F5B81422605D94C8E45CE282C4A3B5B59A32AA02A8AB9A2D6C892A1D4274ACE14054189C722FA97FEE80B2E9A1EAD41FC3A123FB7ED67BFD8964A269FCDE733BDC81083C8D5E9FF8CE0EF74C96F6D6DA5B9813654F7DD76978F88D9BD76CD8AABD6AC5ED56C65185BFB638F3FA13DFDCC739AA2CA02A5CC69A6AEA668252B982950495C91CD6FF0E64E092DBE401014D10EAAE8005D92213D7A12EAEA220AF7D15B3E5F9C494EBB84E5574121348F2D83B2DB6CE07772E0A532ABBC0A025A04419381A7C0945C018DF2E5D5324B89D22B65908A392867D3A016D2F0A9FF7213CBBCB5884FFE3E2564FCF8DF7E0AB9428945EFCC95383A328C863F50E205AE82CC5F12383E8F17A4915BD3B96C66D72BBB5EFCABF70391D75E78F15F0702C1B51A6861944A3FF2BC179FD18DD2E85014D9AE6A2AAFA97AD52567AF38E6976CDA88607A6595F8A40928E7E0E78F3F0DA3B90A380375203AD165B4A302A7C0341258707941E56DA8C66DA020C443EA415EE5205BA63A0912C8B206DE997E50F73F0991685D49E4794EA1B62B3AAD97236EC29D5335C8290248363B3890831CAC1E1F31064ABC5C827A29C962E08AAF0E02E130E3B6E9934760A54F67E952B353BB12ABC57BA420C08A8F7F91155E50A512A8C8345AB9C849859C808CE32A67665CD9A9B1E0F8D0009B3C3159FA8A7863CBD1C9B1E11FCD65E2D737B57E4CB4B9BE3A3E696430793D1E686C6D8750BC091C28950E3FEEB4D6D0E101D1E5461A3AC0863BAD4D94B22998C826A10925BAB646D175D75C01CF1F1F0368EC62092AB6E961E80A3A205F51E0652504E0F443595259510CE355AE2986A581AE568023ED00822C22212B785B1F2545D2051C2B95A62313E82CAB92C70F70E60E0A0F4A6A06D68725E868A4DCBC04F41D3D01431207ABEA1C10418EAC2675548CCC99DE8C0ACE9E55F8806E56952B5F56205F92F1B5027200CD4A5461451CF14D6843EE1329F54253C136F53A3CF7CFDFAE9BEBD22FCB4ADD86DFBF15E4F8421C5C1164944899E32127520D0254D976A3758DC7E500AFD3062E2A7F6B36BEF0449B60726A101CF951A8F39E5AA3E8A2F618EC3DB21756B43743704133FBAE93A31350C923AEB659750F349015BD5ADD9C8659436DA09B269CE7411251F596D9FA485562F57288F09C607C8063DD31A8091332022B85AB31FB6F01C65838C476CD3444B54BA5E9F347531570B42E02CE1D804C45851CDA1EAAD14B9D55ECB41C8B4DC400CBBE9539AACE496559506DE1350D5EA4BDCEFBE7BCFEC767107D6198AC10A17956D276B68F8155E05A64194454BB58C681F6E335540D9D1821D4320FC68755B097A6C09CD30273E919AC5FBAE894AFD24CE105AB08A662FC4FC52F6959BB8AF4A342391CD2D0343715AA7B51D150E2045566D5B2386B278253497DFC204F4CA0194513A9A692761A6EA31F54ADC84553BBC86AC7A61013342F04D11F82026565733AC317740FAAD8C9338F832C17125F438EC4CF202460B368E882A004384903F9E63C03E033909D7682D5C3809E5B651DCBAA9D4BECFC6CC5737CD5F0F90B483C8ED7C081D70A681A4626F3D025CCCE7A5ABB55B28E31806EF431D2CD32B8D6AEEB66830BB3E43D683263088EE7CBF873B812A960C6009A592A4BD3599D7D46745419126F68069A4CA50881A69DCA00A7976523F51F40624E8EF641B62203E78F82607300421443EAD94EE6853A711400F269F0A905F0D86D30CEF940A5D62EBC939665CD79138004AD13ED4EB0017526A32966191AB92C4CE770CCD16B73B8EC26E1CD8E263643F2A90C6E6E7C088AE3C721022570E1FB54EF40539D55A1B3765114AB0C4004260D4A758F657DB62A1A15C964E5F088760AD21A698E1E618944B24809924E4532350033C18824D94C1112C9A8ABCBE14D79D10089B5F4AF2DCA585BA34FC6570F820F473E097927BA20AD4B10F420237046A16615DFD7320970E71270598B1F96752F808964067EB0771A444F14DD19076A043132D71940E084880D19DBA91BBD0C75F48AAE58148480DB010FEDED87A2A315917C18EC0EABD905CF5ADAC8E934D8865E07BE9082220A8BE6B0836626AAD40242CB1C509633D30066E93B4523D7DD287B4B0CC034373103991174F589E61CA71545A4475142B40E160390ED37894F9FE2CCCAA7BC7973DDACB0C90C484D94EF4C8CC0D027AA72C58F6E8CD7C30640C56BD57402C49909D888C071F9EAC5AC3883019824A61AD920A0BF8A2A2A34E72D00C7856C0ED47E9AC0BA93497919318F06419F073EB161213CFD5A1FBA74E8C33B1BD0CB729A26410067AC014AFC5AA89C38003C0A1135A9E42A953714ABB4D2CC89090CF3CC310690C9B49AA57029D6AE56CD0032038E33D11CDF2A8A78AE408404A5C23ECC6E007A55FA0DCFC0701F6871249D67953425E98C842F9975FA547C1829D808B68E25100884D0CDC46F4B4F819A1885656E0D96AFED34FAF6D4821854530E52870E1BD8F04B59346BCE63402E28A27FEED04583D1E9F94C86A7E7DFBA7A01EC3EDA0FBD09D4C28E7670B883466F231402575B27A8F58D909F1C87DCF103C8001974C3E5EAA2D45A2D4059482A33A92A5BF24EC7CCDC6B9CD9DD4433AC3B5DAF50E1CC0A2D8E2D8822CFE52B150AEA941912559991E79829B0DAE0A82613189A00D842894A4DC144A6054C89A79ABCD3AE00F0F31641B8B189955095B269288CF443A74D86658B1A19183CD34659B5ACA52B6BEF4AC858F753E2442E97634F4A0921673ADEB3670FAC5AB5CA32499CD3E9D4AD637AA5FF4F3F4FC71D1D1DDCA14387D8FBB1588C1F1A1AD24DCD46AB7B4F396E6D6DE5E87DBA16BF5B482412DA99AEA5D7E6E6666E646444A7F3E462B37E860A111C9F88873730FE9AF9F3203A3E09BB46FAC0D1DE03F660882D65A7289E68B7836A47E90EC5607C6408ECC387A1097184701A2350D26C19FD7EC5AC8068B97E32990F3205AA511F917C3F0DE95D417A51D10AC427AE54B95C4205506037A4944AD6084933D885D34C5360320411940518AAA5542BAC3E5F199F6C4873432ED609DE8616B0A14DCB65B2A027C7A059CDC3E59DF5E0B0DB7EA3B450A8592B65817ABF4AE431F3BC7F66666601225DF45C142D9BCD52F50D36D878CC065E55557EE5CA95CC4EE1B140D934B4A16A14F073BA85928D3A006C63E7D01E8AFDFDFD2A43DD9A264C4E4EEA5639787AC573780B5EC3FB512E21BDAFD03199F542A1A0D1440DDD8B5EF1EB102F233C733A293C2BE4F379C5EFF7F3EC1E82142C4E8D82C2A30DA7E0596E1A9FEB8DD0A6BD210E216F1E9E1FEC45977811D8A28897507350632B89B4B2CD037C630764BD51989A1C81F80C0A14AD8E679D508C7EC924802A553B37719A0AD6ABE17A9B320CBA5464CBDD1C0E674AF4783C49721B2AF99C61A3890138B6E29E690493FECC14D05A795223A46618F1F1CB8BA8DA8F643518F5B781BDA50D5C1E17101F668706A04B9B81552D71703BDF9A29AF0BF8E0C25811310072276A83B6DB3F1B6868A8FF27607996464F16A26D4D6E045FA306AD9C09D353E2C0E003DE0AAFD231F10677DAB560FE537B0CE6E7ABF7A2FB989F3DE5BE35DF557B1D6F322A97CF170214E9337249C98B72810FF1D099B680CF0BD7F438E1C513BD88FBE7831089438573B25E0615C260D4ABC8EE0135DE09273C75D03F3D02DDA93158586743B321B33677A4F235B39329F3FD9929E0D80EAC31366AEF6286ADA5F478BC49D1EDF12589837233D3E0C4672A6AC680B24E98664CC0AA7549E89DC237D466AD28AB7060AA0807853840630B38DD3E105D0EF41E7828A593F0B1263BF89CAD6FCB5E46C221B657B7455D34CA2BCF9A7D7E9BF350FF91EB63B1339CD78C9EC3679C1CC2FDE2AE66D83FD807C7332894B116904597D9E60669A01B09ADAAC30B854827EC2BC7E12832C1E25C0E35870D50A5994D2D39A6AD35B3CB996EF2B81B853C37936459D55E9F2F297A7D8114D99B4C360B314E8602F97A46210D1310B2FAD9ACAC3A2DB4545D3ED88B4CB0634683196F13387D4170386DA0A0DAA6562C3C4D4BD8DCF0E2F0285CD21A4675C7BDE9C0BD1B04988BDF4B9A647E3C02EE9904EC389202BDB9071487C7E85FC89880639D4D28AC5CE1DC20473A60875462913F1251CDEA7FC099B26BE9379EDA9A2B30858C45F51051F85388B7841CA15242EE3CA205BD9A77CF9BC08CF000674405E93E76374CF05ED414C0225B14D7266F81823AD49C919A30A31D80935A3BCC1C3E8C3E7E10DC769169935366BBCE13FD375E4F4C10418D7A092FC3AF4EEC8752D302509D3E64028E45FB58A0871882A776B73A780417D20E553E4A2143FC60D00D6A4A10309BA41B53FA360496A26043DA0B5C5160B168D2130A65831865D3B9D90F6B5694090CE628C89AB9188363A1465ED3AB4CC05EF17E0E7F18CA8E65F0D4D83158EB2DB287A109A7DF3620964DD74D86B140DFE98364DADD779D906FE77BCDEB66F339D9C0EA67FCFC19EF49A15ED4AC9735BAE1D99961180F778344134AC404ACBB99C6884C2A3E8D1CE161180ECC8AE8C6B4BBD1D79011D490604D66DF65F6582C8A88F20BE496B0EF470271A2F9434DB5A1930AE7C034058811A8DF9E6E944EE1CDC821FD183A261791B56825E0415398DE00D8E65D00BB2706A0233101ED412F72A8C46CE01B1E9801288131D66C5C80BE5597054178D3B57214DD222631015BF5B8F6FED6399399ACE6206F46E0DA6B7F1343E83566FB4CC7944483AE074F613A83B135639E5F79B331385D1048BBDA09CCF1E0141C28F928BD68A22573D2873A9FA866932B5937A6F145F37FF6A0BC11B8AB9A00BA270B011B15D318ED151E0AACDA168B1228A6E473D5CE19D602280B4CE4694E4030E204BCE91AF21613A8B442068C664C02FE40F225101CBA5BBB613CE583DC781F74FBD1AF956424AE728A49A07EBEA96209722A0E96DDC1A688CBD3E33035707C773C16EDA53C79AA1B6452A74A24CD988A24D4CD4AF5D3797C9EEA3158DECFA9A3ADD57EDE1451CDBC86B78ECD6B348BC90C7ED378EB9EE677586E27A3B9E501505EE5E8D8F885ED4B565FE36E6835C2BC04B29393B0A03E0C72A5FCA60C402E1D4FFD876C229C4C96E038EF805230028AE840D5CFCDF63C226C463B813DFCBF80E7BD348D60493E7100124757B9AA8BCF69463A2195BF23DA8B82CE1705C134018A6474C3648981B30106DD28B786AADFF027D97C81A5152C4620E9D78D30312DE2524D57847EACDDE102677D0B681E0FF49EEC85769BC0A69FA92E9F35B54C018F32821AB1A58B2547D08446A52CC3F6EDDFDB190EF9FF818881FE3B119628C2A14FAE2A8AC2469DDC3B3A672DDB32276134EB7D499234CAAD43FF9DDD836207B4DA88B2956A3F4F1937742D7D8E2D233BC37D6BCF59C7E654388B0958D752C1A95426EFE8BAF4BA6BDC5DCBC0ED10C18E03C4F51F45B096354ADAD77A02A6061488F0820D264A00231A02BF580770AE207EB18D690216D235FB9390BA5798DB6E2C892501CDA18626A46F6871DD7C35CC00136AC53201F85D487B11354A81CD47331562AC69D74DA937B48051638FDC8A0A9B42148CF7CCB071D5533063D0AC21939580A05B4C002CCDCC198A8273D12A181A3802917205EC782FA95464AA9EF29D79BB173C757520788250AA207F671A41E17875DFBE7DA3247037DD7413B76DDB36B6D4AAB7B797A3E55F78CCE179B6148CCED1FB356A9E11C3FC1C3B479FC59D0D397DCE3A6F5D4BEF99EF5BC7D6E7AC63AB09C4299FB37049EDB58DED9D822712035F30044E8700762448D9ED81CAF4342B46C93EC3E2F9480C87033827026C858324170025D600B6501DA8821319864CB76EE467EAAAD9B57C36E0C39881245D313C04076F786C50F50274B3A9156F68791256963B481A40D60B640FD8595D368183D90CDBB4FF7483920266C4C930750C18D66003C2003A6704210CB504A63B6269051E34B40F4E7F08C2F3974261F42494C74EA264A0A46733A02243E8761F734F28046AB3E183E06039445B1007EA4DD3A0EFBCF3CEB7EDFFFFB6CFD4BE6F1EEB35C7B5EB18F433E088EAB59DF32F08B8F019585B7B4AFCE08D69765613812676282700B5A3CDE3832CFAF0454F3DE8A118787C619078279450236A8AC6C68FD91FB3CD8D06467C5F634EB7CEECBC4EC4150C1C40BD8E3C4452CE98D8332C215ECB2B40CB5F2D1048B417A73D5AC132019C241B7682DD9837B37E792314C9CD02138D33AE514D5CA1990C61C58C54CD6AAF6EDA2B1DAA9A4043F5E4F0FA21D4391FA44000727DAF838BAE95F1BB092C51C60C0E164D678A4E2715750CCFD5892097D319B1B99C08B878C604340FCF51BC44633E34D8BD3EA8A05B5DAE6B065B84CAD1454012EDE8DFDB90F028E94CEA0D815234438A89D02CB7873368C2C69DB304D5105A1A6B028A3603CE18EF332C80FF4B8A652281682FDEF9C94F96AFDAF6B0A1C134A91A30003372C4DAA86A86AAE22C7B627EA1316F60107F561756734A8C1FCF7AF3999AC10C50D03987C30DEEC65696419CEAEB057B2907029A082ADBC6D194287297C86AF9DAE72C038836475870BA8C546D626CB4E32E2A3B138DB3C08E1A8E830FC7400CD48166771A5A96ECBC62867051B40D69374797FC7B0B83E98664AB8CB8162E15583735A206B5CA1545D3F6EB06006474532B861720083AD19E4DCBA1DF4EEBD66D1AE58AB13ABB7C15385043659DE3AAE9DCEC86FC2CAAD466CB26984C308BECADF431CD9C8F56F55960C8269B101778D14652BD9D622A091EBF1FD5A11734E4528DD627A0BB2488C29C9D1216052128C815748B6977006983487B272491C96308F6046F10CD9E13F02919F1354E35E3F79A21E9C400FA6C4CC108E4E8666EA06E4ABE4564D2DAAAE1C1F1065DCAA88A9D3C57F5EC18985765CB0D64AAC060004E40D1D76DBC52A9FA8BBA39AB44C89213CC6042B588326FF8EB3C57253C57E3BF8AC8855E44F92E64282772103A7E78CE28D72AA396D1F1BD12791C5219B45201CAF93C14B35950CA7928A432307872D0E8F6899F477765CE2686E218F91FB8EB2BCCE77621C1DBBB3AC0130AB05C7EB797D2C13D0878BD28084ED06CB468C34EA156962FE024588CE32C502611C5F89154158E37894F63CFECACE1A5B171571970331129A383A2F10C88F3359A9B574C0CC01BB115D1E454D9C08065F6A53ACBD4D5F14754208484E325847AB43044A5EA19085EC896E1B59C8430452E025F2E0087BB5ECC829ACBC0F8D438EC1D1961B573D05D633BA54551FF1DCA77673E31ED68F3C91FB5B25AD6AE5B0B5E548F89C919689BD705D1589C3040D35C6580ADD7DDDC44B3A689A909DC2721168DB1B512BB9F7DC1D0904CDA8D5557C4EC72B5A791C42AA251312BDA1D7611E2CDCDE08F37B1CA651E570001066A4A34A39ADD83BB0B34D1818CE4408C85F841B0A359B0B3E452D43DE849D959D635C36B72D9706705419AD5000257A11F34D3BB139AD293289905C82626601289582AFD6EA5EB4A25A361934DA6E64B92D1848965C0DAC0819210AEAF83FA7823C41B1A2016C7BDBE0156ACD908E9541A92D309A9F7E0EEEFCC5506387EBCF73B172C59F5A5CEEE1E7B105D4109CD41627212EC4E0F4C4E8CC1C4C438BE4E4085F23188F08A3156543C4B968C2657B415710CFBFB8E03D0FE36370F9AD778731344A30DC039BC30337CC2703F05BE627888F8CF87FFCB2D032FFEFAD76D60BA740A72E49BB54A7FCB08D8ED66008FD6A5F911ED070241088642100C86D92BA589F98341A3AE6F2AA56733A972219F1FCF66D2FB8686FA7E363678F267EF97D5C35414B3B9B5F3C6A6B6AE0FE3582CF778FD0D7E7FC0190A87297004D9741A32991956F738939A8114EE994C86925ED85EC8E5A0884CF2BBF4C3233794BC3D13A0C1C60F6C1CFCE98FFFB95D3462D69AE2F1D719E081A510ABE0138D050B36D6464D641935C66E67AF94DD6323F5EE2015EF00A7C350F5944D433B5D43C11FCA3EA50444E46C55522459AA944A23C3D9CC40FF89A94236BBEFE440DFFD7B5FDEF1F2FB7991A8C9C83F36F76A16C98A8B2E5AD7D1D6FD499F2FB002C73A866316400671D545EB70C8ED8248E388E32F99EDED287E20D18AAB8A0C65A9C2CC0395BBA7F729C74F962C0DA2B0B2F812332BB2D11A07771670A2CC64D63C5B9F05815DDD3D7F35303476AF2429ACEE16ADD810454145FBAC515CDD38E65591E768DD8E6ACC67A8B28ADF285778C9110AB7A28FE9C8654A4242AA88085DC5502422767474F20B175FF0FF7F78EBA64FC3F9ED4C9349BBCCFD8CDBB6C79EFDE189E3C76F1D1A1ED6D3333314A5531C2E876A27AF4D952AF96C6A18C965D3741571B766E3690A4EA4CC7B5E14789B202A82A0A8A2A0690AAFC8AAA0315CCA09769BA074762DB8B36A02DE36BAE5384AB4A3150A14C1B53FF8D8F37B50BD34F41E3A02B453AF9DC58B16C0A2450B912B8BC7FEDF3FFD93FB119E4EE99A36A1A895D17462F4384B3AD2F5F26FF91EEE0C133973C70B788BBF1F2FA3B11403D1C62E4170362191EA11B9C7BEFE777FFF292AE470E8D06136AE6452695C69575565FCE6DFDB4499B092B997F16BDEB6DD16DFC6C350C66438146DBE31DAD8F9317CA216D41621F4209C99749A27C42E0882696B04D3776513753DF5F50D7F93CFA6D19E6598FA09C7DA34BBC335D2D2B5EAB6AE16FFF66834AA27162FE636E3D56363635C2A95A2D270FCE73EF7393EE5F1E8B7DD769B429DC1EEBCF3CE39514BE8EEBBEFE6F139849BEEB8430C150ADC17BFF84575626242A7B276B525ED0E1D3A24E424E1B278EB827BE572B10589CA73BC023E4F00BCFEA0E191E99A15B8A98E2DEDC964A221DEDC31A2285A195DC1145E3C1C89B7FC78666AE441BC3DB5D17B4B0538DE9206A0BAB6D1A6EEAFA3CAFF0355956D06A8B021980BB32EDDABD66C40A0B308A610E18E4F4C41A158040FB5701105E843E45A44CF82800D357120BB457E292D928CB57417962C9BB77AE1C28521A7D3D368B30BF58260AB471731EEF3B85B5D4E57633235539C4E24FFEE78FFF167EDC562E17BDFFB9E72AE6A04F2B43E77DB6D226A406FCF9A0B37C7E3B13FAB0B053DA57279345F280CC9AA36A12BEA84249727CBA5D2E8CB3B77168706522F4D8CF479C8F2D26311AE228F2114AA034F3086E6B90B31990CC54209BC6E0FD4D7C7208EFBC1838760CF2B3B203D9340103D5305ED82689305D1FE9DC468DF57F17E85DF9901A8E68F37D2B429DED0FE4C726240B0A62E7D84F011C9078201686DEF4117D4694C23EB6622075E63478E95E53C6BC04800D1E7F7427D432334A35BE2703AF448304873F102B940B46A867C620F3E24810C022D1E97130AA53204FC3E383638B4E7D0A1A37F3C7EECD0FE93ADADA5E7EEBA4B3D57188154FD4D0F3EC8DB1F7ED8D3BA74E9D2250B167DB3BBBD6D1535ABF2B91C902F971902A785B07974AB29D043F90E22EB2BA0ABC9549A4AE97063A3E330313E0639FC9C2CAB144A66F99574ADCED2ED04C39727A08E8234D47F043269F4163229C8A1A7606D91FA76757CF4F8F5C5D4E4E3BFD5FC9CE97D4B85A1B40A6A5D9D70ECD557433389D2FFF206C2973B9DF688DB257281800F39955CBB20C4E371A88B46201231327AFDC81CD4402195C9B2762A34F345851150ADC354621AEA2261861388B054F1A25028C202E474AAB5DFD4500F7DFD03501F8DC2C8F838ABD74FAD5C16E2FB13D3D3FA2BAF1DD836D4D77F772E393680A6A2B26DDB36ED3DEBB64184BFE926DED9D6E6F4DAED6D0B7BE6DFB966E9D29BEAA375DCE1A3C7218ACF39323901AD8D0D30399580AE79EDACC8F4EA15CBE1086A46967F80639346D3E8F578591B5BAA389E4326C9A316A5C65684F683FE002B3B9F2B1658C83F914CE1B549981A9F8099548669D66C268FAEA2A2178BE56431977AC6E128FCD58A4BAE9E08562A0A755F793313FA0606B8E4EEBBC55B972EDD108F446EC6779AD1ED6B713A1CF5289D7E9117DC9C919801A3489C90DFCFD416856DA97902F9F4056AC3827EBE1BA5776C720AD6AD5CC1DCC9E777EC8425085EA8AE7F1AB9D6ED72B14CE408B56BC187686F6D81040EC0FCCE4E664246C7C68C3AFD85024B3372A2B4144B156843ED319E9856F6BCFEFAB77AF7EDF9961E8B25DA1104BDDBF8804AE179162FB671D96C74F1C2C55F5ABDF8822FC563117108A598989E1669D08C9E975517D759530AB7DB05C74E9C84BA701806868650CD07617A7A0682013F6ABA228403416888C7E0C0E123B0E9A2F5CC7DDBB5771F34E2390AC84DCFA49856240CC0840BC790CC29F53668C4FB9319D01849D522C70B5924FC8424C9C308254626C7A7B67DEB7FFE8F1DA797A217ACE4076B7BE291471C3645F9F3EECEEECF85FDFE05B148B8011D0A1F8F687F7C6C942342B3180012753E4A655747073E408075DA9CDFDDCDA60706F1E168068CFC56E26A6A9D42EA9D3A6F91A5242EA77E3C13C80CA4FA69BA33890F473DFF281A460C4083D4D6D28C0C839283D70E8D8E417D2C465A80FAFCF1CB172DBA28525FFF19B950CA0E8C0C9FF8F7279F545F79E5157DF3E6CDFAD90678CF3FFFBC2DA528C1056D1D9FDA7CD1453FDDB07AD566155DADE9540AEA502B4E3346EE60BD08A9A700C5EB51CD3386A7F7A8D43DC54A58457134772B972E637D0E687E857A0F6690B8193403C3F8CCACCD1D0AD9040A13B5BAE9686F67F75980634D2DF4A8240F8D33C561C86C4E4D4E7075E188DDEB76FBC28140030ADF7C55E756EF3DB04FF3391C4F5F7BEDB5BF99017EFDF8E3425E513A7881FF40A554B6AD4509A6C51A7154C9D3A88A49B24965937F333038C4BA70F59DEC67DD3A48D2A966FE456BD7B2BE3E88D9D0F6DB186796CA12ABBF4F44A76D060784EAE92FC101229B46AD5EA248F4A1E111D6A0696C32612458E02035E2BD998648265983A74C2E6F1451F4781C17CCEFBEDAE9F37DA4A4EB837DC3C363CF3CF288FAC10F7E503FFDB9DE09754F9D4E8E4D4EFAC30DCDD7AC59B3E6679BD6AEF988DD6673508712625CEA4452AA9461C5920B580027878C4C6BF04650ED1381A770ACC8941173BB9D2E46C41C3E4B02411CBD52C7B2340A0B4DE05087141A6B6A7A4D4DB2E6B5B521438C328D428B4A0EF41E623D930687469099EC2C20E4A46E27BC08AB962F8508455BD1C4EE7AE555181A1BAE0C0E0E3E580A875FBE7EF366E5379A00526DDE96964697607FE243D75D7B410209D68DB68B961F0750E5A32BC306BFEFF87158B5620553537BD076B3757DC8CD14152C9A3582BA905BC3A8E6A83913D9C3180ED0F1FE7EC6E1D4B59B9A2F5103065297F12875EFAA83C37D7DB06CF122A635C84E1276A0E4105A904A9D3CE91E03C3C3B0B0A79B0D1631054D28BDB86F3FE473B9E7A646263E75A277EFF03B5D8114B186F0EB63C75ADA1B1AEF0BF8029BD7E32013D825C6A5713984BF751E6AAC49C43864E6280A4AAB81893988E8A4255F43A2D131FD66C20444B84C368F2633C82279D4FB90FA1B12A310EE211C9444221F1F1802975D448640CCA0482C07937228572D5BCA846ECFBE7DD0DDD5C56844E1641A17EAA8D6D77F12A2D1383CF4D8A3AF57F2F2D613BD7BC64E2F32F9060660C0E68E3B9C5E495A78FD75D76D4FCFA4435B2EBF94A9A4C9A949C8E58D45A4C6624B23B3845AB8512B95BDFB0FA0F4AF314AC620E73FF7EB17D97B295459749DDFEB616DDBD6220822C2F61E3D860F59C78020B58309E2405A39F4F1589471F141B487C4803480D4318CD41D790987FB4E80A42A50AC486CA045563E454F8D8F8DDD7CE0A5975E78A77BEF6CD9B2C5B17ECB968B1BA3B10775E042248594EB40408DEA1D2DEAEA60BF835AD374A2B4121108CC2E59301F924894A984D1CF9066F533991C5CB87A051312120E6A40458CF20A0A523D32148D316914C25843A815366FDCC83408D1EAA55776C34A247C0A7114BD47615FB61A5892598E00016DA3D9A50F9EDCFE2B088443A99F3DF2F0952EA9EED0F7BE7757E974C07C462F80B440A4AD2DD2D8DCF847976EDCFCD5519438526B61340574E3DAEDF91D3BA013259DD03D252F54A4326B9A48B6EEC2552B1971C72726512B14A113B99BA4FF859DBB5092232CD04192422AB11E095E5BEFC6CCAB87B189097879FF41568A2E8D9E03CB5A660D3D385D51E46CB9583C922FE4F62412C917D01C1D108AC571048EB9775A03B0FAC7A190D7CE714D68EE9684A3751FF0797DAB9C2EE70251B4F98D5A1ACC478320323A69AC75A8251AEB8D0059ED462691084FAA9F0847D9C1D49F78D3FA754C0B9C40934AADE8C8AC9220BD8CC2416394416FC16137B0431405E7C4E02082C58B4EB937E10BC253AF1D38084DADADF0EC8E67BF7EE2E8897F28241289338DC9191980B4C027EFBACB0153530BD09E3E2357A4E87A24260571483D915F4AE8D38E80851882DC3A52E9AFEE7B0D365CB88EDD830A48EC7CE51594DC207369E85B488B2C59389FA9366B2976ED46523084768EB40499803CAA31D1D434049764499ACEE773BD857C61F7D8F8F88E4C3E3F8CA7B3227E942F970BE80B57162F5EAC9C2D8F8000602F2A3D5FB1E8D0F2798FE070783549F23BFDFE96A6786CA3CFE75BEDF67816DBEDCE3AB66482D55250C08BB61901357BEE16F46248FB9DBE913620B3401E00790594F9E3432648A5B3B01EB52A990BDA5E7AF965B4F1CBD9F81226CBE6B22CC780059190D1A85D1EC55C76EED903A2C39EF8F9A38F5E1DB5DB0F7FE31BDF28BDAD40103DEC6032898AA0EDB3976DDAFC7554ADB079C3454C159F699B46BB761239726626CD9029CD125211C3954B97B0A8203006C8C2B1E327600D024BFA5E0284A3E8CB92B6C8E48B2CC994C29D848C3555D1CA95F27821973F90CB67770F0F0EBF54D2CA1308B67382AEE7CB3C5F84584C4AA0CC6DC6FD4C5D39CEA6FF4FE9E8CF21E48AE2EECCE74975796CAA8A084DF1A167538FD27751C0E75DE3F17A963A1DEE064E1058A37BC24A541D8DB00FB9CB14F720EF864C1FF53EEC41EF8130056DE40DED414976399C4CF8A8652E61B02E94EC48DD99CB27D134F2B3BF7E091A9A1B61FBF3BFFAEAC9E327BF5F4E26936FA6117F6324F08B5FFCA223A7EB3DD76ED9F2944DB4372E415BD5883F7862721291ED18B343C46D647742C81874ACA25D26C44A1BA9394A64249B44B69BA47B606494A9295A5348E641672B8F290356960BC5C270219F7F2D9BC9BE3C383CFCB2A4EB33E892E62A9A9647C343AB38E4542AA599EB01F4732912480C41EB12C8B342228928056EA9CA10106E6A6A5DE7F7FBD7A196588EEABD4514EC364E30D65752CB79AA8AE2F3F9611E12AEB5A989694872FD8831080FD1D68F02462BA82859249D49336F8C34018D3D69963832D2389ACC03478E51F2C9F8438F3FBE4576388E3EF826D2FF5B1980B4C0D1B1B17067D7BCFFE78ACD977F83B257C8CFA5668B51F4E5A9D41835605EB16CE9ECDC3781B68E79863A47625373475283940E4D04275F95A440924BE55CAE7012A57B5F7626BD737472729F54A9A4ED8290E32B9542D6EF2F850A05E55C24F8DB610864069AD01251A65D1AC72138907D1AC8A1A6C6B6E5C1A07F3DE288E53EAFBFD36677386D669A1C99035AA749D5429B50780848939091BB4DFD08AD6DDFFEFD2C0A4BB11432CD043CA7D1BD8ED7D7C353DB7FF95F27FAFAFEE5BE7C7E46FF0D78E8B7CE056C412D50C7C9DDBF77C5D6C783FE406B1B6A800E0473D6F6EA6BAFB1C00EE102D20C14F7CE174BEC0753EC9A12428CFE80A51CAAA76308D8F62653333B2626A70FF37A254B2A9D773A0BE8BF94DBDBDB151C347DAE11FC3FC2101E5D771043F0C4108AE28FD5D72F884622177BFDFE1568027A9C4E978F40B16833023C887B101338C1E37499311781C560080F58DB4974B107D0A4667399A1279E7AFAF7A0AEAEEFBE3BEF2CFF6E9341A8053E9148849A9A9A6EBEEAD2CBBFDB77F4086CB9E20A16CA9C4C2480A7444F54FD24DDA4CA5922A32CE9F9423E954E670E2120DF3339997831954DF6EB2A9FD36439A73B1C8530E2C48391884AD3A2DB1E7C50D34F5B65F37EDE3863F52879163C323B37303020CA3E9FDD23081E49D3BCA22CFB3DE1C03C94E48D7EAF7F953F185CE4757B42769B9DD644B2CC1E32A9548B51532416A4A3EEE84FFC723B74CF5F004F3DFBF41706FB871FFC31AA4FFDB778436F693AF8E6BBEFB63BD3539D576FBEF291B696D62E9AADA2EC5452E565AA3855296BE8A22490E207F3C5C2EED189B197CAA5C288AE0A391BCFE7B55CAE986B6DADBC17806DAE690902964B92492A3665936C368F8C0CA12343A0A7D1D8D250BF0171C21A34C14B02BE401471024F0B69C8742076A2922F3032327CFCA95F3E733D57289CB8EFBEFBCAEF4C3E006A818F4E4E065A9BEAAF5CBBF6C27FA1A9C94C3A3B96CEA40EE017BF3C323ABAAB542A2574B4DF22C7E51587A3581E1C64A56CDE6FEAFCBD6008CBD3102B15B7A2EB5E4E557D76B73BDADCD070A1DFEF5B872070A93F106C24D77CD7EEDD9FC88E8E3E7DEFBDF766DF4AE7D1B79C1246B384AD894440E0F93872A51325BB8CE8BC403E784A964B0DE728427FBF318485231063894949723B45916909A2898E34096ADA245E9379AB7D85DE564E20790594E345695B94DAF47E046C73912108475834C1B7B4B71308FBBFB5F4142699E3861A0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (57,1,'Network_(24)',0x89504E470D0A1A0A0000000D49484452000000180000001308060000008AB0CD3B0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000045649444154388DA5946D4C5B6514C71B5F37C518E3A21F467C19488C88400824487438FDE00783C9483F383256322D4244601B93C150E85A406C6F7BDBD2F6B6E596D2D77B7B694168A59442A1851270CBDC5C94900988890BBACC2C8EF7F6F83C4D34338BE0B60F27F7DCE7FECFEF9F9CE79CCB0300DE4E514ED86FF03B4740609D86DA814B706E6C0EAAFB2F42B13E04C56D4C1C691EDFA97E47388ED35DDE3F2B9C33201ABE0CD22BD7A13A7A0D8ED0417849168637446E2481A4FB32F84CEF5E35DA18189F98801343DFC1BBBE65B0312EB0B06EE0B7D9B0C1DEFB3238A575AEFA030190EB0C50865A94DFBF04C7C52AE03C7DC09732D8E0917B36282C2C4CB53B9C7FB4B4CB6ED513D47203695AA923E81B3532E352B58858615DAE98442279F59E0C323333F79BCDE60B5285E277A5C170A1B3BB674E6D34AD694D964D9DA9E717D6EB9D5151D44FBDBDBDB790C9B37765909393B34FABD50E2955AA6B0EB707060323E01B198540681C462393303639059333B3303533032A8D66956198DF9A9B9B1FFB5F060505054F1004411B8DC61FBF54A9E71C7DFD9B1EAF6FCB170C6E872293DB8381E0963718DCF287C6B702E3E3DBE8FCA6482472592C96ABC8E4811D0D5253531F158BC512ABD5BA505454F4DA6E03707B747474440D0643F40E83E24F5B6225623A5E4598622724C4B6D5EE8C97D436DD2C3D255A3C7CE4E8F1DDC05873F464CBA2E0ACF4BA4CA18AB72B75B11AA93EC1C46CDE3BB53238A40A02D1ED8421BF1F1A493D94E97D50D9E98163675A97D124ED4177F2707E7EFE5E9427E136E03C3D3D3D09BD3F74ACBE75B98CF48090998546EB00701C0766A617DED64F0366F30E56B6C5B3BF1A86063D03279534B45ADD30120CC2D7833E90C854EB0A858296C96476F4342B954AB35C2EB7932469416145EFD636B97ADDC17980F5F44373E03C7CACE3A0A9D30CD9CA29C06CDE9B15E2D8CB641432E84B50E8B90A75CE6160D1E4D8EC0EA0E8EE985EAF5FC4178EFA3B8F266B09E597298AC2F93CCA2F921A5D8CEE3603EBE240DE6D8783EC0F0916666236EFADCA73DBA9EA5948367C0F59EE0510847F05917F1648C6030D5AEB06DE87BCBCBCA77373730F6464643C959D9DFD7C5656D60BB86DE8FCC546CAB681B5E2FE312819BC0259AEF9040B33319B577858B0F67AF91770A8E22CBC57590F1F549D8E95D7D66FD4D435AD947EF809BDDB25977E54D55553F7F94A79ED990D5C8B1998859998CD4B4B4BDB979292F24CCA2B39649344B1299669D6DAE5EAB0C3DD17B1B83DDFF6B0EC73FF05A76DB603965ECFACA3AF2FD22A25A7C58466B549426E2296323939793F6627841EDF37EBA31361180D47602C12496CEB28DAD650741AFC13E13865B3386E07F3F9FC07299BCD81BF610DD626361CD7220666B9BDBE8D7F16AD87E36C135351884C2371640A86C642F181E191B52EA7E3BC94A2846834EFF8630A04823D520D25C41AACC535B8163330CBC4BAD87F6DB299E57EA6596688D0A9DFBF9B0DFE3BF07E90A8B68B75FAAD1CB720140A9FC4E77F0196FCBFB5EA865F170000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (58,1,'Network_(48)',0x89504E470D0A1A0A0000000D4948445200000030000000260806000000828D18010000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000C984944415458C3C598795453671AC6D376BA9DB63375AAD6D6A5A756A1AD5BADA3756B4BD16AA95AB72AD45DABE086208A232E6C0164470861094BC8C212484242488004020924AC0A58B756C7F5885BA76AAD755A499EF9DE5B759CD39EB63362FDE33DDFC7CDBDEFFB7BEEFDB6071E00DEFDC49C15FECF7BF1C5989FA8C70241153CD3ABB138A70E9F4BEAB1BEC0868092466C53B760ABB2116BA5562CCD3061FEDE72CC88526181EFEE6B2CC75FEEA73EAF27042C1154624A4C153E115AE02569C52AF541F8198F23D87E16B19D9711D97E099BCCA7E0A93A8C29B96D782BD18AC1A195F00A12DC6439FAB378F4A10AD8906BC6A2AC06AC2EDC874DE58711547712E16D17107FF82AA20E5EC1A68673F02A3F8EA9F907303AAD094363EAF0D26E031606A57CCF72F463F1C8431510A46880BFAA1D3B8D5F22B8B213E9FA3AC4371D43D4D1EBF06BB98445A63308CF5160B1500397E446F48FAA45EF9D0678EE149080BE0F5D4088A61991C683482ED4A2CA684443830DA1063B02DBAF6091E502A6EB4E42902B435B5B1B0A541A7C1CAD40EF501313904A025E78A802667DE6DD3B4A5C0CA3A99A03B4DBEDD0E87408D4DAB0B6E9326699BAF08EFA04F82919A8AAAAE2EEA148932AE0199C7683E5E8F5D0BF005F530F6949299A9A9AA0D168902391C25769C1D2FA0B986A388B91CA93088888874C2683C96442A5D184D7A24DF0FA49C09F1FBA8088021D2C562B34DA3204B337CDCF2D80B7A6050B6BBB3801A354273135428CC9095A6C4F12A1A6A606B13905F00A492701CF3CD465D47BDDBA394636EE75E5E5D8B8230CAB77C563E5AE582C0A8A81E7DFA3F1E9D628CCDD1289599B2331C33F029FF885212E2919B5B5B5888E4BBC79BFF5EFEB612F2FAFBF9597975FAFA8A87084F323B5C25C956791AE7E992047B99D1F9FADDA1D957673EBEEB81F229372BE0E8FCB4C16C9747E25E5362F49A1CE335324BA66655F4D2010E43E1401D3A74F1FA252A92EB289E9080F0FD78C1933A6375D7F6DC4C4945E7D073A3F98361B7EDB23B17CED36F8068661B0EB48F41BE8FADD9031EE6FD37D0101012E797979374844424242C81F2AE0DD77DF7D492E971FABAEAE76EE15081CE932F9AD82526DB742577EAB586FB8A5D41B1C4A7D854353657496D7989D65C66A87AEBAC66130D77657D659BA8D566B77ADCDDEADD29577171616392D168B33262666F91F2260C48811BDB2B2B21ACD66B3332535F56A99C1000603A3A51EC63A2B4C160BCC0D0DA86BB0A3892D972DEDEDA865FB82B99E5DB3D9D0D8D282F60307D0BC6F3F6C2DAD2850143B954AA5834D6C476464E494072A60E4C891CF242727ABE98D6564649CDF9B21BA516DB1A289C1D85BDB50676F64F036066A8785F56DCDCDD8C760099CAE591B9BD0D6DE81D6FDEDB033781B13D3B2AF1DFCE8E8FAB2B232271B8E3F868686BEF94004B031FEF89E3D7B84F5F5F50E8944F2CF35EBD7FB69ABD8EAC3426FAA413D83A3375DDFCCA0F677E0ABE327D0C844B53071D5D60626CCCEFD4D41F7DAD87D2484A2CC68BA121C1CBC57AFD743A7D37DC744F4ED7101BB76ED0A6213AEBBA8A8E8FA92E5CBE76FDF13B331312BEB4C8248D49524129D4BCECAEE12E68ACF09C579E7B30B0ACE1795965E12C9E55D59F9F95DB9854567D8B5B379858A2E4971F119B9527546AE529DCD57ABBB14DAB2D332A5B2956A444444A82B2B2B515C5C7C998978AAC704040606AE60EBF62D36566FFAF8F8ACBCDFB5FBD7223A3ABA89F615A9547AAC4704AC5DBB763A4BF88356ABBDE5EFEF1FE4E6E6F6A7072980BDF92792929268858348246AF84D01F3172EB9B278CDC6EFE7792DBBFCD1CC79FFF8F0A3D9FBA7CD9C5BF3D18CF98A5973E62BD898FC816D560E3F3FBF62171797FE3C1EEF9107054FB9070D1AD4CBDDDD7D9A40907A8D76EBB0B0882F898598888D18899598899DB7D467B3C32DC90CCF1C1B36289AB1A5C88AA4D21A84C8742829D5C05051819DB1C9F0499461558C184B4305CE45DBA21D33177B7FD553E0948B72526EAAB1314D892D994A64E58A51575787446909E224250896E8384662256662E72D5BE37B6B7CAC091FA4D9304FB61F4B332BEE1E8B6942256449B04DB71FDEBA23F84CBE0FB3922B312DAE0A8B22B2BB7B4A00E59A166FE272530DAA156C3D8D28B519252525CC5F34704C61B94A8E91588999D8799F7A2EFBD784984A4C48AEC7D49C36CC49D57337DF9E48884FDA8B00A10CBEAA16ACCBD420BD50834061115625E43B7B4AC0E749854ECF940A641528B146548E6DB5A7B0A3AA133B824321140AC18E2CDC0BDD91A5E418899598899DE73E6DE67793A274189D60C5A4CC164C4DD4C15C5B87FCFC7CF013F62250AC4444753B448A52343636FEF42684126CCA5039C78E1DDB6FF4E8D17D6EC7CBC3860D7B62D4A851FDE93A8D67B6770CA2BEABABEB73AC1D48E725BA8FAE4D9830E169B631BE3A6EDCB817FCB3B4CE9509F95CEE0A668C76E49522E1E835441DB804FF54099253859CCFD89C51CC3172AC8C99D879EFB97B7C3339528B37E2AC1893D68CC9890608650A2C4B94620933E84965E6BBE077A28239AB127529D46AF55596F89BD2D2526AAFB0A0F62A9BF8DFB0F65BB6BB5E63FD2B6C05BBCEFAF4F7B7B451B1E05A3AC9526875E5D057FEC7ADD9D8AE1D57A2C796E62EACB49CC7ECD2C3D8B0370F8B53351C23B11233B1F33E983AE3C2E408155E8F6FC0B0D4668CCDEDC0DBD243785F7D1CF34CE7B0566947BE520D135BD66858DD1B6411594B4780BB41F38605B50E76CC060B271DB76FB74E83C1703768E765E1A0B69C82798A3BA1AFA8045FACC0DC8A531C0B31111B31122B31133B1B42B34E4F0E2F866B921D6F0A5BE19AD90E57F1418C511CC714E6A696375C84AFB6117BA545C82F2C043B4620313D0B91A92204050599F97C7E318B220AB6862BC2C2C20A582B0F09092964C70329EBE7DD6E73D9B51CD6CF6621623B7BF6EEDDBBD3D9F2ACE60B73109D294676760ED84191D67FA4E6E4C157AC85BBE618C7424CC4C6313256622676DE94E99F7C3529341F2EC94D704DDF87FEE91D78557C18C38A8E6372D96978D69EC7E6B6AF11D6C48C798E1C69D9B98891AB9064EEC01057D7D934EE274D9AF41C1DF418E4A334DEA94F1B1EFBED591AEBACFF14059DA7E8377A86CD11EEF757060F9E2168388264BD0531F109881108B12D438A0DA62358507982632016622236622456622676DE548FB99D934364189ADA824169FB3120F30006E51D858BE204266A4F634E7517D6375F06FFD055649CB88A148319B27D47216EFD12C3478D5D72BF2B10E5C86D398AC28327112D2F81F0C84584755CE26A526D62201662E2D81823B11233B1F3A6CD98D7347D7B0A26EE51613CBF0813C3E5981C26867B48263EDE25C0FCEDB1F86C5B04966DD98535FEDBB17A632076F3E3B1614B30E67AAE08B85F01948372514ECA4D35A816D5A4DAC4402CC4446C1C2363256662E77DE831AF6EE09091183078385E7B630CDE7C6B22DE7EC70DE3DF9BEE7CFFC3594E8FD95E8E854B57DF58E9E37F719D7F50A7F7866D854B96ADF5A1E5AFA7F601CA45392937D558E5E37F816A526D622016621AC6D88891588999D879343627B8B9BD3ED6CDAD1F1B937FEDD567E0BB7D070C9105EC8CBEE4BB3D063BA3D23069CAEC0B2F0E7439D4B7BFCB325ADFEF8D9E38FFDC138FF5E93F74C58B035DBFA09A549B180276ECB9C498A4C4C6CE63BD89959889FDBF12F5193078E8A0A1A3BE1F3E660256ACDF8A207E1262D96A132748438658EA2C546B7E28ABAABA595E5D734B575DCD3CAFE9C7BC12F5D6FF57486E49C92EE69B7FA45C949372530DAA1527C8607533194322C7424C8CEDC6F37D5E1E7D6FBDBBF02ABDFE82BDB5D5419ED654670159452BB38516B6A9907FBD630BCD2CC83AD6B2A8612ECBD2D88CD22AE3F5F48262F7DF0B2E90CB3DE8197A9672502ECE8E526E2E6C5C4DAA4D0CC4424CC4468CC4FA3301E979790D46731D67F9EA983524CB67B1B1C42CC82ADA5A5B39834E3E9625416B47271AC90BB7ED87D9DE047595C919979919F16BE01E1E1E4FC60AD3E3E95E7A869EA51C948B72721E996AB07E2DE7AD1B39066221266223C614B1B8ED6786862C9CDA6070D07F0C280E1E3EC28CB91D0DCC98B7767470A6FDE49933387EF2142BDC463E161295FAFB54A9B42336232D2C342666C0EFFD023BE3235E89CB4C0F4995483AF394AA9B948B72526EAA41B5A826D5260662B9C3A5D61B1C9F6FDA34FC171D998C9D5DAB6A6A39A3DDFEC517D8D779009D870EC1C83E1FFBE44E894AF56DBA4C6E8D4D4F5DC7043F7BBF13F9CEB3A1A1FECFC7A50B7D2837D5A05A54936A1303B11013B1894B8A350B362F78FA1705787B7B3FCEC6974363A8808A2995976A2E66CAE5DA188160CE82050B1EEBA995E7B70479F8FA3E19979C3C3B5326D71203B1704C0643F7D2F5EBDFF8554F1C9190309EE241C3FE2F82D8CB7B624F7CFCD88894C471D4BFF79E7F037BFF6CE432A5649F0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (59,1,'Network_(64)',0x89504E470D0A1A0A0000000D494844520000004000000033080600000027DF0EB10000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000015154944415468DED59A0754D457F6C74936C93FFFEC66B3299A58A2C46E6CB1478D0AD1286A445151C4500C58500151208A06E920481518CA00432F03436706180686A177502CD8359A62E226465D6380EFDEFB5BC87177DDB39E246423E7DCF37EF32BEF7E3FF7BDF77BF7F71E5A00B406C256ADFB486CE41E03C3A3E930F493C23040864D4139303A9E8B8F42F3601E5600CBC802584517624F4C11AC638BB02BAA109661B9300992C1E85806D6792643DF351E2BADBD616269B39BEA7DE1D7D6A935900158E3578879AEF9D03D5A8215216A18886B6194DC828F659DB05174E1A0FA32DCEB6FC0AFED2B78367F81FDEA2BF838FF2CD6A5B56389B81EB3022B31C1A3044BDC32B1DBCEC981EA1D4EF6872726005BC24AB132408975A24A6C96D4636B461BACF24FC34E7911876AAEC1A3F94BF877DE8257FBD7B0AFBE8E8F1517B03EB3134BE35B313BBC166FFB9543DB55011D5729F6EC3B644FF50E257BFA890980559C1A5BC455B0486AC02E5907F6C9CFC2497D09AE0D3708FA1B049CBD0DAF937F857DFD97B02CBB82F5B95D589A720273A29B3029B81AA3BCCB31D4598145AE19D865EBB49FEA7DE3890A8063461DF6A437637FFE091C5276C14D730947D5A7E05FDE8EE3E7EFC0EBF46D38347F0DCBCAEBD8507811EEB119F8204A83C9A2468C09A8C2304F15061D9663110D811D369FECA37A073F510170CD6FC6A7F24EB8979F87AFB21DD16999A8ADAD4568462EFCBBBEC381F6BF625BCD57D8587A0DCB72CEA154A914AE7B46A760CAD162BCEEA1C26B474AB0D84386EDD607F752BDAF3D5101F054B4C34FD184E814A900D6D4D484F28A0A1C4BCE84CB895BB06EF8069B2ABE805ED155CC9776214B2643555595705F4D4D0D5C4449184B2F511DAF1C6CDBE5604BF5BEF2C40460E55AE3B8E309E9020803B1A9D56A64E7E4C043920E87A6AF6041ADAF5F7A030BF2AE627A7A17622512E4E7E7FFD3331A4D15D67B27C372B7BD0DD5FB17B2A79E8C1E60B025E658BE06B1E999024865652572083E4E128F435149B069F8121F5552EB2B3EC39C9C2B783BF51C02838291989888C2C242D4D5D5214D968B695EF978DF370F1FEFD86F4DF5FEF9C909000D81909A339048FFD1ADF3A8654551D10419847DC763B1A3FA060CCB6FE003F935CCC9BE8CF1A9E771C4C515CEBE41F03C1E058542210C1B8363E914807C986EB7DD43F5FEE98909000F81081AFBDC9DB94503E2921079E233B86696C051A6C6DE8A8BB0283D8F4D0567B15A761A3AE99DD08928C3DC8436CC8BAEC3B1F068149794A0BABA1A9601893032B3DA4EF53EFF440460D2A449CF39BBB877700B161515C1C1E113FCE5B5A178E9D5C7B76123C7222C2C1CA5A5A550A954B0D9E7E435105A7FF50A0D0D0DFFE0EDEDEDC0F0DC8D4343C3BE8E4B2E70132717060447A5257807C5E6BB7887571D760FBEB6FFD0D1FB360EEE0FEC0FFBDE77720BBA74C43B4CE31D1C971718992EA1FBFDC3E3D2431313937E2C2B2BE3BA1EB8BBBB8FFF5D0780FE9E727575DD4463BEB7B8B818515151372D2D2D87F75FD71E376FC250ED296523C64CB960B663FF9D6D766E785FDF1C7687FDB1C670EBB7AF8F98D035F4AD2919DADAEFFCA5FF197B7BFB35696969DDE5E5E5C8CDCDBD7DF0E0C1577FB701707171994FADF523775B894472C7D2CA6AA68E8BCB338219EEFAD3B8690B4F0E1E3E1AC3B4C763F1F23530DBB90FDB6C0E62EB2E07E8EA1960E498491832723CC64F5F2CED7F6EE6F6EDCF12F4DEACACAC5E9E4629189F5B5B5BFFDFEF2E007676766368BCDFE3EE9A929ADA2B8A9320213B0709B21C64141421BDB00869F90590159720AFB40CD925A5C82F53A1A8BC02F94A154AABAA51ACD6A084E67D755D3DCAAA6B515E5B87EAA666A8EB1B20494CECE56994A7D3B8B8B84EEE6DBF9B009898980C96C964B7B89B4AA5D2EEB068314A08AC96C4172ACB504E70F52DAD28AEA8849A939CB67694126C3581F13D25D4B2AD274E404DD09535B5683F711295940734D37D0DF45C151D779CECC4F1F0F0EEBCBC3C615A15894425BF46107E31FCD2A54B5F4A4E4EBEC4DD935AA8FB88A757A78A80F34B9404DD22C01553305ADA3BA0ACAC4219896FE93881323AAEA296AE6F6EA160A8D14601A820F8DAC6460A509B10888ECE4E5451903808FC7C25BD587D7D7D3B0A0A0A841C21383838F29706E117C14F9D3AF58F62B1B85EA3D1F00BAA87DE01928894B47B8DADAD28A0A150ACAA105A5E5E564E2DDD24B4AA92BA786B4787500A70746F59A586604FA182E6FC766AE9EA06EE192DE838750A5574DC79E68CF0FCC953A79155985F46E017797AE51C810272E09704E167C36B6B6B3F1F1A1A9AC922287FEFF5F2F252BAF8F8BC9755A480825ABCBCBA06B9F212D43436516FA084865AB6968E6BA8BCFAD975B451EBD63434A2B1A50D4AEA01FFE8091A34B6B6A1827A10B7BAA6B65E18264D74AEAABE9E02473D4753F5C072CF9EB76808DCE4699682DFEBE3E363F49B0660E6CC99CF1EA33F86A72CAF372020A07DC182052F1E0908488F4D4BEF16C527F4246566F5885352BBB98CA5692C254BD6932ACBEE4DCBCEE9AD6968EA9597A97A3372F37A32F3F2F97C4F6641614F1AFDCE2E2CEAC92C2CECCE95CB7B72E4722A153D798A123A56F414962AC94ABB3DFCFDDFB4B5B51D1F1B1B7B87A75B7AF774BBB9B92DF84D02D097E8EC21F85EEE86D40BAEAE5AB5EA65BE666161F18AA1B5F5A0CDFBF7BF666C65F5B2E1279FBCA4EFE8F8A289BDFD1FCD5D5C9E37747179EEA769F1714C474730F6F9B03D34F32CA68FA7073CEDCAE5F21F68088E19D000F4253A6BE885D7C3DD8F129D5BC6C6C6A306EA7BE271CCD1D1710BE5063D9C2ED34BF8BB03070EBC3C6001A008CF522A950F4A684C53A27377D7AE5DB3FF97F0FD8D42899213274A3C0D53303EDB4EC9D3633FBFDEC8AC4A7FBD7187FE3A63B5BEC1A6AC956B3686E97DB8F6F0323D7DB379BABA8B478C182144942A1D412FBBBB1400D0B4F780B2B1D5FF6BF88783E0ECEC1C959D9D2D2CBAD0BBA18DCFB1766660166662366614588999D9B50C0C3FEA31FA341CEB8F88B1D9350AA6AEE1D8EA1C84AD4E3E30DDE78C2DBBF6C1C8745B0F7D94085F65E9E9E9303631FF66D9CA351DCB571954AEF870834C6F9541C4F2556B9C67CC7877E240C3B20FF6C53ED9376B602D4BF5D65CB67770FC81B3459E963DBC8FF6B276666016666236666456666676EE013FAE74CF806EB01AABC575304E6DC5CE9C93704E5742942A43A0AA0DF11959C25A9E8C227C24321987729B609352050B71314C43B2B1C53705466E62E8199A5E1EE800B00FF6C53ED9376B602D87729BE15EDC8E63E151E8CF16C3D272C06B12E9948E5BE5760A6CCCC8ACCCCCEC5A869BCDFFF6817322E6FBABB0445483B509CD30496F859B44262C6535D2BCDD97E5C12B3A094734976023EF8279E609182536614DB81A7AC74AA0EB55844DFBDDEF0C7400D887AEB71C7A7EC5826FD6C05A58936BF55504D65F4544740CFAB3456650D03BCB34B34360634666656666D732D868F2FDFB4E3198E9A7C27BA1D55816D3807549CD381C9BD5B728296479FC01024FBF00D847A6C1A1FC22AC8BCE625B462BB60724E2585C0656FB15C0E470C083810E00FB5813AC84B5281B76A24C6C8DD7085A1C2A2EC331A31C87DD3C384546525292B018C36B8B458A62AC4B6D13D89891599999D9B53E5C6B744BC75E84A93E65981DACC1A2A806E8499AE028CE425F96C76F7C040606E2A0AB070E2417E27079171CE3F36968640B3D444969AF71A41ADBBD23BB073A00EC837DF19239FBF69764606F662DDC1ABF8077FB5738149F8D4FDD3D393F414A4A8AB028934F5FA27A092D021B33322B3333BBD6B295EB3E5F641782099E4A4C0BA8C45C513D74629B601B9929ACE5252426C23B20087BC5521CA9B900AF927AC4A567A18172F4FEA5EBE252254C83B2B0C327A297BE0F8653A6F8D2ECD9B34791BDC129F3B469D3C64D9C3871C8BC79F35EA16BA3C986908DA0F3C3E6CC99F3EA3BEFBC3376FAF4E983E6CE9DFB673A3F819FA37A06CF9831630CDF4BC76FD1F5A193274F7EDDD23DA477BBA412DE51C93FF94FC9298053563982BA6EC3E7CC6D38D47D8EDDE1290808398ED4B43424A549B138AE5960634666656666D7D25BB5FEF2226B3F8CF756E16D7F0D6684D561417423B68549111123816548328C8B2F6147C5154467E6A2FE21F07EE3B1964DDFFAD9B9793CF6BE25FB8E8D02C8C7DF53799BBA23FFBE4BE5F794B57D4FE55D6A1D3EE6F22EA5B477A8FC1B957729CFB847E57DCAF0EED1319FFB81A65F3EFEA184825D4A3D8ED7051ED620A7F39EC5F538D0F839AC6ABFC466E535ACCE3E05ABA078F884C76081B85960634666656666D75AA1BFFEEC422B4F8C3B5A8E09747172681D6645B54047D28C77133AA093750EFA8AABD8A2BA06B7D4029A0DD4C24BF15156413345BF7152C2F6F0311B4FA58F325E48799471DED16F9CF2B23D7CCCC689195B218D751EA29BE99DC09A7564E73127E914DE4B3C8959D1AD021B33322B3333BBD6CA3586ED8BB61FC1585F35260456E36DBA695A5433A6C4B4634A4227E6649CC3D2822B58AFFA5C58C63E905E224C2B9C74F49B4C26430EB57E2E4D3FF4BB9B668C1FA87CC0C6C7745D3847769F32B61E2EFB8EBBE99EFB74FD873EBB9F9999D97FEEBE542AEDA1F26F741F9FFF914B69561632B364C8C8C8E0ACEF274B4D4D154AD6662AADC792FC4B8276666016666236666456666676ADD5069B6A17593861AC1F4526A80613C31A3121A219DA116D9820398577D2CE617ECE157C587A035BABBEC2BEFACFF1A9A211A2A454C4C4C4402C162334320A1E2979708E4AC1860D1BBD284BDC4C99A3257DAC6CDCB3678F31A5CCA6746E039D33DBB973A7D18E1D3B36585A5A9AD2357D36FA8832A272C5B66DDB0CD8ACACAC56989B9B1BD2793DFABDC2CCCC6CFDEEDDBB17E92E5DE6E01C978500452DBC82C310417EC3C3C3211245202A4E0237EAEA26A22C412B6B66EDCC20B01013B33123B33233B36B515AA85A64B61F63FCAB312E842214DE8437C35B303CB21DA325A73129F51C66655FC632F96730AEFC02368D37E17AE2AF7057B5E2684C02FC6976F0090C4644E30504577662F8C871069486FEE151E9EA43F6F4C3E7FF5B9ADB7FFCA6F6B8B5EC23A2E9027C2263E0E3EB0B4F2F2FB88545C331AB0256AAF3D85C715DD0CA9A593B33300B33311B33322B3333BBD65AC38FF216195B6374600DC61D6FC0A8F0660C13B56178F4098C949CC1D8D40B9829BB842545D784AD2CAB3A9A6ADA6F2180DEB8218DE71198950FFFB824C4765C81A8E102264F9FB373A0A640AE9B7D484EDD80AF2419DED17170932AE0D97059D0C4DA58236B65CDAC9D19988599988D19999599995D6BDD2693D4C59BB66174501DC686356158683345AC036FC69CC2C8842E8C49BD889914CDE58597605A7C1E7B555D70D674C1AFE62C22EACF2052DD08716513C24A6BE09D9A87B90B759D072A005C37FB10A9EA212AAD427455ABA081B5B026D6C61A592B6B66EDCCC02CCCC46CCCC8ACCCCCEC5A1B369945CFD6F9100B9DA231CF2104EFDAFA61DE1E77CCDF7608F3CDF662E1460B2C58B51ED366CDC7E0A1233168E85BD01E3B195366BE87A5AB36C0D87C37EC0F79C1F56818DCFC227B2DF6381C1DA80070DDEC837DB14FF6CD1A580B6B626DAC91B5B26641BBA98DC0C24C021B31322B336F30328FD2DA6462796CF8A84918AA3D1143464EC4883153317AE20C4C98FA2EA6CE5A8859F39760BEEE0AE82E5F8BB59BCC616AB1A7D76AEF81077B3F71FDD6C6DEB96B979D5381E5CE7D87F4F5F5C7FF569FBFEC8B7DB26FD6C05A58136B638DAC9535B376666016666236666456666676ADBD4E4E43E62D5E9E3F6BC10779F316AE902ED4FD30497799BE5877B97ED4FB2BD68518995915D97EE2FAFDCAF5E60F5C7C23B0CBDEF9D337464C7A5B6BD0A03FD10BEAD9FFF53A00D933ACE58D116F4FDAEDE0729835B256D6CCDA9941576F4D0433311B330AACC4CCEC8FAAF4E957078F30193C6CECCDD7DED0EE5E6960029F90781859EC87C3916358BD71ABD0DD5E1BA2DD3B72FC8C324747C717031213C78427A62E4CCACDDD16121FBFD4C5C5E5995FFD1B60FBF66743259225EC233C366131FB5C6660309835B096B7C64D81FE467341236B3D7A3C012BD799801988E5AB57078D307B5483FD5334D9C9F805FA2F8E9E34AF71FCD4D9BD0B74F5B075A72D3CFCC3102A8E8738390DB1A9E990E617F4E61597F61629553D4A7525782384D7F6559A6A945059A054DDF41689A63FBC80F9735B9882F9B44B48F8BBF9CAB2AF4BFA7C08BEC827FB660DA4A58735C59136D6184AD3B3FBB1305858EDC3FCF7F5C02CCC3472E4C421CCF8F0D4FA93337F72420E6E35B4B6FDA8D454F754D6D609BB37F5CDCDC21695B2A25258A3E71D1A754DADB0EEAFA67BD454F28E4E5D4B8BB0CDA5AAAA42197D42ABAA6B212D949FE6256C86F819ABB54FB904068E9216C9CF705D429D5437FB605FEC53DDA741D042BF591B6B64ADAC99B53303B33013B311E3372E7E7EEFFF5B00F61E38A01D9D9872BF863E76EA1A9B04AB6D6884861EE68D090D7D5757D53508DB59BC6951462DC11537B5B70B5B5DBC01C2F7F006480D89AC6D6E416B67276F6EF606C749522323231FFB7DC14BE8C112493A3FCB75705D5C27D7CD3ED817FB64DF424369AAFBF610EB058D1A2A05CD748D19FA79988D19B7DBDACEFDB70070770D95C41E96524E5F2BECD8B40A9B94BC63C3C75C213BE39D9BCEB367A1E9DBA9E1ADAD662ACF5DBC84EF6EDF462539D7502B64D387892453D62B4A4AFE363836B6C2452C7EE57103B0CFC3E3CD90B8D8327E96EBE0BAB84EAE9B7DB0AFE63EDFAC81B5B0A6C63E8DAC9535B37666E0636662B6E362B1D7C3ABC6FFFAA279214BAEB8A3A231C63BB8A7BBBA70F39B6F84EEC4BF79EF8EBB19FFBE7AFD3AEEDEBB87B3E72F08C2B28B8B119F95DD13959A7A3324264EEE11106046DF02AF504EFFFCBF8EBBC719FBFC0CFF1F00D920CFA020D360AA333225F56BF6C1BED827FB660DAC8535B136D6C85AF9376B6706FECD4CD972C56D632BAB51FF715F80C7EAF1B838DB6CB95C184BBC1BCB51BCF1C5973873EE9CE088235C5CAE8654AE40726E5E776C7AFAF5E09818A9BBBFBF3E89FD733FF0CF19F7FF31205417FFA3C40A0A88F181032FBB0705E987C4C666C466645C670DAC8535B136D6C85A59336B67066661A64051E4A17F7D313F6ABA7941A6507CDB44DDEB1475ABC25225E4AA72E4169722A348FE202E33F342488C38CA2D2060216F79712BFDDAC08FD1439ED671D1798603F2314DC3F452D309114745C549A51759236B65CDAC9D1998255BA1B865BC7BF7C8FFBA33C42041D1D1160A75656F4E69E93D8954DA19141DE9EBE4E737753505879DF6CDF34FFD8E36469EEEDB437CCEC4C4E48F9F7ABB4D0F8C8A3CCADA69B8DC6716DFB0303BBAFBA9C7DA1AE320704F30B4B3FBFF7F6C68EA3CF36BFD4BCA6F9521F66DA43E67C70C643AFF2139FB3B95A8F1E9CBC720C20000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (60,1,'Network_(96)',0x89504E470D0A1A0A0000000D49484452000000600000004C080600000092F6B2750000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000029AD4944415478DAED7C09B85C5595EE3A63D5A9E9D670C7BA63726FE604121242184212E6061A4124088E403F501FEAB37DEAFBDACF07D86DBFFE7CDDAD82BE4F6C5AEC16D0061504154184080801131230818490DC9BDC79ACBA359FF9FD6B5755B84170448862E5DB39E7D43975EE396BF8D7BFF6DE6B4BBEEFD39BFDB9E88A8FC57FB1E5C799C5AB56E3889F47AAB5EA87F77C49FC8FFDEAF772FD84F8A6FA0E12369ED8F3ABDFE03F7EBFFA3B8A6D6DFFD0C04BB474E1B22F7FFF3BDFF868ED8FBE298250E928F9ACFEABB7D37EE358D274154DAB6E03D86ABCD5C5B18E7D23A052505728887362CBD76AB2B84ED7142ADB0E15CB36154A36152B68A62D8E4B150BCDA672D9A20ABEEB5B3142D1916722F8D3ED35E18FA2B96F5905A8B0E6B0A11FA900DE42D0FAE17D9502D80F42D841B1AF08A5E8AA22AE295A10BEE951C1F2A8687373A9846D09DB32B61534D3F5C946F3AA9EE1CFB17EE92DED01B22C41012C6C8D54343DF00A45CCD906F5AA02EA56CFDB125BBA5515FACBC2F7ABC2777C348FAC9AF06DCFAFE215D5F0EA4D829FA34A018A2C5324A4BF42D8733D4115CA1190C40A1282AF5A7E81A186856EB9420925B4AAD0D9F27DAAB0F021746EB6CFAD1A0AFC6AA8F0DE54CF3F6A3C40925E01412F0BBFEA15AA10B60A4852A00455558502F235E1976AB0C3DB12E200430F2BA152B378ABB675D05CCFAF86E92321E82DEE018A4481390AD0EB4A105004812B32E96493A4E9A406759280FB858A538319E03E7B0060289A3D4861DBA6E7FD14F09EAA96EFB2E089A00FB1F504DCCB75AEE4CD81A237DEF08E1E0F401086602346004DA770889B4606339CD20C25FB9FA293FC317287F621E8CA02DB05ECB855CB678C2F5B16A54A13F4811529BAB661987A8B03645B262CDFAB0ADFAF0A5FE23F26682DFDC5030E474249A610041E10945321958504C12732076979572B0516F4803E9A242B55E157EC6A60151EE0561BE3BDC9DF95CBB4B0BB9D3ED94DB4676088FE6B7F99B63B4D401C89834D3567F0A47A4AF01705088140360C3B6CF17E7186E2B383B4BC274DC1C66E71BE52A940B015B29C20F910B2E9F8A209CB175B3428C1E43CA05812206318062DEEE9A0EB7AAA8AB8636F81B63929F22445B89CFF9718F00A2554B2D4303D4C2B58F0ADF30E7F6FC2F28BC522954D8B4C5F23DFAE2BC015F85E06D673430A20026D01D772762C41ABC16050DC8315F1595644FF20FDE70B05F239401C1903DE1CE83D1A04EF9985404C93E8CC469F8E5F340F1C3F70F89C055C67E1170A0564B215725CA6932CF83AAFF74433996242EC15E101C5C38D9537F7B3785E27BD67698C345CED794778C05BB72B420E44CC9CE5D31393156AB5C7686157BBA09936D84C5D90A55209AC06420F3BE409E14B357AE9D5A8A52438BE83E352A928380E7B808CFC829BA669F4F40B07E88E43442F79493A5609FE25081FA10470FB48EF32CA64C668747288DA9A1A8FB0646EA0F864053CF29C1AAD04BB719956FAD5EE37074A6025D5638004C1B312B84522114A450D1AC1F53E944BAE7C5464C2470D0DE5AE18339FA196CC216A6F691616CF6C66746A9A4633B3801FC4011C7312E51EB6FA5A2F684D7E90B708C4F9B2497B662AF4CD0187760F4F8998C00AEC696BA6BFEBB348772AAC9D7A2FA9F7170FC0C7AE94293EBA977A411F19EF5960D3B93C9517AD212DD94A9981FD640E1F204AB49003BB11C2F7B92BDA13144A9600395A8006DB57D1B063514E8B0BCEDF9F9BA40F8E0F506FCD138EE9EDA48F56FAE927072C72F079B313B1A342015387F6362D6A5F03F6D32184CF6D263B4BCF4D9529E01C22B97F886C301E5B8E100DF69374E80019F0020DA20BF91EC5198EB887B3E61555931E249FBB1C20E347670A1451ABF18095B061F97C2A8D3F4A4F5A26BF7FA986046F4D05AC5AB52A7ED9E5977FFAB44D9B0E63FDEC6C8EFEED966FD081FE4354866778EEEFDF4DCF020F80558D7475D207AF7E7F3536E0BB73CFD80026E49E78ECB1C7869F7DF6D9E25B1282F8E52FBEF8E2FFB171C386F79681EF82EB972BF6A1D1A927AEBEF653FB8241230471C54CCB8C978A8504AE69A898A5A855B122E57249A9403915FC8E19135F6A84C37E40D7CB8140B060048D5C281CCE0443E1AC22CBB38E6D1586FA5FE8308CC226284061259C7EDAC6630061FF7BDEBC79D7F5F7F757DE520AC04B07DFF9CE77BEE78C33CEF80CE8A6C4C247B66B6EDFBEED2BDFFBDEF7AEDFB3674FFE95BF89C5DA1B03F168CFBCF97D6BFFFA82B77F65B658A122E86B58D5281C8B537666EADBB7FFC7ADFFCFB7CA07A6A6062710649DB9BFEFEC7C8F71F9E5977FF2F8E38FFF3414A00938DAB0E113C81586962F5F7EF3AE5DBBACB78402D802AFBDF6DA73F0B991F197311FC2B72180EFFEE0073FF887B9C25FB8FACC2585E991DBCC4A698566285A221AA6CE742BF01EC91712B3D9D959012B1C4F5DC7BACC30D4CB6691E5269A3ABC96AE45070C23F1D181BD5B7FC4F71A1C1C2C43D0FF02484AAF5CB9F24AC40415F454DAB871E317A084F1356BD6DCBD6DDB36FB0D95C51B3D280FE14B575F7DF5C9809E07A2D168289F07D329971D08FDF11FFEF087FF6DC992259373AFFFC5AEA13BC787F69F655965719C4C355263AA89D21D1D946A6C46D0ADC607DBB6686C64982627C6696A720A34B6408AA252AAB57BE094D50B56CEBD27E0260ACBFFB7A54B979E190E8715CE11F00C26FEFE995FF8C2179E804CDC3F4B05B0F02FBAE8A263AEBCF2CA871B1B1B9335BAE90F0C0EDA05CF9F0C47A3AE3C2779E20E3AFE1FBC3F040B0F83D5A8541DBB9125D1AD5C3BA0EA6FA8DACBECC3B03D45915D5DD74B7A402B2206B8E27AFCA0FE9B4AB9224F0D0F35B5B7B5055801DC666666F2DFFAD6B7D6DD7EFBED7B2017EFCF0E824E39E59405975D76D97D4D4D4D42F848B6FCB1890969D1E2257AAE62B677B7A7690289572A9910CCA76259148F46693293A15658FED8D424B53635896B5A1A535440B2C65D0CA1601009DB14B53737D1F8D48CD4DAD4A8942B15C5715D3D1609C799D2A6E271CAE4739488C6C4B3F06FFBC08C763EF30C2BCF67E348A5525178E6C378B6E319B1FEAC32E1152B5674027ABED3DDDDDD59A39BFEF8E4A4AD1A610A85407680E99669521982F1012BB3D92CE98A22FA75E0A6C48CC705CEF3D6B24CD149C731803BDBC088C8C6313329DEB2727DDCAF50288AFB89FBE277DC6F3193CD887B70962DCB0AB57776D1E4D494CBC6C0CF954EA75B2EB9E49287376DDAD4F867A380B56BD7B622E8DEBA78F1E21575E1673299D9E1CCAC7CC686F5D4CD789E88D3A2BE5E028DA485F3E609CB5EB270012CBE19D6DE487DF37A704EA3BE9E1ED2413BE7C17AE3B11825D0E675758BA4ABBBA313C7510A1906F5747620B572A90BF70EE05E7C2DDFC3B61DEA48A745675D127FF3B895C752389E90A1841C2B81BB40162E5CD8F7EE77BFFBDE75EBD6C5FEE41500D69104F5FBE7D5AB579F5E4FB410788B3B77EFBE7BC9E2252A0F9AEC79693F2D85B04BA53225013F2EAC9701987B3D874647A9BDAD55DC2B1C0A0B905720D0DA9022F87F504C69090603A4A88AE8FF67E529F01E55AD6E63103EE048E40BAAA68AE00CECA742B12492B4EECE4E1950782F1855918D839F1139CA8950C2AD78FEC81F533ECAF5D75FFF47BB392C3E0AE17F1AEEFC01860786066C4B5BB76EFDFB96BE056F9BDFD19ECA82464E656600290EBDD87F8022E130CD00F30BB89E7FC3F8EF38368D8C8D93E5B854C43D72F9828015C6760BE772B91CCD026E6C7CC7D092634503BA72C52AFCD880AEE94C96032F277A385712BF9B2DE44522C74A321A62F1C77EF6B3CF35373571A2A672509F3F7FFE92868686F0E6CD9B1FFDF8C73F6EFF4979C049279D645C7AE9A57F8344EBE33C9C58E3FA956DDBB77FF1C0F8F80F2391685F73324961788006CB44B014FDFF0DD81A3C2E0CA144A10C61F94143309700AC37048BF71023D873AA3348255C1F14F180AD997FC38A0B683A10C816F94210F7E367D0E119E150104A42F0861794E17162D40CE70D3DD03955C83CFACC33CF7C0E3064D7C7204E3DF5D48F20765DBB60C182C09F0C0B4242A3E1C1DF06E17F1EF451245A0896D673CF3DF7ADA7B66EBDF1F477BCFD7FF676B4CB9DEDEDF4ECF32FD0F1AB5682C91834082B6F073E4F4DCF900CA574821571E34F07AE6598E1D1B2857D7DC2D2EBE7F893811734A692E27C061EC2F74900E3C7911330E6972B26D85552DC8321AF3DDD268E27A6A7C5B512F8EFD9E7FCF515DFFEF77FFF07D0D7D6E38E3BEE9A9A2748A79F7EFAFF81710CE3BDEE7CBD13B5D73D0FC0F3CAD75C73CD2630891F008F8335BA69EFDDBBF7C1AF7FFDEB57AC3EFB6CEDB8152B1E8C85C24B145C5DB24C1FFB125BAA059C0E42F0263C81B15D125308A9DADD8C9D5834420D0D3128D3124AE273B2547564C77504FEFBB80773CABA6BABF004D7A97A4200E79949C98A22420807EE203CC92C57C454454955F77DE79E7B4E7CE28107ECF7BEF7BDDF58B66CD90560680A124636201B59FAB948D4B6BCB28BE3A8F100B616087ED505175CF05D40445DF82E32CF1D77DE79E7D548FF670CCF4BEFDEB9F353B8385EFB9987DCCBF37CC9F7207199C5227A94151CC8F88ABFC33112236469BECC03B9D857141C7BB22F691AF234CB57F83B5FF170331F419C6FE2A968306C1FD60DB93BD08DEBAB9AE621481F4EB23C5DF7A23A4FF9223911F473F39B9A66FF63DF3E67FDFAF55741A1F7F5F6F69EC8FA44A2A69D75D659F7E09D4EC1F173AF57A2A6BE9EC23FEFBCF316BFF39DEFFC4132996CE02E0608DF1B1919D9F7D0430F5DBE63C78E513442D01FC577D3E5584CA2F171C6F2235C30130E1F3E0E3734F8343020F66185D5EF61BDFC194BA55EFEDDEEDD809B843F778203F8BC38BF05AD69F7EEC3D7726F1B2CFBF0F175D75DE74B2FBF447DAA0A3DF6D8639973CE39E712C0D1435D5D5D8B59096053E173CF3DF7A1E9E9E9D5383EE4BF0EF0F1BA2960D5AA555D603CF7B4B7B7B7D6853F3E3E3EFCE0830F5E7EFFFDF71F98F3B04EADBD219FEB7E8B6B5E9E277DA43C1F78E0813158FE8588650FB5B6B676C29B246C53EF78C73BB6CCCCCC70B63C75542800012BFDA10F7DE88EBEBEBE8535E1FB78C0992D5BB6BCF7DE7BEF7DD63F1ACA707E8F0F3F372CFD00E2C0C52015F7736F057B3AE869CFFBDEF7BE1F23289F8EA03CFBA6D2D0458B1635E2616E42E272529DBA8197E7E1C21F1C1B1B7BFC8DEAD4FA232AC11D1C1CDCB97DFBF67767B3D9423D515BBA74E9EAABAEBAEA36CE75FE20E8BEFCFD57DF5D2A14974BB2320B049C41FC9A42C41BF741BB2CDB3AE498953D6363837B5E6DB002DC388687F81C68DAB5F5C95368C5C71F7FFC1370DFAFEFDBB7CFA43F930F32621DEF79E909279C7033E29151EF4185A1DD7CC71D77FC2D3CA134F77A90117DA2682D0AC9EA125D53BB24454D2B8ADC0A28E03EA624C25543281ADAA55A15F30257526523D1442A1217A79CA7CCCC0C55CC0A39B683064A184ED089276F7265557391CE9BAAA294C0F34A9B4E3B33B871E3C636B6FA6A3743C97E64CBA30FFCE2E9ED7B90F884E1ADD69F2AFCCC25171D1D1D896473DBC29DBBF6C8C57265CB19A76D3AAB3EAC79F2C9275FB367EF4B9B4F3BEB3CDB737D036C2B80CC5D75C1D9980CDBAA46AA8A4C1B794E2C9922351C014DD6A9949DA04AA9325FBAF45D57996EB4599FEC3D9DF4A04A91A046F100B243C54780F048937D52407B657069D9B34982922AC55972B39374F1A675B55EC78248EF1F78E027B4F397CF53B5EF1D8445D53D4D955D054A43002B2B925274C99B181F1ABA66D7AE1D3B8F26412F5BB672656B67E7CDAA243723D30E83B11AAE6BEBB6EBA88EEDCA753B0A23D35EBA6C116D38E524D16DC239027765DCFBE4B324C75B89F400815293E6BB540E3690EDC9621A4DD995285BF145358F653AD47CE0A7A4E4C72D5552145721571432F80E9211DB27983A8590AA1B419D42019594C2149DD9EC50FFB44976F702F2CB395A15EC16AC410CA423CDDF3B59A4E6F3AFA6732F42DA2FA61472BF4B49469223DBE592E6544A11DF2C375161AA67DFDE7DD7E05D3E78342920572E5FB360E1F16BA58626927483946088F4902106FB39290CF316F2E08E4017EFB76F603B2D9615D195C14A387BF552DA365DA1B055A4C56D492A942A747F3944B61CA462C512D59B268CD71613883D61DCB20C446198907CC7E07996B2572DE391A008C5C5B1838B148F74D3A4B6C6A4689685E4CA3329004D8BE144A4F8FDD379B2E6AD222D18A36CC9A2595B221306634B0AD99A01E54690E8E09FE25032DE49AAFCEDC6A30D6A14596D94BB8EA3694B41F6AC891A8580A2930951953C8D0A0E90C157298EEF0C2843597A12F5EF798CE649745809A7CF6BE2AC43DCAF58E2A9F41E9972B542A7DEEC9A8C65C7E2EC1B1EE0E36F38151E0F111720F3145D005CCE2914A1FA2265AF7F909888297D35BA49D33928A47D2929B106CA553C788F8C6B14381DB08F58A98E487F24B7448A1E265D93C89310848E36AC274A7075665052C433CA768102A1040582D5B22935009CC0B982CF90ECE27A971CD510833EA2E0A936945A9F0ECFE9BCC553E67DBF561AEB8989C4BCF5B838C4B5B883D154C1784C2B97235D72713104871F49B07AF600094D81125CE7E5316AAB36E254673D4EB948DAF38F53361827A9FB180A20602B9246161ED28715389943B4362E51634B987E78100F2B4781A3A1A34E01A150B05196187615D22A193A7F7E901E1D1C232FD046C168B256B30638963C9ADDF1330A6706296A04A8287A65FD39E3D8D58960AC800A8C999B103E0C9CE79739F85E87F2CAB92CFEA661028ADCCA34588F86505184AB2962D671D55D8815C01AABC9BF3E5DFC65D6535582592A935F040B4BA629184B5009DFB993C3B45029D2BAB5EDA2AB796C7286741C4B9A4A2DCD2DCD479B025ADAD2CD92A610682305F1BECBBB9AA93B55A21FEE1EA25250A660A41524852B34A1A0BE65547E7686E4525EC4C1B9C2AF4F89171E00E3B5E4AAF01DA44336F962367740B22993CDC25B8C8A0A7829F3746E83FBCE15836C9F2108C10517CA3528F2B8CA10EA9B2B74B10FC11778AA78CF326A58BC5ACCCF2C8E0E515B698256F735523CDA7AF805B9B7D208684201B196D628F7ADD49334A67AB5ACF3F0B69E89CE3D3F971ACEC9548FD87F25ED7DC579B9B67BC4B5BC7FE1E55745785C4294C3D63A9CA3E1105DB2663E3DBAE7208DCE7814ED9C07284220EEEEA364CF7C9AD9FF224DBFF014C9A2764D390C433C2DDEB25D3155DE21861F7EFFEAFC55317715B2A8407EAEEF94A5CD97BFFFC95DBB76AF4B5EFC099A541255BCD3ABCB03E8A2101A5A9F1DA1FFB5027807A862EC67C1CF14CB3466345378C5097039F8CFC420C5F393B4A23142C9865F1D4A3D383246F7EE2F9364C428B7F51EFBA5677E3EDF0318C25D916AD84A2C1693CBE5B2CD93A5344D93A160073987C2BD9942818E835DD9C26F74961FE8A0E5BAAE5E13AE83DF6AA083DCD32903267DC3306C6C83B8C6E56B9197187C1E7F8B7B4855DEC72999B7F85BEEE235A7BE145E7BBEC683365A7E98AEDAB0E288E7DF7D70845E0A3453ACA39B02D1185520512E93CD178006FD7B2935BA9B7A1A0C865791A04D154CBAA3D80E0FD0413BC132811E8EE588DCAAD1CED2CCDD9F07F55DBA55C5B39478048901CA5725461D92FD6A4133BFBACC050D683C7ECA9E325D28D3F366804A7D275224DE406E3E4BE9E1415A9BD0A9A937FD9A2E1E0D05E9D8680696E290BD72A976CE49ABEE9863A475836421D70D5696AABD9352DD8A49D45CC8A26F9FADB9762DCD7104794E17029FF76BD7F3BDEAEB411CDEE7DFF179DE164D4B538C92C85F0278AF5FC913BAD3949ACED0CEC117C9ED5A48A61AA232131708D84C2FA47D607707475EA2C55387A817F4B404AECFCB2254CB633D21578727D3F31F00311143A1B252421E201744CDBE6789A2059E53CF3F92045FADF610EAC0C5D16C86764C5A34D004BAD991A408AC9E4B4597985374DAFCDF0CE9C9789C4E5D591F0258C02FBDFEB7E887A1DFF59AFA711DCDEAFBBFE9BEDE9CEFA41AD9F895778886691D68F7132FEDA26CA28BEC505C1484547C408E14A06CB28FC6ED4EDA9D3D4409AF440ED0C316153C92983AEF897E571EF1B0C533C88A56E472DC827820F600994411B3274816090F607AEA36B4D037FD349960EF066868C8235114C735BBBBD566F2F7ECA1755D4DD5757DE6BCC86B09E7F516FA6B7C27FDAE237FBFCD7DD9D3D646257A7A7837ED8B7493136DAE566C7ACC22252804596FA49386B87C4A304847F4BD333D17B5546039122828DF5791E43CF03690E703A9E601F5C64C57AAAD7AC486C4CB01F04219660D964483C6B44882F6AB8B69F6E07EC0101802D7DF7ADE6F14E85C0BADC7C857E9A63F1C2BEB71730EE4F81C43E6DEEB95963EF7EFBF468C9EFBC7A4390FF3EB0D01572E8F21512B0DD39352904C3D8A9850E5FC2C6C2E183720700459C8D117B21477976B65518020A100050AC07739B166826BBF6C37B5E6F26F3C5C60B377284221EC15961830ACB6009465207D2F2101792A334C0B2AE3149649CC6E9B0307821970353C13119ED5E03B760901D09A0B191C14B115C007E1F2D0975B8F0DD8BA2CC47A5D17B67CDE9B132F045966A5F0FE1CDC17F7C23ECB86C79E19F71D3E4F62212E989E6585242D90921495473EC5A42D5D918F30A4BA6244E11FAE73F11E998A4A4E58134629A8A6E0FA72B5FF87C7A8F90504ACF862ADAFC34EE9543D40D6D45935108C4E5721C8A96AA8E601125793E3512A1E631C8119716C90448066C1333DD599668972514053244E722844FDD92825879FA738E4E158D5DE68A6681904A5996092145C971FEEA77B6EFAC7CF26E30D3F85000C0883A7A36BC8B2556634F8C03064FEB1C6FB60363CE8118282141C17A0B8204FBEE2715E5C8743A5C2F7E163BE178E232E8F145B5609D785715C579E24BA5E702DBEB7B91E014C2B3C399DD9B8F9939FFDBCD1D42E16812A1DD845DD51B09772F908C1CB9A2EAAEC47601BFD5A9C2A0DADC886836038D5257038C9125C9F2B36DD9A1D2B92A865F365B9CA6658216ED5038C6030A3C61B2213C20245DF8424D6661333066AB38D79310C485058BE2B342A893F26D7561EA9D6E656536D1F1960A0B9830AA0B095432F50CC43266C56AA9A0F8429BD6819F97A58CCCD711C257BC10517ECB8EEBAEBBC57F07FB966D97593A9EFFB35FCA82D2127D5CFFBD75F7FBDC413CC38AF98CBF5E75C7BF8BBCD9B372B77DD759757CF0BF8379DDD8B56A5C0F1A3E96ED2E028B9C224E541ABB9709085A1F1BC24087FDA43436E6327D2A41A09E2B9112E0B9FBB25840224AA765254636801FF4555A966D4FECB24CD75448F712C9118531BE2C929EE4E156E21CDC12A89036D4D218C67D549E0E28FF0BD74912873C9289A5ACDF0C45260604791D64E0251A722289B34F81279F0045F0F89E5C5A0767282210A868D040B7F6EC255DBBAAF1CAA7DB5FD39EB3C8843DCAB6EADDEAB5C7BF8BB3BEFBCD39D0329E27BC3082434402827619A00031BC2AF883E3019A4A31C88919DEE232FDE82C78F0AB4F6B8D7D87785D5737075A49769A6580E87CB6081A6150846AFC91F4028869D25A7BAE84834DC30AD061084559E27832FFD5A2AED577B370E339DBA6788C08CADCA7F40042AAAF25BB1109227AAD545FD2E29144E36533412263391A4E29E674943F2A2C3927C5EF12A18E084A5E5A8E9078A465BF44050F4802A781F239E20676A94BC708CA48E5E3212AD148C355209EF5741528537159EEFFAD58ECA7AB5B1B0FC3ADC54A917A01AF212D39B6A390BCF3F82AC79E69F1108E65528AAC8B3D0A0F22A0392ABADE2D5D6D511C7F5205AD530C7B6FA32927EDD13E628C2E120C418178E521C697B24D5480ACC460B28E0D74876CC22B03678D47449EB81404AB68AA49A6564F52A35F72DA060531B3413262996144BE21461E22E8F107A556FF7EBAB6E493537ABC1B6C7B2F26B4BE1F03E2BCDABB222F125A30A64CDAB7EB1EC5547F18BDC07528720B6700EAA8201D5163662E10720F4A8542124F8682E05CA0E057C9B02482A788B241F7064236654A8CCC1B752240F186A166629CB530DD93D79B6F3E0A078F0B6F68ECEA34501E9D6CEAEDBFEFE33E2193BBA3AC55A451CE7E2A9040562713138230542E4E94172159E711D109D768AA45350D1294C604208CE256043C553298FE38AA09C1C8449C0B4C58330A27C07F2B46D31439B658FFFBD224FDB2E4F0C517AF8299C34C92E15C0ABCA24C12AA8C482CC5361629486C646C8345F7D6A24C79100DC380078D1F580183760A6128946A9A5B58DBABBE75153532B6D3CE35C71FE99ED4F658E160574F5F666DEB6F97231933A3B3341531393D47FB09F5ED8F11CE50B79D10BCC9931178698C8844D100BF7356A9779D4ACB1B98D922D6D241911928211F2D080BBA419D56D69EA90983ACFB297FEF9E69B1BEFF8FA6D93C343C387FBFB3DCF7BB5C44970F8FAEA231C1B14B0237047311A146B68A0385A2295A2643245F1448A1209D1EDEFE77239B3522E8D954BC59D13E3C3DF7D71F78EFF7AA3AB117FD38727142F5C76DCA54D2DE98B43A1F0CAA0116A8D4663017EED4C6686B29969315961667A8A66B3B3349B9BA5423E0F0A6A09CFE66241DE72FEE3BD4622278BC12AD17F481D1D1D74D995EF6A5275D3CC4B72D08BA5DA645EEA250221EB60323CBD5B17EB770644650A0B9AA14A3FBC62A1EAF35614C9C99C247925686E1A1C783C3B3D7D707C6CF885D9C999FB7FFCE3BB9FFE5398FD503388DB6AEDF067E399179CD0D6DE728EA66A4B3445ED6E696D6D694BA753C0E5100FF821E393B844D6761C208B2BBC85EB11B854CAB4EC6A399559F520138D933B5160A2E89E903D6BEA5DEFBA62C1E8C4C45284972297ED0614351F0C8673B87799CBD9EEBBEF3E4E8A787EBCF6AEBFF9F0926B3E70ED934F6E7D9AB63EB58D12F1065AB76E2D5995D2D7FEEE637FFB7FDD805928CA729EC6C7AD5AC6EAD29FF047AA67A4E9B416B6ED986A05C29FFB977FFDA46E84AEDE0A1964E00DEB4E5843274206377FF5CB27DE7ECB4D2FF0D8155AE5FCF3CF0FFA7E24140C2A463E5F8E916A476D1E20F7BD707BDBBCE7BFF9CDAFEC1353136FBFFDD67DD8EC7B953F1E4522B9B0A97DC1A780246BE157A99DCF3C1311A53E8A2A309E3D8DB5FDE29E3D57A7BBDBAE6617D570ACA5FB0A9A6E7CF9861B6EF834BFC0C0C0805A0C85D4B05E521529212BC5222BA6F4B5AF7DCD7933E70E5D73CD351AB032E45A16A7CB5EC8B29C5273B3D30384C6B3E9EDF3977FC6322BFFDD36CB515D8F50B2B591F6EEDD438B972D17EFCE326059B04C766E7FE6F1A6746F0164661AF4E5E9071F7CE47396551CC1EBBD66C5A5F46B3ACBE4E6AEA59FB12BF9EB3CD715FDE6CD2DADD4D292A6968E6A111DCF0532ADAABBB97691662646289B9DA1703442A95413B575CF2B9D75D6861B930DD165F0A64E5D57D3A54211F01A324A9655C9E772FFFAF4B6876EDCBF637FEE91471E71DE48C16FBAE106B569703076D669A77F34146BF85848D782A552B91C8D46CA15D31C9514797070706860EB933BAE1C19EC0FCF2030178A05E80A310E4156512362E08A8B0A4346003270686AF4108D8E0ED2C4F89888A3B2A200A6835F9A187EF163BFB50238556F6D6D550F168BFA2F9FFCE52720AD4F5815080D71A1A9A5899A5B5BA8AF6F2135007AE2F19818EFE54557B9D488EB7A6391A8084CD17044ACE10398140F98CDE54559112F519CC33EB325A6B9B3C5527EC72F9FFBD0F32FBE78EF8254AA50CF8EFF589FCD9BEF52F4D6C7C20B17F45E78FC31ABBEDC100E47B99798CB58E34816399872395303880557E1D4A6AC830D15441CCCE70B6201719E76C2B900D7A165B3399A999A16147B787898C6C7C68561EA8170A594CFDC72D6BB2EFA54607ADA1D5BBFDEB96BF366EF88E1D5B90A6077FCABB7BFE333C0F54D08B69DB22427F2F95C080159C9174B1207632E012A8386251BE2A2E6B6A5B189F2F084EECE0E9A989C12FDDF3C6C198E4444311DC78832E89D8154DFC06FC72627AB952C3EAFEF69F2CC0051E3B5B7FFC0C0AE3DFBAE9CDABFF7A9743A5D79BD1521DD7083FC9EFDFB8DAEE5C7AE5BBA68C12D4BE6CFEFE1F7602F366A3568FC9C5C086E227072411FCF6EC8CE6691D14711098B1483517125660BAEE91F1CC27188C6A7A6208B06CACCE644F913FF8E872BA386E19B8EEDC6229192E7F919DB7506B3339947EEBEF3DBFF78EBADB7565E7576B405FE357068E04AAB523925140874878D60CC773DB56FFE3CE9A4B56B907848A09A31C1F9B9BB95B9AC6957A3BB8D88CFE3A95C66CA85D7CC93D945792C9495C28AAE17D1B175956141F158547804CF9D3C66F1A29EB3379EF2D393CE3AFBA765595E76C5155704E70C45FE214154E67B7D5292969F71E1453F3D73C3FA9FAC5CB2B8476106071A1D8F35084BE76789C268D8C0D8B21D5E1213EFC493B45CBC6B18EFC4EFA6E39DAB7981293C9EF19F272C08D9C462829E9FBC66352DE89D278192AA2C432040B759B64EE91F1ABC12C289CF7DBE23EA03A2AE5BEEEFEFBFA7ADB9F5433E70BF01378CC38227A0656E6B8E5D29A8E9C8E81805E10145517A5A14383801CBE6F2D0154B96D0A8374EF3BBBB45311C9F6397E6C19C6160E3A2F9BD343832821891142BE18A7A24BC40235E0E2F23CDEFEC5AD7108DEDDCDF9AFEC687A3D18F4180F93F24487FEA9FFE29DA986CFA425F77D7FBD6AC58CE83FD1485B0D913C54250B8755363A398E1D7D3D12E9E990D84BB57C2015D78434F5737ED1F3828E682F2360642C3349DEFC59D6C3C4B901799EAEEEA4256DD4ADB76EEA0E65423259045F3350CB953F9BCBFFF40FFBDBAE3E45E3306B0C55D79EDB56DA79F71C6FDBE651FB364E142516FEB894E39A5BA18062E9FD7DD4563084A0B7BE7031B8BF4FCDEBD026AD89D93F104A0294B6B561E4BC3C0425E16A008B764C8D1785D1F58521384CF2EBC08BF1F1D9FA0E94C8626A76728C7F38DA02C45E6711377746C68E87C2A959EFB7DE1E8AEBBEE5276F5F71F9BEEECF8BE2CA9692E3783450A413643E1A94482DA5A9A69EFFEFD34AFB35314FE31D470353D930E2E89E5B8956E69A16DCF3E4B4978CBCCEC2CDEC110F37A962D5E2CEEF5E2FE03D48AFB0C1C3C589B45288958C2F7E0F77DE145104C4D796ECBC30F9F77CB4D378DCCED9DFD95207CEE473E125898489C7AE1B9E73DA0F9BEB416EEC4D78C4F4C88079C15C1342816BBE0E50258A81CC07AA0FD5FECDCC9E39CA2EF88939304E0AA1978C99E541FD81887E246E009933359B1C086984F2391639AE5F152A9F40BC49C47860E0D6D81754E8541E76EBAE9A63F688A3BC34F2522274391786367AA6D2388C3A6A0113E3EA0075B20059547E7DAC0D81A93716A07C1607CAF23DF6C2E27E25A0642E71E637E0CAEE2E7B2DAFE43874469ADEDD83480E0CB9377B9089CA18CBDBBA5B959DCE7E96DDBC89664FFFBF7FEE0DC9D23835B1E9983FFAFAA00F682F77CE0034D679E79E67DE180B1B633DD060146C583894535AAC37EF4CBE75F1033E4B8F49FABDAD3BCA643739398BEC2F8CF41991F68905901049D81E28A5014632F946396CBC5C1522EFFC44C3EFFF081C1C1A734CDC96B6494E19F651A1AB2EA8326AF1FFBD9AC20FDD7717FA3E23821CD3723DDE99E1322C9E4699148E4242318EA945525E003FB99D1F1DCA6A6C61475A5D3C20B0EC26339F64560FDBC5ACB083C97BD890D8D3D62F9D2A5549F26C34830897766583A34328AF72E3DFDE0E38F5F78DB17BF38F62B13C75EED1DF1B07AEBE2C527C00BB698F9BCDC377FBE88011CAC983E368015F0E4231634C311BB234311AF7CCEF16104F86AC18D1947996A02474BA562E1A55C6EF6D199CCEC43E38383CF3B86515059D8D96CA5A7A7C7BAFEFAEBFD372A21AB95D3CA05D0ED0494115414C3B3ED70537BFB32C0E3E9D158C3A9E170B84F0B04429CC7339DE6053FD2B0EA34BCC4322D114738E8F60376583185DA120A1CD778B19066C495970E1C203D12F6BE77DF7D67F4170A4FFCE8C61BCDDF2A11E307BCE2C31F6E5C7FCAFABB3AD2E90D3D6D6DD4058BE6FE8CED809993D7AD134CE0E91D3BC5007BA158AE4E38E2411BCFE1154766F3B9FC0BD97C76CBE4F8E44313D3D303BA24956C45295963639565CB96397F6CBEFFFBB0A5EB2FB9441D49240C4B550D39E08712B1E69E542A7546AC21B61181798961841B90F1F24B8AB1CE7018790D88E4DAD5AB4462FAF8935B69CDAA95A2C3EDD0D0100D8C8CD1F0C8F0CF7EFEC4CF2FBDE54B5F9A7835037BCD4C9873022D153BEEA2F32EFA79666A4A5977FC1A4214A73C2FA00D7AC643759C7E9B56C543863895CD6476224979786C72E491FC746E0286539AB5AC72ABAA56DEECEE86DFD74B56DF7CB37AECFEFD413B97334041428148A4A5BDAD6D533C11DF148F275622D96C84B065EE05E509084C59A3C8717AE7F5D0D66DDB29D1D8E47EFFFB776D181B18FAC59D77DE69FD4E5D11FC79DFB5D7A64E5D7FF27FF676F79EEB89C17787AB5E9C5C2E37329D99797A7636F3C8C8F0D863B6696681AB65B50CD4C7E7F5C6EFA345211B376E543AD7AC0918BE6FD87ED9B02998E84DA74F41E0DD9448A5D6823EA7434648D5797A0B7CE4C0C1FD3FFAD9CF1EBDE29B5FFDEAE46BC9E3D7D6091F6A6A9A7D76FB8E8F40A6053418F9ECA307C70E6D934DBFA019360266ACBCACA1C17C23F1FBCDFAD4DEAF5E645EACC5911129167B71D7F0F0B76D2A1BB2ED453BD23D6BE2A9F87A23108AEFDAB1E333CF7B5EE6D7C9E6374ED9BBE1861BD4919191300F5FB506021560A2FD5610F8EFCBB40AEBD7AB915DBB82091C6FDFBEBD84F66BE1F7FF038B84A8764D512D380000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (61,1,'Network_adapter_(128)',0x89504E470D0A1A0A0000000D49484452000000710000008008060000003CB0866C0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00002E2A4944415478DAED7D09901CE775DEEB63EE6367EFC5620102C44512104110342829162959174BB4A8D31669279293942B152B4E4A652B4795CB7139716C9712A75C4AC5A25C8EE492CB2E53A22E8AD64191020F48E22188007110C0E2DC037BCCCE7DF4F499F7FEFEFF9E9EDE99DDC1EE425CCBD34057F7F4F674F7FCDFFFDEFBDEFBDFFF5A721C07BA5D245CBA39CFB9918BF696752FEA1AC093F8DA163F7E7E0FD4CD02A20F3C019C74F8F06149D334A9D168B4201589449C6834EAFCE4273F11600AE01C3FA83D40377E91DAB5693BF0F6EFDF2F57AB5559D7755A954C2623D9B6CDCE9365D929140A0496130A856CFA8C80DA04ECE9D3A71D1FA81EB83D306F2288410051F2E4A5A52505015453A9948212A81A86A122400A7E97BE4F5F711445B151422DDAAAAA6AE16A974A253B1C0E5BB8DA8944C246406D3F983D206F028801006592BE7C3EAFD6EBF5502C160B21406104304C5BCBB254943A5980689AA6851248209A780EDBA2C49A042882686227301148737070D042956BF780BCB920320077EFDEAD94CB6592B83082184150A20852144F89E2DFA3A84A435BB66C498D8C8CA44F9D3A3587A0DAF83713CF31F16F069E6FE0315A75045B4790F5783CAEA3B41AFDFDFD264AA585D7B17BAA750341F40148F64FC966B321029040C3868FE1F1388291C0F3E377DD75D79E23478E7C00017C07821643A02AB55AED32827E1155EFF9CB972F9F7BEDB5D7AE20701A9EDFC0B54E2B825B4769D4F078637A7ADAC46B5A3D69BC39202A1313132AAAC030AAC0081E8EE3B1041295D4030F3CF04BBB76EDFA28DAC6BB56F3191130C45EBB8CD7388FE09E9E9F9F7FF599679EF9091EAB2288F5818181C6E4E4A490C61E901B08A2EC9742FC5B6CCF9E3D63F7DD77DF234343438FA0246EBDD11BA094D6D1364EA17A8D7CFBDBDFFE373FFDE94F5F47E9AD9064A23A36D03EF6A4F166F9891FFBD8C76EDDBA75EB6FA304FE0A97C61B5A90C5967053BCE5965BD2B8EE45750BE7CE9D7BEB8913272E23A8A462F562B1E849620F8A0D0611A5C679E28927AEBCE73DEFF94BF4075F4466BA1FB5EBEDB8EEC6752BAAC312AAC5793C2F8D7F1BF77F1749502E9D4E9B870E1D1AE8EBEB4BA324923402DA42181D1D3D8C1DE22B780D62B60A5E67A5E84F6F592388CC39DFB163878D2A55FFCA57BE720E55DF156CF8EFA1DB40EC34828D1FC5C6275B499F930F3DF4D083B7DD76DB8710D0DACE9D3B637BF7EE1D20CD2CC0F32F684BC788D5E2AAE239B21F40E6A7F454EA9A16B91D2721C79C9C7494361DDB554380AA085809B7455485793C278FC7F30866FEF1C71FFF0602FFF9F7BFFFFD63070E1CE8C3733ADE2C994C8E2824E68E232390B4B2305E4F1A3708442E050E97469B7C39548B3AD92F04B08E6B15F7CBE8BC1751C20AB445108A284095975E7AE902AA51D377AD6537A263488EFA51522748951280789D1E7837491209010A915957AE5CB1D017D4B1C11BE432E05A4377A1867FAFA27AADE296F6EBA87A97705D5CED6628DD1174F893225CD76BFE9B60131D1E43035F7C13C1943883A42080448C9282DB28453285E0F038456334047176DBB66D5B56F11D6D3CD716009234D288480F860D66A7825C04C0640DCD01259629A33A3511481666C3AF58E8CC5F5FED66089A6371B6D393C49F819FE8678A81E08CCD879B48A2BC40368298EB064492C41E91F91981D8413AD94794426F5C903C03DA47D2297501A200BEB7DC646273238B07A612F02DDA315402D10A3A8FBDE50D07D1C30CA553E9421281C61D7BCDBE3941846E4024554A03C6D08B956E4E1069947FB57350933A1CC4DEB2194154568AB7F924B1A74E370988C44E29A38D3353E1867403222337BD66DF6492285C8C763631C850290F47D7F59E246E5675DA8D24D2D268347A92B889D9E9AAD7E27E620FC4CD0A22DAC855A33FBD31DF9F0349EC85DC36BF242A5D485A4F14371B888299D2B6933AF5034BF1EF5E936F6E75DA95B31F3C46D3E17A306C1E17A39B6BF500DBCC20761976EB81B89940A4B09B1F9F2EC36E3D76BA192551C44F8524AE246C3D49DCFC3651E9C2C97778829424D2167BD96E6F2088B95C0EFCA318E427AEF61D1A4F240029FB9B00A494455EC04176FBC1F2A50751179EC106129B6E2236E44F2A24B5E457925B52ABD5141F6B75820CB65B1CFF29AB6A75830094BA61A7DCE1A784639AF31F364D339C4C26EDD1D15129168B51B106A74D299576AE89D3469DFF93057B4D2052430741EC469DD27830CDA6A229E3B8D5E9106592D3FC7EDC375145DB547D8398EFF8F8B823583081CBD324BD7B8B204100EC95F67F6EC1DE284994BB01510EA94935144A217206D95352AB3415808A3350A58D442261A18D148954B608EB51B88E86B108D0F9F9792FDFB51DD8EC477189F64785D600B6D44D70623380BD261083D5A488A4F8C36E9D66452532A9B1DFFFFCFFFCECD4C52BCF1CFBF6334F9E3D7EF22AFE89665CE9B4521215954CA1522AD88694056073B06C5E9DC3A16977B4455B4A9DC0E63EAA07368149DBEBD7AF7B29242B811D94EE7F8C60AF591207060680BB0752B7EA947E6A381AC9ECDABFEFC3BBEED8F7A17C76E9D5D75F3DF59D27BFF4E563A66136687E07CDB9A1B91D5C126D0E94B792A4123054EC88C0E5603340E933DD85B608362B9044600B80E973106CAA84E5071BED339B292D8219ABA8F2950076D602F65A00DF3075DA15B1692DF327F50F0F1E7ACBBBEF3F74E41DFFACDAA8379674BD91D7353DDFA8D773F56A2D5FAB54974AF9622E7B7D7E69F6EAF4D2CCA5AB45028F0023C96C07B6D8A254B31958FC7C06321DE3E73A624B924D80D5EBF516A9A66B7020DB824D3F81A4BB4BB03784A4750277CD208ABA6E5C457565133B75B0645C49A493F1846E24B6AF9495EAD894B6AA178D8651D01B8D7C436B10E0F97AA596AB96CB4B85A5422E3B37BF74EDFCA56C6E214B6ADAE260DB7EB071B5C4BE00960010C7489251E21D21E97EB0B9647BF69A16BF840BB083767B9D608B213FA91D98EB92443E9D516208762589ED7B58320A50D600E2F89B54B5B3D271C009196678A86184877433B9E2ADA8568EDED00B0DBD5168D4B5BCC65692F06AAE522CE70AD95C363B33B73475FE724EABD56922AD25C0E624CA0FBA50E56C46985F9AC96ED3223EC7E3714F8D8B63026CFAEC276968B76125BB2D085AB0C82161E9077243D429DEB44B9BE87432954073AA54FE34944AA59B12E8E87898768B0686109E130939908CD9EC731B1DC16EA39B10AB47C2B19011DA124B25DC9C575CE91FDBF295CE360DA38280E7097426E10838AE4BF50A015E5A2A2DE697B2D373D9F94B53059EC1EED96841C2FCAB005BD8E74E242D954A79242DC8C8695FB85C082ED550B07D75F1C00FE4BA41E4315039183B6DCB5057B84E2C02902DB9A010A0E11095B15A493225EF9A0818028EA09B0E580EFB71A0A2F60AE135FA930EEF3C049EA8D309DEBE6E81546BA8A99A2AA5D468787B0C124190BD0E40D28A20164DDD28182EE868C31B39B2E15AB9B6542B96974AD97C3677EDFA526E7ABE4CE005557980A40955EE27696C9F16E17251CDBC52A964901BB67FFF7E9357ABB405906B0251D49F11B3C34912974D6DD31BD845425DC1480D2473553B9CB6974F41C5CF94FCEF020560F8EA35D0D7C2686242AA0DF1A88B8C2B5F4D20B8F162583650CC35DD819A4133B4F0BE08762C2CC16052C667F09DCB358700116933543449A9369C014D9507D45818225CB23D29F7836E590DC3308B28E57902DC6C1839025CAFD5738D4A7DA95EAC646BD9C252FECAF56CAD506E70156BF96C367518132550273F1A9B97D87B239BCDD2B47B43A858026043D4693A9D0EFB1995FD0F8FC3993FFF13D8FAC56F40A27FA0E95F5635B8FED269B7A1E947DB6E635FC2BF1D7EE7ED148DC33F49902D2E5793E4851258C9189E611B1046C177420A361E070C5C901C0202C58CA4B2866069B835AD26A0AAE2A03A96A03F2EA1C44BAE7A751FA809B80FB82A01DEB0B0E358105565946C0542B2CAD532B7D4BEFB9BF83C153CBF548308F6BB9150481E5110703A271E906CF13DCBB4AAE8621550C2F3885C8E0047E0B366BDB188FBF38D62E5EACCB3275F23C062B198532C165BEAC66E048812B22BB505C4A3DF85F3B91C68278FC39DF7BFCB3B8EC402CE9F3CD396426FD91E87D8C49E65C7B5A512E8150DEAA532D44A1528E58AB07DDB3678F8E187C1B02D383A791C0133D08E62C334708B2BEA24D88BE7C45306D48D0A93F2A684491E48B44A4C1DDB80D406EA0D5C719FF2B95CED80F617A5341595B00385B8491740B892CA3A0D016153A7B1F07E16AA741B327115C6FA428290B91DCC073675BE72C384625D8792632764494DA82165AB021108E10911DE39E95E966E5C9DFAC1AB1F207FD81D0CB22C9446EB8E3BEE90BEFCE52FAF1B44A99D241A03C37009FBCAFECC402B20750D161616DABA1ED3578660DBE0045E2CDAEC0C8609D78EBF0E954A05A8361CBB86A6C1DBEFBF9F7C53B60EEA613875F21C94F345169BC51F0A478E1C81BBF7DECDAEFBCDD32FA01AAC2D53777EA243F693A43315936190CFD013E780D40A00815547B0AA9A0955943852CFA204500425351E91211956017BB57B2F57BFB37B09F54C0774CB041AF7194C8660241581785886B3D78B50C16B2F9354E441B89FC0363648A5E2A25329EFC5C5457BADC446F2FB8964179106B7183FF9D77F137647D3B0F3CE43CBD829357C3B498C67FAA08252660F87BCC75ABC761D88861380040E81843F00F00734C735E716E1CAE425EF18CD261F1E1EF69CE689BE113853BF0C34A3CE421D379A1AC0863750CD1AA03B24A93A546C93195726551263DB148662FB7E364B5B7A74B2A151047B3CA682A27289F4C89C50CF781D5C3594ECB266408940C7ADC5AF1346F69688A848DE1446E22A28953B8793F0FA5C1134B4D77E105D0F468A51E935AAF89C4C2665CE4BD8CFDC109B4820FA81896CDB011FF8EDDF650DEA9FC9164F24E0F637ED67DD8092E324D257B812B0E9FE34FE10044AF46CFC5F2995209FCF031A7822530C4892C4EF7CE73BF0E637BF19094A035E78E105989F9F67F7A273086434FA80EA86DDB3AAD799EA9A7CE904FCF1A77E0F32990C68780E9DA7690DB65F4735BF84EA3F972F40B1886BA10CF972012AA848E474AC85AD92AA2CD51D28D47C8D1C906CBF248554042BACC000AAD7AD992853D1B65F3AC1ED18D7F255EC6031D8379682533379B49376D325C236A4A13BE230BCB0211B442F97CBD28639FB54E0B62BB0F12187F76E877653148BA82D15B555DE07C6474041212FA33A8D25623030360C7D83FD3032B105BE7EECFB90CF2EC1E5CB973D004982B043B1C8C79D77DE09B1910C4C1516A041602D16A1BFBF9F9D8744C2954C5E44901A2B1E4F808C0F904AA66068C805F7E4E957A114D2E02DB7BD0CD34B5B6034338F6E5006F2F501B8E79697E0DBA7DECDA4752510C946D690522F94ED4E7E2A122509F66FED838B8B6518EF8BC1FEF10C9C98CA21B1F24064C9D93CCB5EDA90B01B893235986FA8476D5591244D15F2FE5ABF87DE7BAD5C62AC54781BCCECE05777DF31025174161D9250D7FF81445F1AEE7DF01D502D965D12426A0EED4E241187F04002CDA70C5BF7EE6464268220D31A45C73E3D32003FCE5DC49E21713B66F36AE3E4AA2070B60B9E6909206D0F50D36E821B0945A151AFC2973F1FC17B177045A934AB90DC958657FE2A06E30F192047958E7E6537924AE793CABDBA5441C61CC64E5783AD08E481890C1CBFBAC4B488ED26098A526A2CAD85F679986E7DB153715114F11662639AFF1526279F839D3BBFD74A6C2A35983A3D09BE6AC72E38B88DA07DB8F32DBB215F459B29BB7F0B45C29042C9431103AD5A734B5BF17239040C81B6EF6D87A1389FC5E7B118C8C41674B4790ADA3C99E20F928F9458EDC0B39BC74C77F5FE6EBBD223AB2A3144501321B0909C017F061BEF018E2C6640C3C307BF0A7FF7E203B067F42AF4850AF0A3F95F80470E7E131E7BE97E6884920110ED16D0E74B7548A38DA5D8C07C196D37AA710275A1525F75FAC386D8442A42DBFA169AE791904C23C1B80A89C476DF38A4CE6C1C1FE1F7C064405E08C39E7BF6415FC2419B23F19E6A337BA8A03F188987583446418751417029B58ABA50241985A49D816AA1C2CE97149256B72308B26133BB23FBC013009A2DC7FC52E8DA73B7D165BCBF59D3B0B722D9A1A84348E19AC504351EE6F700F8F33F40B7E640018E4F26A071A50EA9076CF8DC1F6D07755705427BE3AB4A2AB1D37D6369269513193772C457BBCDC8D19A63A76D23D828898CD8085B572E8F41363B836A76B82535A35AAD3010FD6139B11DDBB51D1617F0E1B7A6508DE1B90D0719601E8E7EFD09B47D16DCF7813DA0A66FE7748C98A4C4293B7622944872CC2D6C54925402D9619DC4E614DF66AE825FE24C04B0450A03AB897FB3714B4FB7E39E04DCBBF7021C3D3D01EF7AF8247CFDE401F877BF3F03DF3875273484445147C4CE6353488940B65C29069AF16736D9A664A10DAC5B10AA59300627D8B14A3809672FA4C040DB7D7431C79E6F52B261FB4ED44EBB90816717C66AE3DAE8DC5C7CDE3F14B6A1A31888618B24C662BF07070F9E4570132DD58715240E44FFC5B9B4652BAAC1ED7B6E4567BE0CD9541CB60CC9E88BD10926A007E0465A220AE4AF3D0FC78FE6E04DF72661E8D65DF0DCE36750D34AF0C17F7F088E7EF71C540A26BCE9FEAD60A2245F3C5D81E12DE8FBDD7617A3F5BA6E0680B29701B70C5052A7B8169571385F30E0F06DE7E19BAFBF1F3E71DF57E00B2F7C901973BF3D0CC75141D8E846E0EF8C8675F637352AA1ABA1BBEA13EF39FE7ADDEBD49A8A92AC5A104F9540BB80BF157F2CF9C6266E4D5387BEED2A346690D8CD1563998C3E82206EAC3AF5B324EC192D7E622C760076EDBA7D59F9E80C128E83A36F71A3456ECCD5753764D7AEB0864595369B03D83A08681F4D74035CE956D12F730CB7032A248996C6EC94125518D8F57C19EA450B54055D1154ADD98BF3D09F0CB3D01849485D36E187C78EC1C14387DA4AA067137D00D7EA3532C20C8C579F97E0F9330023BF6CC29FFECE56481E5A84E88E61D404360F06D8F00B0F47F0E11AF0D3ABE3F02F7EF515F8EB1FD970E747558884EBF0D215C7B39D622B4276E1B802F1FBB682B65080A5A75FE5E7A069080FAF36867063A318FE445EEE7C021FE42417A3AB0161C6446560B6865A971A8B879AB1C78619F3A413E8C86CCE81F181348CEEBE9549ABA18EE2F9B3EEB3C81402733B483842D79640E7F51C94103092E3AA5DD96576F8A87BDE76081E7DFC6F00BEF4FF20AC8671551170B125A75D659A820523B053915B32EF94A02F3CC1AE411D8124C9E19A8C6CA3CDD53581FC6B87BE057FFFE27D904AE9F0E103CFC0177FF84EF8F5BBBF075F3B7E04C6320578F7CE97E1BB9387BD8E4D40298A052CA3043BA53C1C05D043F83B6ABEA8C972EB45A1371A67F48F126D48D82D38C1F445FB55786DE135F8F8E0C75A40ACA2137DEDD2E5B6C354B71EDE077BF60D43282A7146491D270CEFFAF05B6036EF36989C1C81B17D699052193010C4787F1AD9AB82143D44A974108A21D810475B56E060CB9EBA23BBB9FBFEBB513D8B8002D93C02C062FE588380771CD75E1A0D90871404649C45DED935F86C76EA78449E48EDF9FDBEBFF8C30908EDAE402519812F3D360CE1771AF0579FD90ED2780DF24A14CE5C4C01BCD36E91C4701819B564FB094C9BD417C71B67F567DC6F283B25B5AA282D6E3A7CC67A14CE3CF723F8F003EF835838EE3B17ED4BB1D802AC90E8D9CBB330B2EF56A4B0762B83F3EDF7EF3908877F518192E636C4965B6FF702CAEFFBE4B8C7F606C776C2C4418B911CD6E0226EE9A03421C8FE007833301E1CB672D0416F405933DDC8CB701A7EE7BF5F812FBC7237BCEB372CA8A2949ECA8E7A207ACC55E52E108D1D23F024BD80F69C85E66C975C793E25B7B9326D25B76305B525954937CD96A40867436D2245475CB5D00A62AE9203E952036D5ADE03911E9A0014EC340862667C1006E226AAC3101F69E083B76CEB128899BC090DDD81A5B2E532CF8EE3797CD097A93BCB07A2EF7CE81C10A7607405C19BE88FB05106A63910882FBCF211F6F797B2772FEB640C44028EFB908ED954C136762499016BB4A8532235B49ABEFB2FCB78F049A24903A04D1EB2AEF40C29406E5A6C223DCC7B2B6F851F360AB06D68BBD7F368ABA2BDA1D86570E49F801CDDB91D2E5E2D4112ED20C8F2326778B4CF3D66D8126886B5620424088AF03919B860AF1A51D99289A3F3ADA1A710855B0663BEB8A9507B6E07B17DD7D9FDAF3210891A70FC5A063EF85003BE752A0EE36F4AC3505F197E383904FFFC13E7E1B34F875AD4A9B7DF499DB6263DFA4BB0391BAA4EF9455B88CD7FDAF61FA0F69F7F7319B1A1E8CB6D9983AE6E90DD20B8FBA23F0968A45C6FE8CCDF93FDF1480E8A0818B700D0E23CDB1D41B9D1B098B8978E36F35AAEDA1C3B142145109FDD510FA67A2B23EE60B764C1175F3CCC1058AC22C59E1F64E31A8FBEF066D8351283696BDE93440F48DACA6DD4298D84C80EF8FCFAB67671DD7E2267A8CBAE1309455A5C0CD7D70B811C8DF9EC0F1FAB638D21B1C80C7000838D4C12E4B241C99382B5C62AFD929A8EC9B073380EA5BAE13D4B5973FD3AEA50BACF515FE97ACBEF6F2F3B7FCF50B245123D8914DFB79D8E8228C6B5DBC1B02610E9A5243C555138FC6AD78A589678969A2F024E36056D493811F55225828D826D8CEE806BEB260654CFCED1583725A035B0B11B68321AA6C5B676D7EA5386AB4B3536921043AB908854F14808768F243C8DD01E447B15F5BD1CE4172E5C87411FB1310C8E8B50CDABE715DFBCD86937E54FC8EEC5D329903331F76145EC546A4AA24C44C0C70EFD8D52AC5928351236B8DED28832AA1A1A21271008E4041210B2BD1248CB1AD9937A5F434791C44C2DD5219D0CC3B9B9321C88FF18669786201BD9C1CE73A37B360CCC18F08B078E80862E4A436F604731403770DF32597A0805DD75DB642923061E2317281FD1A1A8369F5772EC166223A4D1E123152BC5B95926084F67E45310D60EE2E1C387617A7ADA2F5B1DE726D26C621A951F1919610F9B8E2461283386042002D1481842E110A8219581C7868788823B96375C445B133FE72A45B8B63407B70C4558B2940706A7B00DB45D86E94A23A54E30A9B4289BCD6E2329765B491948845843BEF0DD3EA484E883DEEB9EFF4BB78FC054AE06DA74010607871038044B3758609EB6F499EDB3CFBA6F1F55476E11F2C3F63297427CD634873D63C46E76AA15C68D8282B3B1C9C37E17E3A9A79E82A79F7E1ACE9E3D0BD96C161E79E411F8F8C73FEEFA5AE8A7F5A90994A824A4532948A7DD6D145D959596333397E04AF63A6EEB6DD51745EF284F46C51DB2CEA416491A559E72E16FA0767E21B3E18AEBC690583B66D34E118067AF1760B4AEB34C009D836470009BFBFAB2E3A661B6A872913E229E9F4ABF325783464CD466F4CABF18868282207B19201B4A6C04A9E13651F18378ECD8317F76B8A73ED63CB74B024F7D0E26E721112D40C388A0D39F844C7C09E68BC38C81536A62B11E654356E463774774EC964E914042D917AE42D6F1AB3A874579EA8D860792C125AF55125B259456DB47C21CDB0EB818867B7DAE1ADBCD72A0691E7E76BAE136D1C74E15FF905320C57F9963BFA64168DE1069750EC613D7507AEB7071FE5678E8F037E1B9D7DF0683E92CEC1D9B84EF9F7D3BBC77FFF7E1E2E24E98CE8DC13BEF780E1E7BE541B863CB0558280D40AE9686172F1DE029890EF44555484654E6E093B0E4FBC6616BE6222C5C729399689484CEA5118D8627897A1B490C4AA5C986BB6C9F6B044E6BC406DD7720C15AA9A2B670F689438A574CFA1C7D67A3D4A9C74EE7E6E6E0C2850B4155EB8128AF1944C99394333F1E81130B512FAFE6C77FFF21376FC64AE1761BFE5A0B9E0EDF8F861A1B11BFF97CFF11C8974A70868208129210BB0095E4120CDF320C776C4DA19AAEC26259435B2BA39447201D1D42691E80DBC688119BF0FA5CC14B91A0BC9B16E96B914AB1AF7BFB486FF07B6A331A132036BAEEFA8621610B9D769E801B765B89B2AE09443E8A21F9FD44CA27FDE4273FC9EC60BBB976EB9928CB5E1BC7D592971F639A2D5B6F453B53AB348F2D5CA586A8C194EFFC91B795C1DA3E8864A9CAD20F1391182C551AC84E0B2C2AD3D60F44E24499762D6A73159B68C824897213C4803AA5E7A1510C21892BCD5EF199F49BE262B0D7BA3FF1C413303333D38EF4B426E3AE439DF2492DCB81EB006A27A0C9FD20264CCFA3C80A9C9E2DAE12D1713B902B891D6C621BA934C30462C817175DAE4E9927BBCE17146C143B55FCD96F9D6C62A773BA50D84D495C05B8E0DF82C728BB92C27D6EF407BC01DDD562AF64133D761A20349EF4055C0E907C4101E20481488DE304406C133B153691116D9F9FB8AE0078A08C97C4552625B5AE0A6277D5343BA9531E84E66AE846A59156029081288337B26E0702D9ED40741BDD6AB1897EF05A196993F4A88ADCEADEF8888D7B7F97D8ACA4A182B1D39B369E48F5BF2931772510DD0C3758973AF5DB921B95460AEF0A1065CA7C739AE911761BF5B91C44A7C526FAC1333878415B198D84DABD1BC4DB8A6A2FA12ED4A924DD049BE8CFB121497CF0C107E1C48913F0B5AF7DADBD4D84B54B2240D34F5C8B1A250069ECD393447A85BC6D7BD3DA82A0B58BE82C8DCA50AA5CF55C051A85B1C3540EC41DBC64017EFCA7D80A441D3778511E50789685E3C55CFC111BF7F95670319CB6AEC0C6B05331B9548C278AA9DE9FFEF4A7E1E4C99370F1E2C5F6EA74ED3E4C539DB6CB505B014CBF04D24A6052C71244C371BA1BBA32FB43A065D4AE4749FCCBFD1353E8DD38F083AB132D138AE819C9DE356D22AC949ED1CE4F5C9F2426120936294548A2202E74BC9D8BC1D4C83AF4A90822075D8C95546B1040B1123F351D87FB9FD05E7DAE3AC8DC99CD0697579F1F82480149CC1D2C4717F8E80FD05C51C22F1DF0235AC36E32046A3FB19834D511DAE81C1BC517986DAB4EED75446C5AFC44CBEECA8DA0FBFAA5CF0FA28E84C360EA940F57AD004A47A2234272D03EB5A2C50ED2F09BE566BD0B75DE92D940F9C60BE88E941C88C4922C699956EA0F3E67DFFFFADF96FA7AEBB289C22EFA2B677CF6B39F650CAE542AB19C9A542AE5D9C4BAAE41B15204DD6E40DDD0A05C2F43AE5C801002EF0887D7372153FCD0A546D9231FBBEF0FC3C7DFFA321C3B7700A26A036E199E81174EDF0607775C822B7303309BCDC03B0E9E83678EEF81BE440346FB7370E2FC76B873F714BC36B90386FAB2F0E3D9012F966BB7952CFB86079957A68F1264523A50553A92C4606796EB36845FAF80D330219D1905BDA1A1F469E0E8A879A212035200D8EE5EEB96C476C5F9D87CC3749AA956C12649F55E39770E644562C69CFD104914667135ADC3E7D00B3A66E1556B7D0A6871C90371AE3A087F79ECA3D0301550B00B4F166E81453D0DF5990C0B7A17C371385B4026991EC55FA7413C1C027D28054A3FDAC1510562831AD472A8FA3D9BD8F413EFDE7E0D5E46BB25001D4E9561A91A039ACF7923EA33B854C623F0F6FB66E1DC0F86A13A1201CD74E7460E1FDCCBFE3ED3C84005EF65291460AF8213C3C64828702E07B0674887F02D7DD72EFD40BB40C2C1D5F1BA6CE2B2BA1628D65237056B09E7F1B76E013B24C1A545AD6DFA026D6954E2E4DF9E67DFB9F3A17E5878AE08D5820D3BDF9681FA6C01E6269110DE1B87E2C06E76FE5CA9CF05B798F6AE3795CF78D7FBE9F436B69D5C1862C74ECD8E791D42729A3381A9B3A5179740C90F82DE1761DFB92775195E5E1A8759C5BDDEE19119D89A2CC25727F7BADF4756FADF1E38067FF0ADB78215769BA03FA2C1BF3CF21AFCD9B3F778C9BF5471E72F9EBB0B7B3732D6BDAE05A45E9F8309AF7DC404CF58809C524B188BA5B3857CB1447E651040D6B66BA6FC7CBA376E956EAA49D981A426BF8A6AC9F6720CB034770D5110BBA6838DFBC4D2684BC515C0B19AA3E1BEB579CC5975B56C1FEDE7DF79F11F06402AE9DEF59EFBFA08942E49DEE7B3AFF4C18FFE76D8B37F3439E6D13FDC0FD1623342ADCD29F0D8677683BA916F18C4A6325DC3D8367F435E0F8082C80875BA62257EAE783A8127C0F587EC4361242C3ADF57512D8B3F29525740F9AFDB1E6CBB55230406846DCAFAB69AD732E9575ABEA034CF0A977C6F13B4797796ADEEE2C413FD65B877E775B6FFEEDBAF423AEAFEE08F1C3A1F1CD6776E4AC48666B4F1E27CEA4AAE8137A2ED01D99938D48C1028A9287BE4BA85CA057F94A2A28D934360C85190930EE872A409528088AC94FDB6ECEF5EA2B17B6CFB5D352823E9BBE0B865C4124326441326E41C5E650A3B4F326100D58572F8FCC850144989D404D1E19645EE5210F52909F4497C884180EC4B61883674A825155838868C9AF277522AF846F43766643F58B0B6DBAAC3B68890F80A0EEC19F34DBCB485B4C661EC13135EC31EF9B566CD98E12D4D50C60369F8D466B1900CAF5C5BF246283AFB75764BB2AEF01317B7F4BB89C179F7EFFABE308C0DD6C1BEE89E571B0AC3FB3E3605E79E19F17ED7CE5FA941AE6E416EDACD7437E20A7CF0772FC3DF1DBF03B4DAEACD5BABA8B078053B2BBA7DD72F25C04862F3A624B87C320DCA5E6F9CD1EB12542564439287FD056B837EE24AEAD4F69C76076EDB9280D7AF9759350AA24B32CF7C9324CE07587EB1C346D6E9DB34A02CF1CFF41B583932F685A6C4E56B261C9CE88797AF2C76E5BC8B6C3BF1B7A95CAA4552670A09982EF8E692E0B9FFFB99C32DBFEB990BDB5A7F279EF37F5EB8BB7B73272497D4366512584D952C79D96F8E2785EDDC0C75BD36B15B4914F92A74FB215411D70B75D8B7250E352400A6C3E7CEDBEE280545534CF699EAB8D96CD692C55201DD73280B8E9C7536A2E153C54389082B9670F7F641D00C93D7796BDA62F0CDD50006BA067DB1B04F52BB73DE3772D1E3323CF4AF2FC3E74E1E82E1031A6C1F2FC377666F85C3EF5F849325192E37186FF5575FDCD800385FE4E0849AB6510B8A4270890C618F2BD7A92A930DE7660AE5D2F5C59F38549D5F42F7163172887EDA0EBA9336AB2E4C8507589150B638B61BD140000D53B64C53B10D33641B56F8EEF7A61EAA9AFB54C907942BFDF6B2BC5396AF130D33C96E67537F568B9150E11B337B99145E0CF5A3AB9464483D57DD0E9AAD8AC6B6FD111B962FEB7B65E14638FB8CDC74359404CD6A4A24599480AB55AA333FFCDC573F879728238DAE51354104DC6CD3F3BC6A1D7C103A84E75395A524229BC6F3FBDEF51BBB3EF4AD99109C2EA49A0173D608C1510AC903D6AD23E356E320126805BC6167C58EBC96CE2F1C6E5E630EB7B38524F31B754361AB8CCF51A845DC84797606F84B5BAF3F00EE2F9349DB582C16F2CF22EE54895FCC3960CA4D7233C069C20AAAD12A01887F2F2020553C5743D66B8A22AF6D427DA2CA71183771AA41CADFDD18A6A3BF7AEBE596C615710851EE84FA1B4DE2A2D4FF90AA30151D8BB8B3954E9D99823DBBB7B47CCF304CCEC4D5B69FC5CBCAFDF769F799EE4BFB745C519935878211B67EEBB72E7CE98FFFD7818FECEAAFA504C92293A1F0E9F074BFABD5F43DFFF6AB5EB5E38DB189BEE88D944824C2DD04B6C5D81D4BF6A5A2128AC4EC16625045C9AB202015C3302AE17058C3AD210AB00741A497A150692C64C911165BA662AB9214C6BFC5B8F96B791C31EBC33D26F932C75D1222B27259DD00BB39D0D29C2D22054255AD9FFDE7AFF69967EA36B31C6C4A12D76A06AA0547E25574C533B9A2C24AA791CEF0D527671A4A14225A73D8CD5F9C2F1E8F87BBB4A1EEB4EB905B679432552B1ACB2F2913D306720B2DAB8E0FAAE1D6E09578DB82C8CB6359FC7908402A49413598514CE5161DE80AA92B81D82F9AC363923BB187B15C56C58333626E19C4F71445F27D769379FD9F852159ED336513A8B6E3C1CB6C317B0C494783E4B0729EEE708DCBC0F93F22E7EEA086C54A48337E200CFE7AD4A96F3614D53A0D7527892E9027A64A6CBB6D200A0D83CDE22D1308F8701A5E8B9581ECEBEB33272727DB4529241EAF2549A420BB8A42ABE1FD09FC1AABF4AEAA2D2A9DD4176A6077B28AC381C01E24B3A974EEFC48AACC418D8C9601441EB4F89EC2BD76851F9779D4487C16230C4DF5D9F9334D3DE73509DD67D099545551DA6C9A76C03A3AE5E550E173EA74345D9D812D99D8E6067FF98B1DAC30B5661743D8C4643219EE16C48A6EC09E9184AB52F12B949C8BFB05BC1695806CA01D3432990C01288AA507B905BB27824CB92CD89F4C9D6C28FE40FA7E98F84A38A480BF849DCCC7EE1C1FABA04E48BD9D0023154A937A14FC1C45B61A8EA8ADDF53E5960C052199DE67F177DE062B7D569137DB6CAC536653F9B83014512A2C7A16367F1F9FC3E41A82D94E99892BBDF445A797BFF8405C93244AC1B1445E88A82B10D1F6D997AF178B0EABB5C422D8D4DF90A45A57F1A1EAA9548A401412E849A1DF8A8BFB5021F31D3B76905EA51FD720564BF341A8685428AC8482895AC1F40752B934A193351063CB0ADB8FA1CF18E625BFBCEFF9BEC37E87202A4A33012C9810D6E9336B7B8AFB4A8E5B7645614465114135D53081C8553B57A704B66AB1CF06B633692953D3346B6464C46E42D16521F70E356C245EC326D4295EDA728DBA397FF48FFEFA3FD2080C315162A444666AB55A1DC9113E9B66F4F7F75BD3D3D36D010C6AE62B57AE58E3E3E3448064EEAB3AD30BD2E7A64B521F36169A1F47C67E26B32C3B9907FADDD9AD2462542D47C2F6215BA410AFA036B7CC7462EA9CA4F1BB9018882092E4824E294FB2FB994DC526A3EDBEBF13DC1A3D789C74A0C3ADAC24A88D6BFDDC4E830CC5ED3FA58A9DC5A3F32F1E2F3F36BB35F4269BA12789EEEA9084CA6AC8999D6B7C97340E9A1183D8B8EF3D19EB4B94E2953318885DA953D7612502432E0563A3A406518A3452A30820BD2AC05A0940476468F1F74620A9B2CAE5B24ECF423DF4539FBAF067A856A9D49C424364FEEC83761AC55FA63578DE4ADFEBF0F76ECE69FBF7CFFFC9C92FF9B3D944457EFC0D0699197CCE0681481D1DA5B0A5A36F48CAA2A8EBD64594836E4CBD9C98649D93110DA550C787B2666767AD26FFE97C310E24DB27DBB97BF76E9AC84AE36D1612231AC7A1D7F9C99C394B1D1A7B59F87035803A5D6735A0D6704DEFE526D8B604A449EF97ACD7EB06113EFE4E8C968EBEEE917D51617135101D377046EF4DA4F7F210213168E5E07944A69B3796F980B41148F683114C0B7B2AD36DF48A09961651A948DDC68057EBAC9D92A357BAC66AD7EFF47791A65F2A95D81B6AA8830E0D0D59E2A52641D67EA3202E1B590E56585C0944C9A5CA1452A397761029E948626E0048C6E43921620685A6A4AFE5ADE1C161B61B1D0C6803C64A51AF1587ED08C4818101EF5D513E15BAACADD6A44E45F887AE458588BA697B1EC8A67723128016F5B2D1D151BB1B15DA25909E27ED8F66DCA066B959CB5AEEE3B451B16D3BFA0D8328C23EFC9D46961BDB76A00B864A2A82D429A3C9A42678247E5D4306ED5C907568964DBD74EAE8F20DFE6056A6116D0D039054E3638F3DF63CDAB5852EBE4FAFB6130E2B51481B7D4367A37FE4CFF3D251B06EB407F0F7FA11082C8A303F3F5F78F6D967BFB5D24449CAD442576016A54FC77D83D4295DE7E8D1A36B56A5BD656D92C8F0240241AA90A207447D2962F2E8A38F3E71E1C2856B9DBE8436EA124AECFF20D0290088805AE8ACDBBDE6FF1983E88877E8B88C9422EA268D369074A19F567EEAA9A79EA4B979C105C12AA1C4FDDF8585058AD4344882F90B22ED7F6C36E9E74512199E48486CB48BA4520DEEF3351E7FFCF167A7A6A6B24135FACA2BAF3C8F20BE4C00A20A35F0BB26455AD6C34A7BCB3AD9A950A9E81ED05B3689A490F8D14B1AF560DA00CD1DC866B31728E5023FB237712233B51717179D9E14BE4120FA63975C255A7C00974560A4361C9FC6092952432B1122C797F4D393C2375012854AA5883A49178DEBD150892206DB7CBE221FEF63FE21C5027DB6B007E01B6813D942E12062993C1F46E7ABD4C6E1AF92DD24B06940935707EC01B809402449642A95FB8B345CA251265AB0DA30E5D008564AA0F7F5F5F558E91BAD4E855DA4F7BDD3C841A1502049D490AD2E3DF9E493FF05C1DD826A7510418B534E68A954BA8C524BAA9688CD8647697A8B9B3F7AE35F92C46835281313132AFA893422154530C3681FC3B8CF249C480F014892480950434343061FF8B57BA4E68D25367E8243AE8649AF8345D781D42B0D3351AE0C0391D828B98B08A08112D832A0D95BDE60490C4823CB3647D52AA3447AA3EA740E85E7C86EA21D6C19D0EC49E12601D1072408200F1F3E2C0507637DD2E7F4FCC34D08621B20FDDB16BFD24F8C7ACDBEC9406C03664756DB6BEE9BB3FC7FDA8DE87B9701D93C0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (62,1,'Network_adapter_(24)',0x89504E470D0A1A0A0000000D49484452000000150000001808060000001589B6480000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000003E94944415438CBAD944D685C5514C7FFE7DEF7DE4C3A9949DF74A6934CD298DAAAA5A895A86870D1550971212E8442A1455CC44DD1853B5DB8D49DB871AD3B2952908ABAB02841A148E807384D6D12F23D9D2699CFF7FDDE7DF7B8686B9BD685A4FD6F2E5C2EBF7BFEE71CFE06338388E4C8C888A5B526DBB655AD564B9899B14B194424A6A7A79FAF542A9F5896B55F2975657474F45300BD5D4301703E9F0FB7B6B62E4C4C4C7C343E3EFE8110628688BE6766BD2B28333311CD974AA5FAD4D4D4BB866108D33407F01832008099F5F0F0704A440C004AA9F4B1A1F724A534981949923C51A80400ADB57EE2D0288AE4D8D89845440A80BED3A1FFBF623BA042080900232F3CFBF199D1F78EB45BFECD5EBBBDBABEB0B0542C16BB524A4D446C9AA6164270369BD5994C866BB59A06C0003433F3233D8DC31005BB70F4C88BE5A3CC006B0DC609442A515D27F08330709324EE3A5EB0EDF8C1A61744F5438D37E663DF5B755ACD39225AF8179AA62909C0085C07F3576AD06A186B2B6D50ACB1B6B48C63C75F3306FB7205AFE515DAE45773650B725F0E03AC70E0B90A944EF0EB9F372F97CBE5E33B2A85605366236CACAEA174B084FE721E8EE3A2FAF23358585DC1DBA7DEC7DF0B8BB87AE15B58A31622222449083BEB616D29C1587EB37AEDE19EB214B21300A6618204A3FAD45E346E69A469824CFF00BEFAF96B701C62DFB14144690C3372A084403EACA3D38E7120D7CE3D3228934C6959165E3A3E81FE8A8D9835F60EF6C38F1348A580BC819CC8E0563384DDDE8B9643D8C838E88B6344A902985908717F505A6B9A999919D8D8D8C0A9D367F0FAABAF6079BB8E6FCE7F89A0B70D278C9019AC222E15E0B53C5464194DB78B68B30B27D7834AADFF5EA966B369121148883B1F3163E57A0F9B0BB7D16C3631FE4E05DBC247C771D059BE8C56A783DE10C3F703686D80E8CE2EEF804E4E4E46AEEBE2FAAD392C5D5C437DAB016B8430542DA04A36CCB289C4F7E09A213A0763246C42A48CAEB31F9A251A9E76A594F7ED3333158B452A168BDCE85CA2BAD34014B9B0AB152456159B8E07C31008C308611482B4860186675AD818781A765F80956EA10EDCDE59291149A514672DD02F3F5C7A2B88A215AFD932CE9E2E9F3B71A4FF90E6147EA5079206384D414280B58B762455BFA969AB4DC5CFBF7BC0BED69A841086D65ACF5E5D3AD798FBEBB71BBFDF700198E2CC9B17950A24B3A6AC340409C9CC244810484A5209771922DB67E86B43434389F1701868ADF54F5F9CFF707171D1BD1BE0C9F4C91FCF1E3E7C5828A5E8E1F70FDE552A15353B3B7B1FBA67CF9E647979F98F344D4B4110B8F752E9EE99EC2AFAD6D7D795E338977CDFCFDBB6AD9E489E327342449FDD73F538D07F00057E13BF79D7B3C90000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (63,1,'Network_adapter_(48)',0x89504E470D0A1A0A0000000D494844520000002A000000300806000000678EE8A60000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000B8C4944415458C3CD59EB8B5CF5197ECF75AEBB337BC98EBBD99B9AA44A62BC8434511052A52136D45602A5D882D00FA508F6435BFBAD1FFC0B841268FBA1885F425B8494122B2DC5D605C536AED6DD1AB3C9C6ECFD32B3BB337366CEFDF2EBF39E995927C96CF2417133F0E35CE6CC9CE7F7BECFFBBCCFEF1C490841AD8F840F6F9A833FA23948B45FB80B1FA9757F60940F1E3CA8AEAEAE26354D4BF2B94422E1BBAEEBADAFAFFB380C706DB4AB4019E4F0F0704251943CF60B274F9EFC662693E9595858989E9C9CFCD4F3BC2D8CF2C6C68685EBC35D01CAE3C489134A3A9D2E1C3D7AF4277D7D7D2F209223AD0B7CDFAF856178F1FCF9F32FCFCDCD5DC2707783066A6B676464248DA82D148BC5BF388E93191C1C3C91CBE594C3870FF767B3D9A79697979F5A5A5A9AC5A55E8BB75F29508E0ED21D01C4028EFF58A954DE4444F7BCF4D24B5BA0C0CFC051027002F0716CD5B642FBEA23CA4502B01C292E1A17E997A6A6A62E3DFFFCF3ED8AC0939276AB98B653DFE41D4737445105A87E834FB5E8184591D84DA07287730C56747575A90D596D7C5050E16EEAA8BCD317C96452B9E95474570245A5ABEDC708E8DD079453AFEBFA0D40C1D1BB33A2A9544A692BB4BB33A2FC414495F606B49B7D7E47A0B22C0B44F486D40741C0D9977655F03B7E81CF4D403570375D2814AC43870EC9500501C322DADA69FBFE976E0BD5DBC893D67E3C70DFF0371E7DF2D8BF3F9C78FF13B8281B4DC11F1B1B0BD05643D8C2C0B2AC005BDE8FF0DB68FFFEFD6C13C59735A18E4039C548FF0D3ADA3F3CF8E8F75FFCD11FBEFDC3E7AED60D6BCD75DC0DD7764B76DD2C1946B5686C196B0B57AFAD5DFB64A682C20BB8BBD56AB5780BC313C2F0F04402703F344D93F723244D6042E2A609B54F46B426D21128B74AFCA1D6AAF8C62F05B3531A1CCC1F90877207B6970038ED83BA2C5E7CA51F046CB66BB6631BE5AA55B24C67D3B6ED0DCBB24BB6512F1A466DBD522CAD2DFD6F66DDAC98362815601261B95CE60905AD097186BABBBB3DD08DFD47B463EA118918A879FD2AA943A3E41A16B9659FB43E9DD4EE6C0C30826249A1408A25705AC212204221469AA4C8BD9296EACDE692E311859804E42D0A29C4F7B68FE1F9383E459EEF59AEE7D6B6CAD686693B9B98E1A66B3B1B9EE3147DD75B2E5D597EB760DBD7B0C2B0D51D5CBF845969140634353D458F01E8E4C47B74F5F215DA3B5EA0675E384375C3A7C937DF211716F0E7BFFC05FDF9AD0B64D74C3AF9AD53F441E90A299E033001B9F80FB63232282F64A4448A88D90FECA46B6A3A9592D3F9EE64C1839588B07880B6D0F58D3A39BE4F0145AF143FBAF21B187BB76344E1F6799DA791A2D2E3CF9E21F6A40F3C7698F67EED5ED2610122DF21C7F569D32853EF403FFDFDBD7768E26F6F53229DA043C71EA3D5CB73F4CA8B2F53C5A8D17AB148F3F38BF4DEC7FF21ED5E1F5970E1BC936449991814479AF545474504D84F6A3215723AC03A649B761A3C4E80EBD2EDE44913A2468B8BE76960E03BB438F3192DCECD537E4F9EC60EDE0B500A3D7CE21869991411C613DF7B06491634EF6E9257B7294084D8707B48B3A6EB94102A2D7EB24E018ED5EE346983A04B6D15C496C954D2544EA662A002DE673097A48C2E7337A496B5DCB198584725A98B7A7A8E379A80A650EF3D7B289DEFA29AE1902C99B8F1C738AF53B62F476A0A4C41BA8CE555F224411B1B9B64C7AB03976C8733E0D2E0C124457644752D4D354BF0BA16B07C24CEA1EE794163F90F68AED245FFFAED069D7E56253D3B736A5D4A9DBDAD3CA198D408E4DFC0F13DA89C442A898A4674405D2D21938A9B8D1FFB3A95AFCD2112E01E7758CCDDF54DEADA7F1FBDF2FB57294064458082936412799D92C534493570AF3722DD5A4113615EB26CD429AC0B52FA5C92F70E50DDDA242559205589A3797B79628ED68549FF9DBE48A71E3D4D9FCD5CA5D5A515CA0FF4D281271EC0EA54A2C25037F5150EA292C3986B58F8532F6F31B247F7E1B8715E5764E2EAAFD92ED150863C28859E8072A0D0F85ACC843617DC1838D4AA814D3444949D1CF49576AC7A4E7D9794A5EF3E7E26E6DA8328927D8F3FCCD1A672DD2701394A6A021488C0475477C0D213A05A1B376F0CF02DAF912A0754B6025AAF39F1F910E7832881A16E17901ED6C9F502F2B530963ED17C4073C716CAA987F8D2F4F4342FA569647884FAC0D16C361347CA07B8954A914C6FABA19F4A4458BC500E45164488208AC46F02BEFEF1654A8C8FD2505DA223A347A95AA952B566905143B19A259ADB038E5A283C17934CFA8D2ED2B62CE2ED2D408F1C394258D8C51C7DE38D37E8ECD9B3F4FAEBAF534ECBD24343FB687478EFF6B5EF5C9EA48F6627290975105200EEDA64793A722223BA1A6D59039450654AF727289950A856355158282E489BEDF864DA1E79559B7C7016C21F171C07E07394DB40778CA8847E9C62A04DC78F14DFEAEE42CC7CF15395EAB3D03C1B202D2BDEF288D21A3DF4833DF89D203FB387564A06E5214D25A841A56A50D5E051A3BA6D029C06ADF6C04F37EE762D94B8416C396F9B7A887C726D6DADE54F3B9A5016178E440B1C73B9B59FCD3574B162FB54AC59F1BE1B78542C6D36411A680806F90245147511D3CCC5D85EF160828AF2F98252DEA9EAE13B83A79F7E7A1B287588A8401FE43F6F816B81851BA2EEAE6E448A391AC4E9E4FD523EA2CBCE3C2D2A252A6711C902917D7F8AFA550BE20E7EFA5E5C680DDF04A313C60FF0C41D05FFF4E9D3B17B025F630DAD5B752A1B55E25509F3DD463FCF174C4AA3298688966D8628883465D0A94422452E40F28D1B8031B4886A7B249C93E38AC73F37D667D73DCA66B2B13CA9E510EBB51CA40BFA2B0B013A75068A8848CDB6A51E3F7E9C1E79E411AA56AB74DD98A58B1397625EFA668D1CA34216F665EED5F71F42D45DFC994F128045D8B75C99ED156EE853D62B636201ADA1BFF7845572B8D8421505EA5231CA9038A0503D9F27337892BC4025ED8843FFDC8273593B704192963B577DF3016E5CF5ED2E5CE9D1249B9A91012F03E150046D0C51C181AF203A301AD80671F4D45843F369741ED83A943305689D7E378097C06BD8A7848AEFCA6054AFA0AA9D20EA8224467D748F64918095F43199C5E5CCD61D7514BC545BA619822EE07BA4424E05BB611672050A470762E2735ABD7804D48FB96DD69C466A312905F472D110567574213D8CAFAF0E261135854219BFEDC2047DA98DF3D023B351482A26C2757F478E32D06D19623B1672130C69E2AD8BBFB62BD63429C209BC20F27D5F78B6934E0967ECC73F7DF057453DC3AA127B4B065681FC8CA5799A72BC80951AEB8078C20D8801B51AFA7A55727243B29A4D92CA0D232CCB89BAA2441D81429698A3323F666C332928BF306E71D595D2DBD7DF9D7A1F3DD96E3EFAE1F57F6FD81D1D3EDA9B4101C810771572D368950AFABC0B7AA4527A0CC843C1704527700D6B265FC3899361AA674A09AF3F1B6A3DBA0FDFABD2792B3132FB572DDC91A30026DFCCD152CDF2ED20F461ACE661ACAB737373BC96115B5B5BF2E8E8288A305AD0137056B083FC3448511B4055552185C1A3014800A80228370F15D771C483A0E1BA54393EE76BBA126532B2C2DFEB89B0C60BC11D817244DBA31DFA81F7A7977FF71CA238833FDFE0B724AD970ECD4794261667F317FE619DA95822C10989A448D1E05C22852528542309CE4996B85149A102A8A0170806B114BC2B299A2C15978C0D451129BD5BCF2809CD5D58B0DF4610DC52A97463EAD9DBEDDBB7AFD30388102037C1C72DACE99DF637234D2BC6D1ADBCF65ACF0544E0962682DF4A2D9FDBF674F09673ED0F8A79593D3838E8C3E2F16BA3CE11E5B5385A9ADDB65CE647E726F8E80368D4210322AE8ACF5FAA7DD13735F1DFAEACAC6C3FA0906FBEE1ECEC2C4B8239313171BE254FE8F95350811A7819DEE9C986F8E29FA83944FBBD3AF5FA08CB0D13F6EE4D148A011508CF9D3BF72A5251E78CDD55CFF0C11B7EE9554114592783E5E5E5398FEDCD2EBC5FDAB133358B23807BDABA74E9D239ECF772A52F2D2D05BBF9E256EA746F2E88F1F1F104AA35DD5CE85900EAEEFA4BDB1D9EE34B6DD48876FB35F8FF014D1ED598C339C5660000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (64,1,'Network_adapter_(64)',0x89504E470D0A1A0A0000000D49484452000000380000004008060000004FF7B4B20000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000011534944415468DEDD5B5B6C1B577AFEE74A52244552B22C47F24576E4C44EDD24B69B5DEF8373018274BBD92D8AB68F4190BC7481BC1479ED5BDEDA027DE84B11044551B4301A6483A65864936C36DD6493C57637B16CA7B11DDB921C39962C5122C5FBDCCF4CBFFF0C87A664D9528A14B53CC280C399C333E7FB2FDFFFFFE71C295114D1FA43C1C11FEB6ECB86D1463FB88B0FA57FBC09B0E3C78F6BE57259F77D5FE5FB866184E9743A9C9999115DA0E17601DB03D805A78D8D8D99B8CCE0FE80AAAA297E2684F04DD3F48220F05CD7F58AC5A207B00103BDDB414A8009B8919191F4C0C040DE719C6100DDFDF4D34FFF4926932954ABD52BD7AE5D3B7FE6CC9959806E026843D7F5F6FCFCBC87DF8BED00509D9C9C34DAEDF6E0134F3C71ECC891237F313C3CFC479AA665FA1B0358BBD3E94C552A95D74F9D3AF51368B275E1C205FF6ED6A29E5C406BEA8B2FBE78627474F465F8DC61060D402D682ADF7DBE020D07274E9C383935355503A6771A8D86C5B81302BAAB01160A05F1EAABAF7E9CCD66CF846198E713E0869F7BEEB9179F7DF6D9EFEFDEBD7B04A4439EE7513E9F3F0001A4E18FDA066C7B571D6A1202606A01FCCE06B09A6DDB8B60CDEBF0B7AF3FF9E493FFD8BB776FAEFF47F0D35198AF01A1A8773B8BEA09DD33CFB03F754DCE03B9F0B5313B3B5B86CF5587868646FA050341F0A9DCED007B1A886E1E1CE304B424E08B018007209FC69A881FB7B9EBC1AD01B8FE48A5529165594C1E117C51ED02EB0748DB1A6037F8B3E9322A6D030D46DB1E60728050D6038CEE090D2678C0A66B00825CB6BF89224C24E6C9A6BA9189D23D6BA24935712F99687F38B93734887C53B22894A76E4032F78E0619E43D49327DFEB79106F9E06A43EDD6CACAB605882C46610DF6873E562030A580DB449561703366DABE53ED3B7BC7FF6BB974070D2A00B956831499F81882062D541E3AAA10D734CDA0D96C861006FB6D88934D3BE2B91C4EFB90C82761275A3F91B5FEFADB4C24360588A45B6AA4FF9D03C5C13D7FF50F7FFDEAB52BB33FFBF94F7EFAF6D2B5850A6A459F9373000B004CF0276E09D48C0C5C400802F743082B4C04C1807942EBFF5210CAEDA60D8F1F3FAECFCFCF972627278F9D3A75EA5D36CBA4E0BDF4D58C6F173423B6F148E07ED3B6DD9AE77835CF75575DDB5E753B76A5D5EA54DA8DE64A6571A9FCF59599E5A5F9A50EC040F181582F08BE46DF0104D013049FF57AFDB682E8825D0F7ECDF4E6A61A2C954AE62DEEA3DC2C9506D2B0E2AC5E524B7AC90B72B74DC143BCAFE3FA4EBBEDD66DC7AD398EBD6A5BF6AA67DBD58E6555AC667BA5BE5A5FA92EAE9417BEB8B202B0BE102200B09E3058328EE3085840D06F110C9CAD026E22CB3C9EF1C398E58CDF6D01A223D6AE0269DD0478B35CEA635454C7BE42ECA5A61EDF0F8482732D38B680819492CE65CC5D22327679FE0079222411E259244820B4723B81769627A246DB69C21AEA9EEBADBAAE03EB70ABAEED545C290C6BB9536D2CD7AF9597EBF34B75B60AE60008C46DC16C4647473BE572D9C5B885BE89FF29F97C3EC500C3B3BFA3A9B96BF4FBCF3C4B9EE3A8673F9992DA5281EC3B3FFA1E418C546B29E4D4DBA4041E655042EE3B30418BED559E57A5D013A4664C6A39018084A4A91184C26C1C91E5C3FC8350DEE7732045CAE040BA1045A90200EFF3011ADA5F230CBEB63C9FEA96EB410875DFF56B41E0571AF3CBFF72E9F50F7F3A313121E6E6E6C23B02640D42321C024819DA4139DB95F73B6D8B4EFFF6D338CE00D8C4A3FB696CFF1835CBABF4F907BF2114CAF4D4534FD103DF3B44EFBCF1F7D4AA37E9C9279FA4C71EFC037AEB8B5F51B3B24A46A491253C0AA280B2199D105CC8C8A5A5163D2F941A0F2590903851346121214ECBC3F380EF0B1A30551AC9E7CCC5A6BD73B9493BC1DF0FAA86FE05ACEEC36C36DBE6A997DB0204FB29DDAAC2946EB7EF7E7AE0BE3D9268F285417AE64F7F0874008E93071461208EEBD0E2D2A294F0E5B9194AFFFA43FAEFB39FB3B9532693A183470E4353829E9A384A478F1DA346A349ABF53A2D2E9669A9BC44E72E4DD3AE076DBC0C9A8586971BC312A0E802E5CF94AEC015142980961B928DF10CA6212C4FA3D50E48D0F5D9E252085F72C6EF8E1AE4492598A91E27D8F300A2C1A40609B447B57225E61B4DC5C01F2637D0687064884EFEF90FC8755CCA0D17694573E8D0771F251D32CAEF1AA6F7674F93EBB9B473E74EC9C6302E02A192619A34582892392DE8CCDB8B52705A364DE97183B46286865337A436ED20456DD7A0BA6DF600F3D88673060D650DEAA0EF280C38A4A95B8A836CA23C3D1883FD886EDC18A0F1F13FA476B3A59C3FF3795259D0FD472769F8BE2CE8D4A685E939DA7FEC0045F02D2D9DA29143FBC8B16D8A521A05302BCFF7A4F4191C8852024D4ED7F568E2300F1C16C4FE9875C80A5374E53F1BCC60A496300EC52565BC40AA2DE8406A86E69B055A9823B21B2DF8BC4925FA7AD7FC56023D1859E9FA601CEFD43FA3BD7B23DC0F494F9974E4B1A3D2FF34BCB86DF954E401F96DBA76FE320DEFF0A851B7A8B658A7838F8DD3A58F17E9C0F131B25A0EE5260FD317E72FD0774F9C9020DD041C4EC777C9197C10BE3E43666051551B833004ED7D38221F256803A96F36DDA156354D850597D45C9986E16A977EEB516BB1428FEF2D92A1CD1EFB8272D19633192619FEB4159266D24B625545C6D4D00749E453D25C0AA5221DFBC149F2AD0ACC5225556B426B2AD81283EFD8844086DC4FA5B73FFF98FEFD973F83AB71A7E853C496603C3042697CFFEA5C207D3A7B4250C659A6AA374883CA2AE502F8678410E4E525170402FD0DA5C81F74C89EA9E17D2558B7925440D13732D137C53B347826A2A71FF93E3996AD9CFFEC5CAFDD9E47F64B566B23EA8C1F1C23DBDB4985AC027F7918038DE83B130F4970F1E262440F815D939020BA6CC9A983ED055469BBB4FF893C1A0A5AB004552B1A09C7A3FA3238031D441983CCA22701C29E1082208CAEE0A3F82F628BE8743A5BD22027DA12E033D149D21EEADE84F6F61F3AC89222D5D0A86579189DE8B15D2E438877826A1DFF1616147DF41F7F8F7F3794D53911A021E41E221A93CF87D8D20E96A8986921A734E21022545AB90A93FDBACD84D2EDAF7F1137AE61373351857D902F902AC936A3DA08F9D998143404ECD10727D840E3D2498F09E42600029D13076CC4AC881CF8AD87601F8471FB7EC0E325447535940463434E8B0D6BCD736E7F6D155A84390B0EF20CDC150435C904E21680EBF2D34D4D14B6ACF7C546D9692E97A7DCAE1D6480FE351D1227113324CCA5E35890A0430D689435C5124D1B885DF0BD40A662AA1440085FE293339446AD4E416511EC3841050CF8F1E1631270BB63C1CC3B845C952CDBA26B5A9D2AF990EA2D8B0664E22FA41FDEE486A87F16626B3E98B0E84B2FBD44172F5EA4D75E7B8D0C84CFFB87F7D1EEF131BA6F74E79ADF5C5898A5373EFD05B28C1AF92C759854285FA34AFB91190AC51A8ABA0268D9B8AE4370BB11DC6B1645C368AB22E6F28977F1AC6584CC476D8258B2F80D6227FBA065711C0D7AFA8A641EBCC57A90837CA2414EBDA6A7A7A5F63834447798B5676B61A99AE5AF286B76304E2F362D3C30530EB4A8C864FCECF2C3348678C666BB6F4F81C2DD21356D92B966A3D944D8F04114D06027D6205F3B912B5919A848971A746316BE699E3D0D26C3D94A456FBCF2CA2B32DDEA7EA73B95990C3E4095303365C0CC3232FB61D38E4F3673475EEF3851A6E248964A033A5D412289680321B4E5801B08DA0E061F03B4BA003BE49AD0580883820059831C3B0D06B87640D20713905B61517D6161A11F306D56483333DECC4EDC5B4E3653AE4258B3D50EDA06A2C7A60ACE46B341B6EBDDA24151887D581171FF0AB932114874C798742D8AB6C2A26C8EEC7FD2448F1E3D2A4D34A91EA24D169698701230FDA998D7653E946052506118E7929281BBACA96811CD5FBF0E8DFA712A07A01EB4255082799974EC3E22F6417074DC0769FFBB39996EA0D75F7EF9657AEBADB764A79B693019F0461A949508C0F1A933FB4631D12400657C34159A3B186B0A85313E218828D50B05BF2756E8B26A729543D5AA474511F656F7226892BBDC328B263EC85A7BE18517687575951746A5162CF852B3DDC2775312439278B7AD0E8844D0A193488A43900A246F5921D56A06E506D2A4AB69108F468B0C301472E00C30DC202188E3A058632F2BD7D364623CA87260BA48EF1A11656D6416D92245412443D096E3A04C5ABA73A2CF3FFFBCD4086BA161D7E8D71717C83A17075936127B75194938D3BC4FD9119D16D53D648C6420538FD306E498782718D50778450DA85DC5E0BA5314E3EA127D150CD39EF40ACD764AB4375FA5D95A8146B22D6A3B26524083F6171AF455A340DA232A79E534ADE05DBA789C664596FC718F7484AB5F2EA1746D1DFCB9A294A32D870936D1F5CF32C534B5E0C736E250420EF6D525CA96907F7ED9A6013547BE62501B5215A1D14DCDB85D66AD8670CF8789554F438B4704AD7C06FF3D2468F91C62DFA84FCD1583E7FD887660DCBF83191EE24C278BCC812BF11C09354B4369171544288974A53D404E3D5C74DDAFD905A26F9CC9243EC603E4D43965706DAACA8C24F3C03E593EEF39093FCD6AD22DBC0C13898A802F9044FBBD54AB3F1765F31C7A54D0AA17D28E231EAD203BC9ED434047074C38850C4C3C3069E7619B2A516EEDB4BC0D2B5842CCC56F7CBCCB181084CA33DC128BF6F9E02D6DE03132D7E42CC4F6E30147289578C0EA401CD47BCBF84A488378B9A9A79193065D01B1CFC5A6CD00A7BD92F4B58BA224FB9FA7C1F84510602B90FB01E9623472AB9521E6E7F31EA928B704B29DB41E503352C22DF9206B8F4BFFA49A581BE742008789DA017D3935FDA6556F9D8F54C51681EF0B8C98D32721A031D74FF91DBBF8DC73A33FBEE01D1CE6845B9A67771A91C3CD4ADBEA91CD373D84A1D2F54CA13B26358EF7BC814755C3CD58544940AEDF61912CBEF0B41D4BBF3AB7F0E1F5DF9CFF88F7B5F1D47DE2BF202313DA2FA28FBD8FBC9CFECB3FDE7946CEBF70D7AC454D43CAE60BE2658F5ABD83043E4D5CB8C82400E518CF1CF0A79C938DBA73B14A3227AB10EF6CF9AF69A5B27F2C353892B64CB6080D09FD07BB8DA37FF391F24F5D1F8C362319352978FB631F836BB99EAC0ED06A116DAA88736D5077904C77E09A772FF2F72CEAC740C360430C802BEE50847230DCA5868132481DA183EFC91A9381B01B6B6A2FF98A949B1CC01EA6C509878FE61824FF2EEE9334C5C378C4A624532C1615840565FD0604392FEABA4147F87EC7F159E0375AAD9655A954DC72B99CE4F2BCB6C10B2F1AFAA8425B5E2A6D90CE5A01109100E45A1268F2288132E994BC66DF6521B01063105D574EB076031DC766DD14B66E1A61261DD78D2C24DD50DAB8760B8542B8A5389868B0FFA89FB9FEAF6FBEF1C63FA2A31B00513B70E0800380FDBB7FE5DEB7898909CED02B9F9D767E7CF64B651C6CA0A300D654E9DF5C12458C805711B548F1A5ED292197BFBC03095DA842E1C7303F39D5C2FC18B2C2E40E25A15CFDB231F3693E9D1FDC69EC30542534D28A3D7BA5F33E2F614C4D4DDD796DA2AF5CD236587DE27DA2AB4897EA4B4B4B363A131BACDB47737373FEE4E464EBEFFEF6D22FB2D9ACCE7DDE6E035FD7DF7B9FC918D6DFEB6F873E7BBFE76D67C89D7915CF3D7CF8305BD39D3598ACDF6D64A278E6E005B6C7A90DB12BDEBA29A1BB839137B2731B7F6565455957B66DBAB4D7FF0526DF5B14DAA83183ED2EA9850C6EB3E533B91E67DBB68F0E6B1B2C6B3BC8495D5ECBBBD39EB57E93DD12A23B2C73F3AE8FAD1CEB17456FBB468F02933563BFFEFAEBFFE6F1E44797C160926548EA57ECC8FC6F06DFE67273F42D1C5BDD8410CDCFCF239E87F6BBEFBEFBF9F9F3E74F77E93FFCE0830FFE19DFA771ED6E871D4FEA1DD41C2296F122629BA9BEAB55F7BDF7DE7B1F0E6DDFB871E3AEDE8CBE955C54FA20E382BF795D5663ADB6C09E1E6D837F0AD90C6084CA3B40106F57ABD573972F5F2E22333181A9C6FFFDB25D36E429B7534297D1D4B1B1B1142AF81C027E8A9358C49AF6D5AB57AD6E7888B6A50FF6FB217CCD85261B00C72B9EABA55289C189EDB2EB57D96C9C7DB149E967F3EDB219EF7F001FB18C82A58423490000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (65,1,'Network_adapter_(96)',0x89504E470D0A1A0A0000000D49484452000000540000006008060000008380557A0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001F754944415478DAED7D598C1DE795DEA9FDEEBD2FECE626922645911263D13635E3F1468F12616CC09981B3F8C1405E922002F260C44F49300F1A60E6213230C8C30C3C40222441C6831960A031AC51EC2C1622C9B62C531E5324C5A529B2C9DEEFD277AFBD6ABEF357D5EDEAE6ED66DF963118A3BB1A85AAAEFA6FDD5BDF7F96EF9CFFFC55521886B4D32261D9E97CF8B80BECB345DA0E8F149052B25EBC78511CBB72E54AF2A1305E93FD7D0FF02380A68094793D75EA94DCED7615D77565B495E236A12CCBA1A669412693098686868218E4DEBA5F81DD04680CA61403A9B45A2DD5300CDDB66D8D97200894B85DA0AAAA8FE39EAEEBBCFA68EB67B359FFFEFDFB3E9AF8FB15D41EA069308F1F3FAE369B4D1DA0652189591CCB619BC1AA721B1F0BF63D6C1CB47100B40350790B8C6D677C7CDCBD7EFD3A831AEC3750B702AA30988D46C328954A39CFF38A00A904E12CBDF0C20B5F387DFAF4571445C9421AEFA2CDDCE2E2E2ADF7DF7FFF26F61BF878D7719C0EAED1C167BA9393930E40F5F69BA40A4013E93C77EE9CBAB6B6A643FA720CE22C96CB972FFFF3999999DF81044E6EE3E5592C174DD3BC5DAFD7DF79FDF5D7FFB45C2EAFE21A9D85850597D57F3F01AAA6C10530121C8CFCFCF3CF9F3E79F2E4BF29140ABF0DACB38FA155ECAC0C7CEED89933673E055097BE8B058ECC012BF0E0ACA41413D857808AE5D8B163D9A3478F3E03903A9665BD0749FD18ECE418D4B9CAED21A9A38970422ACB13131374E9D2A571B49B84892048F37390CE1FE472B90E2C013385803560BF48691AD090E9CFB56BD7DAB76EDDFA33DCFF77D91961CD02D03CC0CA82228D7EE52B5FF92A18C073300F23007E12F69218485E79C13566B1AFB33D4687C8FBCDCBCB29321E423D03F6D0589827B5014C1DC7AB90C455ECAF61BBFC9DEF7CE7CFCE9E3DDB814928F60BA28AC5E20C1C970AF015802DED4B40D352CA74677575D5C1BE0560DA00B10970EB90D275A8327BF3161CD7C27617046F2DA17F4410005A9550B17DB3A8E9983C963821AD20E8410C8607BBE8F139AC06030DBAF430F5B97EE1BDCCD2B9EF25348C9718D4208E78BCA5A5250F5EDBE305A0FA376FDE7CC0B6733B1A15D3B17D07665F2FBF35C1114B6D00F5676FCD521C743A1D6B3BA70DA0F7757264502F1CC67652D921AB171C003AE00240D5ED008D55FE00D0C7C6A850F70433CE3CA5014DABFF81CAEF61019ECAE3CCC201A003AAFCB668462A2F40E524F401A08F517B0E31E1F1E5C7007A20A183787A5DD7B795D0031BBA17F2AAAA4A1FC93CA04D1FC129C9DB11FB0395DF9B84EEE4940E547E50C7D44FE50F00FD25DBD094533A50F941A325D026651BE93CB0A17BFA902C3F2E523A48DF0DE8E5D5AD317C9A87329871C65E8E3B2DD812FB87FB5E42536124E74477744A3CA68445CBE572EAE1C387B9AD127F971C590E498ED71D977D23A13B39A5781C290B5C7358ED66B329F1C01FD73F61E59AA8D0300CD139D7AF5F0FB72454D2921BA640DD51A2FF3E49FC9E00DDCE2989739A5A80DA0F6175D9E167B35983EB9F78289519001799398EC3D42B181D1D15557C49351F2E2BB60CFAAF2AF07B01546295DEEEE4F0F4F893BFFB272FFFE1BD5B73AFFFE0CFBFFBD76B0BCB55E068713199E7793EF645755EA7D3090098CF432A00510CAF589625F67941DBE05711F85D039A1EC14C679BB67E378813E54BC5A3E73FF9F17F7DF6D90BFF626D71F1EDCAE2DA8D76AB5DAE57AA95B5C5A5F2FD0FEE565882F9B200868BF918586112F8FF18F820013E3E1E24E0A78187E087003EF8BB067E3BD00792D0840AE1876A3B0870CA34C8C6ECF123974F9C3A7CD9F624EA517EA0EEB96ECB759CBA63DBEB8EE5AC9BA655B3CD6EADDB6E575BD566A5B256A92CDD9BAFCCDFF9906B01FC0478FC864DC0C7B1445FE07960D134CD4DC033C0003ED80DF0994C868B3FFA019F80FE48D5F6C02A1F0DDFEFE0E5F19776CF393D241F40E6F01B65291523905282EFE2F56872D0833FB35D89BC5468E0F99EEBD84EDD16ABB96E75AD9A659A35B363D63A8D56A5516F54AB4B6BE507376F95DBF5B61503CDDC4D981776866CBEF9781015B0FADB018FCF31B84102FCF2F23257D23C023C576D33E890F420A18409A8BF742FDF6FC96921B9106E691B0DF2614D1C51492A91810EC8CB615418108AAD16E4D5090AD58920CC10FF6CC7F7A96B8764B92105FC8783BC02FA8E637975C7B1D6D109EB0E4BBD6555BB6DB36A3621F7D57AB9BAB05C5EBEBB501355C3B1C433F05CA0CD121FFF2FCC4D3FE0616E7C5E6BB59A074AE84E4D4D7185A168C3A00EACF20053DAD4115C24B6036514E9668866B325D16891252E7D3D800353007C485343D2D5A8C6828F07621B81C59D1FFDCFD21E49BC01A39335A26BF077B0350A48CBE396F24168CC72573810F5B6E591E904E4871BC0033196DAA6C7A03BEEBA0BB383B58A0EA83800DF6A772ACD955AB9F160B5D22AAFB7D3C0E307B2ED77C05EB836C15C5858B0F8FFD80CEC5E4253A1A4D4A34DB645E5DFF92CD92FFF579A38F6843864D6DBB478FD16894E8E4DCBB94F7F0C06694400D1EC4A9BACAD12D824B936150B43142200B31C4B988DE4E6A3FC402040B3BD102621E0C056809F6EC38053983A863F0D7D3F565005980EBE3CBA167740A084A48E40E247F818F81C354C875A001FA86D5C139FF3FDC086E4AF7B8E57F71CB7EABA4E2570BCB5CE7AF36777FEE2FFFF00921D42520300CB37EB0FAAF2C92C100168B8BA4CBF582B53E9C33B3D409B8D06DDF8C5FB0933105B3DEFD1F14F3DD773583E7EFCF2D5396A54D709B68B2BF6E81BDFF806756C935EFBF10F29705C723A26EB363DFF852FD2A2B54EB7CB0F890D8D0EF3A148610FF408CC20060AFF07E23F0160C7C67EE091A1CA02DC0D490F62A98E4053A041878733C4DCC574614EF0FDBE9007712DA3696AD3E596392D6534526076F87B609B4E425B7FCC120B13E026C5C5EA204026921A4F5E20E9C8710ABFFC4FE8F4C54BBD86B66513A2A374868A3A6D8BE04068A4581237B134374F776FDEA676BBCD911517F9C60E2C43F7DE799F1AE8143E7EFEFC793A34394DA3DE18DD5C9DA766DB2473A10A5075EA7A3624D6251BEC4BE88E2C930C44D49C41D9E122AC4C48195DA65C46894D8FE8821844DA3027F873611A6A6D5780A92912E50D59D8FB4038D89086722A1CA5466B2D4B7480B0D79EA3E25A05D8DD76A150E05A5869CF4EA9E7E501D6F3FFF1F745B12D03C0CBE8C4385DFADCA7A31B14C58C320D4FE6C86CF17C8692902013A6626D6D8D60C7085E97EAF53A5DBB768D6AAD06CDCDCD89E3F0B462FDFAD7BF0EE7630BB5AD7C304FFFE93FFC1E3EE350C7EC52B76BA2533A54AD55A952AD52ADB64ECB6B2BD4CC382467086A1C0A35767C0688B74A0F90206553D9FA6674858A5974882C09B0E379410058A6BA69D3705E874DF6A8D2B12353E0050AEED9E04411EE5FE672FA3DF1505E76F2F26A46A7C2F42805911844B86B1A4D4C64E27F259A3A364B874E1DE5AC1515868738BAA26BED055ABA3B4FAD768B0A30012353E334313B4DAFBDFD7FC92A28D18D5BBEB84937AE98E695CD8A6E6468787884744878696898DEBEFD339A9C59A0462B4B5399BBF4C07B86C6A4395AD43F29C008B700CAFB76D7A7F54E90B2CBD13E3BC927A74BB4062D1B2F1A6443706A1D0B26C113BE04DF2FA713397B8A94E2EC119675A8E78B64187FC4493D71A40529997BFFC6A608EACC27CE50E6C4B470483254AA303A44CF7CF612356B750188A429F0FE3E4D1C3F4CBFFED517707316045B222D97A125AF498AA945CE22557EEEB9D1360D6EF2BF0B89BA792D4B0128C5F55B2A4DFC7A48F7DF9769EA1F0502BC9CD2A0C9EC2275FD1CB9F0CF19C3A66A2B4F559896472538A0FBB5160D677572F11B87B21A55607AB61B2EDF13B1E7585EF4727095EEDDFB091D3A749B8686CE89F3DD6E97565656D21D41DECF894E5C380DB50AC11F71CC6F5375A54C1028CAE48BA4183AA9E041907F1A3A344EAD6A8339258EE3188015942776701B00FA1BFBEEE6FFD92E2A3A4207B2A83482FFD0FDF9ACD3A34E95059FE66FC05ECE28E4B74C4EF0E21336A967831E90614A82D7F1A3D97CB16373F03D7C1DFF97157AC64B3C45F1296AB59EA233674EF6E2FA0E6C1ADBC0B8E2591C2F8E0CD15AA543B3B379704270D1EE325D79FD4DFAC4174F90D9CC52AB1ED2C96727E9FE074D1A3F9A27CF827D6CB934756A82D6572B941FD529D0F290527F93246E95CC0D3310D2C8D9497A6AB682EF1BA7A6D5A2CC8551BABE148305BB180298100005704432A42FB01CD16999A647D9BA4BD323B7A8BE60923EA6D05B6F6468B1D586ED36716F36BDF0C204DDBFF7C1730F48DC63982AA4DB1DA0A00490C47B8FA4EF2469823EF399BFDA340B64E2D0145DFACDCF08672473B762D5A1BADD26A4B298831D0AE961396A2BC30B371FCCD3CABC49474E0674FBAD9B54FAAD33D4BCF78056176C9A3E7286AEBFF6013DFDC563A41D3947ABF51AAD95CB3031994D52EAFA5BA416F767BA2AFDFC6D83CC304F796785EAC553240F47F6532AE8F4F97FDAA1771F1EA74F3DBB40D7964B7462A2427F539922B5E992D600772F7AE0C600309B27E3C951AAFF640554AEC3B693347904DAC6A3116AF89125140E494EC7F2E1967092298C0430051F0C22BAC22AAD80C3B1AAACB5429A9C9EA6339F7E968CB1310A3F5C82EAC307C7637B9C760199A65C1E34D489AF0D76C7DF33F3C933F4EF5EFAF7A485F0C638C61E5891C10D65DE2AC2EE762D8B8C8B87C577555755D8678FD6CB3A654E5AA40E19E2F75C1C79977EBCF42C5D9AB8427FB376864E16EE53B53D44B3D2436AF8A3116BC18FD734B00D74BA767A989C1F7541095B717E41262E8E4F062ED3457103474A31A802D095B04C5FBBFFAFE8CFC7BE4D592D27DA75EA4D9ABB716BD3678F9C7B82CE5C3882102BB2498A92A7272E9E81648534F5F15FA3239A4C3EA4EAF465D0AAE230158E1994016F71951C4D3C751CD2322C38A13194A7A7BEFC1B7DA94FE2BD8BA963C387642A153AE48CFAE4142C6A8625611BFFDF9F82AB5EF6E887FF3343EAA590AEDC80313F0C2756EFC217048202B2FACB32CC02CC4C72ED64C92350413B1C507A07930CD5AE011D1919A10E445E8E1601E8EDF01E2DBE7797E62FDCA727679FEAD9D0D5D555B18F7651B8875EFE079F7F46543DF10D59D896B2510C1E84A374744C06670C687C62580031395112B49ACF4F4E4F6E0A2737C2D1AD514F2038A401677467B58D68076727A7C8D4A0B605CE60C15E3A91D3E19088B580C315C13741ECD971719AAB6787D1AE5683D4E711FB53B0292DD96CEA54A908B6146ECD990E1C7A727224B1A1CFD093F40FDDDFA053874E6F8A8C4647473706F7D0F4D08963B4B00CC750CC6F92AAB122A4103756EF86B4D6F41EA12B69E9DBEC791F3DC7DBD9910C95AB0E4D41B5D91B87219C4D988B3B6203F873DF18A31BAB453AF7CD117A6F718C3EFED926FD7C61929E79C1A7FFF5977E4F4267663AB44485A81352125A2C39343E1EF4C01C54E5A524AC4AB2F589840E4945FAC37FF69F37392526E94F1F9BDCC818C556963DBFB69554B3D4300509A45436E851DAB2938ACF8EE851DC8DBF0CEEA6039EBBB8DEA58EE36DDB09736BCC373BF4C1CA38B62DBAB38640246C93E94F4378577B91DF871F66483B1108094DAB7C2B96D074F1C7C0C3C84CEC755D179469A7413A0E39994F26E9B688AF0664E4B362EBA756CEF2B0E2E60D89268A324D14641AC9C99487DAAA0AFFDE8DB68158C3781BA4AE158A644618C281F8265884B6A99DDF678DC0DD587D4EE9617BAFD2122C2191D013275AB1E9D95C0C93CBB10D0D43CEEA393DCFB947620F2C77CCD817860A30B8919A71AC2F245412C9C29E142652D3EC72424482C4D83D0992998C40830C70C49CA1881EF745A744B2EEC7200835C6310BAAADA3EDE2C2328D79F37433771EF659A3C3850CE5EF4B74FAF859B24C130185499663C7AB4336020707AB0DCA7577A4DD4B54DBB64B7AECE5EFDE35483E1E0A87996633AE2B91656DAE59E0E112360103D326A1EFB1842E2C2CD0D5AB574562E34B5FFA124FEDA621B548A7264E21B6468C3E5C424F96E2A4AE1F4B48B4757C97FEFBDBAFD17846862D95D106E0071BCE2701DD8F259D7AC6231A6211F53E9C2982BE67750501864C6BBF5028F70590734D82B4B5E9AC050E0AFEC583B4AAA6936E3B00DF466701540B2BA2232D4067062D015A647E122FEFC31798540B8A1448C126D7C35A1E9BCDBD3BA5249667094D6CE88B2FBE084F5813E73FF7B9CF459E3D8E90543431541DEA9CA57E4520891AAFD43DD8C10FA96515008E8255C62A090762BABA50E9ED1C119B04F6ECB57628A29ED1098B9FCF1103130ABBDD41286C0148CE6A5958932D031AED3BE4E501A01C7FCEF3631EEA53B38DFD2C475421ED34B2BCBEBE2E58D09EBC7CA150D01380D25FC235B8E2FF5D56D070B324469F926E515ECA920B7D577597B21993A646CB20FB88A4CC3C5900D60B351A2D366828DFA2FFF2D66F930E1B3B5A3092671A51213B44A5536308330D91C098C7B55D84959DAEB9016202A800D3E91D135A134BA8071320B38462F5EC20A257EAD6EA18107B57EA39A481434FCEF5B184B2CAE7F37991567AE5955744CFA4E9D260F50152CF29BCF1EA09214D2226C7D675B3D82F6D3966611F12EC428D4F5EA54FFCE34FD27CB523A8124BBB0A63DBB64ED06AD3A4FBD5769C047645B26603CC08444E82A701160E4C8EA53F952F182ED954ED33652007625F1A0E93E1E48FE69400A87EF3E64DFAF6B7BFBDD55945A9B85D4BA8D4B35769E07AC98E3EC77AA4DBF77BF68EF919039BA652894970DDA0BFCA5B69F587CA7B2A71641E7582CFCF5112DB3BF7400D9F01F537365B4AA64DD5CA6682148FDF0F1ECB23C4D2FA1529735494A8F26EC7543686137606307D4E9453AADA06EDA1B06F0E5300EA059B543E0170C37E466BE0E785530C628A17A5007D7AFA698BE6FB149794866C9A9C640CE4C19223E94C7412CBB38472A6BD1FA011D0BBAF420C62FEB71380E97D96BE6C362BEC75F2D9F4766B30E06E527927653F37ABBC17C016C78427609BC9120AFBFBD39F86347ED17FA4282722F6127D24629F60CC93BE4E9F3E4D972F5F7E04D06498761040392BB593CA272B5F1B5C4FACAA302F9B497E1093FC3481AF19363DA83CA495C632D5BA6BD4B2EB6423220A409B948C4F59D0B5FC08C054E5DE13137DDF8F73AA3ECDCEBA8F907A5EB2598F8AC547C1DCB5CAF3831C92AA647E161EDBCB975E7A897EF4A31FA1C7AD9E0D4D68D35E2474275045E21740B274F2CA1A92A651FE36F17EFDB011EF2B5BC2DA34F58A96678756A9DCCCD00A8F9CEABA289C585E06706341CFE6278B69AAE0BD3D2DDE5BFA2E458FB48426A5BF24915049DE3DA0216DD8D0ED406589611013E9E45551A3E28528DF940E231F9754D90C6A7A99BB3E0467C4C51188940C43F882F1F1901CF9D12A43C3F0117EF6AFCE5377E93FD24EA9F7F081975F7E590C01F338FCD0D090B04736C068996D48AC24220CC7B3A3103495768B3A40126ACB91D0575F5CA3C5F290A8EAD1141FA163578476E55A06E02A22A00B0295464B6DB29D80E6AA63003A5D9A13F495BEEDB252FD636AA28CE489EA15EE34FECDB8352AE61189FDAC4A6385C364AB5D48678793CBC4FE71CBF3BD06CB8726915222A1BC5CB870619324B1FA2FADDCA3A5B5FBE2C67BC1626CA07C806B992E19232A423A80CA794ADBA7B7EF3E43A1E8729FE4C0A3ACDB45A808873421C731BC287223AFD0A01051545B6226E3C759A0009DE0D053334BF4EEFD5901DA538796E9EA6294473D3ABA8E30B424809C28B6A9DECD90ED45A988E95287569AF9C8AC1D536966BA41377E3E429D9C49E5F009CA1D9BA0B25D2073065AB36A915F02EE08AD3F0CE1A8A6A6DE23AAD147CE876EF7F08124AB54383D442EA473BDE13C62D3C27B73347FA54AE77F6B9C56FEBA42C77F6D88DA771B141890D68B1F4F4952BE2F0D0A57277AFB23B95842713F56D5A3B99F82D75E000FB63CEABC0D2A742C6A37BCD02429C8529091A958C17107925FC87379147DAC51A5953027C6BD3A8E4AEF3D98221AC3CD8CF183D18628A97FE1FFF4F353BD7B5DE4EAB087EB7700E8239192BC5BA7242E0C638D55EB57B91C3919FE0BB7499F8522C516FD8068AB1868874B2BAAF4688AADCF9A3EEF05BE48A688840AEEC7ED4443D63C65A2FE50EBB57F702347921BA97965394B4E4DEEE9E7BD9F1649F1B7BFEF8CE6D199A91A15330E9D186FF4B6D14D845CFEB877DA9478F99DA725F6DC443C769D9630D023AD4899A3E3D446EF1B47C6A8AB95C81F1EA6606494387F255276BA021BAA88C2ADE41A7EEA1ABD1C666C0A044B30647AEE4B15D1CE83C33DF7F9462F9A9A3865C12646A869C3014DCF767B9E81CFEDC8F31A3877157754017BB9EEF7B6D1C7C370AF4E89FA158A6D57BD1C0D371015A062395D8624C5B69455B6749226CF70439886DF8C8E8DCE8462C493ABE53CAC9C8EE3CF1C19CFD19D95E6B60EC68BABEC84DA03C4EF559E8C23A7807E22CD0A49E56575BA48AEAD88AACEC65886E42C4EC494A77D36436159DAB6929E47129A4B1AB927646AADAAE41E8BB634259288C1D631F93D8D7A6AFDC2A40DD3104B5308F55004403251AF74308CC774C22DC318622494879F1512A585CC1B3310D1B300A369BBE2869392C5C48B17331A087B3B92E06033456A981B3FB1DCCEF5F61D38A3D5D6C6FF77D6467676C48642E73F5DA31FD68AF4F473557AA3764C6C57BBA2E82DD8EB98D2D629353BD6D7535CAFC9F5F2FCFFB51B0FAF74D75BB7D01D26DF136E1CE62F04EB818CF9504C9F2BA9B16B7BB2E7DAAAE7F8998CEC8F3CFFE5E9AF59CA89F87ABD42D91E355A376D7A62BC4077CBCD4D3CF497B9F89A44EFD20C79D0B69FA5B691CA47D2B927094D5277715DD3F612EA47548601609EE9201EAEDE5F7CF3C677DF7A0DBDC84ED3E43AF6F48F88EDB20A64F951C545F6B1B95C38FBFCBF34BF76C78AEC5DC8A1277F2D4BB4E750A867D135262144A1E726342E798D067A597B158364B411244FD64802550B99E971AA368CAF038726B1C27174C7D5622C235CE4C25199A683E03B029ABFFC49F8E1B333D2D4F1D34E5E28B98FB05581D9084CBA3B4287FFC7F744EDFDDE543E97CB49ECEDD33674ABA78F9C52E46DD9730B2E1A8435B45B0788757CB61B3F907013A0E0AF8C2927C95C9E2AEA385241C64D7F627C5D48B9D975A854CC8901B44ED7A6B19102359A5D5131922F64A959EF88DA4D9ED33B3C94EB9DCB66756AB64CFC7643006A5A0E62F00CF8B227689391D5A8D5B6446D28F7069F2F15B3D4C6311DD1D81B35E7EEB393F9C9F3B3E23E702D8B4686F320F70EE5C2DC746A32433808B117CF0165D39948D34E2ACF0EA66020D6755CB27C1E4A08ABF8D216A2A8363F3D9CA7B9247382124A86EBF3D8B4CB85ABFCA877C7099A1CC28ADA288A6AA458FA1824B1CFA5372A0FE045C72515C77D499400711573728EF7E5DE754884C55252734551218622C5C7E2A11BDE17653DFC594572C42C1099EB0BE2CFF3F554418EC4DC299E8E93DCCB5E22A51DBD3C4BA6C69973DB131E7ED9E6949B5FE62A47C4E7D6D8D898333737E7F7A11BCAF8F8388F06F02CAD363AAE2903147E9A11DFA4E76B889C140194E1F988B7E1B40C55D85503CEC940E749C2612A62ED9DC3563734711D461EB69B749E992EA236FC5600A3731B9C67705918F8BC9F45C40614354DEEC88AE2E9B829EE386ECBDF2D988C248BE7F7B3B51A18D0940D957702143E26B8B5DCE84475C69C980B03D0A0657EC63DC04AC00CFAF1B742A1C0126A73CD3ADAAF47AFC65024BE31CFF0C9D0A3312BCEAEEB5051DFD78413D27183D98C262499EBE319102020CE19D81A862B40E6EBF8BA2FF6D9E24027C43E5F974D054BA1E1ABE218E746590B8CACBAAEEA8AA7F14409362186263A49D85B856C9EC38AC53B74E85030702C9F38A59D9E7B17DA5EEB8DDFFF6FFF162ABC085078D26C1DDB0E3E67F1435D1330B7CE93649BCAAFBC989A9AB2B93D77E0F53BFE4BDDBBAE0A530A03E5AB6160C78FDC0F35493279AA9C2A0AFDC8E267E972C52C185734F309F2A345C3CD201524E9F036BEC495BBF8F9A1021B1388714C889DC741961A467714CAA1AC047C4C10B850BA75B5FCC36C9E563F98C97E0C47D056E37E76345D771717CCFFCD4E3693C978F18CBA70A0895FC9A42F2EB1DF1AC3A7F69907D501087BF4063FC3997B113DE802D09DDE0F22C684795E7DA552E9A2D3FC6F7EF3D61F27EF1F4957FE6DFDA06118D236F3A9FAB597066D77F34AE56AD2E9EC84704FE2951D2C246CC6262727F909C07BCF87EE1829851CCA879C71EE0208B687F6EAEAEAE3C04C9EFF1CA0A7B9B837AC56AB3C6B4D761C478E1FB3210AD01EF74CE77EE7B73B96CEE5A686C5A53E15DB8F743C1C91CF92C9606E7DE7C9AE014D48EC63E679720F72EFB9102E7E8A83074003DAC5FB401250E3D708A507A7F83D4E8FFD7DE982B6C70D890F9210DA925C17F7F0C4134F88DF094109F694BE4BA642F32CDFC73D99317E92838B1EF4F9450334C0CB5592076A6F158B6488763749F0BFC3A5EF0BB976936D12D39A795A34B62E9CC7073BBC258C2747D86C67F8FD4AA997560D3AD364D025F8A86BAA4EE9B16BFC99BE82B22B40799A3354D8639BF8AD6F7DEB7BF3F3F30FFA39A672B9BCC8337421C90EFB13FA157ADAED20BDB7A336EF4205895F1200156655B6E1285ADFFFFEF75FDD5AEC70FBF6EDE5575F7DF50F00BEC56D171616F6E55BBFE45DDA0A7E76BD078A62B3FD7FE59557FE0FA474796358D50CDE7CF3CDBF00A8F719746EBB1D813F00340695DF37C78F0A625AC4313973B15E2545AB65BFFBEEBB6FF1393E9EE76912FBF49D74EA6E6C0B7B7880C412E7411A1D381D339D168D09BDC9CF67E277D5C56DF7E5632F772DA15CF2DC6EB7F9D91C1C1E76D380F2A323002A3F4AC2E16731C5E5D17400E80E0B3FA884A303B69100B4DD6C365B08135B8D46C3E1E728413AF9FD4B0ED3A562B118EE570995766BE6F8E17F6C22106F1BFC12C0E1E1E19142A130542A95F2333333FA3BEFBC73BD56AB35C7C6C6ACB9B93997F6FB7B3D770168F20255B55EAFEB5C34060AA5C549138FDFE789C8C806C56287E41FBC79760050CF9D3BA740D5C5EB7D45761891542E97F3D3F9CE0340070335BDA6F9EABE7E2FF29E004D81BA6D64B59F97BF05CB08F82E5A1304D50000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (66,1,'Notebook_(128)',0x89504E470D0A1A0A0000000D49484452000000800000007508060000008661E9610000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00002D244944415478DAED7D098C25C779DEDFEF9E77CFBC39F722B9BC564B522B5214098781144BB148D986AD58909C204182200972208865048265C489A5C45010045060C7B08DC876C0F8889CC48865098E1C03146D4BB2A88006143A14459A22B9E4DE3B336FDE7D7557FEBF8EEEAAEAEA77CCEE1B7265CDEEC3EB57DD7574FDFFFFFD47FDD5ED31C660DEBF3FFDC6FFED037805F18B81AAAAB7E13A66E2C75CC72CAA2CCB645FE1B1FCC5C2D2C4E36828CC71AC5FE36E3FE9D8EC6B8E7B98723C6BEE8C79748CDB3E46FAECFFE88FFCD0DABC34CDC0027F41C0F2A3D1105E7EF925A8D5EBB0B37D6CC9849F9FD8119D66135B678E85891D962F97F0F3105B1DEFEFED41B7DB866DA4473A97AB2C42D305192080A7BEF407F0BFFFE08B706CFB38FCF88F7F2C1A786C4274C95A8CD8F3113E89D849849F4D6CB3DFA323F661094F5FFEC487DFF8CD5F8572A90CEF79F7F7C1EDA74FC35219E07BDFF33E387EFC046C6D6EF3412F4C6C9D986F5562DF00E197496C701C7B290F3EF2A37F1B3AED161C3F798A507A890C80A349A53370E6DEB3BC7FD1193B24B1F5895E94D8960D722B105B6FFF90C44E528DF5FA2AD46BABBCAF8005CB63008608C03C8F8FF4A92F7D053A9DAE3691863298A3B159575AADB278B961FBCC519ED48E399639AE37CACDF349E553EBC49A77CC284BAE57AD55E06D67EFE6C78B917F7123108D4CD179B3D9827BEE390D35EC3C92206368C6ECC625DBB415F452BA863E01F391E918EF373A0E38971333063E0B8FFD80EA05420A8851F1985F2BCBC3E3B0BEBACE3C1F30F10DF25BB5C5C7A3D795FD86FD69654138061075AD73E1B76CD7F8CDAF8DAE01ED5CA0DDA3BAAE52A9C1DBEE3B17A2B1C7BCE5AA004F83EC46630DD6D75713A1D580EB245873C03527021A3734893E1DFB82407E8065BE8FDFF4DBE7E5FCD897D7FAA29C26475DE3FB8AB87ED80E2FE7DF20EB92F744134705C4E4A25D864C072173B83EA2DFB05D6DACEA4304E36DE9F57C79AD7E9D7E9E99D7848C1FD86DE37DE2F869E28240C87ECA0B96C9008164004932293537426CFB58DCACCF6F2C24309F68A6113ECE044C27B63CCFA533BC36106D06D135D164B28898EADAD8357162F93623B808EC0721EA24F515125F49BEFD3118C10F91493181A20DCDA3E779CB55019E06D14430D57112E11731D004744E50FA83B894AB63C63469F64DC26AD7FAFAC46B84F46D424934600EC926B52208E89BF5922437C61026B195BA0866B5E5620466F7A5AEF1A51A61BCFDA53280D2598A726A108721B6AD3218530414126E1333D0A478AA646B13EEFB09C4502AC392667BD27DC9684C631CFBD880FD29C7CC375140D4F5433B661E26306C9520B241940AA0236F996EA04E6CC510FC66E622B6EE42994C202053487F04E311014262C4881D97E618E1557DE6D0C39AF4FBDAB58C994CC089270DD148E5B8743DE3689128E11602987A3F8277965087B1380270C997311A2E945E6AB92A806926BFB2761721B66D249A926D4AB44E6C75CC12245B27A009E352FA2C1837F4B8AF082824D2D4D981A577FD29BA9CC58C3836831158A2AE8F5FCF98D5170B42151C48BDECA59669046AC416C46361C7B3086FB87FCA704920B241405F23964E48DF847B66780C964D2021D80F2257521C9BF0AF540E4326E06D69D7070BD800B6A48692CDE640839069E2926FB89CEA5A4D05702F200896EB069AC40E64C7B3896D1FBBA53C0821548753DF926066314128E5CCB4E299AE4A34222B379105F3D802BE110F308DCB20A6BFFDC08C0FC419C6D2F989BADEC1005AEC228C4348B51CAA80546AF90800A1EBA119810B84466D3D6D103E46EC2091F08126CDBA5E8FA45C6FC38F4FB22FA5D3E1BF27EB70531DC41082457DDAC476E97DE630F8981584B283583AE308006032A01521C1728D40DD67971DCFB3E821021781A6EB1D8477C0B80AA6D806986F076234A9D583412A52181DEBC4888C3BF3589378164179485487F41B069A331269790F9A356F4BB6CD003A33E94CC364EC5F451E17A4FFA22A00C20E23BF3D986BB52B7010C0B0C69925D931C3CDD4DFB67BE60AC82886D3998039D0454813B99B7162C5022F86AE9E6DF4457A5B0B11BB5C3D3B546C4B7C603247384E16D96342C8966E04328DC03A0324AF7031A647C8148C27C0AF6FC3755CCAB97433DF72FFE2563A633282A8057358CC7A8F7EBBF4B6322E231BC374D76C7D6D33811DFF9FC6443AE1151A4C23BE5203BA11B85C06E02E07335482E2BC2426E037EF20BCEE9EF1897111DED7265C0B141956B2AD3274824A48F775D7CE77C5DB7D53E2FC6466088238F49BD7BA209F85167B1203B85446B4E89320F9A15706E13270B0DC405004314C11D78A0EEA6BDA4C412E33096FBB7026519564478457C121C355B35CACB88F1E98923DC5620F9C61578D309AF4334B25D8AB8371E3CD5E2164A6CEB70C3F66B569D4B1BE63B481651B814C9378197F0E8CE8A0B60660F9C2BE15BF3708EF33CD555392ED27125E197491DE654EBDCD82C8F7E7DF8CC5092FC3CA4E89B70D3543D7B3B82BC7125C3DA7BE675397AE23A68AD02389F8A0A9E280B1E5DA002216207F4360650569CBB986FFCD346207A1FEE6019798F1E65BEBFC0EC9F6FD7072A20822733380158767FABABFCB708BE97B0723D8019B90A00ED877187CD1DA3EB37E07CEDC02D3EA6753D433005B2E0348C8D76027EC385C226631BF5C4C6A145D13F01EB7DA85CBA507762CE8F6FD702214E1FDC094AC407333A7AEBBC7023091D168C60A024D02592C30E4D2DB2E48D763FC2EC2C7247E01E21BE979C1928D40B5F810ADDDEB6E616059ECCAE562E17ABD0AA6846BF86AC995E9EE1D3342B581A643155CEB913C97DE7546E094C1A9C3B28B491225DE91F5E330FCE23ADB36F6E2BA3E66F0CD497C3B46132CD70D9446A034034805840C61186BBEC3D717D01FADAC69411EDF541531374CB3B623C233B79FAE196B2A4DCC1DB491710939F13EF32DBDEE0AD4987EBA0EF14E7F7F1E468845F698561EA580CD4A9F0CC2B4B5252F07078C69C11D08AD74C64CC32C72F34CC2C7247B4A968CD34A4FCA9A49CC037410DEF6D50DA964B1689D2B049BB4B8C362FA7E1E5D6FDA113A13CCA3D385F5CFCC70FDB25480CE617493139EBBA741318B96548D45182B4D2AD0B275ECE5517F9AFFED6B4112CD88F36DC90E587C793546F864372CE9D895083A4DF7C7205E259926105F97FEB933ACF595DAE51A819AB509429AFDC984737C943861E9548BD811FC4BF7CCC1043114B08CB199849F12420D2CA87745E39C04760464A2312B432E9E716C5BFD49869F6D442EF4A7858297EB068646A0CCE143424CAC6CDB100994B1C63D0093F0E6B132C67C9EEFC72CC23B17631CEBE6E6B55AD086B13844C75C34795FF6220D3325DF6DED27196F6EA9662C39B07328E2DB6EE0F2034181B201B9D4930A60D22FE746973C8EDC30661886462C5E115E4E8CCAF73388E94BB5E274F758DCF50B9283327628767624CE8AF7BB8C3E3BCF3F26FD49EA408DFFC689CF806979014B8E03E83901DC7A4715E08719377AF68D06DDC65ABA65F42544E27483CC953AC5662CBBC6974FAD85166770C6E587C7E3EF26E4EB0C902CFD31B8D7087F23C4B7D3F596BE354C6505F14E4905C4D2B8584C7FFB52DF33A6790192F089BE78C2EA99DBA8630E23CE659DBB25D415D29DA69F5D8B3B86C433369D092CA95FD4704B7203812DDB0B08022D2F50A475F97E6A661C3ED4F7464E9B9FB870E2DBA9528C4DCD9B635A7E5C3CA6EE32F41CC659C2C24EDC804B807F0713C4B77C2D81F8861BC860D1E616CE090C8DC0D006F0E27176630DC0B2D635FD1D37DCA225DC64974C23A0964E1DD7F51A4C4F0DC2CCCB00B6BE77BB74B1EB0D23310EFF37EB2FCAD5583602A8E0845AC34F4D0CABD954037E14AB772EBED81B33AD689CBE31D2B757D484959FE8AA4D594B8F056D12FCF2985BA874B5C3784B74F134265816F14D15C08E4E05885D3B307B1935B651328ACBC7207A8AFE8F2C73DF195173FAEBC012C3B549C69B4BF7DBCC054E3D3F1D31D832882F697144F9004C8B5031340003BE5DDCCEA563C64E1913BAC375795FDFAD635BF3A67D1033FA9CE1589765AEB67A3367C83766F91B56BFBDDDDCA1EF8D3A71048824DE540937FF4FCF0738222350C08D3202FD78E244E22E187710C645789309CCBACE289CCB659B06D55676AD4DAC443FDF70E12C8488C1FDB2896F0782961C0A0E1F6AA0529121DAA51A58926D66E2306333648CA086BE5793E986785DEA8125A0438CF00E98B63759588B30361398EE9DC9502C543771465836F143DD7F887E320B028DB148418619688B1C4ECBDC09DD6ED8379E8EE15A4675847F67BB648AD8BA51961C98B10334CE889DC6044E83EF28891FDA00E60EA1A57A013201804BB72755413C0863AEC5BBB635B977C1C4213BE6FEB129113B9B0182084D42C94D4CC470C33FB376DE305B1D2448FC51105FB701D8B27302C30C20A502C887078DA87E7C3D3D3179C2159A0D92A36B494914B637605BFD717FDDA1B75D844F24F06CE23B1337970C01A167B2FC4860E40570FD0EBA5BC6DC615B437FB358E64EC098E9D75BF17AB0176A5C8467A6CA5061D118B1020784CF88E0E976030073067ADE34E2DBF900CBDE1D6C3C1184591B2BA6866399635F9BCB2F8F74B66A3F665527ACAE25866413DD335B6F9B718138ECBB08FFE6135FD7FD8B2A9C43A585AB2784FAF6E60B2D32C7021BE6DD8994AE4C1A434FDBD9B331972B705AE646C42EC12F4F6282F8824EFCF16C4CEE920A09FF26113F5C0D60D103378E260E10FED6B27D753B80262894FC08EA59901480B16302C991B93009D2E1BA19C61B3037FC3B2CFDC032DC9843EA9DD00F6F36F1415377CB4E0A65663E40B4F923391FCECCA40DE6600287AE76E87E96147A75A0453C6AE75613519B2EC227EBFDA3B1F467A98023080507563E801FA6746B811E434FDB51B660461A95236CEB20BCEDD6C5023496653FD5E0B37DFD298CF05624BE1D0A66EC08F3013802F80EC9D7DC3ADD1A8FE5CB057AC42F49B2A767DF44EB13F6F553F4B813FAE725FC5B8DF8DA6AE0D2E3004C7F549C72FF7C737F5C109890EEB0A65D3179F7B26A1231130CB8847A497179B7BE4F420E786B121FACAD61FE11EC0B502921E4054CB474AF242460D6E2492C34EB588C09B467E0B04497CF45D0B8DF3F4B7F27133EE9BAB70EF1F5743D26D5F2D18482D51AB46F1B68B6E4EBBA5CDB15AB1327167889E7DDE93989332DF82984B763F6E074F9CCBAF01627BE124E1A9AEF2F3529D4DC0CCA3786E85140E6F6EF23D7CED2E7CE0596B8BF6D4B6CE072D36270ADA3845BFFBB24DB752DBCC5890F2CDA1A269E1EBE240650C40E830F0133167B18E8891AB6CE9E6298B9883DC57D4B34E262F03D2FE183309072CB11DF8A04924DB64415C0CC7C00A63D965D93F69011F4094F78E2852EB56E14B0966695BE9B01F78A09D59EF979243D16DC61875B637FB354C011E504EAF90051F8D76DA5CF5865B3D7DD8125AEC7DB1B28E68DCF27111E9CEE9DF6815B87F80A8DD9D1A8002D12187B2842C24A5B6292855B1500242FCCD87A7E26D1F5BA1027384C41855BE52FCACE129ED9728D40ED91302C30F7E839E13DD0E09DCDA1DFB5C7D0B81666405F7CB1166440837F988A00DF39C48FD602E452F532BD8070F32668A1602DE72F69D1244884F4A46BA64178E086EC297A1D120C3E606F5606CFF26C007FA946A0F68CA014CDAB6F46F2DC1B222C29663095095C126D246418E7674BB953E72722C0AD497C3D13C8F397FCCEA0E8E9942928952A90C964C395C2D8E4AA90B1A583F5C7994513CF4CC90C8D30701FCB97E4A97717008B1E57A7B707461D300C3BFBFCADF8575F6D181B4316FD5B5805288EF3F01F756EBC3FC0D24BCE332CE1158D8E972A324779E24DB229679DEF330448BA98CDB866AE176532FD6B0EC24C7979E5ACA1F78783105D177D75E4A11F171FB089F59A764DAAB4FC0193EEEED7C8E9EFFF5DEC35EED1CCCDF37A1A98F3D8E86B9157C23A8EE77EC9F4DC6F484F7E133ACFD35CA60AF0B528E074C23B88ED20FCDC6F19D3FBFA2EB16342139BF3E5D9003E7F2FDD7704B16710FEA6115B6F7FEA4BB3E72176125AEACF685E2A03D08B0967BFDDFA50C49E83F0DF25F66C35B9D4BD81AFBD7EE145ECE35EB7911637DA98F58A70665A4687F86D5A4BCC3A79B8DF36A3B97E43DCD85DF4B7E3E91D8BBB9D2CB9441E20407F71690CD0EFF57F17FBF9D85FAC49BFA5FE86787B1F5D1E030C069FC319FCD87727FD2DFBF7EF5F79EE999797C6001F78FF7B5FBA78E94A9FB16045D795C990CC1C30C562B0655BB4DAA54EBF5C7F7BA97D7D2202B1B89FCF58DC696756BC823999DAD6DBB6203884406FDCB683A6AB3AD33252B12EB36386C679B750C8FFEEA21CE32D229D3FF9C94FFD1A5EFDB7F4A85ADC13701983F13266BB8F2CEEDF3336C5DD89C50458A2016A8ECBF166538711178D2BF99CCB0DB6C71CF78812E6C2753FAEBEA6CC0F7EF7F0E0EFFEDE7FFFF5FF76D319E0A77EE6DF6DE1D725ECC8632C61420CA67058D2CC65CD2633879B612CA6704D888B0113194697F6690CE32E8B334C32F19219799AF024307932538CF0BBF1F9CFFE97CE4D5501994CFAF14EB7EF8D4643235E1FC6E7C9FDF040CBFD13BFA387177A722BB91C6810C5E00319D7A7870DD0F9149AB2EBEB8DE98193F9276486442E1745683E2E5CBAC09FA3E4B9A4DF7323A9C7E7D053CE5DA2C745475A13502E1573F57AED7BF1F0F3379501D2E9F407FEF8AB5F838356EB48AC9947DEF90ED8DEDC7248C7F4D8C374145940B5C450E1704CF1FAE58B70E5EAF523B30269BDA6D1587BFCA632C0BFFDF47F4C8D46E3C715F149420BD91CA24286900132D90C3108F47A7DBE5EA07ED379FA3D9E4CA0DDE9410ECB33B29C3E5ECA836BBB7B90CB64453BF4498BBAFFEFF917E0856FBE18B693CD88EFEEA00FC3FE1052A91496C97EB05D5A1E6EB73A7CE2B39914A4651FF4D9DF6F625F291C374732AC83EDE1A7D3EB85B905E9748A8F2D8DE787F4FCE3F124DC0C92CDA6F93942AAE1700C2ADA8ED3108EAFDB1FF07951DCA4C6D71F0EF95CE91E118D61C27CF002336ECF25D913E8E8799E5187E68A9034E5E17DE031DDC3C49FC8D5598F970DC723F2D468D1E607B0F09FDE3406C0C979174EE26A2E9F83D16804C55C1EF29902F4BB1D68F5DAD0EF7590F81D78E0C187A0B9D7813612957E5379BFDB863BCFBC0DEAD54D18F4FBD06D1DC8736DD8DED9864A690DE1CE837EA70D07B2CE70D883B79D7B188231F0DFEDDE3ED669F3FEEE3A7B1FAC5636C4EF36F6DB156D1D3F7502D66A1B3041C2D1EF0EF643D7D7D76A50C3F27C76458C13C7D3EE35F9F1E93367A158A889F1E0B5BD8EB8970D1CD7DAFA6DD8D628BC8F6EBB0DA54A09B6D78E41BE5084E1A0179E0336C131ADE23DAE7362A9B10E7A5D585DAB43BDB2C9E771321E8B7358278F4CBFB1713272E0657BA3499F8FB7902F86C4A7FBE9F55BC8E82B50AF35C23A9DCE1E647345C8E70AFCF7E5EBE7E1A08363ED0D6EFF1B7FEF9FDCF95F7FE51766BA84A979E1BFD96AE3641524B621B7912422A186C33E3FF6272398A034D18DF073FCD383019ECFE70B9C71A86C20CBE998541C3D2E5EB4D50FDBAA552B14740ADB19A836F1BC871260F421C7401B2288F8BC4FED9CEF8F2198F8E178543FD4A698F87EAC7F7A023AAD7B4465A2BFF178C8DF9344DFFA3D8E50EA5442C6501BEB60D0E56D89307A10CD177E469341B891733C1E85ED4D709EE8B7CE18BCEFE1087C36D6C2F2014789D1A81F96E5B279FE7D80CC9A49A79EB8695EC0CFFEE267BEF6875F7DE6D12BD7AEC2EEEE3E1411C272086BB97C16E13107855C16F22B7978E38D4B789C871CFEE6E7F03A224CABDD851E4E522E4BE539E4FE0CFF1E21C1AE5DDDC5EBF1B7AC97CF67A0B0B2027FFEEDF31C42F3740E6F8CCAA9AFDD26492FB645E764FF796C8BE07077B7C96134C3CBB02D6C8FDA7AE3C22501BD08D7BC0FDE571A5AA896C6A331D79BBCAF7C1EDB236845A9EB1351275C4564F3A23D6AB7D56C736375828425F8A73E8A78EFCD568FC3332D93FB93A83DFE3475F9728DA8BD2C571BE3B11F2EB2A9F68A851CAA93311F87C8AE8ADA6369847A4873759649D19CA5B0DF0E3F4765748F4D44315231EF7CC7B9CF3FF98B3FFB4337CC003FFF99FFDC180D4757BFF2CCFF495DBA7C059A074DD844A8EBF72308A4CFCEB11DC8162AD06B77B4F236C27E171E7EEC7DA8535958A6CEDF71D7DDB052A8E3EF6ED80E41E436B6B5525CE53A382A17DFF73FF808CE584A533178AEDF8153A74F43A5BC69B443DF9B9B1BB0822A23EDA563E7EEBEFF1CE4D345E33EE878EBF83634D64E7194E86BE7CAB512AA817528AD548C3A2394E8F59D6350AB6C186A43D429A34773CA80792ACF20F14AE506948A9508E6B17C3246E62E95509D6D49B5310AC7450A7B6BE394810E9DC10134EA3BFCF768D483572EBECA8FCF3D70B65F2E96EABFF2F39F1EDD900A40AE7C7FAFDF4B954A4594D811E7BCE150874001831E493BEA380171BD10EED022E5868980B29E518F0CB5C17010ABC3131B2613AB8F3E22011A68E8860EF47209DB5427EA23EA879061E28FC3F6071A0CD3134C06430DFEE53554673C8ADFE318C74A46973DAE2EDA15942165A80DF9194F861CEAEDF6A8AD893F0A09A9EEA983F00D2CDAE5C355896C6B826A96E698AB0DD91E19ABA1347B844839AE1A5AADCE0AD2EEB11B360211369F18224C968A2B28697D0220D4452328D58AB0BA51E5163C417B0F0732E80E60FBF816C2D7490EDD742364ADBE76E10A87CAB5F53A1A2D1B1CB6B308677BA81AC6C8F1C5321A378D0A4219C233B645CF1EBB72E53A6FA3586AA0BAD8E230574623ECA5575E872CF2ED4A310FD5D5B2501FDC3B1842FB609F5BF1D5B50A34361BBCCF2CC2F0C58B97858EC46BD7B1BD6C7E07FBC940B38B44458F829867A54CED95B86A234B7C77FF9284E514D4B09FC6D62ACE41112E5DC53E3CE16E911A29A211BB8DE31BA05D706DF70D4990A8BD14DED3B5EB6F709DADDAA371D37C5E6FB690885DF9DE059F433AB517A0F57B7D8F620713A33D9AB7EBFB17D1E24F7322A7B9D79282EBBB1784A7802A288DAA40D806233A4F76C0970ECD00BFFAEB9FF5B091C7C56B5D4550A35A2CE104A07B83D6E65E6F3784BA336F3F87EED9089ABB1A9C2234DF76C71D5043882203ADD58CCAC7A301DC7BFF43904222F551051CECED87F078FB9D77219C3644F97E2B84C0CDED0D64960664A87FFCDD6AEE86E7EEB90FBD83FA263FEEB6A89DEB42351D3F06D56A8372D879BF4DD91E19ADB7DF73162A85350EBFFD3E8D41B4B773F2046C344E4815D0460F006D186CAFB65A8172710D89570DEFF1605F40F7B1DB4EC1FAC671547958A72FCFEDEDE1BD57A1826A238F567D382FA8269B7B4D58DF3E8EF7B9CE8D3EBDBD12A98DC60E27A8AE862018613B15EE09104DA86CECA37B9D2F43B158E648438C4B88CB1902E0FB918C3F71681580D2FF20927D8B60A52FAD66144F1302119AF8FB7E7D6658D30309CD6992688273AB7C7595DCAF5E649D6B6D920F3DE46A43D511B0CD5F48155AF4FDC8ABA073811783662AE706164A83EA577D46DC73F043B533D0C6409E0349A6F21A54FF64ED937AD055CD407ED33D8E4603D19E767E8C563AE5EA8BB6A24F178D350A7FF2310CCC3A1384776A6BC4613E2AEF1C1CF0FD985C6DC8F954FD2A8F4605A148BD8E2693FB7FECE3FF72E7D0084010427A9FF47FBB2342CB43F453098E57D1BFDE4098CD6609B64AF0FAA52B50A9976075BD86F02EA0892612E985FE2A1A36F934377AD2E92DEE1D1410C2CF5FB80CB974162AC8F1ABA41E78B02785708E1281F09C2F22ECA3C199CE6C713593C5CFC54BD778A0A78C2AA8BE5EE5019D0C62726730E6129E45585E2DD66123BD2E023868F15F454F83BC83C24A16AAB54D6CEF18FAD919D86F915E1F236C7A38061C7BA3C6DBF35055ECEF5DE7AFB9A136561BD8DEE63A4A5E05C77C1506A90E0FF6E48B591CDF067A073B3C204BD247904DED91C158C7F6CAE5125C45CFC9A34D34482C6AAF8EEDAD637BC1640C57513DF8F8ADB79747CF65AF794D30C878CC619DDAA380D70451E0CAB5D7396353608B826B835117AE5E13CC4E01A170DD82827268C3E1AF270FCD00A467CA486072B172784CD04CDCD8ED2ACEECC289532779E0628865ADFE01970AB2FEE973E6DC430899357E6DFBA0134ADAD6B16DA86079C091A30BADFDA8DE5D67EE474B3BCF7FB7505294941D43682E976BDCA512755A420AB1CEDD67CF41B6B2C2CB7B6D259D5DD8397102AAE53A9F1C82675229743D3DDEE6D8E97BA094CF0809A7F6FAA2BDED13C761B546D03C16967B5B1A9008B9456CAB88903BA4FB93E31B62BB5B278EC1FADA717EACB717601B2BF912571BD42F6FAF23C6B7B1B309DB9B27B947A5B7574311A6F9A471F7641D75BF8DED4D54455BDC08ECCB735964D8B5D51D1E9FE041A6DC88475FB98D20EC8027175601FFE3735FA8A13FF93DDC67463F78771F8D1F343E8668BD721710DDAF4EBB052D84A511FAB3011A8ABD6E17A5BD0DEDF6015AA14D3C6EA11ECB7082D360BB619D7D1E152384A049E16DE1B56D1925A417480E62759AE8018C78BD01EFBFCB6194FAA2BABE2FBC867E4F8CAD8D65ADD601F75CC895A22824D914A24E8B8F8FAB2684683586AE1CC3907B268370DCE43676B09F2B972EF1F0EF48AA0CDE9EEC6B84D70FFA6DD95E34BE0BAF9F471F1DF879826C7DEE06FDA1742307E27E657B972F5DE494218F47B41BB54784270F82CE295A903741F73F1A0EF927831D5220AD8848E2A5BC277EF2939F4A2D1C07F89F5FF85F1F223EA0F8F66B6FBC01BFF0CB4F421E1920ED797C558BC7C1F183E804D995120FCE00C5B789AB1086180EA8582EC27E67C4B791A5405C4B49A5740DF9BAED832E874B5546F58AC5027A0743AC2356CFA82CC5BFA99F22AF934AA78D3110EC0F26E89D8C261C16A93DD197070584E0D67E57AE614463E0708A3ECD080D575187CE8B7AC56A951B6362419385F5C88267D90222DD805BE6748EC64FF54AF51AD6E9F0C097DE1E568154A184E831E4A8A38FBB5CABF260943F09E4669BE87E0BE50A127D889EC3586B0F50FAEB70D0EA8AA7B3C9F6486590814E86365F1B40B5DC4741F9E0F73FC1034458EDD19FF9A99FF8FA422A0075C707D23C729643FDB2CBCB4AE801501CC047A89948C922376E7B15F5D988A26362C0A381305E0A08E385FC0A8E272342C56311E6240FA050AE42B5B22ACA27A23DAA5746A6A16822E9625FF5416DA26435B0FF3A5AF474FD98D71973F7AB545C8511DA1AC4707C5C746E24BE5790016AD80FC5027C5FB647E7D0A02B35B660255312F7E30FF9D8680CA54A954336B1FA84CEC9F10D7A2368ECAC42215DE4657CECD816A14C8579611DBBBD35ECBF80760E49AFAFDAC3BA748F2B850A4756EA27BA5FB4BBF0DC6ABDC211C00FEF778404F3D0135841DD5F08DB5B29E4D1E043BBA398E36A80793E778BE9ADAED5EA0A964D687570310620F78F8C3FF2002E5E167E748AA538C4122C2AD784B8BCBABE8DB0DA0EDD9FBE8CECE5560A48807559C73C57DFD8E106585F8B02D235C4AEF915D47D03BD8EA8576DAC13C818D753798086518EFAE130AFCE8976F345F2ED2BDA98C5376363B87B75438CA16F8E2143A1EC429D13975FAF8DA3B6B12D17A97ADA1870DC69945A7411297C6BDF53B9DEE048C1D590D616C5497268B006A96CAC3D422E8A8310D4EBD1C803747D374EDCC1A55DB53718A4218F0295C27F54E6A54420A98B6AE3C4F16D448C0EB983FF666E15F0FB4F3D7D3F22CB73DB5B9BDC25FBE8C7FF155CB97C0955409EAF7C89D7BB89B7856F6DADC32EC2320B63DDE4A6087DB471EC04FAD003B94B58D6A1FA685D5750FA065D8AC6F964EB86E71BEB0D68B6066269543E8790FA247BA18E93DF6F0FC5BB8598843BEC73ADB10AFBED110F52D118789B4CBCA1B44A9148945CF144B3897833097E089A73A5356480A1D60FC1EA043D927568B5C518F83DF167204CB89F5D45A62175C7E4B562A7F304C7BD0E4DAA13BEFB286AAF86E77A9D313F0EE4CBB4A9CEDA5A1D5ABD094FA611ED4573B4B6B9091D9C07F15ADD80DF2F04A2BD6A639BEB78F19E669FDF6F796D0D061DBA1E151B8AF51851F7EC997BE17DEF790CF6F70F82C168D8F817FFFCC79A732100C13F2D56542B2839689C5CBA720556B279B4DA2BF28DDF63F98D6E4DBE806EA2D82A2E5E113BE66A80A2992974F1CA95827C7BB8AC8303ACAF56E0A0EFA36B754C062C3C315932A1627D9DF13791C807D1804C91E1DF85B5A23C1118091A8DFA8A5A260B1F56CD1F5F83FAB5400B2944149E9F402FB9A20863018865CAA5AA7CD8E5448E71C217A68AE88292F6A409F7E91CA910BC2FB2B8D3E99AB8275A69E4E726A8EA0A901D045C7D857324CFD15C96CB79F1300DD51E9EEFB4BB50A1DDBD7E4A9B23D95E2607C36C005984755EA6B5974603428C7BC2999ADA2357B1847603F3858065D2015CDFDBE56A1BE9921AEF4FFE2AD974733100B90EB55A8DD28BE0A597BFCDA34EA4A746C391059728F9A9BB709A72689C1D8490AC60EC5DEB5B681B0411ECC9F3C710962A8DE3E81317C2278E532087D9EF1F0C5F30ADAEB15F53AF5D1368D7B069D788DF8542018EDF713767705D65D0E7B6D3A7218F2A601CC26F744FF73DF44E60E38C5907CF1D1CAC41195D31924CBBBDD3F7DC83705E0D2D7D1DEA1F78F8514073219A3B796EA7BF83B0BE0693DE24A686EE42C9CE66AB22EA28CF6D1EDB41FBAC10AA85EA6A0D2E5FBEC643CEB4B278D06A3F3E17037CF94F9E292303FCE5F5B555EEFFBFF2DA6B42CAC81083315AA301373AF2F9141A18456E81769B3D1EC449178BD8611E25A5C20D2E22C6088D12B2BAC33A9522ACA22EA78DA6640C8A18B648C9A2B689BB5384CF3C1F2E6DECFB174810C4B26CC5002582F07DF2F19758020B8C57DCD2A42849A5E04C3A5544B709A50DD1A986D679A737E42843CBC0644354CA68748DAB7C557180862FCA03ACE0F585420D6A7E89AF3B104A7154B4DAABA03EEFB4FBB2BD4CD4DEA4CA73FFC800242F83B797A70496121A74E86DE0F83C3FE0C136DE1E47830A5F93A00C2B0ACBE60BB44C5E8132DA5BCD832E9F0F1AF30ABAEECDDE015F86DF44B57AE9F2D51F98CB084CA733EFC52944FBADC0D7B23BC8D1F79F3D63A52E99A94C6C07C2081493CFAAD1539AA2D52A2FBEE7DFB38D1247BEBFDD168B8A98D6766C038117DF47A5C6AE32F8CC7A2CEC6F2B364ECF48EAF720BEF75FA83273F780AAB6A57E8307B14D085E7CC317B36ED0B3F6216CDAF5F0DCFA31D59F108ECDE3C7A14B696FD0804AA5BCF373BFF4CB67FFD93FFAFBCFCF60009149F2E7AFBCCA7B7CECD177C1638F3C7C84E9DC3796B9BB77FD3ADE74372149D3B5F123F9B906F666905A7D15A5B078637B2112368D3A72FCE31B44A7EDB84E4862A5C4966FBEF0A2A06D2643B49DC5003C7498D0B82B3BD775CEC514F1146FF7A6871BDB60F1C5DFFB02BA4AFBB147D0B87ECF5BA67EDF7DEF19F8C11FFE6B47B32964D174F7694C113107D9019F4E64806FFCD9F3F76632E93B92367EB8D3A61DCC70449B426C29217D3F409D9792E951B68BEB7279E77BC894F87478AE5D7ACA4EA1241489A3DC9B8422EFFECC93BFB1F20FFECEDFEC3B1940483F9B83E36630C591EE148A6E7E6F779F5BC58B1075DE0F198FB4B6900E1960BEAD656EA67033C03414393C5318ED16F0FB3D78F045270350F6CF8D6CB0703EA8210E4353206A966A71ED148ACA5EF9F6B779BA9A7A8AC96109ADBFF144FF1C349BDCBEA856AAEECD2133B6962D7FBFE15C5BCB9E7032C04B2FBFB28206E05F99DB0073318536116F068ABC7EFEB5E861967312DBF59673FBA3CE1173BD71FE3C3CF0F673B375B7EB29278E5D448CC11C4C715351E471A70D80BAFF3D58A130DF7EBA04E698014D4B650AFCBE7EFD1A2792CB888BBD9AD67A3AE93C6594D3F7E20BDF84773CF8D0D1EE379CB6197571A638F3D9DFFE9DDBFEFA873EF89AC100A4FF6F7887EBA21332278A24BB44A66AF9E08F7C8847E26210EA7A76400C322DD5A2AE560F6094D7ACADAD713B006630F9DC423363D7F292540BA1C07F3218E0F79FFAA3EDB4E7FD3153C1110A59C8A082471BD36470270C4878FC0F3CD5A847EBD81E8FE3C8CBE99CC73C554A411EAAC21F34CBABAB1DC49EE84B3E7E4AFC52D7C9DDAFF23FE3DD89F6E560F8791162F23239AF54C9A9608E68834551244FC561C45283B84F6130E861293118118AE43B743D31704F4CB007CD66D3D3422E20321AE4B48989F6C250989C2226D328A23810F3C43DF38950774E7310B62D13123C7EDF81783C179F05508410930A81B84A8E4F5C2F532FA8ED405CEEB1B077EF7D3106F8ADDFFEDCF7E0D7A9303AB6A4BF65B51D6FF6E6F5E3CDEEEC16693BECE2DE0FFFF00F9A36C0A5CB5752F34CDD436F3F038DB55578E995F3F0EAF90BBC6CA351C7F2B3D0EB8FE06BCF7E83121078F9F6E63A9CBEED385CDF3B80175F7E753659BC43DDD6E224F7DE8CB6932F74550932015C7D026D9A633EACFD490D2ACF95F8850F3E7015DEFBEECB70F9CA0AFCD6EFDC89768920DB439DAB70FFA0092F14EAF0F5F2D6DCC30919A0D7EB79B3871CC0737FF675B8F3F63BA056AAF1C450BE25A9BF0BE9A005274E9CE2A04D8908F4B77FBD0DCD0AC0EDC74FC1F3DF7A090DB4117CF76FCE7DFE993EB4BFF22D08CE66602FB709414BEC301E0F2EC2EE955DA8D0C2D064150E0E725C555CBDF4025C6323782077199E5ACF833F2792840921773CF0E845FCDA996F78413C9FD4538FBB30E3E7298F56E152371592FF22FD319C3F8FA52C2DA19E1E6210123294F296CEE9664FD2DF375E79EE9977180870EAD4B17F7CDB89137FA95EAB3E9CCD644E99ADA7A60399177FC4DF42BA6A9147DCA63C3B94CB6E44EB7B72FDF150C49196DCE189BB78DFDE94B8B6E74DDBE7C3FCC170F4AD56B3FDA7AF5E78E3AB5353C23EFAF14F9E6281FF7E14F2F76345CA2459BDA906DB61D1600920F2561ACBACF14CDBC9EDA5EC7A1EE5A43D8BDF7F886CF6F4380F5FFEB99FFEE9D65C3981FADF473EF291747DE7E42338B0C711F8BF0F47F1087E32371DEA6E68BEBD9BD853BC495BCAAD5404FD5B252130ABC3D8B59E199E3042167A6882AE1B8D065E40CF8147472F972F04A9543A00ED7C04C0DE79A4E81F4190FA527BD2FDF23D5B5B079FF8C427189B42E41803783208F0E10F7F58A6E440AED3E9ACE4F3F9125E5B49A5B2DB5E367D8252E239FECAB8BBC773F43C361C0EAA572F5FFA9484A4CB274EDDF6AFA5674C4101A66C08A68EC3404210EA358F7277E4790D25198BCA28E98756FD3CF5D03AEEF4ABB799F063995AE289A7270BD73860D1F900C27AC22D67625C344C2F7C15A73A2F9FC83117F730C66672A40826CD57E7EAD5ABFF7032999CA3E36AB5FA1FCAE5F24B7A1D392E1F7FF7F198A4BC8DE3ED8CC7E37E2E971BECECEC8CF7F7F783FBEEBB8FD90C113200111E894E4A243D1C0EE9592345DFF74B38D01A36B686A71BF8A9637919EBE42C2BD0504D588F3FAB0409C4F0335C2E68DE22C69C45609B9966318D889B255F83E7033C3F467AF570FE69E7E93E96ED23ED9A58DEC6F26EBD5EEF3FFFFCF3A3679F7D76A29820A3113F8B5CB25228142827B0861CD740E2D113896AF89B884E08404F23CA78532C1F3A45EBF1619C4AD4393426CF2B75F2193DECB0ED780B1864C18CD773BADA7294B145EBE8D31E5808268F5358BE82DF69FC1490116A488B0E1E1FE0F7FE6030D83B79F264EBF4E9D33D2C1B1313700620C93F3838C8168B4522721D894F15572467F6F133C24F332513FF38F0CF79430EF533F3C6AD0966F34CB2482E352683CD43605A3D94D295742D4B8A66BAFA50AB918B8CC16628D7DCD9755D0C4088ABCA0271017D4D32990CD1CFC76312DE1C32C20855C1446A66162200EAFA42369B5DC10A59BC08053F4D1C35159A54A753741D5BB43E65F5DCACB666D5A5DD44F3B43DCFBDE2BC259E57C1B179EE655A3BF38C15E78FE96DD1A7D7EB31B41F7C14F4C9EEEE6EA8060C1B00B9C27BFAE9A7397EB7DBEDA5E8EC4AA5F21DF7ECF88D8D8D5BE29EC808A46FDD10FCFF013D9216EC86CAAB0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (67,1,'Notebook_(24)',0x89504E470D0A1A0A0000000D4948445200000018000000160806000000DA7D5C880000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000041449444154488975544B8FDC4410AEB6DBAF190F330A210A6483088F031220AE48C0250838844B243844E202FC037EC1DEF3173845E2C68548110214E58684142910A415E288C2E3B09BD919DBED76BBDD7CD5B6871976F06E4FF5C3FEBEAAAFAA4B38E7889FEFEEDEB393C934E8B0EEBA6E6B0C6BD7AF1DD6D6DB61ED76CFF14F5AABF6938F6F448C2B697856AB42AC8A0A1FF4204CA4EB9A6AA5A82C4B529857554535AC62ABFB3385A1B5F6FBBAD6188AAEBEF77E38E26E084CDBD26C960FDE388095D4349A4AD84A9554AC0BD88A8AA20041E949ABB2F27B3506CF9527E4754D67086A7811CAD04B520D0045B1C61C110074DC63908A2DA2E82352BDC5BE1F58378DD947D0501004BD671EACD880B357BCCF000CC66B55F5606A00E53396B48512C6EC21D090833FDCF5B418EC1E4F871CF83CD57D1E2CC0BDDCFB08147463C07F3D2D37A01A675EDB21E97D527B700DA286C1ADDD803603D17F08142D97CB8DB628B54186DA27B1AF92DA47CA964147702E8CEDC7ECCB0147C004A39EBD87DB9EEA1D50AE30D33467C0C78ADC93E49A56EB95978341466D7BD01E8CF7D98EE0E3253D43B03707A5A262B5F660DECB2D298C693696815B00FC1F383F8C71960080519252104614C5892F379B5B5486F1F30E49E444F25C00DBC38364C7E29779F53E8996ABA20EE22C13B2A3006F498B1B4D63CF71BD75431FDA6A27DB3D8BFF78FE785D9CEE101C1E1E06172F9CFF0D2FCD6D67BD17D61A4A93D4B04FD8C7C0BE75D43A5E8CC0D619D386AA6922308396A37402F2FDB5436082E4AD070F7E7AEDCAB30794A529803A7F834FB4F1B948A7138A42E9E5AA2ADC09E428839C420684F64B1A3951A8B8288A484A49C6B6CF7D70E3D3376E7FF9C50F0113E4F3273E4B7148EC21F40BD00BA759465916130942521B8AA4C03AA5499A500260F637065814C78834A63896C88DA3289014E21BD1B59F6F2258E4F9BB095EE44BB442834B626EE502D5C0FD49A2820C15429144AFAAE07D18711170C291ABD091100211C6D4898E04D0A58BE9E0994B573DC1F7F7EFCF93483E95E713CA2145B7EA289FCDD036349D3B97C3434909A20B211194A793E36396DB93A78868369950E5CBD950CD7242E216525E38BF98DFBC796B2A1E1E1D5DEF6CF71527CDDABE22EC581996E7967E79F833DDB9FDB5BFA17C895AD3D2F50F3FA2E75F7CC997EE584976F38D2F0076E49ABCF3EDDD976B65EEC93090EC214B834A68396C2E78AEEFE274993E7DF9CA944F6D6BFDC78FFE3E2ED675AB21BB602904E459474A3E19B4C29D844E4FB21690AF8AD7DF7CE7EDCB970EAE2DE6B3579099088D2AC8B249CDD0F8869C10C39575C37DEAAFB0F046F04D415D0AE2E26CDA4646C20AD706FA71511FFDF1E8CF6FE442B63F52755C9CAA9317106680212B291B06E9F8F678EF003110B1655986F5CEDED83E50AA1685F8FBC585FCF51FBE850151224F49460000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (68,1,'Notebook_(48)',0x89504E470D0A1A0A0000000D49484452000000300000002C080600000023163B670000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000B1D4944415468DEC559CBAB5D67155FDF7E9EE7BD37B9A979598AA58814DF087954AC03A926A21050D041111C547120084E3ACA5470200ECDD09150C89F50A3246D4144A4A8A54A620A499AE69A7BCE3DEFFD3DB66BADEFB1F73EF7DC9C633BF05C367B7FEB7BECDF5AEBB7D6B7F67745599650FFFDF1D65BE3E974D2DDDDDD05EAAB2EB0772897E42BC63C719C1D03AE6D6ACF84E4A8B587837D68B77BC397BFFF9D9D3ADE04967E511CA5228A60BE289E0074BD4284A601AED1B7022C2CAFDDEC3720A08C45B68CF79002DA1878F7DD3BB0BDD5778B42F542F02B1338034A69D04A81327849055A6B944930BAC4BBE267AD0D5E34C6D8B134476B9619AD5C3FCED376BEC1B6A9B5358DC7773DF7DC27E1DCC5F3B056018940B22C85331F3FB5E4E6CA22B4F062B100591450E0B5281650C411CE25AF210853F0A5B58442E28563691C2959E0189EC777091295A4B694EE4E4A4A3B8FD6A339D477F6ECD36C90F51E7056A089ABA8A10D812F78F16261C15B4524832C8A1A58A72081550CD48E098011AC7DB66DF29A74C0692C61F17DE409F2DE7A0F283711EFCB81492FF00002385280C0A232852A1CF80A68212B650238B6AA6F4B1EBFAC8076CFEC01A2A5B1D45BAB80929AE3402E79C082B78B579696CEF50B2773206A962720812EEC095D79C029A3950CCAB0B5D9F2D27A8DADAFD8F3A4CC7A0594720BA8901D183C719EB949D491C1D20C3E80A940781AADB2B4A58FAC59D9C582A38AF7867263E8D99051F5260A68AB2D2D48812BD9F20B509EE3B2E26CE0BEB77421036DF4129F95B3AA0D4CDB5635C594034AA03D6DB433A64F241BC5000DE220760002A71D90A29E316A160D63A40AAE6F72BB0AD460799771BC320CDE29E22DEF7FA529D9B81B5368369B39DECA90FA0260B2B2E37AE0B8942E73A8269F9768A20358E5F8EE2C2FFDBEA18302F59FDF77365280AEE974165EEA83D7E7679F65FC8B97D3A0A5816B3B4A583EEB400D25AB6C6737417524F8E001B98902BCA882F97CEE324E33C87C36B1608AC396AE830BFCAE2C2B6B96D635DEFBF6AA54693D506EB69115D22E3A9B995A0036B96E39AE02C73D6D2A4E7B4A5496B7FCD69C32BD3296AE6A2D78EB01D388892315A0ED5F5116620FD468510B48EF91CAD2AAA28D03E3C79A005686F862D03E3DBA7E4A934FFA1957C26C100376C3507211F27500BF1C8035609EC7553AACDA0DB00E3C1769C62ABB0E3C7B0015909B78C05B69EE36AE3AD0658E372C4BCF35EAD0D6BF0C3E04A9AEDA9B80670F108536F180A703A5D13A005553C297CD3A585A37BCD0B4B4E2D2447BBED33E63FE37F0DE031BC500D3045F42556600BF9439A4B2F54BE0748D327E13F4F421901EB8EFA7FBF297E05A0FE03EB01985A4A5825C142E8F5BB09C49743DAB54015881D5559FF11F2E9EE7FA4383670FE03E4065FC5A056883E20F16AA7F54F5A5550FC82AED2947151DC0DB71DA01AE7D7D19FBA5F561C05B0F948C6DAD028BC26E5285F34000AE9B99C37BA40ED27E0C5596B63CD71F19BCF580E1CD75BD02987D28E8C8033618752D1875C30396DFF56F5C1D64C6C94AD7FEA83FF20065C68D1488E318CE9C7D269C2E344E073098888FE04ADCFA1189FFE8AFC69B705C02CEF8DE0B762C349E7DCFAAE7384919DB060A20CF8480284DC2B1880725F031AA018C6AC721F571EECCA471358F50569CFFC0D1472AFCA79435DC3A05EEDE7BF07751969FF71880ACE88F578C5DCC78EB186F51E70D6F31BE4C657163411BDF0910C01837BFF246607DB85532F187B50A3C75FCF85FA3487C82DE6C0DE1ED85F62FEDEBA8494FC2F6970001631944C6D9DD4FA01E1144252B6850204A671FD7E55F4A4D613B4A4F85585C5BC62BEA99E147D7AEA5D93FEF0EF003A5E3DDB8CC73DFDEEAF7214D925A6CD4385F1B47963E24AB5F18E407A33107A8A71069CF638DF324CF058ACDD18B5FFAF4CED5AB57CD4A0F3C7D30FDF2EF6EBED9E9B75A1047D8898143A53405755128D8DEEAC2603886043BE338E5C5F356866587846E3B87F16486F32248D294B358DEC2FBDCA0A2E421C1992B41A595466346985621E66C4531A71161449C8C62DC7B0A5C23C38C865E1606DF873814664635E9BFFDEF7BE710EA9B1E73545760329BFDA095C5B82C400781E55902ED2C830C01A508AC93E79088185A282F31A546961D7C4498E33CFA7E88059D626A10D89F21184D60886B3846A0C27124AC0CFB80B0A38CD6C75C8BA0F1DD6504598277118140598AE073C490C402B124301B4F7F58C7DC50204FD2974A7695807EB7CBE796090227CB4528A3D21A8DC532B20E8129B5BDA7E82D819C1571C47B81408091D510E582D88A32CC6E4944C7B490A1C2B4C9918CBC4DB2143D4D4793E4710C189E4BEF3568FD04E79177F193F69B2B15F8ED6BAF9DCDF3FC34EDB0A4BD7216C3E95C4EC4F8449F97112EDA428A91F962723DBE103130580290B88826ABB31294926D9EE2F1E44152A88D6B185E83E60A966569E2D20552334BAD0C07283E2504DEE1E3383AF593575F3D76488176DABA4CBB2EBD607FFF313CDE1FC0DEA33DB87BE736F373EFD123984D1730194F60341C0055C20F1E3C008DB1313E18C3DEDE2330B2B4321C7F707000D3C918ADA7E1FEFD7BA87E0C2394292C5548B6FFF831EE2311CA46E8E99265B3D914AD1CB38C9C665C4943734B493B3D50E210FDB4F7ED430A6CF5FADF9BCDE64423D43E873C6F43869C7FE6D96771B108033247F72790201FF3769BBDD46AB7D8F4295A2E4D737E6EB73A4C170A64CA5211F2B985E3C99329CEA56C1C71F6229A952CA33E92B5F099689AA6943C0A3B374FF81922633D857FDB3BBD971B59E8C68D1BC9C79E3A71F1FEFDFB40FFDC4871521C277CCC8E020ED40C5D9EA22CDD3A0ED21087018E1DDB0152BA838A50205242691FEBC1683C46598EE050E9A9B4CA73764A28C930E5C84B31A527CA3CC2CA68AD946243A74415A61F15973417E90DD3598195C21C4E9F3C79BEA140DAD9BAB0B3B3D53A75F224CCD0EDAD3C63E05AEF32DFFB0888AC132539C783405E129F39287171CBE198EF14843EFF531876FB435C2F45CAA19DB1AF9553BA9DB28CCFA93815A30CA949323242C9E35A309A4CC2384A103BA86BAFD7A104D3FDD5B56B9FF9D92BAFBCCD0A60CABCB43F18C277AF7C6BA970AB6F46E6C8CDC8B8316FBD710BFEF2E73FD9F2D9D8CD88EE435762D3D817BEF2227CEE0B5F5C39BF5904DAAFB043EFC271FBC303E8669D6F2074AF40EB925905DC2D4477638E005E53F23F18C883C12094D8BEB4AECEFD253CC4206F5F681D6D0C7318F4113B3B29F04BF1B73B774E25DABC43291707095B81D8B4571A4EC6546E90CCF695B6FCF0322C05ECBD34E2D6CD9B30DCDF771635FC5DC1DF05B5F689DD1370E1E20B4BE0CD61659E5082386316F34E765C9CFBEAA5F3651485ADB9DFEB726AA2CA31C1BC3E99CC51D681C783030E362EA09AE514AC6892E6AEB8F397B38BB02518A91C71E9236C9D6EED465986EBF4C54E217447C39971A4B7B7E6E2C17B7DF3F46C18DFEE1E971C1038A3DD4ABE96BC7FB03F3C7D6CF78D5EBFDBA605B496895D94BE8F3198B2D44CA7E36CABD79D3B80E5066A845FA31AAE8F17ABE54E61C88B24D60B19E938D3A311EEF3EDB67CDF143966BC39293B180EA71FEC3D1A876AF4C73FFDF9F3268ABE9E08F112BAFC0C97B3488FF1F8A0D5DFDE99FAAF03FB725F263B8B05A0411A9EABFE2559B5802BB821D4A291B0AC9C8E471DFC2C15FDAD9D7189324CADF770C8EB5A8BDFFFE6D7BF780F1CBFE1F2E5CB39A6CB4F61B07D1665CF535CDB45CBB8288A3EE6E001FC1F7EF47EB69710FE40888E25FE85D73B58D5FEE3FAF5EB1F24D47BE5CA956DCC107BD8F13A5D98DBD912740A40CF9AF67AA0F23A096EC73EB448DC908F46A3F072EAF372BA0F8743A8B7E98E3B6EE3CED4C9F3128DC96DCC687CF76D4CFFE5C3870FCB5EAF57DEBE7DBB24ECFF05DB589B61037CD4180000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (69,1,'Notebook_(64)',0x89504E470D0A1A0A0000000D49484452000000400000003B0806000000CB8C8CDC0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000011654944415468DECD5B7B881DD779FF66EECCDCD7EEDDBBABD74AB22D591BD98A2D45D8726A9716424A1289BAD01412421312F2809842FB4749FE0821500CA5505228D4C550681BD3FCD3520A2E694A4B6DD21857D84965C54AA4C8B6B4D99776572BAD76F7BEE771CEE4FBCE393373E67177EF75ECD2912E73E6CC77CE9CEFFB7EDFE33CD608C310B2D7C51FBFF18F06679FB16C1B0CC300A289E8A272281FE2B2782F9EF1068ABEB0AC68557D440FAABE88BEF03BDA5852E392034BFA0E39044100E572F5854F7FF2E92F6579B5A0E0C206CDCB977F040FDC7F0C0ECF1ED198D519D207347CF092B984F12CB3E9B6E3315BCCB8DE7708AB6BB7A0DBEDC0A90F9E6916F15A2800CE187CF8DC5370737E01AEBF7553D5EACC251F8B98553509434399E54A308A59FAC715939C274C0D4558385C21FA58B8ECDB46141F3F3627781A59000C7B0A5800B76EADC3A38F3E540C2D35888871AA6701C1CD176D033F10D0A332C38F8B67AAA7F701435AAA97343E3D131DD1631F8CC93E98CF54FB40B42126C47390DC659D6C4F772EFAC21F0FC478CE3EFE6B7068F62094780863218021539655825AAD3692BD1263BE110018917D73E0A101262A95E3C70D13EB1957EF70A03C8899E3B1C07C29B4F8A73D2B814642D37F42C04124C08446084229C1E1E32080E0828CD1C0A9BC97BD92E47DCFC341A210E201CBB2EFFB09233E69DB8F99F5D5A0E51D9FFD2C631A92020D3D1183513D8B10C4D20208985004DD9932AF910420E0CC6463925ECC6C81A3928C7931B392E1B41062867DC968A0988E68220D927058642A7E5ABBB13905416C42C9B382BF32151D01A44429203E0E0288984B049014F5F0A539259DD9B81C09410D4E6895EA844D6B08114C44CF7E6CEFB1F68B20CED2752CD27E90F809A6A381CC8B4B04F0701C0190A756D00F221348851D5050F6632DB358AB91A675F8B3944D4BA846F5FE707BD6A09ED4B358B84C738A4CD3BE14028B191782606338C19071051F2E3AD59D20173695D8B3AFB497D6BA5FE0C8F6603628D2AE0679DDFB6799CD685E1742A4443E9E13948C4B5F1024F19673CD7E75C635ADA718925A2621F128140AC61254140981156835ADDD48185250C45C221C96304F8E8F820FB50DD97826C094FD042222802A4BED92A3F22326E2F0A5435A693003FF34B3AC3864A5EC3A613AA649BDCB403ECBBCCA5184198FE30443955CF0304CEC2890DA968E8B49FB2721F84A43E259D56B4C04436D39EFB1F5F0A53396D57E9CFC28E8F39420B8885E5A4893EFC270CC4C50C5D03896335FC24C695F786DCDA675ED096DC7E50266B38CC719234FC33F622EFBACD3325D080CB293BB502469638741163BC1813B508CFBCA0464E6E6FB69CD067A28D2ED99B31CE4130F9E81BAE6CCA2B436096579A80BA6F970E6A5098012DCD82620A5ECB99EA6E5248E8B4164851067632C1FB3335E3CEFB915B319CDCA2C2EAA67855A27018543201E4666CCC79C0CC9461C5CCF958C8AC167E2B866E7A94424C8DAB51EB2D2F13B6222CAE48A1C1AD7CB3C5FB7EBA526766321808551FAC8C01B7871D84A2727699B4EC767960965413CE820E7C52386823D99660ACA3AECF7BAC2C8A4C772825116A51010DBAE9697B3CCB434A56DCDF6F54425501E3C1DC278AE2E7EE62C867EA2F94400A35CA172E86C1C13887D000AC0C3890E0B58719292D126BDE7713DCBC56A1D01C2B1E90CF3B420B8A6FD94D615DD38979E178C6502D4C873339A150C2AAFCC932968948DA534AD249F4A6062F816309C6152178044001FEACC7645007B1708883518FA99D95690C4E1A2EC8CA773F304CE2ABB64FA3D6FDFE259094087BD10C4102DEEE5052432C7F1013C9A406022E4BB5A36C652713CFF2B0863997095D7384F79F68886EEBAF6DF1DF33211928A1C270CF264C09EE7A76D39483B3096736C459E3BE92F9DBC24CC650522EFBF1AF37118A4AC968DB526C8955D9313C499DC1078A7B51A79F4200DE742E635ADC770E76987C7A500C25F85793D0C8EE304E522825A0F200470B52ACB8BE3B4F4B259046418CE6A387EAF0B407F9799D4BC6B00842A7719733D20CA03FCC04B79F38471A5ED4CAC8E53569ED874CCA85E97D5BC629A84FF5E31AF87C181DB1F5D009EEB6A4ED0CFD87ADA69C58C6AD0D51D9ACE645EDBB23ECCD8FBB0BCFE5D23001538E8BBA30BA0EFBAF1828898FD65B41F331E33BBBB4D739E61BA480891CDBF87CCC7D361FC5EBF3F06020694FF076A49999C208F4C408FCF19EDB2226687084038B7B4A37B3F988F5684C88449A9A30B00A5255784E48248A4F13003EFC4CEC3BC7DF3BCAD872901A87228CBEF07F3FA6CB03F8E09B883815817B46D078E3F781240DB18496D5B67373FA34D4CED9EDDB4046D733345AF6336F5ACEB3283ED1C5D86062FC334A1D7DA01771C27D843B8944C43F66BA81D216D1062D086B6736BECB1451E9F07C897F73A7730CE1984EC06AE5EA64DD7D105D0EFB51DCB2A1E706E6BBA60DBAC88590853DA1FEDC005A4CF06EC71F822DEB582CC76B91040D01E59008B0B2B7F8FB74FA5CE01EC79CFC37FD4FBFFC1D53543F6AD910570FAF489375A3BAE8BC94839660E7449D3D8433A3E13868A0B55A1DE84C939072A1A618C52D1D8503DA82E8D10D21BEF4AA6A2B7F8348211F230E540C2E8B31118B48189021D093024ED2BAFBDFCFDA5910530776CEE8FB07139397E928168181A6A9446627F61E1719930733C2647A79D26093375D9E33145FD696312D148FF8E0CADA283CFFFCE673E7FF5DFFEE9BB7F3E920056D6D63FFBF68DF902A84782C821425C8F7DE83454CA65F9F1226679916078CC080FF342C86EC92F2EAFC0F64E6B6C133A74E0C057F196138091EDE4DBCF3F3FFBCA2BAFAD2D2EAEC044B98269AA0F139355E8763D8CE7AE280F0626E6031ECCCC4CC1BDED0E1828E992890C986541CFF15DB5DE104BEA9CFB50AB4F8AE48A730F6AB5090C49985BE01CA3522361D948D703A76C41A954837EAF03E57289CEA7882CD4B2489326BEB390AE0F56D901BB54167425A7048E45E3E923EA39B6AB8B0C76E0F5A15E9D04B364804F93B9904167D00DCFCE3D3AF39DEFFCE5B6CEAF998384619D773D4F986DA904303959A7608A03B4617AA60925AB2C98AAD62A603BB64862CAF8EED0EC213940BB0453CD29B1214AC76226EA55B5AE1F40A55A1186ED7A03CC314AE2084EBFDF11266BD918AF7B6D4441008E63A1900648D717E198DA4B3A79C426A243AF80CC77051D9DC5A1BBA0C3B17B580EB19DE7F769890BE9060673828F67F9CD0920F0D9A74C64D8B66CD8DADC869F5D7913B5DF8795C52578FD7F2EC2D6D636668A1EDC7CFB1D58595E424D86B084EFE66FBE0356C9868DB5DBF0D6B5AB38A736A1B5D5866B3FBB8A032AA1707C5878E726301F132CD386F5B575E8767A683213D0DA6EC1F6E6164C4C34C147BABB1B1B50AF3590CE81D59555146223A62B9916D24D235D20CE204D4F1F4244381060BB99E95941E7A3F01A8DFD601A657CAEC354E3200ADB824EB7FFB95D4DE0D9679F356BD3075B2FFDF70FEB2D64DE2A99E8453942750206BDAE9068B98A6584B689F5B57A1D3A9DBE2837671A289C2ED233D8BF7F06D6D637B17D0951C0056A088A26C1B45A450D7AA23C315183767B80A3E03089E56E8F90E2E3E0B1BEE389B5496A6FA3297A035F20C0761C84397E257085D900948509D9B681B4653193751C1368FA5F2E57C14504D856053ABD16DC77FFD19D7FF9EEDF368722E0E4238F3C514591757B3D013582E9FE7D286D842CC1BC365115766922642B55FC98E70A01952BB65A29F28559942C53C0B66419A8C90AB6F104CC2B958A985B1024CBB60514A6E81D099ADAB9839EA0A3EFD2377126028E6D895365B43659429B3631B525D80BB3B1A8DCC17E7C1C5F19CB3D44B02B1CAB89A6D345A64DE463D097F4784D7DFD9BCF9E1A2A0094D48509D26AAB835005585A5882C5C545340117AE5FBB0E3FBA7811990C61F3EE3DF8E94F7E82361740ABD515EFEEDEDD44060298BF71136EA079102CD76EADC115A40328C1F6BD6DB8FAD337C5D93D9A9BDFBC7103DA98A39B680E44B7B6B28C4CD4906E07AE5FBD8642AD81DB97FD19D83EA223DF4030DFDEDA81AD7BF7A086CE8EE86E2D2F4315CB06D291D958388F714A55310D6E4CCE888D56EC088558FADDA126F0BDFFF8AF376E6FDC79ECF9BFF93BA8237CC8B357EB6584B98B5A02684CD4E1CE56076DD3440F8BDED940EDA046511160DAA841B443725A13F50AECB406386874A2889AAD9D9ED05E89B2066C436829617B07B546E640DF99999E828D3BDB82CEC60E3D26F327744788245BF806EAAF8A91A3D37645B9D99C84BB9B3B0241F46C62A410A6866320A7DDEFF9883ABC0FA443DE3F7B101E3B73FAD29F7CE36B4FE410F0FD575F9D6E4E35CE8A188B9E9D60EE6098F17D860109E14B50C47F6628435EB54C83EAA3F47B08B5369A8327CA9DD6367EB08FCF03E8775B88248A280C5CF4216D7C47B02527D5EDB4C45A031A3DD6E18011F674789204E890447920DA552CF243A1A203A8A0A9909F20928A63891D6B934C8A2A68190DE970A8D89FA433C47238B6C57E292C379B53679F7BEEB9722E11AA027CECD0C103E6DAEDDB5076AA08B116DCDB5C87E37327D12BDF817B776FC37D0FDC87B6DA808DF555849B05070E9F007BAAAACEFE6168C430471BA9DD0E6DA6D004C480955B77D4969AA4B9B3B1191FA9997B58C2FCD6CA3A6C35EF4265621FAC22CCB7366FC3A9338FE3F73745F9D8891368360CE96E63289E44A73C03ABAB6BC2A41E3E4D7477F187741F3889FDF948B70233FB9A684653B0BCBC0AB3478FC20E9A4C091177E4F0ACF58BC5C5DF44965F4E09A0623B170EECDB27163C6A75071A5387E0FE078F52A68ECEAF06274FCD21C41C0C255D98397012A15D8736FA06D340E9A2D7AD9955B228841A3A2AB435C3300514B180D0378453E52A5D95A921174EB0D36EE300F763828442DF6943737A0E35FD9038555B43F33B7EE27E61023D74CC4457AF9149B5A1D19C83871F79080241771885741FB673A05BEBC121A2C3FC630BC37063FA042AB42C4C6272AA219031D568FC5E2480D8075CBAFCE60A0EF06894F373FD74766ACE9DA4B7310D6472F4ECBA00DEFFFD7BFF2A92A350E5EB515BB922A4BE0932776F341AF091DFFA58E67C72C15C20F36D28A8CBA6D56ADC57FEE0CB5F381B23E0CACF7F7EDA719CA3431BE62743BB0A263BF1E9F707B0F08B79B1C29C5D1B4CAD13AA09CCF4CC0C7CE2C26FA7D606C221DF8670F749577A8D22AEFBD00B2FFCF3EC17BFF8E9752180AA53B9100D20ABB9DD241AC11A86082C9AD1BDF3F65B98F0B487329E3D38B9B3B38390EFC2D454B358C343668FF93FA228168CE8C70E3F81A4FF200460D9F60548FD19CB08D3581802C98225AF5AB5061F7EF22979642D1234578BA9D1B4552C90CAC398627B1ED152C6ACEFBD9856170906ADEE3C0940F880DFFFCA1FBE8EB6585387FDC98925C9814AA10C55872E2EF52C63A9A411B4862052EF0CFAA7DE490334C148F72B8AAA5D283E2E461705E8B8EFE85BA69199031BB27D3C5C6D0D959203EACC48E77C3476EC77FBAFBFFDA79F140278F0CC931DACAFEBDD9E39751C96563731096AC3938F9F86D72F5F1309C7534F9C851F5EBC04FF1F2F77BA03EE39068D97A6E0A3BF710B36361B70F5FA247CB4B5040BF503B060D574F2DBF3575E9B150278FC23E75F78E0C89163968D71A4E8D211110AB5868553C948BBF90DDAE1CBF606FDDF73923AF43276EDBFF8D5C0757B4BCB6BD72FBFFA9F7F1C87C1679E79C6B627A77F1D73C0F36824E7D1161FA3606E18E3E8C018ED8D3174B491E968E56411CA805858A15205A4E8840B917FB7643B654E7FF207725DB01F1AC66BC8EA0F30E97CF9AFFEE2CFAE466B9996B409C33C77EE1CA6BECE8F0F1F3E3C8F9EF8257CFF9061597583CB0F743AAD53AEE71D99DEB7EF6559975F67E7C5CB4C9A7D4A5B55071EC2DDC4611889E8D5E2AB318A6C0783C17E9C003DDC6C36FF17273EAEDA1DF67016B98CF7F95AADB68CBC5AD86710756A3CFDF4D34D24F800CD88717007F1A58DBF52118E348713AF0867EB2326B3751A337ABD91E9AB4860B93ABAEBCE2F6A4775DA891269AAA6490BCA5419E0BB1ED22CA270E65F7CF1C51D432D6F13024A939393F433DF4F4755A954DED7CD807ABD5ED8FFC2C2829CF354ABE1C6C606BF74E99240C02F011020422FD5D773700000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (70,1,'Notebook_(96)',0x89504E470D0A1A0A0000000D49484452000000600000005808060000000AB1F2F80000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001F924944415478DADD5D698C1CC7757EDD73CFECECECBDDCA5484A3CC44B0749D99605079102251215DB70FC830E8200F963C07F0223700003091C245110C53F12C08612C4B0013B896DC889895C4E62C431104970E40396E54B914DD922295A2477C93DE73EBAABF25E7557755575CFB1DC916464A4614FBFAEEAAE7EE7F75E55F73A9C7318F4F9D60BDF7B31934A9D94EDD436D8515B79CCA407FF70B9D5FAEB6D78F04FF2569D9EC7B73B390FB7C69C702C3E366BCCFAFDC7B6F131BAAEFBDDF7BDF7DD6706F1370D433EBEC7662F5FBA083FB9F06378F0971E865C363B32B381EF90496360B63136ADFFA8CC1ECCE43E63D4FA775A6DF8FEF79E87C3878FC2DCE29ED961FC1D2A00CE7D58989F878DCD75C8A4D3C0181BC2E4214C1AA235D179876BF460660F1ADB28CCBE35454867333051998442690279C561D702A093E4F305B8EBE43D506F3493B546676EA246C3D01B81214C96BDFAB98F24A6C3A81A0DC3980CD698062BC2A183C7C0719177A8BCBB16808F1AEF38002F5F78057E7CE1A7502C16B521CB3B4CB41DE81F5E826362D07AFCD0F721FC6D1C37FB3806F3A2E31173B9A1D1515FCD5AB473074C8F98AB9F4FBF8669193CE201FE4E673270FCE471989B9F06E68FC50218B0709047EF3C04878FDCB123F7A1981DEEFBCCC7B8E28BF37ABE87830CB748A32D1DF3B00DF33C217CE6139D814FC77CEA1B6EC37E9CB1601F2D353A167DC5F899EC1F6D99D68673161E937DCC73D0BD8BF6E1B582DFBE18BBDE9FFA1D3C7C1C8E9D382AF65329066388015C5C584A3F1E03FA33DB761F92D97EC86C4E4C0B99EA899B954CF6C53EA31BC36342585E242C9DB98130FD18E3D5716DABE8FA6F1E31556F2798CB4201EAC7C27D298040C0511FE081DB16EDF99862003878C280B3A6000630DBF6D18126471A2CF699AFE862EB49C648A607CCF5422110B3230B0A3552B39424E6EB0C17B4B03F6D95F5F82CD27CED5CBA65282118C7B96631812048A0A21FB64B33361E174402E06144A70B2533B93FFA50CC0FB59F06E979A14BF03CC3F43D4F679E17D35C72475C693C33DA2469BCD456BB8DB23EA60B2964226DB979AE98D67316FCD6DD11F3559C61E135C6E08202536261F01216300AD40B2D44F9ED505B03E64B8DF7228D54FE3AB4082B16046DBCD0BC23ABB1DD8ED44A93F9A6164782D204C9A2F3A958A56BB72E00D27216F97D5D705C9C9FABEB8C070509A9B270602CC6641DF1E8282462BE1C243369D2D7FB516065CC37826514344357A369A42D84C81FEBE78918C924D324330DD7C5549B801E0945B72CFB1AB2AD725FA4AC8CABB1EEDE02E8E4C05552C1849999CCB65376E51B259342EDF7342DC30C1B07E919DAAF335D324BBA98C40069309FC6E8594C6706F3653F758E30084BF7C399765E2508CD6D299F9F200416F417EE87878AC2C7610122D20681450880069A90CCE8BF83A0A9F97311F4BC80E98AA1813F579AADE0286E991731C18B904A0CC9D8DA278F333DF0720DAA6A8CD7ACD21610D3D08ED27A1E5DCB4448C16F9068917115BC39E7E381A12CBC11E992FA65958186449A4CC1D2D37CBCFA860261BA5BD2BF1AD2513EDBF34DED0DB55D61F03EE8874966E8DAAD319A18160BB83A93C36B30666ABF2E781EC6A50021EAFBE31080342F3D08272461127A2998296FD89309970637FD00027A469033DD470413590CE79B09501FF4A3B9101983B86129CC48A0CCE06C69BFE672243FA405E8CC97BC914198F331C15016467662B6118465CA2E828E6F2015050F433712F87FCF400C9EAEA956F00D9230531B937DB7E92EE2C1D2D466D94FA229DD9DF8A162E83E3FE6AAFCC81D71CE0C21496FC03853EE710C3180A94C18C26CD6A89784D2F6A4E6F3C8E72B7FEE85D6A160A41705614DFB6D4D36349F2CC2674670EC979946EE26BE65CC57AE32EECF7D839986CBB1E20D709EC87CC1A35040E3C984FD48DA51262C518F8ECF99D2769FB158129588D1FD289B4D84909ACF964CD61196AFF7513E9FC7DC53DC9FB30437150A8771C382A2FED1BEE9F3792CD8722603F2186B41B21411447CD0343D32732ABF46F092094DF73C1677235676A960A4517349607EE8EA6CDF6EFB6B037A6A0C968C8BFCBFA9F9C1BD9A351E66FB786B3F396E72CD6D8FA11614986D6401868FD76EC2EB53201326A9E0653CC5D7B1B8EE2A924A0736FEF6ED60A969735F46EA6E47B91066B58F12B2C8E70F67BE8C01C139C7301FC03833A4E979BE59D2651A2CF49891C20BDFAF054BBDA42B19C7F502574CEB5932D3ACC06BF8EB0401446E67147FAE07DD2866C8F2C3282586683C63B1005F251574E15EAF179492FD90B986CFD7E1A4272CC6F3A36AA55D53977183C75C52E48F7D3BEB4C4A920658808D544CD869FB7C16F3FFDC0EB623F87516F6F1C722003980F04648007642A24A087A3C607178A8434285546CD7A2FC378FE0A9828C5A7EE1C7B353853E0CE6FA894232999B2CCC5B61BE84EEE30BC23E53018C18450288EAE45AC6AB9515B88A1166414BFAF5E0B855ECB2EAF006F23084C614DAD1335266B90DA5387E32830D7FEEB3583C082A00266DD44FA03C81428C2908330D4246FEDF937E5E04572EB6064CF4B50AA42A1D240453DFCC2C7D8BB1064E57A93E338B6631A412CF70A5006D0C1FEBCFB95156DE09F3253C67CC194F2D8869B5A0C005792AE8EAB356411D9D6BAE881999AFAFFBE3C4A2971F415EDDC76B4537154C998E8ACC2C555523FB6ABE8E68E26D22E6DB09D6E81F15BBFCB1E4015126EC87D383B1890AADE86517AA740C6FF87066264A894C331228AE15BFCC5A8E8C27BADB3082AF9F1C50ED76F238DF05F3A5D23AE17DECBE1461CD22510CB0AB868C25A7FCBE91FA9B6E245E9F4940317D921FDD9DF058C01C1C50791FA4332EE647D3B810CE228EC105E930D4F37A461D9EA9ECD2ACD12BCD058BD946661AA12B53680930D076374968C54F602E0BE62FF47D5B383226706D7BCB9FB04A00FED8041099AA2FE671B9A179F182976F20156ED55192EB2E7AB0B698DF0FEF1BFE9C0D6863FBF464E68F3A873B6A0C600E1F170C957940E05F7B4E3FA462FA7F96E036CC926E34531509D8CA3E13981F4732BECAD4230D0F67C2C0EC2767C722A5E22367B73B31812873F6C703437D2D2B052F9E9DDAC52DCE58729D26B40055F46266FD4555117972E264CC38712B78135D5BB160045CAB8CA096418E9DF9DA1C0AF7C79309FB9219E1CA889E8574F4F2420C65F87DEAECC66C97E976A2B9553DC86ACB41380CCC72215C4263F87ABB8EA3CAEAE3677EAC82BCFB29492D080BBFEE27CC8DDAC134B95A29E756A3A9C1FE75173E08C9E85ADFC7DFC7CEC5759FCF5F37E6EBC9EBD88A71CA47AB592D93B93298EA9A2DB63C5E91B4D37EC3E7C7343F2158723BDBD54A078C25045C8DD96F00F3F529C9B1CC09736D4E58C2508391464DA50F06173E3BB95EC36579224CB012514C2286672663FB0A80A965EE6F04F365F22AE73DC69407F85A1EE0C718A827564A8395CFE646F265FAFC689E997196E07EA2D9B74497C378382F2DFBEB2E28F2F772AD8E8C0DAFF747AF9F8DAD1817CD7A792173B9050DCD4C971E2A50258898F6EBF120199FCB35A85C83AC7D7D7EB895E7D4DD12D7B47E5709D64E8A7112A6F3713DA0C1223741D38D863FE7FAAC96D4DA2424632EE75050D2C2F8B2DA192F0D44AE3062AE157079B4324D325F87A56FD4472A67CFF3C69309FB56D08BD5DF35F7A2B42D29982660749E8872AC8449D36AE5B62C81D9B0F2CD62BEE219AD7BEA8E410062825D253A5C5443A32AA46F15C424460FA62BB9952801E35AD0B6991C31CF868EDC4EA0B8EDBAB8E1F375C6BFD1CCD7810BB9EB5D0BC00BD7E7476B3F3D2D2EF499E448627EC24226D33A8245C01133E37EDF168EF2F14C5EE3CD67BE1E377BDDDEEE05D093B0937363A9C8A0829639E5173136A6D9961FD719CFF50C3C21C335DC15378FBF99CC071E65C2C4BB310820985009508D5C8C2503A98EE18704539E5018E37D345B0FB606D434D18EDC3AF073C27CBD824C88B1370E174413303E3D25E3A815CD5CC04A8D3189CC676AD5B4422FDA6439B78B621A32E236DA498093CAED00C4E2C39BFD9145C5B1A020E9824800FAF2C108A327CF3AD98B990C58A9325313921A0208DB989ACF63CCD751D5CFC72772C7A4BC63B080C0E5A4B80B53D33330512EC79E121FF69E85A4F744C45E2960BF7945FFAD3FAD2E9E8F8F3F9B1CA541B7E8B777957A459F72B902D5564B788DEE38624017FD98E3A049E17F6ECA81949B01836F6031DB60669F87B855CD0462CC1CF47A196EF48B0B20FE0E086E3077A0C0135EE0A13F8C0ED6FDF47B01496363037A7E306D0BE388013E9ECCA1374FD0C3193CCE6CDEEF7535233FC4AD3389F77F05423F668FF2269501CCBEB5B7BD0C19A39C1B1EC79424E501A9544A5D386EFA09CC1EE5C549AF23B3CD3E03DE0DD48FD930C26B6B46B8D7B1AC0BDADCAC5E705C678FF15610085EE011E15E23048577AD3666236EBE76C67C9D8D88AA96DBD0EC5F9D3AFE8466D4277C86CDF6EBEA61F3B8FFD6274EF437A2D8B35CDC3AA92CBCC5DBAAFE3FDCB5006EDC5CFB026E1EE4C0AD1BE5BBF80DC64B9346FA6DBDFEE6E7016E0EF9B4F1FBC15D0BA0DE68FC5B269DFE040602C7D6B89DA28491BA384E8873ACDF3B04391CC62420BED326D23AD99F5FFCC1B72E0DBDDD619AF47B7FF4C47BF066FE2516D412FCBFF9B2A3245AFFD8A1BF48A9AF5F357CB7F5FEB73E2FDA1BF492A5E85A43EE27F612A9FEF7153D29C95F603DF6EEFFFAD72F5CDB9505A432E98F40D243D94A1009376307BAA1428A983A5C48A63F8E31A24FA01D26A4FEC21A5148F6D8393FC333F014FE7AE8962DE0A31FFDCBF9D7D6AFADAEADAF3B8C85812C0C945C6322D7359802A5233018301DC584373D373B0B7B16E6129833D24D0D1752A2B5587D1304B15DABC1D5ABD762EFC00B3A38D1FD9153B41343CE63019FF667A6A75869BA38FDE5CF7FBE7A4B16C0B2FE233FBAF053E7DACA8A786F5C1AE1683A9D165FB14C9DF9E237C1540C11D06CB6C4A024CD755DA8D5EBE26D8BA9B0EF1A262A9B5BEB788CCE938214D23AAD0E78986FA4B07D2A15D0EBF5A6784F51CA0DFA71BC7EBBD9168B5E451B3C1FD5A57ADD6E60A9A9F05C9D96E00F450FBABE9B7291D60D6838C654DA150A4473DB824B44C36B6C6C6D42373C17B573F17CBE56CB211ABD894F5FED4634F13E2B3C115D4B9405E5716C5BAFD5DDC5B9B98771EF9F6F490078D2776E57AB2210CE942AE0F7BAD06E3430D5AEC3D2BEBDD0AC77A153AD41BDDDC08B6DC39193F782D766D06AD790595B3037370319ECC79151ED56031AAD0D98DFB388D9621BDAED3AB66988EDDE0377E0B95D459B9E2983E714218537D76A6DA280EA5099A940B1380FAD461DAFBF2568330B0B50C84F43A3BE0DF5561519C92087D72BE62705ADD1DA866C2E05A5D22C323E030D1C6373BB0AD9520E2AE545A14044A3EBCE9667B0DD94A2797E1B0A850AE40B2545EB226D7666592DD7211A73185426E7C04561B47B4D5133CB64F2B0555B87B5CD75F418CEBB6E55004EBDDE782C97CFA26637C1EB745043DAA839A885BC2796DDF550DB7A5E971690C2C444016FA40B3EB6A3B6A4D180CAE6B5DAE2B7D76B636212D4465ACD1A747B74AE0E6A4C4F3C4B4C8C9734C64AB86D893248B787D7E87504BEA77E24004923AD6E34AAD8B726C6865783FCC4B4412366D02452BBDD0AAE8BB47436259ED869D46B8A962D150C1A1A058EBB8BB49CA2811BBC18900A038D46404BE733A29F831D1CE443A7EB090BCD92D5E27FED56F35DB71403FEEA939F79CB4F5F7DF5DBDFFDDE0F6173631326F225E4A72F06818607E95C117AED4EE883194CE00D6C553BE82E5C619244CF157238002FF094D8C671E9B58E59141CEE3B7EF8DE4906A96C41CC9F3A10D0262727D025342125CC3C58649BC7F3F7DAD802052469B93CF6EB3928AC2E6AA02FB4102F80B24A295ABE98176370DD8CA221B0C0336783B231D2682C0E32CC75221A25FF1EDE46269D5334F49A78AFE426338AC651E8996C49B820E13A5141B2999CE0D3EAFA4D589C9F87C3B7EF3FF6E9BFFEF8851D59403AE33EE6D35C00BD0B13AFDC43ADAE5537D1D56C21834A509A5A80EAFA3AD4709F68B7EDDF0793534B50DBAA8AFD5A6D130E1CBC030755867A754BB53B71EF19F4DB1EFEDE14B4149AF06D074FE0F97B82466DE617E7A1589A814E9BAEB925E87B0FEC8762611635BB1ED2B6E0D0B113180B328246FB8D7A15EE3C790ADD1957B4222A41657E2F702FA295CA45585A3E82BFAB8A36BD300F333373624C44DBC4ED9E7D07A08CE39034DEED4119EFBB8CAEAA1ED2E84180999929A1F54423214C55E6440D6D13F9B58DD740819FC586177664019FFCDBCF7DE3A51FBDFCF6AF7FFB79742B5DC867B3229866322E94CB9370F3E686F89D466D7229EABB0E54AB2DD4066C83834863F0EBF61832B14BC244AD20B34C41A3DD13256EEA97416B99AE94E1F26B2B782CA368A58922ACACAC8B9BC96452E27C1464B7AB4DD43447D118A7C0DF56340ACCB478B88BC294B489521103FF761894035A2E97C520DF16C532B29A0CBA247221BD5EF0DE0A6C26DA31E1EB1D45CBE532E8627AD836AD68F94216E314DEA3187F06950BBD829312C79ADD9650E07B4F9E78F66F3EF1F1874616C0534F3D35BDDDEEADBDF6DA35F79FFEE33FA1922BA1F9B79516EF47CD669E83AE694DECD3F7F8DDA7904925A1ED9276EC9ED3D06D796ABFD369C091E3A7049A91B4D9B969284ECC0B3423698B7BF760209DC51B6B280BD877F0765482E9D0BAB6C4750E1D3F81C2CFAA7E443F76F719F0BB4CD18AA53C5AE6226163459BAC4CC01406D36E27BAE6D4EC14CCCFDFAEAC8BBE734B7B5041F618B4A5FDB7C344714AD138C6C3126A7CA53C2D689D1E828399BD62A268636B05C8019F387AA45BC9C2E4934F3ED91949009FFFE23FBEAFDE68FCC3A5CB57E04B5FFE0A14D16F1730D8D09BD373246544002D0CAEB96C466813BDD9B0855A4D70329F434DCFE6F09B82F5AD86C807F2D8268B6D27CB2578E5CA353C5F06D1097DD3E8228AF0EACFAE21737342C388E6A25BB979635DF491D7E8A1CFADA27BCBA095485AABEB2312AB07D6857D696C75D4FE0EC261499BAA4CC295EB6BE02012CB65035A797212AEAFAC097496A376786FD97C1E36371B782F5D4523F85BAB23A0E8453404BC88F2BA060DA30A74D1B229CEE5D0223ADD604520C7D8D2C1FB470B80B999A947FEE289C7BF3A520CC8A4B367F3D91ED4107266D09514F313A871DBB05A5B115A76E2EE7B70BF092B420BB605ED2D0F3C885A8638FFE656E80B0116F61E12816F75F346A8EDB35040B8D74641ADADAD07DABEB4885A3A8788A201EB216D79DF3E281551A3F0DC6B37022BBBFDF01114D694B896A41D3E7E12A169E08F891658C06948157301EDE61A5C7FED3558DC77483CB3256993951AC68179C12441C3EB4E4D5730B6CD8B8710E99E883683D63933B32F80B9216D01C73B3BBB2CF665DF251C6F40430BC0FBC8168BC8B332BACC3568776A28F81C2A55FA3164ED6802C064E5ECC4C4046AC49648363A88935DD74746E5102BCF89B9CE144679829E857C0A96969081E8A2B8D7437FEA42656A02CD791E36B79B02319166A7D315984133AFD65A02B6E60BA875990AC693325A130633EE85B429DCE6A0D9AA615F0F998E5697C520873EBFD9AC0A5A21A4D1E280560BCFC73CE18BB3482358DC211A9D0F21345D9FD04AB7D556B4A949640EC14AF1AA61A2A15560DC6934B683E40BDD0AD18AF91C5ADD0D84A99D8086E34BA373AF55D7455E2369043F035A5D5C2B83D7A8D636108E230CA6243545895DFAD790B5BF3B5400FFFE95AFDC8B2E6389A4767DF506E4D2187C1156651842341CECC2FC2CDCDCA8212C9C400DF244B42F14F2E8FB109EA10BC8206E2686A4B27928149D3069F144DB1442BA42211D3EA69413CB5D9C34993F9E9B16FD6A34CA3F1823B897138CA65939829D44CB120DDBB92E0554A465749A836EC6A4A511A180D69772D50CBA5527E3281A9DBB86312AABB523B7D4C2DC44A7657239E8353D8396C680ED63B0963482C829E41BDE2C0AB9271668150BF93BFEE0898FEDFDD38F7CE8EA4001A4DCCCD962B120D2F31B64AE88D15BF57A18843043C4C80E2E667AEBEB2A302DEFDF0FD3D3CB8882AA8A76DBFE03C888B2705DD25C0F1C3A881A5414AE45B63B74F4186A695EEDD3F7CE9377A10C535A70DD8613F79C12F9834E3B7EEF7D98797B6A6CB4BDEBD45BD102BA26EDCCFDE22F5B485A1313B513A7DE86597D4BB559BD7A45B8AAA05D406B5431ABC62CB7D7EB2A1A59F76465C9A0CDA15216CBB318073A8236315586225A7D9BCA29590CFE98C856D0EAAAB5FAA3C8E2CF0C0CC25F7DFA6B4F2F2DCE3FF4938B97E0F71FFF339829955018699428C23534A54C2E2FEA3402D2A5C49228D43034398475A2564413F7D8D6C520D0A8639223EA3BAE684F01B98D6649C18D60A4809254436A34C31A5340A354B381D720984BFD09D25231B081C1559C5FD47D5CA0724EA7E30BE84A74BA4617F17EAF67D23A025E3211CFC4D814CD172E42D1BAC10387921624560170913452CED5B52DB12F6994385EBDBE1EDC13D2F21883B6366B01AC46C090410FF15BBF710E3DCACA973EFCC1DF7E4F5F0B78EEB9E7CA8830DE318FC1F2BFBFF675D456576487B5EAB6D29E3BEEBC132DA2A3F61B14944F9DC1768822B63714FDCE1377A155EC355EC4C41015103AA13A4AA78D088675C4FB2468BFE9B7CDB6FA8B9F7CF99E519376F42EB40A44249B9AB69F3CFD16A4F5623442291BBA559C7E5B48BB19D0EA5B70F7E9FB435A08AF8976E6ED78BF2D8BF600D29A8A46B1E9E4A9FB15AD32554225CA8B7E7EAE8BB43AC2D432C6B5D6C3E7CF9F4F9D3B77CE4F140073330FCF4C5532D35315B8F4EAABA2A4D0A0BA08B69A9C9EC413978359AA1487322650935354B359C0E3948DA2C622849CCECD08F44055C86A7D03E49C96FC6B17548E206D73495B44B1212B0E3ACA2405640735FB2B1769858BC1F4F5A2C1A3A01883100C14277230B73017BC0A3346F3025AA920F202A2054B47341A9B13013CA0E591B62868549FB2693DAF63D018D1BA513BAAA476F15CA4706E98B411BA5A989B2D5DBC72F5AD7863DF4C14006AE7596AF8CAE557E1A1773C006F3D7DCA98837512261839244F53326E1DE5A0B8ACEAFFE29C4E58CF67C6DCAF03D6DF6E512730EBFD8E232783AC455D492B2FB85A36602F6CD2A7FA83EBF0F83A2663E25F5798F000E3D63859740FDBF59A70E5D9947BB6AF00D00F9F2517D0409FBC8C5960BFB535F109908419A641D3905C5BDB3060A6E9A9CFFE1D9A7743ADB78C66ADB8F13762B8B6E2C1FEBB34CB7B6F835F7DF77B8CE9C8A4FB499ED81971F6CBBEAF84F37569A93AC2568C0B1488FF382680175F7CF1380AE0803DB7993C0D684F478E7253D6DB76870889DC46A351C758D1369F94D404107B8A32E17709410405F89D4D438E3EADDA7FAEBAEF9CF1DB3EFDE9F333EF7FFFB90D43004E367B36C386CDB10E92FCB039E34173B5F19B5AB97E15837F35B6FAB9DF6F7D5F7F86E1C6EA6A381396EA3B1D694F9B0EFAB357C326F647B0161732FC97F1C7170D0164D1FD70B6CB150EB13F2135A290625AC6E1D2C58B628A7018E3935EDEAD6F1B8D06DC5C5DC1BC647F82D68E36B1DFEF4DF1FD956EE8C4FEA38600AE5FBF5EC46CF141EE2698E22813E03B59E130C8B569B406267FD33333CAFF1B9A6E3FD8A13D43A096C2ABF60CAE5DBD0A771C3CB8A3150EB732B13FDC5A549F478D44ECA5972E3CEAA4DCCFB968ABC1BB9E04B8001EE116842A843F31DFC6CC898BA7355CFADB4A62768AFE7539AD8520630FB6411F01081C4E857B47FC25146AE00C5DE13092B50CF83385839464149060C7AC1D2F83B1D6B52608C94DC1DDEF7DE73B5F1416F0A13FFC9383C8D3F95B5938A6AF62BBC5756704FBB902FE8E44784E4453EDC267039CE02E852CC5FFF89F5025D1276825C4EC467D1D13A93A625E93F370DC6A9D89138C2100A28ED034A58792166A26E7DA98823FB4E38821B8C1C579C49BA09D1837AA2A8DB2902F9E5402B87CE98A2B71BECD592A82DD7BF2084C9426E01BCF7F5F64A0C78FDE0E7B1616E17FBEF902262A3DCCF226E0BE5327E185EFBF045BD59A26948122933BC35BC5A5BD33E5B83562DF235BA737A0799F078BE76721554DC1DBEFBB0EBFF0C0267CF6EF0FC18DB53C54BC16FC7AF567F05C7101FE373F95781E9A88532EE8E0DDF77F1085F264DFE5294EB066A7E7A7C2FDF0A10D9609F7694A02716EBA28A6F5FEBF7FBC740BBF4DC8776685ED4C143B98E5D6E0F2CF66C534A98BB954A5BE0A9DC20C3433F964D377E0372FFFE05B4F090B9828959E5B5E5EFAD8D29E85E3592AC8BF011F519C7B033EC1C3256FCCE7E8B1E12EB7D16CAE5CBBBEFAF22BD7AF3E9F580DFD9D0F7FE42E1F9C47903FBF82477E1149457B39B8B3239BDF81504665569FEB8CBA64DDD9C9409DDD085F44901FA3123CE372F6344BF9CF7EFC8927560796A31DB1060F9C73E7CE6102999E748A9587D2AEFB1022BC19074CF782996AB9BAB97E5BCA4D751796F7BD2C39C015040A17F604CBB57918586534E4E1F514CD8D7E734716611CFDF102AD0F371FA37078F41408453FD99F3932308741529E33EC28CB350E306341A8E3A4A4AFD6AE159E0BB9C67CEE5EB9F8324D33C2E2F26DCFE64BC56AF47E26CE1055AE751AED67AB1BAB57B2D96CBB56AB759F79E6193FBC751E1300DE94FBD8638F6572B95C01B17411F7A7704B4FC62CB9AE3B87DBBCAD0F9EE795DBED361DEF158BC54BA36A069ECBE9B314F275730FFDAEB99BF361A228DC752693A9BA34676B1EEF216D1BB7ABB85D417EAEE1B78609620B79DC397FFE7C8F042104F0F8E38FBBDFF9CE77F2D870161B2C61C32564FE2CEE9742C6E79C21CE546AF2B81E7F487AC06D07D7E03B741543DBCBF18C3A064AA9F0E3E1B68D3C6C212FEBC8DB353CB482167163737373FBE9A79FF6D2E4723EF0810F90BD1551A309D63491740DBF37B01349D9C10EBC8FC6F25EF43032B78FD1968ECBDF836E5AEECBB6F2755FA3F4D5DB78F466D93EC7E843E50DA22531D26EABEFDBE319655C6819F25E187DF1D3CDE7F3ADF9F9F916BA77712C4D668016E0A344AAE84E9A9D4E2766AA62E541F841F3E1BA56387D12302934DC8EA485A552C918FCE5CB97FBB62D140A236BB8DD16C7DFB7EDF4F474DFF3A28730F6CBE5F2C86340861B6D979797F9A73EF52941FB3FEFAAACAE1903B9AD0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (71,1,'PBX_(128)',0x89504E470D0A1A0A0000000D49484452000000800000007D08060000006A326B0C0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000038034944415478DAED7D079C1C65F9FF3333DBCBEDEDF5965C72472EBD4012D2494802524404094D11959F88288A227F0B28C2CF0272A754292288201D0181F0A36890403A09E9C92597E47ABFEDBDFD9FE79DB2B37BBB97BD102021379FCF7B333BED66E6F9BEDFA7BD854B2412906DE170494827D0B6BC1B8ECF4579D1C4502F7D822D5CA66FA112B65AE0EA753A08B86359E0AADF89B4FD8485841AE8273C0032D4745E25F46CE558AEF5F20BC655BFE3AAFDCA39272208520090267C5EB5968BA0DAE654C78F15264864A9F1F1C3941316040A0032085F16B85C34AA22A401038E21364864107E4C55A2AA12CB0084130A04E900E0D2044FC2D662D1A98A360310B86314007195D0235209AB8A1A0C272408180054C2E754829505AFC762C4625015BD0A08E94CF059A982749D9E2EFC1096605A0949E58405811A00B210E55AAF97846DB6159596C5633153221137E3F926FC32780C4B4261021EEF20310107491F22B9CD898752B639917A9288E194A3B25192719BE35231A6FA8D163D098FA3751C5F2BCA737C8417F810CF0B218D46E3D7EAB47E81173C3BB66FEBC1F3FD2A2084556AE2C401409A3127A8844FB5DE8C256FD197BFB641230820083C16412CBCB89DB29F571D1FB40FD7FCD0FBF9947DF45BB52D5DC3CE91D7D23562E1C435276DE39A636B02616A8946A38E658BE69D81EFE6C5E29380104AB30B12271200D4B55FAEF9162C562CF6255FB9F2DF9AA1844C40188EF0B380410180245CB5E01580A880912E7C41163A03020A5B5EA714D407E188F3F485732FC0777362F1484008AAEC02A60A4E3400C8B59F846FA29A8F251F4BE1B215DF7C85095923B00F2A6834838497CA0443083B1B13C820501F57042FD57E2153EDE7C47D5CB2F693E06581F36C1B1420D039A170D0BD64FEDCAFE2BB0D482070AB582022AB015CE2270200D42E9F4EA27EAAFD36123E96E2332FBDEA29B1860A90673581496F9084C1B1B55833858CD44CCCC1E1471734A280D87D38F11C1214310747002060A96A392788359ADD9F4BA57E85EE79F119385EBC1ED87DE59A2E5F47368280B41FA3C3A0D76A211C0E7A4E9B37E7DBF86EBD2A10F8D258E08403806CF59B24EAA7DA5F8CA5F4ECCBAFFE2B0962F6D409505654A0FAF86A1A4E2F9C526BD5FB87BA46C87A1F2145E8477AAF436D1DD0DED50D7C02BCA7CD9F7D1DBE5B37963E2C0E490DF8D56AE0440280A0D2FF6689FEED584AB0949D7BC5350FD8F2ACB0F0E4C9390BE0980380A43EFEB36623B20EE75B32FFD41FE3BB7561E99100E0495303271C00B42A0010FD174800A838EFCA6BEF29B2E7C3EC29759F03006C400648F8972E9A7723BE5BA7048001C90EF0A9BC010240EC44018046C5006AFD4F00A83CFF5BD7FDA9D09607B3268F1B1E0084C182FBCC01B07623080800F4027E8EEFD621A9817E2CAE0C0C70C201C0203140BE0A005517FECF0F1BEC79169839E9D3074026C3EF70F71254866326006838082C993F2713007C23004865803262801557FFA83EDF6A819327D61E030048DE336700A8BC8B55EB368296E703A7CD9DFD8B2C00088E00200D00175FF3E3FA7C8B19664CC80C80FBDEFD3784A2A83679D1E523170E24F78C5C3D20978FFE95A03AAE5EF3EAF3B9B463E27E90FD7B799B39F77CF21A798DA0ABC9CF873F2D5E921100EFAEFF10743C17583867D64DF86EED2300C80100977FEFC6FA3CB309A6D58DCD0880EFFEE371F0130024A1642C4772EC08EF37A5B818D65E7A594600BCB7710B6851052C3875E608007205C015D7FDB4DE6832C28C7163320260DDC126163BE5A4DACC0B724856506A30A75205320B7069BFE5F02D9DCFEE2147F2D8F5A0DA4E867C3989EAD5F72B301AE18B35B51901B07AD366D02303CC9D3502805C0150F1CDEB7FD1104B24603A02C08C40C8499F0B998DB78F670308A9B1FFA1FE2F972A7C2A3DFD03B0FF600B98F43AFFEC93A7DD3C02801C01F03F37FCB2210109FC2200791623E8345AA5060A526D946BAB928D536A272405947E4CA01CB25CCB7916CEE5F8644D662A9D13ED83A451C749593E691B54D93FF60CA03C0FB313A4F87F2C16A3D82E94A37A884722FEE953278D002057005C7DE32D0D4A8C9D2818C12028563ECF1241244C3189A34ADC7062364FA34EF54AC734BC9096DC11941A2CF0EA4C6012588230D8D3E065B523A77E41163C249B88509E41AB05934EC7AEF3E33275D2841100E40A80EFFEECD6064E4ABC180D7AD06A344C8072B64E4CDC2405AA4EEAA40B9693337F2A778DCEE1E473D48922765C74FB048DA0D47A41FE7F9267A0AC41641CE61D480D4B1252839138D117320065347D3EDF0800860380EFFFE2B60632F2C69415A30A301FB7C9A0DE81012C0E48C462FE1953465440CE00B8EE17BF69D068051837AAFCB8CF056CD8BA83DC40FFCC19234660CE6EE07537FFB65E8BD4795255D9710F80359BB7E18B26D00D3C79C40DCC15003FF8D5EFEBA9E1C64955A5C77D32E8FD4D5B40C37181F9B34F190140AE00B8FED777D46BF0CC9ACAD2E33E19244602138105A78E84827306C00DB7FDA19E4E1A5B5172DC2783DEDBB8190454018BE6CC1E0140AE00B8F137F5F51CBA5063CA8B330AE70F6FBD01A198F4AD042961433EB920AF93891D2569A34AECA4247DD489227A40691FF3EDC95DE4F8E46F2569241D937201E3EC76F8CB1967664D06110016CF3B750400B902E067BFFB633D24E230BAB4E8B84F06AD5AB7891A8404962C983302805C0170D3ED77D5C7E231185D529811009B5B9A593B6A2501C489AD8539D60218A466DA729248A4672ECBB67C8E18D64D269192092021659B97188653E509EC26139C31BA3A2300FEBD660303C0D245F34600906B1CE05777DEDB100847A0DC6E0193C170DC26833A7B7A6177E301D06B357E6480913840AE00F8DF3F3DD0400C100A85D91572A2262516CF6A2F28A15B5A8BEA5AACAD02C72B891E516D8B615F10E4A48F58DB0549C0AC8DBFC41C644A50981704B9F78FF49B257C284DC529717FF63B41D98A04C8FD07894D22A8A2E85711DA079170D87FDABCD92300C81500BFBDFBC1064ACC88B1F538EB6821D37C6A572E311FA0913A9108EA04D1A09E3E998E0BC90E27EA7E81724E41562D526766CAEEC5E371A0D6DBB11816DA46A0C6620920C0D2EF782CCECE632FA9D5B2FB793C1EFFE2F9230C9033007E7FEFC30D9C54EB818180537A03890257F50E129282E5D3BB78B13E84A94923A563A80C80F4FD9CBA4B9894E221002412AC96539287404085044E408833E1E37EF44CA2B89DC06D0D3E9386D7B06B7D5EAFFFF445F34600902B006EBFFF9106FC1AE83EC5C1ACD78156AB513A632AAD7C06E9EE61848233E8EB238A04CA1D42E563AAE70B8482D0D2D189B5DF07C160C07FE692452300C81900F7FDA5218C4660519EE9B8CE051013BCF3FE3A648F98FF9C654B4600903300EE7DA421140E42B1CD72DC278356AE5A4DDDC303179CBD7CC40DCC350E70C7FD8FD407824128192E008EC164D02B6FAF82280260C579678D00206700FCF9D1FA50C00F459F01008E7632E8E5B7564124140A5C72FE392300C81500773EF8587DC04700301FF700F8E79BFF81482010B8ECC2F34600902B001A1E7ABCDEEFF341611623F0AD5D3B204A834DA9BC014ED5565F19B1437D8C4F3F2624C3C0BC3A1C9C0C0327FB04A41F5315BC47A9D90C5F9F34396328F88537DE813002E06B179D3F02805C01F0A787FF5EEFF579A1D06A3AEE9341CFAD7C0B427E7FE0CA8B2F1C0140AE00B8EB1102801F0ACC868C0078F483F720148F2B3559E9C72708AA3E7C9CD4034848FE96FB0ECAC7F8D4FE82F23520B3897A1BA434B3D2B348EE85C4C3689B0DFE77FE828C0078FEB5372110F007BE71C957460090AB1B78EFA34F36B81100797A2D50DBC0CF2E1974F806218392412A0010889F7FFD2D6A11E4FFE6652B46E200B902E0C1BF3FD3100C47C0EBF52A113E41D51E5F501A7470C9A48E20F70CE2929D3638B103094BF0F0C9819C38413CAEF4F651D6A9E3FD01270FFB060A3B302E90C3D472EA584A00B1B12BA59E493E147E53731BEE8B432C1AF37FEBB28B4600902B001E7EF2B9063A358A7A3E2AC5D995506F4A2F2051407C8ADF9EDA654C14BA2814B1DB96349A28C7A9C708551696D5A3B87F8249846DB3D83FDB8C8BB980445CCA072454EB98941C12F3058256033ACA536805408FC67FD5E5230C903300FEF28FE71B38491891187DF9B894A69552BD29B42CF5F2518FDF4782174401CBD4AC085D2EAAD46DB25B9798D44D300048252EAE49E82200202523C88001F2366503A53C310242906C123401FCDFBEE2921100E40C80A75E6840DA8460D08FB5484EF71E5FA1607F20085B76ED8603CDAD100E86FCD77EF3AB2300C815000F3DF97C83CFEF03BDD4C0E3B84D0621733CFAEC4B1407F0FFF0EA6FDC8C6CD08EA5074B3F9EE34286F0E974BAA0C562896089EFD9B327264FA3F0791D36362737F0C1BF3F5BEF727BC06AD01CB7C920B9B5D1DF9E7B199C2E67E0FF7DEF6A02408746A3E946C10F68B55AB75EAFF7E5E5E5058B8A8A22656565B1E9D3A7C7264D9A9478FEF9E761F2E4C9895B6EB985A990CF1318720680D3E5823CA3EEB84B0629E3164806EA5F9FFD27381DCEC0AF6FFCE12D28FC4EACF13D287887D1687461ADF7A3F083C5C5C511FC1DABAEAE8E4AD648BCBCBC3C6EB7DB13BB76ED52802031035BDF7AEBADCA47A5E38A3D738CB3474E00788018E03302C091E602C8A8948D3ED1E310078C7EE4E917C1E974061B6EBBF9370683A11B05DD878277DA6C364F7E7EBE1F851C329BCD6193C914C37D61BFDF1FC7E3D170381C457688B9DDEE38B2429C80401F10B7B977DE7987ABA8A8505C988E8E8E04FEA66309F93C35688E2550E4C6004F3C578F1FEDB80100CF0FF636A4AF0E8F3EF712B8061CC1C7FE7CD71F51D07D2854070AD88DC2F6E23A8880086109232B449121D89881F81E61145E18EF17C26DCA25C9CC00783D8FA0E0114C7C3018E4704DD3D025F0DC389E9BC07B2406060612322876EEDC992075920E8ACF0A103903C0E572A20D901900AF6FDFCAC656E55443BCA40E12C50F5D864A140D714DB6F3CB2C66B86ACA5485A2C5B68371D646F089175F03B7CB195AF9E2D38FA0C01D55636BB5367B81A03318C26807A0D0B57174716328C5386A7B0F1F09EEE4E2B101BC0F8D224A2580E008928051B01C82858DB22E10DAF113D050342874365D0DB2478CC61BC6F3E3785E1C81C3E621E8EFEF872953A6C43B3B3B21DDC69055C7A705889C00F01031C01000385692419C2A19F4DE452B9456C3B1589405B1229108BCB0F22DF0FB8311B7C7BDA7B0BCB24AA3D3DBC5E0514C0249B281A9B42F9688C50EFA03FEDD11BFEF8932B36E230AC88FEF1D410153CDD7A3D0D93C4A1C853A1173888518FEBF289D43D3D6E0BE289E1343809157114375C2C040A000D53C86E92CF16930446E00F8073280DB0516AD3623009EDEB00E2234B036373835AB6604906819D4C7B964BF3F3E3D3194960A8694DF7CDA792220E81E55160BFC70C6C96C6028127A381206FCE8D0DCDD078DAD9D6C6221B5B0530020ED8FA9F6074321D8B1773FDE270216A3716BA955FFFD2A9BB919EF2F606D37179696962D5C7AC6736EAFDFE0700C74BB5CEE3D5EAF67ADBFA767B5D7EB7493FAC012C1FB45F0F9A26A5040729EA214969001B17CF9F24176C4D10443CE8120B7D70D3A3C5B2B688EB96450726610295E89DF87025724742A5EBF1F1A3B7AC1E10B40A6DA3E08042A00044341D8BE7B2F04A8538CB4980C7AF7ACAAC285F83F35586C5FBAF8D2DF59F26CF3A8F34904FFAFBC26C00C389C21A7D3DDEDF37B1B9141D647BC8E77831E4F1FCA9E6C0A02029B9F80D40F0182C0E1F57A63A8364885C4D1188D1714143035422AE368B3434E0078F4E97F3604C2217079DC34CD98D41C3C39349B1C0E96B77975324790CF4B2675788E537E27133E208DF095BC56D956D917BCD42984937A17F1208794998DC7001067944FB53F0C215C7BE3BCD84F2083A0330240EA5F403DA13EDAB58B4511D3974ABBE586BA12FBB6454B979F5F5B37FEFB94A7480700ADC369BF69EDF67AC25EB7A72FE8F7354642A18D89B0FFDD98DBD1867294E73364731C22BB4424401000A268B4C67D3E9F32D3A9EC657C1C30E40480C79E79A92186141FF007C18B358290CD4B1D34783E19C39727654A19AA2D25C5C3A90D72D99096123EE23E25F9939E0360C9A0B8F21B581248CE0FC495759CA2B72C5F1087A2B23228AEA8CC20E86C20480280687FCBF69DC81E818C1FAEBAC8FEE0929953762F39E3AC3B7941A0995688D321148E802F146109AF4C80C8060C045934E0F3F4F97DDE1DF180EF3553D8FB1FBC650899013F77044F893240844221C60EA436D003891F3C783081FBE2B2AAF8F5AF7F3D2C10E40480BF3DFB52839862C1978A4459F72BE092FD0239A9C70E2F09580D06BA3DC7A7032199E801A91F9FF8CC321024CB5D127C42CE024AC9A0B8DC252C2E2683506C90C05A1F6725C6E8DF9C9F0FF9651549C1C6720180B89FD4C6C6ADDBC1E3F565FD70534697DFFBBDEFFCCF974C2673B5BC8F9EEBA1FF6E85979BF64395D9029546334C29B1C394F202549D20093D3320223195EAC07530108CFB7DEECE5830B44E88059EB643743701029F9131042DA81EA2B862DE066D53B00AD5445CF22612475105BCD8400F160CF8F0458E8D6410014CE079C5D5237B8A0487BE38F4797CD0ED0BA71872B9B2401855DDFA2DDBC0EDF164FD686887246EFBC1D5AB4655572F55EFEF7507E08A175F873DE014C73FC467D64705A8001354E88C506A30C1D83C334C2AB5815EC3A5083F3C0814A90009FA03E170D077808B4456E57191676C5A36DD8D0C88B04EA7C3D70F93EA88A29D1047D732A7790F734C07BFD0E0F179C1A01EF6F51800002F5AC48AB51F42E10F60ADED09886D01626A61C762870500A9B6D51B3E049FD733E4479B7DF28CF8F7AEB8845747F668F9F92BEFC3D3037BC4C12EA51ED162CF67715A55028526C64141440745BC010A753A283719615CA1194C5A2E233B8433B105B2702C12F2F2B1C84E5D22FE6AB9115ED026E26EFC2E7EFC0E21648288C40489A314087AA6DEE5F21E53C920D99020C131E1A3CEF6A0BEEE0EA60A7E68164802201245E1AFDF0414F2563E8ED4233A1E4B66854B2B46C1CDD77E1368F87CF5B2A6A903AE7FEF5DE8E783340A99F83E92D0E3FBF783AEBA1A04BD5E0282DC3602C181B7368734900F3AC817B460D76AA0DA6A00B30EB2AB0B69AD48975ABC44C33D108F7E608A476F32051D07DADADAA2B9B0400E00E02BFFFCF7A7EA5D4E17D84CFACF341994EAEE01B301A2247C72F50201E88D704AAFE0E100806AD4FBEB3742FFC000BBAFA0D142F7A17DB07BCDBBB0E02B57B05ECDB4D88ACBE0BB5FBD08265657A57C44FA1F573FF316FC37D289B55D4C99137404C9EB49F4F581EFD557217FC5C580140E82D1081AB399A6AF4B1ACDC02672060E6D1A7D90074B540B663C68C5772F336A902112A267A30200FDDF14AB0ADFDDD775E86773C794DDD3D4D4147EE8A187E287B305726280FB1E7FBADEED7243FE670080A4AF0F5272477CA538F3F5D19AC69AEF43EA27E1C7E531033202203308D0B866C2EFEEE915858902DAF0FA0B10F28B06E0FC0B2E079DC90CF6B24A58367F0E9CB770F6A08FF8C8EAEDD0B0FF434868C4DAADE145F7940D8081AE73F8A38FC032731624F0DEDE55ABC0B67001447BFBB17483BE7214984EAA15CFE5780508921BC48A10E0C018D100C50D0D78FF02FC3F463E865E473445BA7E472FC4DC033F99535BF5608828115FE7706A202700DCFBB7A7EA3D04802CCDC23FAD6490E86EF252F3AF188DF4017E127E08C1C02567AF57EBFCA100401FF0FD751BA0A3B38BD572BAF7C16D68033807C0E71A00BFCB0933BF7001D49D321B6AC78E812BCF59CAC642502FFD9E205CF5D29BB0877388359F002019A8913D7B20D13F00D6850B21E1F582F3A597405F558900380DFA5F7A118ABE703678366E045EAB1199C76402EBC449C0EBF420A07DC0492020A6530041ED1BDD3C4C3368116C5116AF90973E642D3D97B87E4655D1A3050505C1818181E8D101C063FF600C60B718330AE785CD9B2042FD025421597950A8943E0129616221C5854CDD978CEBF3AABE01721089A7E1EAF163E8B0CCAC1C0B36A339950A552C104B37FCE4FDB87E7FDD7A68696B070D7EF0CA9A71A03718524732273021CB58AC16B8E8F4795090671DF401FFFCCE47F05AEB41E8E07C90D0261BCB6AE899D1980CEFDB473A02D03D81BC3973C0F1DAAB60993C05A93E0EFEC646285AB61C3A9F7D066CA79C220E6533E080FC192743C43100BA824210B43AE00D463948C2C060F16860AA55A3A8033906D2DEB803EC26FDF72714DB9E0CE04276C073CF3D17FFF80078F449D622A8200B003EE964907AD0076AD96BC435E9C72BA7CF82196894655AB202406281F7D6AC83432D2DA0C59A5637791A18512FA7CF5C2E6FCF1A5F0BE3AB2BB37EC440380A6BF677C0C6964E68C39ADE1EF042BF10044E2F0356F404A846879A9B2170E080D8442D14467BC00005334F85FE0F5633C1070E1D62EB96A79F026BDD782844D5210B5E5E97FAF45063E1142F8158C08FACD5DFD90676A3FEBB93CAF29FD36AB5FE8E8E8E08D90143E50F7202C03D7F7DB2DE8DBAACC062CA990178552DFEB80CC04BF42EBB531A5401636D0550575A955528320B6402C0EA35EB613F0A418756F90CA4770B0D812F881359A703C064D0C18C713560B79A93DEC761166F200CEF23203E6AEF81766481AE900FBCFA28F0928D20365749B0BF4E54013174B135660BABF5258B4F8781F5EB2082DFBBE2CCB3536C0132F200ED81A95A039834F114AFA0F7E03EEAF1044566E3B5D34797FC13198E9AB785DD6E374B34650B0EE5DC33C8850F69D3258787F9B49241BC123B8E8B2154EAA082F68D9BCD733DF49209005B77EC808D1F6E013D0A7FFE8205D4A02375BC2269A20A3642197EAFCAE24216F8EA1E70821F6B2CC9C06E354171BE0D4AEC36D049FA7B2820F6B9FDF0DFBD6DB0070DBF2EBF1F06A22108194440102BC8D18498D7079EBD7BC0366932F4AE5903E58B178B2173A9293CFDD0B90438B5D090122CA2F845F3AE6DEC9CE2C2827BEA8A2DF7214B3A7D3E5F105DE4B0C56289C9AD98D243C53901E03E0440301401B7DF4B932E8A53BEF3AAA48E9413E0D27F2BE7A8F673A2FF0B29C9202990CCAB42C9F41BBF8E445F52862EC6406CC19ACF49AED9D01F3F35B3D78AFAFE8DB7DF011D0279F9D2A55050604FA1FA946DFCBF6604C9D2595307DDD7E1F142479F033AB1E05766215EFA2645B63CA82C2D04A34E37C84D5407767A9C7E587BA0039A1D1EE80B05C1990841C244EC20CA8556618F0774E82A26A4994EE4B887CDAD852905BA949C821BE9BFE3C07E764AF1A83160305BC94572C483BE3593F284AF11085C2E570C0111ABA8A84861839C0070CF5F9F68201FD44F35CFE747DF3BCC62F55C824BC228AB1492917F39FFA3247FA497927301CA6F29EEAF5C20F9BB2498390B1681D566CB39DB25B3800B8DD8175E799531C979E79C0DA5C54569424F9DCA8642CA679E3A03D2A37DF2420D4C1C4E171417152A35BDC7E186FDED9D0C1C9414CA439539AAB4188D47CB90019D4E870FB6B4F54197D70F8E30BAB57C14386342747965DD4F6E6F2001130523149984947BB4371F0427BA947441E99871A0331844A0B61E8CCCAAB0D56A341A6AC0422D9EC204020A15A37198103331B900E09127C46410A231148B003596E2A4342CA8021949207029291FD175E7C4FF9610FD5C39F3272781C4C11DE322D8E5EC9F34EE5F9C0DF51687EA7175602F291956BE9B5880D2BA2FBCFC2F1A1F102EBDF07CA82C2FCF5CEBA5B5D3E58105D32666A5770F1A7AEFBEBF16BABA7BE08A4B2F02835E9FF13C2752FADE960E38D8D90D5E7F08994703658576C6142C779105101D0888DDDD2EE80F6285A3C62CA8EF790A02383938ADCC8AEE6B3CE5FCBD3BB6B1B88519EDA2820AD12E0ABB1DA043C9D6D48E4B381DFDFD41BF67A58D8BDC0C7E5F9FC964A29C418CD4414E00F8D3C38F3784A311E0F1635A8C86E4E08D9F502858DDE49A9A7345B036792231080AFA236AF4F0C65B6F43E3FE2638EFCCE5307FF62919849FACFD0EF476686A1C5B5AA83745B02E17DA425A30A1E7A0660802EC9EC6FDD0D2DA064B172F64AA46BDF80241D8DBDA098DAD1DD033E002ABD928D9187C96F8BFB8DDE50A40539F975594094586947369ECA6ED9BD6B3384679ED04B64EA0ACFADA0EC0B2A5CB41D068944134C97E3AB87FDF966A5D641E9118AA82784E00B8F381BF36508B98A22C6EE0D10200AF0AF5CA563C35EAF0A19BE5D7188F48F89BB76E85D51FAC85DA31D5F0A36F7F8319746A00A8173752F0BF3ED804650536A8AD2C83715565505E54A0F019A9A5B51B36C15E14F21C04D2E409E353AEA790F4C6CD1FB1F317CC3D75D0B350ADA736037A0918AD3D7DB069CF0138800C4103689615E68341A74BD6EED8E113435D5D5D70A8710FD8CB2BC1922FAA23477B337BB651A3472BC2277052EFEE0D6B3F683E7574F1641067498FE5E406DE7EDF23F58140004AEDD64F0C0024748DD48E5F0E6C508286E8DB2318507DF0C3167E6B7B1BBCF4AFD7A9952EFCFE673F82E28282ACE792CE7EF5838DE0F205A43607A23A32EA756CAEA47155E55087CC400C48CF6430E8D3FE5707F4F60DC0C9D32667B41B0EB6B4C0B6EDBB18739C73E6B241C7BB91113EDCDB04BB0EB50175C52F460FC36CD4B3F87F7808FB61F7AE5DE04597B174CC49EC3E11AF0BF93F084B4F3F3D397AAA54D6A267E1760CB49E5C619F825E10B57489E60480DFDEF3503D1945E558333EC95030AFA27E8AD1537EDF838F151774C316BE1BA9FCE9175E64C6DC572FF8129C79DAFCEC8622FEBF77D67F04EDFD0EC5004D59C7932D934A0BF261FCE80A044305D4549430D052DB018A2DD03B9C7DC6D28CFF83DEA5BDB38BD91F3A9D5651197B5135F5A07BB878C15C9597E143666882F5BBF631738A5CCE44862667048CF56BDE077B5915E88C26A21896C43AEFECB3C06CB1A408BFA5B915D66F580F6683F683D9A34BBF88EEAF7FEDDAB5B901E037773D800008414551FE270280E4B4B349EAA796BCBE28BEB4CE346CE1D3F5CFBCF84FAC91FD300EA9FFA61F5C93D59AA765FD8EBDB007F57252E87297F3E4B8048380C1C61F1650559432404CA8AE44D5919F51F03B76EF81E6B60EF8D2596780A0725F3DE84EAEDBB4198C68B52F9C776AC667DBDFD605AB36EF84663438EDE84DB01C8304026AB1B47DC70E2828170D3F57672BD48DAD8619D3A72BB44F2A809AB7BDB67225E54E6253AB0A67E71BF4078705805BFFF8407D1869A5B2C87ED401C05AF648D4CFC97A32128100B5EED15B93BD7A86B1ACDBB011D66FFA9005AD7E73E38FA0ACB830EBB97B5BDA60C3EE26D5B80389C3B2403640D8D0EDA354F144040301C2846A8200F0D18E5D68301A60CAC40929FFBB0DD506A984D292E241CF450D51F734EE63DF63F62933C08BBFDFFB68176C4466204F4AAFD7C2A19656F08663CCF08BFABD10740DC0A55FF932F3B8E481B319F5AFDF008DFBF6A10D677A624A45C1CD689C3AF1B9725701B734DC5F1F41FFB4AAB86018FD02B8B4D0EED0FD0294C9A3F13E44F8CB279F02F916EBB085DFD7DF0F4F3FFF2243FF65E79F0B672D5994F5DCAE0107FC67D3F62C42CF8D05E289CCC0A00F3BBAB418268DA984496347A1BA284D463571D9B97B2F7CB8753B4CAC3B890978D0B3618DFFF0A36D5083357A62DDB894B0CA8EA616F8CFE61DB0E3403384A4369ADD07F7C105E79C056565A529865F27DEE7D595FF077AADE05E7852E562045437AA45B7C160C8C9082CC552F5AB3BEFAD27576C5469C1514F0671AAF67D72A2E7D2534E856513A70E9FFA5120CFA0DEEFEDEB8351A86BFFF7C61F64A57EB73F006FA2DE672D6B5402CD850568A0AC59136AC18CBA7C73E341E874B80E0B08322649554C193B1AA6D48C86225B767093EA22A372D2F8BA41C6A6BC3CF1E67BF0F6C6ADA22AE9EE80516525F085A58BD933CA7A9F54C5F32FBF0C03034EA829CCFBE99862DBCB28AFFE68344A8D1D22D9DC40731A002A6FFAC3DD7FA4C617D9E60CCAD437904FEFC533541F3F89FE29CE5064B2C2ACF153803B02976FD3E62DF0C1BAF56CFB5B975C088BE766D6AB546BDEDEF011F3CBE343D17A16169837691C8CCE37C22B2FBF02B51326C2962E37D048340604040579C8BD8B48D3D5C7D340256F97A2953FB5B61ACB68A632F45AD130240F63F5DAF5D4A104CE3FF70B8ACBA85EC853B8E3C997181BC4027E70F5B4C335575EC1329B6AC38F5CD23548FF16BD6EDF9C9AF24BF17FF7E0FBB8A45150A2EA40105926F404FA0C0028BFE98EBBEFF60742505D56C85EF2A8248364B0C80D3B59A207F5BEC1CAA6961BEE42C199279F798EE94CA437B8E7D65F64FC78D4646CF5D69DD0EB7067A5F5C3B1801662D0B16D13D48E1F0FFDFE30C42D76A8458A5FB168167CB0662D347774C28120EA65D64F21338BC455D959322629F8341599611A0282C2C7D92A00C5637EF1F053D0EFF2B067ED39D4085F5CBE14ED8BF1C986B0A8021C2E373CF6D43304E0F8F4CAE21576B37E076E0E188D469FBAB9981A009A340090D34C71D7B29B6EBFEBFE30D69A20EB1BA7079D86758455257A549D42A4A1DC4049F488FB404AF2F0EA41A1B8646E801A5E68F57AA8A8AD53DAE00D6759F9E6DBB0AFA9896D2F5B380FBEFE95F3330786F61E60A1D99C843D88D6B3DB0265F63CF01DDCC900A64516EBE54CA86039185B5E028BA68E87C6BD7BA069C0076DFDAE94EB332D14859C5C330AA6D554B3B53A2AF9C86BFF66C6208B2CF675B1361ADFB8744592FA25FDFFDC2BAF42D3C14314BC5B39A5A2F06634B47BB072B8A9F6EFDCB9332637189501C0A7018014949D924B04805FFCEE8F0F53528AB271149D123F8AAA674F2269A024925D7C94044F4AC78EB43C00EB6422F5E4312100169F75168B750B0832835607B9E8826E3474C8ED93979F5DFB6D9838AE76B04BD5DE05DBF737E724F44CC7A62165CF1E3F06D6ADDB009DC1387438BD29B44E239185D11AE7F526A57DE28A8533C1DD8BAEDCAA5550356E12EC760632B2C0502D7688118819AC26233CFDCEFB22938582D0D37A106EB8E62AB0DB6C8AE0A9ECDCD3082FBCFA3AD95481F9B5E55FA0915050EF3B0833722391F46CA00C00E24C93640892535B442CF0D3DF363C3E38C39748E9E2955067F9D419BE04A41A45924E553E2E35B94E88AD746A10F1B5536640903A7546C456AF667C692BBA5043B9832FBEFC2F68EBE8507EDF7BDBCD9067B5A445DA9CB06E67E3F0295FC502A74F1A0B6FBCF21268B47AC82B1B050EC1C09EED94F135AC7DE2160497D3EB4FB95E130D43A0BB0574463304751648E80C838CC4612F94793CB40F962F980BCB162D48E90341EEE3DD7F798C25AC4617586EAF29CA7F1A85DF87207017141484A89DA0BA4D002715416507C89E409EA4068A6EBCEDCEE73374EA4A4BED269299BC41FDFAD20CA1B86A9CBF181BE80FE6CD9F0F8B17CD81F6EE7E68EEEA45752382800AA90CF2A3CDA8DB2D26438A657FA8B9055E797DA5F2DB6232C3FDBFFD65AAC5EF0BC0EA6D7B5862299361962B0B500D090CF4A005C0411C6B39B5D73B6FDE0CE8D8DF089BB76C86B231B5702800CAF564F9FB8321660B2472B005725D02FD3D141F859F5FF71DA64AD586DF2BFFF716ACD9B819D954DB3AB3AAE852A47EEA41E4309BCD7E9FCFC71240EA96419C8A050495276052B9830537FCFA8E95EAAE9C49E1A70A5C6182B44E9DC9811D0733014BF7220B2C3EF34CD0A0804BF26D2CDCDAE774B32818B5F76740905ABE907A30E087A58E1976ACE56FBDF926F4F6F72B1F67F9A2F970C5855F4AB1F8DF479D4981A5E152FED0B680982BC8D3F1D0B77F1784C268C31455E09713DDBBABCE3D1D9A766C837EB4E60F2228FA7C81AC1EC17058201E0E4107FAFC377EE72AA8A91E9552FB0FB5B6C3DD8FFC8DCDA238B1ACE01B8566FD6634B8FBD0EFF7A0F0C3858585D1412D82689B63569AC2023A1508E86D6CD7FFEAF7AB53EA7F025246C84A6FCC91A2E33346D2E2293D7AA963E712D4FD824EAF18325614F0D88A621601DBD9D4027D68F52681209708B4ECDEA63CD9B9CB16C3C55F3C3BA525CEBA9DFBC0E5F50DFEF0390A7DE9295320E673435B6F1FECEBF3A00D14CF588BD50225ABBE5A1382DD3B7740E5A86AE88B69C02FE83F3E0BE079FD2D4D70EAB4C9F0F51517A4847BA981CA1F1E7804DA3AD1303419DE9B5496FF53946B17328093484372FBE2E98D43D500E0546A400D02CB95DFBBE156A44F2D161D52B606FFA9066BAD80D70A7847BA072F35E2E01272DB1FB5FE570C3EF1BFC4C5562E0454D68A5AC3F3DAF3BFFAF51A8D5EAF910110959A6EEB341AE6226971DD8446DCEEE676D6058C844F818E5604001DBBECCB5F8465AA840AFDBF6D089CCEFE0195DA191EE5DBCC465834BE1ADEFF600DF4A06FCF17954344A387E2FC3C961D6CEFE985A6CE5E66F9A70B949AAE73A10004F05D38D4FB87034D2E2C1074F641D0E3823B7EFE13661BA9833E6FBFF701BCF0FAFF51DB82F0ACAAC2F3F0E3D27803FD58FBBDF9F9F921B901483600A4AB023508642098A5B551F21674D2791AE93A4E5586E859CBD2BABC4EA713D027D5E7E5E5596C369BFD6B3FB8E1CB45E5A3C64659CE3CAE7269C4DFF49C63D0D7A60C9CD3ED43E136C3AE83AD9070F7C2772EBF04CA4B8BD32CFE6E388880C926F45C5920E2E8A7EE42108C25409F5FC82273172D38059EFCFBE30CC3A6CA5A704492AC402F1F551BBAF12CFF7B982C90409BA8ADA911BEFBB58B61AE2A744CD7F60E38E0E63BEF6241A4F23CE39FC7D82D7F439176E33776E11298376F5EF4E28B2FCED84F301D00E991411908FAB4220B5F561BF275902B00F458DB2D168B01D19987A5D06AB516171615979FB2F4CCB9F92595A322C8326A265033030D53336E5419549795A0CD90071A8D9016E377C1CE03CD833F7CFCC8DCBF788AAB9780285AF59E813EB0959443506FC19731B2767F2B16CF855D5BB74073DF00EC7345A451CD87167A3A30B22DFDAD07A0A6B2026EBCE65B838EDDF5D7BFC3961DBBC0A8D5764F2FB75D86F7E9A4E16F0D068317DDBEB0D4103473BF00F99F660081A002820C06ADAAD6A70B9F4B735F332E02CD2B8BC7697835ACFD46BBDD9E870C5088566A3182A248ABD5DA1024A6517593AA474F9A3635A1D5E753DBB9D8206690548456C3922D13C75441615E1EAA073F8BCFCBC3C60F25D06CC220EB9D125FE43AF6B9BD998141F797FB1FE0F193CA8BA15888C21B6FBC01C565E5E0CB2B83380D4675145820EC7180A3BB137EF7D31F53B3EF94636B3FFC081E7CF219E619D5DA4DD7D98DBA35F8FD7AB0D0D0B70175D0271700A47B066AE3505D7895F0D5B51F7260010E85CC0080C2672A0019C08EBF0BF1810BD05F2500581128467C2483D66030D5CD9C37D3505032D61F8EE8D420486707BD4E0BE7CC9F050E141AF519CC28F4C3B0805EA3850B179E0CABDF5B0DF6C222D8D5D90FBE1828C251E620481324993D01673F44434110CC7920202BE42AF421590055607BE31EB8F09CE570DEF2D353339F48FD37DD79376BF46233E837D5159A6EC0EBBBF03BF6472211BFD3E93C6C0F614EFD0F3380201D0C99B673117ACA82C2E6F0217914BC168B118B15E9CA468546DDC29287C54C051F896C0E0381A168547555C949936786384D712014E6D2ED04FAFDDD2F7F018AF2F398A178B0A31BBD072F0349AE2C402F516DD5C1BE3DBBD144D542D86805C1688633674F8798DB01BB1BF7413F9A45EE507848810EE5460E87059C9D2D285C03DCF693EB521A9310C3FDEEBE8761DFC143A81285E0D462F325F88D5A289988BA9F6A7FF070B57F10000E03844CC0E08E0400742ED67CAEA8A8482010A00A302028CC34E61EBEA4850A0A5F2E6629266122101020389E378C9A3A6B96905750E7F2878C51D6D3576482EF5D783614AA52ADF4419BD1522737CE170CE56C0B504D46FF441908ABC6C8C3A14387A0A7B7172C95632066B0B07327A1EA29C9B7C2DEE60E68E91D90EE238E5D9415708779065926B180173A9B0FC2CDD75D03278DAD4EF980AFBCF56FF8E71B6FB3CF5E956FF87DB15EB312BF552702C3110A85FC25252591F4A04FCE00C8020418C6F66197D1A34773485D7C55551519845A54073A540D7A2C067C11A354FBCDF87CB4B6AA80A0B00219A4D6E2F2727BCD8439DE1857E60D04F81FAC38970588322D2EAF9F05977A9D6EC61A39B7F6A1368A81000C74B682312F1FB4161BCB645273B05963CAE1A5975E0683C9044E5D3E845409A38FC302D430A6BD690F9C367B267C037D7EF5D2D4DC0ABFBDF701315EA2D76EADB5E9C9E7EF40A6EBC3CAE38946A3A14C419F6103600840C0910A5E7DDDCC9933497F111B903AA0513735C804CCF3C07FA5C79731E0F3B158046E13182CB8DF220381C0411A859801ABA9BE6CC2F499577DF5D2534C06FD907DF5882D28A6D08E359642B547EA11D03800DC40177477B483A5048D3E6B216BF5743458C0D3DD0EF148086EFFD98F59FF03251680AAE797F577410F7A1A1A9E0F8D2F305C89CF71086B3ECD7BE0A25E4034BA79A6A0CFC706C0D15E64401152C99E58BF7E3D3F6AD42866600602012D1ED6A231A3C797D24B3108930C025A53A452F59B31C305975FB17CE2A4C9E3CC468390B5D7300550A409A79C1E1F1B429642CF145CFA58ED028FD01648B747E2213FB4EC6F846BAFBC0CE6CC989E3A1AC9D3CFB381ACA8DA959BB40D857A61250ABE136B7F3F7E27DF50419F630E009980F0EEBBEFF2C5C5C5CCC0B45AAD02D29986C0806A428E47907A30E17E990DACB8CEC31A6093B6A918E62F3DE3E499A7CE995A52546856B7C593C7184CCE362646D3687FBFDBC3FAF50D201842D1E811E408542D89D25860EEE47150611260C7CE9DE014ACD03AE0CA0808BAA06DDF6E98503B066EB8FA9B29DF69C347DBE0FEC79F12935E7ACD8ED146FEE728FC0E7C1FE6F6210082B90E0E754C01201310D082E5D02EE0C2E130EFF3F904B40D28F4ACC1A2D3D3B8A9D1A8115F9C3C05AAFD94B9CCC7753EDE82D656D94EA81C3DB664D9B9E7CEAD1933B60CDD444E0ECE2843C76601C480C7CB7AFFD29A0691FAB82CB0A0B6026EFEC9F570C9E55740C26C83DEB83633F5F77681B3AF177E97D691A5DFE9845FA2CBE743EF462308A193CCDC55F88ECD28F42EACFD0E54A57EDC1E32E873CC03201D0C32107A7B7B296EC0D483C3E11050C7692415217A05C8041203502316BBC40879B89643D73A8D466B587EDEF9B3264F9D5667CBCBD32B730E2A80480581BC4DFBA9F955AFC3050EAF8F25A172670129248C2CA0456807077AD1B5D4405467000ED783AE0F8760FFEEED70C97967C3394B17A7A8ADDBEFFF0BEC693AC07E971A85BBED5A6E25EEA74610FD269389197E5D5D5DB1E1D4FE631A00B9A807040163040A1AA1201913482C406B9BCA605472186457D44D993A7AE1E9CB6795559415D248404926180A10E27ECA2C0EA0AA707903E00B8598253E6C6B3FD339F8BB75DF2E28CAB7C1AD3FBE8EB5A99497D7FFFD5F78EEB53744EAD76977966BA3CA8C6764F8793C9E406D6D6D3417B7EFB803C0E1D4030DD98E8622B30F68F85CFA466407A0C0281890271988562999655627B34C66B3E9F473CF9F356EFCF81AA3C1A84B1776523564010416A7CF8F86A4173C08087F581C9E361B0B24DB450C76157DFD3DD0D6D20CBFFCE1B5505B9D1CF78872FCB7DDFD6716CCA24C5F952E76355AB787649F9FA6BA43560C4F9E3C3936DC81A28F2B0064530F0484CECE4E0DFABD1AD4833AFC30060482113F8CDCA885D40303850C0429BE40AA03554182B142ED8449E5B3169C36BDACA2BC4C2368845886DA2F0322960D28F1188B35D0201AD48E21188E42848D6F701816888661F7F6ADB06CFEA9F0F5AF7C39990340AFE497F57743574F1FFB5DAC17EEB709B1D7C9E7C7423BDD611A41D8E71B36F51FD700480702A906B211D03610C456D682166B0C8B23E09A22884CE8925D60911ABAC8412639E5AD97935D1367CC1C3D6DF69CA945C525453CCFF16A4F615880485084320121EAEA160C60113BBC527337B1FBB7786DCBDEDD207009B8E3E737B026EDF2F2D8B32FC2BBEB36B26DB34EBBBB840BFE0A9F99F2FC44FD0EA27EACF99123A1FECF0500B2C5120808E4351023E061A61EC84E9002474A204952171629D864928140D7E03E96F59C3177C1B8F1D3664CB4D90BECD4A03DDD75CCE652660344BAF7D1DEDA0A1B366D82928A4A282BAF807C8B094EAA2A070D02E2E1279F95FB0D84CBF8E0F7B53CDF44D48FCF3680D77ABBBBBBC373E6CC891E09F57F6E00900E84152B56285E435151118FB584A28B1A122A059528CC8CAC605409DE22A9045A53A0C924BB9064604A60A0A961B49367CDA9AD9D38799CADA0B090E70521B3E0B30122694FA899A3ADA515367DB80946D78C83829252E57D3A5A0E414F471B0BB416E8120F5A1391D7C9EA27C30FAFF720B85933AF23A5FECF1D0086F21AF06351DB031EE9572BAB071428CDF66594238C723451A51A1456203B410A4FCB6D2384D1B5756563274EAEB517979619CC660BFD6775CD8EA5093B1B20DADB5A60E3A60FA16EF27430599349AC81BE1E160D34EBB57BF3C3EE5BF0B969A26B6AE3E7A059CB8EC4E73F210090CD6B90D3D8A15048D0EBF502CDE246B51B05418265092829D42C03C02C859B654630AA5A4711A3301541ED22A94D65E5D8DAD25175934ECA2F2C29D3998C783DCF1DCEA59455C0D66DDB12E525852DBABCA24A93354F4389A680CF0B4DBBB6870BE2DEEBF19F3491E1476DFC90CD3CE8F71F91CF7F42016028F7B1B5B555510F54ABA9912B02803C08F20AC85660609032904A5B484965B0B609A41EE4B8826C2F1010A4B903F9FCE2125B65EDF8EABC82A212F437AD82466BE0048D8606495303A20301D0D2B87B2F38BBD751A49AD7190D86CA9AF95A735E454FE3F6C78D51FFEBB8BF9DBA7621785D682406F0F9A3C86EF1A3317DDCE71E00E960A0F7BDF8E28B999D20079564562021A29DA0A5B434AE99772005998C19EC03A3EC41903B49EC4040204091CD200341DD80861683D96AB497951759D08E3098F2F203A1A0A669FD7BAF30E1F33C59F3D4D1DA4FB51D7F77E19A023E5DB8EDC067A26EDD47ECF39FF000381C2BA05EA59940C97B1070AD456030231041A04710E8A59A6F941252CAB654D2814085359D97EC0662079E9AD0130E296347134AE23A22ADE5092369624912743FB5EC2510D036F9FCD4CAE7E3F8FC2300C8D168349BCD1C25A0B0C6917E676A221A8D3203523608090092DBA800410689E47A6A253B41AD2264564848820E61216B9E4D1E49F30CE3FFA0B51FF73BB1D02C16FDC8486E046300592BB26AD5AA23F6F94700300C5650AB082A04068A2D50FE815A3091DD20B988643730401000A4C8A24EF21AB4AA988256A51A68A1B9858392B083D26FEACE4F032207719F87E2FCE4F2813869F551A5FE11001C01188819D07BA069E2A99D8220BB852458F22AC8904481D19AD57A620CFA2D0B9FF6031BF59E751D8FD174F478DC8FE70525DDCFD400CD168AC702782C80A00BD09470479BFA4700300C20640203ADAD562BD3EB040A14121990D4AC8D6692279521A01019486892691558E838DD3A4693494B6A808010C36B13B84EE075B4CD660B45D0450E1D3A143FDAD43F02808F1F766636435D5D1D900169B1583897CBC5A170A9912B2FF5B764E0A06D142C3308E99834654D82A693A729E6E5DA8F0062C2A0A960F138D9036C36F1254B96C48F36F58F00E01362070284C3E1E0BC5E2F47A0A046AFE851B0DF247CEA1483359BD3B0908062F9C7F17802CF67C240AF24D1D8D808C83409A27DDA97F88404350280A30C063543C8A0A06D3530E4F348E0070E1C48D4D4D4B029E133DD23F1090B6804009F1228D4421D6A5FE25316C8FF072BAFFD9FFBDCE8AB0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (72,1,'PBX_(24)',0x89504E470D0A1A0A0000000D494844520000001800000017080600000011218F2D0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000005144944415448C79D954B6C5C571DC67FE7BECEE35EBFE2B19B0CC4B5533B8D49E254A452B14921010591A8E21190501149BB62C3820A90408A449C0DDD2051A95408165055E295052D84A2224A4155342AADA394C68E43502C3B641C7B269E38F6CCBD3377C6F7B09834426513E7DB7C3A8BA39F8EBEF3FF7FC25A8B10C2072240010EFF2F0B34813520B5D65AEE519E10C21BDD7FE070676FEE1919B8DD5A4AC72885D20AAD244A4A94927444512D70C41F4F7EF73B3F06927B06005160F4B1634F7CF670575744640CC618426308B5210C155AB7CFAFFFFDCD3CF06BE0FA66005EE0BB9D1D4671797999A610C83044194DA00DD268A4317C656C0C2D65084836210FC00DBC8D6BA59BF42A8D361AAD14C628B4D6844AE17B3EF3F30B942B953A9B9403E0BBBEB323BF159447C383BA7449A44FAC25D54851EFE962F7AE9D6CEDCBA9CD023C80C0F5995FBA49DC4A914AD2481A3474825CAF922889152E6F965798FF4FB17E5F00CF7319E8DF42474744141A4213B63D7CDF0D9109B9512C06F70510BE2736ACE5ADABFFA6E9B904266C871B86F8A61DF489BDFB4892C4DE174042ABDE6CF1705FBE1DAE5228A5905212F83E9EE7B2B0709D4A653595523A80B8337CF706D8108EEA509299D212E9AA43600CD2186418DE71C3D3A30FD3D1D5D9FDCD93DFFFD6C91FFC687AFE7AE957473EB5BF2BAE548A3D3D3DD9A54B97ECE4E4A4FDE0940B20F785274FFCF0F183079FC271D0818F943EBEE7E3BA2EAEE30282B8D9246E65546B35A6DE7D8F48EBC5A78E7F75DBDFAECEA3D76BD5787565BAB27AFB0FF5A4F18BED41B37CEAD4A9ECEE0B5A96280A02945118A3EF866C4C3BE0F9C565B2A449AB5AE59DC2DBDC5ABDCD379E3E9E7FE1E2347F9D9B25ACA71DDBBBFBC7B774F68C6BB7F16CB2562902DB01EB026678CFD8D15CFF03BBFF79ED1A57964B5C2995985D2A71B17883526595CEAE5E84105CB838CDC8C8305F3E7298AE286228EA644FAE1F2D3C2AA512EBA2494E86D457CAE6D537CEBD77EC3307FFE501226BB65AA1923C36FC10466BB4D628A9108E43DDD7002C2F2F73FCF347495B1B54933ACA8523FB7691A429D7060728AFAD737EAE48B55A65764979833B065F7EF299EF3DEF01D946B62154E0337D6391D46D87AC8D61DF8786504210C709AD461D1948FE3235C57A9CA07D8F570A17C875468C3E9867ECA141766EEBA3303B4775A54C235EB7592B7BD603EA8EE32C4E5F5D20CB3240D028AFB16B6C2F1982B55A8DF353539C38F6390A172F63ADC5735DE2B88AB0B09C36F8C7CC153221C8E7B610AFDDE6F14776F3BBDFBFFCFC6F5E786EC90392F2E2D24FAAB756676BB5F5EE8D9675AD6D390FF4F79E40853BBDC0739EF8F421E6965668349B78AE4BE467C45980E74B16AE2F114849234D592C95F9E281FDBCF6FA1BB776F5F77C1BB0E24EA309C0BFF3AB04C0F8F87898CFE71F1BDABBFFEBB9C11D078E7E62A2FB6A7199C5F20AA5F24DE25A0D6542AA698B469A92A44DB61A8FFEAE0E7BE1ADB73FF6D24F9F7BC75A6B1D00DB566AAD8DADB5356B6DAD5028941CC7F95344FAA5775F7BE5F06F5FFAF9CFBC667DF1D1D1E1ECD1BDA30C0D3D88D492C07389D76E13D88C8947F670AE507835A914CFBF3F70E25EEAF5F4E9D3CED9B367DD81818121CFF30E7EF4E39FFCDA8787777EC4F565677323F32B6B55662F5FB66912D76B73D3BD67CE9CB95BA96213FD0D200E1D3AE4F6F5F5858D46630418F67D7F64DB8E9189D5D28DF319FCF9972FBE78EE7FF7D46601ED4B4288C9C94931333323E6E6E69C898909A7502864535353AD0F2EC1FF0249CC173F1A55B1790000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (73,1,'PBX_(48)',0x89504E470D0A1A0A0000000D49484452000000300000002F0806000000A58249C90000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000E2F4944415468DEC55A698C1CE5997EEBEAEA73BAA7EF9EDB638F8DAF65CC189BC4C104010E3898C421B6907229D9EC2265C50FFEB0E44FC051F2075961154BAC404A565A25D92C24596D921F08A41020104C308CED39ECF18CED697BBAA77B8EBEEF3AF27C5FD54C661C93AC31335BD6ABAAAFBAA6EABD9EE77DBFEFB3609A26B143C0C14E1089AC63697CA387B9420CBCDFA0353C04660074176DC59DB638203244FC08CA33855B9006A40669DA86986B61806C7B9E29EB818421714810E2B2EFDFA8014CF932640E9286E4207588BE2606D85E661E0FEDB9EFF3FFDE1E8EDCE374AAE4545572F1B3839C4E88432555B5C6CB670713851C0A0467056745964986B0F38BFFF5D37F3AF16F3FF82DDEADC14F6B1285250354E6754912DABA1331EA88852C6514A6A06C5F3345657E8F29EB90D93D998B437690CC9E9325AE387BA65C295321BF18C57BBD901233622DA220DB40E529244BB267D72D1BC9E9526D856D65577878E53D65F9378735B69F63D72317A6A8D168F96C4C896B05E2A51C671F40E44591448B782AF50615208ACAD2C2524C6646C896014C797939326CECE0E39E809F8F995F9031B24D0E6B6E0037021608866EB1DEA9E94B349ACD9008654428C7CF48175159BAB6C74BBFC9D673DFDB7F276D723A399EE18E8F4AC51FC9005395256D3C9922AFCB4931A7973AFBFC8880054A87A458792ED920B5AF190624D9BA968081E4F929CAA85728E0F5D07A1CAB6852561C42C0E7A6A0DF0760DA806520B5D34365A065E0455AA9B2651003B0056E965230CE36B0582EAFBF01F0A0D8190E728ABC5910972BD5FF8708804797AE338502955A2D0BB88A0558790558D93DC96145497638782AC988CA9EAE4E6E40A3D924C330D6D9005932354DE755612697A38BF91C9454788E4B36582559B1EED9405EBECFB00063B64623D4EE7633065A7F03E039239D2BA2F817C8076586E25D76618277151429D1A65356B024EB1E535C1165708EF5EFF4FB67E80C888755714D5B670358250D78DDF8B8832BBE94DB7FC96F1BC40E06E2A5EA6B815692608C8432224A2C1569269D2173BD2380A6546C73B19EE7E6419C2F964833F5F535409404C1FC3841BCDE29240992A9DB61BF5910B7348DB47507B1AC18F9729D66F345F22B2EDA9DF0219F45E436F3BE0003AD6A2BA25FC25DE2D320844C6842D1063C8E39CC2BAFFE9E584B651A26E99AB6DE292492CFAD5254F5D9EDC25FAAACC3EEF5ADD65A5E4E190BC4ACBDB61909631106FCF1FDD3A4A1AFC2F382C7E311060707D9DC49F8B8E704AB0C006F8BAA6CF7F5BCCF979759E846411C0B87192BC98944C2DDDBDBEBDBB56B17EDDCB9B376ECD8B1D6534F3D65AE260FDEB99A376D007F1359EF99CA64295B2DF37C97150BB8D75E331CB048C936B0D1CED2A1CD031444EE972B258A8423F1EDB7EDFAA2BF2D5402BD56C968BEEF108C0F9E7DF6D972B3D974D4EB75D677371F7BECB1C64B2FBDA48D8D8D99CCB81B3168750A21C24DE42DA351DD34A889149021A6A893C1B0A08964081AE9C080AC314C08A40308BAAE530BD7986053BD56A32BF30B94CC2CD2271E38740460165BCD164161BA9A4AD3623E3FB721D4F6D03D9FBEEB61C9E5F9467661F162A4547C6BB654FB5FA830FEE4934FD66050FDFF6A90B0341F86EC7CF2A9EFFD20D1D3BBBDD16C008812F72ECB6726EC255C186EAD172E0B33C0026D8B7981DAC27130108C82D2CD56939F935753347661927F74F7B681FFFCE7AF7DF94BE962559AC8E46883DF4D15189E2B16F58585FC7CA1543ADDACD77F2957E75F6E954A856AB55A9F9D9DD55E7CF145839652E47A1100E8441D1F0B7A5C56C5BD5EBEAF9A85C936B81562CB3F9985059ACE55A8D1D2C8C47B74569D7589A666B3343639B54C145F78E8D011D5A14A3F7CFF1DFA4D7A8ABA652F6DF2F9A9DBE194A292126B0F860ED4EAF50305C56516293FD7946BEFF9FDF19F21F57EF5F8E38FD7571AB1CA00785274A2BFE19E6654B942A4E56B91B70C96487C6C40F95CBE40999A010541B5C08061FF3E9DCDD2F9890B944FCF50A8AB971E39FC39EA8C455D6F5EBA4AAF64A6C98528E7D39768784EA1311FE6216E0FF94C075242A23653149C0E775431A5830D320EFE29BD78EAE8D1A37B1109FDFA06AC48B3E1649292853C07EAAAC265172FC9062FF3A80B060F863B318F70626C799D793F3B9FA6F3539729D2D94D5E14B7BDB7DF4EF7DE719BF5FED939DAE06AA3B97AD1CAE4B93932B273D444EA15BD3E6A0483B4D08ECC964CDAC69C022C568A79E9B3F7DE2BAE5CDD58CD42866196319167208EFADAF8FA8FBC34D3E24CC3CEEA720D60AD848076C1EB7071E57935972CE51733791A83E7F7EDFB24B931476693A40DF1304DA7B3BC53FDD6DE5BE95B742B8DA4E769243B4FE7907E1333D360AF3C093A5AF152995C9118B97491C26E44295F4577AB2786D30B9B1F7DF4D189E79F7F9E5549F39A95375113250765F315D6575000D598A3168C433A005A012009396E58C035748D82E10845FA43AB989831CED9F131FAE2A1CF92CFE3E153D190CF4B3B36F6F0670A68F416CB559A2B94C8038FEF09B7D32763611277DC42C357B274097D58AA52A685469DE24E74BEF87CAD5A23C5EB8F15F06A6FACEF275F7FE28927FEE3996732AB0C68B51A92606A140D783EBC68D9F740B994C7478AA6E39A201AF4BB37DEA4AF1F3D4CDDF118B023D2C8D434FF2D35BF48018F9B1BBFA123464E38C9DB9D209FD7C359682A95A55EBF8B224E19B86AA7856205DFA8511386B4EA35F221A5A23E97D0DDDDFD95D1D191871189C04A03840603B143A10FE35BBE7461D3660DDC5E44AE93B47AD5E4F53FBC4D9FB8ED56EAEB48F071120CF4A7735360389D5E3E394C2E55A18D9D71EA8F4528DEEEA344CC03AA6D219A3AEDECEF21B76050A2A383CE4E25D15ECDC0A94D323589548F173D5795766E1DA42CD22D73F5CAA53E8F2AAE5A5631347D19C56F9C3F77FD7521D6F7C0AB07B70D5217D267E5319BC9501515F8FEFDFBF8385FAAD05B672778B496A4526BD0D4D50CBD373EC98D4A8483B4B5B793B6F57593BB50A48E441C9851A927E4A31D7DB7236B35FAC9CBBFE77EBA6BEFED1C3FC3C3C3465FD8FF8D3B770F6AF28A55659401435F28942916F4D38E8E6E1A88775AEB3F760A89AC1345E595D19DFA83916BD6A54D7AE3ADB7E9F0817BF8B08E0FBF717ADC5EE082F2260A229E114D811A39CCD648A1C19E049DBE92A12CA6B0BF79EB14EFC1B6F5752112BDD4D1EEA58E789CAACD029DBB3C43BDD120F574C4E9DDE133A4574AFF134A04278E1C3962C82B96C46BE0A76AB9DAA062396D2DF403AC8CE375DD16036D048AD47D0F1CA00A0395BDE0CB8EF1F313940115FEC32D9BF9B3EF8C4EF0D4B03CCF562C4D7EBDA1DD434954ECEE6088CE24D368C145F2362A54460BD300A79C3A7F910B3BE2C180E58CE2023DF8D0512A01F8EFBD77AABA23D2F6AFA954AAC27417ED0D09B619B1080EC77B5A505407654159B08C0625D83D4D632D418BBC6D3E728259827E2F2D160B343279992693297AFBE4BB74E053FB882DCDB3FC2D562ADCF3026F45AC22184764AF166AA4230D672E4FF1BCDF120B508BA527AB21C2EA25D4D9C53CA5D2293A7CDFDDE4C7375F7DFD4DF2ABD277D0E2CCBDF0C20BDA521D30ED5D94F9E177FFF87D41917EDEA8D7037A4B771AA6C93A35C1B0E8854D2F1D5BB66EDB3CBF7BF7E76B8D96C8665CFD00E41C52E09143F7D39DC8D1C9D42C3E9C5BE5794360955CA2F4F465123D6DD4ED12693A10A61018E9FCEC3C1882A5A6B11C2563A9A0E29C68F3D2EE1D5B69E4DC059ABA706162B02BFC127EA92E3577C20A91ED5D1997BD24AE5CB3AA2C4422117560606043341A1DDC72DBDEBB227D03BB2ABAE9AFD4EA7C2D74D7967E6E4C83450D69C440CA841D3D609C73A939784BE07B07020C6ACCA5A8E5F6230F64CE6CD6F3C6F2DFB4CA39FAF637BFCA375BBEFBEC092344DA418764FEE1F8F1E3CB06C8ECC2DA65E238607F59B597C4AFB7AA0C5A17B3F858F2D2C807C3C9F1337DAAC7D7D7B373E840BE6C6C3A979C510EDFB9177C8F767A7681164B258E23A6D0D8748A5C682772C9297245BB68532C48672DEAE0BF9BD760C5007DDEB767880248D91FFDFC1764D4CAFF2DB9E491E9E9ABF595ADB56C73BB695751B60DA4E3AC5D43FFFC980348B76FDF5E77B95C790CAFC090F156ADD23179F2F56118D63770FF830F54EBF5A1CE4848825019C569722643E9F91C4F8B161475257AB897DF3D3B46AE40D06628B4E068E2168A657E2D1A2239CD26DDB36F2F9D3A3342A73E383D3F10509F6138C53CC1F8AB5DCA1BDEDAC4F1F4D34F0B6002A952A9B8D0FF045081BB60D036FCDCB767FFA7EFD8BDE78EA150281C602CC6264939B40DD399799ACF1741B1ADD5E9021D8AC94912C35DBCA16C1473F4CD87AD36E43BC77F6806A9FE8F6E45FA3552388709CECD1B70AD3D6871C546A3E1F67ABD1144A2A7D56A6D808D5D6EAFAF63FF670EEEEFDBB869A3AA3A55B6D4D2040D17AB555A44D1CAA35560516255BD61A7920EFCF4063DF4C8830FD0F1E77F4CB357932F4764E35FE09C2B68E05AD7DD27FE58369C710C0D0DC9FDFDFD6E0CFD302486A8F4E2FDBDB88EF66CDCB265E853FBF70682A1285C28B2A8B4604CD336AA0A222800DCA36747A8BF7F23E60902BDFDCEC962C4A87CC6ED768F3CF7DC7395EB4D2BE58F6B79C37E39F350111129631A38EF743AAFE0F638BCD775F1FCE8C5CB17C6879971FDDB766EEEECDFB4C5D31688498AEA361827617EE143BF03F6D0E64B15A9B8B820B409AD63A847D3C05EED43E7C46BB481BE8C9393274F2A888407E915C0B7A2B8CD36D2E3B88E407CC08F5351556FB8B3B7C7178AC4E6D2A9E9426A7A5472B59565A3F18B402070F1C48913CD753760A521EC1B77DF7D3726720ED5EFF7B314F302277EDC0F23BDDAF1481BEEF960A8862A9B626D0D0CCB603C05D629FEAD251699D6F858FAF86BAFBDC676EB7544A5363A3ABA08CF2AF97CDE89F452F1888ADF30DD500C4C862A509E3DCBFFAFC5DF5B1F5AF308FCBDC81C3B764C8041CBF50675E68616B7FE0C5B7C9C936CB491530000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (74,1,'PBX_(64)',0x89504E470D0A1A0A0000000D49484452000000400000003E08060000009B411D6F0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000015474944415468DECD5B79901C5779FFFA9AFBD89DD99DBD57ABDDD5E1952D74AC91916C4010CAC426C4AE440A014C0E123B058E09601248A54AB88A22840A24A10A889D4A91900A71D97FE0B8EC70D8F828C996ADCBAB5B5A6957D2DED7ECCEECDC337DE4F7BDEE999D3D6464235B3B5B5FBDEED76FBBDFF77BDFFDBA25CBB2A8FC93F0730EE5729743D7EB67559138B7AA2770037E52F9F90EF3CCB802529D56AE02E13705C2AC625E07190E993712080180C33C33AC813C209FD3BA1D30E4EBB4FACC78099407E51C2A9681B81120A855CCBB407EBFBFB651716B4DA6A1D74A92E9B74C0940588A2CB304C8925C81422159A18AC628558A23F38173AC488ABDEA8A64E2512597A2E45C2E57D21B0CCEF41D3932846B495061896ABC7B0038A2AD382B5EB3BEF7B687A30D8D9FC124C9A569E47669543E76F171755B75AC897355B49ACAAD6AB7205590428A02028232C832CDEC0777EDD8B54415CC1B0D40044A1166866A424172BBC1946A33A731A3CC105A55511DA615BB556DC655C1B482EB0C8662338EB18AE8939D63990C130B6D492C2331501A947554836E2400ACEF41AC507043E71ADAD8D92E1858584187394D5DA17FE19857FA6AD7CAC7BA69D0C1C3C7188030C87B1DEDCC5BFE95ADBCEC1840B7A24A5EBFCFF3F6ADEA35380B8FDB4DA669490EF35AD53C6E0800D5FE5E516455BE2A13D2F59BA3ACC8E448DEF572B36F5B05A81A048599AC62F417A74FD24F4FF461AA180AF19620C28009C7AA20A9EA18FA817379E11CD724D8066E63C120F57DE68F2AF7556C777243995F0A80BD32B26C168AC5CAF91DEB36D07BBBBA8501B3F51F96BC4AAF1547B7952576409C2B6C3334D1BADDAE0ACCD95C0E0028B41A7ECB0190A4622295A663E7073071098BA709E3A708E3A60957C6165E511CC3C6AE0DE79AAC8A9699156365DBFA43A784B8236AA041B1D6328543010A05FDD6AA0400AE4D0E0602D41009DBAE6D991750843454FBF7CA18018A5C756E7B04C5014595ED58A0A41B349748AC52099035AD26E0A570C0FFB6DCA0B6049415C7E11E631313D26A006099EF551449B6DE059B542AE9AB5402147911FBFD931374162463E564AC9C6815DBC8C92B108BB8AC2ACBFA431E0F7DB1F7D6CA7D39185A9500404FCD6A3788148D8A86C1C611F9CC42C4C2EE52AE0A23E56A126993248222384262480BA659F10222EB31699502A0A87ABA5024233E0B7BA0504071D11D6BBA9C78DE496814A512D70B43A7D85E61F118D996064E7E244E80243A72EA8C38CFE70BB45A7E2B488064444321C19C5B73D9595E75C6C7C78AD3BA382942A6E80208DCAA2EE1253813648BCF2B8D90970CA304CB6F92A1EB42F473EE02E573B9D5E9062559514BA522857D4127B191191452250EDA4D522CC38EF721C2A66E910E36254B25CB30C954755275858CD262CBEF7179177981228078E995D756A717B08410FC0625A66BF0203EAF870AA512AD4A0058F4DF8D64A8B44A0058AE024B92A1E7CE9CA6A74F9DE0EC058910121BE8B7A88B71B2039B601F3BFD9C18C1184ADA42C2544E9EEA910C1DFAD4A717DCA0B15AE300C441D5B5C95DDDEBA8B7B3F3FA2643F93C15F2AB1400972A1742E110253339D8B91C5C9C0BCC4838B6FF60EB483678052DB24A0699528974AE20C8B6DF278067D9756E8C06F138387D1371C041DDB0A30249088AB54A2540924D4CD42D6A7A6E3BAE979525898F62AFB2AC3A31819DEC708E2F7C3FC700ECFFB95FB28BA0B2BC1017CCA7D374F4F8295A528C91560500BA696AF94281423ECF3B9A0C1D3A761C2643915D0822A2D1A8DAD2D2A23EF2C8233C1F73DFBE7D8B4AE4E51DAB7762DF601900164BC03B18A7B32AE88803F2853C4522115F2C160BB7B6B6E6DADADA3480E14E2693450051387DFA7469D3A64D165AE9FEFBEF979B9B9BADBD7BF75A4F3CF1845936D6D70310C9294AFA418DA00D9F7DF08B5FDBB061E38E70C02756EB527CE6BA25435FD8B65D006000E0C77EFCB8FED2CF9FF961CFF65EBFD71FC823942E4175B2A6A19F7449E621CD3467F2F97CC98D1FFEC705B7C9CC16FD7E7F2993C9887D849E9E1EE3CC9933164B4C795BF3AD82B20C803F7BF04B5F5D7FD386DBC23E1B80FEA9493A3E362A989661D11798635DB7DD5CE51CEED01E67F7495C00718EC36E373D0C0072F91C8D4CCDD0A193E72C0BD70DC390741D8614E971099291CD66E9DCC060D1E776FDA4A73EF8486B6B4747C7A64DFF31139F9D9D4B268E65D3895FA4C6C78F636E39D8933C4B8CD7EB2DC5E37103AA649455E85A256419007FF185871FEEDED8737BA158A81835DBA0A9627383032561D0E4056327565D183B1E6B7B04DBF029222B44AC8CEC0F5925DC5F06061677166A50665CB4384FC3F3BC71FA742559DADC16DBFBE9FBEEFB7BA84A57167D654ACCA7AD99787C3E914C0EE5B2993EBD90FBA5AF987935954A650068BEA1A18125457FFEF9E74D5699370363051B60995CB32B16DD5C22460E5066942BC29C12DB4C490E594E8A6C5B2D934A707BBC05CA8FE3671AC81D74447D45185677A89624B79764305DF60C65A04A7A9EFACE9CA930CFF7BEFBA377FE61437D7D179F7FE7956364E2419D3E3F6DACA991EAEBEBC3FE60E8964CBE704BB650B80F9EC52CBA1393B96CFAB54232FB5F35F3F3876143B25FF9CA570A8F3EFA285779755A61EF711900F0F3EA7C324901C4EBAAA4DAC9D0DBD81912EE11AD059D87CED2E0F41CA50AB698CBB2B920210A40CB1B74F0D8710447F9CA3CBA3A3BADEE0D1BEFE1E367CF5EA2FF1EBB208AB41A24CD0F09EAD002D4EAF55183E606A9E4F57865AB566E52BCFE7B2125F70EA5D325BD98BBA47AB4E74E0C4FFDE0A1871E1AF8DEF7BE575C0AC23200100328BA61FC065655885B25DE47DA4BA3732921F615C6B9526CDAABCF21F1814387A9542C52626A9C224D6D140C05E9814FED9138BEC815757AF4E471A4E0609EFF373E4BA56C86AE44A234967793E645A689B5AD355D14819A06E023985C6E8FA693B41E19C7FAA2617E5E3767EE801739089530DE1C00CB94AAB585C1286215159086B457850557D1A7E25C90B1F85CE3EA11DB014C5E0753B3F3592AC8308EB2E5D80E19A26C83A1C31E202D264BD1283E7691129363D4D2B99E3EFB893D14ABAD11CFFFE1A13EBA584CF29E1DA93090E6F81869810059972F533E354F567D8C4C8090A889502610E4AABB883CBD798536413284CB4DCDF2BCDC5009E9D7DB00321789C8CF4F9DA427FA8E2EDA0DBAEAB193FCB0F8075D2EFA60630BDDB7F5BD769827498BF41EC68A5E38F00A856AA3D4B2A683B6F7F68AA2CBDA863A7ACFFACECAF33FBEBE9B9AC1F0B9B939BA984CD078A886A4629E8A434324FB03B0AF06597309925D1E4A5FE8A7C8B65E31A7904B25376C163F279F4A92C7A51AF0145CBD33AAD560793688489FAB38A623061F7BCF16BA677BAFADEBDA4294B7920D509C7D00B6EAF3E90CCD188BF73C858B344D01C68B603ED6D0409B7A7AECF710706F17EEDDD9DC40032313A268C27D8D911AFAC4968D8E8F273A353A437DE31334D0D84943F3299A991E26C50D470669D39A5BC0B4CA624C752A6FE75B54C23D73F9228582B1CFE5F11CD882837097A5AF7FFDEBE2B59C1500B07405038767923088BA53DCAC144B2A8552724062F726921E88B389D5300C7E19C4A25B77EEA44028BC2CD5E6D57FFDC8516A88C5E8FD3BDF275EAA708B1D26999AEB22B4AEADA9327E0EC6380DC33936338BE42C8BF998E4473CF13B37758A802A9DCBD3C991B53400091887A19D29E6A8844C8DAB53CD7E0F494609095B1A091992B060CD9E5436F57B52B8E16BE974E2FB7BF6ECC9633EE6721B5032B1483A35D50416121FA7E059DE06B37780EC5616FDAAD07B2EA514F522A50D40E6F6AD6824CF5FBC28ACFD9F7FEA0FC40B172EE7A58AB1E93875B63454C6E53086C16D8B45059DBF3840EBBBBA4414393C3943A33373341E9FA31ACDA2DD1D8D9483C16540FA27E769C6CC51AD57A54CDEA2D47C82427531A88A09BB1296D7ACEDFC87E47CF25B5A51FE2AA4E01F970150B00C957DA16B4577777537C8ABCB394406A24B6EEF8ACC4F4E4DD36B878ED0371EFE02D5848395FEE3FD97E8F0F9017AE1D869EA68ACA7EED6466A0807A8BBBD555CBF323C421BBABB9CAAB542662147B77434D3ED9B37522A9BA3574FF6D3F8D8146210833AA37E6A0A68226062952A606C28DA48FAFC1C6DDABA4B8C492612523A9D6EA1884F5E2E010624E02D84D3ECF244C0037796C91528AF7A56CC6B39B27CE6673FA74F7CFCEE45CC5F9998A6BE8B9785AAB1C7393F3C46672E8F08710FF9BD422536B434513D18F279DC349B48F09B5C140E85C4F8818101BA73C77B044DCD25E99593E7E8026C88980424C81308939E4DD16DB76E1545992252F1FE73678D0D75D11FAC640411B72C7E65AF6F78888E0C5F815B2B27438A7DECC4FE926AE7FC3EF4DDBD791B85D495D3FA83AF1FA6B5ED6D74C77BB755FA665369ACDE39BB98622D4497AC4E16CE79155F3F7D0163CE0B7568852ADCD4D14A3DA07A00D47F61803A3B3A2AF74B25E6E8C35B7BE89EF7EFA07300F17F9E3F40483029E6F5535B539308C2F6F7F551C8ADFCA8C6A74C23D3AC184151C2B7C934AA018800EDEEFA0691D428E544886D029FB34BE30408FFB62ED64A215F6045E6A767E274E2D419FABB871EA8F4E50B457AB9EF8C78B02C42EAC5846488A27A8A4601AE16F093178695A565706C929E3E7058D88F8D6B5AE8964C916EEE6C43C052125E2814B4A58BDF6E1B9E8A5329394B1FFAC83DA2CE393C324AE3A3A3B3EFEB6AFEF6ECEC6C8EF3846A00D83FC26C4AB9443A4BE96C9EF7BF4492D3ECF6E3FF657BCBCB826B3384B3441F8B3F7B0A8B6ABBC3C4C5B0A5156506F3E5FD07280071EE5AD35E09AE0E60E539112A335F2D05DC5713F4D3D0549E4CDC4ECDC2B02106205F2DDDD6D34D572E5DA2A174918E9D1FA4A320FEC1C0D12D9DED349B2F51574B233DFABFCFC1FF27E8CE0FECA4A0DF27EA902FC3F5B647027F838C737664644484C56A15F3DC91C13CB26C68C4E4B9F6874B253029DC9DA8ED59423FD9B5706B948AB475CB66E83852D97C5AEC18F93D5EB135C6BF73E7FB69747C9CDEBFA3D7296210267D4918AF8AC82F597D3FF290C97327488E34D3CD5D6B687A6A8A5298AA02D00FBF71820A68658FCF1EEF482BEBFFAF8E9E146427350635057DB4A5E72611533CF7F27EB8C5C2D196DA865F85C3E1F437BFF94DB3BC2F603A00F06BAB0988749A75A5C8F9395C0B53B1082AB70838980A22C32B8AFE704313D562C5DA10C565E18AFAFA07A80F2B73EEF230BDFAFAEB10CB007DE48E5D625E67AF8CD234476E0EE3D599254B410DC43D8F672B4D6B45FDE1C4C9D33470E98A18B76B5DAB088C347FB032FE6A85C45C629A3E79EFDD08A6349A85BB3CFAC61BA58D8D912F23329CDBBF7F7F2533AC96004EC5E6A626C67F5628E4E7F3854200119D17018E06F706CF20DE2BB62C470A486C89B15754FD25C3DC09DF2C3328FCC0AD08652766E78488C6A2517AE84FEFA3DA704814428626A616315C2DF6BCC7E0C9CFD35422497588EAA21E95CEE151923F24A4ED85232748F5054544B9C8662CF15A6CF5EFBA63A778362FD093CF3C4BF53EDF8F8C42E1523C9BCD95CB6A020066091328AB40F285FF7BEA97685F03B1452BBFC7A72CADDAC2FF4BC160D0DBDEDEDEF4DCE33FBEB0E5031FFE88371C6D4AA6330A8B238BDDAD1BD7D1CD6B778BB74EE3C9149D1B1ABBAAD80BC27D67C845EE9A28562D4E17468728D4BA9636C3C825C64668305A6FAB9D612E06D1B016DEBFE7681189D78776ED10E72F1F3C4CF199E9E99EFAD0BF7A3C9E04578F16155CABDE16AF7E61B29A645AFC3E61E57FEBEBEB5D1D1D1D68EABB71E37684B9751DB76CD91269EFDE9AD5AD70AE5080AAE8486315FAD8EDDB68026931AB083320182913CEEB11F810B2B6E19C4911F878004969B841BE5EC0FFA4E6E2E40700A6337EE9FF9763976C7C82BEF4279FA4D6C6461A9B9CA46FFCF3F7ADE6A0FB73B56EEDE9AEAEAEE9071E7840AFF6F36A55219125A15C8E2ED1B57D2BA0B85CAE79B471DC621000348C9C3DD53F76FECC4B2EAFAFB1B967DB07148FAF6B369575B522F6EF6A69A61482A5C1B1099A8A27841D29AFFE54228510D91471457C6880E6B2050A219BECE1307874126EB75130BBD463544B81895C60E7E64D82794EB57FF0E3C7C9AFCA2F782DE3403A5D981F1F1F379696C6A4A5FA53F5D5085DC36685B47DFB7619C82255CF7A7C3E5F50D3B4084B0256AA11B76A445B57D3B266D35F3EF8F9BB7C1E8FBC501EB74492731936213E9F16EF0C09EF52BDAA5C4D9A4154E70D8A7DC9F28AAF24059C8C95E6A6E8912F3F2842F39FFCF419DAFFDAEBA9F535EEDFCDE7F3A7F13F738F3DF698FE6B01785B5520FC905D89AF4D582DE025FCA0303C480C979AF08C3618AEE60FDE79D7ED9BB76CDD14AB8B06C4D7133C69B82B569391C9B89DF565B3228737AA98AC0685DB46A54839DDA289A25401203D3D417F7CEF5DD4B3AE9B4E9C3D4FFFF2EFFF69B5FAB5BFF6C9D6536EB77BF4BBDFFD6E7EA59AA0743D375B18086458D24B2FBD2403080D76C187C9D7829A416B180C0C8B4662B1E6DD1FFDD8CE8EB56BDB3D6EB7AA83310E8E1890340216CE0C6712F3C8E68AA2DF580240290790C4F71B8ADD8F8427E677D1FD9FDC4B29D88EBFFDF63F9166EAAFD4C9A5BFC21C2E8E8E8EA69E7CF2C915BF4891DE89AF541808BEEFDEBD7B592A5CBAAE07612BA200218670B511D798A2185673F3B6DE8D5B6FBB7D5BB42E1AE17FE597280518A012E28E38F28539A8482A93A54CA1B4181027209BBE3248FBBEF839447C7EFACEBFFD882E0E5CCA342BC5DF87D53F515757378345295DAD2C2EBD939FE99481E8EDED55A3D1A80B11181709B84A12C1254EFE190856935A55D36A76FDD66FDFDAB17EC33AB7DBE365E60408D580E0380F5032D90C656124B3853C8D8E0C537D6D2DDDB5FB76303E483F79EA596AF44AFB5C7AE109A8D230EC536EDFBE7D577D274D7A37BE532A03B17BF76E056E534D24121E18CA00BA79D519800626960A50B8BEA9A97EF38E5D5BEB1A5B5A54B7CB6B1896B40082B90890570FECA748731BB9BD3E1A387B8AD452FE48B038FF10BFE298CBE5125713FD771580ABA886F850AB5028F8A1A761AC569D03420CAAC2121202F9111D7A3B366CEA6C5EDBD5E50DD6446597E64526A0B0A164037AFCE811A42AA5212D1C69CFCCA74C79FCC21E807B1CD236B9D23EC00D05E0CD0C26479D602A88F9D4C04ED4E2984188F039AE718EEB433F7FD6C3AF9AB8C275B19A70AC293A9F989B4E8C0D5D02D319D000C6BFE1F7FBAF2042CDBC99E8DF700056928A743AAD06028132183EF407C1740846348C614C01F4B11DF182590EE272E89B435F1EE372F89F1118DBCBFDFDFDC9A3478FEAD7B4397AA30158492AF89D0006030CC1366A2EF8710F2E790184078C7A1C0090A4996CDD93C84B18001DEA94C2710AC94E89AEF11BC45505C0D524637070508EC56232A443D80E449D5A28145210E15960B8C03BC1939393168C9EF1E28B2F1AF4163EC05CB5005C2D3CAF32A2E2C76F91F02647D5F5B7C4D0FF0359B6A32F337224D20000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (75,1,'PBX_(96)',0x89504E470D0A1A0A0000000D49484452000000600000005E0806000000DCE811E50000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000027594944415478DAE57D09905DE595DEB9DBDBB77EBD4ADDADDE24B51604684120160D088180019BC1465E0A5CB61333999AAA2476D524AE4932D8953871162795388EC7D48C3D535354308CED81B1078859248190D18A96D6DA52EFAD5E5FBF7DBD4BCEF9EF7FEFBBEFF5220984A07B2EFAB94BDFFBDEBDE7FCE79CEF3BFFF9EF130CC380B91601175A390F55AD6FE462CCB536E6BBF945B408D5CFE010FC420D3E212550D31DDBB64216AB32E439842F7221D35AE24D74ECC30D568453F0D4B4AAB5CEEF7D515A84EC103C38042DF3E6C2A6F0661D136F80351873089F04AE622B612BF275891FD716AB129C1660095FE182F760F33A9ADBA108F1062AC012BE25F85C552BF27317A512E42A9F6FF57A1FB85C21AFE48EEA8216C6E70960F3911244C340258892AD04D1764986A5C54A9DCE3A58BD5BF66CA221A0040D7EC4EEFD788B456C05511473D8328AA22452A9D44C3A9D8E3BBF9B2B61515A80C0A520F39E1E58B96EE38E96CEEE1FC9B204B22C832CF135EE2B55FBE5BF6393AC637C9B1F97A4F27992F398B52F896C2DD11AF52BB2B5082870B616681BFB8A280AAC97F79C3CF9BFFEE81B5FFFF339E281B09894203B7ABFE57EC8F50474AD1894A4B2906C61A350A5AAFD79852F97AF95EC73A47995C09A585684E8540013BEA904DACEE5737EBCCF90231EA8961B5A8C16203A2C8029C05075BFD5BBFD7E0FF67A176E937064BBB7CAA2CC8E8992B9A69E5B215CD112B2C8AEA1FFA827337D335F6D7EB98E6B01FF2708BC030B1AFB9B24317C897FD751F892790E766E8FDB03A54281E252005B86C702CB2DEA8B4D0173C5000F3EB9977ADE86EE4E686F6E62C29CD5432BF6CBEE43B2DC89E54AE63DCF72358E6B665941E5E74DC566E0ECA53E28AA252F8B55A6CB74028345B58855DB92AD0441704BD87B9BEBEBAAA8DB87A57C1FEEC2EAAB1AEB6B9955A85AC9ED10BE740390D9C7A600678AC1E601A2810889C08E285CB5703E7EDE6ED35EF4F682E4E8F98B52F84E0B98956E20B02189D28D92E9351A93088628888B5DF8B352114E65D00392EFAD5EF2A5120CCE4C30384831802113E6CB4DDFED3C467E5BB0B6D19D91CCCC73053C57B6B745B62DF2868889108F6C7EE69A682D2C0B062A7B0D47458B59F057540021161260F532914AC2F77EF30A49C18429CEF55CC7AE755D75ECC73B1F80A7D7AFAB5400294858DC825F4801A61624C120E8A8A91A42D0B222EA0341F8E6CE5DBCB74ACC1D58BD95598528D916C1303C9E2738F6ABAD867D8EE0DC97CAD6856D53632338656DF0FF0B9C312F5D05E0F311E3ED1B1D8396A67A70CB0ABA1199B98CB58DCB3834E4AC959A6C12261B528A16A3AD82A2A258DE17CCEB44C61F040E39E93CA10C3F51CCF1648A5D43486A60781479809BDC94BEA41540BDD4AD28502CA97069789CF5524946DF2D29A0309F2E9659AC5866B93696B7582F099D3161C7F90E853052279A8A95451E335833192F6B8C7E19EC9AA0DF071E979B14B4B42D80F15696F71121840FAD28120B9624244BF8560E47E40C98CE971DC449B60815590E0A54B182359D27F080CB14C4530E16F912ACFC8FC0B6812B837C3FB94452C612180CBB920B1208702311AB8570D0FFA961C2C880E1DCC53ED075435C0A0A101708C22CF4F9BC9E4F1513F6A2FF2F144AA8006D692B4064762F5D7712753D589BAAEB602C0910BAB002D0EC851B25D36B5A0C43470B581A0A9017F218E21CA988782E0B6F9C3ECDD08A2097992EE58D049EC317382C15D0822ACF29AF2D6E2058832D9279BDC0A1ABF5594FAC5E0D9B9A9A2A15A0034B512F6D14249B78BDBA87267339F8FB131FDC3026DC5D5B375B01A083B0D41580008831E142A9C430BEB5B4D444E1B9A7BE6AE676386AB118AF39842895713F433065765C8982CA08C7BCA68C809C90348098DFC9844BAA0A2A72137D918DFD7E08228608C8E386A94406B285A229248BC50A160CB598B060434ED166C0FC98CD7CE93A0BBA0AA6E204D1718D689330C19170130433FBC9B6F1BA582C0E3E444282064B9B099330DC2E17B24E0F220EC354008AC639204F4254AC9E8BA44AB1862CE5F220BB2299994EEAE1B4CD481C1FCAB486372D6113B732748DA11C225CAA866B0D7BBCAAE3B6CA94110E0698E20CD096B605D8695F3019284B1530762B70B76280999ED14DCC24EADC3F6B2C486A8299B5D40495E5560594976AB084021812C248434624430216790F37CFA7EE4FD70B2C3521A2A25CE0A67161C1CD7C4E369BC3AE6F30252D6D17844251B1177ADD12F8D1157D5A9870A15884770E1D45C52D71268CBD5C50358D65413F4D4C989839B926555597B602D0E6B9D08C4F1D13D61109E94B2419272E848244F1E3AFF4F8309FAEA1FFD7B5259E0D35B341B3C593C86661CFF9732653451463B25AD3570B529915331257C578595067A96927FBB518B258BE4E92ECCF7BAC6B25DCDAD850699C14BC756D692B80F2708230DB4012F91CFCF2D8911BC684DBC391590A20E1EB4B9F098B060DC294107F1314B496E6480DFCE8CB5F29932BE7B0A3631892315B8B60F14119C941D8243E182356211DB10A05453CDE0A265C44669E47626818FA521F113390097B20994A41AE98E55C800B9933581DB73589EA36552658CD1A94678215CC315FB3C0C814B6501E6E34871C79D12DAD45D3E22A9830B671B66D9ECBC6848746CC214A758933610ACF6E9702B5D1085A81C6829E54319E2B98BD5C10ED7C9055E1C02A21E8EF8249E498EC4028475C62BCF41F11364A2DA334D9B6A633FF6E1234CD0CB6BAC988754EBC08162BD23F02264CA223A847266F501A808E0886B9A6B210C31C283750F80683AA94B0D359200564C722252E88DD4A660F17ADF272CB02042BF763CEF2B0733FA239085FB9CD11197ECDE0E8184C4FC718495CE228488002F95AB58896209799B083B97E124CB87B6507FCECA55F912E44AE34D4A388614612DC6EB7505353237CF7BBDF159E7DF6D945315D698131611028F52B89E2F5C1F0D78109932CD9FDA0F5E99A2E2A881250E8722412919B9A9A94EEEE6E65E5CA954A341A959F7BEE39F1C5175F64CA704C42640A732E9F5E0BF81425DC49F0ACA10B643182C6040C430A0683EE4020E0450504EAEBEB7514BC545B5B5B88C5624597CBA5C5E3719A35A37EE73BDFD151112C883CF9E493C2FAF5EB6DC1BFF4D24BC6E9D3A7D9A37E1256B36010163EF4742BE1BA9F695060360CD64A256699AEC6C6C6080ABD4082C786BA08E45029797449F962B15840B794472BC9261289622E97535139060ADF9EF7ECF1788CC3870F1B3E9F8F94A7A3D5E8A82CD8BD7B379D67580AE19DE063518A352B861ACD38096323D6D3BAF3C1871F7CF8735F7CC64D1305E4B2CF9ECAA4E027FBF6DA63C22CD56CADF9582E88E5F15DE0CCB6E21883A6320BB2F8E126C494CD3AD38AEBF1BA7F7DDB5678A06D051BA22354A4222878FE17AF40CF89E3474B6AE96C73D7AAE52EF4FD78119FA887366240C1504BA78562E1A05BD04EA8AA9A408B20A59010DDF81C6E83F2E1EC645D9365594541E3479754548A96CFE7F55028A4F7F5F519854241DFB973E7C766250BA622E6A84EA78228064B0903D1B4384172AC994619C6E448C9C69CECEF82410AA1359FDB4AFB78B16042213EB620D1FB13D85A64336134ECF125D65080309348A208BDB0EEF63B37A03237112BD6184C36D7D45053F895E263D3E93C0C8F4DA4022EE5BFAE6B8AFC948F71046EDDBA6D674990BE9248CC1C4FC7E37B62A343A7519E05FC73A1485F823795CD664B185748291A0ADF9E85495682B1C54097765D9431BF053CF4FB0F3CFE852FFF61219705BFD73D270A922AC6842BD1CD2CB454856E2C54330BE9B0A14A8127020D363246C2CFE17D0C8E4FC1C589982D6853F07AD5BEC65215B178027ACEF5DA298BA6DAC84FD7D6057FD8D8B8BC6DFBAE875EC07BF2D07837D5BE2653697D2A164B2612C9A15C36FD41299B7F3B33397ECC308A59BC8F225A099B248EEE8C590ADEA38ADB5A329964EFADE8E9E9612E8BDCD7B5BA2B79A1C04755C8D4DB63E91C0B7E022FA075E2F832932DD76F3AD7209471BDD9CB7964A16D831F03939859B92781022D75374D634394A404C91F009106E805CE476898543003B3C519689EB7812D95CCC0E90BBD15F9A24CBEF8209EF7B7B7FFDEF6EFF97D5E0F213C4D9718F9F3F9BC62A3D218A989462385A2BA0115F3742EDF65C41389342EC3857CFE04A885B78C546C3F76862C2AA08031C59E1EBB75EB563593C9E8CF3CF30C7357641DA48CAB51C4BC1670FFAE871E78EA6BCFFC213D43412BB28711C472D1AC2D788B3409B391A6F5F5E654538E641803D6992BA3467EDD2CB4D2D936095BB7D61AE5FD3558D6D6052EB767CE9E5E6D093389041C39D1C3C6929D4B434D64E88FBEF4077B3A57753FCD5C29DECBCF8F9C814B3309E80A85E096655150F0B94CAB28E15A457F5462FBB44DC7B2D9BC914A25260AD9F441A95478A146281DC2F892E7D681A7949CF395591FBA9222E6B700522F3E502E936603E76C909DF35D5190EDE94856826D36A932AB27C459844D74D4FF4B9595159289F1497825F6C059188E6720AB9AC215F84C790363083D13C50ACB0AA8255219387AF2941907AA96CED6E5E9F6AE555FB6F663181F7E76F6345C5013A08C88D074D60B1D9E20347BFDD87CB0A636001E041FCC4A586A44C24EE0128262A4D1E50B3C86CA796C3C9B29A18B1ED48BF9B7036AF16F22320CE2479342F25EAFB780F0B84810F8C3A5A3F161B3F93C0AD130056625D2B800259E5093AC9A20A95C1B3427139EA584B202E8B3ADDA23662D34805F2AC244A600452B5147C2E6562470B7436ECE206BE46EE7D0F1E3CC72AA178FD70B4F7CF6B135C498AD633FDC7F147A49F83CB938231421A9C6E0546606A4B400A131059A242F34C82E882A0AB407BDE0E50A91D0DAA843BA3C5EC510E5AE82CBDB152B96FEE974A99811F4D21919B45FD6E5727F3D3D3D3D8310B708E5771C5D030A4270420550B2749D98F002B186046CF55A9507DCF15401BB12CF27B11E2EB056EDEF095165B26978EFF05114BECA2C6B72A80FEA56B4838182523C5EF8EA17774363B4C6BEDDF7FB2EC3DF8FF79B5517D4F033A54201D43367405ADE0C524303E45D1A76E7340CE377882842D765116A3405223449042DBBDE2D818F271E65B21259C780E0F21BE0DA827E68CB6543FF9E9A493FBEAD25FA2A2C307B7FC181ED1B917117793D10F9FD1222400C6E3089413F0B623998532F77146EB1D8C35B2E9B837D07DEA7417AC8A692B0F785BF84937BFF1FB2650DDCBE00DCB3FD1ED876F35AC7608E017F71F42464B0C7D38411172A4C214BCD6441C620AFF87D9079FD7590E85E0EBC07DAF0105390E10698F195A0DF958393520AF664E3B017DDE3895411FA7306E4B4CA11C4423A2920170C232B1729285FB30BD245937D965F9255EEB12C3DCD2A34D12DE089D6EB4A282F4A74C08A15B42DB24A206B5FC746AE4464835E2C9E18BAA900F4FB78C31047B793E1B745C2B67CBD897A2AAD2097C9C15BFBDF631D2514AD43A052805B773C0299440C7CD8F36FD9B2099EDC7177C5FD3F7FF034EC4F8FB282329AA543754EC6E020942E5E84E0D6AD90C1CF538241C8A33B931417D23B1D126FBF05723004DEE666FC5B08644464821B85EE52214732C27F6A5A8656B7C814CF50573C062E2436180BC48E8E0EE1DA5D906EF03473E5323413837FF7F2AFAECB90A4C00AAF64EC852204707F4B7D137C7DF31D1593F36D5F6FFB7B91C5820C06E837F7ED6701B273ED7A84923E58BD662D7F1B8BC8D60F6EBD057C6E57C5FD6F68AE877FAE6F82F3F119B8948CC3849003A9B31384E5CB418FC5A0FED147A170FE3CE45021322A021084287E3FB81029A91313A08E8F83282B105ADDCDD6062F246BF028A84CCD1CD3C0FBCBE1FD79BD6E0D2D5A4422C7127F73A121F98A49B02A2504110EEEBA69833D62650EBCCBE5D274A9AA645D1679E9BA54BE46B6C896B9A69B08E1DF6F5FB16A562140851570D493C39EFEDBB7F7B242DD8D9B6F83200ACA12BAF5EA9C9A8017427EEFAC67DAD8DAC01A2DF99206072F8DC299695446220E039E5A48892570AF5D0B91D5ABA9121892C78E8282AE494F2621D0D60EB183EF43F3A39F31B90B7BCD8B009E12C684A08CB0D51CB4CA62EF27974A6FC34278EAA21407A22115CC974F55C0D27915A0B1EA68099268E6D190DF3E5E83BDE1E9DBEFFCC84CD89C8386A6AB22DC44BF3F5DB25EFF303722B327E9E1FE9E77DF631572DBEFB91B6A22358EF715994A200BDAB26625C3F19746C6208F6B9298CFE58286DA082BEE65E84891607B772B6C8756A66482A6072E0EC385581C8650E0E3520EBCDBEE62684F2F14A1881652BBE116F315336CF2A0090E2292C2677C9A90359F49994E2410FED6C52C34853DD24B614D9BC258A03EF9E493BA03E92F600148805C8A8C37E68689449A111D9B6DD9A38B368DB5D9AD99E3E1A48B8F9AB17F44B658864837630BB93836D3428795E8426A1B1BE70FD4DC0AA8BD7FF808C46666E091871E8486FA7A2674452ABF088A96AEE64658D9DC341BD8A17F9E4AA660722609E95C1E0AA87C7A0F526334042E7485619F0BEE5BB302EE2C2E63046C3A9985C3831330924EC338E420598396D0B8CC9C9B40F74364B2A4232252D87D90F0250CC6F94CC69483C7BFA5E4F16DB99C4EFCC768406AF3FBFDD96DDBB6155111DAB3CF3ECBA0E982448C16EAB16E979B09CE64BE60A768EDF10CFBB50DE650A5753D13309FE36B7025B0D3186BA5072841141F6821E13BADE07C6F2F9CBB7001BEF8078F436BF3B2B2CBB15E79269865EF73097FE4F2189CE83903BB76FC1E34452315455E036393D0373A0E8974968D3F87033E08618B043C70CFCA652C5F440A994CE6A0676C06261179C5D52222B522B84B0AB4D47AD15B954046E117909D970A797063A07621A1C3A80C4631EF4907DB072FA7123DA562E13FAF0EF95F266B2092B6400CD0D99024459888DF73DD8A734D1F4890B304A97C113292FBAAE0EAD4F434EC7D773F3CB2E33EB865EDEA8A60ABF049E167FB8660FBC675B3AECD20C4A41EF0F0CEFB2A8ABBDE41F8DABEA21559720B742E6FB4E3DED0C4349C191886D1A93833F8C66898DD7BD4EF86AD2B6AED34C57822039388DA5C18E70C9D2A4424248449F68C358DCDECF3921363B06DEB6D44DADC750D0D9B50C13F3F76ECC85BAB43F2430B2A4037880917A02EE8BB3EECCB0C3E4CF88C6C6120CD8A9EABBA34878CFCD7AFBE0E2B10063EFEE00E98EB2D2E3D7D03F0BB531760FFA973B0BC2E0A2B5B9A6055CB32686DA865F9219AEBE05CF2F8FD77DFB175D60B492E5CBA04915018766DBD95EDCF507AE37C1F5CC45892C30E190D07EC19FE75C88E831E9929834D4C47A5A630980710122B1867548C05ED2B5A201C0E31CB22650E8F0C433C1693B37240EEEBEBD3E64F45A886C02A0F84EB309AC5FD37C13362BC457CF8942131587935D7BEFAFA6F218F4AF8674F7D614EE18F4E4EC3C1D3179992A9670F4D4C31B7F2DB4327C08D718C94B1BA7539B2620FBA153FF40F0EC1E0F0086CBFF38E599FE543B7515F576BEFC763D3B0A9AB15EEDF7C138B1BC75019C77B07208BCF10C6CE296B12AB8D62F92264C4857C0EEA5ADA5916B79849C2CD77DFC19E9B92962A0287B3A74F0392E85184CD220D8DCA0B0C09B39A9DEB32ECC67BBFC576532A6E57F5C8F996F70F1D86A19111D8FDD8C3D0E8108C5D2A89EE65CFB11E9EE636C99A0E16563018023A7171103EB8D0CF04D110094377DB72588B3D93602CCDF8A12595CEC0BEFD07E0DE7BEE04E7583D0D0845C221B61DF0624CB8652D6B97A762F0CE89B3703E76193C2E8559403E9986404D2D83DAA98911B877DBEDACB6CAECFD1A9CEAE9A1F1ECC29655CDFFC6E57219D4A9E479876089A1CE51FB9447015E9C9A3253027C0AAA54FD0A9A8A1736F1C1159A56A495901D4AD0DCB4E2AAAC278EAEE3F0B10FA0ADB5191EBEF79E597F27D37FFBC849965E10F8F802C3004679DF5CF331037C9CF199385C46DCFFD691532CA1D885017B6D5B0BACEF6881471EBCDF163EA53608EE6E58B7B64221A4345254677B1BECDE7127EE6B70E86C2F1C3AD38B1682B0351806359B41D7570F2D48EE54367A28C0C4C4245CEAEB434CEAFF9FF879391AF6A4811C793E0044285D3366671627D229F82FAFFFC3553361812BC2852DA228F0678F3C0E575B0D424197ACE61B5F7A928F90550E8DBE7BF20C9B4068F676C1EEF5659456DEEF68AA874674196746C6610A61351DA79E79666004E3C710BCF8B60161BF0FD6B6B7C04D1DADACDD77CF5DB3620481816D5BB7A0AB32491E01803B6FEA66B1E6CFFEA29FC1EACCCC247C7ED7938C9B98D65F820348E0BC8A3CBEB629FAD7E8862965ADD1289A5C853AEDD7C2EB02CA9FC664D197C9F0115ED8240AE607624F68AAA9435217B92AE15FEAEF87FE8141D8B0161F6ED96C5879F4FC25988AA76C582C18E63B8EAC5E6F54594193A243FFE9E3E0F604D8FEBAB6562466229CBC340269041B747D1CDDD07E742BEF1C3FC3ACA87D59036CE85A013777B64127720B3A368EF1A511F947056945A1FFE4E537D83A131B87FBEFBE13023E9FDDFB0F7FF001C46712B0BAB1E6DB048CC07CD92C1BAC9161F68BB2A9A9E8833412E6E85402EA2301243B8AFD36DBEEFA267B1A2A4DD813ACFA505E902BF029A966B12DB01C7D5153C113AEBB2AE153A0DEB7FF3DB6BDF3EE6DB3FEDE8B88A4FFF24459F8C0855F6505867D1CE0F0D01464B32810EC502E44289D2119DEFFDD41F0FA6A2083F7591BF633D444D6104BA5196FB984DC80DACBEF1C6239A57568151B3A57E0DF3350170EDAF7F3CABB8760707C12B4420EA2413F6CDCB0DE143E7E7122958243478E42D0EB3ADC5C133888F2CBCECCCC94C2E1B06EF0D20C67DCB55F138F27AA446CC84C4727E32C80B10259C11A6A3419AE6E0D337266C8329B2CC3690D3D12DBC587C66074DFAE47D8B90409C50510D091A3C720914882DFE745CCDF5DE902B1279D44142238C6979D3EDE690574BC03F1FDC6AE3636527601CFD60CD3F5BCFCDE71BC3F0544D53CF7B1DB6F8643EFEE8328028419CAE1F2EBADDE49AEEEF0D98BACD1B2ACB68629A3055DCF2BEF1E6642898F8FC2535F7BCA66E474776FEEDD470251D72DABF957788F095996F3287C8D7A3F5555C855AE47E3E691C7E09AA7CA6492939B4AD1E951F5B2B0CDF482B96F8DF7EA826ED27343342BD80491231203B6DFB58DDD640E59E20CF630420EE1406016AC4C26532CF0D2B29CDE17E788172964A0877A2ECC1D60E7B102092DEFAF9EFB31D42E6B05C31F855B57B543402F42EF981B861239D659289EFCECE5D7A1989C0139520F82E236CB6B387A9B6BA1404ECD5AB2B149D8B16D2B2C43F764F5FE9EB3E7E122F293C6A0FF79451046D1B233D84AE690B461E7829CC2A78C1DD5C7642449C9506A1578C502FF67E640ECD44219DFB3DE6EE547F84359550DADC834EB96B7A0FF0FC0782C0EFD6313309D48C1C8648CE59B5C189C437EC2E80178F7C0EF18D260391D64A9D642E98083A77BD918845D0400C615ADE0E2E40C04BB37424130D3D8F99969387CF000D4B474A0ABF44043380C1B3B9AA1B77F10CE4D8618A26205081C5139AD605EC85E44362CEAF010223583E33B1ADB78F5CDB7C0A3C8F1EEC6F0FF418F92A471E28E8E0E6DF7EEDDACF73B15E0FC91048AD069C5E34EA98EC16DAB27D8759A8E665B004FB099150F3A13BECE4B0AC7B0B70C8D4FB11AA39B5776402C9E849EFE219841EC4CD096F07A115BDF45D3C41FD87E17C3FE56DAE0C8D94B2C033A9FABA9B6821D9BD6C3E0A55E1848E6216B7E08FBFB855806E4B6359014CD02B0E668087EFB777F0BCD6D9D4089F16A44B5901558A51FB1B121F8975F7F1A3C18272CC6FBEA5BFB905B64A1BD36F8EFF1FA1819092A80B2A1C65CE9684B09B60226C6874FF55FECFD41A958F0A96AD1A369AA4B577517467A89CA12C8C1987EC9602352266733AD80BA8E407FC7274298E6A9AB8B74A052DAE97BE318C0281B49747ED3EA4E664DE70647E0ECC0289BFD4EC4E86B5F7802EEDAB2C9BEB15397862081D81A1670354E2BF0CA0A8CF75F8009247005C3051E445E77ADEB4254D50F9766F278CCEC34A4C813FD2300CDABA1BF04266CE6157D9682AF6405F9C434DC76D37A58D3D9C1F1BB0603C3C3B0FFD011246ECA99E521EF5E7C6ECA4F179A9A9A66FDC084F3CDB3D66FC7D0CC6CCA905112C8EF587BA0F24DE5F3CE61A5EA030C36622010F0D4E2D2D6D1D5F6C0E7763F12696A6E2B69864C290E1AD6240BA3ED65755158D15487569182E53541686B596E7F561FA29DDEE1CBA65559D655EDEA3840D00DC7367E76A1500009037E1DBABEE933C7F03B0DD0A2CB4097DDB0717507B851C8C72E0EA37273737F16FF0E831F9FE57A5464F563C3F0FD6F7F0B0183CFB6D667FFFBFF86E1D1CBFABAC6C8E7022EE984C7E399A49416BA9D590A90C91C789DBC15079C16410139CBB1AB0B66BFA97CBED4039BE685D0D48B5F9E2A1572A57DAFFCE21748BF6BDBD76DE85EB1F6E69B04D915B11E6C608C0B191F36D6D400BA249B49340CD69426367D7EB9D7B31F0998C70A5A109D10771941DFEFF278981027693CA3A18D6560450CB05480D5A018F0D28B2F42B4BD1B04976F4ED67C252B98B93C024F7DF6115BF8B4FCE6ADBD3038320A753ECFAFBD12F4B32C473A5D1C181898B33445B66A1939DAD0AB82728907E5EA37952F988BC348CF66ACA0C01171BA3204BDF0F3B3D86686CF9F991AED3D77DCE5F185566DD9B6D51DA9EB28955497C112753ABAA211743983CCEF7E69D776F69ED0241224A7500C13E0CF8A052BEAA3E02F24A90C1164BD041A7297150D51486432C87E0D503CB259E68EEDD7877B405ADE093912FE5C41BD4AC18620944BFD4830A93812B546DB55326B1D1C865FBDF606B81529DD51E3FD1F944D412BCC653219950A7A171C947728C1A8E20525A8FC6DB1ABF9453D1A0BA5CF545011395C67B191154DE077D4600BA35584CF1ED87399DC5BFD8AAE8EDACEEEDBD220D521DA11C82AC835D5222A6A6BA86301FAE2E8188C4FC7A1A81AF35A01A12A239786443209EE482D6C5CD90E99D17E181B180029D2C4100A710BC2E9D3F81DB2C767BB9CF972474E0503B7022273B1F131F8E69FFC0B475EAA087FFEFC0B6C526153C0FF1FB0134E51EF47E197962F5F3E6F6196305784AFFA1943618E7871351969A1AEAE4EECECEC94907878D012C81D05303E04B185F02B22B88E9032B085E8979AD05F079AD76DBA43F38556C79219CF37BFFC1908782AC70C8651C8FD97C7D12AB20C5DCD1B0B709F58C8C8F9D3E00A8451CB8DD05013869BEA837014895EC61B8164A9FA5A63C15860A23C0312887A76DEBE193EBB6BA77D5F3FFBF92F60CFEF0E013EE9818E90EB4FF0DA417CBE58369BCD5349FB7CF5A1F23C3978FB67021DF3A8AE7928666A6A4A686C6CA456E296902237842EC9873D847E1A2B8C374905C194208A68C56278E8F8FB04D9F6859A5ADA5C92F468F5F7B6A09B69AEAB81542ECF0649C6A6666CABA876211AF6DC8695EB6CE14D21FA7AE3622FA4B35990053F883439A4A2D75FD90A74B430BF4B864777DE5B66EE277B98F0D1DCB3AD3EF17BF86C6860463A1A8D16239188BE5071EE155FF9629417FD4334ADA7A747DBBC7973311E8FE773B95C068FC55119840A46C86DA2027AF1D879DC3E878DD614B846E2A38367FEF2C73FFAF9B9DEDED142A96454A76BBD886E288DBC7DE37AE415ED501F09B30AB7B20204877B32AB2A189289D4810F59B1E27295DF4DCDD31AF4AEEC7BF1F3D635D7D9BFDC64A73CA82A032D6A6C7810BEFAF927D84C7F963247E6FED3177EC9BEB3C1277D1F853F81BD3F81E7E7AD84DB826325376A3E1A2F4CA2F9576C2AE9CCCC8CE4F7FB155555A96EC6834A21A84B19AE1A3CAF164FA7E21D1A8109633C09ED7CF4F1AD1B6EB9A53B120EB9EDC9DCAC6AD91A8DD219099A882718E99B496618A3BE926B311CC7BB100ABFF9C25FC1AD9B6F839812464224545C9F181B6109B97FF2C5CFDBA4F4BFFDE4A770EADC0508BAE5F75BBDE29FA202FAD1DD4E21FACECE053B3F310554C517E03D43ECEFEFA7F9BE322AC18537EF41E1F879A0AEC77BA3BC6F1D9FB740CAF1AEBF7563D75DF73D70DBB2C6C61AEA769A4311B6524819180C27A6134C2154ED4003270BF9756B5BCB654C36EBF156284C2B6461627000BEFFA7DF8280CFAC937A6DEF3BF07FFFEE3754D292EDF01A4F9135178BC531EC6049849D25443E571C52943F8129A786431964A2FA9E3D7BA8865245E256C0409D474550BCA0E29A043EFC0C9E17C57D524AE8E4D123E953C78E5E08A173BDFFF73F7B4767D7AA3637CD24770E66186691525D24043548C24821A94C0EA6111D913232B902940CCD765156390D4357888C64AE202B16D030E740DF45F8CA139FB1853F347A195EFAF56BCC354515ED07F81563440DF0DEB3C96452A5E9AF57D5213F0D13C9C92AC822305E08485A68CAA94CD68087FDE8A2421C35D5A0326AC8451172E216E1C3FBF7DCBCE5F6AE8DB7DF714BB4B6BE1649B8A055B827C3B60AA7DBA2E1C319F4DFA96C9EA59AE9CD8CE66B708C72CFE756919C1C8320EAF8DB7FFC0D7B58F2D91FFC1046C6C611F52887EA84E2BFC5FBE8C7CE3381A827D3DEDEAEA2FB593C0AA856045A84585F5FCF6204E268372AC04B3015CC9F2E24E81A218B201485DB415C93DB2285B9B76CBF6FDDEA751BD6846B2211023273C58A4AB7555610BD06278BE88A4A56A86CA6505401E509A74E7C007FFCD5A760EBCDEBD97DFECD2F5F8137DE798F2A2EB2CB84FCD728C787F7388A0A484C4E4E16A9F75FED443DE1D3F82A054B11A3A3A322056B729568116E12323E28093B888225E1137C0D5B8A00F3A70DBDACEC5351BC9BEFD971535BD7AA2E5F2814626932CB12B4D98A98CB4A687DEAC409181C1D85B5B76C064D2D81A4ABF0C1D1238C89372AC27F7269B9D7F0BB06D0526388F272287CEDBACC92FC2417EB011C314243B32EC562B13CA2A52CF28824F10912380A8C881D5302B6102775410C86FE036FBEF61EB6C3788D6BCDC6DB56B676ADEA0C866B6A6597DB6DC58A6A5159C70C477582C763E67A2459410599EF2D0ABB9523AE526A3F7EF7240A3F85B22FAC5FBF5E9B2FE5B0A82C6021D744131E886163AC70E161CA2191EB210905B9153065707745164116432E8C5C9942E911B7DBEDE9BA79735743736B9B37148ECA480AD0E7730BE1A8875B40CFA913909C9E1EF6476ABCAE6024EAF1F9858B3DC7F3FEC4C437645938879F398CD6191F1919291298B8D649DBC262FA2D160BC2D20B372C2E41565C281448A86EEC895ECE2788658750904C0914CC2986A0B07C3CAD4E8D94A7E0DF907349724D53534DA47E59A33F5C1375F97C21C9E5F12353768F0C0E15878EED7F5E346BFB4B4A6D5393AE9506F444EC1F88346287981A1B1BCBBDFAEAABEA8799312F2CC61FC3717209A755E4F379F673ECA80837F64A2F17B89FE2062A8329025B80076D9F638C832982A7E725FE261B9267915EFC41C047A0D23600FA65EF6942A178BC1F7DFF18A557F07BAF0AF32F1905CC0761C92AD0F78B182B489032CD4EC135B92A0FAEBD2474FED3EC7EA712C83D913BE32ECDC595413D3E872DCD8A1404817A386586E3B84D987F0CC963A2A1A161C164DBA20CC21F92D8195C193A42577B2C0317F44A12A128A6104253D87B2D37E4E13184FD342E5A09BD45C545CC9CA7E2A9F75302314B6F55A1DC9659B0205179091B68A154F3477A59C752F93DAEF95C946519E7CF9F175B5B5BC5542A4553B76414A8CCC72B5860A6008DCA21E12BFCEF2418D21E09BF209AAF87D771CDC6CD91A31448D1D782F9FFD12860216520511290E4397F3B59C49821A1F031E6CA2478111B06667A6FAAA2A10595A8480D05AEA3F2C8E2747AA71029E3A30A7F49B8A06BC93D596E8A2B44B314B27AF56A181A1A12A3D1284C4F4F8B914884E62308D80C548E8E96A3A305012A8E7D96F56A9AEBF1D2A6256F01576B218E0C2DB314A7A01750E8475EFE3F8F6265DA278AB8F70000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (76,1,'Phone_(128)',0x89504E470D0A1A0A0000000D49484452000000800000005D08060000006D9E6E3A0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00002C784944415478DAED7D07601CD5B5F6D95E24AD7AAFB62C4BEEC296C136D8D81863EC18637A09046C8809A4105EC2FFDECB0B3C4202A10642C983044C82438D69B1E9608A7B936D354B36B265D9EA5D5BB445BBF39F737766353B3BB3BB92DC4818B89E5DEDEC947BBE7BCE77CABDABE2380ECEF44D85DB68CFC17D1B1EF474F4ED99DA2F12A12BBD96BE973E0C27F7FA3B309CC1009011BCB881CC6B50103A27F39A0B0784709AE65F1534670C00449D2FDEAB457BB50C20C201C0C7BF56DACB3D783853C3FD2B82E28C008044F862816B447B8DE8EFEA080010044DCD2BDA7B45EFA52090D330528DA26856BEAD8038ED00E0852F27786A5ABEE944EF3532DA400A00B1F00745CD237A2D1C03128DA3960100A76046C281E35B018AD3060085512F0858C737BDA8E984CFC7168E8B5DB07061A146ADC6F72A359E4CCD4EA256D36971C7FEC4D5D71F6AF870C3FA065EF06E6C2E7EEFE641E095085FAC69A48012038B8B1218673C284E0B0024C2578B842F16BA119B41683FBDF3AEB3A7964E9B979C943CC5648E29C4FBD6F8381FF87C1C361F70D87C9CFFB5BFE16BFCDCE376F7D8ACB6CADEBEDEBD157BCB3F7EF3F557AB7920B878107092EB8BB58C2054AF8C49F145C12FB8485AE27483E194034046F8826AD7F3C236F2CD9497979F78E77FFCC7F29292092B8C26733EC78984CB041E19001CFF7AC0E984EE9E1EFA5B6D45F9DE5FBCF1CADFCA79CDC089B48E21AFB02469D955D73FA4E2BC8EAEAECE1D95BBB66FABDEBFA755C221A47CC21B0520B8331110A7140012E18BEDBC30D24DD8CCD456DD726BE9B5DFFFFEBD0683314B10E84801E0187042677737889F75D0E3FEE47FFFEBEE5B782109F760BAFD3FEFFB8329C6B2100FF64B0BF72AE0BC5E9FB7CBE3763538ACF67D9DED2DBB8ED4D7D5D594EF6C8D02103E19D3E18B0610A7020CA70C000AC2D789463D093E46A3D1C43EF5CCB3374E9B56BA9253A9B462818E0400030E07B4777581DC63DAFAFB1EFFFD6FEE7D8E0780E9EA9B6FBFB2A0A8E4574CF4EC7FCEFF3D0606FE35BFA77EC3E6F60EBA8F0F3806F6F674756CAAAFAB2EAFD8B9A5258CA608A72D22718993028853028030C217D47D0CB6D8D973CECDFDF5BDF7DE9394947C964F46A0C305809D84DFD9094ACF88DF69F9F5DD775D4CE667C6AC79C517ADB86A0D6F8A78018B042E80820743284084EFF81C1EA7EB88DD61DBD5D1DAFCE5FEDD9BF73737345845A45349632891CC93AA1D4E25005412B265E4553E093FEE3FFFFB57F32EB974C5AF755A6D7C4088A30080CDEE80B68E0E08F77CF859FFAF7FF9F38B6362E263EEF8AF7B9F339A4C8543420E16EC6840E1F57A7ADD4EE7215B7FFFD6DAAABDEF966FFDEA98C81D8D0488B0DA61B44038E9005010BE8157F9B1D47EF5EB7B2E5871D9E5BFC583B55C40E0230780D56683D6F6F0C2E737FBFFFCE2CE15B7DF7DCF1D19593997050990DF377283ECA6D33975000481BDE8783F0024C09001036D5E8FDB39E01C38D8DFD3FDF19EAF3E7FB3BEBEB64B048641053E1116102305C249058044F81A19E1C7FDF2EEFF37F7DAEBBFFF20A95E12E06801D06FB542736B5B54F7872EE2E1DD7BF6AC9D35EFC27B55AC2F04A1F9FBC4EAF3C2D3EE7E70E2DF0CF828792A2DE4E163E4E2E364E26B8D58B021E011699130A0A07BF6B89C7D03765B655747DB7B5F6C58B7DE6AB53A650011895C8E0804270D0092089F56C4B403C2FFD99D3F9F75D3CA958FA8546AA320F0D100A0ABB717DA70E447BBB5B5B77F929655304BABD55A022A3E20340ED6B9ACB0D7EB0A4A4AD063A9F1201DEEB35408066C39F868997884566A36866542FCDFF5E203391DF676BBBD6F67EBB1636F7CB67EDD564934D32B633E04ED306C109C140088489F78E4EB799B4FC2B7FCE8F63BCA56FFE8478FABD56AF39040470E80DEFE7E38DED40CC3291DE0D4866EA3D99C2437321B065DF09CA327F010745E06048E5769FC7B521BF49A1E320D8FCC41CD40C0A0A6E720085052308841A1E47978DC9E4187DDDA68B3F67F75F8C081B5BBB67CF68D289A290D6D73A71D0012E1ABC53E364FF82C2B57AD9AF6B33BEFFAA346AB890B16E8C800802A138E341E8B5AF8F41D8D460F664B3C848E7C1A521C3CD9DF01AD5E4FD0A8F7EF39FF3EA0DEE83517782D0E6D26A9D43C18B4908E7F31F1D44D891B4443329D4E87D366B5D5DAFBFB375457EE7CE940F9EE761110B8E182E06401402589F009AE5EDCD2EF2D2BFADD830F3EA7D7E9937D21021D3E00AC36071C6E6808B98F7E24827575F5503A6D12A0672162FE3E269E84947445617CEDB4C1BBB61E91E0E91B43C2E53A3B6070FB0ED0A4A682BEB818D409097E8D203D96059154EC6FF41E8F8274044406B63404472CA7923503D182829EBFB7BBB37ECD93BF9FCA83C07B5A01A0C0F885E85EDCD4A953B35EFCEBDF9E379BCDF91C1FA8190D006CE8E7D71F3EC28E13B6DEBE7ED857510D8DC78FB3F7D75C7E29180C7ADEEF4775AD5641624A06258E86023A22F5DBEFF5C1839DC761005FFB47B22AB8304150FD8383E07CEF5D30CE9801BABC02707CF801C45C7001684C66661618781828389196500D65BEF01F3302209D07432A8E170B13730450483C8FCE96E3FD6B9E7E3487CF6D7887CB054E18001418BF10E18B4B4D4B4B7EEF9F1B9E4E4C4A9CEA276DA3038003857F1085EFF57A79B5EE83037587A07C5F4550F8ECCA4B9781D96C625DABD5EAC09290045A9D416674F93B796D771BEC1CB0FB85A70AB5F9F470BEE666F0ECDF07A6F3CF07AD29061C9F7D0A9CDD0E96E597E2DE067DEBD6813629096267CE04634E2EA87CDC1087E0B501690B75C06CF84D8801FF4D4530A460F7A5E0DE22E4A314C1C0417BD311FB0B4FFF215B94DCF29E72002890BE00E347969DF0E9E75F3C989595B54010FA680040B1FDBA6FEA617070905D7400DF6FD9B10B5AD0FD933ECF65CB9640BCC50226D402A6580BE871842A75E86197131E6B3FC68F5809F3E7099F67FB3650EB0D602C2B639F39DE7F1F8CD34AC1555901F14B9682F5A30F21EEBCB928742F58B76C01735111D876EF028D390692162C047D5C5C000C62E1AB85D7DCD0357578BDB16A1D146393330303F67EE8EB6A1FF8F3538F13009CBC191816191C350064C2BC02E317DC3DCBFB1F7C78F7F8E292AB8788DBC80130E07441EDC16FC0ED71B38BF6F4F6415F5F1F20A700AD5E47691BF020305C6E37122617E4E566436E5616188D46147E2CBB4DB9B83EF5DA034D47A009CF2B8C7C410B0802F21D3E0CAE6D5B418BE733949480A7B60E34F1F1E043F7D3D3D20CC92B2E87EE77DE025D4222F89C4E48418DD0BDFE9F907EE5D5E0A8AE62F7E643CD65CECB87C19E6E889F3C25402C21C44C70EC1EA6688D904F650F3266A0B5A901BC6E37012097C6C14878C08902804A89F1AF7DE5D51BE7CC99735730731F1900DC6E1754A39A77B95CAC23BA7BFA50C803A0D7EB11003AFF1E414060607BFEBD0155BEDE64020EED2DC88C7CEA02278ED8EDD63E38E8B4C3213CA71DDF0B2A5A2D7201E93567B382AFB313D4781D434E0EFBAC0F05AD4690C5CF9E035A1CE55D6FAF83B8D2E9D0BF6B27A8351AD0C4C642FAA2C5D0FACEDB907DE555D0BAFE3DC85CBA0C3ABED808C96533C1404452103E5D8FE72B17EACC60A26B72126288FBA68683E0F3FA069EFFE363793C00DC4270E8940040C6EE8B19BFE5BEFB7E33F70737DFFC245E433B5A00B8DC1E38507B101C281CBA671AF51E8F9717B444E81230680D784B247C9090BE3024AB19C176C8E9806F069068E2350920822910F301C14CF810148E7DFBC0D76F65E78B9D30116CC813322EBF025438F2DB366C0053662618D3D22076CC5868D9B09E01237DEE3CD02138D43C2FF05FC36F0A12345A98A78F19E22822AD6577D8A0BBF5389A41AF030130460400EF70CCC08801A060F703A46FC56597153DFAE8E37FD5EAB409A1BEFBF000E0F178A0EA401DCBEED1D6D767651D2215BE0185AE63237E080C5AF4F77D1A4D54E95DB998003B0EEFAFD9E36260388CA0388A5CC1C5710130884B970590203B85CE4F3FC1918CCF8AF79F8ABCA07DE3E79077F5B5D0839CA00F4D42CEE22560CEC81822995C7029F404BD09C66BF53281220E8E1F3D0C836E279160C7734F3E56447444E40978A3CD138C16006A495107A9FEB8FCFCFC940D1F7CB8C6126719EF930DDE440F0062F935757568EBFB59AFD8AC76A61AFD421746B9BCFA273078DD836075D89138BA4083234AAFD782064D820E8F538128F61F92D8090585709C8F340482E00882A101F7C7B1798013914781DC0D698C419B0D067B7BC05A7B00E28B27800FBFC3A1294B221E101261F46B8085660BC4AA35A13101ECB7437555EC782F9A80E79E7C742225B6780078860382110140A2FA43C2BC5BB7EFF87D4E4ECE45F2421E1E008E341C8563CD2DECBA4EEC300D76885FE07E211B022A3F54FD5371E8BC39B3D81E552582A817BABA7BA0B3AB1BBA9084F5F6DBD08370811E3D043D9A0983D1005AD6E1109D86002120E307C4511C91C790FC35D3C8E478764F35AB2CA6C0BB95BCAAF7F4F783B3B505928A4B86DC42D51070E2F03E2E8C89970D11DBED5638D650EFAF6C1A1CE4B6ED2CDF35E8F56CB15BADEF1C3DB0BF02422B9F1581306C0044B2FBEFFEF39FB79695CDFCA9B290A307401B122DF2ED999FEFF5E108D64846BCB206C09101B3CF9EC100123623881E431702A2A3AB0B3A3ABB1020BD2C8AE8427E116336813926965D17A20505BE18C4E76A450E710C41D1846068438FC407C10121A9D91852FDFE63C6A3FA9F6834CB66141B1B8F80B5B79B078017B6ED2A0F84C5F15EBCB9D9E92F7EF2CE3F7E21538D14028261012092DD7FFC0F4F5C70ED75D73DC92A764709807EAB0DCA2BAB50F0C8C6356A1C99DA213BAFA3BD0804120D40429D367922C4C5C6467C269BDDCEE208A929C9417F273792924B478E3642736B3BF421B933A22711176701036A8B48397FBE64CC2F2424902DC8035A1010CDE866762238B8402249ED07854A1425C40FCFB72440A2D4FDE3F715FBF63033C0EEDF6687BD95350100C4C498A16CDA94F2FF7BE291C5A21C41C8841801042301805AA4FA03C19E9B6FBEB9F8B7BF7BE0658DA8A267A400A0CEDFB5771FF3E349D064AF8347B9E8B548ED1BF8919F9F9B132250996A202496B528E416686A696511C384788BE2F1C4458E21200EA3493A7ABC89690A03BA7D164B3C039A4AA58EA021867885075B0782A0055B1BB66E0407A886C89F09B9CAC596243F479184AA69C4EF2FDFC5CC099DBEA2A616FA119CAC0016DF2FBBF8427C6FE3EC367BB7D335F0E991DA43F7EDDAF155B38C596028881A0032FE7EC0EE4F9838316DC386F75F8E8989192776DD460A80723463DDBD7D6CB49BCD66FF680F71F3426D3E3E0EC45B62212F273BAA676A6D6F87DA83F5909E960213C617C91E4366811E3D2539290440CD089C6F8E34B0D6DED1C542CD2929A990803E3DCF3015344430403CF8CCEDA8193AA8212012F13CA5E6B8D002137CDDD5D90E87EB0FF1F7DF09F5478E06FAAE647C21141716C2D163C7C1CBF7A93F04AEC54BF8EA9C03AE07DE7975CD5BE2605154009029EED089833D1515957FC8C8CC5C28F5DD4702808387BE61234C836A3F313E114C26834C608777F744C0203BDDD3D30733CE9A1A312D4CE6E55853132380334AA7C81E4FF30828A9D4D4D2C24CC48DD75E1919506DEDB0AFB21AF6D7D4E077DC90919E0EA9A9E92800B5AC2B170DAF101F47FFEFDF5F0E0EBB8D99B97DA8FADD6E0FEB4793D104972C59048D287C97CB1DE857AF88532524585A5F78EAF102914980E100402ECE1FF7D9E79FDF515A7AD64FE48237C30540534B1BAAE503EC9A298949101F1F2733E2F521FE3F710252E71D340A751AC8484B83CC8C74C8CECC44F51C134CFA50DD6EDAB693A97202D94DD75DCDBC04B9ADE1E831686E6B83F185634334C0506D819FAFD0751859E437F238F6ECAD803DA4CDFAFAF17E32209B42C8C41F2460088A394420999BBEFE92A9FFFA8646A675585FE27F175D309F7DDED3D7E7EF53EF90E0491B585033EAB49A63CF3CFAFB1271C838220064F2FB82BF1FFBE0EF1F9A7DDB6DAB5FC45368470B805EBCF11D7BF6FA916AB1E0E84993F1ED85204F301738547F9891355FE09C43F71017178B1D9F09B9D8B2333318587C2C92D80F8909F1A102C5CF9AD0EDA4DAC292A2714142956ECD08D8FA8606763C9990695326C91E4745AA7BF655C04E7CBEE3F81DD20CB9B9B9C839E2E56B0815EA0C5D4E376CDBB609CF676721718E7FCEB163F219E96DEFE88441CA3708B2E04140DF1D3BA6003D9DEE96671E79603C0CCD8D0C0F0005978F097FFAF419191BDE7FFF4DA3D1902DEEF09100C0892A6BCBF65DB877A2CA3742617E01E07943841F14FCE1DF37B5B6C27E54BB9C683248F0FDF0EE91CFCF9AD3D352211739423EB6B4D49420F54F7DB11B47ED91A3475955F18DD75C290B92A1DA833ED85B51C5D4EC79E79CCDEE59BC51A2CA86EA9A3491A065C8B494EFAB44D76D37D47D7318F94A2E149714A30A3706DD879C7B597708496B632354D51E04BBDDC19E8B78D2F790F8F5E2B504D5EFE544B1146CC949890C6C68CE1AFFF4D843934500F0450300A9CBC72A7BAAAA6B1EC9CECE5ECA8574F8F00040EC7AFBEE72E8EEE965C228193F0E3540BC9FFD13B39765FF7EB340EA6EF3F69DEC1CE100C029DC9F416F80BCDC2CE6358CC9CB63DA826CEB31E420E9A9A9CCA552761F1DE882D918A0A41C82BAB412794043E371A61D2E5FBE949D4F8E677CB9792B7CFCF917A052EB610A8EE2D4941445AF65E3171BA109BD9646E42FAC0FF13AF3E7CE811824CAE4CE8AD53EEB5BDC6B518365A1E6A3EF6FD9B26DD587EFBCF196A8764019000AAA9FD9FD75EBD65DB1E8A2C50FF86F627400A84134D7A33DA62D033BB378DCB820C227C7FE09F58E8101F8ECCBCD2C2D1C389FA450D47F7F5CD06808777F49890930263F0FC616E4315090B990DB0ED41D44A6DD04C751B84B165DC04C8B74A3B8C1C16FEA71F425B1F3457249EB0ED5C3868F3F835AFCCEC49212281C3B36849BACDFB09E8D7E2F8294EE39373B0B49EF3404A20385ED0DB1FD6CF4A724B1FE6A6868ACF9CBD38F2F14E50C9401104EF5AF5EBD7AFCC38F3CF20FB55A133B5A00742351DAB46D07BB26D5ED9D3B6B26984D667F785726AD4B0020A190AAFBFCEBCD2C08229E011C0200E9E88FFAFEFC95BED4C1645FC78D1D039968B785814E04AF066D707C5C1C4C9E5812D27F146E467B8BDF4943B7344E51F0147F200D4160B970FE5CA649882F7CBAF16B7CBE4D9098948C5A6132F689093D9C1E78F3ADB7A0B3AB87F5B94EA745F02D8441CF206A2D4F08E32720509FC5C75B289EE27BF39597CFAFABA93AC803203C075052FDE8DFC6575557AF8D8F8F9F16A8C71F2100BC835EF872EB36B02283A66DF28412ECE802D9B4AE8167FA02EB26D0907F1E1C3A3E010090DC2B273A1F09A1108954D1B8B1E8158C014B9CBC60898C56D5A0AD46F7F19C19D361FAB429B2C75135D3D61DBBA1F6D021A6A2972D5E1472CC3EE417EB3FFA14DA51E8E4F66EDFB12BD0E773669D0D2968DB07796D2075FB48AE043ED222FB2B2ADF7EF36F2FFC923C60BE72C8ADE805C8247A04D66FD9B973D75D93264FBA2DA8934608008AF15359176D64F3172D988B2E924136AE2FDE76EFDB8FBE6E9364FE7F9400909803FACCBF180C159B0C2A002074C631BD2657733C8281380B0143A83CA6CF1A8F37B3112A671A84CD4DF9013C9F9438CA6D1B3EFE141E7AE299C07D6565A441D9F4D2C0F5421B1718445DDDDDF6271EBCFF1C94732F9F31748AE71104014012EB1747FB629E7DF6D9F356AE5CF5128E39CD6801408CF50B243FC2B5CF3F7736DAC9FC90DCBE7423C01070421780901FC19100B068C1F96041FFFDC8910670A059D95F5DCD42AD82D7104228258B4E08D7D0E02823376B4271114C447790DC4EA58DDCB443C8FE893F9009BCE6B2E561854F9EC44DB7FF8C9164BA2691BAC517CEA7E89E3F1D2C030062877AF22A88387EFEF9AF367EB8FE4DF24645EADF2B540DC901402555FD73E7CECD5CBF7EFD3B6CB106E92819260088AC6CDCB485F9E1B41183FDFE5597B3D26D41F87291399AEFB77BEF3ED1B5460700720167E228DABC793334A0DA2E2C1A0F2D6D6D2CB246DFA1FBC9410ED0D6D6C11697107F9F93D168E2EB5B62E390C815C12474EF26968C0F3217D4DFE43A1E3E7214895E019C3575725800FCCFEF1E864D5BB707FA73E68C521623A1013214E8090600A97D6A0D8DC7EAFFF2C7C72E254E2A1AFD4185A3720090D6F6598E1E3DFAC78C8C8C25B276729800388036AFFA405DE09AB3CA66C09C73CAD803298570C9DFDEBA73373F3AC38FC6E1DC9BC3D607757575503A7D26BB868E991B154C40B54EA46CC78E9D683F2B203D3B8F317F6500C87838426E035B6E76264C428E3375E204282E2A64A3379AED23740FFDAADF7F5E7211674E9F06B1E618364CA523DFCB3F337DE876BBB857FFBE76F9A1EACA03FCE81F10CF1D08C9062A8CFED8BCBCBC14EC843D4482460B0072DD3EFA6C235383CCCE204A7F7CCBCDCCFF56DAC857DEB26D2738DDAEA8D4B1E22C22B9118CC70C7A071921A56C9E20CC5965D3C1E51C40557D083A3BBB21252D9DD52608E7B2C4C632CF80EEA9EEE0372C26A0048010DB8CDC804CC5D4491361DAE449A865E4CD0545F556FDE4AEC0B9A9AF089431287CE20D72B6DFCBC8F5200B1E5556557DF0FA4B7F11889FB85AC8279B0E9630FF80CF8F2DF1EDF51FEC4097463511559A56AB19310048851F46752B6C146ABDFC92A5CAF6729082447B02E94E65FF3E8A44137F6FF4909427205BDAC01227AE90D1AC4130D41FAC852434137AA399C51AA81289BE9F181F0FB7ADBC0135C741F8F8E34F20BF600C54202FA1D4752400C8DD7352520203029902DA5B7030D07177DF733F94EFAF0C9CA374CA24E41619909C98C8024072AADF8580A4743872AC81A71E79709ECBE5A475076CD282D19082109954AF10F1A33868D2BB1B3EDCD8D9DDA3A3C3CEC21B19876E907013D10280A66C7DBCF1CBA0891B8BE6CF637658293842B6924642E4000F1712F695CB34D22822C0914FFDC1071F40426232F4E1080B64CFC4DF971BC1F89E5CB694F838A6CDB66FDF0ED3A697C191864656C310AE2F82B592BC09216FA470CC18E6DE7D4D769FFF7E52423C63FD9490222F49CEEDA32417DD13F5EE575F6EBCFFD3F5EFBDC68F7E8794F98703804694EAA5D19F70D9D557CFB9FAAAEB9EB2DAED1AAAC9F31769E86102929BC9138AC168D04705007A20E9C20DD75DB18245DEE43662FC471B8F87C4F415012056FF0A00A08C5D2A76EEDB6FAD03B5460B535178FDFDFD4CFD0B6168F29D9B9B9BA1A9B59D65F9A400A073D3448EEEEE4E484C4903FB80839CA95073140D00A230A7745FF3CF9BCD88240140CEE52362DDCBB2801C85B11B9F7BE291E53CF1B349268CF8646B0225EA5F2FE4F9D7AC7DE5FF50A32C24D2E2E285CF40808DDE93ED2CC64E2B2E1C0B79B9398CC1CB0180122B1BBFDE1C22E49FADBE056225E95A7F84AC8577F7B85102205418748FCD4D4D48F80C6CD4C6C6C4306D7676D95930362F171E7EF86128183B169253D3A1B1A985E519A2B9E6C90200791194C9A4D0348949CEEDA348227125F460B8D75F7DF9EABACA8A4AD1E877855B3F400080742E3FB1B2F8B56FACAB34E80DEA04547976BB9D9566B7A14AA68B39B191EA140041EE533ADACC31E8CF53A48C5C1C4ADDD2437EF4F9976C9146F146D9AFBBEE582DEBF7EE65B62F5C678E1C00A11CC17F5C415E0EDAFD3A707906C181CF46934849AD0AC794A28DA6BA00321F94C5A3D87D68D049C13B08BBBE8132002CA88DCACE9AC6C2D0A499A4848FF6240BAA72A6ADBAE6C067AFBEF8DC2F44A3DF295E3B40AE345C5CE92366FF4CFDFFEDB537CB6D36BB9AC28D46A309C68F1BC3FC63B279354882FAFA6D2C85EB629A41008393E5AD3DA81DF272B2E0BCD9E7A02AED0FBA289DE3AA4B2F0929DD221B46E958EA788E0BD799110020E95862CD34A1D41B089B860280E32769D271747DC197664917BCCFA58B2E80679F7906B408EAF4CC4C68EBEA6571FB130500E967742F7366CD64758A630B0A64593F7953944F20F9A029733DF9F0030B5C4E67A728E8E38A3453485AEA254CEAA4EAC8C4975E7D7DBBCDE66000F0372FEBF8D2A99358E48B225A5F6F43DBDED4CA04EF07809BD70EFED70BE79D0B696943A95052F9D75EBE02D224459B1E1C79E5E8733B1CCED0D11029C32712A87874C7C6C4C282B9B3D9ACE1ED3B76404C5C7C20A2E69351C74A02341A0CC0799C8C60B5B5B541565E3E4BCA84069DA2BDE7C8A495720E3959592CB2C8CADC6500401541BDFD7DFE54EFA64D8F7CF8DE5B6B65823E61278BCA157AC6F200485AF3F7D7B7D86C3615099EFC6502018D6C011094B2BC70DE1CB0DA0790E46D83AF366F65491A314F5872E102747592F8746F1A5CB1FC7B2119327A98CA9A03CC53905587611784140B30786415171521798A81F2F2BD48281B212E2191B97342F915550E53F55143E3313617209C0089259166A0F22A72B55481408C92FD8E9053080300AA4398513A95E512A80D4551879E990A421A8E1DE32B935A9A9E7DEC2121E2679564FCC22E182197F88915DCBF17FFFEDA5756AB4D2D8C7EB6F70E69033F2006596064F9D2C5407182FD9555F0D1675FC0A75F7ECD46DBB2C50B21252505E69C5D06E7CD3A5BB6FE8E4ABA8828465A0B289C7B165A13E063932F3B70F4BB51702A24B2445A49A5D2B9962C5AC06A02376DDACCD4BE4AAB67695E5F981802372CCE115D52490A00120711521A24A5932733D7500A1C52FD07EBEB1907A39941FF78E3D51F5495EF2917057DC4CBCC859D24AA04800402C0F5D7DF3073D192A5AB9C6ECF047433D4E2D11F00810810747314FFBEE0FC739154E5C1961D3B59E9F4D2450B59F0453627DEDCC2023272028C0E009C4C0026F8FB1E7E2109E0047F1B607AE914F8E4A38FA1AD1D557A6E1EE80CA6C0F7493B502D00B5A6E656A83FDA086E16301A29E98C16004846F37351F567B2784B5C5C9CACDB771CDDD4567E39BCBABABA4D2FFFF94F3FA788394FFC1C22E217719AB8DCDC7E410324F24048403730EEEEFFFED5D2DCBC31F33ABABA1348BD0BA33F58330C018446F1944913E1E2850B60CAC412969A946EA42186D8F48906807C5DA0F07D37F294638D478132C289C929CCCEAB78D237134760E9E489F0CE3BEF420BBAA4B9630A59F2C61B2D00A4F63FE89E650820FF9E3CA3B3A64D81ACCC74B4FDE365933D54635875E020B3FB4842DDCF3CF6D0229BD5DA1129E41B2D00F4A21070020F84783E2E40C121FDF4B2B2ACABAEB97EB957A52E467BAF0D320FFC6B8FC454D03D50A873F9928B584893F2FE34D5BBE6401D1EE70B0F00694745000099189AE8416E29D5E9D3BD844F0B879A9C29934AC089F74791BEAEEE6E28993C0DAC8170F4490000E72789543C42A37E1E7A4E548D2C75FBA83FF7A289A5790AB46DDDB2E5E9F7DF7E738DC8F63B9542BE9100208D02C6F044308E6F02000C20FAF99695AB56CF292C2999DFD2D199EA700C849A079166F00434030765A5A570F9254B983B18E29F2B64D8A201008DE285F3E7B2DC0131FFBEFE7E56BB17A2462300807A630049564F6F37C4C52730D2A8E1B583AC0B1909000A0450FCBCAC749D6AFCA64E814C46FC42593F694BAA82E66735B53EFDF0032B78D56F158DFE612D1AA9523003422E4068661E00461108F4C22CA1FCFCFCC4ABAEBF7119A7D24C6E6A6D3378A4209021913F5A75134B2C51D9756242028B72450500450FC0C7CE939C9400CF3FFF3C4C3B6B3AA8D9E20A1C8B9FD388A2E24C2A8F16CABE590227C20AA4E1630E910110CE03109E970602CD294847B27C2E1265B9440F2D81BBAFAA5A98DCC2BDF9DAEB37D5ECDFBD5F26E813F5E8970B058BE7FB0BCBB99B44AF0D10FC5B3ED21F74D22E5BBE626AF1C4298B9ADA3BB2FAAD569578F48B8170C7AD37F953B03E7F6938958067A5A7B179018A193E050F40CCCEFD53BFAC2C3C4A4397AA62E9BBB3674E875E64F9D5D535D8AA60D6B9735954330400321E403800842B2C8DC664D1B9A74C9A80AE9F89F1A540DA5DA4FA070606581D247933B4555656BDF5FA5FFFF2302FFC7E19B78F1B0900A40B3B0B403044D904203030C4272498AEB8E6FAA5A0D54F3F72F498590C02F2267E7CEB4ABCAEDFA76668471008A8A790329553D36D45B2DFD1D60552AEE2FDF5EF417C7C226A061D98D075F557D5F80140A9D8DC9C2C1C699DE8621D66262412009449ABB8EE203C00FC1355B2901B4D8689C545A1DA0DF7E44D75F0E1DECEAEEE8E271EFCCD151435E7856F8B36E813768510494A58BCF48B0E827FC6CD200186542318C440A076CEEC730B274E9BBEB4A9AD23AFB3BB9BC5157EB27A15EB00B1F085C48B1F145EC68AC925A2B2B1A801A0501646CF49AB8CB1502F85B60D46B6D40C1D573C6E2CBA855361E3C68D38BA2A21333B071C6E2F2BDCE414EA02C393D6E80040A689463F99C1E58B17F9E76DCBD8FD8A9A0381D540FEF1CA2BABAA2ACA2B65823E5E18C182D14A35817240D0C88021E4E7DD14CC030383CE68347C6FF9650BB546F3EC450BE6C770FC1A40C120F00BDFC7EFE93DF079780A1FAB0264ECC41486D23D50787AD0E980DABA8360494804534CACBF6A496EA6D1090200C7A6738F632AFF52F48E52929343DC3EF2403EFD7253207681AA7F1DAAFE2778E237ECA04F546B0489400010FCDBBD1A1151D4CA00410A00A38256D025A07978EC8FCFFE0E6D9A4A2A7C1F2FF421108835036A05EC304A8D526E9F15A544AC0B8C6E5E00A5825C9452453B4B84D14F4AA3C82A0E8B000E0120253911597F364C9A500C73679D1332F25D781FEF7FFC19E3332C66D2DDD3FEF803F75DC30BBF4FAED267384BC4865D2226CC0F39ABC39808BD040C46191311D00E33CACA326E5C79EB8A9898D8F13687432355FF620D20083F882B78FD931EA9A6CE6F2294326C239B19249D18A2F47D8A3BA422D1A4656458FA380A0090F74382A7FBBEE1EA2B456576436DD3F61D70F09BC37C29F920CDECB9A57AFFFE1A91DB27A87E0F8CF0B70222AE0FA00004950210B4325C410C00A937C180A0D3E9F43FBDF3AE05E38A4BE6D81C031616B80912BE3784284AC1421D4D19475A129616861E3100C2CC0C92FB3EE536A69414C1BEFD1530E0F2C0F1B676B63A47B8BC05F5F7B8C2023605EE928B2F8271630A42DCBEFA230D2C97226C355595FF78E5A5179E9251FDC376FB46B44C9C2AB85E5B25133F90FEE0B314084691F0CD22F73228B03477FEFC3C742397825A57607738D4D108DF273117F43C145421F268662E65F899419101A09C78A2491DB7FDF016964F78E8B127A1050170F8E8D1B05E4B628285CD3720C1537D62F09C091FFBF18BD7DE7E97257AFC05323DED8FFDF6BEEB6454BF6BA4C4EF442C1327671E5420FFCBDF626D10F86550BE09C01093458D3936D6B0FAF61F5F949E995D86FEBCD91BA5F0C55CC1CB1755E4E7E5A066C80683511F5A541209000A1A44E01C54A14BAB98ECDAB91D32730BF8BA3C65D2A9566BD83A3EE47EAEBEF906B6B854506D1FDEF7BA7F6E60B386F885A97C6FBCFCD75BAAAB2A6A25AA7F54C4EF442F152B175154C968043910982420080202B58B2E5E523C7BEEF98B07DC83594EA75315ADF0A566C4C76201D92CDC1A4BCBC7F19336869554920040296FA1048082FC3CB6F6E085F3E7C1D9A26A68E1F36DBBF604664B33D55F5DFDC62B6BFEFC27D1E8B78F24DE7FAA968B57320F1AC932F2468949304908A31C10B429292931D7FD60E592188B655A4FAF552F2588E1842FE755901741DE445A6A2A33158247113EAB38DC9941439FD16827C24AD3BA565E7F4DC82C282AED5AFBC6BA80CBD7DBD7DBF6E8FDFF7B8348F8D6D144FC4E1A0086E13D88E3085277D128E335E8253907A1A9172E5A3C71E2D4B3160EB8DD592EB7471510BE94342AB994520F035FD35C7F5A0B80E60C9A8DA6C06FF29C0800D05A033497823C8655DFBF9645FF82660AA3F7F0E2DA575941AC48F5DF8AAABF4E44FC1CA389F89D1200840182D86B1073039D42FCC0182ECC2C68159339D6B464F9A5172426A795DAD18360D3BC46207C31708411989C9C84442D9F0568C8660B6B024BA79685CF5BF83FCBC9CA80989818B65EC0C2F3CF0BE92F5A03A0928FF6D1565B53FDC6DA17FFFC9C0CF18BBAD0E3B402400108E2B4B35A32AAF53201A568802080419D989C1ABF60D1C50BCC96F8C9569B2D968A4CC5DA205AE12BF50765EC52929269AD3D888B8961BF40426B00B07C8562D4D1C716BAA4BA3E2AF15A7DD30D21CBCE5075F5BBEF7F34B4B44C5F7FCB23F7DF73332FFC13EAF39F72008401823A42CEC120136696330D522030306464E726CD397FFE057A8369425777AF79D0EB0D0D3049B8025B686A847D4142A5A558E2E362218696B8311840A3D5B09A439AF944AA7FE1BCF3E09CB2E921EB08BDB0F69580CB87AEAEEFD597D7FCF040155BCAE584FBFCA70D00C30082469289D447483CE995CC830086B185E3D34ACF9EBD90D3688A3A3A3A8D14680A218A3C793CD11B1577D20458D2061555350C10E96969F8B722B692F9FEAAEA80CBC7ABFED750F5BF20CAF4596184BF04724602200AF7315C40492E1329CD35286A056A05630BD38A264D3B8F53A98BBBFBFAE39899E0857F32FA4100004D78A1351168A4D37434175F53B9ECE245812A696B7F7FCB43BFB967152FFC3E992A1FEF8916FE6901C03080102ECC1C0E0C52F3A09302819ADE68348D9F5C3A3BD6923069C0E54E75BADCDA930580EEEE1E16D7F70BDFCDA671D3EB450BE6B19FB44300FA5EFBDB4BB71D0866FDF648133BBFD500184198395C4A5A0A0625F3A09503035D2B3E39356DECF809D3CDB17145032E4F8ADDE1D09E2800908F2F4C2177B179947E20CC423340B188DADA9AD7D6FEE5F91725ACFF84FBFC6724004618669633113A0910F44A7509725C01827F044C9D999D9D56307E5299DE641A3730E04AEAB7D9B5C3ED2B02C0F87185B0E6B9679FCE2D282C4E4ECF9ADDD3D71B47E48F00406B0C8ECDCF697EF4B7F7FD1049688F4C81A7E764A9FE331200C30C33473211FA3020D049DC506D3830D0DE60349A73C6164D30C725166975DA548E53C579063DC641AF4F1D0E00269DA6F6CF4F3FF932FF27EA6CDFDC0B975CA433C59C63425FB2A176FF1DD595950725E1DE93E2F37F6B0010A57950D20A729A41AF00025D149A4123019FB8815E6F34C725A7A4A6A4A6E59962E232B43A7D32A752591018A6C2823CCF47EFBCF180C36E7709617F7E447B78215B79A14B55BFEB64ABFE6F0500A2AC4D90F320E4C0A09301861210745198891030C0D0AF737941E6777AF836C8DB763100C4AC5FBC94DB491DFDDF2A0084D10A725C41090C5A89802301422B21A062AD20BE9E700F1C2FB84149F349C0210680D06CA24C5FC459BDFFB60018A60721E50B4A1A421B8569D0CA9C43AA1104010FF2A3D82DF6E1459F7B7861DB79C1DB45011FCFA950FDFF120088422BA8C26807B564842B690839B2A895E1085200B845021503C0C7FFCDC50B7D80078338E0E3E34E9160FE2500304C30C8B996D208A44641E85AC9715273102D00BC220DE1923BEE3B009C3A3028553CCB990D8D82972076057D2213E09131014A3CE1A4C4FAFFAD01102518943C8A70C0502BB8886257CF2B0EE38A842F1CE3131DEB3B1DC2FFB70240183044D20E7266436E0F0AAE60D0EFF64A8EE140E6E75CBF03C099A11D40E2E3870307C8C402389918801800E263813B4D82F80E00D16B0725D3213D066484CEC97C3EF4E6340AE13B000C1F1072020719332027F83342E8DF01E0E480E28C16B4D2F6FF01DFF07D7708FAA75F0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (77,1,'Phone_(24)',0x89504E470D0A1A0A0000000D494844520000001800000012080600000041EC1E9E0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000044049444154388D95947B4C5B6518C6910D940D5DE29C8B99897F1832CD12DDD0651AD8583082D67019C28620307005C6A402456E2D94155ABA1690B65CCAB5949694310AED56A001063ADCE2748311770105648CE90435B2251818EDE3F7D5D384454BE6499E7C2739E77B7FEFDD05808B33916703D126A2CD444F11B93AB4DEBD476C3831FC04351C1515F5764D5DA351D5D87CB954AE30F10A8B3FD9EBE3BF33312D2FDFCF2FF02506ECBE1ED099F1679A34DAA6A1E18B2B96812118CE76A3AC520571B96235A7B8742A49AA4452891CDC42E9527296E07ACC71AEFC9DE0C8DD4CB46ED4C67F0218E39BB5DA56D595D1315CB8F40D7AFB07915724015F740A5245ADADB44187E7A4A5D8745288178B443820ABC0119912A91205D20A4EADC4A7E54E86C6C4783903B8ABD59A9C1BB7266C0E804C59034E361FA232057406338A74EDD8A3ACC2F3793C6C4F39811DEC44786566E30D5939E2E52AF048642111D141FF02D0820A8542BF1FA7A6FFBA39FE032840D76E805C550F63B705D333B731393D83EF46AEC164390F4DC75988F4061CAB6D024B5A8E80EA5A889BF5E0E40AE0F36ED0DDE0E023AFDB33E2480D8BC5DA766B7C626A66F60E2860F0ABAF71BACB68077D3B328A1BE313B8373F8FD5D555DCFB751E56AB15533FCD6070F812F49D66B475F7A3CD64C1D194341C8A4E40FC8974441E658739004F5E1D19699B5FF80D1470FDE638BACCBD7643B767E7A03DDD81DA662D2AAAEB50A7D6A2A76F0057AF8D61E5E143CCCECDC166B3E1F29511B49EE942E0A128E4094B90C113AC6CDBB5CB931A77ED3499A2177EFFC3E600D0AE59BC7F1F7F2E2EC248403A02A86BD6A1A6B105B98522C8145510939AA49374942A5538633463EEE75F689741502285E48B4A04877FF43933472EEEA6EEEE31EAA1A44209736F1F34FA762C2F2F63E8C245749EEB2100031AB57A1491429657D5A2402483402441525A16629339088F658315F131794F450B7126353BEF0EB1EBC164C7C543D5D0745E5CAEB4D2F0F51D9D585A5AC2E8D8F7A033E00054D63541A16A805052867A4D2B38397C24A767FF0388632328320EE77AFA51D5A0B6EDDF1FB0D7317CF4D948E4E5E9B9253C85936E49FC2CF301977F12E6BE7EF43200BDC1681F3432D150A95B9049BE73798548CEC8461C0144104045753D0649C4B1ECE3469A9547DA9481D082D0F10F884D60ABABEAD50F0462993DD7D4E37A8D0EF29A7AF0C9D0E5174B90555084FCA2123B803885BBB40665F22572FFD9F5267903B35F5E260AF2F53D20CBC8E54F1E4BCDB08646C7DB53C2E50B91430A4D236073B8A42DD3EDAD3CF0E5303E083B9C4A57C5E32C3B076807D1413737B724566898F9FDB0C885D77CFCAD3BDFF405D53E7F163ECDE2814F22E264E78D937F9F5EEBBD53C01A902BB3A6B712EDA15111256CDDFE8278F75BBE967D07032603433E1C7D2FE4F0E82BDEDEDED4B1C75AD74E36AC3BB32DB73091D1EDE9CF9CAFAE2DECFF0638898C023D9873A3B37FFF061794DC42FE19CB1A0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (78,1,'Phone_(48)',0x89504E470D0A1A0A0000000D4948445200000030000000230806000000D24089B20000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000BF24944415458C3B599095C14541EC75301C9238F523377CD705B77DD343769C972F33E96F2C62410144401B991E1464018981386E106412EB9454E4190302B656DBD4FCAF2CABC4DADD415F1B7FFF778B0A38E79369FCFEF23CEF1E6FFFD5FEFFFDEBC00E085A7113DBA08752319E888FDBF2B7BED69D77E223B9ED27066A021A907A92FE915D240D200527F522F9291785F571DC84EB8E705F834C61B080307934658DBDA5A28D4B16A992A26215A11932895A9345EAB7C1D468D3235A1D77B925E24F5D381EB2D9E337A1E117B52E30D85316F4AA3E5E13575F5A71B9A3EC7A6FA4654D4D4A1B4A21A05A5E548CBCA832C36FE4E88343A89DEFBC725CEDE113EE1AAEB9EC1514796AF0A2AB2B05DE6D0A7CF4006F8AA588F811A8BF5BB3D49849ED4F8FEC3870F1F5B5C56DEF055F34E6CFD623BEE07C8CC2B44548C1652751CFBB775D458B3B9418A84D600593CFCA3B5F095C6C1272216DEE131F00891FDEAEC1BF6CD5237DF923996F60E9491AF09A01E3A11FACDE83C2E005BA86FBF7EFD46D76E6ED8F9EF5D7BA00F20A7B0848C8EE7C63345C7686F86C8E34F46C6AD85243605AFC995F8872216160A2D3CE4F160507E515A48A41A0EE519A66C7394849EB176F22A99326BC1C7A2B63AEBE9A90044485F323232FA4BD5A6DAC6DDFB0E401F40665E3EC21531885469B818804C9BD616939E07756A0EFE1E130703990CDDE50AF49446A10FC19828D4F850A981A59280948908922708A838482235700B96DDB6730F685968EF1AF79EB9F9107D917894F15D457E9A545456971E387C14FA004A287522949416C1E1183F630ED61088323E05A9B92548CE2981675A160CE572BC48EACD006C6CD1D7D51D03FCFCF1AAAF1F86462B309C60C6D01A33555AD8AAE2E1A54A42B022018104E51F1D0F0B9BE551CC998F0D20F29E15D61F4B4ACB528E7E7B0CFA002A36D5716FBB4A0260EBE8061B922A2105D92595A42A641557605C42127A28947849495AE982FE1E9EE8F7C9220C7458814176CB3060CE5CBCEEE88C916BA4789B404CD51A98D19A01716988884B8724428105D64B652C951F0B40A768076A345A8FEF8E9FBCAB0F80A58E3C2E017E61521E8184B44CE41595A2B87C134AAAEB515C558FC28A3AE497D7228940BCB2F3313B652D466B13304C1D83D77D2478DDD50D6FB8B8E24D570F9858DBC094A2319ED6FC489B0C755A2E54293958E91388059F2E6111E87E7F1AFD56DEF7B1B5B39BFAEDF7C7AF1300EE07D8FAE576A8135310A5D6429B9AC10BB8B2B61ECD3B77E1E79F7FC1F193A7B073D75ED4356E45E1C66AE46FAC21A80682DACCA1924AABE0975704ABB5D99848EB9846C9F16E7824262624631A45D09D9E4FCA2E4642562196B97A61EADC85D7468F9B5C6B6666F67247ABD50B20F2BEC7902143DE3C78E4C8E1533F9C813E80E40CFA828C2C64E717F334FAFCAB1DD843AFDDBC750B1D8FD6D63B3874A485FF7DEDDA75B47CFB1D9A28EDCAAA6B915554469169872AAADC8C940DD558BDBE184EB48758502435856558575481E4754570F2F081E9A49998366F119638BA5F5C68EB903A73E6CCFE3C53F4A40E6B5983B76FDF5178F6FC79E803C82BDE409B552E369221AC0EF61E3848C61DC3D66D5FD17B4F7088BB77EF62EFFE439D30D7AEFF8C83F4F98EC79D3B7770E6EC39D4D46F4172662EB28BCA5156DB880D355B78FA31A8028A54905489598B6C3076E20C78F8876089933BAC57B850BDB9E67367EB499D7EC5C5C55E972E5F813E80AABA2DD024A7A171EB360EF3FD8953B878E9326AEA1A7934D6E6AC474A660E8A3654E04BAA13F6F9ABD7AEDD637C5B5B1B8E7D7F82FF7D8B607FBA7A15878EB62023B700D19A2414520D55D66F4579DD6770F6F6E7DE77F2F2839B6F101C3D7DE1171A09DACDC3B8BDF7A54EAFA0A0A0C9972E5FFE451FC0D7BBF74211978826E1E9CB577EE29EFC627B33F24B3622BB8001E4F3F46275A1A65C96C52650A127627D4919767CBD0B172E5DC2FE438739047B5CB878A9138C45EDBB1327B18DD64B5E978BD49C229893F7CD175A2138520EC9EA084842D6C04D1270856C7DB91340A44E7753535393B367CFB55CBB7E1DFA00D6AD2F426159057F8D19CE1EFB0F1D414979955E001689E28D15D46635581DA5444078147CC800B64FB09969CFFE03B874E54A27C0E9333F72888E872A3E99EF2B11AA38442ADBD7089529F1FE87536DC5FED4F59ED4D9B3776FD68D1B37A10FE0F31DCDBCDF330F753C4E9EFE01E534423C0C40A54D4220B5D870EAED25E5158890AB394088548E95AB02B09C8AD3DED51B6BE431D850598DA3DF1CEB04D877F030269ACF236F07419B9CCE61A43463592F73DE45B60E126DBE4B07002BDCA1959BEA8ED76CDE8213A74EDF03C0F2353E3D93B7CD8E2F60E9B3A9A1F1FF00A53A0099D9FCB9ECF585906BDA53481212CE733728428ED0C828B893610CC06EA527162F77C1223B47CC5FBC0C56CB9C796BB6A6E7667FBA04A9D42CD8741B4F0EF10B5DD3DAE79557C676785FD8CED3A767567E6174E5A6CD7753D7E5C19FBCA664795B5C862F76EC440D19CABC5F5557CF8DFFF5C60D7C4675C03A483B40B50028E90488494C25EF474249515069B408A3F087501EA75074BC03C3E0421158E12179006096A52D662EB0C2F4B98B1047CDA2885236B7B094AF3375D6FC6431E019E8D42E4F9FFEF945A5C59AA43468E88B6B1B9AF8872CED9DF0CE87D39198BE0ED59B1B785F6F6D6D45F37F76A39E66205D800201C036B4FAC626FAF2B5884D4C432CAD194113682801B054715FE5070FBF60B8F8E800AC707D00C08DDE535DD7407BCC663EA22F775F7591EC1C2E0E435D7401D8A83CD0C3DBC73D2BAFE0A2940AC697AA9D794841E167AD6DE7AEDD9D5DE220156D93CE145ADE7990D9881C02C8C8CDE79D4A4B23430A6D74C1E1525E806C5A6535C0BA88A7FFEADF04B0B05DCE373BF63D2C4DC3E5B118F9F6D8A5E244D7EDBED6DF5EC0A47748F3478F1E131811ADD81B181E7D9B85769EB53DB5B1C5485A9BC537AC871D641800FB7F0D458A751F96B32C8D580D308050A98C3C1FF42080CBBD002CEF13A8DE76EFDB8F666ABBE9B4AFD020D74CB60D13C36597FB013AA64E76BC7B8B348964415AB6C0D22AC7CD27E09CB9C562984D31E7C66464AF47398D0EF59F6D7D00806D640A1AC4D2E93DB9F985EC58C93F934A3D3D345A89C035D1ED00010F07609BD53E72D4E1966FB8F73D03426EF6EEDDFF7D7179A07F9C169B18EB442F91D8B1EEAFA40F48B348B603060DF2B5B4B1DB416971279EB7476A6974685127A452FB2C436965FB59B83D850A780458FAB108B0F707AC0EE305DC0E102100020580572700EB3C0D4DDBF0C38F6769673ECA1D603661CA6AB26188BE49F49E614EE7BAC448B4A981A2684C4933493633CCCDD5B1F189C7A838DBC2642ABE31F18E42DE64AD8F75A08CDCC2F614A281AC3D8512F9092D345AD509C0DAA9824E68AEE4ED0E004B7B675E376CE8632D3C23AF80E61EB7FDC299BD1EFB48A90362202ABEBFC83F5311113B4343438FE54E2E556B64EACBAB08C0D15382A5CE1EDC082BF222EB38B149E9FA01A841F8D0C9CD8152C781ED0302C0DD37987B9E753A36AA93736EF7EADB77A2B88E3178D8C1FE716E23BA891A61B3C79F486624739235C979988949F84ACF55BBDD2481FF65DD837591E9F32C31C17C3E267C340F36649C777018CD328A4E808E1462E00CC09EE6FDBA2D4DBCD3FD78EE3CBF1898F6F11CD9C30AF769AF550CC47507DB48DE208D214D212D2439903C264C9E9E69E7E4767A8ED592BB1F4C9FCD47E0B7C64DC208D3F15CECEFA9B33FC1BCC5F67CF35AEAECCE8B985D069CBB7001B76FDFE69BA08BB75F0BAD379A1DAAF415EEF3B89933168B0FD129F8D9ACE0492E3D7BF6F49F6A3EBB6EDA9C8517C68C9FDAD601A04F2C522C2A2C6A8B1D5D59B76A1D3C78F0BF4457347CD405D7B35CEC761305DF4BA7E0D99C329DF4096BC32457928FC988916BFF39CD7CDFF8E91F5F1DFDC1E4B6FB019CBD24E7E77CBAF4D6C48FE663BEA5759248D51E8F733BF76C17AB0F163CDB10FF401A497A8F3443EC294B484E2CCD189081B171E850933F678E321D573F6ED28C9D0606069EAC9E8C8D8D6DC486DAEF51A9F35C001E11959705CC08119909A2F81790AC0494AD0064CF4F23BD2B2E8DBB3FD7BBD1A78C4A074CC7153C9BE1878AF4F89BF0F45811AD610276808864D7DFEDF78167FC11C44834809EA209F415D7EDC6BA97B9BFEB0F1CCF0948374ACFF483C7FF000ABFFFA86CDF2EA00000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (79,1,'Phone_(64)',0x89504E470D0A1A0A0000000D49484452000000400000002F080600000053CBCC510000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000121D4944415468DED55A097453E795BE92AC7DB12D2F32DE00638377F64030D8C42C216D26A44968364A266D0E6DCA099D493AE7F4B43393A4694F274D139292852629709A9240D906E810304BD882590DC660BCDB78DF6DEDBB34F7FE7E4F799265852DE98CCEF9CF939EDEFBDF7FBFFBDDEFDEFB4B22BFDF0F77F325C217FF36E4E8171EFD77FBC1B7BBDEBBB50ECE7071982104C0C70D2F771CF3E1DF1640770C0067388D281C521C32C19070200067B00787931B2EEEB35F00961028FFB7C19A3B0280335EC219AEC4A1C1A1CECECF4F7CEA89958B120C09B91EAF4FE2F7FB447E9F1FDC5EB763B07FA0EAEAB5AA937B77EEBC8ED7DA386379C0C402A03C02A6F84240B96B80DC360002E3159CE1B16BD6AE5DB07061E90FA363F433D068A9C7EB018FC70B5EAF178FF81E8F6EB7077AFBFAF0B3BBB9EA42E5AA4F3FDD584FA0ADF9C5ABEFCA64B22C87DD5E3DDCDF77FCC8A183877BDB9B86F13B3737BE0E94DB02E4B60010184F5E8F56A9548675EFFC714D6E5EC12AAFCF2B09181D02801B47574F0F389D2E6E1E18F8E58B3F2BFEFEAAD58F4DCCCE7B95D6E2C34147628CCFEB712050DD4EBBADDA383474A2E2ECE9B286EB957D5CF88C05CA2D8171CB0084783E263D3D7DFC860FFFBC5E1FA79F4EC606192D78EF76BBA1A3BB1BEC7647602EB148E4FC64D3C6958F3DB37A0BCE2CF3F97DE0F0FA583CF939207C1C18ECBDCF87A0785D2E97A3DB66B55474B4B57C7A78CFF6D39CA608011132242218B7048040E9C9F8689D4E97BA6DFBAE77E313E2678F78790C00D0F3AD1D9D60B5D942A71CB6BBA057A9D14C2623077C5E58EF1C821891182688A5908E8F4AF54B40E31F03101C6E97CB63B75B5ACC46E3D1BA6B959B2E959F68E6182264897F2C106E1A0081DACB71E8A452E9B85D7BF6FE2135356D11D13B1200172F57825C2E0F4E73846494DC2D57A8A5BC311BAD8350EF71123340821748E848482320692209A42018E310141D2E23102A8C197CD8F8C06AB7DAAC6673B5697060CFC5931737B5B55DEE2720F07BDF9D0220E6D45E872371D77FEF79252B6BF2631E2EBEC702A0AABA86BDF722B5EB1B9B6072660688C5629C4F02D1FA848027AB9C36D868EA6706B38162E96BA80779FA0410E1FDD2E8E8404ED52000C9E22830E09944BF08747E2EF84300F17831EC5A9AD76FDBF8DE8BA413E15870530070DE97726A9FF0D9B6BFBD3875DAB4D55E66F0D800D4363480D962859EDE7E283F7B1E4C160B3CB5E211502A14A08F37801FA7A5E7BBD073AFF5B4C23086C00800F8B8DE5E1059AD20C6B945289AB8D0917CABD7834CA30159AC1EC4740EE750A0090604240EE149C12123403846345EAFDAB175F39F565248DC16009CF154E4A870C46DDCB8F9B9F9C5C5BF4043459100686CBE017DFDFDD0DDDF07741D790E6B02C89C30010CC9C920924405BC7FD66C844F067A80581A858F13A3507A2A2B419A90086204C5373C8CAC9180442A05EF403F28F0BC2C3616A2A2A240AA5481222696CD4F00954855A04500492706F1DACEB6E61DDB367FF8030E00DF2D0110227AFA575E7B6DD9CAA77FF03EAA7114193A16004D2D3730DDF5C2D0D0308B7D8D460D5AB59A1DD52A245194749498B9D0D006BB0DEA71343A6CD08D5983BC4E8078DADA001C76347E10E468B81FBF53C4C480A5B61692E617834CA94036006811A4C5724D60CEA6FAEB601A1ADCFAD9E68F9EC3F553FAF185B2E0EB0010F3A2F7BD152B0A5FFFDD7F6D43D4637943C30170A3BD1D6EB4B683DDE160540F365E0D31313A18329AC064B2E003C42095CB98B6B2BC2F10363BCED78C40B4D8EDD0EA72C080C73D522FE379576717BEC7EB31ABC465E770DE17C164990272A58AC01C57AF5C84E181A163FB776F7BCA66B30D7399210884310110C4BD36353535F9C0C1B2AD5A9D2E57E8E95000FA0786A0EAFA7526421AB50A879A0D2D335E052929E360D284F1C0E56618426AF7F60F4037B26560C8081634284A2A0785424917040162C3F95B911DED2E27742120267C269F25C8783A16AB75A0C7D0A2FB2C2613B434D541CB0D74487B875FAD565D3A7B647F89B007A157580004C50EC57D42F999336FA68F9FB03C94EA420028C79FABB80C72A90CD4CC781C2856742400544A25644FCE0A7A8ECD6687F2F317A1B4B8889EC916DE3F30006DED9DD0D3D7CF98627338F15E3528F17E2120167C7E177ED7E3B2431F86047DF79D98B840585DBD5A0536AB1153F035AC3C9DB070FEBDFEA161631F3273AFA9BBF557656565FD7ED6A4840780AFF46277EFDEFD937945F37F152ED67900B0348373172F3123E2F4B18CEEBCF7E9BDC56C85B4D46448488867399E5E344F7D633382921978EEC0E0105CABA985E2797303E7E8BA8EAE6E964E9B31B414287A71FAB891F6320048700549E78F1FFF02BAF1BED68E2EC8CFCD06B9420E2ECC2664834AAD746F5CBF4E4D4C18058020DF47FFFBCB2FCFFFD90B2F7C8694964502E072D535A4F0202AFC44D0E93401C3E988B107E72B2AD9F594FF93121321655C12A42427B1C5C6A298D1CB6CB68013818C8FD307D642CF3B71FA2C14CD998D622A63D7D73534C1E97317A0B5BD0BE2E2E200C393014F20F080D07D070F7C8EE1588BCC51C0DCD93399E6502F4225589C5EEF7AE3D7FF410F760601204879EA9C9C9CD4B24387F660A393E11943ED0980A61BADCC6B3948EFE4244390F11E54F6E3A74E83D3E182709D2185463A1A30213D0DEF41CFA2C2638519C488D89868061CBDAE220BC8935919139931E72F5E865367CE6298B820273B1B70ADECBA1ACC0E65878F80D1648445C50BC08921C29E898300EFEDEBADFC78FDBA7994194201E0A9AFBF74E9D21B1333263DEEE5161E0E000B1639474F9C8271E8D199850541D4A7790F1D3B0956AB657485C801209C0F7DC798918122490626C4C7414353734037A8991AC0B49A94981058AF0BCFD5D4352080A970EC5439D4D6376275A987EBD76BB0F03A87734D6073B9DC2E0698582CA2B4ECDBBE63EB3DB5972E55073180F33EE524DD962D5B1E59FEF0C31FE0C2449100387BBE028610E507972E619E22C315E821BAE62452B70FF3F657F78F0640829E4D445D686DEB402F3A58D3C43F87448F163F256B12D309BA970CD069B50100AC28A2B47E125AFE75E88B13F0EB37D6419444024B4B4B38CF8F34640A0C872B55D7766EFFCBC7CFE3A546C295012054FDA79F7E7ACAFBEF6F38208912EB47161C1E804E6C6DBFC4F276EEAC192CC648E5F9D7C5CA2BCCA880B17CC8F0E0718616A038D5225D5D1E3F4B813959996CBFA0B5BD837DEF0DDCE783646447EE942CC8CFC986CC491319FBA8E09A5E981F782EB1E4B9B53F675568F1BC39108F6CA0FBC9FBA40F46A3D1F6E66F5E998A97F6F0BB514200C8FBB15F7E59BE6EEAD4C227A81C1F0B00DAD53978E418D89D767861F58F58C1C3BFEA91B63575F561E83E7A2E1BD6FA26931955590D494958DE4A44D0824A4FA94F8F7A90890CA8403089FA5E017052AC2473A66442615E2E4C2BC8030317161F6EFE04B66CDF0DE3508BE6A370D28ECBC8468C1B33150AEAF163BF2CDBB7FBCFBCF703695010FB49BBF6EEDB6832DB8AB32611FD32698E510054D7D441E5B56A16AF4F3CB23C607C4F6F1F2EB82A4283347224BC674CCD872B57AA3084AC28522ED61FF7F5F5B122C8871F0A73A740435D1DD8DC3E309ACD01368C3028184C0A2312E1CF0F1DC1E252040F2C5904B1D13AF63D79DF8C4D584B4BEB8D0D6FFFFE3E5C26ED28D9F98A90EFF10900EDFAF736AC8937185E19361A2584BA073D5D90978D2293CE50268368B2FD6547D8C4F7CC9C0E8B4B1604D2D8B98A0A86F4D829930302BBB4E1C141ECDDEDA0C5985E7C5F319C3B7B16AC4E370C1BCD688418DC4E071642469061793BEAFEA0D0F206E9CCACE9D3606A7E1E4B8B748D05D7DB3F38E4DFB9FD6FCBAB2E9E2BC7A59A38EF33F1E30160F4DFB967DFD6BEFEC19209E3D3B19C454FD736A0B76BD942E8A1692929306BC654E8C40283C4E8F1EF3DC4D49AF237E57A3B96AA814509A82F3420363A064C36A4FEB031F0BDDD6E6500CAE44A9C5703B3A715601C37436DD30DB67F184948856CA0B0796049299B83BE7760D9DC8E85D0B5EAEA2FFEFAD107CFA28DB439E240DBBD81CC27E8F612B6EDD8BDA5ABAFBFC8818AECC038A40A2A2F7B0A9CB95001BBF6FD0F6B727EFCC3558C5ECBBFBB8C091FEDD35DAEBA8A0263FE8AA26300A0D3694121933250A558325365A8902BD8BE01E94A401B2C664C5D1E6C94E410498885A10548E6FB1797B050707339BFADA313DA3BBB5C1FBCF5FB392880AD4454AAAF829A210E009270C34B2FFDDB8AC219335FECEEEB4F2495B5630D4D60181212A0B4643E8BF1685D34DCB7E05EE07F01AB6D6864E7037D81601F300800EEBD099B143A2F97C9202DD900E567CE414C5C3C50019A973305D9D5C584309C768C195AC8D66CD4ABFB172D64F3D23558F7435D63139C3953FEF6BEED5BDFA2BA8AF37ED09E000F00B5BCF138A8554B2D282898F8E4AA675778FDA2FCCEEE1E29630482412DEE242C2E1E7A6029CC985608C3D8CDD16667A4268937201ECB566A4ABA7A7B038ACEC04006D1A2B13C05BFD7058D487B3156831E8F6FF45C63304B8D55E4F2EF2C63A24CD7514852F6686D6DEB7DE7F5DF2E449BBA715842BD2FD400D6F6D25E1F3762B9BD3FF593AB9E299A3869F292D6F6CE4423C6290F061D5F5AF33C2424EA412A910AE83F7AD151B49B23F6C3E090099C9892920D06A631EDDD3DE0B03B03FB87C66113566A521449FFE8B9C66016F973C1BCD9B0E4BE92401F408D13D621FEBDFB763D7BE1D4A94368C710557D617784042C2021547386D388E68E048C26393935E1BB8F3CFA302A7561CB8D361969C44F7EF40C5B101910874D4C8C4EC74ADAD15EF332F6D0206F2B51079A5B5A40AE52B36DAD19530B99B0126547D13D148090E26A7C5A6A408C29F6DB3B3BB133BD0CB5353507FFF2D1076BB9A2C71A715354B0F515C501A1E0C0D00800D1719F550B172D9D65481BBFACB4A4D840D517D5E42462F49EBAB694A42450AA9463EF16E379D2177AA892B5A9766C50064182C248CC8818EF026069BBEDC1A58BA0B8E85E2EE559613FD602A849A6375EFBCF529CBE837E7B186B3F30684748B0EFCFEF2F467140F03F7A6A4398A179EB8FEB7FAC54EB722C569BC4CD40E0C17083CFEB0783219E1529120C8148CD1081E7F579477DEFC31238C990C076954D16731000B4EB34AD2017FEF9A9C7412A93B2739F1FFE8294DFFFF9DE3D3F2D3F79AC4C50F4786FFA8711C11F1C8440F0ACE081208DA0C69D7A6AF5EA9FBEB02873F2940508440C0F0019C5BFA74D90F1D8F252AF2FE2CA5361AD3F3A758E1CB3B3B2E0F8E10330736E115CABAD0B0280805DF9F8A3AC37A082AD02ABCA5398511AEAEB8F6CDAF0EEBF70C21754F4DCF20F2321AC1002A10B01814051E6174E4B5BF6E043CB45E2A84CACF2C4C1AC180911EAF23226A6632D31D2E7075574210010035C58CC504D20D416EAF44AE6CF83679E5CC184AFABBB17FEBA7D070C0D19CD7FF8CDCBF7E3FD6DB89E414EF8BC77FCE36898F0500804339A1B5A6EA850D8D40F3DFAFD5243724A91D96AD78632821FD4A1A5A52463F3928425B186EDF4BA3DDE88DA41A1427DFEF328C089287C747ED3A7DB304C7A61FFBEBFAF3D7DFCC8015C436F24E1BBD31F474582D090731BA71A6E0881208094933227A7CF9EB7602944C9261B4D26D957ACF08090215451CA309649D569CF4FA594334FFBD90F2ADE40ED108D55E83F611D52BAA088ADE9F0F1936C3FB2B9B9F9F8C7EFBEFDAF9CF01923FD1E78DB004400820F0D5548E6D0F29983C09A317B4E5E66767EA9D96E4F1B181C16F3C67BD85EDDD82F090211832143BB4133A61782DD66639D6A5646061C3D798A76A42D6FFDF6D507B136690957EFDF750022848654C00AB52073F060A838A064D366CD2988358C9B6B77B8528D26B3C27713EB484D1E074573EF810B972AB1793263964964FB0107F6FFFDE7A78E1EDECFE57C73B88AEF1B01200C10A1AC5072466B436B091E08024DA9D66A720BA6CF51C744E7B83C3E030222A7900807C08CC23C6B4B5B8718854F4921939531FEE49FDE79F325FCBA9DCBF9CE9BA1FE5D05204C0A15660E694878F043CD01A41482410046C964F294F11953A263E3D2650AA5412C96E851CD34D13A9DA4A3B1E6BDDAEAAB1D5AAD563277E1E2C5A78F96BD6EB55A9B38EADB6E46F8BE3100BE263C84ACE001517240A804E7E51C1052EE3E0937250905FFCF0FF2B0934B75ED1CF5BF36E77FAB00846185380C18BC782A42D820173042CA01E9E13CCC2A3B18F9FB8B89F3BCF16672FE3F0480085A211684891010DE705908133C9CF13C00341C1C28CE5BA5FE3F048008600843452CA03ECF163AE787AFFEF8E4E53EF340786FF74F93A2FF0BFF590E11CF502115090018F5E74888F00FB0FF37004400040480007C03FF19FE5F1B5B8990A25973870000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (80,1,'Phone_(96)',0x89504E470D0A1A0A0000000D4948445200000060000000460806000000336D91130000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001F014944415478DAED5D077C14E7957FDB8BB4EAA8179050174560C0F4EEB8C43671C1E4E272BE24CE9D2F767C8993CB5D923B27E78A8D7B6C489CB8C5D801833107C671A7888E4495909028EA655557BB5A6DBDF7BE9DD9FD767656AC3060FBEEC6BFCF33DA9D9DF2FEDFFBBFFF7BDF3783C2EBF5C257B52870917E24B35BD0057ABFCA0BBE1436B8DCF7C3199D5F2BC2189F07C0CBB5B040D0F1BF49205D3600248657726B25F7B7228CF13D921604C6081EF4B5F79ECB0280607CDEE02A6C6AC99A0782372019DC2D3417D7DCC277522F52C8780DC8ACBF16805C5200B85E2F1A9D9A069B56D2D442930220F67832B84368C3427308207825C02A251E22E73572C07C25A05C320024BD5E34BC0E9B019B5E5C2F5FB1A270CEBCF98BD3D23266ABD4AA388FC7A3F4BA3D0AB7D7ABC46B53D2DF0E87A3AF7FA0FF786F774F654DF589EDEBDE7EEB04FE764800C1CB1D5F236C2B249EE3E63C8607C4F3557BC9250140627C35677823B6E8254BAF1A7BDB8AEF2E4FCBC89CAFD7EB32DD1E0F78DC1E606B8F9BDBC6B5DBED5B6373389CD065EEF67A3CAED3B5D5353F7BFD4F6B760B4624C31B6EFCBBBB97E6E615DC3F6CB7D5F57475567CBE6DEBE71D1DCD83F89D93A32D9704107718404280B914605C740038E3AB38E34791E1B1C5FCC743BFBD66E1A2C53F572A55D1A2C12301C0E174427B6717FB5B5CFACCE69F3FF9D87FADA77314954DCEB9EEB63B3711C8EC96BC82FDBC5EBBCBE5681F1E1AAAE9EBE9AE38B867E7670D278F77C9C493F3798A34A65C14402E2A00929EAF11A8868C1F93969E9EFCF4B3CF3F989393739DD4E0E703C089C66FEDE80497CB2515399DBFFAD9034B40A3313EF06FBF5B6330464FA2FBF135F0AD21F86F60DB1E87CBE9E81CB6DBEB06FA7BF7D49E38F1E9E1BD5F34729E22074C3805F6A5BCE36203A094189F7A7DEC8DCB96953CF0D307571A8CC61C8F3BD4E0230180FC0F2D6D1DE0743965CE07C3FFFED39F2CBEEBDE7FB93327B7E09E80C105E30B86073F08526002FBE1B95C6EA7C36C1FB2D5F6F5983FDEF9B7F7DFEBECE810E9CB29A12FB93822E2E0FD4A00107ABF483BA2F1E3E62F5890F7F0A38FAFD6EBF5A93E43470E0019BDA9B90DE9C711EEB4431F6ED9F6AF4B97DDF40C9A40E53730FEB7C565C380A3806CBCA40CEC131ADC0E8010D80FBC12C044603C1E2FC6921E9BCD5AD9D9DABC7EDB86B51F731EE294F10E374F579102715100108CAFE48C4FB41357366142D64BABD7AC8E8A8A1E2B06D24801B0A3D19B9A5B9907845B9C76C719853ECAA0D5E953859B66ADCA6587771D8302172A408D1BA90844B6520559788919B8ADF31B1C4240095055C05B5C2EB7C76EB5345B2CFDBBCE36D4BDB9E7D30FAB39EF70CAE4271179C397068033BE8A0BB8B1191919696FBDF3CE8B7171F1A56EB707460380D3E982AA63C7C1A0D78F786EA55A67D3EA8D46DE7043788CA706CD60F57A7C49055E1E81809A16946CDB77B149F8FF4C0582A150412A32A7D1AB108C2E0525181831C063FC18B65A07EA07FA7AFF76ACEAD06B75470FB673390A01E1B9E40048148F4E9099B1B88CD9F8DEFB4F8F49499EE10BA49103E042DA39567D12944AA5FF3CF6213BE8F45AF085189FC05128D5608A4B0836147EB7C9DA07BBEC56346FB0C115BD7DA08A8D05854A25014341E40471B895CEC050430A6E470BE7118F0D72DE227807DD9B0DD1B00E5A2A2D7D3DBFDFF4D69F360B209CD70B2E180089F1B582CE8F55ABD5095BB66E7B242B3B7BA9DB2368F8080170A2CAA9A9AD039720350707AD70A2A616EA1A4EC38A5B968146AD6637AD4420E2925205091230469B73189EEC6D17526F85FFE2C8D8DECE4E70ECDA09FAE93340A5D1B063A85392110C218D160051D0F1F197D1D85290B2700F4846504C1E010049F006897774B49EAD7EFDF7CF5C2124899E4B02808CDCA49E6FC296F0FE96ADBF2CC82FB8D567F0C8017023ED9C44430F0D0DB19B39D57006F61FAA62BFA365C5CD37A2DAD422082A48484AC133AB420CF08CB9154E3BEC3E637A03465592675556823A0D2381C1088EA34741979D0D5EDB1078FAFA401D1B03C6FC42E6356AFC9EEE4EA42D82918E4131630C7ADD18F49244042FC69F6670B485E769395357FBFA9A1708003BC5834B0980687C83A078E2FFBA7EFD3F4F2E9F728FC76FF0C80070BADC70AABE012C562B533C0DF5E7A0C3DCC562C1B0631841B1C3354B17414AF21830C5C4815AAB0B512EFBAC1678D5DC863D5E30BA6044181800E7EE0A302E5A0C8AE161B07EF411A88C4688BE7226583EFE08A2279783C76201EF900DD451781B783D868C4C30A46770310418A0816AA2024A951A18A75407D1D1405F0F7477B69E7C63CD8B3384520901E0B9A80048148F4EE8F9717F7EEDF5DBE7CD9BF74BD1B89102E046CEAFC59EDF3F60013B1AA8DBDC0B5A9D06F43A1DA074C540ACF36F1BD1702AAD212428D27A4B9F190E0EF64327266D3EE30B3444E73B7D1A3C5D5DA04948004371090CEDD90D2A530CE8525361F8D42930E6E5C1007EA64D4884A8BCF13074A601F44963C0909A06CEEE6E88C9CDC398245094E0198BB4D1605470811B5BF3B90618B20E56BFBEE6C5590200AE8B0A00473D6A81F759A2F5ABDFFC66FEDD777FFFF77835EAD100405C5F5B5F0FBD7DFDACD430D06F019D4E2B189C0CAFF7AD0510945A033B3DEFF62009C2FD08681DF6E67AFB1034D86DD0837FFB249AC20F8C17638BB3B519DCDD3DA0C478E0EEED85A4C54BA077E70E30A4A4823E391919DC013DFBF743CADCB960484CF27980C267FC5814080B75A6A0BC81EEAFF1740D0CD9ECC75F5BFDC23C0100E7F9E240C40048785F2B2A9EEB6FB8A170D5D3CFBCA9566B12F8801A0900274FD583B9A787951B6CC8C73EE3EBFD06A75E2F6EBB31083AB069546A50A9D4A189938C84A42FFA30B0D70F59E1F4F0109C455006F19A14427C50090AC8D9D606F6A626306664C050532398C68D037B730B78910E5366CDE164ACCFAB8A347A28D4E88224EA407F2F98DB5BC06AB51D430096E065D82425735945345A00C44C97BA624C7A7A7ACA871F7DFC1ACACE629F912307E05C63339C6B6E663740C996BFD713ED70DBF4B956A3868965A560C300DD8D8075F7F4C100F2B665103B19F6462D02A7D56A19FBCB972302C074A351CFD9EDD86CD084019BF20632AA4A01FEC46DA8E91C98B272A00B69296DD66C9FF1092C211E2C309AD00BD45CC2E685FABA1AA45307F4F6F7F755551E7EBCBBABE5BDCEA6A6360E048F5CDD282200C2F07E7C45C5EEC7B2C78EFD76C0C89101D085AE7FE264AD50B5F74AA886F7001DA8D1F82505059098102F7B6D143BBA90A7BBBABAE9E611984118B4D9416F3080C110A02C08E32D66CAB8D1339A31D8B721300EAA694070C00DE4140AC6FBDF322570F525DFF18E1D39C8F6E9EEE9C57B3BC5EE55A5540E66A7272DDDBA61FD512E4B0EF286F30220C3FB94E9C6BFBB71E3DDB366CEFA45A06A191900A4ED0F1D3ECA8E8817C8B25DB1A7F32050F025DD9F969A0219E969B2D746D5D153A7CFB2DF8ECBC90AFABCB9B50DCE9C6B82B68E2EE8EF1F404050F9984CA052AB421229514ED2359AA9F28AF9443B02D289CD2DF47E0602AEC7EB8D30011BEF554318736AAB8FB173379C6D8496B67676CF932694D0F77FD9BAEEAD072D168B8D2B59F84B152302108EF79F7862E5C23BEEBAEB653C847A340050A03D507998494BEA9D46BDC1DFDB0DFA60EED76A350C88F1B963C35EDFB9A666A83C720C4A8B0BA1202F37E8BB615454981462BC50B1731320F50856734B1BF4A0A7E8F0D889498908B2364451F13466C66BEDC0D68534D98D017DB6291612D59A20004F379C821E94CD569B0DAA8ED5303B444545C1C239B3D8359215318B1F4459BD6FD032F0EBADEFAE3D28E6089100C0EBFD98152BBE5BF8D4AA556FAB351874C5801A210055C78F33AA888F8D851853B4A4E707B675A8F3BBBACD30794259D87A502306C976CC6EA7954F06E9F422F2B09ABA53503EB10C4A8B0A43E7B9E03DB7B4B6C391E32730E13BCB7821152529190D46184BF070CA0BB892C49EBDBB4806C1B1EA3AE8A79C023FBCEEAA456046AA1D763899C8F0350FC4C49AAC7F7A7E55A2E80961019014D9587939362E2EA9B2B26A6D4C4C4C6990A2890080FA3367B1079E8168BCC974A49520E34B3CA0A9A585510B1D2716B354A2A14CCC62535392598FA6C46CF7FE03ECE6972C981B74DD74A34441140BC6242586DC576B5B070C21D7E78DCBF17FD665EE86035547A0FA641D0CA1C13233D221213EC1173FC25447BD1C6DEDD8FE391307F5671AD9FD1715E441162673FDE8696403BA7FBA2EBD5E0B31D1A6FEA71FFD6DBA189C650190A9F3B0F2F2AE8A8A5F161797DC1D2229CF03404767171C42AA20CECFC7A4273ADA28289D500FA01BA11E1C94AC09256A0A7229A9C9909D9E0E59591990181F1C988F55D7405DFD699850520C05E37343EE8B0CBD6BEF7E88435017CE9D1DF41D292C23D2621F1A6DFFA1C35079EC38106DE7E68D83644CCA204CD9BAABD30C55870FC2D1132791F61CEC3EAE5A3C1FBAB1F7BB5C6EFFB51300D999E93068B50DAC7AE4A10CB16A3A12004AAEC816F3DCF3CF2FBAF3CE3BFFE8F1B0990A110360C19E58B1EF002BB4E58ECD810C74F510C5236C1387EEA8D8CB2AA221F52219291B6534405666268CCDC2969DC57A3619391F8DC65753D9FC16EA085D663466127A51E03B3278C5DE036CFDBDE53707FD660015D627DB77C1FECA2A484E4E81BCDCDC90E3EED9BB178E21B5D2B1D136E89173C08BE6732018BEEBF75D7B747414C4C7C5C2899A9A57D7BEB2FA2742AD28140089EA21EA312D58B020FBAFEBD66DD4E974A9B249D50800ECDCB30F6F6E80F556E264BD24D88A9A9F02F4275FEC64F4E23F0E7FDC11CF8B0D33FE943149A8867218BD64218D88C6A29AD2F65DBBE12C06C4E5DFB91EE38F29E89E291337614C52AB54219DD182AA4D8DCAE9645D3D7CFCF90EF4143B141717B3B2082D5BB66E65B184AE616C7636949614FAEE41E47DA198382631117AFAFA2C4F3FF25031A9E7B01E208CEB06514F5D5DDD8BA969694BC366B561003873AE118E9CA8665A7EE1AC998CCFA5E5054AA0C83B3EDFB11B357D7FF0714601805B32964CC61C9793CD5454C1F83CD93CA2B9B515A9A306621190D9574E0FF9BEEAE8713872EC04944F9A0093CA4AD8673DBD7DF0E1A75FB0209F9191059B366F661D8C54DBB7162F44B01D7ECE170120CAD5A072DAFEC5170F7CBC65D33B84AB6C0C90A81E8238E6836DDBEE983F6FFEEF462C2BC8004085B54FB6EF6459EEB4F249CC087C7941A7D5FA7975CF8143D0D6DE116A5099E34ACF4B419DCA18364CA6827E2F4C67113F8B8B8B6152B5287FBCEF5AF01A88F22857208F91535BF4BD4AA962FB4A173AFE9DFF783F9C6D6C62D73277E60C48888B138C1E08BC4A952FD739D7D874EA0FCF3D7535B19E50A67086A820A1F7FBB3DD071F7C70C27F3EF4D046A542691C2D00D47BCE34368209B9EFD6653704291E7E398A81F3F499734113B044EE1CA987D3FE54A26E696E66BDB21DE56DDFC0405800C4E3D131E88EC766672018F92C87A0F8C14B592A7310757677F7C21D2B6E81D059F400EFBEBF059E5BFD0A3B26C5B5A9E51319E5B939DEF762536BD534A1CCFBF6DA37AF3E751C8DE2EBFDE258410000AED643BD3F2A313131E9E4C993EB317B2C93374878007A301DFF1C39978E3D6BFA1570E51553657B11D58388A2A433E0460240DC87F68F8F8986CACA4AC8CB2F82DEFE3E2651E95CB1A628387CF42882D2CB7AB13C8881CEA237E8A1183DA3ACA4882928A22B02218ACADF3271A1A9A5157EF0E39F31AFA3646FC9FCB92CC87AB86B17CFA9502A30489FD8F2CEAB7F7840E8FD56BE4ACA03C06BFE9837DEF8CBAD372EBBE119E2E8D102F0E98E5DD08BBD9282D78F7FF80F4CDE4917AA82EE3F58C54AD2720088061B09005F768D9CEBF282D2377A02532794422306DB4E54250E810A4952148E1F8FD9B70E55481DF3981040B87B494D498189A545D84AA0ACB8885569793575DF2F7ECD864ADD18F8674C998C4A2C033454D676BBFDB6A25C84EE0DD5D5D0F34F3C722566E6341B6F90EFFDFE5A900CF7C7AF5CF9D44DE939E3566666A4B16C922E2212001ACE9E85835547D9C516158C879BBE7DAD2CB732698A498FD4A0E100E0411A8F329392320AF2F50D6798DE16C177A0C107908AB47A03A8144AA6D7A74D2D8792827C58B37A3514954E80E3B5A7FC5C2D3B0F953B3F4956028F145CF9C409982354C21FDF58CB7E37664C22CCC06327C4C785045EBA47CA9C776CDFF1D0479B37BC21281F9B748C800740543EA4D192EEFBC94FAE9D326DE64A2B26281448F331B1998A6A80CA04E100B0A30EFFE093CF581D8696F9B367C2EC19D382E7F2A0DCDC7BA012066D56CE6543395BB69887FB500D293B3D05F6EEDB0F3462AB3518D9F7515146966163B0C3586009524E4425345C48DEA2D2E85979205C5C89340E5152B960EE2C764E0AD47CE0A5A48E7292E696D6C6979F7EE21A124F42EF1F960E538A00F093AA62FFFCDA9B0F2B34DA3BF0800A2B1A8AA90C4494E422B9655E6E0E64A6A5B1E0C403700013162A3988CB4DD75FCB5407EFBE878E1E83DE9EBE910D300200B426773F7CB80A92925351051950D7C7C075572D81D56B5643EEF87C68EDEC669DE04202BBDCFED28C9C06DF274C288142CCEA29B9E2032FCDE0EEEEEDA14EEB5DFFCEDA9B4F1CC62085715DE8FD21F385E46637C46FFCEFADFB2C83B6C4F4B41466789A1ED8D2D6C690F581815E81D92AD567C661765B88B22E3E3E962552E2B1B568A41FDE753BC4C604921ED2CEAD42A9F6820008E2ECC0F718E940E176427B7B3B44C7C52325F9C63E8802CBD1500731D674F50DB01AD34800F803A8B49C2201201E2967FA9472265F837315377498CDC804C3505353FBE95F5E79E9C742EFB70ABDDF231D2396D67CC85A891BDEDFB2B3B5A3338171341A746269319393873129A1F22F15BA6C433606849500C1EDE5283529E2D3422582DBBE7323E369BF72686E45EF3873413D901C9412A176EC04FD8383D069EE91058C021F71BEF8F795D3A6C2BEDD1534320EC6E85816F843A469504C1B1900718ACC9C99D359B923CA18E5E77DFA8E2AA154F7420535FCECE30FCF1BB6DBDB05EEB70BDC1F322C292D3BC410FFAFDBB8F9B3B64E0400F99A5C8AADB191669E8A81E8643DA5E53BE1386A781F00437027EA658AFAC9498970F30DD7A16BC6F94FD2DDDB0B27AA6B235052F20064A0A7C5C5C6424545050CA3910D51D148035E567A207EA741109A4F24AD1BD18D99BB3A416F8CF6CF92E6AF414A3191D014516A49513EF37C0F17781D785D0DD8C1A8ECB1BB62F7531FBCB7EE8F54E5107ABF23DC1C21BEE4CC66B6614B7EE7DD8DAF622F9B40128E0C4F9EC0D60210631213E0BAAB978209B3D08F9176366DDD068BE7CD616A631E6684BC76263570E47835B8F0C2469BCCF927EBA2B13B3B3A4089E93CF572AADB1420FFEAD40AD8B2650BE41797424FBF450030D4ABA4141309ADC9D120D590A64C2E4331321903AF221078714D1E4E1E86197DDB8B4F3E4AD2CF2C70BF7DA4698A720050ED3565E1C225136E59B1E276A7D75BDCDDDDA30E7882CB0F0419A3303F0FAE5EB4107B690AA4A222E017DAE7281A9F800CBAB93065857000C80146895D7D6D0D60B20F51D1265663A2CF697C40AF5143E5E123D066EE058BC572618158020029AE195327615E500CA9C96382022F256DD534A512E5F0A6F5EBEEAA3AB8773797748D384591A7209D4041096CF230C602E16FE3BDF7DD3F3FB7A068614787398964A90800BF26D79B58560C375CF32D0C7C65AC38558D7A9B0C70BED9D0019513FC3D494B52195427A2AAA41430DFDC22178B53B44DCB8CA99361FBF61D8C8F4DF189E8BD8E8BA2847273B2A1B8B000A6A3978B5EC5067F9C6EA83A768CD1F0A953F57B5E5BFDC28F88758592C3F0F92667F14158233E4E444A88AAA0C27694101F747979F989CB6FBF6319E69DA52DED1DDA600002F1823CE3961BAF8729E51341471962A43D9CFB3E263A1A012D8103070F82466F4485D3E1078032EC21FB7070D0E402675767071890F7693FFFB923F0AA70001851544C2A2B8505736662566F0C4AE248D9D120BCD56A73BEF0D4E34B2C03FDCDD282DB8813B364BCC028CC783309EB28E133F1F152DA47BBECE65BA7E417952C6D6EEF4A1DB00C2802B1C2475173512994621A4F757A1A0BA020EACB05C203C073B642089AF50D0D983C6951FAC5B3803B7FD6743888D968A7B91BEC0EB7CF0346EAE16EF7280108EE24A4AA686C9A545871617E50B9A1BDA3938DF4917D77EDDCF9D887EF6F784B909D16B9A42BECCC38C9BC1F2DF71CAFF868A991DBE681D0C525269A6EBA75C57598B4979F6D6A36D0481081317FF695CC65999BD20DA257E8F47A484F496163A3EE111ECA0BA2184E5A9AD02B4ED7D73190A9D440C7A3BE35262981D56CDA3BBA90F66A830B70E10088300E6566A663C01F07D72E5DEC2F43D33E44399FEDA860D975535353CDEA679FBA8B463DB99243440F69F000F0AF12D0704FB4EB640011D77AA1B127DE67CC995B54503CE1EA732DEDD9532795298A0AF2FD0090217D03E66ED66328C94BC0A489CE3A320504F7583AD620E6024A545A34E8429F2F9E3F07766CFF025A5ADB20393D83C65D61B44FE5486990B669CCA204A5F7354B1631792DF23EEDB37DF71EA6F9876C76E74BCFAEBABEA7BBB3515272F09CAFF7074DCC92BC5640C979849A7BCA5DC701C1832136464F3A9DDEB8F2B9E71FD06A74C92E4127FB0160DE20AC913EA251D36765A681017BF4689590B83FCD5DA0606FC7804BCF1050016DB443A7C100785827292E2E8089E85954D3E2032F55422B8FFA2662EDDAB1E3C96DEF6F785B08BC03DCA4DC0B7B468CF3063E404BDFF3C0BF72C0284753854545C9FF74DFFDCB0D51A602EBA04D251ADC2578819B03863EA3C48AA69F90C4A3B9A0AE0BE46C794F0A6C9396D7E0F1297086AFBA7AF03A92602C2A9FDB6FBB990D278A81D78C59F8E60F3F62FBB5B4B656BFB4EA891F089ABFEF7C49D7A86647CBBC5E46EA155A895718B927E2A38466D06834FA7BEF7F60515E41C16CAB75C8E4CB1FC27B0505550ABED99959908660D080877B1400842F6FBB61EEAC2BE174DD4930777743766E3E2BABC88E27A3C1696E0F510FD593C42A27F13D8D84D120BEDD3EEC7CF985A7BF636E6F3F2709BC2E18C5F3C291CE0D9516EE9492176468391A121594490441F014CD9C79F3C75E73FD8DDFC6CE9E63B50D295C2E9FC103DE1008D82275D1B35CE3C78D85E494249661338373C6950EE2872F6FBB617CEE38D8BB6B07A46564811B8FDB3F60090195EC41FB15E6E7C28A9B9605BE73D340D34EF60021EDB37BD7AE273FD8F4EE3A817AFA23959D5F767ABA54BAF2EFFED19E47C68ACA496332C518FEFE9E7BAE4E4C4AB9A2B77F402FD2905B060017172FA80C9D9B93C36A403440E49604CD48F20B9A8D3D4C4FDD7BBDB25E958072373323157E70C7F7D8408BA87CEAEA1BE0BDAD1FB2BFDBDBDAAB5F78EAB11F09AAA74F08BCFE67012E090011D093F4953446090021B90401B7F4EA6B4B274F9B7E95D5664F45B75604807085046C3F7551EFC6ED64048266C851E18FE246A419763829AA54A9213F6F6CC840D2A0D50AAFBCB19649CF610752CFD34FDEDCD5D5D5C865BCF6D104DE8BFD9CB01408B524501B2481DA28554DF41B534C5CD4F537DDBC343A26BEDC62B51969761CEF057CC0764B6286DBE53326554DC76567B17A3D3D4DE91A518A06733F8980ECEC0CC84C4F83EFDFFEDDA082E2DB1B36B1E14FB2D5DE8ADDABB6BCB76E3D177845EA715FC80B3B2EE6AB0A40F28EA070F2D5388247D0FEEA9CDCBCD499F3162C526B0D85FD48514E7F0EE10A054500802929FE5EF09292131390AEC64094298ACDC0A3804E57EA767B4300A08123F2A83B6EBB85CDAA13977D87AAE0D3ED3BD976477B47F5F34F3E7AAF403D41C38C17D2FB2FE5EB6AA4F1412D49EA8C3259B61408F6F6ABC2D2B2EC4953A62D72799579DD3DBD1A3168F3744431439C0218C94235A258530C9862A221CA606453E5F372C7B2D91B34ADE58A2993D8885E475717BCB6769D4F01A17C7BF99995CB3B3B59C2C5979A471D782FE71BB31461E4ABB4DC21CDAC83E284D054E553A78FCF195F30CF36ECCC36F7F4EAF824EFCB2C6598ED4E993C111A9B5A313F6865136B63D023A6964FF28F82EDDB5DB16AF386751BB9C03B6ACD7FD900184135A938AF0857EA906E07D193D094C9E999A9E3F28BE7825A9367B15A639086145F16809ADA536C7635CD68A009B6932696604CC986CECEAE9AE79E7898C6773BBF8CE6BFAC0044A89AA46F51E4C1900342270182BD0A021775565E41617A66CE64855A9D63A184CFE1508C06009A805B535BE7EEE834ABC4B9A6947F94951439573FFBCCF7DADB5BCE70D463FBB2D4735901384F52A70A132BE43C432E4E68B8DF0BEFDD50A88B269617C7252496B84195611F1E8E1B7638352301909E9ADCF4C2938FADC92D2CCE2C9E587EFDC0E0609A4EAB571AD58A67376FF8EB06817A82C678BF6CEFBFEC004498D4A9B85EAE9380A19378C379C110DF56834EA2898E8B4D4C4ECDC88E8E89CBD0E87463F0D3580CDE51E9283D0FECF86465476B6B3F04DE7E35342EBF28F6CCA9935512EAB960CDFFB5016014A50EDE2B349CC1A500C881A1961412F9D7258B6FD7158DED84E0578EB984AA669F906C49CB0DEE8BF50A4BC5D7E575CA237885140C1E10AD247EE8B8BFC301213E870D82B1C537F23A21F84DBD76C1E87D9CEA19BE58D4F3B5036094604801917B1DB24612B0D512304030A6433036FF4A018FF0995548B6066194AF22FB460320034438304602443D42136948A41F11001704DE092A7E6EE78CEFBED86FCF557C535EB53F0218E100E1B99F07898F07FC8BC1F938E085D0B7B57B2E26F57CE300380F18D2201EEEDF28E01B48826ED01B4DB8ED115F37F37F1280510222F70F47C8BD225FEE1F8538EFBFD8F1FF008C0C861C2800A1FF4884ECBF2570290DFFBF1680510273D90C1D6EF91F9C9ED1534DA88CCC0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (81,1,'Printer_(128)',0x89504E470D0A1A0A0000000D4948445200000080000000770806000000CBA9486A0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000014DE4944415478DAED5D5B8F1C45968EBC547557F5B5FAEAF6A5DDED6E431BECB13D3D03B3566364C9831619AD760701A3F90DFBB06F8B9058CC138FF3B2120FFBB2122B0DA6775720A1456064EC65D8B519F3C018ECC15C4CDB60D376DFDDD575CBCB9C9315518E8ACECCCAACCAAC4B771E2954DD5599195171BEF8CE391127A224D33449D8F2D24B2FCD9E3C79728644E259666767FFEDF5D75FFF97B0EB51EBF165262727A59999991D915ABDCB850B17EA528F1C75F5F69608001100228900104904804822004412012092080091440088240240241100228900104904804822004412012092080091440088240240245B4C94D3A74F87F6F0FFFDE31F3BE76EDEFC9D699ABF4EA5523B4DC320F1783CEA750729140AE4FEFDFB64697919FFD6179797FBF68E8E5E0CB34E29CCA45000C018BCDC60FF0F0F0E92D1D15122CB11F130E1FB7F6565C52A7717164A6F1D9F99498559BF5A57846B1AC9E572A4BDBDBDE19DDD8C827D93CBE7CB9A1C769DF50500505C369B8DCC80836432190B04F5945001A0EBFA2600E097ECEAEA6A599A0E53D2E934C9030370F5995B0B00F0E5D0C91918188886BB13006090C88AB23519204FBDDC66B7C58D620DEC1B224924DED6B6451900BE5C164C401800D80AA04200B4271225069024A9B501A081D75F8A3741F9A8A45588710DC388F8DEC64146FF488DC5882A0C9C2DC30028ABABAB1630943ADAB956600DB4FF1821259249BEDFCC2D0700F472D7D6D6484F4F4F34EC39D9D8D8B042401C1CFA566600A47FB475DDDDDDDBCAC1AB24EBEBEB16030800D87A0C80B20C7EC0CE9D3BB78D73E74590151100D8673AF39D5ADD09D4392710C31B264B4B4BA1388222589CFE97685B9CC055A96DEC7389FB4E7C1D6EA0B5FB0CDFC33500348F1A00000B7DB27CE6CC99A1175E78E16E583AAA7A31E8DD77DF45F0FC0ECADF40790CCA3E7C5E2902D075159EDCB1E9CB42E799B4F33629025E0D4149FC3526AFC4F21EDCC495D67DDCFBE2F7949CF8D5E6599E3EA7CF3703BC877DD6D3D5B5661312A6A1FC09CAFF41F98F679E79E676DD0000CA1F8197B7A0381EFB8268D6ED9EEDD219D576BC19F03DA41A7004DC3EBE0D3DE02FC5213C74915B509E0210FC25740080F2C7E0E5FFA1B81EF9B20E5EED262AADF085831E41B58CBA7A2BD9150010317524129554836BC83F0710DC0ADB07F8D74ACA67131B650068A251675B5748CA77ABCB6B3B700D855406002EB0FC33947F0C8D0160F4FF065EFECBCBB5F7161688CE00E0F30B3744C9358030B0BA1CDEEFEAEC24C343435EBA3D8BBE18B0C09DB018E09FBC5E883E80C13977412BDF37A06A0461D84A76FB2CEB3D4700336D7E0BE5F7810300467F1FBC1CF30300B3C651578FCEAD55F94183D0EE339F49224F87020090BF85E279021F977E5B69D435B4AE0A4EB0E48FA58FC3604D8219D8081A00BFF2D38A0207005F2321C451E7ABE36B0446907599FE26CD3099E097502E040D80FD5E2FC4858D0297DC68D669D4F9FA2C00107A7E668D20E497D53DCAE1300030E9F5C24C365B648010465DD09DDBD011EE118428B846E06309FD70A03E009DF61DF3FA505CDB660068D551177A5D766B022EF721ABFA48A60D160020E37ED8228D2600001094171CD6A80B9D69DC94ECF179ECB3FBEBEB7E00F0280C5A051C413D280078A67FCB0780C66E0280CF2F1C9442DC3A3D741AF7D80E2F75AD63C2E8C8889FF98087A15C0D0A00FBFD00209DC99403A045475D28755509C2F574BA1A47B03100C88209C8332730E45157EDE8AFB6AE9A95ECA3EDFCE756CAB87F00FCA13126808F020218753577AE0F100602A8A0DB01EF57C900A4210C9061B9FF3E465DA84A0EE8B3A0EFF1731FE60C360400E04D6226C25E3F3380B80E50F5176EA25117A8926B042186813E6504D76F201258AA950186FD8480CBC5C30D1A3AEADC3ABD216C12000833FE4D00CA2E283503C0D74E4E4CF82C94EF710F65D47952721D1459B12E9F2074BA0F6702F17C8598EA6B051F07EF95BA02A0C4008DA64F9FA32E3425FB6CBBDB7D1809F4A5527E01509B0F6018C6203BD2C54BF6901D006A527203475D18EDABA51D0B0B0B24D5DB5B51072C931A74B7A32600C083A477DE7967C04FDAD8EADA9AA785A086757CBDEA72DB1B50655D8B8B8B64FF64E5889CAB7B087568BA344675533E29E622FCBDAF3900F456597D98FB5F41F932BDCE0585EE5F965DE6A1132B3EBF8A14F94A00B71B997EC0C2CBFC4F3FF96A1BD4F777F0F2A21B085417E55B7F2693C93DAA0FC70373D83B92491249F09248247C1DAF038EE3101D1BA61308DC342B510074B63D38B1A2A2ECDEB3C7AFA71A8957851A862F00689A96A4246B10871578D585FAA5A9A929B9B3B3B3CB0F001EDABFBF29F6FE6F45C12800F4E1070031A64B66824416701BAAF2A953A712F178BCD3EBC18E68FF139537304452A558C7C7F8386433168B291F7DF4D1CF4E9C38F1672716505DE85F06DBDF8E5B9625C95B5EEAF7DF7F4FAE5CB912692A24C19D56478F1CF1754F56D3C6E0E50BAA7C496401D581FE11660A507FFB2AD08EA1EB56E5FC2E5E3B8372FBF66D72F1D2A5075E3956469CD39AD9B941BC878CFF4BBC778EFFD3E788DE3EDB014C84EB4990F793F29DC44EF738D551B14EEEFB9BDCB3F88886FF7FFA17BFB03503FC6E6A4B89C014C81666A18013790A65004F510003803C3030B02B4F8F2F652030F8FDEF420E1F5E872B8135890BDB48CD32141BD8465C16665BEE24AE3DA2E2D10F43673C5728242900743B33E0068058772A35898715E03C34A6265B00604C60C30285B0CEB7697150900AA1961F413DF0136D1237DF82CA4720A0F219931A9AD68BBAE401C09B01D52EF4A3454DB4B74F6A501956CACEAE710400FC8F6C51CF038EAA5148D300A64A60A33E0AE8080A260AFF971108F019D3112A1AF4D143019077350152B9A78737C4804AF61428E2B0629D33034E0CA0D90020A2EEE0DA887D2C09918048FF0C0008083017781A571B0580269A013B0650A80988C34386340E00A85CF405D8712D2208AC53411CCE058A40118C880B6D16CDA3B28B611B511000F0CA1800F4850088737A95DC7C0066FF55EB26D3ECB7E81FB37CA829D86402B87905CC03A8D504485233767BF3B45113926D1450F6BEB131D2D5DD4DAE5DBD6A0D42853100800100D3491920C601A0140EAA36F69F01A00D3EEFB11880B10002406000119D61F800AD008A7A3109EA809FCC4B269364EAC001AB8E3B77EE58859DCB60B181AE2739003016D0CB1840B0FF0ABDB81D467BA7E574D082F4AEBB31404800D80AD41D14B0190BB33EC0B0F0EEDDBBD6DCC0D2E262F1681E1A0114201A007DE0D46C823303123FB5A13AD87F04401C2A4A3013A00926C08E01EA7DCCE976342FCC112FCD0B409F5F387FDE3205380F634DFE50FBAFE0E61CD02129EE148A537D97F901763E804A2F6E83CADA5808C84A6922C8EE30237A4D64CFC3633B5D382B003FC9609FD330D0E000A001030058DA1C0060B1809B0FD00E7422B3932BD98490410F7AB44B7E3004746E556924680CBB301B9AA32A060C3EA5B85804BAD11000E82F140190E000A0D84501BCF263D469C0D12FB3B36BAD573A13E8B48D5BDF26BF03D0A8F38BA5625C5FF65E4F32437E3D7D95B4C57472E92FFBC88D9F8AA789211070D00200621C03B048A0E4088A6B8B0A058515054048219714CFE60028089C4A24E10240ECEFBDC30BA4A32D475459230FEDBA63BD87FAD22963C3E055D980E618A0942320731180CC87809401A4D2EC1F9D01644EA0F56A532209997D84FEBE35DF050A2FAA706EBEB7A42B3668B52200E2360C606B02580818A70C2019FCEC1FB7246C4782AD72B0FBAE5DBB483291B07EBFB0B4C005EF5FBF7EBDE91940ECE385B54E72E6A323A43DAE919574C23A619E818332814207B4E80348621420D30F1586166400764237F3FE5DB36E5BE86CFF1F7EFCD14A6065E96ECD1CBE96399F361B6B327995640AB1A25B4FF5C4808D7E1C37FAF9C92089F7017833C07C8038C4FE123FF5DBACCE916F4F1ABE13E62DE05136ACCDD93AFF6267E0D18770343E636C0A009538AC07F00090391380452D14C3880723BFC22C5CCCFD48F3A61136DAF1302B2CD8B198FAD6ECD2D7D757EC7B8722D90C48F8AEFCA056391010310AE041605D2C261E94961DC9831F7CE00B1E6BEEF5A7601A2548F95852A95431C5BAB8665ECDF6EBBA0AEEB5181F1B2B4BD8104B8925B8010AA1A0C49976D5CE0914A380D285D02986A228B235C7EFC1CBC78EDC0D0E163A57376FDE6CCAB010CFDDBD75ABFC48FDC526563C2EE88C8C8C58452AAEEE7932133ACD0BD848A7354EB7B2A0EF4D53C1FC854A7A7D3D0FCA2C33056EB69E4D030F0D0E5ABB58D1AE6287DF9C9BB3A68923F166E7878787C9E89E3D965942B692B8E4D34A00201C3BD35F68CBD94CF6D9AE05C8E2055F7EF9E59F7F76E4C8AF143ABF5CC9C9E33D69DC4EF6CB4387C8C18307CBA790059BD3CC336F8D982164099D28172F5E243F42B4C24B3E9FAFA4FD9289C663652E5FBEFC27B72E576D9CC15216F3A79F7EFA19C4CCD3BDA954CCCBA64B5D18E5FDFDFDC4CFAEA25652543DEAC75F59E701607A61000A0034D92B4B4B99EBD7AF7F43B8F57F270088A125161D2A2CBCFFFEFBFF7DE2C489E77A7A7B65BB38948F0AC4858AA1A121D2DEDEDED2CA6A643BD1148852D107A0A67809947FF6ECD933780B29E602B2AC60570098F4229DDE54803069F1830F3EF8C3CCCCCC3F2492C924FEB6ADD3F624B11306C117509B70A3682341E5A7EE11E164D04A0C409D3E8C68D6CE9F3FFF9F703D6ED2C8732030884352A821148DDE880E840276C73877EEDCBF83FE53870E1D7AA2A3A36307D829157FE61C15ACC22BFBC97399B20186847E3632B632558725C89ED887EC88381E00F8772947A338E76F80D3B870E5CA95736B6B6B0B548F7871560081EBC6105EF978230B8E351A166E5CBA74E94D7C03A2836E68602FD8A91DDDDDDDC30084244D4454C054C87D7D7D49B0FFDDDB415161B615FA70EDDAB56B196A920D2CF4397A269359989F9F9F03B5ACC0DF4B1C8BF3BA441D3226E04D81210280517F815E8C37B5D107E6050711BDD17528B7016D5769E861492C168B43A33B4F9D3A750C00F2F3C8A6D756FFD8D8D8DCECECECC7104EAF41C901CDEB2E47BE9836FACCD092A37A34440630B99B754EF919FAB92E4E1F3AF91F38FA41DAD03C4C4E4E76D52B0268159B5E8D1C3870A017FA330B6503FA770300E06542C514D83C4DF559A045174D80C9D14281A2254D95AE910749046E930F72318C9513C002B17DFBF6758B11C076B7E9D5B41306520ACC2D8EFC0D645DE8DF82AEEB26715F7D679FE9D494A7A929C88B8EA02ADCA45100205AE26CF6D40B0048F13C0115746F4283137BF6EC49D5C20091A92839829D6006941B376E6C80054883F2730002BDC2343B0F803C557E96F3034C3B06602CC04C00DB52BC298BC4890440FFA0F336E9E8D1A33BC1318C47363D98FA4F9E3C39F4C61B6F7C058E1EFA5D19605BC30303989CFF96A3858F044C11003A6723721C00D44A0000FB24618191AF251289D8CCCC4C7F2D134091A92897E9E9E9A1B7DE7A2B0761389A016402319C335D40A0517DB24840A7C5740A0359ECC828441623804DDC2FCB08001CFE0634B2E3E0C18343AD921BD00AF2F0C30FEF84C155804185CE609AF303880716D03916286C8A0230A4A0AB4D260700998BFF2B460018FE81F2D59E9E1E0918203F3A3A3A1CA92D38191919D9DDD1D18176BFD0D5D595CD175784DC1C4131B2D3C9E6EDE1B64E201BF105E17F57A1F48FA2024AB5C1C1C11D91DA8213F0A7FAC7C7C713DF7EFBAD512814F2E00BA02368C0AB491CCEFEB1990FD045FA2782724DC117E0670473DC44C2A68294D4DBDB9B0774EAC00426FC3D12A92D50919E7AEAA971E85F03C0A081B39D8792E53C7B2FA5C029DFF680083E12900453E0DA38B0F7722A9592A071E6D4D45457BDA680B79340BF4E8079C5E35EF5A1A1216D7E7EBE70FFFE7D2FDEAA21CCF36C0600F50324EE42C2CD0012370710EC93D4D7D76780FD8F8303283DFEF8E3E391BA42F103F6C14093707108069806E656F740FFA6008292F29D0E89E26F90884B220113503E3A7EEAC0C0808919A86320DB4D391F7FFC3179FBEDB709386A646D6D8D800964E95856922C66F8608EE48E1D3BAC153EBC067F590585BD8702A39A1C3D7A943CFFFCF39BEA00861D07DAC7A97619F304E0D95E00203A84749B87CD4191020BB01B2A666D416324543E146979795981D7BDDB0D00981F814BB6C78E1DB37617411464A5C8AFAEAE5A295CB81309FFC74C644C8F43A0ECDDBBD752385EFBCD37DF9023478E90959515EBB04D3B8191BF13FA3A098A97718615CDEDD75F7FED754AD869AEA0DCC673C8301DECC6A6D2DFDF6F02F59BE9745AC62367A061A3DB0D002CE9E5ECD9B3E4D9679F259F7DF69995D0095E3B2EE6940E6D403640E561D634E6F8233050F9F8431008143CDEE5DEBD7B4EA1B6FCC4134F4C2105A0A9053099AFBDF69A98C721964DB42FAE24CA36B36076623895471F7DD4A408C57B15F054776D3700B0492FA4F34F3EF9841C3F7EDC52262A19F71B601A3A7E86231C158CB992E7CE9D23870F1FB646FCD34F3F6DBDBF7BF76ECB34386D539B9898980220C4D10CA08979F1C5174D3F5291017CC726740609CC3E36280608EF027B36B0DD00801B4C50797860D30F3FFC40AE5DBB56DA9FF7F9E79F5B0A9D9B9B2357AF5EB5DEFBEAABAF2C70BCF7DE7B56DAD7175F7C6131009A066409A79F8905F3FA10E20D7C0C19AE0BE4948A9A12F6F04BCECECE4A972F5F56E0EFD8638F3D36495AE78CA6C064FFFEFDE4E5975F0EBD1E50FC048009776C29E07348AFBEFAAAF4CA2BAFD4B47021D7DAA80F3FFC10B385E55C2E1783513011056CE10998D9512849507E6C7C7C5C0EE299353F647A7A1AE94B01474705DB3616A929D468437DF2C9271FC28537082595471E79A466B6AD39671B9C1D09ECBE94C964E437DF7CF37F800DAE43F8D30B5E301E342947C7C6D41E62429481CBEC1BE0372C8293F81302013F029FA2F10040C1F97F0081FEDD77DFCD8303A34048D803ACD046B72647529B9830E20DE8DF0C389B8B503652FE7E3D345C0080176B82E275B04D5960815518F12AB0C0069E4DC34E198BA4A639069CA0C3019607165883D7F5783C6EE5F68109301B0E0040A3010DC385A334FC7D0FD09AC1CC60F45469A420456AAC29D43681F2CD582CA683E2B30080FB102E6EC0C0D3C004D40C00A996F4279C07387DFAB4048D51C0298903F5E3C1523160021CFD12862A910A6B13184C968240F1C6C0C08006E6B600250BFD5D8010B06C6DBF11F30056E5108F6243728B8B8B1A8627D0384BF138E31549A062E0DE908989091D473FFFA35B0D6100FE391408EC5C01E9B9E79E8BD41590CCCECE1236E58E82933F763F02598DFC15CCA645E8DF747C7C0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (82,1,'Printer_(24)',0x89504E470D0A1A0A0000000D4948445200000018000000160806000000DA7D5C880000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000002FC4944415448C7B555CD4B1B51109FDD6C82F930BAA901A32018BDD4062F422F157A6BA4C41EE241BCD8BFA0F468AD42F12FB0A77AAF9422F6921A13720BA56091D24BF110856E4A4CCD87A6E6E3106392EDCCEBEEB249DDD458FAE0B1F366DFFBFDDECCFC6657906519F4637D7D3D383737F7166E30363737832B2B2BBB7A9FD0BEC96AB5CA838383969B10D0D9769F00FF79FC4160B7DBC566B3093CCF7705D46834A0AFAF6FE0AF04036E77E0F4F4144451EC8A80CE788686FC68BEEE48705E2C422E97A37C7645F0E3E4048AA592718A767676EE731CF714CD8789A323909249005418558D558E6C4571CC47B632697D717101783E180E874324C6402010D708D6D6D6F8A9A9A937680ED3ED356015547976F2D19AE3F99E5B2ED72374DDC139AE114C4E4E527186C94EA7D3AD006D20863E5C6304E09B982098B1582CE6F2FBFD0546808A61D5AF56AB903E3E6E016901BD868FD4643299E8E945EF6F827ABD7E1B27A45229384C24B4BCB774394A579F7F5959AB3E50FCC778416C54B2EFA2EB3323181B1F7F6EB7D9A8076079799985AA4E3AA4D994062515EDEFD4B5D96C86D1D15128572A4F70EB2B015F70BBD1E840E1EC0CBE4912A00A1848C7418006AF02B3B390C39E7089A28BB02902532E9BEDCD64B390412DFF2C1474385C47125022D28F6C2603627F3F5CD66A3D844D041C4AD35AC4062B63A3909E8D86D3E964692897CB867B2A950A54CB09C4F2D0079345C0E7F3F9268F95B73B1C303232C236E90BAC4662C33AE1CD589EAF1A168B85EDC99DDBA05ECBCB6A04F06E7B7BF7DEF4741095647ABCB8085EAFD7F086EDFF0FBD7F7F7F1FBE1E1C40A9546A7CDADB8BA98DD6482693EF7146E9B2CF96965EBADDEEDE4E353622A9D56ADF5757575F28CB3A6133029C1F29553E9FCF865D6DEFF653AD0E87C3419FE00F6ABB3002BC8D8C394ED3868D8D8D077C17E89148040AA83A411058540B0B0BCEADAD2DF3FCFCBCA444DA1414E3929EF1787C4892A4F475095010BCC7E3D1948A671BA8341FE21D5EF93F0885426194E9977FF945E2D720353333A3AD7F017CFCB12A36F54CBD0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (83,1,'Printer_(48)',0x89504E470D0A1A0A0000000D49484452000000300000002D0806000000E84AE8C20000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000068C4944415468DEED584D6F1347189E5D7BD7766CC726B613077052488A22418362854A9550D30B91282267220EBD50F5467F41EF88737F40B94442088450D520404AC221AA425BE8A505844268704C499CD8499CF8DB7DDECD6E9875D6F67AF3615562A4F1AE6767769FE7FD9E11CAE532ABD7EEDEBD7B3D1A8D7ECF0EB04D4F4FFF70E9D2A5EBF5E6D9CDBCCCEFF797C3E1B07C9004BC5E6FC9CC3C91FDCFDB47021F097C2450BF094C14DB0B85C28181CAE5724C96E5E366E60AF5F2C0E4E4A453B4DB37BB221116EEE8680888991C63D4DEC6622CFEEE5DE1CBB367A57A734DE5817C3ECFD65657593010D81309D723964C2659B15834F52E530432990C5BC14B23076446CBCBCBAC64527B7509CCCDCD316F6B2B2B420B07E5078BEFDFB3168F6777041E3D7AE45B5F5F3FE4F1FB233968606363832D2E2D319BDDCEDBC256E7CD03BD54FA50058882A0339DF24E7BD299541E425A5B5BA3EF08B76FDFFEC266B3C51D0E47FAFCF9F38BA69CF8C183076E448131DC5EA4E76900174471EB4395365C67CCE839FFBD1D63156B2549627E9F4F1B9982602E8E8C8CACD5D400C07F87CB88F69F08942151CBE02DCCD3EE5D0E074F604814C56F70FDB12A815BB76ED95C2E97AE6C4E439D053209931F354D52937E0D4279978B1DD647AFDA045A5A5ABA31A98B1F4B217C96380DD404DFC0D80EF006F3B248683A7B1784E8F8F8B803FE90352400A01181733A6AAB448073564BE02DAECD483BF298889CF409AE2F0C09C0C622BC9391E44903D524B6A76306CF2B85A98E1DAF4A00E02395E64319D8AC09E822CB2E08F1EFA18C8C50CA13E8A9158574041288FBAB70E25A1FB03466F4BCCABC04B2727B2854A9819D04F040B877EF9E8E00252ED240A31FDD1392EA95B2722818E4ADE438612DAB13780D086EB77B5814F51576E4E851D6CC46E50B36F83C810B8455E36BD7A48FD024757777CB3C81CF4E9D625F0D0D3595C0CACA0A032E9DD55CBB76CD07C849D282A601540B62CBDC9B370A632DF34E4C4EB2172F5F322D166CD356EF5995FF4AF4E0CC42A8A887A83EE2038350E3FFA99327956252D802A938340851AE4AD16C8D80D8DBDBDB4D0EBBB9B9C94AF07C8AFD3954A09B2825EA3615A06045C41C39A3F545E0205F24D204DEE174B2778B8B47F0E82F8AF41A011BECBF8FAAC08D745A095D4480EE692F60B9ED01B13430A45229E6831632D9AC52ADAEA752146C2468AA6017B6F44B29EF04CA67B60E12448054B88EC5A49146A5B697C4C80248B01EB79B65704FFB6514988755CC9B9A061C1470A8E6A7AED43E94CA01DEAA068CB2A895B5F47D22118FBD84F465E6F67809179990137DCDAE0AC201A9776631991896D54D46B154B20C82D66BE18F34DBC8065F57CEC01A684F3ED0F30F9BFB37C8D21989300655028246C0592816DB682249BF64B0F9B022455996592B481001CB822012C0F1EBDF11C5911D8E3C11F2A956B39DC864A8494239ADB34DDA4C2821CD02116C031573DC8D209C88386D6D6DBA6D2909389BCDD249B9CC6B40BC7FFFFECCD7172E0CF266D30ACFFFFCCC1916E9EA52FC81970A0F4AA8A27E669003AA11E2474435DE2F2C2C28F74A3DA67E87DE373131F127530FE5B64B89D9D9D9B70BB1D822E26C48CBC605985417C00F0F0F5705D8883D37D228FA8D8D8D31F24BED8C88A49FCB6613F3F3F30BF4972740E725AB77EEDCF9C9EFF777F4F7F70F40754741C4D5D9D929070201713FC1565B8FDC9487FF14B033CBA1A85C78F6ECD9CCD2D212815F46CF69046815D9479CEE93C9E4FCE3C78F7F53EDD8353A3AFA6D3018ECDD4BB066D7228AFD72F3E6CD09D87C5E7301B5D3110B39585923407F6294F878934614F1421BDEC02E8E14776372434343DE1B376ECC81C006E7264420A50ABD5CA981A446409224211C0E078E1D3B76489224D68C363030D00E2DC46046AB1C01BA667802D4F22AF8B4B618BE60BF72E5CA09809759935A4747C711986F0A04122827785512DE9C524ED30F42535165B47D5C71FAF469E7E0E0E0A7FB05EEF9F3E7ECE9D3A74A58A4A8475AA684E772B9980FF9E7DCB973E403872E5FBE1C181F1F9F9F9A9AAA3CAE56A290C8A9A5A832533AC26729140AED1B814422C1E2F1387BFDFA352526E5489D8AB657AF5EB1999999ED7910E299BEBE3E51C5A7F502E4FE218CAAFB4B9DB75DBD7A554022EBD92F02D16894F5F418BF9EDF15228CF743138206B8B2553D9D863444C4DD3F9E3C7992C12EAD295E0CB3CA03F82C3464AB36A72A01384FFEE1C3873F6333310D02423308D8EDF6627B7BFB7B84F142C3043C1E0F39F5EF50A70D12680A0124D232CCB8A0864DC3F61F69A6742E6DDB81FD0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (84,1,'Printer_(64)',0x89504E470D0A1A0A0000000D49484452000000400000003C0806000000D689BC640000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000009324944415468DEED5A5B681BD9193E238D2C59967C4B225FEAC4975C49D27583210442C1BB8440A05997F42114025DB6D0877DDD7DE94B9CF7E6A979EB4BF7C1B01B42C336909A4258BBB9B20FEE4368C18BD9902C64E3D8EB9B2CDBBACEECF78DCFA847A3912DC9A3D8A63E30CC682E67CEFFFDDF7F1DE9A6698A4AC6AD5BB73EBA78F1E29FC50E1CB76FDFFEEDF5EBD7EF57F28C5EE94B5A5B5BCDDEDEDEE84E0420128998953EA38BFFF3B107C01E007B00EC01B007C01E007B0094379E3D7B56DFD6DEFEBB37D3D3A2A3BD7DC70891C96404D7F4F3F7DEFB143FFF51330052A954B02E187C7F6E6E4EB434378B4020B02300585D5D150B0B0B22180AFDB2E62690CD66C5DADA9A58595911D1E8CEC888B99655ACA9D2BAA6620016B185D26991CBE5443C1E170D0D0DAEF755B390AD8CA5A525B10616F8FCFE1A3BC1C54591D675A1699A989F9F17B158ACEA457B09124D722D9914015D17353701F881FC4BC984ED1C3688D65A705CCD7A2A33013020100C5AC749506EBB01B0C7ECECAC68803F320CC35B00EEDFBFFF31501EC2E1216C1A5E7298F4E74863FFE4E9D3754DF09CD406B5A2D29B779BCAB1A15EE7F1FFD4891B34D7F3A672CD849005CF60D4C317F970DDC866035F7CF9653C1A89BCB0AD03DB3F2726266E0E0F0F1B150100E1FF84177FA69E4B82FE3E292C5F4DCFEBBAE012B65E60F78EFBCA9DA3D47DCC05789FEEF7470140BFF2F8070303032DD8FFB16C00207C0B26FBC4799EE14FAB72815E08B9D97C1C7EF748F087D1D1D11B972E5D4A9505006CE9F7A07AD82DE1D0AA15B24241CA99C3EDBE1200B442A60FB1BF53160010FE376E1E97B176AB0BF442C88D40B47D94CBFA7F5D3600D2E9156A1FF45F950094ABF1FCE2AB1064C3395CE653AF313A399900607E51960F181F1FE7B9A24A2791488855A49C1BBDB82C8D6FB2F86AE7508F991A3736363A19700C7E20E8F403BA8BA09DD8F99CE799FA5A0CD80E21D54852C67C4B58AB1300CA0A669CC2FEDF1B02006771D0E7F3152741C8B70B002857C80A05F1620EAEF56057971BE3FB370500C2BB3EB98872B324001582516BA0581A9718A736F501B095836E9E946970590094487CAA16B28CF98A0040A1566274941305BADC2AB5050940D5426EB4788FE760A5EA2603147B604300708376EFDEBD4B6EE56A0A613097CD1652BDC4D0E4E6787B7EC1450CB3F37CE579B7F7B84578A7D95929BB9DA217B3FB0C653415E1745578BA00D4F887DCB2A9B367CF96CAB276DC605DD0D1D1E196E1B2264039A31936082A03B4CB972F079B9B9B43CE28904EA7457F7FFFAEE9F4B267D1D4D4E4C600FFC8C848ECDAB56B6F6DF2140010C2783B3363F5FDD4B2767E6E4EFCF5F3CF5553C95F2BA0B3CD2CA5ACB5EE75A1713E6D55CBE0525477988FA9CCED3403FBDCFEFDFB855F7688788E1B190C1199E5CE4A4B307595FED8A2CBC8F892C9A4954E5A0D064CCA24887DB7D246AF6D68A7150F4DDBD0BF94337E84D22C93A5E060348F83C12043644C2A3EA73280F306BABBBB8FB3E4A513C99005B2F9B002EF4F33F04218AF012A351F6B179AB2A55908AF63CB411E44B20E29370532550082A0479FDDF2A6C7CF4906B006B07B819AA6796AAF5ECF6703C43573EE03070E081DA6308FE488DD28B0BB8DB23258D02FAA00D401B21E96BCDCE849F9805D5C946480D7F4F708A035190A6597285FC8E13C4DA09EE50D4D5F97F6CFF8163273B94EDAFFAA8CF9B623A4F6AB3501CF355CA649510E8EA9A929A1C114C802EE93A91401084B33C8DA0CA0030C9BC8946C61E9044DD965B57FEF9641D0C9608EC39D3322529F11FFFDBEC77284506C334E3748A56BBA04913FEA8D6CB6258D07B3A43F1DA00C3DB5109E8B61C9CAB949577BC15E0160AFB9299C104D91942553068A847C51C980801A05F8239C358C28A94FDB3794F6B351032D452211ABC3DCD8DC6C6960C94300846CBF737C3379683D12F80C2BB201880609403103E003C2F4FCA6E303831D47BD6402E7626EC1EF8BC954CA53E19B8A9B21EBFE0C726573B9908C02450004A7A7A7970E2259C82AF66FD104C21F3D72447CF7E285675465B619C2BB666667F321D68BD1D2D2228E60AD76E19677C4CC06B17664B52B56C45B677D0100FAD76363131F0E0DF56B8E6A90DAA2BDBE3F38288E1D3B269697972B5E58ADBF18D7D5D559CE7A7272723D0F90BD0BE71A464747BF914E5F537D8055FDBCF9E187E9E9376F7E847DEE570B22FB9B1BF3EBD3A74FBF53C12B799E293B01A0642B32EEABF32CC7E3B389446241756BBAE2E718E857FEFED5575F9C3F7FFE83587BFB51D0B4CE2E30F8E99925A65B95B59D42AB832C65BCA7995AB58B2CA2B0F6CCCCCCCCB78F1E3DFA9A7D5F3B0DB60130656140CE2CF2DC93274FFE66D3041386E000514704C357AE5CF9150088D582CE5E818690FAAFB1B1B149282F05D38555A457A58CDCE818E62508199501BC10C73623D1D155670513F0C1C65A4E9C3851EFD26EDE561FE09C17ECD5C6C7C7BF85634D60DDCE9752D14B52D6AC5D0C99120D7AB6B7129D8256592010D0BBBABA7CBDBDBD11B796F94E328781818126288B8A5C704961F87B45029071021097D120A1A6D830010D5A0F0D0D0D9D4288D1DE8566B732E7C993276358EF3C9CDD34EA01C3A5859894CA2E00202B2F2CB80100E7D778EEDCB9B67755CE6E65CEB6B6B6585F5F9F011388BF7EFD3AEDE8AD1A8AAC59B51FC00B296923059D4F383F1F6AEA404F4F4FE76E288460A2FEAB57AFF68D8C8CFC072C584134301D0C30A4F62D76E8EC8BB14B2A11C909C777C16834EA0B87C3C6BE7DFBBAB643207EE579F8F061BE0F595F5F6F658E0C772CA2984A33513B73E64CBE130C33388E63F3E5CB9749070086B237F23D41C5436A4EC7017BF2874221EE7FB61D00F0ABF4E3C78F299475DCDADABAFE4F150042309E3F7F6EE52650521E0098C151FE46E2967BF5EA959B1F300BDAE292059A122FF3E3C2850B3A9C4918D9E1B6FC39988D4C568ECCECD8E42008D438FFA64B76D8C98FDD0091F5C061A4C27EFA82898909C3C5C9167F1831DD5DAF76F3E64D86C0E3B0AD6DF96739FF8C393C3C5C6946D80DD3082281F341AC0D4BD84D85623A8C2D02249F02E55035FFC57B979D2028CA04631228DADAC092D776C65735007490107EEAEEDDBB7F01FD22B4969D1C05600E06EC7FB1B3B333DEDDDDBD69D6A66F86E88D1B37D630E977088533708601B10B069C631A0E70716A6A2ABD2500A45FC8DCB97367EEC183070B838383BBA2290AC6D26FE4C4E61FB2C54F83C03A2D1D003E9E0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (85,1,'Printer_(96)',0x89504E470D0A1A0A0000000D4948445200000060000000590806000000C1ED215D0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000EC04944415478DAED5D496C1BD7197EB37013294A22294BB2ECC89623D9B2E2DA31E40045D243811C6278017230BAB8A8815E0A9F821E8B1EEC0045CF39F51020073B0850C031EC02597A48DAD47510204EE0C2050424B110C78B6447B22C2EE23E33FDFFE11BEAF169162E236EE2031E469C19BE99F9BE7F7F6F2841D334E256BB7CF9F2A3E9E9691FE9E276FBF6EDEFCE9F3FFF53B7C693DDBCB9C3870FF7CFCCCCF4773301994CE69E9BE389A4D75ADA7A04F408E811D06B3D027A04F45A8F801E01BDD623A04740AFF508E811D06B3D027A04D4D43EFFFCF3FE1B376FBE95C9667DCB2B2B5D09543E9F278B4B4B4494A4C9FFDCBC79D9AD715D2947170A85A028CB6FE40B05B2F6EC19190887892CCB5D45403A9D2689789C08A238A411720676FDB66D08E0252593C9906030D85504E033657239E3A3D6561A80AD582CEADB1C1080D2D2D7D75771DCCD99B756B4F5F57592CD66F5E710DA8D80340E64100052924C26492412A97BBC76240B9F290B5A20954C6B9B6900487C51DCF0E771B095AAAA360598669185CF84DAED6D7713A42A0AC981A46C3501CDD692B5B5355DFA454170755C570840FB28D2A807815907756D9606348B2C24203C308061687B6B8071B3ED44801B443D83F03A00919D547ACEF622601DBA8721004351745ADD128A62F4835A0EF98E91DFB84680508B7A5EBB762D0A37808B928E422FC7999080FD4251943D84DAC76422418677EC205EAF9717B14D63EA9AC2DA553C073E0B7CC00DFB55FA7DC14A6AE938B84F63CFC5CFE55304A2E179CC3E7A23E6E3C167D4EEC78F1F93B09160C24982247D1FEAEBBBB271AA00B7A77D0BFDE6E9D3A7EFBA4EC0871F7E780ECEFD2B0B7C3949010921BC73E21FD06A5F2DE79AECDB74FFF4B3E6E235CCF60170241A8D9A832A087F3A71E2C45F5C23E0830F3E7803366F991D43094E827AD6F2E066D73403D26CAC66805BEDBEF1B1313BD87E73F2E4C9F71AF60100FE386CFE6C5307D293AF5A1F6613900D12B8E9BC06AF61F57D8D133E51B4AC67FE1E7AE30440FB03F490D541043FB75123A9E9C1AB321F8DEC6B44C2ABB8063A67BEE4C2B49F81F04E81167CD72801A76D23049E80AD00B211706BBC46B5E76AD4F7D91080ED77D0FF583701D7AF5FDF035E7FCAA94A98A70468CD26A15A205D20D06C3C7C7687F6AB86088030F280534285528035925603DE0890D5EEE3AF91C6E0C3BE4D60E8FEFAEBAF3FAD8B00007FDAB90E97D613AF76957A47206D08741A6FDD990014E29FC0E65FF5FA8029C72C11D4B0C064C1553DA483BDAD0B341788A9755FCAD90461A0B1B5046468E5B35A705D01928B9E341709AC8584F554AA9A5CEB702351D09453F14ACF82EB05D70C4807705B2DF515FBAAAB22D447C0952B57BC814060C2EECB2990003D047500B211EDB0FD7E1D04BAB98FAD00DBB48380A574E6CC19A5260200FC49D8487623EBB3444C165C955DAF16B46680EBC235702588D7E3B183C90F8E783F6CE76B224010847D4E75A2D567CF2A73804634A111705B40A0B13FBEB6468687876D71124571A66602A08D38E916AE01CAF14998DB12BEC5E0565B1CB4BAC6D3A74F1D09B0C352B671B031470212894D658856815B0B680D5D83DB8733654E0D34A07602A0C52C2B8F860F00F563B3E0B690FA2AF6599E5BC7784F57576D31D2278034AD7A0204A134B372FDFAF539276671DA318761A8B90AB1839AEF7702883E80DD981A5F2A293DF0E619B51A7C4DC5F589CDFC237C677979B99AF9EF6388AB66C294950608A150E80549B20D82482C1A2591A121B29D5BA0AF8F0C0C0C108792CE7E43B679126413E9C72E86C361FFA6395DAECDCECE76DD22DC5A1BFAC02107215414057FC004676E549E0433F48453A74E790707074376E0621272E4C8914A13B10D1B26A33859EF5031902F5DBA143B77EEDC326FD1788475E91F1919F1275329C16E15D8D2D212F9E28B2FC8766F68FF2727271DCF0B06835855C0B2B4C66A816C627EA4B1B1B1210CAF30CB4327A72F0761E369F81B9769FCFBC68D0D47C92DFDE01D19CFB266F3B99A731C3FE34332CED2ECF326E76CB23CA69ACF87C112F8FDFECA31E16F14605C49879644118418C55B656FD55403C676EF7E1EC1C72CB7A828A56A27B3D6C6B07D55D642ACE2B3EA4E6B96289BDC4FB5D7C6695995C10689C08E13F63210A0822F2D66B3115ADA112909960478FA0281E902C4F738D182202B4802A7010D13E01261421B908338A1901A1A60102001012A483FFE9DC9E75103D01917588595B93191219F479627510330C9C2652748001B6F2301B822008FF14947CB5A0312DC68434BA18030969F9F4A3F760F5DF957CCE570159787625C34F202990F3FA17B01F09DC82A0E8C5B330DC8D6A101DD4A100A2A828DCFE70373138B44CA651A8D6A06082B12E027A5F7590A8619E2350019F201353BD004E5780218120A2E9BA04E2607B132EE3F0AE0BFF8E28B647E7E9EDC5D58289926200708C06C2D4031CE98F900817EF601E011DD095312541A09553861EA1FB6838971F4018C29C6D2C4ADAFBED28B74BA06A0CD01470C5885290132ED3841A3C99CFDC7CF7E003C8C13ED79C3076014C4D53B8C63DBDDFEE3B5590DC07723B0A3D44B74D92225007F4D12577179E9ED09BC0688543D02C0A80F07451210E47218CA66C26096D034756A734B60D0F617391C864269924CF7115528D5D2E492B0E2F2CE208D8410F73CFA5E56033608C8E765041F4D4C9146403C019D0CBE1148B8350E8BC50B7B17C9DCF33F9007CB11F2D9FF0E961C70094B3F35415E6A6D4A1AC066C094003FD82ED990707CE98E4FC2F40B77E02B485BA5492C162251E87E55C74EC110B4944BF928013EC2CCB5CB9C03467602A02E924A9945E02BD6FD18359016BFCBBB67CF1EE2F3F9CA61DEF7F7EE6DACD06B32012C16FF5DD809D23F40D69260823455C70E7104127C340CF53219B1C0FA00891EF4C3838858C330333DE550B4C51A802B32506AFAFBFB89ECF1B4047C33678FF0ACC483F4584978D59235F150E9F7549820C6FC08F4045FB150103D74666993ADA4CE0B09A255BDA63F742814D267E3F0DA3867D14A7F140804EC7D04ED708F12478068443E6C1286DD9BA7914FB9AEC1C44D460F058364CFC444CBEC2E561FD104ADE3AF980019AD68483E96A2CDF011D8480B0405CCBA61E63D563EC0D00429954AE919568196A3CD641C3D3B2EC7404D78F8F0E1E69734B6B0255B04B8D1F0A58CC1C14132363A4A3C60FEAC9E5D0715C2540570BC77EFDE121578B60B7C1EA0ABC6B7DF7C73777AFFFEA38603366B46168CA9F70BB3B3E4C08103FA1A994E7B41BB16138A128FC0DFBF7F9F2C2C2C6C54056C840FB5004C3AB971E3C66D0667C1AA14A11FF8F4D34F6F0E0D0D1D0A86421EAB32306B77511376EDDAA5F756C4E2CDCE03D032180418A5793B1F908CC773A0B56BB4005721A1FC7C001E5460D0DCD5AB57DF3B7EFCF82F43FDFD7EDDE1DA3C0012E0F0AE54DB90E2C6F83B77EEDC540D356B680D12F178E61F1F7FFC373C0DB35FC62F6F2240A505223C29035F4E7CF4D147978E1D3BF6F3582C86DED687BF1682D36BFCAB996363630D13D009C0B3910F9A230C7D71D4F2DAA892B3354A13F995E5E5855BB76E7D86024D4A65E83CED654DE00928D05229BE7B23C117335F7EF9E5DFF51365D93B323232118944C6E106C252A979B08F8F8F8FC171A1DB81E71CF1EAA3478F52303E5863A588932B608AD2E0071F2E2E2EFE0044A4385C530C090AAF017897E855B314FC04FDA28775BA70C127D049C9B98B228481FEA3478FEE0D87C3BF6E27E09BE15B76EFDEBDF0FEFBEF7F964EA713804D41B3BEA881ED3A25214B09D14D114B804AED548A66C4053663E32A803A01108285E6E6E682D59A9F4E9576B376E8D0A1013043A96C36FB0C229D9C667FF122B52C49BA2DAF8C908D448D029EA5D22F52320462FEDBA202981E193440C3FF9CE4444037016F3408BBA3900CAE030171304169F0999A85F41B04E42801398AB5C2FB00851260D8AE3417B36A4C6C2B00FB3E005E821B19B222A01B81674C5004C26E05CC4F127A02EE4505222A221CCEBFE6A919CA5002086F828A0C010A3543A245722180F9F103F07D7BF7EE8D39D543BA0978E6DAC289132746DF7DF7DD7988F11360918B94001674F66F03DF9C5914C49AA10CFD5B2616337B703109B05700F85C341A1D6E3608AD9CFE64AF0D21FAF8B56BD7D290B4A67EFCF1C71CB15EC96E087891313F251F80CE0397A830E19261B3240B0284603028EDD8B1C3F3EAABAF465013C8366D13D0401055F00559F089591BF363987885B5FFE575414C1454604E16CD08181818102017F000EBCA4B2FBD3441B67183BCE83908C1310F2840FC9F8190D4AE10A6329AA0119395712C09A295F9E9EFEF17B0E603246828019D08DC93274FEA9AC0C1F700702EC26800FE385882C0E0E0A0964AA594D5D555C5C60CA9CCB6726D2835433C5356AC0B100160062CC662B1E73A918077DE79479F4F40220040FDE716E059F41F1EC11936FD67D89249BDE00661767979E6BE7DFBC8A953A7585F2883199EFEE4934F1640163530C7CAD75F7F6D178E9625DFC81B44C6BB6B8C16280C53151D6E50831014099340023A9200AC673D78F0809C3C7912B37B323A3AAAD7B240B0F42D16DB70B2078FE3422BFC1BCFC7BFF936353575108E4BB0D5E07C85B1F56C5759C1669336910BB1D8A6328C95FBF0F0B0061222810A7B401DC73B91009C44C1D0F9CE9D3B7A21D158FD87FB219AD1A51FB7C67B1068699124DCC737C0633F6A0208A370F1E245AD9A56210C0E31AFC6C7FFB3B3B302DCB004766F1434A123FF77F06BAFBD66F97E2F9A246CB8EA02DBD9B367F5EDCB2FBFAC9B2DBE010EFBC08479811CF1CD37DF142E5CB850539252D31B76C8075C440409F1BDF2CA2BD3A443DBCCCC8C6B6381E44F802006C0344B070F1EAC3941A9E71547AC826218BA2B9BCD26417545F4E1DB310C05D3A341574018F7CDCFCFDF07672C5AFD2A8A6B04C4E3717CB14078FBEDB7FFB9B2B2723F9148448BC5A265D6DCC50D83912CE4454F401897C014C9E0BCB75E03006C351A8DE6C1EEC5C1093F06B790C29574DB4D0B2092D2A017C02FC483C1E03AF88E623DB945CD0400F80A80BF0E71F322809E82C8C10766685B9A202040452D00939C585B5BCBCECDCD295B4D809E274C4E4EA6C1F4803214D7202316212ADA9604800FD4C009AB10D2161617170B60FF6B5E9323D45ADAA52F97613424D4E3F5BBB18103D668F859739DFCFF1BC154734D819D460000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (86,1,'Rack_42_(128)',0x89504E470D0A1A0A0000000D4948445200000086000001B30806000000EAB96F3B0000000473424954080808087C086488000000097048597300000D4000000D40017C4BA15E0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00004BC84944415478DAED9DDBAF1DD77DDFF7ECB3494AA2248A3C1449C9A428DA126DC9952317706AA4B934459D16860BE7A1490BA32F0582022DFA96973EF4B5FF478A26299002BD06295204281CA7758218966D19BEE812CAB2AC0B6FA22E9644F29CB3BBBE5BF339FA9DC5B566D69A597348CD9E0106FBECCBD97B66ADEFFA5DBEEB77A996CBE5EC4E3C2A77CC46702CEFD4016E1BFF3BE9BA2360F8380264F97107C9E24E02C4A953A79ED8D8D8F845377E779704C67C3EDFFDDB7D7FD6FBB1F7ECEB81F77601B0B5B575DADDCF6B376EDCF803779BD73E2EE0B86D12C30DD2E2A1871E7ADA0DE26F6C6F6FFF967BFEE4CECECE861BC0B97B7EA3D06FDCF2B77DCD4E6EDB67637FF35C27DFC7F3FAEF8DBBEFBE7B71CF3DF70824D7DD78FFC09D7FECDEFA0FCF3EFBEC8B6B0F8C3367CE480AFC1D37F9BFE9CE7FEC06ECAC7BAC3EF8E083F9F5EBD7670E1033F77CBF40B96702FDE7FE7B4DEFE77CF6E0C183B3BBEEBA4BE7D29D1294DB376FDE7CD9CDC19F3A89F307DFFEF6B7FFEF9D22510603C6D9B3678FBA95FF6B6EB2FF99FB8D5F778370DCAD1801A1120874E6FE7689498A01A3D4E4C73E2B69E2BF2FF5B3582C742E051A7DC68DD16537665F7763F39F4F9E3CF9DFFFE44FFEE4FAC71A184E227CC2DDD057DCF95BEEE92FBA1BBFD7AD060161050277C39D06BE0914A526B48B1449F96C080CA1D722EF2F1D702A376EEFBAF35B6E9EFEEB912347FEF0CFFEECCF2EDFD1C0387DFAF467DCFFFE53777ED53D7DD29D079D8498090C7A442D7499A4D0A0F79DA494EF6ABBC694EB646243CF9BCED875687E34960E1CCB7ABE6EB831FE917BFEC74ECAFCFE37BEF18D1FDE3660C8807AF8E1877FC97DF66BEEEF7FE85E7A44F7ACFF7520A8BAEAEED88A8D1981292AA22B5862BF95F3BBFE67A52A7C49D0049A14C00A240E183367972DA59ADD1CECB8E73F7552F97FBBDFFB4FCEA0FFF33FFAA33FDAEE0D0C670BFCBD90B5ED2EE011F7C35F75AFFDAAFBF14DBCCA18DA9B06B5492DC42C7D5E13F8DA3E5BC22EC8B56152541C130F40F05A6252A40B98051419EF52D9028C7B6DE916EB55F7DA5F5CBE7CF9CF7FFEF39F7F3B306E372E5CB8F0FF1A790CF7E1FF139A3877F11FB8C703F7DD77DFC68103075637A749B2674DDAF43A7563DE776DBBF32F6B695635F11846DA5521032F0656EBAAFA208BD900B1EFD2E701AF797D292E4393E48E47DD443DCCF75AB0D8D72C58FCCFDAD743EFE9EFDADBD1B5540E209BEEF5AFBCF7DE7B5F8D2CCC37441B3502C3276ACC172CCF9F3FFFDE97BEF4A5FB8444198FF6D46BB54DD1F93DFF7DBD2E1DFAFAEBAFCB80DDA8CF797D36318CFBE9E2552DC49BAE65A73EB79C67F1EFDC7DFD2B8147635D7B21C1D37829ABD3F35C6E793FF41ACFDF78E38D8D175E78A191DB6993188DE44D930DD2E73D4E810150D4BF0D2016F5635503A30A8081B3DA078054117054DEEF2FCD35CF6AA9B73BD1B59ABE657C729F377D86C736A22E5962A47C8155235DDE1300E4BE4A270A101A24C0A9E7EEF18601C786078ACA0CFE8EF7DA7E490A1F10F6E43A9018522573DDA3EE9B150D3874BFA8214BA9F701458CCECF01455095C4BEA00F200482F7DF7F7FF5A801D16FCA6ED169D588B941D4C746448D2C231264E88DB12A0096CA4888A50722796E5568256B0C304A75EF1A1F915CA89CBEA08819F9A9005984C44DAA4A881DB21DDE7DF7DD99B38857D201BD77FFFDF7EFAE14EC0B0C501FEC11FB62195125B15DCD650F89527960A86A2930F7BEB76A5029A8C2E8643236804463E18CC6D56B50E8FABB8BCA8969832236468ABD20C40B08EFBCF3CEEAA6F41DBA19E7D140F3EE9EE8571EFDD5E4498C26DBC207C7320280650F09310B48811D0F6CCBC067AA86EB898EA7352471D52565751E3A746876F7DD77AFCE14505837BF938D11DA864EF90201E0EDB7DF9EBDF5D65B2BA9C0852315AC5712533BFE23F646CB2A9CF97ADC3CEE879D61AF691E303A7DC374DE3479B109B620C125D6780A2452C19224870F1FDE9526A1EF8DB9E4C91223050C9AFC6BD7AEAD802040E847058413274EAC2E2E2415BA782C66C043A0587AEEA005C7721FBC922A30F93BB5CAF03DA4B97F3D2100A4A806CD8BC0005034BE3A350F3AB5A52F90DC7BEFBDAD5B0AD9C0F0BFA046EDC6CB2FBFBC0284265C1720F5F0E0830FAEDEB76048355063C694F77A15D0F1B300307C0F654843D44EF8DCA894261BA662DB2176B6498ED0585990A0AA25490412BD27804862E77A9CB77825B10FBA1F5EE887CE9D3B778B54B02AA20D10189789D674931B1853273B01402C0B03C2FEE6CC4889D075ED014B574991E28D68EE24B9B560A57E0408A880418C4FFDA8531F374E9D3AC5AE69118FC53FACDA11F8DCDF774588A46580C768323C970500B16C7091775A8CCCCA372A439221050039DE886C3D49F64B972E0D4F7075B11762E252072497367FACE4A909AE0F22D262D6E08DCC0690184B0F1055A227B4470D8AC780DD65CF89058191CE3E5449E93218C1D595D08A5DB8802012476080FE46575A4EC3F34A9A44FAAC81D358B64C768ACAF0FF6F9EC8B4068D4F54AADD04B363C3BD9722B79A08AEDEC6671FC24B132D820BC6D36E20B1827C5B25B2F272567F1F75B26C01CA32014055C26776171654383BADD63E10B925B590436EF9866C6FE3B3ABB8F16D05711B22BA74EAC27453D2777584F42DF4778B571202484C6AA430A07DEC8B9907D22A1114558ED8B79E860EC222051078A21C6992BADD91647CC6BE20A43E74D1F8D2920C42BE6E40DC06EEAC8DF7CC5049558BEA08FD1D52257D28F11850AA0640CE02347AB66AF04102B925352C49228068B159722BF4DD6DDB1D9D8CCF98052DDA5B24974E49095DE491234766C78F1FDFA32274235DD45140722C03C452ABB8EE60905691C96D9312558B1755F5B117AC2D8691AA7117B7A4E780C4925B76B36E10820B71F6E69B6FAE2E44A040A49D39736677AB3C662BF4603FFB649F2D3B7A28CB160991CB7BEC7E4757F733F47F96DCB2B69CE646F32206549C86AF4A3ADB18A10FBB1FBAEBB9E79E5BED7F6C6E6E2A32FC96C8AC1C863367E327C1F86C02C0B283AD513570165582C753452446674EA2ED33020706AAA407EA468BD8DA2AC5092E272DAE7FF18B5F5CA4A887128457BDF57CA8C32A5DCEE2BBAFA549AFECEF21FEA4242842070CA84071F1E2C5E108AE92E972BE14F1C3FACC0DDFEC0988184DDD151821D675366BDFB4DBFD3FD85DB2CDDA26BC89194D25C07C4EA428C195632FA490610281449D653CF5FBB0803501B4930988D9AC3956A394C4E8CCB0B208A0FD911E9601D5E98740F4912E36727D10822BC75EF0DF23E70192CB26F7C278367C47953841318A7A0860346DE8257F370C280BC3261231DE105F7D54CE6004578A26F13F63C3FAF437FA554612AA43DC864F7275F0389609B478CE36FC32817E5FB6D0EFCBDCF1F243FCE02D90AA5A44BC9F038A4109AED8E4592902E349589F9E0B0832827C77B6CFFE4BC34434498B92F119CB16222DCBC68A7D86B0488D21138BFAD5E222B128056C83105C3A62D4B52E12C6532A42A8D6291F1AC6D386F5A50C4A82E89EB5309D29C0E8BA89562548A3AC1B4C25B76C2291C95B5D0147C4963C91903409D918C58D4F014412414497184FBDA70B3A76ECD89E0B6ED914EBBB5A67B3F62DF8DE2BBB87D1DB5B9DB4BD866D466C87E645F3A1B9D1A2645F8A398C0561F54E1F70A85C3CFFFCF32B7B01EAF5E8D1A3BB1E465F6E235392B44589A7D8017D805125783EAD0029C15B406E915A80CA966D27724B73D5B4BBDA9BE092243879F2E4EA02425BE57D5CD8E0C87F782D1B0D83BB6C59BD4DC0A832C09743A22581C206E3E472122946269B6AFA5BC6BD16F360049793065B322243290025082FFB88D873CF373A88F3D4FC926547F5319B35EFA62EDB984FBB0986E75182F1F45FD3184AAD10035384E0CA7155BBA62B12CEC69E8BF56EF4DC0DE08D8C95BC4C7CAF8F2AA912BC93C6EBC47393C188FB69939C4B81220492C17657BB309CFE41783BBEB98D3968736333C5FC9036C6B22340F78C91AD4506482C039AA24E52ED90C123B8728D4B5C5A319E3AB948F9E11A0C4906E9C18E746D9BCAD8AF23F51AA269043E038A07685DCD104D9E6A870C4270E5822394C84C463B89CCA17C949641AF3A006568899103C8652E6F616340356E5A582438C780127B3E18C1D53479243203065C28C56E58779694C58EC6EBED960A7D7997641EC39F504B6EF931A064C1534A61101B23266E42557AA51E08EBA39E834E85958518CFDB20B66F37185A255D574FC332A0A41CF859F0A13AE8C5092EF23B4864F6194FA988C43480DEC66BA6A1B95F939FFDDBA53C0D5B73CB32A03606D4B7318AD6C75068DFE5CB97571B620283AF224A4C7AE192D58D364653E051C2C0A5DA3C838122348E9601D521894DA036AF1525B8F4BA5317EF7FE10B5FB83725C6B3EFA4B33DEF1EEF9A8DECD0BD49DDC692BB5341D1F63FA46F081057AF5EEDBA009A81D156E3A2EB4AF1C92EDFAE71AF5F1F1B3050B9B2C7D84E6793AB64E67B0804C509AEFAB1EA53A12FE4D2CA68D2A36FDC3278AAC43F1BE10191A7FBC48D67953731CE7D58516B8C1623B84A9473D46090C88C1A622022D5FAD6E20020A104E7507DB2AE7648C8E3CCF24A52EB7BB61DBA21B950DA17D0238C271147D82AB18635EB028EA6C9643E6040AD2792AB7206D95D0DA12D3471520D105DFA1B964E46905FBAB10BAB3A7650C45EB331A030A01897290C68680E8B135CF647F5BA984E85F5E951CF0504E5AF82745B337C9FDCD4D180A289B76062D990942416507C0694EF299E3EC0739BBF4AB53E184F5D942DE8DA25AC6F9D2545176F847D144B93D392427342681F20198CE072683CF8FDEF7F7FD70F57FEAA2EC0AA8790BDD02717655D40D1F7334809319D9478D47C5CB972654FFB8A5E3646E8C3758597EDC71F7FFC80ADEEDB56DEA00FFB59DFD0626CC0D07D6941C5546B09E0C8FD05247A4F12BE5701D82682CB01611B0931447B0AAB0B4DE1B26A8C5283EA42B6CC52AEFB990392C10AC09604809FA41B2AB944869A03E2CDB181C2B6A7225889856025766995533482CBFAD225AAF7D9324134DD85D4B17B07EB628852CA920ABFB1D55DCA0E199CE0CA9110C4788AE8D22058430949613A1AADADCB6A83A3ED24DA0CF8DC72D2B785E06A1295726305041BE3490A5D4E3ECABA02C55622B23439F61D5BE83106745F08AEB61B218248A97122B9689540BB8450CA62A1209DB522B790B436069426373106D427B78A135CA1DD4F014124971E6B9E63C5782A6D3116E3B98EBC450950F8FB273EB9A5F70412B2E009EDDB970E47EE8BE7AAE504E3C905080CD6BB0815A05F7752AB0FE1954A6ED92C78FACEC14AFB8D8C7323C6174D01A34A6A96A4507F92508C67DF8E8A9163941669CCC3EBEBA2EA7BB560010A6ADC1AB4C5D3071C0AD596E2406E7F925C09618B8548438D91DC523E291E481F4FA3ED33540E5610F71D41707515A758E0B8B8EEC63E181B30B48251C5A45CD8F6DB25EC90141E23479D440BC096663F6136FDB03E6BAB8CD9DE80E843D403128C495FA597503983199F39CD6C427999AC14DB8F035BC556A85B47C3D3766AC6D5072025DB621527B89A52F46317A3C986E4F29BD558C3753A6E25B7000A3609E0613FA98BCAE995D49CC2A7C7C0A10B57489FC0A013378A1C8A2EC949938BBA770E6C1D507116800662ABCD63295E003676B154EC13C965136CB1BABB06F0AC2BA791C35B70B20581AD120B161EA43E068F1265946E1418F09BA9D8974A724D477F5614090267C11C91A2411D505BD2A94D1B241B9FF69FDD8F1CFAF18F7FBC5B2AF081071E0836E2EDEBB1AC8B6A291D9463D94F8C56B9FC52EF3691A978872387C21B9FFFFCE717B146BC7D27DD7FAFB6CC0F8C91E0A2AC5429C633646802123D0E4670D593B6CC1583B9EFD9F0F8DA7D1B9DE8C0DEA2E4229EC6D0C5D98A6CBBA7125C7D0D461B8062ED188C56A7BEB6C6080CD900BA479286640BC080B679815D81335801D812EA8149A7E30005C9D833F0CF75B031A0FF352EB6BF2A89CE6D2049B543868CE0AA720161CB006995F01ACC5E4681B6B5303CFD3E2574414A4D11CDD92B29028CB6C6F43EE3495766C42534EF94BB9A06124E18637F838DD79B82A06E4B01585F3D08083AC578126144EF4F0B8689D0CAB70D62ABDF32A0F4858931A083135C367F5504974E3A065BC633B700FD4466750BCAB1BBB1446E8518D041092E87C88D575E79654598D0BE4AF9ABF4F88CD5F11CC29B597750D8D790D0F01648782A31538262B002B02AB5A48A7D0AED4B8DF12C10EE37BAD0BE12C9444DDE88CF80B293ED03A348FA80BEC479175B478E1C3938648C272B00D5E4FE3E38366068C28E1F3F7E4BC7855CF733E533245093E8553C7D20D52BE9634B10AF815A92BE74E0185DD53EDD9BEAA54AC4FB1B5D4355EC1BB4C3510900D88263105C3640A5AFADF271B23190167A24394B40B10D7A4BAA9CDEE903295E49AE7A207937D495B9EDFFD7E1D03890E40D031ACB82CF0145CC5D1D84E04A0184ED5102E369BB324F617DCD52C0DA1F3606148FC36FF17DDB0AC0A6AC66623C6D563B3765DB5B35954A4E914063074593EAB5E4966540ED824EB13172D549637D8C10AA0502E23C575FE0A481653C434551D63DA139F5BE53286E40C2262455138905F53D9441082E184FD5731218E8102CA389805FD2E142DCC654EEA09FE4887D068613724BE36F3B21C9A0EDCA5F24115C77DF7DF7A1575F7D75156002E319CA6A1FCA9D9D40D1FE9910B9A56D8BA27925BEC47028BCFED4534FDD13EB675692EC3237383A824BF7A5785936BF4AF3163EB9A5DFA36ADFA00457298633043EC2FA706FDDC08DCE75E1DEE02DAC8159DA0E89D918C508AE1E0DEE1A7D771BD6A70B976D6223BC1C4846C772E1CA536B1DF65359E974991C22F33D25F5B45195A43654EBC26DD8D03E5B0288F76043D7C9C60885F6416EC54A24F5496A2E6A7CFA3D34528C297BD30282EDCAEC17929D0CCFBD6A06DE0289620DCA54EEC37F6D10822B94751D530F94F981F1A42BB3DD208BA52C4E6EEBDEE736B9D9925B96014D21B7423C4691B6144D09B10200617DB64789F4A64D052859807E1D40110289653A9913CB8A36A99C410AC0DA2FD524CB3786F164BB5C6D296C1BAB210AD0AF2B289AC6C8A61F0A2094D38C6DB5174F1F705260F1D24B2FAD265DAA414457A847C944620D0F8A90FD00F7031D4E9076A85F495182CB016079EAD4A9D50FB7C54D7401474852B8DF9D8F0D0C7EEDF4215851BFC5B7A4C8600560D596429222B65D5EA27A9FADD857237D7449CDBA2F6D29D8D0FF1449DA250E7435806E2C058CDE0457481F357925256C02B6E889382769E9F0E1C3A30CEDBB74E9D26E308E543291DC9C43A89C7D23B8FABA61D68DB24DF5D621B44F07DC8EAD446469F2D2764831822B051829C1363EE3E9A7D585623FD7CD4845AD4008DA0C785B2DA70F55DE6BDBBD89C5CC0184269BFD009D565D4CF11AED0B8CF1C303842287268FA9F6B6CCB5AEE3BDC8F9B0DF7F553762BB32DB184F544553EFD5750547DBA2B319F04468C11D35B19E398B39496234A4C25556CC4B12C0780A14F8D1EA4660EB78B6D5BB58E708F12EAA01F653634BAA81DF1DA94BB070278901304864B68CA7C2FA4474950CE0994092F619BB5742053F362F014B4A645D2F55E28CA103028432DA15816423BFA75480F292A3AB3762C3FB708FFBAA9379D3CA76A0B871F2E4C915309A4A16E7105AB10349E46EEEAEB181409326824BF7277B6188A01CFB5B0A006A9BAB22C6679F498FBD67DB3969B068C1E95E1F25C145FF752D321ACED85DD212BC4549B5BD88FD60C9809A5064914D6384F8D14039F5354A23C4B2BB349B116F215BCDC67F0ED1B9B98B11BAE833F129F9AB367C8FCF5A0F669DC2FAAC012909E2935B446E95921CC524464EE983D0FB24EA42D4D8A05F8032792CB78E2D00C11D8501B531A05D5DDF7D27B8AC8854589F6ECCEF51C25E48488F4E477C72D9468005653C6D99C7AEC66911822B664891C8CCD6AEC0A01DC3210AD0AF1B8F119226BC6E33E06D57C62E76486F8941D12F85F5C970D285E212C9C21EAA00FD048AF82E3524974DC3C0D3B3DD9B0721B8F4BA08AE0B172EEC86B4AB47891FE3391DFB078AA6103FCB806A5E524A7F67B9ABF622DC0F6C7FE6339F5934B5B1EAEAB184824AEA72C9A38CE09274A58B641750A480CB32A092F08351E24E44ED8462154B253463A8523FBBCE565B8E554288B3D07D12DE97929AD845BAC4BA421725B872263D457422FAB0B0716F754A571E397264946D2964A711C14DDEAA0C76789E5483B1AF37B22F0457AAEEB4258C59254477ADDB861C558974EF7A14488801657C62A5AE72ED90C109AE1CF560C3FA7C66D306BFA6464A8FDD08D538C91EF0C3FBD86C4BED03DF650BBFB3C44805047B1EB07748072CE5214A2A8CD14321AB8C80619F01B5F643CA78169118393F063B07E389F883A55BE77D901C40B4ED7358061429826B9AD3B9791082CB3270E4AECA504422A808BD75679BC030253477372A6D1CA80E8C77DF03296663344D945BFDF32B57AEACAC6989394903194A0A38F177484B782C933A49038EDF09C932A0BEED3608C1B5582C36A89C4F59A4AE157E33C031DAB61443B5D1B4BBD8D0E1A9457C3BA912673FDC7CE08107164D2E6509B28B2639B59175686CC06071D96A435DDCCF54724BBF474AC76004D750D5FB30A27410C5259575FFFDF77F303660D096020352AA98C2AD349CD90F726B5082AB4FEC279969A825584F6236C6DE96028657E918D41B91F12EB070FF317EA714708A125C5DC0114A644625595B655D8D4FE25A28C32D9090E44C39A55472AB9434E924315254078CA78DDAB245C552834AD6CD1B419A982E4FBBFB294494372539C7403128C1D5347104B56223601D5B75311DF92E6AA80E2881C236B939472A0C467071B0F9438CA7ED51124B59CC9540134896B7B4F8A601AFCD82B72457711BA36DE22CE3498C275D9963319E25EB8D4FE4D65EE98D8AB631A06D6AA4CBB82E9A2ED8194407D59682AD6159D04D319E13C3392CE3199A70EC0F0042790A36308722B8B6CE9F3FBF9113D6D7151CBA39195BEE0647D977558BCADA6243A5210A20B2457A87F635892D1B663744335EE213493DA84B4E8F2E09058F4CC0572D113C379B1AD005145DA57291A4E612251BAD5460CB983AE3D421C7C53D7AF4E8E88061FBAE139E2090A8B4045E880DEF2B058AA21263089BC0D6C266B5E0B7DB2E8BEB62576831C08012FB4989045B00A524B955D4C6E85AEDD706B85A82AB2D65711D6332C880A74C82404226BC0EBF1B650995D359627489F1C4B0F2B3A2D6B964632E486C163C81C20289544FC8CBE80A8A628553FC2FA3F4A0DD422661881DC35CF530A52ADEFA9AC651760905639B3A210D5A38A58914A13DB74E184FA8DAA6009EA9585B375084A409F61831A096266F6B6E93BB001B2586FBF18D37DE7863050AAADB5301C6EE9296F666D6152439AAC1A7CA010792BA7704571B79226B596E950DF86DDA1CEB7331B5681C655B0AEA85F4951C31CEC9F6544B69B6D74B6228A9D959C907423643296F06A64ED678DDB9677449CDBA47115B9A2C764D63E17D255C548AF80F5238A504A115FB5F482EE949B87D72548E1D3B36BAAA7D9A2445DBD397458B40252542EAB864E7E63E527C91EAD2F49510B6513D99563699791DA2B950C530A00208C57501905DE97D838307DB44EB63617313B09E36CE93015AE7DA5CD0E4E4AE8AB31048B4D946D4561348BA4A97620457AA776163337C9ADBEFC83C7925B78EA14D6E46DD406E85F650FA80A228C115BB197A9430E976832C272B6A0AD299EDF130620CA8CD596D23B7F6AD708AEDCA8C552D9B41176D5B594D0028A78E2D03AAB125390B06D4B8F949E35B2CAF4440D0260F8CA7F41F556C433D4A4A7B33EB0E0A7F0C6D72B39F05EF67C00F46703963E8E0DB6FBFBDFA6159CEA118CF210AD04FA048B71F201E890165B30D69D275ACE74D13EB24C58D13274EACAC65DB3DA7F4A008E9924202DF3AB4A5E8EA7EB67DC64FEEEA636BB45506AE4A105A4D604037427239608CB22D85EE8DBC558C73D2334B925BA1B11F94E0CA99F4D07BF019E446303018B220DC0DDC28F50BEA575E068B422E291D9CDB18D01C3B64DF09AE3E0D6B900C3691795D492E01817AECEC13C180C64A550D1994D389E0EA22492CEB49BA7F2C91798AC958EE6E0B0828F2F604129DEC25F91B625DD4C9200457D38FF889CC361E2074539357D23CCE5A38A2078881210B5E5C118BAC4D5D147557435F1AB39AE95162D94DAB2EA6092FE3B25A69A247EA80EAB431A036F6625F0BA7E8C204042ADA1243613B32B7E9C41CC26B02C5322A4DA0CA211AFD3AA0A5247223C1E57E78E3F5D75FDF254CC88168EB4F322534970745681C2D034A0D33CA24F8C9CEB963DCD67D60A9A262B85B5D7342522FA8EE61BE18DBE41338DD965CD527FE82F28EC4BC14D9448BA1D4DDC88E1FAB5892FE26E54037829B56C53AC37D8C0FDD12AD34C9C11992DCC2251E8CE0B2C66429F5C0668F068A743DD92F6FBDF5D6EA66363737475786476050AC0552916E515A7400A409242581534495940284ADBA83854D61B2AE094A1FD7838C3DE5AD0A18E22B449363BB11E1560A14FB4670E5EA56BF9627373EB5DCFCD06ED3EEB5160979AB30A0B6F75C573B645F23B89A9AF172DACF4280B5D5F1B4AA6B1D0F280142FCF0006597206943AC71D3A4EF4B04970F08367E90003ED9D2D484657253DBD500E19264C10314B6ED53FAA90D4E70D98B2599D9966E94BAE813D237E5AF368F856D7043AB5301058FCE7A3FC509AE9018723642252389B03EBC0AE9415BEFA27409A60924CDC009C58042708568F2E20497984F01404090216919CFB6CDB10910C3802264DB590614092EC9D2679CE776B2FCD359CB5B327EFC70B4D22A41A093FE1C7B689F9289B4B253447ED79615B64BA5FFD99C50BF45E9AE44A99282482EA1DB721BEEF928DB5210DAC70280B3D0EB2572518B174E295964BEE93D1BD607AF21834AAE19259AC6ECAEDAD03E6A9AEA1403CAF6BA2D555582DC2A4E70E54C7AD361CB3792D5CEB9CE9D166B35BD3A95052F8048651F3D7A74B7725FA828CD7E81620F30BAF2ECA10B0110B6709B1FE33919A01F1D5A286FBEF9E66E831B51E432F8298C1BAB5C54AA22412F5512932484EF5992CB56DF0985A24DA0881F6CB849CD8A2E87D852E11502A3421EE1BED918B1D7319A9002BE849848AC726EAB0DEDB3C6ABCD824F61408B771F60F56328EA22B109A816E7EF8E76F5582640B407E5D8FD1419F2E410DBC4AD7DC92B71E85C5CBA7469973491DEF313994B782C1328BAF118ECA7D00989F84F3CC0C136D19C94D83E73E6CC8605C350934EF89B7B1C5D7136169555BF394049010EBBD87523E5AC0A81D912C3A171593AFAD87E07217D449CD76D29966394081A472AF711B5156A9A5BAA385BAC4D67278991E33DF449571418B4820887A7C8BADEDFDCDCDC1A1B303449B20DE46DE8FEE9B92A9A9CD0855490F431348B6DA2850273BB04FC2211D08B1A04EA5DB615941DA33B0AB905032A903CF4D043ABE77EB1FEBE92E3B6115C31B149661A3D4AA07C01C33A329EA1B10224D7AE5DDBED5BA2BD140AF6FB81C25DE76B3082ABADFF2A3ACDB6A380F320B46F6AC6DB7C68AC142D2FD52A6090DC2CAA9CF14C21B70675579B5C511BCB49F337D48665436352610244FBAAA6540211E55239449413031A23B7F685E0B2BAD16E80D91DD3B642A5D391CF65F8CFB50889A6230694F03EEB890C2E31566F2E1673F1F50283E51A6C3273482A4C84567990F8D2C44F6EC6D3416AF7EEBBDAA44214F309F56ACB01C5C050A2DEF83AB6A5E8CB63F8A17D750E702F43B451623849B1EDC4D5465B04785F5610F0D5BD364699D4ECB7A5400A0F416EA514E2ED4370555D455F932461F550FE58EFC90AD7A99B3976ECD88D317217B4A5C0DB50E496ED3B3B54E7E64108AEDC498FBD47FE09228E5847318118B37C6ECC875FB90F0352A5266C167C287D73C8CECDC508AE94F7A8BA43283BAB03514AC0C9BA1EB2D39094972F5F5E491185F73DF8E083AB4564B3E087D84F294670A582838ECC8850BF2BF3E495840FEA9D8A0195BDA554039B058FE19FDB2BAD97C4C8E915EEBB4D96F5E43336BE93F7A6209DF48566B3E0253D8801B5BDE0FB34DEEB2531423BADD6E2B55675ACC0CAC45BF407099D902C032A29228902B9180BB01E34AFC4760BAE4B21AD4EDA52F4D9199D4093BFE29B3A2121C5532B0D7426B89C085B48A4C1AEF9EDADFAB8461328BAA9015F9AC080EAD126373705EAF426B81C32B71E7EF8E183A11E257D3C96D0416D2AE7C51C1ADB846B61C93ED0E4D93661B99C441B48304EF57B216EA414C135888AB0DC066C2774711D853ECAE26C0284802FDB80C87B6254FA4A8E21A47476F7813EEDAD68484BB10FA19AB03E0D560D96D145F0901F82C12EE9A84521F613CE822DF692A0189CE0EA03088180867A7833184FEB9ABF4AF89EEC3722C8456EC92D658C0051E9FA9FA52446952B966C2233AB81F24CEBDCA3A449CD082018F952350289A489C6D0B62FCDB5430625B852EC05DBB31D97C9EFCA5CEA82C7EE9550FF5449CE92B2028A0C574A4EC7C2249BC6755F5A5F11D667936BE1362C759B13C0331D71CE4292C4C6804293DB18D054AFA628C1655D2136766C57E650EDEAE928CF63909B826D420CA8CF8096EA8BD65819D889AFB9A296050A8C48BAECA46EE8A418AFD391069410032AB050DE51A7EC94129DA5DA521477C55613184A2534D7C0DB18DB044BB24A1584388B2EA0F0C78F3AA0020B4150457BBBFB22C8DD88DA526CA45473E9FA1E142E115D630486A4ACC4BEC2FBC8B381BBE90A8AA6FF69DAC32A5E19B82F00EC205100844466DA5208809B9B9BA30CED93D827CA9EAED4D80DD80E43756E1E8CE0EAA31E68C4ABC1A01D93568BDC32B9647EC2D2980F0B04DD3B4D794F9D3AB5BBBFC17E4A49726B0882AB132020B9E03560F3681BB9CE15FBEC41A8E3D5AB5757EA54C496D48D5C5292BF6320E9AA723A7B25BE184AFD7224834DC6B51B4531C673F24A3EF2320410B9A202090CA80285A9A961B3E087EEDCBCE8D3CAC0167745545AC6B3A939DC14DD151F6B028505068105624BC9CDB2512CA37C47D818B6E380653D797D8AF11C86B720A54006AC243231A07E167C1F6F314B62D84D1CBBFA6528F559F51338BA83C466C14BEDD02E4B60A143444A05C5248911336CDC0F6E409A90C81CAB52DB87EC9A8E7C4F83D7D879A5AF1A19F0024C9F85D8B889F6CE3BEF6C9F3C79723E54C31A9B9C44BCE258DB52681BDD4ADF12A0084913BCBEBAD05DF76BEE9BA2D8555D40DD0ADDA82C9DEEF5EB630306C1BABA57791BB40AC325CD61404BB4B0E8E4AE862EA00438603C25EA04040D8CC49F184F7CF59A3A1EA5BE219642DE869FB74A8A86DECBC91119D2655D94684A13FB3F482EBF2BB300B1CED15C366F55EEA8C647C6E3273EF189D578B14D80CAD9AF70BE2C822BF7C720B9E8BBC14D4EF9ABF145044DAEF2DCF480972B4A35611B03DA17144508AED4BD0B2870F4A9ED4E602BCD4D80683F486C1667213B4C20915DA262B1BC6FF7979AEC9041B6DD99F3D80FDAF28D3AAC2BEB176B9BC8AE6E9284A2329216020B31A09601B5FCD2BEE695D84466CBD5DB44E6DCAEC11320F2790CAA2A5307D466C10B30446D599B6D3082EB9E7BEE5985F651F38264A1BEFD492670F427B77C06D466C16BBE9419DF67BC1B092E27C296274F9EDCD3A324652FA40B20A6B614696315030EAEB0D48E16702CABAD882A7140D8D396A2744702DD00617D32B4EA9B197D5B0A9BA19E637FE54893BE4D09175D567D9FC386F551A84C624FA058A7B614922022B7603FB5DA9BAA09946859518CE0CA91064D2AC2329E105CB25D9A56CC580FBF2D851609BD4BB01B2CB9950A8AD28B3B29822BD79EB08C27A1EDC433DA34BBC9D0FCA8C6A925B71403AABF6DA0700972AB18C195FAE5B63F89AD7541CCE294BF9A76D81850A91B459293058F4DD2446EF9AFDD96C229B6610DCFE950100BF69DD8CFF485A7F1830185B3802A673FC5EF84745B0AA7D86C343BE17EB8DF7E1BB3EB7058CEC2D6019597A3BF63EA793082CBA9850ABB00FE8244669E4FC9CCFB4F7891054F1D509B051F8BB22B9A57E2BC898A380A2443496327F2DEE8B28E6C3BB01C40A4B6D1C48B91DB2F09A253733658EB2B87C81D42FB72EB5DE414A0A7625FCD7C8EAE6A9F6C027116B669609357D687DC22ACA12951693082ABAF3B04C903F349DF78894667897F3036606861A9903C712AB20F74D856A3B9EA24E53383174EE90B0E36E0A0BE6D049325B9C69CBB6A2BF749E46B3C44FA294858E302FBA9B3C93BDCF7A4E6942FCD21BBD814D3CDB33A74D37EC5BE753DF024FCCA7D0F3FFCF0EA7518E22677B44BC7C4E2298A29BC3BF4B70041283B99ED58CA29D585D7EDB095FB243569CA7BE6CC99DD2CF836063455BA0C4E70593090D04C581F0C5DACC7C674342F42A4AAEC12495CF1153606D466C1F751399D25464C5459D6130BD852DF4DF59F26699177685C554B43760979AB028ABC1CDE8F31A0832535DB56DCFE7E877DDDBAB213208623B734F9360B9E882D491381C60FBF1C8CE0723FBAA10BA1D22FBDCDFA4CF2048E6EE3141A373F0B5EAA4660918D27093318C1E540B1BDB9B9B9B02AA22FA1153B4C81B6836324B8E471406EE57A0E29DE08711EFAFE120BB891E0B201BFA5139A75D09907FAB6E6344617A8C176028624AE2A6EFB10E45653239B22C667499540435A9D5A45F8EA127B427CDD526B74C000F43A691BA6FD0C055AEBC0A5D77894004571773564D1F6C96D85F1D4200808309E02824DE05D37DB0190680B1D4F435E06515BB21904943EA0D817822B4775B02946F946F6400406CB784E46E847EEA83C0C9D5A3CC45988DCD238690169FC42414F25798B241B23178DF426D1C99E808DF19C7A94A41D1A2349119DE4ADCA157DE491477655AFCF8076951C4525865FEF42174FD17988161BDA9712503C1DF1B1860155A0B0DC5049124593CB88EDC380F6F64AFCE7B6341296B6CF78E6A89DE948B70520B5B49FC2D6BD8072E2C489DD7D29DF151E2CAFC45DC01CBBC06E8997687B301DDD41A2F1479A5CB9726537B44FD2846A4502D0609B68B6F4732CEABBABC7123AEA10B8F9D8269671EC6267A518952C5E81855087506C4BB14D3425359327D297D08ABD07B7410F567743A34C6AA6582B223FA577491717957A5E7D2B17255706EE5BB2D1AE1E219AF03E4921081E0DD6B163C74659B54FEE3A8B40629F4D2F3CB8B6D0FFAE2D2BBAAAF7C57EF460A74A9DDC590D8E4020FF5CF106561A8DBD2D0546BAEE9F3191B741E53E2D106C8712E4D6A0ED35BBD80B309ED4F024C41D40B057B0CE878D7B953B2A9050B94FE326801013DB1714C52B037709F865438C4D22DDE0D4A3A4FDB095FB348E0AED53A030BBB2BC9FC2801609D4E9F3CFD66BA1250599ED4D5BF5933BDB7C681C0510456E69A189AFD0F9E0830FEE96924821B70627B8FCF7FC6466FAB1762D403F1DCD2A8774441850A4090C288C730E65D05B62D86A70FA9B70BF505DAE0910C3935B0281482D159E9134A14C820C58BB487BD7E06A32589CF89A5302C9E65F96D061D3D19FDCD282941B2CD562EB800A2CF494E9AA5A1A258613613B0E1C1B4D4663096E837C943A6E63ADDB52E40025D0277777677650826B88703EDE23899968AE756A4BC1C4E16D7409B0C9CD551DACBD665FD501A1A381A19DB5FC741956EBDA9682CA7DA424C2F1740145E9F94A22B8527FCC7F8F66351A08DC2CF11A329E72FA9C8F99DC628B80DD511D843F86AA1A966CD2DB99E0CA01848DF1443DD8062DEBDEA3A469EC28EF78F1E2C5D5421267A1E4660186F7422A67D0E26C7D5B5FF98C279145920CB1FCD5C99B891FB23B04109D1A5719ADDA99550C285DA1429B6EB785E08A956F947AA0E61399EDA9F9ABD3D17E680CC57ED2BD596EA8C8ADD3A74FEFC680C69298FA46CF65974160530CE9102A6F30915DE5B90C8AC586B2E0C586E2D5593775B0BC12F783157D3D2D8A394371A1D3311CC1659F0B00360B1E624B06ACE646CCE86004979302158D78FBAA8694FF95B874126931B609A6BA501F9ABA0924783992269A2F4990BEB93B8D0497BB91A5BBA9AA4FBD8BB602F4905C4473CD465ACE51A25F2B9AC87A4211FA8222F45A885DDDD708AE2EEFD19682B445E20CE4C508184E148E2E82875205B674A5882D2D0CD215630CE86D2DCED6C7CD49716709F495AAD020492F8AD3F7DB4C8F3DB4CF56EEC3D3D0229101F9D0430FAD5E87DC0AA982AEC5D90625B8725C21285F32D52855286309977632543F34206524D2778E42F2020905DB346E3177B40F2959C45D6D0304BC0655F2613C6D8CE7BA976F6C3B08C8D1A943FB28724795B72AD513AA8B3AA43AE9DCDB9DDC55F6FD7DC6730242BF0320BCF1C61BBB856275CA2DD5F8DA18D01828DC7BCB2AA09F8BB7BEA26C236D36092BB38CA75FA86D521965548E361EA9A70103EA1BB07E0CC660041794377F33E97E3273496F663A9AC7CCE6AD866240A9CBAECF0C467089F924CE93984FCEE9D87F5084243185578801958DA7B358B3BCD08F3BB769E90CA02AC756E8B257C2EEEC9843FB68A509B9D5950E68323CE9844499476A7C7591D445BC92DCF7A4960402C2FBE8B428F1E7F4E728DB5268C268332A6F8362337ABD2B03DA069CDB96A298F31E648E06C7E6AFCA3D23B620B70BD0C7E9D03DE24940FA693C1490A38380A654063487B7B8AD115CFEC13E08B5B92834265D28C9B0CE06A8EE1D90C8DBD038C92E50A699248A5E17FBA94513CBD9E91B1CDC5B95E4A80EB9B09206A42D4272C9CDC2A5ED1BD63EC6039A5C20A18AB03C0D915B52375A483A19BB9C38D0A204578E9DC11E089E0BB52ED09D13D195AF72B475A053632A424BAEE8B973E756E34CFC2CC562DB40D175FF297913CDB6A7422A480492C88CFFDC95DB988EF0789169F6FAEBAFEF6EB891056F2B0AEF7B5E890F083D921BD954B1AFA4BE9B00F2116741DEAAE642EA464051E53E362BA934D05B9534D9104E8CED06E9000836C4520BD04F475972CB8E39D244FB296CBA499A48E5481515B731F86127A6964E6455B65373891B0B1D145F778FA30BED93DA951A40C296040ACFA9030A03AAD7E98254DC2B69ABE5D937A119C613B796CCFA31AE7A8143A21F914FCA450E039AEA8DB4D561ED2431BC7DFCAA2420342874E011C143F3158251746C6E6E8ECE85B15D1748DBA4A605BBD34D0C68C9A09CE2DD07BA5ABCB4A560AB9EF84E893C7F20C61EDAA70363DD263753B98FBD8E505B8A5C5014DB444B41532A38B42274B396F1244C0D7B653A6EADDCA70544535EFD2D8068DCEC167A9F18CFA29B6829FE318C273D58A9FB40C0EFD4A324ED800F52DEAAC6934CB34F7EF2932B954303A05853E394C8BB6C8991CBB5FB5D99F1A1A71E25E5548E380B9D804459668F3EFAE81E06943AA0A50BF9666DBB13D6474518620F2DD1E5B7B098B88D322AC732A0B24B2449041451E6A41DA454142E4270210D6C576600911BE339B19FE55C5FCB806AA14A9AC81526308756637D00D2D8FA0A0A9CA63584F795F2584224D758DB52F85D1C4A915B569A10032A5798366483105C124F42635F0034BDC7661C24D758DB5268456360A6B6A5C8715191C884F50930A2C78722B88A57EF237A89D03E449F102FD138E6B614042DD90275B1B614B9A028EDB22EBAEE7FE4166903081A185216A5276D56F6D8092E3621694B21B10FB9050B4C51FEBEE416466BAF788CD08FF42D3E4F137A741D514884AB4D9EC6CEEE985026419244B5B6B49018AB262332378179B028F1A62F27C6532B4037461D4FEDF8D98A7D1328C2634AD49BB6D0A9DC77EAD4A9D9638F3DB6028900626365074F6ACE356E7CA38A2D655A53EBE6140B804BBBEE0D6BBA1CB6721F862BE496C6932637D680EDD316AB93C4F0EB570006A90A184FC89558B39A89BFE87EC8F680B378F9E597778371C88267C3CD925B8336B2F15F677754134F09C1A618CF89D01A46E590B72A6922835E2091341177A1F9C0C36B9226BD092E27C2AA50589F1E63EED544870F070AFF3959F0B677097B2ADAC01C8CE0725FBE7406D06EDCE79019ECBAB1BAD4F4C1B14D2A9B6048DABE067868AC29612569A1DFD36F90E5569CE02AE90E850C57894200818A723734BA082EF25489B7B095FB728DF3546FA4EF226E941890237D7EC8FE2F217D54EC235753A21032C6BD373A7FD61665433A8AB710B1A5D54DBAA2EC83DC711E34A9B9E14BAB3EC8631F8438470D8CC49DF46213BB37F683BD12F2434404CA2555CF55C648A795265D2BF6ED1BC1D5F663BA51BA324B02C0EEC98AD6604CC13B7B0FA9155BB98FFC1055EE63E75486A48D011D2A9C2F99E04AD920B38CA7FE26C6532497CD5FED9A97B24E0740D0F9CA2BAFEC06E488D8D2DFD0E41ADF5C326B5F5A5F11E3890D42581FD55C7C6E630244B703DBE3D5575F5DD9257243659710034A4A8295C2FB5A3805C9A08B131868FE46BF8C366E630247FF43E3AB7614522BB4F89634F9D4A73EB5BBE926A0E434E6ED2431EAB614BB76032E172E966D563355E8DB7F9543F7666DBA9105AFC22BFA5B0B56AA7C30820BBBC0D6B9285182A9C93D9E42FBF2790C2D562B4DB47D6F93CE8B135CFA411BDA57E22642AC2015FB6ABB6594FD4A348EE4DCE0AE960879F05F2389A9EEB43D0CC195425AE5BE47C53E4EDB69512AEAD8B163A3EBBBC90E29BBD2724965485274C6AF695182DC1A9AE02A02088ACF437F13C2263D690764ECA17D7EE53EF25605120AB6695C52BA37978C03ED2C31729147B22E650E088685DB980CD2BD515BB20FC405C936506E08FD56E946E04B935450142D83105BFD6D9282805F7258910A12A13688670245F8602F4520B195FBCE9E3DBB4B9FEBF4D30EBAA88FDE36469B2B2A89C05E08D56F49BC9D7A94F4533954EED32135AC809CF3E7CFAFC69B20E12E0C6811AF24A4220003289734D085FAF9ABD351EE60BFE9673FFBD9EEAEAC380B915BD401B559F025CC82455B463B3E38B52EA800D3D4A36422BB863B2489B521A9E87B18504913D1E49A274912D4F86051E2F8C1701A4D3D4AA684E6FD335AEDDF30A0D401852A47AA0FE29548C7C94A6E520F2526DCD6DA186B5B0A4D16DB095D532ADA6C08CA4ECB48D57B5237BD2446DFE4952E920220D460D8B5CA9D781C65EE6A7D6F2B6F430B81AA7DB1E6777D41D277F1B6A60F944A68D6E4CB70D229B7965E1D18AE105C870F1F1EA5CE8106979148BCAB1850AD6A81C4B2BFA540B16FED355300610F481B4907AD125C2C89BB758EE4D2BD53940D06542EA918501DD6EDEFCB700EDA5E33C756405C52D01592CB0F28998E8FC61A0654DE861693C64F79AB9228F478D1CE690A039A028AE2ED35439F657794882E5C25557799F257F30FD91D1A3B9D523954EE236F15728BB614A992A328C1452B2A3F7F953D105D38FA5117CC2EE114E3594EE588AFD0F9E28B2FAE2409A17DB251880FF519D012764792C44045E8C490A2B9DDD4A364FF0EC82BC580527045768918507AAD36D5012D4A7049459027490D4FCE2EF9ABD35186DCD2E254589FEC372D581ADCD0BB44F6CA600497802063C8AA872615D127A1796A4BD11D2430A09216AFBDF6DAEAB728E83F08C1D537953E8511B415FBC6DC9642EA98CA7D30A0396D2972BC11C20601C6A0ED354B905DF8EC905C54DB5F87B6144467416ED9B614E4E4A4B8F3393CC6E0ED35BB6E8EE93DC2FAC86C0708D281BE1BBB0E6D292CB945A41B0C2895FB6464FAE59FBB2EDE3B82E0E2B0E50DE8DD2582468F9351BA579200122D145BB94F634753DE50A5C3A13B372F4AD4BBA06625711B42BB8DF19C0278D20E02850512622D244954B98F7CE0500C688ADD5194E06A9226188E546F6113C8329E53FE6AF7436A160694BC1471168A01D5219A5C2009EDCE96D869CDDA4483F1D4856234E90229791CEA5E3401A28CCA2106F46FFEE66F56209124114D2E490D03EA47E00F965742A53E482EC0609BD5A4B06C1338CA1E94CF146721BB449244A7A872D4B8AD285C9CE0D28F028850B0EF40E17CA3734DEA9CDC620BC47E0F59F09226D8253AE5E9F4D9CD6E24B8A4C328F49AE3C2E60E1A1E8CBC19A7A60E8D0D1892BAE22C20B5FA54166AE32D50291A576DBA759D97C510D13F6DFF4B72126D3709EB934BEBF4E707630386A42CD966D4E3D4626333B24F3DB2C18AB3E556D4E9624BC0DBEB947A424F52C5D632A3633DA8B54E1E8EADDCA7BF613FC58EA6D4014DCD161C9CE0CA0584A4828060194FDDB47604D7B9621F875FB94FECB0BC0D156D25F20D7734479D9452F78B9206918DF1D44147E650CEE574EC553552A33A253501C9E38F3FBE7A2E80E83DD2025240D1D7D8EDD5FACA366011EA0916112943C0C8D4A3247F81852AF79D3E7D7AF6C4134FEC6E2F40930F55EB73D14545D07B55079B62EC90C26F4C4799C356EED398138C239A5C630D031ADAC21FB4708ACD5D255146174A40EA2415F657E590B72A17582021B9991850521673DBA066490CFDB00041C53E012156DE606A47B1BFEA46072090CA210654A76C1419F9B69A7051828B32C68021B7FC520E28A83BEE7E6F947D573559105C4380440B57D24431A044F0DBC4E6A29581A9E339C4418C2739AC54B45B8E50BCB078A8138E2D2657B40F6D1DB329304AF10E0727B872A4414892482DC16D080C34D79395AD811238C61CDA47BF55585F791BB6AF5C8E3419BA0ED7A28BF8CF89F184EDD440E8396D22E5D2AEA3C14A9CAB4E19911A178D91BA0DC8C887086C62405340D19BC7E85264BEE93D184FA2BFB5522411E46EA5C431AEDB014D4E851C7142B4D224C34FE3179326FBD2C8A60B38B015A43F2DE3A91B52CD28F4E9E4CEB61F1A275212A5720412A91B35B8D1B80B207A4FE39B2239FA1C8B2EAA83E86682788466E948ED20DA18CF218DD77550396C27BCF4D24BBB8562CF9D3BB7020C92448FA9D2BC882A010C564510D6A7033D09E339956E1CF660BC7FFAD39FAE548ED84F9DDA4FD1F8134D5E2A49ACD1C6104A09A0D1EA2791D986F6A51A48D351EE8831A0A2C9051A0144EFF58EE08A4DA8A403F5AF2DE3D9A7686C1BB7A19FEDF2AFE66CFBFEA6EFF0BFCFFFEEAAEB7D69024B178E8931A0020A3D66BA2EDA468921E920C33235C6B38B8EA3223FD15C6E100F2402A0D764F5E1E672AF41F72823D296C5EC1B8610333CF5BDB2F5A88458446294EEA8185B3D105C50B6B46690A1E5D07EBD8B34B8038EE87552649FF40BD1E3BA773A46C536BDBA925B39AFF5E231FAF427210D81D03E184F19ADD283367F3520EAF5C2B2C08495FC5CCE772D7D77542795FB684BA18D2FFAB6508CA6CF622C1AA893AB22DA6C09490585B113E349ED2855B04D581DA9126228B5D264635499D7173CA4FF61386DE53EE5AD6A2111ACA33387012DB5C3BD28D17E093D8A8A207F556010E3D9B7AE7501D5520D243152AEA54A19535BB94FEA866C332511E975A959E58E204D860C044E26B8623FA81B9028A42BB344A4F5A70B731B55A2D4085E72618931A82AD2D8D9BC55A51BC8D378E49147F6A42B126F3144ADCFE4BC129ED39559EE10D57D652BF85D990B731A39935115F80D1F18A992A2B881ACB124505879ABDA7A904DA2A82DA91E42FB6C8989A137D12AB80C818174453C085DE86D623CABC824560163B5EA018C545B26069041183EE26BC55948754BDDE8840115506CE19541B6DDF583D4C6924408F52819B81D851DE02A91840AA9901C1BC3FF9F5440ECAB3B4D25451850B2E0254DB4332B8048150D4270E98B45CC7489F1CC0104648C5640425B8A1020DA262717204DA06B03E82DA0B66D294A56EEB3E3AD854A80B6B2E009E2DE3782ABD42E1E0417F189E4AFBA9BB9DE20DAAB0C6991CB89C4A4531B485A6D1CDA52E06DE87E21B7BAB6A548E1310627B84A80835A9754ED9318246EA3A52D051356358878F65776CCE7970120B401631601A3FD9D7903581B3D0D520F21B7B47D2E754D047E6A5FB35417755082AB8FEAB01D99B55A207432DB52D8819F071E770A115C29C0E0B5B939B3892F9FDCD282A1BC2306261B635D413138C1950308D90A72A7A42268CF2DEF45B64A8746BC556495571E28E6119B62199014A91223E6F5840031EFE3B66A4CF034940BA27193BA1103AA7194DD40C04ED362BA2308AE3D5F50C7784A22C883413D000622B97AAE5E5F32CC3D15B2F400323430660D00E9C56D10032A905021479244B116523722B66872DCC6390D467035F53383F194354C56BB1ED9282A6079FB935D45EC0A7D6EC3B3434A0363E681711EB816DF28EDCD63D8CA7D52390289C2FB9E7EFAE9D5738144129918D0A236466A5B8ABA0CD2EA64AB586088F55F2D4C68CD02130030366A69B26300321B0018F67737BCC72A814BE9ED924285BFF0C20B2B95AD2E48E22CA47AE882E417D91D84E012474FA1726B3937B5E72EB459B6F40679E94DCCB2BEF62D33F0A89B262074F14A62EA64A341820CC67C5A06F4273FF9C92A125F8B56F19F84F7A18A049441082ED2E86C7983DCFCD52CDFD9D92B4E222D02EAC05FAD4B038EAA06C4D2532F2581310BD8165662F86EEC1EE9C1B6025D014A1F9A1BDBBB4412A468E114FF8B24216C685F091776CFC89BFC55BA110488263B314B3321332321E6061CB980480549D5E0A1CC3DF0ECB17188B79004C606EB9BB71A9B33185071257D166A7182ABEDB0F9AB9210149415DA7553CE02BFE90D6E48A46F046C8826DD5E0218B38011BA11008595602BDB07DE82D2955A0C12FB2472B30FD5771E06299C522A60C77F8F9A523AB56AA8B82F63C9AF026368DC9D0655B23446676526C257215500383994784862C4BC93B9F71D41E69560609D72E9B5486444CAD3D0D810DAA733579A9406C9A2342088F114DD0BBFA11B95789354486CB5B913A1B4635E42939BDAD5106C532721DEC257653B6DB601B11612FD944950BD2DD923905B7E2BCD5450EC0BC1D5F419685D9B9CA41BA2017D0EFA6BA9A101DDF6A44428D6A28AACF665641F23C7F89C35FC56D5C0D0024E794CDBEE7E7652EA976A8C887ED3219088B750408E161AA17D7AB4B4C050217E9D5B5F51DD9766BC64662BA7A1406D2E0B8CA5A7429689D2649939F931D5D2B6AD6F3F636D8B6DCF20CE764775CA1DD5182BB44FC9CD4F3EF9E4AEF415509A5A7FEC4BEB2B0C27E942CB780A0C309E7E3782AE45E69DF5FEB8FBDF05C69DFB7B5E7FE76AB2EA15B86C3052732441D67BCEF5DC055F7D3D9527F196F5350A185B4E451CEF5BF1586A45D1F53AE5FA2AB683A26C96F8B22A67D0C229D27B02011E04617D422B9D007D6EA3CB85D4DBD0DB4E1D090007DDE3EFD7837ECBF7C6063954A229754272631742A5201A9E1F905A70E3B8EDC66FA36F8D102D488DBFCEE79E7B6EA56E4E9E3CB922B664D7A16EB46063F65C6F828BA01281403F9693BF9A32190E704BE7ADECB85530AF5315ABC5876147471884D8F7C682514A82A3ED33218070F29CEA006E416DB873C749C3B91BCFA553135589482EA2B62816AB0D37A91DB9C4524345082EFF66854A2112209408E7933A722B68CB8162E1066D5B8F5A51121CB6B898FF9DF6B14BDFF85220B2131F7B0F40E8E46F4D9A1640ED6D5432D69DC1B92380B889ADBAD862FE1850B98F2CF8C109AE3E251BF55EED8AAD548574B09312F3BA3DF8C20E087FDB8ED000C13E87EEB5CF53EEA1ED73A1CF84A444ECBB7C50E89400D4FDF39E56B218D0BA46F8DC4DE2B65B781B6E52B71C48165D55CD20F1187DBFA449553889B3ED0667C30DC88E3398361C382AFFF798743D5AD7D69754BC6F5F8B1064C1C9CDB9C7AEAA45D7C86AD5FB7A6E81C2A9CFC8803C71E2C486EEF3D2A54B0B671F6CBBCFCFDF7BEF3D49928D54553384CBBAE853943C24496AB179D3DDF8C29D5B4EE71D90712423CCAA01A4800F0A9DFA1B5797E7F67F432AA6492AF4ACD791FC397EDFDE1BA78080318FC4B36A46DBE7E7CE9DDBA06A8E5337CB5AD5CC9B54CDA0C5D9BAB09F01C36BDBDDB45C38D925D59933672A27250EF8AB1D3287E7447859105830F84048E92F56BA214ECEF7F159AB16758FD42BD3BDA15E684288BAA582F0534F3DB5A1EF71EEE98603C94D67AC1E7086FF2DAAA66403DEDE94B8FD3177C34B77D15BE21C9CDAD83E7BF6EC4159C5EEE6E75602C44E5F4AF886A5B5EE535CD6218F2EE0088CD7EE3D4A52001840C2A9F7F5A8DA9FA74F9F3EA0F179F1C517371C5096EEBDCA8163E5D5587774301B23E58BD804721775C35DD40177735B4E322C9C08ACDCDF079100FA1C138E4460F2392D87E1AFB2216C9EBE139F6AE4C6BED777632DD891A4BE8AD5490B90279F7CB2FADCE73EB7E2299E7BEEB94A8FFABC53334B67B856A58DD124892137E8DAB56B5BEFBEFBEE8AE9DBDCDCAC74A14E651CB0A51BFD1BC7C8B2D220A48A422E69AAC158427AA448A2142337F5FA7C4968DD5CEBD5586F86CFC95E13352EB03CFFFCF3B31FFDE8473B4E82CCDDF8BB69D83A10B3BFB201ED447FACAEFB750780434E32ACA48333906E7CF6B39F3D2486CDAEF0984408790D5D2E38D5F34859DD6D8C6529491123C29A3810FFFF00880F14AB72B055B425F1D77FFDD73B172E5C90AA911ADF56249C5BD0BB5B05DEBDBF71F9F2E5538DF7E0263F364B371C180ED6FAEEA61369D703376241B5323CA552EA7D8E798413904D4226CDDDEEFB0F0456D2526ACA7D6EBB6912611543F3D93699FE24B4D1DB1620A1CF98F7785384DD81884A911FBA655E5F4DA0BB9F1D73FD3A75680E44065656A218C06883E426DFFFEAABAFDEFDD65B6FAD7E570C6B64CFA715185225E7826F2C16A26EDF8377901E63FFC27BACEACF6F3811F77BCF3CF3CCAFCA28524C8158532E583721C3D4DDE45F7DF7BBDFFD374ED21C76FFF36987F87F7BE5CA95C74DFD8DF7DC6BDF74E2F1A28492FBFB4D31CA818DADC6BF6BD054A9FF67F6662A03B894C8F15BDEAF2774C319E4BFEE56F3A33218EB31BAE9EEEF876E5C2FCC3EDC92FFB986D66C08EAB51BEE9E3FB8FFFEFBEF759FFD6DE795AC68615504B607754A9C5BFB1F2F5DBAF40D73ED60B372DFF3B7DC387F7B766BFC482B8BB67093F2525F1DFD3BBFF33BC72E5EBCF807CE72FE1565506917D0CFB6262056ABC8DD881221546B70CB7DEE0FEFBBEFBEBFED5EFF845C5E37683F72C6EDDBE6EBDF123B3F1B38EA7A80E381B7DF7EFB7F38F7F3AC9BA047746F6EC1BCE8C6FBA2B917B915AFCD3EDCA2679778C781E0A1471F7DF49FFCEC673FDB944D4124B8955404F51C3D7AF42FDD42FBFDD217BFE8FB055FFEF2977FF7273FF9C9BF7496F279D91BBA78194762F5A4FFFC1D3E678B9C770F9FAC37CA246EAFB801FC0BF7F75DE67AB66B517BB33E3F8E6586AF69653A892189F7AC08BE7AB56E99531203F551B90572CFA73FFDE9DF7CEDB5D79EFEFAD7BF7E486A5C8B49E497F88D489AE76FB831FFBDD20D807A01E32B5FF9CABFFEE637BFF9EF9DC772C81A5ADAE9D3F9D4534FADB6826D7942270D8E9C3F7FFEEF3A20BD6A06EB7A7DCE66777E3DCF9CE38388D80E4EE2134F3CF1CFBFF5AD6F7DD6BAED1A3B791FCA21F9C217BEB05A6876DBC0A9922F6A1EEBF88F652980CCBBFEE3D7BEF6B5932FBCF0C2EF5A50F8C7B3CF3EBB8AE1B046A26C150796CF4B4DCE3E0AE8F5072D1A50FB3139962DE72D875B44BFF4C31FFEF03331EA5B94815B84BBE531399C14D9FC855FF885D332E46B80CCAB023E7C67603811F9DBCEA6F864DBE7BEF7BDEFED66B3994DB3CD4CC9B0FC989DF913319F7FDAADFE8DA6CF08342AA9649BE0390FC469997B7FC3FD79A256CF4500D21918EE269E48D9FDD36714E403EAB54124AB7B361DFE381D4BF99CC60F095CF792BBE96C92796DB79D2905906C1BA3FE91F92FFFF22FDF97215D568FDFF9CE7756687796F44B13146E21D20E662CCA55D0B58AEB3ABBE4EA0F7EF003D9179FA801A155F8667DBE53BBFA37726D90452E20EAFF71F37BE8626A7EA4902D3128C3C9DDC84F7FFCE31FFF7082C22DBC9126F264CA6715CA2717B6AE4DF2626DAF1DA83DBB7B6B801CED0390790A2044D6D4BC83C81689BC87AF5EBDFABC734993B28714B1247572E6CC999F3B63E97F3A4BFBE60485BDC7C18307AFE6C67F38A3F31567E0FFB7D947E992028824F983B50479B456318FE4AA9879062064303E5CFFD8B9679E79E69AF3AF7F9468582D9D8BFA8A7BFC2FCE9379C5B8A9D3511F6E5CFED7638F3D762505140A7178FAE9A7BFEB8CFFDFABA9009B755F042055606309DAF440FD0302C5FDB5683A5AFF2D37E39EE3C78F3FEE2EF25FBCF2CA2BF7C76EC459CCDB274F9EFC8EB3A69F71BF4522CE7B359BF9FEAC258D2F363E23C446E55CD67FE4C6E91F28AC2FF6A1B367CFFEDCA9923FBD78F1E2A57A2C6FD644D93B3567E2E7DBECD49FD17BEFC66C10D857544C081873030874D50335200ED71204D09CD9DCDCFC94F3AD7FCD81E3A87F134EFF09142F5CB870E1CFBDB76ED61776B16600FB4E7609A0DC6EB0C9763BE1A4F0DF776AF7736FBEF9E62D85704F9C38F19E93BA7FF5FAEBAF5FF0267FBB9EE4D7EAB10DB9FB3E40AED57370ADFEDFF7EAF7B7058ECADBD2AEEA0BBCCF03C43D35101646FD2CEACF1C3B7CF8F083A74E9DFA95EDEDED130ECDF71F3870E0A6338CDE77CFBFE7DCABEF476EE2AA4709C72627375B2CE73BAA81C0D2E5FF366AFBEDB803C0636E513DE98CF5E36E0C0FBAB1BCE1CE6B0E2C7FE5407375B63769BA320BED925968312E28264100C8FB92EC21601CAC81715F2D210ECD6EAD35C5CDCF8D35BC9224F7DD77DF03CE9DDA321E0FFB1D37EA93BFB7CC8D350DEAED7EDE77E2733A2C6DD4BA5F637FC881E12E27210ED505726DB1187F4CDFAD27DAEE2B550900D90A00E45D8789AD98C4B8AB9E702B21528B89F845CA961EC2BBE49A966A4B51E2F343AB25BFBE57A8FAB19D5C5EDBC9BCAEDDAD7E031049F0F7140713B331E60D80D84FBD7DBBFFFF4EB047F6039C56826CDDA24A3CC9311A6B7F72867308D80F01F1FF0140E60754ACDC25B50000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (87,1,'Rack_42_(64)',0x89504E470D0A1A0A0000000D4948445200000044000000DD0806000000027AD4390000000473424954080808087C0864880000000970485973000006B9000006B90185FA08600000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000020494944415478DACD9DCBAF244756C62BEB56DD7EF7ED97ED76F778DC8CDD5E804642462084108BD9586C6681905723849100A1D9F11720B1648158031B969660818457AC90062C4B0819B5B0842DCBED76BBBBDD2F77BB9FF751C5F98AF8954EC58D888CBCB6B332A554DE5B95951971E29C2FCE2B4E34F3F97CF45D1C8D1DA31E8FF977D5F0B81FDFE6B946838D0B172EFCC6EEEEEECFF7F6F67ED99E75BBE237A3F1783C827EBAFABFF55DFCB9BF7F6363636297CB76FDB7E974FAD757AE5CF9CFB511E4F2E5CB871E3D7AF4BBF69B3F9BCD663F36426C3D7BF6ECF0F3E7CFC7F67F0D015708125FE3BF53DF711A3146870E1D9AD9F5B911E7813DFE7FECFC9B37DE78E35FDE7DF7DDBDEF852067CF9E3D692FFC9935E68FACC3AFDA79C208B0698468FCC8F9912D7532BEA70B71ACD3FBFEE6EA38489DD9B63E3DB2F39AB5F3EFEDF37F78FFFDF71F5613E4D2A54BA7F8C71E70C61EF0A7F682DFB7079EB3F3A889C224377A318BA7B82016875AC2A4DE2702E8B3C964B2E4143E4BFD666767676403B86B7D786A7DBB6DFFFFE337DF7CF37777EFDEFD4AEFB7E7CC3EFEF8E31562A9B3F769F4D1A347BFBC78F1E27963C5B138470F9428D8C346F6D0C5A9BFF95F57DD13BEBB6ECFF967FB9D7EDB389C9DA7B023268E3A96C09126FC3F0FF7482E0F5B27DFB6CF8E4A6C748A40A953DF1D3B766C62D71376FF096BEB9FDFBA75EB8FED99A7F45CEBDB557BDEA51582C0763A8E1C39F2F8ADB7DE1A3F7DFA5494CD9E7C6F7832DADEDE86480FEC657FA567AABF8110FE3C904847E7AEB5F19475F2A7D6EEA3EAF4E1C387D5EEC5D50672D11708B2B9B9B9FC5C57FB7FE3C30F3F7CE6C52F3E26F1C8E430459FABE38F1F3F5E10439C011BEB306ADF0FC4D80C8DD768EE85EBE80044810822EE46B88AFB26C68DBB5E94C4A1B4475C417B5357B5D7F7394910CFC6FED08BC4050F1F3E1CD94CB2101F519A8688407A11A71DD3D0F85120C6DC5D670724068D1A874960124F06EA0322A2368B8375551BC525FE5E7027A736ED23881E76FBF6EDC55554D7F7A74F9F5E11154FF1A813E3708508BBE19C1D802063F73C44B0095C0257EE6B0B622442A85FE2680DA644FBE4C993ED04D103384CD6369F3C79B220C08913275670A3244AE1BBADD0E09113112F365D093273E232F39C639D9A7AA2B8362CDB04968021E21E11C688312EBD78E291DF4460FBCC99330B0224C461F9323542DCA317E8BE208FCFDC888E1C11F63A826BE3B881E7CC9DDED4D8FBF7D459DA22F1883925C60EF5D36651B573E6FB9C15190032458440AC059E885822840EB125C4B1FBB7A319211EED5A704D3D63F9B90E7BD74C44D0A8D3768984D76273C0EAFB9B04552F32FE06FD5898F1F5D75F2F3946ECC74B99691C01E38EA48660DE4214CF1D9E4BC611D026B143A73A4CBB4434B55522E339259E3C922213CEF19D3B77164004C54F9D3AB5A27F78DCC800ABBF7A51995512A449DCE789B3F2EEF8CACC22224008D34EBDAAD0E4B8638543C24DCDF1E3C7A5DDAD006A89088EF2E7329C31CF2869F316EC1827EE5B6088BD6B13F1CE89067F4B7C0056D4FC563D844360A51F4284F8E11E4F8423A8F64167B95320C6CC71488920A38496BBEFB0776E33CA1E58531380BF061B68EEFB5CD4549931E207EA859A8E75A2A089F2BA9F4665F062DE416C9A0CC7A408A399663918DE986B03D62A4D952FBD58884BEEDFBFBF0454BD40D31680CA549750D272844871C9A84094262260560FF2C0AA767A6015D1F43F78E2CD8D56D5DD7E30BD71E3C6D22E906627F9034BF479A941D1E8C75C31ABE09079813BE6B9F7968055570DA8CC8F40AC71ABEAEE4466F7FCF9F30BB1F06A7A4E3B8DA6B27305919915C03535C3CC4A44B1B64E990C4AC04ABF9CB53BB2019F558B8CFD3DCFD8294B0248543425EB74800AA8B671CA2CFA3C89990962ACDC6FEFDAD6BB65F67B608D6D9B787AC6A2AF1699F8065E84EF839945AC87865A12EFC2743BAF50CE92F7495175B3CD0A27E0A2C08E1167C4048ADD9155E6BF3A2A0D550A1A7822DD44F7A2A0157CB1A5CED6388DAA3E4F71019D459C007F7DCFACC32C536BFE6F0A54758800E8249E0829C52C7CD614D4F47D671C57710D9C57E04D1158110DB45511487D90985781AA73D06E0B54FDAC9251D157803570D699BE825468AAB18255F29201AC26FAB3A2C878E30E17628908A2B29F8283B356AC79B72F820854BD47CC0F500A58537E92564D3587BAEAB800552223C0F2D6A3F799F47DC40E22FF391AABD756BD8A5054DDE39886282F25865985E94D0F0147C425EB2244494418545C016ABBDAAC2BFA08AA7DABC804826CDEBB776FC186F851BDC59BD351C2EF0FF54508C594DB740EB0C38727E40610A8FA3EEFC327C029506EFBDCB973CBF93B339BACE828CE0B35ED933BBC395F52E3BDA52BD7865C88BECF6D22D39454F4101A5C8812A0863B40F1D41E45654FEDD0E813904A399C7322552D32B1C54B600A054D9F01A871B4BF4F3C893B0A21683F812B75DCCF42806A4964566619FBBB51E7F1A3EA211A05009500D0BA0851431C38C0FB57B1B79861BAF84326210D62253095D34E3DD5FB56CCBC63AAA473E04214A7882868AA55C69DFD78474EA01A22E8E14C672EB6DB9B6246676360CD6108D3AEFD76566DCBE46E42D91198129C623E7781A25E65076B1B632ED6B273DC5315DB8DF33278A1F08494073D90C0B10B4E0D023B005234533858ED4641E3DE4EFE10E1AAE23298CD7A81DC88E009AAFA508E128678D5DD03EBD6D656D3C5FC9FDB0F96065C1B11BC46A814ACBE0861A3BEE99D422560853002565D09435445FF9573550AF3F112D2AA685470C2DCE98B200ACA6363915295224E4C2870AF68EDC639A329F31F372279165E0EE3D9A64F71D1A0D01E8035362B7244C9C5936207D14AA09BCC21F004476E2169A677FCF004885D0168AC6A7BEC66AC721019C537953D84DAABA419CD2C298B3717E3ED9B28250C614A16A11858B3E2C7550E2251CB80675B1661CEECCFC54E43F24AAFA08A88948095F6AA8F6424DA6FEAE33231A0E6F024C68DE099EF1554F54E40559DA51F35C0DA292E93D2F488E4A1A0F99159178EA08C91CD847F35E7174E69AA3591BBA5862740C5998CE78946A438A8EF59264520B8D7FB52313300D6EAFC107D69D4DE54C45F3F1296E821A940778633367A7421366DA2E1815527FE55EB5BBDB56B96EE36D1B95CA03B618A63E39CECD1FC9FC82AC7995C9A6D7CF832F85697D66E510F819A6D2C49B2BF770384FCCF3ECDFF1D5C88CC20412DCFCE3A71C24C676BD707A6C81C0A0E9615056EDDB8417A970F409580B553AE3B694972D77B3F2AF9EDF845866AE9A2AD7A60455B45B4BCA6DA6AED0A544508CDEF04884BA9DD51E4FD508F18B25163CC79A732C9BD9D32888E1D3BB62DF33F91949B24042F0BFF4F7B9C655694B29AD80C7A0AA05A2532A560B737FBF140B1DA2A80EAA31E41754F53282106A56EE86F38A1E43C6A7521C6F18D48455E3A8AFC82210FAAEB8EF1AACD12051F7E8835E99268ED2348642E37F2A1EA140148C7F453EC1088D006ACD85A9E68EA4BACB32445C677CC88B0A11F8123A9D4EE8CF5A9F36C9FD6AE66BE9C132815BC722B3D925AEE12B0FD889B1CEEC681EE122190C7802FF7FAB476C5056AABC0B516580398CE4B5C3E29B17ECAFBE441D52F5B35D1EA55867CA6B2B8A51658DBC47D12CB9F0F7413CAD42CA2CF8897C676C03A5D005C09A4A1B19680B524322B04B1CE4F64ED0AB535FA4C6BFEA5B5E2B40EDF6A0E587DC2F1C8ADE8CC12C4B902F7522B304B5E348D4470CDF5EA42948890A35213F4C62762449A1771314AAF9CB7A5617A40455EC38A895E5D883231821F7819848A8993D358E38CC5156297CA5C783C418CBC12E70356EB38E060BC78A43DA42C72DFEE529F27317B4139890C663FA9D15E26871086883B8A7F9529389E003ACD3281E20B17A2282E71F00B8652D1FEA168AD392E10F7BADA04C4A99B6A8298A2B3EDD33173A9DDDEB1CC92727B71EFA0DAA6C6C7C0EA15B32A82B48D3AE2E48D3C0C40234CAFA01A1CC68BE8A23819ECA8F1935413C43ADBA4AC49710A2B30D102D1523DD0AEC3D2C579A5B6107A2587358E1D75C610FE16385127043914A6902B120795D78D1FB4854C00FDEF6D9C2E9A75ACA94E959289470A40AD09492833B0478FD938D7490FAC9409024362506D55DD8DD576BCE95F52CCFC229DC09E47FA240833A00F49966233225028DE30AF2248891D53FE054688954A4698073D62C72E7508A48CB19C161129CD369D44267502A868A439AFD4BA0EB54B0A24E2216065BD6E0E3FAA8D3BFC9394A9F179A094E81ABA62860B004DD507B74B9A76D2B813A88ACA924FE6F6D4D2D594A1672FED2DB66BEFCA2E64F67F7B0796BBAF297ACC3CDB0B5451B4526C16832A89BCC1DE79D623862C4AEEB0D2CB836A5BD05B885A6DDCB5B1A3F7811009C3A3668DDBEE514466CC846A8B40551CCDFA993675BEB362E6FD96EAB45F8189F7699D1A6A7C801B88BB725B00D6D4945C1D86B0076E507889E00FCB2A6A329A8760E9AAAD5E8742C17451C9A65A0FF10B86FC2ACC5263F05A4DA7D35EAD5D7534CE5549E11EDCEC736DAB45C6A8B8E757219588C05A37FDAF69DA7EDBABB52B31C1758833BC4D9D0F449A77C290522AA65BD6BEC417D6CFA456727EDF96AE1432AFAD0A3FBCA55B8ACD740655A2FA3E1533F6490EC9E205373450721E11B8F26B683AABEED6F9A9D23189CE51C92EB5F070C8EB66184CC488FC33AF98E50833F6FE0DADB9932D40324A9B8A8E7AACD1E81B54F54E66909268E03C72E03BCF8520F6D9326DB118A73A2FD324344D0B546DEEEFDD85A83648E740346A2CDC1C4E2655771FDB8D4195D90505082D3516A73E0F2C711143DC225F0ED8E115AF98189DE2323EC641BD654F9838276328D62EB30ED900700E1901B5F8B7421023C0A640D507A6FC1AFF2111A1CDE6F2FE553C7BA11FF5711923C2B6AFB45BE1475DD6F8B1DFF696416418B68CCBA0AD968C38BFC6D7BB100F64EDA60C22000CBB41006784ECB5E48EDE89339CF083CFC4CE05BD0FAC9879008A1F00A0FAE26EEB1213E10679EF220CFE559F49949B79AA3804372280EAD7C2B445CED78D216AB3D2D2251EA8F3BE7457B54FD58DFC9410215A6AA9F0928FF1DA6F0EF7D5F938B53B27263E833214A8EE06AA46C56575885CE1254F040CA990D4BBD12747E03EC441D4E61D734EAD8305BB739F61F61357652D9EC9EFE33E7DAAC46558FD15CC87D614AB6A7F48AE8C8ED752319CC09821B811D53EE94E6A0FC04A6C264ED1ACF1AD4EA22F1B6610D4F2546DA2A12A663E8B48622CF11771FCACD306AA2BD6AE116342E125F0A166FE0EEA716F2577A49839CD330BAC6C9C81587B50CD894E9C96B943C4BFA4F7A39C913813B8A9D7923B6A17254DE31CDA12B002AA55D66E9BF2425893D556E4B20A578C4B7A9521700CA0572A1801EFDCA2801C5656F95463EB96FC0A7CA9437223AA5DCA6B2167556E00ACDD5241FC5682582737D0417C700AE20C291E53B2B92808891B00E2844A114D173D64CE0A4CB4D4DC4BBD5E12F66FE9D585A8190407516EF4C116EF271975C942D402BD9262E68980A6A8976944ECEF5E5D881874220C350B52E90E296F59176BB74911C1AF67D3EC22AAFB9DCED661F0211A68AC9A7104ACA80B05609D77C1906C401B11F2F832A44303A35AB02C2612B0521FC0AFB6EAA4BA1B01A6C8A55F019DDA076A68F119DF0F764BA2E88A4095D08A12F6AA096294DCA19A7E6A7B92B801A23CB19175C46548D6C9B910BD7F87A0FCECFF7D88655B26979496F3A3927741595F8D84D90CBDC765C4C1120B8A4446A953ADB199560E29558A6145128A995FE0BCAE439CA101A17DDA814D5E32FCABB5CB584BD6EEF24584FFFC6700EA10AD5D751EDCC00D2060F56E80D24AEFA4C81811A66087AF535AA3F2F6E931CB6D871D05EE177E12D4799CCF239779991519974CB743DDA1B69A4324CD08C103D0F55A7247A00AF8FBACC99C31C73D806A9620256B37958A89AA4EF115B1A90E63D15E4BEEA090A92DDA7A0E7DC3AFFCCA59EF07B6763DA022428C486E8BA6BE0FAA00E37816B08A6BE3C4DE54FF5AB310BD46EA9755F88CE01C470DE1602F2AF2CF04AAC20E4A8C768ECB5867A7ECFAE553A84A861E8EA375A476E7AC71AEBE14BBF495100F1E77B17677F4A25C0A551CDFA536585088D692DA8DE3CAA790A6AE94175316F4813399FD677EFB67FD4DE69073E3AD25B51BEC502D7AFCBC298DB5366230C9A16F5C78894436CC7E227B43387003886385199A75241E714599CED6AEB6A8F72B3079009FAD337DAACBACF3E0C183C5A08973441C5C886C905AADBA879D4A1794AD51D17D8CB7CF84194AEEE4D231E23D3E3590F849AA44C6E1C45E4DD56ECC7EC92CD9CC46C0DE126664ED4A842940A7F6A8E329A52CF693B495CB98D464D8C4795A7AB9E67B81AAAFCCD0B7CEC1B4CB0A6F29656C75DF169BA952DD536CE7CD7E0FAA434A9C515B841B1873C20D9D6CA91D13A75A75B71B2744F5FDFCED97610C35D8ED0792B083385A808A7F35C4AA3B29667BB05C9B76CAE76411AFC38588D3BB64CC6180E25FB569B993D77DDE460466154212121F8D48DFEB6524BA6A87F40EE232C2B4B6E5EF9DC2102522782D55F24AB184756289B774D53E52BBF1AF7605D4A4B51B138250840F4EC55EEE211C6ADFDDBB77173E56E18582566412C51A6A97357713B454D038AE11327450C5FF0B6E8820DE0DD0A9E48EC433675667C06DB938671DA0AA238E24A6461F2330CC3AF36F65EDC65C81D9AF2B81EE5084602D257748EDD6DF7E495CCE19D435D89D742CFBED9E31FB4B9B9CF7A990B131A10E718DDC00A4749480B5CADAF59A1C11FF941F75A8F841550B0D1EAABCCF43ABC9428C43995336016FAB1392989AFBACDA3DCE55EEF7F5889466254E469D0FA18B7117E36EC7175F6AABD81D762725B0D567D5EEC6A776B3B9580E58BD3A6FBF9B1D68CD5D8A08ACC0240B510A1A0D3116EDBD6A370E6EEF0002E473EA7CA75A88190FF7F2659251293EB8ECD65918D2EB1C1A181449E91C02D6D236DA9D6619A807A8925FE1170C0DD9D215710056E18634567258DA725E52D6EED427A779474B45D5EEADBE3A2EBCC24753F2E5109A1071A4CE8B409DCC7FC54CE3756BB9D46E21B728EFB65879D2A3FEB1CBAE48D4632437B594D62D1DCA7E333BB062164D754B1FA64E767E5FCED7D3E94E8FA231F77119718044035F4EBC0F5F97DAAFFBD232E35A437E0755012A8BFE30BB87127AF06E006DC42EC50C02A58CD35A0C197B2D95A4360830E44077EC06D08C289192B6AA59C755206FBA04AA1ABFA9704E438D6B98053762EF2577BCFF37D74E8935055F584C54ADBA6BFBF8D2EA4BBE634D3D801AE232BD5ABBA1FEE2D2FA2609B0B4942CA80DDDE2322922C47E54515DB59BD7A998893328B913360B1ABDF8E28B4BFF6A0958ABD332FDCD3E7D4A07FB56E5767A5FB742C636303AA4CA8B38CC8A642874CE424431A3929D8FF8C775CC86EC42D480DDBA756BA92BBDF0C20B0BFC08FEE17A6B570A0FB9ED2535D7E78CAC332EE39260B29CA3BEC80DC07212D357EAB310DB0007630FB48683C4AAEB70216A20D416F24048E029AD97E914CACC8522485FD25540268A8B08EB161BBFA28A64192965FADB57C7C9CD3AAD5988A96DE2B176D91A815598430C3D68E6D3298288300256321662602D82AAB7229961200495EC2A3869EDA9DD7E607D7AA6C40AE773276BD73ABE9372D5E770C5D72F1D4A6A774AE7D0C0B2DA6A6B6B6BF6ADC210B11851C855D4970811605E676AB72C5D1432E94B3915E120EB76F7E5A3E2772099571E296AAE0ED1D225512607ACD50449ED2EC4BAD77859FB500FB5F5F6EDDB8BBF51C8743239909A5E9D854828C113224E64CBA54B18117BABFCBFA12D5183555EF0AA2D1532FCABC185D8E4B6C2DCA7A90A547385556222B04B47EEC1DFB7EDE2574A79B1C9E1062E4603D58359BB29359DD54914C3F7598806AA4F7BF4A9AE94DC11D04B29A3D407EBF00E52CBAC98850811BC1F952C61149D751FACB5C3D2D574FCF2CB2F2F172242384FA02EAA7B4358412CC9CB489F1A921F3577C0B9941695B68A7FB5263B3BD65437887641809AFCF6B040E7548FA03A150794B89489E1CE9D3B841F16FACAA84B1D337BC16E699E8E03DDACAD09BB8B7CD3A3982CDC1424CAF89CF61CB0620D77CA20CACD286C1C2AE0D2FC4EA03B8ACBF4B654423DF2338BB845315D322505AA7CD76537E6A2EA8E28A0A4A9F3220216EF902A4460AB30EB48DF1076A8FD24F77672213A4FD40639A93E5DC9D7351B7A06A2DA2DE2509348B8216D559344087B365D62BBF3D8EC6FF552875280EB2EB993C33C71F4CD9B3797FE559B96E75D08322B59BB2868AC950150C53DEB2EB9A341244B2867E1C635A5AB3024B790590A8FD84E9C23764466D7197AF025773448F2929112466DE9039BFFF14DA23A8926E20A1101401D8AE9EF0F4F1C71AF3C64286439F16FB5768DBA539272297715175E1A3AA8E206106EC8BF2A9112E79C3F7F9E64E3FA2DAAED413B4C53A555D39E8B40EF7595DCC9B5D53B9FB1BF02E67C7B6BD7DF0390F9DCB3B071E75A52BBD96D0D434E5CDDB6D6AE544DA768EDFA1598E2041143D416A00E61CD1DC627B39FCC09890669A37E41516AC176D5964C7E0526A9DD426CA9C3E0C91031446D521BF1858873A4AD322DFB5489EA69D7586FCA6A2432876A0B2FD9084D7AEC7FD3768344E7FAF5EBCB8588B8018C60F59AAA1161C7EF5856AA89E89D47C11F7BBC47F37F1197F10B134A224C9A95C4CBC47F4E4AF881ACDD78AD8C8840221B99CDC185F8755F04F171192C5D0626B674BF536B97CC21BD5484100104A8AC4F198AA5EB2BEF8A38120F56A0C7059BBAEE0DD1F87ACB6249806A48F9ED85E978211A3AD57E6520BEF2CA2B8B41F5A255ADBA0B54C91CF2F9A86D0F093E93DE3044B15D4297A55987F532C465A4B11A77D797CB00546BEA2D4B84704487DFF499C93C1317B34D350A62296359845154CFDA3C8F37FACA6AAA25351D3FAA4E4C6D6F511AA83EEF9320E844B8234894D18CE2D7F1E482DE555988F19A345F78491496B1C4B6034352C834387E574479C8C85CD60410D724AA36EEB4968D683F0B8678D9908253A543EDBC71E3C672D6912A2F5700557310ADDA5A880D8E975C7E7B6A6A0E2EC4B305ADD29FCBDFB5DCB7EF37DEDA2547A58473E20CC565344B92F73E0A7199AA50A65170AFA654068086791D5657DF4B74ECBB54D51B6FEDB2D930016F71718A83BD7888E3DB762898D498FC0097D465127945754F3CA177057734159D2EFE86CAE27106A2C05E1E76EA11A97D29FF6AA75A885EDFC085287190F8084CA5F0542A67BE23DF9620A3C46F9B941348276E808B172F52E97FC547C2F2972AF3DF3A3FF1FB5C5378E980667FAA735200E6EE4CDD3F6E214C2737802C5C650310F6B441ADB7768521E4A4E6F6C14C6D751F82DDE74283E71942E89CB97BE605028E4BC490EFB726B5DBCF3AB2C18222372F9526DB5772A7AD901BE9D4DEF48E52BB3D0136C2390B573AD546900DF78C71CC19CA74D2A069307C6A3735437283A8F6FAA2F79DAD5D0798CB4A71A476679C46B19C7BC28C3A10649C218AFFFD3E4BD7D55D5E888C4F3FAF89C91409420E9746410F97968A82D6E24FF58490176DCF7566DE8120FC7E2343947D3A870F78CB0D70E9D2A56535BE78B55595B56BD49DA2F242E10300AAE78A49E8F85E04A8A30C41529C350967B56EA301F379EFD254A5B16AD6BC79F3667D16A25171075F6A1CE94A1144D427133168AADCA48E4C0376F07F6E7619B5CC369B8E388BDFB39B2A49FD6D268506F68B2FBE80EBE725D1891710158940D68EDFF88F007300D599EBF0D87566E688336A214A0CAE13478CC5F353BBA95272479D4F2DA7ADC592492A2735E602114053965E2839A51A430CE612E56856680AB23F2F80F238BA428C3D9549CE59BA220E89322C1789B78DECBCBD2CBA05802A8A6B56F10A5A220421597DD154E7DF53E92F3F1BA89E6B05576467ABA0AA37417710410E5B2793D56CE280B77C24ECE18DADD3892046E105A8AAF32244AA905BA4D9EE989AFCC488D71807BD668DFD8B5CC8B065894BD6B6F09FB118C108B26D6D7D6A53FF8681FF664A81945A20850CB17AE9A59746172E5CD0674D759EAA5171A72DBF3D18520F6C469A9F3A75EAC89616A0041B88F0844FB48F5F5EEA74DCF9D863C7366DC6899B145ABA75EBD61323CAAEB57D62037834E54624CD2AD46C3CF816D551FED923EBFBAEB1E0F8873FFCE116FB40914544853C5F10BF2DFE5BE29AF83B160B91698823EBF2E5CB47F5B7D95DB3AB57AF3E0C96F811ED1D9C731D76D654F991D0DCCEC7C672CDABAFBE7ADC466642FE19D31DEBEF7DF115583B1721AB119FDCEFC83AC00F43D6B506EACD37DF3C29827DF6D967CF4C3466F2B09BE86F967CABAD1CA2913610BDAF04BC175E7861F3B5D75E3BCDEA2959BF741EB9250F3E761F74F58B76250C44C5C0A3A84A701B1E7EFDF5D717F75CB972455EB3AFAD5F5A4F78AC8D431AD3E26E3A75FD999D67CF9C3973CFEC826F40FB3032E7EC4167B5D8306405DCB3CFEE19E6FCC8AEE3B0A186427A8F13EC1EAA87CF9B026E94BEE3FFB175FC34F71A373CB5CF1E87A09A0A6C6B4AD6760E2755D9CB55FBBCFAF9E79F9FF8EAABAF8E19619E18114F87475E35625D5A7947DBE8BCF3CE3B873FFAE8A3BFFDF8E38F7F268F94023EA172ED3FBDF7DE7B7F6972FC87F68CDFB25B6FD9485DB5EBBD707E2F312A1BB05FB5EBAFD8F9A5BDEF53BB2AA6ACF57EBB368BFCC0DAF627D6C9D3C6D90B826A76B97BF7EE9689CE33BBBFB1011CA3AD9A682D92A25744A6F4F6B7DF7E7BF3830F3EF88581D59B62453969F1251870BD69975FB3177C224A8767ED76D437BA1E33EBD47FD9F5BF83D2B61BEC24852C7F72FBF6ED9F5A7B36A47FF8C306F2E4FBEFBFFFB0D610CB1ED7AE5DFB0311036BF2934F3E59E04830BD5FB2CB71E7EFD876AAFBF779EA1D128DE710439C6E84F8751143FFC8D36E5CBDC4B6EBD7AFFFDCB8E5949D9B6D04991480ABB129ED27F1E7AABA2035DED4F7EB4389C51877BC62B3CA0F62AD558367B831B3C113217FC7CE4FAC5B5F4AE53251D9AEE2900080F2B29C35D0BA9A72C919D72805FC83A110C438E09A89C9CDF873718A11E353FBFE96E866E76F06C2BC9EE398892784261A3B55CAF6553B7F64A0F385BDE8813D7859B4CDE6FBC746DD5FD877D79C25BBD643AE4F03D32B866FE75106B516CA3EFB5F6BFBBF06D15676DE095928760A64EE048E11A73F85631A5F4C0542D8B9157E78C4C4E34D9B497EDBA6AB5FB2173EB029EBDF0DB16F044013CA7F930B0F7431E2BE837BCF1A78BE6558F763953235EEFED46697FFC0A166E747017B96D10B898E9DDAD34213C37511C513E46820C4E1C8210CE71C0D4E1F3DFC5900B5592144D0643E1B557E7E907B8F066EA00F3BA1AD8F22623411619E068EB9E541F55998299A358CEE68005CB62BA5E4FF00FDF5693E9ACFE06D0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (88,1,'Rack_42_(96)',0x89504E470D0A1A0A0000000D4948445200000065000001480806000000493930930000000473424954080808087C0864880000000970485973000009FD000009FD017832FDCF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000033914944415478DAED5DEB8F5DD755BFE7DE3BF68CED49C663C7AFD8F1236E1E72402A6AA30AA10A095121A40A5141104408FA85F26FF0896F7CE5734591A0427CA8081F402D254A40346915A13E88DAE6A1C4F1636C8F63C7F6CC78EE3DACDFCDFEDDACD9DEFB9CFD38E39C736F8EB475DFE79EB3D75E6BFDD6DAEB519465D97B98472147AFA547F9B027C3730C1F26314E9F3EBDF789279E581A8FC78563421A27D6F2F2F203EF0D06830726BEDFEFE3BDBE5CE28D3610A7D8CDFF3F75EAD4AA10E0B746A3D1D7E5E517E5390872D3772D15049D3E6A4693C9DCF11DD7F7ECE78600D3F7700EF39D4579BE22E3239993FF16E2FD9D8C7F7AE38D37B63A4D949372C8A47F4DC68BF2F25921C6D2C6C6C6607373B3B87FFF7E531CB76368E2D88FF67743067EBB77EFDEDEE2E2E2581EC7F27A4BEEE74D39DDDFEFD9B3E75B3FF8C10FAEB49A288F3FFEF805B9E03F95A75F93F39CDCDEDEDE2344E88308F2BC7232AB26D55EE54D8F2A422ACE990EE198DE70382CE5B3B1BC1EC9BD7E20F7F7CFF2FA9BAFBDF6DAFF7E6A44918B191C3F7EFCCB4284AFCBC5FCB6FC6E552E6CB0B5B53590F77A18752BD4F7592C01AA263585989A107CEE228EFE7FCC9B4882B13C8E219245127C571EBF79E6CC997FFBF6B7BF3DDA15A2C8C99764C2FF402E0E9CF0BC7C6FBF8CBEFC713F65127D8F7A325D440DF92FDF77EC89B5FF5F7F0E6ED08F5544B107E610924124C45806A8744F88F44319DF120EFBC7975F7EF976145164F2FFC11633F207BF2B275EC69F51C6EAC9E34AD18FF673BEE630AF21D3AE5728F8D29AB0D2A74742B98EE7D7936CFF8779DC2BD707455F8030FC0D07BFAFCFC5D72424DFC3FD0A7126D203EFDDBE7D7BF3E2C58BFF21EF7FA8EEF5E6DB6FBFFD974E482C27F9239B288F3EFAE8B5175E786119CA19433866B212F89CEFD77DCEE77C948BBCF4D1471F7D451E71D77DB9C881260889A009147B2C2C2C78919D82DD7C1C1BA28C4489FFA65CD7DFC87B7B710E0C790FBAA4C7D718FA35E6CAF53E9FF3F7AFBEFA2AFEE7772C130D80C14B941D6C4DDC0EEEB057965EF918D42558295C157A4592AD95D25F12A2DCC1DCE16FB0C81401F42852895273F41541F038E63874E8D0C664426412712FA22F26D78D7BB339DEC5A99AABF01B0CC565A54B847A8D47175138A12E3155050CF01938E2EEDDBB13EE20A1708186536E1983756808D237933FE6CADD05C214156360FE731B5C0BA311D7496EC3F513CAF33EEC8559376CFD954C944097C4E411177DE7CE9DC9204780CB706390AB208E35410335F4C48F1D1CD388F7C4105F734BDF220EEEA7EFB0F4279C4362E05EC041449A1E51E966D114A2B890914B81E38244044179F5C426E991E5450F4D8842FD4102690E33CF078A4B7A0EF1356E98287A41F4D5B9FBD67BFD2A83D5D625B84F0CE88D7DFBF6F5080E7C8B379B28F60931F9EBEBEBBD5BB76E4D88820B7CE4914726BE25ADC86D02E0BB24A422AC5EA136314615DC522610A1A7FEA76FFDBF7EAFAFCD833A91A409447D8AB9C15CEEDFBF7F32F01D2DBE34D1928822272CAE5DBB36210408823F585C5C9C1081DC4042B8B8A9C6201D583078AC88A247D9B0822FD5734DE48204C1B0014D8858A2B82621A053214D386770C6562D7E2751EC2FC9C9F680FA62C14FF586CD0D3E62540104F99F056B25971EF1D5A4082B1CFF39B6C456612133E73D85F8E520CE0E1C3830D537D0ABB07D5CF31C4514A1F4E6638F3D3625460A0050AE88296C8683D2330165C5F029EF502F33A16FA138B3EFFA0D5634A1ACC3F08D1E20CCD2D2D2E43F630095932898C82A38ECB3DCC955605FAC102D5321F6E4F5ED8AC92B2DB15556102086834A0B7A6BDBA8D08B047E2C5C3F212CED15BE1783B65C622E89287CB41473255760B241044062EA18B030561CB9CCF618FB56AA877342095156B86ECA1A20B0E3371A31D110C441488CCF7D682B942855C419D641351797DCBB776F8236400CFA7E0802B4DBC523D60A87615735C1B108ACB09478E981BCFABFC1255EF4A56D162C38CC132401EE9590984ADE35B49F2C9A28F64E9D1649376FDEEC7DF8E18793E7B80028330C02005CA44FB459CF8B9AD55E7AB8A58C10574584C88BF61C68488CF9C302C4DCE03508A415BDB6E8A388E2DA580227DCB8716302EDF01AB0EFC8912313D1A61D8D1477750471ACD032401485E817DF241715EE9AA2E2BAA20E480997CD02E31AF60A08142DBE6CD9882FCBC916418C83070FF680C2341148801004E600060B2E191E419814885C27FE0ADBE7973AF07BD826DA6681AE15820C5CF35CA17FFA3D7BC8893660A3183857C90555888C488EFB3232162B0852058BC71E5B66ECB06B4A8FE8AB25282031DDEDDA291BC0FD4E9B05D265757575320DF61C07892F974E091149F66BEA170C426B9CCF3CBF1DB8B24BCB7B1C83C4CA401BE8016E112950E2BAB91742C2708B22CBA5D0EF87EBAC2AFC1C42105C2C5C31107784C46055DC54A0B82B2B14BC6FB58740DCD2321CCB10B1ABFD76DACEA29758EF1B55212E5BACD9602A693FA58A18584D50669097E00010010ACD07890359BE0CB0EC43157E6911277B4B80AE7AA22AB33F14ECC6CFDEE4B275051105601FB842C546EDD8FE4D54C065850FAC8E383E4EA9135F29F68F1712D3418B39A1CD6213247B930BCF31F980C4B04FC00D10474063B6833246D4392EA6AC1161E3866C96E0DFC7222ECD41788EB9C29C695BAE11D7BD40E2A52B57AE4CA87EEAD4A9C91FD5B9EB03895354ACD210D11543149B20BD44519865B360FB037838DA756F7FF9EEDDBBF74E9F3E7DC0DE458C85C75AC91BA5B812684B940D58F7452C3C96B99B4062C2D65CB4057186CDC0B5B5B5916DE1477B89631198ED61A68EA18D42C7A51CEB91C4E845E89410C2F4AA1C95728D25B77819CD1322D2426C96ECFD1497E154F59AEE7AE82110826E6E46B754E8945EC0A4E510A5CEBFE65D88B80FEEABD8EFD9303F8468D944A9E3165C14B73CCDCEDAD4B5409147C331722FA4EC8541E398F3A66E9A3DB050F50698368E6DB4E5E394ACFD14DB4B8C035C005401DB84FB0970D7030C108DD9BB9415AC5D36B0DA43771EA3B82664D553A1D31D83B9C1BDC344706D8665B9EEF517A1034004A007AC0A5C007C6120847650526FC4E89DC855DCE4D1C8FFB908C4D023BA9868B354A5794411454EB6F4EEBBEF4E5CCF478F1E9DBA18B4BBBECE1119EBC08B115FAEF4B78A9B7C6844B7438FB0B0AF5FBFBE0312276F72DD93E3DCB973077C622944EFD846A391BB877A2D3E307758E14D1C8C0103816EDFBE3DCADE4F89B547EC470647EB000CBC96735F6F3351900444D183E18A6C49191473A1FB29B5AEFBC09B99C851283C3AEA78437A57B2C5D9DA0FA04B2C221D38816BA703323625512BFA28A2F8BEE4E3168834C613D39D0DF4C108FBA6124F1FE6E1731B693F17171A457A68A07734247639245D9B57B04BE02DC605E177DCFAD481DD75A2AE2BC4097142D20189E81E13D7E6DC67B13925CB750F9B04B018C4C001F703B637B96F4251D53002EBCCA13DC424040804510EF3818A3E9B28460C2DBEF5D65B136507BB04690E29EEFA793A74AA1DC5190884058DC089EC4D2E99FC0D81C4CBBE348758FB4459B9AB5D80C4E4FE9CC138623C5EBC787194B49F928A8C7CFBF690B50CEE662CB1FCD78DB64362BA4B18D592EBC277A1AFC633B97C620ADC441F10F7AD6998A6C0C84F53C96B116DA77AC7A446641125160ED337064F31069187DEB366A47A97748D4B0CD136D1F616ED98D0E4D4465CF72E488C0B81E2826D8247A699610F5AEB1EEDB29F35C5AFE12D0D4A108792A02A5DA2B1FD144C3403BB31D9200273FAECC0EE5057CCAC4262EEC9C38CA092A772CFDA79E4A39C742F203188003472ECD8B11D06A2DE4D9CC523358E58DB2C380087313E761267BAEE85005B02891F70D7872A7E576506A36F5A0F8981BA88189BB259D6D6D6C64D6C722555ECB3F3ED75D8A7D90CEB0424A67DC1C206B98ED4E89D479751E372DFD7E9087214F7AEF5E7B4599AC0FCBB2DB6B09858810803360B157BAA68335C18EF25767DB94A2C31B01B488CB60903BB09916741EF706F88E9D8FAFE43EDAF64D7BDFEB2CF78A4BB1EB60903BBB192C0E6E4942AA2CE0200B0E789D1A32E6EC8268AEB4BF843100190182CCD44180C5D7922C6E8ECCAC48706E0317002F3483B4D43626D3C86BAB39C449193EE0124C6010220B09BEE0772C4BCBAEB636C16E3217642E268A2C809B74F9F3E3D654D57144B2C3C364866A5CD132BD7D86711B6260924C429B3F753507981A9C8A9F689DEA563E4A410F9769B8922F78BCAA953484C389C82B63481301DD94489F5126B271D03F4782E5697C36772A3A3B68B215C2750251E991815EBC6AF2A6E90449450FB843A0637C0C06EA38F76188F5DD62DBA5C21EE83614729DEEF28A2C4D418C1C4C3E106484CD73C7E8FF0CC58DDD345BF97CB08A684D048CB0789A31C92AE93680311112C40120CEC46228CAF18DBBC1C76D53B061C5294332A548BAF60A2B87488FCC9C27BEFBDD763E551C85546D757D5009B07777D9578622C31E388B1904D919D22DB750FF4858A13BA0E8BCF5D1F5A82CA444CEE6FB99778925E9793B5654362A2D8E8EC60075146348062E1B0559E707231B8511311B3DD72C55E32C8D097F798923D0C97BB2B903E8A282990983A88112C3C0F73204D9EF966DBF504E130C5366C16960449F572379234E4837CAE7D7BC262FA7DF4F92A52EC3A81BE68B3E03E088753F758B2F753AA0881150F58AC03BBD935C287C4BAAAF06D384CDDA0275947BC546D1527EFA7B8DCEEF414B3208EAEC3CBC089BA761DB30A89352CA6374017D37189AF68A2A8130CAF5EBD3AD9C0A233119E62978332C52F368B07ED125D0414443239F94523FB29301057565676C474B9EAD787D8272AB7635FD7217168E09D0EF476E99414DFD73644541311F65839389751FA65CB4552898964DE63139967A6C8439945945438CCE71A1213A1B15CAC40CC7B6D774032BF041C0338CCEDEE9C7A2D49C50D6CA2C4AC10E63B320284ACAAFD405DD32976540B6D161047EB8D1803327B3FC567A51361C04B8C156597C1606657DDE658170F5D5E5D97040975E337BAC9A503BBD9C486E509EDFDFA7982C3AE10231D89EF135F4144F1ECA70C5029812D9DC0BE200202BB43EBB0743DA225B61B04172B9353E909C090B92B9AD84F190081800876ABC0D4C00973DE85361323C7BF65DB2B84C45AA7641105B60FD31D72563D5999B0588EA5361305CD67609F71B537719880F13279932BB6EE97AB3CA1461CDCEC213ADBB76FDFAD962BF392B15A80C3D8D8B3BBC1A6A64924EFA7A48825DA26445EB607D9B65BBAA25374BF4A10C6B65962CC86A4EDE0BA869AB681850B656037D99CFBD4755D8ABA78E8B21F10471C2CC2164A98D03918BA3CBCAEFE29606B067633029DDD84D88A765620B1AB1F9786C274CCE2B58EC4E7A2F425A786CECDD05324A6805D82C19C462009BBC1A6CD15F3E82176392375DA373B7DC7CCC1D0F3E53D987C10816EE8944E7636FB76051237154BCCB864A0BA28A27856F2A676DB87E8085F1975B03294A4F97CB1ED9018B568088973CB8150C2206D2F466A0C037A68458921ED9434BD1DA79528C4F669758037213116131612111795748E2BBF099D120C87E980D4E50935247601802EE8092A72DDA18E9038D6931E1B533DACFBB28B20B8509DEB484F3103296641D1DBA540E8C667C9753CB29657C87D46EB943AEE0007E8069B2A2F7E8A327C5BC5B388B66C486C7BD553A170A54E61853740621082C6A1DD6033A593DD2C12C976E1EB823A3A14294B7CC9C916411496DC6BCA5D2FE71D760512C7666CD9E7E00EA509501C34A15336565757979B70D7730B1504960B6E75340BBDC414C775922002128F62B8A556A7A4DA27CCCD60BD6210F8C081039DF012B39C2FA40475464EBD169BB3EA88334C6D30697B8959FA8317AE37C6BAE825E6CE2183264020A0AE1448DC884EA9E316FABFC005445DBCD0AEE7397A38685A7B58871E71FBB74E942541E2109104021012B346A40EECD6F6C92C232EED6CA4CDC2DDD5BAADE42CD73DC50FE42B6031531C98AB515579229775BB68B3E828169D2F6AA3B82C9D02488C328590A7ACD81DEAAEAF796C750702DB3A8F1D9A10BAB5ADE8A37C482CEF6D1C3E7C7839B50E8B5D5086AC2D63A5ED9018D90534909B72E1CBF9464DB8EE938C433BEA1C8FD0458CCF5D5E5E5EEF022406C26246B49DFBD984C84BD62931CADA15B5C12816BD8FDF9583E9D680C5ECAD8561FBB9726AB644BBEEEBE0311108F7E7B50CD536CB2C28793BD09BA1478C5108B5579AD0290FBCC6E4430CB9EAB084AC845941609C076DB38414D469C475CF069BB04D183CC162D1B935C0BA0479EBD01681109ED36E7395A38A998BBEEB4772E2C5B5B5B5C91F21B01BFBF5769FF5941DCB593FEC3A0214F3682918431CA7F892936E1C3972645937D84C755CB2E284A9A9D8EA62D1A88C0748CCCCB35CD4C5CDC068489CEA900CC1E76C9AC68E3B02895B5D2C1A95F1709D5C448CC22198C9896A49D22931B0D8F79AAE06B23103BB43F626DAA44778DD20100803114E9BE561385C87317F606F79EA346E2D5375FB8A59405B003BEC53AF6D16DB35B3AB90D8C5253AB09B93AE8B76CE220273A12D3B39159C44D455E5C68FF212574D1ADDF5ACC3820317420725E5EDBC22308A68861E312ECC6554667B8901892F5FBEDC63A23FDDF5BE4E76F30A815D063689C15C5213859FEF2506243E76ECD8726860775D3B4136C7916B6B75976D406204B5735735279698BF353505468DEC3C66269C4EDD0ED439D04542945677D9062466976D44B530EAB329876AF6CE630A3174DF5CC24A4262B3D9D309AB1C0B08038B8B70D8844825A3CAC6BCC4A17558187E43984CA8DCB52816D7FD136DE2118A1C440281B8F8EA7C643EC9936DA7E8F27DF61E89ED809B6500C0986A46E2D3EAC7739F8738B652AB57A7684ED00D36E929061188C2BA5827B2292ED2C1EDBA2E7E55644BF2CEA34CFA5E54C6A3DB042CAB03BBED9E5BB1BAA7CB066455C9751D7A445BC540E27E1349435B478E1C09EAEB18420C4262796CBD9718A88BB5316375A286C30CCB32B1C465135EE23264E2AB82EF18D80D62E0062102E5025BEF25A68F0BF60A2B66D85E8B046E2B1BD9798C15433A180D4377B6D3DCD60565AE2131E030F272A02F5CC51B76C35619D671411571EC069BBA34A12B85A2CB9018620804222466BE7C6A344B3624D68615E5ADF6F37085CDBAEF8BA1BCB4FA610C739BBCCA85DF0851B4BB9EC1744CA76360372E2236B3ABCBE8CBB54019D9430F3121B1AB6E58B64E9113EEB976EDDAD4A1863F03FBBA7ACECF321C0E85C6BA4D14EBE2D3856FD0673F663E7C9CB26D0776DBD9BF3104510D2A1F6DF3C4C39ED0CD7B72FC6714EF267062DC84F81AC71664B30F7218068327E4623F6AB933728CC9C4350371316ABE0148BCFB995C75E144605DEA225D174C56E1A8ED224A67411371C166C13DE990DC14D415BD1D5C0587EB38459726243AEB926D5285B6D03719862F161BB80783F5F04393531B491AF24D3E9D70761420DD0AB30C8B5D360B20B1B659728DC65AA2E8FE29BAC1262D771221C6F5324BC88B8123900A8C6AE13E0B8DE946135185F20BEBEBEB3B72F9884A5CF926F31E40A1A35A187A844765B314C96E1645D5314B133651289A8565BAD05210364668826D1591A84FD9AAA309D7FD28A76507D997A56355CA40ABD1178B3A6341321B8D316F39B1C4B1FBFAB501DEB181132C27AE03BBC9DA62906E744199D3430C3184FD152C2C86E3A6EEB43616E01D63288210DA61D9543A411B08049D0AA405380C2F312B1DE56C85371ACD52D560932BC926C42CB8F0C9EDB0592096411C0C067A8788B8C62031E11F573E934E5D7558E6058531364CDB2CAC3199133051E7251E3265994460180DEBB0CC837D1263F933F488512D2CA86316703A24563F2A7460774C1D16DF0A3161AC9D682968C3FF18A465D797D419D459E24BD8F33EF74F52E030B98B06946A9CD689968250EA74BFEB3490544F4053D12C49088284306135D3866A78C42190B8132D059193C3AA4DD857E2FDE4A2C95D2B57687F4E370C5785AEC5D24478CEA74920100703F708380CA3120A9D7A24D68DDF8897D8B737ADCB27F13D9F3B66561C92445BB76EDD9A701089C4C4DB9022A08D5AF47A8F44DB27765BBD7981C42CA8C3CEA98C6A6140496E1AFCD0A31B06D00374D7D3FBC9C0EE79F41257F9B5384F78A40B9FC1135AA284CE4BDF05FD90A387137105D82595520861307BDBBBD7EDE81C94CA45200E17B539AF739EA3C4979C788B010FB985A219816EB8ABF5E50A0989E980CC85C4E63CE3C6032762B8834DC4C8CE402F50920612DF6D335118478C6B66339EC3870F4F1B2DD0284CF16B3556AE30841884C42C4F48BBA46B81DD2E024199B3A237D016AA394182106DC658FDC96E96D0BA2CBA572E81804EBD9B4548CC5220146FD867C12337C372167694F8D2B60957BD6E5CC3E089109C3E4BE80B8B8FA1472CB90E4E22DA0A49814FB1530A360ED015BBF9A7F39AE7E89A6870894E4EA51BDFF44A9E8AF86CD7BD4CFE1EBC26D6A67EA873C1D4E99E596F29A8438FD8DED6CC613F59A7280B7E136CE98AA38D411AD0396C036E88D2999682BE463EB1FE3313A6356E44A7C4840FD98400FB72B5404142FE9AC089CEB414A428829758B745CCAD90976DA7C440628A3AE63A62C4F4EE6A9BBE60F0076D2F70D0A14387A6251863A17E6389A821C4D0BB6D84C4BE5C96AE1EB8A71B376E4C3A64B0980E6C163CA788CA31C283748AEB3D5700372328BBD86033156DD1A8C402A4CD022E82A8F3B5B78DE614DF97E9AEB77BCEFBFACDCF93C7D8E622ECB1405C33F4084432E1AACD114564E822FEACAA0E4B2231FAB34C203BF448B9F0FB318471260D094136841D97ED3A2C29257119816E12331F69F3A462C702C5A2E9C1B03DC4B1688B6000697B8D6C0787AC7CD77798EB08190B820212B30A92C0CB9B5D80C4BC07C0611ACFBA9253AA3E6A0C12871087DD841896841BA032EC62E50986A762B00D3A832608971F0A24AE124F2E7704EB44E2917E320CBB62F72CC41193400CF4068120E670FF1A7DC6188D8D7889B91F6DC3645737A159465CB85734918358861207D282DDC27D169FC7BC11F1C5441FADEC7548914DA47984C31473E016DA2C4C4E65E85163E50A65052CE1CF7420412C013C1751745D94550DA64BE85E5E26EC28DD4BCCE772F27B42F103AE42D1B1DCC0786283D70FB61C12F7D95290522295DB755D7CB9EF71E33B8FB1174622E0A0F247B6B1DC70AB2BE389989EF44F613979B6416765BF871147EC254A9D91683F32E9945C41B4C29DCBAE1DF4028340DC8A78ECB1C7A6A92120524C1C7132248E2D9B4E488C8B2624661D165F45D62E1EB80F788731A063E9216635F2D8823A59E50A5DDCA19B6C32D7D12E4F38EB1DB689B6008B6954824858A0BEECE146731E7D7588ED64D47981C02EDF96ABA00E44B936191A210A2131D1930D8963B78AE7E1B00BEA808B20E20C81FAD93A8590D88E624939184F6CFAA774A2A5601341133AF408903846A278D157AABB9EDC65883085C4607391BDAD2F160D85CE45047D81FB62147D4C39905DD1293E8AFADCF58C7162A43AE0246EA48B817BE4121088AD798F1F3FBE63918578D71BDF0EAEB34F3424661D16C6DBCE4AB1688A217039068BE920AA85F55A68B33469400E633983C460C826E3A1AA1AA8CD920392FBF110D1D88F870EC22309E8B3591ADB7974952164488DCE8E9D37A4A50051EFFAF5EB3B9253B9CFE28B6AC981C48B84C42CDA19CBA2F3462457722A069ECB67FD6CD7BD88A40D516CCBBEC0EED0D714775D82C4764BC114BDA0DDF82668641CA553721A38FB5E83BB740364424AB9B8D64362DD52903107445C3ECB3E152627E9941882B0FC0703BBC1CA90B55D83C4764B4176AC43E72546E7A41895D93AC55500D9F53D4262AC2CE63AD28AED6260B7CF75820185CE0E442010AB946B0E6A8C2821BE2BFD397BE2127D1012375113BE0B4625BA65C066C142847718B161405EDCADF4EDB3C4106758D760D3AE14CA808A1077FD2C2330CC032C7E2C4A886D46B540D4B92A7364EB1459057BC1B27A675113A949569D9583A540A04BD95582FD876511F7B3758A9C645A71C217541753A690050FBA0089319184C455CEDAAA61DB2CAEC08920378B25A2825A0A564162AE1646509A567DEB6D87C48CE18265CE9A994DC71127250DA5108349A7B062B952A010F5CDC867AD976BF45F417CEBEA7858F184FA2971C4BBD6BDCEE59864834D269DC236E1BE7DD7D198AE8E87830D6E200118744731F750A3596C773D3882958918C1C250A259B04DAA0EDA616B6B6BD3CC6114D4C15CC4EC5426EF3CDAAC075666D5545D29CFD721741E7A3EEAE45446E2EB823AA941EF4EA288A25BB0B398E8B20F896299B7A816C686D16661BA04F49181CB45B6452F7F32322EE7AC0EDB1A8D1991D7FAF43A88A55CEF849D2E81C278318BD5E925468E9EAFEE61A87DC21AF0EC16615CD96D2FC256E25AD97A96F501585E3E152CD80573B21BA5C5A031E63AEAEC27B035FF433E6F3D1CB32B4D40044157E0603F98947AC40FAD0C886EB0C9382710812540BA5E828A880AF61638077EAD13274E4C88C5A2D8A162AE712FB17E5FD761C105EBF284AE266AB37260F2A127303007F0108383D8393534C3A09172855A59732751F753B13DC5F380C0B48718AE7CA02D108875F175C251633B8F80C43404097F19D55257367D1E3DC4BAA00E37C23020D64D59AAA289A4A192CDCE34724825806A8AB3DC76480CC59E2386ED22A02CA493ED6611F9B95DD51337C451C9AC2E46ED1B1F51ABBBD7B1CF09C41121B11D34E1321EAB86A9715326EB14FB0F6308416E605F2A168A0684E4770520B43ED78E451ACCF54E563AC254999E8DFB49F1EF359A885AD7D7910D36098971D164DFAEEB17DA2C48A2E596EF134F3C31013C0CA808DD89DDD5B2EA6CFEC51218761D969C9C8E2E382031B01881B6909CCA9ECAB45952CA7E04E9148F129C6EF4D0F5C0000A7BCB781E2A4D30AD0E1C842D641049A7786B53A1919D47F9A3218BDEE816E824C267C5A2771EE41226A7C2B00417519A08918A2682F10A164EF6C9C4D8D75D6E2918A32798CFC2E454A6493411CD729F1B5A2970583B288DEBBA732D0599FDCBD0A13AE2F8BA10818B0889B3928652DDF54C3A654E39410089DBE596820C9A205C8E85C3D9AEFBD013B0330F1B84D1B50D08D9751466B714A4AED0D13A31046A24C0BB4A4CD152D79D797460F7ACA12FBD3F44A31268EBE8D1A33B02481A2BAB1E4245DA250C9E60BEC9BC0476BB8CCAAB57AF4E240208041107B44523DA5163327F3B1875AF08874104F674E49EC13CBAEB636C168839A22EB3CD5164BB5986600BF5A776044B4A9A9D21EEDE364F301BF78470BE4F44E9823A409F20121679B64E118ED8AA0B9C0879CDC06E0C13CC376C3351609C312D5037554895008CC297F38D1ADB0E8E2506731DD9C4860A1040009F8BECBDD366A2B058340E16BD8128A2D58EFBC8D59F8D240DD51184B609D8146C8B5862B06E0A9E6F9B0392F703CE818E402910100B04C2FBA14D6E42177EA5F8AAA2326D138A24EE9B80107ADF7E960E88219602C1FD8340405C5888B467AA721F93207115E52896088959FAC3EE26342FC80BF7C9F2852C05824D309D9C5A15BC972CBEA0F088B618C1C2A06E3BCD2124936B96090402689B85C9A9D0ADDA66C9465F72C23DDA655F578725228062A65B0ADAC9A96C7083B59D4D1441209BC8BBA86B2758E7B864E01EF359E486DBDEFABC4068108DBEDCCA802C0592048973ED117D800870DA61A5E85056709AB0F5AD2E40625D6902F743173EEE25A689B34FC167E53C86BCA607153780CF70532002F6B2BBAA5F74A5092E348821480F234926903854CC3D949C47F66A0747E8069BAE826CB3E280C440882A1016441CA25A74F9933A31B72BD12C4627EC6887E40BEC9E650406918C3A2D189813B8F0018961B3702BC3959C1A332FDE9D4776D6262466E20F73E25DDC306F5E62DA2C84C5901C80C3B059586E9ECA3E7BE751F4C3227F4C48CC50A2984A130EC8D9768764749B727D60B1B27C2110276C160C11EF8D40E20D61C9659BC2B10E37465072DF5E6E787F9720715D25D5BAA0097291DCFBA8F19DC758773DCB89E386A077E85D15D6FEB04B90180462F681466339E22E9A535288A3313D9E8308F414CF0A24669D19E80A7200460E246EBC1F3DFB3AEA069B20840E9E98A54347E23329E8DCB973933960C44B55726A2390D8B36F3FCD87C7C4E342B05A6C77FD3C34704619100CCC070CCA63C78E4D6D369A0959C663D54472EFC46EB0E9ABC3326F9018F70FEF30FB78B1E4BA6E5CE04A388AE614BC16F9B9C8F7B5FBB9813A2CC5AC11468B29480FCC136031443B03BD45B40FB2758A88A50DB154975D76492C21744B4111812B6D9EE0265A0AEAB43A7251B497B82938AC03BB81C4986647B107592B37DCEACA78752D057382261ADB0E0E25080C43B666652B3E3828BBBA576FB7148412674B412C30001C86B0EE068186215D713C155975E9A409246684C72C85B1428FF2DE200558C8E0D4A95313C2914029FB2AD9E28BBB88DA526737A1AA50D65953EAB867C6864144031223F408D2829EF35DE9B2ADABE199AE0653DD40846173C4BCD622BE74E9D2649F058B15701891F8E02626E95675D588D22980C40C5BD54864D6E2B99A84C4901EB6CD02310702C9FB836CD73D20F1EAEAEAB2761DB8905668FF148A3D118187DA3CC128160DDB827B463909B7BA4F3D2031A3F0770512877C070460BE234B6940ECC9C55D6F3351502C9A2506EDA0899CEA78499038060EBB1E19D88D55464F31BDC55DD335BA7F0A17184410F4050EFAFC743062D3D5F186A9F609943F0D44C246B8EB536B97B4F5E0962EA27370CF3028018721967471EC4639253470C20EECC68560C580080402B35A024489B7692910CC070804480C09C1E454D74658A35E624262D828ACE283610776CF231CC63D33129FC57460F5C38D0F8EA208B4C14272B94242621D65EF4B3AFD2CEFF1139BE5F2E5CB130F319353D93955EC987C2F316289E1256687849432205AEC75A97F4A5D4BC150B0A093530189E992CA51F4658C3DE2AA3C818B0021B4B2940B6C7D4B41DA16208EEE8B5CA52F53638AA32CFAD0C064BB0E8BC9849D6E8B028D75ADE291EE9FC2386916E9E436B8AEF6B71BF64A728037F40DF03B2328194FDC45DBA46A0275A5092E3CF8B7181D89855727E61A8B66719D1862897BF62C20037FCFAC0676BB94394354311780C267CF9E9D108B5E735F3DE2C6EC14BB9B10DD258CD8B033BCE6E9808883779891F82C05024231EC4ADB2CD93AE5C081037B592B9291E4DA533C8F7D1DEBA408FBD4C395CFE45416015D5B5BEBC7CC9353A70827DC67EF945C488C63965A0A86A02F3B3955EEBBC46396F8420041ACE2B73D01402DAC8AD7B5968258404DB5143420A06C62E7313A3E0B37025703EB80D159D7D596822004BDDF10456CCFC12DF0DD82C33B744A1517F83AD9811B40085C3C8900B69D15DD8255CE3D79DC2F5B0A3EFEF8E3D3029E188C8F0B75DB27771AF2158A667E382E8A84D0FBF6B3AAEC698BB1E723ABE33DFDF4D39345C9045C9FB1DC282466D229B038D897176657EC9E37E485FB87031203901870F8E4C99313839A628EFB2C8DB8EE854D17F047CCDBA31B7A1E0CC41C9B856E7C7010F659B01906D146489C953424938FAE82DE76B3B1798FF3D652905C02FD0A298396826C5992EC6611428C73B981112C4463267FB0D545D8D05D1CD78A89D4AD10738226405CD8298DE89494CA1330BC8CB1344DFA0710E02137DB6A9731B7B9AB5A0AEAA0891845DE68226A5DD229CB1342CC41A662E76D5682F6744B412C34C07FC061DC37161CDE6708ABCBB277EDA5E4B8EEBD9B5C8C89A25B1B9C002547AB7D56BB6C43ACB1A520D33D60549E397366BA20358162254F88F82A94F29BC0611642A66DA2D1D82CB73BF74D30338471607E9039FCCC33CF4C9353D939350912BBBE2C7F32A4CB9E90D8AED8FD192CFEE40010B878F1E2046D4192C06641243E6C167C2622BD9FEDBA070AB103BBEB0041DD9F9A9682ADAE3801488C49CDF14C406AB0E723F7FA1BD129C21DA35C773DC51E88C19D4AF97EABB389B0186153612271CDAC9B99035C2061642EC6AA287A9E9B25061ED3410934A673EDA17F285BE5FDCD361345579AD0C1206C584D1753554ECFAE6572E9C69B759527C80D384000B02D12FF674199DB81DE2010143A0EDC2710574CA86E92EB5EAF7A1F31689B80CD09054104E663CC2A00801863A50956C73B7DFAF48458405A5555CB1BE1145779287004570FDDD4F3DA3F4557C7D381DEB05BF01903DF1B8D6611020C184EA47B6BE912209FF54FF9E49E19EFF6DE7BEF4D8C4A88B8F3E7CF4F380A3A687D7DBD9F2CBEECA636AE069BA9B2D214610B0DA82DD4A8D4790E83B7F08CDA83DEEC9C940EEEB330D09B7BFDD93B8F8866F185F087BAEB99EBA8FB777926276902138EA0FF616F469669C4C28CE90FAC071B170012130C35A25342ED13BC471000FD438CCEC20738565757EF3A56F5A7799038250D3FA22DEEB8425770B3AFAEFB431DC1A22CFA54F73D0EDA254C942124AE08EC2E725773CD798B041156B81C903A6882798F2014B3D862AAE345E9945817005DD820024BF7010EE231A360725121DA728812A5ABAAAE5B579A6007A213274E4C3EC3FD23F0CE571DAF292FF18E9341275024312800EE7A0D0432C5878F53CA0802B9446215A7248B4E1A950851651C31D01688E54B4ECD86C408DF64D22988C17E54AC4EEDEAB49D09878B0AF193C22955A2B06852A7C1648077180373C652200CF4365E8E225BA7C075CF4DACA602BB4DC0F86280D8E97926B28C145FBD40824CCFCDC4DB54CE87388728C302D65D886471177613A0682FB150760B94CEF112D35FC4E06EAC1AB9E981351121AB3B8420BD0042047108CBDD32C03D276882AE19B9EF07BCC459494331755958B0CC84D54C652F77E8C490BA5331897DF5582AA2956A4CFFCE4394D24184BE357CBA67DAF40C07F528AC73B647642468AAE5DFA8EBBEEA603B41BAEB410058B335FEB010F88A091C5B135E4678017C3AA51FC289AC6186FBE16283AEC07DB2A5200958E7BE8F268A8B9255628A690E6C4AC976824022818E497B8572920666B8947F2AA7900803F5180D225CD5F180B8E02506E1008743721F93DD2CBE42D1ECAB452F282E2433B0BBA8105D2EA2B81EEBD0574F1162A0463F4167396D16883828F30B172E4CE68791F839E874E849FA2958365DDB26580DBE3A2C81AD3A5C44E9AB553C36EF8D3C448925BAE69481C5957D8B384907832630A0CC21E2C041405E3E31974414D1117BD877BEAE0E4BCC0A302D054B87DC1F281135529319C221751CD3AFE194A968CC6D2908EE00DAC2E20550808883EF4CCED78F41714E9D2227DD1458B85C578725C436212CC6CDCA585493D057E285EF8DD5048E2D5D522670892D228766F4D5FF4FB9111282B58875E5F2D483FD530089ABB6D877C54BAC5F3378824618BDC4587DB2726E5B135C58DCD233C4187B444A0CA7EC90C896C2778208168BE6B603EC15DA582C725017E2EB0B94782801DEDA36C17E3588819B61746045039891A53F7A96922F1C4A3F87287D87FE2AAC736225EF48BED5ED3918AA8B203B2A7A2CB410076C32248E09F0D617096E604D7740E2BA1D3BC3C223CBFEB0E5FF5889169F6D5206724895FB5E1BA523B9B6D2B3A3398DC467C73A2C422404611ECC76EFD440DE75D7BD2E88C3A453FAC400FBE0848B6C774E457E5FC9F69E8300B61B26C7A5EF23A8D663DB660429735D1D8FC5D7E025C6A28492D7E91F36C724BB592896D8E9940D36194663EFDBD7AD006370DE97C713478E1CF9174C6A8E27C1B5A233CF072E59826F4E147C29F7174474569A2011305FA88C079B05F058C78665EB9483070F2E4234D16FE573D7D74D9CB0F75888BA0D5423CF073216E4FFCEFBB893316731C408FDDCF719DB08D230966B945BBD3F908984D21FC6DC33E60B112D089C806883DF0CF92C57AE5C1954A54904E91491911B32990762DCF57C0D62EEDFBF7F432E6A28D6EE18360F7729F93D3E67FEB97ECC99E018C2D1262141D8687465656501EFC962ECCB2A1F0BA14632A1854C78949F10F7C29E8F72EE510C473B754AA81F8CAF714342C34D210636C7C662302DB262B52606561D5E6345EA820078CE1132B13144A8220A33A049183D208A8E1F3FDE976BEECBCADF16026DCB221D09B1F65489B75DDD0E0E71D7C32892C9DF429C98D8207D91A70BB8214E3E078980C16C633CB7BF97E0AA49FE3E4373791D18CCC9D15C0431F4E4934F0EF15A08327CF7DD7737856B0632B645CF2E868AB75D75DD1BEADF958B5F10D1B47DE6CC9925B616E40DE23BAC71A28726845E459C80A60912F25B12863A1303D74A02C178C4E710CBB0F63FFFF9CFEFC5B93EF8E08381E88F2D0382FA75E22DC9755FC51D261E6A036C8BC03259398BC21560ED05DD5BD847000CAE3EBA5F7210530E71EADC421AFA6A82B1650963174E9E3C599C3D7B16A2ACF7F39FFF7CE2F3A2073D240D22399A4556C04864E9A65CE0E0E8D1A3C573CF3DB7971548755F475C2C1525F3CFF51F6B051E83B6EA569CFDDBAACF62F58DFD9C83F7CAFFC3DECAF3CF3F3F2194A0ACDE8F7FFCE3B128F711209CDCF73E9F9D52791D870E1D7AE0DBA2E4B6E4CF27EEFBA79F7E7A01F97B94C16471AD98ED1511238A5CF9F82108AB4A57F8CECFC9D40B429FC7775E9B485AE472AF89E20E03F3F3A31FFD68F4B39FFD6C04BB47E6A9101AD971AB57AE5DBB76CC27BEFECABAF83DF247E765C57F00FBE217BFF8C564D04D815A607200659D16FBE54B021757D831812E18B98877E4FD57E4F72BF29DDF90B142602037F08E9CE30E5D1BE67F8B9D73503CB08F6EDE2A5C56BDEBFB153B9D85B95FFDFB15B9E6551913F925138BA0ADCB7407E13AF11379C4356FCBFCEC95EF1E17D1B58F7B4E3407E4F39B72BF6FE29A4C6A3B6C94C3429CF7E5F93535D7DE82744996F557BFFAD5AFBDFFFEFB7F2B72F40864E8E73EF7B9E967D84390897FF9A5975EFA0B79F9945CDBAF098BFF3A58592EEC2DB9113A8960065FEDB5E33826D77C4488F19C3CBFB6B1B1F1965CEFC8B8612E612F8B2E99F3E7CF9F93C9FE7359E50761AD3FF5D453DAE88694F9E177BEF39D2FE45CCC30E6CBDFF8C637866FBCF1C637852D5F003CC47BD869B363A50414E0E6301E11A25F9795F2EF6022B34AB7637C4D0FE9B8228BE5A68CB794077BDBF8E8EE1B6EE95FB870E18F05717D5124C784A3E0F382B8D2FB4E4250C1414F0E7EF9CB5F26973CE9C77CF9273FF9C95FBFFEFAEB7F42824CEE46949BBCD7D3714D1057C2314FCAD303E6267163F033804BEEB58C20DCC3B967AEEFA6E1E2BB24088E679F7DF62B6FBEF9E697843BA6100D880BF7AE519B2CC84785285F10220E41C85D27CAA54B977EDFB5558A9522ABA7C7F2494294BE70D03315E72F5B3642FC5ABFEAF28443A90BB1A6C9B832178510EEF7204464EC4F214EF0975F7CF1C5F3376EDC78C2F73963BD4CE0F3F8EEDDBBADEEBF157388D1B824F773D0F739740B37C5DE79E71D9812589D17649C4B214EED978A8F8FA158B0F704595566CC4094BDF2CA2B5835D704087C302B449185B62552A072070FA20CF72EDFBBF9F6DB6F031C9C86D44B214EBF8E18F21498EFB1EF7FFFFB2BCBCBCB97EB6E00AE7A21CAF7746DE3AE1F7044CA82ACE57C415E6399A3FF14AE8292477EE7E114E20C5DC430CA199127CB40B9E6448765B25F9795F0A45C64E1DAC812CCFEA1A0ADEF898CFD3F73EE99C9E59669F9AFC5C5C5B322A2FA2EE35216E32D013BDFFDE94F7FFA5A6F670CC292419E9C4BF490B902E80D4021BF05C04025C2B1D34E310421310E1B62AC9AD74BF2F14939FE5074C67928347D61274E9CB82CC7BF8E3F4602382944DD5B1AC1F43EFD1CC79C63E1ECD9B37F76F1E2C55FB15DF7C78E1D13E9B5F69248072EC22D63DFDCEEEDDC7E1E99CF6EDBC431E80FC4296DA22C28CE386488B1D8FB243C67E5E3F93FF165B980B3429815E190FBC23DEF0B08785556D15D7501F8D3F77A9F04495459DA4D7DB69B9F63B59F3B7EFCF89764DDE1DE0FE2DE457A5C5E5F5FFF1F11597A6B71648872CD83EE6CE25C35DFBD2DF4B85F287F5561FE78C52246DF7251F4CDF7849B17970D3BF7CD9F6C190ED930A2ABACB9E1D8D70FE31CBECF28D61F85D41062EC178EC1EB05B3F036D5F84879017CD7C0A08D2DF37D1007456D366C4E811ED86311A3EEE26382E6768B3B723924E6335F66981D25137ADD9A387776704A8063AF353A7716708367014F74CAFF03B31060B8D0291A5B0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (89,1,'Rack_42_with_door_(128)',0x89504E470D0A1A0A0000000D49484452000000C7000001B80806000000F106F3660000000473424954080808087C086488000000097048597300000D3000000D30015856D5690000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000679D4944415478DAED7D698F5CD9795EDDEAE2BE35D76693C365C81969166B1947B66543816307360C250192D8800504F1C7F86BBE25F9010182F817E4933F184800430A9000121C688B6DC990359246234D2CCC68869CE13243CE70279B6BB32BE7B97D9FE2DBA7CF7ECFADAEBEF71EE2A28A55D5D57DCF39CF79DFE75D8BF1783C98B551A83168C918CFE204F7236C1FCED2DA5940B1198132EE41B2F9C768864031B7B8B8F8B9E170F81B2B2B2BDBC4A64A0287FA9EC9F3B9B939E3EBFAFF537EC6F2B9319F3F7CF8F045753F5F55B7F87F2B8CF420E925877B3CFFFCF3DB1F3D7AF4EB6AD37C596D9E7FA51E9F7FFAF4E9DCE3C78F87B9FE262988F85C7FACF35C7F0D80C0A37C1FAFEDDAB56BBC65CB9681BABF1BEA5EFF56DDDF578F1E3DFAB56F7DEB5B0FFB2DD8836370F6ECD97D6AE37F496D8E3F52D7EFAB8DB3B0BCBC5C28800CD5E93A78F2E4C9605A7F8BBE81E5657B3FE6B3B6CF6FDFBEBDBCB66DDB3656D740CDC37D059837D4E3FF1A8D467FF1E31FFFF86ABF253B008ED3A74F2FAACDFF7B6AE1FF58FD8EDF529B63AF0240A1800040946098F6A6D64FFD904D9DE3F752A2E8EF2B400C2051D43556CFF1E2133567EF28C07C43A96B7FF1FAEBAFFFBCDFA22D00C78913275E807AA4AE3F548BFF59F5BDDB0086070F1E1400825AF0A4CD157A92A76EEA3AC00B9518AECBF47905A671F5FA58CDDB874AE27E4B81E57FECDCB9F33BDFFDEE7797FB6D3BC3E0508B363C7EFCF83F523FFB1575FD33F5FFB3EA714E9D7A9008058080EF8DDD5CB68D1A23157C9BDAF49D29DF65FB7929252407D13F6BE227A6E7EAB0292F35B763BCA6E6F6969AE3EFABF9FD9A92365FFBDEF7BE77B7DFC61B088E175F7C71DBFDFBF77F0F60500BF4BBEAA5055891F0B37CACA37ED8FEEFDA84BAD528E4F7E69654BE7BC6DFC74B02C2049CD0030007102EA59E42AA00380F15587EAA9EFFEF3D7BF6FCF7BFFAABBFBAD06FEB4CE03875EAD41FE89B11434DF66975C18AF445B5F9F7EA3AB4EF548E0580E9355DFA8458A252553117C86280AD6F7AFC1FE65E1F4052259952B906E070306A548794C2CEF27BEAF56F5CBA74E92FD56BEF9C3F7FFE46BFD513C0A188F3D8B2D996D4B57D7E7E7E0E96152C642529CA0BA2DEF49CFFC7C50DEEFA3C9FF3113F02BF07812187945031665BDB67631E4D40958784FEFDD2FF817BE36B04049E4B358C9FD75FA7E4D1A5916E3AE6EBE077EA1ADFBA756B458163AE9AB75BEAE13DF5F89EE1F1F2850B17567A2818F6C9993367C6964D76E7D39FFEF4E8B77FFBB7775294579CA224D77894AFF33DFD35DB7BFCBF7C1DDFAB167845E9D2430906DF98A6AF2634B2859F53A7FA589DE20525082C54FA657A3DF535FEFF6B5FFBDA1DF57BF712D8729E783055CF1FA987F316E09CBF7CF9F2A3AE826364D2DB6337A39CEC98CD8BD701080083A7AB6B2163FFCE2686E9DE4D12494A3ECC31362C5FD73667D07C85BC669A2793F4D55E4334C24BB8F89E785C397EFCF8651370705DBD7AF556ABC1E1E300A10008FD1900013AF283070F26E65DAA6C784F9D7C93080BAA66A6EF9D85D844DBE6C423EF0903D211F7C2D31DCF79EF54A56241E0028609B0AE3973BC87688513EABD13EAF19FE8A03F7AF4E80D1D3002441F5EBB766D5387CA8CF4B82179F2E55069B0094016EFDFBF5F8282A719780C014187A03C55377B08926DB3F230A09A8501524DC06CDDBAB50450080842816103482260A46439A01E0FA8C75F337CF6E1A14387CE59D4B5F76FDEBCF97853488E9C12039F8554585A5A2A018105C72640D8C48E1D3BD6718E94DFE123E4D39214AE4344AA28B6EF2111274FE06172EFDEBDD2734E4348ACBAA5AB55B941E1BBDFEA71BB7A7C45BDF58AE1B32BFBF7EFBFA8016602A43B77EEDC9E4970E89318021A9C7C77EFDE2D1715806058849A80892A6503838B5B8400639AEA953C8143A5AC7EAABB248124D5542B31A700080E161C300451A821226233370618C3FF81F853D5F5BBFADFB377EFDEEB369EA39E7FA4F6D854D48A91D477434F4F9C6E00834278F988D770CAEDD9B3A7040449B654994C1B429A746325C646720E1D24216A682CC99616287C3FE60A1219870FE67AE7CE9D88F635AA6026A76CE2E99F1B14A152EC6075FDBAE1330FD4BD9FD3794EF5FFF795EAFE24ABE4306D367DE1B030B76EDD2A2FA84C58209C660AE513E9C02B4427AEC3294C9B73A34012721FA6CF988C0D36B0E000231721D1C70174E3C60D86C497D7EEDDBB8DF39463A36F04602CDFB7435DAFAAF75E35FCCC53B52F2F6A80990048EDCDBBB5C1C13F4C2DCADCB973E74A406061705A1D3E7C7870FCF8F120E9909B54EB7AFCAC987463391980A11B42422D52B867A8AC942A346A4082032C9428A675CDBDD1A70998C0EF9B53EF9D564F71FD53FDFBD47C7D62B1ACE1F18AD15AE5F0240F21198E1D3B365904291D4201A0F38A1493B08B6B4C13242E55CAB67026FF869C0F8025D69C2B167CC245F01DB0088203EA7FA7E9EF7AF5D5576F296973551D7E8B0A5C7BA11DF092A6E659004CA6EF3BACFE7F182151FA7BEA111121E7287170599D8095E87E72F0E0C12DBABA94EAF4330D869A507DA8C89A516DF265F14D5B95326D069354C349CFCDAFCF71ACA9D6E76381D4A0AAEB23E4070F1E7AF7777EF75FFE9727CB4FD5A43FD971E7CEB5C34B4B77161F3D7AB078FBF69D85EBD7AF1FB979F3E6D13B776E1F56801982EF003800DF4600A66100EE528F9F51FFFDCC3AB5CAA4A3D635759AC837F909139E18DE4E33A63A0157201EEB586266816BC8F7E1E7A1050F87110F043927B60327D6016832E5DA4E603C7E74E5FAE0A38FAE97B4525D17D49650D79EC18E9D8706AF1EFBCC607EDF6EC52D47A33B77AE1F5CBA776BE1E1C3FB8B4B4BF716AF5DBB7E580167415D8BF7EF2F6D237070AF8C766812304D02708D5A15B3E962360517928E405C00051D6120998CD3B279C363FEB626C192833F713EE49CF370E0E2B84CB5297E0EDD80B1F630B4FFAD0F1E3E1A3CB8F26870E54A19D00BB5E1AAFA0975EDFAD968B47770E685171570F60CF6EEDB593CB87F6BDF9DDB378E3C7870EFE88307F7176FDCB87EE4FAF51B0A3837A0AEED0370081E97BA16B3C19B9658A5CA6AF373C4924C1D140001270592826080954B061BA658A86CCEAD690283E6D53A9C8531578CC465F025240CE60A5CA28EBA95E2040C19CB4A0DBB7EFD4E790D56CB10DD5ABD76BC53143B0747174F0C5E7A79F760DFFC9E413178BCE3D6CD4F0E2D2DDD3AFAF0E183638ADF2C28A9734401E8A87A7E44ED0FA7BA16B2C19B52F1D6490E9769D705185A4CE808C4826391E1FBF0997A632D5C3A105DAA436E50D491202E154946D7D25CCB901B9ACD7D0E409399DCB5019A280986EFBD73F77E790D2E7E4C75EDE260B01DD760CFBE85C18953BB4B756DD7CEAD73B76E7F7C40491D25719620658E5EBBF609A48EE23A378E2D2D2D6D87DB804682A6B887ED7B8C6A55C886C56BF8C3E908C4A6C7690742383F3FBF2E1C3D7573CD8A4F2374D3DBAC58312A12258A8CE4E5E94AA0C064EB5B239F137023E6F2E1C3C7A5AA56A96BD0B13E51DB505DFB7EBE65DB0125715E51FB075267F7E0FED2ADBDB76E7E7CE4DEBD3B8B50D7AE5DBB76044602257516D5BEDB8F39217874299E0330C14E400C6C7645C006B76FDF2E2504160F8BB5B0B0502EA81E2692AA96E520CCD374F235259168C1D3250AE6586D92F2300250E0FC9352C56660596F0E9FAD43A654D76EDC29AF6ADC59BDF6BE5B14FB06274F9F197CF6F3AB52A72896B7DDB8FED1E1BB776F953C47499A854F3E29C1A3D4B59B0B0A3473745CA7026664339372C3422A0010B8A013E2C4DAB76FDFE0C891234CFC9F5CA1B15839496ED384BC2E40524875AC0390910BBAA75C971CB9D5CE694BE7BB4A55C37571555D8365E7D260B00BD7E0E0E1E383B32FEC2EA5CECE9D5B87376F5E39F0CEDB3FFFC33FFFF33FFFBD5429E27402AA9369FBE5CB97CBC93E79F264B920120C2E421A1A5018426A377A3163C244622C7D75FD1CD2018875C4E105890E4F7958E8486BEA75AFAA6B0F95BA76B554D7B0A9AEC1C169E3A3D1845C7E189B564DF6A3975E7A69872B4C24452DB265F7E94EC01869D134784C8EBE5095091B38446DAD03167C3FA406A43AE6F1CD37DFF412F21615B3B7AD5AD01C580979683DD958CB8D0B300C99D02550154681FFCCA500645624C8FA53ED61C9CDE804ACCB4342E7D94FC85B0E8D6290129FF58C90DB9C803AF7A8A353F3759691C1C53F02A71C1D857A8CD1AC80C267410B91943452D0C4CDEFC07DCB7247395530BF6AD576C931A865F21D85D4928A55A364EE34CC6D3839B1390806A819B2B042CA0DA700A38EE73F876431F13082427ACAE5EB75A44A9B0879AA5AE5F3817909B969F3C80201A1A723169829B274DA000CB4C9538DA2273435FBAF09C912C209EAA85B2E49203DE59C77569E873A862BD4016802872B5AB8ED6A95ED3E43F2495C4EC02244626001E1088495040BCADC67D8DF21155242459AD8EC4DF00BD3676C4EC0D0531FEB41732DEF01F38A0305F3CA3606A1EA96DB43DE1DC9E122E236C058939DA4BA23178079CD7004C2078281458395E4C081036B12A05CA575523DE5BE4D9FF3348C01489DACC01007A028125782850E4048659B5431718E8DF6906F24218F8DCF72C656C9020AB09D0310E0100C8A73A5C8C63AFD7278C967D10998CB222581228D1870CE324B13A65C1956E25329BAC03BEA44F98E5C859AD5228CDE7AEBADF20731F1070F1E2CB30249A64DA122B9AC5BB338C14D0323E64081EAC56044020587170E31BCEE22E4DD1976421E3217CE72A04A2D5A79E18517CA934A0F13A9EBF4336D80EAF717A91B78560122D5A254B3ACEB357ACAA1DAE2F7D0593BEDD0FECD44C85D8099107257EAA902C20AF884CC19CFA516E939D5CC69984560D405087359A80E994EF45C9286D548420879173CE4599C80A1C5D2EAF0088A7F93050BAF57E530C74D0123879F23052020D1550AF00424F2540FB16EA59405ED3A2177DD7B0860829C80293C423ABC40E8698E647E312D2C394CBC390094920119CB39783898D41DE694134439D42D1B9FEC8A9A650A1F89E11E4E27600A8F60BE814C7D94B67B6C009CA42622DF95A117CCD6C375788898D62126C6AD27E4455295F9102760F0A6C56907303045962491E645E9FB98A6B5AA4E88499312C46590A0C996554A187A03EEA7778CF249EDDE431EC7BB929C80A6C9C7E90F27202E3C876480C50480A0F448B56EB55962841E3E3255960718243173CA31D7B28D814BB5F26D849E909BDFB33A01F501B0C08ECE1459F6D880571C0BA4B735EB471A306C19807AAA2C1B00319C0412DA16D1DC65D52A2B21D7F4D5E1D5AB57CB144C2E042483ADB540082F99C55CF1D409CF098CD0B932A5CAD253CE5605B634D99E906722E4551AE6081B1F0514E8EFC8596267A32D54390110FAB734E500A4850B641ED2DDD4337D7D51B7EEA85529257A9C55D69554787CFCF8F11D296122B1E45EE8CFC3B62D11A42DEE2DA6ED408AA4C1EF409D304A145DADE809791CF7F03A019B081E94BDCAE5E70140A53244A7C9CEFA407E0B43F965DE461D152CE4E75CB572BB14B29EDAF62DA91C688AC490C5A32985A4A99169B26D25E3B83FFA2F58545A565FA7D143B73ED5A997DB254F78A84A1B63BD0B7602C67AC9D9A64BF68B90314631C5A3DB081699572E3DE2F492B3E36C1D15CC47C8BB96CFE10385B31C6868B34C1B6864F1688649000CACA6EE2AEF93DB9235CBA030BD26372CFD4C72AE749F46280FE909790D0FB98B90FB362DDB02E38294A09911A1D37A35C4D84DD315096253054C9E72566027F90EFDAE3E64BD26210FD153D9639CC5A371B261B1D84D888030A94CBD973C8D78DB1C805055992A6B922AFA5AA624FBB48D90C73A03AD4E4082462F1E8D4580D5058D33593C9A97ECD254F7F4EC1230521C80CC0DD173CA71C9166B5D26E32152C39926EBCA045413BEF5EDB7DF9E4806148F965D64431A67F612231E04A135A90012992A8BF5409AACFC8CAB6E554FC8DD80B1563CAC9C804F5E7BEDB53999A0944B2AE81B45449CB66EC5584A27A7675C7F4DF794F79C239D904FE6D4C631AA491DE726D27A22942CAD6FEA17D7868183051B17AA4F0E1EE2031901E27302F61E720F210F7102D601801C92B033949D664B7216B5895AA783E1DE98F805809037D0F2548787F8FC1CAECDD115C9914CC86D9CC3570924F494031098224BDF0709636AADDCCD3C649A2C4F7959489AA13521A6DA506E62DB005DC921CF4EC853AB15F294646B650C168F96BE0FBD707297AD548C33930061E16D5BCDE2D05604DDCEE5A849C86D4E405FFAAC1C00011D81B2CA861EE64EC0C5F69490AFC94797DA90BA0936BA072006B300710F3C4418A469028B6F2EBB1A952B9BD72411F29456CB5095645B653AA9D04596D2036A544EEBD6468BE190BFBD4EE91BDBA9AF3B00710061FEE9D73039FF4CB1555D25E42EC9194DC839A488C7906D95697D41C6190061F27DCC32006649B50A559174A060B03F375365E918F41D749DA2E401D5D46DEF39030FD564CF7DF0C107A584609F88A3478F969FB381A1AE79B76B4049B148315C849EF2AA7F63A9DED23168CA04EC1EF728922B8F389D80E40728A0B0B8B8B8864CBB1A67D60140F5B7B46ED54C3DC273390019F94CA9C29077532660D7A272A55A955264C1E904544078BA67CF9E2D24D3B9A502DF03282095DA2A3D58111DC3167F96CB01C87C199B71A36B8187218780D3436E3A4D62AC5531A061561CBDE1FC7D24F03B77EE6C1D4260B4C0FDE164A77ACA7AB936EB538E50131321EF16DF7047247B09B9ADD65148165A286098224A4720A505A5919E4BDE668EC1AC4859541A8FD2EC9A5305EB09795AFB81356A95FE452CF81C1B71CBCD4E8288906AA91BD7E922DB262B952C2A4DD50B0786DEE2BAC942D25DAC7818D3FA2CC909686A2D0092CE2EB278CE7EDB0C28F411F9364B8E101549F792EB00A2FA15AB82759D90EB73102245269C23A427A0696021593C1A80C00020E0FB60F8839EF31163DDEAB254916BC1323EAC4E2FD5D218CE61DA081D50AA9CF92C3E2932B28561982407D4247AC66953A733D0E6086C638FC09C20087D0D20E125536559545A16720B25E45D31E5A61457589743AE8303FF477A2C3DE318580C78C5B148211545BAA84699EC89392C5254AFA40350A6CA1228301B77AD83532A2137FDDFEB04AC5A906D45116994B3947153B2B5402E00749D73A49A6AF5F6CB6C1C243DE4B68DD0137237609C4E4075223D3E79F2E47657DC5468E8B4EB3D2E7225AD5A572B17F9F72C4691D354AB03851514F55AB9B6D3B1FD52238E903B39879CCC186B55AA1AA55BC5B079D4FF5B572B171C0DEA0ED41E992A1BEAD7A8E314749D9C5D931C8D3901EBF208E919A7779C3E119936DBC6212D4DECCC44A0C476968D05464FC88BA4F6035EB52A0400BEAC405A55A4099291A45D8DC6A57ACA0A86ACBECE042797EA13A36EF5843CBDB8428813B008950AF284A4679C5E769C9032AAB7CBB5AC6C79F694A23294449726290EC0EE563B9C6CDFA4F603A5E490210B3122970B63F28C33845AFA3E7CF1535D004CE8A92FBDE2DCCC94367A125A2CE708D9246D53AB4CC68810C0785B10985A0B000C4C91A5A5091D8530C81F42733EBA2241EA106F93A79C39222EB0B83CE45D26E436EBDDBAB67FB6581B091A2C061D81B2AD323CE321D5D463BDE45D004A0AF1D6ABAFD301C89C72BDE2611FB29EEE215F2739F449552018BDF3CE3BE582C01188AC404CBE6CAB1C5251A4AB6A544EA9A2BFC60A2532A4045C0F521D04BF5B7D381A24E4363F87D27D57CE9C3933470B8BAD71662E005466CDD6AD244976530D33A5039040915E701B21EF62699E68426E425AB5982B9414B1C183A15E72FC7E2C2C733D4C9EDDD05A55B33A58F480EDDE5C7354D70148A0F484DC5CD44DDEBB0F30239BB3CFE704CC914F4E0724360C4DBFBB76ED1AC74D4031F58265B16118305CC09AC71670000AA5895E543B87540925E41D50AAA2CDB86BA2727D4EC0BA3C82A6490040960065799FCDEE1D776D34FD3D46033053929E721696F6599F52D42D5DAD98D601B25909F91AC9119B0918223158F1907DECAA1A58939FEF4ACEB86B23D377C1474A15F206DDFF94A26EF54EC09A843CD409E802051B3AB2B532078B47DB887C978B48EBAFD1244E8E223DE5FAE7731557E8097904218F31FF0104301B429FC6A2D2330E35816A9489C8F7E6DB70B0484FB994CA3A274CE11C5D0959AF45C8439C80E40DF08AC3110840D01985B6CA5CB4D0D8A91E20615CCD34A4A79C019DAC5C62B25C75392AB73621773901D57BC38F3FFEB80404F56234CF0420628A4787A851E2BDA2EB2008CD0094DC04921C173DE5B66E5DDDF392D724E43627A09AFC21FEBFB0B0502E04AD4B3227A32E8FE802F7C85DAC4DCE99EE2967EC95C909A86F88B6E3C4552B3798909B442D5E5740583E74E8D09CA9A248A254B0AA0A54D3DA283990268B7BA31A94028210F060ED981B1262AD69B1905E47C843A486D7439E62AD4A05057E37D400820F5CA6AA95DBAA5543051796318203901E6C575C5A0E49D3F5A85C1F2137FDDF9B09C8EA2339002013A1A88EE95D64DB9E264B83053BCA32FB8F9E721337C8A182F99D80EAF33D21B702C649C8EB480CFA37A84A302B90DF2BD364BBE2F3907E0A7ACA99532E5B309364C780C5D60DCA5560A027E49184DC47226D8BC105A723909B9FD1A2F47974397CDAB6B9E917C29C51AAD03C6BF294E76A98D976CE612ACD934CC84D150F5DA0204F2020E8B042EE072587AB1A6297DB9DF9C0221749C65B990EA510D5CAB601BAA45659E7C05648DA161A6E52B7D8CD949E71369307D104204C6D954378499781E19304364050D2C84E4EA6EF7713F241AB4987AD9B6CA8337022396CDE537006380191260B6030EE075981941E29B1535DACBA9ECB01C8F246D2AF414F398B5B8410F2F69B7207C11CCBF419A713504DF4964B972E95561578C50F1E3CB8C633EE4B82EA55A966258DEE29C76000A829DBAF8BA5797C4E40272177390195D478F2CA2BAF6C0BE9B5514702F0F338F9DA98260BB593AA50AAC4F07D869E72D9A7DC47C88B96DB7225210FE11C4E421EB3C963D5229BA951E62FD83AADB66150FA928F493F52EE869921D1D5AB9FEB8EE4F0A950A6D793929DEAEAD55407F0C8469AB830F6ECD9D33A0F39541D5CB85F48115CACBC2EBDE475A48A8B8CDB1D61DDF290D78ECA4D092DF02542E1B4D44F4A49E4BBD23C5396FEC46120F3C9D987DD645D4AB17849B54ADF18DDA93E92294D361791E6C6C749497323D527C959BADC235086D4609E58709B520560315911530211434FCEAE1272176046AE123A3E50C8B6CACC27A084A0DA245B2BF7962AF766668B02E6CEB01BAF5E7D3D56B5B213F2B64B8D3842BE8E73B8A484CD7284C563F1689C7C0C73808A20CB8386AA4BBDA7DC2C55185652EABF22E68A8792DE5B25B690741742D66308B90E9851686B0178C465CE380B95C133CE4574012266F3DB1C92A6A26EB175AB6605843124DB14A0C9A866C9E574B0989C805D6BA4991A956B941C529D520018C209C8F44B00028E40539FF114A9B01112639A1BA22E4043EAE54A69428B18C3E06D074757B887A96E5568FB81121C3EC9C1E2D1B2C44E4CBDDC1850B475C1C01B18B69F0A0C1719970E40DD24EFDA085DF273C4B61F2809B96D41AA8A232B509B6C6122398A48331B102A5AB5A0AD5B322636310ECA159459D70128D28DFB90F540426E03CCA86E28484C5D2A590A949E715647049FC1E9BA6FDFBED631459434C2457F06FA9A501A4B6992D301A84BE31875A227E4C55ACE91B2C94301C34DA09F66CCF7604593B60F1C02F4010124CC290768522586EBE77C1EF22EB83C52AB1D7A39472A8F90C5A375958C664809982E0DDDA781474850AA5E7864D7269F5F232684A4CB84DC74EF4151B9B9BA3171B1593C9AAA13462E136FDBC1426FB94C95957DCA5D85A56DC070AB52DD51AB527A918F42406002855E3C9A5F281D813675A9F794BB55245A06E9FC633889CCDB88E11CCE90F59E905BDF8B921CB278B46CABCCE2D17A5BE51E00E112D8E500A4242E45BDC8D7E03CEBDE7257ADDCB58FAD57AC9CF91AC1845C9F58868F203D56B65586A8475E029E9BFC1EB14EBF2E7692ADF39AEE2597FDE0091653144157472D0FB96B732AA9305755212C01A11761CBC155BACE3B7258A4E804644809545D13E758BF11BA57F1308A90DB16A5EA71BDBCB0B0B0352490B04EB950A8048C406DE38AE160C13D82A331A92B160421AFD101687302866609F684DC13B29E432D728589D033CE2EB2D83438F1AA8699ADAB95CB107400059BD79400965305D301602B07DA137207210F99F058B5C86539619F6C3C320FA40B4E40A602C3A001A04055A55FC3E4F3C9D19EC0A5777729643D25D1C9CB39EAF20886549B7ADFC92E505DE31D981348495AFC00125CF098CBBCF2541E2241D165276088D4700166E4B32CC56C5A6605324C02FFA7B797EF879C905D23E3A6BC727ACAEB58BCFC51B9DD25E4216A569013D0F61E4D88209A32DA54168FEE7B0486ABA2F469D0530E6EC25EE5325536245D5602A0AB69B2B1845CFF7F3421C7E2C9E2D14CB8614660688A6C979D84310E409ACC319F00885E7DDD5711D1E504EC43D60308B969A1E4A4E324039184331000C022010C689E694B80EA3A005281627B8D2A29BDE57AF575BE6FAA9ADF5D276083845C89F3D1FBEFBF3F098493C5A35D29B2B3961ABBD98161930EBA84603215D6C5A682C90DD0B51CF268426E5B844AA4AFBCF8E28B43535BE5D84D1EF2F92AF7B9752B06825D3955A3129B629D827402CAC5EE729A6C2A210FE21C0A14E318F2170B183A02D9371B2A5A1B4F339CE82C011A1A8F56C701A8AB565D4D9395DD6453AA1E8E62263D8650DADE977DB39903223B432915AE754C9105EF281D2149E6E7E72769C2BA03B40907608CDEDD36C9E1ABA66E25E431D53052AAAEEB1532786A4A7F88CE5DEAD6AD9A654E837B86F480C54F7ACA21596C1992A9EA564FC8FD99902EC078CB81A6904A72145B5B655B899A5C9B7A9A64D355CEDEF773D2538E47B68F83F1837396AA5AB9E6E1191FE986B5CAC52B5C80F13A014378846CAB2CBBC6328EAA8B391CBE468DFAFF195DC00C4B7231A6CBC614DFD6DBA4D955A9EE78C8535A9F25C556D1F2C2A6F3ACA4AE7BC6F5A8D3DE841BAE8ECA020CECF5C7C8DED08643369573ADBAD5E63571AB953EFE15E404C4A09E8C0B8B267330A4CA949AD3D103C3FE1AE797CF599A95B5BF6446A04DAD32AB116D97DEF13DC88309B99AF8E2DAB56B9314597AC651944CFA3D5CEDCA7A89510F1826154C7AC9E5C92841D413F24194D43001C7E90454E018B2425F4CF1E810A9E0ABD0D7A641B375CC5CC51661E0DC31E45D2FEC6656ADDAAF5635E604547CE2E99E3D7B865499724805FD675872866A827AAF75E8400C1A0E192676D1E7110B02DF6B94264C93F511F22E95E669C409980300FAA0679C561816830308E7E7E75BE704440517DC33C3CF912ACBFC8D908AF5751C806E5366EB952AA7D32F6BDDAABA449AE49139E3B2555A4C3593CD3858150417BBCA425D454889F494A7A4CB86F839CC1BA15B1E7213289C4E4017E788950A26FF082EE61FC8C2D13E22DF7632CE4301A9006C940963073DE5A6B9496998D913F2B4F603D1C94E3E354AD6B492BF0C0B2D9BB7F4D6ABB5832670E92967AA2C3DE5A90E40D7C9D9C516044969B2BE13C9B4A9E9A822D1A4579C11B67D6A6C3C3793CE3FF030B65EC623395A0C37719F8E6D971A3509794C44ADF48CCBE2D1CC71966D957B50C47336D36B3C64E82967380900A3730A17E7306F846E498ED88C406FE0216B2DC9E2D15C1C53CE781DEB569775E310B0C8EAEBACC0CE901D9932ABAB56B6D3B16B21EB2EA9E17502EA9B1569B2D7AF5F2F4F2B5855F043AE5AB93913A1BA0C8C10E22DEB8231AE8D00626E4C4FC8D38B2B7809B99AE4A767CF9E1D513AA4C64E8584C5536568A3ACDFB367CFC4AF216BE58670BDD0D738CF74A84AD26D3B1DBBE0E770F1AE6042AE4F7AEEFC70D3EFA07AC648DECA0BDF3A2720381AEE938D3265A2570E60B8D6CBDD0BBD9B21EBA1CEC0519DA4A658C030B481791ED820B0C8A0E40F9E436F66CBE5360D4A5EF036DCA3F46BC898B53A12C3F499B090F5EE11F25029E27502E6684623E37D9814255364BBC445C00918FA8FB0120084FD4F68F1CBE100D4C1D1D52AEBB508796AB293EDE74812659721DD41D8D7CB5DC3EB26E9B2EC28CB54599A70EB0422F684BC06218F11D7B62F32A5C8CA729531299E5DB652E1E0604E39F898EE295F5BCA339C73D84FC7EE95E68922E429C49B8B28ABEBD1D66EAAC99493CB740528E46434CD32A25774C04AE21C2127671B0979A82A1544C8E5EB14FBD09341A039E9B2AD726C12540F8A3815498695609E9953CEEEB2364FB9AD6E551738878F90FB00E37402AAC91F5EB972654DE37800820BC4323B3900D0575C0FB748E9D5D7294DB8A8B6345A9BDAD113724BC34CD7A654133FDEBF7FFF1A75C9271DEA78C92B8B5621F56ABD785B4851B75812DA3430D9DA4CCFA6CCD5305302C2542BB78BD50EB312727DE2ABD3690CD16D7256C5960BB59978493CF1B8517D01736D149B4A83C305A9B2E0658C60867A1A0B82582B55EAE6E809790221CFC12364175999228B8EAB78EFC08103ADF490E362AA2C0E0348641C062232A0B6BAA57FC61F95DB76A9519390DB26D657E9220630D2332E53649937DE958C40992A7BEBD6AD92BF41A2C0012855575361E91475CBEF04ECB687DC4BC8437D19295E725616A12F444F93EDBA858A3E0D84CFD0F987F82BA603F04A55B77A27604D421E33D936509010EAE120F4964B8F796FAD320FBD4EAEACBE8E41E91ABB56EEA8DCEED6CAAD1DB2EE9A78BDAD320B29D88A47A7A8655D922226F58B25580912F015CE6F280F7147E5B65E6EAC9B8398E8DCE01604F4D8D2332E8B47CBBE1B3635A0971AE1F76EAA53CCC348565F6730A734D9DA3887690374DD43EE03CCC8B5604A1214D087717A61619848834BF78C37D123B007C6FA796238895E7D5D7ACA4D3EA22E13F21433AE9790C3438E8D0F8B0AB2D9241864CE782F11F20025D62245AE47BE42296E8BADEA629E7E6C4F8E7584DC34F97854E4F0E9FCFCFCC8675D8A89E835BD87056568CAA085310D30D542EA826C9BFC1AB91C80CC2BB7A5C9760D24A6D23C3152A45639D0D45E1CF8C5500548306546E0DEBD7B5BE704848393B58151A882A9B2508FF49CF23A60F1D5AD0A3D31DBA656D9EEDD0798A04CC01C80813E2CC3ADE90444361C25930CC56EDBA0650F658E7020404AC2A701932D83386D052CEA34CCEC09799CC48C7602A64A0C263D316E8A31455D4D91E5C05C404AE28214014870A1FD32AB4592D7A556270921E45DE11C319EF1759CC332E1450C28F48C3F6939915EF13AC5DFDA4AC4690D8414654809D42F067DBAAC812179E4211BA1ED6A554A6472ADC043E6155012C8DC0E3D97BCB7608519337088DCBD7B7752CE870518AA9A5E6BE633C401E8DA085D6A5E13C2BB823B3BD93634EDECCC19C760F16879C2C586B4F7C33CD7B47031B49F79E598737918A5D4ADEA3A2137FD3FB81CA804031609A719C34458A335A47874AF46A549113D7E4DF79433FC5D7ACA6D9CA35BA08827E4D14E4035F97357AF5E9D3897A0073390D06459A963DEED3A28628937330BE9D7005000181C5CD2C7E1AAF8D70D5F47CDA85CD30254B1542B274F9E9C9311B7B6826375250693A08A16AE184E77C6A6E5AA8DABBFC603CB542BB78B52A30E210F720222875C7E796CA888EFF36C67C044A8B69A76714FE009F094B3C617CB1AE500866D7D7A421EC6BB529D80454E1EC18C400002E64AFA3D60EFC7235E6F639A2CBB5F31320092042A2AA425789CCBE793EA000C21E45D921CA1AA549413B06EAB656C0046F252B5C04681B952B636E80AB72050105282C3801D6561AEA505D0E6D7A85370C15CB7AA1B9C2385907B39472A91D63DE38C1CD517BFEB037371F3E6CDF2A0608B025C4A7A4EDEAFEB008C3D39DB68AD4A693F50822387750916135E12AD32C43DB472B88E765F7DAAB60C565FA75461EC15780A0E19BD4F790CE7B06D842EF939527A9147F721E742D2332E4DBA44298112E2104C1595398BBAA5AA484D7E273DE5000CA40A381A8B4ACB03C9F5B7F808791724470821B7FD3F5872E8C5A331583C3AC5E7B1D9D5AA90CD56B7EAA274C462EE711881BB31A79C85E27CB5AB4275EC9E900FCCB5724D13AC16A2407D25589200027625D2FB6DA492F57EA459A47818C99C72E68B30B75F97AE5D26E42969B25EC9C10A7DB0A44847A0CFBA542709AA8D8361367525884DAA304D9631583627605709B94D32F800E30C3C542AD418A7526C5BE518890100027C3CF9DAE82187FA834386163B566FA90B0CD3DCBA4AF3F41EF23867E0286623FB40116A9B97CDE599CF009D1A5972FBF7EF6F9D1310791A986CC63FA15805FE0F75952551733A007570F41EF2B44AEBA314EF6A0A8F9029B2CC19A7E9929BA3CD69B255C18A496A304002627DE8D0A1F2BE597D9D7C228703D0552BB727E47EC0043B01538834AD59B2A00073416C05E0BA32A862B1F802A409FC1A50C1E834A53A9BB36166D754ABC60879AC1AA517902689A774707582EAF2C0DCD0A7C19012597D1DF3E67200DA5EEB09794D426E9B605F3D563AA108004A0159545A3AAA725AB7DAAA76F19175720118FA3360B4C073BD4F7948C34CDB46E8B2873C8890C738EA6836943C819D6409981E00E9C030BD867986A18251CB32A71C73EFCBD17701A06F7DE621E42EE920C933AD2AA6E2D13E50C4543FEC816297048CEA85E4800A2673CA59BFD864C6B51530EB022852AB1D7A398712E7439C5AACAD241D8131BDC67B29525F82D8A40A0F2D76FB65E258CF39E2A4461421C7EB0A182BC78E1D9B6B3A4C048BC962016D74028258E3B668ADCBE900941C9066602941BA1D953BF0F6447445E77A9D80399C7EFAE79911C8934E36CE5427602B9D80AC160209CCB828567FCC991AEB4A74EA1AE77075760A014C5251B794BA54B27834CC936C8483C0460003A3AD4E40990188211D80381C18EDCC98B55CFDC94D4EC02E710E5367A724426E227F3127B82DD94606C261036023504FEE6AE34CE900C4DCB0FC271EE91762F5F53AEA56DF3073D01C218F95183CA9586687E1107DF168FBC07C002428328183049E725C3255563A4F635A11F8087957DB9ED924A933873CD40928879E91C65F20F3C57502DA9B70ED870F8B4A43DD64EB65107A1E36B2FDB24FDDEAD364ED6A65086082258754B764F168FD97C914D97EA48384070CC83CCCE94C950558C0DB189DE08B64E8D364D35B9F79FB90331CC4543C1A43C6FCA458B7FA1146BC65FB6536BF61AF72A8B1AE0216B17A77DB2447CA1C7843D6B76FDF5E5CBF7E7D4DA91D5C3675299630FAC0D4456911FA1AD60012058716AD5FF013C95AB994E27ADA6CD70879880A1545C8A93EA1DB109FEB9EF13A52C1D63873D0C286995483628AD7C58005528316402692D9FC547243749190DBA445505137B971D5648F95082F645E414EEB160B36D0FFD156B32EEE939542E8CFB079CA632C52B6D7F4EE597AD5F5EE489106A372433679AC979C271B7B4A304596367FD6CA35F59A30D5AA0AA95BB5D1AA1BEE0F170B56E040D8BF7FFFE4C4C71C480B54CAFCBA8AEDD936459F26EBE65DB5CA818678C9192AC28038907A6C06586118FADE7402D4B436816FB249AA1919009080541F3B76AC040E4368EA6600C6AE515709B94F8AD4CA04747D39C120E38864F168DB49D925024EA0C0E80189027F069C7F20D7B40ECA3EE5B1EA968990CBAB2B61EB31AA9455728438FE7C99675099183BC55E14AE1EDBFD581D9827169566172D5C88BFE201A3CF619D36CC5D38986208B90930D1E123F2B97E32B16F5DDD24A82E0FCE0BCDB4000C2409424AC0536CA6741B30F435EB96E42892A272D7488ED013C7563C9A223C47C592AE03C3347F0C52046058808139E534B3FB08B9C970D105C921F7684C79222FE760E721F005720496DB49692DD003260E18A6CFB0550100C3F6CB040A16DA577CA15BA3F03AFA929D805BB76E2DD8CF4E7704F6131F470A53D557D76BB24E2E0E30FA8BC059643B081B21EF4299A49434596F39500C2535C68B8B8B85CB339E432AB04C665BD36441ACB161B18169A4A8030C9B5184C5E09AEC8DD205423EE11C390A42C79A83F1070008AC974BFB3E7C1FF3F3F3AD4B9365FF3FF205926A267FC5746B8AB148B9A2A37DA594DAA25649C99D44C84D139DBB198D5E3C1AE41217F467FE6C9B6BE5D29C8DFB05676354EDE1C387CBD7E9F388AD6AE88BA876A9555D931C59A37253F563A2950DE3E9D462BF3B6E94AE660562C3F270B876ED5A294561AA85A71C07849E539E0A161D1C006597AC5536426E921A26C08C7C9B3E466F252018364D2F2F756DDAE67B22BF769EA5A71C4081A71C3E0D1C2A4C33D6237A63021125287B0F7938F7F0B5202842B8074F256997D773C67BEB5618500002C45DE939E5070F1E2CE7590F297149001B60E47AF584DC41C86325862C12AD8BF010CF78B7C47A3DA050FD82040660744FB96DBE7DB1553EB2DE13F2406B959404F48CF3E4E1A2F8AC223D08EAF338DD530EF337C0C20AECB2E27D2E234AE709B98BCCA9492FBBC932E49CB9CAAED3AA5F986680A10FB6BEC68105150C402158E469D9EDA8DC9A84DC35418A088E1716160A1660CB113B65FB3CC0D75627204F7696D6A90B0CD33AD0F907158C69B2FD01559390BB265C7A5A730040FFE50C75C023465537B6754E401C2EB847F005D9E3C4E5298FB148E9434F93EDAABA2B030F535A9F8D524E9654C0E017B3940C400187182EE8D038511948D7B641CE865C0DB60A40E10A84CC303A00F3E0DAD42952A54F760A6BC1104DC873B45A9629B2000503E498374E55A04B830E50F004F660074F50EAEBC4A721A3A0EBAA5B3D212F8240617A2FBA0FB9EFF31210B4DB33EC9DBE8F3E2BF0D9C90E90E0BA7AF56A09144894C5C5C549075E92EE5475AB971C4552FB01AF5A150A1859F40D1E72593CDA552FB71F6B07F3346EDCB8514A5A44F3022C000D03157D40D181D113F20C845C9F30571F07BD3E127F896C2B604A82EA41112E89594C9A9E7244F3BAAAAF9BE6B70F596F9090EB962B2E0837BEB4A5F73904F9806152BF2855E004845401582059580C4F56740925E45D08597711721F609C4E409C58B024B18B2C55273C37253FE52A222D2596A9647E6C51B75C9B7456C0C2EAEB000C2C5E6CBF0CD0B04581EE04D42372BB22396272C675C0782507261F1726DC24C6EB6C32FDBD595AC05870E9960FF91D385018DE5177EEF4D7F09D24ED38C89844A64B719304E98AE44889AB5A23396C5E5706B8A59275977545F609A42370D0C242D2AC828E7B0E49958DB548C9212D81BD8A9B5E7924A9794DCCA967FA192640B15E2EEDFAA8CF843F88B572DBB4404C6C623400B802EE9FB92E7A06600E07A08F737425645DD702422B8F3809796AAB65A378D25264B119B861A4686F739A2CAD79B870DFBA03903584A5A7BC0E307CEBD39590F55A1EF2904D1F5B978A1B9DE45DD6CA65A1E4AE37CE940EC04F3EF964E2D7404E39800390846400DAD647FE1EBB13B0DD9C83843CA51F60961C725D65D28B47EB9D64FB615E184A8D8F3FFEB894284895459D5C80067328FB9887F210BF13B03B9C23C490E2951C2E75CAD66B9CBD36483425187CF572FBB17E0004F092C35C0B32CFA2D2478E1C99D4A6AA2298A3497CB7E67F7D26608C14F1498E42078C74F8C5168F8EE52A5D952272000C5047598001CE3F5C50BFD8EFC4E400F411F22EC456D9FA908736D0743A01F1414A03B9F19922DBD7C49D2E5030E8D30060E0D3005040EAF19CBE285F446F972447A8F9D6041CA7E460C01B3DE37A8A6C4A3F881E30E9C0D05F23480018AC0F0B4A83A77081BBDC824027E421447C1DE7B02D044C8E2809A393E914A79F8FC8B360401BD36441AE715B24D53ED533C5014807233BCA9AFAA774AD058124E4314EC00938724D500C6098220B95008F5C589C806A615BE70424B1E63D4B6B9EAF0655537E8EEA139D21E42650D800E325E469936DFF3CDB2A33110A1B0392095619DAF2DBEA0464F5479A6259511E5219F7CC8341778AD66D98E98FCAED3621F70126D8099842BC01026C04862A48CFB8AF12479B074DB190285029197E8E5AB9364F7928307C0EDCAE498ED8782AF9FF64B5CAE5F3A0679CA725BCC0BD67DC3C704020470317E60C4041F61F3DE5ACA36BF294FB5430293964C4333742DB2507C09F252A579FE0D0C425168FC625CBCEC8E2D1B2AF760F0CF78103EB133DE530D14A4F39E7D514D1EB5383CDC4BC75F44EBBFF709F860930C9CD6B080A4EBC6CABAC4B871E146983D2165285D1BC489545A0A2F494DBAC5F36CE4129D2F62531557C348120C9092827991966F20BE8F790EFC5FCE1FD089F1FCC2FB3FFE8290750205558A944A630BBE6991B6635F070AED56A9549F50FF57B789D80E00BF2C4D13DE3BDD3AF7960985EA3DA0AC0484F390C204C6BF63901DBCE3970EBA19DADA29D80388D4C4EC0108B492C60003C2C6C1B9560F60B37050BA680459F43AC8DF494F3F7F99C806DB756F90E679F14714A0E9E4029BF38E4F4637E3A6BE6E2246C63AF3AB6AB06B9A6FAA357350C9DE3905667B46CF9D7A8F53238C8A0144DC843D4A614A4B2000040C18A7E38F598AFDEC634599AB41919803900B9C6FF591E158FB1878BEF357F0B8276273BF9EEDF14A5ECECECE4DBE4B13C8239E3ECEF4147A0F48C77894B30010C05DB70408027805403303C28303F29C08871DE76C35A1577B8276702C6A851940CF8252C1D8305A733CBC761745167AB53B5D95B06D3148BE2123844607D8203F0E4C993931EE5364F79A8BAE53EE4DA5E9A67BCAE8267E865951CB1A7A1F48C73D1A92EE88D339B183680D4018E2F6AD3148F53E7FE7088409AE08284053F01504E9F3E5D7EB72DA7DC050C7FB253FB25B5BCFFD83D15147868FA0C4DBB9010D233CE62C7B6ACC0369B7775BD35159CF4944372A0F882F49443FDE23CDBAC5FA175ABDA6E668F55AB74E9324ADD04B278B42B55B30BA068E2C4D3093D1C7FF094E3300250E829E7FC33A4443FD4BA9C261B4BC8D7F9395C9203AA1216069B5E56B2C023BDE27A88750F8066C182F966FC158C1A70D4C2F205A902DE82F50A8D656BFF5AD5DB8F23D784011CE4130C4B0825833D609E0DD996BAAE14D1A31364A512A85C004BE54CB546E5CACDD3F643C5A6768648115F37D9F2442299CE790AC962CBAC955BD5CB6D9D17102A108C15E409219EF2140720D609128501A1FE42D2DD0D1F89961CE149326152C1B6980C71C0455580E1D8F3F3F3AD7302822B30F18BADCD208971CFD8CC21495F294E419BCEFD4C8A748B73C454F10FF273A4768ED573C6010459C504018DD09DB1416409D1B60E9AB3010676D5C5854E4D5840E90BCA010CD7DA71C37421D929B434AA51AD8A9DD850C90220B0AD32C324B0F8B0E34BD2D85582CD545858A118550BEB139EB3FD34805207045DAF2BA69B7225D7089122A354AEA00F263FB1AD32A4030B0760B165AFC07EACE776B8AE5DBB56CE1FAC4FFBF7EF1F9C3871A29C37B6A636E5CCF81A66F6A65C735472881419A5F61B9780600105763CEDDB2AD753BF607D8284859AC98EB2000A802373CA433847370A2C8C87ABF5CEF058F2D5F1AAD45829B29A725D96121D14B25C289B69D2331ED2A6A01FFE930FEA15A50A24328002A90262CFA80419A2EE3B39D759AB36A1E9A328C6235CEA0E47857E0793E884F2A0990BE5192635CBAB565134EBE5EC59975582A18E5AD60FFF7C61BE11A4C822713011335516433713B74772802B0C14101418860394732C2410349261E51CBE7D6E25E4FA62E01113CFB004E9C8F2B515E801901F18FADC620D285500184812AC17424BB056972E5D0A0B599F79C9319E9B1B8EB7ABBF73B8463A684028EFA3588B279B87DCE704A414714A0E985BA1F39A42CC73F508A49AC624A036D6CAC5A6959C2C1518AECFB04739D6CC552B574F769ADDC91EAB3D3ADE0669B14EC899806078DFA556864891510C99CB911A3BD1E7D402020C500FD83CB2F2C4B7CE0928ABA0E364274F938D326355D13A265E2939666DA2574B788EB72A46B4CDF8C75980B046531CC7AB55A6B9CC52483A0434740482C833CC9DB67E3A02B981DA6881C20530701E709F700032198CF3900B18263579D64DB9F8B386C5CA8E41319E33826060078209282951B9C14EC0BA6A143BA6B22222BDC0C85108552FDAC823688E950EC0C5C5C5529A02244C954D950E363FC72C1B470AA851C50A4EC6A11704268961FACABA51B921E1233112833144ABA6C29589675CCF0AECC7EA900E40FA355027F7F9E79F9F1C2698BB94404482C3E60D9E1570C02CBB2A312A69318E02C1C0F68910B5CA45CE933201F5B8299922CBB23358D8BE7874DCC0DC419AE0C286863F0317AAAF33FE0A40B1CDA74DAAD8548B59581345BAB716C5CAF609201281607A13068710B5CA2A395C12C1655DC2E2C1C2C43AB90404C150D7BAD5F58179A5F5E9A38F3E2A2D5E040A24B35E7DDDD5A3C3E6ECDAE8359900C3BCE58B589498B42F773E4B4DB54A9F44FC12D96B5C8689CCB2E8DEACFC445ABC2859C05360F5C285FC72CC3F7B95EB9CC3D496601624C7B0186F990023421A38B878B18EA68C07CE7C9660426EB26E205C41AFE2CDE2D1BEC69939C97D3FD6CE1B2BAF43AA90A740B230FC1D6B76E5CA95994D932DC33F868A6318F67D88343002C14853C64563841C13CD14D958DE90E22967787BDB0636302BD5A782C276C030FE0A52039E72E689843901C71B018CB9E17065676100864F1AB881C0F7C793F75D7C4B57B34CC4DCE904C409E4ABDD540730F48CB35E6EB56005DF939FB31575D33FAB73A3593835717FDCB032553656B50A794D46EBCE9AE428CDB5C3955D789A220D060E20ACBEB7FA2FC45A65024D12E7880185CFE4C87C0FD6CC65653F9C7AF803A7552BB74E4DA990F2F5F277B00F22EE1D870054203CCAE277B61A5F29AFD95A446C741F72A54AED2A06836180C47082C00804A85083B8A8645FE293B305412E358A55D47182B26019F4653DD3ADCD69B2E40AB800143A48711D3972A43CF1592BD7E6208DED4F3E4B7DC895C4D8814C079F2FCF270D4C403000E5D9B3807BB40168D4048F608A2C13A1B0D8D8107074D1DCDB75528E05C101810BFDFF18557BEAD4A9F2200148109A0EC992E2004CE57D0DF18C2DC362BC6DBDC4F0A84506696002820D28294E4029455C4EC022E484E102304596665E7AC6D956596F9CD98FB583716657AF5E9D54353C7AF468195A42E71FABAF87AA5BFE3EE42B530006F6DBCA4E7D03CBC71069E00382E93B7CF76F92A6F2F351998026095185994FB2D29863606A9CD98FB081B944FC19242D80A27BCA09A490C366E31D7DB44C15B5A4410A988A62D05C6C9509242CAF0309C1FC04593CDAD573A34F844A53BFE0D3C0A1034F39240980824045703986E9C85AB93E6BD5B33EE42B0D0363BC5DDDC19671466960FE1EB36D4BAA55B12D08BC4E404E209F331B50168F36498759D57D37F3E0FC0108902A28C2007020A71C2A1840C3301E127A975A311575AAF4801746108400C104A610DB16DFF74525D7921C2088D20B2EF3C97BA9303D50D80E1F38152955D8FC06204193D30F3FFCD09BDBDFE47A553CA3B08160AD5529441AB881B04EEF4A50AB9C2D08749B382C2698ECD0AADDA980A1FDBFAD69B238D9715B7400867ACA63FD1C8CBFC2BA85C41435D74C68658BFAF62DA5DB2F9B34183881A0BF2D0FF4EC2D084237794AD5751279168F66DD582C2E80D2B6C16A21B870D89074B3C657AC6A15FADA4679C815D728A54613D2C0060453DE0704812B9FC57B68C74C7A8C54D0DF038987EF8339E3B4B8E094A3646AAB13906123B870BF2CA40DBE80477AC9A11ED9A44A8A5FC3C4399A0E5907CF507B746EFD0E36652D0500C1F4277AF0C4EF91F92CBCEF18623ECAD95B432FFC8685A7EF834E2F9CA278EC323F61013C00058B86B0734814F83558641BF3C4A2D2B19E71D7E79A0C595FC5DE7887B418E596064620587F95B905436D429E52801820A0999739E338111137D56705DA4DB500092E8499B35313D264319732D42656CA4F3B2AB7289EEE180CC6C53A93540E69E005C2FAEFB0DDBF4FCD9A3481ADA3EF924C6311D956D9543CBACF190F9F634615C0A70115149627E494033032EAC014586833AC4C8373206EAA0C1159EFC8C8230D7C5A9A094C83C2D98221B8D572A898669D5C5CEC6CCA1A4C6C2D203B41F552227D605E1177059F060E207ACAE100641B033D5536B49074EEB5193279297603474A8340E356A1AB5536AEE19222C1D62A7C09A4041E59944C7AC62591EC7693C666248ACD538E885E183A28B16544EFF4D4AAF1705D11369F3408B5E0FA8D5B56408638015DF3E3E41CD2C781218B47FBB843EF25CF070CD3FFE929079F63A0222EA860581BBC372D536E25350683718434180C0609122352321583EC2D08387138890890904AEA75000089C47A576D1B503F99595967B16CAA2E0E2D58B7A0663199CC5796279FE4404F8CB2D073D1A8344800538A133028649D922207006C9F871E0D40D0E4DB564B168B55C83AB9B1ADDF621C80A620C4A624C7DC70BCA320D72806539006C6EF29CCFF89DFABCE90759B152407B9A34D9FA1226CE90573259E0320A8A0D1B6410720269C8701E2A0301FB2005E8C593DD4F7D1EC61A3A4C65014648BA9843E4804931508EBBFC296EC94A50F791DA9C0F7584D9DFE0F7A82A12B77AD3FA0F494835C634E7058E04020A96676A02D5723265CA7E964A7D5A85B23D12E6243A57CD2C00704E3AF496C4160E41C3972C9793A62B159D60760804E8CC7BA7A779B06A4257AFFE1821401BF833FE3F8F1E3E57B98334855A926C54895A62547E90D1F1BB67403D2C02F98C606DFE278635A10C889678A2C1618179D80381DA95B63B1A79196B95907E60660C085AE4C902888BD3A7DFA7479D030EC46F6290F6D98695323EAAC071ACBACE9B6140684DAD2C00484EA8ED67FA6C91604AEC9978E401955CBF4CD3A6D9575B1975AB76A330F7AC291970170D0530EAEC27464BDF98DAB616676A9612AFE1C449223D42273499E2234A5166742A32D08D65826E656832D2125A4D505177D2039CDBB7547139BC2569FCA54BB2AC7EFA7F549FA34D8A71C818AF81DF494EB85E25C11B975AC55A85AA87E7AEB641F464A83102058A581A7248F7C5F1E0E264FB88F983B9D80ECC0C43603D8FC00814C91B5D5CBED9D7ECD107ACC3F7808C0C0923E000AA40AC3DFD941CA14C29EC3CF5116802E0645AA3458CF1FDCD2200408B6242A5FD2573021D737B64C3C926D95EB00C0F5F9D4A494591F344C34E10084D4469512907A98C841EA01189F1310739DF2F7ACF6EC8347BC989A34908F96CF188B30D8EE3F749F39D52A886BE8B8B1DC2166D2A523106A5B1BF903CB9FE270916A685D60E803DF0FD2CEEC42D7E115D33B5EFBC96DC3A23094F41C4F451AF8D36E65B5C34172546E9413B0AECAC49F6135443A02D9489209505011DA369893817BC66170E8D0A172F2D9F22C265536D67892DB430E8FB8B6390B49842336794325790AAF2957728DDA51B9A1136A5B0CA6C87273D01108F3A40CA16873AD5C5681C405B0D0170407200E09F6FFF3A5CAC69405A50A9C2BB60A7B6950AC6C252052A581014C398A3014838842D2528A50C58C6A41102B15A495064080AD1E9B8024127E0F5919A3CB836D0830275027C115107BF5DC73CF4D72CD592B3746B50ACDE748911C8A6BA0DE6DB991A75DA0CD0704F3FD0DA20A49274B0EDF44CBE2D16C198C0B2648D92BB007C6FAC1FA53B8B0487400BEF0C20BE57CD23928D5AF146F795DC9312CC6DB571BBE4EAD405B10085C7BB65654AE4B8FF5EA9F952390D61156D160C3793D45B60746D88232BE0A9E72A85C700022A404D20573CBF77D3CC4D57E20613D4A956AD05C81B65A40B0CC66BDA8DCD81C0D561381DAC4468D2C1ECD3091AE0514363930AFC8FC8304C69C83A3C06871F2E4C989754AE729214695B5969D00640C9FA954F5A541DCEF0ED5FA52D4AADA7DC8F14146D5424F664D56D95639B669663FE2250AE619F9E450B11056C2F6CB000A0E2D59D822C464B9B212018E4AA5DA78696006820DFC8DF52187DE4B64D146EFAA2692521CAE1F6916422C3A1B65C209C8642AAC19240C5A3267941C6A0B8CB70ED60453AD9318C534A441E4BC35175B85589E8585855264BB2238EB4A0D5AB7DA5A2B17273CE680F1684DE4D0E07BB15EB072418AB892D66225C77058E56D947B75A3A581F31B0A935A95D27E20D80958C7E9671B50D3582B178B49756DBC3A8A36A967507770BF305CC85459A8A639A20F6CC6149B9F23567240A55A57AC6D234160008249CBAB1B95EC941C3E735F0C68F05D0CA3C0A3EC89C7D3949971394ED2265419D3E111320754451910C83900B966213C70059FA73CA56126E7DE1C951A341350A9B6CD8A3408E2FC13DCAFAD931B4BCC939C80A1F9E4AC84814D4FCF38C080B297AE0E509B991B84A89800092E36A0619D5CCE11C34D64C4736AC34C9389F2999FC39FEC84A2308152233F10128AB24B9F61480596E43EE4B15E720C7AC6B1D04C91652DD83E1B70FD60202208340E13E46AC0AF810C40481238061171EB2B9A1722E9744757C8F296C5DA36422D4AAD74385E6FB84889C85D63AD4AADDACD5E1BD0A761EA65961A16B54EE34CD3E74D6A5E534D584CC94B4D0F9A6A71E17733A9090E40FC9F39E5BAFAE5E21C121472C3ACC613F90FAA4AA52AB282603068B4D2A14EC85D60A95D7D44FF0C43449887DCD6E2D121AAA3CE3D720115DFC39092F7DF7FBFB47841A220F60A921907101D802ED5D81DB2EEDBD765C1B62DB58090ABEE6D0A9806E366BAC9EA4E409C34B42E31688EF5964C8EC03E1330EFC0C1C374597ACA719D3A75AA3C900012D97ED9243962394731B410F114929C491A04D4E3998029846FB8D2679D4E40A84A94141804854B3AE4E0307A131CDBF3AE0EE92947FC15CCC350BF2055581B0C12C7BF1E5E13EEB6206930186C4CA5430061BC56C596C9BB21E123AE90766F3950862DB09A4888FA9012C448FE92CB849B838BE4A8E38541E3440E6384E97733FB0F5205D641A85DAE75E2C9E8951C00C78CD4BDF503C174AFE3A83EE4FAFE733A016539FBBA664C1BC166234990FACD6CBA35F1100E26363172994EC05C609503DF4B10FAFA90BB30AE80A148E5783413D260F58975AF994CB12633AE6FE873356AA275B2EBF3322B109B86641EA10FF883DA582B97197ECC97871A84E7F492430DF2499594B2A075929D86526A3455F736411AE81BDDF299625532A6F7212FFBD1B82C1DA13CC2A7DEC89C71F637C76641C09CFC59A6C99A7E77937DB3F5BFB7A9C14699B8777003AA40684083D77148606E7C123BD4CF51A7794D99F5570CF2D4BDD5401002049734D0412094A8B58FEAF7A6F621C7CF4565028682829510714A322B107A31C2AC6354B58D36DFFA3887A9CD58E8C9CCAEB14C5A82F103E65A589F30674C93C5A3ABAA611D23881B1C957F23B3340801824B1A4820C4D4AD4A32E5BA3847A81A45EE8005C6C2329C5A7AC69908D50FBBA916D7D5AB5727AA17240A5265697D0258F440C53A85A46DEF15AB3570E79A9006BA74F64983102058D2760B935A95AD0FB94B8DA2679CC5A32111B888BAEFA34EF1B767E431B53ADFE633F9D29F810B73CB909213274E4C3CE57A5169D3464B55AB262AD50C4883C1C05BF6C75A28CEE6E748921C3E9502EA120B2948CF38EBB4CEA267BC892A832E0B95E9A4AC3330CF88ADC2A173E1C28589A7FCD8B1636B72CA754F79D8FDDBC031DE4A675A0E929C531A4497FD4958FF8913D0F5C3AC40C85EE3508B183B25C130AD76BEFD307BCAE1008454C15AB0FA3AA48BBE0EA169B20087A9D6AE09048603C1290D428090A388F4EADFB592DC82608DE430E9663899481E4DC5A3434D8AFD68460A625DE829BF7CF972295590260BC98222D37E29E2901C0D7103F918220DC2C0648C8C2C64375952812842EEDAC810E5A8DE6DB2C1E7F492332B9069B2AEEF6EC2A4DB342F01B9262FE321934BC53349155900DC6D8D332A72C8B11D8E23B84193D2603D98D601C199352A25879EF854AB0541EC468C699C09DE42EF388B37402550E4733CC89533509397C4720EDBFDE390E1BDE264C7BC324ECDD52833669E53D6C9143E82F8528984C4BAB70D4A83A899F286AC479972730140FF194806A6C932380EBA31360E25539B6BE5120C20CF6C220A2B14CCB5EC8A85C3C1275552CA82DABFCB707029958A9B34441A04589302C0142E0D62F79D8B73F8D4AC6427A00F302CFC86D3128FEC948A8CB7985CE9140936EBE65B1663C38505827F08FC0E2A2CEE9345B6718034050CFBE49585A21B930683868060BA135FF8888FAC3B9D8026F7BD6B211837C50270587C3801E1D88AED49B151E6DBBAA6DC1453ADF49443A280A3C0FA84E7983F9A729B0606967B5820677C50CCAA341844A95AE3E03EE42629125D0E54E70E900A4C91657C1016932A429DC6996DB32E850CB629C08102F50B1C05FD3CE02967FB0248153DDA2087D95C719091FA96618C34981D2018E7BF086D7766FA5C74F511168F8684C017303D9696125B98484AB186CDA42A35A57E21381317EE1F4081EAF5E94F7FBA5C035629D1D5AFD4A1CEBA2D9124792640E0E2548D553CA4F8A1679CC5A3192A22C3449892D9948F63237C27264FF0464A21A85690C8EC530E7F062A52C2BFC1EE585897E4509BC1CA9667647C5301A14821E4BEC427A713102715BDE46CAB6C0A13C9DD226D96D5245771057D2E9A0413D602AA170C1C307AC04B0E6FF9E2E262A9C6BEF5D65B299C634BD11C1036A062E2B81617744A0ED65DA5AA54A75EAE6FB05C661BD527A6ADA63A007DF38D758154A199985987F1E0283DE3C58C00A1C8F115219A519213D047A46B659A5551BD34F5E27755B57213177676410550E01E2189F97F4AE2D4C038D73AA4A6064072CCBE3488323078D52A27E7F06DFA9C45A469D902289804C5EC378003D22335977C5AF5727D6A9569300310273B13C1C01340AE011036004A398C72997395D4981B6896AAD9940671DFDB1821AFBB19D9DF4EB655A6DD3E256C62B3F012D76089545C0CA3C11C01287CCF94AB1103DE34A9B1A678DBA604424E429ED487DCA746D1CC2B536461974794684CC58D8D28C739EDC18C495C981FCC1B424AD0A90952941D78317F3ADFCBEE001CD4E21B3349E01B35E5869C587A8A2C1B3ED2ECE8EB06E5FA6EFDF74CAB4EEE4601948963B042011CE02888BD7AF1C51727738ACB942A5B771E02CB7E6E2A73AE2E395CB154B55A10C8052099A6FF83E56570C2B1AD725B1A67DA74FCDC6124269E225365115202BF060A30D0E701C96252BFD238C73A32BEC9CDB9ABD5207C6D18925B10C8218B47EB6D95DB543C7A56D52FD4F5C285A2D20C290150A08A31860D404906E76A01B762F301616C443ACDB8364084243E399D80940E00053B10B19F04A5436C21B1586B97BB104037EBE592B0A30533D60840C105BEC2D0F71042AF718ED1060321501AAC0781816878394708511FF97C11F812E91597F572735BB772D6CA6DCAF2A4AB522100E5E1D244B430E3AF2055C853D8A033021898F8E19440504B1A9840B0E6A45CDBF3B00809ACB5ED3BA713102790F43BD471FAD9064B64524A6D3669E0AB4082C1242FC6A5D5F194BB2435AB494607229AABEDCFA4349800A170004560254442C8F45949CCBD4EC0D80DE27B8FB67D6C16063232688EF15C6D1B8C9EC5FDE23000B1C6E4D30198EAF3C965CE1DE6E11BF9A54100105C35B4624CB9A682D35932017DA0C0A680B585FE0FDAF661719127A8AB56EE344713D28B460CE664B0F23A8205313F0CFD0F4995CD090C41C6674F1AC8C74168DB8181E8653F4EEA434E2912ED040C911826CF388000BDB84E48F53455A550CEE1FABCEB3E195F8579813A8934597005F4FF83A1830EC050536D4D07E0A831206496066610D8D5CC943EE4FC99A44C40D3CFC81459B60C86DF03767AFA3EFA611E20EB74F0F160817A79F6ECD9722ED95116576C8BE508CE51C48360E027C9855B62C44B03F3E7CC7578E3BA8965E943CE21DB2AB36800EBB84ADF471396ADB6155D90F7CE9C722435B1AA21CA7FBEFCF2CB6B3CE5A6B94D7200AE931C0D4903CD9A94220D9EFD2A7F89D2D8D8AA606B956D8331548445CAB858940EA6C699B3A42AE524BC3EB52AC7C01CC39F810BEA17C83C8214D1A71C1247B65FAEC739C6E126D3294983102058FA785426DC4C2D086CA5DA01029A5AF5E2D10CC5EE55A6E9A95FF4699C3B776ED2A60040814ACB960FB1A6DC4272CF14936943D240DF9786CF14EB7FD7B33F4757AB6289B95372409CCBAA2221C5A353CDC1FD889766B06C5DBC78B16C0A047040AA205D16A4FECD37DF0CFD46D45498F359934C20301DAACD4B83F520B018B7D6996863556BA71310A71400A2178FCEAD32513A5569B25EAFA6ADFDB2D46D63FFB6263909C23AF0F7B04A7D4E4F39BF0BDF4DA9C2E8E8C0EF989B96340894184E6960D6F406264DAF909C2326FA22A80F798A5408B56E8168F2924596D5C24EBD56AE0B4C21BCC3C73970C25335055070D8B04E6E2E4F79FA61351E169140489506EBAD496E6910028455100C2C607AF637A4F4061C35718A9906D4334806A6C96273D0DCCB3E812CB2D046AE409E868967DD6016958E0D16CCE9E7188F57E6F4D602B3220D34E3D63A2098C0B41E58EB9D80A15224CA0918CB23D8DB8E6113345142FCBB723D7CED0742CDB8B368BE959E72A8409823D6C9C5A1C19C7AE6D5A702237C9DC67352954D31994E571A44CD75617202864A9151A8273C4462E00B71F2F3648444A0231027E3B4097A8EDF17E3254FF97D90A06840830BD2155E721C284895C57B983F38FF6C16A8DA2903E3D5A20A29D2603D98063EE39617082920B01BE1327793754DBAE9FFF48CE30484B8C222E2D4434EB4DE38B31F7EF58B9E700C4814589F90268BF965C213E6375F47ADF1DCB4A4C17A4B71162038BF21444A4487ACDB269C3A338B4763E3B38B2C7B056291EBF83E6CDECEAE2537510D85B9567ACAF1283DE52CC59ACA396280B0F1D2201F0FF601288873C86AEAF821D65902286401859400BC14D04C530ACD8AC4939E72486B64FED10188C5959EF2A8FB1B8C8700848500079A4CA72B0DEAAC9FCF1128A5885372C0EC48CF381D81F48CEBAD05BAE4F48B89CC6D62603DD828F3FCF9F3E53A81D03FF7DC73E5010690BCFBEEBBA13733A7AB3BA1D24007D3460341FFDE943EE4F2F3AEC0C302A7101C4A048329673C87589B20B52AE09063E3E650C1726D74485D1E304D8014121CDD64AF5CB932C99D89B3566D2E6910FABDA975AB82FA90833FD47108FA06380B6BE5B25E6EC8A674BD3F8BBC84F91A78C481434FB9AB3077ECA1C3FF331831E6CF2359DECC40B0CD53637DC8534D86AEF7A0A6C1BA0530D00146932F360FAC33B3C2117C5E739B5AA50394258C7818600E709FACE8C2F2461B73CFF090CF1C10327DE7B8D9E63575D528A84A38350108FA3E60698149929E7179C2E6DCD875A4489D49B5A976D2530E732D40028E000B140D1D989B189F505D6FB9941A9B411AC47C874BAD0A89D01DE5AAA02ED51A164F606B345A5250E632B40A624EEE30ABA49E4061031A565E87050A0061AAAC4DAA64AA1956B40108296A955772C498C06C83ED82C91D700202102088CC0ACCA9DE84E605A7002C7701B9D0CD0A7E0790E0C27CC20285D82B7495A57330BF03B0FCC9A20130CC44DF8EBAB59447298D2CF14BE91987DA84C5A4C30A80908D33DBD4F22C8473E4E03D003F3DE528FF09B5148E3F7494C59C0324788FED99EBF51D6FBA24CF46AA6CEB0BF0656941204F4B7E31CBC930010A44128B247D1F75BCB54D718A1009D2449E7BAEC183E7C2850BE51AC001884699AFBCF24A39F76C5340091D175B3575CE314502BF3EC2389BE46025116959E265F28CE726B43E35A7CE86DE28B25E77402AC34B8E604E486DE694A3F8020E2D4A14489708B56A1349837ADF6BDBAB5EC9A1FF20732B7430D8ECF3D3F4926FA4354A57AD7C5623D61CCE7DFFB808064815A85F000B2E78D023AC55451B81E09B3B1F39774A0E4C3C48619D3011DF6719B7850B2A43489A6C2E804C0B58D8B4B8371C303952656D641C8610B65F0E27AD511B70D64150E45CC751E807539D7EA6C14A884C9165F20F24D4DEBD7BA3D264A70D90944D4D07271D8038705854BA6EC1BBFA7E8E71B1098150988877CAAF7191F551DD132CA4EA3A00201D81ECAC0AC924FB049A6AE5E632CBA5980173AA8D7AAA2C2305E02967766068A3CC5CC0D89CD2606C78BB3058A9EA1B58464D94D8C1E7714AC256CF5E81AC34EE4B914D91104D480F5F06A0EBB590EF2650C00D20417178C002253B35D952657301A3288A6223F22CC2BFC30784712058D2B8C8286673B8DE8774406950AA0E900E30312223908EAB26897993EA55D3151CD92D0B5C0107090E15481478CA21515884DB96AB5147A2C5E2697AD260E00182516214B112C3B5DEA33ACD68B090B2AD32421ED856B94E8A6CCAE7430092029E699736C57C31A71C7F2F424AE0007CF5D557CBFF03240091CB0198E9EF9C6169A083C006A67A0019C54EACF48CB38FB64C91D51B6736B1A14C20A85B2822E56742FD3175EE13870D2E78CA31EF70009E3973A6040D8B2F60FE13C978CE1A618124B9AE34880153BDBD37F20511CA3A4BB0B85057C6C2503A40850A6922DF3440E4EF6D3AD929F4FE72AA7A9877E493E382B40647C1F5A94F7DAA54CB0014E9299F1ED10E9106030F104C2A515D30D59B7BA71310CE242C02269BA656BDB540EE1E813EC2A96F3617494FD9A029126823BADD62FEE9D3801487EA054F392A9580FFFDFCE73FDFE4D2201E4CC5206F0CA5537240BF851525963BA436CE646B0346DD865AD26C9B30B56EAEEB6742FE26FDEF81A102AFD76994E99B03AAB6E8E9018348C43DE383C3786910028426A4C17A108C1960B8EE33F590E274023619260210601199260B93654814AF8F6FC45645AC0B749FE4C4DF0150E01E59FE13FFA785AA09E91AA356B1A66CFC061E0490E4FA603201410781EEE4D73FD388E488B584F840C34E500005AD5B6C20097030C851DFE8A17C63DA237463B38F092C4CE06DE06F4C6C625597D04699A96BE380C738EE244F95066E309954221F104C2030B4D669061C7537098B470310B870623262D4D5892846EFB74991263309EB78F0710830049DE553592B972DCF521AD0A4FB39E4460E31994E471AC847E3670C2030159CCB46C87DA75288946169180612D21409DF874FDCA7FA2172E669E4E022A1C6007C8E6DA741AED9A200CD67F01C20C1DC814FB83CE5F5B2020B61CE4D35994E571A045664DF58C9C19F959E71B655861585F9CFD330EBB6613000130709D44E701458A1D05516AA17242E9C838CBFCA1342324894066BC1E49306214008910681E549B3280C5E27A0ADA20880008E80E72C1E8DB8293CAF533C3AC4C2B4598A2ED4F93B317F984F5CF81E486398D63FFBD9CF96C60C808439E5350F89718C5A942A0DD659933CD22004082610E454AD8208B97404B2AD324345F048C2991250A87314FC3A00CFA5AACCEAC697AFF139E6057356B72E1573CADF7BEFBD721D58A504D205EBC0F2A0F1F32437BBDF643A0D69100284103065951CFAC4425D6235752C2E01618B9B4AD9C015695F510B5EE639A9FF174C78D273D86D5C63DA92C4E75791EFA38D1B542398C52155954A54D4CD0A845A85CC3F34CAC441C29C72380061F4804441A18B50EC151304D43399E6920626FE9000A66625071619A080E876B5558E3507339F61F7EEDD4FD5E6414FBAB102C810C090AA5C68D8782838423E5707687ADA251E2BB0979B56F1B23108B79AC7F1BD7BF78AD88AE8A6B9C09A209F9C8D32214970851E54FBE7F72C3F7982FE848FB393E426A4414A7BB4DA92C33499901438D9532A8A98363748BB9246CB0A18734A6F7EAA9E8F209D2040F8333C55F95C3AF4F87FF9B9D80D9E1320BA1AC512F6FA23E6108781E20DE50F28E95B283555DDC24AA1A4C98ABAE672C443615E709031A1CA37DE78E3275FB876ED93634A3D3B77E2C4894BFBF61DBCB47FFFA19B0F1E3EDE72EF1EFEA6652308746B500A494E95064DB4474BB656D52D175AA94D00427982AAC7E1FEFDFB0BA5878F7429C0CD8F475E3A10A454D101628ABB8A89C70A310DBB7E17EE153F4F60E0FFB8081002087D358E1E3D3A843451A77EA1A4C858DD4B294D52D5AE1495B6EAF771EC873FFCE131481D907E25759E2E2E1EFBE0CC9933E717178F02301FEDD9BBFFCED2D283EDEA1AEABC32441A248229BE214E7C02607E536EA8BF43A910CB6A53CCE1945404720B540A2919E426E7EBFAC6C0FFB12026E098FE968D50B1B8E9090C3C12287C1F7F2F0BE011305509D061657D2AAE5EBDBAFCE8D1A39102CDB292DAA350B52B47F543A8CB55C5C53945FACF7CEF7B7F7B067F1F543475983D7AEEB9E7DE5380B978E8D0E10BFBF71FBEB263C7AE8777EE2EEDB87FFFA168B699471AF8C014E67269C0946BD3EB43174401E1895AFC11D4264514473825D5A6D82255226E765EF83F5FD39FF331B4514CE8C91FF2B9D82A28040841CC204A6C3CAAA700886E16C7E72A6932C2BD5EBE7C79A480F2547DCF50A95C4F01141BD76BAA8B1606241B7C2EEADAF6F6DB6FBFF2ED6F7FFB15B6883E78F0E0BD13274EFE12803970E0E0A503070E7F5C14A3A70A30DBC15F56FFB606A44158006F3128A62C396C8BA116FDA95AE0526D5213579C3C7912E6D8910402370C373F2F768892609040DA48AB541D49A37326DE17EE1780A0CA857BC6FFE56BCF3FFF3C2C4F73E00FE7CF9F2F6EDDBA05B56B458164E852BBA661EE663E8F52C776BFF5D65BAFA97B7B0DE12F50C914C0AF9D3A75FADD53A74E5D9E9FDFAFF8CBE16B4F9657E6147FD9F2E8D193228B34F08160ED678AEC922304245564E913B5B823759A3C5580D88AD34F2DDC5097022610E8D2830B4E129BC3C7914B82D4F99D7AD1307678C2FD131C942C0409B32CB1E93EFFF9CFC378016932F7C1071F4CCCE888C192955B36CA0F442300AE4B972E1DFAC94F7E724816C256D2F09202FBB9E3C79F538039705971985BF71F3CDAB6B4747F6EF9C9533308428090B7B6821D1CA17913556F8D27D08BD5623E557AE8E8ECD9B3857ABE95A7A294123A9FE046A1CEAD9B6CE5E7A6DD1C33347030441533493AD36B24EE52D2C8EE56B85892559DC665180980A5549C326FA35A93650592D16086865608FBB91FFCE007CFE11E48F88F1D3B7E5EA9631F28E05CDCB7EFC095DDBBE7EFDDBDB7CA5F60C15B77E687A47C1896AA31B58A8B53399556EEDCB98394E3E2C08103E32F7EF18B05F8040141A940B289934F57A74C6A524C49CD94CD6AF385A466EE2594BE714A119B8F04F3C88BF349950B860E35FF259947B0E21B6FBC01320FB54B4DF9D339B64A9EB5101B80BA0A87997BF7DD775FF89BBFF9EB1798E3A2F6D4432559DE55E0BFA0F6D5E5F9FD87AE6EDDBAE3F15DC55F1E3C78547872331ABBD14211ABB165B11E2875691B265B2DCA8A128D732881CFD34EF6A0B381A0691DDF763AFBBE27E5675C3FE79214A9F7E3030B0183D7B0063FFDE94F911AFB44A95D9022709A8C41A473671E363D109101C02890DC3E79F2D47BCF3F7FFAE2FEFD25E1FF64653C2CEEDD5BDA261D964E403EBEF5EA9FFDD97FFD1775D4AABFB79C8EFBD5C4437D7A000FF6C58B170B842C0CD667AE4C1ED5E777ABCF1E54A27E3BAD3072D12BEBCD5DB560D7575F2A0EAAE7BB7520A9DFB9AC5E43E8E98AE7942842DEABBEBFF09C36EB7E5EFBBB0ADF89A595D69CE367B4DC92B1E1BE062623A4FAFC1CBFD3023648F327FC990A4C786DEB461B305207FB277EF8E187FB7EF6B39FFDAABA875F45621800A338EDC7AB84FFE487F3F3072FED9B3F78F3F1E3E5D1D2D2832D8F1FE72F2A315262EE8B39BEE82B5FF9CACB3FFAD18FFE8F129965D420E27C40CA38A07322584E81E32FBFFEF5AFFF47804FDDF8AFA913E24F9796965E5327DE1EF51978CFDF56E4EEAF579E9964504BFFC6265B631C1487D5FDFF73755F2F28D5748752831EAB7BFB85D2C3FFBADACC2017D7B01F0460F0DA13350F8F1511FF0FAFBFFEFA2BF832183AD0E1490EA5AF63F35F5404F88CA6854F9E2B55063FFF79717D4E5DFB36D344CAF244EA703EA2F6D81148CC8AF08F1717172F3CFFFC99F78F1F3F7E49F1978FF6EE5B7558DE5F7A3857172EB5891C8EFF2F7FF9CBFF5EF192FFA4FEE8C32813837D2DD35DB59B3DA51E4E021CEAF9E8934F3EF98EFAB93776EDDA754A499C1BB76FDFBE5F2D2E360B3A6ADE1B6CC2A1E6E08902C2779404FDBEBAB705756F9FA8FF3FD024C48AD8D0903443357FAF2A55F78FD47C2E602E3D5C679F3A615728420CEFBF515D93B5520FA7D5F59A069A139B696EA14622964C5DC5F9F3E74FFDDDDFFDDD291CBE555CD9B2E22FE7CE9E3DF381FADCA15A7BBB0E37F8933FF99323EA8FFBAA2285BF09479514F9901C38F1989843C9A14ED2EBDFFCE637FF54BDB45B5D90325BB831D4B5B5DA34CB03B37B67B38D617500F1FE786F4FAB6BCDBD7DE10B5FF8E30F3EF8E03575606C97AF631E5F7AE9A532D64D4A0E05C06535D7AF7EE31BDF3857016D3C4EA9245D140734B0E07A39C7E1B9910307B4DEB1786A92E3F2E5CBFFEDFBDFFFFE3F363906DF79E79D521482C4CBCAE1F7EEDDDBA744E18B1F7DF4D1DD6AD34C0E5B753D9C8615629A875C75798752A37EE717BFF8C56FC0D1A7BF072F35FC1A0A3C6B00A2D426581BFF9D7AFA9FABB903589EC682447D146AEB77AA8B8081E87FB5020A25CD67D5B577B34C7E1D60D402C7BF5643498C3F70AD01720A70EA21E48003D694858585CF2870FCD0B766D334DBE5508F6B9C7088A7FA2D13302451FD877FF88752826887CD2B955A74BB52410192C72920D100839DF593EA926AD9198394796ED0C2910C0EB590FF58E97CDB7D9F7BEBADB7065FFAD29726DE5CE88B8A9C1E9AF6069CE5A1C8F67357AF5E3DE8FB1CFC04BA575C1D360BEAE9F3EABAA3AE5B154820951F0890AC8C337853ABEF78AFBABE264073D000989736BB5A96F4C7E304F9E217BF1844E2586C1AA6DD73E7CEC144070BC3FB837E3C63D5FBF6BDA8E66618F2592436411A032890248ADB415A1CA9D49DFD0690C0C0F1482DD9320D00E3CC6107EAEB609AFF7675718FE0E0FC150D3050CBF6B4121C9558C52222123D388D0D5548000C00452DE6ED8B172F9EEB21B1E600B98BC3434A05DB80571CDE66848F287515FBFCC3CAB00163C68E6AF3CD57C02048EE1024A02A6A1993C97B0460B03F7E545D72FF9C354899E39B161C12145091D5B553A946B743E391641F73754ABEF1CB5FFEF2610F893584FB97870E1D7AACA4EAD610494CE7EACB2FBFFCEE4F7FFAD3BFAFD686E6E02D15586C2059AA54AEE5BABC24512D7BB7BABE2AF6D76103603EAD196C660B1C2650507CAB93EB674A57BE73E1C205AFF5A2EA18BBA216F3ED37DF7CF31B831CCD135A342E5FBE7CE3739FFBDC470A1CA77C9F45C7272425BDF2CA2B1FA9F13F45F87A21D69420C19AC164BEAF22EBB7055008922795CA3535901840F3897AF8667549B5EC3306B56CF786824380625489EB5D1528E62BBD76AF3AFD9F7CE10B5FF87F6A617FD35592A72AEB737F6161E1F51FFFF8C7AF57DF71AF12F12B3D3456F7C7A3478FBE333F3FFF6F6EDDBAB5D5038E27EA736F2935F59B8A8CDFAFA4C4F260AD6F68E254AC4022D7F08006927B95CAF544F29226B849825AF67A75C97DF9C260AD7919D762137F436148332D2A506C3381A2426EA9DFAA4DFFBC921E7FAC16EAA82D0147BD7F43E9C95F57FAF4236171C2F38F2B91DF0364756C51D2E0DF9E3F7FFE330F1E3C185A80F1487193EF2A527E510061B9DAE0084579EC90C80C594154C5C34A7298C8FBE36A4D5606CF82C5C706F5686686DAB2470C6AD9A7EAAA658516D6CD13C7058A9150B39E53C47CDFE9D3A77FFFDAB56BA714F19EFC31F0881F3B76ECE37BF7EEFD40A9011F89095EA91600E0B859FD3FB7FFA2D864DF5554737EFCE4C993BFA9C0F12B6ACE76C8FC96A3478FDE558F6F29D5EB2DC3CF63B35FAD36FB8AE3F7160224CBD521755FE3254BD5FA3C193CF3E64BB06C0AD0A8B9DA6151CB76D501C7D64A479D378082C48F6AD78EEA737B8E1C39727AEFDEBD5F502AD65EF53558AC5B1F7CF0C1F79FAEEA5C63018A87D522DEA9263F6553163536E1ACFE2EA83FF017ECDFB56BD701359F9F536B73445D2852F14849DFBF5F5A5ABA3F581B5633AEE6149BFA7AB5A16DF97173DAFAE9D2E47E058C89235103C9B2F67CD38146ED4BDCFF8B06297334141C5B2A74EDB280C234E9739AB5843FF7544CEA5331814FB513AE08DC44A9AFCDEA77E9A7BA9CBFADD57312EB39B191E5F5586C581B18C91F659CD79C061879802D8BB593C0786CF8FDCBDAF5D4A096ADCC3868164C6A998973CC89891C462CF240932A8576928C339FDCA9277A6EC9D2C4EFD20FA3A1813FC88DE7039F3CC446964B1E7285B6F6FA265F3100F5B141B2E8C0196F1649A370B0D346C88B0CFAF6ACEAFD9B9597D4FD3E6E782935E6340932670091E933430B4857344EB36C90324FC5FB4F358D62C570A06E18688A8D0069B11953D436FFD093A15C970D30C380D7879A84D3A58D0E8E650358F87C6C915C53014AD196C62FFDC87238C500686801CC50A864A6D7C606F5704503C7534D0D5B11AFAD0855722C84CAB807473F361A4436000D2C00B281467E66A06D761D384FB5CB64255BC90D901E1CFDD8082934308048074D61E11E529AE857560932EA97B71F758663338E1300A43FD73F2BDFD32547CF39FAD13909347080664D9D815EADEA470FA2C174AC55FF1F431B0AD706D1DE680000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (90,1,'Rack_42_with_door_(64)',0x89504E470D0A1A0A0000000D4948445200000064000000DD08060000004D27D7E90000000473424954080808087C0864880000000970485973000006A1000006A101E86410CF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00002B214944415478DAED5D4B8C1CD775ADEAEEE99921871CFE873343529225599265C0326C69E3184680AC027813208897CE226B239B6C0204F03E8037F92CB2C9228091459C209B6CA2040A9008700404909C388A4491123FE677381F0EC9F97457EEA979A779FBF67BAFAA7B7AAACA890B28F477A6DF7BF7DD7BEEFFA5599625D3B852B9F4CB64BAD7D020B3690DBA81577A98B9ADAEAE1EEBF7FBBF25F7EFCACBAF0A4DF60A883678E4AD5FC79EB75AADFCB9FCD6BC3C5E9D9999F9B34EA7F3E38F3EFA68E7FF2D412E5FBE7C6E6F6FEFF7E46F7EBBD7EB5DDEDFDF3FF9E4C993AEBC578683F29B0B6B1FEDF3D07771B7DBED6476763611A2ECC9F3C7F2DE1DF989BF1662FDF9871F7E78EFFF2C412E5DBAF49A2CFCEFCBD3DF90C7734280E33B3B3B1D99B87741430B197B9F8BAC5F6B8EF01103AFF9A8BF2373E9C9FD44EE8732C677E5F147EFBFFFFE7FFE5211E4CA952B2F522CC84E7F5576DD0F6432EFC8CB13F2D83D589BE145D28BE01333F6BB31C2952528BF2B622A27065F87380E1BEDD9B367FDDDDDDD3D99C7963C7EF0F8F1E31FDDBB77EF5FAE5DBBF6ACB10479E9A597322EA288819B6FBCF1C625210A88930847243291FC1137DEB3373F9785802C9FF5719CC67B4B384D4C2BDEF85C6F08E1D467B2C073DD6E17222BC12388A49FF333BE8F5BFE2EB97EFDFADD1B376E5C90BFBF25E3BCEABB6FDDBAF5A84E827430685EF3F3F38FDF7EFB6DECACE4E9D3A7F9A3BEF57BDBDBDB393120BE3059994C1F0B86D776F10FA338E8BFC5FFC78E97DF9BC3B88123737373C9B163C7F2EF9183F0BBFA733CE21662ACCB674BF2BD4BF27DDCDFC1DFE1E6B845517914221608F9F0E1C323D5F03A5AF47027DA05E480410861FB015760D220065E83209A184771B9C5CBF09BD8F54AD40E7005DCA1E7A0E742A269026862BBFF7F5AEE6FE2F67CE7D9B973E7AE1922F1F9F5ADADAD9DA97108C5849E800078F2E8D1A39C339C58CA77230115EF617138D998689A94007A4C6EC152BDD0E40610C27150FE19C6456D4CCF496F3E7287E5120F9178CFC977DE908FDEF07CA77FF2E4C99B1E42E5B7ACE546298260D0BCE4796B6D6D2D114AE7C4C0E04F9C3891B33DC5150980C1EB85F211E308B9643006FD1E160784C178F188B1622E1C378C57BDC8250830CE77205EAEB8FBD7EDF7644CD0FCAECA6723C492F77E4163774010B7D3DA988C60C9107660D7F1D28430A2A16577AE0FB027E50E8DF91AAB0263C9FF96C4019738D1DCD6E3C1E7BFF6EDEFFCCDE6E656FAF4C9F6F2D6D6E6CAFAFAA315C1C719CC9BEAFD2444F27CFFAC7CEFACBC7EC7F3FDA732AECF40AC0EC58F5BEC3D12C307AA7C0E990D0E22A8BBDD9959D170184EB1C4D0CF212A8121788F62D362867DC4F765ACFB7A31F07C75F54BEF2D9C68DFC677E6E6BAC9C993C7D2DD9DCDC5EDED47E71E3D7A78616B737D497073697B7B0BC45A158E5B146338FF5DBBE8CE9330329712449D97FB4D79FFCD218210D4AD68C084A15569CD8A22410F4C7385E69471C4584C23D3FF8313E264310E8A592C7E08D8AD684D95DBEDD9B35DDCF8F27A922CAE2F9C58FC74E104C1B69D2C9E3C2EECB937BFFD78EDCCA347F72F6CAC3F3ABFB9B571F1C9F6E365C1DA958D8DF56559A316C631A9E81B12595ACB0297004F08E89824F004BB4363896F0135A6587C9944DDB50B693FA3058F4D82477030360F151102BBD6B2F8BCAC1B747FBF973C5CDBC4D3A7B2A16FCDCD5FC19D2C2D1F8C6D61613E59383EDBDADA7A707A63FDFEB9B53521D88670D7F6D6F2C6FABA106CED9270DA31AC1FA58A8F481DED8290E7DDDBB76F0FD4C853A74E0DE189F5599985498B76F524A22A4428A3790DA9B516D83737376928CE70AE1431D35234B6B69EE096156E3F6CCF5C7C787EE9E2C7E7970E3E87283CB5B890ECED3F3EFEF77FF7577FF8B39F7DF4E510970C19868087E5E5E52123D04E3AA4E9C45CEE93102522BE528C9993B122CC02BB360E85387BFC3BED7639EA0BA2F0CEB33588BDED76BBB31BD3F4860C43A272084CF11C5C42CD0B22417DA71FF2F04E0BD839468C81A21613D2201F03762BB2AA2046D19A582E1912590468CD050474C83E1A5DD87124CEB85C115B84B22E163D015AE81C0FE712B2D8ED62544D94562B1D2182E6920E7D3F9AED21AE60A113376805538C69C21501F03862CB27AA42E2CBE712A1C50E02693F1B81DDEE48AD55D6C521764C435A964C60F6CE9D3BF9841617177340D74428D8C553C590D0EF84EC9318B083301B1B1B98D78CCFB36C22C4474C9096974338AF2182C8A2EF2C2D2D0D403D04E47C4DD5D7EDB44A781FBE2C726C19CCD016BB067512EEC00EC92A15595AD3D31C32709D58E3CD271E34A09363C8F2CE91D72FC31D216EF189BD0097643400F5783106EB5F0BD92C5C88FCEF2BC7F5E718E2557B7D86212F4C12EE76DC2006FE00BB4D13689AB2B50CA85B6B9D7FC3C96960A7C56E415D2F489AD40BEA236AAF759D40A3A2CB1D040118E23B78CDF7ACF8AAFAB2C66008D869B113D835E1068661C51C525AED751FCE4214C14247DCC367A147B49DD638BB7B522E018650332CB237B4B7D7D92E339AA30E38A46A82B48AD55EB5203BF057852C744D04ED65750BDDAF8A41B4FFAA08D855781A63DE1BF565552FB2A26AAF2F05C73721EC30AAC078AE5D0F0CA95675D152A7856E81DD06AEF47C4640BD063B24E68EF78670F905C85F003AB41ABCD65E538FB737AD1A4742C04E57BCF6F4FA16A40E4B9D222BE48E1FD2B2E49EB97FFF7E3E19EEFA93274F0EEC12DC93B83A8E9A283160E766726A7ABB7E0E8973C91041604B9C3D7B36773BD8187A48CB716C3608E156312715922D340A9902E4D4F5AC291CE28B32E6300082301B503EEC053CAC43BA3F93E8282EF05CFEAE3250C746E182FB70CFE75A71F3EADB6CC9AA2F6DA9DB34D9A100951B741AB2D08127607F02AAFE3BBD23AB9A243897377F5FBBE24304D236573D1C5200EA7A6129BE983EC3A4387C196A23BF67C598CFEDE1CB3A394C064A11B02BB19BBF8FCDC3F7E85DB02A663D185202D495B36BF6EEDDBBF982631230107DD1C39A813D2D7228D22864AEAFF2BD75EB8E876871E505756D180AABEF5CB870612897D717BBD62282A05EC6529F26A8338C5B063B540877B709F1101F877083049D8BBEC911D071BB4CC001C6C802550AEACC6A676982DE3431ABDD26393489437C76C8C88480210474BADCB13B19B0AAD3FE60998475A158B0B796BA4E72A843CB0A257C7BBDBD0474DCD8F9F823381A75EC23E496A893385624E0620E808EB15B50AF8B437C9EDE110E91C59E45A893325A6349681194B652D5CCD21076E84DC278880E1F20EFCC827A5D5A56A978880C7EE7F4E9D3030BBD281F4BBB2AAA640A5D31E58B72FAC4940BE1EEFA43B8D5BB4E4AC54362E99A34BA743E16DFC77BB24095C92D5AEA980CEC23A3BA47DDF12376515A2F875817CA90DA6B4501011DEC4E0B9DE999D328573B2C7610C059CD45F1C9F77CF9C7231C52793CA43502EA5AD1E818BF4E0B18A2B3DCB103F11DEC4A24CB85EC92BABDBC7A4C0C5E715329304D9BE2ED0D82BA8E87C840DBCC65D2059E2119CDCB4DBE52C3B00C7610D8E98A67C14E53BCBD4150E72513DDC3E06DC14E282D88BE23B70BFBBED619D3F065190F749EDB0B55DC75732874C37337EA821D5647D561A947413D14C2B593624DBA2D6FD3B2FAA827A23DBD180709418BDD160B856224DA8FD5E8DC5E2D066099C3DBCB183A8D2B02668D0EC6D42EB406764E8E79BD56EBAA9F435AE5737B65E1BBEBEBEB83A4B8E3C78FE73B4F177FC6D24BEB02F6102770A25450746E6F5D1C829F2B8C8728AFE81E403D64A1FB164465965706EAD82876216376072D765FD167D3E2218310AE0BE3663120D7A240972D3B25A0326F2FEB0719F3A0C7B744F27536D2EC26A9CFDB6B6F579ADE0969330302004FB0E8AC2E55CDC492A36EA711BAD8EA83E3A6CFAA0CC790787558EAD6DB6B931C3AB6CD128D29787B5981AB5B54C4AA6FEBF2F2FA2C7682BD06760BEA7570087680350C47409D6C243B6E1689D6B8A0E7D3E3ABB12426CE9A66B55314909B7CA05E3D87B4CA652EE25A5858D871842965A1D34A87225035A8EBEE72658C425B853B106149FDB9BD9A5B46228631B1404A6A790C3101E2C9842B05756C241006A0CEF84D8C38D630ACCBDBAB0B76BC1C125B7C1A881059D4E5F577EA02745EDC0C3AD34487137CDC3D12314C92CA39249A0664070D02B0A5118840402748DA98892F09AD8C2FEBB0B8138AD7508DB7EF33796EA49343D3D280F4C49E3C79320B224014600265F3B19C81D51A7760937C172E748707C131F9EAD85D1DE48CF5F4D69DDB6BB9648820F3F3F33BF892CDC78A797AD9E6AF2AC3303BB8062D33CA62871BE708A8372E1E5254FAAC599F59283A5AC73CAD2A2F869119408B59EC4521DCEA2DF582784868A7D042674B0D17EF1D787E8BD4E1AAEC0F6E149D6765FAB70443B88D2CFAD43B085DAB11C2D531742659332662775D938C42FAD974CD3A77A1235ABB6E0E09C54306490EC6659D89713814C20D55E06A351244ABD0306C41E9D0A9AC45BE2B762E950967F573483CC9A1A58D3DE1889EED4315C2169D48E05C2B951A8620081B7686C2B81ECDAB6F55F2BABCBD218F6FC7804AEA2306C15B3BEAAA0CDFFA2E8C07F886DF677C9DE50756936A12861476720865B963D7EB1E59D885AE74AD11DE5E3D061D63A7780AF9B96C1A500D8940E540DD899E598470E9C6669235413E24BE9AE6EDB5F17465C57747E3210D4B72D08B293279077DB274C79FA2B6ADD4FFABF6F66A795CD4185359EBBB4D4B03B25CD289D5EF855C13BA82944D95055CFB232AA5A79FFCB440DD850B06D55110A9562169621A902FB777C8DB1BEBECA9E5B3B6D2ADBE5FD6173569FFDED0DFD1CF8671806B5893EE6BCB6433519E7B7B1B160FF135BDB4E783F0409482BEBDB56208DB69F06210CB8AB4BA1B98C5CAD97231AADF400897C11F003A9D77A17889E180CAA646FB27E650A44A4E2BD8797BBB56FFAFCB9735620FB97175F4E2A260071F68AD2A66A1BB06F79583237E577B7A63C62045B12BD7DBADBF8159522E1E1273B77352DAD4A7D795EE1511119516EC9053D0DF0BD6BAE6E62257CA10A827F583FA501A50C8A2650F1326586B70D555AE756209239C1449C00DC6D943DC33120FA9C1522F547B1517B4609D0347A855B19E2F948FD524A31063D41D4BD94E56856CD3516F6F33407DC025DA4D2D1CD10601A0DF6BA75D915DE24A8E2B330C219E7CC06E9F5B6047C18E75E6256933407DE05CD48B8CA34CA9FA16D5A1B3DE109F81AB2AF4F6E62294A93FE48222EC70BB70FF288EAB98C4522F95E4107241F8F2B16830EA36E4555D747E3A774FDEF58E89193160B7B187BA1A07944E72D05CC19CA7503E56933A3950EBE2219314B7BEE4EBFA931CD2F2490E02885D76B166136582652C1FAB09963A9FD3D3C009EB3EF1B6197F134ADAA2F1106008D89FE15BDB90DF2E003519DD9EC967815A9FD6B83BCAFC76EEED65655491B8A58AEED280F69BC021DA7D134D72489E1FB2533A1F8B9929B24895867019CB6719774960CFCA1E0E70945AD658967AC840B47E2256E5D615C2655F618C018481C50EFC20C7C632E1EBE490587B26AFA54E02B0628A3DB2EC293C4DC211E6906960F7695D3E8EA85EF52D00754D2599D42CDB67D0C660F8B3295A151731666FF82C76673B75EBAF0F698D05EA3BB0D26D03E59038A325EF0242AD8A88913279CF779099EF511D35BE3B520A5093B7D7E7C78A8670436209804EDF163B60BB8CF9CA92AD9D67205F649E661D3A952DD471AE3E2DAB357E1A9075D8E9D47F12A24E40D7CA054EF18478025190A0416FAF350A43A05E678BBF521CC25DCF2ED63A89D91EDDDD043CD19CC06A2A023B3947473DEBF05FC50CC3681A901063565BE804F42271E6269C56B4C3F253DA8A8C420DEC6C432877B77E0E69954B0372452D3BEC6D52C4099820DBEBE9E482AAD81EA289CD6662A7B369DF9B6CAEDD5013E32A41BD741A5008C8F56EA295AE8FB4001789FCCEAA1251D800DC04E066B4448778E279B8459DAE35A8D779A08BEF2CC34E9185AED54A8A301E5751D484BFAC2FEB303804C2A0A6051B031C4B57BC06769FFBBD2E2EB1F190A82F4B16B9C3DD070ED0250747593115DBA56576B0DE301AD8411802BB5B84B6B692F3BF4D1A98DBABDBE761021CB4C592905D52717BA67CA1E94B8B013B9334D8901F6F8FCAEFEAED90D2490EF2412F166BD080CE46943CDA5B2CFCCA64007E13BF0FA390D9253E60F780FB48FE71D66FD8812E361A685367745219D547DDAE892D9BAABE34B0C3E640476E5B265D74C07D6EE8560C25637572485C0515D9DD1E4BC1FCDEBA5B6AD80B63A2C54E60A72BDE62A05D8CBABCBDA5921C60185283D2C752B0FAB6483D6E82C5AE1B9B31798EF17599CF4CDDBEAC52F110EDEDD515B8457609CBA6F9FFAAB2D4B1FB99F9A245A62F474B03BB3E7AB5AEEED6632539D8C4691F2154D3CB415F78FC5D55A0AEBDBD18071C8A2CD6B1BEB6A253DA7E29BDBD1AEC09E86CD9644459E55E3B8E059C8A380E8803EE0915ECF87665E38EABF0B13B2BA67C859356BD6C0A8E60BC4C6122B0B30F8A05F6A18AAE34AB9543A2490E32995997BF3452066D09E069CF5469C18E2FA2695DF11AD89DB7778687DD5364A549BF6282149CD266DCE83B3C1EA88CB7979A58D500C9821DFC3E413BD60148F9DFF66C87D2BACA1182A7B459C330A6DE3213903609411D3F2056731672321E46E7D786AA76E9F03310E6CC9933037F55D1093BBEA39CEA1259DE53DACAC4D4ED91A6755AE8767C54D1E94AD1AE789F481BCDEC6F552EB2C6517B53EAF674AFD34AD780DE2483502F3844172C763C32C64EADCBB5DA484709D2E0DC5E79DEA158A2FF2A968FA5CF2C4F2A0CE162B1A90586D474720FDB01BA32E9F6A8486BD7E23A29547BDD64F7B093745F133F950F8EA1A336E6DCE055450C3316ECD02004471761870BB6EDB373691DC71DF938249AE4100277DD1797B609009D1EDFAA27C6821D2A14104BC00E860442C4E1DF0EBD57831D52BAD7893D3852C77B993FAB8F3D6A4A270716A9826B61B1C315CFFE59455A56AB5D3541C29EDEDC1B62B2DABBD4D9F9C7FCB2059FA601BB326EF3183BBBCDD115AF0DC3A134A056568BC82A95E4206FEE7157E97CAC1017114BAACECB0240F384D1D0A9D0DC481AD801209620ED4EF51C523AC9814D8A439CA0BDBD743FF0686F111595813A7E93AE7FE6F46A4767E8114D30EBAE8F8C757218807A11B0D330C4E4C1396CFFA74F70ABFAC24E873391E383CD41577CAC5C81BE2C2D92EB709D44413DD4FFD697C1D1C4102EC6474F2F44282D767D8C8526E4D026AC1C0AC7487290E7B3FAF8873286A1F539F94E4838AC2FCBFE8E6F67DBF08105763C17CEEE96698A5015A8FBB8C41A863BD855F644049F58C3A260B2551D70AF9D8CBA6047372E280276E1A05D4D903A44D6589D1C4240AEA9A80F95E73923785D15A843CB620817B8A6D3468BAAA9AC73312748521FA88FD5C9C17A7A0196CC16F4B521AFE3C2E2C29948E2C00D0F600FB9E22D86D4C92165BDBDDEE69604745DFCD934C310E3D5C0AE2D76BAE2EDAEF415205569A9EBC09EB71C419ECFEA2C45EDFB89893337E1AA0CC37C91EDB9BC563C698B9D0D6A649CDDA67288B72BA95C3B4C8E2BAA13E1CE53DD4A2BAB0FC14D7708413B06EC0CAC3501D47DF190110E298A9F73F0B48AF11CB21B22A28EBE53DAC1894D01BB83B5843E608F827A4D22CB775445D030B4C8CF0C147082AE9A6A028E604C3C9D14EA30801DE2899BC7E284AD28AE7A0EBE86CE436AAF4972E8E80ED61C34CF996A625B0DAB754115670857C7D8B100A22EB7EB4E72E8F5FA03F78DCF8562ED90CC773063AC7A8A077265D505A7736FAF4DFF0959EC3A2B9ECE45BD53B38ADD40DA2DE53B17D76A59BD9891481948973B08C1F64C3A0DE8A8B91EDE5EFC360B769892144BBA76319DBE5E8C5C1254AE9EF786704CBBA946D4DE98B797321917015DE747F9FC57BE26FCD33A10C6023B0C4296695B7C6B9261284C9AF872E1BC5D49F56E1AC83477541E63D85AC59C866FCA0778F675D1C2617C0F1F3E1CD4CE9F3D7B360776A8E6D65AAF9F20FDA131D82C7CCB21B3BA9092806E93AC9B7C619C1AD8759C04C702D64F90519115C3905D1A7B65321AF15DFA8DAA0675BA747417099F1242B10A6E91CDB5AFE756C726A39655962041C3506B55B44D00E6F4BC560DEAF416C05F45DC60F3B5D07C7C2D6E939A45D6D867E1B24119DF8738D03959213CA8C2C0E25959E4001087C01E4A7ED021DC03E254619DE7BFDF3AD0B27BC184EF60C10E6FDA24C0117B5058D3F0049BE3FEFDFB3961E0E702B0D3A5124AB63EAAE24F6AB069DAEFC0B443BF99248FA58318FD5473A93EA473A43E041BCDBA162C9E84DC2B49759516A92DD8F169894CBA661D22888346D1474D1021C24C2BCD661DB0BA37E97BCD528A2CAB5D9101EC71153BD6520F8571B1F330D93AB84517ECF094B858C10EC59A106877842053320D65F55B692B9B4F5357DF402587DB348B6B592450279441E2C312864AA1EFC330049EF033D1FB2B3F6107170B7698246ED35C2DA18E22402544E8B4D2FE7C5E419A0D5169E8792EB47A1380BA7E4F3597C989400BDDD7E4AC8ECB02FBF9F3E7730C0965F1B3290265F661E7D06A65DD34E9CF0D163FF592C3BDC8861AAE9521483A744EAC2ACE8F1D14D6346067FA8F0676CC4BD4E2D4D6181E661EE00C59A1797B288C915249AA5004228B25113EDBCEE6F6767407EB50C594CD93AAB2608762CA16ECD8F16960A72B5E446D7B5AA09EE69D9EFAC7B494D267BE6523C4C906BE2CEDE064A9E000438CE36D2FE42DB5163A2D7A952D9F153919C7B159B45FCB26DCD9821D2DB662215CF9BBFD29112415621C873A9B79E413173F1D08AA6C90B816AA24885AEA3E2E60CE2C280A8B18A74AEBB285AAAD5D5BB003ECC0D8741F789FE7611A0469B57AC7B01476E187173FF512A7B42F2BD44A83F217BB9209D6EC6FD2848B053BFAC0E20B172E0C4AEE6CF2831E772EF2C62488D8197362E3CD8416DECF19CF0557292D4BC53D66D81F8B7DD55902DDB486FC3160BF77EFDEA09932546210C925FA7546ED9031D5DB567F3E0B2CBC5DFC5143242DE7CB52BB6770024DCC42F7A50355E8ED4D7C053B3E8722331B893907F53A938BACDCD6702B3CBAF01EFD2AFFD27096BDB5858A3A396421201F0450448C319B9C3EAE2A0B7670F90A7688292160771B2E9B9420C21D33B8C30BEF5EFB517EF03D2A4256BBF206A8EC2ED7DE5EAA68580C6404EA1876130A769861C2E4B910B04F4A9056DA3B16DAF5BE851FF99C24CBFA23D93B855A16F386E82905CBD3E56ECF16690AB04334E1C6A60161CE9D3B3702EC93124438A30B1D27B4EB038687CF524CB5C3B6902032C02EA9E73B38B2A9F9589638105D16D8F128739AD1BBB30C410E7AB50B770CEBB64193BC0856B4615848109C40134AE31F1D689AE83369ABB4D419C2A5C15716D8E5BB7B5A76E7F3CC8A2CF2FE6CCE1D49C1E28788A3F9281D33621802F24134CB9D68038D4567A1D8F64C471D0FA1CDC18394596E40B11A0376BD18244E9C3BFAC78B76FDD0276908CF93219754690CF1352A63EC81804E03B12EA9A43DB7180F1D85D82C702812D87DDE5E4D90A2640E6087AC643BE0521F5AFC02170A034C23998B239BDE07EAEA009441C51493AC6316FA347D5991E3EDD2903B05C4614D08819D95B8AC631F21489245AD72ADD4A6058E432E7CC06A77866118D48712E51C0B7739392658FB76912FBFB74AC33054B01303762440C8DFCC308E337C02B66FE81962B0B345BBDEE3480CBB50D2B43C86F0041A9F6168451A2809D9CDD8B66B1E5099FAC5821D2A1410A1369BD2023B6C1680BA5E8CE729A7A92FF0349BA4599AAA604768F1CBBB50C6F465C5388100CAB269787B192EADB360478F8BC0EE0BE38E1BC295BD3C5F2082D2B8EFEA80CB86790B7940BDF20419895EA96329B00B219F89273AE5B4CE0BBB1C9B83D807B70E5CF1D0BC34B08F03EAB08BD396007A1E7C2AE5384C3D3A472074900543B8F90633270574B8EBD8298ED63901BDC98621C607E2804B98D70BE2C0E705623D78F0A05D8E203DC71D5E5DB7F4E2279EB87A2C0DC8A76565F6A88A1090F3627E6FD586A13D61C78733D8440476E721CECA1044F0637E78E10B17BF78EE8EBD44CB4AA36940A64EBD67ED112BD218A1D32E708830A401F964F638B193A20C185E109FD804104F2CD8016887D24729DAE4F3BEDE643E8E3F485CC866A6B1F8563FCEC6759D84342C4C9A2D2C08E8F4B45605EA765CFA841D8C0B76075DF11059A156E436C1C0637BCC4EBCF005FE2D2DB2C6CA7EC785C1AA62C9210B3D7490A4AEB998A40623A45C143935C1A528D8E1B8E14C84DDC1A69DBAB999ED5061FF6F2B4DBA5E62147975878D9534E4F9F5255B0709229C30AB8FA560FC5C5BE89186676913001F935D5B5B1B003B8803770A882344EB16F9B2720E096520163916BDDF796E1426010ED19C6A4F47D8A1AA58E620625DB0E3DB559643CA704BAC70D37A7B43C0AEBF4FF1E5ACFBDD18A8BB98473B14CB881347A9C7A68EF2B948CFA2358623C9D645F9580474DC4C80602F2A86702D11CA8748CBE3100B76C8014CBAB6C01E3AB438449056DAEF4EB2EB7D8DDC1431D2982F2B18C20D2D20FE80279E4174014B00EA1A34A701EAB13A9510BEE8383A880367228B8BACDD6431C4CF2107BEAB6162F8173F408CE78B9F7AFD5BE593AD875AA7BA86977C5F5BE831B7BB05F57138C4479871D4679DBD08A25CBC7871D0628367FA6A4BFD79806A9820A98A0C86163FB4F0A59C8F5956DE75221399D55DAC7D167AA8DD5F9557D111DC105F48BA46B90438071A176E01FBAEB63F0E1646B94B5C56C938BBBE9CF391724F540627B2429AE490EB04A06E9B978576255B6AC46C85697288DE08AC5361B95D4C0D6766A3CB11D8D59FE98DE6EC8F940B1FF0EA7A77BD7FF113EF36D5228B25115E0C0959CA36860EBF10D34A71B33D133CAEB1D0E934B948779060D901811D5C615BDCC6360617B2956673C6AB9B96DBF549F90EA0E9C149AA36D182EA7761593493D1183D44B200007D92629D718DC31077D8EFEAD26C6C187A7A99145EF6B7F3706DBEABC7DFF5E3B858B49665CF8CF4B5894D55047008D03568162DE6246AAF550C26E59C3B77EEE4CFA1192E2D2D0DBA3838377DE41FC3873564561F7AF17D9F8F55D226BB2A2FD8D16EF7A28555277F4E4D26F9B42BFDFB149BB1843D10E0C18307B96D426047C14E84433AE32CEC44DF31490E85041119BC5764A1F3A40146E8D8B7CA79EF83E03E29A8FB2E803893BC219AE8E289FD1F00FB7EA06B4E8018D320CEC8776D3789C2FA9050BF45EC4A260C004B009E559C5FE8C3105FC10E6A42401C108BBD7CCB8A4DA7EEA6D35E7C9F3782A9A485012A3B698A229641034B30D11896F8BCBBD3547B431B4617EC60E3003B38F632C0AEE21F5359F8D877906C4DD3426B5743012A6518CED04AE72E64366099638E7C3E9DAA2F8CF9D6AD5B83180E811DAF05533AFE9D9B74A6C021FE08A3E9FF6543B8514B9DA79831F85374CC110B767C27EC4CD330B413878862567EAC12D7027B2FF4E5B43F7338EC308BFFDCFC4FCDEB622DCBA4C5643EC3D05AC9D879743D6047EA829D2297FD61BCBC3A844B1B89C5A8DAD118216E16E090108614EEFAD0E2FB9D8F493A71B2B5BE08E8D8910073F4C99D96B737D655346618DA821D780A9697970765D2E300BB6048B770F1EDC2172CBEFD7FB100558C20290186E15BEC444C0EA01E2BD809391D0F23B22C614284C767D828B819C0027120DAC83D315FA5FC8756199163FB410E391FE3311192381DAB4E5DF0A0CB8600FA9CA990F3AEEAAB2C71A18860EC3C2501C08E477A7B47007DCC5D5F1013E17BE9731A67F9BF6D8117B3BEB74DACD7B9288BBFCBB068A8684767C853B5E44E296AC151664143A9407A1118C2A5BB2406ECDA158F9E927E08F1EF7A9FC8F110231D86954C6338699C6A1BAAB4C8B23E28BB38E01ED7213A9F2876218D3359A46C9A7EA918C162053B4595B87E9195A493EE7A0FC6A7F63DFD7C2C5F96CF4908B60727E0111346BACD38C53A87F10A17797B6DC10E22848CB173B31403BA9718E9F0628677BDDD6F81FD973EE79E3139448B2202BAB6D0434D94A701E887E126E6F532F19A5A97CE2DF3A69EA6071C6217BE68F123434D8BC6E923C80886B8D3CFBAF4F612D0B5851E5A607756607A58B77A28DBC5D75EB028FB1E2A315B3381388893C89C7C29A279B7D0C977FD386E96349806E4ADA01216DF6517EB9818C11FB21D2B29AEBDBDDC09D681362D114760E7EF433415013B92E7E0D08E2DECA4BB7E3C0E29910654268CCBC693D86D6C244070652785C3069FCAA49242BEEBBC5E8CCB9D2F95BF8636E503F6D06FA70722AB578D73311BCF75123A1B0498424087280BECC674D224B9D077CBE4F5EA1376B0DBE048447E162D766D1406FE0F08D29FFEE207675A1ED41151D35553B47E757E6F9954509B9B3529D08FAB14607C200E09848CF89595959CB37109E0B703043982858F7F3714A41A4972008650A3B295AEBE05F2A5038544D4242A70A83E45452AA3C07EE3C68D81A80D14A6B6220B374D119686A287FAB50DE1F68A0A4001A4BA02971A195DE2BE9D10C28D189EC4FA09B360C79EB0136AB141D186AE9581853A22ECF0B47A3073B6352B9D1090EA8B80CE835D78AED361ED8732A7FB8430C477C20EB365206619292CB2D6D3619135C5C51F799DC6FE1D45D8C8D1AB3AF08489E2111384DA48DBA4A83F8A1655DA0A2E43B858E67D0CD89D5A9BEF326007EC0E26CF71CC91FF71A85DEF5F7C1F718AE73E62185A401FA3E965D49755C6855EE446298343182788831B0481C685C46BCC6B636363663CB154AA5C2A2DE68CF28ACA104184037609E8BE93A07D16332376D635ED2BD619C78715F21833DE415F562C3440F185B93877D09E6717C98AE9454B4BEEFAF077429D1ECAAC4327A6E75B3144071E0FDB62D8D47157164A211A678794C958F115EC8038CCEB2D0A7A154BADF2BB3ED2668386671A6AA2554890D049D08CA363F1210A181E2D43F569B695B5E3D371746C12D612E2333819F5114805C448C7DDF5B1C50FB8E59332ED603A3EBF150FFAC5237479185A7467FB44843B83AF2522E1A9755F4FEB820DE1ACEF599F81C97EBD54CD411C60070FBF8C847133CB1945BB3EB6F8EA75AA5F5BD1558821B808EA58FC220BDD898CA7627FECC9A4DBF21C827DC697D8E6F721A5856E78DB67CB95D765C2B5DB22A23A32C6B6A8BE23B956105B200E6ECC07598D70C50BD78C58B033339D14C74351D48DBBEB7D8B6F8953E0B80C1304A0EECE1D0FDA01B218FB62186EBB93994FCC1F80C7C0EBCB47D739A1902091466543D8C50300847353D19C8E830B447CEE0BF76EC8B85B822B27421E5F04B1302FF9DB5DAB2EFFE99FFCE80F56572F7DB6B2B2FAD9F2F2EAED8B1757EE2F9C3805C7771BC124DFC2C716DF17B64D9F87A7C623482C6D53B8605376675F74FCEECACACA22554CBA3048083ED7BE9A32DC107B9FFF0FBFC5446F10E7D2A54B9D175E786111BF7BEDDAB5C7B2F0FB4298AEACE6B1B2215C216A5BEE573FFAE8C3578999A74F9FDEB97CF9CA27CBCB2BD757562EDD3E7F7E796D76EE9868A02052561CC0CA3C553C59396B275A41250BB02D0BB12B9A55FB95575E39898570C73E0C1EC909E40E7D02F261A3803E223162499F1B3002DCFAFAEBAF2F40EB12B1D4FBE4934F7684302D88341C57378E4201AE1151372BF757E525EE5C9B134CDABA7CF985FFB97871F973E1A8BB67CF2DADB55BDD6C6767B795FA15B291B6B2E9B804C12593DC971DB389C9BFFAEAABC744F69E66EC83FE22FAA79C0819BBEAB66C23019F2D63CFC6C558683701F38067EFBCF34E1BBEB54F3FFD34F9E28B2FB6E473C89EC5493702FEFFAD5BB74EC8FD0D79F90DDA42172E2CDDBB74E9F2271797576EACAEACDE3B7DE6C266BF97B4F6F6F77D47EEA46531E463BE905D97CACED810EDE496EC8A67C201E9E79F7FCEEF9D95FB12769C8BB75F47F72091DF5F8256255CD193F71EC9E3333B14E3F1B5EFF9526E9EEB9CEA8BF27B104FF32E548013E5365D70091AD83E343121CC71E192B3D00CE1047DF3CD37D74594B56EDEBC39277F7F6A5ADC8ACD79EDDA67177053D384B35338E80BE1A0ABCB2BABB70493EE2F9E3CB3BDB3BBDF297B8865E7C18307AFC7BEF0C31FFEB0F3939FFCE4C732A1AFAFAEAE0EDA22C962FCC5BBEFBEFBEF42B8DF91457E5516EA7321281C4A77E57E9A1CC125933E2BBFFF2D8851F9AD4FE5111EC4DBA015C4D6E5CB977F70F7EEDDB32FBFFC724E70188DF2FDEFFD9B5C8AD02FC9FD96B92F1F766CAA2BEA958F3FFEEF2B54BF1717177B541AE4BEBDBBBB331F15CB3191F1DDEF7E77F5830F3E784F26F93276C08B2FBE9897866127C80E79FFA73FFDE95F42C426718FE9515C6D17E5CBD520E1E8578433BEFFF0E1C305E01CC6894D0327A370F91FBDF7DE7B7F0CC9134EB64ECF28E27CCD3DBE018C3F027B2A2AA63BB13FFEF8E38FBF7FE7CE9D97A9DB5FBD7A3579EDB5D77282C844B10BE6C772674EEFDA3758F33688410351C69DBCF5D65BD4A27E531EFE41EECF6531B61D61FAE6EFC1D9FFE46E2E1C6C96370D277DED305854CAB918A1645B76DE3BF67DD45B60D2F2F97F250DB9806DF63DC4FF315611599FC9CBAFCB0DB51680785DC6BEE908B31FF99FB059FEC3DD7A5D7C22EFCAB4E6D2F111C2EDFC53C2FE577D56B070C703D13CFEB529041159FD893CAC5ACD4834A12F6EDCB8F181BC3CE6E684D41870FC4DB9AFC95CC1194F65F1F7C620FE35FCADDC7FABD6ECB447E47D651291D7F11142EE570074C2EEBF10CC58138DE5CCE00F3A9D6B8229FF28848188D84C8A33368EFC92B17C2062F49B62772C288FC287D7AF5F7F4F9E5E708A46E2E607CC839BE705B951D4FE99CC1D9F3F731A5B2F1BD3132A5F4756C53FBB5B8BBCAF7844DEA952A02EFF60C1ED9ECB6E47A1EE795658FECBA23E7E5BB48825D989373737377F2E000AED0649B55F28795ED6029CF6F77267AF68595F138EFE16C62E9BE6A66CA69FF70F3CA7103DE0F427EAFFA64E11E9B9CF1FB9B960833D7673EAD93B9B82CB5AD6F9458FC87BC1479019B583EC82A48E9BBA6E023D3339BB90A967612779AFEC6FF0BD3977CFBA71EEB847DB23AEABBE3B67444BDF710B08B8ED1E79F7DCE7532594ACFD2912278DD5444CB85B2BCB6D3AC4F7C821F626A1BA8E481DF3BCEF88EC2354A6EEFEA4844A9B7E84519597ECC95680503A77ABED8833A36E2CE29E1375FB8E2B9FB8E759E27A54FF8A204743341F772586435245A89C48B2CEBD5F11A47EA225E372C8FF0276A5B2BC6B039D220000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (91,1,'Rack_42_with_door_(96)',0x89504E470D0A1A0A0000000D494844520000009500000149080600000092296FAF0000000473424954080808087C0864880000000970485973000009E0000009E001381680960000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000046C94944415478DAED7DD96F1DD99D5ED5E525294A94A89D544B6AA965B7DCE376DB9D891D0733B011180E0681F31238819F06180448FC122098A7BC0779CC3F9097609220C0008111208911C319D863B431DE3363C7DDD3EDDE572DAD8D5A48512279F3FB8AF55DFD7878D6BA75C93A977D80D2BDBA1BAB4E7DE7B77CE7B79483C1A0D8CD51CA283A3806BB3D11133CCADD984B02E9D8B163470E1F3EDCDBDCDC2C8D1B3A16A0C9DFB2BE3E35353530CEAF78F0E0C1C3B7DF7E7BF5137075185400D2D2D2D267E5E19F0988FEA9FC9D67E498956333F1770A2DDCF8BCD7EB593FA31FCDEF99EFE1C0EFD4CFFB321ECAB9BE2DA0FB7339CF3FFBED6F7FFBFE2710D94350E1A69C3B77EE8BEBEBEB7F22FFFD4772734E3F7AF468FAE1C38753F258C8FFDBF81B8D0F7E9F60D4A0D2209D9D9D2D66666606070E1CD814906DC84BD7373636FEC7F4F4F47FFAE52F7FF9F34F203346509D3D7BF6A0DC94AF0B88FEB9FCF70F05340B029E2901510F20D2BFDBE4E6BBDE3341E07A8C0197F99EEB3501179E6FCA7380EC9E80EC47F2FFFF2CD7FC5D01DAE34F60D41054E7CF9F3F2E93F82DF9FC1FCB7F3F27CFE71E3F7E3C25A02A6592A30083BF65BBF93160480560CA4130998FBEEB906BDEC421CFD7E4F1D7320FFF5524DC9FBFF4D24BB73E0195035422893E2DEFFD894C30ECA10B3299D302A41E8DEA58091163F334054BCCE7786E3E7B4A6C2827B062AE0F8B6A6D6D6D20521A405B97E31DF9FF7F1390FD971FFEF087BFDB77A0BA78F1E25F1A764B4F56DD970540D3F82F443FEC8CDA4BD31EDBF091AB57BFA69FAB47FC53FA6C26F3B90B403E30DABEAFA58C069529950030FD68BE6F936626004582D3861C00646FBEF9E6F7E5F135F9FF9BF2F7AB439EBF2B6322556779E9D2A51DEEF5F1E3C7AF7DF39BDF5CC4E4C03E0A3DBA5E33FF2F2B771D067D8A1DC7CF6A40B83EE303A90FC8F8BE4816594BEBF0000B31CA71AED563CCE1FA2C7EEBD7BFFEF5F2ABAFBE3A25809BE762AB0FD867EF2990E1F12DFEFFA38F3EBA972BA8FA5A35C4DE0C530AD96E6C6D775460A2CD85D5CBD5ACA559D3BF190B48D7FF712EFA773917385F9C6BECDF32C0B2E37B26BD51BF36059A459EE2F8BAC5FCF8D800DCF0B87EFDFAD5CE832A7453634084212BBD58595929C4B6A86E0C3E83D58A1B84439E0F6C93BE5703E74449C5F3C7FF2165F4A220E0702D4D006DE3CC7C7350BF7F4A9EE2F8FBA6845E5C5C7CA0A59A01BC776FDFBEBDDE5950B96C287D531E3C7850DCBF7FBF9A7CFC0626FEE0C18395DA53B6053F5F6AD272D775BDE566FA5427EC2A5C0F1E01385C0B1E0F1C3850BD165A205A75EBF93541629E57E87D1987E478A13ECCF7D7C57C79CF01B8B7EEDDBB777FD741A50D5A1BB05657578BBB77EF5640C2FF31B9478E1C19AE6ADA509C70AA1182CB76134CE37A1CC3B4CD422A4C9F1BE648DB491894C8737373C3C564FBBEFEBB8992AAF13D95E3527DFC43F3B7E45E5D7300EE4DB9B7D7C7062A3D001211A7C59D3B772AB05012CDCFCF6F03114015BA413E637ADCFBCCFCFD51ED24AA471E180017161B0C76CC0BF61CF5DFB1D9AD6D4A5BDFFB16E766B13EFEC0FCAEDCD7FB3EB52A527AA331A86472A6DF7BEFBD4AB5E17D88FBA5A5A50A38DACB6B6277D96E9ECFB36B5B52B9CEC94683C4004D7B7E982BCCD1AD5BB7AAE7587CF2D8B319EA6D81A481EAF47D775E5EFBBC3CFDBC4DADCA35BE6B039C3C02880F86A082FAB2ADE893274FC220AC6C0882C894463610B9544BFDBBA5EFE253A880544069E0F23CCDBFA3EDA45887427F1640AAF70E2B898E3933D59FBE51BFFFFB7FF77599E7D79697974F0B10CFDCBDBB7C46D46A1FAA756D6D6D683AEC96EA0C7C176AF553F5619B5F78A415D0FAA6E18C1F16103D86ADA0A5514812D9C00540E23079261795302E4965FBDBE67373BB881E2B8F2654062415A232401F68F5CBE7C78E1D7B6776EED29F5D383E5B7CE1EF406DCE95AB2B778E3E7870FBF4CA837B67C4A83E2D405B12C02DDEB973FB29B1630F43CD02747A8137054D8A768800EB92BCBF248F7F680595E9A9845408FF0F89C655466E0A2B96510AA4146248CA36006682D765AC9B9482B681F01AD51AC19522C95C3C55FD4EF5EFEAEA5A755CB952ED38DC2E8A69398EBF363D7BBC583C33557CE6B9F962E1E8BC9CE8C38377976F9E5A59B9BB28CED2D2BDFB77176F0BE020E59697EF9C96B92F013ACCF718546394DAAD68241BA5601AB5AE3F8C8926A5408944D10F6041D2F1754D309A27380E7B2A6631F8EC2ACE03AE05E70C40699544B321447CEA6DA19DE00E5F076CE31B3797AB034E27B677C4877B776AFA4871EC78593C7DE1607154003777606AEAEEDD9B27EEDFBFBD78EFDEF2D2BDBBCB8BE26001704BB76FDF7A4AEED32C3DD69830A451D4AE15543E43152B416C804A2271728F1E3DBACD1334E98310976382D8942AA3002A567A85E8055C27EC2518E4F81E25029C18A8397A82E6F7FD92B71C79E1DCBDFBA03AB0C6E5B82E4AF77A511EFC7F8717CE14A717672BC02D1C3D58AC3CB873444077FAC1FD6551A5779644B22DDEBC79534077F329917AC7703D101054ABA3D866565069240328A013402BE03956EEA143872AD7D9F4049B6CA5F8D45E53E99522D6536F2277090026020C120C0729059BF36357F1E32521571F8A5ABD2A6AF5EA4DFCF7AEE811394EBD71E8F0A962E1D854F1C2170E1547170E8B247E3C7BE7F6B5939070CBCBB71709383996C49693D796FBD046B17368A5146452FA1F7CF041218662F57F520A009B49709A206C63CFAE0D9B2A153CA976D27002EB0D68520A980B2C40520A88FA30A324C6ED98C40CA8D59B37EF56878C35399B0F8BE2E887B373478BC58365F1E967E72A2977E8D06CEF2FFECF77FEE577BFFBBFBE1EAB1AADA0920FF4A0D24E9D3A35DC6ED104A7B95513A3824C4A619C808A0196CD8EAB233C8376926B40425182E1A00437C36EBA00AAA05ABDB7521DB8C5B22E1EA6D85756508931F7082A8E5E448A07A8A517B92D359983DD00532C936E7B8DC0B27DD6F4FE42839402F0D63549953A8729E7EA92548DD4174008838F5E12DD73BAE37BB95D135A5D788F9205B69196C4387F5B94428C4433BDBF360DF52E80CA36AF7D9751190322DC04780CF004F11CDF8387841BA037954735DE63C196F23742AA51B3EE3CB44362CE9BCF7374C453159908AAEA3C5DF36F53E9FD9450141DA500209181469402B773A832DB12AD29922BB4696C533F3140E4396A831CD7896BC622E27BBEEFEB80C027E79809AA8A444915223FCD28054C1EEC2D1C788F2467DB8177A3A8411FB8526D2CDBF721A508304AB03A5CBAB2A34C356953ED7949AA116D2A0C99ACFE871F7E58510A18F068B0B96C520AB1EA68AF223D9B7052363BC9EBE9284A0160C31C6101E26F9352A0447778C459A93FDFF6CD8E6D1A7D9108D7804A43A482A6144C633BE4019AE27FB72985D441C9130B3673304A8120D39BE9391BEAB1EA8F00B3824A00F4888C798CC4B1798BDAFDDE6BD11DABD608ACD8A0BA10D010E9B189186A15A5A0CF2977F5E79A5B2BA84236868B72C0CA848D452396BF49B71C510AA34AA99414AD54B5478F95C0D2FC546C2D8818EFCF4F33741B5831910B5E5085EC240005BBDE0C77E1AE3E7F0BAFB5659CC7BCD7D69EA306877E4F2F9494CC1A77364D991DA06298752BA86C110B7C045060C0839F22C1094F10B6842D4274373D41D745C6A8C090AAD6D9357520E39052A0C19EAE3E025B0C1D33D4634D89BECB7ED0816B087501370540310404F682CE449E94E14ADF379D0ECD59618EB08B4FBAC54CDFF2DA24991BEAB6856B051572BFAF5CB9324CC302884E9C3831DCCFB385BBF83CC0DC8BD3F90C72CD59E139A434162124579DBE559A5A20B7F970ED08B8EC2B2BA864727A48333A7EFCF8B6C407B3EE54C878B7A8B0B2C9058D9B9BE2F77CAC780CD034A50050D521D5A54F526522AAAC3B022EFBAA6F96D9C110003D625E5F282AC1279D78B0824A0E134789136367F9808601D2D84629E406AA1849E5B4A962428A7DBC15B394CDE4523C87C4330BB8764DC5B10604B65B70B06E55D3F82A933EC851F5F9C9DB221E542EBECA9C102603805220E38E1B811BA253DD73B5A1CC9017FC9FAFA564D6B85DF2DE44806A47E4A70EE1F065D1E8342C520A4CC38241CA4847534AE566A8DB80A2931F385F90BCDA9662A5185F4D869D51127949AB1823DDC953E989C48A8417088F86042724110C5246299894C224798036A0D0E38304C301806191615EB0C06C510AE3CA6DECA4A4B2814A2665EAFAF5EB954402A830598859A7A4B2D5528831DE2791CBA2D7481B0CF3857963C68DCBFBDBFAFF0487139B5F90D7FA587100925976B129889A520ABB396C09A2A906390B76B0D89B0B54396D28A7F06CC328054BF9A035F0543EA63C365134274A01400028F49C34F5FC98DAB6B9E5AD4CD9E2A972945431E9EFD1353F634044C69DB5147802A41462A214F6728052C0790258AC96670BB74E05DA24457E264B2ADF46B28F52600AB8F684E882E766A8930AD1C53AB45AC435716F2F1668B618F59C0CF5D473F5F254362040129994025635EB31E95C3FD76F848AEB37BD987100D70409251729056D8BB9BE3BA9295ADED0175FD62C2905442940225112C188B765D0ECA50798BAF29B569B613C15C38FC9CD315FD016069377E46783203DF30D796D1BA580C95B5858A852B14C4F7052688450C88BCF63D4510A5868A41418A560CE717E919F89417AB6645214E8C08400483AF121A6CEA76BD43645D9DDD55836CA4036AF515731669482FB664C78DABBFE01596D6B3AF1A10988744943B2CE5D5F99ECC36356D36B02346E5F815280E4DF8B5242E300564CA26E5471FED882AABA96BAFE0E0085D7D09CB1CBEA0F36634D7D0CB75B7412448C31EF02DAA4D652B0D957DE0C651FA03879A014C0EFD058A53AD5D5F472B4B1285975596B9B371803B451CA33E602AA2849E52B160B6F90AB9A9402C0442965D6F9CC7DE83018ADDE79FDA1CC1A17239D134F65DF1108D854AE0BC5E4215E0A510A9A52C0EAB5253E4C8207186B94D3EE620F1E92BDBE2885ED76493EEACF458B44A93F520A376FDEAC5CE3DA16AAE804EC078EA3CE672E200B65D630F101C430CC024629B8A4524E3C55485279D51F29054C125B87D8121F628D773EA6D452D84BEF6F14A09900ABFB1BF6DC8C742F93E5D5309E4A830A9402894EDA47A920D27F1092AEED04D3710C8081C9A1A975BB5C993572DD1BF2BB539314A31E8CFC1CA5929E6D831920D4110ABAF6A74C6EA76794150119A5C04603AEBDBD26DEDF76BB2C4F4A21BA3A710C9D609344B809A01458E793BBFA7AC335B7C185C0E79038ECFC90422B8479AABCA4950B4441EF2F442F60B2B1A27150359A15E57235DE5D60A1674789C5F9D1AF8788CFBC8B9E9549F52C823D943171A012E009E291919CF004593AC895029F195755C618E466180C8310B9986C0073B9E493589DD8D7F0680A8D104929B01B296BABDBB662528CF749A21874188CEEB5CCBE358C51B74BAA7C288598F28C4E4955530AD39820B38964D33A9FE3EE3ADA26A5304A8D509D59C3C4073FA5B04FAA13D7E2FCE191234716460191026865E8D6AF953BE3B4ED919F7B21D9D802C4EC60DA24B30603D75DF71D9EDA97A12FA194F71810E9561B1A1CF40CE7E7E7072917328ED5EC939A50F7943488526098B4A659DA6822F98466C88FAB8A61D5A3BC3F1F8868A43283467F46EF87E56637D1F066363653DE4D0A2636ECC51E4E3C59E5198736A62F68DF258958E7935C14B73758A4C386E85CEB2990D0E5063273184DC9E5A3262625F1215952F980C53A9FA014749D4F520A21A273923C3FDDAC9B8B4987C1D816E95E35911C17F9196D53E9812805B40E0190EABA52958DC13A9F214F30F7F097D4CF6A09C68ACDA4167C95F47236D48345CF2CC6714529A0892426C995F81063BC2BA0767EF260A4DBEA4EC5028DB5AC98F8506F2CF7F28FFC6C509ED104954CECC3C3870F2F9889A12920E244E2F7E145D537A7D3D3484AC156ACAD49AA3B8C7C500ABA3C639E919FE120BD6D92CA5C45B1AAC1052C1DA1C03F0C758047016AA7F521D43D170129056D988F023477E4E720034955A68513DB2AE9D908485F8946520A34E2F97A4C47D22E0E9C37291286C1E8AD9858CF315C477D320CF5A8A2676667241344A414B8FF47D6DCD6692B770F903D773837B630982686EED6EBF88D8D2C00D54A79463D5C9442C8809F143AC15C54CCACE1DC85326BF2AF4E5CA407E959C0D443F60C8004D0D0CEC09192023F09193529DD4AEB50EC218FC5FD4E3DF1A19D8B6E82AAD74A79C619BCC6D621B63A9F2920CA055CBE069226E0429402131FE4FF3D97A49A94EAC4E6E7ACA0922F0C29055F37D2986E10B43FBA5EF313E787640F1298A34A3466D6C81C6E783B3E644A7EFAE6C559492F0544B6CF7352618FD1935A5858E8742D05A87C16D64050228B75A44C68ACF737A9D5899D92CA57A4DFE51D997DFEC8C4E79600C10EF73AB38600D35E5FEAB033D2F9A9BF1867A39F1A51A0279D14026D09929F29922D076F4FB7C125214AC33CA58D48D3D5DF254915559D38C6D0068850940340629D4F86CC4E620ABCCF5662A5655DC38A13ABBDBEC90A7D49ACA3EEF84045290048B087681FC190A5AAD33D68523CC0D870E2368DD951411ECAAC31B7A5B8C8E89CB80AA8E5A3FEE2A4EA309ECA11A93883D7512C9693A4ABBBA47880363075852AD8610BD415FF46011A1720131FD090D3E592E7EEFD39233F6D80409482786A0BB654AC5415C782159A08ECEA8041CECA2D4DF62C4D80E1BACD28851CD59F06565475E290EA6A52E505839DD1754ABC48BE4E1B5B28EB8D014F0F0003B5A0BDBDA6550173DF508E8D511F4AFC5158707A7B50192675404A81A1303919EFB816560AD499354CEF4F4DDF9A84A267297B97FD263D82759D4F9DA56BF37C26C1FBA3E10D90115CDC8A894DDFB207E9E533274945CF623C368007D5E170D0D660DA1281358995F46C0063668D36EE5DEAD146296C0F279ED0F28C8EF4A21E5B8700344CE78637E84B7C88093B9E34A0E902B39C54F25866FF9D9C79AA244965FBA0FCC02C26EBD8B163D6C48710586CAB3597C4077ABB4D52DD75032436EF4697D7DC8B9EC5F2545E9B4A5E5B3D2223A623968FB7C2C432C3B7B6B73A3D8B384F74BAD04EC728A9EE8C52288C5A0AB98D50E4E70E508580114B239804200D7700139E148648BE4EEB41A87C4A2C500AE4AD527AFBA5928739822A18F9999A9E6E028E7605B76C74275233722197C10D734D29006078EE0BE4F335919C04F2335A52350111EC2BF2388C5927139D730D05DBB5EB28053C92B36277F798B201B9477E2697128AB1934829309D1B83F1EA667468EE21C5A1C1FA11B866DA8BA138AB49537F2EAFCF6B53E1B30011A3146867D03BB279829306A2941D05CE05ED2FB3F0AC0D4079457E269667B4A92B597507302928160B6F28A6E343C8D0CF615552853735C8B5BA83E482546361FEBC233FE383F49CEA4F2676550075C4D5D636647729BE6BA822BA1EA580C9C10222186CF6612AD020D965FEAA28059BB19BA3FA8B0A276EA2A662EA7C72C0A0672D85E3C78F773EF1018371E98C520885C1C43646DA39D7797A7FBECF54A12F3136444A9D4FED31B1B78D4B0D8E33F273149B8E51AD580C7048083076738FFDFB21F59FBBF7E70CD28BB18D4C1069639D31EB7AA7BE0B45397C604C89BA24B8EADE3A15C00034A8F4506303D74D9994EAC451417A2EE9C4F822520AACF3891FD1B1EA3E69312994023D3DB3220C55BE2BB1743F5427F6DA54A827084699DC54F5419938B3288719CF3D4AD871176DAC9041AE2BC2B054360164D453D817D589BD3C957CF80040031041DCB751E73387090C19E521A069FB5249B3A94949D16A2CA96A426F756161E1481B753E617B4045747D163161E0E570CE2999D5BE54F73A2FD2534B213F9E2A6644530AB1555E389974A3698B61D59E3C79328B5A0ADC44C681A1A54FAAEAF4F13C396FD3786B7EBA00120B22EDEDB11018CB35726F30B75A0A38775C03EC4A48599A014C351BB58D488E3C555275E2264C39C35AA822343F6532D1B97B7DB81E9D59A339AB94CC9ADC792A97B311ADFE6CF503A0C274D179BD793A891EA0CD56D23D6BB0A8585DD00C83B1F504B487BEE4A3FE92AA133BECA21E56A7A614F0A358A15469BEC487FD9459636B8C641699F5B9E439F154BEF7B6457EDA40211373009345F638A5CE679393EAD26A4CDD0D301B23F177589E51C086724D03BB4B9EA7A11EAC4E6C03844C0E121F0E9B122935765D7B5239CC22CB3372DFB269622CBF533B2D6088A72669EF2F3946BD890768BE0E2F897C0FD5680E94C29D3B77860B011E1FDB9FD8EA4EA5006D928A9E858CF4A1FA6BE201BAB2684829302DDEB737D8654A01876E488E479DDAEF233E630CDD9C36944D0F30A9E859AC44D24539B40DC2AC9A1C33685CD7AA931E743518520A31E95B2E973C47F5975C9ED135001CAC5C9D414343D445294C62AABB190643D69D944228412037E7C506AA51CA335620822D045699E8C404D28D9EB43A9F4D06E6822063188C2E321BE679262BF2D36B53C9A4CC015410F76C64144A7C08D963AE06E071852C7667F8121F62AE553746223DA1298549F1FE4206BBD5A64294022805579DCF58A39E510A90704D3B3E8C136426BBAD131FD81BDA672BC5502AA014722FCFE80A7D498AFCF405A5F94044314F1B8399CC50A31839442960E85477AA399BF391E2FD4D42E8CBC8E519633929B339353D43D81ADC746601FF5C062534EA73C14E5A5858A862ADD80AB74920DF24447E4607E9F924900B44DC92D0AB97AFE9D727C178C7B5A0451D160949511CEC5B13738DAE3AEA9364A83B435F7CF152ACF3C9F8282D99F68B07486294DD594929409AB9813339D5897D46BAB73C23075BDA3211145FA0CBCC9E34A965B0730491EFFC4D4AC1E4AC6C612E79467E16B6F67D69417AFD7E7F8E0C32262926F1C165BC1B27D0E918755794426C660DB93B66D660C81C6EA314B6DF8C7CCA339A3C5B309CD812D9895A0A877DE12E2110F10F736BA3EBA0C230A31442BDA143993518A22EB7510ADB25555EF654743B96D88E0F311E203BBF639552C2815280178513CA254A81B53F59ABD4DCE36CE2F9E5BC4D4367C347994485BEA4940AD2FC145739A31458144D17EDE8BA1DC5D0690CD849A01458FF33B529A6CF7E9A9476B751417A2115A7E38BF80775510E57199E1C0716054851382D905CE0AB40296001996DDADAE279BA0EAA91E2A934887448B15E7D667AF7A479807AE03A751B5C4831028C94C224AABFD6AA1333D4852E33BD1A4D0AA67880B9D30AB606920017B6A0E82993B3B24529E46E538D5C9D58C0534529B01962A8CE67A87E554E13D734D5DDECB5CC5243A414720E7D69A53AB180A7A214CC7097580F509F0CD544DD18A8D33C157AEF50D56351A544B09A20632159500AF2B6A33C63913DA852AA13277B80DAF524A5808965F7AD1C2885DBB76F57E70F150680514A8FD2AF467BC7AE766DB97155C9D5899BD849ACF3C94D566EF1F086D4557AB332C671E05A4025C0E32381AB8BCC8EDA462447F5D7B83A71084466060D6F06379C7D4C746E463AE3F251531E120C0003F3CECC1A92A2296D449E84BEE4A7FEA2AA13C7A8369DE26D2BCA919200E10B27B6A9843654845E5D4D134339070017E68161309060AE3018B396C2CEF399D0EAC4B689C09B4C04D561B5ECC2E9E3A5BA5EF1C525C6538146C96C5631D694826BB1E42CA97C46BAB33A714D291C04A05820955EA06B077F52F8A951186F9DBEA58B7580521013619037F9D9428CBA0068456C87795BB84B0A884829B060580E940213474929344975D76D704929E41DF999984D93A2AA622411336870406DB2CA714E9402CE1D9BC86CF0A4FB1636E954EA2ECF98AFFA4B2A7AD6449DB11329FE10C38EA13E29E972A31470EEECA60A1B09DE1E8C72520AB652DFA13622365B2EE7D097C6E519431E11493D4EB6CEA0695282A78B83D50391FCC0CC1A342C0F65D6D82AE9ED5CE1F9F0542E67234A52B9264813993A7A810539520B7DE4386C99350CE6F3A55D4D42E24352794617100020AA31DA1329753E277DE8CC1A482DDD18890189A1528C135B9ED10602598515A5007462A2CCB6B6934423C4189F3146B94929306D4B1E9DB514729A9791CB33925218B5CE27063372EAD5DB694A01F6527DFD4307C307B0989E3502B461E243CED5895B2BCF980A22263EE060015AD009487CC06BB9243ED0E363CC7D280C26D6FBCBB53A71A370621B6852782B5D948376982ECF985BE2834929B097344B4FC66C98BB428A73945429E79A14FA62935AE4A7D8F19C404ACD38E93AA5C0621D30C221C14E9C3831BCEE98D4AD490A7D09D9A1C1F28C26756016E5A097E89ADC49F304C957915280F422A5C0798A6D233229919FD1417A343459A5979287753EF59ED8A479803E5566BE66D6FFD494822B63DB753372517F3615EE0C27D6172F2BAFA21418CDA98B72C4806852792B9F41CE96C0BA3152CD5F61E10E3077241173B4A7524286AC924A56E0CAD9B367E7C94D35ADF3494F0A939B439402B65F52131F428D914029C86F4E1154FA26E558F5C5E7F9051B733701118D77E6C031F181F1DEA74E9D1AD85680AF90AC4F97B72D855C890F38FF51326BB80BC1AA324FAE33EFD017977DD54FBD4136A94520D5ED5D87E12E6C24C95CB8BD70715D9F75897133F1811E1FEB7FEA2CEDD879D31BCF04D4D65EDA662692AA85EAC421100D11598717D3A067064D6A69EC2EDB500418160536900130A8495C3BC3606218764A2BD33EC9CDAE6A1CF9690391F6FAF843BA50FF24D5F9740D5CAB59AC03079EEB4EEF26C028A9B4944AEDCBDC15408D549D1820614920EE81F9DABB3661E473F6FC303F94CC90626C8C444A41F3763629B555DC242F508D549D9894028D566EB7E81F6DD2796B52F92B5B6324D6FFB4510A4F3CC1BCD45FE87D6F7562B18F5664D5CDB751E7933D86EB4EE99D76774829701339B54B29AF1B528CDF97C5E9A4147293543E233D589DB849E482A61418B04615E1A214BA36402990F03D7EFCF890F46513CCA64D2469536929951249D9059EAAF518F550875286BA4022B1AE153660F58E7ED7C94F6D4B9AB51420C1A0CE584F9E36666C668D36E275BDF55C28051B4F15AC4EEC9250BE084F4C0E80C20C1A86BB84CA0F757AE62C6060D51A2C1C6C1E2390EFE4C993C3C648B620469B1363AABF9C6CCE56EA53D9406466D0601040AE62FD93B6EFC70D6466D680B302F30E75C9480DDB35DBD4DF16D0260354D1919FBACEA7A6146888EE973A9F3E3589621D90D2DC408624C323C0638608D919F53CBDBF608CBA0D00B20A8794023B17E802B24DECAE49A716B0F8186B0529061B0C120C9482006A6067D437F787A4AAC5FCCA993367E65D453952B82816ABA84B44779E5220E90B09642E9058CFCFA414E4F35393C0A8C7002ACAA64A9544EC98406F894D9370D494426781054A017B7AA41418938E6B484D75B7797FF932EA2D94670C651BDBB2454829F0268052D03149B9D452E026313C3EE63D22269DC6B82E016E9BB7D0DEDF76633D3F4A21AA3CA34FEAF8541C290566D0308B46B70EC97DE01A608CE3C0C0E631BC3D3CB2305C6C668D8D51CFC9484F2ACFE82A29689B60A2943D5A747D7557E2E5240D2C9C9B376F6E6B830B35C94ACC2E0966A31472527FA6F71732D8BD3695AEF369A3149A18EF660845AEE9E0BA580724367303614BEA45E8A714262B48CF5B9E5126E620EC22E6F57192626DACA6AB20259C789455D6B4B0ACCF28A7AD85798314639F65B1CD2A4AC1BE4D9397A11E1DA4675355621BAD2C2D2DCD33DCA50917658B522832497C888952F0797F0017336B4C4A81F6E8964ACC45FD8D104EACC05086BC4117E58009637729A62D19510A9D049699F8C090617AB300598A24B3797F9A9FCA2B4AA185BDBF541507C31DAE3777F1E12DF146F07BB9767CC00281C707A031C1D6E694847ED3B4A9B6E6341F0FB971905E8AE7C65AE17505DE61518B8CA314AC7340806140FA02602271D9CC28EA5ACDC4874960D4BD417A21C2D3FC3F260413CAAD0882C84C7C98C47D3F1BA5A08951B331922BF181376552A2148292CA6C1DC2A6D47A8274A18EFD128F6E727866FD4FD009A01548299875506DA0CA69CE42919F419B4A26668E8DA9F163662B571788263DA3C66590EB9622D8DE811403C8F02826C19052C835F1A195EAC43211ABA4147CF97C31F6D8A44429A4008D7B87757F9F1D94427E890FC5E8D589533D40B3B40C5400562A57708E510AB095E88430BFAF491349DD696C67E243BE31EA3EA33DAAE3434842C170C7CD609D4F500AC8E4A50ACD8952B0452920269D11188CC34F89AF72530A791AEA8DAA1387561F81C432415CCD3818B39E5225A5CB9C958E5200A5001589D8740CD690F0119F7C4F939EF931EAC5F8AA1333420183AB965C4D28DC781206ED24A849A878006C71717128C55CE5C14DF5979BF70735CDF38F3977274FC5821C66FF151AB2AE98A9FD92EA4E70418AC10683F422A560467298510A4FB669F2B0A920516DEADB25D1AC924AEC88398A75FD232920DA2F490F9C1748312C3616EB80A3027529D2DC93F830C86A219971F62EFBCA0A2AB18D564F9F3EBD234A21164439530A0C3E4CA514F4A0B352DB9ACEC4875C6C2A1BA06CC9B15E49E5B2A962280746294015D49CD7B00760AE9402A4506AAABBEFA6E46753D9CF5FB7E6B3DA54B174820D68B8112CFBCCD62168C9A12BC6E44C29600399752234C06CC4A70D68B9273ED836C3CDE71A708D0A74D00B64C224A41029056E32FB2805D7AEB72BC4382596A7CDD5EFA21420859906EF2AB514AAA5B005AA223B50D9EE959658CE42B22E95A7FBD8F98A72ECB5580F8132A526B84929E07A6FDCB8514930243DE02057E7CAAC71253EE423A9EC3B022E95D8F7E5F8D95C61D209B662FDFB69600E6EDDBA55452A905260301F5BAE84131FF2983717A56033DC9D86BA4CCC014D29E8D5D6C403DC6F9402DBE0D6510A53B96FD3B8AA2BBB00E6EAF8F05056DF618AF3540F500F4C323B75161D2F7A067B499747F24DB0CFF3D3C53A64716E9052E0E4E7482940FAD26E0AA9C1249B2AE633ACA5C0FE78DC1FABD544E729052C02AA330CEE6BA6A4BABBBC3F6D46E4C4A8D3A6D29ACBA706FB4D6904FD9C890F18ACDB0410E90C945C2805A6B2E31A705D5065A74F9FAEA42D1C131BA510EBFDED547FB9A8F7EDEACFDC183701165D49CF7C4E4A016A8D75147023A83A62AA1A777D6081201E1D07268B890F906200163DDF189BCBC6F5E4526FC2C5A8BB8CF5A486479A52D0F97004D1241BE7B8362C1A48AA8F3FFEB80218E80410A3207F7D99359930EA684A3F8553941313E3A9E8F1F4E5DC4BD7F96B46DDCB5399B602862E9CAAEB7C8E937CECF2C0F533B3063618326B60E84372B3B4A56E2BD24D467D80B3E897E2B05558C0BDAB72DCB7DDD04283CAA5F2823C95ACC2398AF5509DCF71D456C8C1BD3653B0B8810CDB9199357524ECB6C4073DF97B394D65B9392392697648FEF2642A60E90FBA1975DBC6B293521011BF7AE2C489F926753ECD416FAA6E0A944594428A3AB7797EACC3506F5D0DA314EC8CFA6E4FC966BFD7133015546F832178E469397CA9DC768DA5BD5FA1BD76557FD45E7F16C53CEC9187E78C0EC5D1E528059C2B18722E02465984288510D06C94C276467DD7A6A3EC951B07A0EA6AE0EC0490CE1A1B3C796D7373C36B9847D954A90DB719A500B14F771C510ADAF5EE3AA5C06B34290550259A520055921A3ABDF7FDFE068281CD39F9AB535AAD6D039006D68EF30F87BF689B2BBA89A4B9AA4929E0606517520AAECA7A5D1EB68D656621E320A5008F0F528CE5822089430C3B43B34D467A371875B19BA0EEE69C92C9F8780AA5E0528349053A74510E72535D8C521827A5800392195219008314E3CE01E7C0D543D9F494C6EDFDF5CAC1B418E4732900DAE6F829465D2F0A9F94DAC1A8BB80C5821C048F1933B5DF3692194B851018E437EA621D2C39A41343DCDB34E39CAB41BF0254E936DAAC00DA7ABDD4EFEB28851863DD6A539994020B72F82885FD18FEA2D3DCC157417273DF939935F2DE1E243E0CA6A67A9B07092813552E00D94C2CD326D484A76B63D99AA14C4AC1E656A78208AA02466E9DBA549A41F21AE97BD9658AE51975BC5823877DABCB4305B4BAF8DBBA806C17131F2AA3FC10FE940D3C211B7D50BFB3F57AE9DD11B049A991121F5C9F659D4FAC54A84DDC20A80A18BB274F9E4CF2A1DBAA601C139ECCF28CCCFE813AA39A831362F6444EF5FEECDB1CEDDB54535B80EA85A48F0B40D52E4DB1C5270EDFF76C33D93696FBBE2D9A58371C3F0ACF0840E20AA527980BA5C041E2138B005216D775E6CC99EA39C085D7795DA94D24776ED3B46C98F72A1B6ACA277D0A0F808CD783E76FD6301D520A297482965AE4A64810929BA211EFA014B22A9A8E6B80218E0393055B09DE1EB82B5CA3ADC0ACCBF3B36FD3B427A94AF1F4C4DB9B0D491F1F802CAF9726A85C2A4F6B807E4CA1B261D1750112DB87B0C627CBEC4C3AA58049D56130F4F620C548B1E82A37364935C61ECABDCA304F913E2E0019AF57AF24243E38B769CC7A530013BD1C1DEAA2132CF79B07C8C5844805D890E4AC584E4957BE19778CFA546FE3A0DCFA5E8AF47101C866BEB792F820627E4EC7A79377D11DCFF72B8D601B9817A87EC45A418A63DF1347DD9ECE4929B4E1FDF57A8319F1F3A6D3A44FE1F5FF86AFD71FF685EF58131F6CD249ECA3555979F366F5B814E35DB3F07587CE4E839094026D425F4467E83A48290060A014C48199B26DD38C6A536DDD47ECE9F9D597CFFF3301B48DCC1AF8BD5767E243934A7A3ECAC16C1DC23A5630E4EB8C9ACE12999036CCFC41D830CB4B02246640624A4D0553FD69FB6334506D1EE0267119609F9CE0310064FB9ADEA60949A9E0364DC8037C2282B728056EE730EC36B7C407C64231FB8791170018AE0DD7A4290517156302CD541F4FB669462339B7F6F59A491FDFD794A8ABFE2F6ABA7425C426253EF8C085E79870264E925280EB4D437E129A48B2B0197BD6808783B70749866B6402698CE768EFA1DC7C8E2A9253DB46310072812740B3DB16844F0DF67DABCDA41418EE021501B5804935BB914EAAF18E6B236785014A010566F1483BCA4529F0FB3B3B3E340315EE5B0903BD8837994CE913F99DE17F5ADDA6212F850FB38730A591592F603F0D4A2964D6B058C7534F3D352C39A45BBBB94B09359BB35EB93117044F40FAD8223CD57BDB62AF4829D8CE3F7A9B46EC88833AAC85BC0B5B8AA47A80933E74B10E800AD20B07D4E4B56BD7FA32778EC48741032985342A91523EE9E357793BC113005D28F1216A9B069482B8D787426D6D7DC6BB9674A0145860B5CB0306B949ECFA168ECB54D0C53A4029F4FB7D47E2C32079E3AAB71574E78F2FF70128E53B4551BA76045AD9A68931DEF988150A20818967262F7BB67479C05EC279439DE191E7CE90E1149045273E9429524A30550E0EB4217D2C21C56561710C07C5CE5A0ABE58AAC6D934268834A5C01C3873B335174A41EFE14195312E1D13C628859854771BE06C8C7AAF97C29E57817761E953780164058F97636FA3945008449588AB83EFC0E340D4334A81DEE0240CAA42500A5830D87A397BF6ECB6621D31F981ED500AC826DE9C558479D893F3481FB7F3B72DCAA1B431EA51A58462EC246E2C73DBC556E7336487D87A9C98519F5D1DB02FC959E15C01304429C02067B4270E979D654B1C48D112F2555008BDD6A48F053CA4BBCCCD68EDFD259712B2018C45393058BA5A77246DD3F86EA390ACEF77DBFA3D5C338B9A5DBF7EBD529100D8F9F3E72B35CF3932E3A9E8B834A114B025D3A6F431C153148533C60AFFC66CD3781975516907F8453C92DCD44994FB3D01C24C7367668D59ACE3EAD5AB5378DD9638103B57B5813EC338F318E9537800941A63A5EB53354A7CC09055F85026653E86DC0C6D401B890F9D060A131F6CCD8B624166B6C195C70D99ECA9514A0989949A2D76242EF8A58F0F40A93156C9890F3680A050512A8DA0550B5C72AC52A84EE60962A2BB4E2930F121264A21559AD95674EC6FF64023D490684BFAA4C458B963EC1318F56DBB3E11A582001E32C9F871006852121FE0DDE2BA708D3AF1A1691B91ED8C7A1C835E949B33A9D2A77EAD498C55B91D606146BD11A560FB0CABA3D080C76423B4162B3BB73A0AAE81EB004D8283510A4B4B4BC3FA11AC49152A26EB2AC21A43296CC54C95DB0CEA18E9E307901D3C1E1C784B0999910BDEAA2FA6C7A4CB5793A76163C5490977F1714D3A4A01120C510AB0C3588B0A73E2537F4D121FAAE21ADBDDFD56A44FAA1A8F8DA5DAB14D632B5FCDB6B6B48D48F8D98AC5EEA78D64482948E56BD7AEEDA01448BDE828059B611B8A51EF55B1E7837E3106E9E3138E2EF236C44F79ABBE8052A04863EF3B5F75B9FDDAE941DB61A41420C921BD34A500D340832B96512FB76A4A158ED08351019440D6C5273E384125ABF0A1783FF3AE5097943A9F931AA510438CD631FA15A560AB17119A8F8AF0DC5E28711700B44D2416B66D1A97941A32EA3136556AB158AC507682C7CDA1FDE5CAA889B1E95218F3A6136F46299885CD5C94410CAD409B2A9651EF959BB3DB2ADFED02785CAC428A94F276D14A011153C299740A00C17085D7B41B9442CA35F8E2A0CC2805008BF612268B9D2C9A349134BDC020A87A83036305504248B1DEFB8B31D6FB4D1B6B9352C00F334A819482AFE8AADEA04EEDB7B7DB8361C188EAC482C126328C71D84D583848814FC9AC31DD6FEF1C978399714A9F8858F5A139979CF810BF55500E8B727045EBEA2E3A83791449336A3E5C134915036C4827800B07A31498F8C0F6B826A510B2495CDE5FB5D7570CA6C7297D6CE0717EC792F8905C9DD80412680596D2D1A12E935294235562E2F3B0BF746E20EA288018C55C9976586A0FE5F289941A4DFA14455A48B1F53B203E07C1F241C1EAC4A014883A481FCD4BF91A49A6E610EA1B99935AB4A9C9AB57AF6E2BD6012906F3E0CA952B53EE6D1AD762DE9C517B2D3E90F8A54FACCAABC1A3BF339CFFB20C96128AA2144494AF89589FD7753E9BB60BC11F6A12A560826C1415E8527FE67B506524799B660D99C53A44A20FA314AC890F568D3698B5ABA1A29D840602C8021E9BF476ED08B836965D417A83140FD096BDCCA453FC1136F1664FC02EB3E43867D84BBA0E8459D82CC5F3B395BC7E72536CF389BAA8C314ACB14A1F133C6689A3FA3DF87F518C3AC1D5B833A98968B60E610130D85E5007FC0D1AF8E6C58CCA51C5AAD798415E0A87AE5D0A7B8935227084A498AD925E6C75E2DE963DD59AF4B18064870678021EE52CA9CD6BB38964A8A25EBFA96A61D74E7A3FACA580C7AE18ED361517BB60F03E0186C1D01EF4F7C3C281910E3517AB26A3131F4A517DA174AA80FA326D5217804CF098110EAE42B2C1C48794BD3C4629D038E5C46A6FB02DF7BF45A6BC95C114771C585000D8B973E72ACF8F054A1806134B293824D5AC57FA04D457ACF4F1C464D99220CAA4C407DFCD65B80B83F058E3D356E7B34DF535EA6FC518EAA3FC3E5421392BCC0FF60C21C1408C323F909935BE6D0E7B88D19358F436A48F66235C000A2541B86A294433EAF8BFD811072A83AB6EE38A09D2F514C605A25C07C381905903DB920566B1103FFAE8A32997C4DA196A047B6AD01B0C0AA7F4A95F2B63A54F0840FEEF143B78B690947232EA22CA2B4AC107A25809853FC22885100863E98371A9C5544AC166949BC53A4029146A63586FD998DE5F6F2BC1C12B7D62D5575A12C43693CD3AB9B19DDE7DC5F907293DFFCCCF303A54530A50096D253EA456FF0B71541C00021B48D61C53A38C6B5BBE9FEB33DB164BAF6A3F5BEE86F42913F615594B21A6D3FBB66C9A513A943283860902B4BD709334A5D0F5A1338D31B0086088D755862B3517432924C0CF547FB363923ED100B2CFCB4E46DDB7B19C54F5C5CC5C66FF1918AED8B107A580896F2265DA28ACEA33D46D1103A16116EBC0F55EBC78B19A38D68ED0159C47397F347B44F7AB2242FA6883BAA9F4F19D8A6BC1C5747A0FF254E67B0C7761562E2616F643D304CC2E7058299402C85C1C985C486514EBD09482D9A5342DAD1DA02ACA18E9336E00B9D49F4BE5C56ED33CA1DCC503649D29467062F208A2261DA5461D7BCD5F61E258AC0392DAA4147C6130EEBBFB24D4650CD2A7E96F588BF3476DD398371B940280C40692BA58AC8E991A2747D5A6A1EE2B43DDC6B990F844660D6C4B500AACFFA92905FF4229FABB297D52BE63567D494E7CA82769EDC89123F32C0F94E201EE6088510327935A0A9038CC1CF245AFFA06FBD5C0C6C475CBFC6DA314DCB7B59254E55E03C8279DA3131F6C377AB3265052B397F99C6D43EA491D6E30EF462B9151542380C076B54CDAF075C78AA516226F5BBF0BE0B1FD862BC830A9945069B9333E10E1E3D85CC64A87DAA4ED859BB4DB94822FFC24A4FE6C9402D41902EE74B7772DC59A1AE616F537BD87002A43D44728F1C15A9C3F26FC453F077830E97884C8E7E672C840F505DF752DDA93528A7B7C08EDB970E142659C935230A55813905565AC59256F97A44FAAEA8BAD4EECDCFBB301CB8CE0645F644C38ED90084AA11CB7671832D46DFF4FB1954C4A01928C111BA91E9FF2FCFABB2F7DD2BE43EF8E52C9B7B1EC0D7DA1918D03221F761173FA74EB90FD3634A58081147704F2418A61B03A73F49DEC15D32382A845000D76E8655B94824B4A394B091D3E7C78969402F7EDDAE883D75422753D09829402921F688381B3C21CA296424349B50B06FB601B78861FD7F7674BA297B1DB34956964BBD132498FB025112A161B4335344D7C180584B1EACFFC6C9328059B9AD4C53A065BE19D017BC99AE33756E9B30340DBE36DB6012B94F8C0FBECA414EA091F3405113D3D5BE203C35FBA2C71CCC487982805977D56DF8C415812277354234B1F2B80F49EE8B6F8767F0F65AD4D8219CA3E0FD06C2209B10FDB82817DB0BD60C4F36462131FC665A8C70C5BE2037B21330E1FD7150A674976044A6F36727BD287AF5900E40B043413374215F5A23B939A9F23A540231E9C140CD7A61ED06EF257B1D55A34670552140083418E09C4F58252889162618AAA3243D2A58F0192A0F4F100A8F464DE24F750B65DBC8B4362F01DD3B030B1D8EFC2F3D8C487A6A12F7B6DAC43FAEAC40710BDF0F620C542C53A7CA3D71B18801AC44B9F80FAF2491F17804A475C7C6CA7F7600F650D246E2C5305EC769DCF5122217CA95A4D062433392BCC110C7CD45160996C7056F098A342A361A49786B6DB05E9E30350FDBAEA4BD342292111F3B300135624ABBBB808CEFDDA99545FBFAE9C87ED2A84C120980F26026A2904EDA93D923E3600693B7DA0BABD8F9CF82092A8A214CCA21C4D40A4A59D4F42B82A22874B18B6A71661339152682A199955C342FFD01C7E4A61D0DB12584656F598A58F21E80CE1B8EDF52A63CC472944757C10F13E88B9E92E3583154A4A01AFF1468DA3E3432C4863B668A0D671CE506390D290CACC718C75042CC72060A5F7CCDFD91DE9B3DD6C7B02201BB03677940F724929AFF7975A2A889402F91DDC0CAC564D29D87EA34B6CB94929E09A00302C06008BF664CACE4194F7573EE9AB378AF4B180C4237DECEFD9B7A576DA543ECEAADFA4CE275E67E203F927D8154D2985B6A2306359755B3690EDFB6C3E800160D120C7D094C268E73EE8B9C063DEC090F4F10128063C4EABCFC2A8FBF2FFFA29AA040022A580C9C4C4C2C5D631EBB91ADBA1C13018502850EF90CACF3CF34CC55F6141314A2199F8947BE3923E21F5358AF449215A7D1D1F6C15F5FAA1AAC3B03174F967DD1FB9499DCFA6067997F82BD02BE4ACF0F7A1224929E03D002C564DD63655B9DBD2A7892689E9F41EA41418C5494AC1E4A6BA4023A418EA6D15E8307F176A9F95F358CF8AF53F23121F7A3E09B3DB00F2A9BF984EEFCEA267A01410A71D03A2981B434AC177635C764D1349D4142C8CCC48A5143468B10805489514C335CBF9FB298572D073499F44008D332AB46CDC43D9A414524064662F93522077839B150256DBD22B159000042905DA8D78AD694B913A967D10B88BBD06A7BAAB51A1B65A0AC9890F310D8CCCCF00443A83067617628A9824D034F1A149396AD7F380F757E2BC79EE983C5C132A0DE39A003046BDB6ACF67B7B247DA2BF13B34D13559C3F14BBCED621040B130110A0161301A08DF32E2641B020072905000C9402EA4EE9DE7F94628DB36ACA614E60E79248B58B9A94F810A37A080286BBB0651B28058088816C4D13306DD2C8557EB9A92DE5EB4913AB1A75FD4FA8C84F7FFAD3D5A2B285C1C4160229B94DD3190039CE32A1EE67B0E11129051AA1CC7DA337D8566BDBD00D081195E332DE6D83FB7B3830A10018326BB877089025243E8C43FDB52CF506D6859294F820933303206115EAA21C6DD4F91CD59D4FABA4327E158A158A0857A842CC1754E4E2E26295F88011885228F74EFA34FF7E280AD40A2A5965EBB0976C510A4D6E2C131FF68AC3727578303FD746E20324D4071F7C5031EF214A810E428701E4AC1962368C0A56271695B6D9C403E480ED85CD5833F1811443DB54405B43273E30F3BA4979464D2954D516DD0BAEEC8AF4299C1D50CBA0A44E6A229992BD0C1021408D510AB6C487B66D9B546232F4F7CD280576B160E4AB2F4AA1A1F757167B9A443A70BC656BAD151606C9FDFECC9B62C64CB13C631B890F6D76D1F2A54F85FECF9AF118CCACC1F60BAF97E5197D7FD7771D65DA4596ED4B9F606F9232759EBDE4A76D6543DA40228131874AC3C4C20362205B6CCF96580ECB35E729F4C2282DE4F4609402AE97510A972E5DAA1615C37E1A941C1AEC9DF4D9D19BA474002B791107792ADDA91D5208406237525D677D54B566A6048DEA0136ED071D336C510AF0F8C0BEB35807E6684C122842FA141E00D9C01303BAF861CD5046940224920E7719A5CE675355D7C4706FD2137A1455CB2805A842961B828A046F85DF8D2DCF18CB15C5491F1F80E2BF533634F75C94C263802926662A254AC1D6893404A2D458ABD8BD4C9B8AD5C91E4D170DE64D530AE2663B2905F537223CAFB265E9E3028FB5D4763932A804489BAE7097980EA53A4A01DC05C0E963DECD9B3B4A57D258B0DBAE434729D06E8C8D52B0797EF5621CF86DAA41B937D227BE3152B2A46A62A7D83E0B108152A0FBCDAC5DDE9010A5600BF61F89ACB1B46FF5BD4F5B494729B02C1080C6FCC798ED9766E51ADB953E1A24454A9B11259ACC8C9B916CAA181061D2A12E60C8B3A92237985D21C3B1A01D67F78758A31D929AFB9C186C93025B09C023A5D074133D5DFA1411EA2BA1CD88053C45610D5D2E526F45526752AC584C2ED966F05200115B93B54956EEE68801B1E6AC300FA0142E5FBE5CA949000C29F00D22466B14C5481FBFFA4A953E8ED065FD5ED9444A054165B65523A5002025D4F91CFE1613295C12514BB451D59F4F02DBD46CCAA2C0676188E3C035814A78FAE9A72BCF0F6A12128CC17CF1B5E7DB953E45E1CDBCD9011EC77BCDD49FED02E7E7E76718C989C9810AD05D1F52A214E4373645BAAD43BA615547AA9FD205AC86A12FA5F91BEAE0977BA881208B654324EF4CAC5A839AC422C34152149402D2B7705E8852009FE5817F19237DB4D11C237D7C00728127F4DE483695ACB6754D29F8BA91DA6E685DA8E2A148B92979BE29209D05A074AA8FCDA84DB5C58201701689A42BECEADD753ECA229A827D88387D594C1B320F495B595880EFBEFB6E95FC8085E9A3146EDDBA75A62C1E1E3A7AECE4ED478F36FA2B2B0F7BE5C02E7D42EAAB89F409006B9888D18A4D054A21D5C0ADBDA535397AA2E2D665C5CEC1FED29B8D74B3F19C8FBAD1A2194EE1F2DA9AA847DBF500E8FAC035C083458A959C53090923007B8CF990C71991D465CCDFD15D4A457A396FC98F7EF497CFFFF4A73F79FEE8D163833367CEBC73F19967DE7EEACC531F9C3871FAEAC2C2F17B2BAB6B33ABAB6B63933E2678B4AA2B9599973AD78D2BE929A9B42192681D37456C8BDEE2E222B88369DD995303894631DFD7E06ACA7A37790F00E239507AE11AF808DB4F54589FBDFDDE7FFF7D11E00FFB22B9D6453D1E18DDEBDB1A5B8D92AE96723CF3377FF3D7CFE0B5BA7BC6FAB973E7DFB870E1C2BB4B4B4F7D70FCF8A9EB870E1D5979B0B23AFBE8D1E33246FA982071E6107AF7944D4276049E2A043699F85559857D998075B9F039D85F040857291EA13AA9426D524AEF6E27E7298DB8BDC29D029E532D592AF54D5E8DD19CB260AA66E5B0913EF8E08335F96C29602B0564D36DD7E8AA132EFA1F7EF8E1733FFBD94F9FC37582BE9173583D7FFEE9D765BEDF5B5C5CFAE8D8B153D766660EAEDFBFFF6066BD067930057E50F8D98B27EF950DB7FEE229054CBC88FF3501472913BF21ABF88048A5526EC6346E0889430D20F3B0750D18659FAF2D90517AE2FCD835CC041924171ECF9E3D5BCA4D9D85D3F2E69B6F3E16037DB34E02E9F1BB6DF5ABD17303AF5B8EB977DE79E7F32FBD547C1ED214DEE6C99327972F5CB8F83B916AEF9F3EBD78458076A328A7CA070F56FB9B1B9B31E4FB76F05889F916D55FDD0008F6C49A3CEFC1ABB97CF9F20C6E826EDBA6ED2200856A0437444FACB69D7C1109BE3DC27144856A6FD0B4DB74CD4B1D9101AAE5C5175F9CC6233CBF575E7905F6D740D4D9AA7CEEE0B8B93580BEEE3AB1F0FAEBAF7F495EFA1240BFD5D0F2F4B58B172FBE79F6ECB9F7E5F995A3474FDE79BCBE094760AA9ACFD0AE8EC7736EACFE6415CE88985F81E7236277FD2B5FF9CA4118AF5CBD944CA60472ADCE9830145F8AD6B8C28B7D9485F99E061E0D7B766D4541D9679F7D16AF95BFF9CD6F665E7EF9E587F5A674AF682721346AE0DED421398BAFBCF2F2624DE9006883A5A533EF5DBAF4CCDB629F7D28F6D9D585A3C7EF3D5C7B0447A0798C8B4752BD6BDCCCBEACB6A3687E282EF1C702988D5FFDEA57159F8349AA6F76597FF7B81C0764327BDA0016A0DD92EF3D90EF2CC8851E51376A20EFAFCA771E59F61ECC1B5926AAB73206403AD9A09698D372AE070CE0ACC9F1482B049CBB1C1BF5351E90EFCECAE394A625641E1EC9EB3721D1575656E66EDEBC7954DE93B77A8F8A3D1A2063AF5EBD5ACA71411C810B7404C43B5F1749F6964834B1CFCE88C779F2DADCC1230F459AC111180D5422BA2FA67EE9DBDFFEF6C11FFFF8C77FF5DA6BAF9D835EFFD4A73E357C0F132A40FA77DFFFFEF7BF2393F9F7C433FC96FCFF0F647291EAFB864CF65BF547AFCA71BFD8DB01701D9149FEB280E145386372CE6F8B01FEB23C024C37EA73C473006AED85175EF827AFBEFAEA1FC16B13F53794AAB851B2087FF38B5FFCE26BB5BA2C454294F58D7D561E5E54C7E7E538BC57174D47401C8ECBE2085CE63EAE00EDA13802E2715E7C57ECE58F8E1E3B79636666EE7162D8F356999894F1B5AF7DED4F05F5FF66797979915D11D033982E3640256AF37FFEE0073FF80FF2DF13723C2507F67966EB9B03C3044BE16ED18D019AFF081CBDFAD0E778A7D82A048B6D986764E2FFB1D84D97C057C17E419F64DA59F010C598FFF87BDFFBDE197CC717F252DFA44F1940C371B6E8CAA4887AC735C9BDBDD79B9A5A7FEDD5578F8D05545FFDEA57FFF4673FFBD9BF9749DDC61023561B2122001640253AFDA39FFFFCE7FFB6BE49BD62F4A4C9DD18CE89107BF28480E85F898BBF6D6261147FE6339FA980851B80D43691CA5FFCC94F7EF22A4CD310B82C603B5983EB0B0A68CF1546C5C3AE8FE893159537FDFEFBEFFF6B1350186FBDF55615BD004F084326172BFF40C2CD2BBB001ED710B5F047A2EA77AC546C1C8B8B5FD54CAFAFBB27F3F32D79FA1FE55886EA847D56832B989D2A9F81BAFD8BFA20D030A99FB3A8CF23D9834A5CD72F5FBB76ED69D7FBBFFBDDEF8A2F7EF18B6C66BD09EB74333ECDB7D395FD0528A75DEF2152013156F51C416D40FDBD20C74D39AEE3E51A5C48B5D9880197013480F257F5A1D5E72505324AB6F35980AABE80F21BDFF8C669B0C89E89AF9247E1299E3B77EEDAE604B52C951B3B1D5870C5DB6FBF8DCFAD8BB10E6F1AEEFC0234670DAAEB35C8EEC974AED636DB60D09019ADBFF7667D7C47DDAB1386EAC4F17BBBAD3EFB0130F5EACF1C7AE59557DE3875EAD4FD2B57AECCBBBE833DB27EBF0F03F7AF8A091A624FDDF419D1F00401ACE79F7FFE372FBFFCF2CDDA969CAA1D9423B5C3B25C830B2AEE1E9C3099E2F554BB2B0036FCED1FD487569FCF5BD4E7C2AE81CA00D33C579CACC4D332697F2BA0FA92CB5B10BBEA81ACD41FBDFEFAEBBF299A64227674C894FC5ABCDCCF895AB786B02066ECB9E79EFBEBF7DE7BEFBF2BFBB0571F53B57D09701DAFC105607D5C3F7F507362AD81CBA23EFF6F7DE87B7CD1E27D3EDDCA7C19CC7559AFB243706E6AF17DBA06D6BC18AC9F9555FBC7D7AF5F3F6AFED0F9F3E76F88D7F7BF65E2D76A4E8713D77560C53809E5E5CB97FFC51B6FBCF15953AB8BD7F75840F543B1ADDEAFD5DAFDFABAD78A9DDBB49BF567566A4A857374A7FE1EBF33509A6EB08B8BE7980568BF5763A231A8A62D603A544B2DACB8F3F3F3F3970E1F3EFC0FEEDEBD7B666565057B5F0301DB7BCBCBCB2FC9FF97D504C29678AF882F21328EF79A7ED77CBD2F7373796969E92BB2682E89D7378FED190114C0F0D7376EDC78535D3749D32B9E05453275B506D32D25B91E2B9E6CBD3E364DB029DB6ADC4043FCF7670DA07DA1C6891F54B594820D70B216D50453CF10E978FDC8E9D3A7CF09C09E153BEA8648AEABF52A7B543F62A21E14EEC47EDBFFCBC49B5D46FEEE28DFD5CFB1497C5C16D1D1C5C5C5CF891DF5481C938FC57979545F378F7BB551BE61F9ED29A512A78A27555FF0BD87B5047BA88EB5FA51034C036E2FC166539F175C926A4E81C937E9E6FBE6BE77533EAA0DC9320E29573AAE7D603C1F14967D4D65A792B99FA98F69A5094AA52637D5F38D1A788FEBE3A15AC4EB96634FC026F881F47AD166538D5A33A94BB65017CEC704D654E09836C0D737A45AA940B3AE80C68340DBF080AD1827D8CAFDDA51740F3C489B5AB549420DB09EF19CD2AEEF005B4F81655D81ECB152995A126E2800166D01EC135075177C2E10960EB0F5D4FF4BCBC141306D58ECB3A1CA1D055C9F806A32815778C03630D46069011B40D538B3A3FFC92DCA6F2829125BA4D665EFF51C601B698BED1349F589D42B1D806D3CFE3FB643A658AB0180DA0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (92,1,'Rackmountable_1U_server_2D_(128)',0x89504E470D0A1A0A0000000D4948445200000080000000090806000000FA8124DB0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000006C04944415458C3CD58694C5C5514FEDE9B81616768D897CA5AD3524A299A365245F96153B03558DAD0A47F34468DA63FD47F36D188DB1F97A45163A3266AFAA74D3556B1A5825A5A2950B0B420CC0CCB300374A1ECCB94599819CFB9CC2B03CC4C5B95A4875C786FDEB9F79EF79DEF7CF70C12804A1A3B6968E0B1C4C4C47571717105E1E1E1282C2C44424282F2086EB71BDE762FF7FF66AE2CCB080E0EC69D6CB5E3587EAD56ABC560E318E7E6E6EC2E97CB8DFBC8C6C7C7A5D6D65695C56251198DC66A8ACF16121282D0D05068349A5B747F4A22BF411AA9616161282929C1C8C8089A9B9BC502EC9892B61659EB37A0DFA0436A720ADCFCE35EF99E92242DFF60E9ADF76F093E7D25AFB516D69330383484B5D939484F4BA1A04360E8ED4341DE464C4D4FC3681E80FECA65646566C2E576F90421505CCBAFEE1417275AB9BB7EE30692D333C475C186F568BBA2C79CD586A9891181D16A992CC988D2C6DE956F8FE16F5CBF6ABE7DBF75EB56A4A5A541AFD7232828084EA7D3CC1416D1969696629A405592CB0E4C0A9587E5E48CE4E424E8743A646565617E7EDEEFC63C97D825E6F84B8AE2333333036625AFC77F1D0E07626363B166CD1AB1FFAF75BF89390971F188204562024445462C56A4CB893C22446D6D2D727373FDEEC9C64AC2FBF0BE3EC1A5047355730C54D1A2006C36DBEDF8525252445C2A950A3F9F3AED730D9BD582A7CA4A119F100F83C1406BCD63E3C65C8C8E8EE1E2C58BD8B1E349B89C2E9C3A5D03ABD57ACF04B05866111115837559A9989C9CC633FA46A4D967F059E266D455BE01476804361DFF102ABB8DDE7329168C0DA901B66DDB86B6B636FE48C3D97D8EC6DBF4F28F90839382ECA4046D62F9E711E421C03C813244D548D281F8F878D4D4D4F80D72F7EEDD181C1C447B7BBBCFE70CEC9E3D7B0400D5D5D5A8A8A8C08913270409676767854F7F7FBF48A82C2F54DCE5CE4E04AB83C475A7BE5B24868D0934363686E8E8689118CF8BF94CFEBE7DFB505F5F2F62F3655C1DC5C5C5E8EDED1540E5E5E5E1E8D1A3282F2F17F7A3A3A3E2FDA3A2A220F9AB5022514E4E36CACACA70ECD871CC52C2F65756A2A1A101376FDE44E9CE9D82FCDD3DBD5489867B570059254A363E2E96486A13C9CFB64E4243C99E4D48873D3C0A6E49A59C574BE652E51B63626252687F0D157BFBD4D454959A2ABE8E12FE9E472A79869B13CFD5C723387801743505CD6073857015646767FB0D9293C3D5C2FE817C7C81C7E4628B8C8CF4C8EF02D40F6FCE879680FFA5EE77146ECA83CD6EC7D90B8D90680EEFC3559D9ACA5531E9774FAEEA9C9C1C91447FCAE5CB946220F03CC7C0D203C4BB3F9048A22F5C68464F4F1F8C26131C14E7CC8C0513E313F49911DF7CFB9DF0EBE935222323035A6D344CA601525A15D2525388CCE374BC0C2377C383423D7444F6C52377E59EFD9A683828E1362246D4B55E3842C221B99D2BF2CFC5C139A6B55C7C4D790C1D1E1EFE5E4D1FB29E6AF92181A826B9CBE7C42B2408F680C2E030B85C690C0283E82B890AD05C25818C7D585ABD8D93C855C2C6BD082B80E451803F9B5BC4BE0CC699B3F54B8E93898909216FCBD7BB9B3DBD8DA5DFD7D1C6D5CF839586892D14C0A704B805218B8B1FC5DEBD15F8F2ABAF619DB3E2E0C1574831CF40A624BFFEDAAB628FAA773F40C9138FE16952CB2F8E1C11C97DE9C517F0E3C993D483B5E2AD370F89FDAADE791F26F3E062F2976DDCB4361511B203D3560D924D557005B9203B6385BF772FC2D8510E331532D08821ECB258DFEB68AC63071E0ADB1512C89E23807B017D5797B8DEB56B97782EF946011E8605049BE72EF415C968696911DF34B8395112C0B130E88A026CA1AA67D9ABFDA31E4F6C2F8283FCEA4901645AE7DCB973FCCD45CCB9D39E1C5B201F2698F26EDC0CA7A7A78BB894DEA2AF8F9AD08202BF73ED362BCE9F6F107E7D4693E8ABF8DC9E9C9AC2A5D64B387CF853C82A191DED1D2245BA2E1DF50A3DE27D2689C863A4147F5D6AC3471F7F220AC2D0DD2388A9D8FCBC439060607008965B73785EDB8FECE0291CBAF1101A9FED863DDA862D2F6F87EA969AE2712D2180A25E8C0115726C7E7E7E0DA3FB038DF203070E889766D6F159CFC967A6F312724818AE0D98A863500B1FAD561BB00954360BE4C341288D49201FB3D98CCCF5B9D404C6D18845874E8FD4A42451108357AFC1A8EF42021D1B4C3856276FB07CADC7F1FF970656F1319ACC487E207DC5B700578079FF8B51FC8BC7506033E8AE60F8FAD0EDBEABA8A8481CB1AC624D4D4DAC888D4C00FE2EB39FCEA30C4A78281160942EF31393921ED750E3C413948407026E352D50C5B2AC3B571B741FE6AD70F7EBFF01487DA48E8E0ED96EB7AB48C53E2785B290E2C610195CF46C9814F6A77F00C815448DD67E5BE80000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (93,1,'Rackmountable_1U_server_2D_(64)',0x89504E470D0A1A0A0000000D49484452000000400000000408060000003EA039A40000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000025449444154384F95534D6F1251143D6FBE80360C018C50951602944AAA6CD898E80FE8C29D3FC03FE1CA7FD11F611ADDE9DAAE6C9A488D5D48621735501B40488076F89861609EF7BEB4845DF5246FF1E6DE7BEEB9E7DD11003EE572B9279EE7598BC522FDECF98B4000220802F0F957E8BA8E70380C29842C140A98CD3C3A3E1ABFCE850C24E45D042B304D13966529AE470F3664AF3B68B55A97EB6225E72EBE68D49E8542A120A2EB0B5F372571A1DFED5827B5E38410A295C964B4C964726A50AEBBBBBB9B393C3C1CADADAD8976E78F3E9B8EB1532A61341A2D0993C9245CD7C5783C56774DD3502E977171710122443C1E0735C48F9F67F0BC19868E43F91E7E379BC866B3F07D7FC9954AA5301C0E29CF53771E9604A97E0ED5251209D5EFE86B8D4C8DA079D9D92CE436517EBC037F3E47AFD743A9B48D83830F18919E5B63A4944A0B633074502A66F1E6CB7BBC7EF916ED7B19ACD7F6556D341A4DD2A3AFD7EBF56F6C8047851A89B059583812C6C4B952C39221CB2D60F2582C06DA92E520FC8D3127517C780BD818D773E14E5D15EFF7FBC8E7F32AB60ADBB6D5B00C16CD71EEC5FCCCB5DA87A171FC66406ECB5B55A954B0914EA978BBD3A147DBC63B32858D1722503C474FB760C8CF884D04E6377AA98FCD3A69E639DBB5BFB7B7F78A847A34E056E27E2AB8BE1A0AD330D500B74372018B5C7D495E7936EA168661C00C8564B1588473B33D67F5BAB0C9B8D53ACEE387F2FDF9F25B2412C1743A5DDE792B34C3900F37D2EA17709C6B03FF01D2B6D0345D86348999A6D12F2031E8F6ADD3EF2771CB32CFABD56AB2D1687CFC0B5F0F293615097B020000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (94,1,'Rackmountable_1U_server_2D_(96)',0x89504E470D0A1A0A0000000D4948445200000060000000070806000000F76948DA0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000004E549444154484BC5565D4C936714C644A2864C5408411D08D4814E5A5A5AE97F29B4454A81524AE97FCB06969F82AD080C04E36FBC59A24061062F6676E5F5AE8C5BB2442FC8747049A2C9EEF677B16C174B6662049F9DF33A3B6DBBCC0BB75D3C79FB9DEFEB7BCEF73CCF39DF9B97979777857077FBF6ED5FEEDAB5EBABCAAAAA67B5B5D2E723F1D1CD5389E466241ADD7A8970E425226984C27F8350388DE0AB0886046283439B1F4DCF642112C995EF0D72FE433E7E86F79F393BBB457892488CFFF05F21161BFA89387D525252F2FD8E1D3BBED8B76FDFDDB2B2B23BE5E5E521E23EEF97C2C242B8DD6EA8542AD0350A0A0A502B5740A5D1A2BFBF1F5D5D5DE8E9E981C7E37963F4F6F666C1EBF562626242C0683623DC3F80F9C5457882212CA452B0BBDCD0EB0D0804026F251F63646444E4B3B6B4E084D30567AF17C3F15330353B70F49814164B0BB45A033404FE2DABAB87D57682AEF590D629DE00F590C955B0D99D6875387152AB45506F42BD6F18F2D098C85351592D786528954AF87C3E343434402E97FFCC025CADACAC447B7BFBF39D3B77FE9A9F9F8FD2D2522854C7A12401E821381C0E7476760A815E85D168C4CCCC4C569C118D4671EEDC39D8ED760C0E0E221C0E0B3199940B172EC06CB10842DCFEA0585D3EBF588B8B8BB916C462B19CFB8E8F8FC366B365C539C6FBB610D15C13AF9C97C59C9A9A82A3A3E335018C4D6DB0586D585B5BC3CACA4D2C90111E3D7A4482C5B1B1B181546A090D6ADDEBD064422F50A7388E70A49FDEB10FDF480A70FBD8BB284ADDC13B9FAE0A010E55BC971680CCFE9BCBE5DAE2FA2A2A2A56580079555515BFF433FAFDB8A8A808D5D5D550EBF4D0359A2191480489EC24766526CE9F3F2F9C9D196702E7E6E660B55A31303020546782262727C5DA442F1FF8E0435C9F9F271102482D2DC3D1DD83BD7BF7A2B5B51567CE9CC9992F914888FD32E35C03EF6B3018C4AAD168C4CA62701DD902D821AF57D13317118F8FE1646C08972E5F81B9B985D6CB3839380C5F208444721C8D662B4E8F4FC0E3F523148E62EC54125A7D23343A13A1F135016E490FE16AFD31549E5D46D9C55B4280F28AC3690168BA7CE7743A9FB6B5B5E1C081032D2CC01C0BC081DDBB77B32AA24D8C4D4DD0375BB07FFF7EF132C96452909889D9D959442291AC3893C41D40C9D0D7D797EE809744596C2F464297F785F37DD13EB1B2016A6A6A8400B9F28D8D8D61747434E73D36039B657A7A5A08CF1D100C064507B45307BF2A80C16CA71A5A71EFDE7DDCB8B1826BD7E7A91BD6111F4DE0C18387D411298A2D607D7D5D10CE9D323FBF88A5A54FB0BABA8A4E97073A6333C182BAFA86B40037DD35B8E454A0FA631924CBEF0B01CA0EFD25C09E3D7BC4346110EF4B2CC04376B9DFEF874EA783542A8599E6B38D5C68A259585B5B0B93C9241CCDA321134C08CFE0CC388F1A766BAEFFB0386612D7130A63915ADD49A27007B4BB3DA83972040A85420840AD9A05AE63686828E73D269E09CF8C87422138286FE608929173D51A23540D7A288FEB68EE9BA82BD4506B39A6CB8899C435432D629A34546A039A6D1DF49D69C769871A03760314711A4D49ED9F024804F9DBB66D834C261363B1BBBB9BBF03DFB20047E9EBFC1939E66B22FF732AF429B5F4F3E19191AD89C9A9CD009D20FE0D50376CE53A05F169A5D7EB7BEBF0F9FDFFDB29687878F447A552F5BB4472F8F1C183076F5B2C96FB64F6DB647CFD1F1901158D207B2BD20000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (95,1,'Rackmountable_1U_server_3D_(128)',0x89504E470D0A1A0A0000000D49484452000000800000001208060000009390D6830000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000007CE4944415468DEED585D5094E7157E76D91F7E965F0105F989428014886D0C34281132D46933466F6CE84C653A6DAE33497AD1746C73D3192F329DCEA417F6B2D7B18DD56A07419240304204A1541058587E963F4145041616766177FB9C97FD364A58627E50603CCCE1DB6FBFF77BDFF39EF39CE79C77753E9F0F4F5A743A5D222FAF518F510F53C3B1FDE41EB59A5A49BD4CBF4F6D06A3744F0A0066B339CFEBF51EF507BD90AA7FD2CE788CBEF050BFE07A950683A1D2E572756C7B0030CB8DD1D1D187B89E045C02BF678B04EB71D83622CC401F553A1C8E5ABEEFDC1600484F4F8F25BA5FF567F9CFA8D1DB20581B2D8BD43A6187909090CAF1F171FB9602402645B29C2A595E4C356CE3603D0EDBBA3476B0DBED0D5C677953018086E97373730F08ADFBE93D67B377635B15487C36ADD7EB6B04104B4B4B55369BEDEE1301405E5E9E252C2CECA70CBE04FD08BF8ADFEA8EDF8240F252AF0B3308205A5B5BDB7CDFC2A0470640494949AA74ED5C50B2FC15AAE969166FAABD8C532F092078B2F8B8AEAE6EEE3B018013E90E1F3EBC9F94A375ED3F7C5ABBB70C98DCD42B5AEF505353630B0A006A12F5656AA8F6E5BE7DFB5E4D4B4BFB05695EB767EF5E1004782AEB6411FF666767361D98C49E919111CCCDCDB99A9B9B4FBADD6E074F16301A8DE0D5E5F178AA0400F223449EBC909393230FD0D9D9A926908139B9B9C87D7E1F066D36DE1BBE27877D833391CB858CEC15BB04886C7E10111EAEAE6EAAB5A3039648CB63B7CBA7D323253D7DE5E4C3ABB57790362DC3ED5A846F83C166329B1F696C77573B7AAD9D817B36EB888888C0BD7BF7101919091ED1DB24A271F290740F663C9C4EA70280385B06BB5C6EDC9F99C5BC731E25C5C5E8EDEDC58E1D3B3614B9C9C9C9888A8A529F6B3EF954AD5F52F412C24243515DF7195EDAFF02E668E7E7D79AE1595EC2C1A2223434342025256543EDCAC8C8504921F29F4B55CA2E91E5E565CCCC38E0722F617CC486FCFC7C242426A0BFBF1F1E8F175959CFD2E953E8EBEB43C18BFBE1F17AD1D2D20AF654DF18822E026C57F25EA424EF60662FA070AC07F14B0BA88AD983F6E2E3F0984291DE78017AFA656666E6A177131313111313A3F6D1D3D30393C9942400F80BF537B1B1B1F94486AFBEBE5E8E1689127C51A36125EB1DDCACD56AC5C2C202B2B3B3515D5D1DD4C863C78E29EA696B6B5BF3B900EDF8F1E3585C5C446565258E1C3982CB972FA3ACAC0C131313B873E78E7A5F10ABD7AF38E5CAB52684F83F7F5CFF39BCBE15E78D8E8DA9774867EABEA5A565CD35B95994979783FB5373AF25A9A9A9D2EC62606000E3E3E3282C2CC4F9F3E7955DF7EFDF4707D926333353813358A88C26338E1E7D0D151515387DFA6F2AA1DE7DF777B870E122AAAAAA71EAD42965EBC93FBC87EE6EEB3A71D7AD090B018D507B7A5A0A8686C770687614998BD3688C4CC6AD17CAE08E88426AD3250500AC2A49F4CD6C51519165E7CE9D7ADAD5C758FEC3C0C93E60A3504E95C6CF4D34778587870700603219FD1B33B2CECD2A66888B8B53E52298B0D6A86C14B00447B22B50A74299D942E9EC5E958345E6E7E703942772A0603F62A3A371E9935A941D2A56E36BAF368ACDCA2E718C0490F52E783921E004BCB2AF3583E7CF6E994BAB95B217613C51B159BE0F1E351FEDD1E33302B4B3B31B2304A773DE899327FF0807EDB2F6D8F0FEFB7F56A0EEEF1F80C512A9FC2BEC2AEF8533318445C4CEE8A84882DCC7BD3956E1E2E17E6C416F8093EAA53D21EE05FAD0A8EC58F1ED97E3246E04DE10F7B6877BB0F07EC96EB7BFA715F52871241F9A29A55AF045CDC695D39E4C2C8E96DA2193C95582B09608C2254B24B0C1440BF8EAA6450BE0E8E8A80299D82572ADB50D6666B138E5D32B57BFDC981F00B2A6ACB7DE9A124C827BDD311A93AC7E4FF4EEDDBB0A088A01746B375D12C883078A58527F82B367CFA9605654FC1257AF36A83DBFF1C6AF57E69A9CC22BA52FA3B4B41467CEFC13FA103DCA5FFF396A6BEB70BDF5BF78E7AD373145D6F9E0AFA7C972B70290D3AD5AF8EFE9CFC3ACF76062291C79556FC317E283C11DA146FB1EE84624668C6DBE7C161053E33897D9C07FF2CB5296D6E93F187C51BD3F4812AC2E6BB77A59285BEED77296265AD3B65E872A2A4C21D49A949484A1A1A1006B48F689F3B4FD3EF76C2612E2E351DFF8058A0A5E64EDF7A09174AFE31A42EBA435E59CAF5B539E7FDD188BC5A24075E3C60DECE529C8C6065882A60157EB4FBEFAAE3C77A3BDE326262727D13F308859C71C3EFCF00CA6598FADD65E9C3BF76F15EC81C141C4C6C6B0D44CA0C7D68765CEEB612F31C95EE1E6CD2E7CF4D1BF54991B1E1E0EB0A5D66F8853266EDFC602FDF3FBC49BC836CFE0B7633FC6D93FB56129C68D825F9522C46978E854E20F7A2096DC632213ECBAB8F7A29CF34F9C38A11C281DA2649F3841362A19A70F8BC0AD613BC2D97DCA1871B604E7AB4D0C020B4800D72B0166FF5C324F30914C95462A35330BA96C0C77B1B16AB9D18E8C67D214C2FB06ED18E8EE627393A0D68B2740B4D2F16DD7148610603FE8F4D5228961EBEBC7AEB49553C08F7EF01C5ADBBA147DBBDD8B1B7BE424C3188D8FF61B9CB5EB7FB8333116E8BB58FF55EC76EFDE8DA6A626894FB300208BFA3A6BEF33EC1023A6A6A66E13F50574E641699CA2D9350AED09F2D773CA461EBF048CC1C4E170ACCB441B25E21B018B965D6CAA7CDFCFEF00BAEF3C4093E9E969B26BBB622F9E086A58C2BAC9B40904F032E37C8B00B8F87F4D75DC088A013CD70000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (96,1,'Rackmountable_1U_server_3D_(64)',0x89504E470D0A1A0A0000000D4948445200000040000000090806000000823E2A7A0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000003244944415448C7CD554B4F1351183DD34EA7B4D0078F022DA558021A62680D02296A88BA320DF80BDCFB335C197F040BFF8171832F5CB87041088495019306D4500985BEA6A5CF99D673871641340444C3979CDC4EEFBDE77EE77CDFDC91EAF53ACE1B92245DE730DB408430E1FFC416314FBC22DE5343E1DC1ACE6200055B3A3B3BA78560EE9BE5F36073EE6F8CFC35CEC855263E70CFBC402693D9B8500342A1507BA55289EABA2E043FE05FAE7F59DA0B30725D748730C3ED767F5C5E5EAE9ED9804824324CB142F0433EDEE61AF912093CCB392AF14E986132995E2F2E2EEE9C3080E823828140A03712997ADAD1D1D153ABD55C97A5BA9249423E97BB08E3EA34E14B369B8B2D2CBC7D62369B35625318101F1F1FF76D6F6F2391486062EA1614D90C5B4B0BCCB2DCCCFC603879271CCECB160BEC763B7653294C8E4F4065D2C57219B1F535288A62E054AEC69C62B5A285E7279249040782886F25A0AA49B89C4EC38842A100160AF1F8F7DF1B432A8BD2828E7637FA337B58F75C41D5ACA0B0F109AB2B8BE8EDEDC5C8C80876777737C5ADFDC2EBF5D6767676B21E8FC720CCA4D26877BBA1663207C86661B7D9209B4CC8F1B740219F4778741436262BCC0AF8FDF0F6F4F06C099AAEA3AA11550DA9BD3D385A5B8F71B95D2ED434ED90AB522A616870109EAE2EC86633BA39060706A0693554AA55C3C8ABC343B87FEF2EA6A7EF606C2C8C9999289C2E07AC5685B052F0410184910225723ADBEC78FC6D09796F105FAF4D62BF5004BB1BC964324B03F572B9FC4694B89FA24D2E86304090A9E934F214E8A728B141848D06F00B608CCDA832B9E63C6F5FB452A84493B2ACFE3EABA4D774A4D8116C3DF87CBEC37DA2BA823BC775473B40242D0AA0AA6A43CCCFA25AD86142A4E092E5838E0A8742E4E933E6E35B71846F843137F71C8562D168B172A582D59B7E9A3A0FA706688D6E21974B9CC73C82E28867D168F4513A9DAEF2D60C7675F7D44595648B2C8945CD1613078B677E0D8E25254C6806DF29424680D52B164BC67F9FF90A381C6DC75AD5E0E2A837CCFB139745B1C2C77655D57C8D5FA2A3F7D6A921F29024E9D8DA348BB1B2B2C4B3E4B57038EC88C5622F7F005F788241A459A8C50000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (97,1,'Rackmountable_1U_server_3D_(96)',0x89504E470D0A1A0A0000000D49484452000000600000000E0806000000D06619120000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000005914944415458C3DD575B4C5C55145DF7CE0B6686770706E8404379434948A04428C416488CCF5AE3F3C31F131BFDD6FAFA31A91F7EA8DF9AF8A33FC6C49886A68DA949A941AB69B55A2858825A19DEC3BC60068679BBF6051498D1A60AA5F5249BC3BDF79C7DF6596B9DBDCF28C964123BD914452961F708ED28ED30CD803BB7C5695FD34ED3FA88CDD84E2FA8EC040119191935AAAA3E4ADF02FA4159E74E40F75FECF5BA10C1BD9C0E854217393F71471240952B050505AD02FA9AD26BB761F3BB01F83FEDD14D7F67D60839E772B982BB4A404B4B8BC1EBF5DEBB06B858C96E83741BD70DD3FA494A5F341A3D3DC9765B08686C6CB4EA74BAFBD652CB03B4DCBB09F41D8CED4721231E8FF78D8C8C5CD95602BABABA6CB158ECE13595F7488ABF1B52C62EAE394532B4229E979777FEECD9B3E15B26A0B7B7B7824E8E8AD2D977F0957A972A73B7D75CA29DA39F3E93C9748664CCA71040ABA13DB67E5369EFE8783D2727C7DCD4D4248507FFBFA6201E8B22145AB9ADAB5E1F1D856B6E769429EA238BC582ACACAC6422913825083B796D7474767662767616434343728D44555D3DCC1C68B7EDC1E2C202586CB6E52E69B3156AFDC4F4342A6B6AD05057872B5707714F6B0BCE0F0C606EC289429B0DC160705BD6CBCECE01D587DF9DE3B0953A906132A2C45684E19F7F85CF3D034555914E95B7D254BD81EBE42189043213FC4BE12E1BCD9A235D248CC9891BF86D6C64BD8EA2A2A2024EA713AC194E1DDFB5391C8EC6E2E2620C0F0FC708B4CADC851C9A3858F07850909F0F9E0A0D942DF77DB4B7B7637C7C3C25A8EAEA6AC829E2FD19959595109FF9F4A3AA0AEA08FA0CC9864E0F9DAA83CBED462C1A837F7111A3D78650E670A0AAAA0A737373297EDBDADA100804B0B2B259C112DFA14387B0B4B484E6E666ED7B7979390C0603F6EDDB87109F138A0ABD5E872C8B15F36E2FAC997ABCFACA4B1CE7A0106AF1F4534F602918C08B2F1C4751910D636363DAF8CDA64F7917E389AAAEAA446E9605AF0D7F81F270001F3FF326A69B8FA07870007EAF1B7EBF67952C558D979595A91217AFB217F57C7792F6242DE6F3F9460854537676368C1CA0379A18A85B98A2726D29395152940424E4C9988D8DB7256DBCDFEF476E6EAE465E6D6DAD06DEEA5C15569EB00A6E7E9A64D455EDC714FB582CAEF9CACCCC446161610A01BC10109C224DD51B9BC4214D483B70E000A6A6A6B45E889058942DBA96ADF81702F8E1CA4FF0FABC888623DAD8B15F6EE0F2E5EF990D5C2828D803C16292BE44141EAF5723D4623153C1931B7088FDF9BFCB60864F678229E0834A62B6D692C5C5C571A69E52FA3111937724EA6E01922FF556AB55035FCC643422C1C045C1029AA8DDC87729BFDDD7C08A4422690B986C3E1C0E6BFDC4C4041698CEE418EA742ABC24E7C2371711A1FAFBBFF956F3252744C06B686848BB1EE384D96CC6F2F272DAA229732466E967666664C3D8BB77AFE617C9CD63F9E3110F3D783FAE32054A4DE8EE3E4CC17970ECD8310C301DD6D7D7A1A7E708DEFFE0431C7FFE399CEFBF0003896E65BA3CF9D6DBDA29DA9AB4866BEDF0C433901B7E1771454459BA8900C65521CF2218E2D62B043C2B04B02870C17A2D782140D41F49AEE650992035602BC8D20408016EEB375193F892822369419A3CAFAB34C95C9965B5A0E360AB4642775727CEF57F857C82B24A44FA8B9710F077DF649EA41D49892525251AD9D23C4CA372E2B00108B95FB8E63D78F9C41B8852A9E2F7F3537D9CB388A16B23DA7E64DFEBEF060787B0C25322F33EF9F433121BF8EBB4B3064CF3C45053283318118C334D059350A3AB712637640CA67B4D40E2DF6EB73F2ED435F3489FE071AD9E672B2D2DED319B2D3A7B717152542FC562279AD99C8922BB3DA5E60978E988FEAF4DE5E6F7B316A98A064A92A732B951BD4AFA6BA872F3CA7CF30F92012E5DFA4E0418F279BD5F52E82514E5A4DBED7EEF0FB8E8B41C4A41997D0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (98,1,'Rackmountable_2U_server_2D_(128)',0x89504E470D0A1A0A0000000D49484452000000800000001108060000001504A42D0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000ADA4944415468DEED5A5B4F5BD9155EC7570C381868203104023164722109490993098D329924A44DD4A1D3AA52A4E93FE843A55EA4B6AAE6A56F55477DE85B34525BA9913A6A5F3AC94C47819090512F0C850C7702986BC0C660CCD5C6F8D2F56D9F6D8E8D8F99B69A4E2ACD16473E3E7B9FBDD75EEB5BDF5A6B1B251E8F93A2287544E420B5353737DFAAA8A8F891D3E924A3D1485FB4ECCD60305028140A47A3D1F88B269BDBED36CCCCCC98060606EEACADADF92D160B99CD66D875331008BCADF098B7F9FA2E5FE6F4970B0A0BE94C4323597372C8EFF389678A923E4A49F9205505DA7171B553D19352D975A3CE1127B3C54A79F976DD0D2E2FFA28168FEDBC134F9D234E596C92D61557521F649B0B3AB117247CA6EE682D0D0D4FD0DAFAC60B657CDFC23C8D0C3EA5582CA11FABD54AFBF6ED23BBDD4EF9F9F9E4F7FBEF9BF8F94D69FCAAAA2ACACBCBA3FEFE7EF1C25630484B3E2F390F55928962F47263233D7BF64C203EA994B8BE82D3FBB28DD5F633FB24D7E8ECFAA700C0E5572E88EF4FFED14937AF5EA1D9790F75F7F691818D7FA1A1812626264865B3FF5861D9DE45DFA143878412D1DA3B9E2401A06DB15894E873E60183D1209CC9BFB490343E5A535393F89C9A9A12CCCEB63E0600881D151717534B4B0B757575255F0055C42251B1F9E1E161FAF2B973C43442353535343D3D9D717128A8810DD2D7D7472B2B2B19C7949494506D6D2D793C1E3106C0EBE9E9A1E3C78FD3C2C28258E3C08103545050C00C9020A691F171321A8CC4344B3D7DFDB4BCB22A9E8F8F8E92ABBA9A161717E9F4E9D334CADFF51A140000638D4C0DEBD5D5D5D1F2F232316D0A197B7B7BC57E979696C8C72C585E5E2EBC47EB04DA36373B41466BCE2E7A53F44853D1E146057F8A0E592ABA741A0987A8B8A8942C569BD0553A884F9C384141766C0E59D8430C0008A2F3D2A54BC2C8393909E14D26930040D2B01C3B56575705A2C012004CA686F7E0890E8743DC676AB9B9B9E293639010047109866B648601456D6C6C50241251B79AD869F941CE474C469AF37AE8688D8B7C8B4BF4C9C020296C08C885356D369BAE5C685008E64F578C6C72EF589FE9517C0760CE9F3F4F851C0EB14EE660B5D31C45C55459FBD28EF19454A3C97B4513F6141504393956AAAEACA08DCD4D96D3CE400CD09CC7AB61A69DF730BF6250E85BAFDFA2D9E773AC531BCDCD7BE951FB435A5F4D84A258DA3E610F30251C6E6464043A0BC2422149BF30EEE4E4640A00E4D216F66C2800868162B4D4A26DE170588CB1AAE3333520F0D3275809099657020284B1589C37EAA180CA00508E94CB22FA63BA736D6D6D25584D670CE4DA2B4C69DC29E3E37DF67CAA751D49EA4D1B56F6BADFC7CC72A4FA30AD3203E2593927E1601B09102D63282AD5AF73DEE1AAAEA220EF6DC9BF4C8505EC406B9B3BE148B3068C0E96C4FEA12FBEB6018077F8FA367FF90A06B227423B06284A3080B2C3009D9D9D095AE6E7DBDBDB59150D00E98D91CF31178022C3000C097A868722046819004A810CC293790332F1433F7216280A00C82617D8662FD9D107864298823C9595952224200440690801D918A08019A6F648F58ED176793AA5B1C30E9D9B4D6601F87C6658DC47D980475DD53AECA1241D24C19671AA282FA36101184392F1B40060DD6E30EDE701E41C7EEF3103FFC2C45F7ECD9D4D18CC8901B47A8F8DF7750900296C2E0B05FA2C2A2A125E0E65EAB54DA6302CA83746F6018930382E006668682839667D7D5DA05526E2470E1F263BCB303337CFE1E0207B9A9D3C0B3ECA67AA74B05C084B980F06CCC64E487E0050BD8631D005F210C80350210CC806B09E397346A7BA888BBDFCE6CE9D2C254FC6F287FEADD1595E8B72CE6630D9540688A594AABCEF47FCF9557E6E607D738E1FEC3069E3A325E16166697C5C32D9B1D87285727D4C330F1EB6EFDA7E5C73F79C95A0C4E229CFD3EA019A999FD73C4C1D2BADEE9E9AE6B86F227B11D1DFB81A90ADEDC9473B1E07406E8529CCDEFAE7FBF7939364320F2A07D193650C0046E9D54BDA98698EB939B9B68C26325BED9F6B0560B4A455241A00B0E3D51890F93130A45D930050633B9EDE90F11F9F0695B7829B1B7498CB33786E1494A3A465B7C9EF8A7E88D41B9336570E2773927D4654EF73718870B0B7777DD24B8D67EB29C872F40E0E519099A28AD921C8AC2310FF59C9C5F76019A32151623DE3AA24E3B9C492276B1EF2DF36C852B4DF4936AB89ED65A6EAB9492A8C84A8C35947533567C9E6F790637A584D026329ACCB0C5E0B06D4CA97C20018C44657B40C605491126205E37E83155E5F5F2F4A22BD864C1C80D22B03B14E696969C2E3B8DC42BCC558540EF8445E80FC00F3787D8992CDC8090F924F113ED8E3A32ABAD7D8F39D1C12BABBBB0535EBAD8986BC02FD7A49281810210EFD1887F5B14FC885CA00B901E6807C53B3B39929783B4C6FBCD1C2B94219B9DD13621EE80B55C5A3C71D74EBE6D744DCFEF0C307E4F17AF5CB3C1DAA47684AE8D841F67C1BDD1C68A763C1257A5A7B8146AF7D874AFBFF2A0000EF8FC55319000E9D1E024DAC5058A240CD01C4E6524280E62818753BC6E024491BAFD31B0E7210C3519BEB1D9DA21E456B6D6D150AC23900EA7459C6E1B002F7D22B03AC48001009CC56782B496F5BCC0448D0E411A7DE9A68274F9E14FD7A636068D4FEB36C5C8CC1F8B6B636BA7DFBB600349241E437D09192A53AC8E74AC0E92C13655C38BC4D3852C70B28D58A8A0AF9334F94950BBE45FDA0AEE84D6FF8544C815C40CB00D0396C870B3A643054B013368301BE07DAC70631482A32FD1CC0C8F7D24B516F2321D4A33A200C1E8CCC3C5B462EEBEEF4832434C910B20C2CF952319745653432364E050CC08422260423402E59E3675B135E0CC5039C999ADE7EA4E2B0F764F9A65306A27F9EEB7103CB373D332BAA179CAF2C07020CE2759A9A9E1163E63C0B0CF88BB4BF643F8D8FB929CCCC71ECD84B1C42FCD4D5DD43AFBD7A59543A0FDB1F332385744F2B7F55794E9CD2060233F4F23B6F9261CB28883D128DEC2A0325080000AE6E1ADC6EB700C0BA0C0130BA0480360904384C7C3FCF74ADD68FC278F0063DE3824AB3350900180DF7D2F0636363C99C0420928A1E1819E5B83B214AC0A7FD034960606338DC80DC9900955EE7671B0300C81216748FFD0150B20C849C2803B33100E471711978E34633BDFFC107E4F5FAA8A5E575EAEDEDA3C9C9596ABA789199AD88196E468CBB7AF5357AEFBD7B0228DFFC460B757EFC3179B9BAB972E5B258679CF73C32EADE95AF6C70FD1F8F6ED35BA5DD74DAE6A7374B6AE88F6F8D52C98332AAFDE5298A30A0E499861ADAC57C12006A12B8993C08921E74EDDA35712A87EF12042100C09860042851860BBD06E3EDF52B22C640D988FFA8E3E199D2F8DA78277390FA932798010ED2FB6D0FE9E2F9060180D68E8FC401153C1B9BC3A670E979B24A7D7BFE1E0130619EC1C14161F0714DC2071911B274A997D7FEEDEF7E4FEFBEFB27CE55425C3945E809CB098FC4A1CD4F7EFA33C10E2B9CBB74B3A7DFBDFB0791D042A76DADEDB4CD7AC149E00F7EF8631106565656D3E4530FC65683E2FA3E35263A58C4A61B2E8D7EB7534089B08C636E846FAF3771BAC855DD2A667B85AFC7A74E9D325DBF7E5D9C16CD738906630310C050DC9243EB4CB3E15030E3F9F467D9425B417256562550CCA08AA8871BF80E632DCC3D27B3E97FFF937584E3EBFE83CE17F6D7403858D7DFDBC5B906405F5656267E6B010890BFB18DFDEC786715F517B49F33326EB95CAE7CCE7A37987A1D9C8055802EE50F375FB4FFBFFF0718181830329B2BA8FDD9E07F615BAF7268C3F70833F97DB6F5DD7F0118336FDF065B83970000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (99,1,'Rackmountable_2U_server_2D_(64)',0x89504E470D0A1A0A0000000D4948445200000040000000090806000000823E2A7A0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000045C494441544889AD564B6F234510FEC6E3F13B7EC776486CC74908DEAC91580E1C3088135710E2C6910B97BDF03FF8139C3821AD38C18A0BEC0AA4C8EC82C812F348A2654362C7AFB1E33CFC983155E599C964C5296C49EDE9AEAEEEAAFAEAD156007C40E39D743AFDD26B775EFFF0E572D93C3F3F8790A2C8C7035C5B3B4B17CFDEF16A1A3C1EE704F8AE99CCACDF19AED3CCB56BBA2581502888D84244D1F5E1B1614C0DBC00AA6DFF98DADDDD7D108BC5469148E45BB6FBE9C6C64661381CA2DD6EE38DB7DE868F98E170085EAFD739E8F3F930994C609A26D93C83AAAAC29B4EA7B2E6793295C293FAEFA8BE59C5F0EC0C9D5E0FC7CF9E22120A89BCFB2EC330E42E2685400C91CC783C96BBFC7E3F32990C1EEF3CC1CA4A1E8DA3364E5A27503C0A6E4A9A57C3D9E9297EDBF909ABABAB28168BE876BBCFD8436D7373133B3B3B080402989151FAA08F743A858B8B0BE70236880E08084C0C0EF3188046A381B5B535E17BC851C5C35124902813DA2727C86C6D8101B629994CCAFAF2F2D2B92B97CB4900745DC7FAFABA00A6B8322EB394C5626E497836DF9E7B49369BCD88BE7F8E8EE7FBB207DC79B522C1B8FFF537E8F7BAD7FCE9F7FB0603F025A17EF7F0F0F032954A05F8F080906272476D341A5156841D0038826C78ABD592F5DEDE9E38E1A1F353CAD6090D4555D0E97424B22C3BB3D29DD71C711B00E6F3382343392BF6F7F7C9A12CDCF14EC516B09C4E5825A7581F4564D8F1B05F8341C1C8256396F3F3D3C3BE8EF1648C30959361CEABA8D96CF6E89320B0BF60006A344C4DD39AC160B0C80EA417B3386A34AFEA9B3E1D8A8C83BC65DAA39F7F9917BF18A2A0D9EE50DC15D4FFFC4B9419868995D5125A9DAE2B7D15F406A757CE5993DAA3C7CE7C303CC309DFA55E95E0D17147C6FF21D39803403D6A40BEC429C075AF1501CA5CB5480048030B06FD585E5ABA96B6D43024DDEDA831150A05290B8EAE5D12350265EB954DAA7F5DE427C301E2B19893394CD480A439DA3C5552382B3CCE2C2EC525D2FFC376CD3993498671BB725BF47709D05BB7CAB877EF2B0C0683FF74565135948A797CFAEB7D7CF2D167F01C5250F6FF903DEA4145F693F53200EF3293D39B0150C99176B381FCF23212898493B6BCCF19F07C2D73FD734A572A154961E705A0733CE7FDCCE2A29C7703C0BA6C30598E01E6353BC40D4A1AA4AB06FC24CFAF82EA51496E043F81545A5F432C1AA3C7C3448F002FD1B9EF1F3CA4949F4A09FA033E7C972B20D07E08CFE908BA55021C2CF6856C7A9F018830831B213BEB2563B80C7AD4C139127694B80744A351695236B1C17C113B50AFD7118FC71D00B804BC94C2175654E539B4C064E758A7FBAE4502899B2E95A2F493E77BC080CAA6D3D5498640EAF7D1A62CE012E317634401504997467363A6CCFB0F75E29E3EC438A1C1EBDBA5128C90DE3900E57259F4932E8375BC57AD563F2747556A4C0B8552C9981082D3C9E4466F4E301432C3144D9BDAAD96429EDFE8AE48346AA612F117F63FA0D93CF6D7B6B793F4C2FD9DCFE7670707071FFF0B03F81B516ED0EAC10000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (100,1,'Rackmountable_2U_server_2D_(96)',0x89504E470D0A1A0A0000000D49484452000000600000000D080600000056F26BBC0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000007AD4944415458C3DD58DD4F9BE715FFBDFE026C838D6DB03160189040E8C2BA10604BB44AC95D7A9B49BB9AB6FD0F93AAF66237BBE85D276D95A66D379DB6BFA09BBA2A8502216BEA8A90002906433E20293136C6181B9B4F7BE7F7D8AF8B3FA276D294497DA447F6FBBC8FCF39CFEF9CDF39E7B106A057E635999A4CDCB871E33DA7CB650D7406F05D1C9A9CD260301CA7D399C4ABD299CB9D6A5F0483F69D9DF8F6E3C78F6F59AD56C8CC9F9E9E7E44D08332474D26138C46230E0F0F61329B317AF527FC25ECD6866F109FAFF1ED9B47267B08B7B7159E6617A2F138BA3B3BB0FAF80992DB5134363615C07A99EC7CF5D7B2BD3536EF26F7E0F6B5C12467ECE9ECC4FC62F895393DB2B981F0F2A2FAEEF7FB515F5F8FBABA3AB133FFA549D6029A84C5CD9B37B1BABA8AB9B93958C40199FD344E8E0ED1D71DC0DADA1A9A9A9A201E2B13DCD0D0404F222E00568E9696169C9C9C28878A22B58FCFADADAD6A4E4C4DC3214077053A90125D2D6EB772403C1A85D7E35146EEECEC54C9F5C8BB542AA5E442A7AD0CB3D84CB951F9BDD3E94432995432686320104028B48C4CAE3C44B6B69E43339AFF2BF6943D573E55BCCF9F9E080E7E64B399D25A474707868686100C06898B830EC872F1E8E8A8B4C962B140CB1784BE78F1421D8887C96432650AE8C5B6B636ECEEEED6046A6F6F4FC9DADEDEC6F9F3E761B7DB914814982F690074BCB5BE0146F9DE28EFF8BC537C4F300962E5708BA3D4BE0AE790BDDDDDDD2A58464747313E3E8E9191111C1C1C089173C2836A7EBA3C6EB477F71671D38A00577E42E9B358CCF08A4D16B3499C7F84CDC8965AD7DFAB33C9E7C8A5D715565F096E13B76E2902E6CE042EF732809A9B9B79862C1DB02E9EE812230DE170581D84C0D22AB3286544110C52A7D6686C6C54D15D398E8F8F8BE920AF00E03365E9CA35013D268E999D5F50E9E1CEE72A22E41006C5A8BEBEBE9A72C922060481ADF58E834CA52C3A89FA5C2E9702395F9E9BD0D6EAC5A5A18B2F01BEFCB3CE5207B7CB09A66AEAF149FAD48A51AF7FD276B7DB059BD8CD337B5CCDD88EA758034A3A19203D3D3D949195005B348951D704DCB4006F4DA7D32B42D901462DBDA9194CD88A7D05AFD7AB28CEF5724A6A2A922BD7F50827D0CF9E3D53914F26E9239BCD2AF91E317668F002EECECEE1EAC8658CDF9E81CD6EC393274F541417F364954EEAABA5937B79B8A5A525C5CC4824525A5728E673657B93BB093C98FDA23AD5543CE98E78D926EDCCB7826D66A4F7F79116E71702E26BBD82F17DC1E67549A1FB1B1B1B374D7AC41030195139B4728066D0506FB3C123852BB21D57F36CF5D38A6A9756C267CA5DBEE621B433C9933B561E3D8259C0358BCCF1DB77D4FAADE9DBEAD3E9F60838394C4C4F9715DB4A19B52A6E28BC5A636FBEC40A7FA0BB4CDEF1A91191ADC4ABE882CE06A655825D2343384C3A75B928F30D3DBA8C422716E10BE7FA14DDF59CFDED0B56EDBDEDEDED4AD6FD8545381D4D18BB740933927EAE5DFD313E9E9C86557407029DAAC8FE2FF431FDD824909642A1AA3DF1E873B1C72FB52DAB1CE49046635398DAD6E6432A9D56E9EBDB0D493D2D3E4969CD78E3E15D244CF5F8DDCFDF456B2808F7DA039C161D40FD624B3FD37CBE486D9D01798242CAEBD3209B72F283F9F979554099FBCEA611BD585FB9720553535355263187B3284E4E4E626060401554D60BA685C1C14149692695FB3F9F9D9596348BE0BDFB0A847078053E9F57A5908585852AB9C3C3C378FAF46955E745D963636398999951C57756E4D26E82C80E8EF5249B2B97E5743AF0CEDB6F49F7B7A6EC7BF3CD1BF8FD1FDEC7AF7EF90BDCBB770F1FFCF5EF159947ABC9F02C0354B0723A1AF1834C0C9B163B6203A3B0479F2907E845981813474EE22FE9BECB245EF9931867E32281D719C07E392F6BEC8E48179FCFA70A74ADC823D07A013CDB21E9D4E71EBE67F43B1C8E521EB14B64FEE8F2654C7DF61946867F884FA60A69888C6327C1EEAC963E36046C2F6B3180CCE16F2983CD030BF6CB4656EE223377FE8DC44E4205C1871FFE13EB1BCF31F1E924222FB670F1E24504E47E7237388BB1D161099E2D85BC4F6AE2D4F41DC1466F850D25997FEB780D59CD84EF7FF46B58A307C514942B398018724A50B44890FE960C381290343A80C5562F72269311A706A36A3D59487B7B7B6B761E3C301554BE2BD24CA500CAA043E416A81C4A59C48BBFD914469C1C9F482E8E16BA203192ACEBEFEFAFA98FB2686BAD77ECB478FF60DB4BBDEBEBEBCA3E3A82E7CAE7CB294016764850D0B6DDDD24BED7D38DD0CA0A3AC5F14C10FB5248072EF4E3E9FA06FAC4663622C71248FDE7CF61EEFE3CB60460AD58677272C788EF24F1D3D6086227F5F8C7CFC2F07ED281FA98AFC400DADDD5D5A5B029064C8A0E88303AD9B793B252990B29C86496426C44B3CBADA22DB4BC8C7DC98B555124401C48F4543280FD7C42EE07499995E9625B9E1342797FA343A506DA6234166A8CC7D302ABCD8A15698953728FA8ECDED95DD0499577128E07E23882C6F656B78183797D6F2F05B7BFBDBC6BD2CCF8E39F3F283D8F7F3A5328E6CB8FAAD6BE0CAD96D6FEF5F14429F7D33E9BDD09DEF122B124DEC7A07AF3DA6F7ABE66A7412B5D16798F61BAE459E50C51BE3927F32FD7AF5FBFB0B9B99911CA764ADB68F4B5F9F39232F2F88E8DFFC77F410F1F2E36ACADAE3688EE5D61E4A26480A6582CB62417D8B7FE033EAB94C73C3AAB540000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (101,1,'Rackmountable_2U_server_3D_(128)',0x89504E470D0A1A0A0000000D49484452000000800000001B0806000000B49F874B0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000C734944415468DEED5AD96F53E9153FD7761C92D8D91767213B6423EC8C580299A9466CEDB442B4A5A8EA88B60F7DA85051FF813E55AA2AF5B5D2487DA944A70CEA3C66921060A001025918200359200981ECB663C776F092D8E9F97DBED7B9497C0D688064683EE9CBF5F5FDEEFDCE3DE7777E6771A48585055AED214952061F7EC8F3139E47789AE9FD1B4E9E977836F06C62BD4FAD05A1A4D502407C7C7C652814FAB16CF47D3CF56FE2B96B01D0AF30423C3B59D606BD5EDF30373777776195047F6700602F37984CA6837CFC44367AF96ABCF01A05C804CBD5C8BA69301A8D2D76BBDDF55E00202D2D2D953DFD986C701C53D7BA97AE01D9E61808ADCC8E5F81216C365BEFF70A00E53C82C1A0F0727E363CDEF03E51F92AC83588BC018030180CD78686867C6B0A006C607D4D4DCD3E1650A1F6AAFF632A7FDBB2BDE07905A182F386AF9E3C79F27C550050575767F6FBFD47F85E78F971FE2A73DD53DFBD6C0C846E763C54150D9B376F6EBB78F162F0AD01E0C081034548E0743A1D8CFE217F655C37C29A92CDC1F735B37D1AD8399B3A3B3B6DDF09006C6CE9F0E1C31FC8B40EA36F5D37C2F746B6109BAF1D492400D1D2D2F2CD6B01E0DCB973BF3399CD7FE76B3A5A1F2FF7229EB3B3B3343F3FBF3600A2FACC0939BD78F122303438F8F3D6D6D6FBAA4B5EB6EF2464FF19CFDFA337A35C494D4D2D4C4A4ACA4B349969C79E3DC4285AB7728C51BAB180869F8D9367D6BBA6E4F278DCD4D97E8BDC2E2758633E2E2E2E949090402693098D380F83F63394687F4088C70DBC80B8D420A7D329A6D168A4C46433E5E4E6D3D3BE1EB2E4E64687D977C268ECE19C71516E513115E4E50AEA1B9B98A42D95153461B592D56667B97A2927275BF6430DF7D43E7D05DF5E798A83D53E4D0525A5E23C60992797FB05CDB8DC6B0A00838F1FD18C735A39359495950996E2C491CC66733ADBFA470040A11CF3E9F4E9D33432324257AF5E25051001AF4F5CE3B283F6ECDA458D8D8D545D5DFD460484303E9F0F6814CFDFB06183A0ACD2D252620612606C6C6E0EF7174A8A851C139353B4313F9FF43ABD00009EB1B5B6966EDCB8811EC41B910B3278BDDE1572151616821D49AFD753435373D47BA726476855D387851065645AC81067247FC0BFE492C562A16DDBB6515353936075D667320020786BFFFEFDE26515BA87B20100C55BDD2E174D4F4F0B0540E9F7EEDD8BBA3F28E6D4A9536293898989A86B4A4A4AA8BEBE9E7A7BC34DAEEDDBB7D3F9F3E7E9E4C99334333343369B0D718B7299712007465B4757D8388CDE3B9D5DE4E6988B3133E3A4C9C949B12F0C0520688D3367CE88EB5C3F47BD0E051D3D7A543801D6ECDDBB57C875E2C40972BBDD422E8C8C8C0CCD3DF40CDACC82A245C260F9A5C5CC3AEA67E51D45F84D490E3F8741E6F3F9C9CB0E8285CAEAF0D2C5CFB5EC8C53561B6566A4916DDA41FD3D0F2914088533C1E0D2AA10801E1D1DA52D5BB6D0D0D090C8030C727381B2B3B3C96EB70B10A8C381328C7CB38B41004F800163253C780636C9CC8CDE1E80A1B4C083893D40536AE51CF860371919D597AEFF97F6EDD9450E06CACDF64ED2493A2117D6171414887DB50612B58A8A0ACDFDB5721DB011260CAFC8A3154A4CA624DA545A12891552F88F7C2A2D31E6F2CF29661395B16E9DFC6E90311098A3A1E1618AAC9268C967C85B515ECAF714325802946C36936D6294EC538E300042C115EF8FB08E1C406600010004AE69567A3A5EAEA3A32302803003C800E01B1D0E87303C848B0500853EB5D6783C9EA8DF231CC09810147BA819E0EB9B6D02F1A1D002355CBE1A2985249D24E402005E26175825965C185C4347BD0F32839DD2D3D3C30C2045878099955BCE00503C757159F4CF6A8024252452765606832D91E219EC3EA670835E17D94B5AA400F159C72C91929A42699CA705E68334C2DE9DCA2098B63A650084D4653D3D7CF850302FBE6767EF673B3D0500D0D4F99C95720A8BF865AD7CCC82F703000A420100E4064545458219B4BC48A953B13ED61A7839908864F3D6AD5B545C5C4C8F1E3D12DF2BFB0100F0708CBDBB765222B3C395D61B74E4A37A7232506E77DE15F2B5B7B78BD0A4B0488CDE86A0D697C98E6700286D6D6DE27D7B7A7A22CA0410B097A471EFACC745C303FD4BB246695902B9EC24725DE2777DF4ADB48465822A23AE4C51257ADC23516262220519D488F993E3A311908482A125ECC68EF58C8F85909381DE3D3636F653039FA0692014CF86856B5CE0E3598501145A844AF77049881877930D16523C50258C12981E747F2B64501B4212316FF18DDB65A6116BF81AD0EC0F0422CF048B600DF28EA4F40C7AFAFC39253360301EF5F59357F6D464F680B2F2322127D68762286C607050C8116BCD83EE6E219324BF771C03714EC5184196B1EBEE5DC152A9510046BA04BA77BF6755B3FFB838E38A1000FDB08DEFF2B100FD1D0564067546CE06C7F961C5F8F074656146760E0558E9414655C0ED89E2650BB24157B845F820A9AA3FE5BBE565E102ADF83E8EBD11639CB37F4C8C67A3638BF139398566BDE11FC8DCB32F5616980B919657E4FC55D6C4ECC0F1BB24C860D452FE5A18CB4300B3DA2106800ECEAE38B6414DC9F297158AF131F5BA3000E6D8F81F1DAC131932623545C960A39DC7BAA6B5369FCBBCB4B43471FDB25C92220464A4A751E395AFE9E3437514E044F31AE7054696B9FEC37AEAEFEF5FC1386F5A2E94990932201BB8CA893626C78644F882EE900C2BE110FA1525258716309E5A87AF5B3AE71694516A720225256EA0030F6FD346BF9B3EDB7294EED4FF8252877B29FFEEE5A80CC0896C3A42A03A075AC20058A4183F1202F4E1FFD4B259ADD4D5D52592A443870E89CF5A03B5262852ABDCC23E283B315A5B5B69F7EEDDF4F8F163116FADBC0F681FB11675B7628C5E7E561A97484075D783EE487C1BE0EF377108C07D5BB76E15CFD11A75757502285353D1FF1D2F2525856A6B6B4552897269D3A64DE23DABAAAA448534CC19392A0D93F0FEE82081827F7DE653DAB97327DDBE7D47BCCBF1E3C7581703D4D8D44C9FFEEA9702109FFFFB02F5F5F5BF7643CAED7645AA0DB329812ABD0EAAF2DAE99FCC3CF6F21D64F07965879E5FC100D03BE4533B8A812FE0FFF1360200B808E114E38B2A403600A20332745CC73A64C25AC9163642A2858C59CBE3201CD641A9070F1E244E48282F2F2FD2CC8101D4B98585CB54CCE19151AAE435D8FB5647A7A80294F234D69E0A259A394BD6AA0214EF067851F3A3A41CE4BC01600523619F8565B94F346359AD76EAEDEBE3AAC14536FB74F8B37386EF77F3F386448239CBE14AD2E95FBD0B19D1DDD25275222E9112437334C7DE9E34F59CE2DDF608A32F6700D84D010083B8C662B1FC160C70147D2025044038750800038413C438D10C416DAFD0483018D42CB7E0250139A9D32AB71485471B4A0F422787203CD3E7F789F86C656F54AA038009724116C81E6B4F2496A2BBA9B146E981680DB976265547262AB80DA27C9644A28CDE05408CF2157B4377006230B840C78E1EA65C8B851E338BF9FD01AAA9A9263B03EF4E47171DFEF807625DF3A52B34ED706A86A7AB85C5D4AE9B23EFFC1095DD3B4B46077ED23189AA40CD00CB0190939353C92CBB29D2085233803A0460E261C8FE479E0D8BD805054A31E218E81B0C112BCEC1A00000BC1E6000FD625F256C449A32F20B4F4C59F91EAF50AA8D6955A7944A7CEC630F533A812FDB132089B506B2284C82F5AC2811121002F0DE0801B11800F298CD262A2F2B137D8379AECFCBCA4AF9DD9E71B99644164B0E999393E99BFB0F44E306FD79FBB48341EC11F700E1494926CACBCF1309656A5A173966DC2B18C0E5F25070CE4FBF491DA4CA7827FD31AB986E9E7D4A99372C54F28F4A06736091AD5826E82799F7550000FD3240163B81F020D4B7478E1C110A95AB02A1304F605E3040565696B8110F58DE298CE62DB1AECBB5A810AA9B4B2F3C6F79CE0010E9E5FD6A2A365371E1466A68B942B55595EC5971D472BD955F2C914012A88595FE41AC320F0A78995CB80E63A32F01EA1F1818885C470EB163C70EED30C33A3FFFAF0BF4C5C5FFC82C19A26BD7AF0B06C033FFF2D7BFC9CEE3A7CECE2EDEEB0B3656D85B2FB5B488F56022D80020F32D6B4C290CE0F2F8C4FC336D0F5F78C665FA9962559F657E892DD053412E8310A8B4E8593E0F9E8627B4575757C71D3F7E5CF4E7C7C7C78522E195A88175094934CB34EB9BF5BCF35206CAC82D2CD2CCCCADE363A47BCDDFF8DEC86F2EBC65A625FCEB682D83B3AF7F784DFD1A080074B45D63D0F905A00100FC8887041DC0E69CCBC6B6DE2AFE218495FB27F6A09F301D99396B9D65C3A773ACDF082A0405221B5E1FB173030E2B21AD9CE8ED0E49CD5E4B3C012CD2D7D70BF9244E60EF71AED427E778214E74BFE4B0F6E5FF0096DF6932D3A411F00000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (102,1,'Rackmountable_2U_server_3D_(64)',0x89504E470D0A1A0A0000000D49484452000000400000000D080600000019AF686C0000000473424954080808087C0864880000000970485973000006EB000006EB014C319E4A0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000004F34944415448C7BD56C94E1C57143D55D55DD513DD0D1863D3130D6150D4812C9CC491831728B2A278915DF6F98248F989ECF20D59253F900576A46C2C2CCB468A9C01128C8DC76E30F43C0FD59D735F0F40821C01B65FEBAA5EF5ABBAEFDC73CFBDAFB44EA783D30E4DD3DEE7E573DA75DA659A8EB73352B41BB415DACF8C2173EA184E42C0850B17BCAD56EB53BE739DC14BE0A1936C7616B25FE1AB4DBBCBFB15C33056D2E9F43DCEDBAF8D8077381C0EC775099AB75769D619C0BED1D1DB27C3E4DC6CB7DB2BA669DE5C5F5F4F9D88804422610E0D0D5DA5139565AECFBE21A06FCBDF7D5187AEEB2BCD6673756D6DAD7984005A80165B5858885DFEF8CA8F2E97E5A6CB412DBF56A8A770A6E93A8A852298D1336FC4609B996C2E7D7BF5D637954A251F0804FE14026EB8DDEE6B94B97AEDD2954FE06009D92DFB441B99960B2E970B8552198B8B0BA854AB28144BD84B25D19692EC65497B55B0BD55D3B2404CC8168B0887C2D849EEA3566F9C311D1AAAE5327EBF7F075438464747C19E71CBE0CA77CBCBCBDE5AAD86423E8FD1736328F31A09B3BF11B893C488C52727D1B66DE8C428F77E3A999D9941301080E974223C3181D0C58B48EEEC62825701DC6C34F0E4D14344C361B6AA035FD148847E34458ADC7B3D1EBC9748283F721FA2AF7068022F9229F8FD7E948A15640B69685C6B9304B18E26D6D5AA4650FEA01F5E9F07D57A1D3034A51C8DD744E25DF8867CD8D94932BE1C76775E204C3C8B8B8BC8E572868304FC4ABB964AA5E02110C942B5565575E5F3F98E70383C3C8C52A9D43F028FD45F5FA23AC194C8748D409A760B7992799C2FCA8FCFEA47EAB86F7D5FDA21B97CF4E10798999BEFAA44EBEEAF7E9C339318191966BE3AC8E472BDB5EE33E7CE8DA2DEA8A3C0FF33FBFBCA573299B4498051AD566F0B013F10881C6DDB24605A400D115C8E813684CD2E3AA4E9408664B53F0A0CB42C849003C9969440932A110997590206F91D3B3F8E3C4B810D48F99100D3D99C0A7EE09FA354A932D34535DF7DB907CB65C13ED4DC36FF7A80ADCD87479AD77F583ABEEEBBB8ED36DAAD563F794F788993E89F1CBDEC5191DAB428403774981D27DC94A3D9CB90C849F50802B24DB32B5F0EAFD70B93EC1BCA1C4A210F1E3F8687E06B2E37DF69C2B24C38E9D36958035F22757E4FF0EA18F8929A77994EB5078F2FFA1AC1C6D6D62010CB34108FC5506F329B6C8AB16814ABABB799DDC6B1210B9E48F822BEFCFB0EBEFDEC6BE8BBCFD07AB8A9D618CB942480A6090197442A128C8070380C64B3194CC6A252235D5952923EAECB5CFEB30FBE11B0B1B1A1E6F3F373A0A4540D0B0879D6D074E43259D51BFAA523BE82C1A0BA2F534176171022EC0BFB94A8F88F31502155D70E4A646C6C14F1A938A4576532194CC5E378FEECB9524A17579EB51DC2FDDFFE5025D46AB5A9480B298F0F8EDA2EB46649F5B01E014A8154ECB2EC1091CD2418518053B50590842CB367F5B26B2809CBBA31C8B8813A25DCAFD7CDCD4D66A6A01C9332D8D23099F962A9A8E6B269FFBD06B376D857BF8F0821928CEDED6D45D06175572B7515BC9C2ED25F1A54903F10C4D4D434C98B6282A7C5ECDC1C1C4E134D39C188A3C0E6D90933D8E02FD0CD47C4DA256086CD5BF030E95ED9E28BA5A5A5EF294983D21B0AC7263B224FBB572F271D16FB80F750C3CB66D2A7FEF0717BBC38CF2696CF975A2451C3FF1EA48386AAFDFB5199EEBDDCC5BDBB77F4F1F1F1642814AA3E7DFAF4AB7F0006A06197FF9D49440000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (103,1,'Rackmountable_2U_server_3D_(96)',0x89504E470D0A1A0A0000000D4948445200000060000000140806000000722B38EF0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000008A24944415458C3DD58694F5CD7197EEF2CEC0CC3306CC38ECDE6921817221C5CC98B9CAAB1122995257FAB3FB9DFFAA5ADD4FE80F41F245FD2AA52D5F8075495653BB1094B6D43B065C0363B44ACC336181818186086E9F39CB9339E8DD4B10CB67BA45777EE3DF7BEE73DCFBB3CEF192D1008C8610E4DD3CA70F904F229E41C2459DEDEB10F7908B909B9057914386480B4D7AD1F801B5253534FE3FA097413F8F75EF6DBC30E8657184B90DBD8CBCDEDEDED6F61DFEA5BE9809C9C1C8BD168FCA51EE59720F63785D8213AD10FE98233981937979696FADEA8036A6A6A2A7D3EDFA77A79390B31BFC391FE2AB639E98CFDFDFD9B66B3F9EED8D898FB501D70E5CA15E3C8C8488B5E5A087CDD3B02D451ACB907B9CFCCA04306305E8B03CE9F3F6FDDDDDDFD1541C7EDC710DB3B0ED4518D693A0376DCDADADA6AEDEFEFF7BCB403AE5DBB76666767E733C8599498537864FA7F8B7444A9F8FDFEA35A73D7603074994CA6D6F4F4F47F5DBF7EFD699403204D908BFA6F397BEEDCE7E91999C6E355556F3A8A0E65209B25252949569EAF1ED99A086479D8D32D9E4DCFD6D4D4E4AD8C8C0C8133D8E1DE26E87D90932929299204C3DC6EB7C05BD2D4F20B868AD8AC164136C84F0D8A80C47F60C0E6CD5883C3BDB1298E92527114E4CBCC9C53AA8E5548FFB341595D5A106B5696325A8F89B0C617111AFFECA061349A204671ADB8C45E582426FCAE2C2991FEA7A347E600E7ECA48C8F0669A1BCBC5CE14C9B100CC32C2FF94811B97CF9B20C0E0E4A6F6FAF7A61CBB32901BF4FCA8B1DB2E8F1081D043E88526CB15894CCCECEC62D5A81850822FA67759F9696A61C999999290E87435ADB3BE168A364A4A7EBCE31A8EBE2FCBC38F2F3250B4E48A4B7ACAC4C5C2E97783CD16595F6555454A86FF2F2F264797959701E11EEAD04800F0D0FCBF67EB4AE79E794184C49D1F520D2ED313FE29F076FB4988F43D3FEBD3DC9CB2FC2BEBDE1B7737373A5A1A141BABBBB59EAD2E980ADE2E262D9DCDC54C672D0015A305F05FDAEDA1C0164ED8C8A68BC8F33802C2C2CC401C5CD5327751130826EB55A558605BFD5241973F61C9BA08D935C5C591E363736540DA663998989F4D2897466ECB0DBEDD2D7D7A736C860BA78F162C2F74223BFB0508A2B8E0541D4247CD52250D48213CAD62247A1DAF31E0271767E419F7FE1040D734D0DEFA3BCA4C9F4CC9CDCBDF30D8258E2F8861830C0565757B7B9C321005B4CDC878686546A242727AB854D58747171510A61283D47A0621D4030B2B3B30FDCE41EA28020307BE6E6E6640300135C1ABBB0B42CEB0FBA65DBEB95F6072A22944E3AF4F8F1E307EAA5D3139128338E3A98750C16060F37CB8CD012906B01CADFA9F7DF4B087EAC131848D9D62C31031F1F74E7E6DAC3CE095D5962F3F37259DF65CFE7177BB64D965DEBB21F612BCE0B52057E05269EF5F5F5EF4DFCBBA0A8A8680DC09BD132F523D21B5406D001009C9B09DD27EA16123D57E98745091441CF474979FEFC79788E3A8DC8805C7B8E34FCEC84743D7A2C673E68923B9D9D6241643063421B8B058DC0C60642A43D3820CAD4D49494969686D744A405ED0C4467B01BCF7B7BBE8F61E90425276E4A8B2B5BF1EF6B20DD0DDDE6170EF07ABD0F11644D0896ED999999AB263D4A037AF9F1106C0A4B44524AAA6458508B9DF34A448B27C581A161F95FD6446248158323A3928C526272ADC89D8EFFA8E7DFB477A86BA6351B69EB97BBDFB51DA84312ACC869EA3D689E8E2B2C2B8F9AF382D29C0B2B874EC2FE88D28D40B021D8B5D09F7C263D5A037C0839137280110ED9F5EEC889DA1A554274D67EE9450F7A977C43673FEAED130BCAD7874D3F97CEAE6E39FBE169B9DB794F5250F72BABAB54C97A1DEBD96C3661DBF70C9C108879C7B5382D959515E02A0F30F0A1E4D964727252113DCA033267ED6557177B5E219A079B7CD4DF292BE654F9CB6FBF9482A7F72477E46138036823CAD3316219E25353A8761214D6FE90180D46415AA8AE88F598243C8F0E2572D0512D2D2DD2DEDE1E6712BF61CBD5DADA2A757575AA16932FA6A7A7A5BEBE5E39D40D3EE879DC070ED891C7CF06C487C81F1B1F036117A23E17C893274FE2F43636362A905656A22397BA9B9B9BA5A3A3435D7B7A7AA4B6B656710E6B720AF614DB0559916D7FFCC3EF657C7C42017EE9D2C7F2C5175FCAD5ABBF51FBFEC73FAFC7E552223793C308AEC59221D5DE5571EEEFC96A45BD58674682D9A77300316663A107B3065EAD31E1FA15C0CDE604810F6700EE03E8A11989ACE704841F268ABC72BDE58C1CD415AACB5C98F3E01A45C0A18DB0056D6E3C256DF7EE4BE3C993720765480BD649D579315B12ADC78E8ADD50A20C20E9875A6692EF8F35085E64F6FD075DE08A55D9022FFDFBC60D999A7122A03A657E61511A4E36804B4AA4ABBB474E377F80670B3A7917485B5B87B233B8174358E7D7A5F5E2C57DFDEDDF49DA822F8A03880331A40007FE63FC2766C03601A60368305FA203CCE8D1F7F12209136421D5D5D571BDB74E2A0ADC4473245F1231C85DE91C1D1D5500313B8817BF7562A33EFF3E887745157A7647FDFDFD8A4C13E96444938413CD8540278913F8898909B51EDBD320A147A70081A08D3CACADBBD7A5B8A85872EC36D51DEDA124D1EEF2F23264E50482A1081C1E80AD381B9595AAACF278B68200838158529657D6E4D7398BE2F2A7C88DCF7E90BC5687A42CE72303F472038C19ACBCEA01A3DAD025024823B969960846AF0146F94D663CCF95CC2C8B8C61333428760CE280137242E4604479202C3D6BEEE87F6A37703E585B774B4166962A6D34851BE3A01DE978C68353A2F598EE0C9250F4458E3E388E01E3D2CBD3BABEEE22DA5196981C477446698624F9DBDFBF0EDF7FD7765F5D47467E887B36343CFEE2C36FDB7405C18A90916195FD00CE4C2EB77C25B5EA59DDE7E511EB0433848113E2243A00FB5BE4DEF9A7CF5F2F5CB870C2E9746EE180508AF43014143A028548F5B77968AFF811F82D800CF225D212EEAA0201ED272CAEFDD84B83030386D1D111CD6C36EDE2707AAFB2B2D2822C1D5C5B5BFBF37F01103B11E0852899F30000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (104,1,'Rackmountable_3U_server_2D_(128)',0x89504E470D0A1A0A0000000D49484452000000800000001A08060000007FC354EE0000000473424954080808087C086488000000097048597300000DD800000DD80134E635620000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000010604944415468DEED5B597014D715BD3D335A663423A10D098C36242101B204D8C16C8E0B30C5661BB0534E1595CF98AA7CE52B3FCE5F3E525970AA9C54C555CEB76D6C134C3902AB401BAB598C168440129BF67D43BB66244DEEB9D36FD4234DB74CC50E7CF8B91A754FBFD77DDFBBE79EBBBCB64644597C1CE7239AF4161D1D1D9B9191B1232F2F8F366FDE4C3FB5A59BD7EBA5D9D9D9E74EAEA6A626BA7BF72E7575755D1C1E1EEE888C8C2487C3419AA68D8D8E8EFE56E33EA7F838126E303AEFD8B99BE2962DFB49C3166D6D6E36B5B575535FFFD07325D7D8E813BA71FD1279A7A7E53A2A2A8A3C1E0FC5C6C6524C4C0C7574749C74E80C10EC1011114163636372CD28A19EEE6E1A1BE76B9F979C4E97E1F1FE2505F02FF9837587B9393F4D4C7B2979C50A4A4A88A718570CB5B4B7537666064DF1A43ABABAA9FDF1434A58163F3F480BFF64CDF2BDDF6F90F1B2B7AF9FD273727539E768DAEBA389C9A9E70A00ADAD2D41E52B7DAAC36EB703049900C072D561DFBE7D4263C5C5C5728D4E5EEF34C5908726C6C7A9A8B090EAEAEA28353595FCFEF0DAB4D96C32CEE7F3990A86FBE8373939298B07A699999911F0819ED2D3D305A968A77559B233330504AD1D1D94BEEA0596CB2700F031F5AEC9CDA17BF7EEC9B81FA2616E900DB2E01C7FB12ECB972FA7C4C44491F35C6959D8B1FDFD5DCFD615B0BCB171F16CAC6E9A9C180FB975F0E0419917DC0240C0F34806004453CB98E60B0A0AE8F2E5CB218AC203ED0E3B3D7CF89076ECD8412BD81A070606A8B7B737ECFBB3B2B2E895575EA113274E98CA88FBE807A0E19950FE77DF7D47DBB66DA3A9A9297AF4E811AD5FBF5E165AD3EDAEAAEE0E45F135145275BB4E8013A0B9516A6E6E1659E3E3E3E9FCF9F3A6EF7DEBADB798AADBA8BABA3AEC7DA7D349EFBCF38EC850525242870F1FA693274FD29E3D7B64E1A6D99A3A3B3B89E32353D2B0DB6D949A991DB8AD69F3DD340ACEC5780E45182D3491413E33E3A30847044D31B827262682DC13E8AA8FD4FFC9CB592D379CD1D1343CFC841A9B1A69B0BB47C7C25C886CD0DB962D5BE8F1E3C7F22E5ECB3900C08B9BB88160018B6EB4E4C0A41C62A55800043B6BD6AC113F12AE7100297F8B8A8A687C7CDC9425C2353C531DB03AE302BD5CF82225B1F59D61CBFBD98622710FE597AFC8E49F3C792272272727537E7EBE290000B455AB568932CD5A38E6826B8C8B8B13D0A9FB662EC5C5205A93BD5A57B2AE30030A8CCA0BF99DCF3DEE184A5D9E22F7A378BDC1720F5859C1918B404494C7ECE7724533D5FBA8DBD547E3ECF7877BFA02AE690100308F9E9E1ECAC9C9112063BA410670B95CE2FBD58243F9F300B0070763019492C335588F02821900541F45B78A328150201EEF018084017479BEBD55A5504BA5172F87F8658C83821468A70D7ECFD8F06C800440306B0007C06E6C781EDE01F0E31D0106080F81185EC7DCECACA0DCDA3C120C4A0C9A7C902944419111949494441A5817EE97E5B4D9B4D0BE0BCE633D6E7273403747015735363C44756A6DE742DD3464C23C60609C15E05A0030AD021974C00D33009C3D7B965E7BED35530B9E0FDEE62CFB2885676767536363A35CC30581FA556CD1D2D22248D5F405D8F8620165A6ADA2FF9C2BA557B76C2607B3D2F90B17653114A51D3A7448E434F3C1CA9F2B7631931D078072E5CA15F1FB9051C98579E19E19038C8F8DD2B7172F2C8A1CB5303F685641A9B674E0AA30E876BB456600FCC9F07010340BE3344EFB0460F85D372601007A0DF3A249AE87604A293D902FF2A4F9DCC9C8DEBA6D3BCD32AAAA6B6A2D23E68A0B172C451F6141BA7B7AAC5318668F56F6D73E6F80721B1F3CA461A67A586F55EDED2038E3380348635AC7842A9778EF2833DC038E65AC5A754DCD62A58A1F9E6FD76FDCE060AF9F62E21317BB0B573CF5F68FFC9F23BFD0F4339A03C0853100D6E7FEFDFB025E008059788E75EE0700F6F1F13123E8B0EE2731CAA6180064230C10ED624A6265CCF89E2E955A3205B31E11C53E55E89BA9B9B9AD3DA048712D813E00E6B42F40E9535EDF5364784F2F9571882BC66DCA32DF2745FE5F9AA6D9E43DAC410ED01D96D98C110070BD6030FCCE4C5FC9D71F39F8A20F370DB45DC77F8B822E409F7444849DF6BEFEBA44EB6601E00FD572737385CAD18ABF29090495EBD6B26F5D4DC5EC02B6BCB489A3DE28FAA6BC92397B96F6ECDA29598A0A607FACB672E5CAE0DCCDD2C0DECE664A4C8A97BE838383CC1403321FA4D30F98C5B25767B13139F9FC81C4144FDB108325A7A473B6104B29C989B4F14639ED1A6DA78FB377D03F7FF311B97B9AA9E0DF1F2E0A02750074F2DF95BA2B9C649770D261F4CBBC8030A172BE5934CF0081D6C63E1991238224E4C266A914948054EAD2A54BA83485ED835412B1049E87B46CC3860D545A5A2ABF610C1607EF40BDC1A63BBABA8646610014802E5DBB1E74019DDC1FB50904B0081C8D69ECC2B67BF76E897190ED846B00DDFEFDFB453117D89D6CDFBE9DAE5DBB469B366D12CAC758F859C8655AE3E0F91F3E74988E1D7B8F4E9F3E4D55BC4EBF7FFF7D99D79FFFF2573AF6DEAF65BEC73FF81B9595557C6FC60906A97047BC2670CB88FE5D733E8A9B9DA60856B63726967CCE7966320681BA91D7F2DF54064030407318831FBE0913DAAC942F051B2DD037921707E916808254CAAAD88105C43E0294680612D50F68C4C20F0D0D49308371F0F3C1544D07402E5B4E21B3C099F3651C10AEE7E8D74325CC009A9E06E22F02498CB76A292929A6B2E319B887B5400683CC08568C8C060129AC4FC9A599B916BE51555D43C78F7F40439C97D7DF6DA00FFFFE0F796E5B7B1715179FA18A8A4AAAAFBF27D906D6C2C72E0CF7A399D5A4AA38ED9535B1D961B5D31412CBB13E8CB5835A57124DDB23A8538BA2B4EBDF50D4E880C107843200AF753AFFD5B0E62A485F08009CBE1454BE6DFE65111191B2D0508E12DC2ADF566565B34552851C339A8302500D540CD0DCDA267E7B92FD586DFD5D8A65B0A8681672A1B60D99219BD9B3038B1C6D990558A5882AD20EB801CDD4680B0AD6D3EE5DBBA8AAAA4AEA15070EECA7FEBE3EBAFFE0916CAEA567A43390A6188C5BE9D5575FA51B1C543E7CDC4CBF7CF717C2689F7CF625FDEAE8BBC2349F7D7E9201551B12BB18E397B8543F2539E728D23E40732FFE81FCDD1C335567E92E2094019C4E6706AF91669C63880BD0951D6D640005B648CE512128AC1ABF5B2D141408F02CB598B078E4EF7003B030502CA8162D212121C4D2A2A22225E7C5BB972726B10F4CA0AEDE3E5912F87F00EEC08103964A04E3E09D5672A99234CACAA84780EDC04E60022557C0584C525CBED7D6D6C16B7593FA07FAA9A5B555CEF1DC81814106C143A9A2F6B0ECD32C0FEEF5F4F4B28B6DA79B7C0E8B1FE47E4D4DF7D96D603DFAA4DC1D5C5B04E1FCF2F1B149CE92BA28966CE4F523B063B7E065839DB1190820940118FC6E6D81E08E85B9BB51F9B014F588085E609467418BF0DDB03AB386E760AC559FF6F67629B0A08FEA87DC3F987A3103C0C24187681E8EBA535396537413330B833126C62576E0E2BF19E99B648250142CD42CB8527B0D130BD23A631BE63C5AED0140468CD1AB66819883CF313F54E962C28CF7C4255255CD1D3954FBECF3AF82E7FF39732E34A5BC399F767E72E254F0FCABAF4B0CAC3FCF586E4FBCBCDF37EBA7A19149BA44A974693C109364FD2B39240330BA0EAC0FC6A92CC02C0690C92BE54BA0A5A3282E214922D9519E78CDBD863071CAFCD9C0E8B8E1C58BA3195C0D311D9A66623A4A87D80A9C7AD4DDD1DD4D1D25DDC19A000EF1E92FA4B1D54CC89EC5959B372DFD7FD700FBC7478F96EEB344431FBB23BC7B9B650BF5FFC89B41E33EAFC57EAA9F5CEEB8E0F9C29D40E854B94E01009F604F33092E4059AE9105A00C50C9606F37ADCECAA2290E82045D6172CD906BFFBC408BFB28D4F943B681FD86EF102448E11FDA3B3BC89D174BF11CE0AD5A914AF59C0DACCE4CA7A8C828AA6F6CA2FEEE2E618600E2FD4F577578CA52805A44B46E06E4B23041AE777294F2F3D748B008DA57BB9A7021C63D8E3E8E09E04E314F181FEEA34AA75C1518109B5BAA8287714EBD260237897B4A99B846814731D40C03C466772CAA03045CBAA6CAEF1E3E4F8234C7F8D8A15C80028072071AFF855FC376F00A0E4A6A6A6AA8B0B05084326B981868D66CD305EF40C4AE5C0026831A35C6E1B9F0D3F0B5F85B5A562E63B0159CC97EB98153448FDB23F5EF40BCE1A5F4B4346A6868A0CCCC4CCBDC5A05885631008244F4815C7077781E7EC318C887D230AECDEA0036BB4DE6037930FF9D3B77CA3C917AA21E80CD2A3C1BD7482F116B6037B3BEBE9E7671E00890DCBE7D5BDC0F7621A10304930872B16187741763B1738B523AE2148CC5AE2A4080386366DA2F73581803281780C631D7CF19087F0200A68C31007C9E9101500940C5090C01D46211714040B3B66EDD3A29299BF581F2B110B02204440014F2EEA3478F4AB50A8B8DDF010065718F5B5AD92A2624656A696B2797333A9817E33D90090B70C1A21CBC77EF5EB11028C74CF96FBCF1C6A2ED608C834C502416DC6A3B5845E85BB76E9531089C917ABEF9E69B125FA03E82F9E2D99823EA160002AE51AAC55E3DAEA1E0DADA5AB17AD42F2013F626A074EC79C0603016358523478E48208D9A452C07D51A458ABE16328002017EC77AF1F564703BD8CC05E0989B9BE5C02B92464646A41F10AEE82AAC8F62B680A5586DBB9A058FB03A8051157A54D08A2A60417E1E9D65CBCBCFCDA6384F2CC7053DC1ED604C08168AA8DDAA3E016520587C9AED601805A81C722986D196F88A08FDD43858AF62125C2363C135948B6BCC15EBAA3675F4A29CDCC318E3B330468D457FFC0EA0E11D0183B105D3EC857B01C620507705923378150340F9C853A15C6326303B3B17B47A5090A244B303F48F495AF5013854D089FE78177E431510478FBE59A4E985A87B1C107EF975318D4F4CD2D59BB7A8A4A2323011FE0FCC04D7A100A476FC161EB0602C9CD97D1CC6AD6AF5A127E44286827453C965A57FACD1175F7C21160D36846CF84006CF83C5C2CA4F9D3A256B0A36A8ACACA4B2B232A990E2431954106FDDBA25A931E4FDF4D34F852DD117A9329E8D8667A1348F0F6B904E833584F60500B3C17A08D619C0077BCC1B9614BD64377052014059AD0A181400FCD35E29043DE245C08BD46EA15945CD68C1567500A0176082CFC3C44179C696C6BE5D6D07E76465D2CB454554525E416BD7E44A4C70A6B45C56BC95736D3494A021AF591C0079AD8A40AA0F64471106BE173E1A8054748AB5B1DA0EC66E298088AF8F14B8F12C50BCBA866211AF2870A1E4ACBE5750AE4AF50500DE7EFBEDE035E4C13E83EABF71E346798EFA060231913DCA19520C83CC304818B65B2FA0E93A18C56ADC0A9CCFD920B87A907205F8D0D1C939F864B4938A366E927B25E7CE9B07D47C72FBCE9D25E9FEF2D5AB61D34363ABA8BC4083438394E18913F0210618663774A3BA46BEBCC124131293283323532659CEAC60D59E8C8C52D3FD07967D6E55552F29FBB7D7AE4BB0156E3BD8668BA03BF58DF4AC1A94EB71DA65C3C9E18890CFCB944B806B5686C92CE563F0550000D7F968E000651DE805340F8A86A5072A7E3E4A60D478DCEE6732A194556906058E904BFF1A699665C4794E5EFE33912B69C5CA90D8055FF320307539D3E8B968312E0601BBEAB10000E0BA9061805561E41C80B632006E687A4050C893F81DD38D064AE6146C1953F24150F4DAB56B256AFFA959B7E7F17F0CC1975257996901000EE0EBD8B0FB54359495FF4736FAB2FF02016DF271B63E300E0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (105,1,'Rackmountable_3U_server_2D_(64)',0x89504E470D0A1A0A0000000D49484452000000400000000D080600000019AF686C0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000005E14944415448C7DD57EB6E1B45183D7BB3E3C4CEDDCEC5491C071AA55442912A5AA5EA1314FA0408F11AF0048887E02580FE8350FA07012DADDA5012C581D23A899D38BEDF2FBB7C67ECD9AC442504FC414CB559CFECDCCEF9CE77666A00F84C9E1DC330AC546AFDCABB77DF736DDBC17FA544226368D45BE7DD5EB7F76FE7EA76BBC637BB5FC54F8E8F9F45A3D1662C167B6848FBD9FCFC7CDCB66DE4F3796CBF7303F1996958A605CBB6FCC1A661C0F53CBF6EC0506FD77521E4213C1646381C46367F869D9B37502A57D1EDF590F9E53962B1281CE7AF49EDF7FBB02C0BB63C13D128B2B91C526BEB289C57709ACFC1F3DC7F0CDEB66C346A353CDF7B84A5A5254C4F4FC334CD5736B15CBF7E1D878787088542AA73F1E202EBEBEB28168BFE049B9B9BC864320A30CBD4D414262626D444EC272462666606AF727921C48427FF640199AB80E4F2124E4F4FFDB9161717D1E974502A95549DA06FDDBA85A3A323F484B4542AA508CB172EFC31D31294791947B215FDF2D2BF6DCBC44A7259D55F658FF941FDE6D7B7B63665AD2EEEEFEEA2521EE291E8E3EAD5ABC4EC90808E2791E5C28CA0259B2E9CE5B1B5B5A53AEA32180C3037378756AB355484F48B44220A3CC1E4245A1C6F0A782ED8EBF51509B57A1D35619EAC730E96B1B131455650155C9F0AE05EA84412AB508ECAFCCC24D616E323F58DFE1A43224C21301A76547B323177D9473E5A70E198123051E1CB51F0741005438704ECCAF341369B55002D91CAC27212BF8F98D493956BF53FC9EA7C14419D128C9827A9F3F2F818AD765B4561752D85BA90D690BA5F02CAF2E70AB695CBC85231E6650AE6F225F5FC9D42328D0089DE0838D5B8BDBD8D6AB5FA94047C2D4CBC2F1D9F4A0A6C9B22A7881D5279DB0E6C9AE430926224AACE746154197D46966A88C7E3F8EEC747B8B29146FEFC0C34D35AE10C8BD25EAF5F12C8F4E13C4135ADADAD7143FEDC4C931F1E3FBE5C7F2A82DBB777707E5E40A3D114856EE28B2FEF89F2F2AF056F9836B636DFC4870FEFE193BB1F21278A745F64F467FE78439ECFED9124C4E38C452E4CB32B968A4824E20A942E939393AADE6834FC4D8F8F8F2B39B12D9D4E2B508649B314A63D43190FE5BC924CAAF1BAD03B985E24D4CFF19197300DFCB9249D7C13937421A1A15058FA0C94EC57C5206FDEDC41B55655A46CA4D771FFDB07A854AA92520349311BDFAFAEC2ED3DC0442D84F6C844056BCCE0B147C3D50B0878458021C018511D695D1841820EB673B304C1F6FDFD7DCCCECE8E72CCC3C01D80FBA7044910C9D31E40D5D007749DA5D96CFA86C8B9A8B8A0EB5F144BD83FC80CC1F57B68CBA99897138729CB3DF43A3D1C874E649EB6026F4AFA9CE48BE24B53302B35849A61B52F45A66D2F70CFEA3715A98E3131301260C9EFC9995995DF5EE0D87B5DDE9E05DA386141C6B882FAE434A73CA0D96A23B1B42CF9DF41B3DD856F28AFF193F2FE01020E87B210DE1F5C12D06A36B0B7F74C19270DF3A270AEDEB56A4588EC2B2272F913457874624C2973D06B63BFEFC0E93A30C5983D77E093CC7E12800809B8C3469F00F9D8ACD7B0BAB2E2478525914828A675DEB22F8FABB2181695C0BC968B059EECFD8C447C1E858B229C9083DF0EAA985E1E7AC5D0898672673DE801947DA15050A4333DB8DE4F4F9F057C230657805239B426A61FF7C7BA5614DFBCCFE8BBC9D0081D353F4F257D8F2146B6C94974873AE8B0F3C2C28202C5DCEACA44649AB2D50F0710A4AE73129532329669A1EF10ECC734F2D4E5C944B95256FD098A9BE6C3BE94B8AE73F3F48851542E8FDFA0834B3AF09B313AE3099260F5F14D32B90EDF9A1C7A0DDFDACBDC910274AA0AC6361550D68B3357790FB09C104A958A02A9D3A02FF2E6373F9252B272DC69E73ECC1C292072658523E3D8774C36C6B682A40A41EBF3B7278A21C1CDC029F3EB8B17EA6244F20EE452C64D139C2ED5EAD047EA8DB6DA537FD0F18FB96E8FBFA54FAD29C45B720BADC93C8EF84645021A1253AF4AFF819F5F541BF725E36B6CB97BEDDAB54F45C6DD747AE3EDE564D28B4D4E7AFFC7FF0B640E0FC79F3C7E34250ACB6E6C6CB872427DFC074BDF049A3BA6FE770000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (106,1,'Rackmountable_3U_server_2D_(96)',0x89504E470D0A1A0A0000000D4948445200000060000000140806000000722B38EF0000000473424954080808087C086488000000097048597300000A6200000A620151756B480000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000B874944415458C3ED59596C94D715662780596C30C61B36061BB3789F7D5F3C8B67C6C68C773336366631061BB3DA8077309B6BB0C9F290B45486B411286955A4F25A21A552D53E943CA42FAD5AF5A595DA8854695A454DC9E9F98E9961E667680B813C547DF8F4DFB9FF72EE3DDF3DDF39F7CE9C3973E6B430EE87919E9EFE379D4E47C3232334323AFA3F87515C47461EF5F79FFEFC9B845EAFFF323B7BC3C3B973E77E909090F0417272F2FB4949492EF6F99C5F30281AF3E7CF279DC5467A86D668FAAFA1311A9F86213E6C1E2F7976EC8CC05B1D94ABD6647EC63BA658186711772CA659E8A2806F9407AA68477D039DEAEB278BC3FF8DA1A0584BEC78F1EDC2850B29252585B66CD9423939391F82803FE246414101959595C9438B172FA622959A545A2D1D3C78906A6A6AA8ADADEDB9D1D2D242BB76ED926B6B6B2B757676D2E0E0200D0D0D919A1DD2D4D64E139393146C6CA6ABD7A6C817AC25B5464B070E1CA0A6A6A617B2093B61ECDEBD9B7A7A7A687878985AF8B7CD531143405199819DA379A5B0387C94B5212FB2B84B4B4BA9B8B898B66EDD4A797979BF05017F003B98744949893CB46CD9322A2C2DA38DB9B9E27C3811B2A40426190A85E2DE8393BD5E2F1D3D7A944CBC024F9E3C495D5D5DE2249600898E8A9D3574E0F061AAE0D5DF7DECB844415A5A1A555757CB73F1BE8B71624CCA7ED8C077713D73E68CF41D3972843A3A3A6411B5B5B73F454099CE4CAEEA06817B67E32C828DE4093691B70668A68A5A6017F9EB43D4DAD943ED5DBDD4D4D14581FA160A34B45065432B553602BBA9AA6937F50D8F53FFE8381D3F3BCA2AE2143B19EB732204A8D56ADAB76F1F6DDBB68D366FDEFC3B10F0FB8C8C0C0A0683A452A9E4A1952B570A015BB76D17276235363636CA33D1D8B3678F3858D90F9C3A754ADE3D71E244C439009C82AB8EA5A6A639445726AF52556D3D5D9C98900848E7B1B85C2E19647D7D3DD5D5D5C500241E66D294FDC0C0C040C41608C0157D1803C66A757B6308F006AAE9E4D0393A050C9F67E7CDA27F645C707AF482E0CCD8451ABD7C95BE73EB3D9AF9FE1DB90E9CBF4C83E3C0151ABA004CD0F0C5099A79EF0EFDE0EE3D7AEBC60C5505EBC54E7A667684008C0B8A806B7E7EFEAF41C06F323333A9AAAA4A58C143AB57AFA62226A088C3851305D5D6D6D2CE9D3BC531D140DFB163C79EEA070E1D3A24C4011E8F4708C4CA8653E11883C54A9575F5347CEE3C05D8F1172E5FA1404D1D65F058601F1150595929EF46A3B9B959BEADEC0730161001F2FC7EBF442E7EC3F9E8B3BA3D3104F82BABA97F60884E0B869F6070641643A37486719631303C4697262669FCD2048F75820646C60483A3E768280A63E317E95B53D7795EE354C9390D7652D3B36222A0A1A141160AE7815F81809F73E5F3E58E1D3B2441200123491495A92471E919CE7297C0EE740A1CE5E58272B79BBC3E3FB75D02A7EB092AB8DFE3ADA07297FB09D849809FC9D69BADE467C79F387D46A4E8C88993224520DDC8D1E1ADF03191EE88ED303C1C553E7FE0A97EC01FA8149BCA7ED8B6391C64F5C44680C1ECE271BC3AE0FBB0B32E353342C09A356B64517204FC333B3BFB6310B09409F80B5633B73F4702E6DF545CA626A3D54E1E76C40BC1F7042049093D4700341F3900D5CFA1DEA34C4490B44CB88B9D08B8A351F1EFE1F90F309A2DE4F00562085069CD54AA327C6DA8342632DB7D1C75D5D46CB2D06EAEC48A43DDA4AED9237652D6A54708E0FCFA05229313F1278B162DDA0E025E4B4D4DFD9465E611B77F84049C959545255C054186201D66B3997C3EDF533213080484CD781284F7003C83E882F42037A0128A48106BFF24573F01BE4282AAEB1B29376FB3BC8777904394C03D2C16657F053B19B20529C5042141904E8CAFAFAF4F2A2265122E2E29A3A9E9EB34C1F9A7BBBB87666EDEA4504B2BBDF9E65B74E1C24552A9B502B540C7155A7C6C2F2C2193D52BC9FEFDFC14BA9FBB8A5EBBFD31A55EBA2D769253D22204B0D37FC685CB578585859FC0F742C0DAB56B41C057DCFE0912F0C68D1BA954A31139B05AADA2C5D052E5A4E1505437F11C059D86B3E104683F1267741236F21E0312748D1DB0A3AE81AE4E4D53EDAE10A571F48134542FF1741E5510AA2F653F0840E5152F092337A00A524A5051898A376763BCE91CA5B63D1D34C905410397C4E7CF8FD3D98141D21BAD64B1394967B090D9EAE028B2B13C5AC98A3EBD3982C26255848073255B69AA388F32C6666873CFB8D85993BC2E42002BCC879C8441C09F230470D2FB142B94DBFF4002E4F248F6002A9E043F28138443E04825506363452AFB91F4A20940BBBBBB5B56221C63B6D9457AF6741E14290AB10370451504D2C3F6407E34B0CA41AEB21FC04A8F2600D50F9E05F9F89EB20A2A55E9E8F6ED3B74EBDD77696878941E7CF411F5F41EA3BB77EFD28D1BDF8DE9BB77EF1EBDFDCEB7699C23E3970F1ED0BEFD07C960B20B8A4A3442C0FEFDFBE98D603ECDD46EA2B41F6653DE44A1D859BD262542C0F2E5CBFF8E39C410909898F810A1BD60C10249C0D82468747AD2B16EF23D9914261196956880005426CA7E381C2B0F5102594004A17E07212851CD763BF938F94E4D4F53B08937625353B231CBCACEA6A54B974AE582724DF95D4CF2F8F1E371C782EF223AC236610B6D8C2F5E1554505446CDA15681DDE9A1FD9D5D1C9976DEB4B57324EC8AEA73506B5B07D5739FCBEBA703DCA73358A9A44C27000192D42D6E0ABA9D54E776903A64275D4DB9F427AE4E16E763BF85248CB96DDFBEFD4F110258761E422B972C59220918AB5EFBF8B840CF49057AFDD2619D8D003F979EB8A212C215A49B383A5E36F4BC88944958A3B7915A677D65C0F7616755E26A2160DEBC79C4724F7BF7EE45C91F21C0C361F11912D78A152B240163BB8C01E35CA59257928993B0C1608840FFBCD01B582BF1AE514A453F6BBC466F14E78FB0DE22179CBF78499CA366E94099697738A5740CC31E85E87E9B7D16568EA8787071A90C7BB06FF7FA6277C25CE9215210E1884E48AD93CB6CB47175F3BB685B2C16C94B681B79078F0201B20B5F20C2207F2854701FB9C866B3495BAD9E8D8C15AB92840028CCBA75EB241A0B0A0A1EB2DC9783809B0879843BF41F0958C309D8C4460B4B4AC9CE93807118C140A3814A0372A0EC0790902009900618C40E163A1CCE010EAECDB1EAFBCE0EF20E98F701C74FC8EFCCF5EB45AE202570821290206C6494FD70567F7FBF4CBCB7B7571C8384DDCEC9175218AF0AD21B4C224FC839B80FC786AB29547D20076DF80036D186A3F10EC68779C26F500F381DF761175520DA46560FD859BE223172100785813C8348CEB5B740C0DBA8FDF102F41F0918CC5AF883A51AAD1C4F605098B872EB0FE7A2F288772C80E40747803C3C87B083E35135E1EA64021001D3AFBFCE4E69A4ABD7AE515DA845AA204C1EA4C54BB4706ABC7B7056BCA3081CFE6121B4E328425105198D66991716C6860D1B22B92C272747C60B67C21F78062463178BB6960B149082364E35512C40D7796325676300DA3A9D41EC2424AC0897A08453072C4E8C93BFFD0E08B80E66601021C8C941420EE1ADE3DD6AC6E3AAE47993301C859587500521F83E1C8767E198724E88D07CEC05A2AFE919992281700A26F2ACEFC61B0B220063C7154EC222C0CAC6843BD8BEB20A3221BF8944EAC5999B366D1222314E48312A43AC74AC5A2C50D858CF118AB96051A25809130287A28D3E94E1681B9860D859BA6CB91000A571B05FA10688A4FCFCFC3740C0391C3FA08483711C95E2216779B9244A1082DF301AAF0C850461A07074343071D4FCF10EEA40A69DBF8FC337543FE1E36854419BF3F329373757C2F445AA2010A4EC0791784F5905151615F3CA76BD3214B384CF1290200420C742E6A00258283CCFCB20A009E5116A668415FE13809ECAD98EBF92F4565B7C58C2B046A07B06629E31CFC26877C6FC211306487FD69F385F076A4EC2CA3F648C160FC3FDEA60F53CAE82D6080109090954CE0B0F0440553821B78180058C6966E75E6A6AEA8F3934FE8AE47A98374DFFFF4BF2E58095E20BD6FE472C6B9F252525DDCFCBCBFB29FFFE1ECEE1FE0557D41B7370B24B660000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (107,1,'Rackmountable_3U_server_3D_(128)',0x89504E470D0A1A0A0000000D49484452000000800000002308060000005CB6028B0000000473424954080808087C086488000000097048597300000DD800000DD80134E635620000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000011734944415478DAED5BEB4F5557165FE75EDE70415E0222E005441150AB83566BA7BE5AADDAFAEA64267EEB34E95F30C9A41F26F365924926CDA49DE9A49999F443D336D1D1F888622D3ED00A6A15F0898AA82008C8FB0D97C7E5CEFAAD7BF7E1DCCB3D176DB4A2ED263BE79C7BF6D967EFB57FEBB71EFBA0B95C2E7ADE45D3B4583E6CE4BAD9738CA797AF0C722DE17A8CEBB72CF77BD36150DAF30240707070BE67C1515772B54E0781FC84F2A801103CF5F4D8D898E3A506404C4C4C381FD618163DE3055CB46735B6218040B1435F5F5FCD4B0180949494743E6CE2BA85EB5AAEE12FC9823DEB72CFC00E252D2D2D432F040032333341E32B0C5A5EF03359B06739369886338A1DEAEAEAAAA71500F2F2F2E27C1CB8B817D54B7B41C0546B64875BB76E0DFCE400282C2C2C3068F98AA7E1C04D67E14FE3F90C73FD5EB1434545C5AD67028037DE7823DC63C3B7786C7AFA2F767C5ACEE781811D4E959696F6FF68006CDCB831C3A0E56B9403F7735BB417184C235CCF2A76282E2EAEF20B004FD2E56FC605B6D96C4976BB7D6DEE8205B480EB2F650A2D02170F0F13C7F2D36E6C0F1F3EA4AAAA9BD4D6D65ADEDCDC5C1E1C1C4C56AB15C9B7EE8181813F61ECBBB9FED6DFC3616161B4E6AD8D648B8EFE659503941CFB1C7AD8D8421D9DDDD36A5C03FD7D74AEB4841C0E7714191A1A0AE5A6685ECFF0F070D7A3478FBE09E2DFB3D50341414140068D8E8EEAF4D750FF80A2F801E7B0433A783CDE9CEAF6E3D12ADE3FE21CA7F89949648B8AA47006646B7B07A5CD4AA121C730B5777652535D2D4FC8F604DAAAFDE8714136AA7477F750AA3D53CEC79C633434E4A09EDEFE69058007B535FAE2ABF1ABCA4CA0454444CC03009255830D1B3690C562A1C3870FCB35A802D41631CE82191FA77C36071C7620C1F3745C580F6D0258E3DC3FDE0710A6A5A501A1D2E6E0912239E6CF9F47713366D0D19325342F3B9B864746E8EC851F688CC19A979B4BB76FDFA659B3663D35BB0F25802C5070C46F494949141B1B2BE32C3E71C2EFB31D1D2DE47C8EA600208E8E8E65F945D2D0E080AF5F47FDFDFD54575727206059270200631EBB4F8B162D22F61CF507305174690DB2D2958A1BB474E9528A8B8BA38686066A6969314B06D1CA952BE9EBAFBF361DE48A152B282B2B8B8E1C3942AB56AD1210949797D3B265CB18B10E59CC828202A054D7D78B97AFF278DC0B71EED225010C4A4F4F37DDBF7F5F7EC7E21C3F7EDCF4BDEFBEFBAE8CFDF2E5CB7EEF03743B77EE94311C3D7A94B66EDD4A070E1CA0F5EBD7535F5F1FBFAB87D86E52464686C7F2FB63181725DBB326EE6A9ADF739D4D34032BF1216E462C3999514242424441FA0706C9DD54535D789D67D9ED3CF77161C7DEBE7EBA7BB786BA5B5BE5BE92D1046B758B8CE11778DEEF0AF2788BF4EAABAF527575B5BC580D5000E07203018B31C25A879ACB1A07619BF90D28000B84E5AF40CBFD15800B4569995150858B17D1CC84782A3A718A5E2B2C94C99D2C2D93FB5818F499989848F3E7CF37050080367BF66CA66BF3CCAA327FD07A3506CC6906B30FDEA9EE6B26962422328272B232BD174BD397CCEB7CA20F3704A2D8CCA52427099843824344D6F71F3C9868A1D1A4F379AC48A161A1D2B68BCD9263B09F7AD94C0A005CDE0000D376747488F2B1FD87EC46B112A38A0180722570085409004708A1936D2E04A016D96FDED2E1D085660600D5C6B7A07FDCC3E0C00058048BC53D9E0B159514C4E3703A9D74FCFBB3FA38356ED3D5D5258E0DDA03C01086D97BE3E303EF34A30DC0EE154F717FBDBDBDA29100819B01FC97C8080F00FC2C96D7B9A643424753288F7DE6CC44D820B2F25C4679AE605FCD8C49F818CF4A133B2386C7E5A4888870EAEDEEA42A8F2BE31AF7F669209FB6B6360133189CE732AA3300268641296AC7A22B0058AC4122D883070FD2EAD5ABA55DA09047518F591B0812253D3D9D6EDEBC29028E8C8C14EA5771F7BD7BF7BCB47971DE02CA484FA3A2E213F4FA8AE52C202B9DF000E1EEDDBB727CE79D7704B866000078CCD8C7D80682021B9595950960302E3527DC03D3983993FDBD3D74E97C294D30B5362964F43AD32687948695F61B72FA9ED8A2A20400838343A2E10A5C2E1F068082633E90B1C7191C45CB0A44322CBC2808EED4A953A2E55810685534DBA4B4AC6CAAADBE4509FCB0D5C30C9A2F07BA9E202CD0B4C7F6D4BBD8C6A7A4CFA1689E640A3B61D50C8CF8D819B2902D6DED545F7387A26D51C204CA71FC294A636313D9E7E7CAF92B79B9545BDB48CD2DEDD32A0AB85A799E7A981114E3CC9C3953FC33980238F3EC1354421D7672FD8411BED56303C745E90D0C806364948D46C69C509129D6569B744325D37C41330943AEC9FD844544CAB197BD57540105DB3AD53492413A2C76D9498E91D1C9C07C82502F5088E85B6C4CA3D321431968BEC62C26DAC1BCA9F68D8D8D679989BF08E24675FCA34B99002E554C73052A245325846DD186B7DEA22B57AE88BFF02C0B2209E58C1E39FAAD1C172EC8A56CFB1C3ACA4EE0F225AFB0D71B4AC74ACEB0BD71D286F5EB241250807D56056166B42729567CE2A4DF36ADCD751413132DDA865C011C5498AE91D131AAAFAFE71077B6D8FAFAFA06DDA134E26E62D1FC2F2CC2DE84A434B6FB364A8C8FA62557CA68756F237D91F91AFDE7C34F29B2B59EF20E7CE6F101C6BD00C0CE6F33AF6D0ADEC16BDBCBFEC0974146DBC7CE0F8CF6491664816200E5843DE0D8B1A9A9499C21381157AF5EF53B403850089FCE9D3B27EDFD95E4E46409FF9A9B9B252459B87021959494C86F78068B89480071B78AC5AB6E575363F32372B0FF5076A99C823DE06C6A6CA4EBD7AF8B7D5BBC78319D3F7FDE7401E1BFC0C1844DF757408D6FBEF9A6F810088711195DBC7851C263D8568C171104C66566F32CEC9BECD8B19D7EFFFEFB1CE6165165E565FAE8A33F42E3E8E38FFF4E1F7CF0BEF4F7C9A7FFA093274B7416F4BBF006E751DD1F1A1AF4C83948C068738E50C2D81085BA9801A3E32978A067C217F3610056F26BDC4F12578B1E91191D376E04155AAA2200A3AD0F09091534032848049979F2680F01428BCD984269379C41F407C1B7B7B773181445393939A2198383835E4280F6E7330B1C3D7E92962CCC67BB6FA3EF4E9D96F721BEC531262646429C40050E9CAE797EC68EF14016007A047BF418177C8BECEC6C796E22B231C90330602F5FB946FFFCEC5F1C9D74D38DAA5BF4F9E7FF963E9B9A5BE8D877C5545A768E41788717318435D11DD938F97E4848309FBB44CB71EE96E5A840CDE83C6A167DFDE846783C8DF3B2356961945A7182C27ADA4D4D005FCF6285F2DA00F40500DEF3AB09ED9F7851302F1A04AD32778142414C0842336BA3326B819E07C0B0A016CD3D86070F1BC524210378E3563545B1933A2EDEAC458009A7156306B87C1320C63C00C61E281270FAFA383ED18D8A60CC4C2FB41599C9D75F5F45D7AE5D63D08CD19A35AB9941DAE9268FFB1566A9D4D9A9CC58FDB47C5921B3CC72494CDDAFADA31DDBB73243B5D0EEFFEDA35DBFFB0D253058F7EF3F44950C2833C7292C999DDF300B055B3BC892F567D25AD911AEC89814056069793D3258469A8A74BC0060F8315C01C09B0142E8D2A54B1246A81471A0142FFA0AD406EF83C6639141FB73E7CE158A85C619934213A625480065E1F1C4711410CB66A809212B0F0F26030BBB69D326AF64CDA4FD514FB869765F258230573018006FB7DB850D903E0568312E5116130670B24FD2C4F3B871E3062F7A2735B089BBC6260AE0EBEAEE12DB0FC0B6B577880CD0AE9DCD0BA28AEB37AA04F8F01D0088368E723A3A3B69C42047F403A5E81F70C80654EE63388A060044635D8CE179906FEC6E5C7C688AB223C1A121F8FC4B68B1B5B53560360DF612CF066A035B2CA94EF6EC513130F803AA001418C3E8A83BA68FB145536A4A3255DFBD278B1DC3F60F938A888CA2B4D454690B3F007D9A9927BC0720D2CD8B9F823E54D613F90514386FFA0E1B9B00CC0D1B40FE4A942D962E965F95AACA57DFECD5CFF71F3AEAD5BEEC7CB97EFEE5577BF4F37DFB8F18B4DE6AC834C68809181D1BA78EEE012AA5642A1D706FE7D8FF9BE8B5F8BE00500A6D6A02B00846FB8FEA72BA81111D174FA32CDCDEA1612ABF7ADD9F01D54F5BBA7A0286FCF8A98D516EC6A34ABBDA7B6E525894DB8F780887912BCAED9ABB52C5A627B33F824D8FF1313A5D5A16D0FE37B34651F59DA9DB4C51D0C66A62465CCC00A8CF749BB7AF2BA0D6032410A12F00547A5B258204007C32978F09CA042800E8A9602086C1D1D5DA42994C870ED66AA377A9BFC4E573AD4DA621753EF18CCB6F8C0E0A567E425353334545C7502C8756B3390CABE205B4735815C62C80F3CED64794C421972FE2CDF2535E71B34FFBA972086A2B55188AC1189B9038D9FC39FA68FEBC1C613F50AD728491E686D7AEFC0FA464614E314F281FEE272424E8A60A4CA3F65BC04A784E25BA6026D57E09E68C6B38B76EE66C667618E17B41937C0065F7F10CAFB78D7F4BC0683EE4BACA9701145A4037F050077940291CBE210F80B00D83322B981868D6CC04E01D082541D7B087980CCC069E43BF101AEEE378FCE429790659487B463ADD665A4656D0668BD285959E9626A1DD9C39734CD3C00A589867A034364C04DA605C3077E80FBFE1198C0FF13DAECDB683619F311F8C07F35FB3668DCC13296FF839486FA36F5C2F59B244D2E1F02FAAAAAA68EDDAB50212388F30870849B106959595E2BB202C8519C3B3F9F9F912F120758F6711420304F0199C0E178DB342FB6300C81EBF7354F36B3EFE15007018F702D42743BA1F80F811610A57A0164284006A6ACCFF79059F91DDB97347ECBCBF02C70F82C07DF81300D499336768D7AE5D62BFF12E0002005079885A769E706F6CCC49F51C538787B9B5616870488485714100E8C7ACE07B07F816667900CC6BCB962DF29E63C78ED1B66DDB68DFBE7DF21C0080DF21F040DBC1EA676C79E319E4119037C03E059CCAB367CFCA7CD137E68E7C0380806BC81472C3351618B91668FDBA75EBE4DDD89BC0A223CF02F9E059E43EB66FDF2EDBDC172E5C6000C500EAB23760DC0C327E0CA29481CF87F4CD2008DD48FD13A1A0553A4318086F18EDB0803302A442415FD096FEFE27FB42060885D619C3388B67C073ED73286FFE3CEA6446C86121C0096CC296A6C5BD1D8C09E19D6081401E3E925081D8CB5F8400A5001831F7A9B6839580B160E2ACB2AC10EDE01A00C3358EF2A10DCF1572549EB932172A12516DD50E25AEF10CAE010C5CABCD2FB577037968E392F4F16B029419F08C73D862DC0DC4821716168A2D520040F8E5644710FBD3401984172807A026FF386DD4A0002C1C4199F0BCA109601BA34ADD62A76FDFE1221A608DC7D670F1E933EE3C00FF4193541F183384E9AFC22C293A37AB46B3E5661CF76F08353136B30F617CA38DBD7BF78A362BCADFB3678F2C14B41F0CB47FFF7E593C4456A74F9F964D388013EC72E8D021AAA8A8D053E2BB77EF961019AC808C225809055BE6F890A6A8A848C000E615AD97AC9F535724C8192C846496F2AD3C492FD90E1E5200C000306934526183382D23A3CC00C1D4F8B041D77CAB676FDE2C6132555E1E6DA021402D04850C206C99B1E0D330650290095CB2B0808A4BCE506E4E3625C6BB3F0EC1381B3C61DA7BEFBD277D9A8DCB93030F9808C2B85091ED0405230FA0B69B954326DBC12614A07C29D034DE03D0A12FD0B4BA862F807ED116E082FD467F2A3C7DFBEDB7457EB886C6EFD8B1437F160049E5B01705D7301798AFCAB98C70D81C141A2E00306A3FE4028604CB28D3CCEF1FC42CF0AFD9DF337AAC9B376F167402E51800166778983BE450AC93A380E020ABE9EEDFA45D3697B967ADDAEAF74CDBBAC46EA667E7C8BD0476AEDABBBAC42C8485850A1BB4302823990EA7F2E09F76E9E271CDCECC9AB41DDCDB8D3072FC396E131245C570C8CE6C5379A954F228584B800E7581E7BB4E5EE3117636D741157EE07A93055D007A41D203C804A54822C6394671F894F819EF009A15F9FF624F1964768A30ECF9E3EB9BCC9C79CF655C3367A7E9E7F83825343484ED7038D7B469F33D406868980000CA013309ED077B802DF8BA9ED9E7A2E6B107B94C5B7F60FBA8C1463255C4B2B7B90D00808DB23DA7C57F910A0BD5E5092FB5E93226F86CD89585496205AF61E7B216CE2457173BEA7F61BFA9F4FF9BDB7102A15D6E600000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (108,1,'Rackmountable_3U_server_3D_(64)',0x89504E470D0A1A0A0000000D4948445200000040000000120806000000EB2FD8220000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000007134944415458C3BD574B6F1B55143E337E2576EC384F3F92268E9B280E546A692B21A41681820A02D1B267056201E207B0618BD8F03B58429108021595225E426AA29626AD481A52DB49ECD8B1E3F83DB66786EF5CCF8CDDA68BA6497BA5EBF1CCDCC739DFF9BE73EE48BAAED3D3364992A67179D7E817D1EDF47C5A16FD47F405F49FE043E1A97D380C0070581E1818784596E5CB98C74ECF3D6EDC51403D4C33F669A1FF89FF0B369B6D2197CBAD1C2B00B158CCAB69DA258CBB8CDBB7D1878FC9F067D5E20C06B3A3D168FC924C266B8706E0FCF9F31376BB9D23CC4EBF86EE7C5E0E1D333835AC771DCC5D68B55A3F2C2D2DC50F00801E468F7A3C1ED7952B57BEEAEFEF1F535575E4D81C3AE27C36B052A9106C3A3238B26C4B2A4A7D657979F98B783C9E551425C5EBDF443FC7035C2E17BDF1F63BA4B55A4FEEDA233679BC5EB23B1CD67DB1B047BAA6770DD38D5FC970507FCC72ED5FB7A78F428120EDE58B54ADD58F1C8C4AA54CBFDDB8468D864281408010F45F396B476766660814A1442241DB9B5B141E1DA6DEDE5EAA56ABD6649EB0B3B363DDBBDD6EEAEBEB23241E2CD810E379CCF5DFFFA0572F5CA07CA180E74D4A271314181DA55AAD66C5D40B90780E2220EE41511A1F1FA762B128463800602814A2BF1797C8E7F551B154A1C4668274497A62D674455D3C80D6A95EAD60CF3A45A3511A1C1CA47ABD1E63009AD3D3D3B4BABA4A4EA793249928954AD3A9532F0A46980DD21034E46EB2859D6010D811BFDF2F1C91D1913449C338BE4FA552140A06C57B8B251E8F11918A595DC47B64701188A9A929B16637E3A7A2111A9F8C1880B5E798FF91AF283A39499AAED1463CC14FA9FD5AA2D3F083D7BAFACDB7B4061FB971D0229108FBAC32000A3B552A9504008C58A5561483F899954D104136CE8C64B3D9A45144766F6F4F80024DD1C4C404E6CBC238DDD888DF319338AA26787C650675AFCFEB99C6ADADAD890875EBCB699349ABD7DAD194244B40DC3459A2F5D57FC5DEAD8662F180DFDE5EBC492A24E874D88514B931201C24ACD36000BE46FF2C93C9344746461C36A039303C4CF1CD4D036543CB1B1BD686E6D3FCFE3E495D84CB17EE1053E83F44A1D16C800D3205C7C6A924A4D419B75FAE74EE8C3F8BB76E3F44E16C2E4F2DAD034022B90D90B79E58EF0EBB0339A497FA41FB4CFF483B896AED00C0578DCF34F97CFE3A084FF7809C061A2D09067084406D2722411C31A38F0E0D892890DA221DDD81FF93D0EDC8D020F97D5E3A3116A6B3674E8BF963A07C9FDB433E3C5760801B72D15B4DABFBBD7DD4E37420D93649E3C863FD9391491AC0789FC74D63A1209D7BE90C9CB0590ECD4C8DD3471FBE4FEF5D7E932ECD5FA44F3FFE80C6C338926888B8D638D015A54AE1C0207D92BA4972EC2CE566CE8AA873EBE9E9B90F00D8E7BFC4D1152FD8EE17DA3940A65ABD4E1143F3DDBAE54467262A66072733BEB20CAC1C003A32DD99CA2EAC5740329C3E7952E8D43480D7E19CC29A371B539ED7E6523704B01F2D30AA4E2227F012AAA82A124D46A2343F3F8FFD0B424E737331BAFADDF7887016926A9186518BB113C88457C953F5E050D0DE1F760499016CA3757687F35EC10038C18EEF33BD65D932A0652435644EEB591A55013412CFEFDEBB2712A2CA09101BB12362035071178EFA7C3E920C001A88BAC811F6CEA7432A9DA60AA4C26BDD5F5F1739A265E40571BC4B6CD1B59F6FA01CD6609F46EBEB71CAEEE6208D2D9197D4964A1B0F92B493C9E1BD8E52ECA478324B057B98F4BB12B9551912D0CC3CE333E5CD1604F886B37A3B09B675DBC0829ADE31A0A628078F59994C274961C3260CE3F9A552999AA077B158A230640254A96030E7D16265E68292511184512C3F002DDBBABEADB416A5539B82895C3D74550140559C333491D49875997409D2E224EC1009DB6553A9504789967AA95CA97503208046E20DF00EAF9B65CD64403E9BA1D8EC6C57ED260A42D7CC0AF3198FE572B5BBBB6B9541A6F6ADE5BBE480BE3939DA917977333B62ADEE330592AD58A75C2E5B06CDCDCD11CEED8239CC1696D7D23F77BACAB017927208060EF87D629CCBD9BE3AECB290185712B68BCBB3B7CF2DEC1A1AF48BBD18544DEF00C08182D42E30C71BE641C464800AF4184151CF8D6E9632F39E0D31CF05BC61E7E0D13E07E82C036895B5C9F726EADCD9302422EBBE3D5E17CF795DD9909EFED037822602C0B983F7E3F9AA214B0E1E3BCFA0313BF0C52AC60EA39A717EE2039AA17D71E5F2CDF3009AC20CC831E266AD67247B7ADD5414D191C83C8DE49068D8303EDD99ED4122492583DAFBA0BB0B4671F9F340BF1C5DA6AB0779210F231800AD2B073098DD0C5B45ED2F5A6B158583CD2E600B8532EC72D14EB69D38957CE1A02495BCB86EA7214DD94E9BDB69926C0E9C22B7214906AB0D6C381C16A0C19E224BF0ADD9D9D92F71A34CCFCCBC1C0C8574AFD777986F9567DA7A7B5C90595E531E9383C01AE930F66D42622B2B7758AA1B380E37D2E9F4E7FF036C19D776E37BB5D20000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (109,1,'Rackmountable_3U_server_3D_(96)',0x89504E470D0A1A0A0000000D49484452000000600000001B0806000000837D8A3A0000000473424954080808087C086488000000097048597300000A6200000A620151756B480000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000C814944415468DEDD5A497314C9157ED58B7A516BDFD186040864D08060900CC330C660048C070E76E0D378B9F8E8BFE0A3EF0E87234C842FBE99F0D84418026200316C0224168125A411A28516B4EF524BEADDDF975DD574578B610823C064C4A34A5955992FBFF7DEF75E66A345A35159CBA6695A112E9F438E437E0271CBFBDD1E41CE42CE416E039FC89AE2B31606C8C8C8D8160A858E03FC2FF06703C4B2D686FE5FDACB7443FF94C562B9108944CE0502810BF87BE6BD340080B61715157D06450938A56A2D00791746486861BCD382B59EA341A6A7A73BDEA901CACBCB73D3D2D28EE27B52CB1148E6FBE4BD6F61CE019DA6CE85C3E1E6C1C1C1E53537407D7DFD26020EA197EF8358DF3518EF72DE8446F09B690CE872AEA3A363E08D18E0E4C993D6E1E1E1BDA416841E3D7DF3FF0118EF836EA42745559595952DA74F9F0E7F6F039C387122636565A5899E0ED08FA12BEF03F6DCB7A11B13371338E9EAC2A54B97A6920C00F912F21BFD9EDCFE496969A9FD70531393AB7C688D2B8A44A2B2BCFC7D28FBCD39C8F5EBD765626222E8F57AFF9D9E9E2E2E974B903B4E519F36C8C7892F5BAD56D9FDC9A73165C3A1972CC3A8805657577BE9F263CDE9491787C399584929AF9B9D9A946824F29A90BEFA31C7CCCACB9774B74B3656564ADBBDCEB766F4999949E9686F55EBB3DBED929B9BABC4EFF7DFB4E179195FAAABAB13543572EFDE3DB1D96CB2BCE413BBD522BB77EE94F1F171D6F6AF3D312C0C6F8B086A6925B47A41418102FBFCA5CB5252532CBB306F4BDB5DD9D7D82097AEDF904820203BEB77C8FCFC3C0CE478ED392309C6E33C59595992939323DEBE3E191C9B40AF2BFE7C6E6EE6250EF6E65A4E6EBECCCFCEC4298D385347EC2B8873090D10A5A27BF7EE95D6D656F5120D408F99999B55E03B9D4EE9EEEE4E19BCA6A6460DD6DBDB9BF2ECF0E1C36ABCDADA5A696B6B933D7BF688CFE713946BB27EFD7A1539B373F3F2A4CF2BCB2B2BD2877E8EF57C68504AD795487676F6AA736EDFBE5D262727E5F9F3E749FDD4F9D0A143028E95FDFBF74B7373B3343636CAE2E2A204834115D5E666B35B25B7BC3C1E295AEC1F758D4576E25593FCBC5C350E72A42C2C2CEAD195FC6E2D30D12C22C140486E5EBFA6FAC30946E6F7BB76ED929696168E69A10182E07CF2535C492E86CD91E650A03132081AAD665E343D6C696929657154D298908DBC479999896D262DD0D28D88D850552D23A3E3B2AEA4589E3EEB87F216352723A5A2A222251972BC9292121551E686DDB7BA525FE57DF07C462E7541B8A78C55909F27751F6DD371D4E26466E4BEC42BA3B10C8E61C3FC2144765FFFC02A4612A95E5F099A73CBF8D4943CE9EA94D9599F249E661806A45EB3B3B32165004E40E58DC4446039A6DD912677EEDC9183070F2A3AA137992B057AEAC2C2420A180491000C0D0D891B0AD19B3931C1613F010C0403E283F1E8F95124468B16F3B4FBF7EF0B9DC2F05EB301C89F507ED539B12397FEFEFE7804F17B8FC7A31BC5644C2CD21A09EAC06B92100AC9062048E1A08C8F0CBF0033E44F4E80FAE8FDDEA7CAD1E68149341CD469319A44CB3AFD70FC200D300D002AF187ADA7A7472D504580B2BA53B68042A6F5C5464CC9710E93743CEE8272A949F349EF536520C32BC7C627E20BBBDD1A4B48117CC7E8C11E5FC61081542E0F89D255EE92E72323EA5BB3D74EC0B3A84F309C5A5A3F06E0FC664A8FB251D027DB34FEE6D89AD3959C1CE19D57AFDE5AD38ACB664F4B2A2AFA908B366EDC483DC370F8280DF023C8303C320BDEB28850F3C422408321ECE2723AE2C06B166B4ADDC105AF4A079118401A1279E2FB7C37AC8317C6B8F4148E4F63F04527A225233376AAC18A61B50A8B36B1DBD392FA5143C513BEA659524A49E619B7DB93A46320B092C4CFAF0FAF1E492C30D23325D3E390AC9929B1234A1E56D58B7DD927B699B1240A02E87EE8E8001BCC6293FB0B5BCCB12351783EDFBA0CF04FC4C20321BDB82015EB8A6504DE980950CC74C0E44C2E63FE30B7FCFC7C75258D703C5200BF673F69E2EBE62BAABF66E306793E3A26C545853288C43A8D045B5551AEC294BC6D6EA416F69BEB78D2457171B14AD0D4696E6E4E511FE7209D8D8E8E4AFFE878B2930496E4D7BFFAA59A6B10C97F172ABECB97AF207937A82AEC9FFF3A9358709B2ADE6842BE5B16A7CB231565C572F0498B1484FDD2F4BBBF484E5F876CFAFA6F1249886260D00E5D1BF44AA8D762F0926ED26C2AAC0C60D1D42406F80490EF250A1BC134F7530802B99763314AC8DB5BB76E8D274846184393BC6F85B044B5D96DE0F1456534E609026316824AC3AFF68CC99906D8B06183AADEB66CD9A28A071A9EC93D6ACA0151E830033AF3F99690C77C3239352D7EE425D5076AB4A739E1D91EB1DA1D2A32D340C969284CDCEE7450B53D2E0633B075B9F2E4417AA1E47F7B5732877BE37B90C4EA5CCF2D4A199B610084057BF71A062071580016AB162EB8B0B0300E7A6263C221D066AE26E889A59FE266F0373D33968435554DFCA70BC919E0DD6D6F97450041E598D469588E6D9E9360B2F2E238E666AED26848460AC7244D9837B656AB4DB6C129D47778E7E89123AA4CAEDFB14326604852F0C9933F9753A7FE2AC78E36214A869461BFF8E9E7F2C73FFD593A3BBBF5E8B3C4136C4E5544322CA0D4BADF4BB41754DA519E840D287E277089C7924D4FAE51722780B7137C02A7364FE0E0FE91A72AECE9A134C46A8DCFCC099A6310407A240120F87C87F74CBC0A14BC5357BB05FB8139F9F8A33A696B7FA4B8FDC183072A51318ACCB4C708A21E1C7BB5F31B7ED7D9D9A9E8E8D9B3676ACE17EF275B201808CADFFFF1950AFDB1F14919181890EE9E5E19C5868DF34E2122D8F72DFAC641B37EE411B57779D22B8FBB7A9228D282B574743F934967A958314FE95751B12EC71C30A2E700BD9C7512DB885E1A716E273C6AF8D8B1633967CE9C5154919797272E78B52B235302ACF1D7E04C8861EB8127D308B108D454B9B6805DA35DDF87BCC9160E05C5914E5A4C8F1F45F85796642D7F716464389C6E79F4E0B6CC22391378E6C0E3C78FCBAD5BB726E028158C9D2658C3CE87AC3A288A82F0F13242B8A8205FECAC97A1E8ABC4F20AA16714623749090763B570E3AE9DEAFAE90F1BC589CD8E1F0677221744F03C022F7CA584BE5B789CE271BB305F28254A4381452929CC16BB25249565859293E9148FCBAAEE33DC36C9CE70A8FB346B588AF233D5BD5502B2AE2847CA4AF2B026BF549416487141567C8CBC6CB7B890E6781F0D2DE911108D5780B12A4DE3D50E5AFF94AEF63378A0C73000C1E0D502C57DD86ECF2207900AF891B18B351AB998898E9B3573E399077303439857EE2419D61426C66B375B1420DCD24750B2B2660FE0D9D8E888DA4D1621E7F05B7323C57013466A4B3940DCBD1BF4F08427BAEA5B4632F99DD7A9DCA9942A880995BA319F90A68C230B836E8905933E698F7D1462635457BCE77B7CCEBC655031235ABD9BE6484AC206ED5250D86443B72F1901CBFCC0D880C5AF88001B26E0C07CCEA4C8E38144A122E456733FC54898DC9D520804CB41A33CD5748F2847994BDE5F5F56269E74B75A00DFE7C2987BCCC2451350733F9D847A8F8D8DA9BF5163ABF9789CA122DA6A4DA9825881517F564D3C9BE17A58F1F19E1515B1A073D1E8D3D3D3D2D5D5A51CCEEBF5AA1D3ECFB9B86B674EABAAAA921B376E28E059B0F03EAC6F42130D608A023F0DB0C24553C9FAFAFA171484C95976B17E3600A117270A15D4F412D2FCCCD814F1DED8D2B3C2A0E2C639362BA34BD76EA864F64DCB2D6CCA16156F123C1A9DDEC9791385E31234733F85E351771E79704EEE4F18097422CB2A5510DFE9E8E850499BC72D3C3C2498070E1C908B172FAAB11A1A1AE4ECD9B3520607A9AEAE96F3E7CFCBB66DDBD4BA78C6BF6FDF3E55AAF3148187813C4D6674F2DE62B5265110C7A30135FDC80545839F1434CF45D1ABE83D4619CA233D2ACDA44CA3D008E643370EC2F02580E67291DF1886300EC38C4605493B34E08FF7ED956BB75B65FF9E46697DD02E9E0C8F9A87DF9BCB4AA3D279D90F459C6BF3E6CDAAFAA944A265E5659487F46EB305E617E6A5408FC8A74FBDF866BDDA1378BD3C2ED8A4AA20B6DADA1FC07986F413E0CDD2D7F74CDDAF5B57AABEF37832E263B02F887CC3FBA5259F643A32930E2FE9AC7420620B8759A4011E53717A0F3DC5A0A020FADCF0402E76251C959EBEFEE410D66F27DA1F261D11186D7C0675FAC050CAAE91EF8C4C4E8B95BB630073E1CA55D57FA1F91B75CD2B2C06F07EB9FBF0D16B571DBDFD03DFF9E356B60EB6D132738AC5BF863F0778B28A62B9068EB8E45B50CE4347E695827DCA634DFF9F0D7F0087D6C04BA29B6A6A9A905C5DD555D5CAFB3FC4DF2479EE04678BBEB9115FE118BDBDF2F0613B7D20B4E4F3B560236A457EF4821E7FFB5F91DA02FB4FE8C9B40000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (110,1,'Rackmountable_4U_server_2D_(128)',0x89504E470D0A1A0A0000000D49484452000000800000002308060000005CB6028B0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000017D74944415478DAED5B596C55E7765E67B08FE7D966B00DD8C6808D21CC432140C26D4842061225D26DA444ED43EE43FAD2973E54B7B76AD5E1AD0F7D8AD4AA55944A891495DCDC00370C210C0683C13176C0F384278C8D6D6C1FFB783A43D7B7CE5EDBFB1CCE3E26A354A9BFB4BDB7F7FEF7BFD7BFC66FADFF3F8E5028440E87E31F88289B2C6DE7CE9D7FBE67EFDE406E6E5E80FEBFFD9F6D03FDFDEEC6C68664EFF47477775757B5CBE5221C2CF3369FCFF7AF0EEEF3F77CFC8E0F67F4CB59D939B4FBE0B334D0DD450B0BF33F29614EA7134450281834FF873206F97F10A8D7DA0FD738CB3B31FAFDD4CDC1DF2DDD5429E37BF83BC15090FC21A2C2D929F204FDD49F92496305251474BAA868A69D8A0ABD3435E5A1BEBEC49F859EEFD35C6EB7F066D6E7A3BA9A6BE49B9991FB494949949E9E2E07F3D53B3434F43B37DFDF1F4BF86833D35EF24E4ED2FCDC2CBDFDD65BB46FDF3EEAEBEFA7DA5BB7E8D5575EA180DF4F277FFF051D7DEE08151616D2F5EBD7A9FADA75E65E7C023D8989F467BFFE35151515D1E52B5728272787B66ED942CDCDCDD4DBD747C75E7881C6C6C7E9B3CF3EA337DF7C9356AD5C49E72F5C60261752656525DDBB778F864746E8F9E79EA387C3C3545B5B4B2FBDF8224D4F4FD3EFBFF8825E397E5CC6FCFAE237545C5C44159B3651138F7DFACC9978228FF86F64F8A17115A28DEB4B69E4D1280D3F9EA0DFF4D651B16F927EBBF95774F6D5BF227F6232BD7CE704FDDDDFDCA42BD78AE883BFCC63A5703F396EE489CF8E989F774490E288FC6B79C5E178926E8C1964E5F4B85D94C73CEBBFDF630A3FFC8EC33CD2D2D2D25352528E83D2025373A0E9ACBDD07AFD7F6AE23139F9EC9B9DA3095686C5C5459AE5EB49BE766230A7839FCDCAB300AC322161894A639C2726CAD635C3DA0921B26BA2D4D4341A66417AA7676881C77F343A2AE3078221990084ECF57A697E7E5EDE99F24E4BBF91478FA41F687B3C31417EBE17629AA0086EA603F3989B0BD31A0804C432626967288A4E87E3875B5F527232ADDB50690ACD2A288745BA7A6DFD969BF95C5C54487E7F807273B2699AE7DE7DBFCFECE3B02881C318E4C0DEDD94959921BC8792DEBC759BFABADAA5CFAC6F26B6AA1B4AE076BBB3C0911C7D70F0E041CACDCDA5CF3FFFDC74CB10B893DDDCC2E2823016820B32C36659E85096D9B9790E0FE1675E2678D7CE9D54BEBE8C1EB1705A5A5A79CC03F2FCE2A5CB7488C74F4F4FA386C646B987C3E17086AFF93BB0B6F9F9F07D8C8D499DFCC39726E15DF77B232672B7A959CE2B57AC209F6F56C2D4C2C222CD5BE8C95ECC16C502DD6BD7AEA5FD7BF7725F1F7D73E52A1D3D72983CEC166B6EDC149A314E77CF7DAAABAF17BA62B5FF2EDE46C981451A4F48A16DE7FE9D422C345AB5F43C352599CACB4A972CDD22E1E5AE939212696D517198F72E8788391CAF2D3E23EA9A8548E9696922938989495A53B49A06FBBA658C45E683B5BDFDF6DBD4D1D121B2C137796C510033606D6137DCD0D01019A7A199096ECACBCBA3DDBB76516B5B1BC7B97EAADABC599874F75E13AD5AB54AFE1F1D1BE7771CD2EF2EBBE911B6E4679E7946ACB8E1BBBB1C2656D3C60D1BD88A1F51E1EAD52210849482FC02DACCAE1D428442555654D0E0E0034A48F45020B4BC55E6E6E6F077B69ADF59BB660D95949450FFE0A041F74EF100733CF636A6676C6C4CFA959694D2EAD5ABA8B7B78FF28DF9CDB1977136BA2304646D6FACEEA1429797FE65620F5DFFCD7F923F9915F7E446F3790A7B80F2D292280B7744CC21D29297AE9DCCCF145620780097CB29F737949598EEDF1A0A1C96310381A0DCCB633E2C2ECC89DCD0A2B1C828CB6303F31F67D313F0B9838FF510E27BEFBD27F1F4F2E5CBD221333393F2F93E870B9A999A64E252C82F8C9C63B79D2A03C0D23C1E0F25B026827970A7C96C55DA8F638DDC9B61E10084C0CDCDF27D9C115AE0D6417002BB6C781B108DF170C6B3A7026C8498962A1107DF496621604C7829585022630E8C8D0373003DF002C9C949E2DD700D4B423F781FF40B04FCB461CB33E10FF05C84D33C6665C238A53817E9DE421E0D6E19A7903B48EBDA734C10D8DD1162412E472F912D50723CCD7CE3BF1064E549F424516DF5159A602CA5ED05C6567BD9037EC1380973E5B0DB0A0FE0C7C3CD6CC1EDEDEDA6F6E01CF6000E19CC91111E24D19D40892C48031F514666D692F6BB97E23FFAC18295C4F48C4CD30452D312CCB8EB4E4834E3B00BEF1B7D5C78C6EF17AC2E1421AE2F5947E30CC226190B6CADACA0F6AE2EC1028F861E989A8C238D9556894BE17043860749E031123C1E53F353333296E86654AC980573F3B002A10D0FF49BFD15250C1B74A7A47B29F7BB7C76BFA954525C4CF7D833AEC8CF673E2653576FAF80671F83683B313D898E424FFF6F34B68AF256D9B97931B10D0C6B8431143CEFC387027203A602C0A2672C885115006D7ED647CF1F3E242F3FAD55FED096CF4C5CC1B158623C8791D1A9694A60DACA4B4B69ECF13835B7B6D35A66F8E4D494C4BCDCAC4CDAC75ADDC8B80273B0B51A9BF8FB7DDAC68D1BCD77FF70FA0CA5B3F21770E8286397DF79FF3E157358CBC9CEA61ECE64E031FFF4F9E78467F0443FE6BBCBBD8B3007BE89823260AEBFDB244A6C55007D1FF11F5ED0F8DF6F2A80C60B3DC3EAC20A10A269B6BA2B9CAE2124ECD9B3872E5EBC684BCC2E8EA368757575B67D8E1D3B262EFF02A776482D7B7A7AA8A0A0401410681FA81DB1CA2D59494068BA7AE38600BC454E3D6BEBBEA5118EE30821357C7F4B55153D7EFC58E8EB63E6C76A508EFDFBF7D3EDDBB765FC580D69E9264E19EFB3301106D6AD5B272171FDFAF5ECDEA724FDC473D01E326CB2B77F803D91573291EF9A5B3894B804904D323D972E5DA20CF63498637575B52D3F80BDC06B28B15D3B74E890B86D8CB36DDB367AF0E0818C0D7E61EE3E03E4826E8761B8D10A6014FDCCFB7C0E420116B5331E2A034190513192098301C810200C5882DFEF8F4928FA22EE979595D94E06800CFD00C65094C0D8988CBE03AB098F9548C14058210FB3F09016D5319390FAB4B477D0BDD636A10F4C005DD96C7D183B56438CC71CE15D405FACA6F72738A5045E018D500664472B39AF0678524B5210B691B3878A0DE5F4D5C56F685BD566CAE031CE5EBA22E931140DF508F0AA98BD965D8108DFC1F7504BB16B2AB44106B6CF3EFBAC58325C3A0C05CD70E9614C85CC244A01700DEF00A55659F3211E2060B5FCDEDEDE881010E25CDCE571D3E3B151332D8426C6132E98ED76BB6DFB608C24C511311AC0A3E088C40493AEAFBEB9644EE47F4E9D89C867A140F82EC05F82B50E11A3A1CF42547AF4B40DDF56A6AA2234B5B5CB815673FB5B5A3226272BC084F4C37CE37D57AA8D00D27168B7536C13F8197C8202B8622800E8E8E78C0BD911EE83263E0B06F80F3E26F99F63D60F6908100FC0028736C345C14A71CF6E32101EDEC5387644834858BEBA56B86EB868E4A8200ECA8309A9D5A21D7DF6A0E4F7B5DFD6D3ABC75EA04E0E1B8D4DCD42CBAD5BB7640CD00BEBB56B5ABBB0EB03BA1106B2B2B2E41AFD1430814ECC19CFC2A02C4C57255B7F1583D2D3E7CEB307A8125078CEF00070CD2D2D2D545E5E2EEFC6A30DDE159ECC8E67E01762373C09DC3DBC159406C05DCBBC68F88E2A00452900F8AE21A0ABABAB81CFD7DCFCE7BFF8E671ADB56B670D0124D98F8BAA7872AA6988D53A99687022C5216634FA442B89F685B03121B846947FD1BABBBB9F88D9D6B502B87CD4E381016ED5D7D3E8F86363BD225B848234D69C781C2B8AD747990F0F87180B9709CB1D181830FB40A05BB76E35434067CF7D9927EA17A0312D35253C0687AF8A8A0A33C57D9AEFAAE1C4EB03A12BCF100EB44141A120F3160588F600D67515A6698043DA5FBBAD82E39BE0763D77DC65660121126D0EF8393FE7B4ACC1002A4B833B229214A0F3010B61B11AD2B9E696D698C99036AC05CC33531D462AB96A458158DDF0A3518EBBEB299505D4DAD925C242D97794F104D60BECD2284CFCE1C361D372ED1076ACF58288BA3D5FF6B34268985AC598025940DFE0035A5354C80A904AFD0F8604882524865D7AF5B56BCBD2D5DED11117FDA31C5E7FE78E3D5DC800183B01A794576D8D08573A0E7B8E013E174560236B1C628103105E670D3215404A869C9F8716E669FBF66D12065673BAF353B470C1250C0875750FD7A59CF2251A61E75AEDEDB06B4349DA705FE3EC7D668CD40A16F1DC912354535323EEFAE76AF82E5CB9621BA481B260C6EED8EB9D16FA015241BF5A5B19CF0367B8EC7829EA8FA50B40135914BE8BC5359CC1D7E87201DFEBE153A1B52C11E1011CE10278AABA7F55005858635393A433C83781D2E1226335A04CA0E64F3FFDD4D69DA11A05669E3D7B36226D448A89D081740B21473040303C06168DB42E2133336637CCF119315A01E10D4E0B633528D43BEFBC23A9E7A08D87022601EDF83E5C2A68C38AE48B2FBE28FFDF610B84FBF7180525AB2287285C9285B021142C4C4129C13318CCD5AB57CD7A4074C3BCC1D73371562BDF7AEB2D89FB1F7FFC319D387142C200040F1E8167F81FC53C33C593D0F94408C8D66577F52CEE28840B9F7542AD3FAC00E1140A93C6043059300AF1C60E656B6E8B32B15D4A66BDD6941213C281C20604667561AB57AE10EBEAEEEDA36C8EF928358BAB659D8570D017004EB18A1DF80493902EC65CC9B36426989F663BA0070704198DD401FA0A5878A859E4E66451766616B574749AD989664E3B76ECB0AD3F8067508078B42B9EC27819461513D7F09668503C31648367D6555D5500A67D25BFE3B0DE8FF60032DF480570C8322A140013D27ABA5D9AB728AB7A6110A771D26E32D10D0A0321C142516BD06C00EDE6B7774C45BD567BCB541AE013D0857E1060BCF412B481AE787DEC321BD00CBAC070F100861345216870E8A184A8867BCD669802065003C07761BD76555415083219BB3E767517CC1D0D1E19452AAB3CA34BC10CBCF34C2FAA15DF280C1091024A21881C52DD82359C3C795218012BD05C3FD601D72FE0CCE6B936143E90C6B4B5B58956B7B6B6526767A7781A305BF727C852F59EDD74ECC82123253C4007F7EE3135FB1A832CE4B856C58D75E80EA3E5FAC043E0FAEEDDBBE2ED4013A74DA208664660F0B6AA62139D78E91825B1528046A4ABD6CA1B165EA000CAD3588775FFC5727D50F8019FD017F4802E1C5010518610D97A80E8B1E4BE110F4E72EC7B13B9E8A953A7441371402841EE5B50544C6D771B6905038D44A36011AF30A1966B57F932D6A20DA0128ADBE7D1E818AD595F6E300745157FC456B0B6EF1AC4AA5D3CB1143EAB078AB570E23294CFB4A6188B2A0A48657E51CF43067A92CAE8F48CD0053A13F97F4DBFE00190AADEEF6863501094109A94942CB4EBB26DF45A9EB13943E80A45D1ADB15A0C92FB58E7E788F22018031B63CA2AAB68C6EBA59BD557048B6898817CB122882A2263A5D37C7E35020358B564A91218A405764BD8E8812210B4CF6AC576028CF5EC69FACACA1F5B9DFE7FB93A9C42EDDBB99D32D2D3E9DC3797E957870ECA92F2D51BB594CBB1F979CE0260995AE8F8A18B2ACBBD07E0AA5EF2D41FBF0A639D8A8D92967E79F63CEDD9B14D96C2CF5FBE2A42C7021AE681B50E2DABFFD474297642168076D1A8988A07B018A0B50E1013042A06807055F8E282111AF87CFEFC79FAE0830FE465C450ADD7C72206481908D82ED6238EAE59B3469409780200AB89B30CA471004A88672859E23B66C9B5B58D0157BAD053D7D0289E209C050C0B3A87F081A6E32DA80091A3B6AF75F3E806D70F90080B41150F34603CA50BAE164680F0E63016FD5BDA3B6962D22B18008B41290608F64E4DD2871F7E48EFBFFFBE99A1D88140804B00585434ED1A36D6A07886C52CEC8B1C1F1F17F900FCE1181A1A922AA1AE03A06866170262D601540174DBB099061A8A80492B1802A3EC3456B3002CBAD8298082300802D68EEF600D62F7EEDDA2C9E3964D0CB233062B75CC24ECDA19E0896EDEB45176CDD4DCAE13178BD807B78C030A18AF018CD9F5D1CC0682D23111FF910E02A5A3C862AE05180EB874DD5A2A2B59470F8687C513000B0C0D8F98E0116E1D6E1BDFB4AB0682677806176DE72555705042F0096573F051819FA6B6D63430D658D17273F38DDFF2F979750BD6FC5F3784681600540BA14219EC3080E6BA609E5DDE6B971DC42254198DCD1FAA3860B0E20BA481A8A103AFE84EA278683E5E9FE5E8524BB6D2876D70996C99E01FAE539223330CD0069E6916156FFD445346BB14365E316949B94246D1273E0864AFBB372B2BEB9FE0019014672942B666005A07D07A368A2CB07E848978CC0A6F24752ECB50B87E8C0526C10D3E3276F962B29ADFEA6E973176C9FE80DFD85EE65B9A1C3F47FC57E6E0DB76A914BE03376A579F508088B1C00FD08235062B5DBA64AC25E5B9F9391A61A08AFEDE692FCD44EDC4C57E02CCCD69490B63095757E9ECFA4079E0459039C1B0200F782C78283538AB07C096B658CAAB8ACBF3CA1F1E1E2E303784583D80550974452E83B30287B163273A8EC45A9A8CD747BD0784A16915BC8A2E45A32156CB628A41F086B252A9B5FFF1C245D97409DA861887E03D3058B38A788B2EB2EDEC29168C403BC2100E582EDCAE365409773220364300E303EC567A30FC902A18247A3C8974E14AB56C8743DC062FE0DA9F6631281E10D43E10BAE21C2874746855BB88F6D0B140209FFDF8E23FF2F1B7DBB76F97E20B76B1E02370A94805016E5273F2A8B7BD5504A6130FC5DE8EF6BD90EE92870A5F388DADD8D6059B69B6F6B5E51B4411A08CA0071B5065499AAF077ABAC8E3B65F470FC5A521F48391F81CBBF5A29232612AD2406C88751B481F69E0404F37D3E5FE8174D11365DCA76DD39C9EAEDBB88906FB7AE9DE9D7AF37DC80E9B5A900662E515DEB9BEBEFEDF223C40AC0244B81E1F941F3C1C397C58B68DEB9EBD9FAB21435040F6D5B9F366C105967FFAFCD79C12EE10B075EEF215E113B68463E9D6AE3CFD533500AEE8C5A0672A2B04049E3A77810EECD9CDCAE0961D41E0674141BE6CDFC276BA78BB7D7E6C838741A8423BFFF5D74F7800ABFB8FDA123617B12710937BFDF5D7A502A6DBB5DDC6B3F1B13171D18891708B98945D7BF7DD7725A54185CF2E557CEDB5D7644B18FA1DE13C1E15B337DE7843B6A4E1002DC810B4DD6D69A5D68E4EB1FAEA9BB566BAE3E398CB9A2C7B02504BC7E28D5DC3F8C8C9ADBF7DB0365808167E304FC4D603070ED0975F7E49478F1E95B410AE1761C9AA680D4DCDB2350D567FB9E68619B2E6667DB2D885CA1DC214DCB51D3F10FF0FB3717DF4D147B6B4832ED0F7C9279FD0F1E3C7651E88FB9005168390462385D5F250304A01C01BCDB82C61C067EE09849011DF3179A0567343080F18C076698E69FA132BC4DC780B17C84B5134596E7B1688401FA4411817310C0C0B19BF3CB2BABF8AF2F5E6CE9B9D6CF11969E974E6EB8BE6A28BA6595884B243D2505EAC56DA8153A7653325180B7A3486E3004DD1DBE1B655550A0E8007D8BF6BA76C630306B0024FD083DC7DB9D419E9A61D08B46EDACD34B6BE834E3512C503A150E4E65E6BA601B940765AA5659ECF4001DAADE8512D5F41037E4D93C4A818BF0E92DF03F23D3027DD487DEC000B90B4DDE64BBB0521BC87EFE30CE48D4C4079D6DED52D9B4DB0F3E6E6B7F55271531082C9832E8C0925D695B1580A07BA745B57BCC5AC685AA13CA85BC0D542602ACCEF9A5BCDC5206C584D88C223A00DEF825FF1BEABAEDC6E91CD4E7974AE289E01C3A907484E498D783760FC50C792AEFBF9A8C7D7B080EE658D48D78E9A73CAE2886003977800B8CE74E34714BAB5C84E01ACB1C6AE0F268BB4126BD9708340FE6A01B03E19C798502683D252B65E6C055BB7A698F27373A8E6569D60008412FC321956069AEC56CE54B876CFADCA8B43AB93004D9A5AC2CBE09ECEAD68D54A2AE6F83EF678824A18BBC85E42E3378BB2C3E8F469F186CB7D57D71FECFAE87DE0108412FC0FFE75183B89E049A16C0AA0D3584EA8DFE017DC90054218AA8DAA486CCCA33C4623F6040EF3CDA69191917D9830629FFEB40A9359F02F1A0B292EDAB57BB7DCBBC7FD20283B01CB4FBF8C8D0A76ADDDD8000ACB91DD3E3C2E7EED6B6A36BBDBE69616F13AE979F982FCF1532E7C1F930F06C3DF4E6641FD09C76A7C0FDBC22028BB0A24B69961DCB9383F6EC1762FD9D02A3F7C9D930DB1D39679608C405495CD638405D096646C164965EFF7D2CB2F0BAD081B836CA1F1BEDBC3CA3F1B87B6D0C484E00C08159B63E0F9AC7D25F3181CA479C3CAB130E6F12491CF3F6DFE840F8A0CFC024FC00AF180E730AEAB81557CFC333F74EA9A3ABBDFA36CF9AE1D3B76CCF06482B3B33E07870307FDC20D8AC831CFB6BC07BA2626265DBF345D1CDE82EC0D6DE9626B7432D39DBF345D1C9E438C870401B6B6B424D6D45C4F66E370B0228E324D9D8ACBD838FF8215A1E37F011D33B0A6415FEE9A0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (111,1,'Rackmountable_4U_server_2D_(64)',0x89504E470D0A1A0A0000000D49484452000000400000001108060000006DBBAA8C0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000084C4944415458479D97496F5C5915C7CFAB79F0501EE238F110C78EC7103B24C002892F90050B364402A44608F818EC800D3B5648B4045B04127C0044AB6101A65BE9C48E1DC789E324EE781EAA3CD45CFC7FF7D5ADAE582D8138AAABF7DE1DCE3DC3FF0C1598D9CF34BEA561535353F7E6E617CA870707690BCC8220B046A3C152EBD94EB14824A86B21C2466D612ED0A9DAA539A8DE76FECB7841BDBDBDC5AEAEAE7AD0B0465FB5D8D8EDEC6F44E28D60207D60EFB6130DF180E7FF45D148A41168FCFDA3BFF51DEEEFAF46A3D1DD743AFD110CD72291C824F2D66A359BBF77DF3EF8C1F76D7767C7E6E6E66C6575D5AEF4F7DB1FFEF8A7F718EA8CFDE8871FD8DADA9A8D8C8CDAD9D9991D1D1FD9F4F4B43D7BF6CCAE5FBF6EA552C90AF9BC8D8F8FDBF3172FACABB3D332998C2D2D2DDBE3274FDEE30795AB557767A150B09F7FF267FBDEC35F58FFF0B9FDF6DBBFB4EF3CFC9AA5B29D58981F86760E82A48CF5E4BA2C168FDBEEDE8131EDF7CC4C4F59B55AB1C78F3FB3B342DE1E2DFED3C93E3434842C2B31EDCBDDB973C72E2E2EECE5CB97D6A8D71DE3488C253DC59CF1F0E1776D6777D7A627279D323DB99C556B756E9777EB866F6461FBF077BF6F5329B09E9E9C8D4F4C685B4C1747DDE55DDDDDF6D39FFCD8365E6D5A269DB24E19E6B3274BF6C9A79F5A4D46A84B868FBF3E6999FA5FACBB5C749C66A727EDF657E69D62A186A817A214F972E2292FDBE1D1915B0EB705D6DBD3237E352B9C1CD9BF17FFE5E6D1379BCDDAD1D151375BDF3D78F060706565C5B6B7B76DF6CE82C5A29790D644AC7B5C826F1BB06508B3B8BCD0D3D3EBBE0B855319F6DC22FF237093A994251229A7403CA85B3515B7899B635638CE4B8998ED7CBE151AA049FF956D682DF7DA10D3ADAD2D5B5B5EB29999196784E5E5E5D7B8B95A6D5A1DE16BB5AAF576E5A4448F1D1E1EB6780D0F0FDBDBB76F5BDF7D7D7D0E7A8C98D09292F03C9FBED8B099D9592B97CBB62583E677B7ADA3A3C3CECFCF5B670707076D7F7F9F8BDDB762D1AE5EBDEA64601F8800A27FFDF81F9689EBAC152D934DDBE6D9A98DDDB8617B7B7B2D5ECA19EE9957A879220C0F0E0E9C6CF0EE5708AF3C7FEED0ED89BB84C60A063863E2DDBB774E50EC051226045B2F209413E4894D9FC050186193C9A43B07B4198403302E968A0E2DF05A585870FB3C013F84F346E11DE3634014C10010102E164B56566E8A542A4EA9F19B376D6060C02AFAF672B01F1E9EF8DE55B892D36EC860EC45E13A1015B176FBF66DF12E9630C0AF347E83C71022105E797F236FF37424455E283FE840CB0067121E01F7E44914673E9148B8084967522EEB27126752F282586B252C08BEEC4730CF0F637B033F5182C4B3C46E4747D6CE959F30605406DAD8D870E8F3CE2177614886E7452E3B393971EF8B8B8BCE48A71725AD87082039238F8CFD21064001561EC900F7224A56B76EDDB2A49421A978EA5692C9B7298140308611C2F00E121EAF3E6B855E4C5E191B1B7330F4C2B19F6F8C80D7F8E64975F0F3189290D83B7EA4FC1171394165D5FA7AFB6C7828AC2EFE2C4EC3015E1608848126EE640EC43C5D5B6F85403C9120968775EEC26928782891466738148D466C4725106150D20FACCE1CC231BC52AADD4E00E20C25429405EE32E6F7F7F79C703E441008EFC2B3BD8C318701310025145EAC076A0A044B675078F9FB3D2FDE39DB8E30CE832E104B3E402FB52CAD5E44B2E5380FB55CAC4D191787D1B883158710C60F1FAFFE9BBA0F2A484820607373338465D3CA5CE6E25CBC88BF76C283DCE5C97B9DF8E7DED7AF5F3BFE3E8307CD5AC31E32F9979D6D278F1078D1939C9E9E3A67F910D05A0706C3082E043C94384015E8944589F95662D1FD9434928A9FA0E61FA84A848C1BEEFCA984A6E980EAB5B09FB8A68C8F62DEE210C90C6738C304E1FDEBEA2DEA4DFE28C49E30CE03773FFB53421DF03E3E3E6E85149EC6604EB6260AE085610841D6D1AB78516C25418F1EF7AE31E82F4589782CEEB2F855C54D5AD07543CDCAD4D4A4A0D6E9DE5D6951485092BE7AF7AE53725E759577BA31486671B03B91F2840902FA41894DA592CED8DC457C93DD298F8406997B747454827F91D9B1C076B35285E53AE4C5FB952B57C2EF6AC86F46B0CF2A84E04567490E48E83E9F037CFE90214640C0379974CA6B447529162611B67B0D4291F6D2459CD22BE00DF206B1E72B42586703076510409CFACCCD3ADF5F202AE447CC721E5EE1DDFC17C163A0A0E13CBABEBEEE4A98F7204F8C822C9E7C82E59E376FDE38D478A4421E0132CC5DD70831E943006F0CA9E9413160EEA9A038BA4CC7CD520371BE4C1E28575CFCD7AA358786D11B6356160C199E28A19E7CEA5A5A5E6ECD81C6B2601DE68E866BB90315AA61FDE7A02C7E2E24B4D3AAE21CF2BC9EAAABF5E40CAB9C5041AE2602DA42A0828655B234CD8A2B293A80B2343E5509ED077F880807FF8D47803DA1D0210B0361422221D8A17C4D359C3BF6F776DD590CCB958C0141B69BCCDD14927BE7D43D0E094140F7FAB56B36AB76D5676EF8E0BD57AF36DC3AF7795EC8342287795ED0C2FCBC750A158C09FD111B1D19A1F4B5107057A1DA4488EB04B78915A08A2030028AC095D2E70FB146A96BCFC0617755777BC2AC1DC2150F5F349B0D78D19470D687001EBEDCBDC1C377779C099BB0C039A3A4F9783383D308DDBF7FFFBDCC8FB3FCFD10A1C5DD3CA968A10E8D564E690B911D66CABAF01BEAD6B655D6BAFA07068E92C9445DF0AD6A63A5C23F05A5769596B2064FF7CD10F3922E1642EB153D2B52BC9C4E67F237C7C6CEE3B158BEABA3E35C42D492C9548DFD956A4DBF5AA524BEEA422B8E7DAD3557D6F9AA44D51DE58AAA4E45463A1C1D1E2E26E3B17C26933D8B4563F55C77AEAE6315863F2B5ED2417235BF2F2E8A6E199BAA0C2357259BCD9CA8932C154E4EE2EA38B725EF8E72DDAFFF03D71BDAD934B744620000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (112,1,'Rackmountable_4U_server_2D_(96)',0x89504E470D0A1A0A0000000D49484452000000600000001A08060000004821599F0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000F384944415468DED55A59531CD7153E3D0BC332C0306CC30E12020910A0CD926C394E2CDB9162BFBAF294A7BCE40FE4252FF9092E3F265571AA92BCC68FB663612D18C48E0081166010FB32EC0CDBEC39DF99BE43ABE9B15D2EBB2AB9A5AE66FADEBEE7DEB37CDF39B7A511D125BEFE487A2B2D2DADBFD8D6D6D8DCD2B21B0E876DF47FD8323232E29AA6FD4FADA9AFB737776F67C7F9FCF9F37F676565618D5A3C1EFF3356F9255F778C835D2E17BD71EB17B4B1B2441F7DF4112D2D2F939D37E4F3F9A8ABBB9B7EF1F6DB343B3B4B4FC7C7D30A3C575F4F175B5B69A0BF9F5AF9BE7F7040EB81009DBF7081BA798EAB57AEC8B38D8D0D6A6C6890796F5CBF4E9B5B5B140947A8B0B090060606E8CD376FD2E4E414790BBDE476BBA9A3E31BE285A7951B8984C9575543B9B96E2A70E7D046F0807EBBF894022E377DF6C11F286E73D09F6A3F2187234E9F7CEAA16834FAB3293DC1EB2CABACA4EDAD4D1AEEEDA1782C06C593D7EBA5828202DAD9D9F9C2C1E32A31D8664B3A3B36876B7F7F8F8A8B4BE8F2E5CB545454C41B8B52C3B973ACA06DBA7AED1AE5E6E5D1C2D2727A0334348AE2036B016A6E6E66456F8AD0D68B1769617131F96C7353E66E6969A1E59515E2A8A325EED3782DD555D5143CD8A76BD7DE20273B4481C7C3EB29A6B1A7E3741C0AA5957BC846E5AD93DD666723E48A01DAF656C99FE3A5ADF2068ADB9DD4DAB2C18A8851A6CB47C575D544122C1A2168B4E40F4A4590FECCEEB091AFA494F5A4B17E12B4BAB6A63AA55F0DBF76B99D1839D8C04EFAEACB2FE4D9F6FA8628DF382FEE99999965304081BCC84A85E777767692DD6EA7183C434B1A24168BB352348A4423728FE1195F1F7EF81BAAADA9A1878F3AE9FDDBB769E2D933CA61AFF39596D28B972F29C3E92407CF69636538329C2CD4C61B77F11C0EFADB3FFE9952DAC3AE6ED9F6F4ABBFCBEF0FEFDEA1682C2AE36389B86C182DC69BA83B73867EFDC1FB343A3A46451C1579EC0883C34FE8F6AF7E49FD1C311DF7EF5322F1BA51FE75EE121D6A0EAA1FFB8C129A0EBADC0AF9FD4B6D174F146F3044CA147A9FC3E9A0EA8A728A6372FE37BFB4947A4757A9BC0747F17AF229C00E575A52449B3B3B747C7C945ACBBBEFBE0BCFA7BDBD3D3692C3030388692EB2670E0D0DC92018002B85D742A9EB6CC1682442C7474734EDF75399AF8C616949168267FE193F2BBD84E6171658E919B4CB02A6FD33E4B03BC83F3545796C946D7EB6CB426D761BBDE2F17BBBBB69BD788ADFD9DBDD23FFF4149594140BDC6D72B46073333333F4F4E9539A9D9BE58D6C0B2CCDF8A7C518B3737374747048D9EE5C7110C843BBE55DA1E5A89B1EBC11A03843CFF048316F3E41D170889666FD4A8329451A6F2953F0BFF999297148EC2BC2FA383D8E68CE6FE735E55030B84F3B9B1BA4712418217397F7DDC090ABEB3A8E77663C1E4F1DB0FE192B7B787858BCAAB6BE819C0E8728EC3B712EED8FF4A3B1A07C6F2179F2F3283B2B9B0E0E0FC9CBF00405EE6C6F924DFB81DCAF59FE29707A42C2273DF98545EC28C5E25CC0FE4C8ECED9F9790AB2214FA0218D00F5E47BFA8D63801C9EA2621A1D1CA0D5A54579F636F327A0B9A7A7878D147C890888E6E4E48865549308008E6A096A387B467E5B111F369AE0904C98621E9B41DFF1F171EA5DDCF3F3F38580E679D3F36BEBECB54554E82DA085E5152A617C4758E7718650515141C8147E4C83672A3E4BC24CA144C9E0D030C16773B2B3C5838F8E8E292F3F974293475454E0A13CE60B8CFB310D989FD4592A9304BEB3CC219169D40F740308423F1B200A0344A020740097704F4EA6D12213624579B9643F087B73BBC2998C82076303F95DE78CA6A3A383DE7BEF3DB9DFB871430CB2BDBD4D4E27C2329911B8D9F859EC895E56021437CE991522100B9C98983825F39D77DEA1C1C1413A10B23D692525C984E1DEBD7B749BF9E83E73415B5B1BAD30B9D7D5D5A594909F9B277B74F01EF372920A7FC2510F0E847C409CB9DDB97387BEFEFAEB534E58C3FC7781B33AF4DDBC7953D67B86390A0E069811EEB2C10027EF1D72B41B8838E6481A2891E01F1A9409E5E3C218972B93B3A17D216728C5DCA05078580A0F0D56362F369B3D0F0A3F62CE0099223C671872965757E988E709B011F15E88BD09F0804881E1ADBCAD9253BB5D1387606E63F4A1216BC2DAF12CA1C3DFD8B3E7021C31C172BBE0855A13323228C8DCD00F65E36E6C4CA2A7200F8E0007235D46321D3D890018A7A9A949F6880B33FC8EF5FF8027C8C7032C580CC01D99992EEAEAEA9217641326A809713A084F3D85F43C0E46C186C6C6C60810373A3A2A02918AE2425A76A6BA9AAA2ACBE9C5E434359F6FA08ECE2E791F7502BCD7ECE5687008CC6FEE53BF0123900508431D81B18034D5DA5B9A744346383970D37F3852A074BC03AFB59289677028739F723CE86072725264F573DD035DD5D6D6CA6FCD0441705AF4F33E16575757A510CB64ABADDEBA752BFFF3CF3F3F664FCD84E2BC6C498D5F442A29164E4338E91ED37754A2487135A78B4A19DE4A8ABCB4B6BE4935951534C999D3FCD46412A7339C3F847BBF7784FA6BFFF080CA6AEAA88CB335400394E7726548C615E44209E93152CD1F27CF5AE621A79FA55C140E3EEEA6CDF5807290C8C71F7FECECEBEB5B64C8AA72288F6525231D7DC8DE7F4771808D9588C2698D8B0E2B52542168554DC22B427AC184F0466421344150D87CF7C010E3B19BCA39A5DDDD0D4A16840639E7CF37FE24C48FDF804844DC10D70AF0D75C4E51ED9CD9A198CBE3BF915603360A19F2B046F3BC2A2989E98594954C4410F6A6DE2D2B2B131E7CDCD7AF23C2C93E789E097EAF3DA10FB6A9B41072F86A4C7100FF08EE0745F9C0EFF5F5F5531784027BADFAAAAAAA84ED81D70B5C1F0043A10C45C20C8C12556E9E1BC51D8C810DCDCDBE127C87015FBD7A75EA427482F4CDCFF10EC21E89C339AED821131C80C402CA53CAC9CBCDE1D4378BA32C8BF79584CF714E30006D70282B99D8C3126768E6E7E023C85C5E5E96FD0602019189FDEB9A4F41B2A1796034E55C2A02123A89D49D90B02661898541C9B068C87404005202512A023463B5D98BE061F0166C148B5ADBD8A043F6CC3D1EFB6D6F7F1233592EC6C00056C40F993082D953AD3C17EFAB3953243CF15C7E832033F4084634202AB91EB29409EC4794ECE9859DC19B4F8D45AAAD9E9B39007219826A4F1940852B2E284AFEE6C14E562C48F8EEDDBB426EE613468C8352AD88188BC0A2FD1CE2581452346C12CA8797A0CE28E6B06F6352EC1D1CA69BD7AE50C7A36FE51CE8F1E3C7723EA420CED8A4806279567DD8288C0359900962C53340826AADCD17A41E0409BB73B2E9DEC387A224EC1369ACD5BC5837649A3324A568C8029760CCC8C888E8C96874A3010C1953C21801A9FC3F1501361C0425249F076CE0B22A78173934AD1A4E355F3B2433A470F71F3CA0682426E7242FA767E880FB9092E29CC5C79C50C0B935946745E47BC1605A1A7CD4D969499A5CF0D016CBF255D7D2C2E232459106731D82822C168DD139CE7E3219967AFBFA2CE71D37D423E6B91F3D7A94CAEF8D843C3E3E41BBC13D2AAEC84E6780D723000F81CD271CA009C6D5710A0A8CB3F20CC01226DCB538D729E70C07308479418C086D782FBC1F39FE571DDF502EA7A77535D5024520E399B905AE034254C96923C23E6471EA0942C566CD7D583B3806F80B28C19AA4D0E3C805FF3C19191512C699110C1DE1B5807FE6E6E728C0F2713C80F1567B415481CFCCC9063C1EB280FDB8C3D0D01DD608999D1CC9C63A40194087A01409E7EA599028D9180108B12DF664285A70530AA8930B9B8630F3735C50060C088583C8CF9E3D4B8D8D8D860CC2268A40AD819842EA09D8C37132149C84A9D30DC6B33A32C09A4188502048180A8352155F282F948F21CE0C3907524E850254C1975503945A6581301864821B5001C300EDEDEDA22F2354A82C4841935E28A2F695D3D04F59611E230461617274CC0B05F478F4B37833B1E21DF4A5049A2A5633796281502E946867030779BE41F6CC50284C5DBD7D020D981346870151C099890EF342A655C1641E8B795426A6F078E2C54BC94E6252E3385E1B8B230B2B3E43B401E7CD15BF15092343C3853D2AA3C74D10A41BB59AE7FB0B56706C19013A09835CDE7AEB2DB1B639DB5163ADB220BC8F0A14DE0F38829729A84328836C910A5E6D6BA587DD3DF42693F003BEE3F8E3C58B17122D487FCD9B56F2D255E0F048F007BC16E7406880881409375DA030CF89B18802AC0FCE857D5EBD7AD5725EE806CFCD7D0ACBB13F9C612182B8BA9567985719C00841CA08D80723C8A19C86AA2CC86800D2C9A2A9B9590815976671563E37BF60593226BF1819CED3D566B808EAE9ED958838383C628F9C94F39FE9D939318C47F0B35A0A24AB1A742DB09EB6345DD3F36FCDA4247C8BD8E2482EAEA8223FCB815101B1F86A06E59C617884729F7006632953E5F5166D5537AEF9381C3211F12E2EF6C81001EAD454375EF234544500B013E1834109FD60ACB2CC27E109DC05999ABF1DC37B50FC58E1263C15EF023F31A73A6483C7DCEFFC56BE375C686C1012AE42B1B3B22A30D7507F56A0C3ECFDEA7819EB304310F808F3C2EB3146C9C56524611FAF2B9E88513C9690BEF9857939014594430FE65C5F1D2F633D66E2C7FBD827921445D45807201991785FCFCA1404A10F70984A5313890800298C08009942992A0AF05104DF35510142F9C0400543EA52139A9FABC20DCA56B0813990DB0356D4511116062EC0625C19C90C2CCC9B0491623DC6AC4C5D98071C607E8E4B9D928210A10C7C7786F28C248CF31FBBCD2173E3FBAE822844240C67352FF68EFD989FABFDC368D5D5D572C797C502FD58457D9857240CBD603DB8EB498D44C01A1607C5AB0F0B729682F31B0ECBC0D28208471693EE9C04D637A7688A6CF00EE60561C1985010140858C23BC3634FA5BF676048BE8C011A904A42D130A0D9EBB0706CD08A84D51A223AC643B130849C4CEA24FC6C7252B213F41B3FA240269489B599C91563619C747B34261DE000242E309A7CAC07B473BD11A650EAAC4A4500EF6D0306985447AD78591144583EC427790093A7FB7F36AA88B37A0E88521EAF0A158C0DEAC514E4B437375157FF205DBFD44E83A363F20ED6011286539837ADE0D2A83C635F7D7DBD1C0D2301501F8A8C24DCC6F2C2A1B0A0760647DD378135AAE5EC0790A53240AB79D3C9541F667036043852052B48581592F85F1D9C5F4B94410E8CC0579C7532A0E90AFC2B2BAA09566318F2B1B52B6BEBEB375819B1C5B93937D97EFAFF9FC5797FA4ACBCFC48E7AF5468ADADAE667194B87E8EFFA6D3D0D878AACA3A0E856CB37E7FBECD6E4FFCD402599FA1529FEFE8D9C444CEE8C8481EB22E86A96138253BD67376B4DFFF1723B17F48035214C70000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (113,1,'Rackmountable_4U_server_3D_(128)',0x89504E470D0A1A0A0000000D49484452000000800000002C0806000000ADE0B05E0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000018BC4944415478DAED9C6970545776C74F2FDA11629584241609C426B010FB6E600CB6F15A13A7BC4C9C493EC5937C4F556A5253959AF990AA7C48E56BA69C54AA9C724D5C31C1363B062481D8056613426C0209D0025A115A5A52CEEFF6BBADD7AD7E2DC71518F0CCADBAD5DDEAF7EE3BF72CFFB3DD966F7878587EDFC3E7F305F56583CE379D39577E7C6348E7699D7B74EED67966F83960BEEFF745435252D2647D79DD11F86B3AB39EE5F39F03DE37EBDCE728C3BE5028D4F6A35780ACACAC1247E06FE95CAD33F01C0BE859D235A8F3840B1DCE7775750DBFF00A909B9B9BA22F2F3B0247F0B3FE002CFBFF83B6FB3AF73ACA70A0B9B9B9E3855180A2A2A21C7D79C311F8569DE37E84027A9623A4B34A69431976D7D7D75F7CEE14A0A4A4A4CC15C0AD60DD3F5AF6531B0D2E57F16D4D4D4DD7335780E5CB97A7E9CB4F1C8163ED05CF73F8FD23569E7E9D471D65D8535D5D7DE5A929C0C68D1B0B5CD08EF0D35E3466FF9894C783AE7AAB0CA0C3B163C77A7EB002BCFAEAAB3E07CE2DB497FDA15AE90BBA9F3E9DE556210E1C3870CD53017C3EDF87FA3EC7FDC5E6CD9BFFB16CE9D2141DF2C7F1E28EEEEE6ED1C0513A3B3A6A8F1C39F2EB40209C79ABCCEF0C0C0C5462E57FA3F39FE241FAD49C5C295BB55A1E34DC95D0C04062287911B8F17F20D2E7F34BFEACC270923ED02F3EBF5FFC81A0048687C42FC312F20564503FB3666070409292866468D027A141FFF3933EA8CC4E1DAB94AE8E7016893167646498393434D4D2D1D1F10925D8ED5EFEBCFDD143E9EEEA94AEF6365C822C5BBA549A5B5AA4AAEAB8BCB17DBB2E32283BBFFA4A7EB2658B4C9E3C594E9D3E2D67CE9CF1E6B8F3312918943F7DEF3D73CF899327CD6BF19C3972FBF66DB979F326E86334F7BFBFDC21EFBCFD964C9C38512A2A2B65C6F4E9326BD62CB97EE3863C78F040D6AF5B27EDEDED660D68E8EDED35F4BCF9C61B326EDC38292F2F97997A7DA1CE1B7ACFFE0307C754029F73C1C387AD0E940FC94B0BE64BEBC347D2D4D62EBFAA3D22D37B3AE49725AFC867BFF8AD8492D3E41FCEBD2BBFFABB13527EB4407EF1D79325343414B5779FA712FA3CFEE44BACB731D7F8A25CCF90A4A7A7CBD4DC5CA9BF7923227CC7EA25A8BC4F4E4E96CCCCCCA9CAAFBF4201A67A31C3AF5ADFA90C0636B2C667495E7EBE6AF8A04C983841A64C9D621E3C756AB68C1F3FDE7C37E5D62D494BCF18214686E3B238252559059469048B36723FEF1F3435C9A44993754E924165E2B8F1993261C2042A8892AED721D4891327495ADA3D730DF7F4F5F5C978FD3E3B27C728C0E42953CCF5B9D3A6E9DF72D9A8A1ED515B9BA42A63C28C88E7B347EF3DDEFBB1465A5ABAE417164784E47309CC3ED72A192FEEF77E459DDC9C6CE57148264D9828DD8FBBE5FE83267BE188BAB8DE2F5A304F72B2A7CAA0CAA5B9B555BEBB70511AEB6F9A6F1F7775C5A09A2FF2CA4C4A4ACA8A5280152B56A840A7CAEEDDBBCD6704DFA74C0DA8D634DEBF2F172E5C3016D7D2FA50AED7D5A99086E54173B3DC6D6C948ECE2EA9BF7B57E6ABB5CC292A520B7A24576A6B65FD9A3532A0105A517954D6AC5E65047EEEBBEFA4F15EA3747577E95AAD32101A34CF62DD067D4EEDB53AE9EDEB5506F4C87F7CF69F8658852CB974F98AF8F6EE93612C4C8572BAFA9CA113C5A8B97A55FA55195A1FB5C9ED3B770C52DDAEBFAD8C09194635288DD9D9D9B272F93279F2A457AA1435D6AF5D63ACE1F889933267769164AB32DF5214BA7AED9AA7D0F766174B66A84F3A82A932F7C44E19C2A7A6BB1520458A67171A2D8B2730F7FB88223AD7A6A5A64A6E6E8E04F4D91889FA681997911125BCD8F733674C57E3CC34F46270330AF2A5F9DE9D708ED8DF1F45FB76456D10B6CB510C4583094137822C59B244AE2A23DD9AEF33AF0103D17FF1F39F8BA616D2A10BBCFBEEBBE61A985DA6F76D58BF5E3EFDB77F5741FACD75DF1E3A24FDBA810F3E785F3A54696EDDAE9755AB56C98AE5CBA5FF5F7FABEEA44C4A4B4B55C88F5583B315EADF969D3BBF324CF8E8C30F0C1DA7CE9C95C73D3DA3ACD067DE8F30617661A17CF8FEFBF2E8D123B9A5F4AC5FBB56162F5E6CEECD5564F8939FFE5476FCCF4E49494D913FFBD9CFE4AE2AEA4D558E2D9B36C9ECD9B3A5B3B3538A740D68F8AF2FBE903A65525C98D0B16046A7E4047AE46C5781746CF967194C1D14A91C298300BFC5AA4C5E02F3F9465BBF2F82103E993C6982841C836014CFF6C7459191BB874DC6111A0849A61AC2F4BC6972CE1FBE1717ED1E28D4C2850BE5D4A953160502AC711D1EE2873FF9E413397AF4A8F19D0CA0393B2F4FB53A4D426A5D7979F9F2A4F789B4B4B44A81C22AD434AA6501C5682A56073108B4E7C91345818792CF75FA372C708AC273BAAE05D4B3365AFE40218EF5B3B2C64BBBFAD83ED5DA1C85C1BE5EB5E6D6D6EF05BB2807CFE1D90D0D0DC6D25124E284640D7C26297D1D2A64343F3F3F4F191C927BF7EED3AB50044852987D606898A8EEA64D951585E855FA17962D336BA6AA52E3D70795E55B52EF4A96BF4F0EF4CE949A6D0D329434282B4EE449E9E256DD57BA9C3E992C19E9E3BC6350DFF78B527DDF2B801DFDC72145BC9EFE0149D1FD9CAC2CD738EE51E4BB6DDBB61994DFB16387D96F5353532D2B60F2F336A93500FF08ED905A2F4CC5974E513FCAEC57C1477CA52FE6F1562DAD238DF9EC73ACD7E6C6689FFB7D3C3FC5D7BC9D30798AA165920AA7BBE7B16A7148662ACC35A800411802556C21126F78D010A67638AEDF1FB974386E2E1F8F5E629D74B53802DAA95326CBFDA66619A7D68F52E3869E28FAF4F6F478C743B141472CE28CAA2344857A090D22336B8224A96B3B5171443ADA46BACC6FBDF596CC9C3953AE5FBF6E8C4B15E04AD06936186177B82246986E61B7578391CD1B37A8E5B7445D3356B1C38BA189AE0589400A3EE3D77B15790800D72C5F2A6DFAEC4B576B65A56623C94917E5B2BE1FA70C5FB8608189F28DCBF2FDF08434D1BD7C57543402ED4734A64101E614154AC9BCB9B2E7E021292D5928E335E8DC7BE8B074B53D9475AB571B83B23C7B5AB41110331908B6EEF61D359CC951FCB6F7838AA02F74E9F7A188020C99D445E22A406747BB54545498887AB56EEAF4E9D39EC42C5061306A6A6A3CAF610DD291AAAA2AE3ABEFDDBB67040FA3201AE260F60455CA7B0FDB0C6DFB8E549857E6D7FBF6A962F46B5E1E90AA13276489C612C036CF56AD8EFBCC5475098B162D32743DD6B823DE0001B110E82180C2AD5CBA74495D5F9E711FCD1AF0123340BB35C8DABAEB7253E31B5CD7F1B3D5E18055F7F04883E0931A6812F4AED5988400DA6BB057788D657A0DE2258DDAA5BABA5A8A8B8B0D8F581B9EC19327EAB2A669E643FA1C8BB8B13194EBEF8328C080FD23C4E3436D0610BE6958820A2730185F8FFFB4161A6F701F8422D0B1ACFD8E066C300764A14801731908C0D40B741D1BC86C7D798309EACE9CBF206F6E7B45AEA8F55FD409CDD0C69A080641C71BB6A2C92B2953BCC1F318089A75F87CF9F265292B2BD3B824C7588F35141B822D9C572C0BE6CE95DD07BF95A52F2D964C15CA9E434794773E231C901565F2A2CBF28C7D24BAC65AF035CD50962A027EA79954414181CCD1E0DCF2D246FEFEC06805806ED0817B5CEB0D8E42805B9ACB5B8D3191E830859B2469558DE3261480D42936C570479AA46589208B7B2DB3BD82BA88020C86E9FAB6E2A8A90D20BC1DBBF668EA188AE4B3280074215C6A01F1067F678FECC9EB1A0486B57B0DF61D9B1E5EAEAD93DA1B374D6C72ECD41993C2858DC96FD6E37AAB705ECF055D729C3A86D700B55026AF619587BA48800A658C02C027940405E0EFCE340AB00BF9EB87B556806E17E0140CCC66D03EE007460235F10656089402495E96C6BDC0D78C19338C32E093F85C575717412222F430028415600DF9BB32E8DCC54BB27DEB2B724DE1B246E1171AB106188002A0085E039A10A2D735764F28308A42CD838C02B782907A1481AC8BB32E604EE12C458062D97FB85C5E5AB8C06443878F55993D98B4540D0A9EB1172F9E215CBE67EF5E3CE3D92800BCE53DFBE01EEB366CDA882BB2EF254601B80F7EB17F4DB36B0194A03EF437FA65198C76578AAC0BE03DBE76DEBC7986381E1A79409C6137C0355E9BB17F6713D637D2B0700FE0CAF85A67134D148C5439A9445E57A636B73E8C080B254261CCF50906CF4D748DA50B65C2153639E9AA45450631012EC1BA00A2FF0C8DFEC9481AD5454CD0EB8D3B4A0A1A9FCC9AF0F1FB3C976BC6E219866279463DC33D0C2FFA4614201601AC3C91B5F2BE4E79FCE741B75FD60B30B74BFAFA927501A42F43C30622F4A614A9AC3C9A302A25AFBFA6969C685007A83E776ECC6BD0547F726A84397E5FB81032316BBCB19A879AE2A43BCD8D4EB5D03D7BF7268C9A9B9A9BC78CB6E9258C950D50D3E8EB0F23253E1F058036DEA73AB14650DDE6442732AF3C7A744CBAEA120480F69AB1784655B55D79327BE1A208CCC7A048A3BEE4BB6908BA8304D50A76556E15205C09F499624A3029602A85580030F4B406300E6432DA743355A7C3CD250A487E437878DA1802057875DB36137163714F73CCD560CFC6003BBFD9151128420F1B4C50D2D3D3222EB4548342F88AFBA0F0F2B4062920AECAA4A7E5E5260B0031DCF2874EFD5BBDD295A78AE18BAB00BEB06A2459F8B790110806E44CD509938AD09C214AB6917AECA05BB77EFD7AF9FCF3CF3DE18C923042DEAB164B6912A19F53ED065A6116C244D9B07AABC5F577EE8611493F1390B63BB975A3C220B4E01EA0F5F8F1E39E01DC471F7D24070E1C30D5CB7883881ADA2943135842C3D75F7F2D1B366C309F49C1485BA1D716763AD5AFDF77D0AA95EEE9E3EE48A04B416DE5CA95C63D91461383C41B5C8351EDDAB5CB53C8EFBDF79E81F82FBEF8C2746689979005FC8036D242E29321875FA65F22D12E40F997E69275B40238908159BD69E13FAC007A916A76B21361C3682C01DF98281A85795EF936C2B083756C504624CC2452B501A0CD02E6CF9D63E878D0D22CB3347804F65B34D726DAB66920F7F1DC44D90702F442309B2ADA4C8789D0B02EA60DD6DC69605E6E8E2CD0F8E856FD1D2954BA68CCD437341AB4822EF808CF962F5F1E69C2C40E040B4D8968B7C1B9E97E2ACFF8CC9E6D1AC8B3A24AC2CABB38314081D213E583E2214081B5FE1104081A98238AE5C1303F51CE6A7C6366A62702C4169DDC513AEB63A11447C20810BEB65C11C8EF14590E96579894305C660E339A35A12911D4B236CD1AAF6BBC7C3F0AC15EA803A064288ABDB6EEE62D530822383D597D2EAA6165A37E9B1A27CA506C35D62BBD8EC733048C429818C10958ADD06315C031B6A9B169AC3F26088C4A016D1D0005484A4A962FBFFCD26CC6ED22E24D1E6E82368FEF2D6154DDEEDFBF1F69E0D0AA64B229208D35ECC637AD5D2DAF6E7E39DCD4D8B45136AC5A19111AB08F1BB0CFF69A08D146C15EDFF30AB4F26CAA8658186566DC0202B50D2ABB87C50BE6CBBBDB5F3306F2F21AA571D3CB91FA046BD15AB7EEC9EBB96EC518EB1A5C27A99FCD18A08BC93506716D4B243E0244F535462180BB0014A9040E87174B4E49363086325CADAD8D685EBC41B4CA71A4010F8D675DBA6EACE14689C7AEE609DD44BA7421C722AA4E9F8DC0EF818A4AA529BC890CB5ACFCBC3CC310DA9C160A479A4A234D1C94CA228D578592DC1D816189F65EBB269F897F38B9D4E734C72ED65CD5B4F4B6E9591C3D79CA74174D3EAF7B27BE0109487199510810392F104E9931025C6C2C6ADA7DA0E0B5CA77688746F77E4632B007D2A22E72E6C4498A94A315C02A415C05B0059851D6AAC287B0B9C5734D2B959CB8D70547F11A3EDD1EBECE7D6DBF8702F14C0A44F6DA80933F5366A5D17240E17FF3BA75A6A871F4D46963ADEBD6AC3148029D7C1E0BDE71155EFDFAF0A18EB4B8F7E2966C8E7DBFB9C5BCD2089AA728F1F5BEFDB2A26C89C956A031459FB161ED1AA34808D7CBBDB8FF8E7BF2EA8EBAE385D8EFD833E5793E976BB0196E0B0F3981E0680470DFEB8F89014641B72D0A555656987403E6906ED920097FE89E44BCB496890160B47B722F93A212E7FEA64F9F6E206D8D0A90B54B4A4A4C29D63662C2714098E137D4EA38EC81625C5468BE7AFD4638F75541601958A6B13847D36327832CC30680AE72680466A1993A3BAE097F4CC0C8DEF1FB7C8785B1478440A1274C57BD5C520806EDAEDDB8193E4C4279B7B3433EFDF4D3088FF0CF5E7411F89261C5D2E5A60D9E411B32E13D7C865736D602A5A02B39251C9BC54380315D8015B6857F5E434EFD9C8D606108074DF50A566C700861031E27892D946319368A25AD8109C402F859B74B326D625590293A6F28DC16A980A8BCB51A280C43348A6BCBD6899A504113CF2425EC41507FA00C4C738A3800BA501C942CB619342D275B66A882A0080579D34C2C70FB6E43C4D5703DBC821F899E0BEDF078AC163BFE9E6C017EC1EBF9F3E74735836C10301C27088C77BE31A80FFE5B7D5D6F5DC0A800CFE78F280041109BE1BD97706DAAC3667B7A7A3C6BEE898A491685DC50C5F34C648B805438C3AE681B05C0C260C84082E3EB044958A3D7355EB57AB7E2C64232B1CA93273D86D9F42AFC31DFC38FB178C673CDC92957BA17AF17909191316633C82B0B88450045DCA5EA3A7E09025042CAB608101B03B01F7A019C30E11C80D5E4449D2B9B29785D639908EC23102C0548B3074E080E6D6BD8765D380144B917E29B5A5A5D9BF399000925B056E4854ED0E3F6A1F1E8064E7153BC87167CABA50B3AA981B89B41ED1D9D72ABFEAEB98F8250C01FDD27E1983CA896286DB67CE2B9896867B01674201BD6B4CD203EF39D65CB60687430E9763BAA7079BAAF997EDB0EB669A0B53EEB0A6C350EC1431C7DFEB18E49A34C89AEB1D1306B9262E1C3790EEF817FAC26B231876082ADB52B964B50695A347F9E2C595412292AA1483063AC660FFB48D4C8721781400B5B6D23826F77B2167B68D6BA8079738A64E5D22592AC4651B66891AC5852EAA045B28949E005F1C4F7690625EA41589EC17FCE28200B78055D4C328316E74CA67BCD5804F047DAD50609423CF1D73AFF9E0089E0E2F0E1C3C6C703A9A63041E167D214A9BF7635A1F5C4E1B6F759C151C7DE86A3983AECFAFCA4AF5766CD9D1F714F3022E81CA020F06AB87943991FFC6147ABC6F8F9DE70827BFB942F0585E1933CD0D3EFA09E3D33D178FB962405FC3F8CAE31684B44178A3B6BDE7C69BCA3C1E9B9EAC8F7181B28CBC1506A2D204A7575F5BF04DD0810CF051804502D069EB668E44EEFFD69368318A481E9CE8F38F6687A650B2EC54585F2CDFE83B27AD95273EA77EFE12346A996AAF2620D4FB3E1627B05D6926D33A874E102995D384BD3C003B26EE572737866DF9172C3B3FCE9052693E0E8DBD36C5471528B4C82B1FFE0C15108109B79B86A23BD512782F0EDEFBCF38E5CBC78D1C09D71054E4A41D1810208D083DFB647C7E38D8F3FFED814658076AFEED5DB6FBF6DD6C4476EDCB8D1345DF81BD12C135A46E200914B35574D9AC58187CA93274D0FC004478FBBE5ECD9B306AD4030AA955E83F5D983D7F93C98B875EB56F37CDC11E9290D1AD25A3203941F5847D12C4A9DBB74592ED75E330860CAD58EEB2330FCE69B6F4C2A6B4F1BD579B4C96D03EDB3CF3EF3A41DBAA0EF77BFFB9DBCF6DA6BC62DC123262E1317103EACE273EA00D10AC07948F7A15627CDEC893A138865B3B03957664BC1BA20BF00C22FB209348BFC9305BD0611AB3D0593D84B847DB20D7EF0E30459FCDD36922CC1F38BE7C84B2525F2D5DE7DB2AC74B1F911C4EE83872247C2B002D6C2E2BC2269A0991CDF2BD0B2C2B3C660B30AFC2ED39E2872BB2B6291D9B3661A0420462116D85F5E1115E1B386BB88E415C12F5BB6CCB38166AD96B550765BBAB627946CF6657B27B1BD03201FA32693B0F505BDDF28409DFB066BF9D61DF4F6F649AADE14748E85F9CDCF96528C4FF1CA59212CC3F92D5FA2CE5CBCFB6C791874089F2D0C7F87F5532A26ED3A557DDE54DC6C5C810240176B12B57B957A6DB5CDAB5AE89586B12ECA43C3053F8AC25AC504999A34F80201CE7E7721AAD369CBC8DCCB5E123DD722A397D178058836D5A6128A4C2C02B87FA3E99C0588E28BBE0FE95EAB51802A14481520D35E8810609469AEF073687F380D3C7FFE7CA40D6C35D08B89639DCF33C19CFA532CF7CA952B52585868E0D9E6E236AAB79696A5CF9DAEB9F283E616F3FBB7C99326CAC9B3E74C4484B2E0676DD4ED8500B62993A856C0FD567989F88167E8B2CC4340F660A569074FCB957C550A52D319EAF393D4CA1FBA7E8C810BB1075CC67A6E22DA2D2F29FCE09EEC0157EB56E037E8615DD3385506CAE883CEE1595C18745B4552636E555438CF99C026FD634D7373F34AD20BD22F34DCA681FD03E10713E92E5588E2973097F43ADB828D37FA9C53BFB13D6AF7E008942D9E3C71725C9A3F91020A45272717CF9C32D53C97A357F65088C904D0747E34B276AD398DCB9128ACD50BE26921F35BC4C73DDEFF39E5CEDD704E4F7B976B41BE4E576FA3D9B1F6482025E11F759A2AA4D268918926D5EBAFBF6EAE0515384696E8B9B71C25F3AA9DA000E6C0A73E8342586CF38C8C08DAFB9CFB39299592922A3DA16E431B8645F48F6263E0AA10F7740F8FEC7F0829D5F91BB57A3FC2C7FA55F3370702C1406969E963D5A6210D6A7CEA0E9EF9FF81707EA236E4F53D74B5B777049E355DCAC821855C4FBAD427FB95E9CFFCBF4528120CAB2B31D07CB5A626B9AAEA589A22AD4F15A85569BA6E5D8CA2C55FAAB2D5FD2FFEB07AAF5E588E4E0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (114,1,'Rackmountable_4U_server_3D_(64)',0x89504E470D0A1A0A0000000D494844520000004000000016080600000070BE9A340000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000009364944415458C3C558596F1C59153E55BDBB17777BB7BB1D133B89D3631B3B660C0F018440331026F3467E12E29977C4231AE505F1309911EB8819821092B3616731EDDD6E2FF1D6EEBDABAAF9BE5B7DDBD50C12641285AB5CB56F55DD73CFF29DEF9C1BA3D96CCA571D8661A4F173BB357F801991B7330A98BFC7BC87F9296CD8F9CA36BC8A0360B0D1DBDBBB803DB7F1E76DFCDE785D4B5E27009EF198CE80AC4F4E4F4FEFE3D77A630E989E9E8E351A8DF76834961F600EFE9F8DFD6FF2CEF0FC7774886DDB9FAEAFAFE75FD901376FDE1CC3F30F1DC761A4BF8747A1B765D41B3E879B1ED119B0E3934B972EFDF5EEDDBB7687035A11BDCAC59D3B777E1A4F24B230BCFF3F2BF1C6CD92B73C6AD56A75733597FBD9C3870F1781EC353AE0B798EFF16D5757974CCFCDCBCC5456904B323636261B9B9BD21D8FCBE28307FFCE07F2DD6F7F47B6777664606040CAE5126645D299B46C6D6D4B7F5FAF54AB35A9D56B323C342CDBDBDB12E98A4834D225AB6B6BB2B7BFFF25ED829188A4D3198162F2C3DDA7F2D1DC8FA42B69CB4F26FF28BFF8658F38AF118180DF277EBF5FFEFEC5E752874E434343128944EEF9F12E9B482424180CCAD1D1915460C8D760F8512C2613972F8BE334A5B7B7078634E4FCFC5C060607E4F0E010CE8AC864F6BA98103C0AA58BE5B29C9D9E482AD523C5624992A9140EAA4BA55A95F1F1CB62FA4C89C5E2D2150E4BCDB2247369548E719EDF1F508ECFEFEDC9D1F1B1C46351754EBA52102B1493485F517EFCFE9AFCFA37D764682443CF2BE71BAD20701D0C06646470507C3E9F6C6C6D2960AB6FF07A7E76060EB5E4E37B1FCBFA5A4E6AB5AA0CE2DB68342A8140204B0704E7E6E654840A8582DA58ABD5A58E4D4D08AAC188068CBF7265425EBE7C29D9EB59597EF6547A92292997CA2AEA4538AD04A3CF313FFBF3E717C98591ECEE96E977DE81CC9A727230E0179F69C8D76766E4F98B1750242689EE8454A1181D50AE54C4B26C294C27C41FFD83348CBA3C783420F1685852B188324ACB566E50CE30C4AA9585D49F8804DB08E5EB0D18CD20462361B11A75F50E954C464747657373334451BBB76EDD1A7EF6EC99EC0396D7A7676404F0A842E157198C22236E19A6BC3B370B07D6657D735BCE4F8EC5B1ED4ED6E9FCE34B2344478542727A5E946F2D7C43F60F8F241C0EC9CAF3E7E28361B66DFFCF7A111511E8562C956413E858595E926C36CBEA264B4B4B1B44408302192140426A95AAECEDEEC8ECECAC1C1C1CB4054D4C4C482E976BAF09A30AA21506A4914B4A29C2F91F2BFF74E9CDE1E1A61CEEE5657272B243E991911125DBB2ACB6F3BA811432FDC9C989822773F4B3BFDCC7334391651351CC6F6FC9FC8D1BE0966A5B16F7A9DA7776D67E363535252B2B2B629A265232A590B7B2BA06598E7A4F8E01D113250D136BA5713E9F5724110C05E5F0F05039238428E8C94163F59A065161FD4B817EF001FF2E2235C809B6EDC82914E33B7EA7271DC7B3F4BA8C6FF90D2795A3E21A25FCB6DAE2121A5E2C165554BD7BBDB238F91D7FB52CA60365D3891C7BE01B0E10FD3E11F0113EF83E14AFC3E820F369249D961C98BA51AFB71529E0E08BB5C8090CA3700B87E8410490A899E3E830547E767727E508516D3A4EFB3B1A4155A8A44E84120CA9B5224BAE59DBD850ACEF3AC350BF3D3D3D720C597E0447CB33C05B944FDDB4ACC74F9EB46531983E38A8015EF1E8E0C06613E7FFCADF220CBE790C07BC6B00B65D8034D9BA685D7494C3803C89528F38601A47792452E871C29670FBDB8347027049D37695EF06C145218F91D4838690E9EBADB24644B194AAAA81EF5895D0B4C89FBEB8AF1C651AAE03687806C1A151CD164A983ED4E1CCA32BBF612AE9F74CD7274F9FB5CB289E1DE3A74F054DB9C3714CC0689E50E23C061B33072FA0E80AEAEBEB534A6AA509772A4BFEA003B89710F0639FED801300552A4B85F89D1EFC9B93F0E5E039DC4F994407599AB2095DE6ADA1DC007E805EE6F8B8643299B61E349EB2989E7A703F1D408E21DB533F1AAF1180BD499EA99C7A015FBF4961ACD7644C46A2E181370572AD9F31A7A8F40B94322ACAC68991B56D0B8604D564F9A1A28434F3560F1A4E036B9E4A43652983CF9797975D52C4191194AF4031A00C658AF1BCBEFE7E37BF5BC8209AD87B18A6DB1F50161DC9B1B8B8A848BA8EB3743B8D3D7E55263502B8700FF003BA8E5C01E37B8DD7DF789FB9D1692A457920A3C71458DFCDBBA468BB8765100146C8CBDC3C8BB2B453782E9F51167981D164A5D846A530515639A96F3C1E53BAD160B36500F7514E20D08EA5329801E2733A88683E5D5A56CF7469F43A605C0B5229805FC2F632BA40EF0584B0D2254457047E9F4C2615ABA6017385A056A7A67217113984111918A3D2C353BA2847A70015227A1835A2E04296E9EA60B8F7901DB4DD63E006EED729C012472E6217DBE6ABE16155061918D6FB12104D47E832A82B03F64E32C9E7B420E5049F5F79986B1EA2A72631BDA6F231B4CB7416A3866BA7FAC66809E761349A5D240DD37B38299FD1F0AEF9AD86ED1A2A1095D6CD128D6709636437501D741A71B2FEF33CBDE6A41EDA483678EC70E9484F0AA87770FA3586C5D208505E47D40601195D3EF4D8CD775EAB1BF06E6E75B503D6BC18D988EC455F109041448335DCE7215497A13B3BC125E47DBB13443AEDECEE4286EDD25FD32541E67E12E944DDBC23975BED58B3C5F67682DCCD40384EA70320573542163D7B031D16A3C097EA3203689710113DBB7130595DAF5967A7D0E3B3D767EBCA0BD428D839180CA10D6EA87E9EE30804D88FEA41C2ABB69A194298AD6DB55A5193C439790D971D942BCA1A4600AE5DBDDAAE424493056EDAC2CD94BA524F2DCBED4A07DAB238A7D10986E144CE09548D34523000B91A01F3F3F39A7F1A0C715EDF0419C5263C4321CC1FE6A2260EDDAEF2D7FB9F14AD9652C18C2941263E2F9CABA8F31D6F5FCC6B929AE60F1AA15B54EFD079CD94A02CD58015CE702FA9A3B4BA757E15A85B5858E8687DC94FDE3E832949036903F5724B64B3CD43741CDF439F03BAA18EBCF926609947D453BD7D7DC55038D484336CDC042D3DF8376E6A68B8EA0E963627F2D4C2A5C986236C186CE3BD85F25745DDAF01F29578B4ABC6E40D04434DDC2E6DFCB3F1CF6EC9B2819426D60E67A95CA10C80D47070F576CE0A053B168B968687861B50B682DB5C9DFC9448A59AB8AD62AFE5E8BD28DB94D95EE3568A5F4BC9A24C9CE58423E12A6CB2CECFCE7C70DE2174DF45607EFE2F5B60E4D2107D992E0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (115,1,'Rackmountable_4U_server_3D_(96)',0x89504E470D0A1A0A0000000D4948445200000060000000210806000000269CAEF10000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000010394944415468DEDD5A5B6F54D7155EE399F16D3CBE8EED31D8E6663060CC35D03440A89296044A9A469552A9AF6DA4FE84AA6AD4E7B64FED639FA356A95A2552A4DCB918B003D8D8180C0603BE61833D631BDBE3BBC733FDBE35678F678ECF84A09496F4245BC7B3CF3E7BEDBD2EDFB7D63EB8E2F1B83CCBCBE57215E2761CED14DA49B47279BEAF7EB48FD13E413B03FDCC3D53FD3C0B03E4E6E6D66565659DB294FE329AF769DE7FD64EF114D7025A13D643837CBCB0B070EFB93400BCDC1308048E50E9988F4AAF7F1EB4F70C0C798FC670BBDD1FE7E7E737F5F5F52DFCCF0C505353539A9D9D7DC2F2F2D7D18A9F33653D6B43CEA1FF0C9C4FE10AC6E87FE606D8BB776F03156E79F9F7D1DCDF1165FD37647613A62CB8BAD8D5D5B5F4AD0D70F2E4C99CA9A9A963B0F21BF8F963B44DFF27CA7AD65704ED34A3636565E5934B972E0D7D6303BCF3CE3BD5B3B3B3BF585C5C7C25168B1D4557FE7714229E1B9930C46DAFD77B16C9C917EFBDF7DE0769CFD07E84F61BEB6F0199EED852B735B86BF76E998944E4BB78F90A0A0444F95CADE9524B0BF4391D1F1C1CFC14042E393939B2B4B4F47B8FA5FC57CCC0B1B131999C9C140F06CD3E9E909FBFFDB63C78F04090E1C8FAF5EBE5CCD9B3F2C3575F957BF7EF0B422BA3C0C6C6DDF2C20B07E4E2C58B7260FF018944A66564745476C3B0A74F9F9697BEFF92446622120A8565574383CE7BE4C8610987C3125D5E96F28A0A69F9EA2BF9C1CB2FCBAD5BB7A42C1090C2C242F9E0C30F05619D51EED2E2A254ACAF91427F8194FAFD129A8EC8AFFB5A6538D72F7FFAD9BB12737BE4CFDB7E2B5EEF8AFCEEDD0A89C662DF26FB4B7AF1EA1FC95F128B46655D4DB58C61DF5D5D37241E8BB998B8F87C3E29292991E9E9690F0D10E4605AC4839F801F9D7816CAA1A52A2A2A6579398AB62CC16015145329159595328371FEA2A28C8B0B04CAA408CF0B0B8BA4B8A458E2F8AF0C8A2B82120B8B8AB52F86BE402C8EDFE82B461F1A726D71C1D8948568944ADCC72726742EFE2E292DA5E7A4EE38ED9A9D9D2140C061DC88049F080C503B3F29CB9873B624080378A5B63A22D9D92B78BE59AA6A3689CB284EFF37F75505F397C7E396EA75EB60388F2C411743C30F9363538D71E8C03E59C4FAB2BD5EF9E8A38FB46F6A7282CAD7BF01451A9D1C0F6354D000AAC583070F2AAE353737EB80D84A4C72FCB9525A562A8FA72675821228AD105E555E5E2E2323A3F2D69B3F95AD755BE40B78F489D74F4867E735F1F90AA47AFD3AB909AFDD505B2B37F00EC773B12B98B3167DFE42BFBCFFCF7FAD86676BABDEFFF6FE3FF4FED64FDE803112C6AB280F483FE6A4F7B3D56FAB9737DF382557DAAE4A5969897AD2E5D63639F9DA6B72A1F9A27CFAD9676287E7BF37EE93D9B857EA6EFF51E25978B8CF7212EC6DFF9E4659D5A32B690CFBDD0B03ACAB0A6AF4D1512BE060D68834C315413FD453383C2695E5651286F32C2E2C26D772ECD83199999991F1F171CE534803683C370006AE5CB9A283143FB1CEE1A121858B310C66040CE177DBD5ABB09C571E3E7AA4061B1A7A20AD508007EFF0B9D79B0D8507E47E6FAF84012FEDD7AEC91CA2650A9E48C1A17048DAAFB6ABA767C4CBCB97A5AFB74FDADADAC40DCFED1F1C101FA29111D2DED18E68CD96FE81012904D6FBB1E1CE1B37240B0BBE7BEF9E442027AFC02F51286AFCF1639D6F67EE848456F2A4A92E2A714F5C9A2EAEC77AE3B2B4302FDD373A64D502E990624314B9269232D621FE602DAEB70010330DFE1CC75E5D1EAFC452608EF0BE63C70E99806188529CE37E5959D9E6E3C78FCB9D3B77A4BDBD5DC37DC396ADBA5184C993F281A7481D12B7E5E8B2149505A4AA32080516C8E4D434FEAE90CEAE9B32353EA61EF6B5D8FBA45E8701F45CCADC585BC314066B880262F3E456F71D998B4C4171EEAF9DC7F504392E877E426571A05C3ADB5A65643891891E3D7A5476EDDAA5CE0E0EB8A31180F448BDD35C890C222ED1C505D9B2A15615E2E4B17979792AC44E8A246CF207E7A401193D9CA3001E5B01721D1A1E96C19190CAF060E37C1E854218516EF455072B799EA47DF68B186AC6DA0991CFC86194C935B10FCEA5ED6A7B872CD3F85C0B8858E700FF2C628F3EC82237911C9D089EF3ADF24EFA3E0D6F728CF1F46030A84E4CB458B6A5AC5C1314AF9C8B2B9AC535F1453E788C90E53D61009784C0DE543CB197CFECAD1484C877EDFDF3F3F3B271E346F0C4886CDBB64D1E01AEF89BF3D0285E2C5A3D125C505981ECC6EF9375503AE5F6200A29930678F8F0E19A565555A532ECFDA85B5406656DDDBA55E19063B916CA324A08C201CA03A5C0F080041175DCEFCDAE2E3508FF769269F662EFE765649A75F14E98517C89C5AD9A611582B87F1ACE32C68A460016B7821F6EE4A8AA84044B233382122291885A97DEB536E39855AF8ED8EA056EC6292A8C60CE45C3DDEDED97BE81070A07A1D058326CF93EB1DDF292B48B1BA077D9E7A701EC17D76622216EE1DF35283BA114ACC9CA5C8C91E820996492EC5351C2BCE724D344CB8A1511F1D86A0450C78420EC318A35BB69801330C04D2CB2888BE002D400896365B970E182BEC08963B69C990AE518C28D13E6D21BAE5FBFAE0A632ECFF7B94992690CCF372123DA883CB9BBE7AE34EEDC2E9F9F3BAFCA3A73E60CCF9D1CF927AAD89DBF4619E6625452260DD8D1D1A19ECF75986B5FE32ECB604BCA3F5F9C392B73737348245A951C9D6412B628D309867851D6DDBB77551FE4503538E4B2B96C10C439F81CEB1F098542BFA201C639C0F2CE1928BF4021086FE6E6E5CBC1438714CB9C688845543AE1ADA6076114606B699230378922AE570BA2B0A6626E9946CD311A1EB3427A9356B2E7CE9F7724DB09CD6C5C8E14FCE597A71D4978726A4A0D5659BB514263E30A09D1E88ACCCECDAB53ECDEB35772A0F81614968E3291B565A2FDD15167998F0143738890721485A90680BC45E85AC30C86BFE4B13A6900C6F43928FF9429E3D95F0F0C87A51C21C884AB53F8D3D3E959342C3D8884CD792B51C471DEE6D6AB5AACF8A1EC55E24F90D406642A8C2CBEE72493FD4ED1C86754B419C3B9186D2CE00C09BBDD59C878BC50CA2220365BDFF3A360E31846B9934CAEC52909E19A193184E0D4A4410B464056CBE52B6B3800C8400C3C10B7AC92651D2CC5ADA3E53D490EC07FF3F3737A34C08511EFB9B9D446A1CC1CECFD6CD5D5D5BAB09A9A1A25ACCD9B37EB518692B01A33A65565198A16FE0EA0A8A2C258575016E726B9D91B21865984BD9FC6A64C92EFA64D9B146BD7A17235599AF1C240699994C028A5DA4AB4AFBBBB5BDFE73A9C6412C25838D9FBA970CA1C4656C731A3485A784FC2633CBEE6E00E7B2CD742D772A0640458A574CD2A09B354CE5165D0A38881762F200931E5723AF8B26334651845307523318D00C258032C2082CEB55C4A60268F412C994E78CC79195DF6A873F250BECF964AC2EDD76F58188DA877652523989E4F2C77924947228F4D01CA9E243375DD760EA05C386C2DA3CEF479CC40761AE56BC6C2BC9AB8D8D2C2EF021ACA548C7D8384162EDCE9A08A1ED88B8A985ECB228F1E43E5138678B19CDFB373877C75B5438E1C3A08126ED273201EE03536366A14381D0333EA220E27B57CC6F0EFECEC5423DD40856C886F95841B741C332FBFAF403E07E173BF4D4D4D72E0C0014799741ECAB41BDD647534CEEDDBB7F55D2353952CE911409DB0DF22E9789A014CFE6F1AF35017FA0F1DFA9E84C7C6B4395D7D03038EFD8F108EA9D7343CD76571153965050A98989C92DEC107320F4F1A044C71450CE93DBBF748D7CD9B8E641B99E9CD58F436C359D24E462D1E18001C8D817CCBAB0187A321595E5AD6FD8D7926F4CC8BD90F1DA955CFA4D6CABCD5DD9DE938542E343727A228C5C854328F452691309455E5270FE2520D60AE3408A27752F9BC33026600313BEA138594B176EA45CBB3FFB175E6927A190E20AE12361841F4441ECCD14B3F45C6928F4DF308E2C1F043292E2AD4ADCFCCCCCAF6FA7A85377BC469D4A090E2BCF61C9CA14F3864C1C488633144D9542C39A1E35AA792B00FBFD1A967453E5FBE64819487FA8735EDA50713EBED1723995C6827684605F7626412A2A83F2202659EB71C22668B00B69855A551ABE506828C019403B2123849E5329C9DCE6708412CF39D2EF6137278E7E2B76CD9A29E66F822E109A2075794555C983026899F8498695EAEA5C0CA9C9C8C4EC593F079D8451823DC999C9C17E5F8F27D7A90E7CB4BD42FFCDEC1E7996432A3A1219DB2202393A7BC3400BF77D0D9D28EC9520C608CC0D7F17725B5FA079063B11D8212672BD9EA115C18BDCB4EAC1C576C9DE33B154C06DE1861542AB317DEB9A12C289D27A42D57DAB4283AD7DCA25E49B99449CF62B39F07199C774A174D756CEECC4AA8141E17D82B610D7FCF6AF240997412A7BD70FD8C5C3B0AA4261F4626A381C6E71E8DD15323C0E8168E518D77FEC219179C228019023D9CE91C4333D538A9464A25EF340EB13C92DEBF61C306190057706124B2C4B90B8F6DF3E5C517F66B11F4F28B87B42EC8CDCD53E23650E834AF933C36EE83A1CFAA9B0E43A546F598239454D4FEDD8DB26BC77669D85E2F7B1A1A928767031697659AD7692D06CBB9CF9E9E1E359275CCACC63706304711C92F68AB7A9B630444AD422C4D489C100454AEDFBE5D093804453A11542612E6F702A78B3238DF3CF09D95680FAA6292E5BDFE414440548A5017D4A210EB4169EF7290370A12753E8F76C9282B731B33732F8F1105138C2A54A5FD207DCA511844354E28DE08A3D1C9DA3B3A9C65A618D02E7364349451263FC3E614F8D32028B5E0A4EE6980651301DBA16C7A8B1A00339234FD05150A1D7E60AF9DF8B8685A9D186ABFE85524417A21C751F1F44612B77E5B3E7F41FBB660F3C30F1FC9FAAAA00C21139A89CCC836408113D11A1266BF3D0D25099BA28F10454F347500A3821F86A8767E2CA20198FDE421DAFAFBFBE4FEFDFB72F8F0E1E489B0FDE27A399F7D3DE422EE938518F5C077A93BD64CE4A1B3D86302826249CE64B4182E80DE9709414B8C00B23871CB4401F3710F2A5566409C90CCEE1482ACFC9CC296A445659BE8E21C3B77EED4CCC1CAE03444093B59189F6B7D93E64775E236C9D6C8486D3426D762EFA71C2A838A2221F21F17501ED7A7506011625E4EAEE480DB7250647ABD6EEB4C2BA4CAE5FEEDF35AC593AEDFDE6F1C8D8A67A6C43B0F2E0D99937798821A28A243322930C52138402360543F84B8131F468C02795A99030F090D3FD00D73D298C3BF20E0585ADF4E9686B038B7390EA0A750B9243A863ADF69EDB8A63974F39556FDD0CF8CC81C7F7073F6E2879B30296D26E2E73E289784C80C85116048B8EBCE6D8504424F6A664799F44EEEC5E99C8991979ABF4BDA47FBD5628F7BA44C3A1FF7E8B2A09D8EC579F41F1D5806C4DEC2D4520F0532E7E6820DA992375C56D1608E5033FD0325A767EC272C98F2DEC006E737F04139FB5199B21E7809645C5294388FE73AF88E53ED61CEF733ADA5AEAE4E0991B0418F645F381C4E8ED98DCABB1E631A506B34828CF504160662E49853806F2AD37836938CBEBE3E3512E19A739084AD2FFAE2CDCE491EDD10926904B41832C25697A5C0BF22C476D26AF08020BCBD7A635DDD1894B132343050200E8BFAB617E44511B66B407EE4D1A3BCE9A9A96C6B83AEFF943CEC315EB76DDB9A8F080B8B8B59037D7D0559AEA716F5C417C09BCB95C1E0E2EDEEEEDCEB9D9D3EC22C0CD48EBDC711ADDD70B45FFE1B72953321215755FF0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (116,1,'Rackmountable_5U_server_2D_(128)',0x89504E470D0A1A0A0000000D49484452000000800000002C0806000000ADE0B05E0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000019524944415478DAE59C69905DC575C707D0C2AE05494868F67DDF97376FE6CDAA19CD68D74842BB461A2D6843FB32A3158C70624061318B64498008AB6C638371B1B84815A9CA3717E5CA87385F6292AA24E52A2A2997B103445027FDEB37E7E9CED5EDFB4418910F99AA53F7DED77DFB749FF3EFB374F79D141149F1D3912347BE373474E4CB83070FFDE9FF2B1D3A74F84F838343DF9A366DDAFC5F1B376EFA3FA5C1C1C1FF08D23314F8A351FEA9058B964A5656B66CDEB2458C30A4AF6F89F4F4F4DAFB9D3B774A496999DCBF6B977DEEEA9E2D79F90509CACF2F74D2E2C57D72F4E831D9BD7B8F545555DBF7796E6FEF9475EBFAEDFDE6CD5BA4A6A64E4CC765E8C811698C36C9A6CD9B6DD9DA75EB4CDD0E7BCFBB35B575B26FDF7E3974F8B0B4B4B6C99A356BED7D7FFF7A698834CAC1438764FF810352555D23F90585D74845929D9D2B2D1D732DAD58B55656AD5E67EF8FD556C86B25A9B233522FF97B7E20773FF6A694AFDF2FAF5FCA9677DF4F95652B3A12EF4105251552156D93AA26A85DAAA166A8436A12D429B5B138D5412D9DD234AB5796AD1D90C52BD799EB0669EB5D20F5AD5DD260A95B1ADABA2502B5C769E1F2D5B2FBD011397CFC413974ECA4CC59B242A29D3D52565527070E1EFCEC1B0360D9F23552545C2A0F3FFC7D3973E6AC1C397254366DB94FCE9C3D2B4F3DF543E9ECEA91C71F7FC296EDD8B94B22D198C45ADBA539D66604DF24B19636A3900E8934364BB4A9C5DCB74B53738BECDB7F40CE9D3F2F8F3CFAA8CC5BB0489E7BEE8CFCE8DC3959B97AAD9C38F9802D7BE0810765D1E225B6ECD9679F93254BEE95871E3A2567CFFEC8287D50FA370CD8FB274D3F68832BFD1AD808488EDBFB53A71E963EF31E6D3C67FAB8B86F99E947ABED13D748634C5ADA3A4C9F3BA4C1F4917EF3DC68FACA7341617142897BF6EC956DDB77D8FBE7CB32E55FD26F9487AB4B64FA0F2EC98DEFFCAB05C2EF7F7F8B15DFC09658E2BD58FB1CE9EC992B5BF71EB6B46D1F3428DBF72B0DC90EE8007444764207A1A372EAB127E499732FC853672ED8EBC3A79F94DD878FCBEEC138ED193C217B86E2B477E8A49C3AFD843CFFF2EB72F1D54BF2CA8FDF94C1074EC9FE630F4AF79C05323834F4C7500098BF9986D286AFF76CDFBEFDF4CAD5EBA5B0A8549E7EFA19F9E0830FE4FB7FF197064987EDFD4B2FBD24BDA6E1175FBC689F07878ECAF11327EDFD850B17ACB05F7FFD0D79EFBDF764D7AEBDF2C8238FD93214F5E0F71E928F3EFA48CE9D3B2FCBEE5D293FFBD9CFE5C30F3F94ADDB77CAE9BF7ADC963DF1E453D26866899FA23E6A34B3A977EE2279F5D5D7E4FDF7DF975DBBF7CAA38F9E8EF3326DACEBDF28BF78E71D79EBEDB765D59A7E0B58CA4E9F7E5CB6EFD865DF79E38D4BA6BFCB2DA028A37FF02A282C0904C09EB911F9615FB16CEC8D49D9A17AC979A6586A36B60402A0B9AD47FA07B6C8D3E79EB74A849E3DFF62829EBB005DB474E679E82539FB429C50E29BBFF8A5FCE42DD3FF77DE93972FFD54CE5D7C59CE5F7C45CEBF14A70BD05F43AFCAF3867EFCD6DBF2ABBFF9485EFFE9CFE585575E93170D2D5FB9C602C0E875B2A1E91E9A6A757FCB2DB7344D9932E5DF264E9CF8E9D8B1633F35059FDE7CF3CD7F98336F91E4E4E64B695985D4D6D64B71499931EF85F61E739A9D93271595D5E6B9CE08AB480A8CD9A4ACB22A5E461D9E31A745C525F6BEACBCC2802A7E5F5E5169EB61C26BEBEA2537AFC0B895725BC6353B27DF4379A16479D535D8598BD5A20DFA9D6BFA5F3BDCBE1DCB70FBA565E5961FBF57D7D4DAB2F28A2ADB067DD5762BAA1A2CD53734198BD12295D5115918AD944DADC5D21DA996C2BE0AC9D95C2CC5B3AB65C5CA3259DB5F6A2C61BD54987A50B979B7A63E62DE8F5EA148D45A48259EAF5093E5A594A8D718A77A0F357828E27BF6B65F5D1791ADDBB67D66F4FA09BA45C7E81A9DA3FB1473F356494989DC73CF3D627EC01C584A4BCB90050B171AF4EF913973E6C882050B2CCD9F3FDF49F3E6CD1B4173E7CE75126D2A6D36FE1D3E0089F862E5CA95327BF6EC50EAE9E971526F6F6F28D137F8D18FD6B636D962E21C7EA72F617D0E23FFD8BD846CBC6334165656AF5E7D5DF941F09B35ABCB80BAF8BF55AFE8185DA373749F3263C68CBF2D2D2D95993367CAADB7DE9A00C0F4197140DC7FFFFDB6B1BEBE3E6933C20AA28181013960022D573974E2C409E3DB1F301D9A25070F1EB460E29D356BD65861DC77DF7D323335CD048655B63E0160D82087868664D3A64DCE72DA85DFB66DDB4C70B9CEC406474D00BAD83E53B66AD52A59B162858C1F3FDE04A4BBED18019E0B54F03A6C82CB30E01D3B76CCF244B18C71E9D2A556093A46EE333232A4A8A8C8D6DFBF7F7F687BB401385DE5F7DE7BAFE5A7930699205700064FC6B768D16213CC675D56BDA263748DCED17D4A6A6AEA6F7830D71100983A759A1853211B376EB4CC40F0F2E5CB0309A1226018BAEAA8700A0B0BEDB5B2B2D20280FB93274FDA365253D3252727C78204E1003A9416440C76EBD6ADCEF2FEFE7EDB364A80BCBC21040B088CBBB3E0C3AA6CD8B0C1F20C22EA98F4D804A44B9C759081974F6D6D6D628C8007456564665A0500D25D268BA26FAEF600C08E1D3B9CE50A72AEB4E71F237D26EB32FCBEF202005D0FEBFC3729E9E9E9FF54565626CDCDCDD60C6AC54993EF9269D3A6596475767626501644800386A0DC550701840180CEA6A56718E04D95EEEE6ED9BB77AF45F8A2458B0289594B1D57B9CE0E1700180FFD45205CDBDBDBEDCCD1FA7E5ABF7EBD7D0F30BBEAA0301700002C16203D234BEEB8E30E3B53D51AB9DA03206A498288BE840100F02C5DB60C997EAD7A45C7E81A9DA3FB146392FE99071AA420018049932D523059B158CC76C6256CED088A76D5E17DEA604D108A5ED53C329B338C70C68C196372F06CDB797E7799F82D767DE250A89BC0EDA0385C00C2C7B57885CEF5F6DB6F97BCBC3C696A6AB27D74B5C58CA3FF00CB55873E53A7A3A3C32AAEABABCB02555D4EDC0264C90D37DC6002D45C6B5DE99BAB3DCA014ED818B13A4C1EDA6742C05B5D00635C660070D75D772500808EF91D9DA37B00F0090F74AEA1A16104004A4A4AED4CC5ECD1A82BE05A6882453A42C3DE60CB1BE8A9090D0B6AB2B272AC608A8B8BADE0C284834FBE16E1A070573980C8CECEB1E610B781005D75295790BBEA00E2E3C78F87F629332BDB8E0F990318DC8EAB2E65C9DA23564277AEF2A6A6E6110040C7D41F06C0271600D5D5D556E0D16874040072F3F225126994C6C6A82556D61A869F237E32BF5B6A6C4CDC87BE1769BC8A108EA6855EAAAB6F88539D52FD557546D4E5EA21573D000EE0AA4D1A5963D241259B3A7A29A82F3EAA6F880C5383196B244E0D9EAB21C608C8E1F76D797AF95DC5D3C3AFC24CE04993262500808ED1353AB700307EE013FC1FC8F603806551D0525F5FEFF443DF94B0163AA320DCC3DAB56B2D92499128C79C5167B4787A096BC615F780892D2F2FB7BC192341EC6810661757A1848BC40511EBB0E6C0D8704D58BED1E047FB5E9EFA1BD6032B3279F2E4110040D7E81CDD63017E87DF4028F8412F0048CB50524B4B8BF5C7CC9620AAABABB3E6B1A2A2C259478328CC2D02A7930802D7823F870FFB0826374DB89CFCFC7CC934517310613E19ACAB9CB16880445089FB2140A25D5C8BA676643AF04730B82A577B6409B4E12A8734D025CDE33E6266246E017E8C17C06101EEBCF34E2B4FD267E4E16A8FE09AFEBBCA55EE8C0385E2F2182393169E8C87C9E405007241D7E81CDD27000082E8B0569C68009065FC2319002F11D484F9223A922CA0510090122A00346245608585C5362DA32F0C2ACCDFE2DB49155DE55812050056C61F21C30F011BE1D8BE30F6305FAA5905C1A0AB0EB35CC7C89536F5372C0E314B5676AEDC78E38DB65F4ADF26D055000068FF1899687E00341A178D7C13003066E077A087011614148C0040A131C9048120ED5A82113AEC2A07F1410040E89ACF171B9F0C6FEE0153588004A0407CB220D00F00808C0F0420F497B413E1111C85815C01159699300E3F00181F8B6928C95A000300C6A8A96AD862166B19002799DCFD00601CF004ACA481933D41203A86EFB00BB802007C06E6D70B808A8A2A7B6FA248DB785847608A005CE5CC66DA20FFC59C8240FF922E6BF7F0234D0220CC72972F67D0F8D4307F8FC926FBD04C84B40CFEDE7EDD7DF7DD9627824398AE345641842B7395337E14C64216591072C5CF7B97A015000A02C6E86A4F17B334560A222C196E0D370761B159D5549E04DEDE2C001DA3EB04008CC9FD87DADADA3F23707C931700992667AD32D162ADB1008DD16822AAB7141D7D9A3933D546E644AF0CA4AB2B3EA0209A659439DB80C6550E751B807575BBDBC01CB2CE51595965236F52A668B46998E27D8A1AF7A7D41C8B4993C9A32D99BACDCDB111148BB5486B6B9B8D995A5B5B1344BA89C0D977484B4B3713ABD2F224520FE3091F78EA7D10CF9696380F2F4FE50761C5BD2E001DA36B748EEEED56B079F8033374C2840957003071924D2158AC0149A315210791AE961598AC83C518FC167EEA7A912E4D632510A0FAD9D11A8F7F191C934B2C00CFFCE13132BB35621F6D9E9A0DE0B691E5240F00D031BA46E7C3DBFF29E93535357FA4A21F00E34D4046B48D70E2682A0C2498E2575DE5109D41C96CF6E02E5891DAB76F5F622510D39A6A66076919BCA8C352AA8B50DA30920349032404ADEE8059A22B81F8C7154610BA19447D804ECC1344F022E8749543BA1740D08C3BC1C5E94AA0BAB48C8C4C9BDDE09258780A6B8F72F4E22AC7D5C08F6056F72218A3AE04E22290AD1F00B489CED13D00C8AAAEAEFE8C8AA4445E00602E08C41888A66A4184F2F0C7A46FAE3A28CCB517003143308FA437F86ACAC2D6DD51866EA60491069DAEBD008224DD0C4280F84F14E4DACC22E6C0BF337B5C75FCFB1DDEBD009403E059EE9E3E7DBAF5D3F41F45B9DA0300BCE32AD731BAF602009F05806721081DF31B3A47F700200F7F10040022644C09011B0A426041A4393E57571D06E207004A4430CC4EDE4D4FCFB0691980831FB3D765F2181C56C2550E4F6F90E8170E11B96E06A154FC263CF92D88C8D9D5A2B8EA301E17009800710B90657992551034023E577B0084D4D1558EE201A50B0080D6BA800000A073740F008A8C39F8DCFCF8F5B871E37EEB05406A5A9AB502986B84E39A6D305124BAEA30E3E82CA64F1762102A5603623510F3488E4CD6811903145AEE27848999759543F0C372D136822622C7A2692C00B86FBFFD0E1B19138031E35CFDD72C266C8CA47C804E17B874CF42FB431F008046E38C1F20BADAA3EFBAC7E222CAF58009F5192320559E585F2F008C8EFF115DA373740F004ACDC31766605FDC74D34D4F7B0140C0427E8CB2101851B5A5EE912773608A60306B3DC68F069DDA51B34C39D46B8000793795B2B2B3ED922CCA405808DD75FA081021F0B0134A800E85BBCA8998D99861B713619132BAD22DCA9904F14316C1755068D8AE2994999563F9E1AB7537D05597B264ED11A30132573999821700E8185DA373740F002A8D39B86C66C9E763C68C79C40B0036833852D4D6D63E22AD21D521A581DA4CC066A92D4E1CD9EEE8E8B4D4D9396B0411B490BE41A4784A0060FEFC0536ED24C56C6A8E596A3669958B623E229A57B2FD0B21ED2BC7D2D90AE67D522C3F457DA4FD8A53F308225D4B50732C305D83D28D95D33E27E339925FCCCD2F8427E9A631FB0900A063A3EB2FD039BA070035E6E12BF3E3E5B163C7FE8A451805007BD7A08B9540D0187630817A9854571DDE57A4525F832966149681D98CC5617660B6740FDE45F0C22AB9CAE149DBDC635D98C1582AAE7AA08419C8D903FC3467E4E88FCB9D68D015E672D42F635DE89B8E953EE8F635874D592164FCF44B37A882488FADB9CAE1A119060B5C7A4536F044A6B803B500E8161D9B772EA373740F001A0856F0B7C6DF7FA100986000C066100DA2148445C78388A81DFF48FAE6AA83790D5A0A2638D2881F00100422147C3C2923F58308D388C05DE59A22F9978209D4700D8C0B37638463C786DB41A8AE948B36F0B761691B3149D052306083571C703972DB6DB7D97EE19EE0EB6A0F19E0565CE5C83B682F0099C293F100342F008C8E3F47D7E81CDDA71893D0CC039D21F8F202203333DB46C774524FF1B848D7C95DE5DEDDC0A0CD20DAE768B941A84530C2E2EA6A0F409159B8CA99EDD7B219C4987523EC7A6E06B10E12B700B956C6CC6EB518D76B338831FA01C078D1353A47F700A003130FD248FB88C2E30B0613ED77006CE5B23883D2C2000033ED4810A170EF42106910045F5552515189E50DE888DC315F6180624686F5C9BB19044F3642BCDBC1BA19C492300219CDCD20946D02ADC4C21320B316C0B800C6482CA5BB9EA3B51944FF5964D2852075310A0074CB7891393A47F700A087C1D3390E817A01C0C7201C0DE76CE0686D0661EA5D757273F312EB101A577C1BE1A00484E13DA2E62D47686C063166F6F0931D454FB6E50DA0C2FA84550200CC4478EA0652B2A3EDFE0D2C2F6121C2CE32724AC80B00748CAE872D404FCAF8F1E3178006848D304C9A9000005FDAD4DB2348F596B8BFF23C7C34C947DEBAAE3AAE32628EA2A262A93633C74B264A1D41DEA353FEE35F4AF136EB471247A73C47A8CACB2B4C16901F3F96A56DD7D55D45754AFEF63C32F11EC5F2D395636F119B05248E8225E39990A57F3CD7CAAFD1A6B99A05A05B74AC813DBA4F31E878838EE10FFD00E0F32D820902AAEBB9194487403AE7010938E1C93AC2F5E2A7D68899C34CC04FB33B783DC7A82BA1AC03902560315961BD9E3CB1465852B5000A00741D895B864B29260DFA2D42C77CB146ED0500E7F4315B94E3735DC7BD380AA6418FAB8EAE5B836078E187587FD7634FF0E1E0E8B871E3ACDF24820D6B8FFE60CA921D53830F82C61D701256FD23EE00A0E9B26CB2636F94D31E33CA5587F6F4681C3111B10CC1AAAEF703F4D4B40C2B5F1670E803ED86C90C5924933B7568879887788D2C4765BAD804AD5E00A063E48F4ED1BD05004BBD7474C68C19F65CBE02007F4545B2000498ECB3A8B0A08DA0CEBB3E8E3034558398112C708C1B37DE2A9759C2352C084CD627DD9F088A90E903331F00904EB1831716716B1018764C8D2CC29B052057FD8D2C80F61500F48BF1879DA2429EC94E62514E1C01D8FC63841F5F062900D02D3A46D7F46D040068848F06BD00C837310028D3D944D4EA5AE88119C80B5B080A02008AC73C32E35BDBDA136702710161BB7D9A5686F50980F801C06FF027AD63ED1F0010AD636D929D3002E428CC55CE4CF403008BC3F8B8628DD2D233AD7CE937B3366CFF416586390F93BB1F0004B3BA8B386FDEFCC48110748B8EA99F008031251600749E6FD6C8C3EDC9910913A4B8B4DC46AC2C5CA8B05D2B6FBAC0E22A5717A01B141A91130933DB9961580014821B60560200D72A980A0745BAEA20084C2D51343C01951E4D8798CDF0D30D28CDF35DA447CC5CE5FA899CA65FF0E377DD7B60AC6A019033A00300C964463F5D750033AEC79A7B334616E518BBF2C4ADEA790078A263748DCED1BD0500E60F4191EE7901905F58627D0A568075E5A8FF5898874033EBDBFA7CE59853FCA813C79AD83B40C9DEF7BCF5C86139138095801F9B4EDE2F8CBDEBF9EC35F02F6BE2FB1457AFF7EBFBEC6578F709BC047F7CA946F2EC4BB8EA42EC67B0D7A163F5137CB16AF1E75882746D1E7E7C1B88E2898558FBA74D17BF787B5D89235F413C75DF25881F446A3DD90300748CAED1790200EAAB30357C2BA700282DAFB62B56202B7EE85077027B46108A08FB1EFF5ABE6D1F18D8683B4C6AD66710CCC021DD308AF38E1F7C1CF1BF028C798712BB8CBD7386E9CAA769577D8A66F8F1FF88962E5D66D3A6957C8862664BD7F01883C6F74DC61834BE55ABF8707695E4E6155A7E90EEAC5E2F996ED83060332B3D158C6ED131BABECA02E08BF1197CB9AA00C82B28B6B3111F8A0F0BDB08C15C6302C3364A3057FA9939F50116FE88674C3A8A9F3265AA7527588DB00D286288B053C30C94200F93ADE70730C12C83C28F2B7C30FD984A04C2CC08DB98D13D0B571D5C2075B8A72D22716206DD48A22F1959D9F650067DC312D00F577B8C31CC0DE2FEE0471DEE75FD5F654CE0DD612C8C0200DDF2BB0DB8D502E4E4E4FCBD9E6143107A2E90DDC0A292CA11DFB28FC63F33F09F5E21F0225F8D0B7FA93DA081B23065F83EBB851C40F0C27FBACA190B3C0098661B7A36917409E110281103B0140C3F94E2EABF7E1D4CECE0AAA3A77F3408C46DE95171823578A667C60F84A0787886654E0000B9BACA758CF41B00FB654A9A8C7B983265CAD77A1E9077D0353A47F7299999997FC703D1B1170053A64E93F2CA7AFBACFF750221B83A83D2C204E8DD9C093ABEC44029D3CFA6B000CC18577BD46190C952533F00BC6710B1000080AD60F8254BB9E017B614ECCF021400DCD3176666FAF08920662A3CC336A034080C5B0AD6FF3BE005808E910942CC6222FFAFBC00E01D748EEEF90F21EF2A00083638254BE519F7CC94CA9A46AB100241D0381A9F6B834A064FE75896D57FA1C26F5CE9A47E8D1406283DE7173623011502067CF0C39DE9421042550BC01634E702F4238CFFEDD74FFAF91BCA2063205EA1BEEED9A35005000B4A7CA11BB601A5630CFB9F048018222EC0CA105CEA42106321B5D67F11836ED1B102202D2DEDDD9469D3A69DC104D2181122793895F92F5A55B5F1C89CDC918160AEAEE7B7EC088CA54A362C308F61DFFEA970B886090710852DEE18E1D84C800F4498E161DBBDC936BCF44B1EFD02DA4FA4B6C400CC52FE154EB2C527FD9F04611B686AC95CE5C5C5256471F69F44A15B74CCEFE81CDD7320649209847E6DFCC4C726DFFF78CC98311F9B59FFEF7BF7EEFB72C78E9D7F36E6F3B2894ABF133239EC65D3B1AF0CCFEF848C89FECA5885AF4DC47DF9BB2093D55C3659C997DF153FC8A48F978DF5FB4FA3E75FA35B748CAED139BAFF1FFE702348A90EAECA0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (117,1,'Rackmountable_5U_server_2D_(64)',0x89504E470D0A1A0A0000000D494844520000004000000016080600000070BE9A340000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000A294944415458478D98D94FDCD715C7C7A672DFEACA2F56E40530660960CC667618989D99616618B66137068317BCEF0EF516A771E205C771E244AEDA38765B292F952AF5A18FFD3B5AF5A1AE9BC67655B9066C93AAA7E773E10E3F204A8B7434BFF3FBDDB3DEEF39E75E5C22E282CE9E3DEB8B46632FF68E8FCF25921D33E313FBE6BABABA67060687669BDC2D2F56D2E0D0F06C4767D7CBFDFBF7CFC613C9993DA363B33DA9D44CAAB77F66746C7C36D1DEA1DF0ECC76F7F4CEF40F0C98EFBACEBCF3787C2FDC6ECF2A8AB6B53F1D1A1EF9667070F7D32BB1D66F86C70E7C1D3CFDDEDF3FBAE37B36B677CFE3E1DD637FA96A689EA96EF27C277942D1D9D65872B6BEC59F7E57E3F6CE84E31DB3A981E139B72F34D3DED9FDD4C60CF1F743A51FEFDEBD3B5153D724F7EFFF4CCE9C7D47BEF8E24B393F75416E4E4FCBB977A6647CFC80DCB8714B46C726E4DDAB3F953B1FDF95B3E7A6E4E1C34772FACC39F9ECF3FB3230342283C32372E8F051E9ECEE9563C74FCA4F2E5C92EB376ECAA7F73E53BDE7E5E1A34732B1FFA05CBE7C554E9C3A2307278FC8FBD73E9464678F9455D64A776A40921D29F9A8B140227D31C9B93C2933333F9044A74F1A5BC2323179542E5FBB29573EB825573EBC25EF5E9F96ABD76FCB7B376ECBBD9F3F9007BFFA4AA63FF95CDE9FFE58AE4DDF950F6EDF95FB0F1ECA57BFF9AD5CBF734F864646FFA1F1FE88984DEC9B366DFA74FDFAF5FFCAC8C87856DFD8220D8D6EA9AEA993FA8626A9A9A997DADA0643D5D5FAAEBE49AAAA6AF5B7516AEB1AA4AABA561A9B9AA5BC7297B8DD2D52B9AB6A1555D7D44A4D6D9DAEAFD7F535AAB7D1FCD6A97C9DEA81B0852E6C2B3AC4E3F54A57A049BC9166A9EF744B7B52DF7B7DD2ACDFBCBE8084A331E503126A8D883F105A46814070D53B9FBE835AC351696B8B3FD7C01F1333B1BB727373FFB061C306B0205959D9D2DBDB2BC96452229188A19E9E1E5174A479E8E2C58B924AA5646060408E1C39A2413468B26A1425E3D2DEDE9EA663C78E2DE38F1E3D2AFDFDFDC606CF838383525151616CB4B5B5A5896FB1582CCD8F8D8D99B5434343E6DBE4E4A4BC5D5868FC72AE1B191991BEBEBE34DFD9D929274E9C307EE1EFBE7DFB34F1752F89959889DD555050F0D740206012B079F356696A6A328A11867016839687B45F1885183B74E89034E8AE666767CBDEBD7B5705ECE4718004747474C8F1E3C7656878587272728C0DA7FEC3870F9BA4587ECF9E3D460E7B241C7F9063A39CB2C3AA0F1F2CDFD5D5653681773C637F4749C91CB11233B1BB0A0B0BBF6E6D6D3509D89AB54D9A5B3CE2F307A4457F0D79BCBAB87589570A8696F3A565650AF35AF10783CA7B8D0C300EB5860D742D85426109045BC5E7F31B1B4D4D6EA9D0F2F1FAFDE26EF6A4C98F7DCF128FAC6FC59AB2F24A2D09FDA6B6D2EBF479E53A7C75F2D9DBB6BD2656622676576565E5539FCF6712B0656BA68138BB15D460A070386CA06E79888CB28BEC12BBE3F1FA4D4679E7D5C02D0159270F8C9161D790D30922D806AE4EFDECA493B732F801CC0F1E3C28E51595862710BB0EFB90D3777CC58FEEEE6E235B5858F48A58B14BEC26011ECDA441C0D62C53CB38476D5902762B790BB353A74E69A3094A51519191FBBE1E00049D6574E0C001292D2D35E5E45CC77B1CB63C012043C0D434A5959B9B674A02B2EB2893956588AFF4101243691516169B0410B349407171F19F1B1B1BD325A03522DD3D29698BC5D3D4D7D7BF8C4FF5F699DFB0A225AABB5755552DDBB76F3775E66C6638ECE4D9C9783CAEA51032BBD3AA949797A7BBB8F00C85C311A3874447A25143EDED494D4097590742B15B58546C360B7D56AEAD2D6664AD5C5409DFF9862C72DA3BDE102B3113BB6BE7CE9DBFB009A009E234462C8C128984D90D27246942649BB5A3A3A3D2ACB585C364D9AF356889DD59C9E32084ECA0EE2CFA68666113C4028124278F1CE503D1A069BCF41C90E15C0792F0C1F2F83431316164D081AFB6048899D85D2525250FE8FCBC7CEBAD4D266060448010C240C7F2D0F9F3E7D350BE70E1829E0BEAA54C1B2110C7094BC0D5C9E33832D8B874E992A949B56F9C73AEA3749CEF1863C8F14CE99C3C79D29400092091761D01DA9167A714E5420960F3F4E9D3E91220666227015F2AF3DCF6806A3DA4F4AA20D082D81D145B3EA6B44F9B17F5C537145755573353D3E3C6124871F27CA7C1F14C534396714652D1658975A0CEF2B6F9B1BBC8524A455A02941281DA75E8C457A72E360F199E91CFCBCBB709784EECAE1D3B763C72BBDD4FEC148846DB0C74F885A8AB84061B75D4328A5893486812F4B95E0F4240D9D49D7EB744B296F18B756D793B350824AA760CA9CD783CB1687FA18E63B178FA1BFEF46A0FDAA57D271E8F2F93B34DDACAF17E49D7823DED55A6071033B183805FB6B4B4FC87979BB4073437379B4CE2946D5640DBF21087185B0253535366AE5302ECA4B35730AE9C3CF5B8720A68275ED53BB0C75875F60E3B05803F2592975F60D0C418B4EB2C3A2C8FAFB604B0C1B3CE7E830062267612F06B768197993A05323333978D2B08834E1E45240983D4A1BBB945F46C6D60EA1C97F6486B0978E220CF0405CC376FDE6C7E9DFA490CC9749EF0E845ACB3759F9B976F1A991D9110329C2D56FA8EAF2480DFFCFC02930062267697CEEFDFA70F4299D9E624654E6AFF27716AABD5CB4E402F1DAD3A6E2CDC22D1A5328A441669713C8523FAABD4D1D1A9B5D8AC3A820BA3D08C431D737A6981ECFA88D1B754929400172DD638E5ACEC77C9418C52ED55AFED4188D85D7A19F99B4D0025A0B56132AD103144A6E8AC9687682C34157BD0A00FE84C3588A0BB5A02494E9E5D6427D819CA8812E1FC402373EAA709E293E5F1C7A20D742097999565E418D9761D3DC1A90BDF2919C6277689439BE79C4D00B1BBCACBCB9F502F660A2802B66CD9628C7C5F0990007E8132F0A4316EDCB8D118728E4B8274F2E805FA384390940CB7329B144BF40A606E7902479E44581B9999597A00AB326706BB8EE049CE4ADFEDA99212C8CBCF3709206662E728FC98ECAE59B346B39AA3708A988B8A57E1CDDD1BF2F982CB797F30FDBCF0DEAFF5B80065642DC1FB57F14B6B38A17181E1D2140C860C05167FCD7360914C130D99233704E4F91F02700F8696E4022BE502CBE5B0B32D27E715B11233B183803F91E18C8C0C3D076CE3BE6CB2ECBCFF036527CF0E916D32CBE1066857683727CBF6BC00B1E34E1E083AD160AFB53446A77ED06146E6220F1A400E76F0053D3939B9E61CC12EDB75162196671482427B5842AEE0EDA23962256662670AFC0E256BD7AE95E292F2F481E67F5D6A508803D418DD3D476B193DCE75940AF0B63CE3C8260E9DC09512B00715BB0EFBC0D5F23600CA8DA4B101FCF3A65A0F6024C5AE432F8975FAC0650D79FBFF809A9ADA97C48AAFC4EECACECEBEA2179227EBD6AD7B92EA1D78A6A7BA6F931D9DAFB553BFB1A497A3657C32D9F1269E684FF30AB337A5A565F36A705E619DA69E9ED4BCEE649AD7AE6FC8F2BA4BF3BB7655FD9B5FED23868734194697E5153DF31A409A577BF37AF87AA567966F35C1E9F7E85034BDB13CA4895CC6EB25EE9FDA03FE48CCC4FE5F0E5A5A7BB9A331FF0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (118,1,'Rackmountable_5U_server_2D_(96)',0x89504E470D0A1A0A0000000D4948445200000060000000210806000000269CAEF10000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000011054944415468DED59A599055D51586AF8885A08803282083F43C77D3DDB76FCFDDB7278686866686069A796C469179922828CA204E800A3861555226D1B25279C94B7CD007ABF2A256459F1249F2925851AB40A9242BEB5BCDBE9CDEF75C0CD13CA4AB569D73F6DD7B9DB5FF35EFD31111890469C78E9D7F983D7BCE5F67CE9CF57F4BEBD6F5FCA9A767D3A555ABD6FC79E3C6CD97FE136A9D30E9ABA696895FFFAFA8635AE7373B145C1FEF883FB069F396CF7272F3E5D8B16372EAD429E95EB254CE9FBF205B1F7E580E1F3E2267CE9C9586C646195F5A96920E1C38202FBFFC8ACC9A3DC7E63FFEF8615DBF4DF99C97858B16C9891327E4E433CFC892A5BDBC376FDE22478E1C91D3A74FCB521B3B2FDBB63D22878FF0BE33A2A01ABF03070E2AFFF21B525E7EA154D6364B73DB5459BD7AB5D437B5CBDBB923E4838CBB246DC729E9F7DE253972B24CAE5EED27B3E737D9EF506DF30499BE60A94CEF5A2A9D5DCBA473E13299B170B9CC58B45C662E5A213317AF90598B574AD7CAF5B26DEFA3B2EFF1A3B265D77E99B364B5CC5D0AAD9179CBA0B5327FF95A79F6CC39397BE10D79ECE993B626DE3659F7B47D5F9202F4EF56A5E18ED6F76CF8BCA0A8549E39F5ACBCF0E26959BE72B55CBCF8966CDFB14B9E3CFA949C537066CD9E27E72F5C50809E903D7BF7CB1B6FBE298B162F5500CFC8F11327E5D0A1C7E4C28557654157B7BCF2CA3979E2C9A3B6FEB5D7DF50D057486D7DB351756D5CEA1A5AEC5A5BD7A4F7CDD2ADBFBF79F1A2ECD8B95B8E3EF5B49C3B775EE6CD5F24AFEBDA433F795C76EDDEABEFBB288BBB97C999B32FC9F1E32764C386CDF2A68EADD76B49698554D63449F3840EE9E9D960E0EE692D9527DA0AA5644D878C3BD12E4F9F2AB0FDCF59D0AB80BAF82459B1A6478E3DFBA21C7BEEB41C879E3F6374E285B372F21A3DF3E24BF2FC4BE7E58D9FBE2D6FBFF39EBCF5F62F15E857E4B9B3E78CF8CDE8E5F3F2F3777F25BFF9EDFBF2DA5B3F93D3E75E95B90B16A99C9B1E0D626DD80F1D3AF4D0881123BE1C3870E0973AF0656656D657F98525525E1E938A8A2A29D4FBCACA1A29292993D2D2A8DE574BBE5A592C56256565E5525C522A311D2B282C9668454CCACA2B6CAC3C1A336BE45A32BE4CF20A0AEDF7FC82221B4F45FC0E3F7860D1B1CA2A1BE7CA73F07DBC0B8F2B2C2AB1B1A2E2F19297572015B11AA9AE6E504F6D962ABDCE6C8CC9BC7854CADB754E7799B44CAC56A546A5AEBEDE7EAFAAAA97FA8626696C6C31AAAD6B4CDC1BC56F44ADE1D4D44BF16B54AFB28C1C39F277600CD6600EF691B163C7BE9F9E9E2E77DE7927FE20770E1E7CB5A8B844162C58208B345CCC9D3B3789962D5B26F3E7CF4F1A67FE8A15EAAAB366D9FDC2850B65DEBC79B269D3265302EB264F9E2C5D5D5DC63F48CC5DBC7871D238B464C912E3C33BB9B29EF0C2784D4D8DCC9831C3DEE7AF635E777777284FDEC51AC797B98CEDDCB9538A55916BD6AC315953AD45DEB0F72193C302DED0FAF5EB65D2A47651E0FF66182BD6600EF691B4B4B48F333232E4AEBBEE32050C1830E01F23473E2853A74E9555AB56493C1E4FA2EDDBB79B70FE38421D3C78506A6B6B4D11BC9CB9F0C9CB2F50ABAC968E8E0E696FD7B8ABD61724E6AE5CB932691C22A7346ADE8137D7471E79C436C59A61C386194F806E6A6AEA4393264D3240FD7168E3C68D2623324F9C38511ED61CB76DDB36536C7A7A86F144B1616BD90F60FBE360E6F6EFAEC8CA7B9A9B5BA57FFFFE97C118ACC11CEC237AF3456E6EAE592D3FDE72CB2D327ACC5863D8D3D363C2F9C43856E38FCF9E3D3BA502082D050505063E16C43548BC1F00FC7188F1A002F6EEDD6B63803078F0609B934AD63D7BF6C894295392C6F1C6A002006AD7AE5DB26EDD3A0527D3F6CF3A94E0AF457E3CC41F47E1FBF7EFEFA3007832B7BE210EBEFF0263F60AE6601FC9CCCCBC8495B5B4B49802A034B580DB6FBFDD3605A83E613D588A3F8EDBEDDBB7CF04C7823A3B3B65FAF4E9762536F7EBD74FF348A9AD653C48080558FE38B465CB167371C060938CC19FFB3BEEB843EEBBEF3E03306CAD967E6608FEF8F2E5CB35296EB07B1408EF69D3A669C535533233B38904062A0AF2D7A200640A7BDFEEDDBB6D2F107CE109956AAE72F8823598833D0AF88297D6D5D52526E42A580D8DF1246A8C3B6ABA21C5E3CD499497972FD535B59AE0EAFB52ED8DA9A6B62E417DC66BEAAC082009D7D7377A140FA786646A08A1424DF0C93C1B7F10CF7C0DC10E5FB0EE5574A679C017D4DE0D0D0D890959D9B9964C9C25FB8455CC993327691CADE3D658133C79C633B82F55B0F0047812BE9C953872C9CD1F87B056AC98F792E0980B4F425B7979B9BD0F9EF00F12E3E4067F1C227C41DC0306EB213CA940AB2A4214790D1EFE5A570CF8E3F001373C01DEAC759834355D8F30608DFC4E017F6451500169E99906149BC5CD274C98D087082180E18F23849F84B892E0CACAA316F750144AF11318829258C3921EA109B725F6C393E7AD5BB7DA261E78E001E389329A9B9BFB505B5B9BAD696D6D4DFA6DEDDAB5169B019250033FF81276B372726C2D499562C35F8B52C1CC1F072B7FFFF0645F4486A002580FF609056049D743507EC24DB074040912F34956FE384050B10405A004653E75FC830F3E687111EBF29587C24958FE38048FA002A86CC843F021FE03304919B07CA208601FFE38CA0B2A8077A0048C2B27374F7B832A1BC7DBFCB57800EF0F7B9F93D1ED1F9EC8490877F8827542015A0A5D429871E3C62526141597CAFDF7DF9FA8F95D3DEB086B83B13F0E9184111A8B66E32E8C108248ECF9F9F9B279F3E6A4756C0AE585F1E45D088C4BA368F8BA10337AF4681932648825BFB0B528206C0F004D22753C91917B7813AF2915B16AE6F96BC1CB25779F9083BDC08B50043FEED9BFC317ACE101F691418306FD820736E226E468A8A8D5A4575151A9140BA568B497CAA315C9A4E12641D1A8F1CACECED6A4D560F73F063534346A575EA95D709176B3D5EA6195F6DC97AAAC73775455556D73AB1354D3878CAF5A2A0503F7A9795625F1AC4AC193C2A35E65CDCDCB4BE00BD6600EF6917BEFBD77130FDA952526D0DC6061681F37F209ED1312FC71D788A179E21E8D150994E4CAF105E1C4D5CC7EB385A5302FAC1123BCF03BF1196B822771984487DC842FBC8E1E2148C471BCCD1F87083FE4013C8BB5DC8383F5019959E6FDEC236C2DF308CDFE382188F0888CC88C57E17D94E7188CC31799E101F628602B423CF4D0438909C3878FB084429C0BEB03A81458E38F038CDF88F18C302880D887BB03B45F3F23E48D6AEB6023C69531F8A8FCC6939A9E8D0709A5D118B9F01224E6071B3180730543BA3662AEDF600FFE5A9487A2FC71DE13568480575DFDF52207ACC10FEC239AC4B6F3A05AB99C7011ED840919081916E7002A556CE485583A3C01082FC0520BB41326091357E1CBC683C47C2A067F1C228E0312A09370F1043C80584B23168BC56C4EAA988C1CFEB8AB825CB98D4C18107BC8C8C8B2AE1D8BFE6F7220FBE7BD7820FBC7380969010FB8CC7BC11E05EC424005E7834419AA0214696CEDEAD2525337EEC8850F360E53BF15EFD08E6FB95A15D6E313DF1848C008C7A67C2BC75A5379006001B83F4E18CCD1921105A094B0B5004BB8F0C7E107DFB035F90585327EFC785B4778F27FC7A0F080B0B55453619D7781F274F8823598837D44EBE83D3C6862F8C84DC8D632ACA3639AD5AB71ADC3E37DEAF260EDDB6220B4B4B41A619DBDD4668405B4B54DB078CA51C4E4C9532C1157F749846154F3BD04FF464D981404BC9B64E7A82615D526533087D178195885453255F75F5D53F3FD7CBF8727842791D80349F8233007FB88969B077850B7F8DA4D18356A8C5924DA0F4BC2580EBFFBE3EE34902BF5306720CC25BE8F1F5F6A56C5067179BFBA7049BF32A4F2208EBB2E95388B55E345840BC21A3C79F6E5710777617BA048C05ADD9139F98E704158CACACE49F435189DBF96F0C13A7F1CEF66FFEC9B9EC6ED89B91C650442D0D7600EF691E1C3871FE2212B2B2B50A7665848C1729D8041C2DD217F3C781C1DBC5235555454D819381B4329FE5A420289302CAE321E6CC4E0C93DB178E8D0A1A6509413B69679617B4089C1468C42C1150CD939B9E60DAE694CD54384BD2F55120E2A00ACC11CEC2323468C388C859274DD848CAC1C6B16D02056763302D04CB18E2414B4804AED2C696EF88082B5F9EBF0361258184F2A1378B111AC0CF0900B705000B2A76AC4507ED81E001F39B06678C3130F80723504B37FC22C4AF6D792AC6FA4708CCC1D83B37F72463009232F98833D1EF044920232B2A5B8B844373B512DA12929FE628D53A64C0D8DCD7C402777F8E358BFB6DED69C911BDC380A7184E0C93CAB2D8F907BACE9A9BA9E2BA2DAE46937698938AEBF73E45B56566657774F08218C71726AA4A570D49AC35AE349694CB3180D506656B6F1A4A9E44822C8976B2C56697C833C1D5F72206B7CBEC8E92B00EC49C2EFF2C04159A213D68489E6D12095401885F5076144CC26E4D4D5D55B3262AD3B890C969AC800E19A3E119E1C61B110168B05C3D77DB2747CBF8FC24A5DF739150B2E2929B5FD074F4D7F085F3C98EE3971D6A65833AED8BF13C9CBCBFB9C897AB5AF614C1833765CA2340C4B8AB820E0FAE368DF354B2421BA58921DC2B5B64E90919A30496C61C91DEB272986254CC20BF198DFE10DF8808E1C9C2F91F4081DA91238DEE28F331F3E1805EF26543066E76269E966C5F0253FF86BC98DBCDF1FC7F383FBC74B0875CCC773DD1747B0BE86F9E728E0331EA8D19D02388E064C77F6EF5B35C222BC3F8E7507BB55978448A2EDEA4D74AD6C382C07F01EAC2FD5819A4B948EA73B3A4601AEB94B95C0F11C7F1CC370BD039ECE91057CB98E4BCB303C5C0CBF991C401EF3BB76E65656D5241400EF6B0AF82CA20F9FF576AABD9F0C9994999D2BF7DC734FA212F21B2EC60031EC1BAC4BBEBCC0851CDA74F2C9A04183AC0D67E3D77B86EB84B59264FD7197C8705B9A3ADECF3BF0241470F7DD771BA0A9BE5FBB4A67A2D74CBAC60FEF628E3B7EC703060E1C68719C44EFAF650DA086BD8F71F75F1AF0C53091D57D920463B0663F609F500035FAADB7DE7AAD0ACAD34EB8D88E50FB9E6E56F4523426159A888227A051484B4D4E10EDB4D43B3D851FC98D24863BB2DE279A1D5B1F1823E1D9696355EF89E775AA329938B9E5B32431367AEDBD41E2C4D2C91424C7B7F7C4F73AB10FBAF6529593FF3B8A85F0655E257B0839257627B33E5FF60EB6600CD60905141616FEDE7D0EC49A9C0248426892C474B3441CC5ED5DA98815E211244CF77F3E374BC8E7121DF7F0A4C4245613BB19BF5939DD492D7242F021CCF1CF5FBC136FF86FF6EF64862757CE8D5C080263F73F4C608F023EE10137C1ED98949E956FA5132E4418B999AED57D3EC41589D76C887313AA213EF29057D874581749B590EAF8DB1D98F14CE8705DAB4BC2283C4C1ED6921CC30A09E23DFB23A46070C88992D3340750A9C01779FDB584AAB0A4EFF213B1DFE5020C059E7837D882B10B9F8AFDA724E10F89875402FC78DB6DB7FDB3B0A4C2EA6040418BFEA7472C838DF9E310DA4601243F271084D6870CB9DB36CC1C36112414E48E8EFDDF98EF1265300993875000EF0350C0F2E5610D9B0DFBACCA6FF0450100055F2C18058C1A35CA0C10A0C3F68F8185ED9FEAC74FC2C84F9FA2E1E75B30661E98833DDF847F8D466884147C8E77AF96466BAD62510DD9C6FC6FB40846C512F6FDD6FDC71A3C0186CD013A6B5000C91D4B0F4BC2562DE93C7FDC85184222CF58A6FB672E14C091341EC0982F0F5E12F60F0480881C244E1A43F71F7B3C530511AB6998F0F4B0FD536C84EDDF7DE684DC877DE6D3540E1830E0EF600CD6E003F69161C386758F1933E65305E6D3FEFDFB7F5A5454F4F59225CBFEA235ECB79327B75FE9EC9C71F9C7A0F6F6295762B1D877DAD57ED7D131EDDB1F8394E7B7EA1157B52BBF326D5AE795193366FE60528FB8D2DADAF68DF2BF02DF1F8327A4B25E1E3D7AF4878AF1C78AF5C763C78EFD44B15FFA6FBBDD2A17AC31E7CC0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (119,1,'Rackmountable_5U_server_3D_(128)',0x89504E470D0A1A0A0000000D49484452000000800000003508060000008939E30D0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001A4F4944415478DAE59D7970D55596C7A3222A20FB224B76B29004B24112028404026481B0EF611781B08320CA22E3D2D20AE2328AA8B8E04A0B386ACF38E5D454DB53D57F4D9755A3E54C4D95DDCEFC3155FED7D33ADD6D8FCA99F3B92FE7E597C7EFFE0292086353F5ADF75EEE7DF7DC7BCEF79E73EEF27B248948D2D586FECB56EC52FC42F18D427E84F84FC5338A2645CF6B41EF4EF7574368B7D8BF6AC531C5BF2BA4AB71C30D375C4BF85AF181628722FB2F8200BD7BF7EEAF58AE7843F13B85DC7AEBADD72C7AF5EAF543E233C5138A3AC5CD3F1A020C19326494628FE29F14DF2AE44A3078F0E06B1683060DEA2CFC51F173458B22EDFF1501D2D2D26E544C553CA6F84C21571BA9A9A9D72C5252522E05FFAA38AA98AAE87ECD11202F2F6FA062A5E2678ADF2BA4238C1A35EA9A456E6EEE358B9C9C9C2F156F2BD62B865F35029496961628F6297EA5F84E215D899292926B16C5C5C55713FFA278483149D1ADCB083071E2C4EE8AE98A27159F2BE45AC7840913AE5954565676057EA738A358A51872C504983E7DFA60C51AC539C5570A0962DAB4693F2AD4D6D65EB3983A75EAE5E282E29F157FA528575C7F5904D8B469D31B3B76EC941D3B3B193BFEF2B06DDB76D9BA75DB5585F6E10F974580EDDBB7FF72FEC22532322B5B1A1B674973F30A993469B28C2BAB70EFE7CE9D2F39B979326FFE02F7B9B4749CFB9C9333AA4354564E94152B56C9BC79F335E9CA97C58B97C8CA95ABA4B0B058993BCD95D5D7376AB25820CB962DD7CF2BA560F418A9AB6F90155A6F6AED34292C2A767F5FB274A9E4E517C8A2C58B5D3FC61416691BB5EEFDF4E93324BF60B42C5FDE2C8B97C4EAE5E48E8A405E7B685FA7D7CF7598BF70A92C50F07E7BD544395A365AD6D7D448E986FD9273F79352D9BC458E1D2F91132747CBC2250DF1EF8191D99A5C8E296D43610C79718C8DA1A83DF28BC6496DDD2CA9AEAD77AFC5E513A4A0785C1B4A40998C6EC5C4EA69D2BCFA7687D5B76F94CAC953654C69B9E4A81E77EDDA75E1B208A05FF870FEC265CE088F3DF6B8BCFBEE7B72DFFD0FC8CE9DBBDDFB175F7C4966D435C8A9532FB8CF7BF6DE2565E59517A362C2453870E0A09C3FFFB63CF5D4D34AA085F2DA6BAFC95B6F9D95B5EBD6CB43477EAA65E7E5E1471E51A32E953367CE382C6F5E29C71E7DD47DEFFE071E9496962DEEFDCBA74FAB6116C9ABAFBE2AEFBCF38E6CD9B24D1E7AE888EBD3B163C764997EEFECD9738AB3B278E9F28BFA521E816C2540D594460766F2A696CDEEFDE98214F9AFE42439529227438E9E97A4F7BF90AC5D8FC8175FDCE2D4B7F68E49F1EF81495367C8AA8DDB64D5A6ED0EAB41CB0E873560F34E596BD8B24BD681ADBBE4E0030FCBF1A74ECAD1274F38ECBFFF88ACDF7EA7DCB17D8FC3861D60AFC3C69D7BE5D04F1E91071F7D424E9C7A599E7AEE25D9B1EFA0B4ECDE2753EA1A65EFDEBB2E8F007BF6ECF970E9F2D5324A09705C098012EF3D7C9FBAF1DD72EEDC7979E185177546CE94E79F3FE5CA76EDDE23FBEEDEEFCA9E39F9AC34CD9EAFC679C5956D6AD92A0F3CF8902B3B76ECB8EC3F70488DF5AE9C38F18CCC5FB0585E7FFD0D39FFF6DBB261638B1C39F2B02B3B7AF4988C9F507D49A86F688ACB6AD9BC557EA204E0FD23DA46F38AD5F2E6999FC99B6F9E512FB05C8975D4955167C3C6CD8E78AF28799AE62C70843C7BEE9CDCB3FFA06B172F1046808DD32AE5BEBA4259515B25852DB324E770838C6D9E194A8089D5F5D2BC6AAD1C7FFA5979ECE9E7E4B113CFC9E386679E9727C0C9530E4F82675F90BF6EC56B6F9D97BFF9F9FBF2F67B7F27EFBEFF81BCF2E65979FAF997E46935F089563CF3C2E9185E3C2DA75E7943FEF6837F940F7EF14B79EFEFFF419E3FFDBA3CFBF2ABB248C7BD6FDFBE0B11E7304969BD7BF7FEB457AF5E9F76EBD6ED53FDFC69FFFEFDBF9ABF608964646649838680D5ABD73AF75CA2AE7EF59AB5EA7A97495676AE1A70A1FB5C5151A9B3A6D2BD5FB868B1531E75F8CC776AA6D4BAF7B39A66CBA4AA6AF77ECE9C795A2F5F8DB4525669FB79F9B8F94659B3769DCC50779FA533302BBB63D0C69225CB64CD9A75523AB65CFB39DDBD9F39B349093C5AC3C66A6D7F8D6B7FFA8C7A2D5BABA46994823145B24ADF37AB97C81D55E0C21ADFABAE99EA64A7678C948A09531DA6D7CD543DCC91727DBF797A891C6FCA56029449EECE62497D3C5B46AF2C974387F3E4A70FE7A8DB9F24E595531CC65554CBE49A5A1DCFCC3634CC94BA8659096872A8779815475DA3A1E96234C45EEB03983D77812C59B64266CD9E1BFFDBA4EAA9EAB9775D50BBFE5AF189DAF813B5F5277DFAF4F918DB27A9B1DF607366D8B06172CB2DB7C44FAFD233325D06BABCB93934FBAFAD8D8198EB1092AD4E9912434DCD1487EAEA1A55702BAAABE3983D7BB62C503265668ED4F773A4AEAEBEB58D5A2F4C7E1CD3DA308D7E0631AD0D3366D4B9F6915751315EC68E1DA7649C1BE877EDF7436D00217D655CC8CCD03192FF3436CEEC3C79B5E1BA415EA98E8FFD0AB32B36C6D6D81CDB270D1D3AF4C3828202193E7CB8F4E8D1235EF1B6A1C3A56FDFBE9A456ED5A4AC5E93AE15DAF179A1B8E38E3BD44DEEF09683BBEEBA0B5724B366CDD2AC749B766E817B5DB26489266ACBDDFB94D434254A8D4C9E3C59366CD8E0EAF8A02B1559B56A95B7BC5989BB65CB164D3057CAC2850B5D7B73E6CC719F176BD278FBEDB73BD903060C104D7A1DD919A3AFBDB56BD7BAF6A2FAC418D00372E81F72D00DAFC8BDF3CE3B252D3D43CACBCB958475AE2CAABDCD9B37CBBA75EBBCE5E80D793616FA377F3E9E6C8D93C92BE4CECCCC8CDB151B636B6C8EED93F4C3476104183478887062B77EFD7A470084CD9C3933141B376ED44463AFB71C1C3A74480E1F3EECB634792D2A2A720AE1FDBDF7DEEB149C9C922AD9D9D9CE189A88B6F31289804C28D5578E8268DB9465B2F7EFDF2F77DF7DB71BCF525D45DC7CF3CDCE581804A5F9D6E2F40F1247ADD70F1C38D06E8C63C78E95DDBB773B993B75190C0953D3D2243939D9E904C244B5A7B99833AEAF1C632307B2D39EC93E78F0A093C904993B779E931746006C9F949292F2D9E8D1A3A5ACAC4CDDF59478C5FEFD07C8A041837529B6CCB92A3AE2332E1D4078535393B70E83892240CC03A4BA533F420D04C073F8DAB3D9E62BE7BB6104E015D03E244021CC7CC6CE8CF4B5475DBE47B8F2D5C1D88904B0316210DE43008DBF4E572D2D2DB268D1226F7B7800DAF495D397300204C7481840A76657C689ADB139B64F4A4D4DFD0F3ECC9D3B57AAAAAAE215FBF5EB1F670A7FC7BDF83A620A8E1A0CDFA70EDB9628822D510647E7512E332C352D5D6EBAE9261933668CAB1FE57530D6A5781D6639331BB2100B99EDC8C400BC721ECF7903DBC7843B3C41184CD910CB5787B6A9336EDC3847F8F1E3C73BA222873EC43C40BA5C7FFDF56E0230A918A3AFBDD5AB573B6FE52B07100BDDD12FBC0CA48358364608C031B3D9155B626B6C8EED21C0E77CA0F3C4A620017247E5494646868BDB9732DB18A4AF0EEDD3D928836568E6DDAF5F3F77BE0EFB71F1BEBA280FE544B5873CE4FACA091543870E93DB6EBBCD791D14E8AB8BD21823848A0A85B8DFA83E4100C6A7F1D7919838EDAB4B5947ED110AA32667A54EB4810307C6ED8A8DD1492B013E7704E0640977C1EC0C12202B2B4767C7D850945C114A0368FB7B6A5A86CE8CE2388A8B4BDAA1280A81EF25A2D0839C9C5C1D63763B59616D1787205E5652EAE0EB7371423B69E999EDEA167D4F99972A2F3FBF806C3F6E576C8CADB1B92380C681CF9909B8A24402B0054B653273B2CCAE02AE91D9959797EFE231CCC7AB74953C6631F2C8B02B2B27384F3169D2A4C88CFC4A8177412684638C24D78D8D8D5D2AD3926B563A4102606B6C8EEDF100BF2531E00BC4E5F639C00897691237F8D2C891234341CC6370858585DE3AC433AB43ACC510C4283A48BC22C6A21CDC23320901AC557DEDE1F668C3574E9F91875C5C21E182586F3900CA278C107270DD8C9D7ABEF65809DD73CF3DDE72C02A0199C8E13D13C7E231F91146678389E535FA8480513A234440165F7945458593C704B27C00D926D312F46008609CD81A9B63FB3801582B073D405F25404646A6DBF4E14B243551B1888E44C56C064B1D924A964B18CFBE07689F0318362AE80BCAA2F3ACA9C3004148267DE5C125129F133364721A64303B58E958C2E66BCFBC0686F4D5B159CE1879C540C8E13D6326698500DC0CA65F1897A59AAF3D8809917CE5362E880C0112C74892BD54C73660C0C0761E00FDC609A06EE0B730958131E382042009246960202423511D2119A1C3BE72061B46008C4898A153C84336C64331B487E2C300CB69C7570EE87322016C1F807266184B5DFAC13851B6AF2D5BEA42645F1D3694120900A9303C5ECF3C808D91A49971F8DA63FCB692F101AF944800FE864C88CD2A6040C00360636C8DCDB17D3B02E07E83042091B8EEBAEBDCDF691C23F980F270CBBE720B01B87AE23B2E951080715865F09A9D9DE364F7ECD9D30DCE76D3C280DB4339BE7280B151222E0FC2219357327AC0985901B0F444318CC1174F1903FD273F89DA9D24EE9A1CDB5C327918C408C006147FE33B51BB8FB4876C5F1DD33B7AA51E321997C9642B3E1802B0653B02A8CBFD8DB2FF0F74989DBF2001D89B275B64E380CD2012A58B51E5804B21B108FE2D88AAAAC96E9F9AD7B072304C730E62226D40126609B13A0C0CCE62B90F281CA5F8CAE92FDBA4259A55930C724E40FF264F6EDB51445180F1A1E4E93366C4F7F08367112C236D4F04234002C0B983BD07C9C9A92E7B2756733EC2F904F94AA24CE4CD5059C89C1238A708CAE3CE037A60F298CC36790DEE157D0693406C8CADD5E67FECD1A3C7E79C06666812F7DFCCB87604E8DBCF5DF4C03D3343A3580830D6F70186C63D1242B2D403102A90173C544ADC028DBADA153CB84281614031CC3CDE6370DB0A466E1089794CD8DF0C61046B686870E03DB3997172C906B70F39AD4D9F4C5F3F7CF24CA6BD471E040A2E03B131B6C6E6D81E02A4281BBFA4436C510609806BB44D0694C62E5318988910C5570EEC2C801D37123E941FDC0924B68E484E713B64CC005C5B679C05101F191BE1C00C6F59F9629D098C91D86D9B3DBE4BA6C8A2DF511751ED2C80D94B5D8C47DBC843E91884032FE2347D61FC51ED514EE8F495D33EF22CCC91DB407C5B053069D16D9000D8187DA8CD7F8FED21407A4949C9576104B855D90273311631D7176B49A648B8702DBE3A742EEA2C00E5E01ED97964265366DBB86180207CC7574EAC8E3A0B80088C99584CFF511C64F1793812380C1CE50913C7183C0BA0CC4E3C398EB55351FAEA6B0F02D8C9A9EF3430EA2C00225087A56E2201B039B6870059CA86FFA122EBD32001060E1AE43A08A3E90875C2604B3C6689AF4E478741B4919292E6E215C660F9447BBEEC178F439BBE725B75F80800A16387413D9D42F01A8C91F761B031D2AEAF4EE2188304C063C53C40BA4B72498099B94C305F7B780F88EE2BC7F0E8CE470023799000B60781CDB13D04C8D50F7FD23F5E5077F89B2001468C18E10E1248CAE88C2F8E23C498E8AB8372E92CB189B0C22B6B795B2530FBD827678DCC0C81BD28FB4AD6C8841D6637C010C8B41080B7E29507411927EB634867D9732298088C91B1FAEA6060EAD8E927B39CBFF11DE4315E08C0CA8A83368C8FA7F2B587D76149E72B077825DA2554B00FC11821B725C0C80D12001B636B6C8EED21004FF97CAD7FFCB32AFF6490005C0A657D8C32E9A82FF120D1C0C0BEAC1D85D0C1B0438B600264AB0E7616CDE30433E820E80F6B5D5F3960D6617C5F39174FD82B67BD4E4E804C5F5D662CCAA69EAF0E06C3D547F589F30E74CAC61324C7CBF9EA52D6517B101B52FBCA21769000D8185B63736C0F010AD5557DA3B3ED4FDDBA753B128F154A809159399A6CB42DEB2606617FAF8A816CDAC09226087715CCC0D53087D8D5B01A0D2F0EFAB7B4F474357E999495574879451BB8BA15C4F8F1951781659C61C284890E95AD98A07D8D61626BFF27B9FE176A18CACEC9F1B61D6CD321D06622DA64B4475C5E2B52D503448DE54AE5C564B68103A13E81D08E8DB1B5DAFC7FB13D0428D519F7ADBAC36FBA77EFFE3EEEC908903932CBB913662571D4E76A7145B89A28776CEE088FC06C67F96765B82BDC2FF7F3C9379865D4E98C831FFA4D5BD67F5BB2327388EB1C40E149B883D059874D78361B1BF2182B218B95486666961B23E187A56767C8B3BD0EC685A7E233324922D951EDDBEA01B02D36C6D6D81CDB438032750717A8A86BC42F8304183122C5B9777200CA49DCC2802BB5CB1EBE3AC4F8B0AD609239F20B14959D93EB9240DB55E37A98EFB16FE21E44F195737E11761600D13006B271D91C7AF14ADF3BEB3028B8158C9B471EFA83709CAF9077D02FC258671C06256E05930B2013DB9110F70B10001BD3176C8EEDF9B9968964AB7406E50709C0050DD6E428A7AB0F8398851C0629439D616DCF3DEA82C9A55E970A3B0C421E86679B14792833EA620575EC4690AF8E1DFC841D06B14C269E732B181DDBEAC832F8EF7BEB29EA300842069340E462636C8DCDB13D04A821E9222325E3E7BA526CBDD8571B8B3DCB4F08B8949B299772A70EE55017A3F0773B0EC675F1A818B2D977B07B015184EAE88611E58904202BE7BBCC68FACBDE385BB1768DAB2342757439D6C6C80A842D74888A3C5B2EF3AC05636447D3563FBEF698A9B4D391DE8D004CAC1CCD69486691655BD346006C8B8DD139E3C5F610A00E36F005941124407E41A1630D5FB2E54DD4A54F73AD61B0E3D4A86B63DC07B064C5AE6E5F89729871F40963DB3671708B16A57118843C14C78C89BA7F6704F095D35FFA645BD878CFC4A7AA8D00005241425F7BA633EB6B18D03B6126F61CC694F81982C9C3D0410260636CDDEA01EA92745D388B4A749EDBA3ACC3E31E4067646206DE95183E3C5913C15C1717633F80D0FEAA13873631B4FD40C3C53F28D1766D8D873E12C12AC350307AB48BA5F1AB55B4595A1A90D38AD6EB6BA5AAB4D2B189EDB66E778F6BDFB6A1ACAC3C8E71EA11D8EC0A5EE78A5F8D0B9169F24265AABC4B9199AB1EDC36F8B02D36C6D6D81CDBF3EB5DAFB22E251E2612807B73C4B0CECA567DB00491A758265757BB2406D677F595305C25EB717209664D578E916417991C07E3FA89EDCCD0AE948937E2C969F30046006C8DCDD5F6A793323232FE8D2C1F57843B0C1200B6E24A6D15E0CBB82DE98155BE3AA674B2739696181D23F39EE4911CA05CBD0049207193254D547BF48758E62BC73B588284A2C9E083D7A50805AC3E782E801CA1A36B6F76C52CEA9A9A5D08C17BB1CC240410826CE711C58F484E75FA6515431F68D7D71EFD4117BE723CA5EDF9D30EF9002B2EF21C64B2FCE5C1902001B031B6C6A6D8DE118093250CC155657E54D11D1BF6E9E3E2150DB30AE8E80A36496254D286C182FBE3F6C44BF021063638BA77BFC9ED1AD27914E6DB57B06DD28EAE4BD196EFBA14DE0D021037216654C66D4960D4CAC49E7DB009815EED6F2468C4EB11C9694EBFF48BBC242A7146671D25DF944332CE3212C7883C1E0D3302605B6C8CADE95B3B02D0087BF0410264E7E4394691CDDAE07DEE8604CA9EF50B839DCE25120062A17892BEC9D535EE748E25172E1903F90E7B2000670B6C22455D974A24805D97A24F841A08409F58B2D15E944BC588E8C957CEAC4E2400B3137996991B011823FB2710BF239D9907F1E93D910036C69817686A47006C4CFD3801D4953802E06A38A0B8F1C61BE304E0916ADC061B177621D277D8634797BE72BB536777E19851B87DD6D5BC7767F1EA963008C07D461D8512366C5511755D0AA3D815735603C1EB52F668188A613FC0DA8BBA6216754DCD968196BF845D4133024074F20F08E06BCFBCA63D591406663913C576002D9731996C0D1B01B02D36660CD81CDB3B02E0FE5014A7624102F0DC3CD92A59A95D5DF25DE7E2BA12F7CFE27FAB0A9E1354B9E48EEB54ECFF275E1533E4E68E92D4D4B4F815345C9CEFC79218286EDEF7234AB875C208C6B0E551229881DC4364DF1D853435CD767FB7C7D913C123DD5CC36A77B6D17A0185330FAE6A51C73E07C706389F484DCB8C9D53A84CF4451EE093894E99C1BC26CAB47316AE80E1E1EC73A24C96D6762104DB62636C8DCDE304B058C5ACE159B9D8D5A13EBA4C2A8EEFA54F0B79EE1E831ADAAE5CD5B543E29D3860EBF0E0F525367EC66BAEC1E91C83E61EDC947646BDF8F9F7E073FF182608FA92B8660EF681EC7896CE1ADCFF7C1D63BDF6C5FDB640076D868D2F718C61E373DE53E5648ECC76AF605A82BC449957AA533C074B4D2300B6C59ED8FA220F802BC175E0EE8D00593979ED9E658F4AB88875B1E7D1C3CB691B57451CC45551DF9239BBC14378183870900B27C4E4A8B377623BDFF595238381926BD86F18D8EF0350863CE4B0C94508420776B52A0CE414F43F2AE43026FB7D00FAC69859A9F01D08EE1E0E4DCF74E186FC034F17F51B077C97D9EA2BB7875E916B378C918D8E294347FCA8961100DBD2276C1DF7009999991FF3C17EBCC1AE85711F60547EA173195DF92C3B8917EB5506C12F67F4EA75AB1B08CB14668DEFCE1FB218BCAF9C9960F7E56CB5117C761E83107FC90188C576E9C5D77F5B0530B37C75ECF1704B02E9879D025246CE919296EEF40B0191893EA27E9300BDFACA6D8CE881196D63449FC84446F05A38B6C5C6D81A9B637B7EE0F9577C201B0F1260E0A0C132A6A8ECB29E658F7ABAB6A367D92D6BE5D6AA3DA718F5642F33B9A3AD605B220509107C3208A34080FCFC7C27AFA32517F2A20EBCECF1F04402D832102FC48D207B300499510750767E12F5BB0BD82D9100C1A5350420F30F1280EF60736C9F949C9CFCBEADF3E930B764A93C74D870292A1DEF0CC2860333AE331ED7C63D4124984D78A1F376958C01D3493671D8048A22945DD18A3A9D8354289841238F786F3F1B0321CD03E022B98C4A7BB8D2EF7BE065279E842F64DB8F4ED8328E30620460438971461D405DCAEF2E4062C6413EC12B9B5DB611C418595AB331D67A1DCCD9183B61736C9FA4EEE1242E90C670F72C4FA83C529395A2D24A77260F831808F1AA2B9F6567C7CEFE5F00DC63D4716FF02760A29413F5BB0628283D3DDDEDAAF1F3EDCCF028427574E065CB36DFAF88B0B44D4DCF70B39407523ADA7CB2DF24883A40334FE62BE7C20B975D6CE9898D9910D81CDB7321A4FF8001037EAD1F3EEAD9B3E747BA26FE4867FD17DB77ECF866534BCBD7EA3EBFD54CF4078166F6DF55548CFF4E65FE20D0D9F09D7A850B9AE47E372304759D0C64D6D7377C1B51E742674327D2059D747F563B7F8C6DB131B6C6E6D8FEFF00945FB2EDE863C6720000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (120,1,'Rackmountable_5U_server_3D_(64)',0x89504E470D0A1A0A0000000D49484452000000400000001A0806000000077C5A4F0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000A25494441545885C598494C9CD911C7DBB6AC4856A4C4B6BCC41E30C61868308BA101B32FDDF4C60E0D6633D02CC6EC3BC6D8607B8C9744B9640E934BB6C9E498E49A5B72987B0E8972893489A5643489CF8912C5814AFDDEC7EBF9DAF17862CB9A20FDD55FBDAFEABDAA7AFFAAF73E3C22E27913E8DF414599E281E2D70AF912F154F15D459BE2AB6F1A8389E375948F1E3DFAB563C78EF51C3F7EFC03C53385BC0CAAF3D6A06B7E11FEA5F8A5625D91F7D613909999997DF1E2C555C5AFF4F9B9422C74EC4B414646C6EBE0CF8AEF29626969695F7FED04442291AF949797872A2A2ADED3DF8F15F22A5CB972E5ADA1ACACEC6DE3B9E2239DFBB6A248CBE5C0E726606C6CB2666C7CE2693C3EF67C243E2AFF2F0C8FC45F89BEFE01E9EBEB7F33F40FFC637864E4772F4DC0ECECFCAAAFB45CEEDF7FD738F2E8D163199FB82EABAB6B52545C22978B7CE22B2993C2CBC552EC2B95F5F59BAA1797478F1FCBB56BC3B2B5B52D9337A6647A7AC63C0F0E0EC9CECE4333B6BCBC2277B6B6CCBC4F9E3C91CAAA1A33A79D97F998B7B0A84CDA3A7AA4B92D263FC94D91D6AE2139BBF3A1FCE6B7C7A4B9BD516A1A9AA43A109168AC4F9A62FDD2DC0D06A4A57B505A7B06656C6641966E6D496F7C42DAFB86A4A37F583122ABB7EFCAB7DF7B5FFAE2D7759EAEBDA4049C3A75AAEFC89123EFA7A6A67E54565EADCEDF950175FEDD073B32341C9785A56559D200AE0D0FCB839D47D23F30A4C16CCBDAFA868EC5E5C937BF25039A80EDED7B925F502C798A7C17E2F171999D5B908D8D4DA3F7F0E123DD8D41D9D8BC2D333A1E1F9D90BB77EF4B38DA22F9853E0904A3D2108CC86CB0406A3B4AC43B53283FFA71AAD405AAA5B4BC4E0686E27263665E2615FC4E69D053B38AB94559BDB9296BBACEECE28A4CCF2FC9CC3E1697D7E5E6E696CC2DACC8E0D0C89E96C2778899D83DE9E9E93FA7DB1E387060B7A0B0488635D0D6D6568946A3065D5D5DD2DBDB9B90C1ECECACF4F7F7EBCE5F93898909A9ABF74B47478719C3D6C2CEE5960707078DDED0D09026272EE170583A3B3BA5B9B93901C6DDF2C0C080D1B7360B0B0B52555D63D677EBE127FE5A199F262727656464C4CC81AFE1481309784ECCC4EEC9CACAFAFDE5CB97CDF97A362545DADBDBCD224C06589480AD0C36373725168B196C6F6F4B95529A396EDCB891A4B7BABA9A24CFCFCF1B1BD6B877EF9E5CBF7E5D0A0A0A4C42DC7ACBCBCB496304811DCF1B1B1B66DECCAC6CE31B8159BDF1F17113A49599637171D18CB3E6FAFABAF87C3E1260FC25768FD7EBFD543BBF49404A6A1A0AD2DDA375D8D2222D8AB6B636B350CBBEDCA23B393A3666326CC74A4BCBCC71C542ECA6C5CCCC4C923CA676B0A0BBBB5BCBA0CF8C6187B3AC63811E3B696574F181204804F67979F9120C06A5477DB57A3CB3DBEEB9A6A7A7CD3AD8F29B93936B62256662F76826FEDAD8D8680653CF9DD7801CBA36353529A0528B8BA24EC0CEA24CD8659C8101619D105B801E40C73EBB65E620C15D1A4C4D6DAD3436068D4316AC6F9EA34D06C876EE360D6440CBA8A4EC8A34E95C6E3BC7DFE6841D727B7B47C23EA6BEE6E45E32B11233B17B8A8B8B9FF9FD7E2701A9E7A4561DA2B66CDD923976D25DCB50D05D028140A31416161A3B27710E281DB74C89583BCA8879757D9344B71EE304626558830DFD636D6DCD9448B637C78CB3CB560FA6A06365126D4B00462D2D2D193F89959889DD535454F48CA0194CBFE0DCBCDC8E020CDD3293B2D8D5AB57CD82B575F572F2E449435D1A8F05766E99FA84CA048CF3D4AF362253026E3DDB4BAC4C62E94BAC8D0DB59D7B294FEAEAEA8C6CF56CBF78D107FC84C5FCDA12206662F7E4E6E6FEACBABA7ABF07A4EA6E06C40F34437E7F40024A156A8D67BFBFD1BC0B8542466ED471BA784949896141281496A0BE0BED231C8E98318B70249A78C769026DCB94CAB5B575D2D0E097063F70D6641D7CE119BADA5FD6A40FF97C256AD3906CA73E380824E933C633EB5DBC9869622566628701DFAFA9A93183A7BE7126D1A509CC1E51EC9695C19D3B77126CB875EB963992689EEC54C03AAE80CA6ED9328BF9E9E630064A32E6D6A3744CD0FB32F3DA5300FAC340AF96000D2F680274F460A57B2E02B62540A9700AE55E727A0031133B09F8810A7F63F09D94545393A3A3A38900A18D3DBE2CA843DB8DA1604545A5F972E35873D38FC5DD32EF71923E821DC93D7DFAB4A1B47B7E12678301046AFB00C9C0362323D304C9B3D5A31CED916941C26C39F19B95ED3509A8AAAAFA3BB17B74077EA8F5F04706CFE9291031340DFFCF40BFBCBC523B72AB84C25143738BC82B10D52EDDDED1692E510EED430934063F1F94588726AEB2B2CAACEFB6FB225B4E9E0B172ED81EF094D839063FD066F26F73117A27D5D43E9973EAABC15091E665654063A1ABC20E9E098012600742AE1EC04EBA6576872314B033C8A5A5A5663DA7E738989A9A727AD1BECC2EDB86CB2D706E6E4EBCDACC60062569F56024735B9935F18F52639C12F4E6E498041033B17BF426F6A13D0661005D99CB83FB66B6B2B29224DB04402BA8595B5B2F7AAF36B5F6AA9B20F3DA0B903D11CE9F3F6F9C73EBD1037867654A9224A04730049E95E5354972DF5AF185A4BBE7A20CB1C55FCA27332B2B710C12BB273F3FFFA74C641290966EBA6A50A9E5A64E48BB79320DC349942C2FAF30BFC1E04BEC9268E9BC0FE8C587CB0F97138E50E78409244E1ADEFB034EE7774E21671DE682F65CC02A2AAACC7A6E3BC72698B0B3FAC60705EBD912206662A7097E6A1370E66C8AD4D7D79B8CD98ECF85024ABA4F01E80B256D097475C5F46A9A6776D7FD71025DDD32F3303760676004F70EECDCF3A3C7316965768E460913A03F483B9F6EC660A1D58321E8BA7DE7FE0F4B588312E002651340ECDC043FB157E194736926432FD2E8C512C079FBE5856E8736B33367CE2475647B61A22EAD4CCDE320B62487049C3871E2BF4A80F1174B80FA678C20281F12A09D3CA9EC5EF6E186EF94862D1F3EA2EC5598D83DDABCFE4416F573D894803F1034D47568EA50877BF567140EEBEE346B86F5B4D02CA35B57DF209555D53ADEA2948B1804F59B3EAA777173390A3AD04F516367E5A0EA4165E684BEFEFD0B0B73BACB093912B5A753C4CCC1C9838F9487B5C3574E9F44790643C6D7C4454CEDD234466225666287011F93A143870E99047043225B5C302CA0905BA609B1B33080B31D99FFC1990F11D7C7091977CBAC634B879D63B7B2B3B34D5374CFCF4EA26F65FCC10686C10698C44EDA2F3EABC7050B3D2B730A5846E02FB6D95EAF89155F889D26F80B5E1E3C78502EE517F18D6C28F6AA6F0128CA422C4EA727D00CAD6512E2FE68A25671CACA38801DEB414D9CE3DFE804F8B252B1B24D9CA538654009F04F59F7A58D3AA724DDBEE29F2D4DEC7CBE52132BEB11BB476BFE81EEC227870F1FFE4B6757CF3FF55EBFA7CABBDA8412D00C26C91AE8AE069690956ABBDA04F7B4CBAADC94402CD6BDAB9FBF09593F4D0DDC3AC5C5BEBDA6A6965D60C73A3ABA76DBDA3ED36B6D6DDBEDEEEE49C85A1EBB7AFBDCADA9A9DDEBEC8CB9E66BDEEDE9E94DC87AE1DAEBEDEDDBE3D742CB893BCF1F885963DFF90F552C3C46C01C16880000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (121,1,'Rackmountable_5U_server_3D_(96)',0x89504E470D0A1A0A0000000D49484452000000600000002808060000000193FF390000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000011FD494441546881CD9B696C95D799C79D4D2424010281103010EFCBF5BEEFBEDE30C62C26312698C536E005DB40D8211060D2044813B624ECB424CA84341D753448953A6AA56A34ADAA56D5CC874ACD17A4F9D0569A994F559799366CCF3CBF639FEBD7E79E4B430604487FBDBEE79EF39CE7FC9FED9CF35EE24424EE7E42FF85147B143F53DC52C8438CBF2A7EA8D8A248B9DFDC187EEE03E14F3CF9E4938D4F3DF5D429C57F28C4857EFFD062C28409415C539C54CCD7754D78680D307BF6EC693366CC583D7DFAF4EF2AFEA0907B8DE79F7FFE8160DAB469167F565CD5B6FEA953A7CE79E00678E9A597D293929276262424FCABE2A6421E36A88EF713BF521CD579AAC3E1F0E3F7DD004C92979717CECDCD3DAEB8969393235F17D9D9D90F04595959F70BBF577C27140AADD5F5CDB8670650D2A7949797AFACA8A8B8A2F8BD42EE07748E8716656565778BDB8A5F280E9694941469ED78E4AE0CB07CF9F2BCA54B97EE6B6D6DFDC9C2850B6F28E44E686969792058B060C1438BE6E6E608F4F37F2B4F57162F5EDCADDC4EFF9B06D8BE7DC78DA56DCBA475D1E2AF87D6078B45AAC3FAF57DD2D7B751BABB7BA4BF7F5036F60DC860EF80F40E0CC9FAC1CD32B071A30C0DF74BFFC0A0F4F58F205CDF24B5F710F54D0BA4AEB1D93CF9BC60E122191C1CFCFEDF34C0A6CD5BAE676466C97BEF1D9393274F4A77CF3AB978E992ECD8B1530E1F3E2267CE9C91705D83141416C7C4C18387E4FCF9F3B2BCE3553973F6ACBCFDF66133FEE2C54BB2666DB71C3F7E5C4E9C38293DEBD61BD95BB76E93C3478ECAE9D3A7A5A767BDE9B773E7EEC87CEDEDCB55DE0595FB772ABF643C8AC6232B2B47CA2A1BA4A179892E78486AEA5BE56AFA0BF2CBA4A72561EF6989FBC17FC9373F2830CBEDE8AC37DF83DAA6167965ED066937E895E55DA04F3ABA41BFACE80103D235B059F67DE388BC7DEC94EC7FEB1DE9DC3068B0AA77C86075DFB0C1A9B317E5DCE54FE41BDF3C216B754C4373AB6CDEBCF907510660DFAE78C9626868D3F5AC9C0279FF830FE5DCB9F3D2ABDE71E5B3CF64CFDEFDF2EEBBC7E4F2E58FA4BD63A57CF4D1C7F2CE3BEFCA1B070EC9A757AEC8DAAE7572FEC2053979EA7D79F3CDB7E4DBDFBE2C9DABBB0C99478EBE23BB76EF958F3EFE580DBA41CA2BC331D1B3AE4FAE5CF94CF6BEBE5F9DE0B899AFB3B34B3EF9E4EFE5ADB78FC8BEFD07CCF75D3DBD7241659F38794AB6BCB6DDE8B869CB36C92F285103D41B030C0F6F32E41E5A9027C75A42923BDC22F3CED6C97BEF678D334075B845360C0C6BFB1979EF83B3720C7C784E8E83D3E7E4C4E9F372E2CC7939A9F8F0C2B7E493EFFC837CFE8FFF249F7EF77BF2FEB98BF2C17970493E34F8969CD63EDFBBFA7DF9E18FFF453EFEF473397BE9B2ACE85C2383C3C33F0A726DB8D77DEDBBF1F1F15F4E9C38F14B6DF8323535ED56764EBE2EA4C87873764E9E1415974A6E5E81E4E7174A917A597676AE79F2394FDB8BF5FB1CED477FC6E5E5174821DEA8FD78E6693FA2CAB685D44B63C18EC9C9CD37731614154B283BC73C73556E4E5EBEEAA33AE4E4EAF7F9E669C7A02B324ACB6BA4A2AA4E2AAB6BA5529F6DE10A69AF2B97D2855552B0AA549A5AAAA57D79B9D484C3DAA74EFBEAB3AA56AAAAC306C5A5E5FAAC1D453880BA3BA3261AD5A360BC6E5BFF5339BEAE87D1EB7A76BAAEE79BA371F3E6CDFB89EEE7E599679E31C7F1499326DF0E6565CB8A152BE4D5575F9565CB964561EDDAB5F2F2CB2F47B5D3BFBBBB5BB4E098F1A0BDBD5D366DDA640CC5775ADC65F5EAD5B26AD5AA714026DFBBED60C3860DE6D9D5D5659E8CEFEDED359F4B4B4BA5ADAD4D56AE5C69E60A428B9E91EBB603ABC32BAFBC62F4ECECEC346DBB77EF5643E618F9147BDF58C6B156B7BDA3A3C3AC0199F4617E646FD49AD3D2D20AC7FF0BC7700DE7CAFD4FE31213137F9D9C9C2C53A64C3106E0383E6B56BC21B1BFBF5FE6CF9F1F855DBB76C992254BA2DAD7AC5923870E1D92AAAA2A431A4AEEDBB74F86868624339465B69C8CD35D963434348C030A339FDB0E0E1E3C28BA2536B279EEDDBB57B66CD96248E3B48A4C8C515757370EEC48E85B5F5F1FF5DDF0F0B0D111D2E9B763C70EB3AE818101494C4A36EBC7C97C63AD43B8ED38975DBF7D62D0BEBE3E696C9CCFD5C60D389E3C79B2C039DCC7E91FBFCDC8C830D6E2CB471E7944E6CC9D1751D2B7F5C4A351DC6DC7038206C0FADBB66D9375EBD68DA49850C82889A1DCAD1B110409BE6D1D325C03BCF6DA6B8684679F7DD6C8D402679E2E5E7FFD7513216E3BFAC5324072728A217ED1A245C6B3DDB14495EE68A2DAE97FE0C001AF016A6AEBE0F6361CC3359CC37D5C4A4ACAEF6A6B6B8DA7D95BC1A4E454632588C68B5DB078C2CA6DC70BDF78E30DB360084579BC8890CCD41AF0D8638F496161A1194B7B10186BFFFEFD51ED000340367FB350641345A4080CC05D0D0B65612EF6ECD9630CEEB6136D180D59C844367AA3734A6A9AC90438554F4F4FD4581C0A83F9E623E27144E41145C804050585117E1B1B1BA5A6A646E01E03FC9649ABABAB231DD233B2A4365C1785705DBD41DD383444A37E0CF5A3484BCFD462546B3C2108DF3CB110AE1B8FD2B2722DFA85BA98BAF1A8BD336A83F0CC93A5853D4AE6DDC8F5C80C656545F8856B6368E5DE18002B1305C108C06B464F7251C0DBB1AADB4E2EB685168F2524F104DAD821F13DDFE1ED6E01A78DD0F615FDF5EBD747BEC7CB28B8441B85B2A0A02032DE971218E34B4DC8A086B00E1B8160FBF6ED665785CE708217BB63F170F470DBEDFA894ED68F6CA29F88A9AF6F8CF08B5C38B706F88D9DCC7648484C36CA433461E8124DF8C6CAE36E11E249B81616179BBC8792C80D1ED7018B2725B8ED80D444D8F24426799694C3C266CC986164A2137D82602C29810D82FB1DB91EA00BBA433C7249BBA9E9E9660CE4C3833B16A332B7DB0E57EEFA91C9BAC81C4103C039DC470C406E1E4B419952595969AC4791727332C50B45DD76FAB363092A403F142ED5BDF58B2FBE6894C473DD028ED750307D459F9A13340006A58EE045E47F360C14509B6F83C050366283600D410340123B2B7463FD252525C680449A3B96F5A0936F3E6A6070FDF4430669C8F20BD71103E8E1E0772C84FB73DB2147F7ECB366CD32618AA5DD624B55A730FA0A340A107EC1BD3128282C92A79F7EDA5C47A3943B8EB9309E4FA6DD496164BCDD1677A07B6963048CE71B8B617C6B2062908BD35899FCCD3314CA96A953A74A535393E9E78E852F6B5817E861370C7623825CD61FC930CA3532E03E4E49F99C0F73E6CC8974484BCF90322D704545457AC2BC33107C27142A2AD51352D3D24D11AEA8A8BA0757D8952AAB46A3AACC18B45CDB3890F13988D857C6E5E360AF9E2B34EA6B6BC3BA630B8DCABF1B99B1E456981D4F864695E517AEE11CEEE3D4D25BF88027D90ED39E9F6EAC87A7FB26C2FA84BDDB4E5123F4F0280E5F76AF4D0886F42086479152086DC233083C85B074DB015B49BE2772F026F4A22FF3B11872355EC74283208F93AEDC76807E9C73880ED22C7F53EC496D497A10236A99CB37D66E0ADC76D6469A641C3A53A84969D4CB9A408D856B38877B0CB08DC5F09ACD769839F3C5485E8C15D628E1B643B67B12B6451803105190C57C6EFD20AF52087DE700C23A7810E3497165CC73CF3D676492BF7DFB728A2064B9EDAC2D78108330AB2B06E08C414EB7570A4160246A9BDBCE3CBE4D087C11FD965FB88603B88FD3FCB98B0F73E7CEFD9F4888E849580B44CC83D8D6AD5B63E646264479FE462E1EC022B9269E3D7BB63961E27DEE58BC04527DF3EDDCB9D3781786207AF056A28ABA415D29D61D168B8C95933194DB0E891461E6B5A77B9C8A8848D66D786666A669FF3A35D05ED7F064FD44535555753002FE0C37701F377DFAF4BD28181F1FFF33DB213129C5E4D68E8E157A98AA1FC3E89D872D5C901904E4AC51596E3B48D7BAC2FB53FA301F5E1B04DE06096E3B601178A2DB8EDC543DB5620008B5ED6C1D2D2099280AB6D9730084FBCE081C9A727373231775AE5CDAD02928D3CAE58A8271AE4C0C6AF9856B3880FBB8175E7861DFA801FE7D6C1B1A9265AA34A7CDC6C6A608C8E1D1981FC1D8C55C7304768F9F9139720F54630A71E5683156548EA1D287AA6810DAC8E5244E619CAF7F936329A020CCA9D962F4F41E3CC18F778EB1D37A73F3024D251D929D9D234BD52128C456662CB9755EB90DE3D0D6B64C0F77D9C122FC6F700EF7717A9039C807CD4B7F1CB3D03C6345BCC45784493F1469B7DD1E446CBAC06BF04CC23C3F9FF709F9C6D3F116772CF290EB9BCFE671F233FD88145203698EB4864C3EBBC59B7A61CF0E2E4883D40D9BCAA80978353AB06343771BE5EE58D20769D56DC729583FFA904EED9A463608E1600DF8239CC37DDCCC9933DFE4436A6AEA588784E488E732919BE7C8C1C06DA7AFAF08B16BE260C31DB8358AEF228F42E8CBABB4070F62C8E46F7231D7D118943AE11B4B3FDF1A3062F0208671918B1CB6E1F67A39D619823AE89B2F5611AEA91D33005CC339DCC7E9E9F4301E9A969616E9909C9A6EB64A58102FBB1B05384CE1014CCA78C86632F6EA93264D32276CDFEE8A2D2505CC2793DD111189216DC1442FC8C1006C18621DC418E35B03E4A307BA710AB7DB507646ECD9593FDE8F91DDB1F4BB93C17108E6E549541161C1220CD7700EF744C051D7004929A9A6087345CDCDDDC881640C84365E137D502935614BEE760F30090989C6F26C451B1A1A35224AC7813E90EBB603BC9FFB13A20814178F80237D626292EA9E6EEA15698ECBB920D015BDB80EA63F40071C815C6EDAF4735100292969868FA2A26293025DB9E8C4D8A04C2B17CE18E3CA4D4C4C8C3200DC6380AB7CE0A2CC76C8C8CC363912CF207C7DF0BD3AF401CFE600C535B57D6943DB571DEF9B1B7DF1583C98E2884792C28888AF02FABBC0F3D9C190327887CDDFE8FA5565DE492E29948D47845FE57AD40057E3F4C33516C53689B76174983B2FC1904FD8FB0A983D64B9EDECFFED618950B4274E886C6A6A36F74B4408B5C557C021D457847903C6F7904E44928228842C901727E84AAAF0E94A01470FB79DFEC8214DD8D7AFA40B732FA651C5350272A903EE581CC857F44959AC9FFA4111E633A98EF5722561DF38C2359CC37DC400BC2EB406E01CC01613C5F8CEF736C97712B4AF24ED69D516213CA05517CA059725DA57C0315AAC93B72D9456260BC4201880B0F7E903C8C5BE3762D426C6DB5D19518A5C9E5CC7C387CDE1EE588C440DF0CD471D734FEDE85D565E193100B22306506B5CC343F9F1EAA38F3E6A3AA5A46598233E8BE60EC6DDFBDB5F3AF8CE0578AB3DC21311F6069373C2C489134D7163E1BEB1782BBB2FB7DD6EE5807D21845C3E63007E5040A4F964D28E63B8EDB4413624DB75E2F1C84D484832FF8F81DC4DA4B963714C48F5CD47BBFD95867D47C2FAF95508DCC2315CA33BDC470C4071E19DED8801324D8119B9FDABF0DCF655E8AEA632F277101CAED8F194958F475E5EBE16B754CDAFF95AC42852C506143A0B7303ABC595DF1C59506CD1A344618BAF053A67683873E36AE6746E2301B997F077752DAF18D1D5D593B9D2CD6F988AA4588BAD576EF9C88D6CECF55746C9E56C01B7708CDE110368385C23A711A678D3C83634D3E4483C020FB85B208B0978DA5F101072D5D535267F7E1D99C8B14599BF8922D20BB9DADE37D9DBD7AF0A6A08B2482900397870EEE86F988892BB9509ACCEF63E8C7B239B82E0185EE001EEE3B2B2B2BEB0EF46093BB30D4D0D99FB150A10E1E6161B8A3339D457F4ECEB43F23E9FC995A42B42DCBE3E842CB7D092C78DA231AEBF4915C841266710C8A2C0D9221CEB2A9BB1BED32C44D914C4DA6D5146B744AD01EC54904B0A71C792EB7D45DFCDFD3CED5983AB16B88563E68373B82705FD9C7C05D17CF9C4134FDCCECE2B91F4F474938FB1A27B098667B030DFC51924060D802200AB4F9E3C25F28AD17D95C742A9013CDDEF20DC16CA601166711880F9F0668CEBEAC31816EBB663B0A0018828E462180C101F1F6F1C1043FBD68F63F9D64F0D740D0127FC4244D3CF4D38A61F9CC33DEF84FF9945733051F2B9DEBD5D505C65762C140B16E6BE2447313CDDF7029DA2677F26C8C51C8B8374C660008A3B275B5F0133BB25EDE7B6DB14832C22C56E0F9983057125CD398036571FA284B16E3B24A20785D2BE80B73F40E097718F3FFEB83930B101F0ADDF5E8DBBC059EC7B0CE4D217B9D48C0913267C09C7700DE770CF7574D7DCB973BF5062BED049BF50D2FFB26AD59A3F69D8DE686D5D7CBDAD6D99174B97B6DDB81B2C5CD87A434F90371B1B9B6E2E5AB4F89EA0A565E14D8D885BFCBD64C9D29BAAD7FF1B4AD84D3DA9DF409ECABDA56DF704AAEB2D3D07FD068EE11ACEE1FEFF00AC300C34E2B45B870000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (122,1,'Router_(128)',0x89504E470D0A1A0A0000000D494844520000008000000076080600000000F59BCF0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00002B644944415478DAED7D07785CD5B5F59EA2DE7BB77AEFB22C1B77D38C099860B00D9810B0297F1252A82F210470420B8F1212124A4831A1873FE5FDE14FA836B8C8D89665F5DE7B2FD334FDAD7DA4912579248D8AC1C23370BF3BBA337367E6EC75D65A7BEF73C712B3D94CF6DBF97B93D8016007C079F7A5DFFAC7BFFFD1D8D691DAD6D9431D5D7DCDFFF795A72EB203E03CBAFDBF8F3FABD46AF589A5557554565DD7F5D7979E0AB603E03C03804E370A80D2AA7A00E09776009C7F00308C028019E0453B00CE3B00E8F586710678F7C527ED0038DF00601000A8A7D29ABAAE777E6B07C0F9070083715C02EC00380F01601400A8170078FBB74FD80170DE01C0681AF3004B0B0012DCCC8B18B4F31600260B00AAEBBBDE7AE1F1731E00EFBCFF9FBB3B3AFA6FAE6F6EF35069D4CABEFEA1F7FEF18767F7DA01305F0098CCE30CB01400F0AF8F0EFCCA4C921FB6B47751655D1335B576ECFBE71F9FBDD90E807902C06C010018E0CDDF3CB67400D0D145550040638B1D000B020099699C01DE58420068EDE8060334DA01B068004016F0C6AF9710003ABB05033434B7DB01B050009455D70B0678FDD78F2E1900B475760B0F6007C06201000CF0FAF34B09003D5455DF44F54D6D76002C1400E5350D8201FEF2FC2F960C00DABB7A0403D801B058000003FCE5574B0900BDF0008D546707C0C2015051DB20BA81AFFDEAE74B06001DDDBD8201EA1A5BED005838001A0503BCF69C1D00E72500389F2E0303FCF9B9BD4B06009D3D7DA20E50DB6007C08201C0F93433C09F9F5D6A006802005AEC00583000904E95563500000F2F1900748D01A0C60E808503A0BABE59F402FEF4CC1202406FBF90809A7A3B00160E80866691052C2500740B003411C06B07C04201001A151EE08F4F2F2100F40D0806A8AEB30360E100686C1195C0A5060036AFD8EC005828006A1B5BC5AAE03F3CF5D09201400F3300CC6B55AD1D000B074053AB9080250580FE41510AAEB40360E100A81300A8EF7AF5A99F2D1900F40200A326B071DFDF5FB503604100A86F6E131EE0F74B09000383631EA0190078DA0E800503000CF0FB5F3EB86400D037302418804DA01D000B0440434BBB608057961200068704035432007E6F07C0790780FEC1615107B003601100D0D8DA2100F0F2933F5D5200E01E46656DE3BEBFD901B00800401AF8F2134B07000343C3C203701AF8B7DFFFB71D000B0140535B87E805BCF4C4034B08008A5109B003E0CC5B554D9D34313ED6642B009ADB3A8504BCB884003038AC100C5051070978F93C07005F295B5A5E19ECE8E8701DBEC60DF82EF126B3E93DB3C9FCBAC96CFE2C2D39D13C2300DA3B0503BCF8F84F961C00AA0080F7CE570014159778B87B786CC3C7DF4564BED06432CBCC661321E884E0636F227CAF561C7F03C75FCF4C4B2DB50600BED0B20C0CF0DB250480A161A5E80554D637EC7BEFC5F308006D1D9D0E46A3F1327C5E049DB622B82EE6D14013EE930080D88F01400061FC78118EBF6E3299DECACDCE6C1B0740C718001E5B420050284719A0BE69DF5F5FFCE5D71F009D5DDDAB8D2613077D0702E86F9E3CCB6D09FED8F3C4F3F1A779FFB04A9D3AA235043303940A00FC78C9006058A11A35815F6700F4F6F527F14C4730772198D1A3D43E46F1A783793AF81341317DF069E2794C46330D2A1454545937B836272D70DDEA95FA250100A56A340D8407F85A01607068380441BB0E41BB119F296752306D08FE7C8130F6FC5E1C7F07CF7B7DD3BAD547CF650028C6005051D70C003CB1B401A054A93D10A06D6341BF1081909A670FD678F0E7210156CF37E53C75EC1770FF8D4B366DA839E700A0520B09E06EE03BBF5B820018D16A1D30F09761E039E857DA6CE66C95002BE7B10A8409CF9F8135BEC0F1D771FC9DCB2FBDA8E75C0180A519B4640000F72EC180AEC6C0DE8801DE8E01F59B76A68E1F9F5FF0E72901B3790A038E7F30565FF8E755976FD67C550050AA34A38B421B9AF6BDF5C2390E009C3B45983993F9060C60D4AC1A3D25E83652F60CD4BFF0E05BF95C0AECFF3696567E7AED555798BE5400A835A30B42EA1BCF59008462BB1EDB2E9C3B7B5230270465BAE0CF255806A3894A2B6BE9E08962F1C6EB56645062CCB269C1B14016B0C644ED78FE5B5C6CDAB9EDAA535F0600546ACD781DE0AD171E3F6700E089ED1A0E3AB64DD8A4630C30F794CD06EA57AA55947FB2940E23F083C34AF27477A59599A9949B994C8E0E0EA25D1A111C486EAECE8B250156CF33E573953110F0DC376FDC714DF35903806664745168DD570F00476C5BC6827E2536E7A94F58ECE073F3E6F32F0AE9645915E90D468A5E164AABB3D3292D3186868615945F5846C78B2B488D417290CB69DB65EB29317AD92C41B7ED33CEC18FE07FD3E7A312617EEF965D3B07171300FCDD2C7580AF0200126C6BC782BE1D9BEF0CFA3FE3C0DBAAE746839E4E96D6D081A327A9BEA54DCCF09CB4445A939B4EC1FE7E54D7DC4687C004FC6B1F1C109EF5B9E9C9B42223895C9D9D902F37C130B5505C6418C52E0B23A944B2684C64FD3C93CEA7C5F3FE25C06036FDFFDBBF7DA36E3100201684200D7CF3378F7E6900481D0BFA0DD8226D34806455FF6D0CFE904285D97E923E3F5628EEFBFB7AD1DADC2CCACB4C21994C4A274A2AE9F0F1226AEFEE15EF171E1248ABB253293D3E8646F47A3A515C4EC74E55D2905249916141B402A0888B0C259DDE405A9D4E8063A11230C7EF3780BFDF1D4B2B0F7FF7D69BCDF3018066443BB624ECEC03206CCCCCDD882D731E19808D033A39F80D4D6DF4C99113A0F272713C253E9AD6AFC8A2A4B848E2C510078F9F1254AF861962206424C6D1EA9C340A0B09A0CE9E7EE10D4E95D710CE486909319497914C817EDE34A05002149554545E0B10E871DE48BAF0821C924965D3D70C267CDED333DFAAFECF09DC785E2380F306F6AFFFE08E3D9573054095A804369D3D00BCF4EA9FEFDB75DDB5F779B8BB07CCF7C4B61A2EBEAFD319E87851297D74F8043580D25D5C9C11D4745ABF328BFCBDBDA8BAB1853E83041457D689F37AB8BBD10598ED2BB352C90DCFADA86B80212C25BED2C70386302F23053291402E4E8ED4DCDE455F9C2AA7CAFA66F15E5E1E6E949D120F7044137FF562641172F885A498089203500B9780299E610A734C3D1FEE173010F0FCB7EFBEF38ECED90030A2D58E96826BCF2200BE77EF036F63666C59B73AAF70DB9597AF96C9640EF306C00CFACFEBDB3E3D5C40FBF38F0B9A0F8373DF8459C981E58FF5C5A9323A905F406D5DA345B8E8F0105AB322933293626944A70768CAE9504131F50F0CD33296809C544A8D8B16EF57525547470BCBC725222A3C5880222E2294FAF0BE0525555456D34412A904AF89A4ACE458C88233B1CB7671769C57F0E75E8A9E746E23F61F733F02AFFBFB7FFDE84E957500E8464BC100C0EB670B00DFBFFF81B7A512D94E1E1C47B963C38E6BAEECCDCDCA5C3117FA9F69A0AA1A9AE8C3CF8ED231049023CDA6EEC235B91417B58CFA0606E8C09193C8ED8B88735EB94C86C793041B84050550775F3F1D3C5624248233810C80610DD82234D89F542A0DCE594147715EA54A0DC3281719426E7A22F981491A9ADBE918BC43434B87608A9CE4384A898B2289C44C65B5CD908E5A7806157C443418286561467061A56D159EF78FB1B4F2A307EFFD91D10200F62F9563A5E0D79FFFC5D901C00FFEEB4100402A00C0AE592295928FA7E7893D37DDE01B1C1418331FFDD7EA75940FB7FE9FCFF289AFC8F1F270A78D172C179B17289D51FDF1C1E374AAA25A0C88B7A707ADCBCB1252E0EAE224BEF40198C2CADA2641FBABB2D3C48C77777121FEE5ACC36082A28A5A010A1F6F0FCA83E9CBC0AC668D2F01CD1F83FEF385950CA2E5E96002A4904AF508DEAF0632D0C03D0A3CE62FD86519FC04334729DE2B08FE2101CF95CA640BAA6BCCB12135F1DC5D78FCED98E898202F6F9FEBB460BED16650D3BEBF9C3D00FC0C12301900BC974AA5FAD8E8A8FC1B775C93E9ECECE435330046BF546FFF107DF0F91104F718712F3B1E79F9A5EBF21004CC309311DA5D441F1F3A4EBC3A876F71D111B469D572042F8EF4F8B2472103ACFFFCD32861C101B40E86302B258ED70352454D2352C022687F9BF83B1681CACB4CA5F8A83004578D2CA0820A4AAB8869934D642E9826D8DF87BAFA066008ABA8A261B45E9310154ED9083C03A7B6B19D4EC244F60E0C5100328F7478050646635B17F979B98BA2D37CF57FA1A56D272727F2F2F2A6FE61355535B5ECFBCB736709003FFAC9CFC625602CF06280C7F73269FFDA952B2A2EB970E32A3C2EB3A6FF9C97BFFFC921FAA2B044B8F5D5B99974C9BA9514151642DDFD0308FA31A1EF4CF30EA0EA555969B471752E8563B079A672D039B88CF88CC4585A0F36E0C20F0793BDC141A4807C9D9C93A303E5A42608DFE0E7ED49ADF00B474F9651694D3DE44B2E0C1FCF785730453D80C24CD00463E80C8398017960097190CBF0FC46B0412D29946AE127329363C4F9CAE1134AF15DD4233A0A0DF4A3D5D9494038A4D141267CCA1CDDFF74FA3FE70697566FEC964B250FE3B5EFFE72EF83FD8B0A80BB1E78180090EC9C30F3270360ECB85CEED078E5968B75996988006E9C637F76F404BDFFE961E1E603FC7CE8D2F5AB906EE592ABAB339557D7D3BF0FE4D3C9D24AF1A5FD7DBC681382CEB39A9D7F552D64E0C8712A46209C11D8D5B9192205F4F274173392AB801C7C0681BF8F37AD5E9E86E027E273C804E08E149462A67688C0E565A5503A80C395AB6218426603BEAECEC7CB8396E335C97111C83EF498EDB578BC9EF4F8EC0991E19491124DAE8E4E548CCF5A56DD483A484A2400919E182D3C053FB7B6B90312E64A1B73D3312B1DBEE406D7196CA2C3FEDFD8B35FF8D7B38F3D32B20800D80B0920AB00982809620F9670729037790786047F76F494139BAF8CA438DAB2690D665E1275EBBAE9280273E0E322E235787C4B86C9BA043290951C0FCD3661C6160B4668E9E8A610CC32060CD7F5B99C5B039ADE9F7F52B87ABE25C62EA3B5CB336018C36904B3F2784905025F226A04316088556002AEFAB1041CC76C3F595A2D9CFDB2502E06252193084216A01035817268BC0CE0498B8F126CC023C135043E6E349A84A4642645619A4BE914DEBF1E8167B02542A612A342C164435451DF4A3E0043722CD2488CC7C460CE5FFFE7DC87B030C7105EF3DE58B1E9B35F3FF5A8795E00B8E7C1BD8201A69BF95301C0F7EBBB86796FFCE12D3B29312E5A963F984FFF3DF80B2A8CD84F129D8C967DB09AAE567E9BB6AC5E4BA13062FD988D1C74A67A6E71A6838A37AD5E41C931CB84913B565C46FB8F1410FF0B194CD72B31A3D740467CBD3C89AF913F74BC48D4FD0D462382140743C8A5616FEA8457C82F281380E162504A6C14E56524913FCC5C4B7B377D81EC8103C925E36CF88C546401EA112D9D8057E05A017F17EE28F28C371A0D54585E477578BE23029F0CF025C584231319A4A2AA4630CA3085C053A4C62F236F18D9267C5696B30030D05CDCFF6CD5C8F122D5DCEA112D38FE26A795BF7BE689529B01C0175BDCF3E0239C05EC981D00A78F0DA80D34842D313E963E8C7AD554B2FE3F52B374F2B943CD11B4BDEDFF90E19F41740294CC83B51679FD85087C80AF37F192E703470B40F5A784610CF2F7A30D79D9949B9180E73A10FFA6CF67908132D03D670279D929B40AA6CF15F7F9079F0E9F2811C520185461F89623FD7305782AEB5B4431889D3D4B472E3C416274383CC43018A48AAA715E669BB4F84811786696136535087C3B3C86A3087012663D4B080382677EA01F0C2298C30FC6B1ADAB0F3EA10929A49A3CDC5C283321125993BB6857738A692DF88BD18D9CB5CF72FAB54518FE379DE4D2977FF5D41343D3028083BF7DFB76694442DA5B729974BB2D335F2219BD6F2629B50DE92836269A7E13F813D2780C5244BC87B935A05A3215757E7531747FD5737461CE4AD1DCE12EDF4787BE804E9793115F281D74BC61650E25301B409B0BE019B819C4FF5842B0BFAF004D26CC1DB8994E9555C32C96882C81737DEE076424C50883C674FE4551B9908788902064088914151A4CED3D7D02100DAD9DC26B3083A42544D1B05A450525A381E72A221F4B8E8900E328A810BEA4A3A79FFC31BB3392A2290880ED4436510226E80513B80174CC0EE1417E4262CAEA5A84A164C989C366B3019CE7DAC69980E30810FB7A7B935AA3B9FCC9477EFA6FAB00E0E06FDCB851A6D56A1DD65CB8F90D995C7EF55C00C07B0D3991A78F1FBD1CF073AA743E49CFB4FC8DF2A3DF319DC87A5FAA735752407B346D57EFA6DBFCEFE0D8D14BDDBF85D9AA213D1881AB706B41F19CFBFB629099010E1E3B05AA3F450A9546D0323F96101521F49D753F1F6E9FEFC74484D205908078E8B24AA31505A6E34515A4E1F40FAF5B093F1108AA6E6CE9A07C049EBD86BBAB2B2D4FE34250240D0C2A470B440C08043E1300E2C0F773C5B0AC965A3B7B8579CCC2F1D0405FE24BB44F55D6031003C20426834DA2E13186F159B8A0D4D93B28B29384C81000C2978C90B4E6CE3E716E7F2FB7B3BDC279FCF91C170F770FC1901CC7E161C5E54FEEB50200CBCC6F6D6D75341A8DAE6B2FDEB20FA8F9862DD46F018094F798CD12377FFAB3DF5354E27A5400A0D0F520BD1DF002DDD477BBE9B1B50F4986492179A6FB09FA30EC5D1AF11E65A3C8C124DAAB7B8ED2CC39D0FC2EFA949B415C25C4F95764242305CC160D1DFEA1E4CF018A0204CB882FC93377CDF2740A0AF0059D0FD26180A210B31E9F0A06334E18492F507255432B1D2D2C43C0FA4420591E38C0DDC82CB872C88177418E9D9D1287E3E13430AC8204545313727FEE1DE424C75278B03F40A916816FEEE81115CAA4E83018CE10914D94D6B688E39CF2C6458460E6076070895A009E6A368F3239C5470481A5DCE7A4FFF3AA29E07DB978E6E2E24A3211A3D1982986555B9EDCFBC07FAC01409A9A9A2A87CEBA62F35D7BD165AF38BBB85C64EBCCB70080DF44E2E2456F05BE82C01FA2A75ADF150078CDEF19BAA7F3197236399BFF27F35792BE949AD1950593161A60E04EAD22B73FC1E8911FAD5F992D82EB026AAD82396309E06AA03302251A41D8586F3948CC12ECDCB9C5CBDD3FD67E47CC403682CC129C420622256526884786D0D9DB47F9851CF80E3081B3A81524C7460A0FC29E8001E1EEE68CC0C7835D82C72A8675421A783013A2C2C4AC3721C215087C2D8E631411F440513574904B01B641AA00F0F47A23001104E6F01165EFF9BAFFF10B5A66093ED7349C9D5D4EFBB6B1E0F37D8542B5E5977B7FFA9FA90B3C248F3CF288E4830F3E70C2C93D753A5DF0864BB6BCE0EAEEB1763E0090CA1CE8BDD0F7E8B8DB7E7AA2F5CD7100DCDFF93C06CC444F07DD45571AB79BFBF34AA8C1A372120C3CBB8269074CE22DFE7BC497E17AFF6833A8579844AE172C4F4BE0421477C3445DA011FE81F37E2E196762A6F28014C2C01D292C25BE90323C38802E4006118559D9D6D14B874F95529308B00BAD001324C52D23BEDCEA5871158C64ABC80E72C0040C142DFC077720CBEB9AC520C72E0B1146D101B3B90AA6B3BCBE55789465A10194024030C57366C0FA3FA480FE87058A4D78A4452A004DC7021C4907B9834853392692B1993F11002AA5E2B227F73EF4C1190060FAAFAFAF77C27D2F9C3474DD255B7EEDEEEEB1DA56EAB71CB7C8C57EFFFDF491D7FFD02FDA5F1B07C08F3B5F2083442F00F0ADBEBB295BBD8EF6253C641E4CAE9704F746D34DDAEFD2377DB6915ADD49038AA741D507E8BDF7B3A9B77F230C6136256186727AC80B4138F05C2D6463B776453A743E52540C392DE4F5009C56720E7F414E2A34384054FEB848C47B4F503A073E05299D02CFFB0212C059027700392D4C423E6F827B2FAE6E00833488F78C44103313A2055B7011A8B8BA91B82F1F12E04369F0109E0013670065000AFB8208C805EBBF13B29CB91780E62801669388854C4CCED3819F1A7C7E8E5A65050016098001741C1A1AF290CBE581176CBCF8712F2FEFAD739AF913004048FFFE14F20704FAFE7100FCB4E345D24A470400BEDD771F65A9D7D0CF436FA3087D1C7DAFEF6EFDAA1C4FB9DEF0AC24257E3F82717AE5D4C8C82A6A6DBF8F3E3E6414A5610E2E077C5D5E0602037A8641E4A08B0A2140C040598DC073B6C014CFCBC59A91FF7B7BB8535E5632A5C0142A356A049EDBC18DA2BAC7333E15291D3B539EED85307E5C1B60DDE78EA1B7A71BCED1438595B5626673EA97897491F70C8432C84023DEC31F7FA7C64508A09CED02D0F8CC17067E2C0613823F1A0BC9381BF063C30AC5E6A71F7DF843AB2670F9F2E588BDDC0527F73248244139CBF376858446EC46AEEE395700F0F346E43AA0D28F0A5C8F08003CD4FE7B52CB940200BBFB7E4CE9EA55020091DA0401888CA8C72822BC8BE2A39BAD349724F4C1E71974B2F83BC81472841CF00F251C1C2F0699847367CFE0E3E549752DED2283688129F385E95B959D2280A1869673ABB804468ECD5A0EB49F53463674550D2D42FFD9E805C12FE4A6C50BE3C9A95F0124A507B93F37823213A3282CD05FAC2AAAC06BAA1B3BC80D862B1D81E7D2F6EC3D80F9EBBF25F85CFCE222159BDDE9823F1500BC2915CACD4F3F360D007829775C5C9CDCDDDDDD0546D003D9800F6E51E9392BEEF00D08DC2CC36D36EA9F2A172491D311F702018047DAFE484AF99000C0ADBD3FA554CD0A0180686DB290848CC8FBC56A72856EBB79D3CAD740D54DC21F68461CA9BCE6527294DE0D63B70C695E117D72A40DB3BE49BC173B7A5E12E6E9EE46FCFBFF9F7F51241A42A3BE204D983BF5C80818A202B97C8DD03CCE10B2531340D132AA6FE9A4A3480D59BBB9CAB8223D415038E7F205A5D5C2D9BB3A73E3289A62C28331F066AA696A13E91E8F039780A3E0016CEDFD2FA400A437180869BAB82F9D10580BCD4B2705FF4C39502AD500C0431F4E5B07602F505858280F0A0A7234180CAE78334FC4DD37222A263B3523EB4E0F4FCFD4D90130E131EC9B9C9AE9C9C087E8E1F6576948DE2F00707BEF4394ACC9110088D3A6D10D7D3F140030939C4A9A1EA7D8A0572838A01E133F1DD47D3F4EE507FA3A4C2EAECFC2B4F12251373A72E226F2F5BC4D6409FC8B199F1D3D25560E89C5A360029EF1A39DC372F8862A3190DC62CE4B4D242704948B4A874F8EA6869E1EAE94072045C3287277F238025FDBD42E0C557A4214254545888A5E03328EE22A5E3B00A9890A47361022BEE7D4602D7603C868328A35900C00C968AC4E03C04AF0C727E1142FA0526AA607800504BC831CC81C1D1DE51A8DC6098FBBE1BE378EFB672C5FF18D98D884DD4ECE4E7EB30160A24C143B9752F0482AF5CABB0400BED3B3971246320500787F5DFF9D020026B32395363F0A00BC48FE9E87E978EDEBE4EBDCA65F9EF99243727CC919D2D0D5934DBF7B6D039D2A978842CFBADC4CB1B68F0D21570039C71F5D3514432B911E72F998D7021C8667684426C005129EF15CE6D51AF454585A8B99DD28AA885CF7CF40F01904EDDD7D74B2BC8E069055C4222D4C01B89C1D65F36B03DB50001A3F0E69E3E69A7A443D46F79335FDCCE0CF2C076A95E65248C047B3F60278CF6C505E5ECECC0F457070C1DE031FDCDBC9C929EC82F59B6E09090BBF921FB39A2958F109266C1592667A2AE86EFA5EF7A362E633009246B26947FF7705008C26172A6BD92B00E0E779948ED5ECA300CF839410FE060505BB9B9785D59E5156AE6988A453A54F215F4F12813F26328132B1F49B4BB97CE18887BB0B0D0E29E9504189D07A76E7BC3E3083178662B08BAAEAE96445AD28E870FA97933ABA3E907B055C106AEFEE87EEFB413A62C8C3D565FE6B00E65000E2E56DC3F03946B371DC7B5977F7163698DD0CAA54EACDCF3EFEC887362D0BB7B001B203BECC8BD9C0111FDE15873DF57ABD1F642165795EDE777CFD02965BA37E6B467158AAA247BC7F8219FF7D8A81F633005234B974EDC01D63007003001E1600F0F5380606F8D32800429FA1A2C6A72932B8D1949BF117A98FD710283C981A9A6EC7ACDE4E4A93925E31FC86FA0E49C9B13450E8FEDA1519E403E7AF50A9444D80977DC1C420D58B87FEC78B624D596D93C8FF99F6234303C5DA411FA4896C04B919C405216EEA709610E4E7B5C82B80AC077F44A7A5BEBE7E68BD6EC20C9F29BD9B590E267A8121D5F0E6179E7CFC23F384A0CF7A61C84459C0DE41A7D339393B3BBB331BB02C64E5E66D4A4DCDB8D5C5DD35646AE0CFF00BD88FC834D4A733905CE7290090AE5949570FDC2A00A0377A5045EBCF04007C601E4FD4BD3A0E80538DCF89CF9315752FF50C6F33FB79DD6F96384AA52F6B5FA04F93DE259D874A9435D6B55E4EB7F7DC475295A3B87E808D1C0F7A7A02642033495412F96AA22360897E183D5E22C615C220EC4760164F56D489AAE268693816062F48A4878BBC02F88CE01BF406EAEEEB23854239AEF312CB184ED2F7C9942F9DD6089EC90683C30397F734357CF8D7BFFED56401814D57064D9505BE2E103717A48D225BC03E78D3A59BAF8F8C8EBB0679B5B3B5C04F660609694D12BADBF30E910D5C3578CB1800BC018007C600500800BC320E80C2865FE3754600E02EAA6EBF87FAD46B685FC2C3E6AE9C52895932F93BB8A9BD28FCAD8DE4991F2BF4FA82E5A9E4E9E68AB4B0173250441DA0741F2F775A99954CD1A1C162F08BAAEB45B9976FDC12E67A017FD6F95FDF689BFE73F7B30FBEA4BBAF573C7FF20C9F39F8D6D9607A00F4F6F47CF3A37FFDFD83152B56E82D2098D3B581536541A15070F5D0952B88A01AA84140FC864D17DD161412B61A8327B116F889A6B157D243E5A67A8A1ACA1100D0197CA9B2EDC702005E6EC574B2FEC509007801AFD30B0054B5DF4F9D8A5CBA2F7C076DA4CD6663462BD5F9964DF20761D5A9F483964728CA959B3EBC80A444D4F2DDA1E12B3392462B7E1870BE76905DBF46A3C5B165A2E3C79DBC2F6305F0D0D010B57674C27BE8A6D0BBF4CC802E821C74B6B7DD505154F03E323C4D4141015F87609AD7D5C196BA01648181E000EA746659C0B946B385AC9C0B7257ADBACDCBD33B72260058BEACDE0804793C08C7EE20823B0A805200E0B7E300603048A5230200CC12DDAA2C0180CB86AEA3CDC3D7D1DF639E33B7A49E94B82ABDE9A6961FD25AD906A48E4A3A78A264BCE2979B9E44998931249349A88E5BC390880198C3E8B0605A9199284ABA362EBD3A7D65D33CF49F53BAA69656A4B38A29E99A745230670380F48CE7CE9C1AB6D4D75D5F5152F889979797E2C08103BA790360221B4016245C3B080F0F77E8EFEFE76EA207B301B6C08D175D7A75526AEA4E672767F7990030BAEE904867AAA35E4538057AFE863C5D2B04ED5B0070A2EE6592CBD40200E5AD0F518F2A4D00E08AA16FD145C3D7D0CB017B69D8A19F1EED7DDE101AE82B3B51522939595A35EA1B60FCF23212C5AAA276710D418970F65CE9E34611EBBF79917E8F68A602900EA96613FC476757B7E8C29C11A40913E5CCE0CF4D0E263ED7A0D7F774B4B7BC545F59FE370C4727247B283F3F9F01605CF00F444C94055E4C023AE36CC10D87BDB0F9E11675F1E6CB6F8E8C8EDE241DBD9DD9619C040C1E996A0CDAE754DBB993BC5C0F8C01E0550040210050DAFC73EAD32409007C7370376D506C150050CA8645DBB9B1A991148383E6E0405FC99AEC34D1E1E3948ED3409601BE2A8803CFAD5E5E98327DD017F6FB06161630198D82EA1B9A9AC5E2906903686DF64F2307A753439AD60FE083E9BA3BDA0FD55696FE1D995B1DBE4F33C6B97B5118C09A496459484D4D15B503D604BCA93B669D37DE23203E29296BE38517DFE6EF1F90302D00A6F61BF0DF88BE861CE52F514DC79D38D6230050D2FC18F56BE2050038855CA3DC2200A0956AE8075D4F5255553575F7F4D065176D40DE6A305636B4389456378835889CEA7159973FF259B804FC0C20F4C1D95754D721D5544F63D86C0BFEAC7230F9DCE681DEDEEA86AAF27FABD5CA5A8C6D2BCC7A1B667E17EE0F8D7900C39C4DE05CD8A0B5B5556629290308421630A881175D7AD965CB73736F707573F739E39A03CB8528D3640F46B302B3E93D1A1E594FFD70FA7BDCB7D2B58377D04AC5C5020006FCF7BD9E5F08000C0C0ED0AA952BA9BDBD837A7ABACC61013EB43A3B4DE2280C9E9592ADED4BAF6D0A3EFF8C4D79453575F5F4CE6CD6A6CBDFA7F8015BE540AD5275B7D4567DD2DFD7538ABFDB108F0E04BF1B93B21FFB61A552A9A9ADAD359020BE4506C074B26029298314BC2011FEA0A0B06F6CBD7A576252F2A598950EE333C0C2065301304DB511FF23E4187C3D518D09F9BED440198ED9627918A757311121A253C8BD7293C968AAACAAD4BAB8BA3BF3275CCC4BC04FB385890076AAACAEA5BA86261A6BB459356D5301309317B0253584CEAB3B5A9A0E77B6367D81B16FC77B7722E85DD8F7E17943184335D8489B9D9D6D98731D6021B230B5A40C148ECB426C6C6CCA65576CDD1D1A169661B5D368198833E462E662D34C99C7407F9FBEA6BEC10806725ECC4BC0F975F58DCD545A5601D9D24D538E9D62D8CE98FD7397037C02C3407757496B43CD6718DB569EF11C7CEC7B31E6036AB55A8589C7570BE939F51BBD74730E95C0C564034B49197B175E010679F0C5C341EB376E5CBF6EFDA61BC10C4192B30C00CB791AEAEBB4DD3DFD5239927E9B80308304B0DF38515844FD601E89546AA51C3B5BF166263698DE0C2A86061B3B9A6AF76BD4EA7AFCDDC1C1C7BE079FBD1F4CA4F0F5F555438AF596593F76E1AEF92BF9A9D8A99D466891330EB9393989AB8CFD713F64C7CEEBB767E6E47CC3C9D1C96926EAB72DF0930160CD78F2601417158F28B55A47BC4E365709E01F6E3E7EF21452BB165186B69E7FCFA17863831CF0633AED487F576BE3E7837DBD65F86E1CF84E7C5E41F7D898EE5518631DC6560FB76F9A3AEBBFB2DF0A9EA9D3C825659685B0B088F86B77EEB82936362E572A9349167BE65BBBD855A3519B0A0A0AB50692385B7CD14CC1679D3F55524A4525A317B24C5F8E9D060033C8C14CA921D2C99181EEF6E3BD9DED47C702CE3ADF0926E59F4119C4582A4770C358EACBCACA98EEADCEFAAF0C00B6741AF9C221CE1656AD5ABD72CB15DFF816D2C6F0B30900E98494AAB3AB535F5C5266324B654ED3B140556D1DE51F3B2EFAF4931A32561DBBD4362F304B6AC881540CF495F7B4B57C8ED8B672E0F1D9BB10F81EEC0760AC15904F755757972E3C3CDC38DBACFFCA01606BA711E80EBE66C78E2B56AF597395AB8B9BDB6251FF7400B09C07EC3452D3D8282792C92DC1EFEAEAA14F0F1DA68ECEAEC9419A2E8036C8C15423684D0EB46A554B5F7BCB81118D8AF37941F5169DC7368CBFD52E2E2E5A8C9DC19AC93BA701604BA7119F2F30303838EA865D375E9F9E9EBE4626934B178BFAA5330008D46ECECF3F3A525DDFE4F8E1A707CC0D2D2D7271F9CAD4C519D6EAF1D6823FAB1C4C7ECC60D00D0E75771E520CF61571E059E739F096B4CEE2EE7133A4A4A418A73379E73C006CE93472499965213B7B79D6F6EB76EE02CDC5CE0680F9CCFC490C32F69A1B6EB95D535E5BEF628B5B5F0C394026A2550DF59F18EEEB3A82EF2C028F7D1726441F187110FE43E8BC56ABB5B87BF35C67FD390980E93A8D600367D0DB78A7110F075FBD6DDBC5976EDEB2CDD3CBD36B31A97F92C48C3DF7FA9B6FD594D534B8586AEED299DCFA0CC19F2D35C4E9CD5A95A272B8B76B3F667FF3D88CEF060B0A9D070094BC481A74CF174D18E6A2F34B0A00D63A8D5C520623B8583A8DCC069E9E9E1137EFDE7D6D5EDEAA0D8E8E0EF2C5A2FE89AFE1DB750C806A0B034C5FBC3993CE67F00253E4C0A0D3B62BFBBB3FD56954D5168387EFD8CD81C7DFC3F8186A4EEBE6ABF34B0E00B6761AB98894989898F2ED9B775F1F9F109FBC98D46FE96F5DF7ED5B35A5D5752E67B65BA7D7F259FDC0D8FB9A4D468566A8FFA046315860A17A9EF55CB7E7A68D52A9545BAA78313131A6F9EAFC920580AD9D46D064F0E5575CB1F6DA6BAFBDC6DFCFDF7FC61FB7B291FA2DB79D37ED11009873F166263920B35EAF569ED40CF5F1CFCAB7F30A770E3E1B3CCEE7B990C33ACFBFBB3566F0CC8B39EB971400E6D2697472720ABDFDF63BAEDA74E1851701234E0BA1FED300D8AD29A99A08001B6AF9D3A78666A35653A355F47F62D4EB9BB87CCB548FB7E9C17D36780A0F0F0F0DE44DA7D1688C8BA5F35F0B00CC76F10A771AF95F16C51614111111F7DDEFDEB9232B3B2B9373C6F950BFE5B6E35B0C805A17A98DC19FAE9963361ABBF4AA81FD06ED48B9A582673178675BE7BF560098A9A48CCD1DACE0C3D902B6E00D1B36ADB8F9969BAF45DA183257EA9F0A009B6BF95300809BCAAC511ED66B14C7C60C1E6BFDB8CE733E8FC06BCFA6CE7FED00604BA7912F5EE1758918E890DD7BF66CDE7AE5D6CDEE1EEEAEB652FF44001457D6B8CC74DDBDF5D4900C669DB6C83CA2388031E685193CE399EE7B2D3A8FCFA8E1BAFDD9D6F9AF2D0066EA34BABABABA6170BD395BC03EC8DFDF3FFA9E7BEFDDB6FA82D5B90E0E72E96CD43F15004474C6C28CE9E4804C867A1A517E62361AF842034BDDBE97E9DEA2F3602BFD62E6F3E73500A62B2973B630B1D3C845A4BCBCBC8CEF7FFFFBD7C4C5C547CE44FDD600205291197E85436A36F5490C9A031283BE840D1E533EEB3CD3FD57A9F3E7050066EB34E27B8A8B57980DD81FDC74D34D1B77EDDAB5C5CFCFCF73A6F34D0580C4EA620D1A911B74C749AFC947B0DBF11E1D96E5585CBEFDAA75FEBC0280AD9D462E227135F19E7BEED97AC92597AC72E025C33600602208107C938CF4958E46C341F07E33CEDD2E97CB3BC666FD00F68A2F2B9FB703608E9D465E8E8620095948C2EDDE7BEFBD3A2323237EEA39B67F6BB7BAA4B2C675EA71B9C4D4EE64D61F92984D7538473B6F34BA32677C11E662D7EDED00582459B0D669E42569DBB66D5BB567CF9E2B8282827C4E33C01E657165B5FBF8B9C834EC64361C9793B18C46D7E08D3B7C36790098126C33ED224C3B00BE7A2058ED34B24944008320056177DD75D7655BB76E5D0BC970DC79D39EC1A28A6A6FBC50E760D697622B1C5B8029663D9770B1F53939390D8359C4AA9C991661DA01708EB0C14C9D46968565CB96C5DC7FFFFD5B9F7FF90F7EC5C5A583CE12FD094493FFC103DEC4BA7B5EA081A08BA5D7EEEEEE23E792BBB703600EB260B97805875C2D9D462E22312B606607C2C7F1208DE038A7737C7955B7654996979797A6A7A747B790553976007CC52691AC741A1908F8DB1BDAEE89FBBCDE80D3B861FC3D80C00FE16F95B7B7F7C8B96EF2EC0098231B583A8DA075FED7D05D31DB396B90629CF8624A0D9EAA9EBAF4DABC8407D10E80696A071E1E1E323081C3F0F030FF78A6041261C2DF065E8B37D7A5D776002C4159E05F504790A5D077D125823298010AF3D725F07600D8EE0F46D37FF153124BCBE0D972FB5FCD077F9A127699A90000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (123,1,'Router_(24)',0x89504E470D0A1A0A0000000D4948445200000018000000160806000000DA7D5C880000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000003B9494441544889B5D36D48DD551C07F0EFEFFC9FBD3E5CCD344330967BB1ACA47C8039C75A08C188DED48818AC17DBD8DEC9682F22160303AB37AD5C052114C41623A2C064DA13D6AA3B8A54622BE79AF9804EE7D47BB9D77BFFFFF3FF9F875EE884954E85FCC179777EE7737EDFC381D61A1B5D9F7ED9BBFF99C3ADE59BE961D844B98E53A78559BC999E4D01EB554F4F8FF3D26B6F756D19E0791ED9A659B865000010DD79E4FF0E18C61603EC5F80B95EC3E8E8E823A1504FF388FF44B43E60B00D00BEEF5786A17821C7FD036498B55A7028A9714F5141EAC8F3FB8ABEEAEB7BF7A9BD7BFF587582BB007100CF69AD0F68608F5492A490181E99402EC8A1345E04D360F1FC98732C08F8B12FBA2FFC1EF8FC5CE48B4F0E1EDC3F75D7097EFD6DF04C63FD63470038522A6416B3B83C3C82F1C91B20106424307963168E6D215E10432CCF8152BA5641D74624DE78AFF3A31F7C1E9E2B7258B761587700A4B5C68957DB545565E5A5279FD8FDD0546A367E732205A9256CCB442EF0C1790868400801CE430825519097879867414A8120E0E09C230838170AE96C267D94A7E72E74747470D25AE395B6D7B5E7BA608EA77B9B3ED675AC91B6A56B287EAB0C3C12504A228C22701E22142194D4504A218A045CDB409E63238A42044B0882308441E4936B3CCC9A9A9A3C25A394655BC8774C7A60A29ECD4CE72863F4CA476BCEC264124A694452012058CC0288000DB88E8598E78008506A099552C0320C789EE7095FE4B34422E1FF3D74A5FCD6CCF4870C104DBC1E715E8A9264A5313665EA86C7DFD6E31503300960064143C36406EE2D29444569316CD384520A3C0C31BF9044361740080121048068E90D008088E8F8F1971F2CAF2C3BBF6D7B751DCC9B6018C0154EB85C32AF6AAFEDD46E5460C40B62282E88ADC491CDE6707D6C0CC985242CCB826DDB701C1B0C0866E7A6B7AF002BAF4EC44E9E3AF5EC8E1D35EF575555954A2B40641054DA50B974926B32DC308CC80F7C0C5DBB8E3FAF0E032038CB071B8C446661AE7B6672FC50229158F80F707B1A00ECF43B674E3736361C2D2B2BB35DD785E7BAC86617C5679F77455D5F7F6B09A94CC7B6976F6DE9309B1D4A25675FBC74F1E280D65AADF993F5922A89A8B5B5B5F5CD9DBB9ACFEF6E6EDE655B1615DE5761CE2717A2547AD1746C1B8C1854C4E733B399933FFFF87DA7D65AAEF593D782A688684F7B7BFBBE9696960F1A1A1AEED75A4344110CA8003C735606B913FDFDFD69BD4A1CAB46B45A2DC766747676B60DFD3572F89BEFFA464C85438383BF5CBD1DC75AB7DCD40240D5D5D58500D846F6FF03678B6042D4627CF00000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (124,1,'Router_(48)',0x89504E470D0A1A0A0000000D49484452000000300000002C080600000023163B670000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000A1B4944415468DED5596B6C53E7197ECFCDC797D8B1E338F7401292102E491428B052A089482874AA60745C0A68A3454C1394AD52377E8C75193F3655435AD5AA552BA652A1858E46DD86B6A96B35AEAB20CDC245DC9242527223B1133B76E2F87E6E7BBF633B7142C26820B09CE8CB777C8E7DFC3CEFF3BCEFFB1D1F4A5114988EEDE041A029D31F965FBED67CE3C4476F0DC2346DF4745DB8FCD9B3A63979D95F2A0CB516A671A3A7F5E21405D3BD4D2B018AA66736818755E0AFA74E593F3C7EA279C3CBAFEF7E320A3C24019E61385392611ED08A75C6E6C0FF0AC234E7C00C27F02814A09FA802143DC31598E9167A1C956C061080994DE0B176E24B76BBFE7113601FF6021D767B89148AEC9014699B4194336F785AFE2E884A1D76D1065190FF3F09B85CAE4C19E8970451D8CE48CA2205AB8D2C02907B0BBCBBD804206F4A3524797C5408969697CC2556C6A13C690226BFDFFFA22849DB6986A9924589A608E0490758788E83958BCB7E7DFADFE7778AA2704C90C563DFADAE6E99423D9E32010D8E7504B4288A2F6020B5E4E018A0109DBB7AFBC09C6C048EA1EF3987230FC37F0064EAC0897F7E71598A48754129747CC7C68DF6874DD4890810B957E2D80EAA1DC042C20963A3ABCE114184C62BD7A1ADAB076C160B78FD3E48B598A1A42037EA99099401192D07CA220E98431FD77F7A5A10A53A3F47FF65CFA64DBEC9057830054A63A0B7E1C88D1F1C0F9A0CA7DB03E7BEBA0C81600852AD669024593D96956E857E971B7C3EBFFAA5568B09D2AD961125E28180E86B4656A81A7C55A30946DEFFE0C8D1BF09A258E7B6DFFDA2B6B656FCD639F0C66F7E7764CFAE1FA66466A4E726BE210E5A9665B876AB0D2E5EBD094683010C3A9D6A1BBD4E0B399969303038840B2F4605DE8764325353A0B5BD1B097940A361203B2D35AAE284CA801EC7563CB9D564CB741D7AE7BD4F22A25C57B1A8B4E38115C0A83DF5FBF70E8B458505E7766CDE58AED7E9CCE4B83F108453E79BA0BBD7A102D5683470D7DE07730BF36056563A086823B331091C1197AA02DE8040281C41C298403C0FEE41AF4AF2AEFD6BC8B2A500CF7360D46BC7283A9A33EAB15445A1F652A0ECBDD874A523CD960E7A0D9B3A69A78EFFACF2B35F1E545896057530AC776EE11C47189822F21E5D3640E7553768790DE4E56420997E4832E880E35868EFB243BACD82F920C0D0900F6CD66424826A6016B02C03C33E9F4AC03D340C3AFC7C301402735212068205AB39094451C22102168AE8AC0EDC97C49173129E437B3561D9AE0B0BCCF1F70FD5F68F49705C30510CC3C0C86019537B7757714B673B1C9E5BABBCFEF47A68587F0C247D488D920123E8F6784183648D48C4E70B8041AB55BD1E0A0BA041620400511E9354CD110617352456E4FAFE50185C83C370B3AD0B1C031EB5184C946B23F68D1E5C4229D4DB2C447A7EB2FF17677E7EF06049EC7E81A2962D5B66243E6398D1C121B874939952BAAD54D1A91AA5A47D89FCAFA547E1A3396F026F53D31006BD7E484AD28F00D060C443E130F0AC064211412D680C1D2DAB2C92220B331E671FDA9247058248362248D0E970823F181E577EA344D4FEA78C16019D4EC7DA526D95B4C294AA042A2B2B199CD34964681AA31F1B84102B0B60122D00411DF595E706CDBBCD72AFB60BECE606A858D80461C18BC9AC45988A1A55BD4E0F019C198652232ECB1202E5D402A0D7F13084D5891089D558CC051D081111F2326C682F6EB4D4268C3811F211040F5A2DAF2AA2C851EBD367CF9E95388E73B9FAEC6FE1C1C0A80A8C3AAF1B7A0E68053F8EC3D45948D734BE00D5FCE74AE5D3EFC29A55EF20B841CC07BDEA75AD568349052022701D7E51282CAA0A0D0DFBD55B430EAF194D7A83AA506E86156667A746EF9D55A4102FB1234A901C40FFABEB6A5991D57C20819163C9CB9079D7AE5D1196820B1EE7C0E726B369B6D164CAC764A618B4918ED68009FF7AD85E30C91648415F535E1BD5DD93069EC122F9F9D5BFA50A666333EB9883E0CD2A8020F687144B32389C036AE4A3492981891045FBE460BFC8C0FE4170CB72B444AB4389CDB2A21685E1E16108AB568CDE1850B1412414C3914FD65457B5B0B15A2FE389E1C58B175F3C77B26FC7DC790B6B4AE62FA8B5A6D90A8912C53282C3B2D84D3931EBD1D3C0A07D3408C04E7FF99F6A2524DBE042D9252A2035C0FAAE1F405B9B1D7408940026B621CDCEDE3F006938CFCAB28114AB2EF204DD5DC6841FC0723C84E0193AEA042A7667262590082B3233A60F285149043CE944FFFFB9E5E6B50BCB5755FE68FEFC053FE68D7CF242651ECCE672D11EFD18A1107E801061C1EFA7A8FA8001BCA65EB9B5A089CE71CF817C4BB95A3673D26DD089FD8394BAA5A5C523A5528ED903122A0E89BE6BC00DBD8E3EF535010E09C0F11F90BF3889F0F030A619455393FDBCBE79F366E6CE9D3B4949164B51CDEA356F1415173FCF6BB52CA94E0A5E40901AF14257F1CB22501FC885642905DC9C03B2AF16CAA525F974C75D87AA40717E0E4675B49E4F54E70710F8EDF67608A06A6CAC94B3D1728EFBECC831929378AD407FCFDDA3775A5BDE2C2828E8A1EEF77C809458B4155129757E69E933CFAC58F5ABD97979A55CACE1915956EC704B08822CD0E0A387C1D09B020ADEC95892348229D9C44BF734AA3878113DEE876B375BA0CFE91C291C6C623F4A20822A8A6E675F63D737B7DFC54034E18AA0B7A1A121443DC8030E221512214BE9CCAA9A9AEDCBBFB3629F2DDD961A27413AEEE8FEE8B8D3F64DC8E976ABD520B1CB862221B87ABD195A6EB7A9FE1E033606384109C53F34D8E6E8E938ECF37A4F22F8CE9292126F7D7DBD346629F1201BB1556B6BAB51ABD5166CDEFAD2FE254B976D30180C3C5952B04C4C152E4E80510991F4BA7CF94AC8E3F5F1D895E9E6AF6FC1F9C626059B1FC58E033B5E01291272B9FBED7FF27B073FC5EBDCC60A3570E9D2255149004D7DDB474CC4560B162CE050C2D4C2C2C2251B5EFCFE81F2B2F2A7F035359112F17DBC9B9336EED8297AFD417E2C60366A9F1122D8B16539E01B749D1CF6B88E6041B986EF73A05DC2A45A4EBA989BC20F4EAAAD50D2ECAAD5AB376C58FFBDD7F2F2F3B2EE25C08CEC2F5E592D480AF6B349A24ED39424047D577C03FD870541B8804A77CF9A35CB1FB7CB7D57A353DD88AD9A9B9B93799ECFDFF9CA2B7BD73EB7768BD59AA21FAF00297D152B560BA2AC70F75887AC97C44847C4E7A9C31AFD19826FC3C80F8EB7CBB41048B41502B5A5A5A555EC79F5D5FD95AB9E5D8E6B1786AC7D98D80D49F9F22A95C098A883EC5142817F4891403D62B99E9C9CDC87CB9BB0F280C0A847F99895D8AAACAC4C87D267A3BDD6EDDEBDFBA7151515F9234F2E91404494A204682AC4C8420344027F440C8D7ABDBE3B2B2B2B703FBB4C3B81F8565555C53A1C8E64A3D158B065CB9697B76DDBB63D3333D344088405115757D22D0E848F599A3E4DEC8251F79C3973469C52D0A6EB4137B11556290DAA9166B1584AF7EDDBF7DADB1F7C382B38E43E0D8AF4D954ECF2580924DA0AF3438F499E81FB19689F7E5CBEDBA76297274220B15A399D4ECE66B3098F02787CFB2F27B8C84671AE50260000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (125,1,'Router_(64)',0x89504E470D0A1A0A0000000D49484452000000400000003B0806000000CB8C8CDC0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000101E4944415468DEED5B09701CE5957EDD3D87A43934BAC7BAAC5BB28E91B1646CC93612D816364B143B148495CD62075361ABA2F5EE864D2DD91490A5922AA8A576B3A46077612B0B65C862273118022CB163D94296655BB646B7461A8DCE19DDD268EE9E3EF675CFA1D15836067C011EA9AB0F754FFFDFF7BEF7BDF7F78C089EE7E1DBFC226FD58DFFF0D189275F7AED37E3DFDDFF74FDB79200A98C52A814CA6482E414DF4A0284174110DFDE14B85D08907C1309F8AFDFFEAEAEA3DB943B3231FAD6FBAFFFBBE9B65500798308488E4FFC9B8438CDF33C4F95DEE62970EBDFFB1BEB01D7FADE7708F8C612007752E00E017708B8DD09206F28015F0B0F803B29708700F2C60C8180AF0901E41D05DC20055C6376DDC8E93065181CDC8A52DCCBB1DC832CC7B6B02C7F88673CEFE9743AC7EDA280EB4E80C53253C671F45E96E31F9552122DC3B27894177E7700CFEDE008D2D1DAA67F4F1129B77B3CCC2D2F31D78500ABD59AC5307C1DC3317B8160F3791132FE084F9C7961EDDF178F8102973D0AB91C64711278E8FE7B1E6C686A3A5EBD69D3855B61825F9A009BCD164F50D4231CCBEEE578A8E081F381F5C55B04EFC71F00EE5F96CE21718CA9DA844D2CCB9E3F71AAB10FD78780A1DFAEA9A931DDAE1E108583ACC565AF442AADC1B57409141F02DC071802507D7FF0EF4380893065F0F9B8FF020BD40B1F7EF2E9194C9D433CED3EBC7BF7EED95BED01142E5B71D98383FC1E8E5919000A2B81F47FD0C2712CE8BBFBE1CCC54E28CCCD84C29CD52095487CC9110A3E5C29C2B53C54E27E254BCA7E75F8E8B18F053268BBF5837DFBF6B96F2601E502685C1EC5451B3C1A007E05692F3A9CF0D9393D74F419A1203B1D369597406B671F9C696D87AA0D6B41AD8C02B54A0972A92404FCCA24E2062A8CAFC5E3B5548472F1CD77DEFDBD97E50E8D0F1A1A9E7BEE39EE46A440961FB4B0E4879FCC5F6E6841F99B46CD70E2CC0558B4D9614369216C5C570C4D17F478DC0277EBD64056EA2A68EBEA87146D3CA427278171781CF2B3D241A356F85571E554F21F55A332F6E381FDDAF4ACF1D7DE78EB1D1AE843070F1C68BF2E8DD0B3BF7871DB27C74FBE8937FDF94AE02198C141BD02C330D07CB11DFEE53F0FC167E7F5B0F1AE2211DC87279BC03C3905DFB96F132427C5434B7B37501409EB918851F31434B4B4414C4C348C4D4DC39F9B2F8217DF07FB84E5A406CD925FA614DF514841D3FD079225F4FFF6EAEBED2FFFFA3F7EF2D22BAFA47E992A40043E1CAD7FFAA7BB2889E468545464F7BE3DDFE7F2B2B38AC34F46D3139799392B7C7AFA2C740D0C4279710124C6C7A2ECDBC03C35234A3E4EA38196B62EF19AB2E23C989C998373FA1E589518877E900143A88AA9B97928C84803A14FE8EC1FC26A100F09311A888A9443945C8A8470C1FBB12C271214DC0E1C5F7E0E8F3FA7BC2C73485754FAD4C4CC5CF947A79A761F7BE35FDFBBAAC13DFFFCF3E2C69F4E34149014F528D291A0EFEC4EE8EAED6B2EC8CD964644442803F2EF320CC2DB473F86D6F61E282DCA85A4B8183875F6125826A7A1727D292423C036CC77015439029F5F58448574421C46FBAE221F1113D3B3909F91826F4840F7E030A814519010A701D3D8048260C0E5F6C0C08805E263A3C51872A87B04866BCEB72DAC857DDEBF1D38CE7304CF7119C842AD656242EBA15D049668D3C533A71BABABABD9CF55C0DFFDF4E7BB2892384A492890509428598AA2DC59ABD38C49C969058D2D97A8CCF414285D9B0DFA4B0370F65227AC4550E5C56BA0ADC700C69171282BCA074DB40A1A510D4E970BBDA00871F270114989C3E8E6AE4E814E830966E7ADB006AB82C3E98481610B64A6268963181831A347C4615E12306A99863C244A20538B04F15C4005575246C8DF969F3787DB4758D67BE8572FFEA2890FFB3E4090801F3FF3DC6E4A26FD4308F8E0323EE7E252CA14CC27A5BF9199D2DBA1D2B2131E5F3808EDA747317FBDB005A33F67B5C1E9739770B0B150AE2B84A13133F4618405A38BD544C3797DB7E8CC457959E80393308EE95290992E1265C494C84ED58217073C6A9982D5E82376AC26738B763CBE0A2667E7B17A448A442C8165BF789A30DC10CB736F5340BCF5EB977F69089A203A26C9F2BC94C4991989ED996FBDB424C56BC86EDE28E387A3F944470ADF92781CDE245E85F27BB3409541C1D1FF3B0D5674FF47766E05A94C82C6761E6263D4B00E15D13D300406D3089497E4834C2A85B66E036813E22015CDB17BC0041198EF1908781053402E93E2BD626004A31F87D7C769D4D0651CC6B2190936870B9ADA7A51356E58C4E56ADD26840639A46C132464A8958A7FD2C4688E843C9623888A8A0AB9D3B1184785011716E1985246809C9583723189609A9389BAC32F300EC6013FC8DB06AF3CF82390FE600486CCE3700AA57F57613E64A5A540233ABD0DA3B8B9BC14AC18C9B69E01D10063D46AB8D86580184C95F4642DF418472132420EA9AB12B0349A214EAD8294A438E8300C8B84A4A3390E0C4F205172C84D5F05FD4894DB4D2F015BA1DB5CA98C4AB1EFD0A0392B1562D9952C2B8376BB3DC2EBF6C487473F48086A57E99563D320150D8897464A46A7E6A1D0B089235C5218B359606B4D0CACC9ED824F1A9A215AA580CAB2123105FA8746A1027B02190EA0A5AD47049AA64D84F65E231A602464A624419F6914D4B89D8D00F57D26D1D8F2325360105303CD1D74F919A26F38D1204BB2D3205EA3BCBC4486F726FE322A38A9A03C34739FA9FA0C940F6D7309AD564BAAD41A79746CCC3D32995C1D9AFF8125818D8508221A0C115D50E05E0B465937C44FE51205FD9BF9FD12335FB5EE25624DCE19D0AD1987134D12BC490C96C002B1411A1E9F4010D9621E0A299191A205655404467F04A31D0FAB12629190418CB80C325213A11F9540A15E0B32D3C03C3D076E0F8D253319A2B18BF4B5CA975500719BE7968EB3E29A05E18903E97FE8E2EB8D08F402667A5BF59657450204324E9E3CC9998CFD13A3A6C10F95D16A894AA52E94E22B9C84385E05ED91ED90EBD1C1A0BC0BD45C2C44716A4217D54C188677F11435479827EF47E3CA83E8E877E15297144A0B4AD0E8DCD0DE3708B9E8EAD14A05E8B19C0AB99E99960C7A5482404C41569A1871878B065D5E26CC62099D59C06A812424614914C227465504EA03EB8BF4D27EA044BA512934ED114B2D104B1F9305BA43BCDFD4B6EA7B5E5B5605042314BC80A6694D6262A2AE74FD867F4C4C5A552591480801BCC44F824BE2042BBED131D53B90ECCD8004EF2A7824F12898E76AB18131835CE2E0B6577D4446C89D183905BCFECEE328D907C0EE74A101F623D074041F0B67B151120C302F33153A7A4D62B92B41E0A3135330B760834294BA2A2A726567BF420570381C60B3DBC53420495F35F3A5F2D2B6B0305EA6F3C57FFE59C9B2561889E09A9B9BDD2A956A7A7070F0CC9FFEF8C101FD85733F723AEC43A1E6A826D490265141B967833F8784498DCF53389E44A226C8231F3F8BCD52317FAEED19182C92C3CB053F81914823ECDC7CB7D82D5EE8E8153B44090EECBCBE0F7B8274B12A5CC4B982E0FC9BD7158A4AB9AC0DBEC2F3068FC703E6894998C6468BF632625AF0A169116CA438F13A244FF07EE2B2C990BF4960F06F8EA2A2A2D19EAE8E77DBDB2E36DDBBFDFE2772F20BF6A193AA04322882826A7223B4935DE001195E47F9AFF7AD5D9E281C4C34F186AB9F37EA3E83A93423F13F793F03E3FFEE87DA35DFC51EC1028DE73BB04C6237991083B3C57EAC1C5AD856795730D22BCD0196A6E1FEB908EB058B6512E6AD8BA25163270B840098E0704D885411B82D3CAB21FC2640F81A2A494646861C717A569C0E0B6AC0158D27CC635A389B1B4FBDD871A9F558D5D6ED4F6764666D432550821ACAA8B540294970D1F7A2CC88A0A078D405C749C0CE7A884DCDFBA165F87D7E9B6B07A478F289931D974057900D9518E5167D2F1A600CD46C2E130718001E3AE15AE9790362C4F67B12C6CC169110D1E4103CDE7409A81F35C1F92646D828FBC0E3E52E87FD0C96C4083CD373D50722021148821B7BE9C9C5C545DB07477F5F9F9757505D794FD58F93B4DA7C510D786319F52028342E24621EAF99C32B653848A9F81E525C5B1D1E426EC806D3C22457757729A6401F19299761C4D789CF0502391D685CAEF6286D0627517D4623785C1E8CB82FBF09C267806299F34799F3BB3E074B64D8161686868D86FF9E9B993A86E77B9799E0353C6121737272A4E81142994CBDAFA6A6AEACECEE27D46A754CA04A04DA6892E48166C7E082671A3474123492C7A16AE12FC043D3C0D01E5E29014F72B23682FBDCFE7EA9B7B762ABDDD5D30B5333B3CBCC4D5C07F6296AA97F11C622AE49F0D21EEBC4C8D0FB5396F16388A317EF3BD6DADA6A47EC2CF145BE2BEC370EB2ACAC4C8E378A8B8A8ACAAFDDF5507D5149C94EB91C63193687089222A1FC4EBCB46FB158E831B3195BE70859003CB782B3BBDC6EE8E8EC817ED39018E125C05776F9001128437A6EDAD238313AF45B7CEF0E1CFE8842A158686868A0FD690EC497F9B2B44004A60565B3D914B8A9CDCCC9A9ACADDDF5B7595959BAAB81178F4902DBBE81F67475BBA7E7AD127C534968D41904DFDD6B80D6363D78D1D9A9307001225652018E897758E7BB264686DFA669D739043FE8F57A670A0B0B5D478E1CE1426784C457F9B678202D5009D1D82FA46DDDBE7DF7D66D354F262424245E0BF8406FC1300C7FFE42AB7BC1E6C0B4E08991F17168686C82796C8444805498AC5754816FDFEB76996727477FE7B2DBFF8CC00DB858F01E0E943CC3AF0096F8AA5F970FA4854EA78BC01BC5632AE4D43DF6D853151B2BBFA3502AE441E94B4253830C820F55CBFCFC3C73A0FEEF9951CB64C4F2C88601BD2CF29450426C8BF3939FDAE7E70483EB4252479D4EA7756060C01B90FB551F885C87CFE208F40641C60A2421393535B5FC2FEB1EAB2FD1959461574D5C29FACB0D94828AAD3B68A7879185025DDA0E570125F882D763B79E5B9C9D39CCB2B41E8F9B50EEB3EDEDED6EDFB4E1EA0089EBFD0F13425AA03FC85C2E573492B1BAAAAAEA81EF3DFCC893ABD3D3933F0FBC20A60DF7DE4FBB3C5E5930CAD4D2AC342C1D78D6E31A702D4C1FF6D2F4594C4103DE6F1287E0BC92DC6F0A0101353CFCF0C36477777724024B90C964397FB56FDFE33B1F786077AC4613B512F8C08C6D7D750D1240CBC86591A7424C4F7077669A712EFE91F1B84FE0F8BB10F8181AF2E2E7C9FDA611104A04B6D452EC159428CB6434C7B57F8DAFCD5BB66CC43421430908BCD6576DA71D6E8180155C1E7827EF717EC6B81D1FE2313D9E6EC27C9FC5887BAE45EE379D80D0B408CC3471C0191B2A2AEE7BEA873F3C5054589811907E280136A75B16343FDF633A96E4BC1DE0B60B06D78AD7F4E1B827B02973604D67F9AF0082B859FF3415E81DB0018A542A958918C1DCBABABAEFEFD9B3E72154862A9C00F1CB13085E4A70235296FE0878B6F98BB8FB6D4740A81A302D24D891A9302D527152A23B78F0E0133B76ECD884692141023C48809C046E2192601A088E6DC06BF438CEC12FE2EEB72D01E169819BB1981A99C5C5C55BEAEBEBF71D7CE6598D6D7ED620E1BCC751016DD7D2CC7C2D09084D0B2C9951B89B8411CE46D02978D88E5237A2BB8FE02C7471686888BE1E72BFED08086FA9D10B14A806E1A338E4C2BB989F9FEF0EEFDDBF910484B4D48222482482BFD1C003AFFF0763E7F58C2674353D0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (126,1,'Router_(96)',0x89504E470D0A1A0A0000000D4948445200000060000000590806000000C1ED215D0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001D614944415478DAED9C07785CE59586CFCC68A4D1A8F76AF52EAB5BEE153006D31C8C8D169C6543B2D86C80DD04082C106AE82594408843964D6C200B2C8E77212104BCC696552DABF736EAD2A86B469A3E77BFFF9764ABCCA8D8C663479EE7B98F34573373EF3DEF39DF29FF1D890441A0CB0FDB3D44972280CF3F2F92D77756FDA056D1EEDDD5D573FCF0FBAF1FB90CE0023EFEF4E5D1308944D45C59D744B9C5E5870FBFF7DA8ECB002E03587A00AAEA9B29E754D96500B60250DDD04C278A2E03B019809A0605E500C0A1F75EBD0CC026001A5B28E764E96500B60250DBD442271880DFDA06C0A1435FF976A9069FAF6B6AF5EA560EB4FEF19DE7EF5B520070E1C80125873FDB6F1B009F7F75344E1089AA1B5ADAA9B0B44AF7E15BCFCA961680E656CA3D5976F8D3FD2FDB144023035056A5FBE0CD2506A05ED14639850CC04B3605D0D4DA4127110107DEFCC5D202D0A0688704951EFEF4DD8B004059B5EEC01BCF2C2D002CF45912FEC4C6009ADB3A790E587A00E07939274B0E7FFC6BDB036011F087D79F5E5A0058E89F4012FEF8D72FD81480A2BD8B47C09203C03C2FBB900178DEA6005A180044C0EF7FF9D4D202A068EFE411F0C7B76D0CA0A39B47C01204D0453945E5873FFAD5B33605D0DAC900D4E8FEF3B527961600E6792C026C0DA0ADB3874BD0FBAF2E3100CCF3B28B00E04D1B03E80280D2250880791E6BC43EB03180F62E251F45FCC72B4B0D003C2F071274F0CD5FD81640B7928F227EB7D40030CF3B81247CF08DA76D0AA0A3BB9747C0EF5E7E7C690160179E7D0A11F04BDB02E8ECE9E565E87B4B0D00BB70B626FC079B03E8A3938880DFBEF4F3A506A00F7D40E9E1DFDB184097B28F47C09203C02E3C1711F0FE6B4FD91440776F3F07B0FFC5C796160076E13927CB01E009DB038004ED7F618901E8E91DE039000D904D01F4F40DF008F8CD0B8F5EDA004478D4D5D5250B22C96D6641D82498CD5F18C5F441527474934500B870D607FC878D0128190044C0BBCF5FA2009A9A9A9691D8EE3681843D2408CB4D6633C1F864360BD8D84F738E59301D908AC51F2724240C4C0250F60FD289C252DB03C079B00878F7F9472E1D008383836E1A8DFE161399BE2F98858D30B2C83CDDE86416267E9ED9A7379BCC7FD6EA0D5F0DAAC7DEE96511000942FD6D5300BD0C0022E0D7CF5DFC00EC95FDFDDBC94CB79BCDA61BE0E90E66EEED0271AF3F6DF0794190C964A221D5182EBC26FBF19FDCB5119F2DD80CC0C0108F805F3FF7EF172500D1A04AB58E8CE63D30E42E18CF73DCA8530CBC40A35B7B1F76B618CDE60F4C82F1E0551B37565F68007D0C0022E09D672F22006ABD3E9EF446185DB80DDE1EC60CCA74DD04830A968C2E2C1284F5F71561DF419D60FAE8C62BAFECB91000FA07877904BCFDECC3360710A0D3E9FE013F6F3799CCE9D6BD780E83CEE9FD67F68DC39C225FB3DF87DDE6BF0926D301321BFE74FDF5D78F7DA70010016FFFC236005CB07DCF24087BCC26D315B868C92CE358F562CB92D2DB3F441E6E2E7378FFC4BE85478D1ADB2193400748377A64D7AE5DA6F3096060688403F8D5330F5D300076D8B661DB83ED467C867C719232DBA03A9D818ACAABE9F8C9321A181AA6ED5BD650C6F23832198D3CBB3288B3E5CBD2F1E68DB62EC1441F9A2053B7EDDA51723E000C0E8F70097AEB020058CDE405DBADD87C2677B2CF3853BB9FF1FEB9357CDCFBFB0687E8784109E59EAA206727475A9B9E4429F15154DDA060B37E6209EEC62BD7537C54E89C51635EC0F1A69EA7693C7957A29A3A60129B3FFC415656DBD90350F10878EBE99F7D2700A2278CCEB6284B2F58902CCCF0C6DA26051DC92922F645BBF8A8705ABF22997CBD3D281746CF2BAE208D564F49B191B432359E1CA476945752857D3ABA72753AC964F6E7146D16608189F928B2C641AD943EBDF7F6DB471603606844C523E0CDF308807977D684C4AC9CEF43169A4C753A3D3CBD9CBEC93D49C3236A5A036F5F979144236A351D43149454D593B3DC9156A526D28AA458EA540E70208A8E6E4A8E8DE0FB70CA54585143AE4E724A8C0E233B89D802F8F1634E7AFA4CEF9F276AB42820FE0796396867D27F79D75D7719E607A0E611F0E6530F9E3B80ECDCFC77D7AF59F5C3099D9FF721703998DB13950383F44D76011D2F2C252F7757DAB43A8DD2E263A8ACA681BECD2B8681BB282CD89FD667A4504C440840D471F9D1EB0D8880044A4B882636FBCF2BA9A47A453BB9BB3A533AF645870753735B17F923725C9DE567E9FD73464D1F8AA9FF02C6833FBDFBEE3C6B0086556A1E016F9C0F00F7FEEC51C1CFD727F7EE3BEF08F5F2F4085C1800CB17C2E4E5AB637954565D4F6989B1B4794D06F978B8D3B705C5742CBF98C6345A4AC7FEF52B53C8C95146D900945F5A457E30E89AB4248A0A0DA2B2DA06CA2DAE2465DF20452C0BA48CA418F24485545C5147A5B54DE4EFE3C901B9B938F1E41DE8E3C57384304FA5655E608E9AF2BC01CF0F8A74A6830F3E786FE3540023AA512A2CAFD2BDFEC403E70EE0BE871E13C4623149C4124D6A52627ED6CE1DABA4523BC7B9E5E78C0468B45A3A9E5FC20D3F323A4A9B5767708FEF1F1CA123888282B22A2E331B56A6D1DAB4E5A444123E9A574455750A4A8E8BA4759025968C99B7170086DE6042528EA415CB63690C9F5D505A43ECAEE838444A5A4214190C463A55594F75888C90405F5A951287F718C909C7907279329F558E9AD96BCC90B85CC8D4C188D08853AE9EEEB923EA512E41E705C0BF3DFC380730B949EC249DD75D7D55CBFAD5996BE6D2FF9EDE7EFACBD15C3A72A28002FD7D68EB865530500C1555D4D2D7C7F3897D8F2A121ECD8024C74550318C7624B7888650C2AD4D4FE6BA3F32AA4645544AA58818571767EC4BA0E498086A80C1F38BAB687064049114C3F34137F24341790D75F50E5042640812761822404DA79047C6C6B41C9A9F971B37A80B802EAECB5E70D4185D5C5DED9CE4CE54A3E8D0FDF289FBCF1DC04F1E79E23400C9141072B963F96DBB6E96852D0B8E9E2A3FA5B8E02F8E644366EA6835BC9719DED3D595BECE29E0BA3F0A6364A6C4D3156B337973750C9A7F34BF089AED0C1869801145ECDB8EDF42921A5A3A28267C193E2791827DBD01AF8E478283833DAD4A8E8724055315CAD382B26ADE37A426445202CAD3A6964E2AC279B084CCE032392AAD6EA2968E1E0A0BF2A314001B52A9C8D7CB7D8A644EF174C142577D165163329B7E874AEAC0CBCFFCFC1853C1B30270FFA34F4E8B8069D120169BBD3CDCAA77EEB821ACB4BAD1E98B6FB2B9E46CDDB89AAE5CBB827AA0D37FF9BF13BCD27182D76D81E66F5E95CE3DF76FC70BD997182821269CB6A0940C8081F34B2A7812568D8E41DBE3501525A2C611B1552E346575140AE3AD494B244F0F37BCB7864793337205CB03E141013C07B084EDE1E68AA41E4552A904AFA9A78E9E5E9E3F18CC96F66EAA6E6A251F4F374AC1B155631AF286238825A24578FFC2A386C1339ACDAD78F28141A0836F3EF744D5A2003CF0D853002081C145342D122467400C8FE98C832A9DE81F6FB95E9C9C12297AA3FD55FA54FE3ED917A392A9BC99B6AFDC0423C5F2B292E502760BE1BACC14787C3AF7B2A379A728FB6429A4414EEBB13F03FADEDEDDCB73477D4B1B3C3B9A56A725A00B36530E1AB4B2DA460A09F0A39588020F37672E3DE5307E28343F0392A445797B12707AFA862047A1141D1680CFE9A4EAC656C8903B2F5759B35451D7427247074A8A0925B188A1263CB79FDE389EFDB8C3DAFB8A4D26E100890D1FBDFDD24BDD7302604B820FFCFC69F34CF9990943241253A35245617181C227AB9E13F5C6D59DFE0C37C193B654ED22DD417FD4B152BA6AFD4A48CA726A0584AF8F17708F8D85913665A6222704F3E747213F2A24B23548CA99303283918D28605FC048420E58959240469391725919DADCCE65271D656CFFF030AAA61A44981A79219CA24302A90ADE5ED5D04201A88E52204703432A1E29F652292D8F0EE511545EAFA0F69E7E00F4A67844098B40678061AAB1C0C66D4A829EF8290853A600166199F0F1479C9C1C5E7AF999A7BE9E0500B617272626DA5DB7334B67417A66C9D1B05E4C6E011EF4507016DD2CEC169A57E78A7A1CC7BBF9C09658BA5BFD105DE3770D155454D2D1A3A5D4DDDBC74BCB8DD07D47683A2B398F1596900BAA958D2B53E1A5E15482BE80ED1F518DD10A543399CBE3A8BBAF9F8F293AD007A4C3DB5321352D9DDD90AF1AC89F86474BE4327F2A471555812DC8CF8BD260F821F518127203BB2EC009E3B2538E0868822405F97AC1F0C1348C2AADB2A10D704D94141D421EAE72449D69A2B8B0DCDC2DD2FB4FBFC6C15E4AEE6E6EA4D1E9DE7BFEF17FFFE7690098F1A3A2A2A49E9E9ECE5BAEBDB16F96E127E547340582D481C4CE9EF4D365DFA37B94CF52ADBC98063D9A85873D1F1392BC968B5F523E4747423EE59ABEBBEEC7B4D7EF5F884D0D8FE414A294ACA6D8B010DAB82A957CE1A979C819274E96913D4E9295A149489A35900F1605ACA259951A0FEF0D8796B7202957732F63656968902F22A8811B3E24C0071552142249834EB98E8C30646A5C38FA024F18B915EF6D430FE2CAA380199CC11886E7472F0BE091D0DD3F08D9EA42A3E84291F8DC498F9E4CCC538D3A7B046E3D6A44500F27B9131F9F30FBA9C7C6A60360DBE6CD9B252A95CA0920FCB7DE70738D35E999190522470F7A306C0FFDB8F719AA70CCA761713F5D37743B7D96F48A3090542F124467E42D50114701FFB981B6046E84E1D3F8897F8B5C905F5285FADD0FB9209977C327CB6BE944E1380C264931F0D41294A57968C6A476767C36148C3297BDAE02D21212E48F4889C685A14728ABE5CD5D2A4AD03018B1B6A99DCAEA9A7994A500069B2995D62AB8B12383FD282A248086217D558DED646727A118C090CBA47327E2B92AA229DECF00B26B7090DA8F3B308C2F82CDC634A300F0E87400901EA9BDBDBD1B8C1AB1EDA65BF2AC1B9D01194FD03C17D849E991C8FB686FEF93542A3F412AF1305DA9FA1E3DEF7F0F3DA47E4138B2FA3DEAF06E1039A89C6863EB0EBACFF97E12862A501175C3804AD4EAD1909F14345E4EBCF26152E3EFED49EB56247123B34861BACFE63EAC1A627F639D72796D3385035666722C64C8C04BD521959A376631C82B0DAD9DBC3963464D851CB1CEB90CEF51A02C0D09F0A63840650D5E15A26C54ABC3F34094CE4EB30C7A366BD57C8914B227856D24A8B444A271BB4DFE1C1DD5FEF6C5A71EB96B1A808C8C0C3B8944E26A329942AFB9E9967CFC6E674D7A6656447FF5FE921274EBA8C8E95B1A13AB69B3EA460EE0B5B64374C0EB35F2903A094F793D6EB2171FB3F374FF2D458535924E2FA7BEFE7BA8A36B37FD5F6E1960D4504CC432DA808AC81D0D18AB7CF261545F2F06633997859CA24A5EF944C06B572329EBF57A3A81E68CDD12C24AD044480B4BF405880CA3C14C2909111402884C9E98FCB0A62C0932C67A85CAC616EAE91FA2D8D0409E3316DF80595BAB367193B20A8B2B844874DA71270168349AFD2F3CF9D8DE693960F7EEDD92DADA5A99542AF50A0E8D581B9390F8B0B38B4BCA5CF273BA22C2876A41FB0B8FFF269D484B1BD4DBE945FFFBE8D5B6CFE80F5EAF90BF2184B24C61B8F84F2939B119EF39335C54B4FBD29FBE7C8C3293D6C25B2448CAC5ECCB6E140AEFDE802860656A367243694D23C5842D43142490C16844B454505B572F3C3E9277C54A18938DAB8791BC59071C0DC3D6A15A62D58F8BB323A5C646A23973E4209A5ABBD143F85164881FCF4FE36BD50B99945A1FDAB17C63341A78E7259EF478EEB8B34168C6B4FB5F7C7A0600567EB23CD0DBDB2B7376767637180C7EC9E92B76844644EF93C964DE33A5C7128C4F3C0E915EA4A7B5A3DBE865BF9FD2CBED1F7300418670DA650EA6509F0F48D1F788B031FD45F2F7ED1455D65D430E760FA069194244FC8A3EFE22801CED336823A2C0DE41CAC7D365307C6C7808AD45190BEBD071C854231225D378360D6533981C4441A7B29F836009B605515004F961E7CA5EC792703D3AECCAFA5694A61EBCECB4B7979CCBF8E1CCDF90CCC7206126185F241A77C63901E0271AD7FD2F3DFDF3BD96CA50D1AE5DBBC4EDEDEDF690223942DCD3D1D171D9EA0D9BF7FA0504ED4002B417CF909FC924CDA0A8ED46E994AC928274D1F49ADF03F442FB1F3980604324DD620EA4109F8FA8A4F9755A13B38B6ADB9F347BBB07989705FDC62E31A6009F81BA5A904092B2E8E0A1955458D6C66B7DB656C0423A1B49B906F57D126AFDCCE438D2EB0C307C251FCAC5C3E8E9D0FEBE8111E4876A24391D373C2B4D5BBA94545CD548CE72192F455DE5F269D5CBC2C70FB3BD9F25FB5194B134E1F5A2C982650E10ECE71824E8955F3CB1D76A23369113245AADD601DECF16DCBD8342C253D23232FED5C3CB7B85754962079550A3A4875EF17E989EED38C80184E8A3D127F8D332EF4FA854F10A0750DEFA2279381752B05FB5909ED424924A47266A6F111D2FD84606FD633886085150C6BB60D623AC498BC7C98A29B7B8822AEA9B914B826915BA6D0DBAE09C5395A41C18E28D577C6408F50E0CA3339E2845E323C8CFD37DFE758205DDA72410EC424328A70D26C319238B26AF7F2A8819C69F88048D46B7FFD5671FDF3BE78AD86434141717DB41921CF1D40D1AED979ABEE2DAD8C4A47D4E4E4EFED61A3593D8441FCA3FA26B07FE890308D3C5D20EF2A560EFCFA84CF1220750DAF22A79B9E44072BA4839B29332E25E877E7AC33B1EA07E72A3B7252F51BBA98DAEC8FD3E6D8B5D8F1ADA81573A6C3EB40CF53E9B19D941125914B06E99AD17A7C545D228BCBFB0A296AF23A7E07904A260FA6859B074FBCA3C8DD4F83EB638D437384063E81D44DCB8A24501989421AD56B3FFB5E79EBE5B60A5D57C6BC2AC41436E10A347B0C789380182A7542A0B5EBF65D39DE191513BEDA5F60ED606777A78F3EBF297295C1B4F37921705791DA6F296E72600FC1200B249265552C7C0CD94167E0F9D6CF84C38E17D5838B6F143B1C9613C51CB4D4EB43E6F37693EF2232F3757DA90914C6E6E4EE809AA50DD342191062281C7B1AA8F0A51FD34B675D172C060E3696690C5553096BDDF84CA86DD83DA3F30302137330CBB001053018C8D8DBDFFF5E787F65556561A607B61DE45F9495962630A77777707B55AED8A9EC1C737202071FD862DF7F805F8AF46D5CA256326843E3466AD863E8AA53E0AF4FC9C2A5A9FE1008A156F918FEB5100E803801D00702F9DA83944AFFB3D44CBE5314247FA299152DEC18FEFDA11403FAA7894D2E4A974128D16F3F000F4036BD213F89C9FD5FB937D01CB0532343F5367338B6BA4A6C3181C1A425EEA86F71BCF34A55300580331571E50AB463E2CCECBDE17181838F6C9279F98177C5BCAA42CA15292EA743A3912B51BAA25FF8CCCD557646466EE7375730F9E9913267B063375A2CCFC5F6AE8FE470EE054F33BE4EBF60DD94B06A96BE8064A09FD09E5D67D02003FA375AA6BC94D70A763117F14366BAEA25B25DF17955737517611BB6D4546EB33965380AF17373A5B17F07677E3AB60EE161AA9B3BDED912557456B3B8DA854B3AA18D1E4F52D2612269EA39E302A7BBA1EA93859F03E4C3A5C5454645CD47D415393348C6F8FDF9DECECECBC1011C1576CBBE6F6F884C45D320799DC52829640B3F52633393B3E4CB51DF7908FDB5F482A19A1EEA1ED941CFA20E5D57DC4016C4223E76896A3AC7D979EEEFD1D55575598D5A31AF13A183E2A24882F3DB2468DC15D8DC4BCCCCFE7FC3452D8D8F266534B0B7576F7F01E619A312D829869646B0044343C3450AEA8ADD93F34349003296F81038F2C1A802559429296E1E4DDB0F9F8F9F9C55E75CDF67DA161E11B701091B59E815D9CC6904F3A630B0DA8E32821E867945F7F8003B81249592A48E9B0C7FBF450D75B742C3B9BD66666082E0E22537165BD1DABFD59271C8BCE99CBCCE26FDEB5385A6E696FA7C626051A3D9345EFB5086006084BC6D76AC6FADA9AEAFFACECEACCC67BEBE1B00AE4D4BE848404CDC71F7F6C3AA77B4367F60ED8DCD90DBA296969EB366DB9729F97B777D834E38B668F32580F6036D7D2982E8A0E1A0E50AC2E99460D1AFA9BEC10DDA77B9C8E1CCBA10D6B3349A9EC23FDD8A829392654903BC9ED2C2EA29CC52DEFBDFD03545E554DC86D13C6B3A2E38B8A04111B6B6B7B3A5A4FB42B1ABF868D9BF09E161CAF1B6A3168341A35CCFB17948417234BAC7790CBE5CEF84C6F1C2CE8BA9B76EC5A9191B9DB51EEE8B2903506CB7F3BD385B3E7903E735555954EEAE02863A1B4987B7F4EDFA8258CEB7C697935B577759E968FE9B39B33B2B2101093AF63A734D4AFAC6A87D7E35CEBF01A051CB31346EF974AA56A171717FDD1A3474DC284E1CFDBEDE9537B073737377677009BAEFAA1728ABAE9E65B7E141717BF4962672791CC18735B34BC64C6DA838521E0C040BFB1AEAEDE682F93CB16D348E90D06AAACAEA1AA9A3AFE1EEB558CB54898D1F14E89048D7AA4A343D1F49566545586EB6F866DDB20394AFC3E8208D3A2F4348EDFCB70C6E8E7FD0B1A937325D63BB0521E27E0A1D7EB035352D2576EBFE1BA7F0E080C8AB694A06742596884343536E95A3B3BC5123BA9D4522335B5016B685650E1A912360EB0DA28CD55C5884E4F86A7478249AF57293BDBBE85E7E7E1980A2637B06B37AE7D10B9702C383858CF4A4EC182B1BF936FC8CCEC1DD07CB86097374E3678FB7537DCB861D3A62C575757B7F9A56761B2C52E0C91A71D185139E0B0E259B746F6F5D1F1DC02EAEE512E6064307B866F2D21E36118EEED39D5DFD3F135644681E7ADD8DF89AD0FD7AC96C9643A68BD69A6D75FB0EF884DCA526161A114DAE7E8E4E4C47A073F544E91B7EDF9FE1D29A969572029D9CDEBED12EB37084C7D2D2EDA949F5FA057EB0C8ECCE347C746293BB7904B0E4D33DEFC1DEB9C9120120B63AAE186BEAED6BF1A74BA5A56560234EB1CFB587D8F87362D2DCD68CDEB2FF8B724A78E3400C019C9C813C70D8C4B4848BFF5D6AC3BC32322E217E2E9F3ADD04DEEEFE8E830BCFCC63BC6DCA262199BB65B958F59CDD4FC208C7A6DEF404FE7DFB4A3AA5313954D3B0028213743B8548D838383616A92BD68BEA63AB37760530684AD0F2E2078FBF6EBB76DBFEEBA2C4F2F2FAFC548CF5C93D96B6FCED276F5F6C916564E4E4FB0B35F2F26329BC64687FA4F8C0CF41E83CD14307A1BD379E4B7415CCB289C4A3F9FDC5C145FD49E39D24079C67A077F5C40F89D3FFCD16D6BD6AEBB0ADA693FEB8E8C796E1098BA9F1972DB8EDDDA2E659FCC5A3533E7E4724A678B8749A71E2E1B1DEEFFABC960689CD479D8AD1F958D1A9EAFC3F5189F7CF2C94519DEA6DF949F39D270747474862779C1AB82222222927F70E70FEF884F484862CB94D6A5C73A0CF6D876D36E6DA7B257269AAFB19A0304E4463136D8F7A541A7A99CD479ECEFC539AB607BCD4275FEA2FC5705967A075C1C93255FEC5E76F5D5576FD97D6B5696BFBFBFEF62A467A23AA1AB6FDAA5EDE8E99589173832980A026DECA05635F88D41339ACF1AA973D5F98B16C0CCDE01922465230DC892071B69E082C3EEDAB76FD7D55BB75E2D777272982F174C1A9F3DB6DE708BB643C9004C37F65C934BC8B70E7A93A7570D7FC3EA791CBFF57CE8FC450F60AEE550182C088D4CE2BFFCF8C7B7AF58B122950DF9E6929EA900DA7B94B2A989546C75254B64361BF5D5E6B1E1BF988CC6BA499D07847E94B6AA73D5F94B02C07CCBA1F8D3B2CD575CB1EE4777DE991512121A604D7AA60268EBEE914D2D272D76B66663A7593BFA57C1A82F99909B0EFCEC65E3E2A1A1216D6666A6E15C75FE920230D7722893259C6FE8DEBD7B6FDAB973E735AE6E6E8E33A5672600BE8C6869722912D42283F65B6CC759598963B4E1183DD886D8F86042E7CD936BB7DFD9755ECCFFB2CCD248033AEC03EF0C46728EBBFFFEFBB3366EDC980E8389E702C017D14FD7FC649408A6523BA3E62B7C4E03F37ABCA40B3A3F80BFABBF0B9DBF640158EA1D90A01D612C76F3983F7687AC5BB72EF3DE7BEFBD353A3A3A7806000D00384EF90CB21399150E66DDD7A0CABEB5D234735A99909060FA2EE5E6920530D77228BC3F10D71076C71D775CB367CF9E6B11294E1300460180FF2E2161502A18B2A522F329667836386349964D2BE572F9A88F8F8FE1421BFE920330D7480351C17A8760F4123190A59D5BB76ECDDC7E7396AAADAB5B262543890399F3D8AAD4A4D763EBC36B47905F7417526EFE2E00CCB71C8A2D243535356540AD49696DA8ADC573F6BDAC163638C3D6851277D0CBCB4B634BAFFFBB00606D3914CFBD50D1B088F01CBFDDD1CC1645D87FCEEA47A3A79A4CB2DF7575B32400581B69B0B215BBE47C92663269A0F56A36A36F6868604B8236F7FABF3B0033471A902509A281FFB3114F4F4FA6F1C6F335BBB90C6061B2C47F9DF8C92F50B8482FF4FF014564AED27794164E0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (127,1,'Router_symbol_(128)',0x89504E470D0A1A0A0000000D4948445200000080000000490806000000F5D92EB70000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001D5C4944415478DAED5D09941C55B9FEABF7E99E9E9E25B3AF992599C964210B040C18C1C3128E20B8BCF394457DE811E53D8C0B20A028060282605883E1B118091E168D62F4C9A292030121099010B291C92433C9643233C9EC33BD56BDFFDEAEEABE75EB5675F56412835A3977AABABAAABAFA7EDFFFFFDFFFDF5B1D495114F86759AEFCE6CD01FC3EB5D8EAD43569F9D8FCF835FDC9B51250D7FCEB1C6C516C63FA0663C0BE06BA3E8AFB3B70DD89AD0340E9FCEB0B4FF67E14FB4CFAA811E06B4B6F2DC55B5EA0287203AE59B0C9BA887C9F893530EC93933B4D5FD37FE9F3C32A213AF1363B2449226D1BB68DAFAEFBE5BE7F136002CB37AF5B4EAC723EB6D3B02D545BAD15689349006103EBF3521D2B49A935B65E6C9B0819920D36BEBCF6B1C3FF2600B75C7BE35D53F07E2EC476860AF62C6C2E5B0069C0C82290264A98E4F160B476663F30C027DF4B024FFF32EBE436FEA56FE2EB4E6C6FE3E68BB8FEC39F9E7DA4FB5F9200DFFEE13D65780F9FC1F659BC95C5B876DA01070C40C9595A31585C1B442E5E0598DDD6834E4FD4772F482A1B526B1D09521E42C1BF4806E9057CEB85179E7E70DB3F3501AEFBF17D5549C0695B84CD91D112C12E29202BE0534402309200CCB7536B1577512F4AA93F1AE8CC9A92C2645B92DA0919F0E5DADFAC5EB1FE9F820037DEF6A0A45AFA7754172F918F8EC5E2E0F3382121CB1089C6C1E1706445023073F1BCF55A10013802E85C3B0B7E0A6C8E00220720097C8143028FD305F90521280C05E9E16DED9DF43A2AF0AC6EA097204212FFACC0F553CF3C7677E42347809B97AF242EFD3FB1DD843D34837C5E424E8092484030E087D6962668985A8D0A5B86B6BD1DB0BB6D3FF40F8C40381245324826D66912DB41E0C675FB192200FF5AB0CDC4F7340118D81505CC7ACF8100067303909F9F0785D8F24321282D2984992D8D30B5B60A02FE1CF8C1F20760E7AEBD5C88306E4BC958D183AB95B8E7E135ABEEEC39E90970CB4F5779F0DA5762FB3E765303F99C78340A4EA7034AA614C282B9ADB483F4E228F965E5848C44D8073BF7EC83818121180F4770BFC3D41B800911C0F2B5087066BF0E6026CE7304208BDBED8682823C280861A38087A0A9A1169A9BEAA018BFAB66D9ECB2EEC5F5F0ABE7D6A121C87A0230EB24F06C88A07D15C1BF6B70DF1DBF7CF8B63D2725017E7CF7A397E36597630F552795B90CC3C323E0F3BAE1A22567436E20C72884C8CD38925F5462F627B08376A095ECFCB01D8E0E0CC2E8589809136C6CD69303046411C7751E70251DD30D4400080503100A118B0E52CBAE282B8159339AA0AAA2143C1EB7ADFE89A077BB69D97D70B0BBC7A80D04EB1411B4AC22498830EEBF0537EE7DFCFE5B1327050196DDFB781EF6D64ABCE41745713C9E88831C97212FE8A71D36BBB509BC1E8FE6E252AC67D431D300CF4FC007DBF7C08EDD7BE1487F920C924A06D69A65249C13F713F2A4C900826D3BEBA407C8F1F92094970B179EFB7138FBCC059484135D9E58F33B7865FDDF198B6733064E140AC523B07D466A0BFFB5EAE7B76CFB871260F97D4F62DE0E4FE3F5EA45020E3801178BC7C081B71FCA0B407D5D15CC6C6E4257EA1429621A4F7962C4E309786FDB2EF40E6DD0777400C910A19F918F20B54CAF87A93515F09B757F81F1F1881EFC54AC4FBB761E74F51D83D2D7F2FB5CD42EDFFAFA6530ADB12EEB7EEAEDEB876577FF0206868735C8D300B3DBACC5EB2C3FE501D87D51EC93DB70FBCE9577DF143BA104F8E9834F9114EE7A6CCBD2459BB47032A876C1FE582C012E97044518475B9AEA613AC64EA7D399D206E65E41250366129BB76EA745A045A7CFA5D64FF6EF4151B9E6F93F510DA1FB6C917BE7737B769FFA5D897227A0FFC725E7D3583F91E5DE8757C3FB3BF6E852C3B413D06860150ECCB402DD7E15B7973C70E70DE1134680BB1F5AF3085EE3EBACD2CE04B8D123A42D34168B51AD505C58404344637D8D8EF17C5870480E4B72ECDDD701AB9F598724881AAD9F23427A95069DE897224CDB8857F9DCC5E752EB9FE8B27D671B3CF4F83398EEC638A08DDB29DD68251059A198D60AEB70EBD215B77F2F7EDC0970CF23BFFE0A9EFEB83E7F1691203331444489C7E3E0CFF1425949112C98D30A35D5654C8E6CF40C246D1491A07DDF0178E2D7BFA72460533A2101522421C0E7C39CD66970F1859F40527A6DF5C9E0D0303CF7BB97A07DFF41CC000AE0F40573E0D479ADD4A3DD7ECF2AE8EC62323849624A060C01529E404400A692684A04781AB7AEB8E727DF968F1B0156AC7A761E76D3063CDF6796635B11C39A005CD915C10847C234BE7FE58B97801F7368435800562F001587692F8124E8E882C7517C514F90025BAFF8B57B9882A168DE9C19B0E4DC33C1ED72D9EA8F814104FEF72FC2AE3D1DA847C653C090AB16E07DE761F6600E3E0F7A5A13A452C88C9902AF15A49577FDE8DA6F1E1702DCFFD8F38578DA662043B0603570028C07E05F67260359E228160B30F6CE6A6984F9A7CC0097D3690803A28C41470AD533747476C1AA5FAD4D7B0256F421C98A0BF361E1825970CE59A7D956F904F8677FF767D8D37E00C668BD4232940325418D5862F772AF0DA0DB2080C00B903DA7DFF1836BDE9A74023CF8C46F1FC0F3FE1B0CE559301080B77E2B32E8882027C0EFF3C0BCD92D300D452149173D6E17052609B0C31A7CBEA9F7DE79A01BFEF757BF85B1483425F4C838BFCB0950575581EE7A267E663375D9564BFFC0105AFC4BD086C04750848A8A3DE2C10111F8BA3785D9812471E25038E268C8189EBAEDC66F5C31A90458B9FAF75E3CE710B6023094690504C848063111881824DB4945AFA45C24117D4E27B16A27AD2ABA9C0E0A96836C6BFB5C4EBA8F9C4B3C0679EDF379691C279AA27F70085E7BF35D88CBFA913CB29D40DD11CCF5A3EE28C430D04209E862C20005FE859751571C8428A6A276819744830492D14748CC08924108B2E2D00CF8940749560D715D7DEBF55FEB9D3402FCE2A93F9C87E7BCC857D68CAFED81AF2BC182B567C8B456D2B99BE17D525E96E967E13AA1D0B1078FDBAD7676BA0F584210111AF0FBA8089D3DA3895624899688E1B5D8189FC1E0857BF5BCE1F7497AD2080890269E711FB7BEF996EF5EB57CD208F0E8D37FFC069EF3B0F5089ACD12AC687C5D4008E04AB66624606BF6EC7BA432E8C5F0118EC4A81E203DC67E6FBE0F5822694B143D92CBE9023B069FC1FF73C41013C268E9660430055E5BBF72F3D22F9F3B6904B87DC5134F9495967E5967CD3CF86014788681185342F03579B3091862B075EE1C2D3514F0C18CE67A58BC683E1C3932006F6CDC0A1D07BB310C8CA8C52649488268348ABAC345AF430844BC87E6452452C374E8330EB06DEDC663F8F745E01AC3838800C69080B7BBF7C66BAF6C9834025CFD9D5BFF6FE1C285178800B7B70D1CB83681368CCC991321918843517E1073F826380D459D48D0EDDD7700DE7E771B1C3CD40B43A361AA15F45E4001BFD705575D7E29F51AD1689C7A01428CB1F1088C8F8751F587211C26AFC3345C90F23499D740B609F9E2843089041DC320AF93FBE230343402127E9EC763AC2D9801AE03984D2305A46009108BC5076FFAD697F2278D009FFFD2B54F7FEAA24F7D4138B42A72D5A2F1756E9285C153643950A31181747649513EA68BCD30B3B9D1964023D6BDE3C37678E3ED2D70A0AB17BC3E9FEEBDD2A2105C75C5A5D4DA8F752195C097D7BF0503C3A3E0767B04B38724C16C22C9441C4A0252183D0012B5074340E9A411A079DED9772D5DBAF4BA4020900642E4B22DC6D7F5808BDF636BF41A59880BA643C1DC400D29D7569416526B278340D92CC323A31494BDFBBA2041DDBBA48BFEC49B4C9B5A49CBC0135D3A0F1C823FBDB201FAFA87C025045E503730D100D6A073E30BB8B3B7EFC8EEDBBE7FF5F4492340E3ECB3EE3CEFBCF36E5874E622F3B972A684C840068B3571ABCDF595D4E5761EEEC3744D01127A6B2B4A60E1829974924936CBC8E818FCE5B5B7A10D81571449ED554537BD4B7B453EFBF4792DF089450B264480DEBEA3B0013D0CA9040E8F8C53EB4FCE7DB001BE605EA1A538648E21A9F4A14387B7DCFDE36F9D32A904F0783C375C7DF5D5505C526C02B8B9EB16C6F54C6B5C4A8BF2E092258BE976381C81EDBBDBA1696A35048381ACEE9F94695FDDB009F610E0B5A1671DE0E2797EA43E70FED9A7D1295DC7B2F4F41E853737BD4FB5C7309290E8004206A318E409C28F1E9A6C33A2F6C0812EA259B6DCF3936F4F2E017075C3942953E09A6BAE018FD76332C9C25CF8658CEB1C013C2E093E7FD1D97452C6441702FCEB7F7F0FDAF677814C805724304CEB64E702F00BB937390E9FFBD43950515E3C2973280819DEDABC0DBABA7B610485A5460649902F4AFCF84186ED435DDD30343C446E7BCBCF977D775209F0535C5D4FB65B5B5BE1F2CB2F032DDFB09A64A19F90C17B8AB409F2E7112176CEA253A0AEBA7C429D4C143A49FDF6EE3F84D74A4E3BE3E7F42902B04D688009A00C977DF6025A2D04264474F71C81CAF2127B9541C172B8F7086C7C773B5EA70F46C63005F5FA18328804A239018E1C398AAE3FF59CC99615B77F6F7208805FCED130EBCC3B340290E5FCF3CF874F7EF21C73176ED7FA1962686B52B19B36B51CCEC0189FED42884380DFB17B3FA65C6EB577D8193FFA602FEC0545E19D035D723C4EF8C267CEA3E9E5BB5B76C2D61D7B60782C0241BF17CA8A0B69D5B012B5C944174286CD785D42AA51D43C3E5F8E6E3C03442250DD1E4151DBD6D69E7A8E9110E0FE3BAE3F360210E0B5CDFA998BEEC0D7D7B1EF9F7AEAA970E9A597A00BF358CCB831CEC0312384667F79011F5C78CEC209CFBF8B60CEBE7DE75EEAF68F0E8DD1D9BB562410812D6207C9E7F3FC6EEC64A0C0B363058A3AA98590A1BC6C0A92A1118A8B0A264E0624C1E6AD3B60575B278442F974CC43379CC40C0E1DEEE9C5B87F90929F298A6F79F0CEEF4F9C000CF864EDA89FF9312480E33BFC71C5C5C570C59557405565A56E8EBD68E2859D2959786770C159F3212F2F77C29D4766DF0E0E8D504BDA7FA01BBA7AFAC19BE34BE6F406C00DAC00C584121907011870A211F40C48E42AD40DC43384B2FC3EE439893737BE0F71C591D45BA01F2D4C0AD404B4ED6D87A3FDFD86F90DC4033C74D78DD91340D28694928D804F4A65AEA9AD672C73389C4B45E7109778D14517C1E2C51FA72E2B638A279A9143E27E2201F366D643435DA5AD4E223198A4753D7D0330383C8AEA7A1C8687C7E8B87F0CAFE52416CA8EFA0940B47CCA072CC4A1DD857886680C42411F6A85623ABF813C1C6235DCFCB7D736C1C068988600C350B2BA1A1A1C865DBB3F44B247047D9BF4002B7F767376041080EF529BB7AE65E1AD4E97DB72A6497373337CFAD3174325F506E2593766337288FBAA28C98785735B84719D4CF03CDA3F040368D9C3D839C32363308A422F42269632E55C45FF87035DACFE4D219ECC4727A4E4C8643C1E85FCA01F6AAA4A6146D354147D9ED4A0D3EB6F919A411F7849EC7748C6E9255232C7EFEC389074F98CC7154C66DDB2EADE1FCE554C2CDD400001F86EB5911CCC573B7DC10F5D1EDF5576BEEBCC9933E18225E7435D6D9D78F0464000AFDB098B4F9F49668121C8C3308400139047462314E83132A2A74EF25044428D57F62221272206B7DF127BC53ED89976D1F10224434128401F3AE93CD48B9AC783B1DE099CB1A7744D07027FF060171D77E0475FF9908ACBD64757FC686EB2DB8D2490B81F3560C1776A56AF3692F7E45637CDBBDEE3F35F960DE95B5A5A60C9854BA0B1A1014CA75ED3944F01BFCF492B73E374C68E941EAD3719BE5544A2CE820420B89E9108D6081F03FEBCABD51D4794BB233DDEAB3B7F7C7C1CF6EDEFA4E95D02C39AFEA96771593DC90779EBE30FFC643EB9BC88043C011C8CE57BD4462C9F94DB82D8F2AA1AE6FC8FD71FFC6C360470D2912F0F4C9F3E0DF5C162686A6AA2B3748CE28F0554D119A4E8A10D9DA353ACC0554C0A7C4A667D37D98FCE49923541245DA487818141E844377FA8FB300D81A91FC1D03DF3C84DAF674BEDB2F2FE930F2D2335EC84FAD5742448118051FBACE513F0896C254F41905C2654513FEBAB3981D0926CBE334993BC5E2F250169C1602E7A8566D40A2D50575787E9998B9BCD03BA717D9E0CFC8F3228025FAE28909104220299934139461720597B05297D6D027AF7E11E388C2D1C0ED3D94B29D02D1E9DE7EB2E74845491B7AD7E78F96924DAA85E40950CC91EE209A0093E62F9391CF864B4A5B0BCAEF58BFE60C1E26C0840F26F023C113A692224D781801FEAEB51F16378A8AAAAA4C71AC96024868128C620CF914044142B4178AC01C0461090D2216DA07F4005BD974E81D700E7C1976DFCAA095749FDE0A95FDC7106191B6248A0E808C0B87EA72AF834F0432AF845D8A6100294D5B67C3A9057B4301B0268E06BA01BC9907C2F0773749239909A426161217D0AD7458A37668410093A0E6545B1B0672583AD1F8F27E7A5643633323C02838398CD0C0E425FDF518846235403B1A0CBEA93D53AE065EBDF4832565313DB9F7EF4AEB3887E54499060BD004B004DF17BD498AF814F802F565B6169CDF4737343C5A764513E1682AF81AE6DB36460B7F3F2F2A0A0209FAEC91C043A6022990B3AC54CCD8BCDDF9208624D90BD03181B237509CC6828E043749B08B914E01AC829B04D0820279F589233FEAE513A0C2612F11DCF3CF6B3B3898E245926EF0578D5AFB9FE20037EA90A3EF50025D5D3CE0AE697CCB0DB07A48C6BB47A2F47042B327874C793F7FCFE00F87C3EFA3C3E0919A252B19205098C44C8CEF449C793F48C54FDC87C85309D2A1686716CE47711A2D158123806685903536600371021490053F065F16F20B1D9001260E7B34FDC4B66B38CF15E8025006BFD24DDCB57633E19D128534940C240414955D3C260416993FD0CC0A1826BE501BC1C19D22448AFC564D18ED10A455AE78A7EB12BB5627FCA8D79C62ED9F9C98E26F5FEF4F5649A73CB746E5F727E5F045D36A9BE85C723745BFBDC2478ECB692BE8E06A81901F8350BBAB69F035E36F9C12B8D04895874F7F3ABEFBB80CC81215329542F400890D008C08ABF1CD5FD6BD64FC02F6708102AAE6C9C9B5758D6904D06C05B336FD566A0F364D1DE139141DFA9B20E90648732AFB559BEB2AC0344D6AC94392F0524775EEA38FE1833F075F726B67E9620460FC07A02860C86DF46D47B80582CB673ED53F75F8CAF86D5301061C3004B0037E3FE59EBAF600890575052339D088189A480565E402F0859B264F61C240CC81C908A8004A9CE1782CE1F2B065EE1CE4B5DCF40041BE0A7C8C9118607DE862710168608DAE3631BFEF0CC235F550930A67A81B856176009C0C6FF22950015BC07C8CD2FAE2AAD9E3E3BFB14D06BC39AB57D6232989DA327803DCBCF68FD1941355A38EFFECD4380E058DEFA0596CF8708CBB450D50323C303CFBDB4F6C91FA90418E5748029010A55D0CB190F4042429EC3E90AD6359FF631893C9C378929202F0079D0CD7400798F88403340782B33278222F6123CA0BAE3C41E2093FB37DC934918300B01BA2C41E40D98D2F0FEB61D4BDF79F3E597C8C0A140081A42808F0B01AC0728568B4281B29AE6D640684A897D02786D58B2592810790EFD711A01F496652481DEFD0BE2B9EE589E089CF573841169009126B12682007C2B91A81140367A02A03FB011EBFEE373AB2EC5EBF43321206216025C4CE937C4688072755DACEECF757B7CA1AAC653E6A2377067AA0198C57E513A28AA0588AC9F7F8FFEB6A0D015DB200167D19621C0B6F5739FABD32526E1C98C089908200B52C3A42054F67DB8EDC6AD1B5F7D05A11854B300A108D49A5BADFF6B033F5A0D404B034BD4EC80BCE70FE4159694D5B6CCB07AF28D2D0289F2F9CCD66F2C1DF3C7916DEDC7A26D6900B30C6042966F1EFB8D61C08A0866D9891E749E700A4F0066FB484FD79A37FEB2F61115FC2126FEA78A417C25D0C98CFE6985A062157C8D00859A17207AA1B0B4B6AEA0A4BA76E24520AF8D3450142AF4FBD8FC7D724820108AA27021F03222EB37BF2FE33D296664D11140D189521EFCB191A1CD7F5DB7E646FCDC7E157CDEFA13220238985140BF0A74A1EA094AD86290A605C8B1E5535B67F9730B8ACC08C0BBFF4C16AD075D1C06D86BA46B007C071A3B3B61A2FC0D69A08D0C406F8D99AC9F0F4B62F56F5E6730D626CC88108B450FBFF1CADA6B8606FABA18F0B5F4CF3020A411400B032E460C6A2381454C5A38452545BE160A301BF01757344E0B1694949B5501ED809849FC5969818C3500B3DC9EB364B3F89FD1FD9B1C2FB47ED3FB536C7A1C0E7486086363231F6C79EB6F77F67677EC13801F65AD5F371864321CAC4D04D1CAC2DA88A0E605B45040BC852F37BFB8ACB8A2613A2B0CC565603111CC8B45DE8C75806CDDFE09258145A85164B146302B4C098B52F4A1D984DCDB7DE0B9B7D6AF5B2DCB090D780DFC7101F88A683E003F09D4C790204F9B0FC0B47C9E042E8F2F585A3D7DA6CF1FCC676702F12E5D04642622F01E435C05B4E844ABFCDFB4522872FD13F304E6A4E489608F909AD68846237DBBB76DBCF7C30F366F56411F551B6FF971D1B430D1943060E6057838126843C4058C17C8D3C2817AACB7A8ACAE31AFA87CAADBED716517D3B38FFF99AB8036AD5294DE9992209BF83F01F76F9995A4DE5706FBFB5EDBF8DA9F5762BCEF11002F72FBBAD94066B3823512B8B870E067748166FD218604B92A514835D18791C08F59424371794D4D4E8EDF6D271DE40B46E65EC01E018EC50B98C5633B166F4A8049484D13B80C1CEDDDB0F3FDB79FE96CDFD5C6803EAE360DF88CE0DB9916EE649F0950491050C10E320408AA4D23815F2582D7E974E594D534D557D634D40772831EABB1006B02888F352540565A80EFECE3E1053294A63314A410F7D891DEEEF5DB36BFFEFCA103ED9D1CE81AF05A9E1FE3E6002AB6A6850B48009C30D432841C8608B91C01820C5172B4B0408850D3D0D250DBD0521FCCCBF76722005B33987402588AAD938B00B1586CACAFE7E0DFDE7B7BFD6F7B0E75765B801E61804FB0824F64F9D93C1AC692401B34F23222D1CF9121C0B51CE658729EA7B8ACAAA4A67E7A4D756D6345416161E0847B80939C00B16874A4FF48CF3B07F6B7BDB9ED9D0D9B50E88D32806BA0F3AE9E055FB103FE841E0E6548E062C890A3363FD3025C38C86148E0D53C4A59654DF1F419736AA73636574D292E0D4E9A0638A61090AD06C8820022758F2D1A890EF5F51D7AA763EFAEBF6FD9F4FA7B89789CB570AD8A17612C9D75F59ABB4FCDFDB7037E368F87F3DE807D5E902582970911391CF85AF3326BED3CFAF85965F5D4A2D639F36BAB6BA7165756D54E09E517F88E67169071902793F5672B0219AF138BC5C3C34303FB078EF6B575B4EF7EF7BD4DAFBF8FF97C98039A75EF66D69EE063BD1DE0B32280C01B00F3C4302B14DDDC13451E0E741FD7BCCCF11EC6B390EBB8CA2BAA43CDADB3CB1AA7B5944C6D682AA9AAA92B0C04725D19EB00C7D5FAB31D0BA0F30BE59191A143A8DEDB7BBBBBDAF6EDDDBDFBC39D5BF723E02CB0EC7694B3F4383386CF2AFB040F7C36E0674D008137E08B470ECE2BB83970BD1CF03EC1FB6EAEB93492395D2ED7EC53E697CC9A33BFB4B2BA26BFACBC32585A5A16444F11F40772C97F342DD9C9B7279073DB023F1A098F8D8D8DF68F8E0C1F19191E3A3234D8DFDB7560FFBE0FB66CDA33323C38A282C8BAEF1803788C6BBCA5F3AA3EC180AE640BFC84096042045E23B044700A40F53004F132FBD8354B0096084E866CA9E6CBC971373635876AEA1AF22BABAA43C5256579054553425E6F8E177943C8E32604C26CC48D7FDC0EDC70389C2E746A2E5E7DC7E37139168FA2168BD13F74A1EB6824B91941F73DD83FD87FF4485F5F4F5F4FF7C1DE8EF63DBD8303474719C0625C8C662D990799DD9605719D77F1F2442D7ED208904123B0847072CDC581EA166C3B2D08A0AD1D8235FB702B5BCF60BD95C24E0E27E56A4C4BDD81DC5C57241C8E21AE9128F95DD87447B38D75BD6C8B0BB659F0452DC1011DE3841CAFE69589C4F81342800C5E81F70E4E0E383674383971C983CE371109248E048E0C0FEBB1F15366D67206126824890B0891C840920477BD04F7598AC97D4D1AF0C7850059920104D6EBE0F484D3C48B4826E7B1CF38828917E09EC5D5C551B6C3150128098BD70981052704E4E149A530009F10D04F0801B224046FB54EAE1C2D99006DE5F6250101EC3CF6CB83219B90C20C48D1FB8A450C3710503951A09C480264200370AE5A440E9E246012EB1D82B86FE6FE25DEDA4C3C832CD8962DDEB73A1F04C09F50D0FFE104C882142088E1BCD814810D166EDFEE83FF8AC91A4C5CB628940841574E964E3F990830016280897BB702DA9125F8A245B6713E988DBE9D74FDFB11B8C76321C8F15C3E1200675AFE1F90AD17B25A9E5C1B0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (128,1,'Router_symbol_(24)',0x89504E470D0A1A0A0000000D49484452000000180000000E080600000035F8DC7E0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000039C49444154388D75544B6C1B55143DF3C9D84E63A77162EC364993B4510415A925286A2408548010414808B62CBA2B125B5436EDAA122C58102101AABA4042820D41347C04A812C50229A4A0D292AA699CB6A993FA4F1D3CF6787E6F3EDC37B10329C5A3336F3CF3DE39E79E776704DFF771BFDF1BA7DE1DD62DEB7966D9CF30870DDACC1EB06D36C018DB4D5019736ACC66354114D76559CE4464F9C2D79F9FB9712F8F70AFC0A9B73E78B96F77ECBDD403FDC3C5F29F58CF97619A0688108EB305D775118FF762684F12438329B88E8BF33F2E4092E415A94B3EF9E999B7BFF88FC0DCDC9C74AB627CC56CE7054E90E8EFC5D8F05E8CECDB834A7513AADAC4F9CC021CD7C3602A8197668E62627C14F942195F7EFF13566FE5208922894834CADFBEFFCE9B2F12B5BF2DF0E1C7E75E7598FB49C7A543222145C281D121844321285D1296966FA2A9B570F4F1C3D075130BBFFD014D3720F04314200A22C4408446597AEDF489E367E54E29D995ECEBE9743A20E625F32A5CCFC546A18A54B21F8F3C3C81B17D83F8EEC222AEAFE6F0C491345E493E4D82067E2121C7F5778858967D8C68FF11C86432E5C9C949C4A2D180D8A5289203313C3B7D3828FD4EB18A9F2F2E419464B834BF566FA06757371E1C1F41FAE0386EE40A58DB2862B3AE51022E4AE54A89F306028220748D1E9C0ACFCECE626666064F3E354D450323437B716D751DF5460B6A4383242BE88B2BE0B116AA2AE0ABC8DE2E211EEB46321147281481A655B0B6761BD4716E2040E45C649CD9C67E8BDCCDCFCF239BCD626AEA080CC3A46EE923032222DD3D084768D7E840B06D7E2064DB0ECA77EBB84AFB532C95D06C6AD4710CA66586885BE4E4DD84438E65861189F26A68918D7C3E0F4551820D4BA552E4AC451BABD3420B9669A145D77A00838C188119D33479F6C1FAFA664D275E45A4934DA86F56EFDC24473E6F3359E690DBE882E791652188123E5D3BEED6BBC0F7C9F3BC60E4CDC1A8FB6C724F62CECAF5CB6789D7E9082C314B3F57CA5DCB30CBD0781774C02B403B161E4900CFDFBEE6021D70D1A6FAD7FAF295C5E3B9952B9768A12BD3248F9C55E9CF678656BFBCB67C71DA67CDE73C664C2406FA13F42CBCD5673E76BCF3FEF6891CEB6AB9B0B15C2E157F58CC7CF311DDAAF0DB3C911D9F0ADE4D34F412A2843861F8D0A38F3D34367A20D5138DF546C2BB6252485174ADA53654B5A636EA955AADB27AF5D2AFBFD3DC06272598C4E9FCEFB7E85F623C1BEE5E21486D086DDB1ECF9747D08E98F124EEC7F337E81712D0E84C6ADD0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (129,1,'Router_symbol_(48)',0x89504E470D0A1A0A0000000D49484452000000300000001B08060000003A690C720000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000008EA4944415458859D577B6C53D719FFEEBDB6633BB6F1337642E218F284609E1B6AD34181755AD9A405A629EB9E5227ED51A9A89DB6696F45FCB35154ADAA360603699D04EDB4A0AE157BB56C520715AC0C46CA5325104842803C704CFCF67DEE3BC7E7DAF73A4E81DEE497EFDC93E3737EBFEFFBCE778E394DD3E0A33EFDFD8785452D973FAE8ACA6A4553838AA2045505828A2A8754450D4AF8AEA1555485531435A1AA4A42569404F6A1D512A0A9090DB44981E3DE0BD517860607079587E5C03D8C008E03EEBB3F7F698524CA5B90CC2791D8E3AAA278901C601B54934528D83659955A02B22E0147E6E571624E480902F72ECF09C7049EFBB75D9D39FB20821E48C00F76EE6BE041DC69B1F0FD9186A03F93CDC1E4740264599E478E0A20249988326162712DD2065C920AC09F3A9B0D22E110343586C06AB1C07F4E9F031E3DC5F37C8AE7B93D9AD5FAC2E0EF76CD7D2401FBF7EFB74E24B51DE8ED01A7DDEED9F0E81AF0793D74817CBE08D746C761ECE61D98B83D05A22899089748970813E21AF37AFB9216588A6844D29170103A9646C155EFA4EBED7EF9F73074E1031A119EE34B56E067058EFFA596117EF3CA2B03850716B07BCFA14F4992FC6B24D0A57B58D3140807FDD0DCD400DD1D31703A1C20083C90880C5F1B83A2284228E083236F1D8334F6E9A455962E44784F771B7CE50B9F857043C0B4DE89534370E0D09F31A5483A71742CB11CCFEB11B9C971FCB7F6ECFED15BF715F0ABFD839B31B78FA2E72DD5B9AB03F3149A220DB07ECD7288B634E23B4FC5E042342A0707FF0AE94C8E12B70802C49777C0C647D742475B94AE41A2F5EEC9FFC1A52BD76149B4094E0F5DC2B49C25FBAC44BC2C8045838AE044DC2B9F7B71E7736F2F28E0F0E1C3C2649A9F4092113369CD24807825DADC00B1E626B0592D60B559D05A694ED73BED309348C21BFF38061914115FDE069B7AD7416B4B13C8E88CE327CFC07B672EE0987B8C0550CFD326556016518E06471CC48D5AC5E9B6818101B5A6807D7F38D2CB59B813D51E27024A1B91B5E7D9123072E070D8705101EEA5D23422B41FC744423EC8639ACDCD6581EE649D3D250E1501348DAA22A18BE1C9DED01EFFE973DF385E5340FFD3CFFF70EBD62777E91E37560FBA29358365C434D65EE4AE87553DEDB036DE0D568CCAD59171B888297279F8064DB14DBD6B2118F082284980A51824B4A224535CB9360A5377EFD13404D009B3C81823812995CD669F1DF8FE37F7D414D0B966D39776EC78F6359FD76726AB6AE56AA26F4A7C819EAE253097CA427BAC093ADB5BE922E491B0C40E5DB802EF5FBC869B3C4F4BA6C7E584FEBE27A850E3333D330BA7862EC3F8AD49281424762E708CBC3912328ABD357967FB8B03CFBF595340FBAA8D4F3546C27FFCCE33CF8005EBB2A6A709255FF13C69AFE86A858FADEA367D9E9C0DE72F8FA0E76F400E4B2D9D9DD6FCD213F27960DB6736C2F4DD591A153C57CA9F25F35EBB7E134651C8C4AD6928484A2965586A91594646C6402C14B7BFF48BEFCD178083F8252B7ABF8CBBFE60241281BEBE3EE8E8682F9F9CBAE709825E376C796C35CBD90A81C4EC1C9CBD78156E4F25E8A6D3E72FFFC5DF7A471D649838AFCB01512CCBB1682396606F792E12C1BFFDF304DCCB14A9D0B9740AC6C7262097CB01B2D9FEDB177E6C1680440434752D5DEBBE6EB339F6EA13C5E371D8B6AD0F82C1605984D52AC0FA783BE6B00C73993CA4D2595A328915B1CA7025A7538FB110E846976A881907FA88456E072CC6F3A1CE6E83E1919B1801150AF9028C5CBF01333377CB0E5465E5F3075E1E78A32C8091772022E1D6EEA75D9EE04F8C6961C5D2B8F5C94FC3CA552BA1112383A50CCF06ADEC75FD5A60BC2254B81B22F061D71616498ECD99C20A3639350DE3E3E3E828723D51CA05A35014FB5FDBBFEB751CA792F164DBD721C28815FE48ECABBE50F3174D02B0BEFB7C3E841742A106E8EC6C879696288D8ADD612FE53805F3E53CAF574760FE93C3933B994CE2D990406F27A0582CE299A18042EF5B953B1659279D4A7EEDCD57F7FE093F261301C4FB1E4417A2D71B6ADE1688C4361827B7DBEBA800AFD7571652B23E2A22100880DBEDA20415B574E5D0348E5629E259B2A82C2B5841245A4245195114F1FE54C4AA5344E27334B7490120B94F2A0D691301FA85B1741B28456176FACEB78F1E397810A91589000B825C4CD620B6B83C810DE1D6658F1805389DCE79C46BBD93BA4EF68524338BEFB254691372A5BEAA31B2D1CA15210C8AAC9444300163572F3E75FAC4D1BF23B5AC51C05AC466DC0F2B63CB1F7982E7054117E072B916105011E2F17898F7A48A101379739F6C10A48BD3C5560B51583488081C9B7AFBF5038F89A2384A324FDF035E4427E21388756E5F43BCA1B9B34717E076BB2951BFBFDAFBFE729B88946A9197A59AFDB25C5BA82C9B3F2B9B534A1B1DBEF4B3F367DE7915694D230ABA001B224236311140F683DB1F59110847BB048BCD46BCAB13378A206D7D5F389D8ECAA2EC8AA0A790285545661E79739A558F2502F2857CF2E6F52BFBCE9F7EE710F2BB83482314BD8C12114E56893A10E4786DE704A139188EAD5A1CEB8A06027EDE1C814A24FC7E3F6E74BB9990BC00C1796D73FA548FC18D2EDD9E18FDCBD0C97F1DC866533790D70C22839090BB663CC88808AC89B008D18488219622A28E7A776CD9CAF56B636D9DE1603024D48A4649C0425EBD9F08F35E20B6502C1493333367DF3F737CEFC48D2BE790C72C827CB524DFCA648D119F7795609B5A1742D26A31A211D18077237F7469675B6777BCB56B79BCB17B598F3F180C700B0A2064C4FB45A3F48EDFE69464627A6C7A6AF2E2C4D8C8E90FCE9FFA2F9E0553B86E129142E4097184AA1948CFBBCC71FA85BC22A49E89F11A2C85DBBDC8DFBB71737B4F7C7504CF827ABBC3E5A8C393CDEE7038AC36ABDD6AADB3E3D5D24A08667359319B4EE773D94C2E93C6AF39D94C3A9BCF928EE4E4E4ADE173674E9CBA9748CC30B259861CA9F5245DAA892F28A086103D2A36863A26CAC550C7FAC918527AADCC9277DEE9740B1CA7CA78872784C41A2832A259D61699A7A9B717227E5F010B880183201D02EBD3C70886FF917EB280C208493A29D667FC9FB14FFB30D20F2DE03E82CADD863E3D72FAA35501C07C337A60C2D5CFFF013A8DF8404CD0F30B0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (130,1,'Router_symbol_(64)',0x89504E470D0A1A0A0000000D4948445200000040000000250806000000F250EF370000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000CC94944415468DEC55A79701BD519FF56A7255B56644BB2E5DBF2113BC40E499A64981C8549A181FE432F0686CEB4D3A1500809530A0C8429E1E840380A25A1241418205052064A8096A185824BDB9004C8903B314EE22BF1299FBA6C698F7E6FF5DEEE5B1DB10361BAF2A777AC76F7FD7EDFF936111445816FE2B8E1B6FBBC520282A298F029A07845197CB22C7941567C922C7B517C8A227B6549C679395F9695513C1F92242584F3238A248724410EE17C08B00F8A1092AD7066F5A2E0E18D1B37CAE76B9DC2F92260FDFA2D76D9115E919494CB40962F458017223001058CA240E65CE6792481EB93351211C064124605C1F4B1C964FAC86C36B5FDFD8D3F1EF9BF1170EB3D4FB4A0762E1315E552459656C98AE2408DA2928DA0945CC015453FAFF515F57AB22E5DE862D52F01FF528264606B1A144C429B4510DAC02A7CB8F3C5CD27BF5102EEDAB4D5238BD27A5CED0D26410894077C2021E8FEC1618844A774CD2959C0D3734A469F02E5FB745DFCFA0801C51E0F04025E282BF5C3F4740276EDFD4225C544483199B0357D2C5884C75E7BF6D1779559809B3501F73DF17C919C14EF401FBD495144577D6D15B434D783CD66250F254B858ECE1EE8ED1D80DEBE0188C4A674504CAB595AF29B146859D53403EFB0DBC0EFF742C05F0CA5253E089478A1A6BA026AABCA54ED93DFDCFFC83638DA7E12817356816B51FB26E198194C1B5E78FA81B7BE36010F3CF1E24A00E95559522A88262549823C045EE22FC20595436579A96A8E4C0BE49E478E9F84AE9E33D0739A90118322772198CC66181C0AE9A06525CDD451F0535C340716B734C38FAFBC0C1C8EBCAC6BFAE05FBBE1A53FBF8356A183D7C4C4C820AD79872D695EF7D453778D7C2502366D79E576D4CE4308DCAC28BA1FB33E063B701738A1BCD407CD8DB5E0F715235093FA700C542A591D27BBA1655E03C4E253F0C28EB7A1AF7F381338D13E7ECC784D73430D5CBC62292C6C6DCABAA6442209F73EBA0D060743A998A092009944686E21F409B269D5E6476E3F794E04FCEE99D77E8026FC1743904A8BCE7A4B10C8AAF6AA2B4A61C5B20560B15855CB3013424C290947A2F0FC2B3BA16F20A4C675A00498CD021218848B972F5189E48FD1F14978FFA34FE074DF20D4072B6162320ABB3F3FA0693F45824E0008BC0568D269315B573CBCF1E6BE5911B0E5B9372B10D661F455B72158A5B71C09E441351525B068411354969552D082B11508091178F6E59DD03F344238035F71215C75E577A1BEB6D2B086F189307CD0B61BF61D3AAE5A0F5DB2F6AD824D6B992568D902522E91724F78F3C10D37FF7056046CDDFED63A04BE395DCBCC0214859F4B8DC973ED181B2C26B3EAEF16D43C11ABC502169B19AC386FB15A558B989A9A8603473B682650C05D980F410C724D68FED518E8DAFEF3291C38DC0131FC5DA6E37234A87F29E000690468F141B30E115754BDF18E9FF7CD4CC0CB6FFFCD2C98BEC78295969B33FA3A19FA3853540FC726CF6E55E305098E5398C6D8D3F95840DC417529764ED3BB9105AAF81C9660ECEBEE01BFB8FB969F3D37230177DEFFE450E3DCB9BEB3E5E9EC454B667023D7B89C79D0DA1C84658B5BD4D499482661FFA176E838D50BDD670655C0769B0556AFF81638F1B789A408A2284212DBA428A55ABC46247D9C3FF665274C63DF8C56A58111784B48EFA7C6F158FCF17B6EBBEED7331270CD75B79DB8E2F23575863C6DC8DB4622F83C6EB198D44562CD00735C4E98DF1484852D7355D3E70FE2067BF61D8643C74E427C3AA9EADAEB29846B7FB406C9B0655D57241A833FBDF11E8C4FC654DF4E390068AEA0B79C3B306B4119E81F5CB7E937EB9E9A9180794BBFF3E92FAFBF6189CFE733983C0F3C97B9AF5EBE1003DB1C181A1E55A3363347764C2712B0EFC07138D2DE893E9ED0EC5CA10E5155E683EF5F7171C675EC6016D0D9D38F45D710A66225C325343204412BA1C7C6C6616474ECC6C7EFFFD5B61909A86B5DB9A7C4EF5F76F3DAB56045933D1B605EEAAA4A6125A6C06C0731E9FD874FC0D18E6E88A3F6B5272B4A46BFB9BE122E59BE188642A358668FC03C4C8D56AB25E39EC4958E2191DD678660806415C1C491009A25442331E8ECEAC6F3F28D4FFEF68EDC04E085E40E4270FEF2DDD85F525D53033FB9F65A9833C79DBD78E12AB802A71D2EBF6429467E33643B480D7004C19FE83CA3FA3859A2A2AB9FF5D46F626D01BF070643E36A7C20D9A4ACA4186A2A4B315D56A82935FD202EF5D9FEA3D07EAA4FCD36027587B1F171E8EAEC8624166508F8C62D0FDF999D000A9EACDE8604FC1BC78BC8BCD3E984ABAFB91A5A5B5A344B803432C8CABF7DD105508C44E9A69E548B9889C9084C8463308932118E60F41755008A01B88101E31C5B1FA4F60036AB394546855F2DC3C9412ACE7D07DBE14457BF5AFD915F13D7255AEFC7BD89169041B9E999C7EEDE9A410007DE8152583BEFA2F73097CFE71730B7B111D65CBE06EA1BEA35D08C808A120F788BDC3081A616419988C6218A1B220D1733F32CE6CEFA3A70EE60032E1CB02EB10C8703F724F8DC81E1314848A9628C64ABBEFE01E8EEEE81787C2A3D6EAD7DFEC97BB7B29DA2402B381E7C114AA0BA79D9762C65EBB399F282D65658B96A25D4D505212F2F4F7705D049D1412B7A80E35A4DC3E98A9FEDF69CF938378E45A3187843D0D5D583EE306578EFC008901289F5DB9FD9F434A8D959516872004200D9767950483D5A5F3577C983569BBD22FDB9C4740B0A0AA0B0D0052E572154D754415DB00E2A2ACAC153E4C192D34C81711A5728DCACC0334D5F8F04995AE77B09CC26A3636330828172687804036B1C647405F27E429625FD0D1357ABC4E3D15B5F7FE1F77FC0CB451CCB0C3C09AFC479CB89A5A33455362E5E6BB33B7CE90458B0AC75B908F8022422D592B14A8ADB0D65810078BD5E758E8FDA4612388059C79907B98E144211DC478C21E8506804634B58F57D8310D05A2B6B2F62580A0F87C737BCB363DB66BC25A9B1255EFB5EA27994569580864557D9F29C9EF485D8B040618019787DECD2AC839143C666CC0A9224AA8BE23307ABE749B41693A90A2F994CA81922896532A917A613536A749F46112948520DAAF7237D32271A09202D012F6956A013303A3278EFFB6F6D270444519202E7FB01940B5016A23496055B563BF2DD1916909767A7E0742B4801D6C960C0D9983C982D9AB42259BC2819FB5CABFE36DB9C0A3E1378AA2FAAA6AF13C148900DEF1D077A3B6FF9EF873B77209449E24502357F270AC9272D9480B91E7FD5C2A292AABA74021C0E479A0BB8384BC836E7CA015ED4162E3260A294D64F9B33B4FA3D19689177053193048C07CAAE0F77AE1AEEEF69A70424990B300B20FE4F727F93D5E6A8A968B87099C964AC6A484D900ED0A87D23110505F929B03C093CF8ACDA67A418AFC904CE5B061DA711A0064429E50AD1C8E4AE0FDE7EE97A84318812E609203B0F92FE8228F3A954B93C25F5FE8A86669E80FCFC7C0350DDEF0B3922744288C530CDE5B4802CF3BCC679F3E7AFD1AD4A274D770BA34B24A6A687F6B6FDF5A7A3A3FDC711C6284A8C0F82440AA81B34A0CCA301B1145DA1D9E3AF0C0A7467920E327B0CD0E300216026EDF326CFFBBF51F3624E228DE4185D879C9B9E8A0F1F39B87743CF97073F4108C354FB6417A6F08510B1824294326A0984806A4282D335A7D25FDED86AC6C26036C0F9F376BB7D562E60347D31270939EF9323768C8D0CEFF97CD73F1E0A8F873A114B88FABE9A02D5428812C0B20121C1855202A982A89AB67EB3C5E6C7A0382F5019AC72BBDD161E742E12889C8D006DC186F1D72081FB7D2C12EEEDED3AFEEA177BDADEA5C0C750221C78F5DF17F9BD0023C142DDC14389085021EE516CB1D88A6B1AE65F50DBD0545B54ECB71BE3802B230BF00464F5736D7C6E5690E35ECAE4E4D8A9EE53C75FDFB7EB9FEF53D01354EB716AF632036F208023818815C54E621E258214493EDA16D3AAD1E50F9497D5049BAA918C405D5DA3174B61F35727E0DC2C80DD0BEBFFB191D0C0D1C1FED35F741CDEBF7768E8742F051DA61A8F53AD8B14BCA1D6CCFA4284C6045622E7D134495C630E05EFA6E342DA1698ADD68296D645D50B162DAD9EDFBAA8AC616E53116606E19C634046163082C7AA706A6468E0CBBEBEAE43278E1FFEACE3D8C1931468944A8C0A798F9EA422ABD57416B039DF0871D6C088B051715052F269015540C5C5CDE515177B5D8DCDF38B4B4BCB0A0A3D9E7CB7DB835EE2723AF35DCE3CA7D3811FA70D371B56BBDD811B784B2C129D8A46C3D1087ED07F23D88663613C22E1896878727C7262626C1C235A7BFBA14EDCD18539B0714ECB090A98685BA29215F88C04E42082B70C2BE72ACC4A9CDCD8C6C51433779DC0B54414BA50915B7C92CEB13641659A0A039CA4F30CB04CEF9753E3E74C400E32200B218C14D632D0660EAC999B67A4B2FFFDC048903891D35A91134DC3BCCC06F45726E02C64304218487E0C1C01A6B43E3B7812980621AD55D2FA4CE05C419F170266498AE1748E369D047E9C71F029EC7C1CFF03221EC479524784F20000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (131,1,'Router_symbol_(96)',0x89504E470D0A1A0A0000000D4948445200000060000000370806000000F3134F770000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000154C4944415478DADD5C09941CD5757D55D5FB32FBBEF5ACD28C06ED200162932146365E0E073039390959EC109980AD1013D931B1221C0808DBC8160A1618616410E198608381D80E420E5832DA10685F9034D2489A999E999EEE999EADBB96BC5FFDABFBD7D6DD33628B4BFAF37F55575557DDFBDE7DEFBFAA194E5114F8242DAB57AF769C1810EB1511421CC88D922C87149043B2A4142B32F871EC5714D9A7C88A5F06C5AF6E93259F4CEE4351C664199B228DE22AF6CA18E0BAA428B8AEF4E2B66E3CB69B07EE8CA828DD7C1CBAB76E7D6AE2E3BC5FEEE32280E380FBEAD7FF6D86C8C98B10CCC578157364596E9415B906AF49C06D404045C02033C626CB3663B28FCC8C2D8EC57524888E713B1ECF717C3FCFC331E0845D02CFEDE22579F796D7361D573E22603E3202EEB9E77BFE714E59AA70D2A588CA2249562EC1EF2E52640ACC54806481A7402A56C7EBCE9169E82A60BC6D8E5844A6C5788EDB83C4EC5414FEB793919AB7B66E5D25FEBF2360E5CA35C18453F81C7EC7CDD896C929E9488146814C8F2D2C3AF5996C06D2781CB3BFEE9874033DF0649BDE1BC94FB5C79F29F7E4E83AC7937E48E0F9D7F09897459EFFF56BCFFC68F8134B006AB86B8C2BB90575F94BA8BD9F46EDF6C892081C9A934C2D394300B56EC3BA11585642F4402B06A0CD0DD4FF9AE503D8DF2FA72382C7EB0D06FC101F1DA5DBD22D811FBF21F0C2639D4D05AFAC5AB54AFE441070F7238F78BDA3CEDB25541B04A9561225F0795D5053550EAD4DF570ECE41908F7476028364C25034C9E3035AB365BB81EF894959B80A784B08BDBE582F2B212282B2D864AECC9B8315403BBF61E842D6FBE8D2099244AF392E33CCFAD0D72BE9F6ED8B06AEC632160E59A8D41979CBC03CF73375A7D852449505C148496C67A686D6E003EE5D7EA45937174380EFB0F1E83BEFE41181C8A8124EBADDAD2B2650BD0C14262D2DBC14480BA11BFBFA830086525C5508E609797154355451974B6B7404D75450A58BA9CEF0DC3EA877EAC1A0CA7650D54A28C64608BA087AFF7888E07A74AC40511B0FA071BBFA048D293788E32729E6432094EA7A05A5167472B941517A9E0F3E60B4617E7201289C1DE0347A0B76F00FA07A3FA609A0656365B381824C6047C6A3BCA37D45557410B7A20B1EE56348AB69606F07A3D39EFED873F7E0676ECD99F329E745CD0C68C473084E02D9DC01BFB9B9FAC5DF5E6874AC0BA75EBDCC362600D5AEAD78C96A9A67908A4288B5018F0410592316FF64CD4D30002A25E3E5E28AF8E7926D0F50F44E09DFD87E1DCF93E08133224194A8A0AD093EAE038CAD7E0D07046CB5982404F02B0DBF01F6A35545796C182B91D70CB173F9DD7FDED3B700CD63DF12C4C2644860003F85AD0E698A09DDAA6E0CDAD1FE7DDDFDCF4F037463F70021EFED1E63689139F4759989F2D0866F26D223112941417425D4D0592D10E5E8F9B82CFA76F82043DCD3388FB1322162F9C030E8703C248CE539B5F82A1E8B0017846660CC0D30FA0BEAE0A165F3C1BAE5F7A39088290F3FEC8B91EFCE146387EE2348011781D010CF84C1A9B21030E82A05CFDE803DF1AFCC008F8FEE3CF95C949790FDE6043B63CDB9614B46AC41925AA189A4275AA67389D8E94E5681E418800D011427A42C2C6677F89248C506B878C2700935AD2FB69A8AD86CB16CD81A5575CA2D376E3B263F73E282C0842FB8C2675FD8DB776C2F32FFE2675AE14DE4C864441D7D64DE09B62C4CE84D37BEDFA5577C42F98004C2FF94065FB6FF00EAF33836BAFDD5AC603A03F86046B97CBA19271E30DD782DBEDA204A45C39053C9F2680A7243CF9B35F40243662CA6E484F8E0BD557C1E58BE6619B9BF57EB6EF7817DEC276BABB4705B3B2A2045A1A6AE1F8A96EFC9EA134B8E969BBAE67E242DA1358F081495DF9D703DCD00D98AE262E8880753F79E17E84F29FED32936C5EA04D80D899ABCFE352F59D80E5F779A807F0BA209DEE194248AC78E2672F42043D210D3CEE1742A9B97AC9429877D1CCACF7B10D41DFBEF33DE84689B3990E008537BDAEADA53D290D760668AB6D9ABCE2AD7FEDC17BEF5C376D02D6ADFB6F371F181FC25DBD723A2B912DF36F532ECE6428642C8A2238054ECD4C5C283F4497058107276ABDCBE95433149FD78DCD0B3E24C6E572629EEE04177A88CBE1546F2AAC92F00B880D8FA6CE8D841606FD18632AD5947221065CA3DE6FDBB117B6EFDA073DBD03004649E28C43CE04BE9E08F3C40D98C00C6C8006353B3A72DF3797774C9B800D4FBF7C95CC29FF9B5DE3C1622264F319586D4BC9156992448E4C8D1D98C59074927807DE08080E421A079228C3707C540DD2698923E7C0630B821E8C0195D031A319C4A4047FC074B22F1CD1019DC5FC19908109C4FA58608C037AD099B8A08D79EEBAEFDCFDE52DD322E089E75EFD0E4ACEEADC81160C566FD80E561327D091601CA7B72119247B72380488C6E2C0A3D7643EA7535CC398047D2E15D1E926253BF89C9123CE44863E18E7D7A7C6CA9A6FAFF8EB95D322E0DE07D6EF686A6E5E945B6A2007217633568509D4FAC299AC4810F079E1A299CD70D5650BD4ACE9E0911370E8E849387DB61746C726756490C5E5E031CBAAC589A10822067B521621BDC8F4E43349F538FC5C4EC534B24E3C4D9D3C9298C40BBA6AA9B17897137866069D14A5D7EF5DF1577F322D02FEF4CBFFF0FB65CB962DD101682A0D806D2DC65814B3065E4F8244E60E854198D3D10C97CCEFB4CCE1493C79EFE07138FA7E177475F7921950BAECF0A92B16C26597CCC9796F493C4722914CB7F37DFDF0DB37B6C3D86412E38FDB0C38E3127644A4332526658D8F8CBEB2EA9EAF7C7E5A042CB8F2732FAE58F1F51BD5B39A4A0260EB0996EB868913B146626D9A7C90495B5949116633AD701106D46C393C590E1F3B053BF61C809EFE2135986B733001CFF985EBAF80192DA1BCB23C724DBF7C752B1CEF3A8B5EC7EA37233FC62CC92A18B332A5691AB69E9EBE271FFA97BBBE322D025AE75EF59F7F79DB6DB7B6B4B4D8D7628CB2620B3CE319A8D1975F3C4B4D618F9F3A8BD99180C0CF80E6C6DA9CD7740C67AA3BF71E84BEFE284A90C03C60C9543D5D4E016EFDE2756AD12D9F656C6C1CCF7908BACFF542DF40EABC600ABE0CB0BAB1757C20A3D1D131E8EF1FD8F0F0EA15CBA74D40C0EFBFF5CEBBFE1E0281A04511CCA62866013C2B3D0DD56570FDD2C5532A859CC089D2AE770F43DF604CADF3280CE0995C28B3F871BEF167375DAF06F0A92C71046DCF7B87E1ECF9308423310CFECE2CE033A01B266E623209A74F778328CB1B1EF9EEDDD32460CE95CF63F7A586500896DFFEB7985209995A8CB136C33E00B12B92910985D70537A244903C3F9FA5EB4C0FECD97F04E70031B54C91317803E48A9E06F25DE5C541B8F9F39F528F230B29EE151717A4AAB5792C2398EEEEDD7714CEF6F4ABB37087D3A58F0516718174C4B34F9EEC828909F5B9FF86B5F77F636A047064EA894BCBEC2B9E2304A8F160E102B8E5A69B311F172C81B71F83AE9A79ED92796A95329F85C8CDB65D07546D56EF504B3F1912CC49A692F10A9C34866ACBA1A3AD0976BE7B08FA23C3EA31C58501A8AFA980B9B3DAD0B37D795DCBF0481C03FF3138D73B08D1E131CCCA9CEA2C3E131734F025E8C278128D46532931A76C78F48195F91340C157B3E8E6D9576CC6C1CDDA673535D570DB5FDC06E515E5590B6366E9498131ABA50EE6CC6A9D92248CA23EBFBDE720A69E7D20E04DEB9547D1A16F2242050467EE3849D36553543E243189DE50A09241023FA94BE55ACEF584E177DBDE810951491714B5F38DE3B51E7FFF248C4F8C672E4D5136AC5FF3ADDC04705AEE946A0E6CCEE68B966CC2CD37B2FBB9D00D6FBAF92658BC78917EC294A54A49762B2DF2C1D597CEB5CD6E486A39846E4EAA9EC3F13188C5C76164641446C727D534934F4D6AC01C736D1930C5852CA9903AE12B2F2D80869A4A98D91A52277EBA403D3E01DB77EE83F3E1284A915357A6260B663B68F95D389B978D13C50D8F7DEFDBD90960C027D64FC4999882A7A9F3B22771527283D535CFEAE880659F59068D4D8D8CE6EB9F4C69BD035DF59A4B67AB351E5266888F4DA08B22D0A30832823D8C812F3E3AA14E8A52B357C55A66140B582D6528C7E4D7BE1281B3684C8F39052A4A8B205457098DF5D5B0FFF009387AE22C5E9B23FD704913FE682C065DA7CEA0E1444D2938CDAF1F7F7CEDBF2E37BE6F942680015FA0964FC0F7630B863A163F8A59C075D9AEBD7DE64CF8EC673F032DADAD9641970C4A0AFDE0C1A03B82C013A0937893E4361413C0FADA3EBBDD38D6C7023B019A32FEBAF204994973A8E99CE0480572A6543D383404A74E9D86E850D4FCFE1133B944837B62E3BAFB96A7842273F12C013C63F96E0A3E49134A1A665EFCEF4E976749AE1B70B95CD0DEDE0ED75C7315CC689B895A2D5810C13CB1625E90327F6601B409F42CDA7F212F1B709C3521546EC8B38CFE8141949AD3104BBFE5615D92D7EE5F16A5279F7EECFEAF9290C392C0D17ABA263B0E0A7E001B99BD9463ABAC6F5BF04F2E8F6F41AEEBF660AEEDF178D59272B020081DED1DD0D1D10EF598BE9249964E3E8C04E88057F432A318D45C31E8BB0DD60A4C9D04CEAA644ABD8080DEDBDB0703FD036A09437BA546B6799F897D6C2A25934F3DF3F84377903047144E23412380A7D2E362C0AFC05645929EDAD679B77BBC818EEC46C321F81E15FC54EF4DF7017F009A9A9BA0A1A11E4A4A4A31E5F35B563075326388B2F6EB3A7F00F8A0DE33C32F888F615C1A8E41383C00E1FE4124414C97CC33E0336303F8AC172412939B9EDFF8FD3BF1CC93D40B6495006AF940C1F7622BA4E0D760AB5309689973ABC757D09CED7A89366640D7936022241080B2B2529C0C15A9336BAFD7A7AB076507DD1817B2259FF91392C019EBF0082604184C89AC44A331F5359B34E0D4D2F5EBB2CE0BD8D728D9F20CF93F3939B1F985A7D7DE45B2545203D4BC40238067A4A794825F4F9E6D132FA8699E7D83D75F589FED06487ECD826CE70D666252BDDFEF579F82B971DD2138327ACF69C87396B1402FF9F66813B01289044C923641DA388C4F4E62CE3E81A9E518CE5627556D3702AC96AC25D9127855FB59F099DE581F1B1F8F3FFFD2B3FFB1824C69A817882C0102B5FE026AFD04F810ED2B6B1A3B977A83C535D908204FA6EC80CE4584F17332BBCCDCBC449F92A55E6F91D2376C2E8B8BF8B92CCA6ACD9FBC8F4AE614221E477AA2E1A4C4AD9D4BD69E0530E0B2DB7312C07A85225332F46F73B3A5FAB191E19FBFF2F3C7FF914CA6B14D68B1800DBE5E9AF5D450E09BA9175494D7B6CC2F28A96ECE950199C1F4D2756F7A7B3E4410325360B08065C0D288D1C0D1804D8F25BA0FBB1F739EDC24487981AF9D57D1A4C9D60B0086067A7FB0E595CDE4C17C8C952196001F0DBE84804696007F41694355A8637E2E025840B359BD3946E8892239813DF80CC00CB87A422888926C22C99A04392D3F7AD025130999EF93D3A0B3DEA030718125E0C8815D7F7EE89D6DDB0D04484602340F085102882754709C50DCD4B9F84A8EE3F97C5250D2DB498C95D51BB7699A7D21E0A78F61745D920CC0E7E31DB908D0C5854CA0D6FDBE8324C75F7B61C3B518D4C3D93CC04333A04A4A4013EDC97A71795DDBAC82E2CA1A7B023C7981AB9724B34491FD522F6E190130836A29458CFCA4C1B7F2008BFD727987952C4916D294FE55282A4743FD3D3F7DEB7FFE6B2DC214B18B015A165440B3A03A0A7E887A4429E6F905B52DF3E6BBBDFEA015016669B106572F435E4BEFB00225AB1730E09BF731836FA5FF660932C71C2B12245DD0560C4428303A32FCCE965F6D22D94F3FB6A85D16C4D112842643550C09B534332A72383DC5F56D7317F26A3DD86A12660D706E2FD04B555E166E9093CC67D63265B67C0BF02D3CC0F23B1919D21120E9E70B89E464F8EDAD2FFD5D7430DC45E23079B6C3EA3F5B8AE099021CB1F0126CD514FC3A4A08797A528013B28ACAFA999D0E97DBCB12A0D7F7EC9A6F049DDDC7ED76DB5B7F9EC41863835E8AF205DF3EEB628931A5CBF4BB2726C6CE1CDAFB87FBCE9E3ABC8F5A3E919E31D34C98A905094C2C0852C02B2911D5744C882910044790C404CC8E2AB559B0758693DB13F4DBBCEAC31049B2D2FE546FB6FEDC44E424341BF836A49BBC83F93C32D0FBEB9DBF7B75FDE4E498263B2306E921E0CBC6629C26472E8684122A3F95B42FD74820D5D2C292AA50497553BBC3E174E46BE1D90234398E3C23D6DDF014B5DF94E19882B3949388ACF263223DF35DC96462A4EBD8BE47F7ED7E6B0BCD7688D5C719CB172DABA116CF039C0C098534309753AF28A3F305B23D20385C05A5550D6D15D5A1069F3FE0B0CBF7EDE701FAF5F42C382F4BCC05B23913B24E412F4CF212087CF8FCE957DEDDF5E68BF158A4975A7C9C5AFD046BF99AF4E4F344CC4533231FB5F8220A7C29F5028D0442920F8908D68666B4D537CF680A060B5DB9ACDF2E4BFAB008C84F7EA696F64E4C8E477BBA4FFD6ACFB6D75F1E1F8F0F52D035E0C729F0492BCBCFE799301B983DDAD3314A84D60A19120229221C81C6D6CE96BA506B5D556D7D99DFE7E3FE680820E7174529168B1CE83DD7B56DF7B6375E4F24C6638CCC8C51E089D52718E0652BF06DDF8A3090C03EA8F1508F0850D00B2801052C09B479BDBE4070C6AC398DAD333A1B1A9A5ACBFD7E3FFF4921209321E909B0DA57C429EC5064E0E0F9B3A7DE7E6FF7B6EDC3D1C1410AF6A80174CDE293EC83173BF0F37E2F882181F508CD2BFC8C7704E8D8477B2F6D6EBF3F18E89C7B71A8A9B5AD127F94D5D6878A838180903701964158B2AFF5D07D6D67C359624002018FC7A26710F4F7FB7ACF1EDDB7E7F7BB87A3D1080579DCD06BD6AE819ED6FACC53557B9073BE19C7788391082D6575D3E665AC9F6D5E86302DAEB8106877E79C05959DB3E755CFECB8A8AAB1A9A5A4A2BA2680A438AD4AD17619896D25340B396C9F48242646E3F1482C3A7036DC73FEF8E953C78E1EDAB7F7A42425B4CC658269930CE0090B6B97F2057ECABF23664384D66BAFB0B818423C06F0DD4CD3F6731A08755456D7FA5ADBDA8BEB43A1A2CAAADAC2D2F2F2C2A2E2B2A0C7E3F6701C46185C789C8A637380C03B048E7360222D10A09362524A4C2644CC4A3023C49FB882C6ACF61338331A89460763D148643032101EE83B173E73F244EFE060789882A9C9C7246D0966BB96C5240C41959519692AC04FFBF7842D88E00DB14223C4C9BC61C11264DCC6922030BDC09C977D74CAD11BD57A05BD497D1B10B19618F7D7C61A58924126920CA8A2C1A259CBB6025C035B99AAC55F300136445891C11B4065C74E66DD69B10FCF90C0D6AB388B5778B41B60759725C048826800D4F89964D1D873B3C0C37481BF6002F220C3480A670097378C8D3DFBB89405DE48024B005880C502C8122319ACD9A8E18A610CECF883FA8B5A1FF8DF0BE2322F7D5A11C219E484B7B070766C6CD62FB0E989502C2C359F759644C5D87F587FC2EC43FF9365368418ADD9CABAAD8EE32CCEA3D8906104D58A24BBF3287F747F336E0AC4D8BDB2996B3F658ADB3F52A0ED96FF03FF213910F230DACE0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (132,1,'SAN_(128)',0x89504E470D0A1A0A0000000D49484452000000800000006B0806000000BFBD8A8A0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000034884944415478DAED7D077C15D795F79999D7FB53EF0D21012A209B628A0B656D30B8AC71499C78D3BCBBD9CD97787FBBD978E36493D8C97EC96FF75B7FEB78BFB86C9C38066C63838D019B6A4413CDB40712C51401424212AA4FAF9799EF9CFB669E468F2759606323C5B287376FDECC9D3BF7FCCFB9FF73EEB9773849926024FC711C67C38F79B82D90B7DC1BAC8A6DB86DC26D036E1BB15DDB4744BBDEC800B0582C13799E5F80759C8F5F67E2A6B9DA323ECFE753DD8B760EE3F70D82206CF4783C75B81FFA12009FF03766CC187B3018FC0BAC136938093DE78BACCF67D8365EB460B5641D10D01B9A9A9A4E7D09809859E72A2A2A2646A3D105B84B429F7E2D5AFE056AFAB5FE9D233090851045F1C353A74EB9FF6C00307BF66C0769393EB8A2E5D95FB4167C5E6D30C87D2208FE3DF81BF1860DFBF10F3FC55103007C387EF28C3B16E804B84BC3F3B37881AFC6C3C21721302EC931AC0F2018AFA9A4C47A70B1E7BDB27EDC5515DE238AD29EA828EE8A0ADA8D7B6A377D743D0171DD0150397576B5D32CB8A6D44C84D4D41448492987FAFA5AA0DBA6A7A783C16080482402E17038E9276D814000B09B60FB3DBD6E2CC301634B4BA1BC7C1C343474404FCF09D068B4909F9F0F916864D072683F140AB14FDA4858ADED1D30B1AA027ABABBA1F5D451B0E78F059D560769E969604CA89BBA1C651FAD59BC6E91A80869A9A9588F3CD8B67D3B54669AC16FC90283DE00D9D9D949AF577F0F8543F1EF02CF435012C01F1126EEDCF0CE91110D800CBBCE3519019097970766F31878E1859FC3030F3C00C88EE38D4082511E9E366F6F2F4C46CDB4A5A4C09EB367E10C3672494909B8FB3CE074D8A1AAAA0A0A0A0A60E5CA83A0D55E84DCDC5C408235A02CF5A7BDA303C6A170DA3B3B61371EF3F97C50535303A7CF3642E584F160B55AE1C8D635D0E4E561CA94294C8BD5025236059053F1D952B16E3B4E9E848FF138D58D009081C099387122BCFBEEBB506AF4438F391F323232585BA89F515D6E86D70B55A80C2DADADB0B9AF8F9D3761C20414BE84F782895B460B00480BF6ECF1C29933ABE0273FF909D31C6A4CBFDFCF3ED5FBAD172EC0BFA2508B51D0DF7FF1453880606000F078C169B73100D0F5EFBD77022D01C07DF7DD774559EAEFB9E7CFC31373E6C092DA5AF81382818E575757C3D9C6F35031611C03A7FBF84E587BE8023CF8E083082AED8072D49BBBA7079E2E2E86490894EF3CFB2CECC263E8C130006466A433007422D0DA0F6E821E4B21CC9A356BD0B2689B8042FFD7458BE095F5EBE1F973E79855193F7E3C84251EBC6161E296B5CB47070048806673313CF7DC4F98C0FAF0C149886AED52F6FDF8DB4C41001B6AED8E1327E0149E575454045E9F3F6E012A2B2BE1E5973783C9D4CA2C003D8B5A5BD55B3A9AF80AD4B24B972FC376D4306A781254E3F926A8185F0E76BB1D76BEFF16748B46B8E5965BE2DD4EB2BA855040B762DD52B1BCDAA347E138FE46CF2662532A1660F9F2E55066414B662FC2AE2F7540DD12AD4A0E5AA349595970F1D225D8E076330B400088F23AF00461E403C069D12007A866FD635E5E19EC3FB003C2F89069D880A469C9FA6AA5F1E9933482F5D9585E776F1F9A5E07948E29858A8A0970FA740B34359D049D4E37683FAB2E2F1289F5D76401887FB477743200F4A05637379E868CBC425696DDEE008D5633E0FAC472150B469F8CCE2B1C202F17EAEAEAA0382B1578B313F9890069696903AE1B8A0FD0F31A4D26E0B406088A3071FD3B231C000E8BE0AA1A57067A24434EE758686F3F8E0F1900B3C5CC881835086DC4C695FD6854BD1F0549FECD8DBCC161B3A2B073203B2707BA3A25DC4E63D93A2CCF32E01AF5264AE295C7F01E6EAF0FC6141542575727043B9BC198960F1C7A060E9B1D38E41403EA806D35E07A71609961DCEC361B0341C3B106284E3140C8988640D3A39532E1FD62CF95789DFABBC8BE4B40FF698D16F0863804C092910B809A597756A7A105A8A9AE84C2C242245B63E0B7BFFD29CC9D3B977501F4F0C934C38FC4A814EB96EA70C0312447E750D388F485C211B02161ABAAAAC4BEBF1C962EAD430D6B62244E2181FDDADE5FA6014D6B099EE343CD3F841AA610AD8B2D97605CD9580A3BC3DEF52BA113BB808A8A8A0182516B287DA72EA09448200AFB4853139CC3EFE48108E88990F0274EAC8637DF7C13CAAD11705BF259D904F464CF499B15AF2FC1733CD81E7B70A3BA97A297A337DBC08F1660CD9B231C001936AD6B62650533D12E5718DDC0B7062581CAF7C1482071001B5A802AECFFE96FF5EA9348C0227112385879892490BC00EAAB2F5CBC08E563C7420E5A93EE861DB0E168F33591401218692E997A0240737333B88FEDF854245067B28237228E6C004C9B7D67B5C3A847008C671ACCF379F0873FFC0AFEE66FFE8609861E36286B246DCA7E575B1BDC4F7D3182E69D8F3E827AD41422817EFC9DCC2C0180BE2F59B20B1C8E4EE6BA29D7272B2F1D05320BCF3F8A2EE53A6C7402C0A44993E062730B948D2DC5AEC909AE2DEFC1B93E80F9F3E7C77D7CA51C75595E14D862B319B2D0737863C70E388CC7C80B9090A5A4A5A10540EF62DDBA7590C775439FAD88592AF5F589E5156379731184AE8F3F86B7D07B5048A0D1E6C073B8892BDFFCC34806C0A26ABB115C3555154C60393965B07EFD0A665E53D08FD6683449491B7D52DD0464DB7DB259A47383D805D8AD16D6A8C4D6EBEAEAE1E2C50666FEC9DF569B7FF5271D2733AC1CEBEDED65E7B75FEE8072EC02481887F6EC80FCD2F1EC3E360419DD3B91A4299B123DF462574565137114D06AA46097558CD661F5EAD530BE0049AE239B9D4B0053774B6A8F40294B0952517C848264269B1382120260C94806C05D8BAAAD02E72AC8CE405225607F988782E8810E34C37ABD9E3D3CD581111FF619234920EF4B099FFE60088C46030BC210B1D2695391C09D63C2E538BEFF5C497D2DC48F1399547EA32D8080CA4C4D814E2481BA8817059609220A855878E2FD25551DD59F20D73F82E552DD8CF85C9790B7E423F2035A0B03148189889D98A40C50D753AE1BFD39D332A0DB134100BC38720130EBAE07AAED7AD155815E00F5E176FB18F8CFFFFC314C9B368D215DD1CE44661CC1E336D4885424476DA8659D788CB482CCAC15BD078A015020E79557B6A0F69F67F7A2464E64D6710DC33232D1EDE3F058138285BA1FEAB73BBB7BA0B4A4988169FBDAB720A8773273AE76431337AA9B9DEA8782BD84E5B6539C01EB66B1589955ABAEAE82D75E7B0DAA527946020900F4A7AE9B6209689F47EB9386164CC4E73D2DBB81449833730B18097CF395110E00A741728D2F1FCB48E099331AD8B3E74F03486032E27609499B9A04EEC77349306401AC66024005236AAB579FC0C60AC2BDF7DE7B05B952979983E42A5924B0A5B50DC6141741666626B4B9B6C2F68F2FC3E2C58B99491F2E09DC8D02A3BAA10962419F6AACF3C7D89F47CF1FFC542430253D0B3C110101F0FCC805C09C450F545BB4E01A87448B98B6C79306AB56FD17FCE8473F8A1336850C526328DFDB919D3F8C1A9D85BCE18F2834050041D410ABD9C20040DAB662C561145E1FDC79E79DF132944DFD3DF5F469988FBC61574303AC928F93177009C96609DE83D87BE3DE8D70A8D9C3C629E84F5D27F5A7075DCAAFA13529292B83DFBDFF3EECC53A51DD286EA00060CF9E3D60EF3BC700400475B0B2E8B30489DF0308C6ED870FC3D2EE6EC60588E3A467E7420049E06B231B008F54DBF45157D99812E677E7E591EFFE12236DA4C18A692473AB368DB4F1F81BF1040F9AD930F5CB4623708206CCD8CF5259B367CF86B56BF7A0CBE5628D49B100B59FADF6B7A983D5E1FD28D012C1FDAEAE2E66667BFB3C505C58C0CEDDB26E35149557B2FB90D9560684D4E5291B5696F10E026B087FA32EC4EE70A247628731D8D52D59B2046A8A3240482B6042A6E718D08DA8CA255E42514EEA5A42788CBA460A6DE7178F015F449AF8DA8BCF8F682F200BA4E001B34E6B894423229120797C9CFE95920F9773542FEC38258DFC29286745B1B1A8AFD76A88A147E48224E5B22107E0B9245F4211112C262303A0D216F4C9ABCBE28697631025AF05EBA541B2CB408730419044909C52D247989E2AE1310729536E20ADDE1D356AA66D59BEBC75D464040DF687DA584269617212E86C3C641AC1593E494FC5ED203EE306D4FC8DC83976EDDFBF3FFC45B7FB170600F4950D76BBFD7612BA9C1E56762300F1736C8F3EDC6AF1D93710288E1E3D7A66D40300FBEC52443FE50192C049CB8D234860D7BB2E6709083220B6ECDCB9B36F540060F2E4C969519DF950AACD9285EC561389F0480063513E8EE3AEBA3C22835AAD86A56D115B16450D9617864F4CBCE3127BD8D89F12590C87432048110823DD1850372ED955C9BBF17054042DF2133DBA90412C4FC7892CA9839A58FDACDC6084A4BF4CAA823F24C2596D543BBBB67675C7881E0ECEB0EB5D936BAA61ECD8B1E8B28D87B7DE7A91B1662540A20E8FAAC7DD891D6BF19C30CB970BC7F207B191EDF6D85800B9571B371E83CB970F31A64DE1DBC146DC68A33C3BF22C68F49EC6FF696CA2F9522B4B09A3DF3FDAF23E380BCAD9E81DC501140F255999E44D70B2AB1894EB66462F242D25159FB314962D5B06D38B9DE0B3C53C0C7A5E7518591D6422F64F2889D273E36FE40550CC44D2E8A10FDDC09DA32925CCED4E81356B9E87279F7C321E0748F4D969A338C05750F8D9E852FD7EF3661607A048621FA584C9194124F0D5AB8F417A7A2F1BC049F4FFD531869453A76011BA8E3B8E1E85F7D072D060100582CE349E630020FFFDC2FECD70A0A98F0595080083F9EE7DBDBDF05728D031E8AB3FBF660D8B0324E604EEDDBB176CEE46E83617C4338C062BAF045DD287274D82DA83076109EE2B81A00022D58F6EE096B5A30800E7CEE9A0AEEE8FF0D4534F7D6224F0677979032281D4C81EAF0F1C724E20F9EB2B571E1D7624F01FE6CE1D3427302B2B0B5A0E6E819DA73BE0A1871E62AEE65091C067B02E4A24B04E0E2B53B247869C1378E2C409909A0EB340D0CC99333F3112F8B37BEE8157366C80DF9E3DCBBAB671E3C64184D38037C48F9E9C407AA8F4F432F8CD6F9E648DA46841626C9C994AD42A27EEA7A1396E76BBA1138F51BC9D822E4E7BCC02DC7AEBADF0DC73EF014DB4218D1D2C1B883601EF93858011B1DC0B582E59008AB6511730615C3933D16B972F017D4A16EBAA9421DB64B17B56376C373BDEB3A9BB1BDAF13C02904E6F601680EAF6FBDFFF1EAA32F4104E29665D5DB2F109A56E1ACA0CD66A2184ED7146B60A34A2A8355947474A98512BBAB2D29CCC11B65AAC2CFFDD87A69C170499394BF2E85C3F9B1E785CF94DC26BA360D0EBC064348056AF67236FDDA8910AC98A8DCEB12BFBCB89FD0F6C7E855C8E28DF2C1811C1613182CFEB67237106238D024691580AF2FDAF2C2B7E7DBC8EF27DB10E06AC0F710D1AC2A611458A78725C8C44B23254DE8224A77EC9370151DE57DAC19A9A0EBE6068840360165A0093812585523E004D0CD9BAF56DD60814CB27CD4DCCBB578F932BF9006CD40C1B33408341C8DA2BB03FBFE9A69B60FBF646E8EC3CCC3489C2A789B9FCEAEF743D6935DDDB8D5685FAFD96D676B400654CEB8EEFAD85B4924A764FAA9B92B03A580227818EF20114AF418B9E89D3D99F0F3025DF8224B090FDAECE55489663A0640DD339649D284B99D79BC0171646414EA055E3AAA9AA641C401473E18D37FE1D1E7FFC71F6A0899932CA7E4F7B3BDC8D0273E0351FB85CE092075CD4296124C0356B1A90B5B7C3CD37DF7C45190332829A9AE01664FDC7910B6C92BB00CA083A77A189E5043A1C0E38B3670334B40761CE9C394CA0EAEC1DF5E64396FE97D89D5046D05B757570088F113FA1A64C9573023FFCF043C8112F4397293F9E1134D85688A4725E5919CB085A815D0AD599C63A048319FC516934E404EA5C132B273000D4D78BE072BD111F0E4E362924D9C4908FE4DC7B4A096349A10800D2E855AB8E0FC8091CAC3C754EE06B9D9D4C738987345D6C6629613452D979741B6C6AB81427816ACF445D56321248BC8186399494B026049CE744DDD591C0F5EBE1B78D8DF194304A0AF5847904C0084F09739A385775C578D6489410F2EFFFFE23B8FDF6DB59A30EE6B313212AC1EB53D11436343743135A00EA427C01CA098C0160EAD4A9F05FFFB51AF4FA66E6122A59C1C936136A7C310287047F18CBA646A6A492E6965604C0183692B8F19D6510D63B1889530860D2FA91DB4763FF788D0B2DCA05FC4E669F329E1400FCE94F7F82F14E808023966C92185350976BC57B1521D9ED4360ED43EBA20C075B1CA910401238B253C210005603B8F2B23298DB969B5B082D97503BDCBD60329B59142C2A3362960E467D7F3CFF5E64848C7E57E605500A97CD6262A6363727173528CCCAA38091DE6050B16D519567DF9F8BCF72F3E5DF8980D17E3A96D58DFE77C0E701675A26237654578AF4C4E724A8AEA7FA89AA790B92142B8FAC8605414104B5B1F11C64A6238FD01918D935188CAA8CA0A8EA19FBBD0349AE17FD4E7F1939F9D017088D6C00CCBA6B51B545CBBBAAC697B399404E07F675473633A64C42A4864E246D34CC1B898465522432AD5584E8A3717F8B99CD0E1E8766F2E89176E8EA3A860DAD6391BD2BCBBA727630CBF8C572C83DA37C004A09A324D18BC70F424AE13846FE88B41986313B98AC98E226F2828691C05CEC4E6AB1ABA9CA4137CE92CD882E7531C91255D5DFD59359D9EC24F4024261CDC437477A4EA0C320B926948F652CDD641A032FBDF40B967B4FEC3ED96C596A000F0AE436D22804491D92A39372B42D96126662E69B2674BEFBEE616CAC66363183C5E3550DA9F62E52B1DFAF44003623B9DC89BF51B895BC888BD805949614B12EA07EDB5A38EFE158D7922C7B57D927F0DC4E19C0F2DCC063725A3825A52A3981AB56AD8252A30FBA910452BA99BAACC4F2B2B17BBA1901427303D7E3732B249000E08B8EF09CC0390800B351728D2F8BE504EEDBE78353A7DE4D4A0287333B98DC408B9C13488D481343AE6576305915F202949CC04F333B38594EE0A7991DCC8E21005233B221882470C4A78459B411D738245A24408BA50489DB532C744BAE58A26628DA41EB034C4721D851A3B61F3F0EA7652F80068568B0A6B2A28291B5975EDA149F1DAC0C2CA92D89F2DD8942AB4C4B8BCD0E96C707C80B68458B403981E477EF58B31C7AC0C43296D5B38313AD144D0D9B8EDD478AD309DBB06E1FAB7202696A18D58BA6869559C3E0B51531ABA0A497252B2F1BEFC5D607686B838D584F3A465E4046761ECB0A1ED12961B3173D528100A82F2D2A8811B7DCB170F8F06ED6C7A7E0F7C460CB607D2E6DF4E7F3F999B92E2A2C645A72EE5C1BBA5C1FB37C7C0A1527F30092CD142600106FA0B105CA09A468E2A5F3672023B78891399AC8A1D56907F52A12CB56867569A02A2323132DDD5E28CC4A018D3905CBE3079D1D9CAC2CFA240E4049A1A1B0B6F2B5579E6B18B10098316386B13B2C7C2596DB378CA48A68D8110EFAABD01BA894C4E838BCCE98907531682EDD179E10A2AC3534B07E22BA8767788D704CA335D40B3AC3058EE386D5E86851C21E4D6479D3AE5DFE5191113448C2881609D92CCA12A2D4306C9CCA5194E593ECAF039F7133C4D60CDC78E2C489962FF2F9BE1000A0D00BF0E1E7CB0B42CEA5718F1B54589F475D8E2A60406EB303DDC7C0A803C0C30F3FACEBE9E9B955B53660C528D7F26BBD1799FA6D0408CA0DDCB66DDBF1110F80F2C9B3CB9C26EEE4F8B125F2D22B63C0ED3ECB3C000AB42821D201D1BA21F66995304A08C9CECC02676A0A9663849E9E338CB8293901CA356C935707E92F431AB0DFD3DB0763C714C1E5CE0EE0FA3A40E3CC662165B3D912EBC09528A4A82E578ADF4752D58F52C31CE84D389D7674754F41518A09027A3BE8757A5637519E98DA7FAD74C5732ADFD950B5C84B4109C6D5AD5FFDF188CE0750124228966FB395323790C6029465E21267DEB0481DBA6A79D818B40AC719F4A95BC85DCACE66710025258C5CA5D75EDBC126875244513D397440CE1D96A7C37BE59BCD1046F65F2F4FC3A6783B2D105189DE84197FDBBD7E25F448A6D8024D83CCE26165E3F554B71474474FB6B6C245FC4E913E015DC38CF45846D0EBAFBF0EE3ED51705B0A18D0D54BE12496674437300FEB1F44A538248F9092CB1BE5B5E00EC0E8CA0944B7190E1E5C3620109418BC5102413FA540506525FCE0A597D86820F9DA7D1E1F02C0C62281A4A96BD69CC4C68AC03DF7DC7345F04719CD535608F9C1ECD9B064EB56786D9094B0AE861DB0B9E1D235AF10128E44E3CBC45DC0FA7B4FEEBAEA40907A343024F1E00B8BA3272790A26D92940B4B96FC1ABEFBDDEFC6E6D5E1C32A9F4A92286DBD972FC322D4A854BC66C5EEDD70240E805852A8120A7EE38D7D6872BB58F086B43A208FF42979004A79940F703B5E7F184DF33AF99E24A8B3E72EB055C2285853BF752D9CE98DC282050BE2B102A50C65F5AEF80A21A8D53968D15EAFAD85037220288A269D52C208589B376F866CF132B8AD45316126D449FD59E276C39D688D0E9E3801CB5549A164013C416EE4E704A62300A6DD5C23A7858F81D5AB5F676488867095F87DB280482CCB461B5F4F906925369803AFA3FCC2193366C0B66D2EB878B19E9D4B421C6A4937653512DAA7C19F2CB6365F2B548E1FC71AFDA39DB550307602BB0F451BD5C3CBEA2C25E553C9080ACB69E19411949A960A25681D56AE5C09554599C0DBB3E2CF3A58F0874D84A5A561E56567A96BA4C1284E671C1D3981663DB88AF373189132E8339108F5409FBB8FF5D90AF189E5DD89729A9D2ACF4E8A0DD9D2D02C7D0F2207A0D9C156AB2DB6F286C68E0DD6CAAEA7C118E51AF544CF017985EAEF5826E5176467A4416F4F2FE84524E1460723796CE63297787D7FBDAECC59949805A0A160227D9DA8C9E9660DF8393DAB676C05136E407EA39450CFFEFAC626BC5252A83708233D256C7675AAC5E8BAA9BA9299C9949432F8ED6F7FC6345849094BB65E1E255DE869E897C2B558C71ED4164ADB12516A36AB054DE438666A57AEDC8BA0884DAB5348A05A4BE363F668F2EDF2C4902E142EDD9BA687777475A31710F350766D5C0D9239353EAE70C5BA82AAAC5E23D69BD23C3A297D0DBF93F5A1FC8614670A4C98309E91C0AA741DF86CF971E1AB19BF523FB67A092D7C45C2C767A6A850405E12CFE24CC57D6EE29A919E13986ED3BA26555630937BFEBC1676ECF8233CF1C413B1FC3A1484328143DD67D3C4901FE0F90508949F2D5B0647B0E148603E7F00CDB319C6619F496677E3C653482E03F10522D49B420469CB440EF03892B1157575F0366AA7927B4FAB8495220028567FB96117EC6DEC82850B175E313144A99B3231E49F5140959326C13FBEFC327C24A77193E52020D00AA6274F9E04BEF538F49872D9C49064F552F8CA3834F9FF82BC63D9962DF002925565304863B4806FA42F135733FBCEEA0CA38EA584D1B87867A705D6AD7B11BEF7BDEFC5059FD8C8B45D6E69818750C0B442C81FB06188049256504EA015FBE732E4133428B47EFD092CD7CF169E4C0440485E1398F69DE7CEC1429A19545F0FEFCBA0A346BE841CA0B838B69E6FB36B071C69F13000287DB2BA0C65A31542BE8EF71E8BD73FB77A351C90D7F4618341294E96B1EC72B9C0D47B0EDCE6BCF80A2189A054B6629A6984E77C78E0002C410F45C907305A1D100C8D8265E29CE6584650595919A4A717C2ABAFFE2E6E16134DAC3A758BC7BAD1444B127A489E5F07D8CF5BCC26E67691666DDE7C10DADB4F304151BF3D60D955751780FB7AEC2268658F087E525A387911F4FE8122798590BADA4DC8EC4BD97D94FE5A6DB6D5E572F2DC403F69317E27D268C2CD89DD54210275C58A1550999F0A424A1E13BA12081AAC6EF4AC34692584F7A5F3A96EE9341C1C95467E4EA0492FB92C06EC77D187F7F9F07E7C804D84E4065BD18353EFAA9613C17FC4288142CB166066AC59D402CF85D8089C521E7745395C92413AE5272D12D39877C08BE821204B60AB90F0FC80913D0E9255951BB04F2496081F0191EAA6C1D2C222175FC26EE073015BF18CDD858F3D27C773785F81E5100A8206523232A1D71B9DF4EEB2975D231200F452A8E973E74F7418B487CA4A4B18AA4DA66C78EFBDD7D89A3964660768829C34A19024905D371248485E23882C00316D8A949199DCB7AF11BABA4EB206274E904CCBD86C5CB210D8B0D4F0A23C7387A277BD6E0FE4E7E5B0F3EAF7ED006B66416CFD4125743BC8C2CE94BC4A6551820AD58D9E87561827772F2F2F173EF8E003A8CAB140D0122B3B718DA001E552592CD114F7650B4041B3BCA212F084A237BDB3F48F87650F411A3100E064759C7AC7DD9352CCC2C192C27CD6381D1D3A2481CBE1AB5FFD6A6CE165D50409F5F2ACB454ECDDD86869089AB777ED828FB19E24B06028CC0040A48B00B16BD779F40EBC2C26A06401255B8ED5D1DC0CB3B1DBD87FEA14D4CAFD3079251D9D5D909B93CD3282DA4F1C80E36D1EB8EDB6DB1800D4E52865D3753431E47E64FC8578FDAB9B37433DFE469E036504D13352C2EAB163C7C0D8D70C7DC64CE6ADA8EBA6049694FD7CEC8EEEADAA825D478FC26AE4034A983A35331BDA3ABBA76F5CFDCE216C4ACA3A113F6B205C6F00686E9E75C74D6956D39EFCDC1CD64FB6B4F070E8D01A78E491479816288DAB084A6998AEF676F81A32F36C14F4FF7BFF7D3885E79256304BA03740515121D3AABABA73C82B42307DFAF4A40253B65404D4E29A1AD874F8306CC44656E2ED9DDDDD9083DE06B1F78E8F0F427D8B9B8D5328D3C892818A00F02D0463290AE93FDE7E9B8D2D30D7111F99D631A672CF239BE72E9F018F298B452D1301A02EAF1889F03711C0EFEFDB072B2E5D628A401C2733270F4E9F3EB770EFAEAD1F615B7AC8E07CD620B82E00E05887C7BA37E3B889536EC9CB4CD9989395C9DC40B33903DE7EFBD5789AF415A3774A8E3C6E06DC37A326F6628379E9FD411439C446A697399147400342EBD6EDC7C66D6102532F359B38CAC6D3FA82F2D26F3DB2AF4D42A325E8B2D03BA17E7BEFF62D6074A4B17AAA67F10EA8979CCF6FC64F23DEB303AFEFC3EF944246B9FF346D8DEA465D40490A7649B6AC7857A726954A396CFE237EDA685D620443BB9C164E752B281E03478ED67FE3F8D1C3BB28E4809B9702A7230500B408A025A7B8F4E682FCC20D36930E2234F285C20B0482CCFF674283FEA89832AB573DBB377E4C3E4EB383753A0D76034666A66973BBFB625C8D48A2387839CA4CDEF827CDFFA3655F2D66F0627DE838BDD48279208206943B27CE028E97AD442B55B39B755A0DCB35F4F679408F5D15D13C4EE06432AB7A265539FD4F88B450924927B68DC1628363470E7FF35273D37E3C44EF22A6174C863FCBD7C85D6F0B40537F9CB86541EC35B06972F68F4106089F40A7D59511A17F2DC1C44A261E4BC6EF25F5A74EA3D1DE5259F990D56C2E3BDBD2B2EA7863E341F91EEAF3E2E598519D6F1A3FFE5E87CD56D3EBF5361C3C766C95C7E7F30EF5D849EE3FDCE445E579A83E5159CB09915DB2E05B650BE01B110050818026D953C494467D32640038E5633A1900C210C21BAAC1D49FDC2020617F4E8BC5765B75F5DFA1B5C8A86F6C7CE9F8F9F3C7550D0E72A327BD474D79794D5941C137F0069AD3CDCDCBF61F3BB62F41E883AD4E39D46FC9FE4499E885E4CC20B70C802E79DFA77080114102D54450D67802410A6E0ED9326865E1730916401AA6B60CEB6F1CFA9EB3264CF819D565E7F1E3CF1CA781FAFE32A4042040328B90E17058E64F9DFAF7683DE6F6F9FD755B0E1C78FEE2E5CB3D0982E513B49E1BC44A7083805C94353F280BBB57DE14C147E4AEFF3315D8E7F2EA5859D00A08ECB205D0CB8DC60DA1FDD23500202E84BBAAAB6BAA8B8A7E1D11C59635070FFEF0744B4B5792EB25D535521200C4CB7B60E6CC5963B2B39F42F2A23DDFD6F61F6F6DDBB6214917C60D724C1AA2BB0395F9F7CB42A77502033228A4EBF5FAD8CF03000AEA49E329C7DF225B00BD6C1DB8AB30FFD2207DEB15A0F9C6CC997717A5A53D1D8844762FDDB9F3C9E6DE5EFF201AAE94C90F01AEF8B96373736DF74E99F2A4C560B8CF170A6D46B7F29787CF9EEDFC04C026E305C940189685EE932D41E87A68FDE70A00150878B9DF37CA0030C800E0AF12009F745CFAA7B973FF36D56CFE87BE40E08DE76A6BFFCD170E478761558673CFF8FEE373E6CC294C4BFB153E9AAEB9BBFB9917366E5C7D0D6543020F09C9820F28811FE93A0BE8739B172083405081C0A022823004991B36294CD1E98427E6CCF99545AB7D18FDF3DFFC7ACB9697AF92545E15D8A61615D916D5D4FCC2A8D73F148A44D66F3B7EFCC71B1B1A2E5F65398AF6C708A0C321D834FA0520F11AA3467CA7B5B5D53B9A00A08040AB72053509FDA6742D42AAC9CAB23C5653F3925610A65FEAEBFBFEFFDEB6EDFD24DEC2B50260C8EB7F7CF7DDF332ADD667B1F2FA2E9FEFA9A7D7AC5991A4EF1FD29331399DD335A0790478EE7E6C2A9BDC5C5EA450EF72202DE96A6FF91065151DB100180404DA41BA81AB12D2B72A2AB2A71514BC89C5675DE8E979ECDF76EDDA3788BB782DAE260CE52128C71E9E3CD97E6B51D16FB43CFFB58824BD5FDFDEFEC48BDBB6B50F050093CD3681E3358FF21CFF10364EAEB29C5C7C6493E3D4DF2FF11CF706C70B4BDA2F361E1E9100480001AF12BEDA1D4C469A0615C633B7DE5A59603693C605CFBADD7FF9CCAE5D67AF4283AF05044392B9DF2D5E3CDF20082F90850B46A3FFF4772B57BEAEFEDD6070E4085AE9ABE8493C8A4D51C544CEF50B3D3EA4AD3E96000A0442BDC8494B2549B7ACF3E2A98B230A0009208004E1735713E079E5F6DBE799F5FA379045359CF47A1F7CBAAEAEE3530A78B88D210D157DFCDDC28576ABC1F02C3EE837F1C09AEDCDCDFFBCB4BE7E068AEE317CF4DB69E43F265345E00341A0687E6C1F929E231FA36C83AD12074B259376C5E51327FA4604005420480CA372C315C48A3973BE8D27BF2071DCAAA33D3DDF78FAC081C03568F267FEA7B0767C3CCDFCB2B29FB8C3911F3574761943A2C825D76A4834F5C9CCBFFCE69AA180C2F9F1F33D7CD2A5ADC5B91BA4DADAC80D0D8021C0A06EC4A421D455B7DDF60C0AFEA778E2FF39BC7DFB93BFB84E41924FF367B1397E883EDCFDF8283339F9050103849B4CAB01060A57754EBFC06150A0B09F68695AE0DAF1DB9BD44D5C3A73F2A31B1E00C3FD7BBBB252677438FE80BB5FC18A7F7F615DDD0B376A5DAD76E72FB09FFF394AA44114233A4994C672097D7B8206AB040E89A63E0927E82F2B1A7F35AEC44631D9D274B4D6710C302711134B04415AD678FCF8B91B8104F2F6CCCCD910E11E45F7A625CA4597BA2F5F3EF949D7ADAAA971E8B5DA77259E9F82757E64E1DEBDEFDFA8C2A767B43A537F894DFBD45FDF6D863F1EF54A9A0E435B30104811A3A24E31FDC94D7D22286050A0B0F509D9CB2B22480CF9D870321FE3D7344742D0EA40A3D5295D080D34EF44882CD19884B71B0F1DEAF95C019092995F0D207E1D2BF9284D1054C6D9E5F1F4FDD4774535DC9B9EB6B6B6C46BD7D7D414A169FB00682491E316DEB57FFFC11B55F077DC7187A9B7B737B5E952EB2F3333B21E9B36DE00AB33EA21F2A6052C26211A0A737D7E9FCF2E293D5C02C94B060A3507508ED12B6E407E0F31FB594E3A116420004D82E16289A73ABD11343A7DDC7A4422E14301BFE75F3A9B2F6CBCAE0048CBCFCF1523809A0E8FE17DAA60C072E852FF34AE7E3050A0631376E84B2D3A611545C13655554DC687590BB4B44A347AF7BCFAFA0B37AAE6D37A48C160702236F4ECD6F6CE47A64E9B32F1C1C58B61F5C68DB0F1FD75F0A3078DF0ECF93EE05C665A822CEC0FF8AD57E3FEC54D7FACF5B008D4FE483496712C5F1BCB9EE6182028055ED0E9406F88A5B9235EDA823EF7E968383203ADC7B7BBDB2FBDFA9903203D7D9C95D30717E30DBE2EBFFF8F5767CDF467EB24CC8B1B9069C3F6BD3982F0D15FDB6DD327E975BBB860F02FE79D39D37B237394D9B3671B7A7A7A6E46F37B576777CF02A3D936B9BC662A04421170B79C81E9930A61B97F3D043E304059AE00E7DB85BE50C0A70F86C3BA81560086208A03BB0636881009B32C654979C115ED2007A0771FD08B2CF1BC703818DC1B09876A245134C7DE841EFDD667060004BC263DEFC29D28B5C7D035BD8FADEC3550B3219E8625492A00A82CC190BF431B2746DF90046EA9B7A7E7C08DDCF74F9B36CD120A85F21004B7B8BDDEFBBA7ABD7754D7DC6CB3EA05983D6F165C6C71C19F5EAD859F7F550BCF747583B0D5216924DEEDF37A6C51914D2248EA220EE93DC85E067101F6722C5A2D456F9483467039140A6AC568D421C97989C41DC42820002E7E3A0064178C9982E6E6318993BE0222A40FAAE92ACD1E8E25480E86F83927F0419682A859E6F7779FBB0141C0210F1090073871770CD6F7F6EE3ECFE2A824D43CF4C8780DAFEF83352BBBE0AF1F7B1896B5BC01AD6BBC60D36BC066E222973A225E0F028193A53FA4FB973426D0DF85083CE747CF23128E44AC6CD6B5A8CCBE9662CBD9F1F0B75D2D17FFE7AA01905534AE98E7C5AFE16564E2CB93096BB8663E290FF8649EA00084FEA993405C1AF4F996E171CF8D0684050B16E83A3A3A3288FF84C3E13BBBDCDE7BD3B3338AFDDE103CFE9D6FC3919327A0F1940BA27DED30655204DEEA0D80EEA0D317F47BC4602068498C0924BA7FC982473CC745341AC1130947EDA224728AC0D5C2A74F9D867FB27C4CF1B3C302406161B533AA0D3F8CE7A2D06126D10C5AD29CBD07E793B4FB0AC15D0B40925B13F47B2F729C16B7E82F3CBDBD1B6ED46EA1BCBCDC6C3018B2D1344F0D8423F7F57802736F9A3CC1C91BEC10F2B8615ACD4DE00EB5C3CAC63500076C50550870BC89EBF5B8DD46247ABAE49A0F894451D2EB74BD2815339A7B6DA2C0D5564023F05B8C027CB7B1B1F1F4A000A8ACACD4F586B84578D9D739495C88E7E914818583B1B97D12BD5C49A3658B2331D6393CCDBD461ED05F1E56DA27089A0308812968010C88C7059EDECEF5373841D4F8D0FDC3DDE268343ACBED0B3C18E13453F47ABDEE2B0F3E00BDBE0EE8EABE0C5B6B0FC3D30F85E1A7ED1ED01E748A9C077AFB7A7BC86DE4078B1368B53A8F46ABE5A3A2644A2670651FCF3D6FD6EB7EEAB09AD61C3870A08FD2CC060080CC5641D9C49922441EC3AF0F616B3B15C1208304741F50F021F6660CCA9D67EF3845E241DF797A6DBA46376CCDBE26B0E057BDDED08CBF5BC617F0768B5E82DDC743947BBFB0AFA7639D74838735A97D4B4B4B7556AB3515AD4145342ACDEB0D04EFCFCC768E2D2D2FE502411DB45CB800F7FEC50C58DEF52E746F0F83396C82319991D0E133C180CFE3B1A941A0D168827A9329204A9C3D99C0152B8042F6E8B59A171D66FDFFE579FE320A3F120FB7CB6FBCD2E48FADF8174E10BE83DF8B94C626564982268DA7D56DC9ECB3E364FEE9956FF4C9D167845900BAA9CE608C0FBF7C2218AEA21BD0EBF45E41AB95B02FB508F7FB6086DF04705107B587BD34D9E45B258579EF188D465FED300741BEE86EA1BABADAA8D56AB3F0D926872558E40D44E6A76765A7D16BF016DF3F1F5A3B76C3D1FA1E686F6E83BFBAD50FBF0EF482695BAEC7D7DBCD23B13358CCD65E10B436ECE78564244FB602A296E7D659ADC69FA22378EAC89123FEC4E4520600A7B3D801FAE01983D15C8FEEC34C898668E5694CFEBE9EB8C633214BF4FA367A11626CF56E891D17E477EDC5A667096809C8FFBCA66E20E17C41C387B15EDE7038E278F8560DBCB92D0886A9127C63FA37B1AFAC82BFFBFE0F2035C5F1A2C36A7D47A7D39D46F3DA8608F74B236090038120545555D910B80558EF198108A0F11766CC9B57A8B739BAA0A53915DCBD0628CC30C2BBDAB560DC5A1C5BB6480C7BA222674DDECFC7F6055E3AA1E7B85F588CBA0FD1E2F40CA618710070BA503763913CF7B1DE68F163BF3E914421B2F57A42100905E577F791B029F6AC01518ABD6031128DBD989980A061F3EF6008863F8407A00208CDF23299CDEEA82459A5B4B000B7FAE057C654F8F1AB7E983B7F219B5B5831B6087EF8C37F86CC8CD4ED768B65375EBF0F1B72AFCBE56ABD1EE953D7AB5BA8A8A8D09A4C269A33511E8A44E60645E101479A6D02CF9BB9EA0963A1BAA2020ED49F80DDFB3E92A79247BD5191A6278A57903CEC94BBB43CFCCEACE57E6FB7DBDBB66EDD1A1C4A19FA01A00F752B0B19D0272F68F6A13528C012B318F10B05626008850824F232693CB30A1A9D2EBEA2C6704CFB2769BFD16870A315D1CD182719B6D5A31C334250382B0B1E2D7A143ED8540B96F47C08211FF175B7C2E1FD1F05B333D33E30190C3481724F28146A387AF4688F3492863965204C9F3EDDE0F7FB33D192D6A06A2D0C4AC2C2B48CACACCCEC5CE8E87183BBB30D7C7E3F0A4DF4A26298D5661F0512D2F2D25A9B5EF835CAE69442F286950F100340B85B7135D898726C3F8C7D6FBB24F059783381EE130AF81108E198991762438E57EBBE0DE60EEA745ABFDE608E44B888555CD403CFA5A6C00F5E8EC0848A3CB8F5B62A28C89E0AABDE7D17429206EA5D072481E33E4E75583F40D3BF0FAF6F40ED6F1A3B766CDF5B6FBD158511FA47DDC2CD37DF6C4110E4A120A78740B338CA6B6E2B1F37DE74E64C2304D11263478B164032CBC2970488BA0CBCF86B5E9276A202743434348487AB000C003939E56941C97B39B68C49FF92260A20B03F0F6A044D006F6AFF34EEDB603C40E0B988C962F3980D9CBDD72722BD8D82E611373CE45E04E72EF9C1640F414E5E07022F05562C3F097E9FB73DD56EDD845ABF031BC98564AA312525A567DDBA75A191A6F983590304810609AF1381508A98B823C46B1F42B7B10A7F16180024306357D0AA15232F1A901AA1E56846C1FBAE7606118B2C141494157A42BEC6B8E079B59FD90F040481877CAE6854345D552067F0DF258BC5DACB19054B3437A0F9EFD93AF8DEFF00A438CC307FC1BD306D5225D46EDB0E8D4D27C8C2C1A18367FD76B36997DD6AA6A0CF61D4F88F65B72620DD8059419F515859EFF57AD311E8D5C8C0EE0E72DA7B2489D36A20B24DCF459FA736C0BEBEFB5ABD1F963D802E49414B4737055652B8440BC02B0B1CC58F4B5A81EF8D44A3E628459C06D1EC4F8AFA19F4068FDE64E1A392688A167A409CE6866FB597C1F65336C8CE3541BBDB0466931642BDDD70E4884B341B74C71C16D31ABCFC805EAF3F86DAD182ECD63B12DCBECF2A9A88CF4B53EC2B110C41DCEA1D0E47EB2791BC617501C5C5C50674454ADCFED0CF4391E803141748D47EC532F41FE7A30227F6858221BB88901C56D8178F52F0C26CB505AC76D1FE95C922BCB009DD4553101EB8FF6E98376936ACDBF4219C6D6A85943413F6F387A1A7D3D76233EBD61B74BA3A32F75897F3252525EEB7DF7E3B3C1ACCFDD54613D1D49B3C1E8F88E6DEFF59783AF14820091D7D52AB3F1C9EE90B449EC6FEFE26D60DF0092050EDD3582312B140341A0E858241DB503C80E7B8A8D5E670731AAD3D38A58D4F3572F01DB305FE738D0E66CC2C87D64E2D8C1B938E4CD70BB53B7610D3F5580DFAED469DB009057F18B5FE349AFBCEDDBB770747A3B9FFC2AC4B622898FA9C603098DAD6E9FE6A2012FE21FE9CA9081EF84410A8DC461EDC019F4F1B09878D89913E8BC5D29B9765343A2DA06B68E22054D50137E74C8445E3EE85551F6C00ADC10C68D3C06972C3F66D27A27A2DEF729A0D6BB16E072391C831447DEBC99327BD5F0AFE3A0340ED8A9496969A4D0E47BEC713F8C76024F2281E35A8853F8865A061C25EAFC76D417EA041ADF5996D4ED137B7D9B2B8CB0156030FAFEFD4C15FCC2B82F4B442282BBA09DE7A67357474F540677727440281F3163DBF0E6DCB2E64F647D0CD6C42B7A64F1DBBFEF2EF730080DA1541F3EBC0CEB6C6E38FFC2402D2AD6CC459DD0D5C193BA033C2208968EE7514DDE27A7FE08259EB268259970575AE26B8E79E42309B5B20E0CB812D1F76404F4F57AF49CB6F316A85CD581F1782A711996D17129CD0975AFF050140CD40EFB9E71E435B5B5BA62710BEDB178AFE93085CB1E22A0EB00A2ACF019D55377AF8EC8D104537A5C2DF2FFC36F4BAFBE09967FF1BE6CD2E034F5F0876EF391DD671E201B34EB316403C88D79EC4EEA72DD9A0C5977F5F1000146B400108228968960BFD223C1E8A728FA1DB684B123D64A0E01900785B5A6A0A688C36C84C73426569212C59BE92C2979206A2670D20AED16A853D14C543C137A7A6A6F6FD39B875230E00C948A2DF1FAEF245A34F44419807896E23F30EC02D2200E82D5ABCDE0C59690E683C7B16DC3D5D5D3A2EB249CF735BC8AD43B7F0DC688AE28D6A00249244ECA7732212774720CAFDAF28C757A8BB01819318006C562B389D0E387FA129A897C27B755C9466F41C1AED51BC510D00C51AD0302676090ED4E29210080F8625CD5F493C97CEBA001019002810A085E8499D145A2D89E2BE3FB728DEA805809A2452760B0A36137DF68AB0A0FF761834F31100014E8290560AAFD709B01535FEC89F73146FD40240C50D04E40636D4EEC2A8244D8B8066AA460C1DA298B5C16038F565146F1403400D044A6A0804024EEC1AACA8F5019FCFD775F2E449DF48C9D0F912009FC1DFD34F3FCD6FDDBA95369643FAA5B9BF71FFFE3F918F337F52328FB90000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (133,1,'SAN_(24)',0x89504E470D0A1A0A0000000D494844520000001800000014080600000097B5FD830000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000003FD4944415438CBAD954F6C554514C6BF3377E6DEFBEEEBA5B52D7F4A5B3091F24450504275439A18351137C6A80B4C74455CB965A5814477C68D1B638809E8421317C68434BAB10A2E8A11C116412C584AB58F86F27A5FDF7DAFF7CFCC1C172D4DFB28BE857EC9CD243767BEDFC9F93233C4CC68565F5F5F1F113D4F4487003CC3CC6D585F31337FC7CCDF4A29BF999A9AFAB3B9809A01875E7CE9DCDE5DFB07ABD51998C949D4BABBD056D88A3C29238863646D3E8CF49197CB6848173D1BDB1065049A9EC67C4767E5F4D75F75ADF613CDC4825F08005A55406B3B22E06E53D4B4DBF77DB7D9EF1E409AA54CC400963E41B464C8BCB4D2129001D032DC2E0305DD3B43D9FCE34E5479E797B18BEF59BBB839CB6C979DFE4BB8AA0286469EE540651ED2F3A1B5816924B8BDB0C0D22DDCD1AE5F4E6ECD9E6A09686F6B7F77D78ED29E348D909467D0F07C84E116B08EC00B0B309E80E38748E7E6D010029D6140B9E376E7E572771C761E07F0C1BF8EA8180464AD01814100945210422C8D860862794420822B25881802000901D7F5D0328338AE5F55AE6F95EB72602D0B21D871144BE1A028251CD763D7F35124028CE5A010B090920366B6D6FCDD12906B5D89E33A67B9A61444499A51AE73CA8D41A22DE25A83B431C848A09165548B1B648CA55C389C2C2E462D01C5A0F0A4EFBA0E0120B6D0790A580BB6068218AE041C4110D6C0110457094847C02508CFF777B70C5980442DAE224D23985A0D69B188EA4215AC6BF092148B8E454E55E4F53A1221104555583707C531545B3BB504CC57A34F94546FC7F52AE5DA1252ADB5B9ED189D0ACE73018772279DF79224B3DA9ACC5A2B53D3804E1264376FFCD0F2AA202201602B800E0016807976E7CE6D5D61F8C017E7CFFF7AB7EED503071E29140AE1A933677E04C08530ECF1BCC08BE666BFE755A6B4DE65B70C520070E2E0C17D16D06F9E3DFBDBF2015ED1B1A1A1E29999996317E62A2F5821061CA92095BA45427E4ACAFDECD6B5CB97D600BA7A77F43BA4DFD03A7BCD6A3339E8ABD157C2F0F32357AE4CACD7C4C0C080B76173C70D4959FBF58939C544D2910A8E547094AA648DFA47542A95C29A755E669D1D31DA3E658C26AB358CD1B0462308C4785CCF5FAF47D1C5FB4036EED8FDF0E94C371EAF4495A43C5D0B826250CBD2CC07EBF7A9B3A7FFC3422178CE02A51563AD218892BE5227F7756F5357C726DEEAEDED3939323292DCE75DC0634F0C0E0DECDEFEE51F13B32A5D6C4C126787AF8E8DFD4EDB1F1A389A5B1C773DCF18AD4596A5DED6FE0DC9A68D5D81837072FAFACDC3E3E3177EE2FB85B53637DA3338B87FFCDCB99FD7845CDABBF74163C40928F7E92DBD1DBABF7B4372F9D2D4D1DE4DDD2787878753FC07AD844C44F2D17D838758887D45C51F8F8E8ECEE27FD03FAEE1FF0243A365280000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (134,1,'SAN_(48)',0x89504E470D0A1A0A0000000D4948445200000030000000280806000000B88779710000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000C3A4944415458C3CD59696C1DD5153EB3CFBC799BF77D4DC8E2D831751208069A004114840A8806B522528B2A103F68252AD1AA455555A91252CB8F5655A9F8832AA8549050D3AA15082832C52524211164051202761227DE62FBEDB34FBF33CF4E4D4AE297C4125CEB6AE6DD3BF7CE59BFF3DDB11086215D6E130441360C6333AE77E227F76BB18F50C9DA45EFC36D7800D7D7B1CF6B9665BD83DFF665CB52A902030303CD41107C635EE86DE8E9CB1478A9678AE86FB142F8FDDAC183073F5A3605BE79FF03B9F53D03F17C618A744DA342A140FECC0C79AE4393AE473D6BD7D2D4B44BF5750AE68A94CF6629592CD249DFA354AA8A326747A8B16B35B9AE4B857C9E62F91C8DE572946C6A26C52D52ACAA8E4449A622D6D0DC1C398E4359590E0BD94C726868287F29D9C44AB4D455554FC41314D335D2548544048BE1B99486F298A3742A49814714330C5264897CDBA2163CE443E0742A412ADEA22A32F9586363AE4992C88392068C914C9824CB3285814F0EE674F418BA249040E9B4BC946C72250A78BE17B2651DC7257658806E43F01002FA7E4079CCC98A48362CE7070149989BB66C522160B154A24010C8F33C58598AC6CEC1834A22118D5981438A1A90288AA4629DA3EBE4607F4952F0A2F892B255E401C3D0051D1BCBB02E77F68002610D16561261791DD6F54982109CC9015B1E378E6D9381752285918081EF23EC5C4A4221074AB0C0AAC21E85B730C7212659162908BD30F4A9AA822CABC803BE1F467159F64018BDCC87401EBB0222F31C37070278980B319787728AA2461E62E1D9DA000146302A600F356646DEF421AC849B807FB0A7104E01F6E2B55E05B255E40109265754099BCA9130D1421650A0C8E2325B11CFB025F977082574F604E29AC75D8F3D2545C2B301540E4BC4B9209445E0715ECB1A89E802946523299A162E0B0A5D33F0F53A5993CCC02E25C829DE1478EE16BC6C0BA61A2BC5EB25DE730E5A0C9320BD2D6AC67FA458628A073FDAFDD668B8C4C28A42A8B339FDD7B6E6CE8DA55256535545E090E178B511E325C46C5B4B2B12D925D394A3718E73DBB171EF21C6110A5696E2E95AE25AC7F3E5EE908870D1089636CC1A45D5EEC5F8BD8EEB84AE038076BD3969FBF6368ECCAB0EA1AA44EA86F6E62EBDBBBD4558B3B29B5A1BEBA9D777693D12AD369DA46BBA3B009569EA5BBB9A3A5B9B29815DEF40E22A42482BBADAA94AF6A9ABBD8DD28918296248B741E870EC1435D4545377732D35D6D75155328E39A25585BCD0919D550D55AAAF73DDD8B224B1E53841C9CA49F97C964AB0BA05689C4E2681320ED9258B32284A3153A0B3E31391E505334EBB44896288E399995972049D6666E7A092409A6ED02EC4BBD6D919C1EE6411706B8AA46940244DA7D3353564C3ABB2006D9696BF320F24CC98183753944A26A8B6BA9ACC588C3A5088BA51510DBC380D650AF9801A1BEAF12CD0A590A7C162818AB8D65457911294A2B54861285FA44108E88C8EA230EA549B8A21F462113870216B3D778E9A50E543143D5A2E18456C06969D8707F2E400216C587E168508042C2A5C5CC8926989A6F0721B054C4E246937C48DC3D2D93C6887625226938D3C60003EDF01B41AED1D11ACCE803E288112D504F6CE583A1DEDCF05AF6AB96054D73551D7E2B09419599B694113945981649451C8928938E5320155E3E53A3CE2E6B2742320348F6B64793B4F495C992EB0576EC29AD2C951C0AF4CE9B811153B8650F64E6326434DD90C39304E252EA808466FBDF3EEBFB437B75C572816C2A8D8B84E0C5E318016A6E5584A5D4D2DD38DA8A8317E73C50DC220AACE02488D887B453322213DAF3CCFCF09081B5476D78C994541164B982E614DC0F50397C2787DCDC67DCF3EEB5EB5021B367FFD3E490AB70354D6A32EAD5E1C7A5171C21F2DDA265CFC23AA6CE5CBFC82F3C3345FBC168D716DFF0CBF0FF982B467EFDB43BF867CC1552BB0FDDB0FBA5F5BBF59CEE5CE1073A20CDC2C8E8F93042B8E022DAEBDB69F8E1DCB5077B7495924F739CCAD457CBF0BB46AEFE8A499912354DBB58E3887E6409757218FDE1B1BA3A675BD94945C0AB464940FBC368E798FD1C9885156A0AAA19D3BE7AE1E466D3B9C3E370EA4998DA801172F66A2FCD22242E22C04B6EC228D4FE4A9542C51097327202427ED2C042A78A01140160E1D36D718E624E412F605289450C898040A11206441395C592953964B1BFF3260346E8AD5550D11DC712233838C31AB84A598C330AC06BE8A644E30738D946B9E4F4A13BF05271F3D13113E085DCF73939324C31826732C546466B55CC175782D895A1245463ABD3C308AB21E4C4F8F4B93531391C0CC3A0358919967893D70769C7C54E5B131C02C28828D483E1C9135912626A7090499A601B1CC4C99751E8712425575747A2B7A38BC80B34938917162CF4219B81690BA4C308A24156071D175FD28E198557228C8E0F3098412C72BB3D4CCAC052C57CA7008F86C869299CC5C04B34E6E2E4A5ADB2A015A73D48035B9B367CA8C532CE7A003AB738E280839193996433E1C3B7C3821B015AED4032C3C978189C9896CE887694E32E6E92E9F0D301580AC3922E216CAC83204C67C74669055FA18E1A3801AE430E78A3ACEBBA5086244C4F73154693195A202C6EC1087184D8C720BB84A33084F2E648AE386674E9C68C2FB272E45E89644A1790BD4A1F7A177CC2B1D94C1F1FC75A1455977634FCFCDF09A3174E0C0AB0BCFE0DC2BDFDCDF7F0742C81FFEE083370100E17C0408F43F945DB872153B897E1C7D3AE4E3D9D5C0289490E695684057BFE085D126FCD0F7B76E7D286B59A32FEEDEFDC6C2816E9192E16DFDFD2B7ADADBEF3F3432F2D25B870E7DB648F170D17D8105E7A85BEA3C50F17721FE98355FDB8D0B048F36E84A24D44706079F3C99C9FCFD8FBB77EFBFC033E16225AA0D437A7CDBB6871037E1EFDE78E3B9E96271E1F418C652A92E4956EF9344699528492F55C78D7F1C3F7EDCBE6A05167942BD20F9C3C7FAFAAA363635FD6A2C9F7FFAC95DBB4E5C44F0C56351FBFD3DF7AC4E2ACA23EF9C3EFDF20B478F0E8882F8A028CA1B996288A0E35C0B703F274AE2CBB87961EAD467C3177A44B8DC4F8BF3897DBEED1C1CEC1654F5A71949FAC977DF7C7326BCCC0D93A9AA47155178CA0AC27459E0F3822F56228264EC7C5AD5D4E743497961ECE3F297BB8A14483776740BA1B7230C82BB80D16F7B21FD393F3371F0D50D1B360B92F49D7076F6C7775EC2CD970288CE152B77D6748A77674E160B93D3563CB2D082E0525909969C3F8A61A0FC6D09B45B9695E152AEF0A38BC2686BEBDA1A57B41E40F1D92109C160B8C0B604BA1EECF289C6EABA931B34F9A35D19FBE1D9E2CC650BCF6DD3A64D2DA0257A637A9DB072E56CE2C323C7DC73A7C807BCEA147DE1283B9B3F3BB2525C0865C0B82884478AB9CCAAC077377ECE035D5D5DBA25687763700728ED5D803A85C9202C1FF11EBEF2EFF3F73C1E0218836008B4F967C54C66CF157841E8EBEBFB56757DCD1FAE59DF5337F1C9613A3835590A276D2A58BEB1389C1445C933C1725CDBF4C104E4507838C2E0D635BD5B20C90EDFF7B67BB69DF43CE63862A4392B7811C1A32B0E2567DB3B04E9D34FDCDFE6E7669EA22B6C838383C65CBEF0CBD53DAB7E60C4E2FA54F178983B9BCF8D8C160C54FFD0308C92EB07290E25210826C0071E1D3971EC6F42AAA1799BAA6A4F6A86B9C92E15CDC07722BE02D908501691AC2F145C122DA551F1BB75C55CB3652BBDFED2BF865B9B9A1EDDB367CF87E195FCD361BEC11B6D5A3CFDDCFA81B65B3D43123F7877D4B18A2E98BB2705BE6741F0674E1C3DF8C4C239419682500631DBEA94F2194333A61D57AC8DBEA831E799173A3A93CCD74B49107D3399C8B6F485E91ABD53686FE8A4C3EF9F9E8D9BE68BB0D2A757233CB743870E9DC2E5F68181EBB6D5B4B6FD49558C065BF40495847FAB42F0E0810307C63E1782CD5D5DB7BB4EF00A924466A1354529F0890A0CD45C6C71EE35693363D7F9E6F5B52D72AA6D1D1D3D78C49A1A9F7A3E158FFD62EFDEBDE3B4CCED965B6E916773D60FBDD03F7678FFDE7F5EB490B5AD58DB037C791EA7D40D4C6B5911459232A552DEF05C4FC541BD505F9710EA7AE558CA5D4D9A2606EFED3DB0DB1085C7F6EDDBF73E7D89ED3C0A31FAAE58DBBBC30F84DF84A254CF4AC892EC03B2E6B49541CD3AAD955A5626E8F5573E1D099CD2CF6BAB922F0E0D0D79F425B7FF2B64FDFDFDA6158A4FFB82F23D28A1235933EBFB075273D3E3853327479E4999FA53C3C3C3B3F4156917ADC41B36DCB0C60AE93940D14A21F0F7C5A4E071C4F9C7F4156B97A412BDBDBDAAAEEB8DFBF7EF3F83E73CFA0AB6FF029903B825F07487600000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (135,1,'SAN_(64)',0x89504E470D0A1A0A0000000D4948445200000040000000350806000000F186EDAC0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000012D84944415468DED55B09701C65767E7D4DCF7DEB962C214B42BEF109C1B7618D1DC22E49804D056A49B62A152AA922A91C5B95AA0476B3452515725416E7D86C2A24EC926209E12A1230C5AE59035E6CC0966D3076642363CB3A6724CD3DD3D347BEF7CF8C2CCB5E838C442D4DFD9E99EED77FFFEFFDEF7DEF7BAF85E4380ECDD7214952C0E572EDC09CBBF1731746FBCCEBD7F2ACEA3D8318AFF2B02CEB359C4BCEDB9A3FAB013A3B3B5742F1DD9867173E37E294F62914FA2C878DE3B02CCBAF62AE5763B1D88177DF7DB7FCB91960E5E6CD1D6E93EE521519CA3AAC70DD95E4B0405EE9558D2055BC861CBADA1AA42B7CA399F714F0ED90ED386F5B24BFFEEE5BFB5F5950036CDCBE7372E7B68D61C3F0E0578ACAE532158B452A140AA4A5D3E4D7341A2895C8C6B4DBB66EA1BEBEF3D4D0A0926118D372E15C8EB2304E5A51C8EBF393994952597153281412722C53C4580C231E1B19215734465D5D8BE9E30F8F50B4B58B54551573F1B0B3595A8467BE3D3E4E0D4DCDF491598E1C79EEB9A94FAB8F3C5797C1C365050B1F1E4E505D5D1D058341F2783C84D8A74558581316CD0AA8AA22BC209198A268342AE4DC6EB758FC125D273F142DC150FC3B160991699AE4F57AC56FF68A1294DB188F939DC910E29E3428E9D55DE239B57978F3FCB86FB9CF47939393A4E079E1850E815FD8B133B966596FD4E30E53BE30492ECD4546D920139E50C662780759999251A6DE9E6E4AA50D2CDA164A950D9661594BC859369C5691C9CC6749F5F828140C236C2C310FCB9A6619F340CEB229168D5026394A81683D79FD7EE179E299D5E7F277495668ACE88AEC7BEEF185F380A0CFAF36D6D7513251A0EBBBBBA82E1EA550C00F43A8D453C8D33A046A3E9B213776ABA9B1812E9C4FD1A2D616EC72987C5E372930C4CD304263364D46B1C0F3D1A2861895E10D5E8F8EE0B6A98479261363748FDF47F933A7C92A9728168B92572EC3981A69309A05A3E7F01C75748476020F4E7E788214050F9FA30BA8D7009B167B4D5B5B1DC26058EC00BB723E9FA7F370554606765796E1CFA6A6308D233E59A686011F625739FED9652D60C17072028A792803776719F60E09D7DE4A24C880CBCB9061AF4A668AD410C56E438EE7E37369C81DC56F0E4306DD082DB4011C49B8A56DB9C40379A1F06F625C30F1BD8873AC381F59809D6DCBC2188C072CC3B1CB8BB72499D4AA1C24A80C37E7DF1AEEE7791D8C0C8CAB23BE558419E3800E5CB1F1C91860036539342C18A180EFFE4080345523638EEACC1D0415597103C48686C6A9A7A787DA5A5BA91E60C808BE0C0A2EC3B51C14D7A0A88EDD1B1B9B14722D2D0883588C0258E826805DBD650AA4D7103A4DF57118C9A668248230A900611946BEAFA383247881097777EB6E0A785CE239E170183B8E7042284461A42F21BC46E08D15340B2F2C086EBBED977EBA7249F77A97EE470C4E4001BD02440C849625617725CBB424133BB86C492FB2401A406762B16A45AE0A92351074B9DC64000475B7973C3EAFD8E18B20C8605A121EC6469E181BB103E11852A7D7A9006A45863F3974BCFE80959D9C88BCF8E28BF9CF8509AE58B162255C9329EFEE4FC302E79121B2F01166823CE0316FBDFFFEFBC6B53C77CE0658BB69FB5FB4D4C77E832457C428E775B11A8E59CC3373982593FC21BF8019DB362EBB2EFEB32BEC4EB14D98CE2570422CC7A919A4226B21C6DD6E1D73164881C7B15CE51A89D0611140D31470E49C5DC86ED8B76F9FB96020E873BB7F67C39A1B822323656A6CD4280B26C61980E33E3235451100D441A0B23B14A4AD5B36D3BE7D1FC0531A2E91EB06088E20FE878019F1781DA9E52C8DA68B545F5F3F2D93C51CB7C3ED9F3F7E9C5C4D4DB4B467319D3FF11E051A5B8501588E879AC9D1865048F98F53A7623DD7F7C692BACA565F381E20C992C320150E57C808139CDA2843A14295DFF360B40E857C02C16BE778F12C63CAD547CB12650B45C1F078B767CA4D72B6C19CB52AA060582293CC7CA603B9946956CECB735667EE1E2049B295989880FBFA005453F05C0DE0670B163605374E60D1BADB03765846A618C60D16A5B19B32AE433D00A24AE7F15946CA7221AD158B2518D2241BBFF93AA73CB7C71172C77259F23534908C0C90E3DDC6671E6017406A74E9BA308C01B993B8D6DCDC5235407861D320189E1A04151D1F4BD356143BCB972DA3AEC59D82F56D85316E0B87A890CF11A74A3F985C623C4B9B366EA425BDD75347FB22A0799CEE03ADED66CA0B63794160DA9BA1243CE1BA8E768A83F1F9BC1EC47B911E5DB386A4A121C1FA027866C8AD5003C2A2B9B9992248853AB34DB0C9DFC5BCE7CE7D4C2A1B20BCC020B8F38E5F4EF6B4B74649C26EE4260479A9F172CED726A737B9E2B63DDD8B697824054E600A979EE6EF4C8410160E94E66A309F4E92E2F28A5CCFA9D1844718486D0AE6CAC1BD3584471DB022313248DE60048AEBD3FC9F656DA44A2660A170944A2E35F2ECE30B580B80BEAA2D2DCDD8917AEAC08E45414202D869DE8D3A2C6A29888C6930AF7763473BF0003F3537355218A0C8E798F87443F106383CE77C3FDC39821A81A33C809A82C9137B830923ADC6350B349A15E55A40B38AF02ABFA0BD2A629E19A38ABAE1066CC2D8E8285D03045C0308560189917A2618F1A163056A35CDD59A178CD4BCFBD3A0856B6E5EA9695631058BA82AC35EC143901B281D02D81A3044257592A0BFB5464B4D5EC2F055FB03626DE1056682EBB76EFF76632C76B7D7EB93F2F92C562639B6E3C896657A4DD3F2D996E9C742357651C60A45AB009D40F2691E40D3395E58C0E17ADF55A1B2B3B98253E10BEC1950D8D4DD7A1E5E9885D172B6038415725C3BF0DD52C6EB92373DFDF4D3C68219609A10AD5DBB12BBB18B7B81F8B969360BBCD679E7701F0B1E652608CF7A1595E49BFDFDFDA5056782376FBBF5A7CB975C7FA3E60A499C065D2E5DF0FA8BA392D64A00C4E54B97A218CA91DF2B9A8402F5D9B5B9816288EF66A5D2CB4D0153FD148984856B1B5C07F05CD5521B1E468D4887C9E17314883709AC10F31895DA8287A81914D51873ACC8BB73A805AEA125A62D6D6D6A90329325BA69FD3AEAEEEC20FCA6BA68986E822BDE0ACA6A19450AA2B0696EA8A7D44489D6AC5E455DD7B5530BE4A2E1207D0540783D8C80C8A7387EF776B6A1D495310FC012CAB911364621477FD4D642F2E039522507E92F460D019DEA63118A737305CFE1FB639914DD17F0D1B9B303E4F7B85D0145712D2811B26CDBCA6473D4D414A0237D7DA20EC883D6F24E8D02F018FC18D438EE0B6078D1A84E7D478F0AC4AF35455E817C01E409502E884D623441B2E6A5C1C141E119A25F805DFF97D3A7A9100C920BF1CDCD92E1A91CC5BD530280B9B1C2B2193CEFF9B1713C2726C073C1B300D29DC435BBA655525605A42A0D0C090BF0334A435959783DD2992989DE400DB979B83174AADC2703045D223BD8B5A67F65608E30D35B41B7A9D24C714C81F4DC08A93544F00FC57597E82572BB6CAE5960EE06D03499153B7BF6BCE8E23287E7DA80D3530CC608C008BC43968865838687C7444D207277B5E3DBCACAC05B7817399571AF903DA3C6F3F91C5F5B160890914A89542872BE2C09ECE346081B859BA63A9ED189792740CFD9380BDE12334CDB1C1D4F407989FAFB4F0B9666561B1367F19D81CDEDF10A37BE70610804C64D174067392CCA86294ADBC3924C26A748C8B26B277369D23C60840819CE661A80351889D24B19D40220537C2E914852D1D14886E1B8FDC5F379BC3E3221FB6318A777C952513F2C68086077644D9154375C6D682881B88BC0BD1591BB198963D8AD7670F3D4D4A470696687838309C1F6B81BECA0EE2FE17A178A1C2F762C9B498BDD8C04BC289733B86E5111CC2E9D9A02ED1DA68DD8F1D49933A2CBCC73C9665E844D09DEC1E5F2E444928CA10BB40AF7BC7FFC18D650A2FE1327FC58A732EF1E2055E89EAB842285772D18D4A7BBC2A275851DCF61B8E54A13B4F67E201074D1C8C848B56D5616E73FE4B7491CE7DC4405584EA42700826E9A9A9A9A4EA726C2E0106870917B8BDCF884D289549EA29EC234008AB748B8D687FB387C98750E9D3DDB8575A6B1DCAC530396F9E0015503E8D1FAA69B1CCBDE86C2A7C1766C6FB558E749B8BF6357E92DBCD6B12492A42BBDE76BADAFEBF5B9DDF1FEC1C13780152680901BC352533CD61D0E06169F1B197D2793CBA748944B58A25421899273C98BC26AEF888764637926CAE1647A32F102CEF5335B773E857273224255D7E2D67F13460B46CD00F20C0DA5CBDE6356060B49BF72F3CD5F2B5B56EE858307FF8BB36AF55AEDD359D4D010DAB17AF503B96271E085FDFB9F362EBE619567CD2D5707DFC7F92F87318A91A87EB7E6DD00333C818DD0C005DCAC3072AEF029BEC7FD7EFD37376F7E2891C9EC7FFCCD375F992577D9F7FBB76DDB899AE3CEBE3367FE6E6F5F5FFFACEB34C3F3F8E0D7E3931819E833A7E6E835D5020C86DC1EC408312ECC5ACC6CBE4E37B7B747EE58B6ECAF3E4A26FFF17B070FBE7715E52F39B7A5AB2B72DBCA950F956CFBEC775E7F7D0F30C29C69D4DADF0B20C5EA2E8F6F97A428B664FA9E999838935AF062A86A047775C83F4BA9DF5FB7AEBB371E7FE44432F98DEFBCF3CEC027EDFC150CE93CFAE52FDFEED3F5AF8FA4D3DFFAF3BD7B8F5665745F30B84B96B57B10FBBB31745E92244B457CBE84CF279391E0FF3A9FD02EFF4CEF05AA4650AE904EC5A4FF76CB2D5B3CB2FCE09974FAB7FEF4E0C1E427287FD563CF9D77460292F4E81B4343DA531F9C326D99EE04F90A5794AEF61BC4A77CB1FF20CB9392AC3C8354FB83E181FE37AE8409D27CFC8D9024CD467BA2E7366FBE1F0BD9524A241EB8FB1A5F5A5CD6920F85FF01B4F91EC376E2D5DD9E569A3FE5DAB969A3C8D5260CBF7754CF2344FE53B6A527CF9FF9F0F867324024725DD8514B773B92B551B29C975241DF4BCEC040B176FDE50D1BBEC59FBB0F1D7A78DEFE980947A4AEE140E75A69C3F9A3CA54B1508CD8A2497DC98ED3251EE1F0CB53ABD28D9625F17A4ED175AE688FE19EEF7F3C49FFF4A90DD0DDDDAD4FE6CAB783ADDD871CFF8BB0AACE5D98CA9B19270D5AF3ACD7917EF88396C6AF62F27DB71E3DFAC47C2ABF76EDDA070C87FE72FDD68DC1A1BED7E8706ECAD446B452269BF70985A79597AA9E50FD1B2510255BA269C3B87437CFD757CC67BD209E5FBDAA01F8C18D1D5D5B519CDC076AF3AB50363C5DFD39D3CA577F57BEAB8E9D2CDBF613A0414FE67253EFCD971156AD5AE5332CEB0F03E1F81F6CD8B024949818A671E514F5EF77F276A9A48285BA6A8ACFC604A9DA6283F220A06606ACB58EAB47DB74565FD1006D9DBD2B4DC9BE1754E2D771BDF55245AB8ADB330C30FBF745B993B0FE9F95329967E6D113DAD2B9E25F0742BE3B366FDFE27EBFEF30E562839438E24AA553598F655BAE9A11E4696C902C97AEA54B861942992D73A90DEF301559BE688096AE156DB20485C9BE17022BB8B0B0AC32478FE8FD4F372AAFB8FB971B4191A5B391A056484E958F655313BF46F378B02156AF5EBDC9246D4F736BEBF2459D8D7271F438BD991AB7F541577A62321324110932CA70EF9423295ECB325D42718BDF5138876D4BBA77F8ECFF9D64F4561B3B7BBEA769FAFD700BC94065C57F75C1B5B56D8360D99260E4B5776F57DB716EDFC2AA463CE2294EC40BC11DED9DF4A31F0FFC64FDEA1B6EDFBB776F8EE6F958B76E9D86B0F8BAE6097D73DDFADE46BF3F4363A7CFD1817CD29407F4B4A46ABA69DBBE8AE216C98E332E4BF68303A74EFCB0961225EAE870470A4601C8F836D8540B2CD4C67FBCC431226A199B2A8D0C4512EDE99FE5F6C0083B16F5A5B38A155CB1C92B6B89E5A2467FEAFBFF3ED4D6DCF058B158FCEEB163C72669018E1B6FBC315630EC6F871BE2F7AF5BBDC17B0EA5F489E31FF0EBF230EB01E02E298EFDAFA73FE8FB3DACD5BAC49B3A608074D12C8854222BA6DBA3A7507E858D5249E1D4415CA87D82DB7B3D9E34B955F7E25B0C977DAA8D76EE5A46AFFC4FBF33327CE154C4EF7D2497CBBD70F2E4C90C2DE0C16101A05C466EFF9E6034BE31399EC8966D2BA8D8D601CDA2AF1D3B7668E08AF7F5AC5AD59C1C9B18847B4BDC65E1B7B8AAA218604F79A36C85AF06742E972BAF8775A76B45D137F151236DDFB18D8E1E3946E9A9F1895CBAB047D7D4EF1E3E7C78883EC783D9E9AA35EBEFB415E541B8F163C7DF3BF4ECD5AA420182ED9D3D5F42EAFA677878271B805F75B34768AA92B3C41F2B967D33159715B9EC6DF2166F68B7021F0D85E98E3BB6D39183A7019A79E36CFFB9E77D6EED91603078622E7FA9B1101E31A77298898EA5687F6C98CE376081001B40562AC650254A1572594FD932557F9B277B5383EE3F59D4E5DD5B77D091431F913F4876DF3B270EFB5DCA37A1F88FA07891BE20C7653C60CD9A354DC0843DA6237D85E341962B618190B060940275E7FDB7B7DD44A3A9098AC7257AEDD5B3E755BBFCB71E5D7FE2C0810313F4053BAE4884B8F3B364C5EACD48868F21792C1761A1C89CE20A2B57AEF2F09FC6EE7FE3272917994F3946E9D1BBEEBA6BE0E1871FB6E90B785C950A2F5FBEDC2F69DEDF3624F94F485663480A45B8B852CC4CED97CB8587C00DDEF92CFFB3C2CFBD01668445B329EB7F03C95E95CA7F5FC866FF7BA1D3DACF9501F8D8BE7DBBEAF17894975F7ED99C4D26BEC8C7FF03F90C20BD4B7E3AEA0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (136,1,'SAN_(96)',0x89504E470D0A1A0A0000000D4948445200000060000000500806000000E6E270950000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000023294944415478DAED7D097854D795E679EFD5ABBD4AA5AD4ABB4A68032410981D61402C066FB44DDC8E1D3B4ABAD389E3763AFEA633999E6F265F27EE746632CEF7F524EE1EF7641C3B910D5EF06E6C6C76115661904142C8EC0209B4A1AD4AB5BF65CEB955AF28156231C6509389F8AEDFABAA77DEBDF79C7BFEB3DCF39E395555E176FD711C578D87BB636D0136F116752D61DB8B6D23B64DD80E221F94DBC2835B2980CCCC4C3B327D19B6BBB1DF95F855C1CDBAF7979CC700B62D31616C1A1818E8FA9311406565650DAD709EE789E9F3F15C779399F755DCEB282E928DB22C6F0A85423B3A3B3B03FFCF08A0AEAECE81835E4EAB1C3FD22ACFBDC5CCBBD97D85B0EDC4EB195CEDDBB7AF252505307DFED2EFBB32ACCFD96D36D16677C2A8B70F54E0D8441545612DF13CF1B3D7E7877C5736184D66A43141303008BC20C4AF8331742A5E83B4785410B6C361091C6936F00FF7836849071DD211AD766F82F6CBC610A3B3D9AC20CB12E89530A8062B180CFAE835D4479C464DBE971296158F5F8994EEF9E493C1D411C082A50D774C2CA99F525D8D83754073F316703A9D10894470B2E1F8915AB6DF0F4EB3199A0606C060B7434456A06C4209CC9F3F1F5E7EB911CACB0D6CD28934741E191D8529562B0CE0F1D0C808E4E4E40059CE9977DC015BDE590B8A351B0A0B0B196D729F766C93B3B260CFA95370117FCFCDCB837C6C2693097A8EEC0535D30D56BC77729F742CC53E2C1C07DBFAFBD9F599AE3CB81894DC7B36BC7B3665043073E15D0D351545F5132B2BA1AD6D0844B11F56AE5C093E9FEFB2B6149967C1C9FE8F0307C0E47241201481D2926298306102BCFEFA7EF8D6B7EE0487C371199D0799F79BDA5A787ECF1E78F5EC5970BBDD108E4830E38EE970F1E83E68EEF2C0FDF7DF0F7E14B046A39D4FC3E38F57AD82479F7B0E8E21330B0A0A51802E282A2A820BCDDB2194EE864993265D46EBF57AE1EF5070838100FC637333A4A7A743BAD3057DBE486A0960CE927B1AAA27E4D74F9F5683CCCB87C6C68FC08EAB7BCC0A8E35034EC66E34C2595CC9221E490326B88B61F9F2E5F0E1874D08051E764F6D054A92143D62CB40280862EB090621232303248488AA4913E193F7D6416E4925582C16726FC7F4474D0885204314A10B853F8AF459D9D94C03E8AFE7642BD8F34A41AFD78FD158ADD9B089C8A7532814BAC6995700435ECEBD6DC3ABA923803B57AE6AC8B418EA5DCE6CB0599DD0DB7F16D5D50802CF23CECAD894D831DA94D8519264F0A0200AF3F3C1897660705002591A023342148D8D5DAFC897DD8384A261B92B3B0BFACE9D0053460E32C800668409EDDE84DD44CFAE5794382DB5F4B43414BE047C00056E76801D3F93F064FC8D8D11AF97D879F41E4AEC3B5E6F84E108B8B7BD93420258B6EA2F1BDC2E47FDA489132118B4C2B163BB191ED304D02B628D56161D2720C33391499B7A7BC18050835302775101CC9831035E7B6D374C9B9601E8B6E27D82713AD68687A12E33134E5EBC08BBB0117C900D985E53037B3F7E1BBC820DED4739135C729F39D8E6E0F5EF218C74274090CD6683BEB6BD20A517431A0A401BAFD6278D61161A751DDEF39DF3E7D9F57945C5E00D28EE0DA9248095AB1F6D28C8B4D6575654C0A9533E5C35E7C7B501A3C8FC45687C4D0815FFF3F06130A3210DE34A7517154205D2BEF6DA3E78FCF1DA2BDA805FA0C1FD3DDA8ED73B3B990D5070FCD35000DD2DBBA0B5C7CF6C4022F66BC7A9D8EF532B56C0775F7881D9804214860B9D843C84A1DE963F4238BD84D980441A6DBCDF43281D4641FC534B0B059390575004C37E1D0AE0A5D411C0F2071E6E28CAB2D74F9D3205999707BB766D0223E23BA9B486A9B4BAE8C8E351C455E5C5EFA977C2F192E22258B87021DA8E16BCA697612DC18086C30C36F0A8A7D58D47BF24B1D528213C549497C1F64F3E8082D2496C2CD46F221D1D15EC8BF21C1E646418EFEB40639A9B9BCB60A5BFE318585D45AC4F829844FC277A0E6979A2C5CF349F1CD49E6149706F78358504B0F4BE871A9C7663BDDB5D84C6371FCE9C694541A4A141352431431AE3EAD17741F4820AF273A0ACAC0CCE74781083FB200B3D0FCD154DA4A3160C0618BE038B083870E1B5A78F1C0447C1043021F3C95349647EB445719F20853115218E8C7804E146F6F482CE91C3FAD4E9740974D2A5F3D87815B4058ECC6CF00444F73BAF3E9F3A02A8BBFB8186B2422783A08101017A7A5A18A468384A4D3BAF1A1A02130AE6830B17C08A30A0723C14E4E54235C610EBD635C19D7716311B4058ACD901D6FAFAE001745B9B916E0BDA008220E4244C9D520D2D3B3E829E90083508471A8E6BFDD2B91B6165416929AC6D6A02E25A5171318B53D211EAFADBF640D851CC0440CC4EA6AD8B19E6B5D82FD98992B272F0A87AF73B2FA5900016A1175459945B5F51510E172EA067E339818CBC93E16972ABC189104CBC72E60CD81083691593000883C906AC5E3D9DB993C974BE73E7E06F10BBB79C3C09EFA1012F2929612B9982BF53FBB7C1A96189B9B2746D005D5D8D8ECE2BD0FD5C3D6B16FCE2830FE014D2900177A130B3D11DED6BDD0552E604168724D268B66035BAAF7E14C6BF9E3ECDB4A6B4BC12428ACEBD36950450BBECDE17CB0A9C7F4D8198D359004D4D7F644C1410EB133195B4209A8B0136490AEF23B20A450579307BF66C3874E8144EBC1769ADCCCD1C83C7D81084E31A61409793D20EF928BCFDBB1A21CF5DC634876C43721CA0B995C160887D365BCC2C920EE1E791DE2EB03BF3C1886E334F3144027469E3D5BC29FA3DBFC80DA39CA1F8CD17FEF55CCA08A0A6B6D6198AF0775CE9772512CE9482BE198A24CD541599AEB3DCAAC4DC75DE2B8CC23CC209BA66416F3C289A2C1D57BB38D7A2DBB27DFB762965D3D1757575BA818181DA58469432A335B731BD7C237D75C7F60736A277B4A5B9B9B93FE5D3D1C874DA6059194B452FC37BDB5330BD7C23F752714ECD24103C6EF27ABDBB0F1C38104929014CABAD7B7E5271DE936418D31D85F0F9F1039081EEA0C964BE94D3A1630C5B43A120C35F09B179C8E38549E5A550513911DADBFB9101FDCC40266644B57C107DF6FB7C0CD3D1764320244149513EB41FDC03E905A5D16C656656DC7D4CCCEB301C273794A537146603E4087E37701EC48C7CF48232414483ABB9BD89B45A74CC5C58BD11469448C1BE8F3E3A9F3202B8E3CEE50DD32B8B593614BD457445DB61FAF4E9CCD0923B97789C822EA40127FA565717D890091407944E886623DF7AEB007A32E52C284AA6F5A3F7F408064F7B916E434F0FF35A22180F5036F4C4BE2D70C6A3B094B6E6426A74D42678BD50377122FC6EE74E38437BA1B15404B99E17D10D0DA615E177056368E89CDA0A34EC1407BC84FD528C918671407F20C5D2D1B316AF6C985A56503F1999D88F68D9D7D70673E6CC894F4273EDA8D5A0848C1807BC76F62C585100948E2E43014C9D3A15D6ACD905F7DE5BC55672329DFFFC79A8CFCF871D1D1DF061CC0DA580EC0E14C0D15D9F40979F87458B16C56998D034371405B002EFFF9B4D9BA0833C2764762EF64DA9859E965DA0669732D754EB4B6BE486DE8FC1590035E0057483294592E9CA855E9F800248A15CD0FC65F7361466D9EBCBCACBC0E52C82E6CFF682CD6A6591703814666A1F85A0702CC32833B5A600C717084359A91B6A9041EDED9DE0F3F7E144D3190449783DAD725A81D14CA8844C0D202C8441442DA1FB16E41740EBC126701514830E352B8DD2E0B148381C8E46B1E45AAACC0D0D3248215AD2001A4360A80FAC59B92C034B9170723A5A4B89D0B5E43F5B1D99E0F10BA9958E5E78CF830DC559B6FA8AF272B0DB8BA0AD6D374EC88213152FF3C9B5D4B036395F200815A513A07ACA14686EBE808CEA66698CC45C9086E189748C59281CCA231DDEBD0D1C85652C1541FB10C9745A0A9A9848DFE90D46C8CBCD8946E7BD67804FCF67F0C2F3C215692352B4DFB48C2C180CA7583A7AC5038F341466DB582AA2B3338CAA7B1A162F5E3C6E243CADBB9B45C27FC088D65158C86C407151015550C09B6F7E0A0F3E389D6D0F26D379117A9E44DCFFE4F871784FB301C8104A479F3DD808C706C270D75D775D16CD52AB181E86FBD126FDEAE38FE114425001F64BD95032F61409871CC52C959D087B74A46CE82A9C5F0005F1BFB07FB2192ED4388F5F4CAD6CE88A071E460138EAAB264F02AFD700A74E35415555553CAF4213D2CE2917644601BC87468D7241128EC18D0C99356B16FCE10F8D88E3C52C824EA60DA371A15CD041B4055B0706A0B8B89845D435355361FFE6F760583533C31F4DD85DA2D372417722835FDEBD1B3AD1A8920072F05E84E9170EEF04DE55CEEC41322D1D97E25868E5BFD2D9C9AE2F282E816139D5B2A1AB1E6A701884FAACAC0C70A465C1D973A7980D107422C36D86FB526C378AED88455D3DCA2E4A0A07D9190EC84703DBD7E7815078046CB66808A1D90B893293B433265DCA50526A984718B2633FE73B4E435A9693098EB447DBF98A1E23F19DB42804227C893A06394184BF88DF0B466B1A9863A993445AAD3F89C68B471C30643A736048E2532D1DBDBAC1EDCAA8AFAA9A8C8637070E1DDACE60263117144FEDA26741FB012136020E220A40517E2EF39A1A1B4FE0571798414CB6016C2F81EC004102FE46584F7B03156565B06FF307905650CEEC02E5A092FB0C51DE896C07E51C62B439E8D292611EED6C07D551C03CAFF1F69315D408DA3708E36FF497975F08A311536AA5A317DDF340436581ABBE1CBDA01327BC080DDD6C474CC351ED486EDD428C036847EC37ADAD604408A22DC982BCE87EC0BA759F8ED9114BA4F59E3E0DFF8C10F3878307D98E184190960DED69DD0D2DDD3E58B56AD5B8551153D00D7D0AEDC3F75E7C31BE2346E968DA98EF39BC036D809B41E6785511DFB5D96004E1E8E7385ED29A92D2721851C5D44A472F58717FC364771EDA80C9E83958E1F0E1ED8C419AFB96B83F5B86AB91F68437A00DB0A051E370D516E06AACADAD85DFFD6E33FAF5996C2526D3454646601932ED38C611B4271C15808002A882EDEFBF0E1153069496968ED913D6FAA73DE1B96E37BC7BE000DB13265A32C0A42D9D87768298531ECFA26AFD696D0EBAB6B427FC160A9DF6032A264E8620DA80944A47CF5ABCE2A725B9593F752243B3B373D0133AC320086255115A758172A93282D370D91F0C415E4E36B872F320E497C0E31960A961AA4AD32A2212E8E2151251FB0190E1B043EF058C52B35C687304D08BFA848A8658750362B89258E980D376D86DD114B71C0183D9AA1A7051B0CCED55AA38683C268B4DF5E0903F7CE3F7BD299B0D4DFCC388D51DCB88526674E9B552D1B73A439A703F4A2FEFA3841B327B635757D781AFBA6CFD2B1100FAD30654D5450905BA136F757AF966F483F718C4396CC1E32634EE9BF6EFDFDF99B2029833A7AE5AE1A55FF13C3751E0F8021CBEEEBA27CA45B7C8384A6FB276953171633FD20E18ED9C45A9B84B9770970854551D4B16BB804BA052AFD117BB56854105D4732088FB46B21C4F1F59B72E9C42E9E8250D332695D6D306B9D1980B070E6CBEA25BA7A23135A2E11D463A81EDB786A1BCB404E6CD9B075BB71E43D7351A2913E68E4945A33B48658D0ABAB083F81DEDCFD25E6D351AFEDD9FBC8B5175057343C985D5E8E27DA2476342FC1FA1D48756969293C304E8ED38024A7A211BAF96021F5346839E1095B4F4213DB9D5B6F4CCD4CB86CE58B8BC615A45341DDDDE3E8203ED85152B565CB938173D8E5FA13B496E68201486523413945A58B7EE00BAA1F399BBA7B9AD9A4B488559BF9E3F1F9EDFBB976552999745D9D0E9D3E0627B137C96509C9BEC4ED6E0512BCE3D814CCCCBCB67C938AADEEBFEAC11828E62E6868E5798F5038C90A938F767870E312FC891ED847E7F8A096076DDCA8629A505F594D1044887FDFB37B2AAB34457526BF938996C5CA58D3D3D60A61A1EF43848005498F5E28B9BA0BA3A2DBEFAC714F77A3C301799D1393000FB070759FA983656EEC0D860E3DB6B81B365B352152D808BBBAF789E89C71A7475B7B6B7433F1557E1B9569E7EBE6537E8732B98E624D62C69AD0AB5C480B3DA70E1020BE09CB90530ECE3532B1B5A7BD7AA860CB3586FB598702276181ABE083AF4D159512B3DE020471F70600F5BA8D1871ED4D839552A38B3B358E61414117CFE61962E86D84318DA18A3E7C0A2578D9EDCD0348B19FCA3C3A037DBD8FDA820985DC7AEB9742DA38B19684A4758AD96685655451755D0237C89CC1AA85162D61F192825E608A9B1FE757A230C86D5D4CA86D6DDF75043694E7AFD14B401767B21ECDAF511DBD5D2567F22AE1A50ADD310E3CFA0AA1BA80A9A13A0303F97ED666DDB7614F17F38C624692C9693E650A92332ED1C0573A80D1CC24939065F3B36BC038EFC52B64235BB93680344B41559389E8EA12118C5F13A9D2EC8CDCD61FD8C74B48190551C2F694CD420BA471A1EAD78CFB658797AA17B02F40795D41280569C4BFB016D6D032C1541855914CA27A69429BB588BDF51E2EBB7478E808810444111156611A47CF8E16178F0C1990C6B9353C35EC4FD6766CE8457D076BC77FE3C4BDED1E829FA1E38DE0C47BABDF17474F24E5C151E9F449BF483975E82E33867DA11CB4201B204E0913D10B447D3E1C9B464039EC0E0721485F0DF5A5BD9B8F28B8A6124D5D2D1549C5B9CEDA8A7B400CFA74163E37A16E66BB598F1025B5A51A8155988BDADB81A8D688C6915E72326CF9D3B17D6AF6FC2485A8DDB80443A09EF55623030661C477B40B91C41D00155E36DDFF01E98337359BE5E8B7613FB35218D1BB5A315053782E375A10744E968F26A7A8E539576095BDDC9DE139DE7218FE811A54F878759BA624259250CC97CEAA5A3ED7AAEDE828C1504330C0FF5B0AA6756409B80D95A8BDB02FC475B96B4B20CC800416781807F08789D107D582EF6901CFD83383DC4B19DB4C76410594A5967B6B3FE045E88D3C4FBA45F944BD84E3680655C91C17A0C80159D0144D14017313A45B3218A120F0904747169C7CC82821CF1454ADE7FA3A12325048098CB5136B4C495FE4D37BA86C1A01E0E1FDE194F0BC75770ACD9E87121C4DB6308457A6402ED1990119E32650A6CD9D28AEE2177198DA601C5A8013E5CA5643F280EE0510326A007B5BF7123E8ECD94C2BC6D30003F65980ABF7387A5EA4014E57B422829EAA1C421BC039F2994734DE78B3501BCDC8A7C3385ED2808A499361704429FBF8FD574EAB5F9281374B00C2FCE577BF5CE2CCFC86CBE5C438A00FE8E1F39988D75A8947629B8EC6CC88935D77E204E81D0E561D9D9D99C1EAF51B1B3F8765CBAAD94493E9A82CE507D5D5F07E5B1B6C4146525D0FA5A3279494C070C7513879D13FA62C25B195A1001EADAD859FBFFD36AB8E265A8A35A83877E0C46710B1E5B2B822B1325AABAA7808B5939E657811C74B9A5A5E31118E9E393BEBF0DE9D4721FA1CB172A382F8D20240E6D3B30BFA990BEAD6BA73B35753A1AC28DAE0D0A17DF11595B81B45475A8D56849B0B68E8F4780DCFEB70353BD876E2BE7D9FA337128C47A489B40AB674F2827085F72343484814F952BCF1E9EE1DE070E6315819B393165BC53AA4CDA03ED176D063EF196880335183A89FC1AE5360C92E60F62071E56BF436D220A43983E3254F8934E0E081835FEB387DB209A2AF3908DD1601C4984FF0682BAC98FC5886DDF6134596F591709843F4E435AC8F2555E209198E1B9BD041C888A0011471C26A2C2BC3C5933151724A17715A9F221A0A446A09AF0F90B72A8A3AA48D5A149EE745841533E27D5856A4C0D84C0F97986853305EA0DBE23819E2D3B93A5EC2897DE259EE0895955751E8A347DB5A9E088C8E1EC15F2ED226DB8D664D6F9606D00249C3960FD1177064925020FAF6132E39F796C091EBE93CCEBDE29C9CA269A5A57F757E7070EB81F6F61DB1DF689771CCE4D36C36EB9CAAAA474C0643E1D1D3A7D79CE8EC3C191BC77863E1C749F371094735A11F4ABE5118D183ED02A587629FA5DB06419A118E319B98EEC2961D3BD7254D50499AD8B504A368744BA64E9D5F999FFF8363E7CFFF665B4BCBBEA46BD5A4FB32662F9D316341595EDE93C33EDFCE0D4D4D0D5E9F2F98C05CF50A8256938495280042AFE118EC10E3E97EF297D933B8696E684C133421900658639FF92B3079BCC9C378DAF19DC58BBFE1B4DB1F3FD0D1F1F79B5B5A8E5E23673DE6FBF2DCDCB4BB67CFFE07A328567DDED5F5CC07FBF61DBC8AE01357FC7802F063A3A7C87DD8223763B3E6A66EC824C0913D2600639200AEC4706E3CE69B4551F8E19225FFD9A4D7CFD972ECD8133B8F1FBF70354125DD6FCCF7DF59B264697176F633A3A1D0A6757BF7FEAAA3B7D77725A125435F02FCF8632DA2DE24C6DD6C017031861B63DB8E2618E7FD40D7B37ACBB2B3CD7F3D73E67368548DAFB7B43C79A8B373E47A56FCD5ECCBBCB232C73D3535FFA41784196787867EFCFCE6CDBBAF632C6A6CAB326449779688022CC365B665B0B7B725E504902404434C10FA7160E8AA1AF1B549939C8B4B4AD6488AF2F9B34D4D3FEA1E1A8A5C63C57F11C1C033F7DEBB22C36AFD9788A27CBCFEC8919F6E6F6F1FBDD2F506BBDDA517C4D5A8DC5FC7A94DA3A732698AD85A71566B38817B75A0ABAB2B650490240431D684EBF072D8DF7F9D376F62695ADA9BE8D7BDF2FD8D1B7FF96556FCD56CCC53F3E7A74FCBCF7F1607BB30100AFDED0FDF7F7FAB7681D56AB52B9CF017BCC03F8A0CA7BD6D3ECAF428F3212A8058E315FCCF0EFC658D6C16DF1A3871C273DB059020042EC67CFE0A2EE098F317972CA9B308C22B2145F94FDFDABA75EDF532F32AD771D7BAAEE1C107E9756AFF3B24CB9BFE71F7EEADC3C1F08348751F32D6A8313961D5C395BE8B0A850FF21CBF1E3FACE975A67DAC5EC7634C5F79594A8220AEFAF7F6A245DFE204E1970AC73DF2D0D6AD8D3758C5A05EC758C65CCB713916873DF42CBA33DF41483224313489C157D282E8F7EC3B3EFE1DBAAADC3A5E10D69C3FD9BEE7B609E07AFED62F58F00C8EF89B9C2CDF73DF9E3D9FDFCABE4DE9E96E41E50EE1E96155566A71A908575DF5FC65ABFE324D5062855CF4B08820EAE9D9E2D3F8C35A10D5355DEDEDC7BF720164E6E64E9665EE715015270E6BEDF0C59E1DE3F9CC6F5657EB2D56EB8B38887241A75B75D7EEDD7DB792F9A411D6CCCC720CA58E2D5E6084BDC7E55118E6E560289836DEAABF962610D2C9E108456694B9605581F460B7A0D3838E1E2AE719CD7E245D2346F8374E9E3CDC77D304E07496E4C8BAC8A3AAAC3EAE827A078CCDFF77E17F5E55405E3B3A38C8DCB7C6E9D31D0890EF62EF433693E9B1797BF6046E35F3ABABAB9D11597EC46677FC7A4EDD247863CB473045AF87A317786FC41F344422B2FE8A5093B4EA5596028FB0DC17319AA12E13921AA351C168B1B3FD04458AB4067CDEF681EEAEAF7F2901E4E4E45824DEB01AFB7A1C17F852EC5CD01270891B2F6AC246371E5B9D3CFFD1CF9D590FB904E1835D6D6D3FFEE96D786B2D55EF6564647C3D100C3E88CBF32FAA67D6729EC17EC833F5C0FAC01130349B15952A82BC7EBBAC28DC1535814FD004CA99C46A5055356A0F5464BC881A201AA8460ABA4301FF195992E6A3C09A067BCFCFFDC202A0DC7F7641E972443A5AE90F20BD655CA65FB68B75E95C2B5940556DC441AF31E8B8B7070707476EB5062C5EBCD8E2F178AAFDC1E0536185BB3F23332BED1B8FAC8463A7DAE064F30118A91A86F35BEC119DA484BCA3A356B80E4DD084441A21A346E80C06D0E9F432A7CA1783A170BAAAC87A35FA0ACDFD833D5D73AE5B0079C56533D0E17D1C39F728B2D195CCD0ABACF8CBCFE1B2EF8378588FC73521BFF7633C466E952062AF54B089A2B878C4E7FF0F05455973CB2A72C534CB04F0597CB0F1F56D7067A5028D5D1088F485E4502864BD7EEF88C7D5CF8F48B26C9424D9C0CA6288F9D1F29C4303DD9D33AE2A80DC92496E81531F4332841875E2388CBBAE159F28986BFCEE4795DEEAF78CACBAD5DA505656A64F4F4F774A92F4F0902FF03D774959B92D3B8B0B792E424D8903DE1CDC05CAA776C8B682B7B3D7AB4718318CAB09D12D0610059D1F033905996F55628C57B517D1E2998EE37E5F595AFCFDCB04503C756ABA1252FE124DF9E348B280C04C62AF8A092199CC1E88D051D1546CD3FABA987F4DC129AA4ED07D8AE6AA18CD81637478D0783BDC6112C4D4A953CD7ABDBE2214893C1194B9D506A329FBA1AFAD807317CE43E3F666A85DE0813F76F28A70C63832EAF5A4E1F8F9C4958FF388184C469F24AB69C8702EFEC6DD18F3D1C7FD5C14F8BFB51A75BB8F1C39126602406F403FAAE8EE45D5F826F2E25EFC4ECF36B643416654645546EBC2452BDBA833B2F482C036D3AFCA5CB81CFB937FD78BFA515E27485C69D0F1572556F8F78F7CE1993553D21A1B1BC3B7EB95F20F3FFCB070FAF4695AB9F38392FA74BACBB1B8B0B0C24059C5E9B327C1BACD6F402927C1393912B9705CF1FBBCA3E8B6F2AAD56A1D51049D0D992D680CD7563E4E7858D471FFECCE75FD16E7E68B078274CCCC2D7C466F34DD251A8C7359D9065AF16060345EC6A145F3974A3BA2A51BE452E930D050A3A1E5F5DB01FCA7E3F9B0C16CF657E4AA8ED6331170DE67824773EF857FF9F757A5896513E8B982233881819BF556921BF594D2D2D232F074D56858792A3B27AF6A611DF023C33618B910826325C760A8D104824FEF45268BE8541813713E564219D1F1EA5B0EA3F81FF15E7DC9EF1862024877E6FD1AB1F7694E100E99CC160B9E97CB043BE1E89B45B8789DA5CAFC5AC238623E3D0EA45E058AC6B501382C8BD93622D1AB6CEA3CC203FE74D8DC6280F94B96C3E432373CFBDF7FA1949714BF8417EE423CDE72E8D0A1F3701BFF089666CC9861C2C5E05639E1DB114EF758564E66DE9CE9B32082A8D07CF830F4F4F44690E16222CEE351D571EA6746117E383A3C7CB0A3A363DC8DFBA806380B7E0D023CCD2C39CFCBB8AA5B44515FA9A8AA99BDA381A00864100491152791006EC4F3319B4C1ED5C519BF56CAEBD7ED96A1745E2EFCE8E1BF87DFFEBE01ECD9F9D0FED9A7B2DF3B7230333DED65F44AB68F8E8E9E249C8414F823F7BBB6B6D61C0C0667A2CBFA77065BC6F2D2F272AB6FD40B274E9E8AE02C458DF9BCA2F4EA38E5E77693F84A5353D3E8D5A09425CA3273F29F5339EE077C5400CCB20B021F11F5681A14D5410FD4C5B7996EC0F341A3E6B75ACC4A20A258D5A58370776832B49E9061E1B22C0CD58DF0C1DB47C1E7F59CC9CC70BC250AC2C7388923A8AE4337E3956037FB6FE6CC9964F8D230345B29A9BAA7239C50132BBCD3239F033A90DF10E5D04F507BFBAF67F170555555FAFE11CF4B88348F69CC8F269C7816520BBC2EC0B37219D9F645573C0A3462B1DB7C914A5FDAF7728DDCFFD9CCC1A2C57361FEEC5AD8B6751B80380207F69D18B61A0D9F582DA63791F1076C365B1F1AA9909A0A59C2ABC092DBED36646767E7490A7C338CB0848BF3A2C849FF808142734B4B8BFF7AC7CF524685A5A5AB8321E9DF306E7669CC67C28885D974D4F3BC27222B7A49968C97335D49104CB49AC762B38DB87374D633BD08857346E051E77DF0D9E7DDE070A5A3501538B8F7705889849A6C66C35AA4DD895A7616071EB85D9ECF8DEE81E302466435E56380D6979999E9FDA25ACB450D2BA79B327B76CE50FFD04F90C9DFC62F0C7C02F3B94BD0A408BCEA09058236195DADF17C7D93C9ECD59B2DBAD0EC3ED313060BFC6E9B1EEA96CE823C571E1C6D3D09A74E77A8A3DEE1E376B3E175EC7C532412F91C57922715E1E68B08E24B1766915ACD9B37CFE8F1F86B3CA1D02F319058C836E262CCE735688AA658C3AA24F9FD7E9F43B301683483690E7B646E856ADBD12E807DB60C7F33FD3BF0C6FB1BD8EB5D446E10F6ED69EFB71874EB459E7B17FB6D0E87C31753C5C8DE36E12543150521DDDDDDF68B8323ABFC92FC3345E5DC5C923668DA81519D2F18F429468359566D68989674738F0D64C19BFB2DB0E26E3BA499CB61D3A66370716020A8E3E49D661DBF168DC95E9D4ED775F0E0C1402AE3FC6D1340626E043D119727243D1D8EA8DFC5656FBB0445978481019557E5799BAA0BC3ACFB27C1F2C265F0ECBFBD002B57E4406BCB8872EE4C7F9B4DAF5B8B976F459C3F818C27B74C863FFF5D7B474C33328260988CCBF56792C22D4741E8C6B8AB3CE75539DE366962258C8664985AE186F51B3682A0C8170C3AE55D1DA81FA0C6B4205E0DFEFF0E3737BC278C8210E7CC99931108CBCB8232FC1799E3276BDAA0E3C0ABA000E81DFE468311DADB8FFA7839B8559023AF21D4ECC7D6BD77EFDEE09FE1E64B6ECA6B461A61A43020C3B7C30AFF5D849E2CB4035E0538AA079544900EE995F02BB4E3E8F3F9CE1C3B76CCFF67B8B949024836D28140A02A04E28F70F5CFA317D81A39F94D1E948F30986AC3CB466E6712ED4F5A008946DA6C36E7A1FB598E4CA747744E3A1C8E9E548F62FF24049098A05ABC7831FB5FD022E3237F869B2FFEF77F01FA72E8A45FF86ABC0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (137,1,'Satellite_(128)',0x89504E470D0A1A0A0000000D49484452000000800000004E0806000000E8DC1E0F0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000275B4944415478DAED7D09781DD579F699B98B74375DEDB224AFF2BE800DF68FB1D90C84D550C26668434820101A684B1A4A20CD466880FE2D0D4F5BF2A4D03481A424F9A19036ECE0F08442C00BBB31C696BC4BB2F6FDEE7766FEF73D336734BA969780492447A3E7E8CC76E7CE9CF7FDD673E65CCDB22C71B42D9AA62D45B5026509D68F0904027A3018CC555454F42C5EBC789BCFE7DB65184673369BDD9B48249A5F79E59576B48339169F65F1E2B323E974AEDEB2F45A53B36AAD7CBE3E9FB7660442A1D9A9A181B8B08C72CB324A4CCB085B66BEC834F37ED3CCE9E9F4A4FF48245EBBEE906D75341060CD638FF9B467F61EF3E843B79C585454F4E55C2E3717C02B328CA8410471F2C9278B68342AF781042CA94C26F3237CEE1F40863D9FC43D2E5BB6269ECB656A0C43ABB1F47CB53044B51046A5695A9500AFC2E70FD406FC45758383DDC59669C64C2B1F06B04558D72D610A8913398A7BE67D17158744269D94D7B68465FFC7719C2F743D245A5B820F59D6BA6BC61D01EAEB4F3EDFE7D3CED334BDC4B2B458ACA4B42A9918D075DD17D2752D1408864290E022239FF3A3C6562420F464A079CF467F2A9570811E0D7C559F78E289A2ADAD4D84422111894444381C162000899043F9CF743A7DCFBA75EB1A0FF79E8F5FFEA74B45CEBA1C0054008272CD32CB4C146C9796945555F575ED2B462BFB70FF4263D174A7E6FD6812BC6071B148E3FE2DC31020840452028A623AC072BF69E405C822C137F259014D86637961BAE75BB86EB5E8E9F19D6F59AF3F3B6E08505777CA05C0F2873E3D5F036085CF1710C1A2B07C28125CF7F9C1FA089A4BB3598EED69D3278B5C7AA7D8B0E1B707047DB47D679E79A6AC21ED62DFBE7D50B38B05CC83D4060E11FA4182D3D6AF5FFF9E7588063AF9B41BAF2F0E87EEB74C23687A406309068B451E20653329006488BC9113468EA0E551B09ECFC9751E2B29AD1083FD3DF63D6AD6F0FD3B959710FE405012C09678C32688354C80FEDE8A8154AAB7CAB2DECF8E7902D4D7AF3C37142EFAB110E9499072A82F3F1A2E240136C16E1D6408048A508AD16079B90DA9170B17D68974B24500A4834AFB6844B8E9A69B84DFEF17F7DD779F686E6E16FDFDFDE2B2CB2E13A9544A1180F5AEDEDEDEB99B376FCEB3FD0B89806B692B567EE17B8695BF598738CB6BEBBAA094635B02178E9588C1BEEE51A5D9DD9664D6A516482787844140490C4AB5248A23E196ADE2D94614904C3A21C1F602CFDAE78B88CECEE84342ACFFC2E1F8357F3002CC9C79F66A4DCFFF87610CD6D8C0E3C1FC41110816093CAD54934AEAA901EC87F78B783C24E6CC2E15FD7D9D62C78E1D8704BF70DFF2E5CBC525975C22DE7AEB2DF1E0830F8A3D7BF688AEAE2E71CE39E74873400228122493C92B70ECBF77EDDA358204A79F7E53B4AFBFEFE9F2EA49A7520DE7733948775698B99C2DD928D192729118EA87F4275D808407284BD96C6C474BCA40944E3E364EE17E61AF5BF63A6154DB148E743A0372C03350FB5953513AE78442DA5DE1A8BE1B9AA5C2C89BF520592DFC896A149A259856230C67316418C58DBF770268DAC2606565ECA54020B7D2111BEC23ABFD2040111A3323B88F22140A97402A930E0174316D1AC09F532125B5A7A7474AF1E148BF22C2A2458BC469A79D266DFF134F3C21D6AE5D2B76EFDE2D35C075D75D27BABBBB5D33C082635BB0BD120E48BAB5B595EAD46A68B8F8F85849F10B3E5D2BA7741A6879D6A661DAD22BB72D1189C5457F4F37D64D29BD00424ABF2181B3644D4D6090ECCE3DFA037E53D3AC1C04DCD0742B0FBD62E93E78421AC8AF5938CD44C32016B04C1FAE8223794437015F2A39A8794D8FEB107A89E7EC131E026A625AF28813405BB3C657B7AEE3C79AC89F0B4F87DA91FA512F2E0EFB786B462E67E0AC309E38A003F868AC0C8D9E920DA84915AA4B6D40E92F2DAB1289C4A0948AD2929CA8AF1112F45FFEF209B16AD5E952626DA7E7E004A09377ECB1C78AC993270B440962EFDEBDE2D1471F95E043BA25E8B7DE7AABD8BA75AB0B3E0B344C1EC79620726845289984B9C8E9FA8ABF0080FFCC4B431567FC7E2D897BCDFAFDBA81F53CEEDF82138BFB17D05E4578EEA2402A31C4D6C61ECB0F9DEBC30381B9560040F85174054C4959A9E80369EC6DD3F501A45B405835CB71096CCCA4B9417B65B369475B18C3C09BE648DFA0C03FA1DF91C934741C5102CC9EFF273FCA66BAAF02BF033E09224B4014438D5332C87C82ABA1F8E1C91687A2B8F98C7C4AB95FB34D41119CBFA2E2B0482513F2DC48C81433EAB312C8B56B5F14EFBDB7499C70C20962F5EAD5A2A3A3434A60A1BA6761A8575E5E2E1DBC6278D9047F686848BCF0C20BD27C107C46030B172E10577FF6B3E2372FFFEF08027CF0C107BCF6B7F0F987D1D07DF1783C65EA4B97A3DDFF1B8D5D41D034A9AC78FF42DA7EDBC3B7418B9796E1FBFA6D702400865C1FF6F28741D31DF2D3B9335D9060FBF386EBFDDB0EA30D1E9D3F104C241309F7BAAE06283031A369004D2F42FB4EFFE5112140ED9453BF2BCCC42D9A6E16CB0620007818DA2B7AF30459731A870087C231097606DEB10DBC2E816603D276521B643369798D7028284E5B592B62B1B004F19E7BEE02E85D529AEFB9E71E5155452D91900D83385EC6F92C7CAEC1C14101474E02CFCF72FDFDF7DF9792AFA43F1A8D883BBFF36DF1EC732FCAEB28F06966480080B271D2A449D7E2313BCA2BCF38B9BCAAF6673EBFAFC895249A01FA0179E5D9E7E10FE441701DFE4C50F47677CA7384F0D8FF025058E2E565A2AFBBCB36E49A17136B9462DBFAA262460329E7BA1E0D607A1CCE03688060B046F474876EFF58049831E7FC6F58C6E0D7B3D98162E5C829E926F8867C70CD06D7D94FA78E4E93945409BAADEE19DB862371F94032EC73AE75C62933C4AC860A092A25E48A2BAE909F9D3A75AA38F5D453C5CD37DF2C25BCA4A44436C2C0C080049A3E026D3A49C0CF7576764A878FEA9F3509C02FFAEA57BF22366E7C473A820A7CDE373D6D9E87EB1895959517CE9CBBE6A440307C1B1EC7AFAB084DB75CE9361DC9535E7E14F733D0D763833242DAADFDE27C104A5E2F8B67B7A5DD9052AE8A65166E9B328FC0E8219D4C7A54BF75480DA0B480A64D06C98B577D2402D4D49D74ADB012F71946A24449AF926EAA6F4A2EA591E0729DC74250F7F4E233B05772BFFC9CED0086C25190232898C8B13F631F87DD155FBFF5D3823695A0F09AB7DFF615B1676F9B9832658AD402F3E6CD13679C718658B06081947402D8D7D727553DC9C0759A09AAFA96961619F6B1CC9B3B4B5C72F185E27F5FDD80FDAD2A2328CB71C71D27B501CD044B4DDD89AF9597CF5901A034A9860D472543454B200BD46B241695F79B1C1A180661540D60AF97C24CF57675BA193DAFA4DB793EDA7ECBBD0E9722268E100A0A57FACD11D9C0111A6084F4DB244CA7A64059A54B7F27024C69F8D4153E2DF36032D15EA239E0125482C5E404E375DB1EEBAE6AF7C1692B2E8E3AF1ACE56A03F9793038128E8BBC8C794D47EA490ABF24422C1612577C7ABEED653BDEF6EE9D5BC53FDDF77D515B5B2BEAEAEA04D4B3A8AEAE965A00365AFA099478AA6482480250BADBDBDB65D22707029E7BCEE9681C5DBCF6FA1B68C4F408F0CF3AEB2C316BD62C09FCF6EDDB45EF409528AF9A8B7BB20AE26E733F874B6980682CE648BFB59F062804C50F9253AA7399B4EB9C99E6281A809F71B2846C8BE25031C2CC41F7FADE24D4A134009418846DC6DB42AC5F765804A8AE5D79A665261EC9667B6A6C706DC955D20F0F5F9A2E093E49E190A3A82822BD764AA59714FC4C20582C133A493A7AC2734DE7F37017C5606FBFF8E2752B5CF055DDD6B255BCF9F666681321C1A7A3A7C057F69F6092000CF186D05095E551316BE63448AD101BDFD8245AF7B54B8DA280E7F75F7CF1C5E2820B2E909AA2B171BB58FBEB6691CD1749E9331C20AC038454AAE1E3159562A8BFD7766EBDA1D801344019CEEFEE6CB7AF250AD4B8BBCFF35DA8FD7E5B7832A96441D8777826C0E72B87F358FE80656DB8F1A004D0B46581B24AFD37C21A5C613BD6746F1D4F57D8EB918813ABCB00C53E461738182CB243944CCEEEC070627BE13889B4F7C9C4006E4EBACFCEE7EDE30875C5D060122595F8FCD5C7842291803E920479440608967309D10D929826FD0C3F6A5D364E51D087EF8709C17A2C1A92BEC7D6A63D62EBB65D205CCA059E35CB8C1933C4B5D75E2B350ACD08976FDFF198E8E9CD781AD6DA0F486661E41E0510D6CB2ACA444F6797ADCED5E7E4BAF0ACDBDB7C6E3AA7C9C490E3D8D9C50654A80DDB18481035790D1FC067FEC092D91FCD218970D685F3BD6C4BE7B8253CF7209CE7D0AEB1ACF53F39A406D08227ADACAAF1DD64994397E1A34165D3959D0E31C4C335F252FABDBE40489A849423FDDE633417B168A9944C4BF348BE320DA8534309B173D396D4492B4A77575717CF331D3527932F9E1209C3B10CFAF15DBAAC191B0F803CFDFD43A2AF1F26A07F50824E93A00057EB74F42EBCF042E94310786F59BDFA3B3289F307EED7367DBA65426050202A3A9A4BB3F1C533E46C8780892261AB01775DD69E6D91C35A12A51B42D281BA179AF9BBD9ECEB7B0F4A80DA8655B79AB9C13B84950BBBB65BF73BF96876D6B0B3C39052EB8DE3E9D4998E49B0F7FB5DAF3E140ACBCFA6A9761DB0D5316A0A367ACBCEDD62DF8EA69658B4F71BF3E7578661E7BF4FCF5E813E1A1158EC50CCAE0B8B17789A8D254B96C85E41FA0E341BE98C25DA3B53AED3BA6143A3342129F80819D8E720CC596F4F77337C9E9C545B1AFD704B93BD53327549CFDA725498A5C54B2B82FD7D5D861441A67068D32C8B71038FEB962545D3AE99DD63762C14D6E808239CD4BCE6C5ABFEF93DA611C50777FFCCEF37734E3A5F7355B0BDE8C3DD489200F016450BCEDB0CD27F80BA19668E6ADB18950075334EFB9C2632F767D27D512F78D24EEB76E70CC1CB80846C2CCB51FD54B56178FB2934980CFF3C1EBD8650AF04529F9579F3BC7BCCF5FA59702BCD4DBB45553C2FEAEBF3033B76343E0527EDE7A79C72CA0FA0B227D391636847100F9704EAF9E81FCC993347A683554690C0B36EEBCC8857D7358B349394D2E152765348BB1F2FAB1089C17E9971131E353E6C7FAD11B6D6E7B3893E30D03722FFAFCE1DF5B382CE635C0CC07F106EFFBF55E06FD804181A88E2949E57E3F1BE77876DA70DB89D5E17BA0757C6E2B43120AFBE05A511115207C2DB143B8B4610A07ADAAAF38D4CEF43B96C5F95ABB615804EBC1E82C347FB23B3778CDF9D120C86652C9F638F9D471BF0F341102688CFA5330C01FD1E320D93ABB7AB5BEC787F6B6E5275F6FDB3CF5E341B8D1825D88D8D8D5BE1E43523CE3F93C0D36BA793C6108FEB2C4CDA787BFC98EB27E03178E32C88E365D8E8055DAEA36CDB9E146D5D74AA34B7D369D8D60BE9008670AD4110C01B7215F6C20D3B60163CF410CCCE90C7FB2F74E4BC7E8572CC6CA1CDB969DD511C4279439AD8D99815F192DE9F44A343DB2808EAD1D9A66EFA88DA5F23BC96813A81F35A717C27A59F594DA6B55D02544F3D75453EDBFF9891EBAD77BD758F7432D463B8C2583DEF866BC3E11CBD79FA003C663B219A63DB19E6C5E48365A0F235D7D35704B149D6B3AF5BB4EDDABB2F1A1DB8231AEDDF0EC7680142B16B20A9C711688471F94824E2A7E3E655EBA6D3C02A0BC8EB117CE60FBC4565075DE09954F205C5EEF652A8F9BC1D9EA9DCB9A9C22A3BF48AC54AA454D2F154DDB7B2D1E56786B36F2A0CE3128DC6445F6FB7ED9CA91071446CEEE91974B449945DC703BDFB699342F56F5911D1B92F37346952EB9720DC6982EC491A08EF3A8F9936435258A76AE980EDEFDDB3670F25C6203BB478E5892F9A66C799A691D5F850852069D2A12BB6BB289D385EED27218A393449865176368FDAC08FC6A5A3476250E5CB5CB92BF9C3E4E1F5B6BEB34524FA7B5E2B2FEFFCFB40209770D41789A923D6BF70FAF4E997E1E66B98D8514E1C4B329994211E3B840828C34D4A3FD56F6969A96BDB9907A8A8AC126968092A471220671489AD3B4DDC9B708190EDE68EC1B0B7D9355D0C677660A0576E6B9EC4CC88367706ADD01287C31139B247C6EFEABA9637855B60124CBB0E04E887A446E408864D84E9269C1283616ACB67ABABDBBE851332B6836893004261158C81A01A2007D89D9D421B2551D2ECDE56630570E6F29FA0FEAC431934A00090A8FDEC8F87FA8B84E4C815A11976FAD18EFEA0D6FD32D44B6753F20B879338765E807DFB1999CFF7B95EBED727C824B3A2B9712F54D0D0BF5755753EEAF4B77B9D17E9C000C452A8EF6B01F47970CA7415C251F593DC656565320FA06AB5CE44CE962D5B246C37DFF23762FD6F7F2B1AB77D280C7DBAE84F163BE956D31D91A38A1A80C1BAACBC4A7475EE733B61BCB1B9D82F2CB4412E2B2D173D3D9D1EE9F64AEFC8FC81DA17894441E8413B753E8ADD77AF8367E96A83160B266FACA8E8F95526934981F0267B201D12EC370886C700BA89B6634ADBD8BC79B3E11DDB80335784F01093716A19EA52ECF2D416EB72D4650C719D7DACE3D82E41F1AB2F22617C019FACA9869938912442F1432BE87E9FCC0A5252934369D1B9B735515434705779F9D0EB059EACE6DC20BB5629A35457D9AAAAAAD5B0EBFFD79BB5A394AB44902200350081FFF0C30F655FFD37EFF83BE9D4F5F6F6881FFCDB8BF088C276F7AADB73681719C9A8EE57DA7D682F363CFB26547B16DA7D25C1CA5BA740E4735959AC82E4CCFEF65C992F436AA544626878889733AE401D570928D32A161D2DC6404D4DDB729F2FCF2E6A4A7361AC3A5A5867796BEFE8A64324826467A75E53530317003A0A1A14A004A06AFCA8FDA954712C97D3CA4CB3A814E48D9BA6AFC43433B302016D19CC461D4A453C5E160D0643DA10404F26332859A8E862B17C79053CFAB601387ABB60E79BA0D2DFC1F5DFA69A22F88E7A4B02D021809D416D40133CC7FE79D569C3542DBB7C99C099366D9A6C34A67B5527D0833F7A5844709CFB5330198FFC629DD8BDA747D8A3B77417584D17C30EA0A3DE2B2B2789CE8E9691523BAA4D1EB6D765E595A2A7AB7D7F892FF0FEDDEBE0AF18E655A68273D9113869C346C33523B95C09EC7FF79365657B60FF454F676767E60080EFCF8003007D580480F405A08A03D82E820A26197C50573E8EB737396C19AADBA93500E8DA709E03A0964232CF803D9F595F5F3FB5A1A161123EA7D186D37B67CD42670F0FD403E0B6617B13CA2BF8BEF5908E3ED4696C1B700CFF1204B8471180BD75768FE3E8CB17AEBF419C77C185B6AA477963FD36F14FFFF0F8A8E7AAC1159ACC710819D25AEE7EBB689EDA2691E66A13F6CC45A26127AB67395AC572FC09D313929BFBA97F3566E0A0EA1FEB7DDD11F85283375655F53D8676E96F6A6A323EEEFB0C8722808C29E18DFB6143FC50ED7E1081E0135C05BC867D12744502EE071158FBD43624580368119C7B0AC87002D4F74C106326EA72AA734506555382519AB1BE11E555EC7F1104A056D802FBAF9300ECE1637DA0A502E1DFBFFCE04109103B9B98B47AE0FE9FE3BA292757A2CB94A9E98CA963C9E7ED615BACB359268E0C59673239E9B41EA9450E20D1752703EA0C28512473D24936B9EC412784A9AF3B3B505DBDEFC440C06C411897549EFC274D00490278E33A80A213A6117C7ADA041FE640261D1C42682089B4E7DCE6712F491441A819B0F8015E256CF72AD8F1C550E57311EBCF06712274F09466508400012DD48D70646066CC493C87BD7C3C76B0E596AF7E4D2C397EA9AB05B66DD92C766D6F744708B15685FE09CF7306840A6FFA99DBBDBDEC664E4A422882A8428228B2F018D7BD6422D17499F760092036E7083992D0C76370252CBE034277056DA4053C593D7781DD7FAAB6B6FD4B68B76EAAFF23F136D3A1FB0286492037972E5D2AD70180AC950482082403B580E6A46B35472B680056EDD794F6A0264183FB41289A9620F6D1B7A805194E022916019C85383C87FBBD44202074F44800A687693A0EB6CC9D375FDCFECD3B5C30190EFEF6376B6588E8059FFE0409C06BB3D69D310D5EA7B3B0141EE736DB139FA577CED83B8575FA31721BB7D3CB840C9EA90F25A39C5E9A5AC709F6A96D12004DE687ACD0CF1C320C7F1B74D45BD168FE7D5C6BC01BCA7DA2042820C27EBB0FF6110F692461481645146A128476F41158025CA815702C4007130DE4070926830C7CDD6B09F62DC1BE19BC0E0946023849A203DDAF139EEAE29B77DE256AEBEA9D51BB96D8F2DEDBA21F5181029F9A80612347151D0C7005B21CBD6327A57AF01D5D68C3248146DDCF9C3BF677E1BC84F2E09CA6930E80CCBE7198EFB0F3A608E0737220BA2280739C92DE8D7A17337968A3766F22E7F74680DFF1E54CED10A4900B88A1F7F7F7D321F4D1BC20CC2319A8182411480827EAA04A0CE2F854988AFF837BA61AACA246E0E81E4FCCEB78F7DA88F515279D2C2EBDF2CFA41F402DD007F01B3FD8B41F01D49070BB134B774D04230DA69455FE81A9E86DDBB6D107F91026E9A7F80E462D79D9B9A269CA31339C34ACDAC79A529BC73D70DDA4B6513E92029F8BDA76BC77328EC4DA87CFB4739D43D48FD4CBAC7FB017433C2471EB850B17EAB0F51AD43DFD0D1F9D4ED4E403C91070B44310CEE3A538FFBB2A1270D4EEA8E0B36643DFFAB7DF92397AC331055BDF7F477A7D8A002C0496F90435C288F90CAF9F409230BFC0E1E3CC35400D1B0891BF8DEFE864BEDD91D6AC029A790C0770AECBE2800F8E194A0B68B83F650274AFD32CD5867D7E0AF5009E77105154E6CD37DF3C22D23FA6DE0D1C85103ABC7E573B000092817E4300A6A31CE55D6C07210DB25FC00BF8682438FD53678BA5CB57B8BE407747BBE843CCAE00F6027DA0F59D3B774AF01509E837402BFD140EF1FFE03B680A0649028246B00DDBDBCD73611E83593B80C8631475B7E195BFE4641435A7F752FA4DD038CC86F2FD84DCD4A9537300DF3C92AFB28FC9D7C30FA61D507CF41DAAAAAA7E013BBB9AA37DE9201E4C03B084231171F5176E90232A48807C2E2FDA7637C9CE22AF162804DEBB8FC3C815F82C88C3A95D3E80C6F80ABEAB05EBBD002C856B1A4CBFB2C04FB100A04CD7E21AA673BD511B5D39D65EE75A9D4FE0477B47F1A824C0E16887952B57AE81803DC2E1DFEC283A18F86A7DD5A7CE1193A7CF705EE332C500C7ECE7D2FB11E0405A61340D4001861F7015CCC5DB00B0836F10412B199EEC8F758834ED612DD62704D4B89B20429161F1E2C56178ED7B017E19C3C1D1002FDCC75EC155679FEFFA01B96C4664077BF703FF4044686C6C94CE9FD200EAE5541CFB217C877F85C4B7D20CB0AF7DB4BCFB986CCFF13C43C859679D751FA4EECB1CF77F381A8065E56967CAD7B65562C84C0F89A04F1F9504DE6DE60608BE22006BFBE512197D34D5D6D65E8D7A0FEEA7E74825692608708865F5EAD54C146D6507D06861E0682498543F5934CC5BE486849691139180B6DF68A14222F05C4500551835A8051AE0B370DCD633543B5269DA09021CC672D145176D6C6F6F5F46800E470330C7B268E972998357A6A0B4D827421EC0BD445064E000516502544DCDA3169CF708C2D37F8423D80A6DD17FA43275130438C4B266CD9ADBE108DEC304CDA1C1B7D76BEAA6884859851B12468AFCA2321EDB6FD8989704CC3812787AFE8A001C6DE44942354F9A34E94AD4BB6906707E7A8200BF87E5F39FFFFC4C10A089127A38E0DB13310444F594067B72074ED182EBCCACAF1E157CB5CE1090E0AB42127807A37289C7E35F4288FA12BEA34D0DBB9E70027F0FCB95575EC94125D30E271250EBB18A6A61683ED717983AA94A545794BAA07B49C0D430433E02AF6A12A070C1677E595D5DFD771C798B70705C9881A38200D002DF873ABEF17023015B0B04851108BBD1402454248E9B3F7B04F86A9D61268157E033FCF33A809E10B513D1C0A5A877B1CB763C9881A3820037DC70C31210E0ED43497DE1BA150C8BA154C6F505562C5924CACBE2323BA808C075F59A3813412401D7BDF6DFBBC462B15BA2D1E833B8FEBED6D6569A81FC583603470501981CBAFAEAABF93A52507503ABB983D4C412A31141F8FCA2BD2F614FE44433505723961DBBC0957C1676391378FA00ACD56BE3071A8A06C23C0733F075E7058C7EF502C604013E01D03FF399CFC4D0C827A09C88F297F97CBE9AFDF5CCA3ABB786D865AC5E2861B72E7BFA388094A11D49D0D6971483097BA00987635D7AEE99221209BBC451D3C9281290007C45ED20F7D58F68E0227C76C7783003E392005FFCE2174F84A4FD05CA6568E82225F1EA8D2145007AE98C0E58D85FC071869468D635353572CA3886844D7BF739390143AC387EB158B268BE24809A56464D29A34850E8FD172E20D9A7716F9B9DC11B3403E6583503E38600D75C734D31C0FED350287423A477196D34ED33FBFA1501D434328A00CE58C211E0B3F08D22169EDFD0D020A6CD5D2442D198D402F1584C5C73E525420D3651F30A294DA0B28E07594C906B0DEE6933EE977E40622C8783639E0054F5975D76D9ED50E3B74122E3F4C865A720077AE87E11E0383EBEA5C47700A5F366DBEED2D2B87C518440AAF982BCE0D389F38E279C3A738E98BD70B124D2E5179E2B74CB70E71352134BB19058075B40C89D20C05FE13A4D2040EB58CF078C69022C5CB8B01CD2FC1BCEF9CF57CFF8F2C4D050420E97E6B87DCEAEE577DE36F2CB99C6541DB0DFD2E16C5F9A05CF3C22A790211114F8AA78D5797955B598B7E404D1306D8A983BAD6EC4A45224015F3839D4023FE381929292FFA20FC0D7B0F11DA90913F01196D2D2D28BD0988F73FCB89A16D65B02F26DE591FBD4885E7BB6719B10AC39145BFA03C984C8A693F2556C9281DA84C5DB06A148542C5CB6421C3F6FA6E8EAEC9024504438D402CDB3A1AAAAEA7B3025BB50F662570F1CC6EC8413F8BBABFD6553A64C590F152DE70652802BD00BD70F4C029F3B26D09ECB20203B837A7AFBC48EED5BE55B3CD408854E5D385A224E5879B2C825FA25F81C76C648E2600BBEA71BE07F03DFD584CD3DB8EF0E1038D1D4D4349107F85D6D7E5D5D5D2B2474923D3B7670BFF7FD0BCB8188E02DDEF89FC3EE5A5A5B04DFA67EFBED8DA24FFA1523977879A5A82C8B4BA7EF502F9F30F483C6FA5738A8EBB049C96F83833940E9179FC030AEA39D00AB172C58F014C32DC6EA4AA255764E4D0557380144A166F06A02A50534673C207BF2EAEBEBE124F247220CB1E18D0DE2CD8DEB8567B60DB970C66F4E0D73B005BEC500BEFF5E946D007D37BEB31991072C4B6F464C74067D2402DC8DD0EC6BB4CD04D30BB8025101AD7EF28544194D2378A55F4D1EC9EB52ED736651F73B71ACBBBB4F3CFFFC73A2A971EBE1DEA7983D7B36A7AC35111EDE058DF506F6EDC0F772FCFEE0C478808F4E807F9E356BD65FA95FEF6028E7ED98F176D4105C2E0A7012816FF7783587AA950DDFBC79B3FC8918924708E199DC815FEE13CF3CFD8C78F9E5970E7A8F4C22317F40F2F1BA04BFADADED6E1CDA8EFB689920C0C723C0D710FEDDEDB5BB24C168A374BCB52204A55C6909EE63FA57F90574E80818E7175652AC9E5FCD35C47E81FFF9D593E2D76B5F2874F2640A99934AF23B0B5E17B31022DE86EF7E05EB7BC683F73F9609702C24F45D6A0002C8708DF97B9A82D1866B17BEBDA3884202C8F9F7A145D404521B366C90BF31E0F6067A9E5D4D2DA7407DF2A9A7C5F3CF3DEB4A3C7F9F60B417463D53D6BC857BFD1A48B81DE7758CF514F0980E03E1A0ED2C2B2B9B4E300914B36F6A6E3FEF1BBD2C2486AA49062F11BC4EE04B2FBD2481E474717CB5DD792FCFCEDD3AAF841796679E79563CFDF453F275314E4D7F20F09DF514EEF32A5CAE09EBCD700E07C77A083896F3006742E2D6729DA03363472DC06C9E57F25521F8AAD02EABFD4A0BB0F78ED2CFC9A009369D40D6F417EC9F5C1909BCFAD128969FFEE72362DDEBAF89D34F3F5D92E600E0A321336DE9ACB8159AA4096DCAF1E2BD1361E0C75860F77FB568D1A20B9527CF6C20BD6E05BEAA95E47B09A08A72061F7EF861F9B3702490F7C5655E939D45EA3B462300CFB9F3CE3BA506E2D4F4A3819FCF658DFBFFBA2397784B7BE12BBF2EFF1E2EBD0BC4ED8623981AEB6660CC12004005A0AEDF9C3B77EE316A600625966ABC9000CA0414161E7FEFBDF7A46D5FB56A951B0E5A72C2A59C0BA4EA28E27E6A0D2F016C7FE029F1EA2BAF88F9F3E7EF07BE696687FEEDAB1DE298603692E8D5FA7EF154F88EEF7F187D12D7E91E0FEF078CE9CE2090C00FAFBB0931FB349A0266E5088297005E33E0AD5598C79F87BBFEFAEB5D6DA0F2015E02A85A4D56C5E3F41FD47E26A5EEBDF75E39CFB017FC6030B3EFDFBFDC613558B9BAAE77B5BEEB5EAAFEF3BF9DDB73C2D3FBA23FFAAF266B374C577A82001F9F043E90A071C9922533D8F00491BF1744427809305A79F9E597E5ACE0341D6A848F9AF367B459C415B06AF611153DF0FCDB6EBB1D61E054794EB4389DB9E084BECCE7160D14A71B85D9D6EE6BFAA033B0F6AEADA53F477B765615E707BBB3C121F55B831304F8F824D0A737346C5D76FCF1B3D825CB59BF19DF7BB540E13A1D3DBEC57BD14517B9E07BE3FD422278C9E0D50A0C431992DE7DF7DDB95BD668E9E3EA139159B94CCE1AB4FC22257CF7BF5172EBE3ADD1B7D919846BF6702207E78726731361E0912581367DFAF47BA74D9BFED7A5A5718D99B8C25C8097080CFBCE3DF75C19C229F0BDB17FE10F5014FEBE0035004700F1F52F12088E64DB03A766B62C9B9D59F5C2A6D07D9B7A8BDEFBDCD4819BDFEB0B3CF49DAD15CFE11A83B0FB093517EF5897FC714700B5409D5701FCAD00A58CF9FCC2BC000BBB6F093A7F2DD43B12D81B017835812202259DE3FEF879FA00743849A0D75F7F9DBF34FA444569E9FFFBC763BB57FCCDFB553FE4A45045A6993B6FF260F8D15DA14E688C6C6D6D6DB6702EDE09027C020B42BA7968F0FBB76FDFD170FCD2A53366CD1CD606F411366DDA244E39E51477BA372F09BC8B8A06D4D83F2EEA57C8D418433A8670005358FF123EBF93E3FD51387B6906BE429EB37FC0F1349A9A9AD49C3FE306FC714B002E975F7EF9BF0094479F7FFE796DDEFC053F9BBF60E1E4850BE68BD69666A7ABB77CD4B1000A78AA76024F3B4FD0F933743CD7FBEB23D4080F3CF040A6BDBDFD9B9148847DFDED38BF87F317631FD5BC39924FE3AF31C72D012EB9E4920A00FAB3C71F7FFC3C6CEA0008C1C1D4EF4E9D36EDA2D2D28AD0318B1669B192A89C76551180769DD3CB1258CE0246D0E93BA81E41D72460FD9D77DE15CF3EF34C4B223174171CCE8DB8462F80EF83D427007E4E816F8DF3376BC6F59B41975E7AE92DA8F621D6FFC5CA952BC3B0D9CF4015DFD9D9D9599E48244E9D326DFA39B367CD698897C4E42F74F3C79CEBEAEA45381C727E60C7BE8E9137644FE15E39F8738FD58C7F9D9D1D3F2E2D2DFD15801F823648007C390DDC78F1EEFF2808B066CD1ABE0AF632C0E61C7C0B01D2DA75EBD6DD031B7E3CCAD98806E82B6C87AA5F0F623403C8129C33A3A4243E37128BD547F16F68B0DF6C69696EC1B11D38F66E2C167B0DDE7C1FFC07C6F0ECD2CD708AB6783C9EE7ECDCE355D51F9504E08238FFC9BEBEBE0B9826CE64329D70C8B601B0A19E9E9ED721D5EB11D2B533460711866026B288EBA5EAE6BCC5005B4D68EDFEC892F33EA131383868E27C03A6C274A66813471BF8E39E00D75F7F7DCD8E1D3B3603CC0AE7F782BAE1DCFD09C02F72E6DEED07C09DB4DF4CCE401378A76F1B31973117002D44C1AF6B887132DBD71FAB0F700700FFB6DA869AFEFB77DF7DF787907AFE9C0D0931C85FC9E2C4CD2A2DABC03CC87CC6E26806FCA822C055575D75417777F79D50EBC7416DF740652F7DE79D7786F04CFC01604EB3CACE9864575757E66872DC2608E0596EB8E1860048F0653C4719A2816FD5D5D5F911E6C9D1A2B4E593274FCE1FE9F975270830561F66F8C72D5451B1FA04F87F0C04F090E08FCE967FD4E5FF038E0E200ECE70947E0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (138,1,'Satellite_(24)',0x89504E470D0A1A0A0000000D49484452000000180000000F0806000000FEA40FDB0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000032E49444154381195C1CD6B1C751C07E0CF6FE6B7B3B3B3BB997D29C9168971A2B151092426C6A668C322119482E4D01C241EC45EFA57F4E841CFBED47B4F82488B45724949AC41301A43B3714BDDE04BC866BA33BB333B333BAF5F53E8A188D9D5E76144847FF3D2CCE54F87B2EA9BF9BC2A99ADEF0B6D53CF56ABD5B8D96C7EB5B7B7F7DEF8C23BDC6AB85F0A029EF39C762EA130E7B91D298EBD94E7DAB05DF535CBB87397E30963DA1B1FA573B9D5B42465954C2E2FA665E4D2F7E9C50BF34C9665A8AACABBDDEE65C330ECF48E7E26A1F0152E90EC072E3BC1C388842411088CB39478B8593E730E1C278A95858B8AC4BECE2872414A31A44409244A182E4B9E2CA63223C325D8B685BBDFDD412E5FC4C8D9C57715252F45B12F44610F4402128A110511982020894588420E04D9649567AA5F70A1F77E3A2D8B4AAE888C52465A51D131BA5E86EDFFD4F3CC0BA669229BCD62FAE55761D815044108ABD38E9224628488F93D078C62E6795D1684821EF77EFD9C312251641F33495AB824E7E517441E4F31164D178BE591248EA2141AB7C2D0DF9065F9BAA66919B55846E30F19B615414C09F07B2E380702DF439C04602C46D073E03AF8EC6173E32A1E6344842731C6C452A9949E9B9B5B04F0FAC1C1C15BF57A7D7AFEFC795C5CACC2B1DAF03C0FBBBBBB61A3F1FB0F00374451EA1071238E85D034956B443F3B788CE31F882806E002B80DE0F6D2D2D237BEEF6F744C138CA7303C3C82C9C97368B7DBA95AADF689E33837D0878001D6D6D6362726263C4DD360B61E02A208599671747484288A56318080019697979F1D1D1D3DC86432D08F0E716C744044D8DADA421445F38C31117D709C829D989999D923A2495DD791CFAB68996DECECFC82DACE361EE19CDFF37D3F461F1CA77BCAB2ACC9B1B1318C8F8FA352A9204912D4EB75DCBC790B5353530882601303709C8288FEAC56ABAEA669CAECEC2C344D43B95C46B3D944A150A0EDED1FE3B79F6FCC31C604224A700A017DACAFAF17FF3A3C6CD8B60DD775D1ED76615916B2D92C3E50F73F741FB02B4494A00F4644E8676565A51484E1F5E671EB6C41559F368CD6F16F0FEEAFEABA5EC37FC031C0D0D0102CCBFAB6BE7FEF46ABD572F03FFD0D5841844457FC9B670000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (139,1,'Satellite_(48)',0x89504E470D0A1A0A0000000D49484452000000300000001D0806000000EC30EF6F0000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000095C4944415458C3C5585B6C15D715DDF3BA33F75EDBD8C6C64F1C633B08708C01F3B06BD2E020A42A2A1F0D0D6DC3473F5A29563FFA918F4A8D5A55F9A9D45655FBD192AA04A90A6DF9AAD42222448086846003C19897C1E06B6330B601E3D77DCFF374ED639B9A36A10DA6EE58A3993B73E6CC5A7BAFBDF6192B42087A9A4D51DAF4DA5ABD4C55AD525F11858585CB564E8F7FFAD2C4C4E89731674E5959595057573798C964CEC4E3F1BD9D9D9D17E63FDFD6D6A64F4E1695F81A2D3375AD32934C2D733CB75655D41A236455BB5EB6D073EDBC2070220A092B6B2734DFB555DB2B7C676ABCE37B8F707C11028AA2682B6AB6FFD90A6BAF5A565837CD0899660ED5D6965077D7FB944EA7790CA9AA4A4B972EA56DDBB6D1912347A8A4A4841E3E7CF8EDB367CF1EC0FBC48E57DEDC9449678F8AC02BC050B29D0C012CF99E4B8202B2B3C999DFFECC6FBECEE78A12A2D191D00B429CED99C1B3D1782281152BDA2CDB53DED2346D896698A667A75E0F47AC5C5D8F906184E498AA4A224D4DCF1194E0972C5922C11F3B768C0E1F3E4C3B76ECA0582CF6309148544F4C3C579397977B42083F4F90E7854286B01DC703C88048085511A4200D9EE7288A4A86CA13AA425344A0BA6E1A646CC5F36CDCCF289A1615FA6746FA8D378CCA0F6E1E5455E76BD1A8A11A2193345D27B3A81C20350A477301DAA4BA6A93C6C77A6862224EEDEDED2065503289E8791E0D0F0F13224E3BBFFA0ADD191AA6A9A9A9A27BF7EE7D6BCDDAED2FAA9A5A8CE893087C530FA988780A11F66494711147875C27C03C0EF60CCB0459CA5280FB7EE0CA233FAF1A39F17F235055F3F2C13267F2B54065CC613C10908E09048E0E2609479710744DAAE2516BCB3A71F9625CE9E9394657AE5CA1C6C646E28CF6F6F6D2E0AD3E6AFDD266EABDD14F914884366C68A2EBB1D02F2D2B9A87289287776156726D1B046C098C41691A13025809D4E7A420A2248FFC47F3041308E3CA63122A2ADBD22582EC7A553594702417AC5D8A8473C8717DA455A79CBC02CAA46D523483B2894CB0F32BA5E0E719AE9340947C0A8542F299146AE1DAF501447D9A9A9B9B69CF9E3DF4AB5FBF4FB1FE7119E120F025D19089F1D9B43C67189095D00D033C1C31031651430D2063810B0C0C99E4501108A1241DDBFBBE245052F5E23655F50FFA5EAA346486898B53510DB2005ED54CD2754B9E07908FAA8668726C3CB0C4ADABA525A1F8F8F8F85614A82CE02C22E7380E45A3515AB56A156DD9B285325E01F5F64DA1282111004F2513AE90243C0544549D236EA7F99CA32E8F5CD88ECD596099094A4C254EE444A76EA0C654E0D5C02489D2780FB5D6A3E717B79CD0B4441B6E2ABAA1E3A1805C6898A393456ACDB001E278713A4504F023B76E0E886CEF0F9A9B576FC5D8D7192C4B8A8F393939545D5D8D674D484CA5EE9E0CA56D4F02E1B8A92C0514A6F00329205DD7C875B3D269E4CE633088B52FB522F360E138F5075CE8E58B80C90F3B96650DF6F4F47898B2653D915F01A115E0C65223A43C17B2F45A64A4CE0C9BC5E148340F6F353C04480D1203516BE400DCE422269A825506D0F70713131311783E5C6B05757474D00F7FFC36FD66EF51CABA06307852361C904C26C1852B0905FEACDEEDCCCCEF99A29624B9D682D9714E3612CF8B0E55E37D4996B989E000BCE8EAEAF2D9921FD50067002074482182F484609DBAEBBA6C633A22BDBCBEBEBE15CD6903AE35C2512A4646462E3F78F0E0647E7E7E2D64F4759CCB79727272E9B7BFDF4FE7CE5CA2CE4F2EA32E2C443A44AC66CF0BE8FEFD8734359D4AC2CDE0B98A16F8429581E5D043B89ACE8EE9B1237397A26C327BA0BC7CF23B7D7D7DEE6739E62317926C1485CD21C18F363535F114AC6BC5B6EDA1EBD7AF9FE9EEEED62CB691BCBC35A5A5A55B7373739BA6A7A79B392A735B3299A0CED39FD0EA171A289D18A570D822644CEE6CB1A66993367C4FC3BC3731EFB4AE2B715DD713D82701610CC182FFA92148DDC469DCB2B4FDB158BFF779BDEA311B1533E9104FE8C44C2A8B6C74C02ACF72A6702917843A20A52AEE39DC0B4E7DF4777A7EF51ACACDCF47279A696E5CD4BCB3C5EEDDBBD74426F703740F321D076896471284B208061A950733429FD214FFF6EDFE31F1846EAB7F91F5CF3C825C482EC0DBC8541AF6F95E7171F18FF83640C1715C1A1E1AA2286CD787EE972F5F4E454545F2DE6C205464A40119FC53381C4E722D41D3B04611CC06490E9B7D67F0244C2A2D606342E7CF9FF7006E1F08F08A8E782F2828A0C1FE3EF24155C3928381239C7267BB45A4E13EEE763CAE0E0E0EBA3CC71C50F1CF2DF84FE0174C606E3B74E8D01D90883170DE9984072749A75294C112876B849B1C1381631156A7582EF82BD03336428EFA42DEADD333DA00FA2822FB3C83E43AE0A38F55661C04E43A0A2418F8DDBB776506582228E43DA3A3A3A7588E4FFBDE679281DDBB77AF01E031685A401A3439392923EDC3E3F9F730AC135A273819F5F7F73F7A0E597809056ECDD3FDE266A0B5B5F535F8FE4FD1EDEB52E9AC04695A61E93AF06D3A7EFC38AD6BDA08DD67684565195DBA7489AE5DBB367F8A8009CC16AC585402AB57D77F98C9A4B6B11C7819C13BAF3A99848EE6955FB88CCACAD3D471EA63CA2FB84A013E522E9C3BFBD81C18FB37642EF9DF14EBE75AFBD37C5222E355959595B7F959F400F901C3C5CB6B212632D7D8D871066FDFA5CE8E5364815C1235C01B8F81DC8EE0F44D7C23C4845C6F2CA284F0F206B6441C09F629C1339139129C092C37A8A1A181366FDE4C2DCD9BD0BCDE9136CACD0C5D9CEB6425961FCED34A67A119D05A5A5A1C744CB5AAAA4A92C03A49EEDCB052B0CF596792F5C0457DE3C60DDAB7EF5DAAAF5F43587E30415FD8F19DF1ACF81059C82EAA0B81B40F4B7C8B23CE063217753EF235B6D14D9B361193C3DA49D605AF56E7810F5E6D1E9D787BEBE4373036F47F71A1AB57AFFE6CEDDAB5C016FEC9DCFB618B34303000A0F5D2EBF9E38633C04D8CC7D4D4D49072FFAFC32F374E89B19872E81783053F475F4889A7FDDFCED34A68FEB672E5CA869ADABA131BD6AF2B2E2F2F97D1AFA8A8907AE7B97999CD0D8C099D3C7932533E7AFABBC399F0E90A6B3AF5EEC50CAF40FD45AF817FDD76EDDAD5168BC58CF28AE5BF0389CAAAE5150613E1A8B3B4F893B3A3F3CCF8C5EE0BDF44B19FC1FA27BD10EB7CE64B0948E92374DC7E44BDABE7EAE53F7E7AEECC3948239E9B9BDF984E276EE3DE39D44612E01D5EBC896711B56749E0CE9D3B0D709E2500F897A1A1A12EBE84A5043BCBC7F4BFDE66FEA5B1F0BDBDBDBD825D0D056CCC497331F67F00A7E1BFA37077D3F20000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (140,1,'Satellite_(64)',0x89504E470D0A1A0A0000000D4948445200000040000000270806000000BF984E3C0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000E4B4944415468DED55A696C54D7153E6F9DD563633BDEB0276C760CC640C08404684305345D5242084B451329456D1AA9AD14A5FDD3A84943D53652AB2E5215A53F222AD22A912A95D09434691A96D42484CD82D8C6313660F0021E2F637BF6B7F63BD71EE3B004AAD8943E74FDDEBB6FBBE73BDFF9CEB977905CD7A5A9DCB66FDF2E37B464CA0EED7BF929C771D6A215A1DB3F7BF6EC4BC5C5C50D86619C4FA552AFD5D7D79FBCD97756573F94E3F54A25966596388E5BACE8DEAA646CB8D4B6ED0AC7B54B5C72F26589F2544D0D1A6652752C53B1AC8C34140D3D92C91C7E7DE2BBA4C90060CE9C079E5414FAB1EEF505144551655951BC1E9FE2F17A94803F2E37357E20C1D0D10F4A9268353535645916A9AA4ABAAED3C8C8C82E5996B7ECDFBFDF9AF8EED56B9F7E269D4E7CC776AC200CF313391E2393941CDB22C7B1D1F00E4DA54C3A45AEEBA08DF6B9F8671829B24D936CC72455C9757BBAF502D7AD8F4E7CBFFA590CAF9EB7EE29DB8E3FAFE96EAEC71B204526F2787DD86B547047907CFA20B5B7B7515151D1B8E1D9B675EB563A72E408EDD8B183B66CD942A6696E181E1EFE21AEFD124E712469BBBCF4DEAE37755DF9924336CCB149F77828191FFEC41818402393260B868211E4D8360CB6D1EF212BA3000C09CF6A944CCB6DD3EF946A4AA7AF9C01A6CC721D276C99B67DD3004CBF73D53272E8BB92242B5E7F8E2F9588953BAE59A76B5EC984FBE34983FC012F0D0E8F5069914A663A427E4F2E85C3E14F181E080468D1A24504FAD3E9D3A7299D4E533018246662341A7DAEA0A0E065DC172D2EFEE22B3D9DDA5A609181370D78DF51350DB6996039A803EE4A18972B39E4F5FAF474DA56F09C26498A228182966D2992EA4AB2634BA699224919AE4A8CD8F5CC8E2C733CDE52E78600948457CDD31477B722A72B555D23CD0316BA69CACB0FC0237E723070F6B8D71FC4DD0A4D0BC974776D1EBDF8E2EF69DDBAF554575747080BD110FF82EE393939B467CF1EB0A39D962C590CC307299148D0E0E0A00FFB4D55550FFC23BFF8AEA53056C140D16C0F0F58C7F713C918B9592310062E7B5B5705991DA6BFCD94B78481B2228115C6756D736C3D225FEF6259D98A7049C57D1F4976B4D9B1472A11DA04E7930D9A29A01D8006ED0C02D800C287631E8C431B1F5E492B57AEA4542A4D8D8D8D54585828E8BE7CF9729A31638600E0D0A143A29594DC41F3E7CFA3B6B6760E012A2D2D0550C1C772A7CD3C022A5732601039011C9847A02E460D3E641BC067A798D0177604DF27346D82ACB9E37FAEDE5229E9C05522585ABABCC826F34DD78D2D01C52455F390A67959BE888F75DD4FFC88A2688201AAAAF398C4B9EBC8F4E8965AD7B62DE9F8B183D4D8749AEEBA6B2ECD9C399372737385972F5CB840897894423941BAD0D54B3D3D1705231E7FFC713A70E0287574F9F13D7D9CA6D9BDD7E7A5446C78ACEF72BF0600D2C9B83866CFDBB639C60C6829DC6B421F1C8820DFCF6C6196F01E1EA45432FCE8550014142D3B40B2B902B1C42E279FD74F06BCCB0F0483B978282DBC2F83F67EC46E1AB1CFB7CAF817ED8F5A0F3E50E2A8AAABB34735D581C7C018A8A384BC641A16A510F3A7DB3A29D2D72FE27FC58A15B479F36642ECD3B79F7889924953B86C54D1055185571914C3C85CEEE73D344591652180973D0D0195C525D7B27013B15638FC0AEEC30138E5CA49DB96FA00CC83E30084C36B4B5DDD7EC7480FD6282AF4032AAAC2F3201F62490710011CC31049119EF7A099B603E37401466F57976B8E9CDAB57871850C357F18698D38F571CB6432E38D8DF67ABD545B5B4BCB962DA3D2B20A3AD93C48A98C45C3C371B02385941803E6560C8355317EC5656A49AE0C10E44C3A29C106098497D9939C30441ACCA424F6FAA897D96E2FB9E6C55715259D18CDBE922C684C94443BAE69DADBE7CF9FEF550B2BBF1252D2436F19E9BEFB48381706C16336C718C496E35B03F50D8E7D18EA012358CDD91805F437C18EF31FB79C5B30D77D2F5C57BB1E2FED614AB3E1C96452EC3936B96FFAF4E94213CACBCBC5B96107E8EDFDBDF8168DE56F15AC2A80AB90585DBB8029EDDA8EA0AFAA29944E25484628F0B99DA5349A1058243491F25C59F41B192F52A97B02638D4F5401389C0168C55EF4AB9981C1138A62CF94A43C41531615213E784403BD4CC3149EF6683E523DA0215455C64505A024E249EA6C6DF95B28D8F5627BBBE34622A177E6CC99F34D185E8D97CB2C5A5C03E4E7E70B81F3701E4F6500B0421D3D32F547E3A38A0DA06D1760435C39CE4D33230A19A63BB1B08930D047A92E42C01162C8B1C0E125E25DB899281BD18958AA252FD77C1D8E4F4F040063B2E1FD04B42809105C351EB5EE46F952884B79782B9A5520CB4E115E8692D5CC475F059857E50B648A343D198420EA0C888DF8CAF50F1F2B2F1B6C1C1A327220825150FF6C4343C3F750E6FE1C54DF88CA4E881FCEE9CC993334128BD18F9E7D9EF6ED6DA0E34DE788AF33E8F014071704D6432600D6B07746E93DEA7D0063A2AA1BB570D41A0685955F45489A56661C18018E84F718B1BFC0FB9D5D5D5DE6351200DBEE5E550A73A0C0836A3C1E0FE0D0CB652DCA557C5F55009C8A7B316679497575F5B2B2B2B21A205983FB8A2E5DBA6444229153C8E31FC462B177E1F50B78DDB19E9E1E2E6EC6DF3F73D66C7AE157BF468CC7E9B96776C0A38E90281E02D397F5866B1C368CC38C4351C65E13AC445EE708C61F597205681CD1BA176910E1C862499223C4D14883A376DFA2A1A1D666572072FDEDAA2CC062813A5D8137658402AA2893EF9150ADC90043C6B902119311DB1ACE0388EBCFA1AA5B0AB01640176A01406E7F7F7F0CE0B8030303211C7FE2FDCFFFEC17149E31931A8E1EA6543C46797979223D721CB3D19C3DFAFB07D006298E108BC713682988A781487193966583D24A46925403E26BC9B28A92418A23DA4C0C53838F6CEC9BF3F22EFDA0B7B777C8BDC164E7532743CC882BBBF8CFAA55ABA4BEBE3E567B19834785AAE90085ABB8108A9DFBC0923A80F120BC1FEEECEC1C9F04319597DE732F3DB6ED5B3430D04F675A9A0400DDDDDD4230597BF02E71DFC58B17B9541E866EECC5F900AE758385231CC6DC306E8020F19E4B60154DE7635C1BC6F73FC4FE0CBE9DB951A5FBA9A5F035D09B786E8F19C6B5660AA113C7B4368A70E8C1636F8642A13F43E9DFF7F97C12C73A7B980D6B6F6B8577FBC8E70BA0B8F18B17718588FB517D960940F8B3BB77EFE64A3217978FA29D44DF084048E27B291CA7F12E68A2E9003076A2CC2CC57519FD26C01C42389A3733C7513FEB54780C246E483B12CB31A3CEB97704E9EE8369D3A6AD60CF6601E07DD3C913B460711D05F3F2C9469AE609124F8826128E8FF95E84D442B08B05AD1F0C30709F8D39847D13C3726F0900D701433064CD9A357F6400B816C81ACFADE34C1B55CEAB41CAF592641BA28F59926D5C2C710AE5062FAF643CA0E6480364816193BA82234FE56A90DFEF7F0D35409A8B9E890D61417D88F10C048FE4D198CF02C400B01E209C44B105F6940F0D0D2D0390FA548C714A0178E38D379288ED835702C06D682002030D4A607EC0C297153F6E9C3AB3A5346FD86FF0B1688C89F0646E2A4DF106005E8357D764E93F510B5C143D49549A29B482092070EA440A1D7F07C2E07EEC5810A3A309FFFF8401BC219DBDCA0ACF5E67A1CB1E7353904898053D91015126F35A01629CB880426135515B0AC188D5E170D87B8DD47C7B320053DC208CFD06AAC6E59C9B11D3B9484DACEA9415C559B366A192CBA1AE4B11CC376C01C2B973E7886B07AE0D266E60C10A88E25F7118BFAD0158B76E5D1886FC04F9E0EBDDDD17FD5E085E30E017CB599CE72168C2C3BC3072F0E041AA5B7A0F858A2BA8A5FD1CC511F7BC4CC6F3862B37844C020C51C674C0BD2D01A8ACAC7C14C6BF022F8B6570F628CFFD3D1E34ECBD984AF3129A24AB6286C86A7FE4F08794136AA1282AC37B1654D3A953A70853EA2B2BD238324A3D42C1984CE327150018F465B43F71098BC18A18E73DB751103CE371CEF477A5E92880428211B19161FAE8C8FBE418496A696EBEF2D516B4E30F78867F4449BA93FC4B8E3459EF83F7DF837A7F7EA2E12C7A3C1DE64A8F733F03C10070AEC75C422C8D279219DAB76F2FB59DFE584C834DE372F9CECF5554541C04A39E45FC9F80408EDC6876F73F63000C9C915577363AABF6EC750682016110B88F7F11E2F392921251F7CFADAEA4BFEF798BF6BEFBCF6C0125E607BC9802F15C8C50C9B9A2CABCFD0040DE7EA9B0B0F005AEFBD9780601D59B98DCF09ECFD930DEDADADA68E1C28522EFB35D5CF16DD9FC08A98A44F5F5FFA6D5AB578B4A301E8FB34EF8A1015F056B1AF0686CB24198B43A00CAFE5B78DA6183B35E640A33180C007B93D31EF7F36228A82D5682991159B66CDCF808FAC3FC0389309ED709D0DC27560E54833521CC3895DBB614E6F9F9D9B36757C14037FB0B5056F0B2951FF773895B555525006160B2ACE0EBAC116BD7AE116B0163C6679EDE7071E00B77A44A9F9A1B9B0F2D5026BB109AD44A1003AF6F6D6D5DCBAB416C685660B333BBA6A626426124567DD840A63EDF93058BEF61701C3316FBDAA2EEBE9D1BCF5BBE26F75FBFDB1FFAFE6F9A03EFF6F6F69A939D0526BD10EAE8E8D80B719B555BBBE018285E905D22CFAE0DF254373BC9614630180C04E77EAE12B9482A5133AF2E8CA4CD939DFAD1E6B8F7D487D19CD648E44262B233C0A4A6C16B54847E78F9D94030F4E4DD8B16E4F17710C3E321C11B4F7A9829BC7138302B76EEDCD98D14B91521D1028062E8B79B9B9BEDA9307E4A01E06DD3A64D0F41CD0FA3D8794892946D256565F32BCACBFD9AAA2003A8C2684E933CF1E9E838EF1C38B07F17C2E0A7604537263E23C78F1FB7DD29FE2F2C530A000BD6FAF5EB7981B210AABE0B4A1E445A3BD2D8D8D80AC19B91975730379E8C75A61289F7912623309E633C8D5837A6CAE3B714806DDBB62DC6ECEE308C8D20436C408CBBF0EE19507FE8D3E6F553EDF55BB62002FA5F422DF00AB24213629D7F8F93607CDCE51F026F934DBA55608FFD3AFB5FADD8DE8AED3FC7289D2663EC3BED0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (141,1,'Satellite_(96)',0x89504E470D0A1A0A0000000D49484452000000600000003B080600000084D18F0C0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001A4F4944415478DAE55B09741DD579FE67E6EDEF69B1B55A12B6E47DC70613969098CD6C095B4DA1E0B027262929D0F42487D052E224A714DA2C276DC3499AC0490A760A384B4981938425D80683C5E245C6B22D6FB26C5992B5BFFDBD997EDF7D739F9F8404C1349182C7BE674677EE9BE5FBFEFFFBFFBB8CE1388E8CC7CDE07FC3986559D6755EAFF70C3CE70C8FC723454545F13973E6EC2A2D2DDD964C260FB2C462B1B75E79E595B63FEAF3605BB870594532E9D4DAB654DB4676929DB6A764B3D97ADBC9D6F8FCC1BA446C206C3B99886367028E93F166ED9465182589AECE3723787E7BC4EB8E05015555E7464A4A4AEBE2F1EE72CBF2977BBD9E0A11B3D4B6ED229F3F34D1F224E774756C5ED4DFDF3511EFAD01107DECF3F964D9B265323030208140401289441AE5B1542AF5CFEBD6ADDBF97EF75FBCF8CA52C709D698A65369DBE94A478CF24038D210EBEFF1DB76B60C80563AB65D95B5ED0922769198463018087A9389A8E1A84770C4B1B382B6425CB9F778BC924CC686D4B14D3259D9DADBB37EF2A8C4FE290868683837609AE6539695BDD8B2C4F20522629A161ED016BF3F2C1EAF4FEC6C56CACBCB01EE5169DCB40E2F60CB48E0EBE3DB6EBB4DD6AC5943F001E862B58FC7E3363CE296F5EBD7FF9733CA8B9DBFEC4B7F93B193FF0A807C0A448065991E5CD89664621880D8673369B1E0793C97CDA6F3F52441FD77B2A4430CD3945432AE40D7BF374DAF1C3E145EE5381BBF36260418C6126F4D9DFFB1805F961B866379BD01F1FA02302A5B4C584C004438B6A3009836A3464CE990CD9BDF1E11F4C2BA891327CAFDF7DF2F77DF7DB7ECDAB54BE6CE9D2BD5D5D52480E5E8E0E0E0FCC6C6C60EA25448C4F9977CF9B16C2AB1C2115B110CA950FB40282CD1C1DE7759B5B662AF3F28319CB7B3194542AE64D5DFF016F1F9E185F1681E7C4772CFEBD8C5D2D7E75990C96C6C1AC92088CF1F8500806455579FFE88CF6FAF809B5B0418D2A2AC5E49088E3D1E1FAC0B0FEFF3C8D4866249A77BA5B7B74FBDD84816AF8FFD7EBFDC70C30D525C5C2CF7DD779FBCF3CE3BAA7EC58A15B27FFF7E45C2912347D61E3D7AF433D8A788C3C28537841C27F5B23FE03D25EB82AA80C2DEA2F7810402686761F136C177545D6EEF80A09044FB07708ED223CA6BB4A23B64D330B2A8CDE05DB37859FC266DC3E040035F26DB0F2271FF4C00F5F0BA8C07B1C1B4B329C3E32D4F7C280266CCB8D41F4D467F04002603268F6979AC60281C8847A3663A632FB00C5322452532188D8A65007CCB809C5AA89BA0F4920F396FA609500D79E185E7E5820B964926931915FC8A8A0A39F3CC339507BCF4D24BF2F4D34FCBF6EDDB65FEFCF9B260C102E9ECEC5404ECDCB9330E226742F6BA484269E9790FE3122B6D051A4C569CA4639829E096320D33EDF37BF10C3E23934E0230876A62D263716C198E0D7D72AC5024E21B18E8B5C09289406BE619A00E194E6E8F0D1008AEE37A8FAD3C44936DBB7BCA16CFFBFCD353C74500C030A7CDBAE48974AAEF4A68A765D2C2212D16AD3A4BEDF3280B0F0423928686024655C7F3A110AD3DAD9C744A6D56AA2B83F2AB5FFE5CF6ED6F9555AB56494F4F8F0251838F0C482291884C983041CACACAF0FB90B4B6B6CA73CF3DA7C06F6B6B937BEEF98ABCFDF6162D41D2D4D44422EFC0EF9EE8EAEAEA3BE5B4DBA1C1D9BFC3F5FCD039756F926FE3DD0946280C091AE8CF4B4A5EC73560307206FE786CF0189836BD2593FB0D258981D88B58014F2206AADDBBCAD0FA4C7AEA6B1F98804975677FCF71A29F17C978292904351008AB9741262396E5113FFEF6587EF550941F788622C80BE949A7928A8C59D34B65F1822A09068372D75D77AA2C62E5CA95B27CF97255A734162F1985F774747450569882CAA143871027362BE92101D7FCE55FE0FA5E3970A05581CF60BC67CF1EEE7F3769D2A4CF974E3CEFCE60387C2741CBB860516A60C58A09821608041103FA5D2B768B0B1249807740A21884337910ED0219D3C7B4FE5432E15A7BCE0394B58FE001A6E993FEBE9A07FF6002AA6ACEBEDF90E8570D33E327F004D1EB0B0270B85C262BBA8EE0E7B2055A998962C1C24A941565D3F070B7DD1DB75F2CB5934A05A9A3DC74E3671491B367CF96EBAFBF5ECE3FFF7C955EF6F6F64A77773702599F40D301F2016969695181975E70E515974A32950111CD0A787AD6D4A95365F7EEDDB263C78EF8FC936F583FA1BC7AD931B7CF0192C9A4DD809A913048ED3DDAA98E69D18EAA67DB4C3EDB09854332D0DFEB026EBBF5B973EA9FC330003235016E9D6A5760F1B6FB1C2AFB0B54C9D1AEC0F2F72560D24967DF654AF28164AA37A864C462F1AA6C86190C01364102FFF678FC7909A2D5E764280C574BAB76865B6F818415572FC0794369FEA6D75E965FFCEA3999366D9AD4D7D74B5D5D9D5456562AE9E186AC46E9FBC1830715F025454139EDB453E4D58D6F49178841EAA908B8F6DA6B716F53C951674FB51415570DD35D3B07ACABCDE87F28B0281BC72CB6D0AAB3002A20F1E8A0FA9DEDD879126D9724DB3D56F2C334362F63C7FA02B938E00C9120CB3A095E67D58E4A4045F5C7AF739CBE87D3A9DE1205B26BB994121CA818C43A5A3425287703C95BB81FA99BC7F2490AE0E77E9B6BEBD8A6B4EDEF48FFF517CE80CD381E1240D206FA0EC1B2F74A0631AFBCBC426539D45D9E8FC5A220312EE5138B91910461E1076477CB7E053AC167DB9B6FBE59F507DEDEBC5D56FF6C2BC3E131409D9135B904C1BCBBF348411BA700A89C0C85224578B61ED7AAB534690B77DC4C280B430B214644DD3A6784BD1CEB3BE0DFE040E87036DB58372201EC7617159FF1135FC839DD319C691012A2A72425182E82DB277115155A15A821D425A0BF6268A0D10EC112B822D5A416F10A96CA8078DCBEF780F3B1538A06EAEA42C5045F9380344E2ACB42A27BEDA6090F816C2552694851BFEC6A69853744956C11784A0EB3A26BAEB9464A4A4A54EC58BD7A9DAC5DFBAA7A61CA5EAEB32479308E81F6C7E8FFA88B2205CD0511EC758FCD718FD36811C35F0C38CF3ACEA62F8F48C0A486A55F75B2D1FB1C27AD64474B8A1F41D4CE9939C8800C2187F6C1D219DCD8C670DB86C2C56E96E00CA94F26D3D2B2756B3A136FFBC679E7359403F83B19643501DCEB4270B927D83C66E1310BE30ED3CEB3CE3A4BC996054F6BD9DFA792808ECE3E04E1C312C3750D4825B2A02EC8668C76651A0E28E66082C134931E68C078BCB1D80054C28675B8E76DC752F605778531102313E41AF104FB0A598375C4D72ED0F844CC680E07DB5FE14338C49BD6EA265CEAC1003E4A27CA9B38F73ADAB422A1480E21A072CA276E133BFADD6C3A1AD1A0AB94D2EBCF759C5C4095140178EE49880699B14169663C817A23274756EE5CB43F2A8347DAB2E72E9D641D38B06B1B34FD89458B16DD8F406B319564FA391A09DC988E22AB913973E6C8AC59B3547C60A04EA77DD2D834083D4D0E91171A5E001EA1D2CB42E9B187CA1033A05874E0DD1235AC9DCFE71712A0EB15F8B6962D4B0E1D887754551D7E7C9890105FC3F5B814E2D311546DC6BE09F2DA896421A308A8A8FDC495A6117F3419EF2A2D04DE70D347C60045139508C42AABCF303F365DF01907428AA80C523C92C5B4926321BC46E7E10E69DBB5E399FA29B1FF9D3B77C68DC8E74F07FB29DCBB070F5345AB8EC5622AE5A4B4B0F0B998F313E8D2D25295821270164A0D4B5F2C2CCD7BA2EA5972430BC7860F8A8A8AA5B7AFDB0D8AF690A0980BC27C4E2604260C263A346B51836D2EF8E2A836267AB8C944DC8D032EF04445797A44FABBFB7F535EDEF5C448A39E001D76EA64B0EF46D98763D85C5B14FBAC515C76FA3A71BA3FEE48D6606AA57C86F93DDCDAEB635663E7B317663A7E145429903559C16051EEE55C42743DDBEDDAB2239D49747E77E2C4CEE75CF734274F9E7C614D4DCD670074950EA42481F97E189D22824B8B27D81CA0639065B6D3D03055BA3A3BD4F9B60E1F321D53C5099D0E528229BF0A5864250910CA38E0B8F52A2AE407D21C9528407E46B57A9DF1F895F5C7DC6CCA191AB4D1A6AF272076A6FDB39148EF2618549686AFBBC6F0602717CF4C444449E29AFD30AA28ADDFC9B9C7E95FC7898B5026E037A5F8F104CB637AFC012F3377E1D806070B6905C170102E9F02B8864A3D99F7869125241094A9CB5AEB496022969643BB5B8F04FD3DF71515F5ED26F0AE1ED2223270C1504343C34AC8CC159A04BE3007D5AAAAAAF2FBC3870FCBA64D9BE493E79C278B169F224FACF96FE98ED6E18102C7C674DCCC250798A37AB68303BD4300559E80F66A2C289B038F4310D1C101954EEA7AFB5DF97B4ECA7232E5BCEB1CE361C7214F7B55E5FE33814137DE23E3BEE390E00A021C18958377CABEF1C61B593D38374A1674769148B40C17AC308C6C256A2A505D86FD448EDBE3E638CECE0401D5909A62784B103265A6327C284391E6F7A5E275B589D707077B9A202D9B70AD83CC10E88A7818BADF00FE4E4C9932652D0858421298EF53E75127F012D5DBDDB973A72C3DF77CB9ECCAAB544C78F2A98DB27B6F8F0BC4B10E8FEEFCD06B08347BAE8592A2BCC370ED12D884C31158FF603EE3325C2F6213BB80584A693A95C8F70B48B2E8610A75FD08F4BFFBF1D2D2FD7721DE33BBC9E6078646CC9386023E6A1A8A9D67C284093E001744F1B2E0E626DCDBE21EBF4395A53204005C0D99B8F4A4934E9A535D5D3BB3BCBC72726969D84B4039698207CB405EF6E2781B4A2380FC1D3C602F7E9F4087EB6AC8CF238C010CC61C4E18BE7DFAB2CBE5E6CFAE5441BA69DB3EF9C6FDABDDBE85A1B4D974355A8D968200F6C44D8E25A93AC91D9B2AF7112A16EB42882D1CDBD16A61E407D572BD5CC71D8EF007FCAA9D1490AC3CCB3D1F8F452493ECBEDEEF3FFC3F4824E2A3CD7C7DA0F9009700133AED05501E0064F9FD7E137A46F00D14B5874B99EEB1D276971C0BED66435ECE41B09D034D9F0DCD3B09AE69900C16643E89FEFEFE3741DC3A5C7B23885B0D0282EDEDED2A100FDFD8217BF83F1F157F30A048786ACD2F65A03FAEB22E965C47D1E3667BA6F2C20CBC311E4F4A7B7B87F4F70FC2DA93707B3301EC3C36D24C3CBE49A7E0BCCFFB7509148924D9CCF54D1491566E841652DB55597960098CA91D3DF594F3013B18A3F6845D128C534F3DD5ECEBEB3300AA01B04C7790CCC09EA0333B315D52541DF36512052BF7D06B501742DD92DADADA8F613F1FA4CD47DB0AED1D2C202E8D3A2F3C458DFB8CB4DD7CDBE7E49CF32E505ABD67F72ED9B77BA7CA9218B4F94C248E8FCC67E2DF7A7882B2A58F472AEEF0770224C6D0B78923CB43F1260DC3934249B293CEEE088822695E40E201C15E8634BC2E7EE36C88440EFD3B9EBD97F2FA814796DF8B30430FC6BB7F8ED64CEF41165FCA001806A4C40438162CDB0BEBF1B1A08D1F60842B2A2A16A3E77A2AFE5E0C8016A36D984071F08D99D008CF219508C85F7FE05F14C04900D7F8EA3A35394312D88760D6A483F94820B31ECFD2876BB581EC410E313116A1B4E37C27EAE26E8CCAAAF410A9A3FBFA4A6E45299961152413F0267B1F8C672BDE77FFF1C8CFFB12F001E7088C518831EBEBEB4D58BC07807948043CC9CBB179B714B15F00ABFD365EC4C7592D5E8A2ECFCC2AE7FAB9F2B92F7C51A6CD98A92CBC65E73B1243278B04F01D3804CDF624855EC17E03FB0FFC1D07F0DE7EFB6D964E6457DF427B58B9916236E6829D75938314AECD0E133D3293EB477182C624F016F79458F7BD38DB7604A515CFD0ADD3CA3123E00F204649DAF4E9D34DC80E638A17D6499922093E78C5F760A557102C47F5AE8F01AF89983E73A65CB3E22645C020C03FB86797224017023FFC981EF5FAEBAF4B6363A3DA23B1F82748218703BA69C50412F723E069DC2343E0713F962C9E47E54CF02E956C900CC63BD555425E8F1287E70E70D6ED78ACFF4F42C07B9021F3E6CDB3A0F92652470F24E95200FB04F37ECAD170EBD744ACB8E5731241C78C241CDEBF473C088885248C4400FB1124807B48C633E8DC3D0020DB703C08F949E3FE1978A88DEBB330E8DB38970786F1AF70CF78C7BC1ECF6C3735356565D8E4FFB825E0BD084126E4AFABAB3BD8D9D93991A9E84812C4326FE12259B4E474158C39CE93414F9640B3773C12119C4923F0E8FCA83DDEF728B2BBCBB1DF8DEBF52173C914E4ED1F180CE74302688C97957124E39C73CEF90ED2D3BB504694201606DB659FBE52F540B31CB48BF549D01D1FD2A0171E53D2083E3D807B6E488BEF467C588BC3CEE3491DFF5FDF7B3C2D4DBCE4924B66C1FA77701A7224F9D1C7B3E79F2C655593940C493A2991A02F3F40379C004E4F12FC37DF7C53CD25730389CF4186FE161ADF8A7BC58F57BF3F720470BBECB2CB364036CE1A4D8258C7B199190B16AB8142F64A2B8A8E8D900E2781A0BFF5D65BCAFA77ECD8A1BDADBFAAAAEA6210D80CC9EB3F9EFCFD234BC075D75DB71281F8073A151D8D88BA86195CD2A0BCA0A2382C65134A860C55B3F0DD987ED2FA4902535CBD21487F1532F438EED331963234EE08B8E9A69BCA200B9D00D6184D82583857EB0997AA601C42EE3FABBE7608013CE64A0A7A80DB07E09854FE3EC8725E44FFE38BE8931C7727EA234900B76BAFBDB60DA968CD6812A48F4900E78BE905A72D982DA525C543266D3892BA65CB963C09EC0DE75FDC3062E87B5C8C94723B176F8D950C8D4B026EB9E596A76099CB47939F7CBD2F205DFD3145407DED24593867469E000E4170851C09D8BA75AB343737BFEB3E90A1AF2397FF31A70AC74A86C615014C451103EA90A5DC0850BEC9593202C9A16A76CE083447463959C3754324A1AD7B406289A4782D8F5C75F1B92AF092000E4D70E5DCB66DDB14015C57347C830C6DC0B556E29AFBD17E4C64685C1000D04F4240BCDDEFF7DF0650AA59A74734D929E3C829FB061C29E5C01BB59DE49C76DA69321BD9D0C18E2ED5FEDCB33E26F366CD506D99F19000167A826DDB2311B00544DE8673BBDBDBDB07382E74421100E0CF2F2A2ABA0316783940B3A2B0F4E2A2A2FC8A0776BAD4A2AD81813CF8EC23900006548E9EB26DC3ECF9326972BDD45456C8F24F5DA8962E52FF3509238DB072C37D5F401CB80F443423431A9338302604705877EEDCB9CF783CDE0B3300983D5A356C9CCD88CFCB4E5548FCFE80FA3285335F5C42180E05A404419664504E480081D5336835931B64FABC93E5E2A567495747BB2281BA4F2246DB40DEC3C5C5C58F80E416F43DFA4F080F40D0AB47FAB71D12122498D4745A3AF7FAB8B0704E967BCB5D979448C4253638807D4C7943A175979455C8B9175C245E3BA97AC02481F235D2866B6E83F5FF230E9B407EDB58F588FFD4A3A1812953A61C867470F585029CE3F77A4FA0F5DF4349F0A880AB8A3AF6492F246957F33BD2DA7A60C83C724DFD34A9AD2C933D2D2D4AAA46798E0118C13DB87623AEB91719502FAA331FF92C082F7E6B4D4DCD8F99D568ABD74306045E17ED0D9A0812A00B53500654F66AA7CF9C2D2DBB5BE4F72FBD001262FA1E5259532747DA5A477C06C496A3909E6FE13E1BF1E76ECE867D98F1FC3F2B02AAAAAA9EC50B5F4C90B8D88A8196A06ACB676150652924A2D00B1894F991063F57E235B825D35979F9F72FCB6B1B37E41661B973C3C3B78686062E7DEF6C6969F90ADA6CC1B3EC1D2BED1F130260FDCFC382CF7327F3F3ABE0F4D0013D4103CDBF093EDB9010D6EB09775A3F17E7EA8DF5F48A8DAF35CA534FFE6C08F824A3B6B6567D77405219EC914DFD88057FEFDAB76F5FDF09430040FC2B643F6BF4AA6776A80A4730F52C962686C7941C82AE25888195E0F39C065F134370D7ADDF203F5BB35AD54D9F3E5DAD9EE6EFF404BDDBB7E8441675333C6B0BCE758084F4093118076BF49C7CF2C9030CC6048C5EC02F1E0B812F72FB01DAF249849621663CDAFAD98ED64DCBCFB869AC2EEB376C90D58F3F2E4B962C515255087E0109F7E277BF403900321227CC601CD2D007E1055FA11C300DA534106C0D380BC1A5BEF3A30BEE490EC1FEF5AF7F2D575C71853AE63A20ED199A00FD911ECB238F3C2A070FB6AAE5ECC3C1CF6612C9CBEAFB7EF86473E4A763D907181302005E78E1C2857B2B689A726CDDBFB67EED019A045DC74135B6A3A45096B8B97AAEC8501F84B832C442A97AF0C107E58C33CE103DA6A4BEAA49C5E3DFBBB3C3986BA4335F7A74E2756F74075E8397F51EEFB2923F3B025C12428B162D3A823E4184430C04555BBFF6040D3E8F69F19C50BFEAAAAB1461FC5B7F2DA381E5F80F89E0A01DDF89F50F3DF4905A1BA4DB5846ACEBE13B3A9C868174C50F7E13F9DA82702AF5F79B8A7F18AAAAEA6F6A6A3A7108E0868E50F1E4C9935B017E31258429E27029D2452D4FFFE427D5B702CC90B4EEEB4F97F4F705EEEA37256D3CFFFCF3CFCB3BDBB724E7D5C7A24B67F57A2EAC884676BFE969DC79D4BBEEDFF694AE194CDA6DF09ABECECE4E4E143827DC7034002D82176C4136544F02746AAA3D8185BA4E2FA194A86F10DC1C5F4B4E21119A040ED2F19B622E6FBFDAFBF48EB3E66466BEF45AE0270BC3C94B7E7E2872EF4F0F96BECAE5297A51D558813FE604E80D72F4C5AAAAEAEFCE9E3DCB6256549892723C7FE9D2A54A7AF4648C880C21412FCEE51C00C96280A7B77CFFFB0FF73BF1DEBBEE99D933F5DE6D13562F2A493B274F4C998F1D286EC3F512483F3363B92262DC10C06DF9F2E5F7C06A67D4D64EBE71C992C51E12C0C13612C22F650A67C6F47A2E5A3D3FDEE6980FB321F62B721FEEA5956CAD59B3E63F1003D6A0FD01FCBE97ABE0406A1601D776ADDE1EEBF71E37045C7EF9E521E4FBDF58BB76EDBD3366CCBAAFA161EAED955515E5A79E720AFA01DEFC601CC1D7F301FC9B33630CD8DA1B08FEFAF51B9C679F7DE61190F823B469435CE846B6C475A0CE58CACDB82680DBD5575F7D139EA779EBD6AD6FCD9B37EFDBCDCDCD2F76F7F65E346DEAF44F81902ABFDF6BB25356890C76625999FAF2854F4F4FA1E6B71D6C4BEDDCD9DCD8D3D3FD10C0DF8E537DD4790459EABC3D9E801F9704AC5AB5CADCBC79F36F11781703E83D870E1D7A08127215AC388254F20D04D5571160F941C82458FD82E292093503FDDC7A5F4700DF00F919841770582181F3043D05B9F9508B674F3802366CD8B00B32331520271128BF830ED55B8383839DFCC80FCFCAD99724759CED418AFA3A47FF9E2B964182AD357E3C033F2E094020BEBAA3A3E3491E23155D0B6FF8079011E1172DB0EC0EE8FD805E0EFE5ED719EFA08F5B026EBCF1C6F908960FA0237529329F4B5E7CF145CE58F9F8D50ABC21E67E5D3FE699CB479600BDDD7AEBAD173DFAE8A3BFD51F7020D524E8D98F1AF8E39680FCC3157C77F6E7242B1F64FB3FF7E7202373868E600000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (142,1,'Satellite_antenna_(128)',0x89504E470D0A1A0A0000000D494844520000005C00000080080600000086130E0C0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00003AF74944415478DAED5D07605455D63EEFCD9B3E99992433939E1048680955429122010958168115140B62FFADBFBABB967577D1DD5F45DC75577157D9752DABD8B060A1F75E4312080910427AAFD3CB6BFFB9774A26805B145877E1EAE5BE79EFCDCBBCEF9E7BCE77CE6D20CB325CEC79F2DCFB0D00C05E88BFC5C2A5041A29D017C1902EC4DFBAE8017F6AF1FB598204FC85FA7B97249C95666CF8FC2FE59700BF00E9AB4D8786A25AEDBEA0F57B31032EB1EC635A9FF4E925C02F40EAEC748E6365E85AB468A1EF12E0E7318DCD9F73DDE2A57F7BABD5EE7AADA6AE7EF9053719171BE0E3A7143C6DF7CAB72F59FA8EEED8B1634F330C734131E02E26B09F7EF983FCCBC78ECE8B35EAE07875CBC0C2FD7B0F5D28FE7D51021E63303C9E9A100B033213A0DBE5851863CC4B17FA3730C4DDFC6F4C43F30A0627A525BFFA9B67170DF5F87869E7BEE25D1D1D1D737272870091F09AC6F60D8FDD56507049879F0BC33865F62B268BE508A3504F7DEFA32F0D20CBBAFC3103E7B4D457C1EE9DDB61F3D6ED7068FFBE3FFD3B7EDB7F95844F99B12057E6E4757AA3293936D60246B319F4861850A9D46088319E18DC2F35C9DDDD1CD3D8D40423464FB0975634BEF8F0CDF92F5C02FC3BA469336F79CD1710EE8FB32632B6842488B72640BCC50A669311F43A35700A16BC3E3F74763BDB620C3AEF808CC4C418835675F050E94B77DD74D5E39700FF27D3FFFDF6B54C8F3BB0ACB4BC7C9A2F204342722A2426A54042522A2425C44192C504965803A8551CB83C0168EB7442635B373435B7417B6B1334D6D58866459776D9B265172480F51FCB529E7DF65936CED6F76105A3FC3F96E1FD030664DFEBF5066E71076022A7548152A5028D5A0906946E8BD900B1263D34B7D9C1EDF5D3F32A95125896054EA954387CBA07F191BFBF04F8B7A48FBF58959B9639E44DB7C733061D971583FA672D038679CDEE74D61D2C3D71B7D7EB59EA763935DD0E0DA8380E02BC08CA962E54293C74DADD60777AC1E37683D7EB05BFCF077E8FE7EE0B05F87F944A595156A6D2D5753CED717B9E42B0DB3C1EDF03B983FBF773385DCF38EC8E676FBAF147BFC3DBE4DB1E7936DD6CB62E8A8B8BBF2DC6685668B51A50A00EE70591026DEFEE82AECE76E8686B45B5D20CDD5DEDF265532E332C5BB4C87309F050DA5F746C9CCFED21523DC8E3F1FCC59A6879D9A88D59EA703A321C6ECFFC6BA74F3C74FA776EBEF7A99C40C0B72125233B8941F5210A02F8FD3E40E90787BD1B81EE80AEF63694740FE4E60C7E66E587CB9EBDE8554A59599981E30CCF730CF300AA8F530C0B533232528D5A8D7EA7C0FBBFF47994B3116CF7D9BEBBF59BBF0DC32249A33735F71F3EF965491226F381C00404D84840F7B85D917B1D76FBADC4345CD4127EE040D90C955AF5865AAD4AF5F9FCBFF37ADA5F1424CD73A8226ED06934F70C1E9CF97763D9C9C9C9AF6325FD0F1E3ED9D0D0F0227DE179F3147DCB1B47C4C4C4CCEA97D9E7698FCBFD6A9C256E487656BFB13653A2EDFEFBE7BA2E3A09DFB4697FBC4AABFCBD5AA9BA5506B95896E4395575F5A25EABD9A9D340BB2C8AC310ECBA7FF41C51149F512814BB9A9A9A3E0C9F933FF944C4E2E0BC79779D4AEF93F17466465AD5F1CAAA1D2CC3E48B2C7F1D5E3BAF21DB1F9C6BBF6AEDD61B25462A972479AE0CD25322EF185D52567E05FED05D0CC08713C68F989C97975BF7CF3CAB05536363E3FBD88AC5D3AF7DF2C99B9D28EFDDD8C0B3395EBF0A8F9D0C23DFF86FD3E159432792CAB8B14FD680F9494929FD13935263E21312559C9213650968545396249024C983B906A5B04A96C46A4116AB6451A8167C52D9F34F2DE8F8677FC8F2E56B52D57AC5EB6A95FA5A7CF8760184BB0B0F543A7446EE1B8D469D8D7F69DAB4A9E3F69C63855A495EF5E5971FF5FE7AF1D295E47D3FF86055EC4D375DD375410147B0CDE8107C3CFDEA590583860C0799FC87AA3E32A04542D9A3C70470F259CA44D02763064E124925A0E321C9CF2E5D5186D7B609A2B03D20F2DB96FC6C61F3D95EFBADF73EBB57A554BD28CB2C79F67D0553C72DFBEDD2BF5EAB556BDF9265C57AD1CFCC9D7DFD54C7397F7B99023E2AF82B18A2766E6554CC8FB17CF382013E70647E361A9A55F3E62FC8CECCEA0F61A34A013F0D780AB61C049F1C13A043524F322349620E96394A51BC5F25A9E1D9573FAE1005711BB682ED9200DB6C0659A3E1946FAA34CA89F888AF41E0EFDB5A5DD659B2B8EC35AD4E730B30F0E0EDB7CE79EF7CBDBC0C0C01FCC78585854AD9D7B14186D8767C9F1B2F28E04A25773DCB32D97DFAF60325A7881286D381EF013F02BCD41B7C31027E50EA2551CCC6325B1485BB18DE43AC9A2C28147E9F9B5FD6D664FF6DA0BBD1A2D1EAD6CB1AD925338A910FDC7D53E57935604109573475BAFB2C5AB4A862E91BEFAF6080B967F5D60389574FCE6BBE2080ABD59A346C5FA043EF0C0BFC9F394D2A28E2E4FFA8317370A6B4CB72086C3904BC4C81F77BDCC0BB3B40C9C820E86218AFA4D5F08270AF10F0DE2B310A19384D995B522F690747FD79B7D00A2AE1200B72161615F85244ADDCC709E25C2C979E779672A0B432AD7FFF017712606A6BAA80631534ACC9712C957692496C42A5E4401DCE2A258DC469D41C0D0A91AC3D23AB40A364C1D9DE085D8D27B07644D0C4A50067B0028BCF6FABAF04AFB3138CB6744663B4E568B4864F8D81D8E62797BCFBE613CFBF954F0255E7E3E52559AC0C8140008787EEBB65271675701ED94AAF17E103F093D878AB13D50A6CDDBC01ED08D0180417CE51C053F095047C456FE031AB09F82A65A402BCEE6E282BDA03ED4D7560B6244372762E184C667074B543E9811DA8C654D067701EC4982D802A05B316B45A9D59A7D5DDA9D1E936070CFDEA9E5CF2CEEF1E7FFEED91E7F2E58D4AA101E5DB2F334C56A401037C84795C515179C67905BCB0F084A5B9ADF3EE384BF2AF394E59D7D9DE0E470E17033A0498D9602813B3221A786518F410F0AA20F041B0396CB13294161F80C2DDDB4181AD65E8A871803413F41A0D1C3B520845FBB743FFC1C32067C46830E8F540824C04EC20E8BA68F093755AFD6368480B7FF1BBF78F3DB5E49D5F3EB5F8AF59DFF7E5516F4BA834AB2024E194ACB094AD30A20C379C571D1EE0D40F37B7763A398FF8678EE33CC854FEB261DD6AD0EB743068F060049CA1E013A96768193A0E2AFA68254FF5FCC98A93B06BC736D4DF228C1871190CCC1942DE23A2DB33D128A767F4015B6232A5992235B2588A5230E367811E8BC4D8D2128D2D290760F96B643BBF7EFA77EFEDC77B96FB05FEE33FFCFCAE96EF884125FEDCFEE10F37FEF8AAA2F59BF61C6718763E7E5C725E6229BB8E1F8F69AF77D5141F3EB964D1A3372C2617E6DCFC3FEFB677742E2006F147B366436EEE9008E83DE09F09BCDBED82D5AB5643E5C94A043403A64F2F00736C5C90B79FC662EC0E0778DC1E30C5C6D34AA2A08B7204F0E8320C7E08741AF98BFA8C85B04914F80FBC01CF17AF2E7AE89FE6EC7F7C63F92B197DD2EEF3CE98A4454B493DD2759BF6FCCA1217FBACAC60068E1A3AE0F83957299C5F756F734B27EA0A21D293BDE8A9FFBD73D284712EA24ABE5EF905AA9792A0868320B84C1878CC8A90AA29292E82575F590A1528DD050505B060C12D9090608BD2ED3D7A5DA35181D51207B6042B3217071A631674685C751A256655AFAC8D946A542F54C59C96B50A543F051A9DFE1DA321B60555CE473F7BE1AD71FF94E1642953510E3C521BD1D9ACC47E182CE5F9E75CC2575754A8C51A5755E19163EF2C7AE4C69F1F3C5C354090E1968E2EC72DE8F7F5D9B37717ECD8B1934AD36597E5C1B4E9D3515F2B29BB508424DDDE6D87955F7E09274F9E84FEFDB3E1FA1FCF86B8B8B8B33876610F35CCDF837431C00BF88C6E506B74A0407B2011890E4B7B58D2C3521E5135A41483D7A8B407255E081F0BA415F07BD1C9FA5D55A6E18B4FE6CE15CF06C0D23FBF7F4D667AFA377D52D3A6E7E666AE8FD8B4A2630751A80C23870F18784E75B8A11B9EACF3B82D97E7E5BAD6ED28DDDFD165CFEBEA7254B7773B3F1064F9FD1BE65CF71734A2E3B76EDD06870E15426D5D1D5C3F772E58AD169473161805033B766E87FAFA7AB8FAEAAB60DCD8D1D4F845AB9D6F073EA85E5428FD5A8D0D1CA862142021F0AA289522F7023B1A684154844A2E540921A0B10C02AF1C8B9F57F4AF0B54FF7CC93BAFA035F8EB8B8FDFE1EC2571A0A0D4105D006238D7475D2252FEDB95ABB70E9F75F5E4E27326E19F6F3854842A6178674BA7BFA5AD6B331F10DFF8E54FE77E1DF26DE04455F3E886D6AE7D7BF6EEF36FDEB4592D083CAA0F0E6620B823468CA0AA8480EA75BBA92EF7793D1404638C0174061D18D0E8720AC5194E54D8818A069E80EBF57828782A542F3D122E87245E8C92EE334B21FA7A44D2855005D08AB08BBCF0265E7E75F113B7D652095FBA469D99ADF76466A4BF9233A8CF63E1DF575272224594E5BAFAFAC697665E9BFFC43903FCED15DB720C264331EA554E72FA5D55279B0C0840236270087321C3C885C3C766DFD5E170CEACABAA72ACDFB0CEE8F7FBE9CBF7C7D6367DFA0C888F8F8BF075A2CFC978D480CF8FBC3E00BC1040FDAD069D9E503C3555471166735A7C26ECA106C8F750CD908AC5973E0B73391DE868A98FFA2C844B214AEA692508983F1578E1E5179E5C78E09BB5DB6B33D3D38A730667CE8C06E750F1F1AD75F58D7DAEBB363F132216EC7B3AB72B3F79BBADE8586D312F88F3B5068D9C94616DF30684553E975F42899D8DC8DCDBD2D8A5894D8C33F82568CEEED7575B5B53C391976B47AE7EE0C07EF07A7D9092829EA3820B05DE18541368E850BA8DC61850222F97F17E3F5682CFEB25DC88727AE26011E9A715452B2C784C2A45C9916749B4E490F313EE1FED8429143D9F15A8D614BDCEF7187292597C2EA93C5AB2E418AF2A14B958DEBD654FC99556B381B1C49A2C366BEC1FA3C1696A69573B1CAE5BD66FDCB57E4CDED0BA7302F833CF3C0343FBA79E38545EA3F107C4C91AA5C2014A45A21F89859DF7DCCEFAE145348E355A83DAC7033BB1BDBDF5BD5123470EAFADAD65887A21155F57578B8ED34132C60312915713D5122D0E044852015A1D320C8D963A511295389EDE488C6F18D808F0C4A9226347F0610A4ED1E3EDF602BA37F88A68F0D99E6345C8C023C0083A021F049D668655A46B94AC2DD1126F59FAB76F3AD7EC3E7CB4E0F2617450505D6D7BB5CBED7AD4E970F846E70D5B734E3D4D9DBFE117FE00BFADA5D395101BA39591CAAD44E2BCAAC9DBBCA8A8F6C83A9DDEF028DEE6E2B4A6825355956FCC9E33072C9678048900A5041F4AEF375F7F03AF2E7D05CACA8FA34A10E9B084700E3775A242C8778817A9D71B28A80A04953837A85328301C0245682489C390616A6A02205622F97C26653CF35CF8BC364429CF3C56232D0D7BB55A545B0A62E4198341FFAA41A9ACFBC5EFDE7BE1A9C51FC48E1E3D9074A0AC47D77FEEBC792B14E74CC249CAC9C9910F16D6AC1318F1368F9F37F4498EEBCF319AE98DCD4D837C1ECF5FF6ECDEC9A7F7ED7790E7F96B3CBEC0676DCDF5AA8993A664343735D10135642201A1821DA8668A8A0E414D6D1D242526A154EB223A3A14DB8D483F51E36169236182703898D0451FAA29420F515069B880482B3947EC809253F4A812B6B77487ED88E26CEA25E23384243FF4B759FC9C663343639B1D3D1F568BE726E0A5BB37EF2EF624C5990E399C8E5B65AE6EFBF4A9E3ABCE19E0245D3634C3B5BBF85411EAE77B901BD727D98C7764F4CD7CA0EC68F95B5E9F6761E1FE3D57A5A4F5F1A3E1B9A2B9B17DAAD7639F3761E215C6CECE76F4309D60341961F4E809E0B0774163433DECDBB717BA1D4E48494DA3FABD57074628B60EBD460D04812052AF43F543F4361A3670395D54FF931A72DA9D34DC4002643DAA231AC4E8E3E80A89029B0DAB1836729C62314273A713244611140256A1C5F2EA16BB6BB09A15635C4EA7346DCAF8AFCF29E0248D199A59B5EBD009C6C78BF3199659AB5771CF0C1A9CFDDEAF1E59F8C7B7DFFFFC70777747BCD5967859400CC8CDF5D50FA134DE3D7ACCE54A2782D2DCD44859C9848953A0A3AD0DDC48F1EAEB10F8BD7B019B2519B6D0D389214783DFBB22C2D24F540F89CB9BCD6404AC964ABB1F194C45C529E846670B71A2CC83F41113E048A5868D6B04D008C0A7814E8C29F11508ADC5FF92E20C80CE1E880C17D1F3C1CC5A1849E09C2EE7906D85952BA78E1FD67A4E01A7B18495EFEF501812C6BBBDC2148346FD476CC2AF9DA8695DFFFCD3F7ED3D7144BB92E7BAE6235F9EE6770B7FE8EC6C598316FFD661C34732017F006A6BAB511ABD306AEC44E8EA68078FC74D41A93871028A0E158152AD41A7C91AE9B408C656C2C75165889F876B88806F406A99608D873E7D52C0837C1F0D1A6542A41590BFE3C0D644CE113A4A1C20121A09872038561102390434DBD302C8719C410D5D760722A20ADE43EFA580A3B0A0F1EA6AC307A8EED95D5269D9BAAB6CDFE47139DE7306F8E4C993E50DFB4AD731927C47B7CB9B1A6FD4BF88BFFBDD6395CDDBEEB97D6CFD869D879A91DECDF7F85CF12BDE7EF9F7CBFEFA5E8B5AADBDB6FFC04154979FAA3C8120493074C468AA5E3C1E17A0418201D959B061C346D88312EFC3CAB1DA6C549A68502B3AB025877B88A2835D3DBD48245C9C608B47A3AB876E04C98A7E4052A20DE2E3622116D51A89B770687489EC92DF2185228EB224D256415B0309312B82749380AAC3FB1D0E6C352A6DB01530A1CA40E04925383B9AC1E972B3F1B6E431F8E0BBB7ED3DE2DBBAB6AD70F2E43ED2F7069C823E6A907BDBDED20392243EDE69773524C499FF2433F247E5A71AF73CB4E09A355FAFDF75357A9533FEFCD6F29526638CA2B5B569BE5E1F03E9197D910168E15879291A42250C1A3C1C5C2E27747775D160D5FC1BE741C9E152283D7204766EDF011D9D9DD4D812D642632B6701381C5D94C221DC5049A866ACD984CFE8C2BFE1A231756A5069E78812F5BC0A7F4B8891E0B15AADA62D854A301396701282C067A19AB1DBBB111125AD185251A46511D546800F047C505F5B05A999D9485339A2DFAF028D67DED67D474F5D317AF0C9EF0D384993460FAAD9B8FB308F2FFA545BA7FD139BC5BC027FC4C7E5958DC527ABAAD77A3DEEDBDD5E5F9FF85813AA686632828E86330E12129220C66886E3658729EDEA9B350819861B4E9D3A45A5AFE0AA6BA0CBE14063E8802A3CB763E70EA8AEAEA5D3438C26731050392A464E3F47831D029FD24C323B4D4F4080E696362A911A04960DC7EDC3311D361CE16423114E32C093463E69E70A4303682A8D8E1A6DA2CD0449A0EAC9EB7551CF97B4D4785B120DB23141E9B7E0F36EDEB6BF6CECF6DDA507278DCDE9F85E809334654CCEAE09BB8A47A3B43DD8DADEF97F568B9904783ECECCCC5C7FB4F4688CD7EBB93AAB5F3F2BBAE336A273DB5A9AC09A904C014F4ECD40D5E1271DD3782E054848E068E911E4EF56C81E3C0C79B90CFA181395B6E6C626D8BD6B2794949400836AC686EA463E6D0480D8EB382A5E8EE789174924DCE57453692792CD8600259E5810D8E8383EF4AA0806A59C002EA3DE36C41868EBD4E0EF26CE9A015B2E89E9A7F5C9A2AD850D571C432A8DEAF92CACB13BB6EF2BAB9F9837A8E47B014EAE6ED85AB4165D973B50C86628DC35CF18CCC95BD0A47D883AF8C3B2B2B2A9574E2BB02527A7330CBE7466DFFE947B137540F4B956AB8FF4F0C7C659690CE648C921484A4E07F45AE1D4F1A334E01534900C1D205F76F4286CDBBA0D9D29A2E713289852947447832D454515C93388DA20F7777539E8F3B8A8A11E3470C90443684C54074AB812BA51BDF168E0CDB1B1C18A88EE70091BDBA87E8060D7234341C77755320A76F6CE83E56907B61FDE306E5C8EF09D002769EAC461DED55BF6EFC3177ACA19501BEF5F30E3ADE3950DEB513DFC51AD52552424242613BC884A203F3CE0F7D171D8044812FDF32047273D411ED4E54472BCA85E6AAB4FA2940F47A9EA001EEF0D76DD0559CAE4FCA990804ED3CE1DDB61FD86F5D0D1D18506D112F40AC51E90A5D3253D145D240F22FADB8F86D98B15C8D2682513A1FC72A41B057A7AAB3075767420FBF1812DC1D6AB47AB57D7E21915D1033E55510C3B5250713FDA5E58BA79E265833ABED770E5477FB3ECA748AF5E427D3973F1130BBFFE6CFD9E8101BFBCB3AEB62ABEB1A18EBE88C00742A1D0DE9918D2D17979B4240C42C929117C35FDF1AB56AD42DA789CDE47623105053320C664A2CE4E5151216CDFBA1981F3A2379C0BF953A6C0C0810368ECA5B7B3C3F6F228C320C834FAE8A74694C47A206A3C4DB481261575B2FC1834B6B643DED831DFD2E9413A38429D23424F38F85B22944E490A5CF5B33B67EEFA97253C9C665C316AF7371B778F9465E9E12D7B0F7DF4F06DB32ABF5ABD313139396D1C990B999AD607925232408D9248A44FE0F9A024A1340C1D3204468E1C014DCD4DE8FE77405B5B3BB4A37344D4CFF0E123B029F3300069E5942BA751DD79B8A488BE1801EA44C531BC36185B8B17D6AC59053B77EE842E747CF43131F87D3D523EB997AA1122FDA24150099F0E7750C8743C0AF41AB2174E0EBB1D9A9A5AA05F565F0805F0432D20DC4F1EADF3CF94FE5EFDBC2CAB46699FBBABB062EBE523B2EABF13E0247DBD7EF33A49621662254EDFBF7DCDDF04467D97200A8312935269108B1779E4DC26B0907992986947024A7C5D7D2D7D393BBE945A13A467874B8AA9D4252525437A7A063A4436D8BB6737D4D5D662B34E840DEBD6C0C85179909B3B1C01CFA53CB9A9A901860C1D49257FDDDA35505C5C8CECC10B26346A64F65A4FECBC67C45798CD48E8C1845B5C4F571F448E3D2EC2A4AA60E0A0419191084CCF418FEE0F5541AF4EF4B3D804CC6AACA0B9BB0F1DDF3A6E7876FD7702FC9A2B27F83E5FBF7D0FF2B45F78199DCEA85377E08327184DB134D64D7E4AD5A9E3E044708894C7C4982121290D0DA6055A51AA9D48071B1A1A60D2A44954B26D6814CBCBCB90A777231F8FA7AA63DFBE3D9099D98FEA7142CBAC5871C7D1B8EEDAB1155253D321FFCAE9D4E05E39FD5AD88DE74E541C878DEBD6615941C125CF2128885192DE432765AAF24874B317E0789E04C708E069E969D4D69C11EA09C3CF843BD2A3249F3933878047BDA998B7AFA4F28331C3FADAFF65C0499A396D7CC3E76B363B6451FE8DCCB09FE9D4DC0CB3391E1AEA9067EB0885B24057672BF5323B3B5A29DFF6219084B1C4C627A2F427437D5D0D7A8789505D530DBB76111E7E8A823470500E029D8CDEE83E283CB01FF2F3A7C1D6AD1BA854930E8B3E5811A422776DDF0CE3C64F82A3474A60464101E40C190A3BB66F831294F8CD9B36413D562A8BAD880ED10875DF457377821419A2416233C4D851DE1DE0A1AAAA0A62CC66301A4D9141ABA10EC15EC0F7AA841E9DD3638843E7C2928E9CCD326648E617DF097092AE9B3E69DF67AB360F0904F8056693C11E6332C71046D2DDD54E872E9891027A919D90974C4EEB4BC1F6A003D1D258872A26007A633C549F3A410719592C16A8AFAF8346048978A512AB41096E8380CF0343870FA78015EEDF03632F9F0466731C141EDC4BC3C083060F85EAAA4A04E914DC70E37C04BB84C65488CA686C6C8492A262ACAC2D786F17EDF8D01B8C3D928E0892B0028F7686B4AE204A3275C4149C1A555A42EF009BDC23EDC1F26C64236A5014D3339C0482A00FDD73A4E6ABEF0C38491FAC5CB30E1BCE6D6E8F4F4E4E4C3413A3C423232033C4D4F882269474E261AA541A640A5EFA2BE26DC9D80A0CF4B8A6AA025AD0880E46A926DD74DDDDDD340490D2271B5A505793D691929C0A197DFA5203D9DDD5890E9589765CD45457429FBE59785F137476768031C688AAA00F94971D8DFCBE9CDC1C985E70356CDFB615366E5C0F070F1E0097DB0D3A7464880343540EE1D0C48E7422F524F19DE6C606F023174F439B224951A30B2221E59E11C33D91CF338167220D21A27A1859105CDF7B16DBFCBB9E1AC1728A9DB171B1FE9C410362DDCE2E0497A7439363CC564AFD8833E343AEDDD1DA40A54F81C63506A5ADB3A38D46FDD4C8709CAE606BC81B330E9C7E064A0AF70123F170ED8F66F572727C4482C95818745248BCF6707121545556800969E46DB7DF036FFCE9555A01E45E92A621C5CCEE3F183E78FF1DACD0CEC8EF36A3DAE897D51FAF0DC0DC9FF65E11D7BDA6E20428504072860C89F4CFF61AAC7DC650EDB304D9221EB1DCE39CE131DA9BDAEF25E1245D3FF3CAE68F3E5BBB031D8C5BDB3B3A039999D96A03BAF51C36CB80DF833F58814C454BA7A7F83C4EFA0224723770407F3A148EF4E61315449AF6B06123C1844038DC7E2AE1E8AA800EAF11A0086D241C3E25D10A870F97D0F08146A3436AD9426715930018A1A344E590A1D661BE5D75AA1206237FCFC8EC0B474B0F477EB70F85A009A5B9F4C861E4F95B68CCBEA5A5958EEA25D24D04A5D7F8761AC10C1B58A927AC2CCB675539D15A3F7C7470FF5ECDF7069CA479B3A6D52EFFF49BCD3C2FDCDC884019F55A8EB8D82410A4E054A151A9A4F7C64F3B0B88CB4F00B4210D2C416A4862D8B194D629E1144AABC6104B01EF6E6F41B0DB11987AB0209B212F5F831E6A7CBC050EA04E47FE4F3B1D9A9BEAE0C1071E0493110D769C0DD54A29E5DC0CF52E65748464C8199C8BA07EFB9C2CC2B0482F1519D2B76DCB66B41307904D355255A721BD4F4A550FF0611523F51E4916613C209FA6EF01B66C5C0B07F7ED6E3D2780D351A7B367342CFFE8EBF58224DE80F44FADD1A8580543E8970B25DD4B6B59AB3793E16734FC49FA41C9E859A2B789CA2173E03BD050EAD09151E94C14709079AA6B49183677C84864329570E2C431183B6E024A6609B4B63441DFAC814028E9375F7F498764F4EBD71759501272F96A3ABE85804ED8CDE8B197C336D4E5FF6CF220016840434E866C930A282E3A440D713BA1B62E17558D1CB6023A223824F1B2D47B2A8ED3E98413C7CB60EBA60D28DD7B20353DB3E49C4E8CFDF2C3578B66DCF4E064D4B99B4ACB8EDBFAF5EDC324D9E2E98FE37D4E90952236592BDED9462BA1012597A815C24CC2DC5543A6BA84120D03A0BE4F424926C1A35634B0A463B9125BC1C0C1432873292EDA874C260FF89CE1B01EB9F881FD0760E215F970DB1DF7C09E5D3BE1D0C1FD94859071293AC2943CFFFC4463121A50D20EEC209B494D8C85F26347A16CE5B1907E67693FAEC91C4B3BA4A3150979A7F6D6D6881D484BCFF4A7F5CB9A75CE6722AFFDE0B5A3D7DC78CF2459546D3E71E2640AA18AFDFAA653C044D107280BA0335A80757652891E3E7214682AB534DE41EE5113F6101EBA816E3F898D2425A7A0B438A84A22D24AE22E63C65D01C70DA5D0854CE6E8E14218983312C41163F0F800ACFC6205F4416633FCB231C864FAC3DEDDDB692B3223307EAC682200913133A4EB0E6D8EC160A09D202AB586C679880B4FEE230138B79374DD39A9D43EF79B5FC1AF7EFD22553DC42E91902EC9A72703B22AE21D2725A7BAF53106B52D3965E6D3F75DDF71DEE6DA4F9F797726AB516C46E9E8830C40189A33806B43EAE570B8292330C4C481DFDB0D696969D46527FA93BC20FE40F0884A388C2C25CEA4A36C272777040450C20E171F88B8E643865D064DCDAD50575D413F1335923D6828D4A2DA395E561C041525ABFF801C3A1920774026EC3B5088AAAA195B9909743126D4CD3108B88A3A65C4A0FB11DC53959574950952C143870C86B9D7CF453A59082B3EF904DCC890E65E3F1B264E9E0A4B5E7C893A6F3D332758E88B34353D231352D2322441105AD1DBFE5B4E4E6E812FC0AF7FF8B6AB9EF897A385FF6ACAFFF1DDA9E82013D0B3636262BC68F4B4E4AF91261A176BA6B173A58287B4D4341AAC2220A5A6A54397874C55D90FD658233DD7376B00BE1007A5250723805F3E7A04D4B479E064085C92492747C1B429089C03D41C83863896EA7722B976A78FB20BD22152555B0747CBCB917337436B6B336467A6C2BC1F5F4780828ACA6A58B3768363D7CE1DDD6803E4ACEC6CF52D37DD1CAF54ABD94F57ACE8282A3AD4B1F0F63BAC896999E637DF78ED90A3ABAB6DC2E47C7D6EEEF0A1A8621887DDFE81C4C0ABBF7C78FE89E55FEE7AD6EBF3CF6A603BF216CD9D1B38AF80A3DED261D17FE19D0F1B5B9D8137784118C4D1902A87EC450D23517A946A32EA49097DD2129011D4D2380B31A4CD5D3E28473591603151209393D3418DCE52D991C208B803B2FB825BD24245E9C15E61E01BAF9F0513C78F86B21355D08106AEB6BE01BDD826A8470A4886568CBA6C141ADDCBC185AA6E2B1AC303FBF7D19E2882439F8C74B8EAEAAB1B72860C3738DC3ED1E1F1FEB9B3CBBB34736C4ABBAE39F02B3FCF3F812DED0B97C43EA46199652EA76BA28A5308D80ADD9228BFA40A706F2F5C38992E1EBC62DDC1D1019F6F8BD7E31F77D7FCA987BF533CFC5F047C3416FB162CBC6BEFCF9E7E76ACDDE1149A9ADBB9F6CE2E59ADD6B4A381312015D312EFCEC7B3608E51D2D57932FA64425DAB134E9697802D3E08789CC586942F0ECA8E16F548B3250E54C62404FC402822183C4FECC09CEB6F84FA8666D8B8EEAB33E2F2F41EB40B23868F8431C85C881EDEB16307ECDFBB1B9D306F35FEE6BC17962D71CB4ED53C87CB7B8FD3E5CD73BB1C1F3BDC8EDF8FC91D22F342E0BD002F64122242665BB7B475B4D5DA5B47FCE9C9FB22F3F3BFF9A650E7E7A422E4FA7FBD79D6C4257F7762ECB99C0649F9ADDF2B12D38D2073494909101B1FCFF8FDBCD5171040AD47DA87A5CFCF531D6D8C4F91BA5D3C4B3A3148004CA3D7D2419F846E11179C74EE0A42705883CBED411D1FA46424B217EE79216E3F497674968881EDD52B13CA04F483C85E48CE41FD3E0ABDDB71E326C80E976B8B5EA355CE1D378EC421DE25F9F7EFAECBC19F7F0F2B319BF7171539D392122DB1B1E676AF2F9084C0AF73BA3C9981B6EE8FEFBDF7DE6BC22BC3B1066E09E3F3B79E2C99F85B98F50F66229F6BC0FDBE8018264BA1C01BC8D1339AC353CA1154BF20B1A47B8EF42B2A9112DA5D7EDA5517F0778270AA26AA533938D09E67EAA1A3DB497BE9C9485CC274FC81E06A780E6737652084BA7D5BA6FDABE869A2F325174CBFFA95FE03730AD0D855BDFEFEFA7765BFFCD2FD774E3FD9BF5FB257F28B1A41143475C8630F979577A151D5700CBB64ECE5E36758E262937D5E97ED64ABF62D6CD50B36ED2D9F867F7E81C8C2B0458B40FA8753BFCF5532994C0272D75D1A8DD21EA3D76EA8A9A9D0236F48D11B8C49889B2A7A506764885B382824475546C84D26E004FB4AFDB40C60D9802C2110FAECC75681D40062628C41C7059D13C2E119463C6BAC3A3AE3B37FF9C22FEE7F8E68C2BF7CB499C8E4D3A2423CFEE7E51BEB2DF1A664A58AFB4AC128263C7CFBCC830033E1C6BB9F18647774DFFDE9671FC5988DE6E2E123C75C9E3D20E7861FCD7F008D01CCC0C73C36B76074D5DF9DA779AE935EAF2756797CF1A1C2F284B898AC4D4DF5635E58F2878FD1907FF0E2E2DFFE5256A8D2517D66A04620B3C73210DD0CC4368365988124721A69153D13FB2395111DAB90C347A12929B41590C1FF7EF7B7AA94506EC1FC2EE637F76CFABC225CF783B2D31A79416AB03B5CC31A9BDB3495350D9C208A465EE04DBF7FFE05839F0513B21012F95B81C6728BCB619F5655793235DE6A4B199C3BFCCEAD5B7756FEFAC9BBDEFC871363CF75C297F793A1C0E8DE0E6C6969E99A3D73FAFD8B97BC7C952CB37B1E7FFC27F69347763C82B7ED3ECDD0B22B56EF721D3A72425BB277D3523EE0CF40E53D946515699C5A23AB545A0FC3A9C8B0A8D8E81600518340C9842E94BEA0E7C7853B00D8D05006D1CBB0D2418695D7B02A2865D1F1554AFCD4A9B36E9F933772C4D03163F226A17394545A5A56B761E3C643ADADAD1A9B2D51EE9B3D68B25AA3BDB28BF7509B22899155327C58DAF1B3A3A1AEBAD2EFF3269BCCD6FFFD871363CF474A4F4F4F46D01BC8F1FD0F3CB8E7BE071ECE13FCC280B1053FB2B092BC057178A9A264C733B9B9B9AAEEEE6E32877E1CFE96BBCC71F183BB3B3B08529D0CC02A522908DAEEFAFAFAD2F0E2EAF9F31E30303E77467375D9D32228862A547A190D6712EA70737A46BA3461627EA0B0F0905B94240E7F830681D106D76F092D25224A7EB4050EB4058EF8D8386FFE942B4C4909367543734BCBDAB5EB0FB43537B7E0771D3201134407523E873531516E6EACAE6744D6C1F201BB5E2F3A0E1E3CF82F2F9F7ADE004F4949B1D0A009A6A4A4A443EB376D1BE9F3F16F8FBE2CF7574A7DDC830A95F171DED75D2378BA924206F614E60137DC7A4F1168E3CD9FFC653151355720D07BCFF6FCD4D45452412BB5F199789D9949467A91F17FF9932797EB8DA6ED07F717EE42436C9719D121F2BC038D985D0192A3095C8E8AD5ABFDF06F4AE70D70ABD51AA352A9C253B0FD7B0F1449AC42A99A3DF32A45437D5D3DA78D6D51EA62478ABCEF39DED9F437FC1D64A0D1938D8D8D7F0E55D8AB58CC42E91E81A0779CFE6CB55A5DCC2AD52FA9629297A2CAF0C5184D061227993D6BD691FE83F2F217CC1EDD013FC074DE56754B4848889622F5AAAFBF3C8AE029DE7CF7C3CF1A1A1AD26A4E968E921966B142A9794AA132ACC36BDF84C12609DDF29F92168295F03E73DAEC5AACC857F0FC7E754C525230FEC445168A542A55F61F2AD8E715F0D2D2D240744FEBC71F7DC407D98B61D6E1E38D03C87165C9F69F8BBCB75A69B0F6D1C4657C7AFAF7D1E8CEC3C3CB51DA9F0E9F4F4E4E268B804D47097F04DDA17B4211BF88F16715CC29F801A7F3BD6E61207C5051717CA040C6890563578B426AE34EDED96C43AF07F530FB6156EEA4F1D15FAEADAD25D3B2EF41697E1675F654628851D897E1E73B1943CA54BC96480157A94C51EE56C5C50C7844AD2048B1BB77EE381A22CF373CF6D4A2EBF1E835CC77303E119D053889EC7B55F6F02B46443F00D5CFC708F29BF8FD0F90717C88E5A7A87AD622D97BB027A6AD8C48B8D3EED87B49C2236A65793852CF8E1C39EA0504F20D34889F5654EC752858F16A821752B1757D874D18701A3F7F24B4BAE6689FCFF744F6B0494823E5F0F21C029DCB1F4A9B567F557C49C243A9E8D0C1CCF071FF8139FD46E75F1799AA71BC78770330D255C426B232B3B1EFE0F191F54B789EEF87A0C7061D1BEDD3D85C22D28D4E511B44D9548671D92F5AC011A45E802370A9C78F959D0A01C5A4A6A4DED36FE8C4D7468D1A45C7119F2CD9550A923C1B0F6DAC82DDD077C8D884ECEC6C351A4FB200EF2B64A564A4803F454B7C730F2B51462F65EDFB2ECEC87F0DE0A806CE7030567CB43C327477F6ECD943949CE2C7DD01EDD6812327D0499C274B776E41406F0706B25846B9DEE3F5BF4CEA0E69E2AF50FDBCAB3458C89C77550470B53A9A323AE0079E2EA84A2169E78EADD688B15372CC35D7FC88AC8079B9283047B2864DDC9C3564E2878C0CA31145B2D6D450B529798ECA98B0CC0771797D874C226EFCE0E8E7A9D51A734F93FAE103CE5D68C03D6EF7C0B6B6D6568331D6463E175C357DF8EAD5AB6A50DD64207BC90F0F869423BC5A99080AE56BE40C1B42B517E02A553C899F87BE74D14B78E06CAA7DE5E71F47564A23633FAE9B35E73B798664EABDA2C7E721957449A59CEDE4E6F56B74D19FC74D9830123DC763FFEAC3159CB2E1B40AB8A452CE76B2A3BD6D88DBED72B39C5A1F6233F03F0F3D1A73ACBCACC8E97407DC2E97E87239243288C8EFF332814080E3F900270A82529248B855D2A241D661259D4601E58B1B70420BBF251AA9DAB261CDA1A957CD1A1B0976D912528CA6B814AF9FA7E3B4C90209C161CEA1CD8D7C3D2519F9EA0F9E8F279F7B249CB9B855CAD9686138AD5DF5C539DFA9F5920EFF169542525D4D750E59C0F41C437E49C2FFCE6553E1BE5D47CEA90A93D98B1B70D4E181BF777DCDD79F3ACFE5DF932EB114F8BB7D87E5A525C31E7FF0B6BD3ABD81D7EA0C92566F94B57A9342A337726A8D56CD29D55A8552656059CE88EDC57886D773062FBFC8590A5129675B7B36AA0518DA5A9A4684EE55874E0BAC42E10C5941B2538A9961593BDEE06118859B53A9EB580557A754AA9A39B536A0546A44BA002EABE444108FFDD0013FAFC395535353E3054130711C1740D79DD768348117FFF4E15788D0047F40024A01BD3E387C603B6CFCF25DFA1D4B623AE44DBE2E3866DBEB85BDEB3F046B6A169DF349569DD09A93C9EE80F7551ED9F906FC07A6F32AE1A1DEF65E6EFB575B0E8B1E9F1F9B3F1FB5F6AC74568E47FE21AE3B19C246162890E13F7FFFE67FDB5E6CD1E085E7549E8138592655A1A433C7C80C83E81156FFA9E982ED36484658399DCE89B7DEFB988F6195553E3F2FF8FC7E3180B9A1E604E9044EA56E7F4B9DB4E1B3653CEA6E36A4C339BED5E7A333F224492D042A9A1E7862F188FF54C02FC87E9A64CC60BF21133E92C5C02CDE6BB793AD5C104C9F1870915E777DF6E01174F22C1AC47A519434785F7C777B23D3103587263A3DFFFAA76448F36FEE9A33F1579724FC2CA95FEE04D26B339751A84065B05A422A63A9AFD3BD84E394AFCEBCE5A1D964806420E04F0D2EF2C84BD3AEC873BBDD1EE7E60DAB767CF0F6EB645C21F9ADE99817D231E222FCF2B50FB7B81E9C9FBFE4928447A5ACA113C9609D65A79DEE526AD5D9E5FB3676FCE8E687975A2DD6598618BD353E21558980B304F42183FAD5272725A40604D12788FCD06B270DAF9871DDBC01C3474D7C373B67E418B26F045DB559E01F7CECB6E97FBC643423CE0864467DA4138E62CDF1BF2160CFBFE7E98549C9A90F1A4CE654A7DB63DFB8E64B9FC0F30299165E587214A59D6F4369D68822D021706BBFFCE4F880A19719A5A8BDDD44515CFAFC1B2B175E023CECC528B817438734761D67B556C883125E5BF0D073A31252525F4F484A018B2DB165F7D68DDD4DF5B53A97D3FE1099E343A6866FDBBD0FB195645194277FB4F6E09D21FF7DB918B55227AA22068DE99BCFBEFAC9BC8B1EF0EC9193ACAC246CC143B23653776CBC45939898F6B33C63766C4A5AEA1728DD1A5B6232DFD9D57137DAD5FE3126F3A9D79E7BE40D2110789A47D0EBEB1B1230178696C378E9CDAFF625F899C0F2C8D691F88F288BE5F859218AC2FB3F7FE96FD75EB480670FCB4F9505790723C370542CC546636C464262CAD62443CE6A4B52D28AC4E4D4D4E4442B24598C3FD9B2F61B3D592DC29A9074907CF74F8B7FF23CAA961232BF7DCBB66D23B0AC45D06315A2F4EAFFCC9A5C8D127E3CB4512A2B8BD27EBCB6038F95A85E56FCE4D7CBA65E748067E55E9E258340B64A2443D6B669B4DA6108A6684D4C7ED43A40F7726272CAA4B4C438484D885D7E7DC1654BAD09B6C9A856C8121D07C3CF403D5E42540BBAFE8AF5EBD7A22C4BC818C5796F7CBCF55A3CDE49540D9E6AC2F22690F887B1DC43BBDF64E9CB077EF1EAE5170DE059C3C6E702ABD8813C9B0C552333702D166B82CE6A4B406013872724243F8840437A62EC61639AF19E9933EFD5C5C7275C4D96DDC3EB11E22D06026544C211F4E2FABABACC53A72A0FD015D924F94F581623B80C6AF763083487E71E577B1433F03C4ABBA4972571F5BD8FBF34F2BF1EF07EB9E3F31899DD06741831D381A097C5C55B73622DD6DA78ABE52BAB35F1F544AB0952ACA6AE745BEC9CCB92923C8664CBF371166B1A5529F10991D5E791AC1C250B4D0A82B0116962D9E6756BF2FCBCFF24829A86B27E75D060CA3928F55FE0F18D0EB5AF9F24BAA76345A0CE974C8224AC5FF8E06F72FE6B01CF1E3AE90A86653721AB279BB039419616ABD4EA79E6B878B266E133E638DBBBF171268DC56CF058638DD7D86CA6CAF977FF7CA239CEF230560A9DDE1D67B545B6680C08DE3262380381C0B000CFDFEDF3FB986F3EFB9845307994ECE9A10952B6A00E17D15B9216FF7ED123DD5E4E2CC00A299604291E0DEAC679773D95F55F0778BF2193AE91415E8B8731983DE84BDD042CF3A0D11CCB1A4DE6CF4D26F38D3146739A51AFE50D06F58F3352E2F6CCBCF7599DD11CF796C91CC79863E3C1126706ABD912013CAF7F42354AB817194BDE9EF51FED41F05F6FA8AFED7BBCECF05E54DE6C78636B5196664882FC073C57F0D02F5F9BF2E6A2473BFD5EF14ABC7604EFC196266F9A79DB23E9FF3580670F99308F61E42FF0902CE5E347523C1B9D9DB94A4E99618831DA31B7EAF48602AD562BA954DC82BCC17D48C58059CDBE6030C664C5184D274DA698B638939E2FDBBBA29B09A5679E7946E6797F391A4FF3D0F133FABB79F1E7087EDDC6D55F5EEEF7FB8E87793892F4C9D89A3E4770DB5077D3BD40DF7DEDA90E0578A7622594E13DE98C049BAE99F740E27F3CE008F69D3243B7B425C38D05D4DB3702C39A91732F4090C992471B341AED3D4A950A14203F7C5DFEB04F48206BF6ED8F4ED6E9740F69757A41A5523D67D0A9AD46BDBA0D41E642CF22A36355017FE038D5E37E617CC5BE35BCCFE77B449625C5AACF3F5422070FD0BD1D10745EE46F4603FB6B3CCEBBEB272FCE2515F6F6D217DA85003F152BE218029F856D61E395736E8BFF41031E1236F6B4AC20396BC8C49F20D86F869E4148DA1D6E8F6337EAF0D7C977D51A6DB552A5CE57701CBB73CBBA2D4B9E7D820CBED766650DB368D5FAB7542A352309C26F253E904036B1661968275E3F66020A0970597D1E571DD1E37CC03F113F27D71CDB5B8220AF6A6F6BED7BA2FC707144CA2569C19E2DDF7C8ECE0F4ABEF89C3527878CE852AE78E7A50E8FBDBB00CF55E07D3992C8AECFCF9F6D66A2D20F0670026A48D2C8384043483FD3DC3767EC7328C5BF0DF714887EDF4FAB4A776F5029557710EF9D5528C8CC60B38263E30F17EE3F545D5991CF2A55AB878D2BF84BCA809CB7388ECB0CF8BDD56FFDFEC916AFD7753B099F55575799AD56EB0B369BED958484843F637EDFDE5E378748B828F8E7272525EDC15CE2E9AC194A18F9FE5DDBF33A5A9B9D6485384996D13627FCBCAEEAC4726C01D9E386E73F14AAB4D8752BDF7237569DB80EBF538DC08FE455EA352983C6C4855A1287EFC98584E88274C69C355A18FAE34427DB341A4D1ACBB2F108928E74FA9A12FADEA454EBAF88B00977D73E9FB3B51AEFD1EBE23326B10A9591AC254E369706C9E7ABAA38C6721A938A2C0A138F4C2498092BB192AA82B4CCFE608B37C3B1A25DF0CEB2977B4B834205DAB80CBA5C87B723B83803D2C4662FCF24DA52B341ABD3C09482EBE81276F53515F0D5F23FC19CDB1E918997F4F5077FDC8F1C9EEC10482600D4596C299E0123273D83AD2A0955D3AEB2C3DB16FAC9025CC159D064D60419614086E609E71370EEEF48BEE1BE877FB66C40CEB002B23E6C4B733374393DE0707AE8FAB04EA71DFCCE76107D5D63509AC7B01CD9704819591ED4D1D50C2DD5651AD25F29FA1DA0D25BE8E28D4445903550C886A7C6D838BA4D413BBE734353E3195D6D9244F6E40CAE590B2CE9DB0C5077DED9D50E7A631CF27013141FD809B923C78235310DCC482FCB4BF632B9A32629FA0D1A31EEF8E17D917D91DB5B1BC0B9ED2B183C6292CC2894E3535207EDAF2ADFBF83E5B826BDDED4A2D6EA0FB735D56C42A1729D4FD0BF0D70A24E4C6A8D263E7B602EA4F71D4897E2F78562D0FE80407377471B74B637D1D241969A7379303BC0E3EC82F6FA0A088F6413FD5E605401DAF34EF6D9A93976808656474DB80A624CB1741794CE2E3B915E2A6912411A1B0FBE7880F138121120B59F976A031E7743E89EC6F6C653D6A48C81C94D0D754C6A661698CD161837F95AA8AE3C4AB7AE197BC55560B525D1FD1F944A34DA98D1A690C51D198DCE8055981B9B373E7F6670F926019A6A4FB621E064D928CFBF43C2C97983C7ED56939D3FC84A683CD9DB80ACB12D105620D3ED1B5904CF149780D2160BB6004FB72020B16CDE8F0E0B8D837824A7BD8BF7B81D8CC7E3519175073D2E87D7DEDDBD0FA5DCE9F538AFE59047825E2724252634E6175C5BA83398543A9D5EA3D6EAD46AAD562DCB0A05A754E9355ABD5AA5D5A6B30AA50633D9CA4443367813459E6E0D46FE76BCCD06C3464FA4C7641F06B28C9310DA2996F4FC93D5FB453E6AF758FCADE1ADDAB11E894E27D36188F10EFC3BBAD8D89AEA539507F6EEC860512C546A3D5D3D510CC633220B7B053B01A4C8025EE16D702908028F5FE5D4641177B26C68907104B4E9FD474C262B303FF6BF0F9005FF14822829045ECCE4453193AC5ECF93E7D0FD3885E0661674230B2154D9B497079FE5A325CDC1BF15049A8048C0A565E898185E51085D17E89A2751FB24D3D101E8D1D2567DBEBB1DBFEDE14417D8D7AD5AF909E613A4E651B7A98CA6589D39CE6A4035A04749D461D3D421CFD673288B2AB4A4686B5511B0235214DAFE3CBC21B4107A51ACA866B40B8499F1545509A1325869013E789F100286A7CF14233BA804AF05F7580B4B69A414446A68116831E0F761C3F263A3F38958D9E83BF904325200FF41FCFDE41C19C4CBFBBCEE13A1F796FE5D809340D2C1909537A13ED5D8BB3B39CCAAD0F748135447392A9C0A95BED16C8943A7270EC5DACC716A23F27013CB2A62509209A53420502C019B9023B26A32912E9E564A689712215812B0FC7E848626546A0172EC0B9043F23FF9E8F3797DC41BF263E9F579B0F4F87C1EB7CFEB7523DB74F9052140DE23B4B45990C24691022664ABC839B2206D35E6A6D0BB5FF84EE410350C03CB85321BCA5CD4B530F0AA505647654D28D3EB481D352AAD2E5EADD6C56BF5A6B8B1634629BC1E97CFE574F99C2E97D7E5747890FD78ED5D9DEE00591A39F8F262A88C3E8E3E279C76FD6C395A724F976039749D8C67EC26BD53F25987829D67C0CF02FE697DC3114989CE8AA8CA50444BFF69A526748D3D0D94D30192429FA34BE92C80CAA1F372D43DF259CAB3497BD4E272B2F86F717CFEA5079CE91E337F2747574AF8381A48294A02E52889FC5690A0F7EE17A75F3F6B922FC4E8A7F305F877A890E84A816F010C7EA8807DDFF4FF66C1B88A7AF294030000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (143,1,'Satellite_antenna_(24)',0x89504E470D0A1A0A0000000D49484452000000110000001808060000001C6216320000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000003FC49444154388D95D3794C1B54180070A6FE41CC8CC68861D06511A8225737E860CA61718C411D0B63D432815E2B940E702D2D1490E3D19663D09672761468A165B68E32BAD652983041CB14E4DA509630022E0436171A679464F1C86735D18415DDFA92EF9F97EFFDDEF57D6E00E0E6423CEF46223DFBF8BC2B801BF7230967B7F9A75A4C2092C5AC12E9322DBFC2E432B2B8B8B2DF6C9DC8E797D724895AFB4D3902E94606837BCA09718C3D2733B9C55CD1C5C60A999ECE1776442004CFE8AE588966CB78F6CCCCD2BEBF123D3C3CF61249CC630AA5FE84135284A40917DAF460B8360BBAA16968D58E80A8B9EF617983DA2AA8ED3C4943C8FD9FE4A4147AA8B25B9FE684F40C4CB0CE17D7CE5F328E83C6300CC6911B30FAD5120C8ECE81D6FC35C8B5A3DBA8F993410E52BC9B9C4C7BA9476B4CECD65CC5EF400CD766B49DBD2395D9E7D1ADD2EA36F8626A09EEACDD87B5F52DF86E65136C7377E0EAF505E81AB0419DD2FC796B777F616FDF60E20E04A9D5EE3D83364141556B39B74CF6632A9503151714B070FB7B7860FF09EEDDDF82E5B54D985E5C05EB978BA01D9C80E6DE4F674B6A54113B7E878BDA7D9A3456366AE8B29756774051550B9C20B300352861FAD60AACAE3F80F57B7658BEFB038C4DDE04E3D81C745FB1417DA74581107AEEDF23D10BC46F37761AB685521588656A90B4E9A0A0A211CE308B80CCE041B55C0DA3B679B87EE3264CCEAFC0B0ED5BD059A741A2B26877BC321FB5C8EADB74BF8BA4DD206BD700F55CE9DF1023BF0288A94CC08644432289098555CD20EF1A00459F1558FCDA6DA702CBE1A1CE2AA9EA61EFE521601708A11849E01C5FE4B8A21C280E348355B841CB2DFFAC48D8369E9C995FEFD898E284B073731B9BBA06142D1ACBED6C7ECD462ABDE0979804F21F241AC79E708A3E56D7AA93D4B6E8258C7C6139955D56BD6BD9E3703883A3CEEB0EE28F94797A7AC61EC00653F1846473480401131848D8EBC8D9F3C4DEF1F2F21AE950E9477D8322C907B00199BEC191C6C0C3F1EAFFEBB1DD10339DC99E7887983EE11F16BBE01F1A3B1B181E277309F1F6F63660B1AF2FB65F1AB60BEA54BFA5507910141E8F5C4230188C5F0EB7CC820B3BB2E51F74683320F4AD529FB0B8175D42FC8222CF061C3EDA97C5AB19975EFCB8A7593B6C4232ADDF53233EC131C17E415153FD23534A9640F2E159AED824510F7DC31377A8D29908F344C42F243AD437245A4F620AA6480CBE547BD954EB7F30AA8992573949CDAB9427677279618433AFFC27924ECF99A5E595FD4A7C3FEB113EEAB83D2A3EC5CEE694AC7EC0C85B4BA1E4DD4DCB126C1F4DCAF839E638E911C6E74DF1AE8863B83BC273DF7E9F88D7DEC0D10270E155A7D328A263EF9DE68647C751B08187125F7ED50BEFC8F177C40B8F237F02F0AAF9D1B06934A70000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (144,1,'Satellite_antenna_(48)',0x89504E470D0A1A0A0000000D49484452000000220000003008060000007459A8520000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000C6E4944415458C3C598095053771EC7AD47AF75773BD3BAADB2A81C1594AB881787821541398A1A109443E494FB902B908410081002091042C20D01C21D8EC81141C211300A72CB550101B76245EBB15D8FAABFFD278BDD76C65AA653DACCFCE665DE7BF9BFCFFB7D7FD73FAB0060D54A9AA2E2DEBF2DE7BE1585286FEE555BB56AD53B7F2AC81E636B0D16B709B3DCFB5704C2CACA6A0DAFA57F0AE31414FFA780EC3530DF77E0886D1723ABA434965DFDC0C2C653F60F07B1B4F324D9B8629FD3F20550D974F58778764D1F3E8E2D4217FF9818A9AB6B974BCB28CCC829A84CF0094F48CCAFE97E30303E0F654D3DE089A5C3F153EE67571A64F5D0C8B45753B3883E3030492A2F6FDE2C39BF5D7D9783A56360CB3187806F34B48FBE30B2B06B5F3190FAFACE6D97C543992D2D623F51F780777939AC797D4D56565661C3860DEB25DF43F0143A2E3A39974824AE5E16889696D63A8CE3F92A12A3EC3FB4828BCF13721A162839F57D6456750B31B52C0B9BC8B10F8DCFD85C5E5EBE26AF9017C8AB6B8962B08AC2AAAA0407DEB6B80484109D729657D7AABF2C103D438C537C7A1914D75F81E20B5780537719F26ABA20B3B213982542A0732E426C7A15C4A5143CC2C7670B4349C9D5386A96DCAF2D1E82A304F3F942E5DA3A217D59205832B3CC23880C35AD0350D736087C6475C241A8BED42F0DBAD8D442A0B2CA004FCD87481A071272EA219A59F52422B1A83C303AF32B37B78C756F5A3C989080E9EB1BD3AFE1B7664ABCF95610F1E0CC3E02ADD4C2D2DEB32D84940A82AEEB70493C066D3D13C0AD1502363A15A56337348A46A0B4A11BB8F56228E48BA5DE4A29BA0409D917208A51B1884DE0A4FB93D8DA3F5D3C0C9FA4D9D737EE5CC3175A8BC5C387DF0AC26F1DC8EDEE9FC2722A5BD39D7DF1F7DC034970B1FB3A64732F407C6A1EF40CCF40DFE82CF45E9F05F1D03408C5A320100DC385F621A8B8784D2A6346790792AF19E2326A81402FED0D2267DBA0005D1B1A1AFFF7BEFE89583E9FFFE165F170CA5B41AA04BDC3B5825E5152129F54C613F15CFD2367AD9D02A0B846081DBD1320EA1D879EA129189E9883C99B0B30816C68721E7A47A6A1ABFF06B420EF49A494489857DD056928A6A8390D404AABB889A572FCAFF68E66491E844098BF24A1148456DEFD01B7FE8A38B7AA2B3110CF748C67F32EF961298FBF34B3059FB05868EA18907A6474EA1BB831BB00F3B7EFC1EDBB0F607EE13EDC98BB036353B7E11ABADE79ED6B6842B2F25AFAA4D2B1CBDB016520D40AC4CFF0B4A2B816E155DB5002D5F4ADC14AC96954CAABEEAEA6E7569F720DA6B0FCB0547A0889F1EAAC370E2C4E7900919A09A2BE49E4895B3035FF2D0279088BF71FC39DBBF7616C720686C7914DCC423F02BA3C30052D97C7A016053E7A4110B40F4072610BC467D52E62A3525A7FA9A6FCF8859C5E6D975F258AE535F6EAD97B93F8FED884227C7C26F8E3E86066ED062E3E382950DBD5B125A0BBB0B0F8101E7FFF14EEDD7F0073FFBA03376FDD81D1AFE7A1EFFA0C7423D98457C6A0FDF208E4F33A501CB50329291FC86C5E3F3185ABF7D6CA8AA717538BF9DD0EC4A4FC18EF50F295B068064A5D2E442773C12B3806DC505737904A1607175A7BA07F6C4E1A3373B7EF232F7D876090B716FF27DBE4CD3B20E939E2FE4928AE6D834AC155C82C6D0176599B34B0C9AC9A2CB78CFFC7CCCF400202681F04C7E6B2CBEBBB8F24A47317A312732098988ABC9204D149B9109BC2014B071F38E5721E02D0393BF750C82B1748B36970621EC667166072E6364CA1D899BE75570A3938360B459517A5E5A0A173182A97328D55D60E49F94DAD447AF5476FEC352E2194EDBE84346C4A76C5934CAE00C82985104E4E87480A0B92585C28A868064A5A316063981095988F643B072627DDE07C240D7802315C1E9C826B28D507C6E7A47083C82BACBC4A100F4E437BCFA4B44ED5A042C96DB80A393C11A416B75EA715F065DE18C1F65E51F671A9855F27A69748BD40A4E600920B12985C54E0181043CF8363B65E808BCB84486A2EA06E0B67BDC2E1738D036079C617A29272A0BE6D002E5D1E45360271C93928D86F407BEFA4B45836768E48614A1B7BA4AD845174A9EA170B8C935F74661CA3E8313DAB0A68993C08426F1C43CF85E0C8246071F8606E730E92D89590945101B8F81C303BE90A2656EEA0A96B02279D824079E741386AE902BEE154E90BD4770C4113AACE12887A540C2559259149D2DF621825CFDFDA88AC5D42737171ECC754562990933940CF2805FFF078A0300BE108C609C2A299088C068EDE04F00EA30081920587CC1D90772240414DEF67A6BAD718010680FBF918F04170A13148EEC43CF00AA382BEC9E91BBF3A7B58D8FAE4F94724DE0A21A521990A2121AD1018B95580B1F706122D0F6C5DCF4B173FE38503FB73E1E0131A0B6C4E2DF8A1879D3E87035F2C054E9CF147F22173F00562025BEA2D3D639B7B48D2EBCEBEC47A6C2C5BFBD727A755AB8E6770AAC4D858D67F904C8F927378905DDA088E5E58245501B8FAE121106596249B52B34A8010970EA75D02C13D200ABC42620155E897545631839673814CCDA8C01754B655A5719AAEB0398D2682F661D9BCCA76A7654D686BD7AE25897A472750237C2E092E06B715A2D32A5F0546B39FA199F485BD17016CDCB070D0CC0E9CBC23E0A4A31F1C39E108062636A07DE838AA39140EABF822B9A0BAC327A7AC250D4127F9E353EA5C02638B1ADA86084422AC5E16C8A64D9BA84545C5E58A1A7A7121D1CCEDB4DC3AFDF058E68285AD870895FF2B16F67EA3FAA6F64F54F61C06A3638EAF4EBB86DCC138F88D9BDB78341A635C09A4C4ECACE4AC8A46F4DB467B2F62A5C65E63FC0EADC3B186164EBDE709C987DF58D0DE641B376E8CB1B2B21692E2A94972CA5A221919D9FCAF3036990850BA79525151795776AB324D65F7E1319BB3FE5CBD2336065A5F9ED8A9AA735441C7E8F83FDCDCDC3EFC5D8667191919FC962D5B66A6E6BEBDB6454155476EFBEE76030383B5E8FC3E64671090B782AA5E89BAB6C9AD63B61E3EBF7557B01C69429141735BD7544804892EAFA6AD26AFAAC7946CAED1F91419D92D81283D9FEE3C60FE83E63E53C3150341D2F84B405CCF7909F3CB9A46155475AD1555758C14547419E85AF856652DAEA2DAFE7FEF3238068A1A073457D2239E12102525E5816E346BECD433EB451E7829317935BD69747CB44D437F4C0AA2AAA3B09220CE1210642F9A3AFA169985F5534618970E1DC3939D5FE89A76EFD865785573BFB9480AA2B97FC34A4A63B7040241614411AFA55FDAC2512D01BF4826D87912E008EA315210C5A3EFAD1808CA8C93AF415454D57A139845A3A849CD455039F7D1B8F0F24710FD63CF7E2BC4B240247B59499C1C3FE990EBE01ED4F38596F6B72AEA5A8BBB740D6FC8292A3D50DCAE2554DBBD5F5F43DB78CF8A82BC2E5A41111426AA8EA3BB750E2E2AED507BA4BE4B776EAB9CE2C33DFB8D2EBD2ED32B0E820A5601CA8EEF367FAEEAEB1210750F975874B7106D88BED8B927222022AE9E51D29AB1E220E8B31A41DC50D731AD770DA124D979E0856868AAA6B0CA86D14E2F37BB4AC4A015085E111915D415039194727935DDC26D9A06B77D098C9872C1B56BFA660E59564E214A366EE1D3AC92E69EF4B236727C26FF21F252B31F311DF7BB8348E242414DB7067963F8B43B4E5021E89DCECAABDAE74F4C7F90DAD0F09ED929AF4A632BF78BC81B2331CCAAA9B0B8DC14341694DAF990BC7F37904D5A5A1FCAABED17A0CA59A1A5FFD51481CE1D15F58DEFF2084BACCBADEE9A92C8A56F6297A0A1636A77CC3EA08B905CF22A80C4AE700AA12859BB45549A9DF671F8CD2092C591BDFFD9678A1BE455753BE5557572D1B1CED8D2F5BEA69EE9453D234CA62736B1A584DF39FBC9279FF82BEED855BD5941A545465E45E4EC4F9E3D7D2EBCE9943BB6485D5DFD2F874FB8D4ED3D646589D65B876CCDB241249DD4F294DDD9F068DAF768F67C7114E3FC62D73E83E76A68D85156D302593965D037B585333E04F0C7D3E1D34F3FFD61A3CCE627325BB73F5BBF7EFD081A0D5EDAA27975BF1106E495D47F40F72F6A1B62BE57DB6D302DBF7D67DA72FE067F0DB2C6E090B19FAB77C813CF60F20B5F5CF24BF4F6E0E81B0598B341AF0C2D1C9F6A1D30FFCEDAD1633CBF8C3F9F5D5C3BC3E4D42ED0B2798F12D8BCA751A965AF42E3B2C1079702CE816438ED8E85E3F6BE70184D6C2A9A7A7796E3959F4AF33E3265649AC80C3EFE78A3FD56C51D91F24A1AD95BB7A937FC535EA547EFE091C1332E9E23D676CE3D1656F64263F393170E189A97EED633CA54D7D24954D8AE81DBB445CEFBAF1F7D7C063D5B22CD7164FB96ED9137D48E779662660DB2B54B5ABF8BECBDA5E3BB4BE7D62D5D5FBB74EF6B5BBD64CBFAD75962FF05EE5A73924AC4BC860000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (145,1,'Satellite_antenna_(64)',0x89504E470D0A1A0A0000000D494844520000002E0000004008060000006547451D0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000014164944415468DECD5A097C54D5B9FF66EEDC993BFB9A7DDF431212D6844542D8545C40A3E04EF155D16AF1D94DE9D32760B5B6D5FA6A95D256DBDAAA94278AA0501091256117210B24210BD9F7CCBEDC75EEBCEF4C828FBE2E421E1627BFF33BE74EEE9DF97FDFF9BEFFF73FE70C442211B89AED9ED5EB4CE3794E0957F945479469E379EEAA023FD5D435156479785C0F5FAD10B9F6D6FB6FDAB475CF33E37DFEAA787CF9436BCC9577AD7C67CFC1132B15F81ACF67A8FE9580672DBAFDBABBEFF9A6D664B0944E2B4C37B99DEE9F4588FBBEAEC0972C59A2F388FA9D8929E9735BDBDB838B17CC0C6DD9BADDCFCB4AD7783F53314E832FF9B5FEF9D7A6551D3BBE2B3D6782A3B0642AE4672601A356415DE3F961392CD26D4DF5AF6C78F1E9755F1B8FEFD8B143D733147C56CDD0598B17CCDBD531E49B6BD4EB52E3ED26301918F0F8D99853B567A17F68E45B78FBBAAF85C78F9CA89B3F3CEC7C96A6A81D34ADCEEA1CE85BFFCEDE8F46F2E38BBE151397F08C5ACD583CAE11E86C6F8596A633918913F273DF7AE3E5D6ABE6F103353596188DF545654449C53A1C1FDB2CA6F0E6CD690FAD5D0BF203F754424A4ACAA7E8A695713953EFE402A1B95A467D17C368FA2D66F3BD97EBF52BE6F1DD7B0F571A0DC6EF4622E10D5E7F7081DD647A7DC68CE2E37FF5650A05959898A8E9EDED0D91EB0757FF705D515EDE5941921EFDC1E30F548CCBE3F3E6CD53A92C59AF4C299B71BBCD116FA1288A4786ED0F4BB2530A4B2E59905C822C364B827430C0B84FFC72F56A9E3CF7AB37B7C4DB0C865F9A0C869EDA9ABA8D06B3A9CCA2B77F67C6B5C5FEBF53ECC2D885FEF75AD1668F89B1F6F70F08DBB757A52C5D5ADE7DD9C007FC8ADF3DF6E01D2B747A03606DC24A1C516333866519A43036290C6149C25E04BDA8E7D6BFBAE51825067C369336DD1B087CBFB1B965B1D5629657DCB5E4F14BD61B11B90DE4C82D38DC0C4AE90EEC5FBA2CADB2ABB555633659CAF53A06745A35E8B51A30EA9968F69B0D5AB01A756035E9C16A3682C56206BD4ECB00E7A95033BA25033EA9B8A5BD7777586329EBF78675DF59FF0BCB25CB0D9A6A030564D3406D0585B2F2B245963DA85A69B6589B8E1F3D0C6A5A055A0D0D3A460D868B0CB018B5603632E01AE882E19E56484ACF02B7C70B121F82D49C894AAB2D7696C5667FC36A4B1A78EAE7EFBCFFE40B6F543EF6D8AB9A7FF6E5AFFFE2F941EC121E7F7CA507401E6C6A3A9F7BC9A1B2650B501CD575A3A092EF6F6AA8AFD7E9B48EF90B16808A528252890D039DA889C18141A83A7800F2271440C9A40A088723A05153A0A4D498754A10C43036097841D2088250290A7CA54ECF7B9F7EE9ADF744817D4727F61F5CBB76ADFCF70862346F6113C2B913C7CF5E12AB1CAD69BF63D7BEE3BAEB17961D0DB8875F7E75C3EBD7C6C5275095B7DF0E48572483A0AAAA0AFAFBFBA1F2D6A560329BA3EA8C000F63EC0742A168FCA305A3E005043F6A003611AF791078D2B81E9EE7370A5CF8D72FAFFDE617A5FEEDCD3BB666A5A5ACEEE909B98A8A920E4C98905A7629C0A925B77D639B9E61F24ED7373ABABABD3FBBFEDA39738F9F386EAEABAD5565E7E42248193C1E0FCCAB2807A3418FF1CF8086A6D1DB2AD06854A3D76A8C52F49B0E438B8C35186ED186F7A8D56AC02204B49A31E17801ADA6567F527D3A69F7BEA32D8BCAA7B9EACEB44CB3592C23D75D37B575C4E529FF78F7FEF3C5C51306BF14F8B2FB1E4C329BF4372B456538120A9773A1F0607A4EA6A5AFAFC778F8D021A54EAF87D2B25204A523E9841E14B0933194A86822330894CC8C96D100AD54607EA811AC6AB4D1A34D13ED69044F8C40B369F574955AF3E8DEC335531995C21D1F63959393E34E0D3B3D6CEFC0D0CD2513F3F75E5201FAD3474737D98CFADCE6F69E9343DDBDDB8B264D7CF07C6B83A9BBB373415B5B2BD86C36587CC30D80951918CDA847552A25502449541482A130CC95C49E687888183A02B60BE1C261CFF162F49AF41C798FF4BC00CA300F8931A681DA735DDF8B2F74BC6F71F3D52BEEB9B5ECCBE42EB56EDD3AD85677ECA3084B7F2333252ED0D4DA2A1C3D52AD8F49489D683168CF1B0C8624B7DB056DE7DBA1A1A1116263E381D16A493A011629A0A3C0D110021CEB8B521189F2BD068D41DA1CF53ADE437A7ACCC8683FF69C925281DDAC3778B9F06D812176894EADE84E4CCAECBCE986053D5F0ABCA2B0307CE048DDA7FE90F4E08CA90561D7B0EB595E92727B7AFAF6A5A6A6146151C2F8D4808849B77BF75FC0E5F2460DA0542A08CBD162153584C4B341AF450AD54130E48791911104486642C67F470045D7A8216AD517E055786DD5D2101471F668759C20C9F9FE5070FE91531D7F993F7BA2EB92B4CAF31B3E58AAD53195F91989A1B6CEF6974E9C38BD47F0BA56144E9972281462816359F0FA7CC8DD7E20AB3EA3C98C52A102D25353A221C460B2467B351DED89F79D2E0FC63FCE10CE4830C44388E5A32173219C0813A92302F4BAB9B1700A4343ED7148CA2C1091855E9545FF8FD64679FE4B44D6DA57FEFC925E6F68CC4F4F28DDB9E753977B68304FA7D3DC9A9B5F043CC6A48AD640477B0BA4A52440FFB00F9A1BEBC1E1B0414545054C2E99884C4347170A5176194B509EE7307CC2A0D3E940440A259449E29C1FEB253608435E169061C11F0845598CD19BA346E1B3231CCB3DFCCCB76F7BFF6F42E5E257D5C75BF70524CD73214EF8C994E2A2793895376767E769D4E8358D868972B84E6F8296E67360B2DA60A0B70B4362188D698793A74E032A43342436AA6F4841228D142825864910670D89279A1B0A1C28B151186224277CFE00586D5664250D188C464C7A15DEA724E1A8C3F1B2AA138DC2ECA9B987FEA9AC7D6CFDABC9B44AFD467646E15D0AD97B7A7870204D0A87B17AF603CB86A074FAF4283793F826D5F5D0A16AA4CC595166A9AE3A8839E0849C9C1C983D7B16A4A7A57C418B848988C620A0099DCA91D122C6068270B6B90DB2F119E18BE275112391D9E149CFFFC1C8773EB46AD52AF11FEAF1879F78F17A35C35C97E0305E9B949C51E0F379A3A142A63D14F063424A909A9A060CC320CBE8E0D8B1A338D642726A3A9CADAF031FE682130DE0300C4A4BCB60E6CC193813F6D1A42472626C5382C26B096BC3D1E327613AD60B5285C5B1D8FFC20871D488313A3DE091A8C57F132A175E372D9ADDBA65DB2773B0505028BAF289C77D5E3770A120A02A04056A1432E5C490EAEA2AC8CD2F8063478F424C4C0C7A9606ABD58EDE9420E8F74629EF0FBFFF3D34369E039613C064B161722B1090088160282A541A1A1B212323736CC327AA1DA34C7541C890467413CE703AAD08FBFEE9D22DD05FB756920B77C6C6D8392EE8634C662BC8449F04FDD1EA393838104D40C2C76A8C7FF22DB171F110C0A9275F140C06A1E37C1BC4E17B4AD4327DBD3DE076E5C20F9F7C12F2F2F361424141B4272A99E401E6551428014EC2880CC8E7501882844A23F4282EF7C8F0EA7FE871F25AB66C59E4F54D5B3FF4B8DC8B1CB171B15A2D43D11A1D48A200019F0BF2F3F2309E5D60B73B90EE5408B2958829B060D2CA128F6F6990257C18E7A9A05233D0DDD58109AEC14A1C0375B5A7E00C86D481FDFBE0F3939F235045D4FB1A8D169FA34142EE27424E1EAB13A3868C4EC4A1EA7DFA4B5A735EB76285DE48C5EECDCA4C2B8EB15B75A0A481E358D4EC08CCEF8B169A94CC3CA8DAF70916260764E0980D7AA1A3B31BD2D2B3A1BBB3154A4A26434D6D0DB4B53603A1D623870EFC7D9D8D9A262F3707D043188AB836400A253A89F42154A2CDE71AC9ECD45EF26279D6F2E5DA1875FCC7490989135253E31D1C1F89966FBBD5026D6D2DB8B0C881EAFD7B212F2F1F2BAC08BD3DDD9094920E2DE71A20774209D4D77E0626A309129252C1116387A387AB4167308106F3857C8E73C4896122434A7212CE442D996DD8B06163541613D069699961A3C5D2181F9710B65813E65FD62ADF9494E49873CDD2B7D013F36935AD2E2A2C80C4840418E8EF0647421A1C3BB41FD29069C827F6F674C194A9D370F171309A880FACBC2BCAD71E5F0042820C110C83533535505F57030BE6CD21B3D45F73A6A14A12586F49C9A4998D67CF1C494CCF2B93F860974AA571F21CFF5FB9B959D7783CFEE687EE59F4E965EDABF8FBFA9EBBEDC6F2F4DCC229F2B0CB33C4F26197D71774D8E2534C18A36AABCD010A22A82894BA28C408AF6B50E64A08F8745D33B4B5774057475B541A9359C9CACA86850BAF838E8E8E2695859E5E5A3AF39ABE21E7D29E7ED7A19229D3CB31C6C5E6D661FF8B4FDFFBCD3D071BB29D3E4F0A82DE78D91B4258C15C3CCFF6899268D1EAF47142988DA5507C05FD22F87D6EA0B526181CF642281840DA63C1597D046763B468D9D0288167D12066B422626B6F6F8373E79ADAEFBD6FE57A8DCEF087A0DFDF939B91A80E062CFD7BF71F7C3B14F066A5A66697DEB5EAA9DFA1FE05CEC03F32AE9DACD8D858C3999A93F4C9BAA6F5870E7F96FADC0B2FFD1EC3220D99310D5742BFEDED683D86491BC7717C1CF2BBDEEFF5280358ACFC58BC0281407435458A9452A98A5014FD394A88ADC8A347398E9B1E171763EFEB1FB27F76B22FAEB5B9A9AEB9B9D1199604A6A9E18C3B2131A572DFBEAA475F78E6116E5C3B594949492F1A8DC69BAA8E7CD638B37C61B51C0E4F137CFD7DC8B57326959617D79CA8462114F9514F4F4FF3FAF5EB957FDCF4EE1A5AEBB859A7D327CC9E530EE73BBA6A4541602549181104D12D89A2AF7862A13E3D2D5DBF6DFBB66A5FD0E79204D9AB53EB433EC1EFEACA4FF045DE7D37FCFFDE3B442379BFDF9FD73FD0E7985294E5FCBCAE45D218E375426070C78EAD9B66242727FF42966513B977E3C68D05B4D660A698481672704C5C6CEC53AFFD74CD8FFFD1673FF5DDFBBFBAC32BF4AC40BAF7366F3EF7DC4F7E1E1374763D81F3B5406BCDE88C9EA0D1F41ABCE73F333333E3500EFC3B310AD59D93FC4F0E471AAEE406EBE59E0145F70B77EED84E6AF4D299D7CC7D9995BCE558F46ECD292E5FDADEDECEE1ACACC105C0BE884AF56BBCE73E2C28C458E818711DBB6AC049A8907E6868A8880DB1A15B96AF4CD6E9E3ADAC9ABD5706F9BB5925E50B5004C5E32D751AC6FA24F6663559DAA3C3DF7CF189C1AB061C41F1630668F67CBCF34C5E5E5EB99ED16DD609DA8751B7BD8D99BE49A9317E5B634E5FA3D4184AC8BD6A8D2606C32910B9C22708E3F238797DF4C1168928B7DB96DD2121A29FE37F7F4B1853AD77542A55CA0E14A2B9A8F42494B876EC7D57FAD463DCC0DBCFB7E52383844BCBCAA6A56764551B0CC653286DEB5594AA45A15092AD05371AD6498C8B7C05C055971B2A17661C7BDBE99347EB32F22717DFBFEA91396E5F10BCB8C8258B0DAFC70D3E6C5EAFDB4AFAAF83C7858BAF776E7BCF7D49CF29AEB2C749A85C7C827DA6FE74D6A1FDBB4E28690313A1D45AD4FE0651144801D2FFF5C90378AF2A702C2A6D18D7988820964C9B390B288DF670F5415D6BC3E922477C4A0763300D0E759FD7E3DADFA562CC07F48CEA8F118D4E0451D973558177777793B3C8EF93F1FB9F9CEA707A82692DE7CE020287E48C8274A32D1EBC2343D1651830067DEDA9FD1F7E5507C0E33A2ECCC89BFCB2C3669E8E6A4F21CB923522CBD98855F63A872881E77131AE082FBAF9EE8365736F58F5F09D151D5F0BE0D9C5739EC6EE4740389A564C9D3CB9F4D7F9C5D3A74A92A82E2F9BD4555F7BEA8FAFBDB4EEE4AAEF3DFF1F267B624C2024CC79E2DF16F55D7DE02573FE84C4BCDC6A77BC3EA1A0B8262E2965E3BE5D1FB6CC5DB4586D359B70515CE4F0F152011B60F78658BE800D851A7D3C37F7C7AB970D5F353ACC9938A702415758AC764FC9B419BB274D9FB5C1A8D3AE55A9D53A41082D6C696D4D1C18186A8808E2AB921CFE6F72268A8D53F0FC9ECB3946BCA2C0B32696DF8873B305D59EB2B064CA9B93A794FD66C6A4ECB78E541D18985038A9E6B5E7BED789DE3DB373E78E1C5E10CB44316CC1B5E610B64149141A2589DAF5E8A3EB0DFF52E0D925E5772A1491F7F0EE73597905CEBC828973A714A49EFF64EF274F65E4173C9B5754DC4FEE0BB1C1B35EAF67CBEE1DDB5D6151BA17573856046D92C3C21B9228F50455CA0FEFBF7F3DF32F019E5D5CFE20569EB77015F19AC1689E94929AE14A4E4CD0AA8D707367BFE785F48C1C73616E7A54B2F2C1C0592E18729D6BA8AFEFEE3CDF84DEA6B1350B6278ADECD6DF8D639F0F02EF4F7BE821FA2B034E7EE4953DF11AE4ECC86F2272E40748790B1D8EB821254565EEDDF5D1BD4F7DFF850A9BDD3EDF6E31559B34E0C5DB4DAE91E10E5CE1CF1AEC6B5BF797EDEF660A3CD78B95743ECFB1670254D72DF5878EDD238ABCC2362C6D5ABE7C3975C55805BF5CCB304C028A29734C4AC177546AE63E890F6E96C4908B31C43C929D9BE76B3DD710D2EA0CA6ACBC094A8BC9E89D3EB3DC7670C73BBDD507F64814AD316A2D29B121E7795E8CD09EB49C62FBEC79D7D3073F7EFFB3CCDC92B46D6FBFF22CCD301DA5736F59C3B16CCF67073EF836A1556CECFFD541970C1C41D3CBEF5EF91F0B6FAC5CD7DB3F84AB1C170C0D76C3485F0704B830B02C07ACBB07383600A6D86C48484A06474C0CE4164E81BD1FBC2977B49E25CA91672CC966CEDB3F802AD1658E4DCB9F52368722BBAD98B8E0750DC1C8502FD01A0612D3F26491E74436E873BA9C833FED6A39F32B7C5E1A4FC957B9474634C34303B246CD28E312E2C1EA8881F4EC02E0381E789685502818F1B89D82C73522BB9DC36EB34EED8F37D1E6150F3C1C542A28B263AB96224AD21B2240D92439A2E41030C785D07016C898E742D10D537C4F29709C86171C895EB7733E7EFF1B63DEBF6C8F937827BF5E588CBC6CB33BE2E30C268B9D6174368A569B288A362A940A14500A1DC6BC5EC4C44B4A881BB8ADB2329E1CB4B2685C28C4CAFE40900F840242004B262E4B053EC48A5C2820F23C27B06C481478161DCD490217920481970411FF42813F0783FE77114B68BC31AE1C9B056AAC916BC200E4E71BE44CDC888D1412B3466748C848CF4CD6EBF59CC7E5F23A9D236E8FC7497E15C48DED06909E1D1B0B63DEBCB85DF8E544F40C0171705F49C91FFB29A972AC5D6C5874DB6474CB3DDA5F18FF55BBD28BE5FF014EAA096BAFB3185F0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (146,1,'Satellite_antenna_(96)',0x89504E470D0A1A0A0000000D49484452000000450000006008060000004BECBFAC0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000026294944415478DAED7C097C54D5D9F77397D99724937DDF1312086109105651CBA2BE4805772B56AB225D7CD5AAB5568B565F6D6D7169D1565BD1E2020545D917591396040890102081ECFB649F7DB9DBF79C33331068FB7D8A50C5EFBDFC0E67EE9D999B7BFEF7FFFC9FE59C3B8CA22870A56F454533C20E1FFEC276A9CEC75EE980FCECC5A5E94EAD5EBE94E7BCE24151C9EC889ABD6B1DFF0B4A70DB7AE0E4785058EBA53EEF150D0A0370CBAB8B1F3AF8BFA0E036F9DA79F336EF3EF25A5F7777F76501FB4AF33E0B172E54C5E55F5DEF76B9C2BBDA5BCA3E7CEB37B3944B3C08FE4A634974CE55B7DF386352B2204AF0F9E63D2794CB7057BFF5A030B7DECA5DE5607FFBECB3CF8E6CEBB69FB6DBFA6F686AEF054442F47AEDAF5D8EBFF9AD0665F2CC9BA64FE1B49F1B2322C3D66ED929DC3C6746715B3D675EBB76BDA2D16AAA6C2DDD3DFFDF68CAF3CF3FCFEE397C7AA5466FBA393E3185898D4B84084B24A8D51AF0F97C8D99A931ECB0B4D8944187D0B1FF685DF193F7CF6EFB4E33E585DFBD39BCB9CBBD52017E784C6C2293949C0EA9A929909A6081A87023F80531BDBDDB069B4BAB61B0BF3FA1B3F5F44E80D939DF4997BC7AF56AF5D2773E5ECCB26C794242DCFA29C56336ABD56A41ADD18041A78608B31E92E32C1013690693410346A31104D1CFB8DC42D6FD8F3D67F9CE3165EDA65D13FC92EE5D86115C5969A93F6255AA5F0E0CF4BF555B5FF9449FB9E76DAD4E3745946468B30E8028CAD037E882EE6E2B32A50FECF641C663979EC6D33CFE9DD094AAAA2A83DD29FE8FCDEEBCCFE1743D979F93A3EE1F1C98D7D7D3BF60FEFC9935A1CFDDF7C88BD72363DE0E8B884A526419DC2E270CF4F7424F77177475B48249AF6FDFB7634DD2150F4A7575E30C8651DE19B43BEB049FE7D71116CB0B2CC355D570DEA76EC9CFF70FFD6C7272F2F5B22C6F8C8ACB78262A2193F1F83D5739EDF6893EAFC7C0324C67545464ECBCEBAE8B7EF4D11FF55F91E6B3F5C0014B386F5EA2D36AE7F22CF77364C8A0C9A8FF1B28CC63052333B616FC8BEF88A2D8CC71DC3B6E7BD71F765494FAF0D08B0C6E0F3FF19BDAFCFCDC471A1B5B96B21AF54D78FCDD2B4E68376ED97B8BCACF9F5464C564B7B9C79E3A5D570CA0DCCF28CCD58585595BFFDDF73A3B3B4FB4B5B52D3C73E68C2F742C18C9D6330A646162B8128FDC71D98496449085EDEE478A8AA77C3F323A2623C2121DC6AB381BBE63450AF7CB92D42FCB52BF88BD22D1FD1E59100FBEF0E4DDA7FEDD1F59B6725D8249AD7953A7D34EC08B5F74E8687593C9A4FD0CB560D9EC1993165EFCE52B141445E1FE8A3B4FAE58B723F68E1BAFB55E5250728BAE8E1A678AF8FCA61FFC7072544C1CB91BB4C98A62C0BB9B20CB0A482874326D1220202005DB0B4B3FE99664B14412A4125991F6BCF4F882E3E456BEF5D795F7EBF5DA57F01C9FDA656E78F5E163F7198DFA67D1F52E987FD3CCAAAF75F50AD3807F63C66F7FF3E8F137DE5A5EC30BE22D7874E925058567B8FF19969F3F3929E99C90078001024C002039D0240581910220115010A018EC6F9624F166B2FFDCEB2B6CAF303E41AF533336A7F79747CFD46E3071EA95069DA15E706B262F5878A3E7EB135DA9C7FF16D157C0AC0006EEB814A09CA729667358BEC96402B58A070D696A1EB41A156D7AAD1A74D87090B419B41854E9D560D46320A5D782C1A0C766009DDE88CAE801D6371806BC26CA2E6923BBFA9D7FE6FCD02CAB0C118322BFAF43F25E222DA3A0A4EDDEBD9B07465C81F76EE2BE7D1529978C29E595CD57C7C4C48E3E555D0DD3A65F0DBC4A85C0E33F8656B84039CB1C3867563235ADA0492960B70D4267E329D0F22A884ACA0099E1A1ADF6388024405C4A368B77739C248A1F8A92E07EFAF7CBD78AA2F4B12D52D8FAF6830F0A1773F15E233460C7A9D551A98F2C9A5EBF6ACDD6433270B7E1B1DF5F12A66000F5942532E6CF1E8F130E1F2C079E6581E75950F11CA882AC093087071D32E72C6BB0D7E2F1C6D327A0F2D05E888E8E839C914598BCA9E060C917603699216F543198C323C06034059AC1ACC7FE0E0CD5D7C7BA8C9D08D05F1EFFDDBBD382F87FE9EDEDC58BDDD875318C9415302158C1064CE8EB33E54065F3E8E6B68EFCB4E8E1731AEA4FE51F28DD737D789819468D1E031C82C3B284310C60A0449933746B6D6D855D3B7742187EFEDA99B371D066CA1CAD460D13A74C054B742CA0480309D3691325105073488FACC15E88C43864A14614163EF3EA47AD4F49E20A41963E5EF28BFB2ABFE418EA255008285B5500FF40609654D634E4140ECB38FDB540F178DC4FB575F5BDFAFCE2DBFD5FCCDD727B765AA475CBC68D3A02C498316329201C02C312800830C82FBFDF0FDBB66D8393D52761C6CC1908E028E20DA83911EF246914D0A6A7C1E0C00068F5063C074B8120C00440190A90186882908CFD93D83FF9CC920F4F0A82F0B12879962FF9D58F5BFF2FD5EB7ABC32CA9479F36675EEDD7F6C0F2753B63C7FB1A070B36EBD3BABAEAEFD85CE81C105667378D68CABA6FD64586EF6C82EAB557FB0BC1CEFBA0469A969C0720140588E81BA3375B07CF972E03915DC7BEF3D909D95193033DA88D9055E13B1369A0C20FABDD4143598F15293E4029F239F097D96471DE2B0F13C4F5F631F8DED1A8E57FFEC8BD2A379DB765734CF9836BAE3C201541C3D51101B1D59909C1CB782EC37B776A9B51ACD03B131116F5E74EEB365EF892F3ABAACBAE8088BB6C3DA13D169EDFF4864988F664D1ABE72F9C7ABF24ED7D66A12139361DECDF32122221C8160E1BD65EFC1B0DC5C183F7E2CA6F0061C144FD914322D25E8CACFBA6F648EC7EDA6ECE054EAA02905D82250F648B41742FB62705F1088791106059AE82FC5634B74DE96F58B172FA6B382EFBCBBFACEE1F939CF4E9E589847A5E0C0498BD1ACEDAA3B7D66DC4D37CDAABC28A65C37F7EE07232DE1937B9AFB9C8E5ED75ABC97954656DD317C547A49B825E601B7C7ED6C68A85757551E038BC5029151513076EC185AF821947762C6EA71B9496A8980213B504B541C3B843981A6D56AA9603318DF68B52AFC0C7F8E55F83DF25D7E087B02FB3CB2870FB2075F737C2AF6B78B2ACB5DDB4B8FCA5B0E549D8C3430AA98A8E8C7DE5B16F7D2F4E9A02427477BAC3D03E37BFB0663F3F332B75F9CF95CBDE843DE2CDD1B116D4AC0C6DAFADDC992283D5D5FDB719FC164A8345A2259935EA76B6D6DE1AB8F5743535313C4C4C68209BD0801C088B109894FC820FC821FFC5E2FD5143208E2AD088B54AAA039A147D2A0E762914B1A640C397ECE7C02401040091B09405C1034729CA300A90830B8CF5B3041BC9E6798450E8F286726C54E8EB434BC979D9D4C27D9BB7B0798FEBEFE871194372E0A94F5EBDF960F56D77DE2F34B8B8C061D2BAA59FD80CFB95CF4893FD7704CA7CA685CE0F5BA37A4A6A4E47574B4C1C0403F1C3A781006060720312111546A3575A47891E8713480F90DA8112C06074E225B06CD8832005942824235054B45BD1A0544350414FE0290CE32861B02CE5080381DC3F2C549D16170AAB963F8BAED65C7AF9D3CAACBDAE96FE81BB03EF7E9C62DBBAE9A34FE2BD76FB9E79E7B0E460F4BB597553656BA7DC2FD89D161AD3DBDF69ACE9E8EC555A72A776565E7DA9C1E618ADF6D2FCDCB1F91DBDAD242BFD8DD6585036507D0EE25484070181C64A83443F48527E6818327F10AC705DD7A406DA8B968D08418FA059982C90F31352E04460810FC3E17640F05860B1E437058FC3B16A3069C5E7FA64F8287761CA82CAEAA3B559E6031C7F7F40EA45F3579DC968B02856C45C353CFEC3B526F747A7D93F2321263149F70577347FB1DE5FB4B0A9352D2B3FA06ECEFB1B29032B270741401262CC202A9199970A8AC0CCA0F1DC281E9D0AC6202112F28677326326C02084B75863085A56EDBE7F3A278FAA9A9F97C3E0CF28CE75812D4176A42DC10130A991605843BDBEB351CFD5B3E897C9ECFE2587EA12088AD3EB773D6AEED9B5E9D3E7DBA7251A05077567B6877AF4B7593CBE77766A427DC3E6278CEA2B2B27D3B194615AED1687FD4D6DE74B541A75F3072D4685DFD99D3D474468E1A0B0DF567E0F8F12AA83E710A222C519843990309A41C4C2465E56C6A4018A5C614C288B95298D948CDC98B3A545FDF14F034D814FC22E1150142AD1ACA16EE1C286C9035D86B113C90451020C01C0486F58B9023791D2805AAA8F212EFB6E9D3D3BEF41A967F2A47BEB2745D02AB571DC588F6ADC468D36CC127CDAF696D75B435B5D45BBBDAFFA688AE0F0B468C3E62898AD6ECD9B51D6262E2819419F695ECA083D31B7410151903D3A64D85E1C3F3A966A88362AB0E6AC885FB8441384EA86F6C0306E3209D560F6EAF0F7C5E146E0A14C9CA09ED90654C006C013374E2BAFDD83805A3639F1B06FC1C75E57E81B874115CBD1D80E106C426A5D7F865E1B1E77F7ADBE6AFCC143A2B373ED7B17D7F75A5DFE75D8241D4133A9D6A6958B8794353534B97CBE178B6A3B7E315C9E32908334764E7E60D87BAD327E92455564E1E58BB3A60587626A4A6A5C2AA55ABA1A2E208328581A8E8186A478132831CEC03A1FFB9630A84879B6932E6703800C304649C29E8DDF49867E9A80EF12C4F4D9147930C08324BB549163CA84E245E52A876B11841B3F87E53DD294848CD8AC210E0AEDDE52726EC2A3F56317D7C41EF5702856C578DCF6BD8BEF788DEEEF23C1061313DC0CBECF2D898C8D76A4FD7CDF1389C69919688E93DDD5DC6B0700B64660D83E6A67ABC602DA4A46641F5F14A20F598D1E38AA1A7B70F3D5539ECD9B3071C4E37268BB194DE34780B82210E69649F43D3222EBE7FC086B99144E31B926210B323A612D01562361C3D16081A19F0BB5DA0F06AEAE514640ED12BE204505B20222A9ADE3896E5B259867FA8A4FC44E4CEA3F525D3C7E6085F1A14B2EDD9BAA6C4CF9A6EEDEBB725C5475A7EC1AAB80F3C2ED7DF319779A278C244930B8336724F2C91D128B009187FE8D0156B713F162A0E97410202E3F5E185618E24887EA8AD39053B77ED842E6B3784A348EBF0CE8B1780124A184914ACD56AA816D9EC760A14D11126E8D942C9296DC19CCCE3B4831FBF6FC6C4548D311039BF1EC18D8D4FA41E90A6290824DE1496E1D8624E92E6EE2A3FB97BDAB8BCDEAF34C5F1C84B7F8BD572FC515EADFA4961C1B00A4610571D3E529136227F44ACCF2F048235BC1364E07EDC2761B90F5F3BEC3668AAAF8182B193E16879099A831D592022705A185130128E1DAD80D8D838B8E6DAEF41C188E1E74A14FC39510DB96132708FE75CEE449D38491DA4A14C93A0B3AD0DFA6D4E48C63C4D08A509C116D09880CE08E7BD165C92DFFFE35F2C9CBBFC2BCDFB3CFAFCD2E91CAF59ADD5B2458579237D1E8FEB605DDDA96472A11282E074B9CE66B92ABCA393274F0683D148C3781605D48782B966CD27D08D0C291A5F0C63C616D1CFEED8BE0D0E961FA0E04CC3F87CC2B8223005DD327FD60D9F33193209469A4ACDD38C3B583B3E0B90B5A3031A5ADAA1A07064200397CE07861CF39F074A28BF12C9385E7EFC47D73FFD9526C37EFACC1BCFF02AF50D9E786E5AC2A0B236353DEB3A22A0848E0E870D7A7AACD06BB5225BBC3063E64CA842F74CD280EAEA6ACC93C6425A5A060CDA06C1EDF6D218E6C0BE7D503461229CAE398974B7C0C6F56B68F89E9D9303C5138BA1B0B09046BD7C483F286B98406D87C63D2C8DA29560F649C0E9EFE9852395C761CAD42954BC43C09CADE104134EF102169D6BE28B3FBF67E6B35F1A1462C60B7FB1643346A8C7A3CDBAECB8F8A4B9BC4A838374417F5F0F68757AD0EA4D981806F645F404999919A83571C81815D437D4437A460694ECDE83E6E5C3A4329AEA8AC918061F7CF02E46C449909199032D2D4D70A87C3FADBF8C193D1A264C28869C9CACF35843B5819A901808F5D940F1D08926BA6BD71EB8EE861B02F59C90895D00508835A142D7F9C0088F3D7AF7CCD7BED40C2189BBEE7CDCF903BD5F73D4A5E13F9124815E04B978735838B4B736E0DD02D0E9CDC063DC6134C7C2A0C38F2ED60F9DFD9D98CEEFC3E0AC0EA64EBB064A912544706FBBED0E64D231F8DECCEBA9D91D2CDB0F39B9F9508D0279DF7DF7C17BCB96C1DED2129A99178D1B0FE38B8B21293121604EC16AA0E076520048F98254BE1C0E2705221428066A504131C618870BD698836FFCB370B3EC6FDE58B1E3E37FEB7D2EDCE6CF9CEE5EB96EC721AFD7FF628C255CA752A93113B5A2C29B5143C2503BDC1097904ACD00850778F4464D4D8D909C98489970F26435D8104886D761DED40E23468CA477CFEBF5407C7C12541E3D8CF14C2CF422D37CA85759D939505F770645D643BD17C9D077EDDC052E97074CE11134EF214010D3E9EBEFA7A33C73BA16E2D1EB1106C941CD390B50B0E03E84FD102A09876A41F8BF1AA1812F0D0A05E686E92DFF58B385A87C417C7C8C519604C6ED76608CA2A7531B44633ADAEAE924198915FC1E176508A9B9785170478F2982DEFE41B0F5F7D2FAAF85A4043840AFCF83015F26F56036CCC21B1ACEA0679A854C3A8E4248BC99036EBA691E66E67634C19DB07BE70E4C2BAAA10BA3556226911816B811483FE6504673388AB1263861A7D0F769B1EBBC998873945142D82881EE744D75E25702856C37CFB976FF07ABD68775597B46A7A4A66B895092AA980ADD2DCB129638E84048CE320641206C20394B6E6E1EBD833D7D03288A561A3BF4F5F65060C24D7AA8A93D8DC15F060EB403A3572DBEAFA622DCD5D94E07585B5B0B731198AAAA4A9A1FD950B81B51AB0E1F3A889E6C3B825F8FF18C16AF4343BD9F4C23E873D32F8126D3E3944110E843137E21D61C3CB0D7F0954121DBAD7367ECFE70D57A68EF689FAAD3AA38F4148C2CC9F48F68347A10F0CE93C2362946D5A109383000B3A39722C198DB2B80B5B305CDCD83019A9EEA495B5B3302E94333E805F46CE0F53861EA94C9909C9C0635E8A1041A9DFA61F4A84234A9062AF0E76B9E4C0BE424313D545E06BB76EC80D3684AFD6856E46F12E6105393822E5C51020C0A954C09242453DFBE6D131C3F7AA4FD6BAD4F9973D7CFFE9BE7D5AFE664A53131511686C41F2CAFC50BE0C03ED88D89612465697373138D4D9059D0DAD50F8DB55528C261306ACC04686F6B81B6D626987EF50CD8B0612DBAE5E180F90394EDDD052331D0CB19960F6507F6C3D12387E18639FF856943053435D6FD3FBC2543C126AEBB60781E34B7B4A2097B30DA8E42538BC434C2181015BC385196D0E4DBA0A3BD9564FDD2B0FC82A7BEF6A29DEB6E59B41023DE3FA7A624F93352933464F0C0A830A14553720C4076EE303876AC8282928AF14A5D732774B69C41B3898009C55741E99E2FE89DCFCB1F01EDED5DD0D9D10C59B905C838031C2EDB83418982714B110215013EB71DEAEA1BA1BAEA08BDCB448F4CA821249C27D132298106A823D3C9BCD3A76B00AF09162E7C109E5DFC025D1276DE4C206A605C5C0224A6A4784CA6306B4C6C7CF58B4FFE70CE2559C9F4BD79F7DF8377E6DD98A82887C96C0C1F187462F2170531E84DE2A2C3F162BA50036C9086A671E27423387ADB41AFD763003715F6956EA7D4D5E9751019970A355587298059B92331EC57416B4B2D5822C269E973C4C891E83A556047E176FB6434DF2E34C576C84C89A59FD95F7608F6EE2DA505AB1FDC7D370A3EC0471F7D00E9E9A930E3BA39F0C7D75E254BC3C4B4F40CEBF8099379E21C06FAFBB6E10D5DA63798DEB089F2A4C7EF9EE9BA24A0205DB3E6DFF393594EA7F03A8B3E99CC43C7C7C540667A0635A7C8703DBAE77AD48B6C38565D0B92679006640523C7A1599451B74CEAB9238AA6C2A1D26D1414228ACF3EF5286891014D48EFD6D60E686A694317ED834C74D73ACC9E77A2173A5A5141B56CFCF8228CA667598D6191725D63F3475B36AE5975EBFCDB664447C53CDC69EDFAB3C1681874FB9487352ACE8AB18C4716C497172D98B57DF5EAD59C5F135FE276FB9F78E0F66BF65FCAE55D2505D929EDDF9F7F07DBD9DD2BF50ED87C18C774605E647039BDB13697C0125125935C6423390ECD97300824D930018465452A8A64828D6801C949FEFEF16750306A1C6C58F7290D164952498E97A398464410F39B0CD3AEBA06D9568299F9A11347F75514BFB8F4B5A8E898D8FB6FF8FE9D1F75F40E6C76B8C479C989B16F201B8769D5D0D5DAD6C676D694CE7EFBEDB769D94065C978DAEFF6968400B994A0485E8F4744CEB1A414C9ABB47AB7D79F2523D581F3A3C7F1038FB95253470F15391EF31806BD49536B1B488C0658157A01D64F732792BDA28D50AF40A74D302D90110CE2A245910D4EBFB2303868838D1BD68111CF376EC224EF35D7CE8C1444E5D1C67AEB9B8FFE68D633EFBFBFFB454D34FBBB9E6EEB96F28AD6FE70B369796C4CFC8D9C4A2D3AB998BFE135DFB3ABBC662C5EC95CB53762D2255F088829FD31900592901CECEBEB4BD2EA8DB168965C304A0AE4094A305E42D577B8DCE075BBC91C36BADF73FDA993351880050ADAA4B4498E47C6245040E83CF6BF686E8FDBBF63E7E6EB7373726AF1E48F6B54CAA9773EDE7E2236D1926C61604B8225A6E0D34D9BA0A9AEFE7E87ABA43223332B3A2373D80DF3EFF9F9DF7EFCD0FD080ADC73CB2DE7AFC6BC24A0A09BCB4197D9F7F4AF9EA9997FDB0F0E6356CB2F79E54FBFC5C02915142615E1484558D2F41AF55D0EDB208245D640296A381B82877A999A880F0121710C09FC9C4E5BA048149AE00FF60CCBD662BEF2AEC2487F2FDBBAA17BF7C99346CEADEAF478BD8EE636ABB1B6BE250AD38A8CCA43072676F7742B9222B72A8AE8ECEDB68EE5F983F128FAF76EDFB1FBD3979F59547559D6D12625251D47B14D387EA2C6DCDD6F2FB8FEC65B7E8BB4AC395355FA14793F3B3B5B8339CCF76FBC79C18AD2DD5FD8067A3B07307974982C51B5E6F0E82E63786C0F9A4EA2CBED1E8D60E47BDD1E038A2F5330B250494E4971F6F6F6F6A196B82441F40A12C6CF8234883AE44300C3F4069D65CAA489C979C386990E1DAAF0EC292DED73395D83E89E9D1873445657561C777B1CBD9220D911793B9AA60D64C66EB68447F51465BFDDB26489E7B2ACA345607DD82C7B4B4B4F8D1D37F159B7BDED299D31615D5A4EE154BFB38747C0C8922BBDC33ED8650CB3B008CA13674E9FFC74E8398A8A8A549D9D9DDB7596F40A8D5697AB451F9D9E966EABA9AB5FED777BFA2545B463EA6F9765C986B8D8D154ED3E49B48F1D3915FC3AFFC0DC19E3FBB029C12570DF8AC5C5747DEB071FBCDF3F76FCC4DBB3D3D2C73734341ED0981367B216ED5F7C036D5908CC910F96BDF56A5C5C5C06E6423BE2E3E32B1084A6D0093A3A3A16F36AFD4ED49CC51CA772CB8A6430994C259B56BE75C9D6DCFF471717234BA8509597951146B0EF2E5F55D1DAD2B400357532065B8FF1BAB09CB6B6B657C967BABABA1A10A05FA02EAC2666458E2526264EC6636355E6383331695EC519E8C5716CFD37B144FE92808203A24C41634FAEAD39D58A30DD5A75AA758477B025CAE7E8EA51E9238765174EB931F479046815618ECBE57A1D459A00F12746AB7D1875E83E3C9B4C6A3240AB6B52ED150B0A6E675DDA8A8F3E6826387945EFCB1895FE1D24DFF7913177C90AF3715621465AE7807C04D93205DDF94664DAAB5A43E2743C1C8EDEA59709AEFEB17659CBAE585088D09E9D2FDABD238AF46AB5F686AB66DCF05E6B6BEBF13395A5EBF1438FA3CB5D8BDA3B21B880D083DF7B17011887FD113CCB4FA9C8F1FC60E85C7BB7EDAABBE2CD0702539EB93D3DDDB43E9893377A7EE6C82977D1258CC7F7FE4561983F61A0BA3973E45505C9C9C98978F841B2A69ED71AD6633F9286DD6A7568225CAAAEDEE5FC4E980F0163EDA7ABA8165C3BE3DA711A95E6C5ACC2A96F648F9916DD5055FA0C86691B3188DF86724A74E5C9F6F6F63FAA0CD16DE7A263AD31842F7C43DB25371FB26DDDBC414B4F8E79CABC5B6EE9C348FF614554BA330BA678514C67E05B719AF0A45CAD25635156C1D4152CCB9FCD3D78B52636F8D27E45838282791E28DDDDD6E16EB78B468A53A64E1D8B621A7AF48DA4C9A14147229CD70303B79F8D9718F0F1A46416A898DAAF74A6F82F38A4DEB96DF3895069F0E65B6F770E59DEFFEF2F86615B430BBA31A9B67D53A05CB2309FB9607DFAE6F59F4957CF9C435F178E1E5B94993B9C4C51F806066D0E9BADDFE5181C74DB1D36AFCB66F339DD4E11B364896358D39053D8AF685088F95C98583637350C93C8745D908D0434B546AB319A140D66D151648D9CD16406775804ADD1922957B7DB39B452FF9D331F722CECF0C1BD272FFAA4F237673E97C5FB84B62DEB3EBBE88129DF01F3F1FFABBACCA9139539EFBCF1D21EAD218CD1E94D98049BD49C5AA7C3DC46AF006B521499E43DEA7F191082726583825B1F3612929362B0DF6030EA598E671896934F9EA88A71D96DA99224EA51537A343A632782E174DAFAD3D55A43A328F822D4FAF0D32A8ED9A4D2E89C9C5A2F02C329980CEEFDA640B92C4FB07FBEF3D83187CB5BE874FBE84AA795EFBC0C5DAD0D90993F1632F2C781CBE984B22F56425CDA70E8ED68005D4412784429A2F1E8AE41F8166C97F561EDC04A23852ECBBAF01D521E08BD0FDFB29F70B9A48FF59347ED93D3721E1E5F3CC9CAB07CB9D7EF97FD7E9F3CD8D74D923D53C3A9235263ED310941220CE5AD8DD57634255392993FF583877E390D3FB3EEDB00CA25351FCC635EC7EE678A2CD4A1527ABCB6CE2D5151310FCF9C77AF8E57A9FB304B7687691557474BA3F2C5A6CF3887DD4698AACB1B5964BFF3C127D3FD5EDF0D0FDD71CDCEEF8CF964164EFD6F04823496E154390CAB2A6B6F6D7E2AA360E2875EAFAF5763309B795E93CCA8C212E6DDB620EFB5BF7ED28C1972764246C6A4F153670E609CA7151466DD1F966D99F89D0105B3DFD063EF3E74D1F6CCACF45FDFB9F057F72724673CA000A3D9F0E98A7E9FCF3BD069B59A3BAD3D27D1BBCCF87447C53D874A4B5BB2F3479B032BAE25031EDFFCD29B6BC67C47845621C98F9D4C54A566E4BC9C9892979E969DBB34252D4B3872E8C04AFB60BF49F0B8E7F87C3ECFAE92FD398220764822BCFAC167FB630449F988AE389224055DB75690C5AD4F2FF928FF8A0585882B2922A107F9090125253DAB2B3563D88AF4EC9C4F33323234A989718FFABCDE94A4E4B463AFBFF0F03EC1E77BC2ED74F03B77EFB12310113207AF8BA2B436B0BC5362B0FD03D962944561FB63CFBF9575C581427E5624B360F2325244C2DDEAF8C494A4A4B48C5FA565A47F98959192989D1AFBFE9AF75FF94B6272EAE4C4B4F463E43B6EAF773F99346F6A68C86D6F6BDB2F8AF21D8C2265C892D88BE6D381804C9304E176648D055DC0F6854FFD31E58A0165C48811EA8C9ACE9508CD0F7177BF392C7C444272CA264465525A4AE294ECB4D8C3A991AA45B229E581F8A4146362525A3BF99ED4E7ACF1FB7CB2D7EFDBB465C3FA22BF5F6C42F3790B59538540D81451D2C8B29C8EFB372383E241F66DBFF727CFC77DEB41499E3449E76523D6A288DC8CBBA5A48A16139728C6C4261E8C4F48FC714ABCA5292D356AEE93BF7E333E2636E9F7F109C990949C4CD756AD5AF5AA0799D2846674CCED71956D5AF7891BC14844964CC496274AD21A49947F2548DE12DCBF0D5B9AC4C2F6793F7D3AF25B0B4A7676B159E3E4C84F05CD4697B30F995269898CCE8D8C8E5E1D151DFD8BC80843B751A79B116D307486C7C62C8B8A89D5C5C6C541626CD4D905677E9FF724B6711E9FFB81A6FA33190DF5B5A5088C8EFE488D286A516EDB41629F78EBA5473E9765F14E042697F3485B6FBD7561D8B70E94BCBC09918A4E4582ABA9D82A30F07B09BDCE8FC3C2236ACDE6F0697A83516019F9BAB1C393EBEF58F8F44FCDE1E1D3C32222D7465B4C1063D1F4A026B3D8389FDF770AD932EE58C98646EC5FD8BAEE93893E9FBF9EFE388D22DF862C7A1EBDD0A3773FF652FCB2D79EF94412A5BB717F949B536D9CB56081E11B018539B7B1A1965D303E5950A94BF0EDB1D84E308AEF268C4D966A757A59A7376252AC4ADCF0F9CABFDE367BCEE9E26BE78ED0198CBFD36A34DB79109B8D3A0DECDBBD9D14A2C84459946360A01D7525223E396F524B4DF94A5114EBBE58BF1AC78DC6234946AFDB95268ABE1256969FC7BFADFAC75F5F5A2D0BC27D28C213451BBF6ED2A45BC98F5330FF31500800D891298A08A01577888A4BCE192B839A68473EB2A3B1B7ABF56E9F572005D8748D462BF02A3E73E796B56DEDCD4D3F2F9C38F698D91CB991E779EDAE4D2B1C1E8F6B01894196BEF187DFC5C5C57D8A6DF3A0B5E151E281784EDE68B1588E3B7A9A0CD6AE8E9CCA8A7D2E62423EBFF7973BD7AFA86564F9BEFC5193AEC7BF13BFF6E33F6D73DA6D8F203057831ED644446498F15A3504346C7CF0BA2F5B42A8B966F6F5B78799221E6C6D6962FA7A7A0D8CCE924BFEB8228B9277B03DC2A092F6711CAB0B1498185D7D7519387ABAB2548648E05591992A8D8E2EF49B36FBB69BD45A33B4B57782E8F7CF08DD5CD1EFA68FFF333C6F547C0AEE7BB8819E36208FFF58A262C1680A8FB60DF63DD2D9D6086191319FE357BCD8ACA55B5674A664151C8D4FC9991D9396B8C76E6F7E0599D584EF7591F7B1B92E392841B40D29C919736EB9EBFE628F5F00AF578081013B587B7BA1B7AB99EBEFE90A1FE8EB058F5F01A7D30EF6FE76B0E38094E0EFA6788D66B00D58A1F5CC51C81E3E0E5C8E41FA53460259D6882940B074E9633C8E685992458FC753E7F57A3D3E9B0DB47A73625545193BF1EAD950347906F474B542FEE869E4A746B47EBF3755A5D2A49273919F1F89891F5D989E99FB1159238719B9B263EDFB24D06BB85C4CD1391D3653B7B5933E1B2C4AE4196019F47A1DC4A764A12DA5D2A7CFFD5E0FEDC9823DAFC72DDB06FA7C2EA78D73BBDC0A86F4038383B65AAD4A49D3B2A25EA756CB0FFEECC953BC5AAB51A9351A5EA5D5CA8464983AE3EB38D45E3403151E53D8C08398024447C5D09E2C0A8CB8E6BFE84311026D8175FA745F457E364047D6C9110AC65F2E50C8C9C5B2BD7BD675B477AAD55A6D8CDE60D6690D469D4A63D4AAF008CB726A29F4F3419240D7B58AA2C0E2311DCFAB41AB238B6DF8B8C8385D5CFEF0BC81F1E38A23020F610AB1E4E9533F7D2D82D7478F8180DA428EF9F035E9457F60D0E48107712800437AC12F289842C9C8120519A42832AD62992E8BA620B52534215B5B5BCB4E6C64D23B1C02539D9A50AFD2680C1196188BDE1466D16AF5E12A8D369C637913C372A4086D921530E1405922AE2D8D4D9C41A3A18FA6D187B3E9A36BA2E2F1A2CCFABC282B3EF2CFEF211D5A908F1CF0909E3437D921C7F13FB7CFE776FB3D5E971F3D931FCF2F076F201B2CF0114DE9B8AC452604461D04820BFE713ED8B82038E47D5DD04B915E4FB428D8EB7506732CB22C3A3F371FC1527C0E87C3E570D81D8383830E342D27DE58E29EC560A13BD4FC43FAD07B62B049C1260EA9740E6D44A706702CEEFF58E56D484CC00C71E54C10246E0868AA0B5AE84E8606255FD02B435E4B177C1682EFFD2B10CE2B030759AE5C56A65C4CF9E002D01838FF37F3FE6910FFEE98F22DF825F2FF0391261C4E5D50B0C40000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (147,1,'Server_(128)',0x89504E470D0A1A0A0000000D4948445200000060000000800806000000F4DC6CBA0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000260D4944415478DADD7DE99324D7715FBEAAEA63FA987367674F00049620482C2812100510A42842206958124939EC30CD40D85F180E7DB2BEF98BFF04C9617FD0673B14618BE1904507A90883144999119615A22543066D035A628FD96B767766E7DAE999E9B3EA397FF95E55BDAAAE9E6377004E6F03BD7576754FE67B99BF3C5EA6D25AD307F9FACAD7DFF47953B3EFBAB35F534AD54BA560C6F7FD19CFF3A6F8784A1135895453299AE0E3129F2FF136F03C65B6CA0B9487AD1CCBB95B4B77CF0E06E17F0FCAC1BFFED177FFE8C734462F7518067CFD1BDFFA1D26C8174909F14A9608814AB7204CE09EE3FB033F907FFC20F0F95FBF14044C2ADF2FF34189894FBC4F9E6C3DE23B64EBF15BF17FF89FCC1E9943956E718A377FF2BDEFB73737B726F8B55DAD96177DE57D3FF4BDDFFFC99F7E7BF5B8332038CCCD3C5ABF71F1E3CFBE06A2D11E049123656FB13B29319D73C935F341779B0C0C4DC9E786878FBD2EF71375BBDD46BFDF7F8119FCC244B5F2CDD7BFFACDBFF3B4F76F7EFC5FBFFD43FD414FF50F8301F83B41B4F86F71FEFED114C2BD3101B53C800FB59C0F234D5134A0B01FD1200C793FE42DF60714857C8DCFF50603F9E0A0DFA727CE9FA3C966C3F93509C7334C8A74449D6EF7BCD7F7CE974BA557BFF4D56F2E7EF96B6FFE5969D0FFBDB7DEFAE3FBE3CC00720712F67677DAB4BCBC4C8A6745BFD7A3FE20249635D4DE6DF33945251629DB3BBBF2391611747F758D1AF53ACF269F56D736A8CEE72626AAB474F71E2D9C3C29CFBDBFBA4EA7174E508F9FB7BEF9804E9D9C97674C4F4F53B3511FE26F8EFE99FD300C1B7CCB0BBEEFBD3008826FFCBDAFBF79893CF56F7FF8DD3FFAC17198150FC580542A286A3161166F2E3171A6687B7B87063C62B1BFB6B64E13D52AD51B3539EF793E95CB2521AAAE4DC857AB580C29577C9917C45CB95C6166D5A8CEEFA054229F9F616866E79ECE7E26FF0CCCB5A9A9A67C47AFD7676644E759819FE7F3AF3238587CE31FBCF943AFBBF1AFDE7AEBADEE58304088CF6F57F4544A015D78E629AAD76A2C52422152A55A21E27325261ACB6356A84ACEF3286442F2B16225CB44A9562A4231B0749A454B9B990305DC6C36A9D5DAE1CF7AF2DC075BDB5461E65DB9763D9981B1F4C98CE158530BE955C227DC57E359C6C497EFDED96DD759E95F8CB45ED095A93FE0BBAE8FD10C2021583CD0A6A727E995975FA476BBCD442A0B9AC13E466DBF3FA06EA747B5FA047F2E62B1D4A5491E91104F90F3B8A7D785D8E27D162D614B3B2244148625B02E14811905AD5456F8C4AAC153CE7C302FCCAA320F84F5072D3DD63A20F3B76A07C960D469333C6366258CB3E7927B92E9940E67CFA87B9E5111EB953E0D7A03B914F171E6FB9329A086647F8AB3E34981D96BD0194363010063A78475860186720FB65AF4E39FFC0F96D765200F19CD132C5AB658EE9720C72B251121460C5825CCA39DAD025A5BDF607155A62A7FF6D6D2322BE13921F2F2F27D56C20BD4ED776995EF39BB708A5ADBDBF4C9179EA32AEB15553003D4083D204C9781E125C4C7D6F7BC3144417A7806743A5D7AFFCA22CDCE4E8BDC661C2EFB2BF7D7A8C6CAB6C9B27D8D510D94EAF44CC4447F209F2B97CA4CD41D791E6B04607856E0A1FD1A6B5BC80837FB5AF6292B920A70704609F3010CBA78F6B0352DA290C92FB36B7F187DEC44901E62408C4A8C5195EE2B2B8E9423A7944EAC092BAE2C02520EC1634563899F1A6746748DD40194FB32E7423CDA537DE0E8EBF1D7012A21464AC074382A0795284B48957A1832A452391DEA5AD39E40D09C0854BAF0BBDC67452CEBFDC0B0CFF7947D069841E3AE03CC6B8A45CCEBAFBD2A32167F208C2FCC72404819E970619403A148C456EE44A54A7DB670498754656888736C2C095EDF61A30EC49E9C6CD216EB0DD80D30BC361F6C894D71F9EAB51133408DD401B1258EDF1459A35C7EA7E71F8B29F0903320959EB0623FFACC47C422AE560D0CC53E08D7EBF7A8CD3A024A57B3CC65FC4D330C5B77763B3460888A7BA0687BDD8158C7834114FB9C8C83CE2A4C45A978CBA2A002219E9B450003067696C406C0E7C1087F2C5D11054AD888112B9F1D594DCA910EBC1765FC07517A8F85A7AEEC5216BDC410533B9647DE1562048F767ECB3048DE6D7759C9F7C5289C9E6A186352A931640008E958C2F8D3979757E92FFFEA6D9A63E403B101188AFDE59555B162E13CBBBFB62E56F0ECF434DDBE7397AFCF50A552967B300B80966EDC5CA2B3674FC9B7DC63187AEECC2986B53D5A6504758ECF6FB5B6E963179EA69999A9BD5C7F8ED1E5B8381C271D203166D694EBD41B2711649050560C87E2C9D402F5E27DC03CB8262232E7408B781FF7C93DA1BD87F7E143C27971A0C9BE16B1E53E0F10322F02B3825F65620778CDB06E9167F2E7E10F8A5FDBBBBBE3A984418CAC922BC2DF297A512E4A4A608F4AE8A592D88172BDD6F67A8A6862C0937506BA0868843BD4A225F892C455C20A187AE95860D0D8EA3F940E709C723AE30B76022E7684AA020B496BE58CD3548A270C7302387287D246CAAB5407A5EF619D9487B2DACE2AD75E81C28768F4C65107E4FFE0D9D929FA472FFC062399BEA017783D7B8C6CAA0C3707D140D00EE0A6E6990311F095D77F95ADE79E889B06EB882E5BCE83419FBEFA9B5FA6EDED9610A93959A7ADCD6DF2F979CD668D1EF07EB55AA16B8B37AD255B343747E8032F9E655EE218C22C88C5DD181B626648961859CCDA580020295C0EDBDB9E783DBBAC44DBED0E4D361A228377767659E93698183BC298897A95544731F388EABCDFE976E4C9D57285768336A3169FCA7E49703BDCD4D0227BC55054DE18706694B83CE006F73CEB5257E3A903F204805B190EB96EAF2744F69968D8DFDDE9B0C18519108A3D10454AC28CA128E028B548DDF1ABC901AEE9B1768495F97E3D0202A9213784AB59C00CE313F2326E89B1B603D6D61ED04FFFFA1D5A3879823637B784F8D8BF7367991A2C3EA627A7E8EEF28ACC941373B3B478F3162DCC9F1091827B26199763565CBD7E939E3A7F568874EFEE2A3DF1C469899E01C29E3F7B9A5ADBBB0C471718DAD6474050553813001A201A5D367A4A1569EBF1F405E9BC6F27D937011511BD4970243F60D39486C8424F3CB1D3376EED2EEB0C58CFD8EEB6DB0C4FA32111A8F7104331905222F3B5A3E4D5B141418FA48475ECD9748C9E785F3B393D3494DF93DE93319872AEE4E433CEF521D4B3871B02FF445A27835F5C119669C7C41777B8DF9142504B880486EA219FB3723CCD722EC1FEA9EB40150A7265BC664443EE023D04431DA370841B02A20B6F7C6FE8405258E6E3E78ED6C3BE98B9B9497AF1977E93DA8C60101583136DB7D3A1D76A9F9514951E439C2FD45E16E50754F4A52F7E5EC409448C38EC58BC2088F35B6FFC3A6DB23207B3A62627459F2075A5596FD0C6E60389A65DB97A9D157A3FE308D5077043C0CA46F007710138038F89F87F781DE04661115A9C9C6C10B54CC811D011F72012862817EEABD726C4ED00393C51AB4A12164637F284E26722D41858F700180962F95E209915402DF0B29223825CE26B67F6B86E884C30C8EEC21784D15FAB4D8CAF0E70FF781073ABD512E30AD70281A17D6A33E647561B4637463E0C28F87580FFC10C6164983386ECA1A7F3FEFE94CCDAF190AA2239AAA8C05B9B57D24A7EAF1A3706681A4E4B595BDBA4BF79FB6774FAD4495A5F7FC0C4EFCAFEADDB7724BF678E8DB4DB77EFC9485E38314797AFDDE0EBF362B4E19EE9A929BEAF4E97DEBF4A179EF98810F3D6D25D7AFAA927C43083C7F4A927CFD3168B277C0EC95AEA008658913E504EEACA3191408FA2035462DC389EB59C57523B9A9872B15F958C641368B17014B30AB3443CA191B8A411ACC7D6E850D71B9BF8937421F1DD30A51A1DB8196B3B2076BA2927BE1BD35C5B4FE750CCD78DC5673CA3C3DE65F7D9128FC87B638B9054EC86182586E8F8BC1ED915A12DA5DC992019D444D973AEADA09D7B32385F393454494C39F9AC050054E80F8ABF7BAF40CDF1C98678F4196067FFDCDC14C3D0E71986B625CA15783EED30CCFCFC2B9F115F5097E5F8677FE54581A190E9BFF6B997C5BA1D847DFAE2E75F915021BCA75F79FD0B0237F1D8DF6048BAC1FAA454F669B2D1A4F58D4DD119C80DDDDE691F88806A0FA5ECBAC0C7D4124E7110707F9361A8DE0A19DAD525EE8A2817DCC8087CC01F5FABD524D71F280879A2B00188E13CFC4118D3A1E6F3BCBF1D989F53A99424BB4256CD20A3C233FBB1EB63543695DA170115E78F8EB5330E30B4D5DA125827768185A1BBBB1D319AC418637B00EA158B2F90B02BDED028CD117557B92494D1CE099DF847E573A91CD17BBA21B2A2498DBF0E2852C2EB0C43FFF69DFF4767CF9C963501C80F3D73FA14DDB8795B0CB413B3B30C2BEF502928D1A98579FAF995AB7496AFC308C33D330C539107F4DEA5F7E9631F7D4688739DCF23D50522EBCEDD157AE6E927253768E1C42C923B0B535186A36FC5626694621E53256CC7A57246A3CAAE0F4B14B1D2498C5865EE71929CED8480888AB481A1B0A621BA90C61EC2A116693719CF21F268A20F69E1F155C2F9B494D41797C47535396988160E6ACAA22017FDC4F7E9BC182908AA0005ED9151BB9F1B62387EA0C64F07902EF0C2670C801C219D6BCA3508D4687743D699EF1A785A520C3333EE506E885C2C601C9373E31910BF908AFE6986A1F07002D5042CA301435FF9CCA74509C30FF4CB9F7E4194E76EA74DAFBEFC22ED6CEF0A44FDFC677F99BA9DBEB82F5EFFB5CFD1FAE6A610F68D2F7F815659B76015CBD4E497787F9DEA8C9E2E5F59A40DD605EEC2CB916E88FD94F0385AC2450B340043279B754136C8842B310A02DA81ABB9DDE948F2AD78439118C50C8117B2C748887A4A126E4DD255C84AB942FE96819A583B80EC0ACF0F249C28DE503E16E32DD27B126FC82D3DD21618531D500443913688F82D061960283CA0582726817A2850DE42A98249090C95604A74A815129A74CE0E50C9D97174431C891DB0B1B921233B2185A47F28BA712B4D84424A628C5116AFDFB619099A2E5FD54976C2A5CB57C588C3D1CF793F5E540191678C304DBD76D7EA007D3037841AED86184F6F68811D706AFE043DF7D1A7249A957A2974E288D3914EE3BBB934469DF35CC6CF57B93C47F008D96CEFFEDD556AAFAEA78BFA9CE9A30E62E066DC108F495E10D24D20EBFFF0DBDF95A42CDFE6F59B021C5E92E71F5FF33D2F396FEE55E416ECF0EDBDE5924F33933556E83D869E1E7DEE332FC8828D221DA0F635B4D4B17443E0E53DCC0CC804C7ED39184DF0DBE32DB29E8DA910C7D60784B8ACAC94AC55A9C18AB8C64A176F59321AA6F74159E3DEF999267DE2E3CF523948D308B54ED789C5EF48EF9FA4356A76A8F1D301056929165F83782E2910771DC4F7F95ABE0868E9854F3C9BCC0290E0F2D5EBAC475AE4265968BEBEB6F180F5C575DADA6EF3BDA5913370C8F6552A6BC6A9E3EB8678641D10A70AA20CC0AFBC783193F804D182845839F2D295934B4BF7D255944C68AC29AE9DAE8AE296FBED70C5E737B73A12D64CCAE3E433B2752E20AFD4DEB69922DA238F7D7C7480EB90BEBFBAC1C6128B8BE79EFD407FE8D5EB776853664ABA566C5FD1A246196A639B194743B51BE6E7A6E9D4C919FA8BBF7ADB2E27F53211AE380F53D9F39E734D6646E2B44B1366B39F33853E3E75F1595959BFB1B5951074B850C71E1ED2BCB36E2C63C2BA60A136BF51CBE7077FFE9729DAC136B0880788287091518A74A027E2F3B81FA983D8E2B8562DD1B9D3F3B4B2BC49A156C200EDB84274B22E598F74C88D144DE3AA038A94A04B0077D183EE33B3404C58CB0328652D4A1899CE865186F8CB2B6BB4DBEEC85344D40FE2997582EF3D2531865EA8867550D132B1A258C03176433CA2122ECE4E8EDD0CA2382D317DFB19AC0316B4646792E7699B31975B78C19FBB7D67450CBACD6D2CD4283B1078542DB9E15591C549598F0D03CC0B0445C0FC6B7FFF359B8AE2A6A1C488C8135493181FCEEA95B9D9A9E49A1BB08933232E3CDD10B1948A404BFD7C44F2206E88BC123E0615531ED917845CCBCD073B12424C93A6523624B99C4A1514FA70EFD5F61E4A18890351CC2CD9AEDF5EA68D07ADE219702037C463A08475813714D9C6938D09FA4FFFE5FBA3CD6DCFB3385F25CB833C07157956599B9262F1358F7434A0A0541617C41BBFFE2ADDBDBB42ABEB9B540C83F673433C16EE682A5C280DB7F3A5CB8B7B7E2EB67E639F50EA23F2867C48D83F395BA7573EF329FADF3F7B97EEF32C1B1A00CE0CD08771433C2EDED0840D07ACFC081FCFD9330BF4F24B9F9411E9DB11FFCEFFBD442BABEB26B39A093FB0CF4460676D6D4DA2617EB9312C02DD5267E4C69CF77143D063929692FCFD8708A8DCBC7D97D1CDF29057D4CC049DFC207CC78D3B6B74EF3E334605544DE0ED1E2848ED43E8BCF1ABD4383AE3F23340D1D6CE8ED47BFE97BFFBAD23F941C3CB924C80676D634BD212135748A628AF2ED6B943FBC72B16F0504A381F948FAD5756044743FCB83669A6AE34596BDA20A96FFDD37F4C674E9FA43FFC8F7F4C4B7757F7F101E58A788CBF37343BE2EA6C0320F5F0F7FFE0DF3F14C1338A585C18817561104DD62BD4EE45B2F4E95FFCF36F52A55261C22FD08B9FBA28C6DB2F5D7C8E45DA5FD04828342249EBB14A4DD48F5077D00472C2E16733139E3A3B47AF7DE173F4673FFA6FB4D34B75005255BEF39DEF50A7D3A1F58DAD8C4EDA0BEBAB63EA9678E4153287A1FFC2FC1C7DE2B96732E7DEBB749596EFAF19D1E3A7FA657BBB4DEFBCF37F68796D8BAA13CDE4FB9167B4B1B9498BD71649F9250715EDED86386EF0F3C80C311C212EFCE4F933077AC6B5EBB733C748E68A3F2BF0D4B7EE6C9641B7961FD0FCFC299A402D6A3B4350F0A3F191733435B395CC00B58F98510570684C4B960D8B208C5E9497FFEDDFFA726E84A9421F4DBEBE6846E1AAA2CF99FBEF2CAFD183D6B6ACC8DCDCDAA189E62CAD5EB94E41B5B1B79871897E0CA7C123F70F80584140E66F7FF6DE48261D4CA9BBC536E26202DA644D04257AE9931F970CBBDBDD3EFDCFBFFE1B59000EF360B25C1F8A0BABBD46FA58BBA3753E266C8E9119F79FBFF7C323FD61B58A4FCF3C718A6EDD5B1759FFF28B170531616AF8A509AA956BC32020977C7BDCDD100FA103B2BE204D873385AB95324D4F4D66CE61E145A7C086789A897FF1F9E7D800FB29ED74A364BA147B548B63017B125FD1B15827F650B9A1A332CAF77BC5E1C9FCB9A2D78DA515F90E83821AB901506C39EF8780D28B63BB488F72A50ACC0A99E9C926FDB37FF2B5CC3D199F4D218A4AE3032E9271898CEDC79FBF98A4A5B8CF4D9D81C52A77A41B629C75409211E7FC914B7796E9D4C2499A9A9AFE407FE8D51B77A5F4FD903B5C1DD20D418F99253C7F629666A6EAF4EFFEC3778EFCC7F57B1D2A95AB52EFF3777FE74D59D487F267796FAC1E92EB077343A8F15B21A30B7BBA603DC0D2DD9523FD61E74E36E9EB6FBC463FF8D14F98E80F92EF1A5AA3E62E8F1A5137EEB8BA218E64061C460B232DE5CCA993997377EEAD308CDD2954D88B8B8B7CFD3E956B53C3BA25A6620E161F0C01A9C7A16CA54A66445C894AEA3D6B5398092315ABE44DB963B3301B65EBDF67EB551FC058BB7977936EDD5DA34855A8BCD700D82F232E53CD77581F8CB52186D7FDB50D6AED741805FDB634454892716D826E2C0EBC24E9D64BC5838DA8443A2D65AC536D6F53CFCD73B0FA1E69EB7911682AF0A97DDD108F87255C3002D1F5626575D3543FD791231174AEA548BA583B39C6CD9E4749F05CC705FD2CF39CE2DEB7EFAE8A3FA8B87F81CA899903A4248EA70E18B644116CC712D5F72E5DA6DDDD36A5859A3CA913EAA9B87D946F8F4D644B494D38CFA6B12B096BCA223FDFAC8A44C13EAC194310A65CF6A9D9689AC60F05EE70538FF4606E88E336118E203794A434FCB3179E961A0FABF75769B3D5923234A9C564B2AD86D6F72696D43039906D373B334D0B0B27E8ECA9536456E9EFAD030EE386A0715D299F2F9A274D1508950E037AFAC97374FEDC190AFB03A929DDE9F5A5D683B42BC4A26D544FE9F56555252261E82B89DE2EE5C0D4F6475337F4A144799BFA448502662CB2264A3C6B6475A48E865B98E8F175431C890E404B40D405BA71E3B6D503A69E81C9FF8C57C878526C0F44A6A6154D647283BC388D9DB725CF37228889AED14FB81752545214068A02EDF1B3D5B03736276B8A2A241E5737C411E800A348913A88DE2E8B376ED1DAFAA62CD2CE82955CCFC103980E405253CD269D9C9FA3B3A717D8E29E4B6680EB8C5085C6484185C4C721248957541802D4E266BEF8DCC758B40C24DF7F9B1532EAFDC49571FB3DAC94340D9F219E90962E298A81294780B02666088AB65659FCCCCFCE8A1E80F73428F949E2EEE81E3234BA42E29E4EBAB153C294E9600714D4D9EDD2C6C603599A1A1348FA02D71BE4358CC83165D4230A781BB92691942353D24F126209FB0621F96C84D93204D0BE9E769AF81411B7B822D66837C438F70F70E77EA4456E63C4430FB47676F6ACEBE60E4181FAB6A6BDB419949C51B35E0C3A049D5851710B85602182865150C112A53172433CBC12CE54CD36AB159F38775A4A9201F56CAC6F30433A227AA46E5C7F60DE83BE59CC8D92C5DAE028DFB72BE5450C950415210B0210F4C48959164B815C3376DBDE2D4C4639DC52D1A41E076FE8B02F6810854965148CDEE9D9199A9AD6B689B2990D711D7FE19F0EA98F6C68294963C44FDC7A36EEF3E2DB8C399643CEEAFCD10DA57561F6C568ACAFC6BF5E9055CAA884C80AF6E797AFD19D7BCBD2E522867C124367E2EA78D9A932F0939CC6CA226EECCDB8DFC7513C2B5801631138023E2798A93A7175ECA507F23D648EAF1BE2919D71713C1C28E6B9672FD0D31F79429431DE4042B1C831B5228CE851B10AB68434BE349B1B5AF2C42843E7A47AA34627E7E66896098FCEACCA53236740BE1DC4C1D78B8D790F19659570144656B42859358FA63C6951A65858997B20AA8096B06212D0B3CA3604EC080506C4330495B2209A023F2DF19D696538AC8047AE8E3FA4683AF60C88BDC5F1E8059E47C78CF7AF5EE591BF65514DB6B3B6E09C6455BC671DA0698F77CF366C36A8D4B34B989428DF806703620D50CA5A17ACD0A1EC62993D2B241EC324ADE0919FA04846303A9DA2A73C8AEDA1AF98293B3FB0CD38C3CCA8CD77BF500EAE85E245AF0174E09863A2CFB308423F6265D7260C77D050FBBA218A88ADC6352459341D4C5D508F15668DCE9EA9081C3506945DD4219D4C7B52AC0FD0D4F40718C85A00300FD0B322A2A8C2E74C81BEC0AE1580332EE9275C300386A5D101DD102662A7C69E01912D47B978FD96ED52AA933A0EB234D58BFB08288B80E2E5AACA54C6EDC04D31A04EBBCB3074D7D48AF37CBB5AD263C654A4253A9A6F4AE1BF2257485A36760F5B20ABB6F19CE8716000D009CA4C3EF9C4395A5EB92FA9863BBBBBE203CA42469D1995856D629CEA8768008A842F58C2F5C62C39AD5C7342EC206827437A7E84674A9FE9E831114164DC110B27E7C565106A1384874D80E54B5D86A36008CA92F5A5894F9FA281E93B298A96A127226070C455581CD52A552A55F8BC17245632C6F8E819B0B70F2866BB64E0A1A7A58A62E3F0311141BD2EDDBBB7C2C40D9DBEBD3610EFA5F0AFCC04AF3281C99B10B443D6E7230BB89512B10338DA07B4C5B2A46020330CF683AF47A4A5902E28DC41431512E31EF591854B1E14D7632182E296B6535392E38345148807C47035C975280A4926A24467E587D5218D7A4DBA2C9D3831232D7393DCD2BC0452D952A2F90A89D21A28B21FB26E6BD1018F83088A7BC8546B157AE2FC5929430C9403180AE5DA470C00E8C7B6B60DE3EA882869836C69CFF8FB218EC0480951B2E29D9AACF1F98A88A0928F9F69E476DC6DA9705D523E1322AECE1BA55C321DBD23E9D4ADA3C7400461447619FDA0CFD7C0E27D159911EF31A4AC96AA3431E1654AD2C4A90C7EEC8E8E1193155B4AF9A65807C5318028E9675F38030A645012AFD6B619908A840F9EB68E3B71C8B2368842FE496E9FD74758F679307AE9A355C278088F5C44BAEE310A82F8313E9FD4E04903F9F9CAF3B6A983368199B84E509CCA02BFD0E47453FA10CF4C35536FACA651266F56ECB856BB2D832367ADE481128EC24170E1C28552A5523934E1ABD5EAC8CFBCFDF6DB79866A2330548611478082CCFBC4DC0CCBEBA638DD76777669B7DB967D889F810D43C2FF23CD7C7428DDB5A5498FE40BF9E2708B0D2F1867538DA6B440C179202C0CDBEC0CC8B6338C5588B6299191F17E4820DF44DEF8FBA234A3DAD4248AD4766BABB1BBBBDBE43706801E765B0F9FF33CD36CB1D56A0D9D8B5F33333320B6C6796C99C1E1D4D454F8EEBBEF86E91038220640BE23F0A22182F8B83251A13296962A4AAA5CC53DF3047FDB60BE8AB3DF30FAB593C8655111FE266D24B6053B51F10CD0E94C73FBFBC4558E35888F76EACE0CC4B530D4DEEEF6D67C085C5C4C709D3F877DA7365E723D5E706EEFD50CA923DE8F980161A9541AF0ABB7BCBCDCE3D9D6BB72E5CA00D7300B1E5D0788A732247E38DD5FDB4CF237DD1CD158F6ABA441739A4EE8D9C6CE9E2DE42AF050F9129A84A30E7D05E0889B42C7565D1091CB3488B3B9A691596919A74382F286F836B013932E8ABC5EA7732E3045E992273231338D5AED525AED8A0E8729F12919E91A8A8589CBE061C0BFBFCFC75DA60960E12E4456A7D3191CAD1226937678E6D4195A983F49ED4EDB3AE3E2F0632822C1D4850EED0CC88D5E5BC01B817825652B3D6AD4AA34333D4D13F5091143828292A54B595DA921CBB54E8A7938A69789E7C79232D219D3813FE331BD4EF36EC5FD4549A5DE82114EF92EBAA96C8FCC2335088C55875DDE477F5E8F3F0B6678458BC38F40099B512589B952CBA1C2FAA06413757522AB13C587E2DCF090B21E403E68E01BE75B1A2133CA3850261E40D66320D6EBA8F8848E540A3BE399668D2EF42F909F619285B5413FE6F6487BFC7B660A54BA2E8881E83C98B1B300233EE4E780C8207C87AF85966938D7E519D6E5578FCFF7171616C2DBB76FEBA39B01FCD7757A3D5A5ABA4B5BDBDB266345FE58CF4804CF424B5299863E3667CE644678E658C71911363C19485CA0245DF9B0B863543C5E4A0A89A6506EE8CEE93FA9120415576017DBCC70A3CA17270E30D11DD327253C88CAFB90E9D8B679BBCDCC68F1768BAFB5787F9B19B1CBFBEDE9E9E99E55C2FAE8501042923C52CF9F3B2D4DDCB6B6B6253505BE1F82D8E947D4B738BEB00FB99B9CAB4C9962881CF49A418F19247CC123BAB7DB06A2C42A6AA68D3033CED2B6E7300D64E3AC41803B9A3FE7E3BD1F032CCA8102963814137800F90EA2F37BC7217C8B4558ABDFEF6F4304D5EB7516FB9DFEB973E7FA0C4D6331A58F500419850AA8589B4035F42ACD336ED7D671163BC1426963688234122766511417E82B59875CE07B490D6953D28CB762A8A509C1C533204A962A49CB146DB15344D9554C80B14A5B3194F895D448C7693AE223BC40743EEEF3B66347FB0E4638EF6F31835A18F1600613BFCD84EFF6F8353131115EBB762DBC73E78E7647FE913100154BFAFD45AAD76BF2C6A8856146560E7BE474C99BA824D9754A166738C5BBC94B004DDCAC2DEE499C8F4517F8A394B6DA366999428EDB22964A82D8CCF950A0A4623365D0DB8BF090E750ACBC0F190EC2EF32D131E265B483F8FCC6E8DF6526B499E6DD46A3D1673B20C48867791F1559C0876600ECF55FFDCA3F54C3DED050500FDE8985889E002C4210E592842B49410F4C1E289F937C9F02384B71D01E69ED3DE3C24E8E79F6743BBD91316A91F4CE8CD3D9275B3E98C48070103141F5D2ADC54B7FDAEF5ACF618A7862310159DDB7884660A42B66EC7B9BFF26C8F70E942C1B5A7D1EE9E1EAEA6A74FDFA75BD17E1F76580522A5F97561DD44D025D80F787F5D2DA71352B9D552FC99096EC0DCCABD6D6E6CA8FD6966F5FCDC148C8F7C851A88091226640EC98F01033FCDE8162ADD56A226678B40F58B946F7EFDF8F8AC4CCA118A0B2791BEAF9E79FF77676763CFE1E0F0E4C3A8E2FEB5A162C151B639485C07CBD1B8583F76F5D7BF787808C79F94EA6D4782F96EF4CC36D8C708818D65B2DBB0F66889861E2F7E7E6E6061033A3E4FBA1196089EFBDF4D24B1E5BB6016BEFA0D56A05FC85018B91122BBBD2B1A4BFEBAA88C196859B51C84682AFD6579616BFB7D3DA5CCDCB77AB5413F96E091FCBF68C9801E159B90EEEDDBB17AEAFAFEF2BDF0FC58098F8172E5C086EDEBC592A97CB15D6E015966D15562E551E2415FE9EF2319D00CE0A7A1B763476C14EAFBBF3BFEEDC78FFA7AE98B16866108B198C6CFE1B45BE5BA20B7E8762651A8811D56C36074B4B4B612C661E95F01906C46287C58DBFB2B282C15EE5674FF00F9860EED7ACA15245FCBD51AF75194194F17720230E68C26DDCF08BE2404C0BD3682FC2A8BEB374FDD2F758C9EE5AC28796E879189928D52218C9840F7940862C111E5ACC1C580431A76198285630F05BF8F6AD621EAD2C5DFBBD895AE3743928CD78E560DEF3CA73CAF7663CE5C3590F873A4494BC79F4611BC0E1C736004CFE806D9852285B0442A2A479C3D128617E9E595FFCA0B5B1FAE3B595DB972DA21982911033808E3CEA45CC601F8A958F3B8785918F6C43599F86109965BFCF5F58E61900D1836D997F54859550890DA63233A6C4C7251095B741BC6522FA76DF97A0135B96D8375B1FC2AC59AE4E34FCA0D4E477C3F74BB39E1F4CFB41D0549EDFE0AF2EDBC1C08CC356059679BE619EC677C4CC13A6C5B30FAFD3F3B3E1201CF459A4BF7F67F1BD1FF0F5BEF5C7609BC0488BD7C568C28887D8E17702232166AE5CB912FBEBF50749F80C035C1D0031B4B1B101C5EBF348F0793AE21D542A152646E883D8CC18DF121D239BE91824C7CC283F36EF63268039B85E700D0681CCB49871F69AECFB7E500ECAD566A95CA9972B953A33AEE105A569DE4E32039BFC657536E178A0044D46957FD27AB07E3F1EF5391899E077FE1B30EA217ADAFCF7899BC0C2C890920CFC0F96E8850CC841502021C53F4E412CF1168466B3B10FC2A8C9C94939E699E1C5220B5B565870BDE29A30C632CBCB334B8B1B580B43ECB50C731C66052E43E27D92B634DACB31D2B3BF1D41901E703A086F898ED1DEB2B36097FF9E1E60E4C2C2C2C0FA673E74C21732206780E5A2AC9986211057281FAC62DDC1CC907DD80BFC0743C60B63A6A7A7855156EE27DB3CB340C47866E11C88CBCCF2720CC9CFACE4D83245590F6537B65C21662CE1DBB1B56AC58C8E4383BF08C28F64C0012CE33D42E1438C22975960144E8059785B2629CB886466C533AA6066F931C3182627B3CC32CAB33F33428811E287B71D7823DBED76FFC489137D58AB1FA67C3F52061CEAA18FC02CD641C9ACCA332B168160068F649567561CBD62868490EDD56A75E004C27F6162E64367C011306A3F660D89C098594C7C6420683BDA8F859839B60CF80099A52917313FAEAFFF0F7E990507A747E3B10000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (148,1,'Server_(24)',0x89504E470D0A1A0A0000000D4948445200000012000000180806000000F755AD310000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000002C24944415438CB95954D6F633514869F63DF9B34B7DF30A2A3A6B3E063CF92FFD0DFC20289C5B0E5AF20C41236A80209C166106B2418040434425544A9DA6620B9C9F5B1CF61915040D036F5CA92ED47EFFBC8B22B7707E0ADC7EF7E6085D7CD7413A10E48BF68AE1F1E1EE4CFBE78F29304F9BC3F18BCFFE987EF7DC3FF8CEA7A12C31B1E79A58E1B040F4890E5823949F3E5DEDEEEE3FDBDDD378F8F8F5F3C3939E96E04E55288310201002720186A0511A19442AF57D7F3F981DC9A28AB72757185D9B26A10C1DC397AF410016208745DC74DE31AA49AA9FB35C1032ECB83EE8667078118234DD300B3BB410F5EDAA78E15048844C49C69D72140DBB64C2693BB13A59C573307040B4E14B0952311215FEFB9CD51569E4FA6608687B052EDD45505224810445803A4CA0BBBFBC4E0D4554D5547DCE1FCE2124408AB54CBC4B7552B464A2DF3AE63B3D9443AA11703C50A227E5DEFCE4425295A0AB3594B150417C17B35AA1941D60725CD04A0B83157050771D8D9DEC27D0909AC01D2AC188E65433B45358365C088728F44391700CC9C920D3367B1E898CE15842564BD6ACB3A86934B464B06845C0CE01EB27346B5B058242693E76C0C06BCF6F2113FFEFCCBD2CF7D64A76CF4EB1E8341C3E6D6061050CDC4F8D7850CEB393257B21BD3D90C30745F4949190CFAAB6ADC0D0298B5893FA65354338B4547DBCE504DD7A052B2AC05D2A408D0AB23BD5E8D174829AF20CA2227198F9F6E0D87C3D0344D198D46061477B7EADF5C234A2069210425A99273A624DDE9C430B3D0B6E7EF00B96D5B0E0F0FC7EEFEA5887CFD37C85D9E7E3F62B0B141AFAE68DB39A3675354959CD3C05D72EA16DFBA97E4EEDF99D993B3B3B367BEFA3D2A1189C3E1F0D5ED078F3E12E76031EBF6E6C80EB00D3422A19FD2C2AF2E7EFDA4FDFDF26311F96A3C1E5FFEC791BB17E007E0EDD5C5FBA7D0EAE8E8687B7A6E9B4DD3FC767A7A7AE3A3FD278CE09ADF74A16D700000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (149,1,'Server_(48)',0x89504E470D0A1A0A0000000D49484452000000240000003008060000007947D8150000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000008AA4944415458C3B599CB8F1C0711C67F55FDDEC7ECDAD960EC6CEC5888A7791C8C1002041207908244244022204EC00171E6DF811317102012211E0714E580504404088808E0F81136B689B38FD9D99DDDE9EEAAE2D03DB3BB2646263BB46676A51E4DF7375F7DF5D5A32522387E7CFDDBDFF96699E797D3444B34A992440A454A49B44C440B512D45B5529132512945B45095F28517FFB8BB331CFDA12CD31F3EF7F31F3D1BF75FF8218FF4FE132B83E52F9D59197C76B83B627C70485D3B6E81B9E16EB4AD1311B4ADD15ACB95F7BC8B9595659CD89D4C265F85F8CAA79F7CFAF79FF9FCD79E6D32BEF7DC8FBFBF712A40618E9901C2EA608934CD4812254992FEADA82A699A9026295BDB3B9839048808802C2D155709AE5624DF7AEAA96FBCFB9967BE3B7ACB802C027387709A2698D40D11E0EE44386E0E229839662D8FAE9DC5AD3C760541085413B23C597ABD6992533164669819AF6EDC6667B84B96A4A4698A1388082290E739EE8EBB736675B5FB0130FB3C5105510239BD86220237E7131FFB086F5B7BA463C5035525085484D68C4413549597FF7E6D16B2293F079386321788640E80DC30377EF3DBDFB1B53324D5044D14734722700FF222A7695BDAA6E5431F781FAB2BCB338610D04499342D360F86CC1D33E7C2F9735CB8700E415015DC41152240A5632B02B23CC5DC3B82A40355A409488A260A93FA7480DC0333A72A4BB23C4555111154641A935E2B828A32DADBC7CDC003E91951CD887054F4F40C79749E73F3D57FB2BDB3DBA777426BD6B1300D59D3D0342DEF7BCF3BD1C50A14A4071BA2A826CC8475DA2C73733EF8FEF7B2BAB24CE7B7316345443A91274AA2C28D5B1B9D6FB977F401C3E12E0B55415996A7074474C678FDC6AB1C4C26A4BD29BA77A08820CBD22EB4E1AC0E06A4694288C6942104CC83495DCF43D4BD310A70AC1C0541F78ACE1ADC71373C1C77E9C3D3A968AA25994F961966CE3BDFF104AB2B0322A2F79F04515011DC1DED4BC9B56B37389C4CFAB4EFFECC98D23914D7B0C0CC78E9AF7F676738244D3BA76EDB960821C2298B9CBA69689A86272E5D24E94DF37E6EE6C450178E8B8F3FC63B2E5F42F4E465A7C29E1E3B3BBB1CD693BEB81E950F7A2DCDC1A93B518B80EAB19B4BFFAB8F854444083ADF3AEED4D3B0310F86DC0D336579B1E48517FF449E67646946559514658E20A469CAD9C122A85255057B7BE313B57E16B6793034354611E1EC99159244499384C1F2120B55C9DEF80011A16E1ACAAAA26DBADA17C718927932641680131E0C8723D2AC13F5F8B026EB9BB2344BA1CC49333B0A59EF14478A7B2B927E53860CF1C0C3198E4624AA6459CEDA2367A8AA92E1EE1E5A2BA9766E2DBDBB4308FF0F86DCBBDE26D1844B8F3F36136B9224586BAC2C2DF66D2C5465C9F67074D4A0DD97F8F361C883C099D4357FF8D35F67E7CFAC0E585D5966B8BB4F92243CF6F6B31C4C1AAAAAEAAA7D9FF7C7CBC75CD2DECD40843CCFF9D4C73FFC1F5F50ED9A7C80D59501DBDB233EFDC98FF2A39FFE72C6CDDC1982603C1EF3B35F3D7F6C3C5AA22A4BEE6D6E91A519EFBA7C81AC2CF9C095F7B271EB95BE413BC990C89C9C9A70961617F9F2179E3CE698CCC232D5D5D242C5AD8D3BDCB97BF73E6EDE6A8E3DC0A93D9CBDFD7D7EF0935FCCCE0F9617298B82CD7E0EBB74618D85A5252EAEAFD3B47162EAE098639F9EA1E81AB4A585459EFEE2933376A2EFFEA60D1BC0425571E3D5D7BAA68E3859ED99572DB3CEE846E3930C5555499EA58CF6C6B83B97D71F252B4A2EAEAF63E60811829E281BF3A9F661B83B82760CCDD809A6A3C5748FB0B050F1F23F6E606E7DF77F326C3A9F6ADFF5436F6C6E73F7DE2677EEBE8E59B75820A05AA838B3B2C2DA2367397FEE5186BB7B9839890A329B32E484059CDAA9AD5F380820AAA4226459D63BB6F60DADF79D81E16688A6E87D0CCDCD87AC9F5E3D82E5C505A2EF00A02B175996E2E69875CD9CB993449CBA6CC09B74BD16D133E41479469665DD90181D5851653018B0325826C4FBE5841F09F9B829CA1C00B9758B29F760696991A0BB69DDB44C2635870707ECEDED31A96B549259784FD4B21992394CAED3B035E60C37B7D8DA1ED2340DD61ADE6F475413B234A5C8F36E17D0CFF633219F6841E60008C05AA3AE1BCCBA666D5A3A22020FEB971246DB8BBA6F194F84CDDA46E606C8A30BDB745597E659275601373073DAB6C55B3B6AF28F6DD0AC69719F272077CC8DBCC850322C82F0A02C8B7EB4765A3BCAC8D9D441D0B62DAAE0E632DAD94A4524BD6FF310F7FD67BAB5FDAF80F22CC7CD69CC90F6E8A68B0B15459161DECE3232BCD397590B2EB88059938CB76E5D5C5F5F5F1591A8EBDA4524FAB7F7E75A331B8BC83822DA070332272F52F6F71D6B5BDA5E4B49D37238999017198926B35D638467E1BDF04590081A6B93C3D1FEE7DCFD00204DD33846481311E3A228B623E2FAD9B367AF8BC8E881800218EF1F301E8FFB9D74B758306BF13E442A32E3DCAD593153A25F3C4404AD9958C423C0A40711400D8C81ED88B8E6EE37EBBADED9DADA3A88887820A07FBC7293B22C288B82C5A545CAB240443A236C8DC3C984D76E8F99F48B06C75237C3A50B5DB85B63ED756FEB1A70E050444611F15A44BCD2B6ED469665BBB76FDF3E8C083F216A1149D6D7D7F3344D8BC5B5CBC57471B5BF3F667F7FFC70E9E148DBB6D378ECEC6CFFEBD7DBAFDFFE5BCFC610B8E5EED754F5F53CCFF7EFDCB93379B3C70FA988C8850B178ABAAECFBBFBF915959DAA48FF12C8024415215510855B141EA1EEFE80108798B54D53D77FBE7DEBE55F44C45E446CAAEAB53CCF6F0C87C3EDEDEDED31D0FEB7E72012113386226221CFF3A583838345552D814A44CA2CCB96D3BC5ACBAA85F32AE93982012A0B8156049588160B8BD560B479F7F9DDE1E64D55BD1B11D7D234BD351E8F47F7EEDD3B88087B18A2E53858E98C44AF5EBDAA9B9B9B495DD7DA348D9A990E06036D9A2631337577CDB22C1391B2699A52442A552DDC3D8D883744E45F699AEE6D6C6C4C8EEBE37F06F4D05F3A9A6F922B57AEE8FEFEBED675AD66266B6B6BCD4B2FBDD4BCD5C753FF06C6A05E708151475D0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (150,1,'Server_(64)',0x89504E470D0A1A0A0000000D49484452000000300000004008060000005C20F4460000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000DB44944415468DEBD9ADB8F64D755C67F6BEFB3CFA95BDF7B7ADCE3B1612EB18913CB96C32511C828440922B28048790852489EF2CE7FE03F8157040F110824CB4282002FC8420A529407C028219840ECCC8CE7D297E9CBF4A5AA4ED5397BEFC5C33975EBF1A59374CD9166AAAABBAB6AADB3D6FABE6FADB54555397B7DFDEBDFBA5ABAEC4BCED0146C6612DB488C38B126B3D636446C965852232613B199B5922164464C668DC9C4984C84CC1A93FDF09DFF4B0F0E1EFD28CDD27FD8E8E85FBEF9E69B051778251FF8D3ACF9D54FDDBCF6A7228208548F822050FF0CAAD7A5F7284AF09EE003413D5992B2B4B28408B824B9D7CFF3D7BCF7AFEDF8EC4FBEF0DAD7FEC524C95FBCF5F77FFDA3F93900C41811116EBD7F8FD3932E2178CAD2638C1055C80739C618D224211F0E015868B7F03EB0B1B1CE4B4B0B8808A008008A0FFE8586495F501FBEF9BB7FF8C7DF13957FFCDC2B37FEFCF5D75F8F17EA408C71ECC0334F5F66E1B99B586B499CC51A8331862C4D116B11228DAC81B596B22C4912CBFDAD9DF1FB55A10A5915C5C4391A59BA28CA9703E1D5EFFEE0CE1BAFC3D1DC2220187C8C78EFE9E711A21250620844D52A7DCA48242280F71E8DB0B9B9311B812A0CA489254625B1095600FCC5A7500C91181511E5DD9FDEA1D7CF892152942569EA10310C06039224217509FD7C0040BBDD201F945CBEB4C6E5CBEB9308D4F65735543DA689A5F0717E3510EA08ACAC2CB3B6B2820AA08A4B2CC618428C586BB1D6A00A460C89B32810FC240581FAB1323E8448B391E2352062E6E340984AA1E73E719DF5B565AC18ACB5F81040214912420CC41071CE015094052E49B8BFB54B51148828A31048653FFD7C80AAD06E3529839F3F0AFDDB7FFC80E16040A853C8B91423900F8624D69238479EF701A1DD6E91E73997D6D778FE13D7AB3B2F534520824B127CF0747B3DD2D4CDDF018D4A04B4CA2054238AA122401D73C2E812CCCCFBD19A31EA3F69B71A2042621DC3A2989303318C0D78E5E54FB3BABC04D690188B8680022EB5C4A0841849D3045428EB086DEFEED2EBF5EB22D6B17F024485C4188C80B3B64ED88B462118A3D0F6F62EFB0707D45C84B1666C8815418C45ABDB5C3988521423B41274CCD9550A85106A20108C9179456092027BFBFB1465490881A22871CE6144C8F301894BC85247AF9703D0E9B4C9F39CD5D5159E7DE64A9D42131C15C05A838825AA10756E526202831B97D6485C020A5123D658408921628CC5584308014148124B8C8110751CC13111D750747ADAA7D38646A331BF08C4A9227CF6992BAC2C2F638C902449F573204D1D3142089E2C4B01180E0B9C736CEFECF270FFB046211DCB8851BD0F8B82A81197B8F947E087FFF53F14DE57305A14A4AE62E23CCF712E214D53FAFD3E6284C5850E79BF606979814BEBAB9503710AA46A161EF17288719E30AA304A81FA6BC746988951626A888D4A0811AF1E9D12832A5332029990DA2F9E3D1F5DC42329F1F28B2FB0B4BC883186C41A620C880A499A8C6134CB1C020C0B4FEA1C3BBB0F79B0BD3BE601C61A68DAF099DB323F29B1B5B3CBDEE1E1184CAC08D608212AA696D6AA8A18C19A4A5E0F8B72AA88E358464CCB6A66F9EF822310260EECEF1FE2632478CFB02869A40E630CBD7E55035996D2EDF6516061A143DE1FB0B8D4616961810A45CD58464C4760ECD47C506892C397362E91395741678C88351811428888118C18A24604C5DA2AAD7CF0F4FBF9A41F982AE2B3EA74EE5A6873639DC5A505ACA9703E0450551A594A8C911002599655F03818E252C7CEEE1EB76EDF859194A88D9E2964E61981389112793EC0FB7292B7352E41E5C8B4E65755548450545A8A293107CC22905C4C117C4804C214132FF3576F7C87344D714995F3A973743A2D9C73A856A4963AC7D52B6B9C9E0EB871ED2A771F6C8D61789C2D32DD9B3DA114B2C6B0BEB642922424D662134BABD164F3A94B586B393C3AAA449E11BADD9CD2FB998E6E1CB13A85CED6C3DC99B8DBCBF9EC675E9AE4F154CA8808EDE6538854CA524410231C9FF666FB0199CD189159629BAB1A6D3432FEECDB6FE09CABA48373B45A0DD65696C9D294FE6088B5963475DC7CF632FB8FBAFCDA2B9F9E38203A2323A611688E300AB16ABF10E0F99BBF5CF55AC660ADA199652C2D2F608DA5990F6A6D6F38ED552834D391CD20D02402B34FE65403008341C18B9F7ABECEE5BA048D1DA7C5DAEA525594A6B2C79A84D35E3E35D8D2C70D9FB43873921201D44404216BA4FCED77FE79E6F7AD66831BD79F25758EADED3D44204D537EE5FA533C3CECF2C5CFFFD66C3F704646C89329E2EA3E051FF8EDDFFCD5C7FE6254C42B4B0B559B29062572F5CA2683613155C4FA988C18D7C30578613E2A85628C137439F36F446451158D5A91985677DC88F0EB9F7989DFFBE2ABE33A1AFD779132E2E379A0C6EFEF7EEFDF677EE75CC2D52B9701B8FF601704B234E5851B9BEC1E9CF2C9E7AF93F992DB3FFD494D64B3C4758144FC51D3694550F2C1903FF8F217A61A9A4953A2C0CB2F7EB20AA5A9A615D76E58FAFD0177EFEFD0EF75A966925386CB949ED027C0C49D7693EFDF7EFF5C1F660D242EE3D9AB9BFCEFBBB7F065016A6BC385B3BD99CE2D85A6882CF8C07FFFF8BDC75268637D1580DDBD03BCAF86532FDCBCC2ADDB77F99D577F03552171196551CE444D1E93D5739E4AF4F301DFFAC657CFFF89223C3A3A1DBF3FCAEC7E80A955D51C5368A2469BCD8C6FFFCDDF9DEBC3363756383AE9F1CD3FFACA8C169A0839991972CDAD88C3540AA92AA5F7C418AB41AF2A4684A5A5055495A3E35342A85268B993F1E8E8081D756F32695EA685DC0C0ACC6FC15131E99D7B3B7CE36B5FA9BF586B5E30D55DD4914C56225A4FA695ADEDBD2931378D40B36C3CBF229E92D327275D1EEE1D72FBCE5DBAFD3E22D53646A8A4B33182188315C3C242876BBF741511337E7FC5D2B3AD2417D8127C2C8C8292658EE79FBB5EA55351920F4BBC2FEA7551834EBBC5F2529B7667012B869DBD7DA22AA28AB1E64CEA4C64F5072DD92F70C917C7E3F176B3C5BBB7EEF0E8E888A2F09465890F01AD0DB4D692B994E5D525AE5D7D1A44274C5E6BA149EAC8CCA871EE11F065C9C3DE01DD6E0F6B0CAD660369B73062B05630D662A4EA071267C128D14F1CA82A43CECC47474CF604784045B8B2B9C1C6FA2A078747F4FB03F2E190C170880F818649483347ABD9E4D2FA2A0B9D16BB0F0FAA9E18A9971FD36A74D21F63749E4C5CA190F7817BF71FF0FEBD6DFA795ECD4343042398BA36AD35345CC2E1E111CF3CB349180D77991AABC8D911EF9350A322845012222C2D2EB0BCBC54AD95C4A01A00A1D1484992A4DA19BB6A6FEC4B3F71800F52A0732EE2D1557D81E1A9CBAB1863383C3CA45F9494BEAC4EA904706932DE13ACAD2EB3BAB442AF3F18AB599D192D3EC1221E5DBE2CB9777F879D9D5DFAC301860AF7A56E5C7C19085E290A0F2A34B26C725864CAD2C76444754447E6EE40544853CBD5A73741C0FB880F1E5F94354764B45A4D3AED1669A381B3869DDDBD090AE9E3F32005420884F8041C10A0DDEC706F6B8B93D3534219F03110824711AC08C6262449C2E2629BCD8D8D4911D73DF1B48C508D441F518110C2FC1DF0C173F0E8906EAF87082469422A0EC48CF17F3499B3C612D513834E1DD7D1310D6B0C4489D5DAACEE35FADDAE15117B4E7B75529E15027CAC031A9595E54596161738EDF628860545E929CA020D4AEAAABBDFC832569697C832C76E7E3019ABD48B7A8DD589225141A43ABE108237C73BEF5FD9DCDCEC88884E1B39F51A11511151638C0E87431F42C8452457D570AE1A787478CCF6C37D06C5901815ADA575350B35182BA4D670747CCCE58DB5A9135F105119AD66A9C9775CC4A53783FEC9E780BEAAEAB413F51D56118921842822458CB16BAD7DE4BDDF050AE01C0EC4800F915633A3D5688091F11921009758A45E009AC4109531BEAB0231A668E5F0E8C0482591141F82D1186F88C8E08CBA1E191F5475688C39050E54F5D039779CE779AF5EE59DA38845585F5DE1384938ED9E521425F92010BC47B562E1C4595CE2585CECD06A36C9EB135C55044316630031538E55FD43DD4BA7678D57D5608CC955F504D80F216C596BB7814311E91E1E1E16AA1ACFE5C0AD3B7769341A34B28CAC91B1B2DCA6D948712E256A2484480CA15A04969E877B079C9C76A7422836C688CA881722512184A044DD0DA1F453867B11E919638E638C0F8D310FBCF7BBCEB9E346A3D17BEFBDF7CAE9029E7140265D87F9ECE77F3F99CC4923BD5E9F5EAFFF73C19C4A754070242322A021F6FABD93EFEFDC7BEF3F4524D6F9DC15914731C61D6BED0363CC7E9EE727D7AE5DCBDF7EFBED30BAE31F08A32262AE5EBD9A014D556DF962B87A51624B15196FFDA3FA10C2ADADDB3FFEA710FC001802272272006CC518B7628C87C698D3ADADAD02080707077A1E1E30B5F1EBC0DAA0777CDC6EB6FE15E888D08A9126221990296421C634067523B4390F10281C9C1CECBC75B8BFFD1E908BC8B188ECA9EA96316647551F6559D6BB73E74E59AD27CEA7F4A4DE34CE44006889481642C844A4212269082133C6A418D36C34DBAB69D65C3149B6E112B712A10534444C23AA34AAE7D25024EB749A0B6138B8BD7DF7276FC518BBC698A318E38EAA6E017BCD66F3A8D96CE6EFBCF38E3F9BDFE776E06C0DDCBC79D30E0603331C0E6DBBDD4EBCF7C67B6F430836CB321B63B421049B2489B3D63AEF7D6A8C49478EC618C7AF638C998824AA5A8AC84363CCF6603038109193BDBDBD0110F417D0D5F261EF95D9B9DF873D37376FDE34FD7EDF1645613B9D8E2DCBD29E7536C6688C31B14698DEFDFBF78B9F254D7E2E077EA60F399FB36382BA08C347D7FF03445C9686BCD643590000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (151,1,'Server_(96)',0x89504E470D0A1A0A0000000D4948445200000048000000600806000000BE12341C0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000019C74944415478DACD5D5B6F1CD971AED3B7B9F22A921225519795D6BBB62C055ED9461C07889375E2B7C00E020741FC92A7FC82E43F388FFE0379486C200B04411C040812D8468C18BE65E3D8DEF5AE77B52B8AA248F13EE49073EF3EA9AFCE39DD3DC3112FB2969C915A3DD33D973ED5555FD55755E74869ADE9348FAF7EF5ABD146B752F67A49C5A75ED923AF9C78BA5A2A04935E104E799ECF1B4D90F6AABEA78BCAF7A3C05791525EE4293FF47C8A1479E6B5E745BE4711C9397E8FE7857B7BBB338F9656DA2AF0BF1DFAFAEBFFF9ED3796E81C1FEA3801FDC9D7FEEA6FA727C6BFA414F1207820BE1704BE1FFA010FDC0BA3205405DF0F229F47EAFB3EF92C017E83EC49F15FFEA0FC10EF9579227B392E7FB33D0E2D2DAFD077FFEB47A47542A552713D0AA39F79A1F7CD0BC5F85B6FBCF1467CD6020A8E7B43E87B1716AECEDF730390A1A8FE4191DDA7836599C789194BAF17531C2794C45DEA269A741C533736C77ADD1E4D4D4DD0F4E4847C0EB74AEE9732FB76A73317C7F197C238787D2B0EFFFA0FFFF8CFFF3B0ABDAFFFDB3F7DF3D1C8080857AD7960EEA2B7B6B7697D7D9B62EA51DC4B78C09A2D8428C1E0F9AE27FC916EBB435D1E3C9B0C0B2AA142188A00718EDF4A1D3ED76977290803FAF82BB7686A629C7F86BF47AB4CB5C90A9CE4BB0336C7BBBD5E7297B4FAD32F7DF92F7EC6FB6F4D143AFFF0516BD5B1024AE4AE6AB237969ACD366DD76A624E9EA7C49C0A6121332D36350812AFFD50F1EB80C28037DE2B3EC72395BD2FCF03EAC53D4AB416ADD3721312F91DDD272AD6641672B512F2FB93D96EB7FB475EE0BF5EEF16FEE6F7BFF2979FFFDE3FFF5DEDFC3408429201B090580D6E5E5FA03FF8BDCFC9734F99A1C08C9CB6C99706BE600D048BB7C87927616DCEF300D9EC62FAE08347ACA1897C9FB237E31050E20C9BACE71761BB343E568599FBAD56FB72EB60BF78BE2646C6C4B4C516F90783E181C0AC62C1942EBF076360138306F079EC8133381E273D7B4ECB1E528220607ECD568BC228347AE20048593017903787C2428105DD13E176793F56A950ABDD1E010C622383DABBDBFF707199BEF7FD1F99C16ABEABFCA75088E49D9EF5586DC6A01E7F2660334A18A370DE13A169D9E33C03B098CD2B2FBF4463AC11949A98B6F89399171E9D4E97C6AA151112E311F5A05100BF8FF8E11DAF3DC6C4A045D89BBB6C06E1692F3F86145AF1D793D17AD6CBE507ABACC752A97668117692EE070D0C8F52B120E760AE1010CCF2F07BCFD5C4322F93C6362C1F8FC13A142FC580CCA08D8B0F423FC51A88B318B106212EE287EF2B313D9866C09F2BF03998AA72C8AC89D217A9B52931C54AB94C119B639785542C727CD9A4D1105062D51ED77EE3C615FA02833447C2ACE2E618D4DE00B401584F3C1C9B17DF659FDF07CCC8A3B4136AC2037DF0E1233161ADA15139DF950696EE35BC9FA24EAB4BE57291430C7CCF08989871F3898D731C886230492E50D21678EDD35C1493A8EC5CB6B7206FCF8909DBCDDD0C1AC0A066B3453BDB7BF21C3116C7F0AC857A143448E74C40D3D2D213FAC10FDF147D809B56AC4685A860A4ED65208D481AB112B408E7710EDF83BD80346F18E4AD1BD7E9E2C519F18ED0220B2B3AA73BF2A4C81804C1B41084B246CA77A95130B1248B4D1C15482C408AC74930F0B84F21713E16A1C6321073DE989CDBC71C20FA892711B4D11E0B3D4E364AE7DCBC01A30BD3932220E017024CD22382414EFD95054FC16ADC6D42D4EBF5115232A74C784021C2488327B94D5B2FE6049FC7B8C41E53FDEE512271E73D2B95928417AD766B14B858929A182EFDEA95CBF4E9FBF7E4AE220E3166D1932189A783C8D8B402CFC43D00D744E804093723898F42090E61A21F3E7ACC80DB335AA2F540249D43237C1F634EC4660953AB56472450D416A41D5BF5D975974B65B17F0C1E26D2EDFA79A6C102F0C5C3189C60CFD365A1590DD41C1B854C52C1C52496E27FBB968B399CCB3C99CD18F0F318F10F079CAD5647F00812F73D6F344C2CC90D6065E529FDFC17EF588168897D2289A48DE698C174659CE05BC0308031C8AB79BF27F8030FE4071E9B4B95055EB0DFA6E45F9333D2B9D813BF114AFC14067E7A3C4E462850142FC357854876BF7120C7624B358A25EBC56CE80FD587103CC60D70AF129FC739003BF6380FB71D719078EBE6029558C08EEBE9148FFA31A8D566AAC1D8D363B33C6D16F4238D831C483BBAA1F3D76DA9867286E0D9CD0ED0CBB3712FF79E431A9A582A930C782695F23265F242A24512845A5E77EE1AE45CBAD00CFE3BC3AE76E1CAA58C7593CB2CAAD445A799C674003A4DB7BAA8D8F3956857BD5E17EA90C5D93A173D672EBED56A4BFC532E96C4C5836A9C85269D2EDDC1170F3E746DE18AF030E88801E96EAA69E29283D004861698715EA720ADE53C7009E6FAC1876D66F68D947E99E4657FCA8CD2BC35B291084211801EF46BF379C741CE4D6DEDD4E8E9FA96198232A02B1E49B899D19CC4E68D2040381A4FCE7996A2D8F80982608C6A331E69CB51B4083039ECE287C4452EC53B525E0C77AC71D0A0E5D5B534F9054D412AC23075E3611A0CC0D08EC0660D4BE5524A5EB10740371A4D2A32385FBFBEC05EAC98E716649D993A2C16954FAAD040AEE51C73D22EDD911255DEC51917721134E5769EEACF2A2BD5BFEFE77A4916A5DB342D0DD08C34D5947F3D125423C9316CBEA0F258996E5E5B3060AA45129294172036C024690C8983A035201CD02CCF307892C89AB998662EE605327E44C62E9B9B6503F4506F4667A439A7C4A024D57BD4B1AE5D75206DFE003829C7A31C486B71C59E9C776E39B1202D815F9741FAE123DA665C4BD96A321C83E890B1D9A07274C8AAB9FE46A3454B8F5724B9A5942F46E848A87335006E65B995E15F065260769A0586F392AFE6EFECC6BD3EAEA787D08C3EEE918F1E4601839CC750365FB353DBA55FBDF39E0DDA7A422F00B22E9328C92D0660980D401A74A00290F60D60638FF3078D86E489AE5DBB2C021384D359C6D5E5E61C06A95CFA7500A9CF99ACEAFEC2613FF00EA445076EB639AFD27ABCDBA7090DAB259997B481D0B0BAD8106F363218948FA4C1D42B95725AD7021097848BA934D631EE5D9B68194D0885229B9A33479F0A85026B5551F2D241109840530DC45CC700B33A23377602379FE46AF35AD2A39F7EED9E4977C034F858A7E340DA7C26E281FBBE897B1C88E39C6783489C8F0A1C4977627AB8F89856D6D60572711312A75FCF70F16996F1C44CF2AC40DA5E271A1650828147F2241FA38561A7DD0D7C3CC67169F1105F7FB248DD06A28795420DF569A31307D9AA83ABCDEFD4764423A42AE17A565254B138025C491C0E212369C9AB958009F64C14DE38E8F4713D9D64B4553D83669C5D1CFD1CB5F9DB37176887E39695A79BA24118A4A8BE7B4ECA1E375555140C51BEF2ACEB97582889197F8A34373B25DD226FBDFB8111827665A29CB77A06CD506704D427AA6A084867C9087AB8B4426FF3A000C600590037F648C7A2523A562D9BF696008CDD047E48B306D206E3D1EDEB176975638776F722399E37B1BE14C6513423D5C851E0620318E1BA3A0E1BA3A6F1B10ADDBAB160FB873C5A5C7A22A59A0C6F7CAAD50FF858CF9481D230C272BD0137AF8EF066A36162BA9FACD6F70FE833AF7D92EE7DE2637DA6A072FD40A901F08B4FBE7A3B5732A2F4FCD4E4341539C07CBAB69145D2DAE9E860D2550D11DAA898182559DD8AAFBD108592C3D9AAD5ACDBF55201655BFFEBBEF3941D475610B150569BA754C86A30FA3C4433468AACEAB4E08901FDF87F7E4E3FFDD95B0677185342D91B1C32251DDFE2929F1DB71885E737AFCED2C6769DF1E912958AC55C3D5E537F594CF543D119D38C5370314B487374124243570730C5E1081E5393E3F4A9BBAF0AFE4078EFBEBF48FB070D4B584D61A7D76D51B7DD94EFD5B618E0C2A8C1D866988B3F8C4BE75E38D4292F8357BAFDD235C906A6A5919C4BC7BE56DB93C221A8C7A5D969521C7DA76E1EDD616C52737317A5D68EEC63BEB49D506205A08F01E61172F35A6503D8ABEFD3B5AB9769E1CA7CDAD292BFD8D44DAB1CC893CB0519619A88DB98CC2AC753F9DA7CF675C369469F9B572395EEA0D484BEFBFD1FD14FFEF79787DE2709FC20873916870663A5F99971DAA9B7E8EE275EA689F16AD6E5FA8CDAFC60FAFE2CF9FC099B3895CDD71C4D7EC0EE27ABE374EFCE2B823F2837BFFBFE433123D79880A4D9C50B13B4B7574F399E4B77A438744CC4AC4629DD21C9D69C17C308A04557E6E79EF999071F2C5A90F699B9FBECA9C6D3D7D83F585AA3A050A652A190EBE8D0694B8C528A06DC599A7B1A3D0CCA99182E796D7387EEDE7955B617F178F8E88998E6FD4FDDA55FBFF7016D6ED7B22A6CBEBA31947A8C0A483B17CDA636373345BF7CFB5D7AEB9DF78FFDA874BEFA5E4A5E6536907480248C4711BD76EFE3343D354E63E3AFD2D7FEECCBF4831FFE84FEFE1FFFF510CD382F267F8A8C625638C46387DDF893D5F5A1EF0538838FB9C71E5313588B0B1C0B6C72AF7DF216BDF7E132ED371A3485ACA2AFE81BDFF80605612135AD6701B31A350C12DD71C91DD2C7360C488355B994BEDE6F34A561D3C53AF8F4D2CA3A35DADDF4756DA72EF8B3B6BE99F1394DCF66F267C8394ED5270D2D5ADBDCA6CF7FEE3EFDF6673F95BBD60C10D410334B93647913016D6161BEFFF0313D5D5FA7DBB76EB2E036A56E9FCBB90E07E6C18AEEB9B3F95C73C1C59969DADCDCA2A5C7AB8783C3133CDCA08045AFBC7C83C62A65FA050BFDC99315691D2E96C78E8C78CE92669C3C1F94A6448DC9FD9AF9D5B040F1240FC441773F7695169F6C50B55AA6D90BD332DCA8583E42D8EA5C68C6E9CA3E69FEF9E8078A84A6C1CA3C9696574DA0987E9769A7DB3F681DE27A9980547FC1705836716430C8326EB2853D949E3FF7D9DF129A90CD2FCDA61AB883AE6EFED9FB77C9F53964FD879A3EFD19A23926B2AB6B5B6951C090557D24933F6BC271EAB20FFA7E9AAD0EBBEFC66FFCE3C80C88F9E6D31D8A4E50301CB18459BE368F2EF7FFFBC53BCF8D41D0ADBBAF2CD0FB8BABF4FA177E9766672E1C2E6DABC3DEEA90D0D4C88074D23F97E2181C42B7D9DCEC85F4F5DAC6963460E6BD58ABD9A076AB957AC9ACB49D237C692AF71934239D923E4A204D5A5AE7EEDD7999E62FCD9AD65D32F891684A7B0693249B02F5B15BD74D1B719264ADC4FC6776FE3A2D5CBE484D048CB9BA9BF2F3F1F37105C351E8B44FFA0B870F1697A5AC532C96ECEC1D37FB30ABB29A46CD5CBB9E6BE62453CF97664F7E7F2756B4C86455A7B956257CE6A8BEC491C420172892ED10DBDEDE65412D3127ABA5AD763887D985D258E5994E0F65A768BA252B649EBDCCA30FA53BFF0A6B50ABD33F6FDE4FF4F105C35C08301239E97C4A14BC6C7CBC42773E7E5B04F5F8C9AA74AD7679A0EDB825AD2C587A027D8A68E780704060A3309086A96AA5425397C6E9329B681046A6E493CF287AAACF5F3D2B1B3D4275319D1B80D1A69DBDBA24E6D1F13E31314693BC99E62874D093CCDF108D0ACDEA0A3E92F5CCBB4299AB8A1274D837FD293F0DD3A6AB8FA419A365623A9F1235031AAB5425607CF2688D36B7B6654E7BDAF57AA8178D289F918F588B50CD98BF38470B57E7B3B9B0D6C43C3D683AE747334E8741CEDC24264A687A6A82AA4C2B7A32FD9237362DD4E031930773BADADD8EE480508905A0978A91140965590ADF1418A3C0565573A56D49AD04DEB134438D52E1303F00B8FCED9D3A2D3E5EA6A76B9BD463C178769AA56B7FD1B6C2019016A026DF4C47F0CDA22761E873AC344B9719A4134D7DA56DF2F5C8D08C13B3F9FC0020ACB16A895EB9FD12DDB8B6409B9BDB4C3D9AD46633EB75DB6C6E3DE97095054DE09538B08900D2AC41C510AD3155BA34374B8512CA42A1C1B7DCBC79AD0F0BE5B8B86804CA3EF90168AAEDEED3F2CA8A782E37010AB8ECB3002A61D13499DB39AD9891282E5EEA647C9C7F717B6F97A2464013636346837275B764A0EEA3F2E6A40668C628B8794042DF00F84015D311AE5FA3272BABF494A9449BA3617834CC2B452FF4201B419864D611F2198F8A34333D4DF3F3ECE6239F05DECBCA3E92F44E6CEEF219DCEB0C69C62941DA0C0077F8609F4DAAD7A3A9C9091A1F1B375DF452B930DEA8DDEB8AD0B098125A7E81390683CC721608147D59DF43A75ECC71BD4C8186352D8C685DCCC527D2D0192712FC6DADAD3348AF53BD7E600498AD476200DBF50279CE043D99E10CAA8134EBDCDC0C5D9EBF982E5460E8899D1F7B626056A323A07C9503958B2B97E66876669AE24ECC84B32D6E1D6B9775587B804D98F90C61A01E8F155B30331AFD8B55CC722E14C98FD05714A52B3898304B6713548ECA24A634E3A36F523CBD807810A8AB2F33C540A7476E96AA00B532EA23B96705F3614141EBE0E50EBC2603FC9EC447A552498245B72E515A9BCF60FF486F864E592C583072027279E7976E2ED07EBD416B9B9B823798B583E94D682A4763952CC5E591500DE93493C030C0DA88343535451738D00470BB19CF6EDA393226C7D10C9914238BA524A3A84144F5FD86CCF102C016D8B5470CC4D9E4160BD8CA6892AC86078DE2E838509EF0B042214CF3D098D39199D8809B4F27BC646282E6A441651C8F9E8012B342268DC5555A5D5D93323434C6B505E71AEA330E9603702C26305E65463F3D25F33EB4CE1272DA25FD55BE70E15E9835D3949DF3E13E377A2666BD199693C0CCC32B572E192A82F63C2C20C9608D852401D2181996E12AF28655EC42591ED013762F4D565E2883CE3789A6FDD2035A2B1388AD3AC576DA021F5371122BF59C25567D828AE77381749DC1193C6C6BBB2693EAFAD6647573C3DCB404D7FE9B26D1CCE2265313133487847D921505948DB3F2C0AC73AB31881C73897116AED27137B873E74EE8AE8F03D1A1837EF3CD370F4F93C9E4AA737B9D17DE73B979B0F2ABAC39972ECED26EBD6E2369DEC0C77A06A8312BC8651001D061E8097B2F574A34313E21C1A359A12AEECB16E49B16D2D660782C4BED95CE9606EB3148D7B636263736363AB941EBC1E78C89FAF2E5CBCF3C876D6F6F2F09C3309E9999E9BEFDF6DB50CB04423ABD80F86E1F1C34C57B210FE4566A5136088C0A3E155496A7F66CB33956BF83066171B65A6D574CAF3A564993FD7D8DE4E6878C66693BB50A3B376BC8B605B289799DE6FE0D36D77177793921E89C20B42C4437700C7B7EC41D66D8E57219A597E6013F58231B2CA4E4B9DD7CB11471143C274C7E87E39A0EBB770DA0E63B1DCB6033A5555650262FED49DA1559C869CC38F43DCBE6ADA6686D8565D76D043DF162C3CE6233854AFA25E5038908A8D7EDBCCC2FF60660450FC20CFF7E7A2C31D506564AD5E5F36DD6A0037C073FAFB590CCB2F505BCF7B9300813EA90D680A9213A36AA6AEB351E96445666B964BEDD854260B00744C3B2FC106100A66D2687D9822D51DBA828B16DC86EE686CE151130D2D8E3D1A211A03A802D7A986B8160F85CCC028160509883603A7CB8C7C75A7C8C4941BB73E1C285C47DE639DCBC165CA91DD465E9E4FD66F3902B776B9C79A68A93D24C5F49268DAA1C454F4C8CD3F4D4240DF523DAF929DB2DE458BE5BDBC36A28B299BCC394EB785806342728E0098400D7DA6581ECF3B95D3EB6C3DB369B688DCDACCEC71B8C556D36AFDE7383B49182473333531CCB4CC86A771DE66200E72EBBF64E1789B3D84C19875022334F2C62DE85F5C7507905D550C2ECFDA10B948805D8D565DC4C47950279C6FE6313497B432A883A5346DD636174786BF07308A106A1B0C9EDF075ED42306C56ADC9C9C9CE83070F7A9B9B9B49DEFD9F5A40AB4F3784C163E63396CA41ADBE522DA71DF5CA4D69B23CD2A46375FF6A797638C82159F01C181DE887C59C4C2C6961C0AC302CE7F6E3D8AECD93130CCC0882C99951DD690B708685B3CBEF3960736A39AF3528986305E482AFDFF9E257FA500211F32E93556C2E9600D7923581C49D872631AFD440CB8296FC35482BBC1F342D19B6069949EBCA3A9F66B5CF3CF6A4AB827638AC78F7F183B7FE431B1584500031B1055EACF27AC0FB5D680A04C3AF6BAC317BFCBAC137A5BDBCBC0CC1266B6B6BFAA88031182214D9EEDFBFEF6D6D6DF9663ACFD1A08D1C34367A418BCFA6F9A524D760AEC46BE1C4C6E6EA87DFAEEFD6B672AE1A6AD8618C69B290EABC8719EDF0310866B7DBEDD65928CDE9E9E9369B514CE944CA5344D2CACC8CF36EDCB811ECEFEF87ABABAB05FEA102DF94D219D7EAF8CA63591F2D0D098DEB3F68370F7EBABAF4DE8F9DC6F031002EE2978673D3100C9FDB664DDFE3EBDF67E134676767C58CB6B7B7137DCA75BD829CE678172F5E2C306895D84C2AFCC315FE81AA8E7B636EBAE5990908F2B18BE9F2BF3DD691C7CB8BBFFA17869B264CCA9A11F0659FAF1131D08EC5981D362108E680B7F6CACA0ACC283ECE8C4EA4411C3D7ACD66336001B1D624D09A32DF8562A3BEF39D69467816518515BCC4FA5EE4DF8A58EDB11E45E4363E17B00904CCB043B684D010C96438CE1CF3886D4B0DDFB99DBD9DF5EFD43656DFB7DEA8CB1B8454879B06BEC08CA0397C53EB8C31C097CEE2E262EF346674D443D9C92312A14083F84710579458350B7C01F8DF539839A888071AF13E043DE16321BF4EF7A64EE815A352652C0A0B635E108E0785E234C74BD39E0AC6B5C7C2D446901C0346686AE5E721AB49C8B682F26AC8314DC8411F93FE224703AA1BF73A6F2D7FF8F6BF236E41B40B33E2DF8737AAF16FC245237ED9654FC49E2C6E4E4C4C74E1A6AD6048BF209557B9A04A30E8F6EDDB7EA3D1F05993FC6AB5EAB3A07CBE2B7EC497CD17E2F3C5F97CB764EF36BE50EC39BCF103ECF3CF59708115AABCB6CF7D6DC05FF65E10448542692C0CA36A54284EB45BEDE6FEDED6861D6CD30A464C08C2819B8619F1F3D6FCFC7C9799BAAD6FBE781CE8FBAF6B547F3B7CBA84089B9FE23BA55850B221626761C91EB4809F7B954A0542F220CC42A1E01F214C08CA1F22CCD009932F035AE98102C05DF379680DE2973A7F1F04D37E91667462011D150F1D536F71A181E2A0F499C284202144D64C11248408614260780E61F2F5E03DB2E7470C2DE1E70D98918B767351F247EE39D48BFC8D17294C6826621C1660CCF812C34D7F5466746602FA0D85A98EC98E9ECB85FE3F4524CF3249E403160000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (152,1,'Switch_(128)',0x89504E470D0A1A0A0000000D4948445200000080000000500806000000D1007DE40000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00002B6C4944415478DAED7D07609BE5D5F5B5B66CCBB6BCF7DEDB891DDB59248184106881400861140AA5145A28D0B2A184AF2D1D747D85EE452185EFFFF98096555669B613CF38F18AF7DE5BB6B5A5EFDCC796633BDE24AC5A2024BD92DF75CF3DE7DCFB3CEF8B93DD6EA795C77FEEC3E9B30C00273C1CEFFF7DE090D2DFDF6F07160ED86DF6FD0971312BC8FEBC026022F04E0F3EF490E4A69BBFBC5126935D8F8F3BED769B87CD66271C53ABCD6EFB1B80B02F3931BE6C25CC9F13003832BEBAA636452291DEE82471BA161F83C7836EA389E013824F083E5EC5F2522CDF87E52F66A426B7AF84FC330A8086A6E660A944723D50806CA7149BCD361E6C47F039D8B689E04F7D7F060878D83FC4FB7D78FBEA9AD519BA95F07FCA01D0DDDBEB6EB3DAAE46D06E400437E255321EF4D9837F1610CE04FF0C3B8CFFED1896FF0340D887D7F7D66567595600F02979F40F0E2A10B84BB05F37205897E155351ED4B3B37C3AF52F3AF862F9C8C80895965550654DAD55EBE67E2A2539EE811BAFD9F5FE0A003E81C7B06E04FB615B371E74FB2EBCF79C55CF1D209887056607C799F75D3D3D54525A46A76BEBC43AA2232328353991BC3CB4547EFA74477D635385AB46F3DD271FBCEFC00A00CEF363746C2C0141BB01C1BB0E010A5F7CD097A6FF369B95EA1A9AE9C4A9326A6D6B27954A454909B194141F4B7672A293659574E264190D0E0F51485010AD4A4BA6D090E0A3D53575EF37B775FDED477B1FAA5901C0397A184DA60004660F02743D5E579D45D33382EFA0EC8525E06CEA371A4C54515D8D0057D0C0D030797B692925219E2223C2696060904A00888ACA6AB258AD141B1D49692949E4E9E14EF54DCD545074828D27A9552AFBD62D171C8E0C0FFD25D6FDC665DBB71A5700B0C487D566D32080A8D3EDD72358172238920583B9A4E04FFF7E78584727CB2BA9F2740D038E2242432829318E7CBCBCA8A9A5554840634B0B29950A4A8E8FC377092497C9A8BCAA8A0A8A4BA9B7AF9FB400427A6A3225C6C680198629BFB084AA6A6AEDBEDE5EA7D764663C00A678F3CACB2EB1AF0060EE871CCF8BC7836EBB1CAFEA459BB545EAFE4C20B47776D1A9F20A6A686E21B95446B13151148F002A1432AA3A5D2B24A00F99CFC165DD8F890C2783DE88E5E560835390243D05070652462A4B40103535B7011025545BDF404E528900CBAAD4547276515351C9C981E6D6B62A2F4F8FEF3DFBF4536FAF00E0CC23174FAED577E3E93D6F262F23F83359C06AB5506D4313955554514F6F2FB9BB6928212E8EA222426874D440A72A2A91D9A7C9603452504000A526C6536060007EDB47C5A5A7008C1A30945580253D39893CDCDC5019D4503E24A0B3BB875C9CD5021029F83B93D14C052527A8F0C449C20E0886589D9E427A83A9FC485E4185B35AF5FDDFFDF78F4BFF1301103B11747E463916DA1DC19B83C617ADE7B300614C6FA0AAEA1AAAC4933337C8DF8F1290ED7E7EBED431C104758DCD623FA2A3C261FAE2C9DDD515D4DF06C3771252D0464A8502CBE3C4536277A213E5E5540450E87423E4EFEB43E93083D1E1E1D4DDD747F9052542225C5D5C697546AA00444F6F3FE5E517006455E4EEEE46B96B326DA989091F149F387558AF33FEEED7CF3CD5FD790680DF4496DF8067D66C3F981AFCA5946CF3057F60701081A8A6BAFA46EC3D51645818C5217B9D91A9B558C619DFD3D3474A95128088A6F89868924AA50228A5A0FADEFE01D2BABB53725202C54645D010F4BD189EA0ACB28ACC2633458687898CF7F5F5A606540EF9C5C530852DE4EFEF4B59E9691485B2B1A1B1898E1E2F00C09A003C7FCACE5A4551F8BBAAEA5A3A723C1F00ECA6D4A404CB964D1B5EE9EFEDFFDFC6BAEA377EFBEB678D9F0700B8E079C544D0B7E2299DEFC773067D1EEA9FCB0072F95671BA5AE8BC8BDA9962E0DA395816B319CB6BC477636363E4017D4F8C8BA588B010D2832538B09CA1FC3E08D4CF554060A0BF581F4B00EA7E92002089713190874452A9555401C960AA6720454586512602EFEBE383E5D5945750445D5DDD140DFF003348BEDEBE309CE574F858012A8B014A4B4DA29CD5AB05388F1516D1C95315E4E3E36DDAB1F5C2E7CC56CBF30FDFF38D239F35004827827DC344F05D16BBF2C53AF9B958803392B38CA97E08CEDED7DB9B62A2222930C08FFAFA06B87143F5D07FB3C5229671E039507DFDFD548ADABEB6AE4E6C939B3D2C011A1767AAA9ABA712D4FC9DDDBDA4717541D013280E4CC1DB2A0143B05164BF108F65ABD25250062A8549CC2F3E4123BA51F88B18CA5A950E6FE00C2F504AC70008FEFD6A98C3CCD5A96440E979E458816022AE3A72C00E21C1015458720AD5C7296612DDF62D17FCCC6AB33FFFEDBBEEA8FF3403206B22E83CE2E6BB9C95CFDBB0398B05CE047F647494AA1128A67433323C34384804DE15016C6126402676200B254E12484008C5C646096D6E6D6DA39338F1AD6D1D28F154141F872A203A8AFD9A6082529486DC020EF0F5A5646878584830B79E051370D64B5039A426C543DF13012A331523C00C16DE2FAE1A581AF87D41518908BE13B69F9991269673F61FCACB174C14085958BB269302E04B8EE3B725A52749A3D1000C19389660B14E7E860405746E59BFF6BB1299ECA57BEEB86DE0530580879E78AAF8CEDB6E72C5C98F59CE8A270DE01224A00FA6EA746D3D82DC86D24D0E8A0F17353CFC19B2B941E8381B3415821B131D0EDD0D27278904DFD523C0A7453059DF13E363293C349886F0DB53A21F504D168B95222019C909B1E4E5E9896D7488C070B347E3AAA1B4944451090C0E0C09FA2FC7FA38FB33C00229F1F1A483BC1C2F281646D155ADA64CB00083A8BDA38B0EE71D17800D0D0AA475395962FDC70A8B01AC93A84ADC29376B3585858E07BE0815845C2EA335F8FB3880B30B954B7E6189CD62B576A4A5243F0933FBFCFD77DF61FCC40170D7FD8FDA9D244ED6C888F0235FB9714FB2AB8B8BE7520130D300CE167CABD54A2D1D1D54535B27689D6B740E2C9BAED1D111AAAAA913346F3099C8034E3B2E2A0A941A08BD471550538DE0D60A0A0E0CF0175580AF8F37D8A153B4771B9B5B482A9382056284C633A8184842027A7AC8DFCF87D2929244CDDFD6DE019A2F05209AC43E30FD33EBF4F4F48A60F2763C3DB594BD3A5D2CE746D2E1A3F9621B91116122C86EC87236874558BF16FBBA764D168583A14AF139BFB804609522F06942AA068686E8583E1BCC260AC6BE67AECE10DBC57EEBBB7B7B1A7CFD7C7F981C1BBBEFE1FBEEB27F2200B8FB81C71800244186E139B82127BBF48B3BB6ADC37BD9A201B0800458F17D6959394E6233CA373FD079A8A8C33B507F57D7D422289DE2B70128ED62902D5E5A2DF5836A5902B85D8BADC0EC71151049CE30866CE8CACAAB90553D221889F131024CEC1138A3B93BC8F2121E12024A4F206F646A4D7D03F4B9943A212901A06E310E00C9696A6D1519CFDB09428058F779790D0074E4583EB57576A08A881681E78E22BBFFA292930224EB73D68863614FC11E81CF01FF7D0A2A8F91915118C942AA06D33158D720F07C7CDCB52C0263F03963507265A31B1D693B555675DA49E6F4CC1B2FFEF5EF1F2B00BEF9D0E3769E8023008057A65AA55C5677CD95570CE2E4AD3E97FACF2CC0AEB901753B9F18CE0E29B619028D8E8E0817251E6728EB2B97585CE2C5468E57015899608932806264745CDFE3E3A2850E8B96303C4125CA331BB6C19503D3B952A510EBE29630B77923434351F32791B79727B6DF40F9D06D064438E42773552AF979FB08F9399A5F286AFF44AC3F0B8193E29CB0FBE781240F0F0FDA00FA8F080F15C3CC478F1592C96AA63519E99491920C0633000C25C28B70A66767AE121EA4B6BE5E349DC6F47A788F04C84A1C7C8F5594ACA76B6B859C64A0B2F0D27A16E1DCEDC3B97BE9C947EEEF3AEF00B8E7E1EF9C0500C9C4675071C197AFDFEDE7E3ED1D3AAFFE2FB101C4A371D5D575E4EAEA2A349C1F5C8357D5D4D0E0E0B0D0F75830417010820B475E812AA0068061260943562720309CF95D609093E515227B95728570EE7131D10268A7C0382751169ACC26A1C15CFAA9E1E82B4F73E9574A43005F34C0C512C0CD1DEE30B204F072EE1D6466A492CD621381E7F24FEBA185EE678A7EC409049ED9814BCE4C503D978FBCCD6345C542065C6062B333578BFE43330CEB5130413F3C47222A8E748084FB150CD83230155719ABD25384B4CD48182BCEDB0748B017F0FAF7A7BEF3F0E87901C0BD8F3C619F1A78EC1BEA41044DA2A4096098C3C3828BAFBBEACA14954AE57CAE1B40BD7D7D74E8E8F1717D873C44E3A4794202783C9F25808DA24C26871E87534C44A430564DCDADE20476767793BB90805861FC743A1D4AB90A1ECC1159CB80E0E16027BB04BFAF10193C66308AC611B777550A052A860AB8FD52D21BF4DCD44116A69011FBC22CC0DBE07D59BB66B5680071C977E0C8311A06BD670238D970FB5C21F0886201CA4739BC47F6EA55629B5D283F8FC027B477748AF2340B9EC2198C565155234627F95CA7A7A4085FC11237DFC4163C47F1FE35BCEEC3771F3CFDDDC7ADE70C00F73DBA771A005C1446BA39F16DFAFFA75269489A209840CCD174B20F672425F67E61C7F6082C735A5A0368FEEEDFD0D030F12A954AA5C8984A9CA41ED4F86E6EAEC8A2480A4349C519560D0359064A1F1ED2890E1E9BAC409460CC045CC3B35153AB55A0D70448478400157B8F93F00BBCEDE48438E1E8F9701828ACE53C3E9086D28FCBBFD1D131D1F2E54A83879473B33285F728079D1F044807870601922451FAC91432F1F7E3DA4FD0F87404344948CD51B0466D43A3A07EEE1E7A423658F21824269311EB48A4048096CBDBA5CE70C239EBC4EB4B3C13FA674FED2DFEC800F8D6634F4E0380463A448F6E7C8B5E2E0CA07C5A4783F22E0AD1238BD8286287AD56F3F0D64D1B25B9D96B5C3F6A03682610D8B87120B959C34CE0EBED452328CB7820E734F49F877C7922074B80076482FBFC4CCFEC173CB51E22C061D0736E26959C1C1F0052005429A8F91350219860124B4E9E14BACB999B0ECD4D8A8FE3994A087C2180779ABCB0CD1CE87604CC1DB77C0F1E3D26DACABCEE5C300177278BB0EE2379F96484BC6441FB33D35349CFAC81C07329EAEBEB33D91F6050324806212D49F025692909A4805C2D677ADB2CE7B812EF5FC0FB179FF9F1F79B960400C79C7B00C03A0D00925E7A64E3BBB4EF981F1D5627D36B173C4B99EF6DA35CA7ED02009CA97CF2C86A1EDB7DF54E45487090CC768E0780F877169CDCE3C8182E0D7957992AE3A2A3C5902F9778ACEF7C52D95973F78F077578E48F4BBF3A641FCA599169DCE265ADE62610B78A154AB9306BDC011CE81F126DDC4A48860F8C211B3636849CAD8750F377835978983917C17473D340B32B68FF913C48C008AD027DE764AD16F4CD6D63DE2E8F50AECDCE12A695A99F658407AC98C5B891C4267731339C160AFE2CC0E17F0FE1BF2C112FFFF6E73F1A9C170013C197242525492FD9B9DBE800007E440A899ED668F753CFB09C0EBAC4D29B17FE9E12FEB596B659AF9906007EE5AD6A5C54863DBBAE52A9D46AA7A50CFFCE3CB0D9AA091D0C60476727050707C2DDDB4446B22F60BDE6864B626CAC1813E08EE089B232D1F4F1F2F4106D5FEEC40DC1137093A602B5BD06668BFBF73190869EBE7ECA87E1E3D2904B44D6670E7C1D3E1F421677C15B44A12AE12C66A661977EE0709E00188F28AECFC92625F49E6B7E76F6DC7760B9605AEF1FE8073B148ABA5F480040C5EC740E66382F3C6986636C276360A0DF3F1FFFF6BD57CE0A000EFEAE5DBB24050505722F2F2FE5964BAF1874B8FE02B8551F9457A74163A9313E644D55D33B173D47F1EFE6D276C9B59300100E800DA34426A4C16C345AA222C22C975CBC55B59C01A085660071F0C5840DD4FFDC31E4913F9EEFC77D85526879370223DABEA07A7F30421F289B339EC703B8A2E02960FC77A21B87D28F1982FBF7ECE0D95FD483A699D2DB0136A67EAEF9B954E4F18983C8781E98E272745D6E16B9B96AC4BAB91F60C1FEE7C0EDB3948C8D8C09D3C765248F65ACCDCE14FEE45CCE705E4866DD346E421E6532D9D875575FE97216001CC1EFE9E991F7F5F5A9518EB86FBBFCEA0607000E1D3E4A5D5D674A4FBF601F92E40C138DD969BBCF359399AF950FD0069FF7E8FDA66CB2BAC44E968DFAB151E386DC1CA7A4A404C5FC07B3BC19C056008121CE357C29B49FCD607050A018B3E79A9B33945BB0ACBB5E3071E9C9C9F83E00B57E8F0010978B3ED0782EDBB8CBD80C0FC134CD2386BC1E0E3C376D98510E20F06C48B94C5D97B30680F042A95849FB718ED82C32A567C1F1DBAC1621013CB8E40A70AC036B4445862F6B6EE3E4CCE6C59E938957F6144840E13998DCC7F4FA3901C0B42F43F6A8B1620F04CDFFA22FEC3C76060047A8B3737AEF210AC85F9BBB06E5977C12001E9276FA4AF2ABF4DAC908AA515F4C46BB9EBC9C7C1D6523CAA831FD65176F572008D2E5CE009AEF44B134D43536504860106934AE426F8BA1C1ADEDED82095293938427E8009879748F03EDE3ED897A3B157F1348AD1D1D9477BC489498FEFE3E94B36A350504F889E1DF43A8EF790E029F4CEEF773A3899B38FF3E94C717B0882A623D745E8E939E8FBA9F9DBD542AA39C35ABC4543266C633C15F3CB897C302DC540B0E0CE099CD2443FDCEE79FC97954AF1FBD7ED74ED7D90020CDCDCD55E055835AD70FCBC22EBEFCEA371C813B78E8F02400A43219396BDCA1BF52D4E75E141E92350900775B037D25ED4DFA9FC2302AF5C9A417E29EA64D0557D37AE7ADE365237E63B5586DCE0A9971FBC5DB545299D4E95CCD009E7952B865CB83341CC094840451BEB581CA0B51A27166FB787A51467A0A4E943FA8BC5B38F2E6965621015999E90210ECF28F22F0A72119DC8666D3C799DFDCDA0E2638225EA32322687D6E3679B86984AF387CBC508C247215B03A2D8569F7BC1CDF5CC1F784D761DFA286143A2E9E1600186780110040332B0056AF5EADC467777C0E44B022B67DF1AA971D003800000C82569D351E141A6A877BEDC5721B59AC5222F326D26A03050064C616DA1EF01615B60650915732BD90F534A51EDB40BB64B74D8C299C318AFA31BD393428D09ABD2653B568EA5F624389A77BF329E0A163CEC83630029790DC75E3F9035D3D62248E1AE0193CB5EE085A8618181AC2B1E6A10AA840DDAF717315133C984AB90D7CF0689E9824CA1906598334400250261E387C4CCC2EE29A9F8D9F4AAD5CA6BF5938F8B39D1BF63E6C2EB9E2600A102D9A89C03B80A0D7EB75D75F7395DB820C80E5A1DBAFD8F5A6030035758D64B6B740233BC48A4D2629198C32B2DA90D5D64D70D808384E70785818559C2AA4E470171A4AD0D2FF5BF34B4A3AB08EF668BE7656A5205EB132DDF0A03173558624242444BE9419C08BCA9289133E3A3646E595D5A249C4068C3D019B3E1E0AE6326E352420223454FC8EA5818790552AA5D0731E611C1C1A162D5EAE34B837CFA68F4D625D43839000EE4E727B77E3DA6CACCFFD234D729D09F085F45F2A75128358EC619CA6049E04ED4F07C27C0098E6016002FD366EBBE4172E2E9A5CC944A3C76235A0CE3D481EDA61E88A9DBAFB5C417B7AB2992F043D06D15BEFBC4B6D3047BC93DC964DCA89A1A6F41272D669688FE71D530080DA5D7698DA47036114E3C6CB463838FD88CEB071FD7AA5B38BB36439FABF5877DC0623F7F6071F924A393ED61F23FA014661124F9495E3D824949E964AC971B1A289C3E300DC2072553B43CF3345EBB9ADA30B753F24A0B94D30C1C67539E4076FB1D8BEC64225DB62749FFF6159F283B719D7F9B903EF6004BDDE307CC3EEABDC17AC02A05B6EC87CAFC4B48C6D21E11177A994EA4047C7AF7FA09DAC745CCC14532ACD24935C40DEDA107AF39FEF500B3474EA231D273836298CC203A2A6657EA6F2798A756FA0DF9CBA8EBC43E245D9C86C603699AC7005A69C9C1C35EFF847354873D5D406BD81A430AF3C9F9083CE53B5F8F729DCFA4D4C10EF79C64F3140219148C5502E7706FB0706E950DE31715D2157131BB2B385DE2E0D8C0B49DCC2C1E7C691BF8FAF6029A789D27B3CE8F333C0D8987EE8C66BAFF698B70F5052522273777757619133BEF3502814BE99B9EB6FF20D08BC562695A91D411CD6EDA7924A3BA5C4660887FDC6DBFF9C0600A43279FB78D2F6CDE9E4ED3D1D00A94E7FA074FF56FA49FE5594975A44CE231ADA6ADB49AE2A57B1A323BA6113CA2E7B5C6CACF27C36487800A814651A8CA9A810A4C87E1E45E4468EC56C117D022E1979A896277AF0502E9FFCB5D0F8B8189E28F5D166382FB501C455057B1817179733819D12F8B98130FE5E6F300EDEB8FB2AED829D40184289D96C5640125456ABD5053BABF50F0A8D4ECB5875B787A7E70664851307D364B288A0F2D4A937DE7E47D0AB1A1582C6434359E9DD90022BD33BF96A77A21E0F98900109451B7E4539E15DF4D3FCABE99D940FA834E828DD9EB7975605AE992819C7D9A6B7B7C790101F2FF3F6F2949DEB06C9CCAB8639C8AFBDF94F31ED3C213656F802FC5A98C49293E562BFD913F044127EBF9419CECBD57FC7BA392AEE6E6E84C414CD3647E0694AA01D81A7699FA7CB80DE6818F8D2EEAB3D173516B069D326496B6BABD4CFCF4FA1D3E9D4A8F7353870CFB8E4D4F5710949773B3B3B877390C6A5C14998A45E9D0E8EB9055962E6BE0C190C32329A64E4E57E39B42A181434CA4684A4E65EF2B51EA336FB1A7A3DFE75AA0A2FA6DB0E3E4E59E16B69FA1C0427EEF6D90707FA0DE969692AB942EEB498602ED779F3D880C9642605E481FB0785274E0826E0B103EE1528E4B23901782EC0381BA05CD46A72F7709B52CF4F093C4D71F9B3047EA60CC0D3F403005E8B1A0D9C0A04540672044E8945CE78BAC32378E76EDCB427342CE246995CEEEA6818F50F94D1E04801B2DD889D97D0C0B04AD08FBFD7170080103188F2A7BFFC156EDC97F59EB66DBB900E04BE42E519C7E9AB479EA0ACB0DC69934F1CBE8319616C6CCC0ACD36272626A8ECE7B0473EDB7AF87A4106806E7444CCE861DA5FEAFD0896ACFF33D6C7D7367285C2E309678CDCF48C3F1B0813323007100C4643FF4D7BAEF1B64F09FABCD705386ECAC4DEA0A2A202C58154CEB28038B882113CB45AEF88ECF5EBBFE6EBE7BF55C293012636DED2F64FD29BDBC9D5C54CADEDEE9418BD95FC7C42C560CAEFFFF4DCB46D44C0856B732494E2BE8A9243D3689C55C601E0633D42B6B156EA946D2317773F0184BEDE3E13D7BA0181810AFB6247C81611FC65B7A29731C035DF18000E5E5C8F280CDE940C1F8FC4F4CF6780B0383F0006E87BEBD597FD5E7EF9659B03048BBA32683659B0582CCE00C2B82C24266665AC5AF30D5737B77847C36764544F4DADAFD2F0989D62422F43B9343E41E3777FFCCBCC95D395975F46B96BB226B5DF91F95E8677294BF306BDD5B09924515792DC2623854C290EB8A3AD4D1F1212A2707175917EA4C1A5C5B2C939BAC269AEE0F3EC110582AE522AC6CFC1546A9F1308F3FB81E940209E08D3F7BDEF3C1A545B5BCBF744122058D2A5610E20C0244A511DC85816F0F72E08BA3BBEF2BAE0C2AD9747C7C5DF821A5BEB70FD35F58DA2F9C2AD526E98FCF6F77F16EBE28B30B8A5EC17A8A2A4D83E328C45D2C5175E3F8DFADD87FF4E399EEFD3AB551BA821219A5EB4FF96F60CDC4139FE1BC4F7668BD9D6D5D9618C8C8C5231FFD8CE53F097734B9AA57437792E204F4393482567287B368D5F64E0E7620494BFFD7FFCCD33E1063C8A8A8A786EA16DC91787CE250B269349C3B2A0D16883366DBDE8B6E0E0E04B51B6C81C53C7180CCC007F7AFE45D152F60F90D1EAB476983C89686AE8469474E1FA47A70140DAF1125D187C885EAEDC4095B101F4ACCF5EDA587529DD1BFA044D35A0C3C343969191114B7070886AC189A8F352F6B9B91FD1621B401C20BE6EC161F0A6966C535BB833697FB97E006560FF333FFD513CAA09DDFEFDFB4DCB02C05CB2C07308F0590DC3E80693A88D8A894F5DBB61E337BCBC3CD31C6CC0B3775F7FE7438A8E3A419E5A03592C521A1D938B9DEBEC72A1CBB73F2002CBA371F5600E7F3F6F920EE69154EE4A2D292EF4C7A0A7695DE925747FEC7F4D0E353B4D79ED686F37CAE43289BB87566E3FC737A358D033CCDA849A9B8984DC49A467824B530CDB0C20CC2603CB010292A4E80FBFFAE56588CF505E5E1E03C0FA91EF0F30972C8014DCC10ADE9B2FDCBA2D392DFD36948DBE0E73D7DDDB4D0D2D7F231F2F9D68292B9516945F12DAB2EE3B0200F50D0DF48B677F0B07AC10D706AECDC9229F8D2ADA17F60C65D75E48F727CC040024D43C4A32958798925A5FD760D06A3D1472A5527A2E275D7C64169892F9CC5E8ECCA429193F1D08F3C9C0DC7E60A60CC0AFE99A1AEAFEF2F61BFFF813E2D3E9E9E939FC9119602159C0436DB55A45B5A056AB032EBEEC0B374545C75E09BA5338025758524C4AD5EBD4D2A1A5A08041CACE784A0080AFBFFFD92F7F356D1BEC8AB75EB58E4CAA61BA2EF7D6E900B08D5268F73D546ED8419E71BBC5323091ADA9A1D1E8EDE7ABE6439CB767B06CF7BFF8E0F3EC655EDF59CE7DB6EC5F061066F3039CE12DCD8D87FEF5FEBBCF0DF6F757631F3A118F7E58007D7979B9E59C01603659C02BB381C2210B008567646464FC96ADDBEFF00F0CCC76F8023E29C70A5FA0A345448F7CF3360180C6A646FAC92FA60380E9122C435FBFED26619AA652BFDDD04DE963775359A717C932FE400DC61A8A52C589D66E4F4FAFB9B7B7D7E6AED52ACFA5042CB601C46D669E1F307E9E670CD3CE648069B43F8B1F98C508CE25037DBD3D35470FEDDFD7D4D0508A6D77E25CF5E0FB2130F1A88F8F8FD9510A9E979B44CD9405680F5CBAC419EF3D40475E1B366FBE202767DDED1A37B72087E91B1C18266F6FAD182B686C6EA2A77FF6CCF89DA6144A7276F3A0B070294587F7D3D0908A765E7A2F79B8074C02C0305047B9F408E5377A926BCE9FE896BECBC96BC49F1EF3FE21F9788CF70FEAEBEA0D46B359A652AB650B06737242EAF2F45F4C53B3F16DEA8CE2BAC439EBF62940988D11960304FDD848DF89E2C2D78AF2F3F7F354082CEBE16B3B21A53A0F0F0FC3D4E09FD7BB84CD270B6C12F1B5EF55D75CBB27212979974221779E3A5FA0B1A9899EF9FD5F10782D8585982929BE8BCC2629C060859151D2AAA4AF515464E2240086BB2A29CDFC249D687123DF4DCFD19E8EADD4EED64CBF68DF47D989EB260C175FBB60B55754541AE48C2AA94472BE1A407A834104DF3E9EDCF364EA4C202CDE0FCCAC10AC16B3B1BAAAF2C38307FEFDBAD56C6EC5F17663FFFB9170C3D0FCB19E9E1E536262A2756AF03F96FB04CE260BD8314713C92B242424F2B22B767E352C2C6CE3783351220EF61F6F7D40AEEEEF939BC60459B0D3C0909AD46A3375766B687DD6ED141B153B3E5BE9E0617169F5D1FDAF9164A48A76DCF863DAD9BA91FAB45DF4D3B6E7695DCAC64900386443373C6CADACAE36A9D52EEA73197CA3D124AEFE1DD77A9A676C7E1E202CD10FF0D6DB9A9B4FE41DDAFF4A5F5F5F2D12AD133FEF85011FC4F7A3F05F46A5526986E9B38D5FB4353DE01FDB9D426793052C72C1CEF10405AFECDCDC9CCD5BB6DEAEF5F48C747404474687E9C0D15F93D6B395FA065C482EE3F2C94EC971F74E02E0C9EFFF88EA1B1B85C9E2DBC37CF986EBE8BFA5DFA1A6A8D3F4B3F617687DDAC6697E4132564D56451029D4EE3C81C5D4D4D24272A55AF1511A405CA9F07430A3C93C7B376E66D0670DFC027E6096D270B07FA0B5E0D8D1D71AEA6A4A10F80E9C831EB06B3F5E75D8273D5ECD8EAC9FB864CFFE89DC29742E59C05B31E40C6970055569B12F3EBB76EFD9B92A73F5756A955A335E364AC4ED5BDABA7E45B54D5E9418DB4531E1F7515444B208EADEEFFD505CA3377D224A12B9E5DA6847E415B42A2173DA08A3A4F1E7241DCAA326F557293C798738E965E5E5FAFE419D5C2295CA96341DDD62135734EB46C6B01EFB3C819DA3937756A36771C6D06830E8CA4E96BC575A5CB41FCBDBB12F5D78F6E1AB210080B3DE84F796B9B2FE1303C042B280C56E0082278C4AE8B5D7DF704B744CEC45281BA51C3C7E1C3DFE67FAFB7B3DF4F52FDF4071519162D0E889EFFEE02C0028D52E74EB4DD7D1E53B2E9E46FD0C0063E5F7285CF2211DEAB98CA236DF4327060B69ADF705A895CDB6828222A3C16C567128E72BFDF83BDD884ECC1012744F4E7350F41C933496E907B02D4B7D6DCDF1E3470EBE8D0C6FC1A24E6479378E6D00AC3A02DA37609999DBBC0B05FE1305C07CB28032C50507E5C1630B191919E95FB8FC8ADBFDFC031226F57B74540C91F21C3D0180FFFA019555568A93A576D190C6434B99197DA45258E0F3B474FBCDBF9E0680E1E24728D6398F3E68DB4E015B6EA12DEDA97451D717E9999C3F9312DEB0AFBFCF52547C02C59B936AB60610DF94926F1C69321AE7E9C5CF078425F88189C07384BA3B3AAAF38F1E7E7360A0AF9ADD3D673DCE533F247498AFF8E9EAEA32E17C5940F7F6C506FF1307C05CB280074F4071C5010A59B86AD7EE4B366CD870A3AB46E33919CC8909A68F3FF9036A6CEF2417540CA9497D14E4AF43363B2153510BF7B9D283773F376D8E41E3FEFB29DBAF80DE69B998DCD65D4D578CAC23D72E773A9A725A5C42E51887A8ADAD31965555F31F2AC675DE246E5DA31BD64DCFCC4576E3E603C27C7E40373CD45B5290FF6E53435D31D33D673D9B3C10E3E0D8D8D8A8ABABAB01996F594AD67FAA00B0185900DD7979787905DF7CD3CD37A4A4A45E22033A1C0078FFDF87E860FE1BB431A7990C46B9B85E611015834C66A59A3A3F7A7AEFAF270798BABB7BC9D54549A51F3E43230609F96ED946375A2E21D7360F3A9A5125EEE8E5186012D3BE706E8EE717E8DFDF7F5862349B15E355CA6C63F333299BE6F5038B31862693515F5D5E7EF45469F141EC471B673DD33D9B3C6EED22E87A2C332D64F23E3300986D5E22F78170A04AF84457EC27570BDE38E044F883DB5036A60B361053D64DF4CA1B4F0300B5E4A9D5536DA3179860981A9ABCE97B8FFC611200DFFCF6C3E2F270BEF1E4C55BB750FC05A17497E43A5277BAD1B19CB301E0609B6F3FB6D72A972BA4B38ECE91D3F4C0CF948199C66E013FC0EDD9E686BAB2A2E3C7DF371AF5CD9CF54804BE2CAB17DF0D617F46351A8D71B126EF330780C5CAC21557ECDCBCFD92ED37BB7B68FD1C0DA4D6B616DAF7CAB3E4EDDD41637AF60926FAC657FE77120077DFF7B0B81184E3C11776AEFD62329D30E4D1DF6E795500C0C12C0E00F0F35B8F3E31098039876997E507A603A1B7A7ABB5A4E0F807FDBD3DA739E31D9D3CD67A1CFB088FE3E3D504BAB73926747CDCF70AFE54C802B3014E8A270C63C06DB77FEDDAECECEC2F2A144AA5A3E1F3E1A10FE860DECBD4DCA6A57DBFF9E9E4DC81BBEE7B48DC1C72C636E8D517FF4AE1E1A1625C7EE610B3B85B0A00206300CC3B56BF1010E6F603A3A3BAA1F2D292C34DF5752558CA3ADF018DE7ACEFC3B10E635FC6FAFAFA8CC1C1C1D67391F59F19002C240B7C1513570B919191B1B7DEF6D55BE2E2E2B21D816307FFFADBEFD1AE2B2E9D9C58FA8D7B1F1417703A06979C91F13E7EAE949AD84D61413BE9AB37DD390D0093F74B7A8419402E9DBD373F8B1F58F430ADD954575D75A2F254E961009A339E6BFA4E47FF1E093F02E6332EB5B4FBDC01603E598029D2B02CE0B3CF8E1D3BD65EB56BD7977D7C7C8325B3CC2CFEFA3D0F88FB05BBB87B909B56436B335B458D2593DB6860C0957EF2E45BD3A8FF0C00BEB3080658BC1FE038B6B536D79E2C2A3864D0EB9B1C59EFE8DFF3C00DF7EF5B5B5BCD13A5DDB24DDEE7060073C9824EA7E39948A25A6036C0D3EF8E3BEFBC72D3E6CD3B9DD5CE2E5301F0FDA77F498515D5949BD9425A773D325002B72D1375F6C0A00BFDFCBB6F4FA3FE49003CFCF8380066A5FDA5016108020F677FB8AFBBBB7A42E745D64F74F206F97F6AC9A376E7CAE47DEE0030972C802E4513896581FD5D686868C49D5FFFFA4D696969EBA55299C461140F1C790DFEE039F2F119416D2FC5D975A29E7E675229ADF4C3C7FE358DFA27EF99C80090310068CE21DA59A76D4FF10306BD61ACA6F25461635D6DE9D4C033DDF3240D64FD88A37F5F5E5E6E3D5726EF730B8099B2C0D734C224C9878686266501C7E67BD14517ADFAD24D37DF1212121CE9989BC829FFDCFFECA59395A7282EBA97CA4FFB921792EEC74FFCEBACEC170078E831ABD45105D0ECD7DDCD650C6D368BA5A9AEAEEA74F9C97CEC53BB23F84CF79CF53C49834D1E77F2C2C3C33F96ACFFDC00602159C0D39DAF5BC0896759D871E98E4B77B9A1D6735405BD7DBDB4F7C73FA2D8A83C3A7C3C9A5EDFF7D2ACEBBF070090C9A698C0C5CCDEC53F5D1DEDAD9565A5C7F4A3235CCF77809D44D64F74F206B8930733BBE4FEFD0A00E60102B3417D7DFDA42C4C3491842CF8F9F985DE77DF7DD7E5E4E46E962BE4B2C97B201D2BA0E75E7A859E7BF6E9D901F02033000030B3973F0710468687064F979F2AEAEBE9AA41D03BA796761FB7C9FB8F02C0543600109C5816A65EDCCA573923083EB9B9B92977DE79E7CDD1D1D109B3B9FE998F6F3E000690CBA473DE806102086693C9585F5355D9D250C7B526D7F1DCC56BE7491AD84E2F0039B498491A2B00384FB28060F0554CA25AC07BDF5B6FBD75CBB5D75EBB07D9E835DFBAEE7EE05100E00C03CCBCE0C26EB7D9DA9A9B9BEAAA2B4A2D2693D0786EE14EB471BB99EE973249630500E7C1243A6441A150F0554C4216F82A676463E0C30F3FBC7BF3E6CDDBB8B1302B00EE7F14122093CE365AD7DFDBDD5B5B71EAD4D8E868EBC4302D07BECDA1F5B48C491A2B00388F6C30F39E07DC5246807C525252E2BEF5AD6F7D292929297DE6DFDF75FF23169840D9D4162EFCDB687D65D96994F50D3887DD137DFB36A67CB08C18AB87FFD02D6792C60A003E0620F03D0F101C1E5B70E17B1E70B580F77EBB77EF5E77F3CD375FE7EBEBEB3F09806F3F6A96CAA572FE730B1EAD0DB58DAD8DF5351319DE39315CEB28F17AB98DEBE8DF7FD2266F05000BB4941D17B73A6E85C3B2C0774A7DF0C107AFDCBE7DFB0E50B71A0C609248A4F29E8EB6D6FADAAA5AABD9CC83343D53B31EAFDCC6EDE3513BAC4BFF69CEFAFF68002C461626D8C0373232320A40B8FE777F79C1ADA6A2AC6244373486F3C5C1ED7734741C59EFD0FACF42D6AF00601E59987A2B1CAE16B86C6430705389AB093CF53867FD3C278FB39EB51EDE51F759CAFA15002C5216F856385C364EF40FF826CBFC3FC1E0E1596EDF0EF058FD6731EB5700B00459181B1B13F74C040054083EDFC5D4A2542AF56CF23EED0E7F0500E7A8890426908F8E8E4AE10725083A3CA0D90260583EAB59BF028025C8C2DEBD7B9DF6EFDF2F81417432180C4E5006BB46A3B17FDA1A3A2B0038CF40707CA4F1EB34C8FE393971FF07D8A71BB9A44D93E00000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (153,1,'Switch_(24)',0x89504E470D0A1A0A0000000D49484452000000180000000F0806000000FEA40FDB0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000036E4944415438CB95946B6854471886BF73CD6EF6AC89EB6A884975375183AE5A4D84404B213F6A0D8822D52012A1782301B1F487088542A07F82509AA01204FB2334D04B0A15418862292828885AD1B84623D966B3BBD94D62B249CE6DE6CCB938B3644B8BD134031F1F6738E779E77DCFCC709EE7C17B86904C6676231BB5208C0791EAFEDCD8B875029631B8C50408210D86611C35113E822DAB02210CD9DC048CA652EE9C3AFF1463FBD77C76F64A67E7D7D3CB11584FAB953E1FA5C0CD74C5801082643A0DE3D91CA8BA0E866182A6E9609A08906962CB71EF3AAEF363B9CCF5757474B8EF14F8EDDAF5EE83FBF69EE6794E741C07183C951E874C260706D2C1B26CD0695755034C6450212A4E45742A8A6D9B41E6886BDF9205F952CFF79DB7DF1238FBCDB7A34A202B377F7AC26DD8B1A30A6104F3AA069393AF21373545C11AE826851B080CDA75432F8858B6050413C0160181E7A1AC3C08B2243FC326EE4344FBE9C2F9F3E98240FB57E7A653E471E8F3ED4D90542DABA5F9305F51B14664D96BBA06E9F12C64B39385989838B6D83C8B4B05977E1F0E8540090480BDCFDC636C4138BCD29324E9101789447C7BF61EB8E7940CED14700DCC29B3D0B27D97378625BCE7A3CF648E1378F611CB3E9DA5B151B139EAC8A06ECA5704617578D5021815E0222F4265E51A082A0AA432B92F0A0E388EE3BF3C7BAED5E3E132B2464A251202698302CDD1ADEE8C5D8AEB6AB7F8E96E2A80548D391A87956565509C63608BC654EAF78142C1922882482B37996BFDCF366D6B6B93D6456B7B5ECFA78E133BCFFB1D0556EC5A0B1F87EA8846826E20182C29028BDDA4456824A224FE036665E8BA319DCB37BE750EA81B8E6EB9687524DAFFD7E09F0D01C50FAB03A5206E5B0BF5620DCEA312C1765C91C167F2B36CBB82B0006502B64DECB1BF137DA9D1447B7F7FBFC5BDEB24B3D8BABB2F1EACDDB4F1F22F57AF846A22D5501FAD8244D8F32A67A2E693A197B2CFE7138B609EE7BDCC58323EFC7CF0C8C0C040DC5B0073EFBB2A989BA6A626E1D8C99317AAAAAB4EFDD07751FC305607B1BA4FF0BD078F4B8A71E4A7A7F223C32F3BAE5FBBDA4379CE9257C562425D5D5D1F6CD858F3BB2079F53691F19DFB0F7D84FE886462F8C6AB1743EDF1787CC25B04F6BF04FE1D5B6F6FEF7E4C9CEF6EDEFA03922389338F1EDDBF4919EEB22EBBA5DCD0C6C762313F5DB5EE2D017803E3A425037E775C910000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (154,1,'Switch_(48)',0x89504E470D0A1A0A0000000D49484452000000300000001E08060000006AA49DC10000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000009F44944415458C3CD58097054F519FFF63EB2B937D70636B78484802412CC104CC0944211B0D2801C415070180A086552079563E494A9E8581DA6963A431B9912A39456ED0805524827108848D2403627E4DEFBDEB7BBEFEAF71E59D890044190FA32FFBCB7EFFFF6FF7EBFEFFB7DC77F052CCBC2C31E023C743A5D02CB0A8B3C22F8D7E4F474233CA643F030048C46A38A20FCBF22297205AE5244D19490C27F24497D43D37405E9759F282828207E6A04C456AB6316822EA3197A3E45514A1C80C001B1DF3AE3672FE185AB4D4D3E86626A2452D9E1535F4B3EABAC2CA5FF6F044892CC27296A39027C1101C604830D80A7F16CB5D9A0F15A33F8FC7E9049A560309941A99083D96A7326C4AA8FEB0D8663BBB7BDF1F5E322908663194531CB6986CA18C9D2DC40B9404F5F3FB4B77782402C02D24F82C3E100954AC513100A0580E4C166754058980A9C2E57BF5A1D7DB4A7B7BFE2D0BBFBBE7BD404D43816E1588EA380BB310CF4A0B5FD08B4ADB313060C46904B656041EBD3382793C9C088C0E5721938EC4EF09124286452B03B5D209188C1E67072810F84DBC34645455E35596CA7264D7D72F78665CB1C3F9840775FDFACB11ACD7ABC9C8D431278809BA7E85BC0E941226E0F012D6DEDE072B941229580C168E2413338E7409032B91C4C463388C462601906DC840744420EB81DA448C0E174E36721783C6E604080DF63F05901E9F3FAAFC6C7C57E403A2D55070F1E241E88C06BAF6F3F9993354EB26249E914A9541A328400822707E5A343E06EB79B978DC96285F0B0509E881F352F1209D1F21608095182CB4DE0F3240264C0E97023412958ED4840CC11F0E0C234787D241201F0F8BC182F72F01004889118E1F37A626362FF6E361AFE71F4933F1CBD2F029BB76EAF168BC5451289C850525CD431F399C2A9DC3C8D16A487689F829B5D3DE045C066B319588110FC3E1F38D1F2A1A14A305BEC280FC0202681E00021603BC6831CBD62B3D9311E8448CECDBFD3E3F18014A54778BDE807E03DCC000B0CCBF0D7196929F8BCA80DDF5B41FAA88A03BBDE6A1F95C096B776564BC492A2DCB0F3502D1C07F13EAD79F6CC22595EEE64D548C18B59099C0844D7DA06F83DDE1B32941327214E724264C15D2B30037199899393C3CE1110A1C75CE82D1112F4F2CF8AD0083ED2CFDFE3BC302E3D8D97E4F04C47D762FAAE60DDCCB10F3FDC6BBE4D60C68C19E2BC6933CEB9DCAE8248B6054E67DF805F3A5F011946023A807861DE3C496C6C8C38100BB7023940840293D98259A80FBC5E0E10C383E002D862B18114A56341726204C7599E0B5E2EC5BADD1E042941EFB840A95480C56A83CC8C745E92C1DEBE9338EE10512AE5546CB47AFF960D6BB7719E134E9C38513DF317F3AB3B3A6F8ED7E95A202D27118AF29E8502F539F8D21D03D1743A13A588F43D37E7E7721146DB1022419EE9EAE9E563A17F40CF1330184C18E45204EEE26389467236F4820A010FE05C28A654BDDE0419A9C9101F1F37E29AC1E005F8A71D9308899A7818D01BAAD6AD5E592A282E2E1663506AA797CCFEC668B6A62B427498AB494C8B252074E8A0214B0FC99E0990A39A02A4D745C5C5C651F9F9F972EAAEB808BC8C0B6E335AFC66773797EF79D0029488C16884C88870F4941EC24255D08B1E4BD468202D2589FF4EB085875A1CD76468888A8880319A044CC3123E8E068CA663BF7EE5A517390F08F2F2F21449696953D23232F7496450D067A887F8E87CF8E26F5F414C5C04CC7DEE6790A81E0329D4677046F5248C71A6F8D06A82C4C4B1D2404D08D4873B3182E9D64B40FD950608512AA16F600042E44A7CB181974956E613284F7618D860EB73C983CB5EB1EA183E9638E0816134198FAE5BBD6AD9ED20E6E2002D1199993369615272EA36A944AAB9FCDF7F42B2D6857A4D028D7A3228FDD7A12AE5329447ECC5EC22028BD9446465664AE5728568A4D62270DDDDDBCB4B86F348CEF871204000F7AAEADC1993112A21145372085FC903C045836783D152B1FED59565432A31D716A3A4640CC324144C2F2E1FA3D5AE6AEDA89183200CAC660A2E5EAA87BC824C583A7F1984492C28B12BD0A1CC61E44EA52F2D3D4D8E6B0946D6F048E48656F5DB730C85B5428281AA1C063A78E80DC64F37AD5B5336622FB468D1225157575788569B3AE1A982FC3D9AC4B1457597BF15F8E93AB4080D93B25703E53243B8A0133E4AA881BDEA43D8FBD849C2E3A563E3E2E443E26214CF70A0C9A039BE0660FEE7EA06974EEF0017F0A9F76E2FF4F6F47DF4D589AA4DA336739C373036703D71D494A79F9E3369F2533B1C2E7D7273FB49989EFF327C72E4285F988A57E4C2D2A92B20146E80C765835E4F9C57241489E4F210C930EBDF15A801B99098B9B8F42B40902359FB36702CDB849B70B4B736FFFE5CF599F7EAEAEA2CDFDB4E230F216E4A64F8B2F8F92F2CDC90353E7B8D12DBCC43870F61801B4115C24259E9FBC0DA1BC06C6B8423E12DF0B6F63DB6B9B9D92B1089652CC20AAE1DC155DD8FAD840BAB3183596654D083677C3FD9D9DE7AAAF6FCBFDFC10A7E2D3535D55A595949DFF77E8093554747872A29292973CEDC793B3563C7CEAAB9F047A18B30C2CB4B3E804DE55B212E211A121784C26B79BF0505D581843C4C4B2FED1308C50AF27696B955C5AD7607DF1472157B28E8E15EE8EBEEBEF6EDA58B078D46FD590CEABEEAEA6A1F3B08FC8176640159E1A2D1858585338B9E2DD981FBE027D2B010AD59BF19A2D414242749E08DCD7F02A1F124981C5DF0A90A0986ACF737365D67298695618D60B9EE15E52218CDDA8161B35A4D8D57EB8F747776FE15FBAAF6CCCC4C0767F587DE13076485D64C58BC64C9EA698585EB2ED6D784F7184E00E191C29B9B2BA0F2F32F806207A02EA31E8E145561BF24863D07DE25BC24ADB817686EF8BC04D172FDDAE9A6862B1FE3BBAEDAED767D5B5B9B9F1D01EC436DEA3959B5B6B686C6C7C767BCB472D59B137272E61E3BFE17F186577F036B376EC1D6BB038A9E4981837B3F06B94C0E3BF7EC27BC14A3B8935D8602C7BD03D37DA3A3A9F14AFD619FCF578D55F78656AB75DF6DF54746205856DC4E0EBD326DD1E2C5DBB3B2B273F6BFFF3B108A6B305885B0756315A8A3A361C7EE7DC33CC00F8C0393BEBFAFA9F1BBE34EBBFD04066C13DE37D6D7D753ECF700143C8ADF8502B242225C31D39495952D9DBF60C1465D7B63F4E75F1E86033BFE0C519111B07DD75E82182410F082DBE574B65C6B3C3FD0DB5B85CB5C40597635343410B80EF3A3FF2E349AAC308586858787A7949797BF5E5252F2BC42A190726DF4B6B7F710849FE209E06E8DBCD1D6DA74B3B3ED044BD367F09966DC095ACE9E3D4B3DB61FB6EE25ABECEC6CECA4A5EADCDCDCFCB56BD76E43EF4CDEBE6B9FC7E9F12AF5FDDD3D9D3ADD694CED2751F69770F3D25B5B5BEBBB5FABFFE804EE96156A3AB1B4B474A1CDE979FEC285FF0C789CCE5A9CAEC696A10D7B1EFB835AFDB111081C5CA78BFBE750948E064718DEEA4389E9830BD24F9A4050A72BEAE9E911614E277F885C463AFE073058EEEEAEC64B560000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (155,1,'Switch_(64)',0x89504E470D0A1A0A0000000D49484452000000400000002808060000004ECEFCE90000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000F7E4944415468DEDD590B7454F599FFCDFB954C26EFC764F29C3C48788424105E2220EA2A880202828AB4B5D6D2833C94565BB114DAEDAE5DCB5AEB41B1F69C6E5111DCEDE3EC62AB58A8474979872433249399BC93996426994C9279CF9DD9EF7F43203B24012B56DCC9B9E7DEB9735FDFEFFB7EBFEFF7DD08229108BEE88FC9644AA2FBF88B8A8A86708B7D045F1400B5B5B52AB94AB55200E106BAC79DA130170C73DC1F392E74D0E970FC69D1A245A1FF8F0088BA6CB63B235CE4612ECCAD0C87232A8EE340DBE0D75C985F87C39C23C47187C291F0C1391515A7BEF200B85CAE4A0AEC112E1C7988D6A957828D0A7CE4FBC876B7CD86F33575100A85CE92E2C25FD7D419FFBCF7073B3FFCCA00E0F7FBF33996692EC4B25D7825483ED031DB63820F853834599A517FA911B1312AA4A7A5A2B1C9028FC78382FC3CB47775B50BC291A35533E7EC5ABE7C91E3560420391C0EAFA38028F0F09CC9323CB60ABC5E2F8C0D26B4B675409B910E895442DF1BA1902B90A5CB84A9C98CFE01178AF4F9E8EBEF4743933932BBA2FC6497D5F661D8ED7C65DFBE7DFD5F26004A5AEEA7E5115AEEA2A0C4E3051E1E277027055567BC84C1C1216467656260601096965664A4A7213636060663235140809CEC2C34B7B4C1DAD383427D1EDC1E1F5A5ADB909DAD83C73DEC730DBA2F4E2B2DD9FB87C307FF7CFCF8F1D03F0200112D4B2F07FD002D31A33F8C57DAD1E5DFD56D655984502044465A1A5A3B3A607738909B934D3408A1A1B1090909F148A4C5407408D279F9B939E8EAEAE62B203F278734A207F63E07F4B9B9E8A0FD2E02B1203FA7BFB9B5AD765659D9CE67B66E3EFB450030EB72D0EB68498D3E981D3B91C005434134B7B6A385CA3C213E0E4AA592FABF05A4F6C8A54CDAFBFAD1DED1059D2E1D0202C64881ABA90AD209204681105D272B530B73730BFC81005F1526B3198140103A6D061ACD16C4D035552A25BAAD36E4E564B71245CE2C983F6BC796C71FEFBC29003CB7E79FCF6FFEFA6331BA4C6DC178078799B845099C9704CCD4DC0C47BF13E92929F0FA7D2474ADD0C4C6222D35994AB91DAEA1610A488B7EE7205FDA4C07944A058C8D26A8144A242526A0C1D404994C46E7A4F2FA209188919C94C46B475C9C1A32A9189DDD36E4E874B0F6DA2122EA3011A563230579B917FB06068E09207DE9E0817DB6BF1B80ADCFEE8A8844622E3F37FBD34D1BD64E55299509D7001055FE16CA98542A838D1EAA934A353D3D154A0ACA6269018480569B86F6F691D2CEC9CA82CF4700D139A92949904A247C17484C48805AAD42BDA111711A35D431B13034361200C91020C283A8A72E61EDB1F15A934DD7A9371AA982D4488C8FA70458904DD5E30F04836EB7A77EDAD429BBBB3531EFBFFEC413C1CF04C0F6EFFF900010412A26FF2694B8AA66951BEEBDF38E2A11DB19CDFF3114F0FB03E875D8F97265DC8F53C7D21207734B33B8509817409BAD17649290A5A50725102C54095469FC7D2F51F6D3A87A2462112E1120199459A615ADED1DC8CFCBE5B581D1A28004B2AEBE810097D0B9197C75A4A7B2F3C4743D02292F871758DE6C715C1F170ABD1BE004077FB6E7B9EA1B02E0E9E77F141153AC4B7417506F4F854394014558D177FBFC3982850BE6254C666EE886044000816008672ED4805D8751C0DCDC86A1E161E2772681E4400F554A0E69827BD8CD77040648880B5155B4225B9781E1611FDABA3A28985C58A9E407E9DC29857AEA268DFCBD5897603E42A3A6EC6B343010782CFB79B9D988F0153AAE385BC895BEC585B8832FBFB8B7695C00040281E8995D7B42ECC167259D47A35F8C437967B1CEF2144422216532E85D75DF320929B978B20E30BA6D77F4F399CD484BE133E9F67879FEF6DA1D5409569E0E6EB79BFF8DB53BD62A9948129FD14DED90B5CC92E2025E275CAE214C9F3A85CFB8582C21D032504B1448218A944C29249AE0BA5EE46AD2C2A7950AE93BFFF6E3DDFF7E0580C58B178BED76BB7AF983EBFBACD47E2E5DBA84D43C35ECB39BF180EF1B904BC24894DAD01FCA89484442DFEA952B640A854278BD9BB20E6036B740AE90F3E2C77C416E4E16FA1C7D14642F720904A60D9DD4369913643AE2A0D637A5A888B4A515367B0FA69794C264B1F0342B24A3C47C858A04B47CC63402437CDD967C990EFC7E162BD3249D561B5ABFFA01090F005B4A4B4B5572B9BCF0AE15ABCF757559F1B753A72096485156968B1953AB102371E3F6A4FFC1AB9112E85C058889A8B9E484F8C09D4B972822E1C8951B862EDF283C4E8B745246BBAC56B47776212F3B9B82EDE5DB59417E3EEF1198092A292AE4C160BE61DA9429E8A0ED5EBB1D538B8BA99A4C74DD086657CE2491555CB967F83A33C7E87E0D75126A9D7CF721CA716B1F58211E0540585656A696482433088013BD941D7B7F1DA1ED23210C43255F8E0095AF56548323653D28E89E810AD9029EE31E8F3BC0F839A5B8583AEE0C10F5604CD83C648B3FA93E4DC2A8A56C0F50C05D282E2C80832863A25E4F83115FFECDEDED28A56D669FFBA8C5CEABAA40BC267ECCF5AF7F3FB630C1CCCCD0D2B96ADE7F30E719A4A1E4A155F75F014040B3B98C0692F4CA79B7EF494A4D59E7F3F64A7C81B31050374889BF17FFF5BBA3244E6EE4DE9E8C994533A18F2D41A682CC8BDF83415915865C03BECACA7271427C7C943E4C6C97996962FB86C8231888DB85FA5C0449408DE4128B48E858D02CF8CAF23252F654DCC8B035F6187E70217F919898489E410801052E14B0EE2664005CA500E30509A040AFD74B89061A7D51D1ACE292192FC42726CC6A693750A6A6E2BDF7FE131C61A5D78BE97B01A615DD069DE41CC4816EBC90DC800DCEEF20519E14F17A867D15151572AA0EC1A4FA70793F3D082F7CE43171EADC05EA029908522B65204C2B2DE64B76A220C313649DED57C690B9226FC104732468010120E4B7D99A63003CB85212DD05046BD6AC111A8D4605D121A972CEBC5579FAA29D3131AAB4333567919E61E40BC6E98CC7AC69AB71FA4C357253457867DEEFF1B8ED7BC84B2A00B30B3E9F374465152A2E2E924797E344651B0C069989C1F18F3FA1AC25A2886885496CF7445520221FA121FF2193492F072BE0E791D1350F04AD69840F6E58B34A3AEE30C480A02C8AA9A7C724242464CEB96DD1569D2EEB617F60406E6E3B46D6578DB915CBF0D22F7EC91F5FB6A0182B162F8726261E1A5127A4EEB3188C5F07679FD34F1656909C9C7C8D3E846FA08D4E5C41D71E17A13FA55C0EAA60F6FC570215460130BA6600FCE1BD7715870F1FE6261C87E94242D20629F56A4D7676F68C8AAAF93F48CFC858E0F17805ACFDBCBCFF00B2721464404250CA4AB1F8B6FBA10C3621C97B147B922258E8FB27CCD4CC4677678737352D5D4A3E5F74236F8AAE3D66E2E3189042F2286C86982CE3D140300AFCECA77B35B5B5B59E49DF078CA5059577F2DC050BEF9D5951B9332E2E2EBBFACC31F2ED3554BA62F83CB9985FB512BFFBE37F233F258C8B773563AE7F31EE485D4EB41020140884C9CEFA53D2D2E5ECB2939676D4FEF0440045A8E4E94F20BA2A6E930170654DE4B2DB7B8FFEE657071EA9A9A971DDD01BA1515AD02013AB56ABB5772FBBEF5B45C553361177557F3BFF0E5D32098BE6DF87E777FF983FBE689A1E5FFBC63A64C665432AF443DDBE0BCE8217E11DF0051D760717A78997DF48698F97F56068A49D52CC97CBFDAAB85D01226A3D0280801930CBB9D3A75E6E30D6BD4F55D3555D5DEDFB4CAFC4182DE6CE9D2B237DD068B5DA92BBEF59FE6C4E7EDE12E2A0D0EFF563F74F5F429E5E8AACAC10C4822C3CB2661B224117923BB6E160DE7238079DF8B6EE69B4B5B6FA863D1E9154A690DC987D1D09DA4D1E8255C435010AFEAFCA4703E171BB5D86BA0B6F9FAEAE3E443A61A150FA29783FC51EFECC2F45C7D242A954A6CC9E3D67C982C58BBE9B96925670E2E451F8027F25A72586D79D866F6E7C1E6F1D3A0269A813DC32351C611B9ECFFB57BE5B2034143134B4FB02E1B08CAE2A8C0E7C5428D9A03438E486D7E71D312DD1DC9E0008F69D400B369B4D7FF9F4938FDF08F9FD063ADD1A1B1BEB3E71E20417B91CF8DFFD56980141165A429488A18AD0AE7A70ED63B3AA663F2E1449E2DE3FF61A393E319EDCB4139BB73E4356B70FEAB8386CF9FE462C2A5DCC0320366E416FDCA31026EA39B3A125101188142CCB63B3CEA6C8FE8101FE3DC4449CBE46E54700887476B61BCF9E3CF9ABFE7E47B5DFEF6F1D1E1E76B5B6B60658D66FCA6BF1685A903EC453CB2B7CE8E1479F9E36B5F41EFA41C4DAD2B7B7EE84481642696908722987ED4FBEC50320A8790C66D54A6C16EDC5C725F5B0F7DA0335F58608C52E737B3CB0DA6C9140302898AC9D8D0784CBD9DF7BF1FCD9773BDA5A8FD2E399C8E1F6969494788F1C39128E8C13EC4DF9C708AB066A9922ABD5AA88898949A9ACAC9CBF62E5AAEFE6E4E494BE7FEC03389C87F8917A704882679F7A9B7F0768369C82263F0EDB155B503BB59B263C250FCCEB6FFEDAD3D1DDAB14D2F6F5FAF9D8DF29015E93D1F051FDC5F3EFD275EAA96A3A69DFA0C16008462609F2A6FE6B8CA58B682156A954B154CEDA75EBD7AF5DB2E48E27C94D26FEC7E17DE8E96BC34F9EFB0D3E38F617FCE4C59F831C27EEF9FA7CECDEF802DFCB1900FB0FBCE96DB7F628C6E5763420B49F2A9AEB6869AEADB970F6EDA0DF7F96F65928F8BE73E7CE3191E36EC6FF053E172D341A8DFE9B4F3CF1D49C3973EF730DB9A55A1A6CFEF4E147F8979FBF026D96926C2F87AAB2F5D8B0E66B7CB0AFBEFE86B7BD7B0200C6AE4911ED3D3D9D7535E77E3F38E0FC2B816724AE77D3DA4DC187223718D817F6DFE1515A78BD5E25F98594F2F2F2D98F6EDCF874494969399B040FFC7617B2747D440B1952131762E7961FF1E7BDFADA1BDEB66E9B62E2BE2E807B6868E8527DEDF1EE8EB60F28E00B94F116527727A9FB3522F7A501301E2D0888CC356B1E5AB166EDEACDE9E9E9696FFEF61730B57C045DFA027C6FEB0FF9E37FF9DA016F5B1701704D9B13B04931D86631D55A4C0D47E9B9CFD1E10D048055A15078C6B6B65B0A80D16A602B362A4BA5D2780A2A6FFBF6EDDF5ABA74E9EA5088935B68EE9F5D3E630480FD07BC2D5D56C55591E32D5FC4DAD1D66E32D67D14F0FB4FD3BE1AD6DA88620366B339F859B3FE0F07603C5AD0D7D4FCFCFCB26DDBB6ED2060AA842C5AFABCB2FF754F4BA75539CA77575F9FB3A9A1EE1495FD492AF5F3F4BC8D34A0F54C9F3EDD33516BBB6501184B0BBD5E2FA1A12A9602CF5CB66CD9DD9B366DFA0E4D9DBA57F61F186AEEE88A0D78BDBE667383D161B3B277FAE7E9B85AA2501BD17FF0F366FD4B07600C2D84947D198DD709145CEE8E1D3B36399CAE851F7FF2A9A7B3C55C476ED040CF779E78DEC40C0DF5742F9DF3B9B37E4B00104D0BCAAC8A024DA532CFA7DD19B4B8E827332D1D54F243D733345F5900A2699190901043995751C9D39C141EBC5143F39507600C2D58450869AE88DC0C91BBDEE77F01E1FA866211D8A0F10000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (156,1,'Switch_(96)',0x89504E470D0A1A0A0000000D49484452000000600000003C080600000099D4BFB40000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001C454944415478DAED5C07745CD5B53DD334A31969D49BD5CBA88D7A7137EE0153620C960DD884408C0D3809E5C3A285D82440483E21212410C3070276086003494CA80EC5D8966CF532EABD5B7D54A697BFEF55B5AC6A534C99B5DE1ACDD3BC76F6397BEF73DE930476BB9DBE7F7D7D2FC1850280002FF6FED1471FC9838242AEC08AEB6C365BAF5D48FB6354AA8FF12BDBF7007C49AF83070F8A9292D2D69148B04D28106CB2D96D4E769B8DAC58EC363B7B6FC5E77FD88474202936B6E07B00BEA05763635B8A5044DB11E66B10603F643C0D2FF6E177FBA4CFC34B89D56E3F20B0985E4D4F4F6FFA1E8079BEFAFAFA820D26CB76300A28C61E3B31D3C7033E45E0ED670161EFE9EBCBCACE29D41805C2DF3C7AEFEDB5DF0330CDABBFBFDF1DC7C9B0D8ECDB11F065089E6038A8F649019F35E87C693DDD41790545545D5B4B2141419418A736E9F486A3659515B932BBF991BD7BF70E7E0F00916C50AFBFDC6EB56E471037D8ED3687B14C9F10CC59B37F64BDD56AA3AA9A5ACA2F2A21643EC5A82228363A8A5ADB4F536E7E1175F5F650426C2CC5C544F568CACAB3BAFABAFFFDC4AFF6EEFBAE0120B4582C2B113004DD763582EB326566CF96FD13C0D01B8C545A5641859A52128BC4A48E8DA2A0050BA8B4A2928321918859055048600095E07BD9F9051CD4E484380A0B09AACF3A95574C76FB5FFEF8DB5F7FF06D06208107DD6EBF161413601D09DE8883C1F58F66FA54943275F6F7F669A9A8B48C2AAAAAC9C7CB8BD431912493CAA8A0B88407DFCFDB8712E263C859A1A0DCC2622A2C2E257777374A8E57939BAB0B9DCACDA7829252F2F470A7D4A4047271762E3C9993572A964A7FF5DC938F977F1B0008C4721D16082AC5CD1CD4C9BC3E0D10786F696BA322647B5B7B2785870653942A9CFAB4FD5458A2A1E6D676528585506C4C1419F506CAE53A5047A1C14100434D068381B2F3F2B1AE01DB86F02A30994C94959D4BED9D5D9496144F11212196632773AA4D46D3FB1B2F5EF940464686FE9B04802B96CD2341BF886DCF56B27D304A19773453D3C95482CAB6339BCD5453D740E06E3298CC1415114621C101545BD74845C86283D140D1919114151E464D0028BFA898BABA7B28265245315151D4DCD24C39F985D4D3AB25757424C5C54603AC3642C6F3F3494F4E244F4F4FCA3A95439AF20A6C1349498971545D5D6BA8ACAE6D5A949674BFC0A87B7BCF9E3DB60B11002996CBB06C1B79974EFE827D8CCF6709FAA4ECD7E975545E594D159535A4747626952A8C944A672A2BABA432D08C5C2E47B054E4EFE7CBA9A8003483334690A32938C09F53511E2809CD1B25A8635009C1548A00E74094DDDD5C39F5088402CA44E01B9B5B404F715CBCF35161A772F22918BAB1283D853A511D390545267594EA5FE121C1BFB963F7AEFCAF1B00C14886B3A0678C64FEB42FBBDD3E8B953C735D4F6F2F8257C583120041558587F22CD79456525D6323F9F978F3C0CBE58E54AC29E759EBEEE64671703D4E0A39E8A814825B495E9EEE148FC0BB00345615A5E5950021901211E89EDE3E4E3D0383439C7A02FCFD293BB780F28B35BCC2D29213A8BEB1894E9CCA256F2F0F5E258CE2F20A8B00A6BAC57F81EF4B556555EFBCFACABE935F2900CFBD7CE092ED5B373F2997C962E6BA93B964BFD566A5165C603932197D0185860473E7D2DA761A01AE84B5ECE5C18B8A0827BDDEC805B8A1A1898282FC396518B08E09300B5A18385F0D9A61FCCE74A0B1A905BA1089CA5071DA3A9957C0DD515A623C392B9574323B8FCAABAB293E261A8E2916405551664E2EAF225625B5F54D948FC087435FE2E0B24A4A2BA8AABA8E89BC3D3222EC684E5E918674F4F8A143CF377DE900FCEC9E07F78A44C25B37AC5F5BF983352B978D0EC9660760EAEC3781D3EB1A1AA912172496889835240F5737AAAEABE3B482AF5304049335546DA74FE3E2CBA957ABA54854450416061A7338DA817E8A067D305166A031E7333838C82B202C28904A50252C7B3D3C3C283531813BB0CCEC1CAE0549096A68888A0A615BB3414FE1A141948CEF545454633F451409EA4B8889415595F3CA64FB8C03A065F8391FB10F6155A58E355454D716EBF443FF498E0C7D147A61F97200B8F7C1BD4281708F5028245441E90DDBB6DA22C3C3E266A69FE91B2926AC83BA210A0D0A2676A4CAAA1A00D2002A7142804360313D21C0F5A4C1C5322E8F0C0F0705F950556D0D15030CB1584CB1A8007F7F3FBE6D21AA40E2E080A62B06C2EA8E8EB8986B41084060FD402F9AB42C64B7563B0020E2514101840C464595F2EA4A888BE120339D888E8CA024D0150B3C137B35DC5532C062C9C2DCD4025F3F4A4D8EA7D39DDDF87E01B9C3DE26639F4343BABEF2CA9A3AB8AF5FECFBE36FDFFD4201B8FDDE87F622F81C80E14560F7F5F6C9BCE9FAAD612E4AA5EFCCFC3F3DF737B5B4C09B1720681EDC224A11C48AAA2A74B775B83057E84038E77CC6F7953535E4E9EECEB3D6093EBFA4AC8CF3BB379C0C7338229C17A39EFAC6665E116A6843536B0BF7FEAC636681F706B027F199897C1CA827262A825BD93C544E944AC52D6AB1A68CF2A01DB1D09BB4E424244613043B9BEBCDE2B4141A181AE23AE28073651A211008B9DBD2C33CB0EDBDBDBD58A55559EDB603762BFDFDD7BFB8A7E6BC01B8F3FE3D7BE11C3800EC4225422BD9855206860E175A78F50F2F4D9548240E67D0CF2C223C6C4FD194592C3C40397985D4C0041859CDAAC0A0D7731D6074C19C09AB0293D9C4FB0116941064B11A7693D1505EA186BA7B7A78B6468485225B6B281741717474A414045EE124E79C5F57DF080E8FA5487C67B851D370409310B812E84B162C6A7444042D494FA5A6F6363A76E214F621A3A58BD288F1E2F193D95C6316A5A6909393130F7C4757272A468D730C1C4FBC33132DD366B5EE179A456F3CF6D8FDDDE706C0837BF68A04E315708DEA433ADA18495DF6C8E18A20EA5D989A3474C9FAB501D3F2FF74CDD6C8708DD94FB20BA8B3AB0BD450CEB93C1C8162E27ABAA3838ACB2AA81B3E9FB9235619CDADAD3C8016AB054E289AFC16F89206EEA8B0A4049DAE07A71101EC6916AC259B0D25838A82B1AFDCC242504B39C532AA01B570F1852565802E5D94CE81FCF458160FE6F2C5E9A440B51DCB3A495D3DBD3CF07E3E5EBCD25812C483F258B5F16BB6CFDCD7E0DD6CB3DADEC3AFF7F749E99D97F6EC31CC1980BB1ED80B11160100010FF88F63DEA6CCFA407ADD7F807CBA0229C29CC0D75BCDE6A1CB2F59274E888F97DAC6460FD30DD7A63E513DBAD98EEE2EF202DDD422639987375BACB8D0306E1B5997CB684281EC668337171725A711464701FE0B208C3100D340A7C0D73D3D7D68AED4DCD632BBC92A2A26329C5B5246434C90593FB174611A0D825AFE7BF438E9A04DCB172F261F1F4F3A9E798A535A7A4A122A2B988B2FDB07A3A77835A33DD1BCBBFA91EAD75AEDF64364B31EF8F3138F7F669F14F0310046DC8E9051102CDC2F78B663D542970FA953E74ACFC75413F50B6863E74F685C1FB0D86DFAAD9B3739787A788A660CFA34A365B68E8D10CAA0072ECE4A7285D031F7C182E60DBD60D652808B6716B4A6BE012E2A98F703DDC852268C3A6CCB6881CD8BB2613FCB2AAB78870CD74295B5B594793287BCA0074B17A6A2E3B6D127C78E533BAA64D99285B0C281E88EF378A053404D4C5F34A83E96F561704AA9898924953ACC29E82C8EE353806935B1C9CDCDF5F5C71EBAFF9E330060C1CFC8C810D6D6D64A97AFBBF861994C7E37C3E5D8F1E3BC270B0970A79A75C56433DA6893F6661E7807B18DC464248B5089835A6DEE2E4AE3A68D57C8C422B160E6EC987E120A31A32258CE219D0E5510810CD571EA6941C0E0C76143872D684E41213F79E6E95D5C5C383F57C1E7338E8F47E06BEB1AE80432DE15BF5B0231158B45F4D9F12CAA07952C4C4B0225457197C3F6130B4A4B4F4DA0EA9A7AD0532EF9827698003B83F76DF36C3067EA87585FC2340B4ECA78EDE64DB2330078F8E18785870F1F96592C16B7656B2EDEAB7471D9C10078FB9FFF1A2B15377725A956420C95A91C0057A99632825FA79734579248194062A19865B2393632DCB66CC912E9EC273ABC6EBA496963732B5C4D1E323198BB26D680310723934AF9D841818E381B625E837E82F5078CA379670BD7A290CB3987CBE5323A9E750A6EAB86BB164647C525659CE783E1ED972F5E0440DBE8F3CC2C923BCA691974C00B4E6BA631F9A8A13863EE659F1E08F64257CD6DB204965A6F309C0D405A5A1AACB58333021898BE74E5439E3E3E573300DE7CEB6DFE25B144424EC8A694041FEC2885A011E4223A4D37AB0FD2EF4F5C42AFC6BD432B5B375294433C0747373860B868D912517070B064F6EC9F39AB18C7BFF7D1C7249339F020B34C621E9EB91CE6E3D9FD812638AAAC53CC2E4AC0E1C9E406ADC8841362FE9E4D4E5313E279AFF1D9892CF27077A315087CFFE0007DF2F971B24073562C59C4DDD7FCEF57CC5CDD6EB0D78CE6E43247C6327C010086EB366F729C38F311A4A6A68AA552A99BD1680C4D59BCEC416FDF05572035E9F0FB4748E9E60C073188D2D143BC24A490AE8537772347E120A5290ED3F1F6C5F4F4927D9456BD962E966C1ED3061CCB6EC6C1D6AD5D2555289C84A3193397EC9F7C8156AB95BF1F8783A9ACAC41E0C3411D91D4DCD6CE2D27EC39A5252591371C51369C4F013A5E56EE69F0EEEDA73BE074323970CBC1FB08037D0C01EEECEEE68167D5333CCD3DF31C263D953121FB27DDD59B22FB996E04015057A5722CF06300180D866D9BAF723CA30256AF5E2DEEEBEB7382BFF70700F778FBF8DD201409A919CD5350D00970B304071590D12C2207D10F6868C04025F0E83DB0716C9AF8C1EAFD94D8B69436388E0320A72E32897DC96C3259E53207D3F2A54B591A9C03A78E6795D16842C65AB8453D9695CD6D6972523C773785702D390505DC05B1A669605047473333F95C89797B2538FDB31399BC7216A24A9870B349E97C346A36672740CC7C6106BC3CDC47925070D662301AF5DB32AE924F1661E1AA55AB1C1050A544A1F049494EFFB1EF82053B240E5225F346ED1D9F93D4B107D463274787F534D86FA277DE7D7F4C1FD4099114911C48519EF12307B6D395AE8FD23B2DD007F754DED00D0E0C98D078D963A2A2A5F319594F55FEA8549C530732DE934AE060981BF2809565169265E731707A07405A949A4C7EBEDE74024E88CD8A9833625581449BF178F37D5283C5D005D9CE9C1813FC33834E23EFC380188D06FDB62D579F058060EFDEBD8293274F4A9A9B9BE5E82A5D5D3C3CC2E313536FF7F0F4DA00CE17194D3DA4A9C84797BA94F4E0CFC30C00EC50265740D064E82A63410D0836B24068D3D156DFFFA543956BE995B0428AE949A1154EEB39383D3D5D860475ACD8DDDD533C6BD0A728EFB1DB9C5858B7CC2CA4A7BB07C4D9814F389910A780F3596397035BCA06748C8E16C1D9E0C2E85C1DDA74DB316D62C22D73904E99F1ACCA467F1672008C3A00A098B2116395003D1099CD6607B4DF0A50B8872A2A7651943AFE6EA58B523D4A2FCD2DADF0D359141A26A2407F1DDC8609D6514489D1B70EEFC7662035BD42950371F427157444EB4EB74A1F18A32704CFDEDFDF67484E4C92819B057312B7596E73B27B04060836BB8FC08678D9B9F9B0943EB418FEDF15A23CD576E31A34FFE3B1EB708331616E6CCAC04F08FAC4CFA0D1A1ED5BAF769AB6131E69C8046AB55A0C10985D524204BDD2162DCB0855A976CA64320F4629D5B5792453E441906D68DD1D712144A971B732AAA1436FFF9B5BAE8529B17424E92D72D6BBD16E970739154D6CE2F43A9DC56EB358A26362645307C73EA9B199DD89B0475778633532903B17AD99891A59B89C6073919F93787E9C6A84677C3E1B801F5D9BE13CDA114F7B4B72B4390325B1C19BA3C96402E02E814B56ACDAEDE7EFBF5124124B2C56139557BF470AA72E889E849624DF42FD00E04F7FF9EBD87E42558114BF368C5604AF1D0BBCBB5D43527D21B53B6E2599A3827ABABB4C4A70A8AFAFAF836D1E4F4ECCB56AA6732FF3CD7E096C2E0B3EB3E1B365FA740B03E086EB325CF84809AF19EF098F56C3282D411B9C0084874A159D94BA78F1FFB87B78A4B080F6F6D7A2D3ACA52D1B2FE5003CF5F4B37C7B214E54EEEC42EBD744D1B28597D1E884D5D5944DA9B297E9AD8EFB28DB2B97D68B36925C2AA7B69616FD027F7F0794B568EAE0CCE59EF339F8F759B6637331D600B27B1367055E3845A0697A1D800B1A7AF9B9673D3FFDF45313626F9BD35311A37322D0920814E488402A71625E4B56ACBC2C561D779B5CE1E43B4C2F02EAEF1FA03F3FF7226FDC92128DE4E1A6279345440B3C2F81E74EE720380E7E4E8B9D5E0300F7D21DE137D196969D74CD829BF8F6168BD9D6D6D6660C0A0A96B1E3CEF5012EDB84EE74EAEC9F5FD58CCE7750E9BC87984C3542817012F5CCBE08470078F2F147033D3C3C060082755E8FA5B080C0AE8AA0E412E8821C8BAB5C2EF75FFB830D3B42C223321C2412991D07F9F0C8118A8C3E857293400BACD4D7EF487E5E97923A3A953EF8F0BFE428939197B09C7CE22EA63B826FA02DF537D3B6E09D676844BF566BEED36AADA025D9B93C7171BE55335AC1C273A099B3A9691CA4DEDEDE4FFEEFD93F6F059368351A8D79DE0F664DA62574D0CE688EDC43C2C3D5AB56AFBBDDD7CF6F19E3C85E2DB3ADAFC1A60D00750905FA6EA0B898747AE16FFBD1A916F37D45448492C30F07C8DF1A48D7C7EF1C0BBE427F92B4166F927B44514B4BB31155207476564AE692FDF6793CF63855E0AD23992F388FC04FF57DDDD0507B4951C13399C73F7F1B09DC724E15309548E7E7E78B21CE32464BA808EF25CB56AC4E5FB4E4672EAE2E412CA34BCA0AA8B9FD0805F95FC947BE2FBCBC9FF20B8AC6F6939898403FBF6507BFEDC735027D845BD73EB2F616D280FA19D25BF4E42A71B35757571A1CE54E5291582C3C77EE9FBE6A58576D3159F87DEB79D18C70E6C05B4C667D4579E9BB9F1CF9F0557CAEC535B6414BB5F3D280F9D0129BA842ACFCAED874D576B53A6E9B542653F059B9C5CA3DF30B7F3BC01F0171843847A8C4F0EA469222E85B37FD6EAC02644D4F120D965173DC2374EB6006DDA7FB2DAD0A5E477ABDDE5A555D6D72767175B49F572375E69C496F30F0A1DC8CC23AA76C1F078AB99CA68686ECA31F7FBC5FABED29C5BA56C4A1DBD9D97910C137CFC9059D0B2DA17993421758A3E1E1E3E31379F99557ED0E09095D8DCCC64B44FFF9E0236AEBC9A590402D3A533399CD426A3FADA09DD73F313C49D541B4DBFE4BBDF51F9078E59DB443B29176D5DE473726DECA03C3EE4C75749E36373535DB64A88819B37F9631023B160BFEC835CC996A66FB5E7777677DEEC9CC7FD4D5D46461D74D1289A403D7D6DFD7D76704EF5B869F6598A50FF8A26809AB7C9253172E5DB36EDD4FBDBCBC548C962A6BCAA8BEE965943BE35C08539F8C6EB961188007F63CC26EF090422EA3F5D7AEA0873D7F4E379DBE837E927CDBF8A4D5D0420279205557551B7AB45A149C443C9F3FF860B742FB0706716CCB483067A79AB980A3D7E9B5C50579870BF2B2DFC7E70684A40D09D98BEBD661311F3C78D036ED2DC92FF469AF09B404B557A0CCDD1038DFAB323236A72F5C748342E1E4C202F9F989D7A8BE358F24223BDD78EDD33CB8F7DCFF4BAA6F6CE4FB61627EC5B5AB2936219256C58C377292AA07A8B5DB4A0117FD8151883DBFA0C0A0379AD930463855F68FCE8FD8530EDDBDBD64329ACE4350CF06C96AB39A6B2A2B8E9F3CFEF99B389F6AC4B419EBBB743ADD206CBB313737D73A31EBBF7400A6A2259C88335679A03242B76DFFD1AEE8D8D88B91BA629DCE406F1E7E8F7E72FD561EDCBBEF7F88EA1B1A7956CA9D9514132BA294B88B68CB953FA2D107052CC577D0406F3B49D7BC40BF6F7E986E73BF9B5C451ED69CDC7C93C56E779CFCB0B0D962A19E9E5EFE48244D12CEE91AA839EA80BDA5B9B13CE7C489377B7BBB99B368C4F1DA717CEDE0E0A03E3939D93255D67F25004C474B58E582CCF68E8B4B4CDBB869D3EEC0A080B889F3A1BBEE7D88BAFB0729345C4CC10183B0B166508698EEDCF5EAD8777A4FEC22FD600F09563F491777A7D28DBDB7D32FD31FE3BF6B686834156B4A0992CAC71A2CF0ECC90B14C48C593C5FCBA9D5F67514649F3ADCD4509789ACAFC7B15B70BC6EBC0F41684DCC62DAE710DCAFECAF24476969606080CD965813E786557E576DDE7CD9EA356B6F727171F56459F7DE914FA9AAEE1085046921D02270B5948674627AF0CEFDBC51ABA8AC826B329326F3EF14B1F13ACAD0AFA1EB5B7F4ABFBEE8775CA04733F7E34F3ED31FF9EC9844ECE020FEA2A886CF720C065D4569C9514D51C187B88E5AC4AF0985DC819FFB91F586C9227BC10030132DE13D64C7CDBB6E4C494DBD1C8D9D031BF2BDFAE653A08E325088800686A4B4E77F5EE619FEF45F9FA777DFFF88CCF0ED3FCC584F45F19F92CA124D8FADFDC370858886E74D9AD232F381836F4BCEC7CD4C5C7022D686FA9A22B89B7761B52B90400DCC5A22F8BDA8685D4040806936BAF9DA01988A969C9C9C1CF1D10517E21D151B1BBF7DDBB65B232254694C801B9A5AA00FBFA3861621EDFBFDB3C3003CBB8FDE7873FC698DE8A8487AF4D17B49151479C6280334643EF0C65B530230277EA761AD602075B4B73516E6657FD0D3D555887DD7816A98C8762289066613D90B12800940B05BA1C2515A62230D5CA0DFC68D1BD75CB1F1CA1DB06E0B5830D903B48B529279609F62001CFA27A1232685D28D12122C249749E897773F4FEE6E5E6333FA628DC6BCFF8DF10A983EDB69DACA181C1CD09614E41F6D6D6A607EBE96653D1626B27D680A757311D90B1A8089B4C46E000100292AC209E7E48576DD7FE7AE5DDB56ACB8E82A34768EA399FDC453CFD0C7274E913AD64C010B06D0C10AD04F08E8868C7D14A58A1AED42A9B844637E0515702ECD95D96436D55495175496161FC5B9305BC9B3DE6C3633911D74777737426459E0CFFB6FCA2EA8FF9632999640433EC16161D1B7ECBC65676252C252B14824608F22FEF5853D2476282214016921D256AB906EDEF6178A8E1CFFA31E0EC0EB6F4AE613784623CD8DF5B565C505470D7A7D05CB7AD6502146EDF8598B97A1BABADA7CAE7473410330152D21EB1400C11D65EFBB61C386E5DBB66FDF11101018C22AA1ACAA945E79ED5152287A100D01DD78CD330020F60C005E7E6D220034A30EF4767575956B0A33C1F31A6C5E33C2F5E7642DBFD1004CA625575757293A4AE696605385FEBB77EFDE7CE9A5976528954A6706C4BFDF3B402FBEF6013DF9F023FC49B98900FCEDB54392D99C8F41AFD357969514B4363614607F8CE7D93FFD6800F06C7EA33D176BF98D0760322D6567674B90818E080AA7253F3FBF883BEFBAEBA6654B97AE944824228BD5CAC7C85289E40C005EFAC7C16945D86AB15A9AEAAB6B6A2BCB7390E5F55878D6636905083D0E0E0E43E76A2DBF35004CAC86C9B484757ECB972F4FBFEDB6DB76A854AAC8C9DB1531005E7D630A1126FBE9B6D6F6AAB2927C834EC7E6F32CE3D9D2383AB584BD349C8FB5FC560130132D21605E00C47FC78E1D976DD9B2E55A37BCC62A40536A7AF1C0EB0E13833FA0D5F657579468B43DDD958C66B0AE868D11584365341A7B669A5A7EE701988E96F0D1154D9C0F1BF2DD77DF7DD7A352D6813E24E8030C2F1C789DDDD82793D1686AACADAC6E6F6E2A67A3031A1E21D48EFCDC896DFB515DC6AF2AEBBFD1004C454BF0E7ECC1624E4B0909098977DD75D74F846271F0B32FEE979F6E6EAA6FA8A9A8189952324BC9B89E653D9FD57B7878E8BFEAACFFC603301D2DC1B12891FD9C9656AE5A75514E6EBE4C37D8CF9AA5215C670BBE5ECF66F500A013943300D04C2CEBBF8886EA3B09C0645AEAECEC9460912B140A17F68000EBA8F16BF624B20E41EF40A7CDA6967D6C568F868A59CBAF25EBBF75004CAC063669C53BF3A36CE4ED34F2B319CE89FD1F39DD97D5507DE701980A08D09178686848888AB0994C26CBD721B2DF390026033161D50515F8D1D7FF034558AFEE92BF05B50000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (157,1,'UPS_(128)',0x89504E470D0A1A0A0000000D49484452000000630000008008060000001FEBD7B90000000473424954080808087C086488000000097048597300000AAB00000AAB017DAA48330000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000025D94944415478DAED7D09B41C559DF7FFD6D2D5DD6F4FF2923C1292978D1042102428F2CD9820A83832E800239FF37D306E30EA0CE7A830701C57CE1198610ECCC8721C18461D195194414045104C9C0F0505224109D9F35EF6E5E5EDAFF7AEBADFFFDEDA6E6DDD55D52F8B1EEBA5D2D555D5D5B7FFBFFBFFFD97BB114A29FC713B3936E98F22F823187FDC4236E50FED072D5BB64CD375756E3E9F994372ED5D2A485D20934E42E52E90481750E8A212E9300C20400DCA37C3E46A831AFC948157D87B7E9E1A1583C284A1D727C080099DD427281E5330F0D518A395C903FBF6ED1B634F69B5ECE4F7D1661042A4B75CF0AEB55A9BB69648F25B884167E2CFE844F1755142BAF19C06A6ACF114E592E5720DD94D79479C177723789E03C62E18FA1405328ADFB8176F1CC02B8300F541BD5219948CE2A6818181437F50609CFBB6352B3ABBBA2F52156D0DD6F0B72B4A66B62D4803ABB9A1EBC0C58EFFEC2ADA4890D30508568CC605A7062A9C7E008F06F1FE013CB15BAF4D8EEEDEBEF9AEDF1B30CE3CF38219B3E7CFB958CD686B24495EABA899157679D9AED7EB08820E3AE55207BC87D5D244820C15BC110588C141E7F2A2048C1472A37A750F96794222526EE71B2F2D3D696D06A39E3517BD774D5B47C71A4956D62C3D73F95B2549C9D902D275036AB5AA450FA6F065052D8220302624E779FC2EF10BECDAE73BEFBFDF39A076C5E6B684BDC522F2F3EC2FEA39211050A35EDB46A92ECB6A6EA92CA3E6EAB55D279D017FEB9F5E7C5AEFAC5917299AB6E6F2AB3EBC46C96873C51A59AB56A08E1AC07F3C3A7EAAAA0215E9C7AA9D41414600629D6C0688A9013AAF040C00197743F83EF766DA889EAA28F4AD78D42329DAF293CE9B3AEBAC3FEDE95BD877517B5B7E8DA4A86B962E5B7E26AB6FB6F075E4FD72B1E8FC68056BBE96CD79856FD0E635DBADD8D180F864C928CFA89B768748125E57804A2E6D853E275C0FC669BD32886A7B2A82B0EAA4716D19F5BCFD1D7FF6271DDDDD6B90F3D7AC387BE5DB5435939724E208B7582A40BD5A33EF47EAC9E6F3FC577B38BD89204335813401C4428C691FE536073580699EA099F19FC314A176089D882344564E93D4DC9B4E8A38E39CF3D72CEB9D3DFB1D8A925DFBBE0F7CF8ED192D7B8A841E07410098E7C10CEF64B1604A137F1DABF9D98E9CD760DA3FB981109813930610F61DD54A99DB024641194DF3785391CFB1CAE32F0BD52B03F8AC32A3220473EE090DFA169D734EF7FC19F32FD4F26D6B9056D62EE85FBE4AC66A660ADFBCA73035891454E780A06640476727AF8986E1E5FE46C20CAB931C90904B6182AC964AA01B3A3FAF66B21ED797DF4F9A3C473881BC8A75AAB20D11CC494A7611914F5004CEA8E7BCB7BDE3FC7CFB8CB5B2AAAC59BEF0ACFF25CB725BAD568132FEE0A989715EE272718AD75C464939A41E15F99F81512997A13835E1D46C4E070E2581152BD81E922969C7E5B404282B0A0715630D7E4C434063A7AA4841D54A85BF57B52CA8A809A2BB1A903309E22E3EDAA07AC9A85576E8069D8D9AB0E284A44356AD5EBD24DF31FFC2A9F1A12BCF3A6FED9BA994E92D94A68094D1C7611C2E314F276328B25C41953550D0B467666F9D1085091DF163A6D03A24DC99615048C44C49309BCC1C77BEA398081E11D42E8220832423973337165F25CBAB612E2E1372B13889C7354E39B66D61A09591069947A4A00D4047015F33AE2AA5716FF5FA70B55ADE8FC5EC27526695748C327A0DC158B2E2AC07D54CDBF26CAEA7BB529C443F39AB62F1CA956A6508A5984314F212773D08546BBA84C2CBA9AA8C3C9C85BACE6A60CD0A96DCDA6D588199E104618675DEE66DC339369C60CBA5138E266282DFCB40AF2366353CAE2358B45EADC860D4B4DEBEF9593308343F57A996A154984437B9666A9FE595B1485DD3725C6BC200D16BD57DD56A699C5265194899B3C8094D144AF94BEA5499572C5739C733CA61B5931D037B6F196676CE4C0B10389605B6690A749030F696ACF23B92C40A83543901651D354AA206C607A38AA24C298A54956505EDAB96C7BAD38DC162D606AA5428C0E4D8B0A559E639459177D631CA34405D4688361F8E350A71698AD744CB9D24B65F492CA1F357F31CBF871CA752372A2FFBC38A82BC8E80C1CCAA5E9F0915DF4D46BD2E131846559E9015A98C41272844CED6D0C72E158ADD956A7D4926DB362D1810811EDD93522B06DC410308884058200071403BC14840F3888069BCA22050737403E6D4AAEC3E9DEF46AD3C064AA61B6A95D6840D1E132516CCFCFA88FB136806096886434DC4A993D34245AD7CDA2CAFB9A749829A9F21F184EDFD2FD6B588DB5BD30C9B921C2048F4971C57D51028332918C4AE68F69E56D8E107CE11490386DF5E38DFED0041ACC2BB5475A2598A387F3431207685329D12D250A0F1AEB96FC46BC4206935C3D50ADB603B9A2182E01C4F73FB084D78AB63C848E3AC6A2818127F80ED25A615B6DFA108A4F153DB0C4F6D7355D9B112E21790E328F9889A6D972995DDB06DA12409026B2C6C8FB849983F4182D7A4346010512B441040F09E88603F48CB026D0D4BEA561D4213DB0E62098AD18808466261FBF5C9774D821668CAD18A800678358334ADF774BA9521A8C5B65650D2DCC58DF0453D063C85B0A3AE39A9AF7406DC356AA2BBE45281AB19C4934615E22BBD0E7ABD6CB5518825A25C6066AF18CA35979A295130AC57426922AC0CF06A7262AA22AE4648224D25147648A0E1B946D26986D75F75A26C225813E2F5AAA80F766AD430E02D212856DBB14F8B6422945969960A71DF7476CF80A19122144BE5A07D73DC53EA302D8D4B53BC4C82CD881068D36BE0A5756F009E220227E0736B45E222AEC174692ADC883321BEF2AB5F341506CF7FC92C432B83222B4070E7995B49E6E7792704764DCDC07B2F7D373CF1E3E79B3A1D4EE011433B24A75211A782A511369006F59FA4F5A6FCC65B34E802977A02241AACD2715982F77FC2BD5EAB411F0AFC829C0AD5BA0E3F2B8EC1B0AE7B05274B411B2450939DA84F62C489CF6634137634480D52A62465D027A4077D5A22B88FAEF30CB60568C548B3A7CD5755B8A6B387EF6CBB7D4482872646A12A0A340AE440141D59AAD08A4EAD44A34D25A984DDC0E2B31723C2B59562598C805634D08C1014FC3541C6135F9A390766CADEF6CA0EA4A17F997D0AAC9BBFC401826D37F5F4C20FE72D820F7674FB54CE575E0A5ECFCF558D58D90131A095AC9DF87729E27C936BE2F3A496682A542B5C103CE9F4C033DC0E06DD28FC77E5DBE10328D4B3B51CECAFD7A086D5FB307A5C4F1726E1BC6C0E2E6DEB0C3C8281B70469EBCBB3E6C24BE512ECAC55AC8E0BD18942B0A84AAC47B1F48309548A008F84C6E311F92612EB5A229A22D169324F60481A24C0ECFB1FEBEB87054841F6F6A3A909388440D85B1DA5F50DA4230D6FCFA0D26AF8C036A48B2ED4986E7CED4430FBF1F30C0CB3A70685282E70292A811167B596E32105C048266CC1A69028A9A6F0A6042BE83D140223D2100DF7DC57460EC327BA67C239A8156C7B336AC2281AE6114387ADD50AE4B146F6A0D0996D285103C60D0AC5BA019368D40BB8D784FE4C54ECD2134869D889426FF1E37853547402520A1B80344C9593D48D4B24CC94438866441480BAFCB0AE3805CF970AF03EA4A27FECED438153C8A1F06758B7E6F1F8FDED5D0D8BF33787F7B9D688068D240F2405AA729D8C1801A0643E53CC4D250702225D7CC72E492D250AC3DD47AFA174136D0D62235EBB1F9D1A87D7AA6518AC55F9FBB479281AD197CA6D7B71BDD038895C3BB5462C9A4A2BEC068E56436722114D0512B31EFA22119E77784A637B35D8B4B907E38BEBB0E62BF82C159FA3E26BCEB21BEDB8B711591066D09B72227CC7D1086A472333CE2C06EB2CC41C0649220D059AE41A89130C26A5296F141812A1B7D8B8C48CFB1DB3FAA062D98C32DA8C49B42763B84FA0CDA850C3F90AC3EE7213083188279FE6361793A65E15773BA93F859E5CD8D1D72CC853057D21094BD180FB2372324DED14CC8BD2589F49E4F0B9BE223E811E98F3C808F71320C28837F1AAF827AC963E42486A6137688332BFA5159BD1288C0F6B748AE7C8B5DA746104854AC1136839F42AB8B70DED06719B6B0921E985DD20A4200DF2214AD328C3FF83448AF2A5D749A456C483C3B619E26F2042BB89C67B81BAC9471A5A75046DF01B7080C676C3BA245934451AA840AC66567F48263441A46C5C0AA3290281EE200DA23E1AB35DDCB619519B8E087CF2C87EC1B5A511C9BE0803DE24DE10EF77521629841D9D9AB2FE9752A64348832834D03E1E720F9DC6D63CD9C3E361AE2D750D759876348937988C0C7F044EC205DAB00936F236E2786DA935C35FA388CF9FF7A4D823F3BECD371D396800A98A45E2A61167BB145A7483D2D0FC90DB65C8A71D7134436857F1D7DE24C28EBC46A061B018AFAB8EDF89252422BD0ED04A1791C3461DFE7DFC28776D599E8A0DADAC53EA8CEB564018F21BE2DADA238BC05737E26A06F1372E251576B4E23860881D0093B7671088F40EC2628F565C5B1657DCD6C066B0EDAA037B9CDC54B3B60CF06806C4B219C46AB86A45D8D19E9AAD7929DA33C2D2500197DB973C0C37E0F134E3779512DC327C187660743E85419E2E089C69C837C647E0B56AC94D79F900A12109657F1A82881D28C2F221C46DCF086BAF20D3D2CE9192A6482320A2F4C157697B7B67C3657F7105140A93502E9BC3CDCA9532BE16A154C2F7E522544AF8BE5CE62D7ADF991CE369109612C9207F6788995E3F50AFF9288904F255628704BF661091BA43030E4B334203AA06962F69CB1F69C1B5F5F69322425C4102B92BFFD6D6DE01ABCF5D05194D05990DEF95CD2161515AC4DAC06BB53A54ABB8A331AF56D95EB5F61A542A55A8E3F58ECEB648AA22BEA42111ED41032E6120186189BC34CDAC019993E968CF084F9D135F61A20A54AEE8B0EEFFBD6A0D1D73879059C3C1CC6E3112B823A3580F10DE4B840147CCF1D91C44898D28E260AAD91CEC1AD80F6C6C5154A01AF0A87C863CCC88BBD95AD292B0935D4B942824E11C1C128724F1A5CC99700CA88A13AC18D1E3F9627544235EF7D5E351F90C79B40B4F22DA325A11B6AF32B444534D0342E2CD969EC04D745F09888379C4AC6B789B82A7AB6A0BC28ECCCF11570353B9B624C233015FF22D995E1C533440ECF4E8ED9C4D3C59023F55D91E61D0F56CDE04DBB099D5E7EDA4EF1D12517D4813D9D313A8195EBBE1A52DF0698BFFE786F70C4926EC80BE04C6574E0B4D91C429F6F839F1690283F83D2A1F2D116F26D8336B51048525157620D14EE2A58712B9B624BA8D2590623F215A41A9E0BE12A11FB02F56884CA7134FF09A56D8910E5013364F9042279135A395B17CA7CEEF83B3569E0ECB962C82EEAE0ED8B27D176CDDB60B5EFACD6B186F249B1093527F60E7D67631D82311A90BE21F5CD9F07737107648744CA6C5B56D1204C6082C4369485114F8DF575E0AEF7FEFBB60FBF66DF0FAEBAFC3AEED6370C61967C09F5F72211C1D1983AFDC712F0CECDE97AC5C1ECDF06673BD9A11E4553BFEF018D814C26E78AD816B2BC59279A8AD489FA3551188DBBE74239C8F91F9273EF17178FCF1C7A1ADAD0D56AD5A85C06C874F7FFAD3F0EA8697E1FEBB6F83B7AE7E53C27A12A205BE3488D7CD249E08DC33BE43F2F6950DCB5335BA16D95F37759C11731C5B12A6BAEA8A4B31F236E0F39FFF3C7CF18B5F84A54BDD892C2FB8E002B8FAEAABE1BEFBEE83BBBFFA55B8F9D31F87ABAFFD0C4C4E1512C43FC44355E208136FAC11927F222143E5226D2869625FC3F94D863459DB44B415CF782F987F0A5CF66717C11D77DC01B7DE7AAB0384FED4D350F9F2ADA6E6A82A7CEA539F82F1F171D8BB67375CF7E10FC676C95C2084F115215A10D61ACD62316FCD961AD6FA34595D73408ED41A188D5BC8E253D65B569F0DEBD7AF87F3CE3B0F4E3DF5547EAEF6DDEF032D9600CA65A8FFF029A0D6D0B01B6FBC111E78E001B8F0ED6F4B64CAC26828D2A30A69C26C55D84D53E8526ACD20CD5DB50401F8E2FE5361D3A64D1C0CDE4EF1ED4740FFE973406B667A9CEED90BD59B3FC78FBBBBBB79B6B6BD2D0FBDB366C40A5588D80A49BCF14398471565C05B6FCB901A5C8369A6A9A62990F0286EE18279B063C70E38EDB4D34CAD78E659C8DC7C0390AC396D94FAC9EBC01818047A74D8A4B5050BE0C08103B064D1C2D881A3D82D27E851F96C8977B0A239B35CAC5A2FA51E3C03D39928244D0D7C3424A36313306BD62C3872E4082C5AB408084B83E32E9DFD2620A7F4016563F7D888266B0CDFD0D010F4F4F4C0F0C8684C3A8DD08210734C427C462AA4DF1BC47CD0AC9935B2D5B341059EB6D9F6E27A53BB06F6C0F2E5CBE18D37DE303D8BCBDF07B507BF09A43D0FD259ABA0FEAD6F8374C60A207366F3EB9393939045AD491A6F34D48208F796D77688392CAC61AD27A173ADF3E600237AC4E9715CCCC42CC0568CB02FBCF04278ECB1C7F8D4DACA7BDE0DD2B2A550FED827A17CE55F013D7808D4BFBD8EDFCBE20FE6EA6EDD3EC0EF8DF50D11811D2110D0187F1D9562089BC410B63D13A961CD4EEA3D4F2327B56F198CA441DF8BBFDE009385325C7CF1C570CF3DF7006435503FFE31C8FEF77720F7C84390F9DCCD20CD33EDCA934F3E091FFAD087E0DE07FE33816B1B52F323698A047A04DAA04509DB88296C77D501F09CE34018A90D384D0F4DC8475961EEB9FF5B70C5155782A66970FDF5D7C3D6AD5B81B2A1BEED6D3CB678F8E187E1F6DB6F875B6EB9057EF4F47AD8B4797B8A0AE24FF547D1947B5EE782859685EDCC546AD8E7BC6B79E8119A71425609D8B7FF207CE12B77C267FEEE63F027870EC0238F3C023B77EEE4D798B1666EEFBFFDDBFDF0FDC79F82FFF8D6F712D92D6FAADCDF8B2F8AA6CCECAD3D4ED0F08D370F1DF013E8784D23CE8B8F7156A33979C060DBE6AD3BE0FABFFF32FC9FBF7C1F5CFDD71F8185A79EC23B1F8C8D4FC096AD3BE1A62FDE0E1B5F7B23D5A221819A1FA1BB7E9AE253C8386B712413B629641A0182F78C914633C4071D8B05688A18753FF0CDEFF0C2691915DA91A60E1F39EA4C469CD6AD0BD2549411F70164D18961D096841D357D3B6D42FDA934834E7F031DEFDC26CE9093AA5C06F565F749687636CA88DB33F788424F276C8192C2E8CD68A93D8306BEE464DCC25D569FE843A7D024CE4F0BB89E3485B023907226B837474749AE29311F96DEB53D0931A1FEE8D74F4724B2FDC7EC2962D89E8FA965D468E425F9969B13BC2767C503C11B335F75284E301A06B272E54AD9494D5A05965AA6257A722114705F43CCB6BF9720112BBBD3892EB8B69F57D83420ECF020D0756BC7478FC2C4F8083B4F4AA592367FFE7C556C7B680C06A511C44903FF9F3C8A14147CA4CDF0D91527AE0813B6D15CD84648246EC719955281E7E3582F4ABC2697CBE576F41EB5FEFE7ED92A1F9112099136C7EDC41B8D60722F4E67008BBB89683722854D83C276023B2318181A7A0D8E0C1D0542CD956D74C39050F69D8661640B858272EEB9E74A89BDA9069313B4BC653219E8EAEC804347865A321A044864CDF7B71307A2706A488E01A761F52FEABC7D898656D2C9B1513E448E80CEBFC7A0F53202D186FB54575717491067D068EB4103CE5E420054B8EAF24BE1DC7356C1A285F3790FF389C929D8B26D27FCE087CFC0AF5E7A3519169446B4B3043B328775B130C004831A34BE97146005EA61F65A650A8AE8B6E77259982C98C9CEE1237BBE87BF952F89373232020848B23883D278463CEEA8EF258B16C067FEEE5A281626E07BDFFD36CF4F552A1598397326AC5EBD1A6EF9874FC153CFFC1CEE7BF0213E2623B1C588A42A12180164BF350C90C3B2AA8D841DC51CBC8A1A351ED8B226808CAAC28451877AB5521C3B72F005A4A9AAA22875B41BFA860D1B8C04DE54549C413D51655CBBC19A506FFBF24DF0B3E79E81BBEEBA0B2EBFFC72F8FAD7BF0EDF7DF861B8F58ABF84CECE4EB8EEBAEBE0CC158BE1C6EBAF4D6537020A421A34303968303020224B2BD807031A240EED7368B4CB253ED3680EC130EA6598D7BF8C562BE56FE2F5897ABD5EC4D74A3E9F37EC584349EA024D87DDF8F847FE0AFEE7E73F87FDFBF7C3D7BEF635A0AFFC06E8A38F43E5D58D90EF68872B3E77339C7FFEF9F0852F7C01EEBDF75E4E63AFFCE6B731AD1A899ECD001ACFA86610FC3335243A794121DC93F4CBA35EE2037FB248C5CC0BC8B4B5C1D8F0A1DDA323433FC5AB63485353084875C78E1DBAFD2029964E507FCD0F6A0A8D39FA9E75E53C6D693FCFD4DE70C30D3C39A83FFB33A8DE7D1FE8CFFFD2B96FDEBC7970CD35D77030AEFF9BBF4EE7DC361C7D1A929FA27C4534A76647A7C485C0CE08C61980F4C4506776826905D03ABAB653D5BD833BBE82F4C41AF727108CF2AC59B3EA9652B41081D3F4F9A915CB97C20B2FBC00EF79CF7B389772412C5E04F25BCFE3ED19E2B676ED5AD8B87123F42F98C77B88C4038244C71A0DF2B77CB1BA98C2F60681E03B875C47280291E340D46B65C8E773307AF4D08FF1DA41AC7C23AAAA72ADD8B469932E8A4F8A6BB9C59A4F05446820386CBC2DEA3F15B66CD9022B56B86B0EAA1FFC006877FD1364EFBE0B484787E7FE850B17F2DE214B97F4B71E5A924828DCDC14341176A82D7183434DD6F922914C2B54454220F23072E4D0E1C3870E3C8A5A719469056EE5BEBE3E8F56C4F6A668581A39242A8FA321337ABAE0E8D1A3D0DBDB0BCF3EFB2CFCF6B73E5BC07A85DC79273FBCE4924BF87DAC87C8AC193DC9D221101DF845B9BF76D6D69F42A71146D26F4B5404A2ADAD1D342DC37B45160BE36C15E7FAC0CE2DFF8C1AC102A8B16AB55A6C6B6BAB310F8AFA72F24A2C3AA234667B477338F6EC3DC8BB74B236EE77BEF39DF08E9A0E3A46A7303C6AE696B379204857EA47AEE1F7339B71EDB5D7C2C0EE6FC748A187A042429B9442830DFF82BBE1863B3C1BCB96E3EC6ACF714A626E6CA55C8076D48ADD3BB7BE80F434883BB31593BAAE970F1F3EAC87094B8AEDD28A069CFA0C7B029BB173700FEFF6CFEC06FFF4C828A8EF7E27D4FFFB07507FEC092E519231E7BE4575E6BBA6656170CFFEB821788AB4BB0BA6DDEC1A6DB821344BDBDDA6F2058473390DD82A9ECC1EEEDFB767ECC0BEDDDFC2EB47711F43ED28767777D74DDC6932309ADA0CF0B7ED36D70EE6A29E7DF639B07BF76ED8BC79B379B2AB13B4FBEFE5BB7AD595CEBDACF7C8473FFA5178FE8597F8C2ED497CA9345D4FC5C6254AA30DB77FE2B18E1C815948A7A6F794831A5BBEB438650CEEDC723FDE3F84B66284ADA4E9776553352ED1B068D459A1D8A7454D42F02343C3F0F0F79F80CF7EF6B370D34D37C13FBEEB12E8FBAFEF02B0C953AC5E2C46A50C0F7DE31B7CFA8AF3CE7B0BFCDF6B3F337D795C126D4D5CE31DFFD91A4AB06F762FE4110896DE615371747675C1F6CD9B7E5728143659608C2318A5AEAEAE3A5214A51183DAA5243623A81DC15824CEF6C48F9F4313318976FA4EB8FDD72FC23F0F1D84A77B67C0CB2B96C1434487EB376EE0792A16F4DD79CF83303A361E3B91496241D238B31B1F640A737BBB50F89D5C2B34B4155934DE833BB71576EED8FC1FACEE2110A368CC0B61AE6C22CD884C7C505F4F89849D16982FFEA5DBEE82F7BFF7DDF0D5AFDE0D0303BBF8303216539C7EFAE970D9659741A15481BFBDE14BB06DC740C2B4EDF11BE0D9DB9D83B973E7728D60467B72628CF59AA7DBB66E79042F1F66011E82C05DD9458B16E9FBF6ED8BD48A78344523A270EACF4BC58F35787715E4E3479FF809FCE257AFC02A8CCA4F5FB618162C5A063B760EC2BF7EED3F61C3ABBF8352B972EC259A12BBF6AC0CFDFD0BB84630306AD50AF4A0FBFDFCFA7503632343BF66461B0D364B7B1431000C756513834123F23181C04FD09F24BFEFE0A123B0FFE061F8C94FD70BF38618DE6E31275927088CE560F1823EE8EC68E7402848A9D4A8036A4465D3EB1BFFDDA2A7616480C95AAD56C5A0558F534DA57834457D74447D469C7A17A83A516DE1A9414BB6E0E3FCB93DD0774A9F937BAAA2F764A0B7B7E977AF3D83970F59913637DAB367CFAEF923ED546084A53CC2620D7AB2D45E9A2E5F96649BD9A5C1E9CB97094940037ABABBE1D5DFBC72E8F0C1FDEB51E647D00D8FCC3FA5078386196E2F4D856ACC71ABD13EC780A49B5F3AEE273495C099E8F1B1A42503239BD580F5D7DEB279737DE386971E644030AD402022F34FA96D06853063ED0ADD7575E9C9D18D4A2CE731D0D4D317CD83B973E638DE53A138C5272943AD78D1CAC81E69967F3A263415746F1B4CD015D547F5B8B2576BDFB8606E27AC3C7385434F6C41C6193DDDF0E22F5F18D9B573DBD3CC9545404698D166F9277463F5A45F1A8FA6A897A6BC7623E851FDA1198F8EBC0AABDF7CB6D946E1D01381AD5BB6E92FFEF2F987191071F34FADD3944043C1B60CAF4775A2694A5C5E36769FAF268FEDE96CE3EDF62AA7A70C6FDBCE21202FBCF8CBD76BB5CA20DA0927FFC45CD946F9A796688A8A34E44F2587785427D6A92211D2A52DF90A6CB24AA61179A427158F3B3A3B60DDBA9F4F6D7EFDB52799D116F34FFEA6D4E9D30C1A6637A8AFD7A797AA5E7BE57958BCEC0CE89BBFD0EDBB8A3B9B6993EF351D6AF53ADF75D0A759338C906E5EB441D22D9E6EB07565999D60869B75271A1C18A4FFB3FE5906C4909D7F42200A495DD914E990B0C0CED70023DCC37A5AEB7A9D0FE395657337A7496553A212E7985D67F7F2796B6B753E972D0709DFD7D8628A35B6EB7C6EDB4AB59AB84AFB5D6F9A96A3C09C2A8F69868EE563037AD6AFFBD9AEF1F1F1CD69F24F2D80111ED851BF4117EE21408478C41E9265814989D35EC0BC119699D53409B938E3692B70D3DDEE2C372CC2ADD7752857AA085215016220E2319B8C984D408CC75934B06A468B2DE4B8CAC1E7D255156EB87FFCA39F947FF5E22F7EC034224DFE293D18212D797E8FCAA122DFCAB73606F6696AFF39A05057D811A197BB382370619802C958AB23536795E42A52C7E8E8304C40954F2A46C5C501210E6D35B119125B125B82FDFB0FD2679FFBC93A3C359436FF94CA80DB03385CBB217854915465CAD41D8A450510C240A1DE35FF08B1E6EE10E6F000EFC4BF94061396D4BFDA8DAFCF04F5F98434214FB1C776B4B7C3933F7AF2D0FEBD7B375A40A4CA3F25D60C0B08D6319704023B08A1AA10CDB0AF893465EED6807770E7947527DBB2894ECCDF59EB8A09003BDAE67C5E1266DE8C5002DA38F6A0D098A67EFADCBADABA679F798C6905F3A05880A7691A77655B31DA919A41CC8DAF35EB8CAAF1077662AD0FD30C714CB54853147CC37ADD7BC4DA4FFC6B793B334E506799062A2EF1436960DAD4D8D177CC2EAAA5E2A4F183C71E656D1443ADE69F626986AD0D6CE0067A042A229ECBD84B57850476619A41038BE052DF1F71EE23D49A5C825880388BBB07A73615354C4887B99010D1D8BB65126E0C961B020D3591DBCB2FBFB46DE4F0BE97ADE0AEA5FC535330885BA5A43D7BF664F03587AAC9060DC8611E150D8937A8DF6686688463BCC17CE570786A6770324571B0A218B750E18BCD05A582F3EAD2F8BE54E4569C1C1E1B3EB497F52B3A8A65E3F92768D2FF693A688ACC993347C52FCC3220D0659B8DA764BFB71466C445634D2008800731418B44432E529FBF5B0C885AE66B4F719C6BDF0CFF61BDE569C22EF4865E33460FEEE21A61E59F865ACD3FC5A129B274E95219554FC567E73188E9C202CC64C3AA023641A4200ADECE08342C236109950846DBD20E122913E2657C0F4D899A4185D9D72C4A230186F259741AC85D45D995F1A1BDBBAA95C20E0B8C212BD26E29FFD4100CDB852D97CB044160232F336C1426AAA3569E38F82F92AC2E9664A55792941992A274CA72268F05CAE1715665115646D388A4B986DE9ED25AA425515398D0F82B00F52CC6440520FC3D19A9376E1133028EADB2BC294A3C9AE43D0E61A80871568AE35363437B98561CB5F34F289758FD9FA6CDB565C39A10882ABE4E5143DF6E50E330D5AB6D75D418BC9CC5C265B00CAAF55985ADAFAE64B4198AA2B623366DF95CFE14D6A36E74E890ACA8AAA66A996C06FF65736D0A2162AD0E1A6BB79A8343776EB2527012A8B00096302FA11D41523F4D35ECDB4003B465183A1D3EB8EB352BF7E4E49F5853EA74BAB2013018BA4C3BB2D92C1D1E1EAEE5F3F9129E62BDC60CB41D053CCE3110F095197636A082BD66F0238A39F2892A7AADC276B5529A52511699C2F85195ED16604CDB5459567AB45CAE23A366DBD56C36AF69D91C6295CB2058F89A4520F14C1E952D436CFAF27B72E0EBB2EFBEB78CBF671290A06908CE5C4443D3ED93C307F6A3666CB36D859D7F1A1F1FAFB49A7F8AA3199471607F7F3FD30896EBD1B1006C0D3615DFABA8290A7B450F821978BE3320F095095AB68E550B240696669FB3EFD3F5BA529C9ACC14E844C6BAD7798E05988CEFF388480FEEED192D9B673BA293B3C192554553D5AC86C7B26B3F4C5112711EF426D41408505D85A4A8D5D5C2C8BE0DF876F858E49FE2D2141D1C1CD457AE5C5941FB5147404AEDEDED32D6088260A030752993C9B057A44D850120E179BEB3F716601C003C56AD57768EDD6B5F67E76DC06CBA532D20B8A6954BC54CA95850AD7B1CC0D833AC8034A3A8996E04AA03E9AF4DC920584A268FE2C9576BD5DCD4A4AAC8785261F96E2044F4E0FCEA12581916EFAB16473753A37EE858E59F1AA65D849404F1B932BCAE2138A452A930E3CE3446C242F1B1D29D9D9D0C0806144180B8F147AA63D7196032F2AB6C81252358EC331203D202C4018C09DA068C01629DB7A9D003986DA72CAA649FB5B5CCB25FFC19B2E99848ED08482702D38E7B4E96E43C3A221A7AEB59820E0AA0D74189ACB134A06E251CA15E1C2A8E1D7C0A9FB3179FB103CBB503CFEF6743BFD0689798ADA034ED445809C0084B1286F89AFEF72C62E79E18038CBD327018600C20F4C5F97B4BBB2441BB240B3045D02E0E9CA04136608A0F30FB9A0398789FF5CADF0B802A02600EBD9A9EA3DC4D24B50DD04D34F4CA11D0F52D787E37DEB70BF73D58DE23F87BA6502BAAD395F6480446B34C6EE336CFE68031B06C8D6280215892950E97D8B186E68181E5D3309B0E654687CC7E59768CD3A300840D18035A13295104CC06CDD23A0614ABF125464B789E59E87DF8F943C806138B172F2E5BB6E29869456230A619300F2D323A64AF8542816B92AD5D0CB430C0B0C62A16585CCB1848CC31F401C6BD3EDB09B1A95000846955C6D2221E6EE13E81E7584CC1D21F63F8FC12DAD2FAB1D68A6302468B80C5D22E66BFFC80D9368CBDB768D0D1300B209B063D1AC628CED22C06749D7991789DE59EA61838484FB5E94E7B9C54601C2FC098C36181C3016233D8F8016336CCD62A16F022C0F5B6B6B62AEB5C80F144FD7801715283713CEC9708180309C1A0484B068266D851363D8E02FABD05E3180006C1B0E3F80AE7FF032146B34AA6EBB12B0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (158,1,'UPS_(24)',0x89504E470D0A1A0A0000000D4948445200000012000000180806000000F755AD310000000473424954080808087C08648800000009704859730000020000000200017E7ED3E30000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000003D149444154388D7D94CD6F155518879FF73D33733F5A5A0AC82D4A11028518501235A23161A9266E8C8DAE74ED4EB7AEFD0F4C5CBB3126C4104DD0C48F1863890AA85117902A180A1A4AF8B2B4A5F7CE9C39735E1733F75230F14C66716692E7FC3ECE396266FCDF38FCE4338FA7CEED0AE65AA10A9D50C576E5435986F21AE697566E5EBDB8BCBC7C5BEE073D72E4C8D6877B3B9F8F81E7507D565CB6AF0C81B22CC9738F2F0ACA10F065C062B96855E85BBEFA5A02B077FFA13997242F773BE38F4E76276706FD42CA2AC6683153B4AAA2B910025534D439C2A0B850951E97766645538AE24E4C0048C7DFEC4C4C1E6D670959ABCDA028C8F392BC2888D1B0AAA89C73B7CC6C75D05F6BB5C7B6CC265917001101200150A7385544957B8C36134D52174DB7236C4F34BD9A6529228220884018814470CEA1AAACADDCE0FAE50B64A6EC03AEEFDA43E195288299E112A595652082348AD6B314AD971454155521FA82D9D5350EF5D7981381FE3ACE2989730038E7C8B2945696D2CA32B22C25831AE4A4868828A68E9383757C34CE1639628688E09206A48E6C086860A40D08B9AB68381211F6A61915D264588312A7B4B2B486B56A2064754682A05ABFBD1D3B997E718EB53CE7D8FA3A2D4D0921E29C6EB09621326C4C4847612BA3160A5FE1BDE7816DDBF8E3C62A6681F1F116AE69565518B5D6044EC65051AD8A664FBCF5C6EB1C54F8F8C2253EFCE85354B4B6EE74D45A2DA65E3C1B2AA2A1357C36B7DB6C51616A72535D2AD420A9DB1B2A323386272CD9B0EF6838BCF7C1710E1FDACF175F7FD774512B12152A8BF8B21A410CC38F14C586D6106FDCFC87CFBE9C27CF8B61A9A8082A420815B92F6B88196BCBD709DE7793BB9CFA0178E5A517383AD9E5FD5F17F8E6E4E93A54ADC30DA1DC9C17013323784F590CFCEF67CFFEAC0066118BC6D0F0C1DD3B690D729E7EE2B1FAC88DCE9510424C8AA2C41781B18E5295FE5DA01A81A20DF5189F7F7B8A4B69C6F1135FD5D66C58AD5045235491AD535D5289D7CE9C9A7FDBCC6C642DC6461570E6B773CC9FFE85BC281AF4BD97DFC4789BD9DD0FC5139F1C9B33B3386A8D2A12636430E83331B999344D00215AC4FBB2866D601D3CB087F3E7CFCD2F2C2C9C1A7E4B6A8E491523657E87DEF43463DD0E3B7AF52EF6BEE4F2E58B34350170F1CFF3CB677E38F9EA500D40323333D371AD09EDAF70DBACECDC595D71A97349BBD326C6485555085A676860A1AC7EFAF1FB779696966E6DB42B565F13DAEBF53ACEB91933EBA5697AA033B6697F96B6675C9A4CFB1076A8A6E3BEACBAF9FAEA5F6AC5538B8B8BF97F40A3C9F0026EA6DC3B746A6AEAC14EA76357AE5CF9FBBE7FFC0BA9AFD6D0A24887680000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (159,1,'UPS_(48)',0x89504E470D0A1A0A0000000D49484452000000250000003008060000009685B32B0000000473424954080808087C086488000000097048597300000400000004000119239A6B0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000009D64944415458C3CD595B8F1C4715FE4E55F5652EEBDDB5633BCEC6B78DED8DE38DE56063611282132982272484FC06124F28120FFC02F80179485EE0012410F08202080102144884431411881DEC38F1C69B5DAF2F6BAFD7BB6B6FF63697EEAA7378E89E9EEEB9D84E78A1A551D7F4CC547DF59DEF7CA7AA864404FF6F97F95F3B181F1FAF5686B7BF605470C00997845DC840E0182133878E39649650D8051C73CD493CEF9817E0E49625B96DA28D79CFC3CCE4E4E452AB4FFAB44C11119D78F6F913E5CAC049ADFD6704F43429BD890570CE8199E19C8373C9DDE6DACE5A5816B073853ED946B7C4361711D7BF75E5CAE4850762EAA91327F63C34BCE38572A5F2CCD7BEF1CD2F2B63763303CC0210E01C03CE4188C0200094FD569C401C03CC205220B401B16B5E11E68636C1188CBFA3691BFDC377ECD8B1B2F286BF5A1D1A7C3A08C32F3DFAC881A7FCD0375A291000168099C1CCB08EF33C269F3B0B173BB038902628521007C0391084D936274538D45E692FF43D34353A3A3A6ECA432F6A6DC683B0BA2B0C3CB3BEB6E2D76AEB2111AD4108224CD639722CC4ECC0ECAC226D15092B52C4C203DAF865A5154408CC0EA43C100822AE611BB58F63E66DCA04071F4CE8C1E6E7602ADF559E0194817504E38508C352A28554134E00CB0ED602D6022236EDC0A1BE76372E952AD78DD16B5A9B266925365E2D35EB358F82CA3645E6B0EAC10C2562ED9D7D4A25542BA5D2367DAA24D0DA78E485BBAC08AC03E0188007C7A805CA2BB7C726E4DB2D505E2F50440452042282520A9F12134004A508CE15335A2905AD5502A000A4B3DD07944A3B26A2742A028100C80DD4CF450850A4E0C04550A4A0B54E86A75C4A5077E80AA0548B2922501A42A264F4C6C65DAC2CDF4D80A65D0A019064963B1EDD85B9F9E51CC384BCFF91A11454028072CCB6582210E07B7DC2977FA5CF9B8D26A62F7D886DC660C15A6C3306DFDFBC0D37ADC52BCB8B786CDFBE941180522DBA1C284D0A46EB8C4DEAD0548EC00E504A6760DA22972C3BBE37F41036698D9FADDCC5C972150D116CD11A2F9407D014CE42A29402290530E745D5A12914F545F7A87D05961401A2B2D9FD7C75195F08CB50000E0721BE5E1D0400CC5B8B0B2C6DA1A7932A0CA2124DE50114F4953EF4EFADA94457D22A0902ACB0C35F6B6B00808FA3267EBFBE0A00B86963701A2A4549A6292AEA4A2955D054DE9BF259D89BA91C304504966C2AC5029AE6642B115BA092044958CE5B03515EE86D4D65ED16695E97A65A80F28C213774FB0A89B0D3F8A82A852B718485967E280596328DD41A944E34D5CB068A19E9F728C839301928C9CD2CBD666D8CAA22344570A1D9C86A6AE6714A15AA8152ADEC2B82EAB2867EE14B20A4824CA97A6C6C0C4F1E1E877516B18DE1228B1FD6D6218D26C2F0104A954DC0AD4FDA1ED74A945CF9D2A92510515F6BE85966909A78DBA7125B58585C85B50ECE5958EB9257DA16690058C93A685583166BCC02457950E8630D7D99A276DC7B143EB96F9D41E67394E9CA65B5AF970DE49FB53CC1F4AA5F6D5AA90BC09387C6B06578087F7FEB1D58EBBA0B72CE525A032BA50BB5AFBFD0FB84AF1DC66EA65EFCF629849E46D9F370F4F001FCF897BFC3ADF9855CE145B6CA48EE6D56DA6586FA5B43CE338B3ED5272C8FEDDD85814A09CF6DDB8E635333D8B56B279E7FE67817CDD491C1ADDAA775C296D1EDB64EDB266DFBBDB75894CE84BA98DAF9E80E1863E0CEBC072885916684816AD819BDAEA29E2CFEBA6B5FBE7FEAB774E925E0FC57DF3DFB3EF6EDDE8EF8E018FC9535BC79ED2A26A6AEA36FEDCCB186B4CC24C69FAECE246DE5EE0FB619CDA1AAD5EB387B610AF1C15194C200576797F0CEBBE770CFA54FFA126658CBEDD2D40227392A4410F50225ED5FF4BCCE9EFB00FF3A731EC20E51946C268A444BD77A8C003827B0CEA5FDE7192A82EBCD94F4AE759DD165EEBF1E6E870DD9929A25D91F4A1B55BAC06EB76B2B77C00D17109132FDC6EE8C73E7AEA7DFC681A85DAE5AEF1D3359CB1D216B035A5FFD04F5F565349BEB43478F1ED51DE1CBA6D053809F3B328E234F8CA212F898B9B988DFFCE13544515CC8BE94A20C1C81E09C9856A83BF5144711221BC1D9A85EABD53EBE7CF9B253DDE1936CFF92BF02DFC7F12307F015CFC3C94B53D83DF2109E7DFA78CFDCA0422105849DB62E11BB752EBD7372068118D5D0471C45AF944AA54FD05EEFB699928CA922ACCF1F7D12BEE76166CB3026477660FFFEFD181B1DE9F2A916907C182D4B1720EB1C08169B0737218EEA330BB7AEFF746666665D4472A0384BBF145C312B666FCCC3F77D3C7E6B018FD71BF05756B1BADEE8E32254782F9C645F022601A4C078E4E16D6017C55313E7BFA3B59E1711D76D09D206D39985D7666F6275BD8EF736D6E097022CDF9EC79B6F9FB987BD65A2028B14329600ECDDB91D816F30F9E1955F4751F4D1D2D252A3CB1238039503D731D84F7EF15B1CD83F8AED5BB7E0F43FFE8C8D7AFD7EFBF89E4F773DB21923233B70696262E1FAD5CB2F0F0D0DDD595C5C64F433CF365B92EAAAD8F1C4A5295CF8F0A3EE654B87BDF52BEC5B062B3872F8092C2D2CB87367DEFE01115D9B9E9E8E0B96933B562B00CA80DDEBEAF179CE51BA2EDFD7F8E2F1C3D85429E183F7CFBF55ABD5DEBC79F3E68A88704F50DCC192F0673C3596FEB0F6ED1EC1E8DEDD989A9A5E3D7FEEDF2F45513427ED03AEDE65A693A5D9AB533838FE14B436C91E8219F56684463342D48C104511ACB56846319C73686D13DB788AC006AA65341B3579EDB53FFE88882696969636EE77644D79409C6A4A24292BBEE7C1F30C0606082EDDE769A50008E2D8A256AB63E1F65C31413AC82A05015E7FFD8D8BCB77EEFC4929B5D819B642F8884889B02F2C59FAB6BE2FC2D9A12B33832801A3D3D33E4E27A174B261E8AAFC3960E7CFFFE7EE1B7FFBCBCBD6DACB376EDC68F6538022221A1B1BAB80DDC39C31C599AF3027FA6266B81C30A2E4845898D36D7BFA3033DDE2519B8DEAF185F3EFBEEA9C3BBB75EBD6E57E2C01803975EA943A7DFAF4401094275C5CFF556CBC9186E70D7B415871CE0EAFDC5D44580AC372A9EA97AA159DDFF94A8B55668808082AB31291BCE881E5DBD72ED8A8F1461004372E5EBC18DFCFDD68CF9E3DC1C6C6C69052AA1C0441C8CC55661E524A5545A42A22034434688CBF332885DB83B0B2D90FFC4D9E1F568D3665D22654A4838DDA7A5819D862ACB588E218CD2846D48C609B6B2BF595F9979452AFCECECE5E6D9593BE4C4962460D22BADDF2BC43870E99E5E565E3FBBED76C368DB5D638E78CEFB3712EF6EA1BEBA1736E90990795520300AA002A2232A0B5D9AE8DBF436BB359941E14A892C41B93CEB97F465174FB7E80EEFBDF0C51CFF3610240FBF6ED334110786B6B6B5E1445C65A6B7CDF37CE39638CF100949C73C300CA44B44E441373737377EFA5A5CFFC87D1038006003A79F2A49A9E9EF62A958A595B5B73737373CD07610900FE0BE7125494E334C5F60000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (160,1,'UPS_(64)',0x89504E470D0A1A0A0000000D4948445200000031000000400806000000B3E29F780000000473424954080808087C08648800000009704859730000055500000555012519CBBD0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000F1D4944415468DED55B598C1CD7753DF7BDDABA7B7A366EC34D22450E458B64A480D41281946831900C07319038CE02C4BFF9887F92EF7C04C887BF12208881C81FF90902C4892C5A90130154EC885A1C39A1968892258EC42167E18C34332467E16CB5BD7BF35155DD55D5D5C319CA3090026AE655574FF7BDEF9E7BCEBDAFDE9088E0FFFB61FD2ABF6C7878D80DC3B04E54EB775DAB576B5D8B44BBB0940B210F801346E1820AEF4C6FDBB6EDDABBEFBE1B6DE673E9971D8953A74ED996DBF8AAD3E87B5A933E238CFB0C9B9A002E443C21E5B2002202C30C360C664EC6E9B561461C87AB109E13604620338A799605330066C0F1AC595F9E9C9C1C7DFF971689471E3B7D6CFBC0F673DA71CEECDC77E434696B880D8345C02CB04452430D9819300C23020290FC487E25132A200894B21A227290808300000568001287D758E9C8AAF7BF04E0DE9D387EFCF8E0D0DE43CFD69A3DA735A9A70E0D3F748CE348314B621C51621633008661490D4D5FCFEE8340A024029C382594DC2712B44022C2260E4700A969DB3BA401C4F17ABCA59C2022F5E86F7CF54C7FFFE0D34ECD3B73F491279FB014F51823103180082CC7011B864AA141D4866979C60140388631062202AD35400C66800CB71C84189F4DF429805DDA761FDA72629F3871EA507370C76FBAB5C653679FFBE653B6E3EC33518830081047313CCF0529021B496792C192CCA8310C2282D656C1116362C426821880948645AA9517947F23C78B71E88F93D20795E53EBC25763A70E4C4B3B6EBFCB1A5EC61BBD6D8B61E04E28711598A7CA756BBA395A5A2588825C2F2DA3AB1613286C930936103616188C44AA9180423261202108BF11CCB6E68E5282882308323064360594E2B3C1287336118CCB1D01165798FDC13C592E59D235DFF36690D210D280DA593D9725C2F9D75D39AEDE434309CFE4EAFCB8C17AC2DC3ABF780647D456BBAAD6DBDAA94361A64ADF94B7D86390A023FD076FD30C81E22BABBE10AAA3B9C92BCA2DCA940EA4BD2301194D630867A98D1130502206EE1C744D198883ED2CE18A4E4D0B629BBD71AF2464E804A4E1004F4E57C0040A40070F5AC2A8045412995238192D129B7B5A0A7368C04754623630BDC634448A088A088C015E24A2028A5A095423EC38BAC4685B174CB09A554CAD1ED53298288FA927248204520A500633AEF2A05450A4A2B146250E940F23317888D72A21D8D3C56E3600551148024898C0241116069012B807522520200CA81EF87C94CB73EAB024EA400456D38A5465331290AD7AA1B9C284BA852345AA10510053EDEFB9FB72A70AD71A256C73C040B20ECDD7F3FEE3FFC158C4D7C9118A4141425FA51662F52C97D9D194654D00DCAE7647ACD392754754E9420959BC1ECEB3D523860DB008001ADF1A7BDFD38BF732FBEDB1CC443C6606D75A94508ADA8AAE267E52DD32A496CA5557BAC4A63ADA0954EA2B0A113F9AA26FBF23CF541F05CBD891FEEB90FE7EA4D1C755C9CF26A78A6DE83D130C483B683BFD8B61385C91669C1891455C229CB89B2D12A353A19ABC2B84B62A3034A19BC5AF61061240A7039F05B7FEC5182E5798E3116192CB281381A992784761428858A14BE97A034A570A27C1A247F4DE8D00FD59D6255CEF87682E73F8544301185F8CB5B33B049C117C65ECBC64818C221429D08FDDA0284DB9C4E481C485988948230E72241AD59A6424697442FE7DDC68A5D911B2069CD5C867303C04862C8A0B2F07BCD3E04225861C6781440245F7EA4CA9F2676074B29E474A253E4AA44AF2BC52AE4E094CB8942242A046F9E63BCB0BC089144931902B1A983B65581F1F21397D7890A91AB506DA5EE12894C1A52570AE1ADAA400695853F68F6B7AE6FC411FE3E5C69013F51E47662979D5094E444194E7907CA02B8A1D8651EE4F502200895383677DC3231FEF9CE621266022211882EBEB5481628E805A9ACECD01DCA5C163D2AB050B7C4CEE5711B490988A4481BAD63CEC478A6DEC04ECB86027061753957A5661D694561993AA11455941D25A34B496E757542E5B097E943A9EC387C64188F3F7E126C0CC22842E08708421FDF5D59417467195110608DFB71B4A799A3581484B35C82140AC02E4A5D2ECDBBEB445EE4F210CC11FBF4E70B989CBA9D363F68516962641DE4F5C0D204B234E66E2D168C68E54539B989A075BB1ECAF70F1DFD04B51269138B672D86228894E4291D72ABA32B76771DB511F2CC840E2712954E9499BA94E265D1B336D2890205E5A09541A36B47211B77459D39914B6E4A9A26AD55C1F1A219C54A76438ACDD2205F3F6DB44878E0FE7DD8BD6B07AE5D9FC4C4D474F77EA254C6E4935B51B11EEA307A2BA578919B733351C1489EEBE23B7FF26D2C2FDEC2D2D2124E3F7602F3CB3EFEEEF97F44E7D2A8B46AA67234F2899A2FC5BBB25496F00ADDABD86ADDE83CFEE85BDFC0271FFD2F4E9F3E8DDF3FFA104E9C3881707511BFF3DBCF765B802BF4262D21CD4A715D2CC52B4BF3FC98D426123B579697320C02C1D0F63E0C1F3C83DA4B3F86595C42DFBEBDD8BD7B370E1FE9C3F9972F74924447C7982BE614914E9787F231A0E2F4171A02B5994850B71A2385D2E4E4041EDCBD07500A7AF81030338B63C78E61E1F6ADAA75828E5C401E4EA02EBD44BE19CAAE75473FB1C91580A272FA4180078F3E849F7D7819585B07CFDD04EDDD834B972EA16F7047974AA6221AE9A70A015AEB4A0728071BC93F12C897F29B5D372A1F6FFCD73BB875EB167EFE9561986FFD2E2E363CB8AE8B7FFA979736CC897646E42BE674455C9233D19CF4E46455BD3D66182388195B8C4485173F7DFD6DCCCCAF6168F71EFCE7EBAFE3C0C143B8F8F607F8F017231BE417B529BC1591E40900B3148C34D975CB19293806C3774FECCD2C935DF8C9EB78E5C26BB02C8DB5B51FC0B0E94A70445410BDFCF30A168611C0A48649CE0081E4C6E92B525C4BB43A8DDFFA2A5F10849B5A8F2D902AB5A322462889445A2BB7ED4E85567263C0C411A2C810119188C85D1EB214FFF89E9731F375502112E982B218E2143AED2496525492E91566CC7D3E01B7D6533F70E0804B44815565B7C8E66292DD771C07EBEBFEC6EF6B758AF94824D7CCA20D0B88B9033AC5A808E66FCF218A0288B6FBA2286A00080B4E70C193F687511787CE3DFD24BE76EE0CAE5FBB8A43871FC40FCEFF1B2EBEF9DFDD6341C53E216328634C8D7339518E7E360EFDB52487E2506E7D3EF61AA5CFD48AECC4EDF96F8551A41245679E7C140FECDB8E85AB9FE11C14E63EF9054E3F7A1C4F3CFAEB150E48E74271AEF167E61AB7182847A726632A461C476036E8EDA9A3DE685EF557EF5C06B00EA0BCDCCD3938951C2A79F2DC33A7D16834F09810F87BCFE3CC134F208E63FCE1377F6B83122C5F2DB59D61C3DA886CA80B2431FA7A9B0087E1E4F5913F574ACD4E4D4D859589DDA6B1148F228527A10060591AA3574770F2E4495CBE7913F19F7D0772E50A0E1E3C888989892EB9D3054E29D6D90804A59C4867D3D68CC1FE010887981AFFFC45221AADD56ACB5906A88E9C10E98C44094E716CB077DF7E2C2C2CE0D7AE5CC52317DFC2A930C2FCFC3CB6EF1CBABB6652F15596845ED9E4052F89081163E78E01347B6A585E5C9CF9626AF2FBAEEBCE8E8E8E469252D8A62251951413D37358BC398D07FA06D0F8C6D771677E01636363B8E357971C5DBBC6849DC09C46A204C1A1ED7DD8363080A5F97973FDEA477F454413D7AF5F5F1311EE5E766491902412DD68F65FCFBF82E1A3C7F1765F132FDC98C47B750F03DB76E3851FBDB2F94A86729A50D1B76CEFAF63FFBEBDF05C0B636357DFF27DFF521445F3C5F5A0722498DB91C8A84DAA5D89A2087FFDBD7FC0FEBD7BB07B68075E7DE37D8C4FDC48EA9AAD3E95AC28CFEA9E8DA3471E40A35EC3679F7E7AE7DA671FFF6D1445D3376FDE5C9752EBD8A113924642D29232E9E3A56B6F313E39856B631360B381F1BC09D9CC454211E1F8D183D8B17D1B1617E6E583777FFE7DCBB24695524B558F6055B562B71DC9CE7BAE12EFA158193EB81B871FB81F8D9A870F3FFAE0CAEDDB377FC2CC5F4C4D4D0552618CAA2A0025C74D724F2561B52BDD167DF266ED1868E2F1530FA3AFB789B189F1E09DB7DFFA9B388EC7FAFAFA56BACD872ACF581B46C5F36E9EC85D70DF85E43A8EFBF60F61C7B64108C778FDA7FFF1230023BDBDBD373FFEF8E358BA40C2AA9A95329C00C1F8E88738F6F06350A420E9EA5F1CC7F083084114220C228441008EA2EEF0EBE80D3A8F9AE7A2B7B707175E7D75FAC6E4D8CB4434393A3ABA9EA7D40D9D60E68A28A4F7D2ED3F96A56159567A6A18C329C74BBA0A916CC2F27D1FBE1F606D6D1D8BF3732D58B6A35DED89E779B87E7D2CFEF7975F7C1EC067711C2F9429B52B9C282909492AA0D4AAED45C0ADD792665D294A4F05AD085A116C4BA3E67968367BD0DFDF0BC7D25D8CEE842941E4C51FBEF016115D36C64CCFCECEFA72978D8A2A73E0E4C9931644DC4C1F0A4EA414C92C2D4732956D3F5F68AF7A67EF4BEAAEE4417B4BF94BF694AD7BF38D37A73EBCFCFE8BCC7CAD56ABDDE9BAABA5F8A489E8D8B163F6D4D4D400D86C13C9842EE74C0685D47849779949BAD32C732483A408E72298EEE9000A70920AB60AD797D73EBDF2FE7900576CDB9E191F1F0F6513DB452D00343737E7789EB753E2F5C5689D4638B606C572EAC29EA775DDCA76016486B108140B98042006B8DD727201729958528EE572999D7F5A2082DB3363EF80F90311199F9C9C5CDDACC458E932B9307328FEF28F4DB07249447AD7803A801A91DEA51D7748090D4D8F8FD8B6ED365CAF56B75DB7E63AAEE77A9EE7D57A6CC77128EBC2848B8E40A9569325E59E3D1DAF2C7CF1B9BF32FF9A526AA4BFBFFFD6ECEC6C2C9BDCB46B01907DFBF6854B4B4B334B4B4B772CCBFA546BEDC4716C5B9665294576E4AFD645A419476B3D003C66AE250E9207A0A6941A74DCDA905BAB0DB8B6DBB41DAFA16DBBAE2DAB46647951E8D7C3C0B7486995094602A9ACFD35D1C2CCF84522FAC4F7FD1B5353531B526A871322224414035801B07AF6EC595A5E5E26DFF7090056575715336BDBB6DD20081CDBB66D66B62DCBB28C3196D6DA06E0AEAD2ED7FDF5D55E2411AC33B347449E52CA03509BBD31DAD4DADE6D39CE0069BBA994DD10A026A01A47FE8C31E125A5D4678EE32CA6CFFAB7B027EC2E11A37633D0DABB72F6EC59E41D5D5A5AD28D46C35A5959718220701CC7B133072DCBB2E2387688C815911E11696AADEB69343D11B1896819C015221A999E9E5E14912D3971D7CDBD395CCA661D2D473308025A5B5BD3F57ADD5A5959717DDFB76DDBB6B5D6B688A8388E63DBB61777EDDAB53C3D3DCD5BADCAE857F5AF0754DCC25670D4F33C79EFBDF74C3A675B36E8FF0002456488371D4B9C0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (161,1,'UPS_(96)',0x89504E470D0A1A0A0000000D494844520000004A000000600806000000BAE7E4210000000473424954080808087C0864880000000970485973000008000000080001D799097B0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001A164944415478DAED7D6B901CD775DE77CEEDD73C766777092C9E340190024C428820826468CA7051154B8A44D99548A2ACB8E4971CA5123B557191215D54249754AAB0A252512E95634548C5091D9BB12295454996A31265C6244C8B1245841429102408010BEC72817D60DF3B8FEEBEF7E4C7F4CC74F7F4ECF42C00957EB859C399B9DB33D3FDF577BEF3BAB74122827FD8FA6FFC0F10E4DBAC9FE683BBFEFAEB0BE4793BCBC5E1AD8EE55600AE90E20AA02A10718C181190186304008C18311031C60869540DE9D5D09755A5EB2BBE60D5D76BF3B6D6972627276B831E0BFD3498DE2DB7DE7AC35879FC1DCA718F92E283C66084602A065C2156364420004404C698D4B3C088811881118118133D37C78D91F6FE80408C0944CC0A2093044C1831133032A175708E83DAEBE7CFBFFE9A88989F0AA06EBBEDB6A2ED8DFD6271A87894D93E6A3BEE5B41EC68AD618C8648131401DA27DC02220E90A480C8024AB48181C06801A8DF91098C0EE64C503BA583FABF9F3C77FA073F71D3BBFDAE5FB8A33272DDDD96ED1EDDBEE796BB6CCB1E3322F0FD203A210D628059258088AE2700895E110402224024F627024800210289697EA74853850D81B8097E4F888C5E16E39F63B2F6B057F90521E3FE4434EAAEBBEEDA551A1D7FA7E7967FDE52EAE8DE1B6F791300044180300C11043E0480652988A80E3B204D04DA27DE798624308BC1D67C6D4C18810C1033386221C1407A02145E1213CE105B07D82A1CBEE662BE77EF5E6FF79E5B7E717864E8A8EB78476F3870F856C5CAD5C6A05EABA1E1D701039062388E9330A3F8954EE09078D701250E8FD1065AEBE61EC4200240912665828BE8738DB362A4A12CE70059DEF66BEAF58EDC79F4C8C8D8756F77BCE2D1C377BCFD6D6EA1781D3341EB0041BD011F4D66B8AED7B4FF98E026CC0868FF3F3A6390484F3619D1088320324105CBB6727EB71813FAAF41C465DBDB07758DC283DB6EBB6D8757DAFE4EBBE81DB51DE7E8EE3D37EF57AA79151BD52A42BD0A6686E73A2896CB2971050406109300220E405B7792FEA6850E7CBF119925C1B2DD8498230D4AECBBC598BAE8FA69A3B1956DF7E6AB1E47BDF9CD6F76EA9A3F683BC5B77B85C2AD6E79FB2DB06C476B036934B0B6BC0C231A162B144A4528661031C2A08EF5F5554004DA08C4E8E61507D072F5884C4E0490886D908815AD7131F07D1FAC2CD8960DC7F512A181C4C14D8B3A0068BD1406F5F31AB487D9FD477C05E17526507BF61FBEDF73DD7FE214B7EEA8D88E4DC40C31561806D361E0BB20F28850703DCF73AC2260048D868191B0AD3DCD47ECB5245FC3888888B022CD4421116B4514B2455A118BD6A16B5B5C1CAA8CAAA0D180EFD7D168D4A3D82802CA008EE7814825744B87C1C5865F9B37C207989DB75C8DF4231328B69C776976DFD10804A109C0CC50CC6066302B301388184AD920A2A609B52F638EAD89131963481B30003BBD4BBDBA022282B7BC0EA5B0A294B56459AAAE94826D392E888695A546EAD51A0561001141505F9F6676570D596F023B3B98AE9E17DFD0F4889AA248A0A6AE1035C7A2D7B1F3BE36892833C0164223C3A191E14610020863AE2B3002CC2BA2051336AC86A61B5DDBCE9F9610659E33405DC0581B7D4913A01660910E34FD2F88704D3742E7C2F48C13D96602B61A60AB46701130B98148BB0B648CE7040A6D16B5D9D4FAAFFDFE5A6E12636E1ECE3208028E8EB71F10C9B7847E58650245CC6DD6103AA64629F31BF0BCAF8859FD7252664084A263CF0B04A577498FE663545B9BA22FA2F68306076A332011B77FAB1F50ADE3E28482F7018252AC030DC6286E7D19C5B42221E8DD40C9D517A9D845C967788662DA9A03088AEF94FA889582C6EA7D942D905A07DD3A808EF925D06F96CC22E595ABC4A8E485D9905544608A3C65178908DDD8658D01BDAE8AD51BA7B64025BD5F6B1849A4C2601D26A83723EC683F1640A159FA806AE66C222D2F26EDD70240D91682D046B55A8B0A651D36E5D129268270F3390F109401346D2A8E6AB3084913A41862C90A20A62E5CC0F4D4F99EEC6056509605A518C456F33529B0A5F0CE77BF1BE7A72EB7816AFD7E3C7EEB6BAA4889793F202843B8690031EF049A1D46B50E34610E5D8E6D83C29808B40E718B65E1A1CA16BC1106F883CB33588DB27D1DF8A0D4E793BFB531AB88188C38A30603A22BBEB273318A6366D70A053A029E4128085194B937B7B7154A980A7C9C0F03004045293C30B21577148AD8673BEDABFEC4FA1A9EA8AE369361A43C569B55FDC39156BC454CD92EBE276829E51A288E42925171F71B0F3C13A21D5DE9DBBC22EE2D57F0DEF2303EBF388F4B3AC073B52A8E78457C687824F13BFFAC5CC13B4A43787EB2DAAA17F588CE3B26D853A7286215F18640241D5F2F80A80B1A0BBDE38304A3E26CCA3A688A6284B7174B78FF500500F042A3861FD4AB008025A3F1E9CBB35D3F5566428515C4483255A1641CD52FC8E588D1C49413882CF6D0608C8AFBB4F8C1515CAFD2848A7EF8B30B73F8DBEA3A3E7EDD38DE1699D9D3D535ECB02C7CE2BAF1CC5FFB3FEBAB5D8C22202333404F56B5749563714B5E20F204CFD686A16E2AEA4D8A7B545EC9D89EAF57F19B9726D11041CD9824983D339C64ED1C225D42BE5192DC0A8839A33A97991C6744E171A9492363F50FF8E2616B325CE82673675B8A0AFEADED5218E2E1855918E936BD4E684FD9214AACDC43C84E928918E09844F403A24FC26CE74F61BABD4F9B51D4499825670AB3DDB2F01FC67A9B9EE98AE8A94BA332DD6D3C324737A37A560E52E3DD39611E318F1F549A5114BF3259972C7BF3457026686088154AC4F08860C54F5A5226459248C2912A1AA6758AA9196C26E2BB0D81A08DC772570FE261428C51898A42BA7EB401A356B5C1F1EA3AAA62E00B10884043508E1820598C02B72F5652D0BB758AA303EE540F06A91C50DF0B9DB35D4571D7D216D754C4B9E12F5D67297CA43296F9B7BF5A5B89BA2AD4B314DD89ED28BBA3C9519A948AA3BA7842FD2B0700E514734A69518A519932411B4F82980B43FCD9CA2286985120864B8402338659F5487FA4CBDCE2958CEE436E069B9DC8BC0F107D12666B10D3EBE66847B392072BED9E63AFCD63C66D5E01ABC6A02E0681000B5A63416B183467ADA067AE9723412680381647E5AE1CD046F5BAC14C2F4E78EAA1E3FD8CFCFBF52ADE150CE11DC5321CE27637FB9B6B2B980C7C1C4CC344C9A438AB261617744624E4CC392B07FDAA0976DEC25DA706950A9333FD8365DBF8A7EF7937EAF52A1AF506EAF53A1A8DE673BD5643BDD1C017D6D7F147EBEBD0F51AA411C0F83EA6FD3AA4D59A9264A81FAF7BB5218A494122858AD8C4448395557A746606EBEB7591349EFB25F71D1ED9825AC3805501857209E591A6B02A66B0A27603552986B2149462584A354FD8086CC7C237BFF5F7A9388A5225E18EF9F5AE9973BE1615F5CB0737A15194A959C96F5D59AD626979ADD34A17D39CA061522D7649B6DBFB750CBA841CD95EB76976A9E43D4F62DCA33363E5F17A94D1DF8BD5803323F3ABDF5B10705A97522CEBF27B892E4C9F1615F5CFFDF28B39658B7ADFE8ECAAF5F7D2AD32EAD4F05382DE314FCE0DC486DD9A816AE6599811A5F2816B375936191224199266341137A723326D0850EFB655DA3673B5AB1899ED678A571E073B69C77150AF370641295139E8887BB2CFD8F2941C8DA7E3A85E40E4EACCE41773425A100631BDEDDBC7F1EB1F7A1F7E76FF3EE83044AD11E0BBDF7B1E7FFA177F894623E86BA1D4B35596C178EE24C6B980A00CBF1E1BB3EC41342AC3FBE585E9E7EEB815BFFA817BF0A78F3E8AE79E2D61CB962DB878F122B66CD9822F3CF2693CF8079FC1DCFCE57EA44A3228CEAA2E458F33AA3F101BE6839B8ACCD34964569738B58D8D8EE0C3F7BE17C78E1DC3030F3C804AA100999B07EDDA8993274FE24B7FF1E7B8EFDF7E040F7DF2B3BD7F369A6F18AFF4A430E8F2CEC4AD9A39F507A26FE3A15B8C067142A9224CF6F62BEFBB078F3DF618EEBFFF7E542A159853AFC13FF6DF204B4B3878F0200E1F3E8CB0B18E8337EFEF2BE6F1390F598CEAC44D51E1AE55ECE366A8C051672631C6ADFD3835D62A16F21502953328B871DF0DB06D1BA3A3A3F0FFF08F10FEEDD30080C6FD0FC19C3B8FF7BCE73D3871E2040E1D3C90C3F462216E9A51D41D70E605227BAC339E3636DE2C2A1B793DDB228C8F8F03610873E205D8EF7D7773FC57DE0FFDD4713033B4D6B8E1FA5DFD3DDF468C8A79DF76529C062831D601A2B52F778D35D320DBDA2CA30608078C21CCCDCD0196051A1B056DDF0EF763BF0F33370F7ED38D101128A53039358D7E15D62E46517A9C3A853BCE604AD75812A0C47C8A76034810849B2AB3A49EFB8076766212B55A0DABABAB28FDDAAFA2FEE0C700C7018F6F85FAD0BDF89B279FC4A14387F08D27FE7E7046C5EB470910A919FDF59863DA9ADBDE7A972E7F49ACAE7605A5E0C152922F3FFED778E8BE7F85471E79040F3EF8208A5FF83C647D1D542AE1D5575FC533CF3C837B7EF97DF8E1CBA7FA2730716F47C91E1E75FD91720391386C49D5570548CC3EEE0B946C223D0330333B8FAFFDF593F88DDFF84D3CFCF0C3D8B56B17C6C7C771F6EC59B8AE8B8FFCCB8FE2C14F7CA6EF15A00C2D4A0B7A7B6F23CD7579463281488C25882348900DD78A513DB6FFFBF4B3F8F1B90BF8AD0FFF0BECDE318E959565FCDC5D3F8FE74EFC10FFE6F73E81B5F56A3EA2C6B42839AB26554E319D4549C91317F4B2AA78E14FFA24EDD77461E3B9F393F8F8A71F0120F05C17ABABEBEDDA54AECA01F710F444B5B2095CABEE6E62ADE874EF4F528808B2CCB38972186C1628D97C9DC018C17A1F06659A5E4A8BE26591348022ADF536920B886EF38CE958F3D3940328D3978A3F998D928050AC2A46C9025C6B5596E94C12DD10882C5D1208FC5A1596E3428C216A86E8CDC54D1BAB44F664C3CDAFD7968176CD126EA2EEEA061100031883CE4AAED60AF69876B556AD27C652A5EAB94B9330610040BC83070F5ACD88232BA9C9B0E5EEB1AB818BE408DE126DA0EE16794CE80D847A0321B19A7D1680CDD7ABCB8B585B5B83361AF55A75B856AB158E1C39A2FA6A945C3985DAC160B154C4EAEADAC028274D2F0958C2F48CA88EE9A52F85F4F57A3A68607171058A04C6888461C35E5F5F7799B90E800688A352A69803BB5D3BB7E3B77FFD83D8F3333BB1B2BC8C527918275EFC118EFDC96358595BCB6D7A99ADA7543151B438A69FD793B422754C656565055EC1C3CA5A8895C5D9D76A6BCB3F0600D775058058B90D439269403F9CEEBCE3ADF8B50FFE321E7DF47F606C6C0C3B76ECC0E4EB67601C1B5FFCFC7FC4C73EF5599C9D98EC9BC22427AFA52DB393FC6931360B36E5F5FCFA1A5829B816C3F73C2CCF4F3F4E44D542A1E09F3C79D26C607A31CF21597FDD7819C74865081FFEE02FE1D8B12FE2F71F7800C51FFE08E6B5D3A0436FC1E4CDFBF1C5FFF2C778E0DF7D14BF7BFF27FBC65499932D32BB2646F5F47AD2C5A3F685171D8004182A97A083060A5EF9F58B6F5CF81BCBB29644A48168512F6FCC7EC91673D9987EFFFC97DE85FFFDA52FE1BEFBEEC350A180C6439F40F0E89F0122D8BB772FEEB9E71E9C39FD2AEEBCFDAD1BD7CC13715377B130A5512C46B2BD9E486C4D73ECB602A2A1C8A0542E4191804437A626CF7C92882EB9AEBB7AD34D3705ADB3E35C1A2529C0FAE8FB4DFB6E401004181B1B032C0BEE23FF09D6BDEFEB98E59D77E295575EC1CFEEBFB17FE10EF97A7192E1FE25E5F5740A400B1AC552099EE7C0B61566672E7C4D6B7D3E0CC345634CE3A9A79E3212099DD52F0A8F5526DAB703913E0A353C54C2C8C8084E9D3A85D3A74F3707F75E0F59BA0CFAFAD771E8D0215896855D3BB76D7091A4476B29167426A27F20EDF5BACB2B9D3F39CA607878189EE720F4EB585C5EBC3877E9E2FF62E659006B13131341DC56AC3C071A373DC911542D2DAF6269690937DF7C336E7AE924646109585A026D1B87BAF31078DF3E68AD31F5C6C58DC589A84FE130CE2E89024E49796CE9228062C168A58C52A908A3038481AF4FBFF2F267945217832058DAB66D5B637E7E5E24E63637D6A8C8E44424C31C7B83F5FA8F27502814303B3B0B2A97C15BC620B52A78FF4D905A1DC78F1FC7E1C387F1CAAB6706AAAC6E348D47A49314B727836404A080606CB8804AA58282E7C1B1152E5C38775C6BFFD52008E69879FDE4C99361FAE438BFE9495BDC2573F162E7FD57FFEADB78FF07EEC5E73EF739541716806211EACE7F0C99BE8889E9693CF9E493D8B6F367F0FDE75FDC54F5396B8206A4598F92C49D38BA3F5B29D9D8BE6D1C439180CFCECC2C4E5F38FBDF9552172DCB5AD9B16347D0CAEFFA26C5265DF59394E92518D57D3A6B6BEBF893FFF915FCCEEFFC2EFEF8B13F873D338D6DDBB6616A6A0A954A051FF9ED8FE2A14F7DB64FC961D06CA07F51DF7314AEDFBD13E57211A235AA7EDDBCF2F289FF1A86E1541004970B8542EDC489135A32D6906C1C70B64C2F2EE2926F12FE0B2FBD824F7DE63FE3B73EFC01ECBF692FFC461D600BDF7FFE45FCEBDFFB38AAB5DA15A7CF940F9FA6E91070C3AE2D181D1986E3D8F0FD064E9F3EFD52BD56FB0111CD8C8E8EAEEEDEBD3B989A9A92C10A7792343D497BBE1CF9DFCCEC3C1E7EE40B304660DB166AB5E6525AC955B81BB0F5D367DBB17508BB77ED84E7BA088206DEB830B9FEEAC9178E31F3B4D67A0140221CC80954528BBAC11ABC6AD268F8035246AE9AD155CA0E6E3EF026944A451004F55A282F9CF8DE9799793208825911593F73E64CB8D18F728FBA5D971689C4CD2F1FA3AE42DDEE8A0B8796221C3AB00F95CA304AC5221CC7C60B2F9C9858B83C77DCB2AC8BB66D2F8D8F8FFBAD5465A0E6824448A53D9F24D3C0ABD9E1CA2C045F0D9C0FECDD89DDD7EF82E7B9D0418033E7CEF9279EFBEE3100534110CC03A845E1C0C61AD73B3C883327C528FC841875853FB17DEB300EBFE520CAE5121CDB8601F0EC33C7BF03E0BC52EA92E3382BFBF7EFF7B3C2815C40498F582ACEA86B0E9331ED806933D55522E0F0A103181A2AA3542CA25070F1BD67BF3B73E1C2B92744E48D5AADB600A0BE91806F9A51EDC720F6279B25935CD95709305619C650A904CB629C3B3B113EF5E4B71F05708199678C316BB7DF7E7B90F76B394F7B2A1EE576582578EE996FA358F4502E9750191EC2C8F0102A95210C0F97512E15E1153C58967D05F79A6A997C761A2A7D3E5B2C15502838B014E33B4F7CEB074110FC9899A7C3305CDAB16347FD2B5FF98A484E0DB17A5FCF1483E23A1545EDADFB5F2AC5504A351FD1EA04E6E6AA84567D28087574A3D230BA69698020081186217C3F801F0408FC0061EC9E9AF1B9043220690540B15884EBBAF8D6B7BFB37CEA951F7D5344A6822098039099CF0D0C9491CEBD68129E4E6295F35805346D96ADD7ED6935006C4BC1520A9EEB7696634413E8B5363046436B83506B2CCCCF63E17208264ECD1190BE45C37843C3712C4C4D4D9B6F7EE3AB7F09605229354D44CBDBB66DF367666672B329D3F48888440C255297582AD3320589164B7712D07442DACCD6E3F39298D05E8DC08925AFD27610143194A27EBA203DB922E7DD8444E03A0E1E7FFCABA76AEBEB27B5D653002E03E899CFE5068A9AB31F18002719D4610EE2E6488831280D9644377D900E304C31905AD3C4930E4280D89A16EAB8D81499244EF31E31D4F1A7FFAEF6BDEFFEDD37004C029849977737055404923A78F06041442C489C419DB8A9CD2D91F6DD3310635E1660406C9918276FF4D0FA4CBCCBD37D332FC9EC0AA55B69F1CDF76B8D6F7CFDF12744644A44DED05A2F3073EE702013A81648070E1C282C2E2E8E01E20962BA94D29ECE85A4C4DD59BB18D57E982E002403D84E6987006248777BA36766904EB31767265E5E5C5CF87F0026C3309C01B0D62F9FDBB8FA1099DBCE9D3B9DF9F9F96166DE0191424297E281669A6119DAD4EF61A43B2E8B03DDBE7548DBE63BF62FE83FA7696D69666E6D69F659005396654D5B96B59C279FEBEBF58E1C39C28B8B8B3611958C3195B0BE721C616D562B7B2B2B356C597631B49D8265396EC12B3AC2DCD69EFEA074EC3B716FDF2E06C622F0A85E2E71534FB5C8B367CF013A68844B3313CF029802301586E11C806A9E7C2E7778A0940AC330AC4A587BBAE1AFBFC4CC65009E8878003C638CC7AC2A96ED5EE7386E6964746CF7CCD459DF76DD82E37805CB760AAEEBBA5EA1E0785E91DB1E32233D429729C763368E18156353F764C2A40D4672B63477E1F5C0AFBD06608A992F32F3EABE7DFBFCE9E969912B48505B5D45DEB973A76B8C2989C8906DDB65009ED6DA65665B6BED1291474485083887886C11B189C8262207801301EA8A48D175BD2D8E5728BB9E57F6DC62D176DCA2EDB805DB753CDB765CDB765CD72B5A8896CAB6A6DE6863D068D4B1303F87D12DDBA07533BE6A3EA75F6B84D1986B2B3F68D482E5B9892F13D18B22F262100467CAE5F2C2C4C4849FF50F4E0CC42811112232D3D3D3FE9E3D7B8CEBBAF55AADB6A8B566638C0AC390B5D6966DDB8E52CA6166C7186331B3658CB144C422A236984AA98231C6ADD76BAEEF37ECD565B15A4012916B8CF1A2F72E5BD668D12B0EDB8E57B25DAF64594E51295510E262C3AF16EAEB6B162BDB4EDE8F4D325F8968595F9E7D8199A78C315344D4CEE7262626AE3887A7CE0A4A4AACD8BFFBEEBBB1BABA4AF57A9D1A8D0655AB55353A3ACA8D46837DDF57C61832C6B0D69AB5D6CA711C2B0C434729E528A56CADB5AD94B28C315604AC4D442E8002808288B8001C001611D9C6188788E260BA006C662E59B633AA945D66DB2912AB22912A805541843C801C1176B5BFF2467D6DE16B22F2B252EAA52008CE6DD9B265E9E4C993E195B229015446E0D9ABDA4A0070F7DD77D3EAEA2A0140BD5EA7F5F575F67D9F8786865410041C86211B63280C432522A4B5B61CC7B198D98900B599D98E58A98C3136333B00DC96891B63DCB4898B881399770B4C8B88486BBDC6CCE7009CD25A9F01303B333353CB536BDA3450FD6B3DBDEE6591D4BE382B01200DA6EFFB2D10D918C3C61865DBB6DD32F10850CB18A344C432C6D82DD601281091678C7122475435C6CC02B86059D6ECD6AD5BD74E9C3811CA55AA305E937F40877ADF0BAD2F98CBCBCB2A08021E1A1A5261187218861C0733D24B3BAE9722C24A293F088235CBB2562A95CADAD532B96B0AD4B504B3D16850BD5EE7389800605996A956ABE1E8E868D82AA1C8553C39FA69FE67E3728049597D36B90627F5FF018A3089B00C617BD10000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (162,1,'UPS_rackmountable_2D_(128)',0x89504E470D0A1A0A0000000D49484452000000800000001A08060000007FC354EE0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000D4A4944415468DED55B7B705C5519FFF6FDCE26BBC96E366D9AA40F9294A6AD34803348B1908EE320C2A8807F7498611CB5B6A0B45494F10138E31F8EFC238A828EA2CCE80CF8C03F1466144751B06542DB901652DAB43469BA4D9A4D76B3DB7D6777FDBE73EFB97BF6EEBDBB9BA42D782627E7DCF39D73EEBDE77BFDBE73EE1A8C4663DCE572C50D060350A62497562C9BF8B58A5651D66AD3EAB3DCB9F4CA52A9046212AF1BA98BD74BEDF37F76BF39AAF2EB4422D16440E69FDFB2654B87C9640231A360D4BC6EA46DA5F446FA502A168BEC8528539D5F37522EA5EF073DF672DF6F7878386C068D244A4F369B854824C2165DCCA47D57B2ADD13E9439F31BC92434369B8D65ABD5CA4A6ACFE57290CFE759D6AA8B7398CD66D8B46913F8FDAD156B266AACFABA91F6A5F669A41E0E876162E2ACB24E6249C95CCF24A5D369181B1BAB32E9EA7A3DFAE518A747D7135EAD36B7DB0D3E9FAF22534AA55270E9D2254826934A5D2CC58456930940642E063FF9E973E5FBA0568141FB19AE6492D6C2A0B9267B77EF6202A097CCF5FC91D7EB859D3B77AED8942FC7BC374ABF5CE673A9AEA45028A08024E5F5C2B6629E9544BF7AA9044603AE83D98A3593869218AAB4BF4200D0C4A562B158DEEFF75BD4E687523C1E87A3478FD605621F74D90898A2E47038D074FBA1A5A585E5E6E666D64E964ED478CADC1A700BC0E7210BB07BF7EE8A7BA02CC2C76FBB15B21FCDC178E654159B829E00CC242EEAB271B9747AA4A1D20E78E5B997211A4B33868B494B1869CD4878D1B559CCF86FE0CC99334FCDCDCDDDD5D7D7D7A6F669E4277B7A7A2AFC2FAF4B2F2E69A1165DCFAF374AD7ABABDBB47C277F71AEB1BC6EB15898DFB7DBEDAC2481203AF7F5548A9930901A03D01C6A01EBEB5B0F669F135EF70E43C295A85A747F6B10262333BA0C5E2E7D53733F988F38A0B36B0D44A363C85DA32094C60AA6F3B541212F8E8E8E4E2E2E2EEE31636306DBBE848B71ECE4C9938FF7F7F7FB448D2101E8EAEAAA32C3CCA4947260B71AA16070B285D432D50B0B0B30393959DB88E9F84C11AC2C87AEF5F27AF7D29B47B434FA96A504816010D2DD29482C5633DF6430610F7D5CB012FA807B2303A5669B1D8A04722B9E1DAA46653219181919790F2DDEC7F0F9E7CD02DAFF310AC19AE9E9E9073B3A3A6C5A6655F48F1843C281BBDB6143A7071E7C6A1CB5A29D315CED42D0B2C0912347744D77BD58BFD1FD85465D80D3E964C04FCB0590C917CD7E2D1730383858616EFDADAD70BE699A31A324D867AA6F6BDB0AE1E405544EA364B355CFF491B601A44FEB0A402D7AC0DE066687152C14CD1417515A4CF273C959F0FDC437E4C524BEEB1031BF220AA08426EFDB1313139F0B8542DDB5361868B136AE2AC28E6DEDACEDD3373AE1E5A30BCCB772B3C30561FDFAF5D0DBDB7B45F611F8B5F8825733FE161DB1B7C90B61CF2CD82DAEAA35BB3E741DFCE6F48BE040E1D302DD44FFF5A917C0866EA9C40547E8B32DB005DE7EEFDDB282097D7C362F80C7046B7AD641328ED6A75084778EBFC7D49FAD8B6003D0122751D11FC371E18A2840606E16ADC02F506BBF1F080434994FFE309B8AC123BB06213C7B095E3DF43EDC77FB26F8F7E85BA83176163588634E9C3801AFBDF6DA87261424ED2541E556804A1222AEFD7A591D063EF4D0437C530DB184153C4D4D606A3283DDE852B49CDFD78AE6D9E674949F4B60A2345EA08B0C964BABCD013687241C4A1F796CABBB15128E1CCC2C64C0D7DD07035D011480138A0B10D3B973E766907FCF5785812A2BF02F44FE0B6D6D6D5E35F30939924FFFCA1D1DD0D6E2807B0EBC044FECB9194C46031CF8FC3AF8FAB3EF332C40998F09A26FDCBE7D3B63961E585CC98610AFD7DAFC11770BF94610DF04E21B411C00223062C08F4A0E043908E4F39441A0B4C2A18E10184DF82C1E23384ACE2A21B4A280D865ED57339F814A02A55AD68103711A8F42A7450BB803102F4D29F76A6BF5B3F9E500500101E4FBB1FFF112C5A9B50400D349F4EFE4F4BC6ADF4FA6BFCB9F877B86BAE1B77F3906831B83D0DFD3829D0A70ED5A2FDCBAD9026F9E89B2C5E5AE80169242C95A91801ED2AF15018874AD48406B678D2378C20124A4EA1D4F8EF8799D321702710E7ABF0A84EE6B013B32A9E03680BDE0ACB23C26BCA7C3E52A335F2508669CCFA166B0C0683E5E792FFE2CC470B400EF16A48D1E5FB317D67476942DA4B102F9132F8635378254C9872F68523F082D4662610E1EDF771DCC44A2F0AB3F8FC08B3FBC1D62C85C9EF67CA61BDE78620401A293812BD23662FEF8F8784307428D1C06D59AA3DEC10895C47C32FDE4AAE8192973E1E6804FCCBC5D9C8BE6B8E9A69BCA2EC1EDC279BC3097996756520187DC046353295FB6C9EC79F1CF4825EA89C968028BD5A6B42B1187CC64AB6C21AAB67C31B7BA5BB090E675A31B59DFD35D15FD088AE4AA2B00D8B9DFE3F1348B0B485A1C8BC5E0BE211F74B75BE185BF8D4367D0090F3FF94F463F383A033B063BE0996FDD02FBEF0EC2F77E1766713621620A213B3B3B75011D6FA792FA8BD7F5C688A05034F37AA5D69E391F478CE36E8E978C77586A01C18AD02A9B038BD904F64B36984DCF576954D69B83D45C5289CD0C5C38981023DD8DF448521600A90DA54312722C0BDE021432058946ED6C0D243ADA2C686EF2E01A1861763E0AD1D8429997EC26D2B3224F69AD06EB0A00FAC4075043141B470B405AD0E64AC197EFBA16572B0BF70E75B27C7A2A0E1722182EA5B2F0F4376E64B49B377BE1BAD72FC07824C284E0ECD9B30C04AEF4CCE07201C17A20503C1310DBC4F9688E7DFBF695774BA33170A24BB1272D9089A765ED2CDF77B13D8F02209C271864E6C842906F23014849ED326325664BD7F9961C1B2F31BF2C189463990508FA7DE0F3363145085F9896192FDDA75852F84AF45E1CEBC0E74B6B0A00123723F8DB4C8CE3D24EDA3F3F370B4F7F7703980CB98A17FBCECF86613E9E853FFE607B05EDD15DABE1B38F9D66072F04028786861410A807E8449A16F0538F1143403114D4CB7C3790FA910FE799300107811CF851298242ADD34049F0A4179E989C020FBA01FB8215B2892CC6E3DC4F4B42B798CA437A3E55B1296310766BF2C91C24C9021825EDA7120426E73B5080703C7B4F63B9DD60420148C511F83543FFFA2E989D9E81D1D1772A9543105C0CC9DBC7C6C6BE89D5C7AA04003BFB91F1BFEFE9E909888897B4E1EE9B9D30D063671A2EA68E560C7F1C4678F77404AEDFD8A2B437A3A7D97B870B7EFE8F19E663E948B21E88535F6BF511B79FB5C6EB013FF5D636F970D262CA1C0C72C0476899EABCE4DBC1E25C34C735D75CA3BC6F3A93C6B55A8426831B8A8B4526007432582A90E09520914A422953841C0912A395CA560279148BC6211FC3C803C1B44166B25166305DC731BE2F265038114C184C325DA6CD25A3B0DA1584523609CFFCE8291C67A9C21A7C6D42A190656262E28B28C0AFA0601F5204003B84D044FCBDB7B77703BD9C28009437F638E1E8C939665A987B9225F5FE4FAD5116E1F8E918F077A2B23380A006AF6821E97B0291C9EAAC0681CBA5D73BD9A49218DE84313B47FCDC329099A767A5CCC11FD5A9A42CCEC3C3DCB21E1B2093CE82CFED038BC3C2985F2CC88C2E14612C7A0A3AFC21985AB8A0B4B1B59285E1F8C51310F4B4C1F98569E94819415DA188EF46D95882B7C363E0B3B4403839836B5F6442506456A008D114BA1F0CC9D99C920FA9B000E261105D6FDBB62D74E8D0A13FA0E2DC89B4C3188158BF869AF0F0BA75EB3A9D2AA449669616EBC93F91F959AC6B9AC583213293DE6649DB76ECD85105F8B440603D7ABD31A2B917CDBE78CD858603471AC7059DF08E5E16E7D2C21D333317A1736B08EC313B632ABBA7CCE053F909B8B67D03CC1B6365C6974A8AAB38959B80818E5E9837C7416BCBFF44621C06027D305B985376F8183EC03292893281CCE7B2786DAC3AC7503F29F1E5861B6E58353232F2571CF74B332EC4A37D7D7D41BECDA89E8034E5D8B163576C07EF727E5CD20808E41F848840905B0011F8F163613D10B87FFFFE8A53B7E1B70EC3DE4FEC86E7132F41A6902D9B7A99D9B6263B380AAE720C5F14B67CF1CFD66C0717D259E0573E632A6F26793014CC39CA11A66CDEDF8E8F2100B5C305D9CD820A67F0C7164342C23D680982070F1EFC82191B0AEAB048F49FA4C15BB76ED5D5742D60A7D7A6EE2FEE0CD6A2D76A13EBE2B38BA19F98B975A231EC148D0E6F0410C8411F8DA792B49FDAC439C5CD27BEA9F7EAABFF81AF3EB01B3ED97C0B1C891F57E037BFAFAD6486B58E5512E3A1A48CE3F1BC1DACB0CEB59A912456942A64C00E1658EB5A550523E7E3F3F0E6F861F8EF1B87AA15A1C649A9BC6E8BEAB3802ACD210B303535A5E97BD5004EAF8F1AB82DA74F23F7D4F2F96A4C40E11059018A8B4993A9CE4F0345F0C73100CFE23C1425AD5EBDBA4245D3D8E7B69D77D65CF42BF545D0BD703FFB2A487D6FC26A44AFF94550BD9D33D1EFA9339FB456E663B5E6E08CE775BDFB349AF59E5F8D6B44AD1633F7F76A6BC0FBF239E89AD2DAB5DDF0C8813DBA5FDFACE473F1A58C51C209158DAC5B3A15AFF97D84B91EF30960D007904B3DC61577F5AED627E25C88F48E7197F37D60AD72663A0C36ABB1DC6E84CA6F0B3F249F9A6B7DD0A2E02DFA61083239AEB1C74E3F0CF12EE5471A97EB871E2B99F34AFDF0A2D611F34AB5F82AFE9824A2FA6188E77F01E3B99D6663AA070000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (163,1,'UPS_rackmountable_2D_(24)',0x89504E470D0A1A0A0000000D49484452000000180000000508060000005F3F2CBD0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000015D4944415418575551BB4A0341143D333BB3CF48DC2406D122687C442420C14EB017C4CEC68FB0F18FC4DA4FB0B3B3106D44141102BBAE139F6459CD3E9C3B90C28133DC799C73CFBD97F5FBFDB85EAF378BA2E0BEEFC3755D789E674031DD71CE31994C60599639C7710C296DC4C988FD641934175555A22C4BA002727DF67D0FAF49A4847E3CD34227815361267091E60ED234D584CA10094208E4796EC46DDB36C9984E1A0E5AB85ABDC5287B8327B419E19BF87078809B8B6BE2DD71A5D42939DB1BD8D8DF16A8D56AC62963CC081348544A6962AA86628B5B98EDB6D0D958C7FC6617736B1D2CAE2C235C5AC0CED6AEE12749722EC2303C46FE09870159CA908FC7DAAD3449A66D215025D48269659C0B38DF161E2F1FF01C0D619712CD4603EFF8C253706F8CB4DBED23D6EBF5E22008CC0CA6BD27388EF36F16244ACEF55F44516466F0CB0AA6AC0F54A56EBC765CEA3FB4F8486F5901A55ED41FE9B2926530D0C8B60000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (164,1,'UPS_rackmountable_2D_(48)',0x89504E470D0A1A0A0000000D49484452000000300000000A0806000000F2E3DD4C0000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000003A849444154384F7D555B6B135110FEF6926C2EBBB6499B26691A6DD55245BC5441F0C122BE08A278A93EE80FF0C59FE09B7FC427F1C5AA880FA2A828082A3E55412DDA4225249AA69B5B6B92DDEC3A73E2916D6C1D7232B373E6CC999933172597CB2D0D0F0F47755D8F8742A148381C06D120FA9FC57CC33036EC33CD67183CCF43B7DB15D875DD0DDF8CE5F27D5F2C96711C47D09BC9F177508794EB743A7CB656A9541ABA699AB1643239C28695CB65349B4D6194A669026F46B3E19227B1AAAA7F2F93068E8E8E828203DBB651AFD7B1BABA2AF6A7A78FE0C5CBB768B5D6E175C901FC077CFEF9A45F43D888415542D8BB77374AA5E21039D1D51B8DC65DF2E81A45510F1A2AA3CC984151944D171B2EB10476848179922F6564E43F7FF98A8B37CFE259F415AC908986D314725BD1A7DBC771E7C61C1455C7D4644EE8A160BFD30B85C2F5F1F1F1C4D4D4D495743A8D482482E91D0EA2868AAFD5AC4899858505B4DBED7F0C968B1DE715748C2F083AC9FB4127C7721954A34DD4F43564AC0C96AB457126154B61C9FE0E9F82908C27F063AD2CE47798133870681F3ECC7FE67080EC7EBFB8B8784168A457B8C7516105AAB78EC3BB22B8742207AFB52278C108068D0FF2A48141A7B692659DE9F408F4BC8191B1310C65324813E6354C34F3243F4569C8D8702C9C397F8EF2C967FB51ABD55E931E57E407A54A8215F3D35F3EA6A25C59C173AA874B472DDC9BEF0807645EF7D31284F37F222CF7831197C6F71C506059261C97D2A9497543B2DE1AEDB1B346086144A08655C4A31606B514545D85F9CB8466C47B3A7AFA84729D18FAC4C4C42C7FA48C9F989D99C49B8F1DACFF7271723A82A7EFE7E9C26DD80A822F14A425964B820894EFC1AED6B0DD4E6165F92792090BC5524114EC603A86825D80464627B271941A4568610D993D0398BBF500AAD60BCAC0C0C00CE98AEAD4461F66B3D9537C79A1E2E1EACD4FBD9CA6E2BDFD72198D964EDDA2F5D758D9CE82B4EC3EB248FB5F6AB3175BF8F20DC7133388B74C74420E624371EA481E1ACA3AB49026642ACD2ADC36B563D7C3377B11F7EF3FA26C31C45E3E9F3F4875F950A7A23D222F58A97B28561CEA3C3EB8F9689A4F0714A27B39DE6FB8A48386F73BD0FF023DA0D4E9BAB0DFFE407E759052C2C74E3F25F29B8F6EF33302F39F8594C8F9C7F34FC4BC913387755A96B55FA1CEB34473400C326246649FEF6FA5C16F96E91F787216B0D17216C8C2E60EC6C387313B4C17231A8D296250513AF9E205370E2DC9F73C0E525760B147FC52B1E893AE1ACD97FA6FA944493536B809A30000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (165,1,'UPS_rackmountable_2D_(64)',0x89504E470D0A1A0A0000000D49484452000000400000000D080600000019AF686C0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000005A74944415448899557DB6B1C6514FFCDEE5CF6327BC95E923669926E8C498C4629A288D0F6C582855A2F20142D3EF82228F4A1BE28F828883714F12FF0415A44AAA8B42242F1A90F626B515B4D425B6A927673DBFBCECEEECE7ACE37FB4D27EB26D66F397CDF39F35DCEFD9C553299CC423A9D0E0783411024038180A6AA2ABA38784D340F67D0344DD0FCFB1824CD7F8687E338E8743A7DE77EB0DDDE76BBFD2F3AD376BAB3DF5D74C6A2B9BCB6B65657E3F1B83A343434ACEBBA102C9FCF637373530820410AD70BBDF47EFB1445118F4A904CC46231ECDEBD1BD96C168542C1037EBBD56A89B34F1D7D1AF3F3D751B7EAA8D76AD03A4047FC68C8FB18E9382EEE92091C77CD1F691D8A445D63109E4884B0BCBCAC911262C4CB0DB5D96CDA7E0643A1106D4AA0D70BFC96EE87FB3DC2FF9DE9FD2C22DF8946A3C24B78AF6118026705F0A8D52C7C79E62C46F60C22FD6802B74B796F2F5B5E8E9DF0BDF131FC74E602BDEB1AE3D8F387BD7DC44B47DDD8D83841D6FF787C7C7C9A89E1705830C2DEA0EB1A5D16A0B52184625AB55A1597F70ADBAB3089B302FAB9267B1C833FACF85DDBB6BDD0E1733C1E3AB80FDFCD9D43A36D0B3CAA46506DD53C4176C29F8D3E87D5CB055C5BBCD9F54647CCA552899C6DF353B552A99C23ADBF904C26CF533E88B16564381C98B6918AEB383F9FF494625916EAF5BA10426ADA3FCB355B51E2BD0A609C9920EFF3629BF7B3F00C77ACA9887DE6A409C5506174E83E9041021A414BDC135488A250B839010FEF06891863B1518C8E8DA2B05E40B154135FF8DDC5C5C5775657573F54791359F597C9C9C94B940CF7CB50303A053C32338C6C2A820B576F52F88C0B3AC729258F1DE3BE97E60F31099C03A4D28AC5E2963CC00CB2E0D3330F203590849E0E61209515E7A6CC1C162A37A03BA608F8297302F3E56BD0DB51F17D3A760FFE2A2E4275C214FE0EB2269D8B0DE2C9C38770FAF4D7422994E78A24C327BC56A5A61A8DC675BA603FAF2D4A3AAF3F93C6C52B4B78E9C87D78F54806EF7E55406220232C269314332F3DC12F30D3FCB874677F12E43BFC5E21BD4082AB3807996C1A5A52473C996287C0687C1CF950D90D0F82B1D8386E1B45EFFEB1D85EACE805213C83DA31904AC6313268BABCD01EF2E202ED6D6C5100B9FE9C6470DF9E22A64606B1B4E2E0E4FB3FE0E4F1393C3CBC8A3F2B03C27252E8BB857EA590730D859D487A4CE3C121C621C81EE02A0042199A1DC4FAC29A70DFC22079607E5528430928280F5650DA28D19A941D54602B4DB42B6400950DA422931920E5BA71AF74658D442269C2A3C447552880847A657676F67EE109955B78E3C549C4223654C5C2E30FC63139AC20773483973FF895981C124CF7AB12FD66067EBCD7DAAC000699FC782D1521AB001DC3D2D22D64F501946F95E1B4DAB8B47619954A198D9630207E5EBE8852A384A6425E4309FB629EBEB72A68111ED48288DD1B462A047CF3EDF7E23B8F5DBB7699547EDFA2E59B2A59E1ED5C2EF71A31A189326868F8E88B9B6E62210D535F84F74EAD1033018488C96AADED09E132A988B59CFB0DD90BF42AA1372F48BABC873D80936ECA482044F5DB69B6B1D92A239288C0B1E84CCB41DE5A47341842A369A34396FE7B6D1966280ADBB1851754DB352C5CB9823F7E9F27CB87C59D6C9499999913A40845A55A7C9C5C222999585EB7F1D9B5F296EECF9FDC24FE7FE7DE10304DD3CDDAF4BD5C2E735912099013227B002B2D3731E5E6A7850A0ECE3C46C26EB83D84A2A1665B24B0DBF418011D56B3E13543A120E1DD92F9DBCA55DCB8EE964006742B04BD1FA1A47F4CF52728D95A5242DC22341FDCAE1BBC1B90C9D2FF0E0FEA42BDF2C7A5B546DD1E95652F099AD1080E3D710067CFFE88C6198B129A23F8E74031D0C19D6A67238C8EA7008177BBC653F81CA3A3239898C889F22E77B8CAA09942608120DCEDEF93C4ACB65D8FDF9BDCFEAB23F4C376FDFADDF4F17EDCDFFBEF74C776FF35BA744E20252A87F57F00873E5D6DE9A8A9310000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (166,1,'UPS_rackmountable_2D_(96)',0x89504E470D0A1A0A0000000D4948445200000060000000140806000000722B38EF0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000009F74944415458C3AD596B6C5C4715FEEEEEDDF7D35EEFAEEDAD1F71126325A469022890A6ED8F2640790854A90868115245257EF1908A084580C44F90783FA5FE6FA98410555B902A2A0434A16A1C9CA44A138726F53BB51DAFE37D7BBDF772CEDC3B7767AF77D756C8B58F66E6CCDCB933E77CE731B37A30185C4826930D4DD3E0F178C0255186C8946D85EF90CA9375AFD7DB711C97FC749A53B6F9314DD32925A9EDDDF6B9C7B9F9B2340CA3EBBCDDBEE71EC77375E9D7A87F83CA2AB7F3F9BC578FC7E3B57DFBF6EDD1755D0890CBDDD6D57637BECFE7DBD5382E5909BC896ED46834761CD38EA440DACDA72AE24EE66F37AF3AFFD6D696206AA725FFF2E5CB37F44E88999F9FC7952B571C84CA47D6FFDF52D6DBCD2D1FB926773B9148A0BFBF5FD0C0C0002A950A6EDFBEEDD0C6C68628ABD5AAF3EEC9932771FCF8033877FE12CFE408DD9A5829A41CE07E4CF90FA5E27A68FD2659B2C74B550FB860F2FA80893D83B830F59F6D7BD6D5CDA94AC866B3E8EBEB73D0C92EC28D5895A7F2D5368F610BE0B2D338F7F89DD0255D967479CCABD7EB02612C58AE73A92239140A616D7D1D2FBDFC2ACDC7736E41F7B04BD458F3B85B0FCFD430784D9A508204D6534F7EAE759CFD4DBD542ABD4D942357E45751B6BCBC8CAB57AFB620B71BAAEF669F8AFC7656C016C00061622B600B28140A2D16C0C41620DF670B181F3F68FBE9063EF1A947B070721173C6823377C41746B95E2170B77EB3133FEA8BA0542FB7F093BE380E9F3D803F3FF732EDA5A900B874CCA0A0759759019F9E9E9E7E766C6CECD1743A9D909B64D31E1A1A6A41AC9C2C1C0EB7F8752616026F58B58E4E08EFD496A4225EF5CD92E7B64689FACDCD4DC712A415C8770860844C4B50B9DC003CA33ACE55A75A847234712FAEAFCC6C437527FE5022877756DE6DE13DD4733FAAA54DF87D3AEA8D26DA4DA3A9245EDBD4D4D4A5F5F5F54FEA26DB23F02409F53D12EA3752A954B01DFA6AB51A1E3A000C67C378E14C49A0501D77EDDA350E2A2D998D8AF24ED46E8C3BFB7097B1580C041641994C4628BF582C0AD4B32530719DD72CDF3B71E204F68CBD4FD4FB07B2A824ABF092F2D8E74BDFEFD70396B09458C08FCFE36BEB6E02DEC036DE44743F268DB7901DC8501C5D164EC96DDD24FC0B94019DA4FAAA13036813DF9D999979841470D81D0F18513A654F4F7DE6282DD283D7CE5F44B11674D0CACFC8C8087A7B7B1D144B64BB11AEF2550B50C7B9D343B735F098402000BFDF2F2C91912ED1CF42E73A13AF5BBEC3CAB222A789682402BDC78F482CDEA28048248A08598AA370BB2F188E2044EFA83CAE7B09E53E5A839A726643690C0D8F42A3C87BCFF00AFE7DE65C8B5B9D9D9D2D1058BECCC277076183907596367158150213B9297CE7F38378ED8D7745BCFAFA63A338FDEC8210020B91C72C2E2E0A2B50F37A35EFEF768E70F3DBE5DF2A8F5D202B9BC0224A1636AF9191AF96320BE2F78E1D3B86C1DC88D0015B10396B44C231A7DF4BFE3A40F3BA1540AB44281C127C4701CC17E39B7C499958065BC60C6A5A10F71E3A84B3AFBF49639B31607575F526ADF7C2B62C881F42CC9972B9FC5516ACDC2C23EA60AE8EA313297CFFD7FFC44FBFF5B0E03F3861E0CDB992130B386372235C523B8B90073775ACAC4BC4A8B9BBDAE66FD2015264365CB205B0B09958195CF2BAD922E4BBBC3ED3B68164328162A28148A829EC94AF877D8DA500C52A7A7D49E2EB4DBE4D29E29B7E2F5951AC5501D13E52808978344C71B4DF7265F67E785FB4BE0D55E6BA2B35EA57D1CF1BA816D770FAE9C378E6E77FC3070F64F1D77F5D11FD5F383580D77F368D1A0981AD807DEEC2C2828362F789B75BD9EE74DCED24CB82A7D3BB88434C2C74028E40BD5A325FBEC3413815880815707D1DB7B0556ED8FB26ABF04651AE52CCD884C85E046829454DF97B51A394D5EF0F5A6BF358D41F1C2441D71141AB0524230918548643418C0EE704F239D55592204F47059020EFE7CDA9AEE72B1F8D239DD0F0D8C3C362E2D9A575FC7D72091FFF70065FFB6C023FFAD34D8C8C8E0A7FCCA62D91AD0AB65D5BCDE5DDCA606A277849FCAD08F9645E2B5BAB1CCF8FCC8C788CAA00CBAAAD4CDD341BF01634144B0567EFF3C105F487FA50C817AC63816605CDB9E022D2A11E726B1B96F06D252C8596D017EAA58CA74A6D8FE079BCF41225F3C978148BCBB7905FBFED0461C35E1FAD2BD9560134A86F7070F03E35EB4987F2F8D2C78E52D25AC183F725F1AB17AEE2F28D75FCEEF48704EF23076318FFC73456367A857BE0A02785A10A53A68EEEB63C44B985BF930258C89DAE16E4915F923A46B3D1BE59DB44B01E40F956D94A0FA9BF681631309846F1E646F34845FF05AD806CAE071B37371CF47BBC1E143D45A4FB7B51BC55A480AB0925B0028A742E181B1A40C0AFE3BFEF5C7714206D2097CB65C96D9E2237F9AAA3001A9026F4BE343C3C3CC26DF6A9F9FC1A7EF3CC1034B322CFE808FA1AC8F5F92960517033AC094F7F318B277E7C1D7A202194E67629775AEFE47E24C938A00A5BCD84643624852FAE1E6CC156296DEDF1F5A1B149BC06294E9089CD520D957C4528857932132D054AA49882237C4DB784BD19AAA1B45A82C76E6BD4B756CEA3371EC6EF7FF93C6EDC58B0DD5933069002C24B4B4BBF208B7C94D6F8B64E95F7933FFDC3FEFDFB0FC88C860746C37EBCF2C63AFE422427D13C21C49361FCF6C51547AB2CB04C2A86AA11167ED91D80DD017637FC4EA9A8EA823813926E484D67B98FDD0D07623508F338E9878BE45AC7121308C402B6022C81EB11526A2228DAAC0493BF49A53740873EBF174EC0E0390D2BA21B5BF6BA1AAC0013AB953C12D1A8788FE526E5A95E1E1D397264E2E2C58B2FD21E1ED769C17FDCBB77EFB8DCB43C30546A067EF2FCACD36E1728D5BABCC9DC69EC4EBC6EA9A86CB3307B7A7A1C62B4CBE0CB07322E99D48318A7AB816054D4A7A6DEC213A9C711CDC448D80D1BF1947444B710EB279E2115607D732B4E27E981B893FFCBA7ECAF21DC13127C21645AF6E4AD4B78A0FE01CCCCCED3584BA61EFB70A71EC80E1D3AB46F7272F23956804F9A88BA4946175F47B44B13DD87AA766966B771BB39A4B54B45659D95CD2897C4EE47BA1DF7414CBE631DC42C01CCCD2FE2BDA9799C1A3A8EE9C2755BD024DCBA89BDE16147F0E092FE3452CEFEF8A875D76F3AD7A6D0EA06F6F178916A5A4A393F3705FF75BE0251EEF884D560DBA99F5CA84F775F39C8CDF261864E6D3B5E25DC29C9439A5ABAC774BA8E6070B04039B76762A1F37A19FDF22A82C97D1571CFD018B928BE56F0E1E96FFFB079DD70B72E43EDE92E6953048C60F3CA22E0DF76A9D8F53A9A1FCE95C7C7C7B75D94B5BB3C53FB3A5DB0ED760EB5BFD3A59CBCE296874079F9A6125B80BC8C13F939C5A754AA0F3FF8DE3785E00D1BDD12EDCEFC0ECF0AC2569F5537D8F16F7BD7D5273D89DD67D8A7E7C5C585F60A20D404666666E6647E6E2331D3C9D7EFA6DEADAFDBCF96EEB870273F3BBA7F16BCDB3F3B763A20EE761E22E727C9B5B535DFFF007E756B84B84A2F280000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (167,1,'UPS_rackmountable_3D_(128)',0x89504E470D0A1A0A0000000D49484452000000800000002308060000005CB6028B0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000EE94944415478DADD5A796C1CD519FF66BDBBDEC37BF85AAF6327760E8C63C855078A0841490011481329294A45D3D2D296863F5AE56869821048AD68ABA84520558846A205A9AD90284514A40221690857C86528769C40421C7C26B1BD87AFF5DEFDBE9979B36F666777C707899391DECE9BF7BD793BEFFB7EDFF77EEF10D2E9345CE96BDDBA7575C964F21ECCAEC57407A612BD7A46BE75A2FD99AE360DD489609D4378DF673299DEDEBF7F7F3BCC804BB8120058BD7AB5CDEBF5DE8EFF4D0627C3371AFD8E2B65E0AFA1CD1E0203D6DB67B158F6BFFEFAEB03D73400366FDEBC803C5C100432F82A4C8EE930CA35028814A616D4CD3E02456565E5477BF7EE8D5FD500D8BA75AB231A8DAE96BD9CD282AF5BC9D7102046301D2430241289B75F79E595335705001E7AE8A18538BEADC536EF4134DF8E45C55752C9339C134CA4FE791A2A50B7FB50AF075E78E185D08C00C0AE5DBB5CE3E3E36BC8E0B297D7CD64AF9BE944D260FD24CA8E12180814A150E8C8CB2FBF9CBC6C00D8BD7BF7A2542AC50C7E1B26CBD5EA75571320F2BC13C67480F8435151D1DB4F3FFDF4F96905001ADC832CF52E99C091D16BAE55AFBB46BEF50C9B5D98CDE6837BF6EC19CE0B009991ABAEDADADAD2E6E6E67B5D2ED737AD566B131ABEE8722B7926186EA67FAB813A89582CD63E3C3C7CACADADEDCDEEEEEEC12C00A07707AAABABD1C602B084A1C482E871269349C0B10678192556A695F1CFDA3C5DF9E47AF942324ABC329842F4F2F9E446EBE9D5CDF79C4B26CEFB52A99CFF3F99FF2B540FFF2F8DFA1A4ACB42BA2120D266F4F0087AFC2C343AF08994AD979F4859A13A93916BCB9932B98E2ACF46EE57D3BBDAB209BE4BC3BD877FB7BFBFBFD75C28B48C8D8D4157579761CF35E2C113891C85EA539A88B720E0C16EB743494909381C0E314F320C95108D46016735E25D9BF8F68A8B8B61D5AA55E0F3F9612C1251E94BCF2BB53A9DAA6C226D8482013879B24DD113BBB3CBAC0DA1DA866818C0A94656D8D50BC593296343835EB9D1F626A27832BADBED068FC723DE592826A047D0982C8D8E8E8A6060CF7C5B041ABA2EF50FC2EFF7FC896B3F453F12B3BADC4BBA8209F4FE78D72FB7E67DCFAC35BA76FC21852D59B2242BFCD29DCF6B43B3CC25943C720ADDFADA909F4F96AB0E1F0EB521521B267920F1EF32B06B139527120955BBECFD742AAD327E321111EF0C5497EB2A227D586CF84D661508A4BE0A39BD5F04403C1E3F8764A064F6ECD96EA6101E08C820E1C489132A6F9B487EAA72A3F97CCC982FA3D05F5656A64A2C028C8C8C889ECFF2FC9DBF9C4E276CDBB64DF5FF765B31DC71F73A08AD1C8433E97359DF50E79E0D5F0D75E534E264E545E8F91B82F7C26BCFBF0A172E86B2F4A307462AA7E886B6379971EC5B89E3E28F31CCFF163DBD8A112BA634EAECB265CBB23C8F67F5E4DDBCB7B37A7C9EBD9F2FE9BDC32249AE3AACC3BCB7EB11435646EFE1CC47F966CA533979399F5039AA67BE2DAD8E28ECCFBF6E2E24DC69782F7118E2A94496D2CB8572E88CF7E434F064E537952F8391F62854FA7D08806096A1F93CFBDE818181F1D3A74F7F81DC6693C80110047FC171EDABD6D6D67FA0B17DBCC75067CBCBCBB3583829C261894189CD04C171BB3854F040600642A609A74E9D324CE826F33C91A911914002354BF4DD8C04925750D2CB6BDBA8ABCBAC7A536995DF0FC335615DE31717592199CEBD5A3B15F942C7F5602BB682C56697E887C00340FA36FE42474FA13D5AB04FABB03F71850422D1D98F1DFB3532FE3DF5F5F5257A048A1F2B8786C2B0FB27F550E72F819FFEF194E2555A4E410CDA08899C8ADC2811642490BE89BC9A45042A27A2C7481F2384B948A0CD66D30E32505A5A0ADD25BD6041706875774BD54DF079E8ACE810F2245C55E766DF37E034CA735DF9E4E5B63228B25BA018BF29958CA13EAC1C2114C4FF62DE4F510D9DFC4BECD7DD647CD52C802EACF0E7DEDEDE6DC8071A9867E9018114B4B2C9024B1BCAC5B2EFDD510A2F1E088A20B0720AA0E447CF58B3664D5E02988FE019912B9BEA7948200F4C36ACF03310520ED52370B321414B06B54492BF6856D1EBBE04368B336360D9D88BAB1641CB501BD830E268870ECA2DF12F82E3E156B0C9D148A923CB6FAC6C828F075AC08CFA55CA655999CD8B7F6E86B9D72DC4BE58404826E083F73ECE4C91B918D0D1D111C688B61DDF1DC99A06CA7F9A42033E8363C4B3B43AA8353E29801425248660DB776E81CFCF0FC23B873BE067F72F87778E1F87201226F204FE9D73E7CEC1A14387A68D08162281858820857D1AD288FCD1B7D29D4040E42F5FD292C0EDDBB7333B8BEB022E5709082E13D84D0E9597D365B1A2873A1DBAC6A7BBD95A8CE0C8BCA7058185C93950B0BCCF5901416B04BAFBC350E4AE84A573FDF0E1FB1F67868074A6FF172F5EBC84C0FE8F6A16A055141AF8187678145F28D17A3E0120180CC2130FD483BDD80C3BFFB01FF63E71AF28FFD596EBE1E1A74E8973642787748C26B061C386BC6450AFBC1009D4BEA347FEB4049011383625A53B25E6F93CF9A367CAB3727EE9968F8ED2DEC92C9A6C81E0B6802DE5507103C9C056C9FB758C9F9601C2E47A203093DCE1504FD1E5BA9568F48154A7E210BECA0AE98F05696D40C80CF1F4DEFFB2D601741CE81C86F89876EC270550E85F36B708EEBCB91A9EF9FB11B8EFCE06A8F5D9B15202E654D961E3AD4E78F3D380E8114C49E17018DADBDBF3EE294CB68C9F8918594F67DECA08204D0929D1C5489F36B1D541BE3D6AA3A6A6869918BCA55EB03BEC9074A5C096702A466620B0607DBBC39173C58E0042F2B4161CB29C78851DBF57AF6F552515D09AEC10CB7CE5A550870E97660C40C8EC395014C3F07FCC0800AAB183662D791215311A80C77E78337CD9D90FFFDC770A9E7D74357C7AAA5B3684003FFA561DFCB7A5058DEE50660EE445041CADE1F291BC4229D78AA05112C86637E4FDC459B4B30046FC284FDFAE5D0AA6A8A01A56D0F81E8F1B068603104FC6D49BAD648418F288F1A4F22C7DAE9411BF1F30B2D1F82DC87213AB2791370280CDA11E2258F2D83D585FD229F5A76ECE2CC5EB795D910C399ABF2000503137A2773879A452082426BFE3DB7EF0794D70ACF522DC754B0DBC76F00B51FEEF77CF633498078B17B8E0D12DB5B0E3B91E51D1A4649FCF072B56AC2848EAD847EA85F77CEFF0EB127AA44FFBCCED782AED3086CC933F16F6D9333F9464140B72F4888205DB718CD8A13F12C8F2A89837066303630A319756E74006000EBB6E940F8E66004132939CC77BC28543D3685C929B58423DD0820EC4A0D4530216D45D203404838100073F415A9EC6CBE572517F97150400A2E411AFD7AB506BEA3C858F799551B8FFCE6AD44014D6ADF08BE993CF07E1C26004FAFA87E1B1076F10658BE7D961F50D0938DE75490C959D9D9D22099CCE95BFA910C14224905F11E4CBF8F6A88D1D3B762865814010CB1C503C6686F170840BE332AFF263140C8C690283A00022EECB0044900D2F01407A8E97E1FB83639CF13329341E065F05F6C5EB067391097A7A2E649029AE0308CADA053AD875D8B61BBF7B481700749013D97F3D198E790E79C65068007EF7C8426C2DAA52E893CFB7402C9E82979EBC4D343EBB766E9E051B1F3F0321445D6D6D2D6CDCB8D110E1D37AB5DE73AE55447E5730D78A208B00AC2D46065958670490793E3DF3D1815F4DE481D7D5D92D02C011B4436C04878B14C73F52F8FE581C22C131111069EE240EFB898DC46014238032A4992063647C8ED7C420820012D0C05A000446435081406E5A3007BACF7F05C78E9F50F603C4C8C801B7A1A1A1EAB3CF3EFB0D66B7670100FF683632F8BFD5D5D595F38716C81B7E70971BE6555B6830037E6D69F9420F0C8D26E06CD7202C6DF02A324731C02FEEF3C2536F5C12C7D2B367CFE6247346089FD13A460E72485336974200190964633E237DF44C7956AE5D085ABF7E7D66B10BF94332110797D9216E10A592F89F04BC2401310DC3911110D03FA2F198285792DC5E301882443006F1745234AAA92813E605CC87878620358ACE988EC932A99C01A0DE5103C9C8303CFFDC5E692D4030A9A38DAC9BCACA4AB3C7E3B91FA3FC5B08EAB7140060854654CC9B8D8D8D73D86A1E7F6AA5C26B85775BFA554B8C74DDBAB8426C7C682C09EF7D3AA80AC9568B09C7259332C5621B13468C9B8B24F29EA7070223277EA87FFCB8AE9D26B2B57FC60358E2DBD23E8B208844A1DC590A66BB4532AE0C0202C0C9E017505B59039DA11E09182A1000B4F69F8659A5D5A25C9CBBB35DC634452F013EE9390995C565D03DDC87ED625F8B309225250004C7C2602FB323E892E26E206F7CED66103DD352FFD1A347FF8ACEFE00ADFED289A0A7D023BE3B7FFE7C3F219B57188549F2903FBD81084608F39B3FCC207C08D66ED414DBA4C317CDCDCD05C37DA121C20849344202F536B098F129D4F3619F1F0EB46D688F56F65DE88539CDB5600BD9D406C6D491E88645FE46E8370524E3523BA9CC62CE39942FA959080345417E014199359C193D0F4BFD4D70213190218FF2F0D03F3E080EBB0DA218A5049D5D3F219BE4C3F2E5CBABDBDADA5E42DBBC6AC6822D34363036AC6D80A647348FFFBA56F0A67B8BB8100964DBC13C1164DBC13CF163DBC0B948E0CE9D3B5511F1C89113B073EDCFE1C5917F412411558C0F72A8B7BA2DE0483A44C32B53392E6F755BC19170487617B9429A0303866AA7056C5E1B28269509E427E17674321BF4F5F529D341FEC42FFB6C3E4292AD172F5E5C71F8F0E1F5661424F54E02B1449D45C418F2C65C642D1F99334AF8A66B2AA817B5D8A10FEDD48F7FE689A576138A547DE0E087F0F0D60761AD6D25B4864F4B464C67BCDC396E8306A10ED2262650F66AC4AC33668746F35CD960D2D0C04F259C511B5C6FAACF3AD31D098CC2FBED87E183F73FCA3E11A4710CED8110D441CA9CEB2410BB88007574744C69E1A6D02ADE7425BD5D41BD95403A0A469180DD49C6881F7FE713DF0E0D959B366D52E98A22E5868D5BC431FE725FDF87C3480EC994EA08408B73E244506378FED96CE4C06121431965EE85DA9AEA2C21DFB630BF97CFA680FCB130FE081BED6A92D7B3BD029E18332249D7FCF973E1F1C776A8F64A78F29CEB7BF2E93C5F3E974C3B742AC6C5BE044303BADEAF9A06E6333E91B8A6A6A6091F07E7CF004EC71171A36D4CE331EA82752EF4F5C84C7DE2EF4EE57F27FAAEDE30C081461846238FE88C6D16CCBB7211B35CCF85CA73DDF9E9DF54EE13F19CA9D6D5CA26E3F9F99E0B9D6F9C4474094A8F69B641E4FC3F51A43139B90A70170000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (168,1,'UPS_rackmountable_3D_(24)',0x89504E470D0A1A0A0000000D494844520000001800000007080600000012F78DB60000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000001BE4944415428537D52416BD440187D93C4241B379B2D069658695096B2085EBA081EC58317112FE255F667F853F61708DEEB413C089EEC51696985B2B0B624C5CEC684266B373B89DF17894805073EDECC64E6BDEFBD89A8EB1AED984C267651148F68FA948BBE6DF27E7BE63F7844B0AB94DA0D82E0E3743A2D5B4E1186E193E170F8C275DD1DDBB6B70DC330354D831002BAAE83E73CE872435855D51F6CEBCAFA92C6D7344DF7A3287A2DC6E371D2EBF5FACBE51224804EA7F34FB1505996B02C0B9EE7613E9FD3DE35440B89C22A50D58A5A158D00A9A14E043CEB3A16F2EC42771C470D0683C7B76FBAD80A3C18761F799EA375C1C51DB2000BB1A094921CAD61DFF370F0E018879B33C83B292E470A47B766781E3CC3F1C10C459EBD35B22C7BCFF61FDEADB1E1EA78B3B76EC828AA86909145F8CCDF912855C30F6F20DCDA86B9EAC3B11DF89D0D74F3083B8BFBD87BF70949927C307CDF7F2554069928243F34AC975D22341BD2D6058B30290BB6A29C867D6160FEE51B4ECE4E615626BE777B48EA14FBE6E7E61E25F3528C46A3981ED8A7CEB4ABD9F39B50840DB20326E7751CC7D049E4A7AA446EE4BF5DD18FD020D54AAEA095A8E5797CFE0B3D41F780B88AEA860000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (169,1,'UPS_rackmountable_3D_(48)',0x89504E470D0A1A0A0000000D49484452000000300000000D0806000000EFE6EDF40000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000004314944415448C7A5555B6B635514FECE2D9733CDADCDA54913A5ED90A1204E5141B0A320A8D329DA976A4164C0E7799DA73EF50F884FFD01E28320820C88A82DE30D61141D111D6674AA75DA899D264D9AB44D32494E4E8E6BED7497D398CE14671F166BEDB5F75EE75B7B5DB6E2380E4E32E6E6E69296659D27719AE865A241D6F79EEF67CFAD7BC0FA1F8AA2ACD8B6BDDC6AB5BEA2513D092EE53807E6E7E73D8140608A8C4ED31E06FDE4C3C03C02F85ED922FA9EE6CBC497B3D9EC4F8B8B8B9D873AB0B0B030D6E974A60F40BF48AA81FF0BE611C0F7D39549BECACE10BEE5A5A5A5F54307D2E9F467A15048090683E708F8294DD3C0A4EBBA2029BBF5FD380F322E7E4A69704466CEF39352EFB95E7BED76BBD56C36AFEDEFEFDF57262626B6868787135EAF17A55209947F471C382991F3FF01914824108944502E97B1B3B3233803387B7612376EFE895AAD0AAB651DDE36C185D3612E14E87004584F4C3774181E2F542888C783286E6FA35028E4F55AAD769D7E38230C1CD07143AEB9B9245555F1A0C10E4AB22C1BDF7C7B0DAF5DBE801FF41FE1D53C68B65B629F57EF232BC0B3EDA7F0C93B5F405175BC7AE19CB0D36834FED637363666E9F63F1E1D1D9D4D2693F0F97C188D5AF07B5514AD243832ABABABBCB9AF132701CC74E422E88B4587508B36B0A915910D8D61AD9C13379E0D8E61A3D24DF133E1D387F245338BCCE33790BB9B67EBC8E7F3B772B9DCAC4A40EC6AB5FA910CBB6337F0D2A41F175F49A0DDD875E71DDD9C75C839D5DC24D724F15CE63173698389D32439320C35ED432293412C398238F1443A8D38CBC463A9140663710CC6E30847A318B08730FFD69B04DE1611A9542A5F530D6CEBEC1D1785746066D2C6C66601E54A19D34F78F0E55A44DCA0AC0B4E1559B886611CA91777D1B12CF7CB06C0C4B6782D120EA163006A8B6CD8060CC7074553E0F1981830C3507515A14014F14043D834D74C4452816E74B9CF5A9648099D0C2AE3E3E3AFB3E19096C7DBE7CFE0FAEF2514761A98991AC477BFFD2ABAA94C837EBC3755647AB9F5EC88AC134E95BDDD7DA4B6A328E4B6C819139BDB39B13610F3E09FCA5DA8868640DC877BD54D681E0DA9F121AC5CB94A36BA1D8F9AC3F364D7D04746463E8CC5626FF04F776B1D5C7AF7160C5D83AAA958F9E50E8A5543A408AFF782EF97EFEEE29680DD4E48E76EDFFE0BCF85A7E0AF9B681816BC012F6CAB836ABB2E52CC6EB6B1B35B46F37E5344637D7F1DEFBFF7017523AF389FC9649EA9D7EB5774BFDFFF820C6BAE64E3CE56DBD51E2944BA72C075114A0621B9042A5BA75C7317BADB59B7BE5AAB63EFE7121E2B86A8A4DB1873A2E8764D07A79D0457BA68A7A3A4670B9FDEFC5CCCA53DFE1745E16985DE8035124C02788AF43ECA53453AC0397E5CDF97F9CF5CCA4CEE7740EEA547477431E6BC468FA6639AA662DB078F13EFEF70A177CF76E72C1F5C8E23E7BCC7A10E74CF215BBBF4AEECFD0BBEA900C29AE831B60000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (170,1,'UPS_rackmountable_3D_(64)',0x89504E470D0A1A0A0000000D4948445200000040000000120806000000EB2FD8220000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000069E4944415458C3BD57E96B545714FFBD65E665F62593317B422C2111444B356A172DC52A36A12D2D0D6D41FAD582D8FFA2053FB51F03FD96624BA8DF248DB5AD9422D2A0A02D88C625518BC9984C3249667B9999F77ACE9DDCF165986C767970B8F79EBB9DE577CEB94FB16D1BCFFBF5F7F7EF5514A59FBA6FD13907A9559DF3EB9D5DCDDF488675D63E25FA91EE1E5B5959B978F9F2E5B9E7D541D98E01060707FDBAAE1F65A569DF0962B56C26F07614DECADE1A7C8BE83A8DC7887E20F9C64746464AFF9A014E9F3EDD6D59167B983D7D98C8FD3F2AB7EDB5E49C05E25DA2EE58A150181B1E1E9EDE9601CE9C3963F87CBE2328C39A957E613321FE0B43FCD3F071F06F72A83065B3D92B4343438535060887C35FB95C2EC5435F2C161BA08571953E6AE124628976D5CA5BE2715F0A230572B6EBF1ABE7D79BDBEC6C278F50CCFD12E58C85A5A5A52B848E4744B6D2D5D535D5DADADAE176BBC12437905104514C55FACE31AFE57EF558AE91633646A9541202702BFBD2589AA68104010906D33445BF582C8A35D16894D6A9E5BD560976D519E5D65ECBA375D69A79676B617131855C2E27788F1F3F7EA83B21C3944C2641161282314921B7D277F2E498159567AF7A41B41466686868402412C1F2F23209B628EEE5960DC0FB0EBD7C18C3DF9C07038A9567D728D8FAF72C38940A2A8FBF79080F1EDCAFCCE8994CE63E09D4218DC09E205E4578A994ECAF47EBCD3B0DE0A4502804C330E0F57AC57DAC7C2A95C2FCFCBC4001EF65A59334DEDFB717E6711333998410DAD00D9845B3A2C446E3372247307A7614E97401A80AD77C3E9FD21389C400F1467A7B7B0718B26D6D6DA0B01010F61B25D4191A8A6A183244262626B0B0B0B02D14547B5F2220100880528F303A4352E60D8980B2BB6DB41E68C7779EF380A7ACA04F27A315B31585371AB707DBB0A3A909CB771F4255D44A884F4E4EDE24B47FA8132347977D1C8FC7EF353737C7A58758A0C1570C84FC6E0CFD648AD8663E7B8C8563E5D860B295FD5A63A9389F29FBECFD603088BABA3AA1B08023EDE13123A00251DA5FD7E445201C167B59B9A255845DD418B2F06A1E31368AB6408C57A731DDA3D91A2C9A6F0E35A1AB77170CB781893B65E85335B0A6A7A73FA3D0BBADAE427F9998779C106DF153B2C89B68DDE1C7CEF0DC9ACC5AABE454CFD75A2FE3D0D997A1535DBECAF30A62F17AB8226E846331442867BCD4FE12BCD190E88789F675EE8787C734CFE3FD9D7DF04402A2CFBC8011C68AE6455FDF3EC2922DF2C2DCDC5C8A94FF5518585E4C5EC94AA1CDDC123EF9A809E7466F23E8B5F1DEE128CE7EFF04AE860E11A3B3B3B315783BA15F4D922F159361C0C4DE6F6C6C147D8E7D491C5E8C08DED7B5B31BE150189A8F2A905A274222680429143DE538561544FDF5082A11D1E7B31AFC7184B558F92E2277D14038E8474B737D790F998010B65241D8AAB5F5EEEEEE1E09FD81BD45F4B4BB70F244072EFC368553EFF7E0ED17D3B87837572939BC562ACA97D532802C77B52A01C3DC1912CE32290DC060C866D2F0150CCC4F26455A4FC6E731FF34297CC9E7261B9348CED1AF004584AAA9588C2F2193CA4221CD545D43BC23028D8C934E67567300380147686F27DD3D250C40A5E8F3FAFAFA762164EE094EBDD3035DCD22319BC4EE2E0F223E13EFBE1AC2E8F84D5ADB2292A133D139E3BDD6581A4312DFC3B1CE95C0EFF70B45F84CCE2F8C0C99103908128959D4138C73C92C4A050BD79237283473C89A39F23070F5AF719836BD2340954357313E731D05B584824263970663B70197B98C73DF5E209468C200547E0D7AF47DC1B94F27E5BFEEECEC3C49428BA0B4542F3EFD9232A6CAC2ABA2BDF4E79C5024AF4485F02C2C27C55A49AF3A01F23A89006722E424C8C4677115E0968D2211202D60AE14107507E18DF960152D9AB310202329794D8CF35681125F1DAC154B6C5824657D86971E44965076D95CC2A3A9493C25D4783C75954AB367CF9E0F6EDDBA55D4C9E2474910B784E862BA842B89CC1A0F3EA3DC3AFC679E66E565EB2C8B32BCE43D5CFEF8E3397E99A5D369F120E296C3838DD6D62E9E3098FD630647761DC093CC0C40E07013BEF30553BC026D224331902FE545C964A5E53B803D7A6DF226266EDF134F00E908FEC8E01A39FF35BD3A8BF373940571263259F6367A086D44BCD799006512E439F63CDF2713A033091EF47A70ECD8EB18FFFD06ECAB161AE015A58F5508D87AF9AD670B1635FAAA7292A78B3CF10B7E464F6F8F58E47273292FADAD42F4333441E45E55304A9075573F666AC5B4E43BBD5E1D124E9EFC2171E601672BDFEBB59ECD1BEDDB8CE73CD7717E9EFA29AA662B7F03FA37F6EF115CEA590000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (171,1,'UPS_rackmountable_3D_(96)',0x89504E470D0A1A0A0000000D49484452000000600000001A08060000004821599F0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000AC94944415468DEE5596B6C1C57153EB3B3EF59CFAE9FBB7642E2786D27214D1A85BA85F44102B1522950408814142144058A445441F9417FA02045A8A0F0871610215204123F9AE60750F81114BBA58196089A384A681CE71D278E1FB163C7DEB777ED19CEB933777C773CEBDD38B6CA63E4A37BEF997B67EFFDCEF31E4BBAAEC3723EBB76EDDA88BFB113E9591C3E8DE4B5CFA9640F0BCD59E2F51F20754992D49D4EA7FF76EAD4A9EC72E2232DB500F6ECD9539DCFE777988013F02BFE83C07DD06F4FE39C77B1EDD634ADEBF8F1E3E7F52506ECA10570E0C001D78D1B371E3301277A1C49FEB0C15D26E18CA265BC85EFBA5C2E57F7D1A347873E1401ECDBB72F466E657676F659DC5027B26AFF9BC05D42E1F492759040FC7EFF5F0F1F3E9C591601ECDDBBD7A3AAEA9368864CCB71CD265AFBBF08EE43ACCF23FD9D8441F1E3D0A143672B71572505B07FFFFE3504367E8CFCF8A7B11FFA3F067731EBEF99EEAADBED76771D3C78F08EA3007C3EDF2F6459F6E364C658B972E5465CB001496113A439452FD72FC7AB74AEFD80E278A177CB3D7E98B9333333E9542A35303939D983EF72C4438F9293EAEBEB6FB6B5B53523E04084C2B05ADEB7F3459E38769A576A9DB806039AC52721E0C69694080C3B0FE3D743ADAF84E837165ADBD7D7D7EFC603EB74684E0406B5C96412EEDDBBC740211EE73B8DF93A22716C7F5709D17CBE696A9D08AD1642A110234551A05028402E97834C26C3DA6C36CB88F87C4D6B6B2B3437B7403A930559D24172919AE26F98DA4A0AABE318AC31E7E9B679BAC9A33F71AC1B7334C69D37CE6452307867C0EE0D74B7DD6444D311C12E4795CE7512905DA8E504205A1F11699A6845DCC2C435F4DD89C929F8D9CF7F6D9D933CDE725D442526612191F9C69799004465A7C78D1A334B87A54D8B4220ED4924121628E5DA0799536E6C071C6CDA170804201289905F656BA6A7A7016FADCC0288D0D7B296F87C4D2C160335CC63CC2CACFF681B043FE18781E45C6C7421685CABC5A772BECE805F75A709CE9CBA68258A5CA9EC0FE14E02F8DCA54B978EAD5BB7EE11510898D742434343917673803C1E4F115FD460AE814EE372F3782B6ABF539FB49BF64744EE880441EE880027C29B387345C4E76BABABABADB305705DFC63EBE178DB71C86A390B90F6481CAE4EDE305C88F0B485E3706DAA32FE939127A0E604FE96F62F74739EB9A06C03FFF6EDDBC3A828AFB971C31711D8672E5CB8F0E6A64D9B9EE1A61B0C06A1AAAACA0A94F43485A7211272C38D7185F95E31C0F6F6F6020AB228A3592CD95DA2DD3D12D87575758C3089606053CC22CDA79613B7007AB66EDD8A31A08DF5E3AD6B20DD982A029F9E6A5F641EC8063F5C31FFE36A075C2C5C85A61551181E1A2720E66172E5CA955B185F5FC6FD1E739B07BB8F2F3EDBDFDF7F76FDFAF5713B00E463F3B9347CE78556A809FBE15BAF5E8682D75BE4B65A5A5AA0A9A9C91288E893ED7D51704EEFC4DF15359F670FE21A6A691EB94C4EA4F9D48A990E5E24616696854554AC10C8111982A860E68F31187DFE00F851B1400CAAD87AF0AC44450A8124C62CFE342A519888A6A0D08EC15EF6C0C0C088210073CEF8F878617474F4157499C7580C108270221C0E9FC14DC74510E8210D7BAEC30F053CD83F3F1884AFED88C091B792E01584401670EEDC39C7BCFE41DB72B936EE13A2D12834363632DF4EFBA37835353565118D2913E24F676727AC5DF708C3A10A852187BD6849AAA1BFDC35294108E5D5628BA3984319D774B838E331F94A2E6C8D891A4351E8F30E81148EC1A776AC81DFFEE67523D89B96824A3E8CF1E908DF97DB765938899B7E9E80E59B207F5A254FC1D79F7B0A5EFCF10978F57B9DE0F3CAD075FA2C8CE714CB3D6DD8B001E2F1F8BC0CC5AEF1A5C8E92E60CFA1C58C46FCA668015CFBA925122DA030639C331256215B0DA004540B68450E8214F08032AB16811F24BE5F0605D78B561194038C1F52D5B904017FA72154079A2EA1727AA0311665C0F38C88F68D7B9B104B146E5B54CEF183D243074B26A6E047DF8EC3A137FE015FD8DE8C5A950452AC9776AF867DAFF563108C33102E5FBECCACC0EECB171A2F34C7292D1663005900F97F6AB90590DF175BE2F375DBB66D83352DEDCC0555630695F64D028ADCC8535C12D4FA6A21A717C0EBF1B3E485ED05FF1AFD51D02404DA152ECAC49ABC0D40B706058A055057558BAE4E83FAEA08C45B569BE799B332C47746C4BC480098DD6CA7E0CB358FB47FE7660936B604E1E4FB05387B7110DEEDB905EF9C1984AE5F7E069E7FCA05BFEF1967AEA0B9B9990545AEC9F6CCC6291B72E2F3BEDD0278DAA69BBE97AC943220CAC8588CC2BDDA896741B48E8465780153D0491D52A84C56E1C627B3A09A484ED10C4B08630137F25548A613C63A14968494F027D97C54591C632627633C903161F1B921A4F86164EC3E4B02D8EF81C4F1A7FDAA8E02C08FFB509B1EE75A4866ECCA8FC277BFB2194F9E811777C7E18F2707E0EDD3C3F0879F7C12829E3CECDE5E0F27DEBF8439B80A23232370FDFA75C77B81BD5FC97BA70C88F749496A6A6A586A492DBF07501624B6E23DA0A3A303E3C5470CB75AC84360DA0BE9B1B4E56A527A0AEA6211488E248B6A54492909B5B18D90184B30E039A55D29A88DE2FC8924022F1902407E665D169A1AEA59C0EFEFBF6D5A9264C580DADADA182ACFA3A820E72D0110F868D66FAC5AB5AA9DBB1E0A643FDD1B05BF9C4786B1A14B37EF415500A0A60A199A11E07EF0D506D8F7AB7EF4853580EBE7DD70C59B6E257C7E2FB05FC6C41840DA4F4220E2A5089E3693DB21E2F701BE8E02B76EBA030ACEAA1C8642B6001ABA0B1D4943C06694026450289AC603AD313FE7C1347728C1809664D276A3CDFB50F063299387E476C178F63EB4AC6C80F7DEEE823F9DEB352DCEB892D119315B5431053D62569927A816D4801B7FB3ADADED093469170F723EB70E03A33978BD7BD0D04AFCC0EA1561F6B1DF9D1C35F25BFA2882555BE581041E98DF9CC5DB6DA97A4FA95A12E78B7EDF5E96A00B182909CD2377474013A8FC26CCFB622D88E66096C90262369385556A0B78156F91005C18543D8A07C73A1302F199D1B9CCE08B7C49C3D47896AC4083993C06FADC4C9150C632F721E4F3C3ADFE01484CA5E6C5343ADF962D5B1EC38CF11DBCD17FDE8D1AF497D6D6D60D5EAFB7C8F40A9A0CDF3F3258040EFF801D5CBBEF16C1E4633BD8BC15DF8BADD3658C1381CFC9A9C249BE9FFAE24D98C711EA5FB8D0075FAAFF2228F715562C634220AD5725A88AA946014DE38115F91117A833AA5584B3B2C6C02CF8F05E64B84D23989F1FBF085BF547617870D8DABFA9AA737E1F9566F3E6CD9B7A7A7AFEEC46AD0FF25C5EF4B324104ADD4A15DC4AF59DDED9DDCD42453CB1ECE1A4FD34A6C0CB5D10116937F168CF5427221EB920D102C855713F7CEDFA4D98BE96849D8D4FC3D5CC2D74A726D088517B7D8B212CC241E36EC8056B637196E598854EA3B8807AB216E733CC4C7C4F8F9E07CFE53CE4F2055C67FE6B5C022B7DE644E7C47D06DD4EA91E11F9D1BB77EF960CA04BC52F35D79E8A8A7D0293822F0634D6920028E852FA29B6621ACA52D79862552A5FF8E64B65FFBBB5D8E7B4EBBD39F0AD0BA6F3EFB8EDC0F3870E49A9A553CAE8943A2E665EB9F94E6508EAD33BAEF164CEE46A4808FC32C6FBFC22466B48587575F5F0CA0F5F3603AC66D5FB353313D274CDAADF5B2E48ECEB0FC6D3F86FE01E8686EE3897ADF11083E86A66B95998126B58A8CC5C2E8DB4FB72F11D7749957CBB5449BA547FA177620C702AF02D54FE5EEC6F3A7D874A3E54DDA1FEC4C484E7DF963F5A84A50413980000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (172,1,'Video_terminal_(128)',0x89504E470D0A1A0A0000000D494844520000007B0000008008060000002B9216A50000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00003F024944415478DAED7D09801C6595FFABAABECFB9EFC99D40420839091010420847802020417451703D58FEAEAEA2ECEABAEBDFF5BF2BEAEA1EAEC7EAAEB82820203701428418CE104820E49ACC2493B9A7E7E8FBAEEEAAFABFF7D557DDD53D332191633B380595EAE9AEAEAEFA7EEF7EEF7B9FA0691A54EA76DB6DB739ADBEA61F5A6DCE0D8AA2546765D92A67B3798B288E5A04ED9EC19E9EFFB8E79E5F8CC0F4765C9B508960AF5CB9D175E93517DE5B5D5D7F792E9793D2E934D09EC9640AC7BCA240736363AAAEDA7757F7918E1FFFD74FFF6DDF349CC7DEC44ABBA10D1B36F816AF9CFF2062B9114195106CA03D9FCF83FE5A3FA69229D87FE080ABABA7FF96B3CE5DF7CC97BEFAF5B3A7E13C89C03EEFBCF3AA6B5BE73F545BDF74A9284AA0AA0A586D5620E963009DCF971E3B0E76C0BEFD079A579E7DC16FBFFCD7DF58390DE9490276EB9CC577D5D435ADB3582CA0EF56B0596DD0D2D20456AB95039C83742E05876D7B60CFCC6DD0EF3F08CF6E7B16EC0ED78C33D7ACBDEF962FDE3E7F1AD60A07FBB28D9BCEADAA6DD850045ADFAD560BD8ED4E587CFA62F0F97C8C9B0FDBDF84CE8FEC82D0178761F0E31D10A83D02E3C171686E6E9DB364C9D2CF4EC35AE160FB6B6AFFDC6AB58B922421C81298B99B0077D81D28E63F048B172F026BD60190C42F8DE39E02B0E75C306BE64CB0D96CD03A63D6756BD7AE754C433B71B354C24DAC5DBBA16DCE69675C4340EBBB058AA04B260EB7C29A356B60F69CD970DFB6DFC0DE8776832F59079FBCFC338CE323912878BDFE99575DF7C98FE2657F350D6F0582EDADA95E6B77387D92244211701DF452916E65FB82F90BE0AB33FE169289247476EC477D6D87A3DD5D50DFD8024E87033C7EFFBA69B02B146C11D976FEBC3930323A0EA228B27D2AD0096C32D206FBFB60D78E1760A8FF08F87D5E769D6C4E83956BD681009A380D6D85EAEC73579F3D7FFD85E7239036D0B9DBBC4F04BDFB48173CF9D06F40C9C661F5D997C24CD4D7555555E0F73A61EFEBCF432C1CB64C435BA16027D299ECD1BE01E81F0A1438DBBC1BA093FE1E1B1B812D8FFE16169EB61AD29EDB60D7C0CDD031B69E713B6D0E9B0506077AEAA7A1AD5031BEEB8D1DDB330A6875D55582208840FB64A0D3BE7DEB6668A8AF859EE0E93077EE2C68AE05D8FA6A33A45369167C218B5C1415DB34B415CAD98F3F70EF1F82A3433B1C0E1B022D94ED45A01389180CF41C86EAEA6A48A1FB158A01BC7A400339FC1C035A5555B62B72F6E969682B94B3694BA7E2F7E2E16C036400036C28BC1EEAEF0597CB09F1781C3CEA6638DA350056B51BDCEA3E703AABD1F58A9001A7EDDEBDEBBFA6A1ADE0A0CA485FD75DE9646288412B4009C8FA6B809C9C659C2BCB32D88420D44A5BA0CA7E043C1E0F04834170BBDDA4DBF7EDDCB933300D6D0583BD75EBD6E848A0FFE66C361D2ABEAB813903DBDC36B3E07A11E0440824BE93C92478BD5E102529AB28CA85D3B05638D8B4FDE6BF7FFCCC707FD72733994CAC08B2C600A5BDAEBE11AAEA9A99FB65CEC333B7CC62495A2D96B93FFBD9CFC6A7619D7C137EF8E33BDD5D870E5C75B8F3E0B538B0015194BAF0FD03D94CA6BBB3635FEFE0E060EEFDBEA9CF7FF91B57B7B4CFF86E6BDB8CF90E8713F531ED0E768CC563F0D2B667201E1E05399B054192544D13B6FFE74F7F741112803A0DE931C0FEC7EFFFC78BCF6FDBBA46102D9C83548A4031A529E84254418B388F4719FF4CE139691C5DE43C25A6E4F3E1BCA28CE07987F379657F707CAC23160D8F208124DEE98DAD5DBBD6B274D5799F689D31F3E659B3E79FE3F5F94487C3C14477281882C3470E1F1A1DEABBAFEBC8BE3B1FBEF7DE9E69288F03ECCF7DFEB67C6F4F8F44AE4DF15D661A15C427FD4DF86BEC1F43AC02230CF61A8D26DA4124638ADE00FC4320E290F19B198D72549A16573535A62A4820B97C30AFE48FA2F4D837363A7C00CF09E21E462251CA6FF09C73CE719EBEF2FC835EBF7FA6A2E4955060785B4D6DF50FFFF59FFF71CB34279FA0EB85064F166175E9C10C1D686E0773E348339B4B3AE85C02682C044DFEAD4E042A7B4F1590F3254DD59CF8B71389C06FF8C0454BC10256C90A36BB137CD5358094A609A2A05CB87E437EDE298B24D4BFAA45B2D017728B979F9DB1488265CEDCF9B0E7F51D23477B0EBFB16BF7B8B7BDBD7D666B6B6B0009243D0DE37172F697FFFA9B631D07F6D549162B7B0339081A672F0049CD412E9382643C0AA97802923C42C54067470E3237A0547A4FE580ABC67BFA6B555340557402A1F70CFA110C9F8A6F24A66FFADC17588C9C529A648891F1451B118B5E8796479F3C0963A3A3108B86B44307F72AE1B1D1A4266819BC2EAA193591574882286174D582283D46D299D4E16C36DB9DCDA47BB914892091687F729C6DB3DB531AE96712C1689C57F9ABE048CD329011138745048F5D00AFA842BDA880A02878061E5554E14A1E443C0A4814A0E440C4BF851CFAC1F92C28D93424C2418884421089C440CEC980CCCB443D814DC0130118C463806E4763CC88851B192E021BC537EC796317B4B5CF048FD7CFCE6B686A86AA9A5AA1FB48A745CE2B7EFCBABFA082504A4916B2D06DE0747BA11AB8AF2E0A288B04155FE72FB9EC4A5231698DEC1015094455A2E8B64572B23C9EC9A4C79048024A3ED793C9668EE473392A570E2281C827B918B72545A6A34536E8723609760426A308B8A35586423E826257124D19298B00163C8A121EC56286CA8A521D7D5D3C8A506F01684702B1318240E2C05D43CED4D047D6904074A290F19801359D0185A448240CAFBCB80D69070908AF61B33920276760A0BF178DB271686A6A819973E62385DAC0EBF3B372A5742A55B02B885C999A61AF3586BCC66D0D464E44A7A049F898282E043B09329D408C67B031D5E24682123811321A11055229F9CB2EBF2A8BBF9541699542A24D28AA12CBC9B9F164323E381A18FEFEC0407F7765836DB3250C8E20AF3B95CA804D4330349B2E6E556E9973318D06181B0412E11A1F0C7A0FE87DFC0FE900F2F83AA58890052B028F446293902804D2CD38A03A81D8887B459D68D867FC2890378012444369A022D0144039834A8965198920CB8E79390DA94804C2A13198BF6C39A096876C220EE1F111088E8C3069C26C048183CC4167F7C9D4906E711A513A8340D87B1A3F9F9DA293094A22324E6C78BE8D118811AF9748FA38C085D2A3B1B1F1C2DB6FBF7DF1F7BEF7BD5CC5826DB7DBE3F4500420DE3EC8721EDC82AAEB6060B30880E3CC06254FE792FE141040F6BE068AAA8B4995F96934C8921EF2C42F29EC039D60F40B093A17922EA78FF098E7E7D03D482845541C4C0D0752B339D9E08B480064AE49FC48BA1FAD3FA8D6F4EF2B2A7B139AF148AA857615558B4225C7A802D47C8E118F4204C48E19145919464C2A932821080D0F41281C864422A94F46304D4890E55CC150358CD692B9156CFC60E65B6FEE9E8D607756B2188F9B5D2E46CB79E42CD4BB8E5C0447D8020AED8215071F091B8DA73CEEC4C12A636B8901A2148843E74E45150A1241E01241D14F60EFE519F1E80420E12ED235D8792AE31A025F435B817D97C8502483908E2A3F6ACCF8A32389248511A0082A4A12058860ECF81A78264C372099AD005AC158CC292A24324814AD79B02E54A00189A2118984A91C942E4819A87A640ACAF32311081AAAA8EA8848D2F1088C0DF6C1A1FDFBD12EC9D9D1C168C09BA95CB0714F917156C45B605CA16573F0E1D5F3C15FE567949DC3074E219567F0FD742609D91C710E5AD9795D44AADC4AD7B8B6245147034BD118454482A02242241291F2CD646DDBEDA81FF98EEF09687D330EE104807A123994C0234220A0D92501540378A44391884CA43B6652897E5D64AEB7C85990BF064E18121221525902EF3B9ECE43129F8B1183A27FAEA2EA51552B128685FFAD16D2A62A12A98A624523A967C5D72EBCD72A151CB335B870F636D8F2D0EFE8B9DB2A5A67835E940B9AB1B3B14610050B64D1A0A28C9291792AA41FF9DF22B7A2754346B7E8459EB1D23FD3FD6FDAC96D2291AAF0693CE96C1689280E99441019070987DC3472AC05D2F5081E271645D1094861EA42D3D509120E219F8AC750DCA35DE0708188869584BB88469D2E199865C50047CC20490067F390921536D384C094445D75A9F49F2070235557312403F4A71275BB848885938FA06B7276460A89C7E274EB63879AA4E2C1160D4EE03B59CF8AC5050934D68A01159373AE714BD730EC34EEF270CEA66B28483039148BD974928149D3785C38282E9F57AF2523FF99139054486B0A2547765F825688DE693CA09345238D7CFFA1C30760467B0B1A956948E2EF2412A3784C2381284C4467F0778368AC25D1DA97F34840F89E0D5514BA6A487828F68990905814B4C215C9CE0C4AC18A44830403561708683358D0A0244220ADA414C057F5A20A6EA7581C6E6368BC950E764AC7DA001BFF470ED45047C793C98241A2A7138BBADD2001A1E8E4E8229C055214482562D07FB41BDE7CE579088D8C821325C4E9AB56C3BC5317416D7D232B42200E643CC48CC3891B13CBC69585E2D1614717C95A0D0974BFE6CE990B13E27CDC86D0833E50625815FFD6033F2974DD68A734294D168CC6E31047232D120D432CDEC70C5699197A2A1E9148289F4E04838444C412802A10FD4EE31EDC15CFD94C4F33578A8744112C15293E994E140752033007BC0CE035281ADAFAFB2A8B70BDFCFB67E0E15FFE0439BB18CD7CF1A94761F99AB5B0E9B3B7424B7B3B50464BE4396995F18C56222AB8FA2E109A2814E891E974D514B717387128F43913C35AC97D995F83C987A68207DAEBEBEA4BC3C260E403A0E48B5AE93FF0B9AF7D07A48699C687150DB6C874B6A07324895E95B92F3906405ED54AC4370F8E16065C33297BE333B28AC3E341D87CD7CFA1DA69873A971D7C360BF3A19D160BBCF9F276B8FBDFBF0731F49355F2A78DEF6AA6DDF45B2AFF3DDD04100AC10E104AF40A7701B5D2000B9412A8615B98DE80423A4028C903991242A5615D018A55342CC46B95D0E0B41BE3E3AA78314E8F4C204902E708326028A799534133236DD6CF06C10BC50F99058BBAF1AD1D2FC0F2D96D509D08D37094FC600E7F6777F761E83AB81FFCD5D5205A2C851F30B89B2C72CD887B09459B5A107940C4A44E74915DE434E316751B42287238986D0BA1C8BF9CE54DF1154E54DCAF3624079740263A611FDA6C127A1976E3EDCAE76C3D22A614DC0C8D59ABC08C9C02D799049CC6931F05C6D60CE085822A48E7F293FE20855217D77B61D70B7F40AB5C29E568D30E3C78A7998D33100AF5690407256754AD18252B66EC4A53B5A51CA9FF419D1BB299345339E41D14E2F4659C6BFE9E21FACD6CEEB0A05B6929542E9F049C4DFA4F51B84843EB98A24E38B43975A2AE3228BA40F1E5CA1CAF555DDF047B6209A8B7AA4C274B65D92D01F5F8787F8F4E58059151FC1DC6C95A31C853FC3DFDB7E83D19BF9B456229D5D94241D2085A29871735317E37938591D111D8F3DA2BD0DDD9012BCFBB106A3D0E98B3F00C8A329974BC50941886272970AEE7D7B75B2D2C6EC055FB4960A0A17C247745777928722433AECAE6D5C924B87ED44C62CF7416B94B754D6D6CF6C638829A44CBB5DDE304BB24C2683A0BE14C0E75B70459216AE2E242654C61800D2ED64CD63318FE7691EAC02CBB05B330174A01374433A9AB2307F7C04FBF783D0889317676D7FDDF07C95B0317DDF89770F18D5F4037D15622AA35D3EF08E6D83A818D2EA520594F26310E4C8C13E0B44B5A9E3D0AB91B66716DC448F40441A9EF6D14355020A3AEA50507CCC1406D4023CDC22374B50E1BDB49F43AEC76D4C162D118D3F4808966E2EE42450C1FEE2CB93D240DB4A27C15CA64B7505A6E536A8091BACAE7E1D11FDC0E62720C7C88911F7145B50B5A22045B7FF66DE87AE315282980E1AA402895DE0523D18A7EB8C873EE952EC609EC94C839DBD8815BC97973F0442BBA5C6539001E262DA24E29C8EAFA06F0DBADCC1237C4381DEB9C3698E975A161632D05BB106EE54906B30EC7B1CFA87A240CCAAC76233053446122E0A68F20158F42B0E7102CAA02B8A41DE0F27397404D532BBF7515868E76B2FB2831F885A2E55EFA3B68A0A1181738D8DAC9C0D9D4AC4641914D4093E1222AB2AE17F3C5812FF7ADCB8F9AC9BAA54A93D3CF3E978528278BC091A676B83D3848E204774B2D71BDF4AC9A01342F6E2BFC5649544F10A01CE372C38D36A7CBCD2278ED8DD550BFEA6238E353DF80CB6EF8B30277AA86E43049865257AD14740711ADC6C3C81A385B5B5BBD15ADB3A90821AF14D3784A36CBB25A14293273B0A1438B7A5BE3850242896E27E299B1EA3C18DBBE1972A120FB2C2EE75950C4839C9046C25A7BF547593E58E3E9D542D18166C4E749AC0BCC55035177C974D7ACC8D1E53DDC8A51BED2608B1EA0D1A9889231356DB3A0768E07DA2EFE387BA845CB57C2F235E7B1D7F1D1FE822BA699743F009484870DC0ABFC3E18CE64A0AACA0FB16884C478153D6EC58A71E24485C58BF32C61914AC650DF921827FF7B72EED42670B6FE8FCAEBD004C906E2C29570209C800EDCC7D0380BA4B2B03F1487819C0675734E6559A542E8D2A422349E02CD52D6C91CC92A11F94414E224809B7D2528C9E631D18CD2E4ACEB6E01B1BA19244751C52E58B2141ADA67413234CED44B91AB2773E98A17AEA9AE82642201757535744F1E7CABBAA2C5B8DDE1609C6D009E8C85C081522D2F5A20836E8AAA4D04BAC448E321CA7C5E46DF35C3A26381813E7035A2555E5DCB73DD028B7091D166F378A0BFA71B22E120A4D062CFA34FAE72A34865796DD4D18A5E4061F6BD550EB2CAED04ABDD01199442E59BB9A4C824CFD90BABC5020E74AFD2BE9692EFB87D3E7860F33618EBEB62491A615203CFFCB77ED16AE4E87432012DEDB3691844BCB7D68A05FB4BB7DE24DBED4E85B88CB89AACD56838062E210F39C1CAC0335CAC1223CAE412517FB2143E707074148E767540E79E5DE0C9C5E1AAB567C3F537FF398CE5018219192228CA0359056EB8E96668B469D0B1FB75E8EE3800A3230148C6132CB841A06715B5548F8399F3B582B54E862055924C59263A69385480794B578356B780F564319EE1E127B7C3B36FF64070A80F72D954411A185F2EBF8E41507E241241C942554383C1112D95ACB3C16EB767544571AB3C811043B1542B2A90058995E7549B8438F37F0B355BBACB168F8621D0DF0B163909CB4E990D676D5CCB0A12683BF59453D8C06C7EE877E0713961DD862B60ED2597A2D8AB831C12D6CE37F6C05B9D0760D8E186A6D619E0A9AD031B72AC08E6C08DA12F753D2EF2C1669C9DCEE85AF218801B3A980889A488E4F241D6560D3FFCF9FFC0D597AC81A79F7B19EE7CEC052432BC54FB7C4846436073BAF96FEB7ADBEC5B9B622DAC379B944B3183931364436583ED70509AD3CDDCAE3C8F69D16BD14A2D308AB16FC348E3044F8347F3AD828121B86CE54258347FEEC41F40B1F9B11B6F84050B1742381C86F5EBD71743A7F8D99A552BD87EB4AF1F5ED87300320846434B2B0B6C689A3936AE53982040216ECE389B8B71731CAE3CC345EA2087E7D1BCEE91C030741C3C08BFF8E98F61D76BAFC19D0F3C5D62E065AC5E180D464072FAC0A54F012E09A16A85A8A1FE1B5E5449E4BDD8BD9E8A0FAC30B0D1404B51A19F427A9BE2E354F24B7558163B2452E989110B136713A750BDF864409BB7952B57C2DEBD7BA7FC7CF68C76686F69869F3DFA0C78AAAAC04B614BA198F62C1880DCD0A023056E52E958312B566EA871DD9E4A25A1BFB717363FFE283CFAE083D075E8901E4F28CF9FE3B9F73EFA343CF7E611B8FA239BE0F22B3742FBCC19CC5D13C05491AA1553BB941E65603B6B2A3EF3C56A06A89C5834258BD9BC2D2A60B0D8209E4C9B8016CAA266024F7E08EF0EE521A7BBF18EB2284D54DDB12E89DC95276348DCA733E909DE82B9C882FCE6683802FFF08DBF85EF7EFBDBD071E0C0A4401B5B3AA74257E721F8DE3F7D1B3E72D5E5B073C70E905195953C6259E4CE8646A7D5E1ACF89CB6A1B3E3E46B1778883885381B5D9BF1C37BA0D76388AD42BEAF30F8B29C451D1786ADDB5F442E97596DB8DE9CCE82629A1FE96F0492CA847A7AFB682E35B378F5C2FC6237433ADFE7F7B3F263D588CAF1EA63118A993091139EC56E47B0B3257180895639B0BAB7FEBEBEE31A90BC29524A538CEEBEEB57B0F8F425E0703A8BF1002EC68D048B0EB6ABE2A3680C6C519492A2201539891E04391B9F025A9BEAE1CA8B2F9C20CA8D71252EA1FA6A9AB1918D46202DCB904B667861619ED5A19195AFE051A6627F7C4F8FD4E5F5346336C7A6F7907168B5DB10EC2A9AD603C941671134B1D49F164DD5B01D3B5F8243BB7796E85D919F4FE7D177C9889B356B169B9020E78CFBD1EF23677ACD8A22F96B632262C7FEFDD07BB49BBDCF88D666053B1E2D36BB3E0F4D23774E048BC35EF1F171A372204903C3734D3AF36A79C62EB99C3A25D02CDE8D0F4C860C4DCA6B6E693109DAA2D5A4F17A3095EAD1791D99C0B917F8D4603A8FA482052581DEDE4AD22B5405B3E12594E864FA6BE5DC19307FDEDC6270C6B4EBA14F8D81F7E99B6F62AD390C408DA6F546E37A63A773F406F63277053548C7C2D0B92FA49FCB5B7CB06B516819A55FB4F710342F5A5AF1694E03EC140DAE6E7871CD489C4D215365E214E8F2BA437A60D12A4E52DE2314FCF0B49C66457D2A5E976AC569721E894612E9A2209604A68CA0855646580562341989A5D523C28499A1061150D786C996C83008C3DC8ECBFC99602A979E6A1B0A04500DD94E0E6B9C389BF4A7C64B8274319E63432D1BC98C499E559B183D2CD998CB833A3D88227EDF9E3DF0E6CE5721120E81BFAA1A569DF7215870CAA950DB500F769B83578F96941B165C1D534D0298B0067349021CD3D59E081801B9038DAF871F7E986C16E62F9365FD99CF7C86198A5311CE641BD92382D57A328971A928820B069A00D9BCF2764359021298B24DA48BC9B7FED54F7F02CF3DF544C984FCE79EDA0C57DDF071B86AD3F550DFA0AF14500AA250C6D5C5BA374128CBA19FE046DFB9F9E69BE1DE7BEF2D4BA268F0FCF3CFC3DD77DFCDF4FEF182CDD4CE4950C02016C53837828CB1E39C4D410E108E89F5E449128A56A1F8DEFEFBA7E1F9AD4F81DFEB8253E7B543635D35CC6A6B04BFC7018FDDFB6B78E277F7A19196D5F57759A2BCDC95D24A2D825237EB0480BEF3CE3B4B8036DE6F6FAC659CFED0430F9D1011B1EE4D056661694E4B6573B654CAD91428A01739457D7BA4617211AFE0775F796E2BFCFADFFF066AAA7C1306777824085FFFDE5D70F5C73E014E97AB3005589BE4CA53BD77A29C4DD2E52B5FF9CAA49FF9BC6E10F09EEEB8E30EB8FAEAAB8F5B94FB7C5E1841F7934B07274F738E572A6727256EA0150C698AA2E1736672CAD4400BC7869DE2E6D14894E9B4C9F4684B531DD454BB616478580FE44CC8AC1D3BAD0A7F04D83D3D3DCC509C0098C70D3FBEE376B8E0CCC5B06FDF3E78E289278EFB9A75B5B5101C09B0DC36F7B3AB2A5A8C930B65769974CE46034DD18EC1BBC7368A6877BABC68AD8E4D094A9DDF03A3C343A5B56E93FDD214B25B3D41B00F1D3A348138E93E7FF0CDCFC38CD646386DC16CF61E89F3E3DDAA6B6A203216803A3436A95A05EFA8225B60978A7193EB25B0D224041BD99BFC4FCB24DC3969D8CA3C886807D43434C0E0F038ECEDE881DA6A1FAC5DB30CAFA7C03D8F3CCBBE4EFDC12949619E8C60245A3438B6B9F0C7E8EC919191094475CB8D1F8675E7EA4B82CD9BA5CFBA25EE3E6EB0ABAA20978841FBECB970B8EB30DD536B25839D2A77BDE474026C92063265BE1209D6A97F4A0637952B9911A26BCE43F7CAED4A42338A6CBFCFC30211141A5D7BCE5238D23B0C2EBB8515EB0B93F8D5667A9A60F11B7E366825FEF0DB6DD9B262870BD7AC802F7FEEA385BF17CED3E76D757676B2208A91AA3DD6E6F7FB4190E350D7D4C4C2BFA8035B2B598C272583B3F9E025D0E0A0A4842C3919D8C763A39517015AF0C13F74F12510188FC0C2F933A105AD5D0B3704DB5B1AE082B3CF80196D4DE0F1F9F552A029948436A9E6D078E8543A6662A37C1B1BD36BC5DD2E075C71D139F0A3FFF72516B933B619335A9000AD2C426688FCE3023B2783D3EB634122A4BCAA8A07DBAC1BE3C17170482AA4043BEB3372DCD6B8792A16825D555D07A2AD1867C82B7A4BAC3C07E8E0E10158B46C798133B563580593496C523FA4668E77DBB3678F2E7ABD4EF8B77FF82B701663DA6C4BC4D290CEE6DE366A66DEA82332B9AA76049B085C10447725839D62E2078A75DBD1588295266976374462B1B7B5C62793EEB4DBEC3604B3B84426CD77DED77194C59F696B9B350B39DB571ADD7A3B3D6D3A8726061E2FD824C2C9A5A298C2C048185EDD7D60C239A321DD7E2000172D5A747C8388D7A36940762A53A6B95F825091605B4A38DB28914585984CA5C04AC910BB07A2F1C4F1B9D865F3B73595A7026BE6C0BD0FFD82A523AB7C6E7455FCF0E0E6E7991F1E91255881EFDBA9DF8A2415D288256151B3322F7B4DE5C8C72BC6292C3A63C60C5AE015B66FDF0EF73DB30B96B6B682A34997BAE9BE31B0C5F4063EAB56AD2A5CF778FC6D9AE142A54CC4D9AA28BA2A5A8C3B58F2DD54D847F56854468CAE53187DE5E311DFE680499EB59D4C41687C1C06FAFB60F7A13ED8FCFB57A0BDB5010E1F1D8266D4DF5DDD03AC17CA91CE0E08048621118F430E75259B4D5A66666B53F0B868B1B234E5F144CEE8BAB42C5473B3DEFAE4ADD75E87BA30EAFCC3E3A0758D416D02A590DB0D9FBEF24AF8E4B5D7B2D509A894892482A228C7F4E929ED69B3BB581650AC50B00BD6B8BDA0BB4C8585D4AAD2523591B385A9079472C3547E1C8D446074748401B9E5F14720158BC2F215CBE017776F063BBA5BBBF776C2D225A7C3F6575F83575FDB0DABCE3917569E750E343436414D6D1D78FC5EB059ED204E62B899999CF2CBF95CEE6D8136F2EE363C0E72C3AB0FDD306A9B51957714489F3A307DE1820BA0D1E502F9F9E721565B0B427B3B78D085A4664292217D26480D1B484E87FEB92855B61877B24A0B9393CB27E5D3443DB92419323557D3A0472261E8EFE983BD6FEC826D5B9F86EEC39D6C3A306D814000FEECFA8FC0F86800D65E7821DCF1C31FB1F75864EBC86178EC81FB98AB76015AF067AE390F5A5A5AF5FAAFC9D296FC67A93FA951FA7B2C8E4E84C3907DFD7518D8BF1FAE5FB10232C8B1BBBBBB219A4C429DAF3494DBE0D7DBA0DA90706DE497E31E43C02DCB96B1CCD854C9100B1167A573F6976EBD29FBB5BFFF8ECADA8819592F9A6AC39A8DE939EDB70B70B0014517EDCD5DBBE0973FFE3718E8EB9D20F6481CFEF75D77C3952826BFFDDD1F323159F239FADBFBF7BCC1F64307F6C39FDFFA97D0D2DA4ECB374E192827CE4E478E2DC65951C2C183E044C017B4B4C0ECC64608A0E4B966F5EA09404F658513E854A34E7971A9386BB3B051485822EED6C1AE686B9CACE63405418A11539AC62933FD2D73CB599B2CC505C01BC4294C74FFEEEEBBA0BFB7E798FA6D70707002D0E5DBEBAFBC0CE3E363ACACE9581B791154E2F47662DC7C375604E4BA73CE814F5F74D1710F948DCF5F37AE477E38E9F371B449868686987DC29AFAB1D46865EB6C2A274E5A50D7E4A8E9A4D1A886BA090B467CBC6CCA6A192710E0D94C960DC2BBB151FB0B63D58209CADAB4514D59381C819EDE5EF6FBD96C86D90C5939CB5A5E919E4EA1A8CEF6F5818644467DD2484F932790D77443306F34D4A3EBD1DFD486035FE7E835FE688E489FDA616FFB03232E8D55D4EA8D6AF10D500589F5539B85E7E80BCE55B6EBC56AC7050BD5F1EABE0EE3628A8F97CDE69CD287CDE95D0A3D5EBDA95DA12F092B003416EAD25D98C0D838FAA41E163513744E60739C056A7B499D8B91439C5E3FFCE6C96D607F6117EB59429243E14DEC55DE2057E3819B6C7004449B1D04D49912EA78113D0B0B5EDFE5F5E1759AC1568F635F7B1A084B72ACE8D0CAAA5B45BD5010EFCDC12A62F5D6D9F49E15EFC3429D94A90256D42B60C99F678D72286247CD7115BDF729231A36754A05291E62F78F44E0686D6D75A3044B5626D8365B9CD29CC519AF1AAB1DA76D382BC037FEF53F59AB2C7A50E20C7D86A7CA766A449FA2FEE4A81BB3BE5340387B169EA3400E295E15AD20201060B1931583AF1D90A46EC308A8C038030983EAD098AE93987EA6A2431501EBF6F8F16B0EB0B1CFF11234F75BD47BB490C6612DACA9E516BD96F4CFACA2DEE29AE896BDA696D7F4A054D028A8ECBB564BE979AC673AFFAE955A614BC07F4364F571D4369B360358D6269B88985A6E0A7A69B380D60E7B0EBDB3B23175B732C1C69B4FEA25BA66D74B4F730ECDFA100C1B8105D1D4BF9497F426F27ACF34FD8B8A4E243820562A24140ACD4C4DDFD7DD179A3EAB7FA60F2AD5AE4B82A80344E0E351B04825811512B512D725C5898602EBCEA0F26ED76CB90A10790F35DDBB60131944222C5E58C8CA8CF529BC02EB852EF0D263A150AAAC1AF3CE799F53268554BD6F395DDD82368D2867D87C76919ADEA612E042F70B558987833D5891608391D32E642D7108A96594A9918D397E6D2C18C3F41AAB3636084062E254AFE42F020DBC916DB1D1AD5042088688E7D53D0802270CAD3843403065BB8C66F6C69C2BADA42FAE509CE6AB15FBA91965CD1AEFB82452068EEAC1113489F2F7D4B395CF51677DC9A91BB38C3A1EED801CF53F4DA7208B1E472A1683E0E818BA90E89245A9376A96B715D3EBCD5142E266A1C8CDFE4A053B59888F172672C9BCFBBE50E81D5A30D4B85E4F2B5A1168C1DCD4C4042608A6AE8485A662A5F175C14464E68A42284E982D743E30B569B0E300BBD18472A161E80299C506245AB38496ABA0FBA73EE1F92C687C05029ACA93CCE211B9308A1E41782CC85CC64C462E254498588DBA72C57274BD5CF0D2F32F165740528B4D418C261C225B52436AAB58030D8C0A5393CCA481D20A0BA04271263ACF3D6794A298346ABDCD13D54B2C77A138DFB9B4E18D806029E01372E05732E0410EB3A83A58167C2DA27411541493B92C2D58827B8A35BED790CB94541CA2E89EF50C0EA0DB17865822A52FD548BA9F1B573CC861F8BF25BBC0D5872E7144A66FCD809B9F852264175D7C19F40D8DC0BCA141E83CD4699A900085F4B00B0DC40BD75F07F7FEEAC7150D76B134C968E7485CA10985C202E33533D45174CB6A1130A7A88257CC8117B9CC2BC88CBBA813BF887E3255BD080C38BD1B3FCDFA141034F49540CB2420111C832002D63936C6E2F0275A572672500964951AC84BC8DD2A19870830723A11B1CA8FC7029C1DCD93054CDD1B522985196AA4BBD9C4434D6F435DDFD0084DCD2DD0DCD206CDCDED505357C7BE5B55535357D99C6D0455B888CE2763B0048611307D492791C423178BD9648271191070C869C970104243033088A231180AFF51F5DC7FEC56E8F62F92CE248025360BD4009D2D35A1886C258172B0DF1EF0A244BAFBEE5FC382790BA065E65C5879D687A091E691A3F72008A5F1FB4838A48583636F543467B3FA6793EBB563DB56806DBF37A95AA110F67CB78227EF05E86478A952117411413773F96480F3C817D3B7D43AA3A6AE81B5A5A6237589A8AD6B044A16D139730AC4500499A60E0706FAB5A1A1BEE8CB7F78E6D71D07F7FF4F4573362B27364FBE3156BA31B5833426BF55F236017485C4BBC28E043C1959B4589D1741A529C2B446585D3D825B5F8FA036B0B968451D2E96E5B3F5B543464703301A1896C7C703E343037D7BBB3B0FDC130E8D3D3238381803F87A458E4B29D816C9B4724031162E70E42980325977A28A7918944C546142ABFAF9FC3E367F8B0A257DBE2AF023B8BE2A3F7B4DC6560144512C7069815B4D459459F4A3C3E3E3100E05956824141B1B1BEE3A7AA4F3A9A1BEA3BF1C1818E88393682B15E3DCF52A5DF48C072FD0C548A361F25EE9627D5EB5A4AFBF69D1D7E1345ED3247D3695978E369AE06F07B7DB85C0FA18B8042A71A70BDFD32D7151B7C4457DC27F099865F97103588AC5874241888643F9783C9688C522C3E3A3818E91E181CDC1B1912DC8B10370926F65069A046E7F2DD74542C130A1B9D5A4A73D766F61C29BC88D1963C2BB28148FA260183EC68A4008A29580B4EA6B6CDAACEC3585412DB4EC934D5F68552A58D56289BB44808926F04A3E337DA7809EA91C95C4395B03249144624D68997446C96633323E4F3A934947B2E9F458241A3A3C3E12782C121E7F0E410DC2077433831D2790ED4E6F319021E8F1608A26D9781B891240240E007F5DFE99249682351940C6F7CCEB71944FEDD126A925A6E9426414D11A24A45AF23959CDE7722A8ADD982C67E37236339E4E260752E9E43EBCC0ABC8A5BB11DCC0646B74FFA96C66B09F5BB66255F068EF43B5B4DA1D5BFE98324D6573B0F40693D4DC86023054C7A3B2235B4B9B6682D22A04CC1216A8F08E01AEE4C5C2BA98465F31DDABD13BE871379E42D1AA8414278A16265C78633901411751BA08AC4D36EFD546465613FAB6B4F2EECC99B3A1B1B15E743A9DBBCE5F75EA9930BD4DAE2ACD3AF85F7EF22B5B707C74E9CE575E384D2BC44CDFD986D7D1F2F91CB5B91EC36338994C0403430311521B9371D96F1EDEBAADA5B9E5022A221C1F0FF23DC48A1D42E8BF279249D6D2837A86D6D6D6B29EA134B1AEAEBE9674F7CB1F5AB1E07C289D3C62344464F7F2A70C76C9042E6A6D89879D00B7EF7C5F284DF76744BE3346BEF3FEA7E3E628AB81975134488509242DF2BC37BA5A58935B85782CDAE8F4D45CABAAF9989ACB8FE472A9107E999E89CA5D72F87374CC73F0158EFFFB4E00575D75D56C97CBFE117CEC33516E35A02AF453E6155566005DDBCE5C4E7E1E1FEDD08A152BDEFCE637BFA9BE2760BF0FC01A3B39F4545846F5CB2E87C3335BB0D997A095BDB8F3E0FEE5ED6DADA6F87449A759BD9B115F5ED168CC63BC763ADD73EB1A9A7E4B858FBCC332C534B3285512788D089E3486F2EA4026167D30950A5307BE04FE46EABD06FE9A6BAE69B0DBAD9FC71BFD584ECECD120445A266BE2CA127E80BC353212312EF22359FBF106FE5161B1AB407F6BFA57EEC86EB47F1E9EE8C46133F79F2C927072A166CA11889A0DF210BCFE7F2562D9744EB52C9E6380B3F4675A13669B4DA298F711B6942D1086AF0FCB261E051A17F697971B13B327D3677EE3C181909E89D9064599465D989069B1381A769B4F3713FC7EA747EBAD6EBCB8A92B50BA5C023C140CF2FF1FD20E5F4816545DF1EF46F7DEB5BE29E3D7B56DBEDD2E77239E522E4C666BC774A6EAA287914B43BD292453A9ACDA4E78D8F8FBB49FAF8D055B4B3808DC00237E6CDC7167F2F7D0FED2531954834A1EAFB9AC32E7DEDBAEBAE09E0D87CE1C1071F79A062C03689672AC8F63A3DFE350EA7FFFF202CE7A00167D7AD69A5A054E921ED76073B7A7DD5CC03A0F5B20C80F5A6787AF33C9A9BC53A2C49A618B689F7EB5BE7413CAD403E1385ACE93C804CC93421B41FEC68C22FC6978BEB5BE6FD8DC7577BE7D18E57FF1EF48E095356305E71C515D51E8FE707B29CBE11DD394B2848B96CBD5883939E88C42B22505655D1CE608199ACCCA273646BE87976BDC2A7B0103DEE44A0D535B5E076B90AC44C5E8A97C5107C4C728D8D8D3645A391FBAFBC6283ECF678BE8B97F8D6FDF7DFAFFCAF818D374ED7F4225A4D7E6FEDD725C9BA5151F23E3620651BD55AB3165938083469DFE9AD2F4CE711454709D0B4D3F9D44E8B06C35200526431802347BA61CBD667D9EC138BA451388D816BC4C28F357D47CEA6F062B59F3965D9BAAA436F3C7B0BBE159AECBC4D9B36FD8BC3267D716C7458C8645240A296E203E489D0B2CC4A610966454FC4A82A9F42A4B114AC0309D566B5C72D366710EF6918EF2F869FB9F0DC263CAF3E3436EA1DD73489EED5EDF5A024F0B3689F510FD0D0D008478F1E85FEFE7E9BDFEFFFBB79F3E67DF5DA6BAFDDF0E0830F6E3B616BFC5D02BAC5E36BB8C4EE72FD3BFABE8EA9CE254E76381D6C3D4E02DB4ECB22DBDCF89E175DA97698356B266B9C4B450554AF9D61FEB4CC80D5BB12EADD11D9AABA9495C3C1B058684D325AD93E5DF80EF54B37FE9EEA5929B0D33AE77402AA63DF8ECD17E279C3650695D7E371EE0805838BA8AFBAC54AC426EA8032509592D70CF4B2D724C65B5A5AB5583CEDD9B56B57D664BF982B353404AFC566B5FC732A11BF3C2D675CF49C345182BC0E5AC7E58517B7439AAF7E4C92AEADAD0D5A5BDB5E429574397279F47D019B8BEE1A87DBBBB175CE193F191FEA761C2B864DAB17148176B0A30309C05FDB04165A071B8A35DAC61A9F465548A18728AF3733121F39390391B141248A0C9B70C000CF64F406F9936CB45C86B7BA1EAAEBDA891B6381C1AEBF0AF41CF81DFE66BC94A33FF23A72E60A5A24DE69B7B2DF9A0C6433371B5C6EBC662B1FE0EF2D3EFD8CC71E7CF0A19BCABC10B38B68780A0A72AEB46AE5CABF8BC723B74463514F0E89BB1F2557DE349191868242C64B4E5F2AE7556DC5238F3CB2EFFD02BBB569C6C27F6A9EB1F0C6E1BE03904EC6263D97195A0432D7D3B4B3AE87363B3434B781C757A58BDE62AD52B1A32177B5D8C40463F57ABE606C682C00037DDD8CFBB3591DE4F2E723B1EEABAEC3BD011C2E3FB5AD8C27E3A19747FABBFE25161A7E154F8969A685BD366EDCF87959CEFC48CEC4592490B5E856388865AF752E2E7D5D3E41B1ADBD5D7BEBAD03CB2291487632CEE6BBC2ED869CE13A5E7AE9A5732D12EC38DCD5694926536CF284F9D2947E5DBE6CB966B13ACE7FE081075E783FC0AE431D7DE9FCA56BBFEDF1F866A6126148C523904C44502FA64B0127EEA69838026C63C90D1B134B2D6D33599A91E9637661B12C746AEA4BCA4A99353EA82A7475EC83E1C1FE82214696BCC349AAC1C3763BBEB63B3C04403E198FBE150F059E1819E8780C2D776AC74031F194D912BFECB2CB9A45411D88C7C3A2D522E91C6C06B944649772B4AA4EEE1E530BB0BABA86BFD9BEFD852DC6D04D168B3281AE70D0B38B162D72B4B4341EE8ED396AA105E8C9F0A3E7A6B6252A931C5658B2E40CCD6A755CF0D0430F3DFF5EEB6CB2B4A9F66A41CBECC5D77AFDF5ABDD9EAAB9169BCDA9E4B2904A4620938AB30980B4780CB5BA24C38D0A1D991186C7C6E6660636CB785171BE68E26E959709539BCC7C8E5F47D15728C2C7181D1B631C4F717C02D66A75311580B6431CF5767F36953892C924F787877BB72593A15E6E88C58C404BB9CBB571E315F7078381EB68BA900EB0C24576E96B23B863007DAC8D545573EB8C6F3FFBECB3779B050EDF2573806912E0E5050B167867CD6ADB313430289104239B85EE85263EE4795FD895CB572A28D3E73CF6D8637DEF25D8020F9650DDB48F59E5008D35CDB3CFF255359C832ED829369BA31AB9D84BB5B686EB4486988AE05319AF30494707A3AD34CBA269FA58486CA501B150F08780CB79594EE673F9785E91C3D974EA08827B301A1D7A33111AA3874EF19D7CE904178F8A56B21663E976D1456B13D974C2ADC7E42717D3CA71826C6C2EE4EC86C6D69B9F7BEEB9474C9C6DE1E3661C25FE5A321180013CE9F29A5316CCDD3A30306049A612C840190634651229BE404DF8962D5B114D67E416043CF59E806D02C7A04EC3D7A6800ACD7FB2F3D72EA7A7AADEE5AE6EB5399C4DE88A34A2455C8BA25D9F37AC1A1D88CDF30CF59C1872B6AC2AB92089DE7C2E3B964B2702E94438801C1BE300E6F94E56599A1F65234AC639F86D9139F7DC73BD92A8C5B2D96489989E4C649FC846EE93205A6B5F79E5956819674BA623ED363E5EC66E80CFC6A1B5B5D5BF72C5B267FAFA7AACD4C42F954CF385F8744E696F6F83B9734F79E4DEDFFEF6EAF714EC29A26882898A2D262AB6F1DD621261E64E585A21E156B454737C574CC68CC23F2F59EFED78809DE29E2D175C706E26160D8B13B95807FA4437B2434E3DF5B4A1279E787226E5872619239824A46C33C2CA9C71ACC639D5D5D5AE0BCE3F774B6F6F8F93F2F5942432EC15F2CF972F5F49B4E935B8FB3D8F8D9BF460A1052EE8D3072B7923A2B3FB3DBE23C1F1D1F98AF2CE40365451437DA3D6DBDB7F295D9FA76EB549B2717C49539A68C48838CBA55396AB470F075C0C87C3A9DF3FFB8775EBD75FB8A5AFB7D7ABA057928827996A23E32D1C0A8A0D4DADDFC273BF0A265D30BD957219719563CFBE039FA05CBDBEB240EE8F069AEC8DBABA7ABAF8C7F7EEDD3B026FDFB851CFCAA054E212808026DF3FCA0DCAAC21C5E2F1B8FCD453CF5CDCD6D69EF57A7CCCB3B1F05620A1709866A5DE62A6E0E9AD0C6F4384F6F4F4445BDADA8E1C4F03FB6305905A5A5A3441946E7DF9E5575F37A99B13918E2A575B4913E069C30E49A7D3B9AEC3DD37353536B2192936565029408A66CDA8AA67C3860DF5D3601F637C0D71BA73E7AE9B66CC98AD9437F2795B90D16DACAEAA86F90B4E091EEAEC5EB763C7CEE74DE2583DD1742A3F3FCF3D0A023CC2C167CB23EFDFBFBF0B0DDDDFD16ABFAC2F1B8FA9CBD90C1280FDDA69B0A7065A312257A817E3AFBDB6EB430B172D1A7223D7E8FEBF3461168811C4A1E01055CE2C5870CAB068B1FFE5E6CD4FAF1F19191933B97DF289727619E00AE7EA5819E0EAE38F3F7E474B6B5B5A9FA049615437533F48789F785F8B174E1AA4A91E4B100C239206D5867A31FDF8E34F6D5CB060C1EC53172EFA42369D5D99CD651D68B00994A8A0E895CBE9545C6E573F9EFAD8BE7DFB1ED9F9FA9B514E3832073AC68FF9775224C1EF4FE5F767F656C8B5B5E2A7BBD0FA3B97B8BAAEB69ECD5045B17EEA34D8C7E66E99075F2C5C8F5B3B3B3BBB71FF526932C52AD6D7D757CD9A356BAEDDA1CDB75844B9BDBDBD5596E5642C168B728013FC98FB635CC129389C4097CB227068E1E7DB29C0E2F6B810EC3A3878F00078783FAF69B0A7E69E3CE76C63E94F9729BA25CE9933A769C58AA5DFCFE7E485B1785CA492E620753CA62C94DB01AB562EA3808BE6703A724EA77B5092ACFF8CDFFBCF77F93E550E3889724B636363CD48606426A99AA54B97C3A18E83AC663E236729472E081FB482CB8D1B371228B7E27351E0E2574F3CF1C4AE77E886597804CB610435AEBEFAEA7F74D82D378C8D8FEA6B869A63DF0E275F844E64491E5A103E1C0AB3808CCFE7D36AEBEAB7C8727ED3A38F3E1A7F17DD4516A2BEFAEA8D77F774775F76DA698B61607080A54389FA66CC9CA16EDBF682E58368A07D1AF7EFE3007C1E07FCE7EF82B8CC9B746EF0868F6EFA0E32CE0DA150C804B4C6032E799653A7F42A1544D4D5D4C09C39F3E0CCD56721A72DA5EC94D0DB73F4D268683C7ADD75D7BEABB3FFD6AD5B77B6D5225DBAF0B4D3A11F81EEEDED63A95EB60A225F86EA03C5D9E84FDA5184515FE939FCAD305AA8B5EF46D52871F947376DBA23A7646FA7456E14B68E681692C904EBB54631727DAEB6DE988756F073D89D50575F03355575AC712071BCC7E386FDFBF7B279656DED3346545598BB65CB96E43BB82F71FDFAF56BD14C78CC6EB5B8DE7CEB2D181B0DB06C203D361585CC9F774AE289279FF27FA07436024DC6D36C1E6DF2E2C33E02ACA396A0BC13C38880BEE69A6BFE4ACE656E0F06C7201E4BB0E894CEC156D64999C8895C324A3152B743029D0A34C29130B8DD83505B5D070D4D8D407DFA972C3903022301D4A9071A1B9B5AC3D75F7FFD8CFBEEBB2F7022F784AAA40A09EEC60F7FF8C3B722019D9A88C7E0007273221967451D465C808A359C4E47EF078AB3B9AEEEC77D734747C76D4EA7B3F1ADB7DE1AE72E0A8961F94439FC631FBBFE2FFA7A7B7E84BC8AD7105C045C3C1163B56F469908953B5388923889F2EE547543952424DA89AB68C9693A95B8DAEFAB82EA1A3F343636B309FED406B3AFBF9708216F77BA1AD0BE081FEB7ED6AE5DEBF0783C6B90A83E81AEDEF568FCD969F5E24422CE168427D5C2BA3B529D5E4E37D4BD1E2F2C3875E15F3CF0C0833FFFC0703672D2A7104B6B381CFEBF5D5D5D128F56F90CA08D48D3895C339D4ADE816E8C1409475C149CA041CC97757B24105D289AF5C563A9A7690E41B601AB2421A0797F38CA46515DDCC06002A2D1180C0DF6B36E903535D52825829666A7E3253C6DD124E09E852F2F404E5DD7D8D8B01AB9D44ABF4469CD702861926A56D622DB588C8FAD9A4C458EAD6DEADEBDFBA95042FB4080BD69D3260981FE12EEDF79F1C51729AAE435B94CEAB14016A6A83146F1B83A9D4EF9286AE672BA19E70C0F0D8322A88512294A59522C9AE68FDB509C53933D74B158B995CCC0CEB0240AE9730A9FC6900359462A8DEFCB3E14B96990D046A6C0CCD8E8C8C21B365D7B433C951D74B95CD7489278716B4BD30254C912AB33A78E17ACAE4EAF45B0A101E8767BF435C079BFF5423F74FC8FD6A973395D34AFFDB328E958B9D507026CE4B86B288CB867CF1EF2636D3CA4180353C11E14538782291021988E02FAA9125ACD97A3A1752B72D2F9C4C5E82AB1150E4805CE9D370FA832845C292AE7256E8DC4226CC90B3772A9DFE705D121A2A84F80831555EA1C9E41D0097C8348A8B48A385340C38EC0A15225BAAD5822710F7166221EE6F5F2A5ADB79D2E279F55E29850074F52278E7A9B7434FD0ED9123535757F78F4D1C7EE319EFD0301363EDC5790BAFFB6BFBFBF2081F96E1435F0068D8251ED2142B1F2C3B260C182DA993367DE88FAF693784E355EEB5E04E351BFCFF70387DD2E343735430C010FA3CF4CC57D1EE42812CF49E4F64824C2ACF150709C2D456947FD2D59F546B84443229EEF96DCE802650A952E643CC96CCD3091F9E514CBA6C90644487A5F1B8175933045E910B81AD097F600A64AE83765967655C089B681D7EB4122A867DFA524889C53EE79F8E1476FE1C4AE7D200CB4ABAEBA6A0D3EC3EF77EFDEDD3638382871B19D32251CCCA53E5613C8D299679EB90407F153389857514813B9E34E1479BFEAEBEB23A9604102685CB572E583996CAA050D2274A9745064E22234D48CF54C682C53C90CB3BCC912CF9B261E7269C2FC5D1B72BAD56263FA941690B1D8F48A5A12FBE6AE8AA41668020575ACF05755B1BA707A9F6AE0A3B13837004B37922A7EBF5F8BC7626F1D39DA73DB4B2FBDF49A41F086617AD273360E3675887F9D1AD69B62DA4A19F7160AF71A1A1AAC679C71C6E5C8C59FC5013C13C7A15B96E5BFDEB76FDF6FF01A199388B7F5F6F6E6705F7BC925EB3F9D93725F496762821B8D3187CD85835BCD96752270A91F0B894F975BE73CEA3D4362D528792657C86AE33D6188EB2DD642335C63A39A74EA1563F8EA5ED4BFFEEA1A4624C4C941B4B42703994BB66C6064F4BE5777BEF613344EBB39B19317A2983D90931A6C92CB575E79E56AD49D6FF067314476793D9BBA7EFDFAB310E0EBF12B5480578DFB6B08C42634861E4297C7EC831B2864F89EDDB265EB4F50D46F59BE7CE9FD28AE6B224A8455897A507F523F1887C3C53A1F2658A5678A8969B49A8F71DFFA0A08ACC11E6B79ADA74D89A39D6E17531385C5E369E9E940A0B00E9A1113C7ED08AA9B5791DB5F4682DC8ED228C009DD28BA9C3005F964E76C02F44C1CA826E458CFE8E8689C3F93BA6CD9B22A7C6FB5C5623917079F006EE3C03F85FBF71E7BECB1EDC7C8781121996766643B3B3BB338A8675F71C565BF1C1A1C5C333834C87AA9F97D7ED64B4D45A0C812AF41832E895637D5B293959CCFC98CB3D92C186A80CF67A61A22DB98AA6BC3CFD0275711D4642C168FE6F2F920FACA81542AD383FAB90F25C528023B86B6C408DA2623990C9BD36436400BF6C954F1849356671357AF5BB7AE01392CC0A97D844FC88B21B88D783CC5743AA51A7F8BFB8F10E4FD27FA3B50DA3C80120E3FEDEA3CB4613C186206596D6D3D54D75431DDEBF1782734059C6A9562D2FBA160184E5BBC848221FD2FBFFCF2C54343433193CB58BE6BA6A362FEEC7802462735D8C4D928C6C9046F9E4C9DE3B33D87A7DDE970381EBEFFFEFBD3EFF0B70A8588B8BB2FBF7CC36DC1B1D1DB868687D8C7E42F93CFDDDADA5AF0EA59D37A36ED585F61C0BC8D8D8EC291EEA3AC75E6A2C54BC22886CFDFB56BD711139893ED608E199C6844F0A4B6C66994376CD870360EE8A7F0CF55DC30D9816FBF8A3AED85C71F7F7CF0BD2030EECB3B67CF9EDD76C619A73DDA71F0C0AC583CC1822335685451E4CCEB7643DBCC191047D78C564320712DF1CEF9D410A8A7E708D3D5AB569FA58642914B9E7DF6D93F940780DEEDB61FC29F7803A177CAE504BA63FEFCF933162C98F75F81C0F0B278342224D06A36B260648411F8CC00A3BF25BD1D365591CC9E3DF740241ABB7EEBD6AD1DE596F37B72EFD360BF2BA0B3192EB5B5B5DE152B565C8476C41763D1C8A258346C4F673302AD4B4A5D1DD15F5691C3A32E97E7F9C1C1A1DB77EEDCD93395E53C0D76E5036F9EB32596B972E593ED55789F5B734D83FDDE00FF76E1DDFF9541FFFFEF5A2E05A8B13B700000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (173,1,'Video_terminal_(24)',0x89504E470D0A1A0A0000000D4948445200000017000000180806000000117C66750000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000005014944415448C79D95596C54551C877FE7EEB3779D2ECCDC2E2914914DAC8945C0A0A8D362434248435454F0C1C4C4B8BC184582BE68505F78F0C1F86034312124582221156A404429C442B5D285B653684B61E8EC73E7CEDDEFF1452226B482BFB79373CE77BE9CE57F08A51477CBD35D3B963EDABEE9C4E4CCB5884FE4F77F79F0C0C7B8CF300B7534C8CDFB23724353EBEA66DE1F14DEC5FFC88270876114BF3F80B1F333981C4E05DADADAF8FB8573DD2FECFE9EDA2EE3BA6ECAB2AD1BAE65CCA9A6314D0DF3EBF1485DB421EA595DC89B3DC7BE1BB0EE174E5E7EF54D576B6A2712077805029E71215007563E093FC7209B4953C3721CC6B5AC622659544BA52C21A4405D9ACEE6339FFFFCE389630B9AB32C751A2261AEBEBA1CBCC0637E268EEADA3AD4D46E00CFB3D04B3A816572B992CE650AAA279B2B5617541DF99C02617A70398085E15A5175CBBC1EB4466BC0732C063E7B0B565313D6EFFD1492C8C15414D45706E03814C94402F95C164D2DCB601806F67D3251B6E881E60B05DB344DB82E453E9F435DC807279B46269B8161B9506D0B0003866170E88357F0EDDE97004A218922028180B8285C2B6996665AB01D0776218D35CF6C45C3438FA0984C40B11C58E0E0BA0E2875910F3622618BC8A452200C416559885B14CE1058A2A3C2E7A8E01C1D392AC1F084A0E5B3604A0A384BC3ECE438AE8D8DC0613CF02E79003F1CEB41F2FA342A021E66D1AB480963080287E6683D202F41CFE039CC4DFE89C736BE8FDA70051886C0E794C1EBF5E27B8F84B9914BD873F0200281002E4F5E258B9B333054DDF867359E60D78E1866E36370294029C5ED02716D6A14AFEFDE8EA1A1210040C0E75BFC1111C26AAAA6038440D34BE81F1C45626A12576E1521AF781835B53500055CC7C1AA680BA29A042B9381E33890448184C361FFFCFC7CF1AE7086424F644B383E3881ABF1715C999DC7D44D1654F4E08B93FD88B4AE409D9503476D88FE72F4C4E7E0492A38071145D381CF571E0130767738CB960A4A0E872FCDC0B428A4277681754CF0AE89D99BF3B8353303DE5221BA1688A981EA3A985411ADA21FD95C89D644967817DC1617AE39D2F30D6CCB8620F0104401A228419204488204EAF54008045C2918D0BD3E9FC2FA8309DB762FC7E3F1D337AE8E1D3A7FF694BA606DD9B97367CDF45CF2590AAA12CA96143525298AB1B4B62EFAF8732FEE79EA44DF696CEDD8A27CB8EFBD4100C3F3D7C7DFA694EADDDDDD5106EE6B9AA63D28499E65BC28B284E08CA2A8078E1E3D3A0100E4CECF4296650F848A1155C934AE5ABB0E2DCBD720954AC3310D0C0DF60384B5092BBEB17A595856F2A9774A9A864241456363F3ACD7EB9DE058AEE9E2C5DF9A2AABABAF5FB83010FD179C10424255F2BA6045E56E50262088BC9FA19CA3E9EA0D532F5CCA2513BF9BA61A6F6F6FCBE7B259D630CCDB52033F9DF9750B80E0E6CD1BBF9A9A9A7AB2A5A5E52459E89B5B2C9B36AC3F924AA7B60314555555B7CEFE723E4A29B5FE160C6DDAB87ED834CD1AE65E605D5D5D4BB76DDBB6F9769BE5C5E7655956BD1E2F4049B8B32336D8DDDDCD02404747872E885248D335F69ECC3B3B3B3B7A7B7BFB01E463B1581B03F7D4E8D8A89F655998A609411020CB513B1CAECD0B3C5F9EC9A499925E1AFE4F382184C462B18F08217F388E63178BC573C1A06F2DE01ED1755BB24C1DBC20A0AAB2D216446924994C1FA7941EE9EBEBBB78AFE691DEDEDE397AC7E0952B570AA1907F082E95059E2F54D7D6CB870F1F36EF9CF71729B17274C1A189C30000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (174,1,'Video_terminal_(48)',0x89504E470D0A1A0A0000000D494844520000002E0000003008060000006E6548DC0000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000E9F4944415468DECD9979909E459DC73FFDDCEF3533EF9C4966720C3948620E34070439B248944AC088C4A0AC96917577DD52B7CAF52875CBC57277AB745DB74A77BD4F0EC98A012A071194603451018130246008496692997993B9DF79AFE7ECEEFD63262160A1643695F279ABABEB79FB79FAFDF4B77F4777BF426BCDF95E2B57AEB4AFBFE9B61FB99EB7697878C49252F63564D21FFFE2BF7E6A1B17E932A6F2D2C2E557DEE979A9DB6CDB714AA592F1DC89A767F58F0FFCE4CBFFFDBDF7FCC582DF70E3BBAE6E9DDEFEEE74264D7B7B3B2B57ACA0F086E38CC5C3C6A5972EFAB410425C0C70EB7C5F98BB60C1759E97129E97229D4E3367CE6CFE31FE3845A39F83CF3EB36CE3BBDFDD01F4FEC529DEDCD2E2388E8DE338789ECB89E347181CED403A57105686A8D46AD15FA4A9ECDFBFEF3B491C574DD3C4344DFABA8F40748CA8F4386114278F6EDF3E7051C03FFFF9CF9F17FC9E87EE3F313250F858924489D6906B68C6A6806DF8BA5CA97EEA6239A7F5524F61F0C6776C6A324D5B1A86118308801A50065D94528E0AF4A04617541CF757C2F864A1A767DF7871E46DF3172DFE97E6E636D7CBB66E3F74E4D9BBB67EFFFB858B052E6E7BDF0713E5B8A66E5B88A5134C1563A80823F1115140697488919111C230426B854070D98AD55C75ED750481CFC0A9537ABC54945D4F3D3E6A98E61888A280516048A9A41025B23F2897BBC7C6068F178BC59EDEDE5EFF8280BF77CBDF8776AEC1E99DFB565CDBC6716D52AE4DCAB548B91639D72463812514B6500825299D2E10958B609804A57192A086B66CD00AE9D748FC327E7184D1C1417CDF470881529A2489B41086320C3392497CB8F7C4D12BBBBBBB8329998A6198B1216327AF432E6972D14283881146825026666C1229036D99601938298F698B97E2791E5243924892441125922891C4B1248E15619CD0580B2957AB84614CE8D7504924882353C5516AFC85DFBCB1FAC20B8B80035302D710C5412D53E709D62E998361181886816918188620A896E83D768499732EA16DFA7484001947C4494C9C48224352AD8E90CFA48895C68F12CA22A29444D4AC9820955015313521A9FA924A9C508925F93997A24DA37ECACE29D051B95C212F255A830284D628AD4169EEFCC227E93BFA12E95C8E8F7CE97FE8983B0FC77549A55358C20001651B664F6F45298D541AAD01AD99A83468D04CD65A53A954F9E76FDD0B5AD54D391C4AADC2308A88A20835F17BA8C9122509391DB3229F6689ADE87A742752839C6C97681082285128051A1042200420E089FDBFE6B1DDDB49E208C1C4F74208B2D90CF5290FADC5D41547EB200A4382304269100AD499C82EA02EDF48323AC87894208606515A23150831B1AA4C9422521204082D266A606CE8347B3E7B23656573EC779BF9DB2F7C9D89658C4620C8E532A0F594C10D2DF18320200842D0A078798A8561D1366F2141A2B00D415D4B2B4A4D289E68F0A522540AA9279444BCACAA8C4396AE5EC3FB3FF1592A832726FA3B674672690FD334F25306575AFAB55A8D48C644717C16DEAFD528F476D3367F1141BE99414CA6CD9AC3C0A902611C518B24B16462206A7282C4990140D38CD90CBAED98E93A068B3EB6654D404FC267D3296CDB6D9DBA731A66B556AB9248452D08B01C0743C3F8602FEB962FA07DFAE5DC70F51A8E1F3FC6E557ACE1645F1F7B0E3C43E76597C3A48A86ED104611AEE30050A994D9B6752BFF75EF2FF8E67D8F904AA5F8DD6FF6B1EAF22BB04C0B8D269372314CAB69CAE0966D54B5D60821A88D9CA6DED248AD50B50A079F7F8167BBBAF05C97288AF8D5BE7D388E871194298F0C210C8169089228A4A77B8C7CBE01D77579F277BFE5D31FFF184A298A80609C4D6FDFC0033B7FC615575E0908B2690F6188FCD415176619ADD132A6A3B981C5733B1000F3674D3A93A056AB72AABF8FBA7C238D2DADB45FFA0684101893A6A1B542954649791E5114B362C91BD8B76F1FD55A8D280CCF2844737323437D3D6820139541337570DBB04A4A69844C08278D559F09297AE2EE6BFFFE390E3CFE38F9A626FEF3075BC9D6E52662B298889F4218789E475DDD44586E6E6E62F6ECD9DC7ACB2DFC72EF2FB979FD7ABE7DF73D9CBB391A1A2BE2A5DCA93BA76119E35A6B74121126FA6C183C534B99D0E6C56CFDE6E7F8EA1D7FC7137B764D0E6C22D19CD96ABF7AD3FDECB3CFF2F0CF1F218822F26ECC934F3EF98A76C7B66999D6DA3865F06C2E3BA4B506199D551C3DC93E99E9CAB588F152959EDED38C0F9F9ECC84AF2AAF022F140A388ECD57EEF828EBAE5EC58E1D3BFE187CC6CCF494C173750D23860124117E9C70AE956801A66DB3F4B26564D21E73664EA36DC68C5700737680AFECF8E4C993DC74DD156C78CB9578AEC7E8E8E8AB5777E41A9A9D29836732B951C334D149FCB2A94CDA8A528AE258919E91986FDFBD83EFFDF821BA9E3FC6C99E6EFCC03F0BAC273F9C63361BD6AF67FFD387898F0EE28E4AAEBFEC32C68B45A49493CE6A92CAE7CD993367A6A604EEB856D51006424654A264228B4C5830DDC78EF24F1FBA9DEF7EF31B144341E264B9E7CE1FF2912D7FCD630FEF7E4547E70AEE974A44BFFE35372E5B4E6392E6D27C2BEB7239A2471FC5F7FD49708B4C7DA3886373DAD4C2A1A46A590E3A0AA886C9D986E2E818FF7BE78F38F2C2F328A578E8913DB4B5B54DCC42718C9FEDFE193316BF11A91408815719A5219B46694D656484DAE117593D771EBB9E3E408C264812CC7486ACED91CAE5182D96F03269BCAC351DE83E6F70A545CD344D8802F60E4A0EFCF857444A534934E54BD6E37DF216223B85994A33663B78C2C4B6A0D736F98F5382B46D92B22163B7904D0419D722DB3E8FECED6F26631B646D933A5BD3AA638452247142AD56C3680A88F6EDC5359D86A9296EEAAA611A88A8C6A855CF98618069524934582662F2DE3104391DE0E818274C7083184FC5B832C15601B68A102A220C0392C4A718FA68BF465CAD30363848B95C218E63D6AEBD963D7B1E432609D9BA3A3A66CD6B9F1278AC45CDB66DC6870B4CEBFD3DA60CF1AB15F24115115550B50A0465AA8303F40F140882D73EEF314D13D7F5705C17C771701C07DBB6711C9796D656DA67CE225BD7C03BDE751BAD2DD3181F1F53BFD875FFB129816B4F554DD3A4B7A7074E7E95388E88A2F83C329881E3BA647339EAEBEAA96F68A031DF44636323F9A6261A1A9BC8E79B28974ABA5229554F9F1AE8AB94C71E7FA4E7F85D3FDFB16DAF9ECA71316075E67235250C9DCBB78A3896B85A613B0E8EEDE0B80EAEE3E0BA2E8EEBE0791EAEEBE0DA2E8E6B63DB0EB66D2210C824D11A29B5D2BE52B224936464E0547FEF899E6387BA5F3CFCA3279ED877980B7809AD35EFFD9B0FAF3F7AF4A5CD60F8862142CBB47C04816908DF104615412084AA22751519D556BDF9BA9B172D5DFEE1C3878F70E8F917E9E86867F5AA15E4B2D94F6DDA70D5D701733219445AEBD77DFC70D34D37A573B9F4555A1BA7B66EDD7AF0CF82FFC9078448018D8DD366DD629AEE1A60C1DAB75C3F7FCB073E987BF2F74FF3FBA70ED0D13E9DD5AB5670E4F0F36CBBEF5E59299795D6C48669F500DF1AE87DF13B5AEBF04C9F9B37DFFC11B4719B52B2238E22A3E6FBCDB96CD6118610B66593ABAB470894EF47C520F01FDD76FF03EFD15AABD70D2E84686CED58F060120557499918B6EDD0D2DA4AE78225AC5EB58A4AA5C2A981A189230BA92814FA280EF533343840B55201A02EDF8A9DCE5C73AC6BFFBE5B6FBDE5AA52A9F45858ABD81A4518C58461441C2774765E329EC9E6F624719215425C2A8431C3B284DDD5D585EF072C5BB2F48B0F6CDFF9993F0B2E84102DD3175C55D7D8B4B7385C3092242693CDD2D8D844C7EC4EDAA6CFC21002A514B194C471C4D13F74D1DFDB8B69D9B85E06379D2D074178FF89C34F7C68EDDAB5B669C8924C2211453161181286D1C4265D291A1AF2EA9903CF2D066C2004821B6EB8FED6DEDE935F1E1D1DC3324C965DB6FCB95DBB1E5EFE7A14CF3736776CCA354DDBE038EE3201296108C7B62D3B9D4ADBC2302CA1B5509A4069355C29FB3D611CBE18C7FED1A0563D3CDCFFD2D340596B5D7EDBDBFEEA1B95D2F83F9C51390C43A47C79F6D3E90C879E3FDC32099E063280B574E9E2598E6D3F383030800656AF5AB1E38107776DFC93FF4868ADC780EF4E96FF5F1410D68C72B94A104667175A2FB7415353638FD67AF8DC19071A0E1E7C2159BE7CC9FBDADBDBEFEEEBEDE5A5978EDDF4BA9CF382842E2184E7797316CCEB3C5EA9565E99074C93B6D6B6F1DFFCF689B9C0E8ABE3FA64709877F9E5ABD7D5AAE5AF546B55DEF4A6D51FBC28E067CCAEB9B979F9A245F3B706BEDF025A784E6ADC8FFC4F3CF554D763C089D74A4642080F9877F5D56BF68F8F15EB3B2F99FBE205055FBF7EBD6B9AE6F29D3B773EF91A000D9D9D9DF3972F5BB2A3522DB7A944894C36ADA338A9D9967DDFCE5DBB6F7FADBE67CD9A95EAEC9C59191B1D33F2F98621E342AA6A59D6BF09217EF05AED5BB66C61D9B2C5FB7B4E1C9FD6DDDD2DFAFAFA3876FCB8D04A673299F407D6BD656DF0CE77BEF58F0E89366CD8306DCD9A350F87416894CB1552A974F18229BE71E3C69C52EA337BF7EEBDBB52A99CD05AD7CE6DDFB4E91D5FEB39DEF3D181A10192382693CE200C81EFFB28A9C9E572B44D6B05216436DB90715DF78D9E676F3185B941AAA4A3E6FB0C0E0C502E9559BC64E1FBAD0BA5B6947263A15078A052A9F403FEA46958D75E7BEDD2743A7D8BEB9A9B66CF994D269BE2F4A9D324894208412E93238802AA7E8DFEBE7EEA1BEACD94EB05D8164A19D4D7D78310E472F5A45329CAA54AD74F7FBAFDEE0BA6F8860D1B3EBC7BF7EE7B8068FEFCF98D3367CE7CBBEBBA574829BB0E1D3A7457A15060E3C61B1F34106F362C53C451C4E8E830A57205AD35B94C16D773B06D97542A45734B0B8630191C1AF6E338EE91523E2784FCDEC30F3FBA476BAD2F08F8E6CD9B1DDFF70F4B29B79BA6395708A1B4D6F7AC5CB9F2813BEEB8439DE39CD6BA756B6F1F1E1AFE966198A2A3A303A5144A4A2CCBA25C2ED3D2DA1A0BCC1F8E8C8DFCF6F4E9C1670E1E3CD803845AEBE8BC1659E761E36FD75ADB9EE73D72DF7DF755FED4B30B172E9C91CD787FA8562B755A6BB49AB07129A59E3B7FE1DC6DDBB6FDD93DE8458BE3AF9598AEB9E69AA58DF9FCB5AE61ECFDC9830F1E7ABD1B8BFF0340797E8EBAD4816B0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (175,1,'Video_terminal_(64)',0x89504E470D0A1A0A0000000D494844520000003E00000040080600000042E9C4F50000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000016C14944415468DEDD5B099854D5953E6FA9577B55EFDD34BDD04D0BCDD2024ADA4413062520515C413306B3C824E34C344EBE8C89CE6732CEE7C43193A81367D4A8F3E94CD49868882406454524015922220842774377D3F452BD547555752DAFDEFEE69C5B0BCD96A829327C3EBD7DABDE7BF5DEFDCF3DE73FCBBD70B66D43B18EBBEEB9FF2E97C77F6B3A2D572692499B07E81639EBDE1FFFE85F9E85B3ECE08BF5A01B6FBAE53E109CDF07E06AE44C46482693625F7F7F6B4AD19FF98F47FFE7071F4BE0D7DE70D3D7AAA736DEE972B920585202E5151590CEA4E0DDE6DFC16F8C678173B8EF78E0E1A7FEEE6C022E16E321C192CA3592D3094E6C047E56EB4C282D0DC27BEF6D0347CA86A9B553C121C04D78EB631F9B195FB87061D0170C7C529224A0E67265C1CF9F371FEE5FF1185C5B7B35BCB3730B848647DA57AE5C39E56303DC344DEEFC05E781288AE07038B0496CE6434303D0B5E70F604ACBC02B01F474EC866834AA7F6C80EFDDBB37F1F6DB6FF7088280E0B38D04B0EF9DEDD01F3F0F6A2AEB2191488300CC7DC43F36C0D11D5ABA967986E779E0381E584FE70D05FCDC4E08F53E89DF75D00D6360F3E6CDC6C78AD5F7ECE8F8513C36F672E10487D07909442E014E41C6EFBC66E8DA756713AB73B77EEBCE27430383CB80E7521C7071B0AD986DD9610BCC114D338614397324A925F7ECDAB22544B37BBA075D79E5959E05ED8BBF5BDFD4B2BA715A53832CA33B7BFBAD68223AFE7ECFE1839F7BE9A597E4B30AF8EA2FFFAD198FC7B333CF7494A92F6B96650161B50C13E813C77116DEA2E184AA68D3198E1392F89B04CF0B5124B4A0D3E54E6B6A466C6A99F5E9C39DFB9EEFD8DF717B57D7DE109C850777E34D37AB89898414685900BAAF0278D3C0C937403474E02D15385343A819E0340512D108C46331D0341D0CBCAFA00028AC2F7CF9ABD0DC32037C3E1FF4F5F680D71F80C181A3B0EDF76FDAF16858E5784EE37931831490C65F24C0E2E228DEB0611B6386620CA7E4D4403216EB8944867BC2E17004057F46F980FBCADFDC928A2726BCC2391740A26A0E3232BA25646627F552B6773A88A905F039797071163808B06D02671928181D354283E8D15E00EC2DC30013D5C24A25C1D27590D309306419C2234320CB2840B27F46031CE43E9E708E03D4260B49D220EDC2B32943531E78F5D5F5F7173772C399C09779399C614026E62C1E67D381ECEC0242C0F316F00232B56543068762A1AB723A51186256182418978383A9B3DAD0344C30F13EC3B0989918263205366474F67B53D7C04061E8D80CDD004BD3405164144E1A34390D4A3A09F2440C7439C95BE9B8944926A4E8D0802F3C1AFA368EB5C8C09171739108B404045836BF19908221A3A8D89BA8C50802056F7359022023E70D8109884341F00A36148249B3C573598ED05100EC9136A8080E242F70A204A6E8C4FB1C20A3164FE0F9243E27834236052F182E1492C300C36731A118F86E13FBC64FDA107AE81B1E9C1CFE8F91EB87068EE35590C541B0355071765C6E37B8790FC6DA3C533BF2CB3CF5A477AA0C5DFBDE05B7CF0F2DADB3C1EBF5E2750E443E771FF5782F8D8F40870707A0AE720AA451C5652503C98C022959059537407599A00926A84E03056C818220550DBF632F2B1AA4B1A9A8354905B54B92DCD3A64D0B14330012719819135514689671A6587C956376A2790B7B9AEB8CAAC0C3777C1D8E7475314D689D33076E7FF03108040360DA3986B3E9171C0B6404C106C9ED8492D25296B19109D0B30AB7E6EB008573275FA3EE895F6E80C1DAA942A8EFD0946202E7814C97D9A08ED226B566EFC641661B736BF83D36360A0D0E0B96D757C0954DD5D0204760EF5B9B72F7E13D66EE37D9E1336D21F33071D64CFB188971B9F8863E5B685EF46E4298BDC615AEE5E3209F078557558B9CC1D7163572C397C84438446E8A991D761E7CA1E11FC9E78538AA5F5243D6C613B2A243CF9EDD0C2C0123362021D135263062768CD015556560A1003A0B90CCE189FBEE822F7F66263CF2DD5B41CDA4732C9F05CFE7EE774B22780225747FB0A8C02D044E2C6B1919B4333307D466606D38D63B5D5E54D952F020930B3828B7C823F9A859F5CDDD6FDA5921E936D92CC2764AA022704230193CFD19ECDA0FF1D71E8645952A74BFF6346C79E1C9DC6C67CD057233EF460FE242E0A6CDFB8B0A1C259BA2C1190ABA14C3CE4D3197059C57756C92CB0D53A79FC3406BA8196E64F2D2AAEA8249E4679AAE294856C4EA22A6A70A7A078ECB0339E6BF0D4D8573CE990E37DEF39FD034BB0DD2C96861B6818382DABB25076A1BF21A6F078A0ADCE57246097822328E52C8BA9F1CF682AA137055C16C6BCE0530E2F0C0605A81CEA402D5B3E6A3AF360BE0C92BA8A6CD661E4D1B0474618AA64DB26FAE00AA7E661B082DED20BA3D70DEA24B20361E39C1CEB31AE2C238C18DD1208EA4B8C0BDDEC0B886D21F8F454140972423402BAFEEF89F8EB63F363C08F19EFDB06A713BAC5CF3551050E5AFFBD29760C982D97064CF4E181D0941066D5F3373F66D656D9E9E43E4762C4E3C36E34E042CD69D0BBDBD7DF0CCFAAD30141A394ED5734AC2A24697C78B92E48AAAEAA2DBED89D1BC2A990C94E09B26526908A28B624E0C410CF476C3F2739B617AD342F6836B3E7F03CC987B2ECC9A358BF96EAAAFF5F50FC01B9D07A105A337CEB673C90E0EDECA79865CFEC3E504914A25E0A11FDD0FFFFD9347F1BD32BBDE5853019FDEF81A5CBC64292336A6729C0D41BF0F44072B0D1617B8C7E78D09BC8061A44AF9178CE3EC96386C069CDE9F8845F05A3D741D3E8C313CDA1BDA9C887D2C1E07511010BC00355595E03ED803A439547464FE9CB92860CF61B2C8214F4CC4E12B37FC356CDBBAE5B881F48F4660F5AA6BE1F22BAF82A79E790E722380B2D212245E0C9B45BEACA8C025514A713873CC9762C231A3B6163E35AFB590A59A735A20954CA2CA639C8D44651869167B1F193BC47A45D598599406FC2025D14E31AB674E119F69E0F9C4D051E88A8F155E481EE4C6D55F80C58B3E838CAFB12C8FCE69C833F4BC868606786FD74E069CFE27CEE1D524E60B62599163753B4DF532162CE12054E3984DD229BA16C4E82B9F49D100BB0F77C1D1DE5E98FF8976A8AAA965DC5060EC428092B555B322085515E5C7BDF4D3175EC87A0A5EB66DDBC6DED1D6D68626163C55690BDE7C7B2F923A5F5254E0A8DEB2C880A38C2DCC968CE3D3603B0786B13BB2F6D34F3C0CBF7DFE178CCDA98C7CE7BD3F844F5CB4A8107616246467D9E9744B5426FE7ED9D2A5B06DFB76282FF1435363336CD9B18309E1B8BC199F17F07AC8768A1AC0884840693E079C32B48C661EC7C2930F52F7C8910E58F7D4BF1666E327BFF835B42D6C6742C86B49F6A776E1EFA98EAD5BB732D0EC5ED4985224EE75EBD6C1AA55AB4EBAD7E771934C8B1BC0A00EA1AA8B59E086CA7CF171BA7E5C7C8B5CC089D0D9DDCFBE534FA1262B514DBEDD9E1CEE9E1AFAF0F0309B692A473FFA6FB7C315175F086BD7AE3DE5BD7E046EDA96B7B821ABCDCB05F5429F2DAB27577CF243171D0E68686E86BA29950C50635D3578DC2E20C115C04E02CDF2F7D34CF9A1438790B87478F8DE6FC14224D319D31B60FFFEFDA7BCD78D599EC80BAEFAFA7A77F1921401D2822866E3725365A9E97165E2C9E0F1FB9CF3DAD1A5E18F6485AD9E34A3201C92744A95B6EDD3CF38115B6B532D2CF9D479ECBB9C36D812D4A90EA7E4A43CC1899A55513CE08A95CE931B8FA969C638459183CB0FD6043150090F3EB616DED8FA2E3CFBAB8D70341446DF3C810EC1382EA3CB4BC23E8D955F7DF5D5F0CE815E1879AF1F32836110A23A5CF1D9CF822CCBCC74261F2E14487D5333CADD515734E01353BDC8EA7CCEC635486BC649B34D03898E8FC34BBF7A01BE73CBD7A07F5C86BEA1089455D6C2FA5737C157565E01CF3FFB53268013CDC33C41D7E93D090C7E948318E9D5D440E8C82854A5DC70415D237C73DE3C98D8B001463B3B996F3F36E32254D64C21C62F2F1AABDF7DDD75DA55BF58877988CD03466FB27EF28CC7A2E3F0C0BDF7C0D64D1BD9C0632884E1914AD8BAFB0044221176CFA3F7FF007D7B0F7CF3CEBBC0EBF50170C76CFE4437A6BEFF3ECC4526FFF19A35701E9A0A1D140BB001619C20777783D6D8C84C894C82B4C95B5E81D19B54346617B3B929AF232027462790663939779C274BA765E8EEEC38560AC6168DC5A014031BD121B17322AAE3918121D8B86337B8FD7E1693B3982811831A8F083A657194BDE91AC847FB401E18C07316BC33F11E9808DA427333C9E4301CB6DD6E100746C1406DE12574656E3FB883252089C21902AE2B302894C23F3EFD2A736B264B3501A2190D329FB909C3360D34C109BCC787CD0F11A70B386C22A69F8031FC08E6EC3F135CE0D405708A3CB8040E9C95C8CA945A8A9862A2EB72A30371B65A206160EBC6CCCBED14586EEFC5DF934AA3D5B11C40439353551D744C9E286DEE7C7D3D55730345058EB6A3A24AFA409341719540075F4EB4C71290340AC028E1599041E563279ECB7F06FA2C64ABB1A24065E65CBECD3233A435AAC0628EEAD16570A326B9C0000715A43042E4590D1E398534C05420AA2AF8FA0C28981D669271B051C803BD4720323A06194C95595D502832701CBCCA42562D83EAC917D459A5C501347D0F6762D8A482808423D838006C3C063B3C9221473D7283A8A581C39ECBA4003213606362934EC561703404F16814D5DCCE6D1C70B0788035F4FF14C050E428E4058AEF2D2B29810B2EBC08FE30F416787D7EA845E2AB99520BC989F882E2CE382F6408F8F0D15EA8EB7C252B0005251F8B22880424C7C710C01868FA47DFD040DAC352DADCAE090712177DA61882549BB8A2A2B212AAABA74055750D78FD2570F3D7BF056EAF17A94783D050BFB17FCFAEFF2DDADA1901FEE29ABFDFBFE98D37E672935C58066DEB447FFAE71C2E8CF002FE000482A5505A5696ABB79742499076495531B00E144C3A95420D899989D4C4443A31D13B3E1EDEDAD9B1E7C9DD3B771E286E5A8A8743E06487D3CD5642C84835B43B279217B9180A6769ED4C146876B22A29B2D91259A8CA1619496525474195594396F7203B97A0DAD282821B89CFC17E23B0204551145B55154B57357568B02F76B863FF81D191D02B07F6EDFA695F5FDF19DF3292ADE99496BF89AAD56E713C5BAFE21C161BA023B7AFA5A08EA2680BC8D678DEA6EBD86C120AF5624E287C8E14A9B4A12A8A351E19333372DA8AC6229B93C9E43B89F0C88E48647467676767F2FF757D3C1F4BAFB9E59686F1C1B0A8289A6C061C99586FAFBC7BF7EE0F64D46822DCCF5F7A7367C01F6CEFEC3C049D5D87A1BF7F001A1AEBA175E639D86640CFA1CE25B7DDBCFA9D49C92ED951E6CF5907C7D70AD75D77CD1274A7F34DD3DE3F7BF6ECD7EEBEFB6EEB4301FF102F736057EAF004EB24D1D1E2F478CFE738B1ED8EBBBEB7786EDBB96E061CDBE1EE5E689AD608ADAD33587BEAF147AC3DEFEE36142583C19B6970BC806E80DFA366E4A712E3836FE238A227BEEBE28B2F16EBEACA2F478B5883EEB31C3DE38869985C3235B1DCEBF562D2620B347E3F72079956AEBAA7656479D834ACBB7EF9E28BCFFD5155FF80805D2E977F4145EDF4EFDAA6B9D830340F9D97D00C82A5152CE0C8EF75A37D6EA5A525EC3B1D2323A36072125F56562651B171029BA6A814857D8EE7B8CF35B42EDC8BCF6F4710050D5BB5EA9A87F0E7DF18383AC4D1BABB65D3F2B1C9EA72C4378140C0969C0E03C782CF52C8B278A7D3C5F97C3EA7DFEF9FD6D3D3F3B305F3E73ED33C7DE6F5BFC2E323CD38AD4D07CAEA57492EE9395DCD146A433EF4B1F9D5508FBF0AA6D4D52347E8AC364F41874D9B0328D6C6C1E972142662E3108FC758F1327F787CC8EA35D3466389F1398307778E5F76D9654EB7D3311E8B85BD14BE5346A8E53613E854BBA74D0578AEA565E6A10DAFBE3697BC310D117F57EB764BDFD735FD32C3D003DDDD8751C0099C04176A5CEBC8B4A6E90D8F3FFEB8FE61818BB54DE73EE00F967E231619E6540A525881C003FE4080ED7B99D63C030550C6AAABAC00412B2AA6C16A733823B06BC7EF199B4B2E17FA733738DD5E909C9E30AAE56B9191A38F24A243BB702CE68A1597ED4B26C6DBB85C4556D38D1CE8ECE7BC8B0D048370E040D702BC962FDBD3055AB651DADBDBCB79CEFC43682824509596B4B0657A8B5A593DC5FBC20B2F981F06383DB8B1BA7EC635BE40E552A7DB331FD38F520E833122718A50BDE8BA9C088AE3B32518DA6C6051B263F3A666E8E9642A3D6C197A3F0EE488AAA60F2B72E2FDE870DF3E7C6E12C7C05480663B111F53684C59D034D306036D9E105390394D24E4D6502844DBC89C142A4C325D0E4D419C376FEE8ED0D0A0A064B20B97B3E7CC9AB8E8A2C56544801FC8C6EDAC74FA10FF4F46E1D073B9550D21BF40E2F1043D92C7EF47DBF30B0EC98FE9A30FC94BD795D4DE70A8BB9392B4496C9E5B8E3B99CDF1DC14AAD3531A9A576FD33C354923A1D91D9D98BF1E4BFD49D5A88443F17C6922917075761EBEE4DCB6599BFB8FF6F32878E8EA38142C2FAFFA215EBFFD436DDBC68129A44AD8468BEE57F1C06027DED2DCC0B68E102F9CEE20BB151DAE2FE5C6644D728F063E2693DB3931251C0EDB5D879C97B7CE6C79B9BBBB9BC7A009928909DA377F3B0F67CFC1C5E371B1ACA2F2F5D3591F054718EEDA68DF5FDFBE7DFBCB27D781B3DA999BA0416CD1C1C1C191C1A191D5536AAAC185E6110E8F79972E5D1AE48AF96F52FEDC192747816DDA25972CBE4D96D337C9E99440E448DB825D1EB7110C96FC7CD3A6DFD1B6AF30B53F15FC1029635783AD0249F3FE8E83FB97343636A127AAB8E7AC019E8FC4B0A3BA5A25D96B454545E053177CE25E4553E6A0ADBB9C0E876C73DC619E777CE7E5975FDEF2019F49E0AB2EB978D1BE70245C2E6058DED8D4FCC65F0CF855575D7511BEEB0EF4EB37BEF2CA2B893F31F3E2CA9557DF6A1AFA0348526C8C94BB7BFD7EB46F09226156E753FD3EDF3FAFFBCDFA1FFEA9772F5BB6AC5592848E91D0105BE59D33A76DA7F897007DFDF5D74B38F827B04D952489D439F1C73CC88D375C7F757C22F66028340298D880A2A9E0C47C9D18BE0423C2BABAA998BB573BBBBA3AFF7DC99245FFB069D396A9A77BAFAAAA9FAFAC2C7FB8B7B787D50929A344B7BBF72F32E3575C71C5D730F0B0DF7AEBADCD388354838E9E6A97E26DB7DD16D8F7DEBBD191D111219D4E33FF4D612FF96C72865423203A1330232CC160A9AABA8AADEB7BBDFE7D1B36BC3E8F9EB162C58A1ACC1697783D9E2F22192ED13555CCA819181B1D63A132ADDFD7D636D49E71E0A4BA389867D6AF5F7F7BCECF2672CD9EBC5C71E9A597CEF0785C8FC9A9E45F29AA028383430C28A938458654A420BF9EC9C86CE9897CBD1B0326DA89892031136C1A1505BE14052561C88AA9B4832D6452FA4CCFA39A7F643C02A525E51B5FD9F0EAF233AEEA57E28100F249C2F0A460C64BC7F9E79F7F1976D7A0ED1F8DC5267E595555FEC9325E74969597431A838EF128C6F818DFCB6C1F5CB650825921086E17DB3242FFEAC9EDF5E06C46AB2984A66DA6F45BDA5D2967144827D398D0F850481E4374884FAF5BF7DB9B49DBCE387054F115FBF6EDBB0F3F928A534AEB59B468D13CCCA02EE5799E086F5D2C16FBC2B66DDB28F474E02CAD5FBE7CE9EB86AECFC0B013CACB2B30C64FB31DCE14EB9B6821E4DE58B112CD80AA425401F220607477E0C1D98F46639048A628FFED27816220F3665757D753C3C3C3E379133BA3AA4E591DAAF9BB9AA6ED4601EC415B6D43B0CBF1D2516C8F20C8B5F9A4E10497E6B9F4D2A5DF1E1B1DF91EA9E9F4694DE0C3A404131AA6EE94F5D1020695C6681F6E5555B5AE28DAEF3121D81F89467745A3D18E83070F0E10F3E79A998F6D3E7221E22310DB3F2198DBF03DBBB1FF35CED24B2FBEF8E2D80708661CF3F07039C5ED23C32322A92B959A4B8201966D5139ACBBBB876D0DAD9DDAF8D98D1B376E3EC5CA36D8A70178560530A7F3E9CB962D5D1D8F8DFF572C16F5D2FA16B935BFDF67FB0281544D4DD5E56BD7FE66EB47AEB99DCD079767B5635EC09E1C9A7F9467FE1F6409D128E154E8680000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (176,1,'Video_terminal_(96)',0x89504E470D0A1A0A0000000D494844520000005C0000006008060000009057158E0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000029A94944415478DAED7D099C54D599EF7797BAB5757555EF7B03DD3408C8260A261845500C113026C485C42446A38913279979E3F8F232F39C4CE697CDE79B499CE864312ED11811350497605406E3CE22223B4D37F4BE57D77AABEE3ADF77EEBD55B79B06916037E378F91D6ED5EDAABBFCCF77FEDF7A4E71A669C2786F7FFF0F3FBA3A5858F81D5DD71BD369D993C9665449F41C002EF3837FFDFE77D79B137153E3B471E3F96C575C7145A86EFAFCC7EA2735AEC86632904C2621954AE13E85FB2488A2088B162ED8DBD37EF4E61FFECB775EF93002CE8FD785AEBCF2CA4869ED8C2783C1F00A399D068EE3415114BB65D9BEAFAF1F5E79E5F59933E72D78FCFF7EEFAEF33E02FC2FD80ACA26FF3C5C547C892449402D142A80CACA0A501595817D887F07769CFD277823FE12ECDCB9AB72FEC2F39FB8F5D6DBAB3F02FC14B6959FF9CCD905A1F0A73D1E0F5093240F03BDB2B20ACE59700E989C0E072FDC0EC3FFD8075DAB0F42D6C842595979DD9C73177DE923C04F45BAC355374A9257228EA69607DD03F5F57570EDD56BE1D277D740F92D9361D6338BE182458B2185B4535A5EBA9623EEF9106DE2785CC42B79CFB7C016106CDA7B58F3782C7A89442270FB97EE80BE9E5ED8B9E34DD8B36B0754D74E869A9ADAB36FF8DAAD73F1146F7F04F8FBD8962D5B567FB4A30B4CC30441C8039FA718095E7F650B6C7B7D334CAAAB81683C0EFD1D8760B07136A8AAFA11A5BCDFADA2BC2CD8D5DD8F600B76135DC07B60E7F6B7E0F0BE1D5058772BF49ADF80506412048341E8EB68866C56313E02FC7D6E7FDCF4FC1B01BF17789EC3C6B326083C03DF340C78E3E5E7C157B418A5FB3CA8ABAC81A1B807344D034DCD9AC968A6ED23C0DFE7D6D9DEF24BBF4F62B6B7053A67BFE6A1ED48330874176A0F1C3CD2057BF63E0BA27E08C82153353DF5F4D38F443F02FC7D6E8F3F72FF93C9786C0FC731E716C1CE37F230BD5E2F984A1B88D13BA05C7C9A713AD9E6B83DFC9159780A1B4AAB31D4DFFBE58C2C77B98E3229AEACAA657B03A9C5E7F381AEEBC8DB59EC0CA1EFBE5FFDF2960F25E0D75D775D70C992251FA8C5F2D07D776F3B7268DF35C944AC9700765A79653594574F814C26CBDEFBFD01C82AFA8EA1A181EA0F63108BBBE59B7FFF6ADB91968FEB28611CCF69C8AC1A726B16E148E1904FA17026D09C1B324C6D48CDAA7D86617618A6FE6E6CA87FDFD0D050776B6B6BE6FD5CF0DA1B6EA89ED134FFABD575B55FA9AEA9AB276B4441D36FFFBEBDB1837B77BD188BC6EF7DE8D777BF001FD28DFBD2576FD1FA7BFB05B00816B83C0DE4F65633ACBD41C35F6794801D82FF81CE03A7E0A715FCAE8CC792782C861F1DD60D6D50D7F45E45D57AD2A9D481BEEEB66674801281CACAF88CC669F3A735CDDE84F4210FF675FF88D3F97B1E7CF0DF07E143BE71D7DF74ABDCD7D7E723BC45C1C338D4067314E8061D06838027D0714FBC4B8D4C3B1D3B818EB3EF73AE0BD86F7CA81857AD590BFE4000AD1201E2F1A8591829E27A3B3BF5FEBE9E3476483A2DA712FD3D5D07339964B3222B3D713971383610DBAF6972774F4FCF10DE87FEDF1EF01B6FFE66ACB7AFB7904CB4CAB3E641B67A3670860602E8C021A89CA1828060F286021C82C9D15E43EF4F4526D1B3908DC5203AD40FC3B8A7C81FEB04FC9C1B7802BDA8B804BEF095AF2347FB9872244BA4A3ED087380BCFE2072B80CB29C810DEB7E839D11B3BEC72C1920F3D1C4A6E37B95E738D4A89046194861F7C7910AA378CD415D51FBD299644F2A9EEA50D54C4B3A9D3E824ED5C0FBA5BC0FDEB5E7214B60935D9C45C5D5A148C00B7EF0A071CCA163E21138F406052695880D78C953440F5122C705F74578AC1A9B646AAC634C5D03F458ECBD02869A652D1D1D846DEFEEC44EC4CE43B494749AEC73C48C8348711978240F081E09D2B2CC469433C26890E1E8C2BE36443C468ADD8F2DC2B94711DEBB287921ECF541385CCA8E093C67E271E353ABAEC49B619D24E3D912BAA6F5E1287AFAEDB7B7FF704200474599819C5D8C92890FC81135F00602880F8D9DA1B1816CA094E36B8EFE8E02CE11BF1890D545406841127D207A45F0883CEB2C91F6E8E07844BBD3B0A3F02D5211E9003C3F7E77368E24D498E8552AA06555747414A8BFF093A0ABF81E9B9EC9609F657030C96064651C5029D0E5242487A230D8D305C3F138F5C6A80E322183666546CE7028F902614F8C8687C3B8AFC4D62488DE051515F58FF7F6B61D1E77C05172652625888680EE34DDB090EAC3F70824723A7A25C08B1291308E6DDCF3F870A43451D8788A7270D6C36A26431369C7B03A0F7B8E00E6E9187997040A8E121E3BCEA4F7F8551D079821A17BEF41C747A2F31A205287530FD3E7E91C3A75BCD5491AD319683A22D555E148E17014D1A8CCA80C60501068053BC7546436AA4CD65129D6B47402E4D8101C6D3E08DD473B49A5CCC65B187FC0458F37414A0F080C4E43C90338B73A04F3673432734DC60792D1EBCB641550D534826492AC33300CB44F88A74D26FFD6D0A68D46818EA066D950F7A0E493F44BD8673EF0E09352C08A17049B0F48D122B082610923814A74A55307996CF498F819138715751729EF78C684584643FA51D9FDEA38CA0C3D88AFFD608821BC473C07F69CEEC157417C8D1DC8CCDE1A03CEFBB8067FF8FE5FE3FD43E984508ADFEF8F91C5C19E1D41457903D44E1040FB3888A015E36BDE565E1C713D388ACC3E4E1D80D4A02135202CCC1A21579D0253F4390A42E92AD1868A0E8D825E641CA510F7AA66538BD5487A537D5D5080D7553503547C4F7B1311D5551D12E90C446505529A008A20812E7A7190F980F7055197E068E3AC11A569B827B0B1D7D99E0483BA4A47FB95FE6E47A4717C144C08E05EAF3F4E0F65880664902F251E5D6B550733EF818369C7404881D183D1017A4DDDA4C869E86A3F02FBDEDE0631548CD366CD8559F3CF61568993E19148A279574781D559CCA5671760B6270C758460FAD4C6FCB5A9334D0B343A462E3F5A1F2CD34F6D389E80185A342954B41A768E82928CCC4F412F50E8399072140A1560A767B31A7E0E7582B7D1B69C8C89015CF279E3ECB151CA92F8103E940145B343D0647AF3B6A540710046D31CDBD3315D5760EFCEED70FF9DDF83C4B015D4FB13F7289C7FE927E18BB7FE2D1497968380C012689C99EF344611D48B9CC5E54EC03B37D2D8318BB7992FC0591D4F23C78BD60865886C0761A46038EFECFB05C78FB0FFEBE8E880BBD6BFECD836C10989A5F81170663998D6D0E55121AA340C9D9B660F6FD9600C0FD37A0EFA8E8234F2DA538FC239A5415854118139258530A7B410A20776C1C6077EC1CA1F9CF3183941B6CE6DD867E7C0A12CCE029638DDB494A3D547B607CCE53C298BD6EC839CE31D8F386E9FCAE53DD34BAA14E05048FCE807E03631122EF25282998138EC380F693B15321AEF083819258CA74DE7295C1B2922399D845A32EF823EF75FA075DF6E664148A8282DC02D2A62C2CAE5A59277860BFE25ABE84C095AD7B24685690367997EB9AFB10EA1FA16D21101F45E89BA9802372DBD02F669DD1E732814C25B53A0B8AC187ABBBA26067094B734B3E8488B23F7F1C87B2A6A7D137223D91D51B541B75EF068D92888D05046254703C2523EE0A8CA2966E500E369376773AC136D86C901A9A15467E9F316D66382EED0868EF7D8D1DE0E0FFEEBF720DADF07175CBC1C967DE66A288C94DA00737678C2B9550B7D911C3954FCD5759311F0CE89011C9F2B651896A5419B84129ED53830DD1A9373814D00D907C8432DA9AC016F7A0814C32289183A30DD29B4810B42966A32C1E67C32ED388BAF4DD3D607D679751B14D34D1B39D0ED11663AC73988F675C39D6B178390B142005BF66F867D2F3C0A7F7BDF1FC11F08019753F266EE5C6077B80F9DB37049399D67420027614BD3FD31F30D1B9033A11936E1BA24DBF5D270F047C0A72F5C0C26B9F85E0FEB8608EE1BC2012A5A64E100874E186F9BE072D77114E0810C997D3975677BBC39A05D21302ECFD57B5F7F094ACD18AC9C22C2F2C5F3D9F1FEE67761B0BB1BB85181332E47E8D62809FA3CE02B28A4F713A33449C21D7B999A89C33AAB9BE0B2D66CEC6D8BC156F90C701CA233CEFD18F882D6BD1380643F7BD171290C0599B36398CE39EC30AFDD590A5E234B4E8EAD509DCEC8C788F3A0734ED4D17E4FF454535E048DCBAF820BBEF2373073C179E0454598CDC8C7748EFB1CF49F8FCA324285744F1323E1BCC9A589F3A8FE4345C07953CBDBE166CEFA722C2C0B38703A8103AF3F000567CD6154328C2D818A8F38BD72F2D4BC448363D9588D3A945190993FB7E9320FF356891BAD3CE8B567CD85C286D950BE601902ED870B2EFB149C7BD15218EEED040E8EED2C77AC3FE097D83DE3B1D084008E160A9370025C5329BC8A7B0E952145FC46B18A01F90ED0F1EF49743A7A3BDB41A869826ED18FDEA20903E84576A532A023105D1D6DCC9220AA325C92ADEA79B00DFBBC86CDE5E628D01DD3CE0DFAA4E9B3A0A06E0688C14276AC664A03ECDEDF0289BEF65C48977371921B742F05D5FC413A5860471FC717708D3753F49004B6AA5AB16E72F02910949364970341D64C3A99808E23ADD0BC6B07F83351F8FCCA4BE0FA5BFE0A5A64150650CA6B9BA6C237FFFA5608C851D8BDFD0DB4288E828C4E1501ADDA34628EE074D3B6CFC74E61728EBD6D6348657245332F8083875AD9DF7FFBC433F0D46BFBA163FFCE9C3D9EB3CBB99176B91F758CC7325583D5D5D591F18F1622A588C8B90A82CD1E575318E0722603C182028B401CFB8AA2FEA92474B51C82FA4209AEBB6615F8FD7E76A2694D4D30F5AC197068FF7E587CE185505555058D0D0D30383404AF6E7B1B8E1E1A86F229D32080E7A4B095416E3E581EA7618B218F4066B30A7A94528E0E4CB7B833672B0B5D9D9DB07D6F333CF9F07D70F6D43AF8FD0B6F90060743F4423C16835061A10DBA798C5D2EA1844B74CF0604790F4F800F8C733CDC4C09F8A04CE921E80438D08DA764282D1B699D30C091463E36BD0ECE9F3FE79893CD9D3B17C2E13003DBD94A8A8B61F5F265B0E7C021D88656445DA091295BCEB6F338CE2999E098E451BC8400079709CD4C471C1951ECBC575EFE4FF8B73B7F0C7BDE7D978D8A032D1D3967EB270FAC87C32909AEBDEE8B30A5B111F93A607FDF76DDF035C5E745C347A389D734BD06FFDA3CAE94A2A384F3029F1FDA1ABAE3820889943C126C3B0ECBE1DF4EA58278E6B4A92C4E4D5143C3AD285D5C4E591B4A1E98A3B89C2E9D415DF0E86F1E84AF5DFF65D8BD6B178C5541D11F8DC1AF7E7E2FAC597D391C3A7080D11FB8E8C5E27011E5C963EB107EDC0BFE45CE6BA4045E74FC6026E1262ACDE1E69D9089F0795E75322A7206DE6C1D84975F798D65EFA946903C4EF2345948964EEA1141B0CBDAAC383B857B03904C66A15DD5F0EF9E1C2783ED8552144B411AEB8E0F42656525CB794A5EABB256F2484CA9B7B7B5591EB1CBD87603AFDB2F6924BCF4A74D3063C64CB46284BCFF86FF850B91260714FBBB5C78DC018F0B425A709201E401A2A74920D554D5C2C205F361ACF2094A8951E08A12C54CD9E9861D4A3550F96AF9A81D759261BDA6FCE75CA41B1FF2273944630598946C06A29D47D1860F3113D5F10DD4641C5445816B3EB706562CBF146459664A3D6B370A21902544F7A3DA59ABB2B27278F9854D56A7BB3AA603F93F2A943A6EDFB8DBE2E21D5FFE7266EDE6575848C34AD7641850142371BB6DA6CB62F0489475F7B95C418E497B329180443CC168235418864849317ECE8B12CC83DBBA334775208B7F50580139BC2852843AA072CC9B1D4D234E891C352B119E0F54D16BE7987B6B6E6E863B1FF983F376FC01B732DC828237EA6537AC5AC38D9C9F311F9A1B693DD06B0A260D47A3F0E4A38FC0E64DCF410A812FAFAA86EBBF712BCC5D702E040305AE6018E7846472523EA203E0F8D56D6EF05A5B5BE1DBDFFE36BCFACA2B501C894008DB430F3D0453A64C390664F746B1745E4DDB71E7F18FA7F0560299CF3A12934D44C14BF948ED783537DC08484CB09CA6FBEFF9093CF5DB07C1CC26F1A4D8017D9DF0A36FDF06EF6CDD061AD5A8E414A179CCF7DDAF4FA69A902A6BD7AE5D0B4F3DF514F4F5F7C34194DA81AE36F8021EB30A998EBF9115C5299625644C40D647B4FC7B26E1EC407C78187C9C0E99B1003F8EE05001507F5B333CFDE0F7475A0D83C3F0D3871F8073CE3F3FA750474A733EDA9B1B392781F8FAF5EB61C78E1DB9F7A4D8A737D6C3A697B7C2F3CF3F0F2B56AC38AE945302DBEB11A0B4BC8C62E2C1099170F4DCD2CE83466371F0F32A6446530A370A716E94D996518E3979594984253448918E22DF5CACC61C25F32703F89E3D7B46BC6F6AA883FFF74FDF84B9D3EAE1EEBBEF7ECFEF07FC3EA86FA0DCA63931128EDE62CA912E1D255B6001AC51536B1C846C37DB2DAA64069277B7734F333B386F5623EC6F6E87B6CE5ECB9B1C25D1F988BAABDF6CB3F4441CEE6C478F1E85A2C22044E329D40F7EB8F7077F0734A565CAA41A78E9ADEDEFF9FD205A4AC5E59513A2349984FB02FE84F3E44CC2D0CA90474BE57178D756BA505E5D0B9565C5505B65995C0D93AAD0CB2C049F0FAD1472ACDCC9DD13F0B861BC37E019B4D7C9310B8782F0CB3B6F87867ACB7F99D9380962E8DAB7B59D785A901FF93B80D6105A4F1343297E7F20CEBBA5CBD44156B4B1CC84314122577DEEA28F4374380EA5C5962F21A1D42F983D0D6DEA02CBEE1E2B5D07EEB02F37223A79A26DDFBE7D6C8CFCE627DF81F3CF99953B3EB9BE96ED0F1F3E71411509413014A67A96899170AF24253881CBCB1E3A0FCA6849E38E55A00E40E469CE5A703E148402EC4F83D13874F65831A1A9D3A7337B7824D6DCD8E3C67C6FC04982172C58002A5A23E954C635327468ED4BB0D7D3F19A27041CBD572F52203A638513C2E15E6F304E65C38A2DD554A29C56B4911C0BC7B76D1D1A78A74381DF3FFB24549417A3F7A7410C39365CDDC896E9208E67C0DBD55A2670639CD57C4F4A29C4F3AC5CB9121E7BEC317862D3369853530352297AA66D43A04633D0D4D4C46C6D320FC7727CACE795C02FF8C0234A0535353581CECECEF4F89A85029F14783EEFF551591AE76135DB7E9F7F4CE9063B364E61DCA18101686D3E041B9FFB135416485057E361AE3F51CCF6437F069993E0A265CBA1ACBC0247418895268F00E224CD4293856715689C3C997D7FD7DBEF40696C0D64A30908231D5F37772EAC9A391306B76D03A9B111424545AC163D17BA70006733A0FD20783C01411128443BBE800367A678876759E84E03192580168E61808F21DD94B018469BBDF9E041D8F0F8A3B0EDF5575976278560D4D5D6A033849DE70BC3C1FDDBB0ED878DEBD7C1E28B2E862BAE590B0D0886D7EBCF9929EE928CE301CE9CB26C16A278AEA31B37C2E5482B6FE2B569BCF8782B9C5B81925D451DD9D909665717446B6BA1183F47317B770753B984E8095047F815C52CC1435DE32BE1C0A5A990261787202B4508433C1E87B2D2D291F69B5DF290C0BF6DDAF80778E4FE5F3067C9D98E1C3902EB51E28947B76FCF9B684303FDB0F18975B0FB9DB7E1073FBD076AEA2681C01F1BE635E0F880A7DADB21B8772F2C3DEB2C88200F7F66D1A251F9421701E2E703087A76D6AC5C92244F295E3C212DB020D164833A3CF4EEF84A38A084D3346C9B52A81C0C0A0AD0CE4D5836333752B711959074AFFFED4323C07636E26C526E63DAD0AD2D30D0D707D53575A46D8F05D6C807B4DC012AE264CD6E191C5D356565505E5C0CCDE8DA93E413B5D13E4315BAD8345682CD430605C38B809B761283CED3861D57B470A9536C5A3EEE4A131F2FED58124CCA2980E50F310E1E4B55EA949BC446A1569E9525BB6A4938AB663C9596416219179ED9E1AC181F3FEB0D04E1993FBF05AF3677E07BD1AA8E35AC2A5A0AF36AC961F0CA7136498BCA9575FABB5DCB822C05B29C0683EACED1B413BD01F0204707826128A8C6160E33E54C75E8224D93F148505252CEA29BF45D1515B986D76840A74EE9EF61D615DE5F68DC01270E175C124E93A540F4C3EFDF7A1B9EDB7D946565349AFB4E3588A8DDE259A41C830379E6656036C8A860454AD7E058F5E1489540F016401772BF29F959868880E63D56E932879FD95A1861E50D3435C52372E0A1902FAA102A43A3E92912CF815760D33358965DC23E94F06F2C1F29589FA53946F439F679D604FB6FF97A76A22CF29C493878049B753C137C934D1460568C20042744C24521AF34399AA1260A70B8EE42365D84E32DA9A51B54894B35469876490282C2335307ECC823FB0EAB6503EB35FD13080CCE0251E0F3D974D39EF8908B16DADE1015D1E733FA9C5D4A6160236B8AB7CB99814D5F31B0F30D1E8F682810992C2BE1C061C84A3E0C2A6C92B340ABC8655329C8E2C893930948A04EE1AC2C55C1F84BB80136873B9CA15A8FCE73B9F806CF09ECA165CD6419F25CAD07038E77B496CB1BE52DB78AD50CDA057E9C352BC2744556D87BBBC89F149D8454123055082859BC391D444AE3690A08788C748BAE5A5360D28A0C3AD5BCC829D0322948A12E89F6F6A2A24F2087E7BDE469539B60381E836E54A0D6842E9D511751965D7C31FE8053E6DE237AF24A53C93065C9E7D53F033DA35BD5AF0EC8564D379703DEA903F1715447264310C1A1D8388F4009A8173CB817F50C1B415C56061E4105040B90B3D57412944414FABB7BA0BFAF07D272865190B3908DB5A88D906B3CD3093C0B1B703C9F5B12C459A5C2D9965E7A298BD7FFC73D3F63803B059EC52565689E3641323E3C63FCE3E194B917F39462D2D41304B890D7C0CFA19421506C8E8E2CA3C9A800AF51C1108249E9B86C9A05F4392505663A0E064A5C1215526F471B1C8E274EE9A608309AB743FC2B8A1A9B342508FA08C019E8B4E7AD24366F539F1B7482BDED682B037AC6D973A0BCBC0A2A2AABA0ACA292ADB745DB1FFFB0DE37EE806B0249B890B3C30FEDDC0A35D10118ECE9848E5882996534A766BC16776089EA5C6218C1D6096C0DF95F1C09764EDAADC56EA80EA5ACB2122A2AAAA01CF704704969191B1D931B67E53A8412D06D5D2D6677477BDF8E6DAFDD31FE394D94702A957028259D4AC3A1BD7B724353B667078FF7C656056233E034CBC2F1F1100A1742381C61AD10CDC0305A3CC565A55059590D9148516EA52126E9B8A74AB1C1FE3E6378389A8A0F0FB5F7F5766F3DB4F79D47745DD9B27BF76E05FEF9B6094822AB68167A3C23322E4E069CAAB1DE2B4FF8976C029BB5EC61E5C6C16001FA5B052C4045597FDA3370236188848B586D8B23A5FCA83D298F01B43C868706B5387A63F158ACA5A7B36DCBC17DEF3CD0D2D2B2EF4C597B85019ECD8AACFACA1B0CD98ACFAE98400E35380F0451B2986DCBE666F2AEBD75DC51581678222BF421254C412AE24A8F24B1BD9715F750F3B2F99C54424139464B295A4D745185FB38E1459501A9740A32B2ACA337A92A8A226BD9CC7032953CD8D9D5FEC72307F73EDCD9D9390067F0E6ACAECC7DFEFAAF6576BEDB2C398533ACB8C696EC11608C058EE8064A1C1B40712498D6DC40664D5B6567341956574C5D67EEA581A6A29C4A245A1435DB914A260ECBA9D45B6A36F9FA8E1D3BDAFE3B2FE3E1D4479BB3E7CCFDCA91D6233F48A6D32172DD3D3CB066598568B35A6BD1A02D4C4BDF59CE86AAF16C8AB76511F0A620723A7E4CC14ECBE211B68203E29A46F092085272DAB41997971417F9A81FA94353E92CC41332AB278C141553408BABAEAE146AAAAB84929292172F3A6FFAA75C7CFEA1588EE9035D3F9CE3DC5E1048BFDBF89F7D559595059D9D5DD0D1D90D9DE88C7475F540343A8C16451920D0505343AD9AF28E6FADB962F9ED86A20E2A4A8A22649ADDC82BA33A9ACC07D50937DF7CB3271E8D2EE53DDC65E8E556217116E8A6D6A565B5D754C3D8BA61C38653D609E20700B0B3A64910F9B95CF205E779FCA14FA0833247CD6683EE25F438706ABE15B6A88D61AF1661582B0C2D2CAFA8D94CCB78205D9BC8322AEA8D34F65D1C75478BA6669FC0733C4B915F6C71D3344F7A05CFD5AB574F41E57C169ABA1D6805F53CFBECB3FDD75C73CD4255CDDEA5EBEA39A88FFC789C4D9B26A51CA2FC27256824EE260F27C1DAB557EBD75E73752F12DF7F4463B1FFBF69D3A6D4B801EE0239ECF10426171495DE8837BC0C9FBFC6D035BF139BA6B416450579DB517156E624A5490B8DB1C01297CF2E979494425DFD14880D0F52969E434529C9725AD234853234F5D89644CAEA7E2249BE4E5E147F88B7F11B8A0C8F2579175F7CB1585151769BAA646FCB66B391743ACD0DE37905BB8477E9924F808CB446811DBA2E5B13571447E44BCBCACADCB95901EFA91A95F83F07FC9EEFAEF9ECA7B78723254BEFBBEFBEC4070A383E24B96B25A1A2AACF7BBCBE5B0D4DA9336819879CC92758AB520482108894B238B9E5450AD6B2D61299835E340583AC2499798C68ED10C5BCF6EA1B60F212F8F1BBAC5E8626ECAA22B3C9F3B1739DCF665275C1C2E29F35CEB968F2E15D5BFE81F4BDFB1EAFBDF6EAEF4522A1FFD3D5D981AAC52A75365975B4C11641D05985AE150AB695BC895656D6237834341A4C1C699C9C497BDB3BDA3C747F4174AE580818CDD8CAAA2AEA0CEE853FBD702E2F70F1356BAE7CF689277EBFF2447473CA1C4E139250A2E794D74F7B3839DC3F6374BEDD92DC020B70DCFB0205C07B0AA0B1B181014C09035A5486250E1485C5AAE9A1B314EF36A9B388A963F6CA114974C6ACBD5564EF92185182DAA97340CD665EDABBED797AD8DC4C82B56BAFD9D6DFDBBD80561AA2B20D925402979218FA88BD053A59655555D5FA96975FF3BBB2B74C80162E5C58505F5FB306AFFFBFB2994C037E476075EB78EE7776EE62F7452B464F9ED2A05754545FB77EFDFA474F37E091FA69E7AED71479592A71ECF2B0949C08906407026C4FABB955D54CA6F542EC19145CAEE48D4930E36F3DC7E5C9F83074B5B5808C76771A1B79BBEECD8F1D58585C0E8150899949A7B6F7B4EFBD69B8BF6B9763327EF6B357FE381A1DB8CDD455465F6E9019B863004E1BF908D3A7CFB86BC3868D77D90C20D83CE7286C1A41DACA952BCF350CF5773DDDDD15BDBD3DB9EFD3082A2E2E82D973E6FDFA77BF5B77C3E9043C5C52D5F083BAC6B937A6E2FD9E547C08E4642C376382F88E72893E9F9F799194476C689AC1266A59096B37E0F6927C94F1312C108EB61E82A32D87986B4F1DE4C3A14CD3BA298B142828A251D09B18EE7F69A8F7E8A3C3035DEFE069BAF159D862E3975F7EF92C2593DAADA8B2BD68CD5852ADE7A4DA8D01E991FA499394CD9B5F59604B370F23C3F5CE4C47EA0079F5EA5537B71E3EF40FF1449C4D08336D455B182E843967CFFBB775EBD7FFCDE9029C50AB0C452A2F2BA9ACBB22102A9A1B0C16D66633490179151F4A010DA98292014CE8F0D629A8440A52B0C3AE8E5B4E606BF60C0643B7D26D4425342740F205908A7C8A924E7565B2A9966C4ADE27A706B7F6751EDE6A5B28517C86ACFBDE2E5FF1C9D7E3B181F3096DC6D12E70DDD27DBC67AFAAAC325E7DFDADE92E9356B4F74EE372396F94F85597AFF8566757C74D34192189A39174015DA3A8B81866CE9CFD8DC71F7FFC67A7C50EB77F9F2160B788D71B682CAE6AF884E4F5D7891E6F9947F296881EA908C93E2C881E3F67156CE6579131AC79CAE868A9BAAE2435558BA35936A429DA205A23FD78AC379B4EEC1FE86EA1AC7ACAB6BFB3F6EBE3DAE1175DB818FDFEB487F2976301FE5ECF8C3C9C7AE9A52DA52E1E27C029D8E47535C93ECEE624E0A8FA467F7FF78D4343432CF8C77A03AF3F75DA54D40B754BD6AD5BB7E52FB6526CDB37490DC1EFCF66D3EDDD4776BF69DF8CBB89AED213FA8E3EAAA976D321BF7682F359C56D79BC97C34123EF138B170959B63C9F03B2C624CE3809E122EBA9A828F2EFD4B1CEB56CD3D72DE1F44C940B2DB0854D7CE69967EE5DBE7C9982F6FA2D837C944DBF21616A3BDA06B5D5B5F7E3671AC6D3D30497B498C7E93CF3345DCFB772C565BB5B8FB63438808FB66C8EB711C5D5D74F4ABFB4F9E52ADBA6374E30B205DBC12BC216B23B815BBAF4A22F6465F95B3DA84893C9347BDCF9F3E60127483E74B0B21FE8FAE1E6B19B611E673B4D97A4E7F1BDB175FB353C2F32857BB26013EF4E99D2987D6BEB8EF3E13D6A4AEDE7506D6AA3E824851EA8B2D4402A7A38180A3D565C52824683F5330C3D7DBD505E5AF25D8071FCA5AAF18C0F0D0C0C246B6AEAFF2C8AE249497561380233CE9AD9FCEA6B6F2C46E76CD8A637F324048A2890ECD5415B81D36BFDF9E75FBCB3A6A66E80CA04C93A5369CD474DFDD2074E29E38EB44529C4AD1534CC972CB9E8AB89F8F0D76574E5354373D6B1B5B81A4700F9061595159D3D3D03FF7BE7CE9DA498133678C9F71302B6AFEBB1A9856A1503D5D5D525B535952FF4F5F7416D4D1D9496969AC3B184C47DD816A1C767F7D8BC4A0F4E09627ECE9C39D3ABAACA5720CDCC1479AED8E48423DDDDDD0FEFC24DB57E28889432112E797029C444FB4B624A0EE8E79E337707ADAB38AD693A0CC7A2505E5153FA61049CB381A62057A1ADCC0474C2BC972C5BF64FC0194BD2C99457D1144E4407CCEB950C93E3559FD7D7E1F3FA7FF2BB75EBEEFE0BAF4DD78B2C5DB2E4C69E9ECE7F29AFA88418824DBAA4B66E4AE3190DF8EAD5AB97E3EEEBF81CBFDDB061C3E3A730C4C98AF02D5BB6ECD365A5C53F1B18E817ACD5FDAD2D58106251410A90512D4C2291A40962467969C583EB9F7CEA2BA7EA9B34343494CD9831BD4D4E2725E2EF8EAE4EE6F04D9ED2348F3FC32595E2199F46A1785FA975DBF0219A48AC5973E5ECE2A2C8BD838304B6060A02908827D14E4EB22ADEC1810156015C5B3B19A69F3513264F9AC2F7F4765FFFB145E7EA9FFBDC67AE3D154B69FEFCF93FAEAAAC9468DDC676049B7C00C94AD2A7CF580947E9FE32EE7E4E4314EFF1B1A79F7EFAF3EF379779E595579E8DD6DEAE81FE5E8E42BEB178DC7284548D0160D52A9A10A0980FB64A1CFE656515102A0C416B4B0BF4A1D437354DFFC5E3EB9FBCF9BDAE75D5555749B22CAFF14A9EDBBD3EEF9C2354968D9D490554B4559457C0EB6F6E13C433116CBC79722AFE11C1B9EAC891237B7123EB2180429F3E19D051AA1F6E6D69BD164C83A715F7292E63FF1013039AC2A8E48279040FC81999D595139DD0B21FBDDDDD50545AC2009224118E1C69BD093BAEF5A9A79EFAE11842415EE60592247DCEEFF3AE95242140B34062D1288BDFD3D2234E22BE305C481EB97946029EC9643E8BBB83E899BD6C5B1C05B6DB9FB1F727FEBE2C5F15F0FBF8586C18E2E862EB76D282D9DC91B0B59E22FBE9316B2135A733A8EC63381167C59F43435108A01D4DDF191AEAFF3E82FB2B9FCF877D97BA00F9F8D382C05F56100C4C41C786672B6924E3B95A1E4AACB0451404ABEC8E7E3714DDFC15A73DA7791A3DD46F261289BFB2959EE20A58E92E7E77C73700ED5E71DEBC790884F07555553C14A9F3FA7D2859455671685A6615B38958020A4241B64C08253E48E2698D15AA9BCCD2CF22E82A0BD112AF67A414ABB15154858B44C2BD8A92E669654FAAE055ED1F41A4103429C4A2A212561E42EBBAD0A891D832521C089C0045E1E28D1B9F7BEE4D522C671CE0AB56AD5A82F7F5EE962D5BDA6D8188D9A0EB36D6921DC76011BC19336654D7D5D57D1187EFE771F86E8FC7E3BF28290A9F8320042A2A2A201A1D621926AA204BA533308CEF298C4A65CD34659DA5F5A8D7044AF9A174222454E864FD4A0BC7E2F994564B2612AC63297B65E562450632014E261FFDD216FDD20BBD2E2A8A40616118294B34256FE0818D1B37DE62C7CFCF4809BF1187F8061BD4B42B5228DA362E8546C5C58B179F130E876FC0217F093EE47A7464566DDFBEFDA86D0ECE59BD7AD5BDE670F4525AF4A6ACBC9C29CA743AC9966052551D32591988725445B317B334D9EF1851B2C4E793D83AE524DDCE4AFFB4A7941A014DF58C94D724707B7AFBD8CFE1B88D0F549E29B4EBB76CDFB1E3B6E6E6E6D61191C733C94A21F145093FD8DADABA6AF7EEDD03766CC274C2BB684FCFF17ABD2BF0E157E3FB727CE07B91EFEF79F1C517074707B0484F2D5AB4E8A2AACAB20793A9A460A5FB828CBF75340F69111D1AFA567CDCB0271DF0B9CCBC55024DF3933856A6E7937CE00F06205450C8A88340EEEB272B4453F13EDA7044B4E2EB16745C0FB4B4B46CECE8E8E8B1758EE60ECE9D51805F7CF1C5A5A150A80FAD867BDBDBDBEFA19806D2C5791E8FE732EC8BCBB151D8B419EFF9AE6432F9C0E6CD9B3327089F92A417E0F94A2F5D76F18B070EECAF21A0C8F30BA342F388128BE4A1AE60A69B4A9303380B5C926256288A2D82F440734A91FF63785F5DA80B5A8787A2EFA664F9307EF7204A700B4AB46207BC34576CDF182BBC7B46017EE9A597962027B6DBCAD2BD2908E21FF05E7FBD60C1824D77DC71877132A3C5A625A2A0C24B2EB978DDC103072EA001535A5ACA68817E35CB9AE7231EB31E00591E7BF7EC85AAEA6AECB5C8FAE79E7BEE261B50638C2489E96E1F4899C4074829DFC27BFA22BE24D0DFC0FD6B48214F3CF9E49383A77A4E2743B374E9D2B5B168FF4FBB7B7BD9D2155555156C1A61556515DAEA695474054CC22925B77FFF3EB6D2D1C2458B5AB66EDDB100FD8138E4E67C9D3A68DC87F0272B8F07BA4333BE152B2EBB3D3A38F87703438362464E335EA7C58D8942A8428C2C96C2C290396952C313BB77EFB9E1D0A14389D39524F91F01F828E01DF0C5A6A6A610B6E5A2C8AF00536F42610F237FBF9148A4EF47A5BDADB7B7376373F16903E97F14E02790FC9CCF753A68E344DB7F01A92ABCEFC84E426C0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (177,1,'Workstation_(128)',0x89504E470D0A1A0A0000000D49484452000000800000007508060000008661E9610000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00004E4C4944415478DAEDBD07985DC7752678EADE975FE78C4677A301300220C12026500CA2489112956DCADAB13E8DBFF9BE95773DB33B1E7B66763D49D4067BED9147FB79E793E7F3AC6DD9F2AC3CA42452224551244551CC142332911BA1737C39DD7B6BCF3955756FBDEE068826011AF2F091172FF47BF7DD57E79CFFFC2754959052C207B7F3777BF8E1673A62C9FADD20C4BD8978623893C9F6D7EBDECB75AFFE4A50ABBD522A2DEDBEEFBEFBFCBFABEB131F28C0B9BFFDE0C73FDDE242F0491CD97B05C00E7C2946AF2792C99D9974667BBDDE8062A9087B76EF827AAD5E6DEBE8D8DDDDDBFBB346CD7FA51AC897FFC93FFAE2C4070AF04B747BE6996752854AFD2302AD5C48B817477474B5F71905387AE408FCF1D7FF1092E90C89004AC53C78F53AAC1B1C84C1A111E8E9ED9BEBE9E97FD18DC79EAB79FE2B6E3DFFFA57BFFAD5F2070A7001DD1E7DF4A91170E42708DA01E41DF852E69D3E6314E0FFF8DFBF069DBDEBC1715C108EC05338FCF7427E09728BF3B08447111F279309E8ED5F07DDDD7D01A2C4C196968E673CCF7FB9D6F05FFE8B3FFDA383F21C08EF030538CBDB830F3EE8A65B3B6F8220B857091DAE58EB39480152C9D4F63FFEC69FA090E740A2F5AF1B1C81642A85A70DF890FA3E900134EA35C8E71659198AF91C542B25686DEB80B68E2EC8B4B4957A7A075E6BEFECFE793C9678251B735FF9FDDFFFBDF90F14E01CDE1E7AE8A7DD6EDCBF4738F25EB4D2BBF1A5AEF7723E5200D7896DFFF36F7D1B7EF1E2CF58B8D54A955E874422898A9086EEDE01E81F1C82542A132983A514D572095D460E4A853C94CB05701145BABAFBA077DD7A18DD78C9F19EBEC1E7E289C42B6E32F14A57ACF4D657BEF295C699AE29F68D6F7EEBB3CFFCF4F1AF572AE53E242C55D4EE0AAA6601152327A5BFE47BFE3C38E238BEB6BFD1A8ED1D3F797C0C7D58EEEFAFD01FDD2E63EEBD20C5BD4E0C6E442B75806D041F09F19ECF2F518804FD7D7D03F0EFFEDD5761CFDE3DB0B4B0080B8B8B70EAE4093871FC081CDCB713BFD541179082582201EDED5DE80A0621936D81382A4A5B470FB4B677B352F89E878A5084C307F6C29BAF3CBB61D3C55B37DC71CFE7BE94C5CF95A1E37314889C510126C64FFE452E97EFA4DF893FAF35C20681174B3FD805E907EAC2451C46462F868FDC798F8F9ECBC7F7D4F06D3504112428B2884A93C78B42A5F1167CDF9BF083E040B954D8B5383F77024FB4303E3E5EBFF07CF9A399623DB8137FCFBD8E109FC0FB21E14BC24608704404D3347D481E96F7AC08FC79FC7F72720AD2D90EB46CD431D4B6EEDE3ED87ECD8748D7A0542AA19B5884999929181F3F09E3278FA1C07D5400548A581CB2A80C9D68F9D9D676468B04BE4E4A313971129E79E261B8F757BE7C56D7122B157259BA20C771F4CF6CBE2317215109F8AAA4D2E0805E90D245C54804A4340C4F92214AEAC7F8908F64328BCCB655BAAE1BECF8F0477CFC9E3A121F429A329EBF84E744A541A4F1FD05CF6BCC36EAF52385427E0FFABB31FCD279549A738E36DF7EF0918D22F0EF65D62E80D87B927E5C20B480A321D0660B2B5E7C4F4A2004AB168D2D9DA7A3132DBAAD13700CF008C0C37B27BEC41CA10505BC71F3A53CA65EA30E8B4B0B48149758310E1FD8033866AC102E1E8418EDC80FC68E1C80DCD23CF4A23B79470588275315BC888470DDF0F7453F4D28F45392D78F5C24BF92058D52C5C72474277C2D70A45212F65BF49A4F172FBCBAE7A282B878EE049EA6653565A39B134B427B572F74397D804AE3DF8C4A830AD3C0A386EFA250A8885F50D048B3D8683466ABB5CA29F48D07F0F151449EE9E568F3B5679E896D3835F761B272FCA27BF15C97B3A48D64E569244E3F7B99529C4B3468696D8593FBF7032225A4322D68D5AD20F9BB253F26CB564AE1A352A0FFAF927776209D6985FE7583F83A2A85EF61F49007341AC8A3729C183B0C994C1666A727CF4E01907CD0A0B63B42C1DDF0E846688C5C03A86EF8551E0AD603817EC6C57BC7ABE3733C1A0DA8169790C4E460295FC0B736B4D507AC0884044EA8000E3F0F9C88E5D20F36AAA5461840464E929F7874F81E290CC10F294D9649981EF070D8DD380E5E1CA1B48D5F23A4711CE17FF8B68FD691B879498CA5928944E2CD78DC8DC7E3A8F17184CB045A4B9205D0D1D1894707645BB290C6B8BC59B8CBF4E21CA18121DE434343D0DFDF0F956A0DA6A7A660627C1C5099A15EF7A08ED6DE40019312A451A0342EF1780261BF572B042A86879102CA291E4FE27B32D0815C815C79AD52E4C8E1AC5C000E46997E00C5A2FC43D06227637D50C3A177D12D38AEC3EE81EE6318B3C6E83EE6402686D085425D27947288C003BC3264060D90A828EABE0A41BD0EB281C68B3FCC6F54A086E1CC3CFED8B98505585A5A0A5D0B8FA86D8C5249412E47A5E5AF87C8A45E939E4FBE8C8E38BD4E83DBF479A1FE091187BE967E572CC68CDA8DBBF81B6310C7E7A430F1449C073E49F748C0B238D0EDA834DDDD5D08DB6DD0D282C40CE1772D68408610B954E0F1EDE9EDE5F3529610910C15A001B55A0DE6E7E7617E7606AA388E64680D1C63898A1147C520C877506E99967648A65B60766632B4A4B38DEE48018A2E0E80A335BE51AF401261BCE20935A4D2700194AFD4038E965D461A58953128B809B43A548A845218520E9794072F2CE6D2C0E2800AC1AFD30F4DA03D5F8AE289078824A42408610121086AB28F3FB851ABF2E1A1C278553ACAE061FCDB40AD5E9C9981793C16507968A08C22AC4D6194BA48AD08013DC71FE6FB142DE15115AB284CB3D21864A0DFE6A2A264D269D871F30EB8F2CAED67A504E42295C24A2528AD084A6852BF0E6C94EDED1D8C00AC14880C745FC571A2A4D1E2FC0C7300E20DA4540D1CB3B5DE62A8D545FE69948D422D28556A88B7281899C0C1117C65247473A1AC04A8C06C677CAFFEEE07DA8803456CE87434B804F74004D3C72FC3D16F04EABB1AB10C2A8D56123C928C308A6C06FAFBD885F8C4C6D56327500883BF94ADC16F78788F4A83D6E1F381AFA302FB357C5C2B835FA5A30435F48FF393A738D4CAE50AA19B216D90CB846B2B0C416D1DCF1BF87E88FE4DAEC07A10433EB4ED8A2BCF8A1BD06F21C5F90F7FFCC7E4B250082E74B67742DFC0007475F5404B5BBBA508522B0784CFC9EA8907C4E22928978A50AE56A1542842BA95D21427602DA91DE20005A98780FEAB57EA80D44359868CAC46B022082D7CC98246EC57CF8516BA24FF8EC450A80F93128880DC8B126AC0C2975A4990C008A54CFC9AA390859481F8086934E90DFF39A02845B17489270D9C04F809A5147408568E807F780C3591CEE9300FC181C6171378DF297D88118FC17B421BC92E4BA18F4F4A846853AF94A1512E401DE3EA5A290F8D620E16A726611A43ABD9D905A8544E6F61C9440CCF29CF8A1B100FAAA2A1A55231F0F03ACA850AB2FA39D8B36F5F98FCA1E410B925E43390401744D93F428314924362FD463112E89AFA078761ECF8044C4F8E45A4FD6C150035B0A825AC4213BA661A18834B01B0B09C80FE269562B0001502042C7842067A2F091BC318E972F98B0C873E4B8AE319F721052B832F95B52944C1BFD37B5D42120171A27E287DB67A4729133F0687A30CCACC48461613A9040C970E9DCC7594C6FA4239781A504A56101F08E8BBE3F83C0115FC8DA59A87704A842AAB882A06B5410C8F2C9EB15BE53EE2974BD884C0B4C5C1189C521FF4BDC4790889F068092AF05FBEFE55A8115290919C45A4C0E132BEF4C9CF7C9619BB873FBE8144BB5828A01F9F8629E448745F2E95A18ECA5A2A97611A9FB311F1400956024A16D1991DE42C4E2CC1B980B56676494E254727BB4CC803642581E5FF48091C2D7C5002E71F8B6FF27890159B224BF4CD3DBD4923007D00ED8365C231302B59A01FABF329A5525F4AA44CF1128504FC23855608A567AC0CF4198944143147A18ACB3E877F079156BE60FE6D012B7015FF50AE3690DF78A8E31A3DE8BBA4BE0EFECF61050B94EE70F895AB4B582403A088869488EEFD18DE27E192CE36E63675743BE49F8938BE53A4C0482123FE6B42BF643A0503EBD7430F46060D14B4472E0EAF9594835CD1D2E202F29F79589C9B63656152886E913812858401A2491DDD413A9D5D9302944157A342F42088D40F95460996B17E2174098AB64B05D364CDF45CA383D07E965D057302E52E08117C255186685FC8906C85AE46F3087201A1405858012797786CC955E811A473901EAABFE1FBE98BC850F11C751CC4723D804A1D078AAC9C4245B21C575D472054BE4F48654DA48481169810D16B745E952822040AF8B7D295D5F0C58EF6360EDB287BD786FEFB747903C52F340248CD3F2C12189141085F30CA418ADA4A8430DB02FDEBD6A3B229E5300A52C6EF2E1672AC1CE5426E6D08A0C23F7D05ECD77DF56303750904BBB0DCFAA566CB0168CBD67E9CAC8985A8122DCC0F9824AA1F01E69EC84CC46EF0B150A0A049254921CE4A204265744848429DCB25FFEFD2C731EA20162F1467604746824788CF23C4D73D524CA5306EE0B02A07A0EE8D5015CF0858A0BE56771944EF517C57322204FCC86121E328A12B11D0D5D30D27C68E4319A1BAB5B5EDB47903698781FAB7DB082023B3034B07C27B9086145AD1823E671C3943ABDBC5EEA0943F7B0570580168903934D18C930852C8C6150A04320A05038DE07CAFFF161E64D552933EFD9A798F2F9530C812E93C5E10BDE6EBCF1194D163154100D72318A65D115A252905BB1CED26180D285F219400F368ED454F3202388E0A4F295425B71273543E831EBB31F51A87AF8EFEBBABDFAB8F98F9ACDB7C1EF35E0417E85F3FC496488931A9ADDB10D4405A4710283906528F3744AEE01D10C016B6010E13EF4B197D307CBC260E008285029A9D23D360CBC00805945A18B8A544B0604B20080DC2D0102D05899F2FD57B09153C1169AD420562E7AEB260129C1E14DF17E16BE673B61BA0CF93C018DCDD80BF9B90C028A8034A13E97325D4989A1770A4A0C8A37A9FF23D0ACEA590213123AB57D0AF88A24A8629221768EB5704D370043A95E24B42BB03E208FDBDFDFCDAE2D2A27255864BAD9645D424D0C1C17DE4E1EF7336B2ABAB1B3ABBBA30FC6B0BFDF759218025682B6803B94612C89940265B742FC93737185E199A19F0349FD2164EC95911A195827816B0A37C9C90215760E1B3AF57B9017EBFCF690135908E62FE260A519181D0DC410D26FD9DAC4DA51402BE46A66B9456162E94918D93E0991C3A1C23E025BA5AF0CC50B528B5608D3035C0B31B104AD90568572094EF97C2D13E5D2931F10B5616ED46A89297C0989C64915BCA2D63E10AFF756A21B461C9615E86D3D885928FC46E0C6AD57DC8236A484E7D854CF8378338E96C968B42999616EE1920E5393D02C09A22819871014A01B405A0FF94310DFD5A38E4A37980747228D0BE5E11789D1F7095967AF83C16268DB4F0B5C5ABB012783049393C5FB33F2D74128E17E81C029F0B420E4103A21494343340F81550A49CB8502E40062A44D4618576BE8ECEFC0561AE43B07F57C4315208EDF3C3ECA2A395D4F000850941A08921184BC72824A5BAC12A9572732868D5146CD836EEA10B9123118FB152C5632EBB2B0F15B9582C403EBF8491458D09DEE2621126276638EF2FFD3ACB85124882126742F063EA2F4CA07250C9784D790045021DAD00BE0E0315F0ABE82E2261A043304EB408D02E40801973118435641DB7030B47A18113E6017C8810C46411395944FC804346A15C888E201CC53CF9DA689048B16A9C8A961C0B3B1608AAAB55561F55092C4B2697A344A9C89C4E3409CDEBF9AFA42CBE4644AD18E6BDA015424010868D311C78BA51EE5E8659C69515C628EDAB0B63DA5A2B9522CC1796D01D7A9CDA65BE15A8D3B8780D1944805426CB7C88AE8342C4FCE22C64B3693E17F18F72A108B98505CE8E5269F8DDB900F39358CB9A49894103124610E2BF8A0A981C9A2C98B6623F0C05156A1852A8DEACE362CD1DC2ECA2B47208529DDBD195418312F4BC4AAF6982177159A5B28A2EA86490CB0A6C62FA6582A3FC8030FE1D74042015C4076AA0F937E824937AAF52A2C0D78927EDEEDC8456004A06190EB04A1818680850C28F685D4B6B07747676731C4F4A446D62F53ADD57F839F506361AEA3E99A5DE9D385BBD219BF40DB15802C723A692595E63ED2EC0F7FDA8E811F811A1902A21C2F212964204102982142122285FA9433F8D0E21ECEB605F70C8277910FD10171519348923932F105AB1546847DA8E210FC11F971414346BCD63A1A96BD0E4905040D802B1C23A41B1BCCEA469B4234D34215EA03F1FE6068403060FFC265408209648F14FA064CD0AFF6BA381A95CCAE5452008B37B3C8228483A2755FCD20D8F637E72059468328F4345328DA4521F81CA60AE4901A872C70A40631D5324D067EBD331BA90BA3064334EC919345604A799108AB088242C145050CC6F163A6DEC485D2BD0995B9DD4318801D2248B04427EC0EF2132484A11E3EB2441B9A19586AEC2089AADDFF2FD3A47202D85089A98BEF6F4E4E7A5FA3B6720357954EF1561B2C8D7A8E03A09A500B5FAEA1CA059FE61AEFFD4B17DDC9FE0EA10947D3A44297265E13A6FC00D3B0EBBB2A85BCB16BC54E1656050612D2EC075D8FF80B960CA73DB2EC0502A1DD73B9AFCF9965298CF86F510037981D0D92F4D0ACDC080490E4504D013564A908824BD86F177B9A1D2BB31C709D1811487AA87C240B316BC0213950D349941430503EDEA0210E1EB5C94755464C2C44E4248061D5FA59F85B96E11E82262F47926C66E5223C0993800848221C1D510DE7B0646345CFB3ADD4DEE45597880964E848E2B9E94EE2DD5D10534B809940A48C07C2863093EEA1C5E3309E4048AC7F55A10746E8A0284A24F60C5A364BC8E15A30A6185FA4EC8D9C24CA1AF5054BB0325345FA7843991A32303A12307A1134BE67D7411A57AB3F041F3025351E4B42E345B3D040A9E758CA2327E3ADB27C062FC0CF7CAE70338CD21A0CE82469C41450F2CF0401981AF23014793AE1A2280B42C40DA4DA5320A035968F8F94CB695D93FF515C4630EDF4BEEFD33295E3F4CF79A8291793E37330192A2020B05A48C5CC29A1480CA8E7452BEBE1815B9CA38E048B40CBDD23026B5DF533D21110134029732721522D490A866203447F0439873C242103DF02CC52089951A38C49CBD53CD2944FA024D38293AE17B0734197442C81261EE4C2785B40F0F42C394DAE27468074AB0814E14A99C84760D2C7C374A0737B90D4D1CB502341A2B2B82CD1C0074653308DBCC0D09155A590C3934114C989D6D8AF3F5796460F18028FBB8964C102B00B516B10BD0B74A3E0F99610179CF227E1A96B56CA8641016881C004BF8A6C425F4058B306CF4434E10913E6530A2295A2034C857034EF1C6400F90B49A4D40672C15AE438214C45521AB084C3A07C2244C6489222C16B13BD06D701CF2991C8000CD05A22E61551D74C2D05065144D822860F6AD5C4063A50BB0D020B03A8248784258BD469AE846E4D0228AB08A522CF3F921029876EC35284025954E4BF43561DF54616909D22EC69A7E4C6B9AB16A5539A1C1660BD28A11E8C250188F6B38377C8153BE9ADDABD4AFE60061CE46E7ED49F8F8BE0AC21D3D8FEB48C3D7CA62482188E68213E70EC8155047329854AD6AFBE24112760A1807C9B79239563C2F8228051CB9089D0C0AD47B544BB7815915510837167280D386810AFB2317803F3EB73007C9A46AE7A67980329188FAF9E46A966F2B05AC807E3383684DB5807FF65BBF217FFB5FFE5B24D95E4A6A2FB0880AD041AC88F4436B7320A370C9D53ED55C880BCB5C81167EC8E7C2BF41939F5721218415441274C167CFCA7508E5771551F42DA228746E20CC1CEADA0137920845022108A24651CADF3B5132C7C07728641665E426029DFEF6B5E0A56C5618FE57389A1412FAB89C82A630AD56ADF25CBFD5AB81512A38DD92C538BF00C58222762C3CCA6A06CA82A58CF84210D601025D9493AC6C9CA4D3DDD7A6F024A504B1C65A00A453E90A5E618A7ACCE9BBF2F902F40BDD07671A38740BB78229887AE6A571E106BA0404C20E0BAD7E3B6EDA80303288E9CFEA023C94D0F2890F7348642A8B9AE1873ED3948C03A15BCA945611F9A3B094432A2D24A99B4194378AE0DD7438B00A0875BD7E9827103AE721420B0F0CD90BB984F1F34A613CFC46EA09A8542B50AE94B9347BA63090C6B9985BD4193F3D91C6F40898AAA186750827DC987B9349340AA13F1B5618057734AF490162F144D9759D4EBFE1B336B2B6312710BA4152848C3F30506F8587AE76138E34D3C9EC6E17D36AA0DD82B65A5322F5B57595F1BB6BD4D3E78AA6241257113559F44DA2C9542D8D0BD11942450E55C4C07D44BA010402154F8313F9D250C8569E4055045D9DF831CD66BA2184F98108C91A7F4E87A0A400BDBD3D70F8F0112897A929A463D530D02468E80CD9D68E2612C7B981780C15A88A0A14876AB9124EAE59317358877B4DCF4560550ACFFEC6B24C2412254A2D1A90A24907541256BDE2D62C2161B2E86109C0EA58350AA1FC15F9EEC86F6992082AA9E3AB4E6CD55B40B9702457054FB55A987E415F87599E4609CFF41498BE01A9A206523C0381BE2E1A7192CA35BD00564F80E903B01E736F00D7FB5DDD1720F4A17B004C6F007FC6D57D01D17B58D95009D60D0FF3B517113D434B6EEA0550D74F9352026AB9B3423623C4DFDE2EE063977442E2EB3EB46D6AD531FECA6C1F2912210ECD49A0CF8D8C0C87825FEB2415568078225170543B4D88DD3423485A961B4240287465C5F49F0FB6024018BA04FA6FBE7E9D0F2D60D32C52C3274B0D5F1345D370D2DC64D2D083E719E508548E41450CEA3B022DFC40934B760B5A808E6E28E1092EA410E1EB4EA80C6A0E83B34C41F03E16357F844A13534AE1E8D7C8D5D0420E34004BB9A550E8AC0886AD6B2B2145235F6F876D4661D25043F2ED41AE75096219A739C52B9BC3BD3B6EBF153EFDC97BB807F19FFEE3AFE8B99DD1BC85D859BA01B5764D225974CD090C692114D0A4CA401F082B15ACE37BF3F640AA890E365D7264E4CBC1E20E60F20128C43CBA1C4E44099330D2657CDD75EC98DA4153512972118E9E88EA81AA47D0395DA10A57716A0C75745E20D05C40A88135797C49D183AF5D1328462BAC8881923F8ED520A26A58812E17EBAC229E33D9DACA3F8DFAF4A52E75DB6E4042540CA2D945F962290CDB0C029CAC6661BCE041F7E15E28CF5543E4582DDC7BE0BB0FB10C2885FFBBFFCBBFD5B9056DD578C1DD67312F305400848D12D7D3AD0A1FD50338D80FA76CC9B0A357E8B0CACCAC11860D4AC7EA6051A11D470FC2243844945AC6EB2D52F95392A08C904DFF4044EEFC65E5662122BFC31943A12B83A6052D301DE1926B051C1940C409C2641698303188923026BD2BA21E01D30760B2862A1F0F4D3D853416A94CEB3B56040D4C7FFA53F7C2B7FFE63B619B98A90E7EF3B5BC7AFE6F82D342FFF24523404F60B127325D7CF165B06E68F4EC1580D3C121846841E97CB3146059BF08D3C34297078535ED0AC04A12E9E48F4D04ED2EB10A5E7425009E36E65B73068455DB8B2C3FCA05A80293088B55CA4DA8CA9EAB390517501C754FD7CFE962AE0D08D3DFA4C358130BA810D7E7E28F08C3415F2B89D0790511368C46EDE3BE8EC7E319D5CAD5A8D5C2E61AC7012B5C8A52F4D75C732D97AC1F7BEC47B0B8B0C88DAB32D06DF4260B2154628BDBE7388CE5699B4C54A523746E26A6F31234C3270623C32370D5753B60FDD0C6B3E602A102B86ECC742DEB40BBA1ADDF24564CB60ACC3F204D472DA8491B4267FECCC5CBB04AAF9FEB622091B7624375079B8620B674B0AC989D3844C8605AC54C4A39D06D5C5244CDA8FA7B68DC55D7B0561422858ED096AF4239572B8408AF53378084A54DA5CED2F40AFA0198E273A02B82E6330D42B1A4EA09A0F67065E9AAC610A57A9B5BB5B66DDB06975E7A299790692228157AEA3CFFAFC129E5BA7EDE085F6BAC782F2D2B431356D57D227CBED68921742B2B04D0050C76015ED3DC7929C30048E705C2674AE86CFA6A924520AD38D051215A14193850A8AB1CBF63FA0C4DCC4C906EE27D33214544EEC1349BA8DE7C2D7819597A441C15723852D9BB23B562381ABE75162F0A15CDEB51B2C7A48982C0D5CF2174062A7A34AF12D984B02B888465FA2BA3C3D1D3DC027837B7A57C1106FAFB617E6EE69CAF906221806BB900E0694F52581180C96609D1247C6BB92916AE9ABAA50B437AD64F10461002AAC8F889D5BBFA5C12A21A8249AEF84DD3C8546460548E8B2F860CEA70D2D19181E95B60B224CCBD410A08671B498BBC4A69FCBF0889A1D082E55E469303087980794D210B452134EB289654D9BF86C5012262AE2B8EEF623D2E9A6CD2D2DE0D8974163A3B3B607A66F63C2A8035B75AF8F5301308BA1C1AC59951746088A1E9A431966E3AF578387587362D7850F60235D9239A7AA8274A6B14B12D7ED9C4544607E9E8484084962FC3D0316A3D938112A06B944128652152284212A8268048DDFD0BA60144B7914549224797BF83B07247BFCFD3492A420057E7F17936B1D408128826240882B523004DFE9C9C99863886A39E5EEBE07C2840995B8DAD1226378508685A26433A3A13E6AC440521C218226CC58C6A57CA928B1AFAADECAF2E2B47AE86F90044D3CF18014CB590605744C257BD7EA6E74F84F3F93817A0E71E706A59E7181C131E3A4E247CD0EB19397A0A869E8B18560EA58A0A543530AA87F04C2469425DFC8E78322C093353371DD6BA6A1812C235DE68718ABE9E36145400C56AE53CBA80900368B02517603534186B948E6C9E4F0FB269758F4093B0B0A6AE73F06564BA0D692A88102A856BADC6A5846D7881881A456454733085A568E651331750797D474D0D1742878596DB90C61DE8C9253AB6545DB84E64F942359A3037F0A33A81691937731A180102B07A023CED02340F702234584BAB56B312C47981A8F37173EC28C05EF420740146C4CB895FA8CFFA35192D791A683837D30DC94F727347983E16617410583D06A6D6E683D0295F11FAF9706A99540A63122B26B23755BCB038A2FF1EF6D5596959D36F17A58AF552386EF49CD3BCFA79382D8C53C1EA7D8EF99CEE4EA6E9D91C1134EAABC4ED326C035FEB5A42B3734B70FCD43424B21D70C9A5973765FCCEA502842E20CCD6799E15F6699264B5898105F5CDAF5BB503DD1258AC07561248878F5A1BA411A034A55B4D200DCB0F745828EDDAC3B295330233DFCE9EA368D2CE46D120544AA9C34DD0F30CECF97E2C64279A8F68EA04BC36926BA594850885CF731363314EBF526B1D1D76AA372CEAC8B57180D9F979383E390B1DDDFD902B942087D1C0F0C8F0F9428028FEA57FEBE53C241D8872003AFC015D1593F65C7FB013421149A45BD597CCFA97D70AA2F4A866E5DA9AC370CEB26C1F22C1857586A69A818C6A0D60597B60B9077B826A5833D0134B1CCBA21D35CB6879ADC0759BEB09FC39379AA08AD2E7420FD5F3693937BB6A1775EBAC0D024E9E9A82A1A161D872E94570CDF66DDC7338303078BE5D80125561611E326E1096834D26B0B9E5DD7A3D548ED05FB0E0B8A3D79EB428AD15BDA4887ADE4C66CEB803094D02947A7AB6B4E03C7C6C846E72E632720F0A21A455A089E63AF0BD2FC31C8111B6E3341785C219C246F8C2561875046E1CBABB3B59E834A1232AE044797CB9460E902B96219D4A414F57070CAF1F40A21987ECF2E9E7E74E01DC48FED414B2B0001947D33369317B11095B08EB353B1BAD5FAFF832F4EDA1C04573ABB96C2A3387CB218465671F9AA13F00FBF3918043D70051093AB47C88A2031B117C4B794C9530E20162D96B4AD0667A7A287C8D028113839E9E3EFE7E9A2318093E68CAF7AFE5D6DBD90EF942114E4D4EC381C3633C33686961FEBC440165553E94A1252E1572D0E5503A3815C27CD8222E74E826ACB0AF294F00CCF8EBBE0C7B0AC2260CD342AEAB5686AC31630F9B67A3C8A0B9E740A881D5DDC1D2EA446E5AA3C0A0869D2ED62120F7184AAB78A453CCAE34338BA36418672E0308AF88BE8F15821B54021E03CAD3D354741F11747064048E1E390AA562A1391BA8C367582307D8383A0C6FED39C8E693A25CFFC8104C8C9F3A3F6160D3DA36401316EB90308B1884166F41BE13358984DDAD4284505FF102685E584F84E7927A3122A50CBA1B878B48222CD29870D15ECE8DADDA111194EB882324924C1CF51431FD3C228D227423816911338AA2C34F0794A5ABC490085741094C3158877CBCA29ECE00321A483575BDA3A707613AC6CBB504BA6B89B982D6ECB5E6815AB219D876D9665ED76868FD3AEED1A005A4CE8B02A4742EDB5E5151D2CA9F56D2471A7E27A445F4A20910E679D5D782344A63450C225A2436847161CFBB3579025D3E068BFDFB3AAF1F58566F2286A895DAD142350D2BA62EA03805277CB88CAC5E932681A4AB8AAA72A8EB831A6D4CBD83945E2180B17CD0135855612BD5D60EC4A54C28E840B44A9922C96BCF046633299E3C323F33C159C6F396094CA5D33A9F2FA2146CD05865116507562C996908A01662CD974DEF115105297421A14298EAA19D3534D9059D78626BB5A72449A729AA8010F245D8A62EC3256DA4EE55B4DC03E873F29A06322A56E91474DC71CCF423CEE84930D3DB8388001A45B09421996D61B248936CA42578B3EE4270016ECE614860259DC94861B140961377095BF57E2BEC0BF751680AFB04877D4D2E234406D11C425AC9A468667FD46F104E3B5C1642842B661A56DD2458A310D19A46CC037453A84D22039B5086F986A8972F248242857C423F173A0720CC1A45D67D229DE1CD20A841A3798DA077D7B0F9BE2900CD0D48265255A18B34A158AC29E386C587D201FBA1267E81AAF5473237D6EF34050986D085EB445BCA1058E122584BC819722AC3295AC6920DB0EA50D10856F38270992561046EA791ADE64DAD5CBE154130EBD7593F1116BE28F1A32302C728877A1E4F6779F9166AFB6EEEE38BBA7A2F5404A069CA1557371286F3CF82C6AA615FD46D22A2E5DEF1BE1648AB8024C06A1EB05E3353B4653312E8FC3F9812AD889A69781A591318441D368115F685D9C6A6BA811DF737CFB00996650E7D90CB1404347CEB32B011BA56044728343068414D21BC8C0D377D06CD933674A87AC12A80DD1A1EFED16F58CFACB6B0B0141C31FF9A99C1B2C2FA05AC720A5D5011CDA9E4F0BC515D5AC8A8CB58580B14B00B300A180A5A5AF31096E50340366504ED5A81B492447612C9D32E21B27A116EF3666702CD114BA5F875B57A77D4C4698E0B5103C2DEE1382F1BEF58D04B24A9A185E284D6EFD8E56123348AF90368B27E7E8BB3D2FAC189C2493662270A2BA5359B465ACBC2085D4A2584709B6A0D06D675B75E104D62F5CD02161035A38659C670DE62D450E2D87C4042B86E11C7FE4E735D5F98E56C84EA05D07C115C5EBF5FF0BC7E9EFCC99358CC988935D702DE570488C713459308315DBD8EE90B0CADD6B656A5F59CEF97D0E426C0CE17585B6F4411A13EA723C2D4B0BDFA082C3B85B59F84F2E8D29E98627C7F60B912B30AA70C398DB416E70DA4B500634818AD65EA79114B194E42F1F41A39426702815D81BA7E6EC8C4EF4E065548D222D2D4E21EAC5CB1433D3FF702A4FAC0DCDC1C54ABD5F78600C0EB04B8617D9FFF0D1AE1B430B50273D3EAC76A9E9BB696D3857DCBA3007B2A3458A965299A7B0FA4D57C2A2230D0D7116515228515614EC24C4F8F2A7F2AD367878541106523997D783EBB3CF0EABC6A07ADD4C1F718D37BB43247BD0A8D4A95F3FC6A39F91254F205282D2DC2DCF414CCCDCE412E97D78B48F9CD616098EC5ABB06D08254345D8C26ECE6F3792895CA50295738DD5CABD6A054CE43BD5A87CEDE01F8D8C7EE7ED74DA1CD9DC1DA070B1C003BEC033BEC0303FDD1627876BB5893F5879544CBFA4573D51096A716C26E6A19B6A38B309D1C095F8468104002A1378BD79C426B8C076A6F00122A731914A4F06A7A53892A046831B499448306B2508085991928A0000BA5CAEAF13ABEB6FDEAED70E2F809B4B8793DEB2708F74A32255F76457A070F23789E5C224E4F0168B5D1B98525985F588442BE0885220ABA5864C499989C84220A3E9BCD70E7AFC7136962BCA23B71904C2A0B29147AA5548002FE8E9635168B9A14C0341B98C53DC0AB867C000C6BD72DDF34E4753D372F92F9E9AC1F56B17E8B33E85E78724059D98076598736BF8A026D400C05E952730A1E2E6D5AD5A8A1302B20687B141264B984C2444196F270726A0AE6110E73F982DA95434FDB36F7EA881EAB52AE13C5F676A8B7ACAFFEF2CB2F854BB75C0377DEF931F8C33FF803AB27A179155F4AA85DB2FD6A5ED49156FD72748751A0A7722FBFCDCF2FC1D33F7F0E4E1E1FE33999AAE1C4E5BE84818101DE88A265A09FCF55A35DC33429A57D8DE87BE3F1B45A9C4A34C07D17CD22B602945D6B3E192B81D75819F6590D1D0DB95AD807D0227C6885061E28445FEDCC4142142440B442825981C2137514240A53A23045A588C22CC0E2D404E7BB7722A47A9E77563F822776EAC30C1EDD1319238113243BA112044D655C2764F55A199A1421EA78A2E6F01AADD3C74C5FF08E5D240C7A4E35FA7583433030B81E868636C0CCF404BCF6CA8B7C1DB61B0802B962B6C6F1931370F4C861EE35A0AD631C61BA8E627CD06E21B49B19FD068F9A4EA4A26E2C2B5A1B8192758806ADB4946C36FBDE38808A02C2D9216C7117BB0588D3562B688DD42748076D1F470B21207EA245E23D09B25EE17B592D429E7CE2F4348CCDCFABCD9DCEF34D65DE020EBF5C5A50DA45810724785204FC1B29845606C7F19B50C09476CFA404A4026FEEDC055DDD3DF0B3F163B065EB55B06EFD7A16785757EF0AB4C8E59694FF6637605623E586D3150A40934F95B0DD70222B5D5F4C2B337D3B2D191B8BC7D4C452A966609252D0127304D0B1641C7AFB06782BBCF7A600A6335833E7177EFC43709F7C0499A6D794D3E1C50A1B0DB8906E6AA2A45E5A0D85EFFA962290D50791F5BBA404B4DE202982886AFB460968F03B3ABBA1BBA7078F5E167C77771F6FEDC65BB584118168EEDF9B9982B1A30761F7AE375020EBC35D554C1848FB202EBFEE5432ADD609D6EB1D2BF472B8A894E47D02BB19EE7D760FEA6FDC828F210595F063F1443833E8BD46016557AF75633C1A2F49E637F702F0F6641798F05728022DB9227C9ED5E31845D068C02E81B6AF7312D08290493B7CD0664CBD285CDABB979A3ABA70D0692CA20CA0B5AFA2BE15F239989A38C57BFBD07E7DC43D78F7CF9656FCFC80DAF4CAC4FF1A5150882BE66C8F0C0FC2E6CD17F30AE16DED6D2C741226ADF241C927AAC8D66A553555CC9E1A469B796A83A58D2A5A28219180F78800561868B77009BD79A05A9BA60E17F28D0685D6E06FC58384DBD6DECE3B83B6B577F0E3767AADAD13D2997468C536EC375BB61A8B422EC77BF5D0D4AC3914F8CCEC346F6CD1DADA014ECCE5F7B76B571009DE89F622D6055434A8150A904E25E09EBBEF50C2ADD757CE0DA4657BF5F67B856209BF7B16728B398E1488FCD14EA3E56201BAFBD6C13D9FF854531888F21242FF18799A4AD44A17106E950E2B148117427C9FD299DC8F178F31E432D4E17D426FFD4A1642D69B6D6983361434099CAC58EDE4998D08E132680F2DDA84B4E11E812A61945B5C80C58505F4E10BBCFB47017DF9225A3AE51FC9BA091548B8C9542B9F4F9A45A8CDFC3F1D25A9AD11EDE5E95536D05B0501D4654469628A2469EFC64514324D0B9B9B9FE37D0872B94528A2D05BF03A1C37A936DA243E869FA105278B78BD34D3B8A525DA00DEF71A661755A915412E57846617808395C6415503249AFA00C8EF3B187298415C9E1E75C4F24249C47EE96F8AC4A8ED58D57D8C67BDB040E331255CD4DEA4DEAA55ED99E7447ED1319DBA6E53C7AEA3977631EF6B6A5DB306B8942FE18016192E69FF3FB51277951F174BB4D72EC6DD6E1C859BE1739ADF914CB5853B8AA9CDB1235267829F30D4734493D0CD381834909EBF8203D078E60A659846D2BC94CBC3E4C4386F7049E7EFE9EB43455CE27374777641272259A552E50C251984AFD7365008E1AF9225AC917CE356C3342942602B81AD00454A6C6778F7C928FCE16558C8DF246408B1D1E05BA4C559261C638167F85B28D065E70A174CB4E1C76E4AB19632AF544ABCBC3AC5C8F57A2DA8576B5EBD51AD639452450BAA964B2517A135EE2633ED28AAB8E326342A342B6B3CDD1AB6B6DBFD7C8EC66FBD198A5A6E56D8C21591E003714634F065B022505F44C57CF8A11FAA750C755B9D5AE54BED676C5AF5A8E59C908ADC022907CF41E0245C03AAD51ABE2FC5E867DF4AC53CCD58A5DD2C3CEB005B096C05786EDB15DB6BC74E3C9E74F164BCCBB754A1D57292D5DCA7212D99484B36CDC97DA9CF45FBF5D565B4D484F9E1BAED46D78644B41E85AE0709D5F68D776A917A122211AEE1E151B8E4B22DB071F3660A97BEF3B9BB6FFE2AB956FDC3B3FA68779C587FDFBAE1ED1DDDFD97B4B6765E124B24BA1C6DBE41283CA7D9AA1D6B4A78205611FCDAD060B565DC7308DD46E9A330542FC449EB08BB71E6103EAF1BDC5011012D8C89A84979EC24A478A7B281C1215E34CABEE5F3397A81528334ABB40AD61A1D4632A102FCB3DFFA8D996F7CF35B1BEFBCE3967B77BEF1DA0D3210C2AA15AD524292BA699B2672E9A88081C6B1FEA29D8EF4C9BDCCA3E5CF21E4CF609835E305FE02C2F0FCD1C30716C7C7C7C34AC6777EF0B389F5EB07D751CE7B768E88D73CFA413A16D8C755AA555E63A7B3AB137ABABBF0E8E690CD75306C4A4A3A4FC1FAC16546367C2D08BC85A9F163C7F1E8C4E73DED9D3D1B7BFA872EC6FB4DA94CEBB06AFED104AE4929C4394303B94A2288C23BB50BA8B5A806EF2DEC42DC8DB1A05919120E5A3F721147F1348A54D2A934E7032819B55A18582E15B35A014A1049C8E30E0B413625651329412598C4BBFF571FE7FDA68909FE6E113369C6FFF2D0538B78BF0E2C843179774A95920F2458A450CFD72B6B9ABEFBA58585DE54AA659BEFD7F218AA1A8D6FE80168588AB1945B9C1BC763373EEE4A26D3FDBD831B367475F76F6869EFD884C39E59331A9808E20C68B01A7DA655C0E9F708B399262D938F3CA8AFAF17A39556BCEF536B17076A73C82AEDAEAE2304E24EC239FD52305EA341FE9F34A3AECD7639B983D8FB19A289885DF22A2E7850CC9241FFD6EDC4B3DB11DE2E9E9E9AEC1E1C5C1F5591EDAE625404DA4225F033D6D2A84158C62D164B9FEEEA1BFC3425845039503710118453C2532CE17B1664E0CD2239D85B2E2DEDC23754B4422CD56A958953C7DE3E864707BA96F6EEFEF503BDFD4323ED1D5DA3480AFB9AD020DCA3C85A172B5CBB3838231AAC363BB8A7A713B66CB99C7D7C3A9D82145A33CD43A4052789A06220C8CBC252EE255885E8AD165294CB85B1F25C79D7817D3B0F58BEDFB73AEEE4FBA200220AA81DE397D3E9D68BDC78E22A379EBCDE8DC5AE45B8DB803FACD5CC2BF0F41AF84244051A93AE25F24803149ED6DE4F0FFF1BDDB889A1516DAD5277D152B2387878D4FB0CB14B24529F4A2607652C9E58C4D7F6560A734FD7AAE531FC8259BC48429FF4E2ECE4D4E2DCD4187ECB1B99D68EB6FE75C343C81D8691730CC7A488D98BA269CCB668B35AC0693534588D0374B563187BD9E6A6358228CDEE9F651D04D97F3DB7B43096CF2F1D9C9B9EDCBD77E7EB6F2D2CCCCE6BF757D2F765ADEC8DA86F7625093CE7D0AE2DBC856039D5DAF58F7110EE42EB6C8DE2544FB7A361F8974AF2AAD944EC08DA4DE54E4DC976954F44A8242BA1D0D171CCB2ED514440BEB067FD26C8CFCF42A356845ABCCE9FA3CF53C86716ACA64F795EBD0B3F7A4BAAA5F396EE81D11C3EFFB34A6E7A2F9E98B6D2F5F1A8E291C6CF1466A74F14F13881DF9FEAEA59D7D3D7BF7E7D777FFF50369B4D534289EAF2F333F3D1547ADD8E2C65E426026EB895E2BD8E6DA35E2BCECDCE1D9F9999388A023F801CEA008E57DE1276451F65EDEE6A96F01B76DFED3957002D78827612726F7BF7BAFFC98DC57F0D05DD4BCBCE2D0730823D121A4D4A49675A21DDDEC749170A3BE96F3C274F0B9042235A529D2C39A6A7627338473D096839870F1F85DDFBF6717304E512844C6AFE6056210D1842CDEE1FA62CCD29DA46B57DDDC8A5FF3C73F1E6BF1E5CD73DD6D6D1D19DCA667B33994C772A95E948A7526D8954AA35914AB6A493E9743C118FA56889F7440CE616733C9E73A800FBF6EC87F9D97915DF9895AF783693DA192D58A518F44E69ED42213F3F353E71F2D4A9E363470E1E383A3E7E7C4213DDA2167A65D951B504DF58CD059C2E0F70AE7A0C075A3A7A3F9E4AB77C03B535D30465225A5984A09C854F03994EAB322B0ED8C33F7C142EDABC11D6AD5B87DAEE21E92923F3AF63AC5BE62E1DDAD1AC56A9C164B108274E9EE4CE984AADCE7043EBE824E308A324683D959B5085C8540A2387B6B636686FA7F430C26E5B3BA78B396D8C7F476B16188EFDC3142A1EE52788817776B4736128195759C85DA860375D7B2D3F5ECAE7B90183CAC4B318CA6D1C1D81E191F570ECE8F1EADB7BDE76171773F1B07CAE97B6033BBFB15AF74FE0FB33D35333C78F1F9B387AE8D0F15DBBDF388EC476490BB4A88FF2324BB7056F5BFA6A7EFF8C99C0B5F8F415DD32F77DE10B0EC6A11D6E3CF389EE751BFF6461E65442D80DA20675F4F668BCAE5D32A90E4282040E7442622C9B8299B9390E0155FF9E1F2D8FAE971D25F84FA513D0966A816CBA9FDD47269DE273C4F040A201996C8684CA8AC5757B1D2665F0BD2DA80CB4F51C23090AFAC8D831D881824DE3E78AC8B4F328D8975E7D0D2AF91CBB9D69BC1E62E3C3EBD7C3D11327E0E0D16370C355DB6178683D1FFB0E1E82ABB76DE5EF3D7CFC44EAAD4D1BE0C0FEB717DE7CFDADA55AC5EB4217D7C123E0F91175C16BAA56ABB563C78E4C1F3A706062CF9E9DE36FBEFEC6A91AED26A504680B7DB9A5979709BDBE4CE82B08DFE96A01E24C1A29F4E600F77FED6B2CC3BD7BF7860A30BB75ABB81DEF272626C4E2E2A23825847BE8E9A787B3DD235FEFEA1DFED4E489FD808C5B13366BED3FA1325CC6FA4901928603E031327A31B4A1E5A5D34915E76692DCF2447F4BA512FA3EC9240BCC020F78CED6962C6492296BF76F170E1F3906375F772D2A420B77E850A7D0E34F3D85821C54ADDB94E5A4D0B25E8775BDBDD08A0A43A870E0C85114E816E8C7D73859830AB17BEF3EB8E143D7B22B228EF2222A481B7EE7B6CB2F678579E5CDB7B86EDF4AFBFBA2229411954E4D4EC191C307279E7DE2C9A3B55A90DC7CD1E6D61D377C28B167CFEEC9D75F7D7562D7CE37A7832030106D7C7549437C791581DB105FD7C7E958FE19057F4605D04902F8025A756767A7934C269DA958CCE92C9544A5AD4DC417169C1A4266B65613451CED18622DC6E9EEBEB7DEEA1F1F9FFECCE0862B7F07B5BEB3525E846A29C7FBDD12CC76747540473B1E9D9DBCE61D9E5B57E95AA1ADB50DAD3A15F584E37D0A7D392D90405618D3E967AA9851F3E5964B2F668B4DA10215D11D3CF4E88FE0B28B2F6258AE377C54AC04CCA27FA669D564B9543C22E11C3D790246D0BDD06BE676ECC449989D9D81EB1105CC6DEFDB0738E4DC8E96BD88109F43C87FEA996761747888BB714A952A23FCE0403F74A23BA9220FA1EBB8F19AABA376AFC52578F1ADB710D116E4E1036F9FF8F10F1EDE7D6AECD81CFE86AA8F610A8E711515A08647510B7D359F5E79076B0FCED6DACF5A01BEF6B5AF39CF20D88EC258AC31DF9A086A350456CA3BA016607C46C246D88E8F6CDED0D3D5D5D78FD0D7974CA4FA119907319C19F1A53FEC88D83032E46C4B26EBD23AB6A6CA48969988A956272453502C1459D0647D44F208464958C572191E79ECC770D3F5D7315C524690FC2EAD927172720206FBFA19CAA907AFAD152D1C2DFAD09123F0997BEE8E326128A4EF3EFC307CFE539F6C4A93923553F1E4AA2BAE50440B05776A62029E7DE125F6E5E46AE6969660B07F1D2242163A68257054C893F89E8F7EF8661D7E05F0F26BAFC386A121181A54792B721F2FBCF20BB872EB16FCEE0A378F965161A797721C06E6F2C5E0D0DBFB0F3DFABDEF3E3F373D35D9A8D59688C1378246194559F6556EE26CACDD5E1107DE8DE04FAB0064FDF7DD779F034343896B86360D5F73EDF62F20C31A42841F4063EF4363EF4621766378D6815ED985703F3CC1AC381E4B7086CAD5748176C198A28140E1EDB8E17A55DCD005978585451474091E7AE44708B73DDCD244A94F95E2C4F00ADFD387A4ADA7A71BDA91C0510A983EF7B3175E84EBB66F677267DFF61D3800274F9E82BBEFFC68F81A21C637FFFC2FE1866BAFE67C7A1E854DCD1404D3192A2BA36250E3C538C2F55DB7DEC28842B719BCE6575F7F1DEEC173995554A9F7FEB9975F81EBAEBE9ADDCCDCC202BCB9672F571689D42EA0A007D70D425707924D44B429E40EA3E86E36EA859DC64E9D829776EE4145C855F7EFDCF9C4633F78E88952A1308FD798C76B2AF8D52A85A0E891EA154BF0DE32DF2EDFADB59F950290F5A3AF470ADC991EE9EFBFF78E3B3EFA47DD9D5DEB49C81D2884B82E9592AF8D23994BF222C57178FEE55FC045A31B6083DEBD621E076776760EA6676678DFFBBD070E726BF6C0BA01B6720AFDDAD17233992CC2ED41F8F89D1F59D95B8770FEECB3CFC3A7EEFDF8B2FC7900FFDF830FC2AF7EE6D33CF04B08B544D4C802F71F3EC2716817BA981AC232A1C04DD77F085AD2198C00DA982FBCBE6B3722481F0CAD8F165CA252EC4BAFBE0A1FFBC8EDA1C009F6BFF3BD87D0DD5CC2F0BE88D7D3D9D5CD313E9566F3A532C4F17CB7DC783D738312A2D6B32FBE0C1FC6E7AD1A710E1D3B0693535370F3F5D7F352F2D3A8582FBCF126472E28EFF1DD6FBCF5672F3EF7F3E76BE5F2122A40BE82B746A351C92793751C405F0BBF79DEEC396CCA585501E6E7E7E3B92068E9686BFF320AF4FFBAF9A69B1315DA0B07A1F9928B36336492AF2DE20010D4D18E9614623DF6932778B0A84043C26D359D39381833A80C63C8A009D297DFA8FEFDD3677E0EF77DEEB32BFEB667DF7E984125DA72F965706A7C02A6F071A95C41B2B881B7B7A32E9F2E146C1E5F4BA110B66DB97CC5E749AFB65EDEFCFAFE830799BC5D81AF4FCDCEC2CCF40CE4F01CFBDE7E1B8691232C20615C8F0AB279C308461A2916E86164FF830303ECF74377825C617C7C1CEEBEE3236119FB7B3F7A0CFA7B7A58298868921B3874F8287CF4961D30D0D3CB7C88BEFB0DBCB6436327A8A3E7E707F6EEFEF7C78F1C39D490325FF2BC4ABC584420A87BAF6FDA14C0830FAE1AC29D570598ABD55A7BBABA7F13A1F8B76EB9F9E6C15EFC4113089334D8BD2860DB5F1BD81C43F83D72E8107C140763B5DBCF9E7B1E2E45A24683D8541347413E87BE731E85DBD5D5C5309F2F15D99D904069E70F62F21D38707584F1E75E7C113EF7C97B579CFF176859DD68F99B376E5CE61A0E223F388C42E965D8A6C1CF20445334D2CAE162062667E6E0D61BAE6365E59DCA113D9E78FA19B875C78DDC75646E875009E87AAF47B24788430AF936461B0D8C78D6F5F7735453AD37F0BC69D876D96561DE83D0ECB9975E865B6EBA118D233ADF182ACF932FBC4C91451515E12F771DDCFDA7B2509DAFF87E395E2AD590287B1865050F3EF040A0F308F2BC2A007180AF7CE52BB13A62737B2A759F7063FFF3E0E0BA4B6EBDF99604CDBFDBB773277CF9D7FFC1694F486CFCDAED57C2C8F0B055972EC0D4F43432E70A3CFCC8A3B015854AAE83C2A993A854F7A0C2747575B232A5F59E7B2480EFFFE087F06BBFF2F915AE814AC3CF3CF71CFCEA673F1375B3A03088533C814842A49206AB8C164D8D961B464654148082A61AC37E8CDBEFB9E3F6E6091A8842BF784DF9FC70AD231C9B1FFFF469181E1C64574373F072887E1806B02174B6132FC9C2E1B131B8F68A6DCC51CC6D1C619FAE733B12427B1C1E7CF43158D7D78B616215BA3B485947913374C0091C8737F6EC43742D8CE71616FE70ECD0811F211A148378BC1A2F14EAA3A3A34CFEEEBFFF7E795E5D4048027B7BD36D19D1DD126FFF8FE038DB6EF8D0F5A31B376E80A79E7812FEFBDFF832FAD8CEA843B6A0043C3935CD2CFD17489E36E1A06770401A68CD34E5E9B61D37B105934BB005FACAEB6F6054E0C2D548EA96DFE8BC4F3EFD33F83CFA7A1E407C4EAE6401ADF8145A1E4DD3EAC6EB5842A10C6158B709E19ADC1475C6649063BC816C7F0439C7060CDD9A5DCE123CF3FC0BF019E416F66C9A497403DF7BE411B86AEB56766BB3F83E42A44DF8F91E0A59F1FA67E6E761DFFEB7E1B69B7734FD8EB7900C12471AD51C8850E2D0D8714E1AF523621221BCEDC61B98EC126212CABDFAD64EB80815A05B8F2515B176A24B790B3951B95C7E697A7AFAF76767C7F6D4CA4131D6D65649E7F3F5C1C141FF5C2AC169C3407603895A6B47ACED36BF1EFC6E2299BEFE4B5FFC824BED573F79FCC7E8932F876E1C9C34A558D1DF7750C76DEB4A01D3ED71B422CA94F5F7F7AF9AEFFECE77BF8FE4EB3664FB3DCCB45999D02248B0742CA0D0E9BCC88E50385B78C0F83B71C0298B38818AF7ECF3CFAF400BFA694FFFFC598E22289E8FC2C30A277B5E4048BE1C390B85A3F3F38B4C1CAFDCB225248B1C71A0A25C7EC9C54D6EAB5AAB61C8F822F3198A56A65071A691471C3C761CC7200B0B4828873134BC0E9190DC242354B1047B905F5C77F55510EDCD00185A4E5254C0EE22440F3CDF23E87EA40C1AA54AE9AF8F1C3EFC8D7AB1389B0E82E2C1C1C1FA33F7DFEF9F57052014402D73DF387122DD924E772584FB2F9289E4C73FF9F1BB37D1E40862DD43FDBDE8CF2F3ECB993B01FCF95FFD15FCC6977E9D05460348CC78727212076E0E3AD042DE40FF4D892162CA57A090FB50195AB472B5E8294F7BD097D3ACDC6BAD644B389078AEA7112DBEF4C52F825AF656412E59EC4F319258D78BC414A196A09CDE3B8A2E8A60DB5698E731C4BB64F366E8432BB56FAFEDDAC56B0090B25054430AB784EE65726A02096915EE403420811BDF4E63FAF2EB6F723878E945173529FB1BBBF7F07BE9F7858928E44E2FBCFA1ABA84768E124A3806AE9EFBA766BA0753FB5F7FF5C3B2569B433E50D9BA75ABF7D5AF7E35386F0A6050E01544810E2483B1546AC095F292BBEFBCF3CF46378C76D3ECD7271F7F1CFED5BFFCE7A73D31C5DFE3A8DDA790E4506EBF157DFC1BAFBECE56DE40DFBF1D079F60359349336C938593DFDE83F05AAD94E1BA6BAE59F5BC6FE20052DC6D471314AE9160C61035A64E8DC3D0D07AF6C78BA80024DEBB6EBF554F688DDAB01EF9C99348E4AE5A414877233327051A4517462E6D021595B27EB586873EBF95D3C3C4F00925E88CC7F1FB5E79ED35F8F4C7EF09C9B0B99DC0A8E52086A51FF9F08ED0EA292A78E4C99F72A84AD943CA16528DD0E5E5E6A3F50C046F01EB70310AEF835FBCF2FCF6E9B9FC040C0F1711CBCEBF02100ADC8E28D03B33934AC7E35D4EBDBEE1A24B367FE1A6EB77FC138EDDF7EC815E84CC6DE82F4F8E9F82291C2C124405AD9BFAD47A1176FBFBFAD16FB6401A0786C8523BFA5062DEBBD037137C8F2CF3CDE646EC9BFCF9459B3735E705F0FCA44C14316410B6BB3026A77AFC387EF7A568B95722B95C3E43F6D9175F6292B53C3C0C34C11B45EE308ADF45212611B7325E3F1150226864A514F1906B70CEB00B57AE50841F3EF113B863C7CDB07E5DB34251D4F0D3E75E808B4647601ADD0C296506398A59CE06F43D25CE788228AF4AAEEA1B8D863753AFD5766304F1C8DE9D3B7F9008026A5829130F38EF0A60A3406F10B4E0CF1FF083E0E2BB3FF6B16F5EB471D33ABAEA63C87E69A0D60F0E00955189F4110C9A6CDF99EADCDFFEDBFFCA717FDADE69DB227F7FFA977F059B31D6A71A00855679847E62F09474210E90B09A20A951F481EF3F8CE7FB4CE873EDDB8BBF781549610AAEBAF20A269227119508C6EB88049428222422D8EF4594A273DB3EFAAC1B359034FECDF71E62855261E50CCCA2C021AE2A8EF61277BCE1252D46CD093530DF276BD5EA54A55C398C02DF3B3333F3C6426EFE04BE65D1ABCB458C9A96E2B55AE97DE100ABA1400B4067E038231B47473EB7E3A61DBFDB9A69E57CFAC2CC34864E77AEF98B291EFFF36FFD357CFCEEBB98F05188B8B494E3D940D75EB59DAD9688A511285DE5533F7B06AE409236D0DFB7E27C441EBFFBC34754765043F1522EC7C29E5FCC21231F63245A8FFEB7B7BB07CFDFCE027F27653DD38DF80A9D9F881C3A675E2093AA8E3C41C5AC72A6572DA19D517845316DE988403E0AFC1486AF87F2F9DCDEC9C9E95DE54A710EA453C28F9571ACCB3121CA180A56DC20A8C87CBE8A84F3FD8902564381C1582C5BF5CA0331E95C74C7ED77FC3F176FBA78847EE48F1E7D047EEF777EA7C92297DF48B0C74F9E444E30C1451E1210FBE96C2BCF8D23AB239F5D402BFFE1638FC37FF72B9F5B75670CBAD21F3DFE13D871FDF59C3768FA0E14F6C1A363F0FC4B2F71BB38ADEB43F13FC17827BA9E1E8C5852EF62FA7453F888A1DDF11327D9BA49E0A55A9D512FC693379A21DD11E65053CCA9EA87DCE5380AFC2092E83D93D3937B6BB5C692147E1995A2EC415001CFA9C6A4AC39B1589D0A02AD3401BFADCD431EE6EDEEEEF66F7F3FF200A74381E1623119D46A9DC2F747464786EEBD65C72DFF8A4AB8F30BF370EAD831F847FFF0CB1CFBD20011F1A3E95634F59962E74E1C7CF2A3E42E964F5E587EA384CC934FFD14BE78DFAF9E166AFFF35FFD35C6CF1BB99132572C808302E8EFEB6372D6829C60215F8499C909F8D86932926773A3B6B453182D9C4092373DBFC0118544DF4CFCC7B116D434AB997157B09E4941F79EE7172B95CAB162B1F8F6C2FCFC9E5353136F4B298A24EC40786547C62A880234F1BEE6C41B75BF0C0D12F8622CE64332E9173D2F18AED502CA0222EB97E75AF067AD0061810820D676F2644B3D99EC4780BBE8D6DB6FFB0F975D7CC945847507F61F4038ACC255DBB6718288E075B57CC0D9DE8E6358B47BEF1E762D54541A3B7E02A6666778ED7CDA9F8F2CBB0B158BC243FAAED5FCFEF3E8F763F8F5375E77DD597D277103525ECEE0A12297ABCABAB9A3289CFD14DD0BBDB78EA3674E371AF58552B97CB45828ED9F9E9BDB3D3B3F734422C550021765D488AA749CAAE37975B2707CAD51419697420BAF529CDCDEEE774E4C482370BA2612FAB92EFEBC2B05E0ECE003F739A9475229D193ED80BA1C593F38FCB15B3F7CEBFD54A6A5313872F0002762DEED8D922E14368E1D1F830A865C548CA9A0C047378EC20012B42C0AB9B35D355EBC8030FFD97B3F7166A249B587E75F801E449D2BAD2490F92E0AEF48D128EE5E2AE4799A154DB15233A49BE11C02BD958534DB552161ABD5A68BE5D2E142BEB07F7A6A7AD7527E715C68FF4D4207C7AB0690600B0F2A9546A65536AA5EC673924BBE3BE7FAA5D152B015B6067BF7EE95EFA7C0DF9502D865E2784F4F36E1FAFD52B89BD10DFCD1964B2EDF42CEEE451CEC5FFBFC67198ADF3931E423B49E62CBA6DE3FE2054EDCC5D87B94F3E439E4021984F56D975FB6EAE7C7D052179716E1EA2BAF7CC768E3FB8F3E86216917934A8AEBE7918F505C9FA22210E5EE750752B4E6A0DA3B9056E18268E20912B6DA7889FC772EB76F7A727257A95A9A3516EE134943EB4625AA52BFB9A43D32D1C253ADAD5E6C69C947771EE067C9B24381631827AD9AC3DFD912A267AD00A646D0D9D999F412890E64A7C3EB06FA3E72FB2DB7FD01B579F968B52FBFFC12FCD3FFF17F684E08A1C512B41E3F81C29E9FC3B0ABC67B0C5F76D1259C2BA08E5BCA0F109284BB8DE067FEF6BBDF832F7DF1D74EEB46A8F3865AC0281DBD22C2409F4D212AE50C9C549AEBF4941FA0E554EC648B5A19D46CD1AED7F7A505E77CBF86FEFB04097C610919FAF4F8EE7AD5B3085BAC42906E081B4AB2215DB7E1E4F37E0C7D78127D38224480219BECBDC004FEAE1560390A20D9E9138EB3F9C33B6EFA3FB75EB6E52A9A38B917FDB6838348D9BEF9C505A8224BA6E2D0A6D1515EF28CF60BA64920AFBEF106B76EC562A76F4AA614EE6BF8BE4FDC75D769ADFB6FFEEB0348F4EEE0FE044294B9C525B4EE32FAED34B77F53C368389BD92CC040CBB8FA46E06A7129CFF7F06348D84AC5030B0B0B7B26A626F72348156CFF4DD67D3AC23680846DB9C0EF4781C30528F0F7A400360AE4110512420C617875CB476FBFFDDF77B677F2A41BD3194BEDD714775348965C16221E3C3606AFBDFA0BF8075FF8C219BFEFB59DBB30846BE3926914522EC1D1B1E330B7B0083EFAEB69F4E5D4644A459926BF6D168E0EF424525A49CC572DE618AB2F964B95A38542E1EDD9B9B95D537353476201FA6FB26E8CBB9D1842BAF7EE08DB852EF0F7A400E633BFF99BBFC9FD0241A3D1E748B9E9861B6FBC7FDB96AD375002841221B256851D37DE7846C2F7F8D3CF708166B532B01DF2FDA7BFF81622C806CEF6615CC5AC9CDAB2285D6A967EB72DDCE785AD3C5E3E8556E0A40E4FB4CE993265D8F2F9FD33B3D3BB161773A7F0873361132C700CC968410DDFAF0B74D899D656246C9E45D84691B0C1DF3961BB2014C0A0401551A01DA05DC66243DD3D9D37DE75DB1DFF777767B7434D238FFEF087F0BFFD9B7F7DC6F35087CCB7FFF601F8F55FFD3C570123BE70024E8C8F23C9CBF17EBCB44CDA72AB0E85AEE09BA64123EBF27899387CCDAF56ABE32564E8F95C7EEFC4E4D4CE72A532CBFEDB47C2E6A275FB4E354E31381EBF4C84ED4241801005F03E5314A2CF8D8B4DD75F7BC3BFDEBEF58A5BA867FEC8E143D08FE4EC23B7DD7A4686BEFBC02178F2A9A760C3D07AA8D6EBECB3BB7A7A39FEB6ADDA66E7A424BE576774E069E0815FAF54AAC751688716171691B04DEEAED51A8B8AB0C591B0412541219940C2E6FD7213B60B4601ECD6F16CADD6EE3BFE507BB6E3BABBEEBAF34F7ABB7A6324AE871F7A18EEFFBDFF955BC40DB37FFBE0413870E830CC2E2C70F87525C1BFB521C47286EE2149F3786DBC3A5B395BBBEF9789B021F13BB084846D7C7A629F216C3EC2B9C0906C39614B66325EA95EF77ED909DB8584003CB9F62B1A05CAB1182D92B7F1FAABAFFE17575DB9FD2E42015A3EFDE5175FE42650EAA3A395BFD60F0FF39A7DCB2B63E6BE817EBB5EA379F26A150C2A36A1E22CA1C491B015DF9E5F98DD3D3D3D7F0885BC92B0C591B035FE7E13B60B4B012C14680F8236244DEBDBB2D9ABEEFAE89DFFA9AFB72F7E5ABF6DDD9365D3F42BB502668D67DB34EAF5198CDB0F1772F9B7A7E7A6772E2CE44E129C0B64E944D840275CFE5B246C1794021825A00EE25232994E7A5E4FC395A3D76EBFF6B7AFBA62FBA7A8CFAE29E102012FA4402B6E2BA1D768F386A056A98E1751E0F9426EDFE4C4D4CE62A93483D4AE1C976EC9266CB5468343B2FF9609DBF9B8BDE7F501A83E3D36365697ADAD0557CAD903070E7C7B6060E0A36D2DAD19AE8AF91E278468F9538CC51B18CE9D28178B0797F2F9BDA7C64FEEF66ADE6203E1DCC590CC214847EB96E0D78488D75C701B35E979F15ACDCB12618BC71561CB6464EFB1632B04FEC0030F481B653EB89D67043028400DA4333333A96210B407AEDBBFF5F2CB3ED7DBDDF32B34C117C9DB12866447E71691A14F4DEEF71A419EA09C7CF8E9085B0609DBEC0784ED974301EC1471626020E5361AADC2753B8413B4FA00495A17C7E53D256335AA90F935598BA53024D3842D8584CDA4543F206CBFA40AA05140EC85BD3198E94DC43C2F954E241218C2C530229048EE686D8F4622DDF0544934E9BB2D2D7E09C9DADF450DFC83DB3956005B09F0214D2A71694189D4DC1CF775557B7A82ECE2A25C4ED83E10F8DF2305304AA0852AECE5648CB03F60E817DEEDFF07C0F7B90C94A643CC0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (178,1,'Workstation_(24)',0x89504E470D0A1A0A0000000D4948445200000018000000160806000000DA7D5C880000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000005914944415448899D955F885D571587BFBDCF3E7FEEBDE7DE999B493293C94453356DD3404025487CB0FA20A58D15B1A022227D28A650F0B58F99E093827DB1088A250882494054548AB6129A46FC17D2D6503B6D9A84269D4C66E6CEFD7BCEB9E7EC7DF6DE3E240D24D8075DB01EF6CBF7B159EBC712DE7BFED73A7EFCB83C74E8F02127C411048F9DFFC7F9EE85D72ECC792FFEA56B7BF2C0FD074F3EF7DCB13E8078E2EBDFEAC78D66546459565555569B7A2C941C084F4FE0D72D7ED594FAFD5845EB8F3CF6C89EC5A5DD9F0F55F868A8D40E216E094F9F3C5D5BEFD46492B1B1B9C9E6FA1A5FF9C6934FFFF07BCFFE44A5B37333371EFCB2DCDE8E5A0B899C6F25925628698660AA8A6A5A501625653965252F78E38D2BD869869F16CCB7245F78F8611CCEB73A6DCA5233B76327C3D188CBFFBE780040D55ABBD23A79B3124CA3986DAA816C3768751A2C7612CAD2904D0D9BA329936141362928F292229BA286E7D1A6465786A58F6EA79976B876FD1A8D344546510DA0F2C9D0CA5AABD2C404DA116A87AA2C616551A5A595C498DAA31A1133D611494F124012405034A82ACD466FC8C6D6DF198D8614E5145B5BBC170E406559513B6BE2D23A64ED092A878A1DAA721859D31101ADB4412025B114C492DB2D88C64DCACA609DA19976489D679215E4938C20101E4019AD8D7735DA81B48EC03AC6DAA20B431389558A380EE9A4094900B1F47724BEDFA2AC347118D87AB2116E647DF2F104AD35424A0BA084949577961A81760265C169CF18CB36E5898CA3A92DED34A49D2624777E00D3B445A533BEF4F8E3BD332FBFB4B41836084D8FB9ED3B39FCB92FAE002819C84A780B41402DA07430AA2C4DA9088D23D18E5CD7E43A60B11DE12444E296C0369B14A34D3EF3E98345B73BC73B97DE25CB0BA246FB4E66A44054DE59BC94200346C6A39DA0F282BCF654C6516A47616A7263E9A409B3ED84562B2149538AA2C0BB5B617D6FF526DDEEB6BB42298594A570355E4A6A044648B4906804B587D27ACADA31358E425BA6C6D14E1B24CD98A899321A0CEFC01EF8F87DACAEAEDE255052CA0267F022A0F4121148A40CA89134D174F49438F3080D3A138C42CF1487AE2A8657DF66381C82871B6B37595DBBC1649CD1DB1AB36BCF5E6E0F5914FEF205167AD7B1658ED005141926EBF3FEF5F7B83818A29462F7D21E762F7D84F985055A694A77761BDA18840CA89D0BDEB97C85B495220245AC04CE3901A00219BCB5B572F1B3E07D12C73E4E621747B16FB752963E75484551ECD3B4550E06BDF1683469BF7BE9723B69B6C2388A886E77968D67948A701E1AAD066BEBEBF47B1B33428840FDE137A79E019E011042C8EEE2DEAF85323ABE6BF7D2AE6F3FF95472F6EC5F7860EF2792B3AFBCD232D666F30B3B4FECEACCEEBB6FDFBE87367B83F6D6C6A069EB3A3CB0FF7E36D73746D7AF5CBA122AF5D757FFFCC757BDF75678EF3977EE5C97B0F9B1F178F8C97F9E7FEDFBB3DD4E37EDA46266A6432003C230240A155204044220A5405B8B9482ADE1D0BCFCE24B7FFBFDAF7FF5E2DADAEA19E04D2007BCF7DE0B40FCE8859FFDEEE0FE03470229098200630CE0F180313541A09052A08200632DFED67620A4C47B0F1EB646C31B2B2B570F3FFBDDEF5CBB6B4DBDF7FEAD95B79FDA1A0C5D148588DBE8244E48E284384E0854401445002449C24C3B65FBDC1C42084C5D33984CC8A7E57CD20E4FDE7B9C84F71E21843871FAF42F16B6CD7D73716181462321CF0B2A63305AD39D9D659217CCEF98637DB3C7D670C8603CAE2759767D5A167F2AF3E2A766347A7D7979D9FB7B4EA4F8E07DF4E8D1F0D1AF3E512CEDDCA9B4D63CB4FF415EBFF826B5B39465495695659EE75726E3E16FB352BF60FBFDABCBC78E7984E05EE87F150821C4895F9EFA719A369F0E0285753E9B14E395417F78AAA7F5CFE37E7F6B7979D9737B7A1F06FC50C107921F3CFFFC11319D9EC9F37CFAFF00EFADFF000F1AFE7A87EDDB0D0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (179,1,'Workstation_(48)',0x89504E470D0A1A0A0000000D49484452000000300000002C080600000023163B670000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000011594944415468DEC55969901CE7597EFB9AFBDA999D3DA495A595B45276254B96B5BECA26C80E952ADB012A36455C455CA180C82647110865A8E2879CFCA1A0A09C72F237A18082805514E032F1116CC9D846B28E9556D62D59D26ACF99D9DD999D99EE9EBE79DEAF7B755AB23149E8AAAFBE9EABFB3D9EE779DFB7470A8280FEBF8E575EF9E990A4488F0781FF78AE50F08F7F70BCFBD8B1A3970BF9AE9F14FBBB5F7DEE9BDF9CFAB86B48BF48070E1F3EACCDD6163F2BF9305A0ABE80B786963F531565DF5FFED55F3F90C915C8755D32DA2D0A28B025A2F3AAAAEE59BDF633FF7647EFD07FEFDAB5D3B8F69AEAD3BFF3FBBB1B8DFA3DB24C4DF2E53A5130EFFB6ED50D68DAB6AD29CF71CED46B33C7C6C7C7F54F63F48F5F7EB9570BE4C764521E5754F9F38A2C6761FC4DDF9B999E49AD5CD94FBEE7E17C9E9A4B0DEA58568C4819892713238B8BFBBE7E26351EC40BC9BFFFD33F78FA2B571CE8989D27703939552893DD6ED2D2D2127988005FC8E585732D91A57B1FF8ACAFAA9AA76A5A4751E48E2CCBBA222B4B24C97559966A7EE0577DCF9F716C7B6A60709576CF5DF70E95CAE5CF298AB4DD950349917D224425500282132449D2750E0009522E97A752A99BFAFA57916E9864DB0EF63655E666A95699A3E9A909E9F48923DB899EBE9A0144C5CDE60662D3438F523EA5518FE6531C375191408D3CEC1E70E692E439B2E45932D91DCDED98594B6F971DB34DAEDE227D719E6A7373649826B159674E9CA17327CF129CA518AF98465A3C4E09AC582C4EC9648256F4F7D3FDF7DF777D1A0289360C6DA056BB4D7373159A5F5844105D2A967A2995CE938748CFD766B3D741085174257263AEE753CBF6C982C94959A34442A3640CE7718D5209150B3BBFC6791A0631753C64C8713D640CCBB6C9B12CB21035CBB6C8E9D864E3B5A1B7C9310DEAF06E34E1A4416DEC87DF788BD60FADA352B124B2C1A09A9A99A5D75E7F8D745D2713C1E06B4924031F12F9BE84F70DBA91B32A3E747CCBC016C0DB00910E4816CB17BBE2E31CA9971D2CC040C2AE283EA5E22A71B8030E390CF0181232DE53003B29490DCFA29603A7E269BC76C951B1920E390E7618B60E905D5CAC531EA49515993144996C9AEE1EDD2E0C6DC309DD30A852A9D27CB52A9CD634E56607705BABDD3248F55D3225455C4818EFC258E59A5D3824479FB13381C8104EE080C75E9085CDF03DD2710D4951903D55DC00E02345E29B05D14E14F333C248CEBC82EF8321D46C34E9FCD9B3148B27488DC510F58052A914157B7A289ECE90FF1182C950B7CD8E490AB9E0585C44DD811F72940DC58B3200271444578161B2EC0922CAB0248EA8B0F986E3C350688DA65202375228347AD960DE5D9977891C76809264B4AA4228824086B13ED59B3AD917A6496F37C844F43DBCE7C34068BDC8B481CCF4947AAE77009E9B36F02B416D5C0E28DC9418363E09072C44488AE004BBC5B9C49988A0C5377091394523901E5886818C6946852A87C63B911336BEAB44698FC9296A570CA89C27948983CB5C6238164B2532D3396AB775A1464BCD06C91012C771103C39B8DE01CFEF58C840CCB5C9C367D01BE140E804B2210CA63013117C14964240CB0E04E4290DA26B801347898D5729848B23221F84C64759E00C7026E24A820C4439CC001C083CB13C8F0D95896D72EC0E798E4501E0ED780E9C7558AA6E8010F910069354FC9031C6986452C9B8A823C2828554B203E062683CBEA39B2EC561744A92C5EB0CF0AE499A30D0BB01EFB614C2E94A26B0E2729C16705F6F3903BE680C289BEFA27412929B3428AE23B0709295CBB6E01050127EEF1A07508410089D72F0507C06A385E1118424C62DCEED88072A8C353B801AF35DF6236EC058152A12534416A078C28965BCDF683CBF8EA99C01330C18EEE723601DD871EA833138E5088966E7B80EB83667C08D3270A3038AAAF397022CA1B788820F2BB868B8AC268C5B7606AECBBE8CB48258702A1997235885446748C56059065961E3FD08FFEA35447644564268C5BC1875CC1042AC42A552C95254856210922F3FB2915EA60A4DFEC71C171BBA73CB66E2D01F1A3B8AE2A8F8D73B20496D9656C97798EF02C35E10325F82234C66C70FCF7564C186A1C9981C72418D1CC0B98A2C58585CC5593E7D3982924C578CBEA24AB84FCCD544B11224460A7A7A7A3B39D4814AA546AF1F9DA2866B8A88732B73E4C85104D5A7743A4977DFFBD0ECF59558515B4C2209245E5610C68D1719CFBB24CA6E40066EA6695248665F110466656258C5A14C36761B56C7399280930FC33CF96A0610AD2813B886AD71B3260C0C144560F74F9E7B8E1A4DEEC7B0B057ABF3A21FE2F37CA1885542B12B38D73BA0AA2D2E5E013810C861D926295C5ED86F0B72E9B6276EC4EAC4EAC3860B2985D13158E9705B01E339433644201E87139A1A111A708C38B10C29876B0EEEC595990B96EFDF5CA416EA0D2A97BAE0C0ADBB5D359D4CCC8B0C40AA420E5F758033E222032E206205211CF8B5849B29012B93425A04319B0B203B010673261C38C82AA50A525F35DCE5561AF7B351F80A5D4501130C3437B50882C42870E94C9E0899B8D52123353561AC6B856D01D6727F138845D4C6CDDC88D8AC509C19CE828D9BBA3E2F5FEC0E3BE385B5030913E7EC04C3291E3586092C1011AD824A05B408A237C20A6ED0C74AB5469F7BE41154FBD86DE70D3993CD2DAA082DDA65019590C8B2E001AF0E22CAB911D2C80A857397DF4374D8684F3840A1039E1F3A238CF7A38C801F316EA955EC8A305E03B4306551BAAB2438C0EBC6A3BB54A437DFDA0329B56FEF80A2C55B0ABA48C9B104FE036E0CA3C8B3B11DAEC47004B41512EB51C80D5F544FBAE284C7848F32E006BED8EDA87EF0E79C01369C7B25550BB392CA17896B10B708FE0D9D5A0CCDDCAAFE6E74A295DB3B204981CE170DB8645F837F8692C9FA1FC12AAC11A1531E85FD3B857016B2CB46BB11A49C65587146BCF09CAF2923FAACF50242B867B290A756AB1556D84F399BB35EEA2ACB9863862A84C62C90192224A023450E499153A2D05D370D860AE22F6702867830DC13B042268270CEB080B380DB0E95E103958212241249B250D65DC7BDAD91EC9C691A1FAD426A4C36188FE476C4804211813B1C34E56AF43913BCD8499CA1F30C28E777280B9D4E427262E88D9268C6548965D1C6EF19DB36B530D8CC76D0CBA0F73710ED1CC6C913478F5265760E467568CDE02032E044245604794F9F3E470D0CF566E45C7DA94E4BF5257AF0971FA11CEAC1750E741C5FE71EDFC1C57BAD2AA9DCB6A20B2C622CC40C8C49AC13F2C36A8310888289B2817EDD58ACD1899949B4BCE6958BC579E6C53022766058E3A56A82B0DC20E6B2797AF4B14769E5CA41BA7BFB8354EA2ED3DB6FBD268C04911546C29EBDEF50A3B184AA9BA64221471D8CA6B9A08B3290D3AE42D7CD1988B9B2A1E026174E1D27E9F41F0AFDE5EAF7690E6E0B522919372E5011B36E1774BEABD44DFD2B56505FDF4A11E9A54643B4DE1397CED3F89183E0424C70C030CD140FFDA3A3778B4A8C591D30F4C470DF6A350104F50A4F00677E9E255EA8A994AD4BC07D325310697481D55436540A8E1E2B87A66962C538B2628F6112C34A849116D1EAEA12DF77790EC68064F10E75E1C1FEF8F163F4DEBBEF0A63D1BA88A96E7931D30270C534DA19788E6BA8D444EB505F5A4217EA8887023CE4D72A155AB96A0D0252E67123011F5086024FDDB973A7F3EA9BEFFDC8B49DCF939867244F5315171777915207CB9555052386EC28AACC53A38DEA5DEE2EF70CB65B6D0D37D3B89B58B57A5049A752DFFDD6B35FFE176079B067C5C02F154BBDA3B9426938994CF70863254FA85638C0F857961F289C3D368CCE5F98A0F9DA82805C36971570546371647125AD40266DAB93C4D7CA583538D1113FFAD77FFEDBDFBDEDF34749CA251289EE58AC6B83964C3CF8AB5F7CF237BEF0EB4F96DE3F70880E1C3C4CBD8532F5F50FD007E3637F3C3038F27B8020176A13CDD8F8D95363AFA6D3B952DF8AD5777575F70E6573850138A0F27019F640E10207842D6B07578BC53377B3D9021F1A22CB89647AB1569D3BD56A355E176C8F4633F5630C2F1457ACFD5679C5BAAF83D8DD1CB97C214B2D4C4AD3D3D3A2EFEB2D77A3C7F1E9F4A99334393D9BEAEBEB4D2D2CCE8B1E275FE81EDE76CFB6DF1CDA38F4E3EEAE9CD5D3DBA3036675F4FEB999F90569ECC058B038BF14E72C78910383AB079803C1C4C4C4E2C50B17272E4F5C38F9E187670F5466A63EC0C7DC4AD7B174D1CDF0E3BC6B0B88143DEF7BFEF9E7A5BD7BF7CA172E2FEC40BFFA86D15C94584273F9020DAC5A456BD70D51B1BB0751E1A76C71EAED298317E86DB219711D8E1E1B95CB6645CBDC95CF8BA76D6029081CA7DAC202A592297040A6B397268C97FEF1A5C9CD1B877C74A7D6D1B1B14B070FBC7FA25E5F98C0A5A6B130D55015ABCD0F3F282C4FC13289AF38F0472FBC90BC7F78F861C597EED0624A1F303B00426DB62D7B048528954D2614C6711BA53F934A89A2C506B14432C98AC522556A551ADEB0812E5E9A402F53C2EB9A487F80EF9A90E5DEEE6E5A58AC53A9584037EAD23CCE0BC0790B73EFD9F3E7677FF0BD17FEEED2D9B3C74CC799440AD9F046146D2BEC5E6E2ED7CB1092BC6A752436B279777F5F2995CD644475BD3C3949E5629750242EF9C31BD6D35CB58A1EBD04FD6FD3C4E49488321FFC68260615E2E7A3EC685F6F0F4DCDCC105FAB0119648DE7CFB850E67339F1DB3EC0CFEC74F03B9546EFDADAFFC31FFDCD73878E8EFFFB7FFEE4955D975AE7668EBD71AC732BC3970F057011D0D936FA50CCB4F42FA1B1CB6FBB7333A4D01232C812C7CF6738E516E0B058AFD38AFE3EF1D02997C9A21D4850657E5E3C985220B13ABEABA1FB64307276D6AD5903A76B54048C9A709A1D625865F1DB3CA2AFA3DAB23473FD41C6A5BB366FFACC86914D5F2D97D7D2C09AD5C70A8F3D66FDF68E1DFEAD7BA108500BD31FCE4C4C4D7F2FD755F0DF3F7888560D0CD07DA3DB690B9CC92162FCA48CCBBB8C481E1E1F174F8E25B078A151A7871F7A9046366E100F773399947818D5D60D4C544B64213319D48955032BC32611E2615A364DCFCD894C713D59BBFA0E2A035EC96492CE5EB840F56653CDA4337FB66D74F49F46AAD5C427FA8786B3F0F4B3CF9677ECD8F10FA57CE15772B86916F0C8216225F4E61CB9FD706CDBD62DA88E7374F1F2A478CF84D17DE5321A378F4A28F53D80C5FE436354C8B35A192283994C9ABA519599173C4686E3629D8E1E3F892C293485898B0B9F0A52079ED7B1EDCE45C06D0F64F4A5C6E4E4FE175F7CD1FA447F313DF3CC339A92C96C7FE28927DFA9D76AEAE69161011F860BDF88235442C5E59BF7F7F60A07CE9C3B0785D18528DB904EAB63D1C6F5EB20AF6501A1E5A306984DA381AB81B875F0C946FB2043AD1CD76EDB8679A6D56EBD5B5D5878AB51AF9CB17C470F5C4DAFABAAF1EAF7BF6FDF8E0337C9E8CE6F7FBBB47DDBB61FAE5D3DF86B5B87372292F92B9F3750DEA7A667C800F1DA805411A53F05A778E25A0D79E563B652A52648CB6DC51C54885B82369C62E8B11C991DB361E8FAF176BBF94E7566EECD6ABD3EE96B9A9EB36D7D321EEFDC572A39E065107CC201E1A63FF9380B8EA6DDF9D4979EDA5F9F9FD77A10C97014081FBD6FDBB205C48DD3B1132768F3F0B088E2F8F113E1D3653616A494F96984F87BCAF10DC3A8B55BCD232DBDF576657A6E6FD3346B92E7E98EA21869CB32D11E78FF1B833FD6013EBEF28D6F94EEBFE79E1F6CD8B0F1A9E1C13582607CEC3B7090EEDC3422CA3B2BCF1420C191E5BF8FC22ED67675A335DDA82F1D6A2CD5DF9E9E9C7ED7739C3AFF6DD0916563534F4F67D7AE5D9EF847E667F4F7E847B6126BCBE5A5FD47DEFFF3C1D56BBEF8D33D7BE31BD7AF174589879BF70E8F013271413A4C6ED6E25263A251AFEFC3D0B1777A6AE660A0AA2D07E313AA83D1ACD7ADDDBB77FBCB4A77ED84F5B33A6EF93FF16F7DED6B5D0F8C8EFEC5D6AD5BBFEA62E2EA582C8DBA5EAF2F9E879CBEB7B0D878B35AA99C7424A99D00D99A68DE686ACAFE28837F9EC72D9B39677EBEB9FFE8BEEF62D8806C77F46AA5F65F0BF5CA05558AB77D189CF53C734D77B720DC2FD2E04F9C013E1EFECE77D4950B0BA9B8AE076825AC4D9B36B9FF17C2FD3C8EFF01FC6A3CD92169AC810000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (180,1,'Workstation_(64)',0x89504E470D0A1A0A0000000D49484452000000400000003B0806000000CB8C8CDC0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001B5E4944415468DED55B598C1CE771AE3EE69ED99DD9D97B97144F51122F714951A20E524A64D9B01439122C39808C0470001B10A0970408F2644A0F811E1C1B0960D82F0910C471E2883192408A6259B665C9D6451DBCC9E5BDF73D3BF7D567BEAABF67B8B49632E9C8D7903FBAA7BBE7EFBFBEAAFAEAE85ECDF77DFA7DF8BCF4D24B715F0FFF814EDA2346C81889C592D952A9F4EED973E74E75F7647F381ED68F1D7CE209EB46E7D57E970178F9E59FDCE4EACEC39AAF3D82AF0F6044F9B86E18D3E56279E85BDFFE1685C211B2AD064522612F1A894FC7138977D2D99E971CCF7BFD1FBEF9B7E3BF57001C3A74C888A532FBB0A64734A2877168DB6AD731002FBDF83F436FBFF933D2348D22F138F5F40D926146A85C5CC6C893EB38649A663D95EE3AB36EFDE61F0EAFBFF9959E78E7FB4F3FFD4465E55CE6979FFE8BF727A7C6B719BA51D731305F5923AD0058F29EEB2DF9BE3DE73AEE74B5DE98282DE74F54ABCBE3E7CF9F6F7E7242BFD24586FD19DDD41F31A3C94FE35E5DBA0EF1B1908FFBD8B64DFBEEB9879289142D2CCED385F3E7683997231B82FB9E4FE1688C529D5DB16AAD3EF2CE9BAF8DAC9F9BFEEB030F3EFAEFF8E99F5C0500FC68976539B8A51B218DD2E4FB036C13BEE79187E1F2D675C8755D0AC5A294890DF977DDFB8007746D53371ABA61D67443AB68BA56D419345F5BF43C77C173ADE96AB536555C5E1CB52C6B7C6C6CACE807E6F68FDFF9CF6D61D37B44D38C87F1DB7DBAA719BE837B6215BEE663093A3108BAAE7F8CEDEA581B7E846BD6ACDB44FD433751219F270BC058CD062D2F2FD3F4D424E5738B00C5A6858579BAEBBE4F1BBF388DA99B861D32CD487AC7016A24FA48D75CE2D5183EB69E4DE459A4DB166976837CAB4E5EBDAA35AA79637E6AC628148BF0492D4DAC305994466DBD05FBC9742F199AE60F0E6FF0F63FF090138E4642F8A787C3610A47784429168950241AA118B4168F4729994C527777377574745228648A997FF4E313E6A19D3BB6D3E4C424159B75B9D6C65A7DDC3999EAA05BB7EDA26AAD4AC5FC328D9E3C4A3353973B3F0A80A63930FD48D5F6A918E9C624069998288C6D04DB48D8C47783A2D846B00D870D8A617BA7A991E9DB00CA03913864351AD4AC37047DA75E230BC36ED4A859C3B656D1EC6AD9B02A05233F37434B4B4B625D0A38ED2AC0D8D2D4574DEE9B4824E8F1C71EA3B56BD75EB5700F663E333B4B274F9EA44CA68B7AFB072859AB530DF7AB605B2957280797A8572BE4B81E40C1F05CEDA300E87A13374B8035C8C1A4B040D25C9F6CDD07D978B2CF5B0B93686C96AE4E964EB21F09C7291A8093C2D671D8655C08E163DFC57C9E1CB3799FE7C4BE8FFBE020FEB3A936A926A0350120035527C7AA92877DBF592117C2CC9E3D4AC78F9FA0A1A161718B9635F800BE5CADD2E4F4149D3A739A2A950A35A104DBB2B13643A2033B5C776F3F2D2CE521FCEA9E646242CB17E86D72F00B1D0BD534D6AA4E3600D13D161E373614309AC7A060189ABA164069D01A2F2C1CD2497C19BF3778A110DCC7D61755631FB7A97B3A5530CA4D9D1ACD1000D3C8A130B9668C9C38000B019C0840B431522E6DE8BB896A131F0817F9BEA6B8C130C482BABABA68CFDEBD5487E00D8C7A9D01AD830C97687E6E8E2AD0FEE54B67719CDD23740D00486B60360863F30637F2D9BD20A8AC1937640B6060700D0BEDF8724C0B84870F908163868EF310CC0408E430A26C763E996C7558382EA12A80AA60C7C6DC86A18B4BF1A54CFA6AEB12200478EA3BFFD4D02262D62E9B319324E632705F667A4F40F1AF1AFC89279220C5E12BC0349A347EFEECEA0060CE3A9B6A18AA73C5053CA663A5698FB7BE689C5608CD9AD7031731E012CDE09C5C0356364C5D7C9AB50FA7A0264CBF8AF33E4C331C5284C9C231C71B5A304809ADB69A028101D4A354AED7841B383A30081299B0CEF9B905FAD1ABAF02B820622032C4E20984C0E80A50A8BD5D15002CB2CE4983E63431A94F2CAB160C5630BB80032135163600444CDF5042EB7AC00DBADA37B0F20800D0A161B6A43A2F160B6386F6D9A444705F09892FB6681EBFC537A36D09014018213D02136E281710DF873519AE846917D6110A7780BE1A542C95A90E4BA981F59BD0387391C6F38ABBF8D4A857AFE90235DB86E3BA16B9014A2CA0C796CC56E01B6D97B05CB563F017570F84562EC26018BC75025E0000089CA4870CE1035F774522D69643CADC4558DD575BB10A4D845656C0AE800864840140E002BECA154CB1005F40D00C10700CD10D248568466A26DCCF8852A5949328E540C13CD7AA0060543976122CC0E53B78925B489CE53B2A6BF003425451426E21C73C890A7A60FEAD6DB3095FC6CC11D3544422712D0057CCDE0F4C9F8537456025B45AA813B885C339891E82F61ACADF030BE028C3C25B4D4489A9715CA389C66DAB89E148C4716D449320A4B2FBF0F9D53940D7AB1C8610B885ADD95F44D12D77E0C8204503D24F9E8305652264F312B7F3DB3CA1C1D499E8427081A8A68B658443A64A6B39B2082FB8BFE0FFAEF8BA685E0F846660A8E5020000EB630B6097A41607306F45625203C4A2210144915E13EC5F451E50465EC296036E43346A81F111009081E59B485E2A481DA350434394C5F15C674E111044F39EDF16567143704C3841EC85CA882461689DCD94CFEB203F5D63523424E16181BD40702D105A0F3841919E02C6D114E87C0EA9AA5880DB667C5D84F784D55A73709451E7F9381362281C95F36E90C63380AB02108BC7739C402C21678E83C41AAE2EB159846F978C8A03840B7CC51162011C02C5EC5D2AC32A4C66FF56B468450C00113374C9303D7CF734C52F2DA2BBE2FF4A10A36DFEC177264C0860352D081512A0516B88468BCB4BB4BC3427EB62C1F9189F6317C001D4054D39C62078D772814432B5CCD2968A254A12F2685D250C9E4AB7C405243A90DAE7B9395CDA013FB035549A9E244AD140F36C15061067DFE498CDE498103234310FBB81D30E734C90570080B68268A0422316EE9A9449A725A9E9303A8508C545B90C46EDC00437D461923560D2CC9922D52B750502788D4D9F334EBE462ACCD5008847E305D65C1328F91C0EC53E61059C1E7A5AC0032B06BEDB86224B16B401C2E33017618BF0C418841B107D94A5E0DA1026B171301E56C2B10578ECEB01F1E99AD1263E3B700BAD150E7160007540A15024284B59005C6B7070902E5E1E17ED6ECD1854B82344A55C822A858A983C87BE03F7DD0D6B70E88D37DE92D43999EA6CAEC6012503A1C4F751F10139DF5436AF4902E793E0E02B77D00272D4824861C3EC9B98181C24D1405B9931BA8A43D8122CCECD0DAE09480A2997DD40258881B9AFB40275AF1627F07E32DB4DD54AB91D0A990FF6EFDF4FEF1E3E8C88D3A4572ED5C9BE5CA56AB116F8BB1A3FFAC9EBC20BEC4A1B366D42C1345CF96822E453CD90B8C75A851560D5CCE61CB6988AC41284F494E6DCC01218E12A240A81E06CE60C5F5980CDD971601D86E78BBB703EC11144BA0EF81E325552C46EE605428BAFB7AC2020C09645243AD360F87A900DB21B7AD4D3D34307BFFA559A5F58A472B984B2B72E851527430DF005470207378DC36AD299AC94C7AB2742885C062F4848C452015B536E1014F9582858D60B728320A4572D95012AB750566104B982F080CB210C82438A9080100081EB42F08F106A064F7999843D97F38115A4D8AA05B83E8927C1015397DB0078CE95BC96CB65C92E61C55C058E9EBB44DBB76D256B6A1262A0CC0A87AFD14F6825429E51350C95EDE9CC03BA1660A040F065FF8A2B88F090C2F2193D534890AD8201B244F39A5882C90273DADA165E1541212E95F1A37098C3A376050418BBBB42F3CA12F01B5C1F81F69610A9B8C46642E50ED5B53E9B37AEBB66DABB6A7FD1F39C9AC916C0083856A0E1A0E60EBE49EC6573E52C0CAB65003CB18C202AF04F7D952DDAC1D6F103F377D596B337DBF5DA1184F7B968E2F0C8D6C05B2EA7C3D28C510D19CE1F4C8C584707121CE502AD3EC36A1FCE0FC6A766917E472812895C170026884B2CC0173FB7DB559C7468B420330968D913EDBB92B36BFE0A725409A2F000FBBF19802282FB8105B4C2279F7795BFB325444D43313BB9011F284BE005718E619A1E451229909D258C6EA036F1AE91D44C4ECDD0AD5B77501CAC9CEEECA053274FFD7200406062017C43DF093820E0012144D28398A443731A3580B289C4C6153B6120B40008B5CF241812F2834892B529EDBBF00B177338C1390782B400626DFB41783402DFE7E3265B89076B8825A4CDCD71DD37783E7B5561C291907486C88F817FAEAFDD6FFA61A7DA76019E38C84FFD9605B43A3A1C2EB89AD598BCD4392F48985AB5831684152FB0002F1090932871093F10DE3354BBCC57A936F709389A78DA95048C4D5F92294C148AC514A001093AD7B08081BE3E9A9C9EA558B897A66666AE0F80C6EC6C10052004EA6AA5F92010B448109A69FACA0514A36AC2076C1D5E6009AE7C53DCE1B584F7B415FB4AD816082E830040B9F718622BE074595720B8BE0AA1A66B88BB84225195DDB549D0BBA6405DE90EE9027B9E777D2478F0E041078990279467A996B21FB881941B9A12B621BDC21556A16981EF5E197CC40B5A2F9E7FB5FF5FF9DE8A1AC13307FEEEAAEBB84DC60D0C35541125441809AB6714DCB8755CF53CE013FA48E56F189A2DEB0607F8578540D5856D28D5AFC80F34C901FC2047F002D05481A6B6AA7657AD28E5120A1C2F880E5E1B882B11C376552345840F80E048617087573A536E0082F7C902A0EBA6C58BE5871F529C4A0787A4BF6707214E921EBDED1BCA1A02AEF05A0F4482D3BE144EC139FF4AF35209EE07DCE00544D9CA167D69BD73FF901323DD699261D5C96880D46A65C9E5A5B8611EB84665B7F2C369731105DEC4C484B4DDAF9D08B105E88625CBB61A41BB27682BE15FD30B046E45875F0042DA5C57CEB6F38830D2980E546411CB45A1E44AD335E48364A1411BE1D607DF3450AEFACD06468D2CA4AEF572916ACB452CB84ACBB93CE5F3C520AF77C48AA4B5E51B57E501DC063F77FE222D2DE5A42F68C38D6B48848A85923C3FE4967815731F78E0C18F01C0301A62BE762D50A32F20E840BD9B9AC8EA403E700F0D0BD1B078D60E0F0D806958BC064D6958B4562F9187A2C5A9E4E9FCD4382D2DA827409C8E864261A9E7B93F6F9A18BC45FA2A7E6EA87E9E3CF8C0BFCF3EFC30CDCFCFD165547BDD3D7DD4D3D78FDCBF8F8E1D7D9FA2204484C4766EFBDAEB6FD2F97367656E7E54265BB84C67A6932AA58ADC3F9DC9FC120B308C269BE8F4A5733494FC67906195DC4A9172D39334B5B828C8FF7F3EDC9B676D84EC9000C1C27397588040048A46A394EDEBA1BEFE018C418AA5BA68EFC6DBE89E03611436755A0418A74E1C91EE12BB80633BEDA7A6517EBE088163F1A83C0F48C4E3C82BC2288E6A94496729D5D1495DD99E8F0700A4536717A8A0E63EFFC60F84C078D19FC487B59B4CA5A803F97C673A4D1968239DE952238DFD741765B259B9AE5C2E537E394793E397E8E4F10FA9B09C175FE6C6071323B7BA0C28CAB2ACF6639EFDF7DD43DB776C15A6E50A3087DFCCCECCCAD3607E3EC8CDD0F51B6FC635B7B79E396AFE8A97220400306F3D9AE8C049432A006E93A7A229158284894DD92AD335A59C6D6931642AB3E6214F7CC3C1165A10C191C7CB6F701E9A434A5B971E1FF72197738B58EC34952078315F908488EF2182EA2A1A702460ADB3E09C05AAAAD535AEBC2760D1D8D838E62A50BE90A71A406030990B983819D048644A00C03C2C6F0818B82A52FBD2FEA0BEBEBEEF25929DBB7181E64991E2FB1C93E1A33E9B28B2327C377CDE62783A0A08DDD47D53C7BEAE0BAF83EFC328ACC069AEC60F2680B3562E17BD72A983B2DDDDA51FBCF8FDBF9B9A18BB5CADD7333DFD6BEEED48676F4F263B3763FE484BBBDC1C6DA5BBD2C8E084486F096E2810748E16575CE0C36327E9D2858B123E3932259249C9242D6E8501B85EB8D4965B6E956BAD463D860DFB4389F993838500F08DE79FFB3A3D4F5FFF554C5C93EE09992FFEF87005054BE8CCE8391AC558CEE7E9E6751BE8D65BB6D0962D9BACE79FFDEABF11C9023AC72F1427B07D45D743DDBD036B7676F5F46DEDCC64374622B12E169C995E840E72892BDA676236DA8FD0C57DF97158222EAE1586F5B0D5C245A8DBED114BE6365A22A99A21B0BA383659523D97461B801B14B813263E108977DE198E2446BA0737DC06E65E874585448BBA2E61922D490DEEE0FAE95BB66F1BE77054AFD5D8F43C2314AE41C20BE546E1D5DCA9C9C33896E9CCF66EEAED19DC8CED4DC98ECE21494A0CD586F25658C3CA5478F7AEED74EB964DF21648A552959057AD6AE0831A4700BB54CC4F2C2ECE9F2A1596DF03AFFC9CBBF781F05E9B03AE43680E3B994CEF9A2FF40C6EF82BF8D74D904173101A3B93694A77F5D2E2E2125CA957583D1E8B5207CA5176237E40F1FA1B6F50B67788C2C5252E7AF452B98422C2E980E98FAC1D5E3FB2FEE62DAF0E0D644F87A3E1542412F5138944A5AFBF3FD795E94AE50A05F3CCC9B3347179CAE4F8CFD600B0DB613002BEE1CE2F730134DC989B999A46F2737162ECE2C94B17CE1E8135CCE3B21C4621109E4DBFD902E063DF1213C1717EF79E3DE6F442F579CBAAFDA5EF79ED5649679A993C2D23DAD14FA9545234C15D5B0843894404234631EC739DCFE1AE1F2065B35D42941980C4FDBB30F704828C90C1E32C910933CC6D2E009A82895F9A9AB65FF8F74333CB8BC58E6C57D6F8F29FFF69C7CCCC4CF9ECE8E8EC99D19353C78E1EB9786EF4CCF940D8458CE560B0BF5703AD3B01F979ABBE26F7DC73CF49FBE31446626C4C07D2462C1633C76B4BF14B2766BE914E777F2164B81A0B9446A2D1D3DD43D99E6E4934D60CAFA12816DF994A08837383B2030BB7A09972B94A7DB8AE8AD0CACFE33999995B58A0CD1BD6CBB3FB443C46D9AE2E3A7D1679C8403F9D1E3D4B7DBDBD34BBB840BD88E13954771B6EBA4952E79FBCF956E1D077FFF5F8FCF4C4F4A50B17E6601579D8FA6220F872B02D06DAAE33F7B5EA357F156DB70160E173CD66F6D30F3EF46738BAD6D0CC7EF8723F841A4434C862E1299F6B5808502A16299B49836C6C2A944AD48DC5B365542020373C93109CDFD319EEEF178D5F42988A206119C0F7D77EF633A9DB59F39CC62691B89411AF878706696E6989766DDB2A7EBC807D6E6B8D4D4E218748C9B56CEE9CE931803F7AFD8D0BDFFBEE77FEE5F29933A7AA9635E7D4EB4BD7D0B67F5D2F4A3EF0DC03E62D8DBBF63F78EFFEFFEEEDE94EF2E2D952B8F97006A9661A894C18B19C17358FEC702BD89D9FD82C170A92346D58B78E9A60DF1FBFF653DA08CD7221C244D4D191921C9D359B0030D3B37374D79EDD22D0517EF76770802691B8F8F2484BA5CD5C6374757652375CE5DCC54B74C7AEDBE9DD0F8FC8B142B92C51A007C953AE54F2DE3AFCFEF77FFED31F7F6DFEF2E5B17C3E5F1E1B1BB3AF47F076A2F6ECB3CFAAD752175FD65213A96198E9A39B376D4AD56B55BA79D32608D949C3FC14E6E245BA67DF5DEDAA6C6C7C0259D732CDCCCD49FCE52737E72F8DD19D106E706040CAE34E08CF60F0F933E7CEC12A6A92548D4F4DD1455C3B3C3C04974951B952A13B77EF86556540A639EAEDCED2D4ECBC901B578E4D58DA067E3A046BDBBD63BB94D80BB91C738476CBA68D5B37DFBAF58BD9356BAD9EBEDED31BF6ADB19FFCCC93EEFDF7DF7F63009CFE8FD3DA627DB6807B6E456EB26D616141AB22ACCCCCCF4B4CE71792F84D8D25EC6FD9B4996ED97233FC7E9816C0FEEB8257D818F40F8F1F87D94ECAA36A7E6B73110BE5BCFCC0DDFBC01959A9DAEEDE7B077C3E43C74F9D561567D3A61CB23816947FB3E3B65BE11A3121C501B8D0D8D434158AAA326C584D05C4F6ED3207679177EF1E0901C8FB1160BF900C758D4F160AE37FFCA94FD9CFDEE8CBD24F3EF96438D1D3B373D7C8C8374776EEDA1B02778CDC7E7BFB258359687B09025DB83C462047F87A82E2F0E128DC8205DD77C71E307E54843FFCC187B41F42E7E12227CE8CA2520BA9FE02041C0407B0A9CF83E476EFDC29D79F3E7B9686E076730094054C255561B300C0F6ED1991F45BDD372AD7BD7BE4A8548ECB00661C2EA49AAB2653D4F2E1A347B6972F5F9E7FE18517DC1B024003117EB95E4F853CEFBECF3DFAB9FF5A989F3732C8E5E3F0DD380A920C7C9043182F8EBBAFE72E5C6803343D3B4BC74F9CA45EB077B154148BE1373F99B8CA2891B7DF769B5C776274947A60EA9CA64ECECC88D6390AF09CBDDDDDD4055EB9EA7D50ACEFA76FBF4D7D88380CE61884E5DF30AD732355570D989A55AF9FAFD5AAEF952AD59727A6A75FFBA774BAE41F3CE8DD1000FCF9CA57BE124296B076DF7DF77D7BFBD66D9F2A41B37F78FF81F679108D745C39CCB155302972A1C37ECCE4C6850893DED8F838EDDCBE4DAE39065367BE604B0963B0C02C2C478FD5DE07E6AA6E627A46C836076EA9F353EB56C39E3BC78E55AAD7EA672BD5CA91DCC2E25B0B8B8B676DCF2B51D8451488953667B335EE75FE4A7F2FC056F0542E974C9AE6DD8F3FF6F88BB9C525330B22640DC5385E437BFC1E2F57872B3F17C7C6540587DC7C06F57B11A18D5D84CD98199BABC4D1F317E8BEBBEEFC888667C1331C1D9650CA1600A4BC4522CF2A3CE9BF5A5673B95A299F4678FC706E6EF6CD7CA930AE37BD122AB1B21E6D20F3CD3433D5AA03E5785BB76E85E20F5E77D370D54C90ADA01EF686F7EDB9E7EF77EEB8FD8F166767E8B30F3DF491D7D527C0E6B373F3E2D7BA694A98E470D707806620501AC0655698345BC6D19327A9BFB70789D0227CBD4CB566535E985660C81B1E1EC2EA42B95C3A59AD56DE9F9E997ABBD6A84FA3BA28390DBFE24722D550B96C81435C16187EEEA984F557FBC3875501E014F8A9A79E4A45FBFAEEF8FCA39FFBDF52A1185A33D88F04A50616B6A4E56473A361CD30041E10E2E3CFCFDF7997EE5DA1E1773F3842EBD7AE110D2FE696A9C2AFAC062F31CAAB2B9E8394D776EBF5DA14EA83139552E5BDA9E9E9771A8EB3084B2FA1BAAA7891722D514F58CD66D363810F4160BF958B7F029F6BD602C80CCDB1B9B9E191BD7BBFB67BE7AECF736361CFCE1DD415F4D74AD0DEE10F3FA007EFBFBFFD1B0E974790DCB0D9333BF36B229C0F7081C46D357EA485E2C48276C7CB95EAB1423E7F786E7EFE3D48B7EC1B46D9D4B44AC575EB15C3B0EFCC66DD53A74EF9870E1DF2FC5FE39FB55C1300B6822F7DE94B499466239F7FFCF1572AA572E400B4CBECDEFABC7FF498B4B1D80439C96181B921C18D4876114E64EAF8944AC58B955AF5683E977F07D1E2A8A73BC5B06B9491B255FC52A9D1D8B8D14632EF014A0F7989EFFF06FF8EE763AB41B6824BF999C1916D77FCCDEE91DD5F3C75EC386DDEB80164B58C22C7A11E843C7E2F97FB6EFC1617BF9505A22A2369395BAD548EE672B9B750F48C1A109820B01E69568DAAD1C80F0E3ABF2D816F0800B682A79F7E3A51D5F59D4F3CF6D80F33E9AE383726D89CB9A7D7B49A3E2C205F28154E23233B32B7B0F456A1B07849F7CD92E73860E828185ABB8AA17FDB02DFF05F8DB1158C2E2DF5EEDDBEF599A1A1E1A71BCD46259F2F9C410CFE607666EEAD52B53A8D494A5E28546ED66AB50462568BA17F1705BE6100D80A9E79E69970BED9EC0A452219CB6FA20489D434D7ADEAC9643551AFFFDA18FA77028016084F3CF1849EC9647408AA41B3DE6F82A17F139FFF0313895959DC8EE9410000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (181,1,'Workstation_(96)',0x89504E470D0A1A0A0000000D49484452000000600000005808060000000AB1F2F80000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000033684944415478DAED7D69B065D575DEDAE79C3B0FEFBE77DFDC333D8A6EE6866E848006091082C4961D882D5BAA0AB6A90C9538F961FF48B98A564AA954394E1C3B7125922BE5722CA5E2203B09121612205A20D134DD0DF43CBD1EDE3CBF3B4F67D8276BADBDCFB9F73D9EBA1B1A63C9F285D3E78E6758C3B7BEB5F6DAFB09DFF7E167FDF1C20B2F64CC68F21114C51356C4DC9E4AA6FB9AADD621DCDE72EAEE5B3D3DB1E3FBF6ED73FF3ACE2D7E5615F0ED6FBFBC5598E209DF974F80100FE05B517ADFB222E753A9D4B691911138F8E60F61727212F2F9BCDBD3DB7BAEBF6FF8403C957CCDAD370FFDF66FFFF389BF53C007783CFFFCF3D14426773FDEEF9302C413F8D6D6D5BE1728E0DF7EE52B90CA76433C998266BD06C5C222948A4BE07B2EE4BABB71CB17D3D9ECD14C57CFCBD271DEF45AA5A35FFDEA57EB7FA7808EC75FFDD581415FD89F93BE784208F108809FB9D66F480193E3E3DBFEF25B2FC2C5B327A1A76F08D66ED844EF839412A4E7816DB7A0522A42A55C805AB50C11CB8264262BB3D9EED1BE81B56FE407075E8D2552877EF7777EF33C4AF7AA0216FB7FF78F068F1E3CF09B8E6D5BBEEB8D4AE99D283A8D73870F1C98F57FFAB423FEF25B2FED36043C610AF12442CB9D2878F1410E400A387CF8C8B637DF3A0C9668C1C2FC3C4C4C4C80633B604523108B27219DCEC2C0D05A88C613AC10524CB351876AA504F55A057CE9C2FA8D5BE18E7B3E55CC75F7BD158B277EFF5F3DFB0FBEB7EAF94647CE9C2C95AB794318A82B1F246E692B019F7EEC49F9C8677FCE1386700C219AF8DD3AFA4B153F2E49E917D015173CCF996D3AF6A46F3BA7161666CF789E377FF9F2E5E6C729F16F7CE33B5933E13D6A22ACE02D3C8EF21EF051E61E8A9D444FB7657C301D007DDB3005ECBAF95628576AB0F7BE18BF5F44085A989B87B99919387DFC08349B4D20FDA28079CBF7F5436FFF1A94A184B9B959F8E6D7BF96FBFC2F3DF3D9A1751B0FE1CF5757006AAFCB322D080CC5A43D4A194DDF406518E0CA083A42129FF700B9202989F712F1D0034F023E37A1AB67102CD390F7DEFF90340DCB360DA3258451C3C3557D0165017E0115B7E8B9EE5CABD59A6A356A171617E7CE1886318F1656F820DEF6F5AF3FBF1DFDFE0914EC13222AEEF7A588483C919082850E5AF0FC54FAAC09A1B7EBD580E0FF00FA0606C144F938AE07895416723DFDD0D73F0CDB6EBE8565D06C346161711E0A0B0B3076F922BE6E00492F1289A23745E19DB7DF8027D66DFCF11E87966FA3102C1416E4FA8720DDDB0786E7806CA24B9511E72A55701D8781CCD70A08F7A6875A22454854046D9EE1346DC3934D0B2F3E89B7D10DA26D55EA89BAB1482C09836B3741049586EE2AEFDFF7888DD7D242C9D54969E86D653C60D1F3E5A274E542772E97EE1F1E1CDEB07ED3CEEE7CCF9A542A0DD16894058E900352F84AC886D280528660EB971FD81B041B59AEA70731BE0615849566B3052DDCD0352093EBC6CF7D705D17922917D25D79644A0558B3E126F050512DDBE6803D72EE242C2ECC5E1DF20CB254D34CD285895C3F8C0CDE476F422C6A40262260D0F0100B3DBC2114B68F7B544EB0016D6E0B7C072FCC6E80D76A80DBA842717E0666A76711132B3A04A1FD8B30EA034184AFADD346A581839B105A69D00D5A489D4A9B410B9BC5EDE489936891269818F8A21818AD88C54190F6165A5D2C1A83582C0A51DC12B118C4E371E8CAE5A01B8599C9A4218D8AC37BBE86372823A3DF6EC0004C0225E137715F2C1661667A1AEAF50606637CDFB1313EB8784C0B32C89AC81013A8185220056E171572550508C3681A6C2906989220C5C7E73EB430ED70510465338A566AE2CD09548CC9371B415121DCA09B99FC195A317E8EAFE973DC6F434B8BA1D22C0C469294847B0FBDC869E245E38DB8A828075DD569D5C1ADD751775570EA55A8170B303F390E8B4B050E6EBEF616D0E8C48A235A81374537D612362C1363A7E2F43F1A9140D035F2F5593038D00FFFF00B5FF8B1DE40E7200156CA15849B01F01524F33E8E583F34BC16304983560B15A0F7E57299638483CF1D624AADA6B2BD6B00AB859FB784F6634322D4A002D01EF555A87B720D89166F2A9746DC33245910BABCA79425047D8E9FE1D93070409382A0114196106745452D03E278F3269E836307B9AFD4B104F70C6174932E1E07BDCC47AB6285917539A43C1B619014D7C2E72D8447E56D1EC2A46C54C043E52DCD4CC2F4C438148A25B64C1B598B4FE7F2975B36FD7FFEC20578F0A17D303838F46362030A3A91826F3EFF3CCBC58A442085F94002856FA0C165325DEC5509F4263608FC278ADE96452822982B14CB50ADB7742CBDBA062C74E31A1DC0A4000C1E633B50E0D24A2001119E7A06ED49F8A808432BC72741D213939FA364F9BBF45BFA8A23D5CDB0B27043B5E10D18F8533C9F9010843A7252529C67A1B251FB12BDC835A2E04552E8094A4952457B0EFC74BD1E1EBC8642AEA3AB1204F8DB5C588BC7DC800A04FA8EE7301D0417BD0437824989FCBDB5380A6F7CF3CF109B17A1BF7F70D5D8E06BF27EE7DDBB61DB8E4FC02CB29EF1F1714CC60A80E401E6E6E71082EA084B4DBE7E0AB8113436FA512C1147388AE27D38FA58D752403C5E65AB0484161F2183F09A8446E401EF99044F57A4E5C542202193E5135CF175B372D47356082909B4679072A4521E7D218AF86BA055E12911CB892E2AC5F0090862F8A4E82DEA642C1DF20C13F7188C1173016A2D0FF1183D8395A3A049E2796AE8859EDE28B44819C1E7318633F23089B0B871533FDECE9F41A15064635BC99402A149F2447C9E48246078ED5AE81D1860AF72D033D9C3704F81B9505882C5B93954CE52187C295ED8E8A182620D5C3DE85BF158AC4410402E60A36B475198B62F94E50B256CB2100E25141FF08E5D6618648DCA5394807133B4F0BDE0B7CA9B0CA1BFA3A12A8A168E34158543C2970AB7A5426BD36777007560C1F024F1779596843A0ADDA5D774E1A6A15544C73098F7076C87CEE7119321A12A67E5F3B00D19CA226B68C904812B99925468CF9F69C40A6186218537F59A18572693E51CA077701895626B0539ACA0F14B230CB95755402C992871D4274E4B0A402F68FA5125405F5D0CDD045B3E4AC7F5E9A6108A7C83AF2E88092C680FF877AE687B0429CC09BC80AC1D05E0A2E04980A6E9EBA0E9B300C9AB7CD43629C3456B77D00AAB08350DC767CFB44C93BF2F3B051608DE0B04AD8C85F76408247AA9BECFC91992087A107F97810777E40DC47E8220AC6288AF85CF52D201592961E57BA015136C446CFC6B2A201AAF2897430BAB35212A88424595D0B5D5330C110E0B65419E0EC2F425123A055FBA7BB7038A945BAB98A1204A7992C3F1451DCF42082268614F90016590484D7DA8E3D670F19CE8292C333C962F9482257EDF63CB57C20ED111DA19B0177A835050A5BF1F603DC1077BC08ABC21B0747A9C3A750AA6A6A6D1500C486732D0D5DD03090CC6110CCA006D6F08DC24540CB45F5F9305256289120735BE18C25F5705621D8C19C7780F8CA32C056DCD8C1241C40A6148FDD6F095125CE96B782765F9CBD89381C7224E6EFACA76E9829BF859432A2B57162F03FE12440514AE8A5432801BED3D9E3E87F200A1BEAB3D0CA3087F9F8D018FDDC2802C3B629B083C4A2AAB26CF31AC341E33C6383E3B57808B17475171752400C4FBC9184D2615743CD3329939517DC844FEAFF4721D2C08C1B8C638494525BA6C17B3600D0D46189014960ADF0FA1C493CAEA0DC678C1D49575A285EDB2BB74C407A13C04F4E78E7E2F221447A70B6D10BFD74C2914B70873B96570C39F7A22B47E256809FAB41C37245A8DA195439932799A83F790EBEAD21EE0BF2F8B66C86008C2C4130599CE7443A5308B541AE967360BA9342AC555950007F70D8C250EC264B3520363B188E720DAEC3199A0025E3EDF730D05F87ECD37C84D3DD6BA89D44DC1BBCF6C34C805182F8D40112A4953B4D3645CE72F6B0B87108294E7041E14788843EE8EC77528BF4038F3D19C5A443189217572763A8547178957E629BAEA690193CA3C5094965F6BE5789EB678AFD3038043301B060A6ECD868D4C21A566667C5F0AE554894507E1C0767B0786F8F80DCC7E897E52AC54496583F392582CCD46EADB55CEC6BD8864055A96E43870F544CC177516A8EBB2AB190441A6BE185042F482A81FE607416C30742E20B4B07D66319E766DE6D71A67196341410FC180A1A1A9EC29B7A164CDD4CA5320AE6CDB0A2044A83DE3BE15301E19C290D40A12DA73C903384E68880A03351E373FB40696262E2BA8859001F377D9017410B6D1BA8B8B7310895AC8DC227CF4682C0E6634069118C24DC256E508B47481FC98615C7B8FE4FA9877ED3C004F5CF349C88E52409412188E09CAACF8801AFB032A1A446862431EBA8B11C40C3F88098A3919BE0ABE41CC603767B3442FC02FD7A8B6A585EF4AC58C0CD1CE5895FB992CE8C0B2B93C11321E9F6193054CC413BFFB7E4F58C18C68EC319D5599B2F4DBF0A38380D41A60EF202F2361361DF418B47634528A1D342043F2A2E04E251197ABC21E67FA5CA8ECD8E09A3100218884E5E0C195AF3ACC26D81A40D1BF802AFA52DD1CB4890C0BDA93ED7CC0F09495064C8813328DB546102430D1AA227E52CD3D221485155A6914784560925279822FDAC29342DD94842026485688A7CF23F567410D88C706408487A3EB8820776FB69A611E1050D020090B20289E4843BE6F08ADDFC4CDE2F810707CDA1CFD9C6A41D54A19CA182B14ED5510A4A8EC351480F85FA7ABA292330BDA733A920FD0184B17A4A967287C72375582F09819298A1A583E84F1A3ED19FC14155423B8A31A11310DA160C971551025CC141C0BDA4480451E424D0031A0B2DE0ED8217644DEEA7526643A1720E62535338A25D39CADB633E176493BE0FC2440212CCD8E4418073B797E48439938980C3B8A26B73DE05A831C165E518D2ED0D10A00F2045D8EF0425643094C400841C704ED0A3A2163162E2DB6265743965286D037A85CBD822E4BD4D3D2821761BC50C91D9D8FAAAD54A608051E60B316BC62397EA8BC20C9323C0D35AB0460E5418AE94553492EF4851EA0E187F64A68CA035CAFC5AC0622669823F8CBB2E1E5895710D44308221CBC9607A06DD4A936E3B8B612A8B4C352AEAF19B1D4DCDFEF8CE881E0C00F83AC3454F1CEE520AA8232D780385803546D4E95C1D2A51F372801B14B8990C2D26F637865862E37D0E9B593298BB59462A406C8301FE86047941304ECC80BA9A6C1F945140328D7F8113A82411D30C25217CB8C5852ABD5804BE70A219B5748A03D81CEEEA90A0231C8A0EEDF093F2A06C0B5C603A046031C3492C3CA72ECB0F6AE4E49CF7DE61F8A9A2AAB55799A1290D0AEEC752665860EC2946C516D9D048ECF23A660387045502F02153704E8DC40FDD6944A09A102424CC7CF3C2D541D6B48101C8FAC4019320CD452EA3C4104C999C4EC33C110546FD4B9D4CCC15C67C252A7B6ECA55614A1598D69104BF47800DE53D5D98EBD2FD58860E7FE7A84CF0AB05DBF46639E0C39E432E8760A73D44E0D82684504B181ACC0109AEDD066E8244CA88447A1A2F610001B7FD0626831B452DA41976A49AE8E25A0C7744961447129B8472949D3C2363A3D21784F076019F078D00159E7089ED009A208B2681A0E8D317329974B904E6734FCE8FBC573C6F173BA1C8A4594E192873FB9A30B26640446EF69C1EC9FA8012366484828684F64219D4D42A95CE111B96AB57A5D0A302231B34E1E100CDF08F400B6675FF3085FE3A9A6A69CA808EDAADA4338F069FEAFF331A695B4A7D242B94542A6F7F4FB12F4E687EFA9F755A2A4CE45CF5550A55A8CA537AAA2AA429E7E0F95CA237628A888FE2C6299FC3EBDA75EAB2D384624AA6AF79552495BB1F26CA9B1FCAEDD7731F677D2C9F5912AACEF894061FBE2328809B66C3603BFFA2B4FC3ADB7EE84271F7F3414309526AEEA01664BD448CBECE2F40FC502ED01BEB68C6563A554F0F215D6B2F8B5A24236D411801D623C28692348D8980D759435348D159D899B4EEC282933D15C294E98B4694F103A3B36443B28B3C57BCAE2E97DD71361DD48055F5D3DD59E10F1A3FCDB4AA5C2182E3B8B71A88C6CB64BE7104AB8840C6F2E266076A20419230775B9D8217CA58CA5A525F8C3FFF2557E7EF4E8BBE1D0E8DD7BEFBFBA02969646EAAAE8A5030D42108B39189C0832531158BCF20816322881CA203AF2A7C1FB78832D35AE1B11BAFC2054653548D0987F7BAA96247476CC192D17D65450274C7585B27443276A81E07DCD7C5400965A192A907B3A7B0ECBD63A3FE10453AA9234C501AEC41A1DC538CD5ABEF8AB5F803FFBFAFF8446C366B8393C5A56B033A95A723CDFD3A56B85F9012D32B4ACD2A9146CFFC42ED8BAE396AB2BE0B9E79E737FF94BBF4E5E6FB20CDD96C67E43C7011172611E79D25605418033DA8297A14503D41DC943924C2735D3717D58362EC0A9BB1ECEA4F73DAD20863AFD7D9332705F4153CC34C2E29CD07B5F979885AF03B06622CC86E472DA2A7542669811A5004EC674ED940666F498353D76EEDA055FDEFF1C266C6AE09D06E1B935453F6FADF29A3A238226ADB8DE1B86798D3C40F5A6D00872926FC86E325D6343E06E39D552C28156D310A96183D225297C3DB6AB031FBEB41D1FEAF8B9C543724A780A7AD4F023FDE7FADA8B7C559656C256D84F019E6282623BDA925941AA6CE14347494AA8BCD8B00C451141D35BBF939AAAD2048F89E189824119129AD403303C4C8AF7E85F1F7961F87230391DECEB87F189F10FDDD9C757220C8B226F924CA55658808489D999B4DAA345C2D05064744093A129695012167A9042275BC1A815D1505FB9BEAA88AAF164D7680B9F3CC43414150C608706623C6DFD2AA84B0EC052D78C7C1D0B424FE8C805600505EDCC13249FD3E2B8448534958CF9DA0BFC6B0E21060F623BB7DF7E27D253E7865A2B590188AD4D35102FA0502A431A2FB526227A905C596C108C8398A01CDA6C17C534F4545D8F831E533B1D68BDA09EC4CAA0425CBB7461E8D285C7C2570C4A6A852965A8512E1A6FF0749300C11207E50E6A4ACAE81C130E28673026CC43389C1312CC59D0D3DDCD85358F4982687BC175F2F735C343DC235A6FD66F5C01F158BC1E709C4AA506BD822AA23185E742DD058FD58AF6E891AF9905838CAFD2741BDF687864CDBA5017C40F0DD62280223D7C49A507053D0195959CDC29CB5795D680E24ADD1AC34A103E8F11901264981B687CEF1C09F3DA30E97279D8D0CAB660CDC60DD0AAD774C214189860EFBBBEFE51FC0DD3DFC80D298043682C11AF867D4B3CC8EEA9A06B888EBA629088E9B6421D8A55E30397D1A0627B3A30AAB811266D222869E81CC157F0D0C9F9A57ECF932B5EEBDEA4E07B5EF81DE004C90C7303D5AD676ABECFDD7A1DF9000F7DEAEFE33F30B46E3D382D47D34C4527697F3D1ED06834E1BD932330335FC0E4AB1BBABB7B6E4C01A964AA12D05025340782D00A86CE86035811EA677ED0FAA76957CD55C956BB1AD1B6449FE02528216B880994C035798DCD81B5FBE1732D701F74B214247B8A6652A0364C95AD2E4BCE7482C67BEE4332B8F4CD34D6506C27D59D57C3879AC77B01AFBF8E1EEDCBA3E3B079CB5678F8A107F85AD7A1326F088262B144992E9E5A415449DA056A950DF03F708240098621C2F8004265B84DE49CC2D4993175BE811E4BD6581C9619743555C506680B1F54C0B5C2AC5A8499A9D4AFB9031BA1908A7DA6E7732BBDE472851A2B53D8AFFA1FC28E080DADA66FB232098228DF4861B245E508EEB833547CA2BDA2A5D7F000F41C2A37E47BBAB94322128DDC9802A2F168D9C4C0E4F8BAD9954AB0A00B61BA1C11E2B92E3FA8963EA599BAEB871EA17205A5384377417399C750B982A72D8C6BFC4C3915BEB3850B23F410A9E9A8A7DB613C43C50719C40B08BEA3BC8D2C3E285D7301D6D38337BEAA2951B245019836CA3B13E94C5834E352A350C546FF3A5C60E3BA211819B9C0BF911EF5B1366E3008C79365726368E96C9806E635DB111D6589107274E0A52FB7341C0435755F0FEB061933075D6817F4A4CE9283C11EF5BEAEAF77C094AF3D40F250A8623E2104491D94850AACB4A7FE22454F850AC4BE2608A6EEDC90AAA6646A588B25334A919EA79ACC8C20ABBF760C20CB276ADEAC95A0BFAF1B4647476F2C06D0B8B089195BD06444CDAC6DDAA9C76185AF33649F373D92082DD70FF3F8600850EA4AA42E70AAE77A5C4186C9935282177C8F2146C7056DE52AB1D2FD9F528DC229B8F2C3FC202800724E22D4400E6DE4110489E4A51C2768A8D3086200F0A08C6AD06AAC8801D7C78252C938067A9FE70ADCC8543A4BB39B3A7B801694EFA98A68907405B453845EA03878532AE811C1978C0EB6A4736308BDC10FBBA14538AEAF08BBD43598A0313BDC583946A828A2A516E707107A87AF954071880A789429F3615D35741A8C9A511036C96BA4C110144924D9FE684A5134AA28375DBF941FEFBC44CD25D5A08C1F94A45DB7439086AEEC1961C6C98137683FD7820F787450B80B0773FC40014257BC57F68B890EE8F1C3E7CC86A4CA0D3C8DCDAA08A6CBC77A644A77AD07D31918EF4DC3083BD668EC59980113D21B3E8F507B093E6FD4ABDAFABDD00B3E7E052004058DAF8CE1D26EC38AD04A08679C288B6C7A6D792FEBED0B6244405F851142901F302795162F6B720D67C12CA3B2ED58E0859EA19F878AD2F90167CF8A03B9520DA6B0F00DD5FEC83983A1A82A7B034D1EC124AA56ABB507D1AF330FF8281F1D1014D1D2173C26E0770896D94C4759DAD1BC3E98DD2044C78CAEB0D3AC0D479DE3CB41E53414BCD19E33263B841C066D9E142838EE48DD33EA07F141C727DF6FB7507282C7415968CC6F33201E6F307DA6B0D4C1469D0CD456A298909EF3E0FF0D4050188483C176B7B52C3DEF6444747DB6C64911CCE112461B8A025D04DF87205F10ED8EEBB6AE02606A67DB41DBB7DF8E0BCB8643C15FA6A8203007099ACBF31754EF29DB93F602F600DF8388D382885D07C356132868CCD70B3BD9340BF8900F1A575F5A2AC0D4E4E4757B92A56FBD6E46DA4118EC96B656A1DBB935EDA48F64E7208D687734059237144C09E81CC8D174D4684F9B0BF2093FECBEF53BE281082DDA0F598E7A6E206DB41C1B2CCC550CDFE56948B6E7F294A006CD256B35C169D6B977B389F0D2AA54A15E2E41A5B004F3C85896964ADCF1E0E9724B30F418CC0DF6AE1284E9FC8D460BE61617A0542841A954826AB50CE54A4535EBB66C5EBA809AB7E8F8BB6EB9FDFA1480CAAF45CC8846201ADE6BA896926549970A8C8E660BEFB3FEA04C112825A823E9EF06A33874C4385A620E93BEA4D74456E3212490401D30D0F30CA2C076130CA709BE4D0DB03417AB061E0AD3AE96A038370BE55295854E5EABF05DD14BB1120EF1F1CC33CFC008FEF6ED13A7543B498765D29456EAF564EC37540F93B722139E5F588477DE3D06854281A7A692C009D32442179D37857436DF9D8752A5C48B7A109427ACE83527662CF700E1D7544BB80E03B61E9837C4B291A7968E11747B71C4D9ACE140C26F81496D6D2440D9024117E6365153284C7475A0B9528D2A885615FC065A4AA50C85E949383E37B76AE70029CBB22C9E074C33F8559D47EDA97B83E7089B26E337B39DAB288176B4B6C3860D1BB9D0168BC578DA695FFF206F1B36DE046F1CF89E1A13E09846033272D928F8A9D3E7E0F889133CF0AF4AF726971F525D5D90402A4B2D89A562898F91CE64B93F88023B3DBFFEF1001075BAE9208DAD2ECEC0C68513E809B6B6C8064F05F55080E8D70028D0CAC20CCCCFA23556AA1F69502237A72E3DEEC3214578167826790909DE0B15B09A128209D884F75D5D399E0579F6DC59E8CA75C333BFF1CF209BEBD60A12E19064A958844C57375B3F7981E72D5700052EAAA6D2EFE8F85403CA647308457528978B6C1CB49C01CDA0A7A9B55417A2CF8786863FC8800CE8DE2065EA23274FA2EA4F86AE4CC2085B173FA647A0082A1578A6CB8AB068AFBDC0D04AA0D9ECB9EE1C0C0C0EA96D6008FA718B2712A1D08450039873B3D3B0303F07C5A5058C050B50585A82AEEE5E5D90D39D1DAE6B755EC7F0F0B05262570FF4A00263B1889AF44DEB6B18EC319C4DD3C21D9D63C21F8886628659A7A9FEED40A84B1242253D1FB7F0D5B23116CF40CC6433DC264213A37368A9B427EBCE2204D04683DF420B3910360D134E8E8F216E2FF2424B34BF97961888C5533CA15A35000B9EFD1204605F130EC773969536B76FD904EBD67E918F59AFD5970DC257F1F5FCE2222C209CD204F166A3C683F8743D77EDDE035BB66EEF84563DE97F39CF5531A0296BA4D130130EE827514EDBFE60BC96334E659D0ABB2D16A6C5EB3A4454F9566FD497196C24C86C36CBD380BA50B0C9548A5BD5DBB8DF16B0D07043784B565C2E1561A958800A6E4B852263701C856DE0790D9D0FC41319DE77065CDF502366BE08F618846DCF5AB96C0115A24AE52A4FEE5E5A42812F2EF14C196250B444818DD66FB391AA64AF82ACAB88DF09D6E4C2EFA979F09C9B0ABDEA8192369F2C99B46BF4B2676043BBA8063E2F1390E2CE342D50AB8DBF96160A0749C30A17D0A0B518967FC7D40174F9EB4EE15A1DDFE1A2190D7AA3C512463B764BDAAD966CB56CD1B29B46B3D1120D7C9F6A38923BC49462950728C6452BB148DD37A3AAA310EED5FDA9802B340516467BEFF9DEB23E9212C6B8EF1FF82142D78C6250F8BB2C7A61040D0AAF0D12F1187B2419EADCEC0C4FE43030C98BC663E131F0FA693D3A2A3EB9C1A6BBAD7D56C0B3CF3EEB9CBB3C7DF2D4B98BBBB87420759F6860055225639ED71EA054838FBAA5D1D4DDC23E7509DBCAEA542F11A70C26F7A153A3033A3FBE87FB70F8402F8481EF1B462C1E37D0FAC5A69B36C34D5B36BFF1A5A79EF80DFC561A375A6A2C1789C4D6F50FADBF33DBD37F4B2693DB8A82CF1A3CCD55AA796ABEB14C98EDBD9AEDC97528F21E1D7097EFF5F8B1E72D0BC2E3E393BC08079E5B19181A0809DE43AE4FCB12249065D15206755DD44B0FD244BE2C6CDFBE233C46BD5E4BF12A30485F78E12B253537F4007A64E370C7E38F3E78EBE5F323831F0EB43DAF55AB970D23B258589A593878F0204D7FF53A31F0F9175F6FF4F5F5C52627A761726A0AB76998A6656D908EF6F6E431E00DE236046BD60C43573A55A409EDD4AFAD2FBAE438ADC2E4D885CBB8BD8AAFFB7BFA863ED1DB3FBC3D9BEBDD9C48A68654AE27F48C1AB10C5A3ABDE06ADEB0B21C4DC840F982EAC2548649F947A63B83C8918606E6296BD6AE652E194128A5A50D380877F474B61A75B2FE9CB65D476F0C34A102A8430E77EFDC68F0EC58A38D9E26B5EBC52389C4B047D36CA0237BD6D3636B18CCBABAB2BAFD5B15C5C6C6C71EE95FBBE5757C5D4645CEF99E37856460DA6E96675B8DE60CFAE0E4D2FCF42C6E47688C249ECCAE1B1C5E7F53777E6063BAAB6B23DA6A349C9DB39A37048A58E10D2BCBD1046F34E8DEDBD7CBC24D22B4104C36D0E22B980324115DC2CEB8559685C00CBD8C4460AEA3A170D92236D647C158443050808E449A4E2673B74512C97BCD48EC3EBCADAD1884F2889F164D83E20111CD5882801D89581D9550350EBC76DDBA786F3EBF8926C4F1624988FB14F412A91C2433861F89C64A781BE7EA95A5EF351A9531CF69CC4E5C397B01B76E0CBEBD7DFD6BD7F60FAE5997C9E53722F3E9F2C30E26D51E438AE7F9C9FE0A6F58A1801D5B37C186B543E0B84E472B6203E3636B555920255D2C169646AAE5D289B1B18B478E1D3978861AE9702B6B4FB68311D91B5680163C459BAE54B6F7E17832F32FF1C6EE90D2652A477368C982321974D7549AADBB93D150F08DA1DBA688F158962E6FA87A50A1506252D0282F40238A297EDD628641335B78C6A963E7F0C99E443ABB6760FDB6D96675FE3FD8766D01858C69BC8FB4DAAF1A46AB6C88C65C772EDBD79DEFEBCB20874D2413C985D90531363A0941573137E49A6A91116F0504A9513683E7B0AD92ABC872B93487F9C5E5A9A9F10BE3972E9E5858981BD302A7ADAAB7BAC6FF96861FB98C057D48E193E1F4F40E6FF9795F7AFFD1755A19778555A4D219162E6DB1741E5E3BF0869ACAA3932C72D93866969E8CF3730A76E552010E1D3A8410340911D1E239BAAE8794D58DF0F233A9740A5908E505B8652917C8D24A2503DD3DDDFFBA379F9B8FC6E35D5DE9745732998CD1440BE2E91B8686F83C24CCF363135C3CDB76F316E7F4F1B3627A6ACEE2BA8D54ACE06A2362980B38D3D3533363572E8F5FBC74E1F29913C747EAF52A2A1D8ADAC2ABAB08BDA985EE42D81DD9CE05AE6BE1D6956B6FD26F3098A6CD44FE779019FC56BD5214017D0DE02D9648423A99623E9FC02D89CF73BD43E130A2CF537B5439992C3B994EB0A21271CC091231CE382D642609621AC904A45319D4761E3D260231F42A12287910B7AFA33287FAFBD8C366E71790A5D8EC692514744F4F0FE3F5CCDC3CDC71CB2E5602BDDEB679339C1E1981370F1FA91D3978188943391389C6BBF33DD9C567BEF42B79C2F5A5C542FDE2C50B33E7CE9D9D3A71FCD8D8C9E3EF8EBBAEDBD0C22EAE62E9352DF8A6861AB7633D11B95A22B6AA0248E0FBF7EF17A74E9D12F33B778A7DF8DED4D49428140A62707050CC5896F1EE2BDF425CEF7D3E99CAEE9D9FBE8CF8ECE81E224541A9F0454955FF401FE47BFB78D1BC356BD661F6994621C799C2911063286C0A6E69DC682E2E2983B2CAFE7C37B54C4212BF77EADC79B869FD3AA8205B22CA79EAEC59D872D34D2C64BA7AAA47EDDCBE9513BA732317E19E3BEFE099ED93D3D398285560C7B6ADA8987978F3D0DB98D5AEE1364552C85A645D540D9D42A5BD77ECD8E281575EB9E0D45A72F3E6F5F2ED83072750F0F3A8D496162809BAD461E9950EA1D7B4B5DB7AF3829EB4CEA46B55E35EF9D997BFFC6503056FC537C423A69B8F48C7319181200C1A065E0C82B6346F5ABB21974C746D1C1F1B7F0893BC5FCC74E7865389B849C24AA512BCB44BAE2BC30AA04BA0F7030A1047215DBC320ABB766C47AB4EB2058F4F4EC1952B5720DFA35AFCE268F16751E8B7EEDCC9E55EBAC205CC423F79CFDDFCF9D4CC2CCC20F7BEF3F6DBF83509F7DCF9116E98ADD4AA707EE4320C0DF6B1412C15CB70D3C675ACE489A919B8EF9EDDACB8D367CF410ACFB371FD7AA862E6FCD67BC7600C29F1C4E8E8F4F75E7CE1D0E963C7AEB8B65DB43D6F5120134386565D013157B3767F356BBFA602C8F29F7AEAA9C8CEDDBBFBF7ECD9F3CB880EEB10E9872C33D2876CA5172F3C6F984637265331AEA55B56B86E0EADA678FED225D8B9750B7463A6481E50444B9E40BE7FE6EC19181E1A0E4BCD3C551485D0D3D30DDD9845123D3C73EE1C3C78DF7DE1B59C457868D61B70FBAD6A86C9F98B17E1E4A9D3B061DD3AC670EAB8A6FECF743A0D63984FDC76F30ECE2508D2DE39761CEEDFBB87CB1DF45DF298ED5BB640B15486B7DF7B0FBD2B0F3584211A96CCE2EF9BC8B486FAFA60137AD9281AC33BA7CFF867CF9C79E7A5FFF317FF7B6C7474B455AF2F61A65BC4EBAFE0BED3DA036C97D763EDD75400593F424D3CD9DFFFE8C30FEEFBE3FEBEBE5EC2DB6E0C74315A933316634C2E964AF0F22BAFC2AE9D37C3FCC2024FD9A72C9196EE3D7FFE3CDF08E179177A0015F9CEA0B5EDBBFF53EDC40431FAB51FBC0E9F7DE4336D815FB8001313933CD9AD52ADA9192B78CC7854951A6829CB7B77DF051914182DABF0E6DB6FC3DEDDBBF58C461FDE3A7214065088F4BC542EC3BBA7CEC07AF488A55211366ED8C01047FC7F6E6E0EF6DDF7496E4B3C78F8087AE20E34982EF4CA2B3081C227E341AB8702C2DAE8D4547DF4E2A56FBCF4E20B7F5A2995E69183968AC562636969C95E2178F8B0EB6CBF4F017881493395F985E1756BFFF0A1071EECA2C623B218C2579E89426B25E34DD71A4D486152B2158359678C7E0915F3E9071FD0AB4AA9C7C8A5CBBC96F2D0E010CC215C90554651919E4D2BCF2659A1FDBDBDB069C37A561A5DD28F9009ED4581D379E9B1542CC2E9336719766667E7F8F5B1D3A761786090832D617B2A9964581B4345EEFBE4BD7C5D542238F2EE31F8E49EBB3968CF2F2EC12B3FF801EC4408A4E588CF63CCB879FB3684CC2CAFF7B9889FDF73C7EDFC5BBACE83C74EC0C5D12B97E7A667BF72F2EC91578C925D2EE6724DC44CF7C08103DE8D2E70BEAA07447AB28FC5A3C97F7FDFBD9FDC8C41172A4B4BF0D003CB67FB11E3F8F36FFE253CFD8B9F674CA57AF82C95655198870E1F85CD376DE46E36CC4AF0667730DE663359848C141C3A7A141EB8F7DE65AB147EE76552DCFDAC5CF210C2FC97BEFF2AB29B01A8D5EB0C3554048BA15750061B43CFDAB97D07737412F221F48007D1B229BF200FF9EEABAFA160B772C9B8582E73AC214BA732028D6F1023A2075DEFE8D838DCAE5F136D3DF0E65B303430C009D75A844EF2EEE3E72E50507F656A7AE22BF35353679A8651EF76DDD6F0F0B0F7DC73CFC98F44011C03F6EF8FA4E6E67A3069F9CFE954EAB19F7BF2C9CCEB08175F78EA17A141429EA5DA4D8D932562374514701683AEA7C75BEFB8ED568E07C1E3CDB70F2324AD47EB1F68570751C0FFF7DB2F32BECF23032101D17CDA5ABD06194CD86889E23D6885E40D649984CB54E2BDFD96F68CC3D3E72F7060DF72D326643473308F464285B301A4A364C99467902593572C160A1CE86FDFB5537537E37DBC7BFC04B2A021FE8CBEDF6CB4B88634DCDFCFC724D398C0D842B368366FDCA860F2E22578FBF8497B6E61E1BF4F8E9FFB4F8562633E6F59F57C3EEF7C5825BC8F053DFDF4D36666D3A664C477EE6BD6E49F3EF6C8C3FDEB31F08D8D5E41ABDD0B39B4C26864F576ECEF22FCEC434F8969D8A0B49D18CA0B2FBD049BD629B6810912C7079A2294443ABA84C2DF82D0D38B3017F6DF8F8DC1185AE5839FEA08CA1746600403F1107A24597C0D03348628E8425A4B7161E4F265D87BD75DEC8DF4189B9CE4AE855B6EBE996B4C57C6C7E108321DC27852320DF4F4A0478CA3903763CC0ACE3F8BF4940C62FB96CDAAB480F7701495B561CD1A9844E3BB88F056423A4CB5A9F9C2E23F9E3F7BF6F5F3C3C3B503FBF77F28387A9F0288C93FF5E52F47625353790C823B3EFDF0C3FF6DDB96ADDB0E63D0FBE2D34FB1F03A1FE4EED3D3D35CD96CE0C59E4341D13A6974D8354383A830CC58D1434848EF9D3C05776BABEC4CEA5E7EED00EC41E151418E8E378334F32CC60D6A31A1E1C606CDE745BCDE8DF84F1E41D0A53CC0478EBF4DCFD4F1E187070F31B6131C4EA3572C2186D3048D1C9EBF1F95456BC59D46BADA954E322B0A1E9750E1550CBAB722A90826E0BDF6E69BBCD0F71C42521DEF8B171F54D3443996583C9FA2F5BFDE7EEBED7F519D99293DFFFCF3CE47A2804E2F70AAD5B54343039F7BF4E1CFFC5E3C96801FBEFE034E6A88A5D072BD29BC115A5399A0A20B2D8AF60447744C0AC68F23CBE90CD084BDDFFACE77E189C71E61AC9E468B9A42E5D1A07401836A9ED66346B67219ADFFC94797FFF6F0BBEF21CBE985F55CFA558F77D03269A891981991823866DFC49AFAD09A07F1BB144F567B501E720585FED0A73EC5149888C17BA7CF22D35A44389228709B575F0F6A966A6A936065D21FAEA8371B6710B2DE9A9C98F8F3E985854B69CC11BEF6B5AFB91F9902022FA05880016FDB430F3EF047DBB7EED8C565037467C26EC3B8FA62741438BF7FE007F0B9C71E65EF98989AE4AC348F18DB6AD479D83197ED2286010FECDDBBEC78648107D1E33EFB994F2FA3AEDF79E5FB9CC851E188063FC81B7A50697DE8719D5E75B50719C1E4F40CBC8B8C6A01638DC7E3CF6A19FC60489605AE5ADD7DC7B6676BB5FA854AB57272767AE6E862B93C86322B220415D369BF606786AB1821EC8F2C062CF3824C26292D6B4D7EB0FF91CF3EFAF81F60501698A2C33FF98D5F5FA5EEEDC124063A12343530C510DF6989471A41A2090DD43A72FCE44978ECD30F2FFB1D8DA5BE7A007382CF3C1C5A3C61FC29CC1DCE22CC50264C9935254C44557BF158E465D7FB202A49B4741AAD9CC68B2B084FB1585C2F51D95E534877567ACD6663B28E022F964BC7A767E68EE2B5CC1AAE5B4580AF7A42D48D98D7888954AB4C8B0DF5F7DB70EA9487F0233F923CE07D5EF0F4D311ABABAB3B128D6EBDFFFEFBFF60E78E4FDC39363A06E9789483290DA4509244B51DB2402A25F4A23552ABC86A0F6215F477B9F6DCBD3B7C8F18D5050CA0EF62F64A9931353BD11F5AC863904EE331CF5EBA0877EDDCC5B1E45A0FA2C6D3183F2610D6E690C616285872DE120F3376B51AA65E5ED39776A3DE1843F675AE542E1D9B1A9F7C0F1911FD9995AA19F1ABBE43CBB9194D3316B3FD52C9A97475B9982D7AF33B77CA7D78BAFDCF3DE75F7B6DDC0FA980C00B906A2412420CF776773FF4D8A38FFD57F40A318F4CE153F7ECE6C0FA411EC4825E3FF816D45030341043C2A6C0685826AC41FAB80E99C6CA073506BCF8F2CBF0194CEED22B08004D171D45763385B16409194F0DA924D59182B90E6AE9601976FC4ACFABE3E34AAD5E3DB3B8B4740C93ABE3AE942584A1AA490B7AF97E236959CD3AF2E49C100E7ED7ADD56A321038C28C1F0CA67F54ED37575540501B8AE7F33964445BEFBB77EFEFEDFAC4CEBD73A880C17C3766A53FBEF994CA0157464799D65550F0094D3DEBC868766DDB8250D213E23ED1C4EF7DFF350EDAAB3D286FF8E60BDF6616449042CC84A8203545A4B411F87ADD3A29831E7F49B940098578A95AAE9C592A14DE99989A3A6B1A46C537BC8A74453D8290820A6899F1B8ED5996632E2C7898797B854241EEDCB9D3270B878F58E01F480141767CB15A4D78B63D9C4FA7EFFFDC639FFDE3AE4CD63874E820FCD35FFB35C66D6A5CBD84CC0213142E19D39846370A7BD3867548F9320C4D96A5F8F92584305A6F74934E6E3AA1E8F8A953F0C93DF784419732542E29A3022D4CD448110479104E5FA5C6319797B8E7D5DF5BCD8546BD3E522E974F2FCC2F1C5D5C5CBC84AAA81A54BDF4BC9A138D363084B72288DF8D6CC3CDB5722EE62AF2E314F807560079C1B3CF3E6B39B1580ED3F92D7BF7ECF977B7EDBAE5415AFEFDFCB973980D23E5C3B43D45357DC46CCA4469C0E35564404FFFC2E7573DE6811FBD8949D39DCB620579CCC177DE855A995621F1D8BA89295119A07355426E27572DE57EBD5E9B41B675A15AAD9C98C5808989D724C1898101535856CD779CA68316EE229275E3361E8B79EB3A05BE7FFF0D15D23E1605747A01DEF1503A9DBEF7EF3FFEF89FE4BABACD85C505D8B777CFAA41F73CA6ED535353CBAAA0C183BCE42FFEDF0BB01593A1256AFB46588A9202D3E9F00FE69095AB85F2A8F71FF7AEE3A262276AB5EA79CC544F4C4ECDBCD3ACD5E67C8414B26E20815B76D37022B667188E8D90821AF47622169D3A75CAFF4911F8875240E005954CA62BDE6C6EBEF3EEDDFFE68E5DB73D4A1967AD5484C71F7D64D5E6DA575E7F03366F580F83FD037019F93E255EC5729517CDA3C25AF817293483A1FE4B123AED6DC76E217E8F61C03E5B2A158F8D4F4EBFE73ACE12C189637AB548C050104EF018CB184ADF4FB0C03F94023A2BA5AE690E9AD9EC3D3FFFD863FF2397EB891C39FC36FCA32FFCF2322F181B9F400E7F1E621878698C9652F79E7C0FE702E15FA0A0BF2186984EEB95F29FFD68356BD57AFD3232A5B34B4B8577F15C270DCF2B11860B14B834A1EE806C093B623BC85052C85028609E1F3EEFEF837D7F2D0CE5274A0181173423912C4A72F3EE3BEEF89D3B6FBDFDEF5176FCD68F7EC463B434964B2D8B3409828270382DD5578B6053714EFD9D159B28641131FC62B95A39535C2ABE33393373CE94B28281B58A3CB2469430F237CC507EA214D0E9058D68742019B3EE7AE2F127BF91EFC947FD157FC2837BFB0946A863CC561BC2C97CBD410CA57A727E7EFE9DC2E2E215DF9015CF51023762B261BA11BB8A90126F2043C9AD6428FBD574B2BF657F7FF7032920F0022F95CA48DBDE78DB6DB7FDD6ADB7DCFA4BD4864E819217B66BD192BF4D89029FC60CF342A9543931333777B45A2A4DFBC2AB182252F5855D37FD68A38118646096996AB55C62287BF279EFD44F117E7FEC0A08BCE00A4054CECCE46389C4963DF7DCFDFBA6690D62E0ACA0C02F164BE513D35313EF359BCE5CC0C125263C3F8D0CE52752013A3B36E21B36C445B54A19720FE236A7A3424A9B841DC5CDF3FDD6B5188AFFB3FA07ED6F44019D4A48A552915A341A4BE8EE5A2312F16AB6ED860CE53C32947D3FBD0CE527560181123ABBE7E8BDD0BAFF9630948FE3F1FF0146BEE5E725E73D2E0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (182,1,'Zabbix_server_2D_(128)',0x89504E470D0A1A0A0000000D49484452000000800000001108060000001504A42D0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000B0E4944415468DEE55A6B6C53E7197E8F7D7C8BED90BB7331491C020D0C04084447800C1085B13229A0894AACAB54F8B349ED9F76FD59555AD17EF447ABFE98B4492D2B5AD1DA21AA16414307E57EDD1A5AC6252426019290C4899DBB93F816EF7D3EFB38C7C6C74E224D6CDA271DCE393EEF777B9FE7BD7D418A46A32449D20A22CAA3785BB366CD8FB8FDA1C6660B9BC2619A4F93743A2958516188CCB3FFFF72D3E974D1A9A9A9E07FC35A3A3A3A745D5D5DF2DDBB773F1A1B1BF3198D4632180CC07C627474F47D8965DEE7EB35BE0CA99DAB8C263A140C90631E134FC9063AF49B5FD33F9B6FA652237E8FC65FF93DAA7A1612525A51AD77219FF22D180C925EAF9F99554A5E455499334D4BFD26A574CEF45D66E56EDDB8892E5FFFFE99833FD0DF4BADF76ED1F47444BC9B4C26CACDCD25BBDD4E369B8D0607079B64FE7DA702BECBE522ABD54A77EEDC111D3C3A89BE65C6EC636596BCFB2E4906C3AC260E3E7840BD9F1CA6D1911172392BA8B0B0901E3F7E0CCB981700B391956599162E5C9878BF71E3066D58DF409D9D9D14662F940AE29CBC5996BE151515949393239E2F5EBE2CEE8AD29F651BF20D24AD63C3860D622FC002C6C1583F070258F0112035363652737373A2035CC57024027322C96CCE4A00DBF6ED24979450477D7DA2FFB1A347E9C08103624228C9E7F3A5ED8BF9972E5D4AD7AF5F1780A56B353535545E5E4EF7EFDF172C069B1F3D7A44656565C4EE8C8687870589E1E69EF4F4888D7A3C1E5AB76E1DB10BD45C37BEF7B07C777777DAEF168B056191262626E8DEBD7BB46CD932315E5D5D1D0D0C0C88B931675E5E1E935C2F48F8A4AB9D644B8EDA9FA5F182B14729ED67299D7452A7B4B48CF70D4DF829140EA68626E2D04E939393C4214AD80F083089A78686066A6969116E42B12800188877F6BCF55666F077ECA0FCFDFBE9F1CE9D146C6B832F14EE106384422171C1BB68816B6682A12D58B040534671E9006AF9F2E514617202E4152B56505151910043AD07000330B0278C9BA9819C5A320017E320ACF4F5F5D1DAB56BA9BDBD9D56AF5E2D48A952A8B030ACABC851464E576D1C2849859B1ABCF4CF2693999CE5A5622C8036C4C4F60D0EC5C8243DED9540D017366FA2B1B17111013BBB9FD0F933A769D0E74DDA07307DF8F021555757531B3062EC418029C595E28245A90910CCE07E13E0B1229C9F7F4E4F5E7D9526AE5C99F1203C868981E5E44310000BC573DAB0110C2636E3F7FBD3CA608CB9B86D1000771000E4D10A25000FF3AA4394BA8190D3D3D3B39C97620460422EA9AD49022ADDB3A4B276E5399F89585C5C28D61C980A50A0AC947A3DFD2AC720259EF164301A28C2EB2B7594D0542040BEA1618EF1D6A435633E800E63811EB0275E671004F8235F2FF10F5B20E876BBD14B6750AC3792399619AAAAA8EAE4491A78E71D1A3D762C9971DCDFC8D7D5AB57A9B2B252904A0B44FC0EC561D35A320A31E0F2311680733A9DD4DFDF2FC006891256CC1BE6BD0860312694A1E55960C1E8978960980B9E00F11E24C6BC580FBC0ED65DC2A14F3173C4DD5247311360510254296DD22AA50555D6CB3C9741009563B65090D765B7DB9292DD544FA297F5718FA1A79AAA85F45D8E25890020378743FFAA55ABAC18973DD9710E991FC8FCF227EED810573E7A34B1725F540810CE40007D7E3E553535D1C8679F91EFC30F9FFA0E907217E491C56C6246170B052BAE524BC95887960C368831B02EB860A5C1AD29ED0127A04B962CA11C06DEC96061E3001E572010D0F43E5096D677450663E18E3C006B402EA234E41F88AF1847E6F0D7DA729FDC6D6ED20CD3DA3E84E6D1E9A9CFC26BA9B083EE787F17F8FE535EA38EC9CCBC9F3C2F2B02503CFF18158941DCFD0B0268588DC46EB5F2CB2F29C01543DF9B6F6A2ECCC8406004F7A3C7E29252337CD573CFB7673366FC02601E435502A49604FC4F2FB5B4B69189F38D4084F9CCD75727BF4E9929F9B5BBB78FB205BA2E9649BFEA99D7AE9E5E76C726A137D9687BA615806CC4D623491E80C15FC246AE838E957027AB19C38918B2AC9F29E08308E174993FB3A9E2F0618C4ADDAFBCF23410AA16989CA045AE1A61D5D1E8F49CA89C5A7E652BC7D4711C565A535925AC3A560AFDE7E64502AB24A8ED1D0F05897D033DA4DD6D1E25698A8E753C5F5E81836C561399395C2CEE6C23EB74889A5CCF93B7B28E6C9E4EDEF7D9A43D70E5549B1A62933C008418F444FCC7154993FC38DE7B8FCC2B57D243AE2BA3195CBA88DBE3E35CBA95D1AD5BB744998758ADD51C0E078D8C8C688600C4E07C0E3B00756868483CA3AC44C2857171B88172122562F377CD5C962DA0D6D65691F8C0456B35F4471EA0957C42699081E2906FE059991FF9002A88D2D25271F7C473028A86E9A5BD7B393770D01D2E1975AC5B948F1E4F1FDDBCF93D6DDFB19D421C4EBE3A7E2291184BAA132BB5274C47C0F1F1783E545A423273FE173FB45179D04F27EAF792FB855F91F3EAF1A433001806F01489A52AD4C93C7821DF7395044C392AD44A020B5E7F9DF25E7E993AD6AFA7C8E06056E2222602248C0B0B45D9A6D55632A90014949BAEA1CE86A2518A418E131ABA74E912EDDBB74F8083F88CDF418050282812347831BCABF384D40662A2B4D49A5701186383C83813B876ED1AEDD9B347FC3ECE2407012187E42C76BCAE232B13D2E9ACA05E5E2FD6876728DF6AB3938389110E8744F2E9F74F50EA91A594B07A29CDD18194D52B4503534F2581C057A986F8BD9A89BC0D1EE0B77CED420880904200250F10E5617CFEDCDDBBC971F0203DDABA9542F172315B33724C8455637C00082BD5F4166C81B06028548B4C1A67EFA2D4C39AD5568379B17E2839D3BC38E0292828C0D1A8A64C244D328C793127EE336E351AB75E8989EAE1DFC35C5AE3E44D664F708F49E9A501AF8F4B32B7D0C920976C5BB6FC84F2F3F2E95F77EE929DCB3797AB9A7A39E770BBDB69E3C6F5A2143C73F602AF21AC224432017E57534F7A294AE60757E8C71F5FA4902F483D294920C05774545555F53C27D2DBF136AE6C101FA148B50790F837F0B3982DBEE2C8110A339B8BDF7E3B33FBD812DDFB7E192F0563870F209672D8A3D5E08633C92899BAE2A9607590078038C9C31E6085B0786C1856ADC467E5404AABFA003933FE6D836500B4397EAE81F94154AFD72B3C0F08243C005BBE5209D4D6D6D296CD9BE958F40B8A8423B46777235DBE728586474669078700F46B6975535DDD73B4A1BE9E42E15885B3BBB191CE9D3FCFDF43F4F35D2F0A0FFAC3ADDBD4EF1D54011ACB7546792C8341471F54DCA04AC338352C5D4CFF78CD4D25BF2FA7E8B968027C8C0B6CB107AC0F7726EA54E22008CA83E2B66DDB26EAE7D82664CE268DE4E701CAB8EEF5BCF1C6ECF21555E580493D6C5938B655AC46CB92953094A941069B010038D8C0A916123EA5011C1C174306A0297365729990C9E6522183B58128C82B70AE819253ED4562248A26CAC58F3EFE843E3DF257E1E2D1FF9BD36738EE87688C89D3C663A0C103A0A43DF4E7BF247290935F7F23FA63CCBBBC377894A1A1E194C43446008F7744DCF7D3A698C7E5EA78E3895A1A1A1CA03EEA4EEC9D2D5E9C9E0263E431F1134B3F087023560484658084F88A09150F6063ABCCE7F7D1A347E75887C4AA07B3D546D5358B621B6B3A95B18B67C09B7558CF858B59654EFDFD3459B80C743011C4BCA7B2CCEB9DC5BCB39161AB0D8545394D450E67E277AB7DC6AB19D8831498ED333955914525679A099D66135FF65885C9DCCC2F2C9D93FAEDB9F98C9F51E442E23899F31B84381807C8C8EFC3FCFE3729FEFF010E32F8BBD865D93871F273B2662E2929596C3699A2857979E15A976BCE7FD4C7FF0730DAED16265694FECF9A9E158E539667BD8EDBB76FCBEC2579393A1D5BFD39C67A9C71C6E11F47D2C0171E8FE7D37F03AC928066A5577C080000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (183,1,'Zabbix_server_2D_(64)',0x89504E470D0A1A0A0000000D4948445200000040000000090806000000823E2A7A0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000004714944415448C7A5564B6F1B5514FE663CF1D84EE247C68FD8CE3BCEAB20FE410A124282055291C20A894DC5AEEAAE2B965D7449575D54A4ADCA6351D125484845025510014D1044564A42541287384E1CC7EFF17B38E78EC70F5A36E971AE73E7CCBDE79EF39DEF9C6B09C07B345E77B95CEE37E617573EA8E8F83F492C2D299B6EEF40AF4E923BB3EEB724F5EDB31E9B8D2660883F538C56DF3AC37AD3B7C69C05029A512C940FF192F2E497356D6B6BEBB1C7E3A90E0D0D7DC7AEEDC562B18952A98493E363DC256FDFBE7103D240374ED9E1406D6F0F77BEFE063F8E8FC166B35150DD20555545B55A255F0D31F8BDA22862DE6AB5C4FB114D433C1E87CFEBED736880CEE175CD66B30D9684C1C141618FE76C27180CE2D95E82C621012E9D3BF8622E8BBFB6E3989E9EC6C4C40432994C42611F161616B0B9B90987D38933723875ED5A377B144CF8F66D64EFDD833D348A542A8599991930609644A3511C1C1C748270921D62140861A4D3698C8D8D091DEF8D4622C8E5729DBD6EB71BB55A0DBAAE7700989F9F17F62A950A666767855DC63B3C1EC5883F20D6584C93DAC34E408E8E8650AFD7707C9CEEBCB3C9325E7B7509D95C019FDF596D93CA10A0921F4D06E02165E90A1DA86B9AE66CD0A1BD12BC7E1D67B76EA1914CC21E8EE2F4F41473737322CB9670B6386B16288D464304CC6B39B83D620F239ECFE745F09C756686B596C12A97CB1D7BACE3E039F0DDDD5D905F6851B984463404FD3EB3D0A43600FCA1B942FEB814190D898018F1B4EBCE7C572D1561D4ABE4B3C91E4AC41981E323FF1E32004F68B448F10F391D6BB4B3C8E2BB7C19FAC606F4F575F1AC90B560388283E451A7B0F93B5B283E47B77436DB65117D8E4F331827100A65CAB4D4ED33D96211FF25F5AF7466EFDED4491A5E2A9D677F1F8A715ED1F59A59D2B29CA77F5E2AAFA74A9B1232D5698CB3D6AA998B5C172FC21608E06C75B5CF88D3A142F3F9886AF58E8E1A8AC8A0A56376844221A1B37A003FFFB4B6865030D0A13BCBF0F0B06050AD7D2ED336426552246098AA76BB1DE17018F1A77F221AF25249CC8875C9A323BC72E1021E3CF84AB0E545222B764C8E87F1F11FDFE2FD8F3E85FEE527424F36270904B357D1F35BAC640A0B00C8393B3509CFCA0A9257AF3E673443B40E53300E6A8CBD41B0A3BD8E70FDF333D39E7B06CF935446DC03787DEFDEDEF2B1002D140A62CFD4D49428096689934A85078BC3E1824AC98851397ABC1E51026962D9E4C438BEFFE131016FA04EB7CE00F9F528320DF7D1235474B3F7706365A0E9EC7718802156705D0B3610F2EE4B9704C5476FDEEC8FFEB32F84335C9B9C5DA37D4559DD9A9DB684B3C8996660B6B7B7E1F7FB45A6AD7D560FE03983D9BB97ED339BD8EECECE0E5D8101A1CFE70BD4B9B3D40F0C5A5FC429CD25C94667A890E93E661F540725914C73F0B26CA39E43E7693264E7EFA437415E5C5C34D7AA6A83817D777979F93E39270DAAEAD09B25BD1C6CB61A2FA2D4C9C29CFA9B24A9E4FCB9EEA2268167539473D56FC0EF6F55F47AE2657E03A45247EAC6FACF7E02344137536B7F7FFFC37F01620C060E2E1A38D80000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (184,1,'Zabbix_server_2D_(96)',0x89504E470D0A1A0A0000000D49484452000000600000000D080600000056F26BBC0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000076D4944415458C3D558594C5C5518FEEE3030C02C6C1D9642A12DD0AA5DA818DA9AB656EAD2D43ED9C468627C3146637CB0F5C1178D894B7CF2C987AAF1C5E88389515FAA36EE0BB515DB22A552EAD0420728200303CC0CCCC2CC5CFFEF30779CE56231B10F9E7098CB9DB3FCE7FBBE7F3968003648BF47BA261DFBF6DD75B4C566ABBFC362D1B1CAE66FDBEE08689A86FF592B2828D092BA1E8A86A38B37739F6432815FBBBB9D7EFFCCF4D0D0D057A5A5A590AE0B6427085AB7F49D56AB9506211A8DA2489EDFD375DCEE70C05251F18F8B276666F0EE3DF7A127300F5B51D10D4CD1337EAFAEF9FE9C82BBA626FDB796F7B072BBD190A5441275B50D181D9BBCA9444F5CF762F08FDFD5F3DAB56B61B3D9505C5C0C5DD7FBADF2AE915F1C39720457AE5C414F4F0FAC02A42799C4BE830751FEF8E3A68B1636354193858677ED4242C60666FD58B3660D9C4E2782C160DEF8FAFA7A8C8F8F73D3ACF70E21B9ACAC0C939393282F2FC7E2E2222806BE6B6868C089CF3E43A9AD087373736A6D0A24CB8EC242548848A6A6A6F2F62C93F578D8191149494909E8A449B1B5AEAE0ED5D5D5F8F9975F3036368A29DFF4BF43344305DA8D9897E38642812C1CB66FDF8EEE6EEA1E2E1210E641979696D2838A8480683C8EF98F3E523DB75985C5A69327312AA4C57D3E148AE74C4F4FAB835555552910CD08201099FBB01198F5EBD72BF2B76EDD8ADEDE5EECDDBB5791B84C9606AFD7AB94E372B9E0F7FB73C3889ACFB5731B092591B48D6E4F623996642E83A3C362B160EBED7728D0146E9A01AA86E5A09AFDD92076582C9A5A6B52BC33228230A2AFF179CBA61654C8BE14C7773FFE84EF4E7E9EB689FB85422165979C314C02BCD29B4419168FC7A30E44D5C475F3406111C5367EFA29268F1E457460605985620CBD6061614181C4C3E6362AB7B2B2D2D43BD2E12C91509F048C20353636CA410B303931A58825A09148245F7072701E28975CAA3D776D7A0A01E05ABA80EA7094A2BD6D5B168066C01B9FF5223212A00990B5D56EC464CFF4BC148B76397F6D4DB53AEBAD9B5AF1ED177FDB41A16DDCB811F1783C1C08047EB38ACA3A455D2101BE540CF3882237D30396C403F20E2AE4347CF821FCC78F63E1FBEFFF0E030292DD6E17771EC3EEDDBB9507E5457F2194C4E6861012CE46EF191919C90A27B3B3B32AAF10581E86EBFED3DAB97500FFA65219E6B86F41CA53D9E6E7E7557CB0CABBFE0BBD39F3CC72C832B87D596FB4FCC893FAE574395524084BD733842018F78A1D6DB1586C617878F811ABA10EBA060522075104C473D4C456FBE69B889C3F8FB9F7DFCF0E4916F19A52BB5AE3E4D7DF64A5592DE5D2970707536FB5B4FB1BADAFFF529602D3EDEA1022E145D44A888C49C2FCA1EB543E4A5C5B549593E76F18973DB2B6B3CC851ABBEBA627E1CC6022181513273D950C1501E20EAA2493BECF5059228780AAE79E834592E0C433CF986EE254B1BC09E170D8207375F96C85EA95E18A5ED575EA14DA2469F924D750CDFFA6DA351B4BDB988F9689EFC7C4F81896228B2A6CF8C43BDC6EB70A511C5722958A6F6675093A290271555463DD5A375CC1591C1CEEC5CB079EC64C5D3312177E4DDB2367BA85E730C2A3E1013A37A41B1B3D9300D7830FC279F830BC870EAD68C0D0F09084915A75808B172FE67DBF73E74E480D9C0E0169E284D43D7BF6E0F4E9D3E8E8E8C0B973E7D0DADAAAF2890A57229401C9352484A1C86CFE8E1D3BD0D5D595B7E7B66DDB5448BB74E992AAD08C904732B9079F23E1281E7EF8211CE8BC1BC7DF7A074F3DF984AC754A12A815EDEDED78E5D5D7D5F8EC68A3E53DC562513135898AF232D86341DC191C47D45D0F7F4B1B6CA9FC438C8D729F4D7265A35558794B1EECFC82C0A73D20156B4B0438F78B2FE2DABDF7428FC55624807318F35851B1D23053DEBA75EB543C365329E7B26A20F0048B80D39BB82E730193EC860D1B4CE7D353CCF6E45C2A8D1ECECE33D206A3106010E0FCC1C12B424418DE91517CF9D5D7181D1D93B185B2EF9C901EC7E1070E614C4A68AE5729849E3FFF1B76EDEAC0B56B5E0C5CF6A868A85912E99C302FE3DE68EE4085E773144F7C83E194DA8901C1679762C5DDD2D2F20A3D202E1EA0D138AA975F2AC3494673331A4F9C802E4A5C9F917433DBECDB6F03C10521AF187D7D7D4A5966958A51DF9B7D4765B32E672949E0AF5FBFAEC6116CDAC2E4CECA8AD5C34AF309742C472024936BD04B8C3C472F64F8E545482503F961854502073C834A40D1680C0532B649EE3A956B06D0DCD2ACAA1E566424D0EB1DC126A96E486AFFC01F6A0D15528409DFB41FB76112F7D78FE0DBF605F8368790FC60D903787EAEC94FDA223D44CA5E10D05F3B76EC185886B212A1411B03013C7BF6ECAAE2DF278F3E868FFB2FAA1BB41143732F5C3C303735BB2350DD042B9E5379D1D05929470B340B1C5255104C8E33ABF7A96AA3D4CCF400DE33962B9EEC46AF09C89CDA1ADE84C7FF93646B2B2E35CD3B3D67BB100A065489BE7FFF7E6CD9B20567CE9CE1C5F4258E6E95FE6E6767E716B98D2E8AD2AACA1D0E5B8BCD16692EB14756B3F1C2E6D6F26022F9BFFB5F1009D6F9BFA048347433F7E9EBBB60BF7AF56A89DC1FE6C55B7F174F7609D697E5AEF3FC5FD16E43B3BBFA54DB0000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (185,1,'Zabbix_server_3D_(128)',0x89504E470D0A1A0A0000000D49484452000000800000001B0806000000B49F874B0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000C784944415468DEED5A696C54D7153E6F566F83376C63076C0642C0E01065231092B0440AA22C6D54552849DB1F49831A55517F24AA9AFEEF8F44CA8F546A7E343FA2A296464A5115829DB0C440EA382840C00B310662C7C666BCEF9ED59EE9F7DD9937BCD99D146220B9F2D57BF3DE9D7BCF3DE73BDF39E78EB5502824F3DD344D2BC66507FA2EF46DE80EB9F3DA18FA11F45AF48FA1F7815B41286DBE0060B7DB570583C1DD11A36F4037DF88796F0540CF454CF4D390B5D66C36D7050281B3A17912FC7B0300BCDC929797F738AEBB2246BF7B5E347F6B02A41F72D5413775369BEDC8F0F0F0C41D0180C2C2C20278FAF688C1792DB81D3C759E650BA037100CB3B3B3B54343436DB71500EE4683E0CACB31373DDE72A751F9F72C5B27D9C16432D54297C73B3B3BBDB71400209479CD9A351B10CF756AAFFE81D3F9CD94CB8DB9EBC90E168BA5B6B5B5B57B5E00F0D8638F397C3EDF367C975EFE133C5AF8A3A7CE8B6CADE8CC1D6AF3F3F31B8F1F3F3E73D300B071E3C62A2670A0221A7D331ED97E34C22D255BB4CC043B7CF4E9A79F0EFE5F0080B1B5A79E7A6A5D84D669F4B53F1AE2B6912B887E86CC80D05C0B66F83255999914007BF7EEDD999D9D7D20180CD9BEAB80600A41D98782F7B6A8CB6FB475647272F296386C40422E1EB73BD0D5D5F5EC891327CE185E7B60FB7E0D37BF40FF1DCF66F437393939658829CE7B3C3EF9632828DF258D0F586DF2DFBD2FCAE5AEAE1F9CFDAB972F93F3CDEDF32EC7F4D4A49C3DF3B94C4E8C933166AC566B108EAD1C13E5B91BED6FB4EDEF19E2F9050C10C40FC10BD5876D3669028276A25B2B2BE9D6735B19E3275D7DD2D3DB2B975B5B25CF9167241D439889476CEC032D81AF24FD7BC393DE9E1E29AF288F3E8B5F2BFE81669C4D4B0887A9C71AC6F3D2D7DF2FAB9639657C626ADE01D071E5A28C8F8DEA1F2DCB962D538C80B0200E87C3065B6F27002AF54D3EF3CC33D203C5D5D7D78B0E882EB31964E191E5CDCD62CECF9FD3C27DAFBE2A936FFD45CC6693F87C5ED9BC79933436364A5555D50DD9182A10999999218A251008880D4065C8713A9D642F75BF6FDF3EA95EB54A9A21776565E50D8BBBD3D3D34A2F5424D7A732CBCBCBA5B8B8583DAF3B7C588DED77752741DDF71B00BC1E77CC13CA79DF7DF7C961C8487B434F0E02C0C3978F3EFAA852A629E2E51CC00DF90201F5F9624141FA989F9B2BCE8606F19C3D2BC36FBE09BC59C58A7EF5EA55F57EE1C28532303020DDDDC94B571A69EBD6ADB27FFF7EF1FBFD49C7AC5BB74E56AF5E2D8865B20AC625951D3B764C7D8F8CD5D1D1C1832805822918AA170C4423151616CAD1A34753CABE67CF1EF9EAABAFA4A5A525E97B844379FAE9A7656A6A4AADBD73E74E79EFBDF7D495CF3C7090BEBE3E59B2648998C003048535CB2EC51595D70942D3A2D7846709F7D057519102196D303939253EE84467A2F025F67E6DCD6A19181C9402C83A383422EDAD4D32D8DF17B30FEA823A59BB76AD5CB97285F379A200282D2D95E1E16105026338980906E792F1C962186E7674545C2FBD147D6CC11C595959CA389C97C65BB06041D229B81EDBC30F3F2CE3E3E349C770AE648D73B2D3D0FA3C54D6C4C48432C6A2458BA4A6A6262DA32C5FBE3C6D664D6324938720E43B32926E3C7E2E80C3AC4028E067CD102334496DC4C89F14611F958B2BC4E3F52A279A00007AAE5D0B071F034AF4FBDCEC1CA95AB2589C554BB017BF2C7038C4D5F535F61EBB1F82956C495DD1D1B15F2F01C0603502A18BA8B4D3A74F470DC2EE4FB2F1F856F6FAEB62874776AC5F2FA10880C27358D482636363CAAB531950258DF81E15C731A900E0F5263F0565C64D2F24C330CE9101A81BAECBA4C78C30C6BD040CB2C5CF5B9081E192AD4DE08C8C8CA8B5A950C5009A49EDA3B8A858562C772618EBFABDCE08897986232F574AC098D41965CFC3E76CEACE906B1819C58CB5CBCB4A19D7959C3D76177490ADC06FCC632E5CB8209B366D52CFE1EC5FC3313B098027D0F703C17B38080F87705D48EFA7D2A2C84ED10A5F78410A9F7F5E3A1E79443180B15918060080F7DF7F5FD6031C5A8698C8B5B8E174EF75B622DDF333632FE95BDF2C430CC383BE61EE8354CD79530120D3BAFA181A99DED3805057565626AD4870F575F9FD92929228034C8C8D48C7A58B49F79C98DC6A316F4D34AE29FC8CF764A6A8376BC9925F914B6DAD0049B6F8B147026778A01FDF0BC694E5B06D37E4ACE47CD0C50597CBF5730B3E0429248586B2A8E17FE3FA5B9D01D2012077F36659F4D65BD2BD6387F81153929D0568115A37C310E79B9A1268D6A8A02FC03E21C3218716A73252E2674826F99E5D8B182D6090710861ACF1F353887759B27EC306357FE3A95331DE10DFBA90A77423F94D37A61520538993255C145B99801AD87116327C79FEBC8C8E8C2AD6F1228D696E99C752D04406988DB10574760E7B588C7D46CB398B11E15672B6C816DDF82A07B0243F05B0AD58214B0E1C10D7CB2FCBF4C99329E5282A2D133F90E8F7FAC0A33E754892785C9170897DA7432114FF3694C2A742620705BAB91EEB618F37E1384A8B9FDA38572876D690164A2A7232D7CECE7328655BAD3699EF161F0260D3C7C10026A3135A8C494EA40258A91B9F3D1849AA8CCD8C24A5EAD021197DE71D197BF7DDB44258E1A59B1EDF24972F5F8EF1FE84DA3A4D7898EB5826728CFF6C070F1E94279F7C523A3B3B63A8FF66ACCBF2564F6EEB3E0E9781AE9EAF952CD4A59E3F30BF0944283A1755530806727B3CDFD9B865154E292AC811BBCD22BB5A1BA438E0953F6FF8A55C58B7434ADABF9060637D0C0360CD225E29831EF22CF1314E37BECE02B371B4A8E1193DDF8BF8D7FFDA6B1905ED8201AE2EAD52091A6B500221556329CAD8CE922A596392C3399824D2B02B57AE9473E7CEC9FDF7DFAFCA1B761A82F199F75C8B95CD030F3CA0F281548DE5E53564D93C0349D648E90F3EF8A03224CF155851F05A5D5D2D8328BD282FF55784D28D18A17198FCBEF89B17E4DE7B6B503A9E54CFB66CD9ACF2862F4E9F91E79E7B56DC2855F7EDFB87F4AA0C7F4E3FDD1832FAF051734141BE58CC2659E919910AFFB484721C32EAAC91DC9E2B0A6046F0D2BE34BCB1CCB6E0C523B82ED613210AAE1B5FE500715540F9DB6F8B094AEE46622573F8A1C46AB3AA728CDE4F0FA092D2359655A9C6E85504B36E3DC32760081CD6FFDCC3D0D0504219C8FA37DDBA1C4B8F4C35863AA1FC9C9F40A6677FF3CD37F2D0430FA9330202830744FA5C3AF50E4296B68B1701D80955315C6C6F9731DC0F0DA34EC7BD4ABAF15DCD64CE68F0C457B1A7B25DF67C719BC0D65EB7385C1D621D71C584001A9F8E4D1B732FD843754545C55E32007FCFDFA887002ACB18024C4C68A87CF4E2575E91BCEDDBA5031E1374BBE7845956012CD3A83C1A305DA2454552D9A9C67832D025156A89E42CBCE7BAFA9ED2ADCB79D38DA15CE9BECFB5744AD522593B8DAAEB916E62C3FC4AB65018C8DC67C01F60CE2F3FDBBD534A4A4BA4A9A94581FA9E7B5628066B6BBB245BB73C01F9BCF2C1877531FB8F0F4747973AC5AEC186D367C5D9D220724D129240CA184906C9922B50152CA3B6DC7A08A08014CC1802080062BB64F76E59F4C61BAAD45B5A5F9FD1F0AD35F746CF1348C5F41A2A39552DCFC603A34C63E8491CC3BA9D1ECE92908AA1C268243288EE3D0C13FA3900019EAA0CE4BA9C2FDDBA7CC77978A24960F14AAF6708D0CB512303984D6625CBD2AAA5E2BAD6A74EF278CF839AECEC1C295F542E4118620118C40146E5BBAB577B95819622A7E0DCB9B93972D7E2BBC4E3F6A8B9BC3E7FC2EF1123A83AEC60D9578A2E49B9C52DBFBABB4A2EFFBA4B8AFE5A2AC183C1A84CD403C3A3CE005C0772AA93C0693D09249D6DDBB64DD153A42A103394ED669908C377EDD8F1AD931596635C9C14AB9FA7CFA6385CA28138365DE9C9779C830661FDCF4D35A1BCD41B0F66080ABBDD86B9B262EAFB54F3EA072EE9D6A56C3ABB309FA041DADAAEFFBF264392025F24D63274FE7DDF3FF19DF0F903A3E5E12347B1F7A0FADCDE7E290A683A08C7F9FD61801EAAAD435939ABCADBA6E6165576F87CB1C7E366735896B10982D62B7F9075E117DD28BBEB9D323E362CBDD2190500F3A2356BD6281B338C45F634C9594E500E6CDECE0D3011D27F602100ECF0B262C6D3CF3EFB963F0787AB0796450C032A33C7C6D2B501C4C64CED931327338EA93B7C44B2C038F434B60F3E3C94767CFFE0909C6B6ACE30A621E3BA478E7D2241188B7A2B2EA9B89E44A6F94E8EE187D2ECDCB98D9B4B73380AE004D9004EF89472140ECCCEDF5CC850B81F4232FD2FF50F2140C89F40D13F4519E580074D010879404C35A83644AA733A9DDFFABF3A883A7CDF343387A3E43BAD51E1F0EC50E65CFEE636324B84A53484CB7330787BC4B167C1A0FF418574E07FBF14493B4AEB31620000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (186,1,'Zabbix_server_3D_(64)',0x89504E470D0A1A0A0000000D49484452000000400000000D080600000019AF686C0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000005034944415448C7BD564B6F135714FEE6618F1D13BF13A7499C383606F1508822405D145880845A8490BA824D77DDB22842EAA61BC40F615BB56CCAA2295D54828656904A84145854A8A94AEC90A71DC793C48F997EE7C6766340D024851B1DCDCCF5BDE79EF39DEF3B379AEBBAD8E9D0346D848F4F68E7681FD274BC9F91A7FD401BA3FDC81C96769CC37600E8E9E909D46AB533DC738EC94BE27DDB396C3760BFC19743BBCFEF31C330C61617171FF0DDF9DF00D8CB619AE639499A9F2769D62E827DA7A371CE128B73DB719C31AFD77BFBC99327F96D0170F8F0616F6767E7493A5155E6EFFBDE61B0EFC3D7A4B043D7F5B16AB53A3E3131516D038016A20DA6D3E9EE8F8E1DBF11D4F46EBAF4B49C6F59ACEFD903B7C3BFCB6077A855FE954AA5ED9CF41A1FA82E2D1716EF8DDFFDC2B6ED6228147A2C008CF9FDFEB3A4398C4A15DF562BD87BFA3460186D9B1DDBC6CD62093F25FBB1B1B1211DF0ED87371E96CF82C7E345B15884691AADD0B4B7242CC3C3B87C7EBF9A995F2CED0AFCF2EA2A7E9FBC8F60B013B1580C64C52FD2B5474F9C3881783C8E759EF9D4B2E03041777DBD65A18B17618442CAC96C6E06B148183E8FD9B203FBB2E8B0BCADEFAE681499540A07F6EFC307896E0CF6F763F8D0412CCDCF211E89C02749D12C5AB2B757CD598DEF0E9E7F6C741489AE38BA6251A48752C866D270DC3A4AE515549D1AAA7CAFA28E1AADAE39A8EB2E5C5343381E41281A56EF62307518968943C307914A0FA2509847A5B28128E31B1E1E8665592993394DD03ECEE7F3E8E8E840B552817DE74E0BB5CEF3E7618F8FA374EB167CA34761DBAB10B6ECA11CB66A509CAE132C19F23BFB8720ACAC394AAC80B0873DA6A55B59170C06DB74CC0646021A6D6B88004E9D3A89E4C0C0E677635E19FF8459D16804F57A9D891637D7689B3C8AC76358636C93BF3D50FB72B95C7D6464C42897CBF70480AF19E4596EFC8300ECAF6E09C47FFC387C478E60FEFA75F56DD0616730848542011B8D6445D44BA4B6C3837945B60213DAAE95ED7F7DF13B1289619573C595924A4ECC309755B21591551328AE11BACA783E938397ACF0B338530F1F91C2532FC9477BB396B6AC2DAF969BF1FDC5C71081FECE6C20AE3388FDC2807A23096F26A3A83F7BE54A9B339FE899097AFC9BCD506385BD1E8F4ADE61427AA33A9270C0E75349F23A42381C61135BE15A5384DDDAEBE15EA99ACC37F74A1C3EEF661F96DE11A14472B32FE0B73CE8EDED51F3CB85650C0E2471E7EEBD16F02F0FD3B4D0DF97C0674F7FC6979F7E05FB79AEC9D0B4802E26911C958A05020115B4E8DF603F885FBD8AFCE5CBAFB46DE9C4FD7D7D207D5A731220BB6A6B4E1C2793492C2C2C609595CC66B38AFA85E5650C707EEBDE307B4B85B26B7678914C8AFD637A7A5A2596A1FE05A0D9B97974F5C431941A62137510980BB03F6430FDE7DF64879F67EA58A2FFBEDE3E4C3E9A52C0D76AAE2AD84C20086F79066EB55DA204FAB400909480F9FF8E3ADC595B43E4D225B80CAAFBDAB57648BFB9C9442A4AEBE2A4A951DEAF0ABC660F68CA40129075CF9E3D535D778DBE2579A9BAE8BCB9D747A60880CD21FB9A3D448090BD72A5D8B2DF2E93A5753E6DA5EB3075DFDDD5453669649A8F79643039F5987E2BF46160A564C31D20BB22DFC3758ACABF14446260CC21E1DC05DE02371888C6CE1C3CB3B6E124EA75F73512C25C36AB3DD475CD85FB5F2EEE57464501E7D9D1152620D46A4EFDAD82DF6CCADACB31C8EBDC8B593CB8FFAB9E4824F264E83A0BF3F93FCFA63E489E26E2D60000000049454E44AE426082);
INSERT INTO `images` (`imageid`,`imagetype`,`name`,`image`) VALUES (187,1,'Zabbix_server_3D_(96)',0x89504E470D0A1A0A0000000D4948445200000060000000140806000000722B38EF0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000008844944415458C3D5585B4C5CD715DD7798E131C0C0F0306060C2CBD8AE05D85679D4B24B8D1CAB6DE234921BCB4AD54AA9FC998FC41FF988A57C58CD67F31545AD1255FDB4A25441AA63BBB65B3F63D3E014830D041BCC6BC002CC63188631F3CC5A8799611E174213E3D847DADCE1DE7BCED97BAFB51FE76AC160503672689AF6022E2F430E417E01499167770420ED903390B3905BC10D7690F6A4D787C30D6969694DB8BE8CB5E9F89AF5CEDD68327C8F310939075BCEBADDEE7F41BFD9671280DCDC5C4B5252D2C110CB7F0DC9FBB13CB68120FA216D004345C7D4D4D4ED27111DDF1B80AD5BB756F87CBE43A1F4D20C313D238E7A5A203E24108C0EC885818101C7860270E4C891A4BEBEBE3DA1D442C76F7F4E1CF534F6F441BEC4B3330683E16C5757D79D2702C0FEFDFBB33D1ECF2FE974FCFB2B48CE73ECA4A739ECE1429E929272F1D2A54B0BEB06E0E8D1A3755EAFF755A497838140A001B78CDFB51BF23F8BEF73E950D8A864A3F6C43A5EF8A7CD6834FE1B60B49E3A75AA330600C84F210742BFA5B1B1E984CD1F483F6058BF4327F6FC4CB50BCFDB48369A2408E73B175C1BBA0FC82CED5FB5896BC1E51E1E1E3A93919121E9E9E9ACE1E7E8E5DB90BAD4D454494E4E96F9F979015AF23730A02137578C9B37AFB9B87774543EFE79B374CC3BC4643289DFEF97FF873C41D17F99BA30AAC6C7C7A5183A783D1E09A885B5C8CC1596C5AEB866CE65B790BC7C1471B917A5BC6C8B0C8F8C6F280063A3833270BF47FD2E2B2B53B685B2C6374C2F05281C72F8F061E9E9E9918E8E0EF5421F98D15C5F2F96D75ED35D34B5A64634BC37B8772F8CD264E2E143B1D96C9203D0D0A2E9754DD2DFDFAF008A1ED6EC6C292A2A12BBDD2E9B366D929999194500EAC0F54E03001F9C4F2F6798CDE272B912802A292991070F1E24EC59585828641BF501E3D4DE148BC522C5C5C572EDC60D191A1A94C94733B10845C12C5A2C7C6BDF5F99AC45A532D7C27CE44DDAB873E74E696B6B63EA4B27008B34606161410844D8288FD72BCE2FBE5092C0CEAA2AB17DFEB90CBFF492F81D60BE31499C4EA7626C361C3A3B9B785EA1D138A0C9E3C78F63EED3D979797972F7EE5DD9B66D9B72E45E804A47733D1AF210E09696964A6666A62C2D2DC51FFCA4A0A04046464674A38873868787C50CF0685F7575B58AF2E5B90644AD417635342C3B5193C8558BF262B8BEF16A2B2956D7B4B45419B58F8B1BF62C4FD322D7EACA72E587B49414B978F9AA5CF8676B4C6D999B9B53CFA7A7A7DD04A007489450DFDEDE5E151A2816E25B258F24E5E448E9A79FCAD81B6F883764B429C9287EE6528040475BADD6C4530C98979F9FAF808E1E4C5BE162B8B8B8B81CB263634AC92A004D7D080041C2812F2182A29985E641776DCEC14956FD3F8A94491DA8271D996E4E935DB535BACED703A1203F6F991800D39A95255E9F6F85FB2110CC58B3A478B3CCC31FDBB754CAF9E04A91BF7FFFBEB20BBABA1C0EC77F8DECE9118E7330D40407DC0653769139E18563D886FBA59F7D2693274F8AFBD6AD1516C349593088E9231C457A00D099AB751B4C09939393CAD10492EF12043A8DFAB090ADB636C1D3EBC2B827E712B8F00847168C17F6192693516EDDBC915828127EEADE4C7827364569D0DB1B53A39001DA6047230070830C7F502D26FE09868C73536165701C9B38367FF289384F9F16676B6BC233634AAA2AA8A7CF9D8B5524A44C775F9FCAE39A8EF65DDDDD2130E2CCC59F2584B83517A0B816E5D295AB116BA38DEAE9BBA7EB9BE01A85B817732CD66CD95450B2E1453810A52CFC9C87B4AB853F6318434C0982711A644F040016BEA891FFDE7B12007BA63FF8407713736A8A545556AA1CBF1A5357F978A77B3F07A98E05F4F2E5CB525B5B2B8F1E3D8A74463F646DEAC69AC7F175C76D19B78F8821E0152BF61B1C1C92F2F23215C98C400BEAC703DC5BDF79C22F9959F952662B14B363567EDBFF959C38F0A6D82B774AA0F358441F64982AEA10034038BC99FBC312880220EBF5D7C5DCD42423870EADAAC0080A5D11BA0EE6F93B77124FE20D28742CB07464F46077B26FDF3EB972E50ACE208D72F3E64DA9ABAB53A982B99A7A723DE67882AB377FF7EEDD72EDDAB5843D77ECD8A180ECECEC54859AA98AC598AD2D8BB101CD83CFE393577FF38ABCF8E201F9E8A3BFC8B1637F94EBD7BF54003434D4CBC93FBD2F13139331F1A547018F67496500A6E264B7536A17A7C497952773B6ED9216AA5BF4319B0E0AEC322035FEC40854FE0AA5ACBC193E0B50FC10C56C7424B96FBF2D432D2D125CA500AA8E03A0B188B2D361AFABC73C763264B5EE7902298FFBB3CBA1D3D825B070920C6C2399C7CBCBCB75E71304BD3D6907010C314E3190B5863546E904571AD009F5F70FC81208670730E72F5C44A1B62B2739D02DF97C417905C4B3DBC7543DCACFCB95F6AF3BA4A9B15E454C774FEF3228067F24E25CC926F97375BD9887CFCB36C77F6430B0020081A5C08E3CE8F20E23C0CD62C50DC992B0E2010251512136E4FB209C53D1DEAEEBB8990F3F149975C051A98AA9ECF7E37B750E1A4D03F49E79603C19CE224C47B3A524DBD9429AA00719CBDF74F26AF309A0272E6D723F763B048DCF6938BB10824160355461FECE462D28467B999D6D556787E5D6525307C0AC2C0B5256319A12AF02ABD4562AF700D80BB85297AE3BDD9182CFB676727A5AB60426E460C1985CDDE196A99A7909FC3D1069B96943F8D30DF67611B27771E3FDE3C78F4B1F0A258D576C4397F05654A7B3D6F8C7EF7E2FADDFF4A86E281F8E6424C47F4BA1C16400591D3FE8DCC7B81FDF79A94E08670A3FEE5B2C59EABDD5E6D319F1DF7468302332CCF8E8A1EE2FBAA4501561FB1329B629A966DDBAF3BFF6EBB2E0742832343737ABD4C8548BF6FA04DFDE02F9B8A5A5653B98B608638AAC9999A6325372A0323DC3BF9E8DDD5515C9CE1FE103E40FFDFC47804194C0D292C71FBF6630BA25FBEECDB5B55EEAE9EE36DCBBD7A7A1E5F5A0AE5DAFACACB420ADF6A2CD7EE75B1EBAEF8F483150520000000049454E44AE426082);
START TRANSACTION;
INSERT INTO `role` (`roleid`,`name`,`type`,`readonly`) values ('1','User role','1','0');
INSERT INTO `role` (`roleid`,`name`,`type`,`readonly`) values ('2','Admin role','2','0');
INSERT INTO `role` (`roleid`,`name`,`type`,`readonly`) values ('3','Super admin role','3','1');
INSERT INTO `role` (`roleid`,`name`,`type`,`readonly`) values ('4','Guest role','1','0');
INSERT INTO `users` (`userid`,`username`,`name`,`surname`,`passwd`,`url`,`autologin`,`autologout`,`refresh`,`rows_per_page`,`roleid`) values ('1','Admin','Zabbix','Administrator','$2y$10$92nDno4n0Zm7Ej7Jfsz8WukBfgSS/U0QkIuu8WkJPihXBb2A1UrEK','','1','0','30s','50','3');
INSERT INTO `users` (`userid`,`username`,`name`,`surname`,`passwd`,`url`,`autologin`,`autologout`,`refresh`,`rows_per_page`,`roleid`) values ('2','guest','','','$2y$10$89otZrRNmde97rIyzclecuk6LwKAsHN0BcvoOKGjbT.BwMBfm7G06','','0','15m','30s','50','4');
INSERT INTO `hstgrp` (`groupid`,`name`,`internal`,`flags`,`uuid`) values ('1','Templates','0','0','7df96b18c230490a9a0a9e2307226338');
INSERT INTO `hstgrp` (`groupid`,`name`,`internal`,`flags`,`uuid`) values ('2','Linux servers','0','0','dc579cd7a1a34222933f24f52a68bcd8');
INSERT INTO `hstgrp` (`groupid`,`name`,`internal`,`flags`,`uuid`) values ('4','Zabbix servers','0','0','6f6799aa69e844b4b3918f779f2abf08');
INSERT INTO `hstgrp` (`groupid`,`name`,`internal`,`flags`,`uuid`) values ('5','Discovered hosts','1','0','f2481361f99448eea617b7b1d4765566');
INSERT INTO `hstgrp` (`groupid`,`name`,`internal`,`flags`,`uuid`) values ('6','Virtual machines','0','0','137f19e6e2dc4219b33553b812627bc2');
INSERT INTO `hstgrp` (`groupid`,`name`,`internal`,`flags`,`uuid`) values ('7','Hypervisors','0','0','1b837a3c078647049a0c00c61b4d57b5');
INSERT INTO `hstgrp` (`groupid`,`name`,`internal`,`flags`,`uuid`) values ('8','Templates/Modules','0','0','57b7ae836ca64446ba2c296389c009b7');
INSERT INTO `hstgrp` (`groupid`,`name`,`internal`,`flags`,`uuid`) values ('9','Templates/Network devices','0','0','36bff6c29af64692839d077febfc7079');
INSERT INTO `hstgrp` (`groupid`,`name`,`internal`,`flags`,`uuid`) values ('10','Templates/Operating systems','0','0','846977d1dfed4968bc5f8bdb363285bc');
INSERT INTO `hstgrp` (`groupid`,`name`,`internal`,`flags`,`uuid`) values ('11','Templates/Server hardware','0','0','e960332b3f6c46a1956486d4f3f99fce');
INSERT INTO `hstgrp` (`groupid`,`name`,`internal`,`flags`,`uuid`) values ('12','Templates/Applications','0','0','a571c0d144b14fd4a87a9d9b2aa9fcd6');
INSERT INTO `hstgrp` (`groupid`,`name`,`internal`,`flags`,`uuid`) values ('13','Templates/Databases','0','0','748ad4d098d447d492bb935c907f652f');
INSERT INTO `hstgrp` (`groupid`,`name`,`internal`,`flags`,`uuid`) values ('14','Templates/Virtualization','0','0','02e4df4f20b848e79267641790f241da');
INSERT INTO `hstgrp` (`groupid`,`name`,`internal`,`flags`,`uuid`) values ('15','Templates/Telephony','0','0','1d12408342854fd5a4436dd6d5d1bd4a');
INSERT INTO `hstgrp` (`groupid`,`name`,`internal`,`flags`,`uuid`) values ('16','Templates/SAN','0','0','7c2cb727f85b492d88cd56e17127c64d');
INSERT INTO `hstgrp` (`groupid`,`name`,`internal`,`flags`,`uuid`) values ('17','Templates/Video surveillance','0','0','d37f71c7e3f7469bab645852a69a2018');
INSERT INTO `hstgrp` (`groupid`,`name`,`internal`,`flags`,`uuid`) values ('18','Templates/Power','0','0','3dcd5bbe90534f9e8eb5c2d53756af63');
INSERT INTO `drules` (`druleid`,`proxy_hostid`,`name`,`iprange`,`delay`,`status`) values ('2',NULL,'Local network','192.168.0.1-254','1h','1');
INSERT INTO `dchecks` (`dcheckid`,`druleid`,`type`,`key_`,`snmp_community`,`ports`,`snmpv3_securityname`,`snmpv3_securitylevel`,`snmpv3_authpassphrase`,`snmpv3_privpassphrase`,`uniq`,`snmpv3_authprotocol`,`snmpv3_privprotocol`,`snmpv3_contextname`,`host_source`,`name_source`) values ('2','2','9','system.uname','','10050','','0','','','0','0','0','','1','0');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('1','0','Email','mail.example.com','example.com','zabbix@example.com','','','','','0','25','0','0','0','0','','1','3','10s','0','','30s','0','0','','','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('3','2','SMS','','','','','/dev/ttyS0','','','0','25','0','0','0','0','','1','3','10s','1','','30s','0','0','','','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('4','0','Email (HTML)','mail.example.com','example.com','zabbix@example.com','','','','','0','25','0','0','0','0','','1','3','10s','1','','30s','0','0','','','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('5','4','Mattermost','','','','','','','','0','25','0','0','0','0','','1','1','10s','1','var SEVERITY_COLORS = [\r\n \'#97AAB3\', \'#7499FF\', \'#FFC859\',\r\n \'#FFA059\', \'#E97659\', \'#E45959\'\r\n];\r\n\r\nvar RESOLVE_COLOR = \'#009900\';\r\n\r\nvar SEND_MODE_HANDLERS = {\r\n alarm: handlerAlarm,\r\n event: handlerEvent\r\n};\r\n\r\nif (!String.prototype.format) {\r\n String.prototype.format = function() {\r\n var args = arguments;\r\n\r\n return this.replace(/{(\\d+)}/g, function(match, number) {\r\n return number in args\r\n ? args[number]\r\n : match\r\n ;\r\n });\r\n };\r\n}\r\n\r\nfunction isEventProblem(params) {\r\n return params.event_value == 1\r\n && params.event_update_status == 0\r\n ;\r\n}\r\n\r\nfunction isEventUpdate(params) {\r\n return params.event_value == 1\r\n && params.event_update_status == 1\r\n ;\r\n}\r\n\r\nfunction isEventResolve(params) {\r\n return params.event_value == 0;\r\n}\r\n\r\nfunction getPermalink(mattermost_url, team_name, postid) {\r\n return \'{0}/{1}/pl/{2}\'.format(\r\n mattermost_url.replace(/\\/+$/, \'\'),\r\n team_name,\r\n postid\r\n );\r\n}\r\n\r\nfunction getChannel(send_to) {\r\n switch (true) {\r\n case /.+\\/#.+/.test(send_to):\r\n return getChannelByName(send_to);\r\n\r\n case /@.+/.test(send_to):\r\n return getDirectChannel(send_to);\r\n\r\n default:\r\n return getChannelByID(send_to);\r\n }\r\n}\r\n\r\nfunction getChannelByName(send_to) {\r\n var team_chan = send_to\r\n .trim()\r\n .split(\'/#\');\r\n\r\n var resp = JSON.parse(req.get(\r\n Mattermost.channel_byname.format(team_chan[0], team_chan[1]),\r\n JSON.stringify(fields)\r\n )\r\n );\r\n\r\n if (req.getStatus() != 200) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n\r\n return resp;\r\n}\r\n\r\nfunction getDirectChannel(send_to) {\r\n Zabbix.log(5, \'[ Mattermost Webhook ] Call {0}({1})\'.format(\r\n arguments.callee.name,\r\n JSON.stringify(arguments)\r\n ));\r\n\r\n var teamUser = send_to\r\n .trim()\r\n .split(\'/@\'),\r\n bot = getBotUser(),\r\n user = getUserByName(teamUser[1]);\r\n\r\n var resp = JSON.parse(req.post(\r\n Mattermost.direct_channel,\r\n JSON.stringify([bot.id, user.id])\r\n )\r\n );\r\n\r\n Zabbix.log(5, \'[ Mattermost Webhook ] Result {0}: {1}\'.format(\r\n arguments.callee.name,\r\n JSON.stringify(resp)\r\n ));\r\n\r\n if (req.getStatus() != 201) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n\r\n resp.team_name = teamUser[0];\r\n\r\n return resp;\r\n}\r\n\r\nfunction getChannelByID(channelID) {\r\n Zabbix.log(5, \'[ Mattermost Webhook ] Call {0}({1})\'.format(\r\n arguments.callee.name,\r\n JSON.stringify(arguments)\r\n ));\r\n\r\n var resp = JSON.parse(req.get(\r\n Mattermost.get_channel.format(channelID),\r\n JSON.stringify(fields)\r\n )\r\n );\r\n\r\n Zabbix.log(5, \'[ Mattermost Webhook ] Result {0}: {1}\'.format(\r\n arguments.callee.name,\r\n JSON.stringify(resp)\r\n ));\r\n\r\n if (req.getStatus() != 200) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n\r\n return resp;\r\n}\r\n\r\nfunction getBotUser() {\r\n Zabbix.log(5, \'[ Mattermost Webhook ] Call {0}({1})\'.format(\r\n arguments.callee.name,\r\n JSON.stringify(arguments)\r\n ));\r\n\r\n var resp = JSON.parse(req.get(\r\n Mattermost.bot_user,\r\n JSON.stringify(fields)\r\n )\r\n );\r\n\r\n Zabbix.log(5, \'[ Mattermost Webhook ] Result {0}: {1}\'.format(\r\n arguments.callee.name,\r\n JSON.stringify(resp)\r\n ));\r\n\r\n if (req.getStatus() != 200) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n\r\n return resp;\r\n}\r\n\r\nfunction getUserByName(userName) {\r\n Zabbix.log(5, \'[ Mattermost Webhook ] Call {0}({1})\'.format(\r\n arguments.callee.name,\r\n JSON.stringify(arguments)\r\n ));\r\n\r\n var resp = JSON.parse(req.get(\r\n Mattermost.user_byname.format(userName),\r\n JSON.stringify(fields)\r\n )\r\n );\r\n\r\n Zabbix.log(5, \'[ Mattermost Webhook ] Result {0}: {1}\'.format(\r\n arguments.callee.name,\r\n JSON.stringify(resp)\r\n ));\r\n\r\n if (req.getStatus() != 200) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n\r\n return resp;\r\n}\r\n\r\nfunction getTeamByID(teamID) {\r\n Zabbix.log(5, \'[ Mattermost Webhook ] Call {0}({1})\'.format(\r\n arguments.callee.name,\r\n JSON.stringify(arguments)\r\n ));\r\n\r\n var resp = JSON.parse(req.get(\r\n Mattermost.get_team.format(teamID),\r\n JSON.stringify(fields)\r\n )\r\n );\r\n\r\n Zabbix.log(5, \'[ Mattermost Webhook ] Result {0}: {1}\'.format(\r\n arguments.callee.name,\r\n JSON.stringify(resp)\r\n ));\r\n\r\n if (req.getStatus() != 200) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n\r\n return resp;\r\n}\r\n\r\nfunction createProblemURL(zabbix_url, triggerid, eventid, event_source) {\r\n var problem_url = \'\';\r\n if (event_source === \'0\') {\r\n problem_url = \'{0}/tr_events.php?triggerid={1}&eventid={2}\'\r\n .format(\r\n zabbix_url,\r\n triggerid,\r\n eventid\r\n );\r\n }\r\n else {\r\n problem_url = zabbix_url;\r\n }\r\n\r\n return problem_url;\r\n}\r\n\r\nfunction getTagValue(event_tags, key) {\r\n var pattern = new RegExp(\'(\' + key + \':.+)\');\r\n var tagValue = event_tags\r\n .split(\',\')\r\n .filter(function (v) {\r\n return v.match(pattern);\r\n })\r\n .map(function (v) {\r\n return v.split(\':\')[1];\r\n })[0]\r\n || 0;\r\n\r\n return tagValue;\r\n}\r\n\r\nfunction handlerAlarm(req, params) {\r\n var channel = getChannel(params.send_to);\r\n var fields = {\r\n channel_id: channel.id,\r\n props: {}\r\n };\r\n\r\n if (isEventProblem(params)) {\r\n var team_name = channel.team_name\r\n ? channel.team_name\r\n : getTeamByID(channel.team_id).name;\r\n\r\n fields.props.attachments = [\r\n createMessage(\r\n SEVERITY_COLORS[params.event_nseverity] || 0,\r\n params.event_date,\r\n params.event_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)\r\n )\r\n ];\r\n\r\n var resp = JSON.parse(req.post(\r\n Mattermost.post_message,\r\n JSON.stringify(fields)\r\n )\r\n );\r\n\r\n if (req.getStatus() != 201) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n\r\n result.tags.__mattermost_post_id = resp.id;\r\n result.tags.__mattermost_channel_id = channel.id;\r\n result.tags.__mattermost_channel_name = channel.name;\r\n result.tags.__mattermost_message_link = getPermalink(\r\n params.mattermost_url,\r\n team_name,\r\n resp.id\r\n );\r\n\r\n }\r\n else if (isEventUpdate(params)) {\r\n fields.root_id = getTagValue(params.event_tags, \'mattermost_post_id\');\r\n\r\n if (params.event_source === \'0\') {}\r\n fields.props.attachments = [\r\n createMessage(\r\n SEVERITY_COLORS[params.event_nseverity] || 0,\r\n params.event_update_date,\r\n params.event_update_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),\r\n true\r\n )\r\n ];\r\n\r\n resp = JSON.parse(req.post(\r\n Mattermost.post_message, JSON.stringify(fields)\r\n )\r\n );\r\n\r\n if (req.getStatus() != 201) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n\r\n }\r\n else if (isEventResolve(params)) {\r\n fields.channel_id = getTagValue(params.event_tags, \'mattermost_channel_id\');\r\n fields.id = getTagValue(params.event_tags, \'mattermost_post_id\');\r\n fields.props.attachments = [\r\n createMessage(\r\n RESOLVE_COLOR,\r\n params.event_date,\r\n params.event_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)\r\n )\r\n ];\r\n\r\n var post_id = getTagValue(params.event_tags, \'mattermost_post_id\');\r\n\r\n resp = JSON.parse(req.put(\r\n Mattermost.chat_update.format(post_id),\r\n JSON.stringify(fields)\r\n )\r\n );\r\n\r\n if (req.getStatus() != 200) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n }\r\n}\r\n\r\nfunction handlerEvent(req, params) {\r\n var channel = getChannel(params.send_to);\r\n var fields = {\r\n channel_id: channel.id,\r\n props: {}\r\n };\r\n\r\n if (isEventProblem(params)) {\r\n var team_name = channel.team_name\r\n ? channel.team_name\r\n : getTeamByID(channel.team_id).name;\r\n\r\n fields.props.attachments = [\r\n createMessage(\r\n SEVERITY_COLORS[params.event_nseverity] || 0,\r\n params.event_date,\r\n params.event_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)\r\n )\r\n ];\r\n\r\n var resp = JSON.parse(req.post(Mattermost.post_message, JSON.stringify(fields)));\r\n\r\n if (req.getStatus() != 201) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n\r\n result.tags.__mattermost_channel_name = channel.name;\r\n result.tags.__mattermost_message_link = getPermalink(\r\n params.mattermost_url,\r\n team_name,\r\n resp.id\r\n );\r\n\r\n }\r\n else if (isEventUpdate(params)) {\r\n fields.props.attachments = [\r\n createMessage(\r\n SEVERITY_COLORS[params.event_nseverity] || 0,\r\n params.event_update_date,\r\n params.event_update_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),\r\n false\r\n )\r\n ];\r\n\r\n resp = JSON.parse(req.post(Mattermost.post_message, JSON.stringify(fields)));\r\n\r\n if (req.getStatus() != 201) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n\r\n }\r\n else if (isEventResolve(params)) {\r\n fields.props.attachments = [\r\n createMessage(\r\n RESOLVE_COLOR,\r\n params.event_recovery_date,\r\n params.event_recovery_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)\r\n )\r\n ];\r\n\r\n resp = JSON.parse(req.post(Mattermost.post_message, JSON.stringify(fields)));\r\n\r\n if (req.getStatus() != 201) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n }\r\n}\r\n\r\nfunction createMessage(\r\n event_severity_color,\r\n event_date,\r\n event_time,\r\n problem_url,\r\n isShort\r\n) {\r\n var message = {\r\n fallbac: params.alert_subject,\r\n title: params.alert_subject,\r\n color: event_severity_color,\r\n title_link: problem_url,\r\n footer: problem_url,\r\n\r\n fields: [\r\n {\r\n title: \'Host\',\r\n value: \'{0} [{1}]\'.format(params.host_name, params.host_ip),\r\n short: true\r\n },\r\n {\r\n title: \'Event time\',\r\n value: \'{0} {1}\'.format(event_date, event_time),\r\n short: true\r\n }\r\n ],\r\n };\r\n\r\n \r\n if (params.event_source === \'0\') {\r\n message.fields.push(\r\n {\r\n title: \'Severity\',\r\n value: params.event_severity,\r\n short: true\r\n },\r\n {\r\n title: \'Opdata\',\r\n value: params.event_opdata,\r\n short: true\r\n }\r\n );\r\n }\r\n\r\n if (!isShort && params.event_source === \'0\') {\r\n message.fields.push(\r\n {\r\n title: \'Event tags\',\r\n value: \'`{0}`\'.format(params.event_tags.replace(/__.+?:(.+?,|.+)/g, \'\') || \'None\'),\r\n short: true\r\n },\r\n {\r\n title: \'Trigger description\',\r\n value: params.trigger_description,\r\n short: true\r\n }\r\n );\r\n }\r\n\r\n if (params.event_source !== \'0\' || params.event_update_status === \'1\') {\r\n message.fields.push(\r\n {\r\n title: \'Details\',\r\n value: params.alert_message,\r\n short: false\r\n }\r\n );\r\n }\r\n\r\n return message;\r\n}\r\n\r\nfunction validateParams(params) {\r\n if (typeof params.bot_token !== \'string\' || params.bot_token.trim() === \'\') {\r\n throw \'Field "bot_token" cannot be empty\';\r\n }\r\n\r\n if (isNaN(params.event_id)) {\r\n throw \'Field "event_id" is not a number\';\r\n }\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: "\' + params.event_source + \'".\\nMust be 0-3.\';\r\n }\r\n\r\n if (params.event_source !== \'0\') {\r\n params.event_nseverity = \'0\';\r\n params.event_severity = \'Not classified\';\r\n params.event_update_status = \'0\';\r\n params.send_mode = \'event\';\r\n }\r\n\r\n if (params.event_source === \'1\' || params.event_source === \'2\') {\r\n params.event_value = \'1\';\r\n }\r\n\r\n if (params.event_source === \'1\') {\r\n params.host_name = params.discovery_host_dns;\r\n params.host_ip = params.discovery_host_ip;\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n throw \'Incorrect "event_nseverity" parameter given: \' + params.event_nseverity + \'\\nMust be 0-5.\';\r\n }\r\n\r\n if (typeof params.event_severity !== \'string\' || params.event_severity.trim() === \'\') {\r\n throw \'Field "event_severity" cannot be empty\';\r\n }\r\n\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\') {\r\n throw \'Incorrect "event_update_status" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\') {\r\n throw \'Incorrect "event_value" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (typeof params.host_ip !== \'string\' || params.host_ip.trim() === \'\') {\r\n throw \'Field "host_ip" cannot be empty\';\r\n }\r\n\r\n if (typeof params.host_name !== \'string\' || params.host_name.trim() === \'\') {\r\n throw \'Field "host_name" cannot be empty\';\r\n }\r\n\r\n if (typeof params.mattermost_url !== \'string\' || params.mattermost_url.trim() === \'\') {\r\n throw \'Field "mattermost_url" cannot be empty\';\r\n }\r\n\r\n if (!/^(http|https):\\/\\/.+/.test(params.mattermost_url)) {\r\n throw \'Field "mattermost_url" must contain a schema\';\r\n }\r\n\r\n if ([\'alarm\', \'event\'].indexOf(params.send_mode) === -1) {\r\n throw \'Incorrect "send_mode" parameter given: \' + params.send_mode + \'\\nMust be "alarm" or "event".\';\r\n }\r\n\r\n if (typeof params.send_to !== \'string\' || params.send_to.trim() === \'\') {\r\n throw \'Field "send_to" cannot be empty\';\r\n }\r\n\r\n if (isNaN(params.trigger_id) && params.event_source === \'0\') {\r\n throw \'field "trigger_id" is not a number\';\r\n }\r\n\r\n if (typeof params.zabbix_url !== \'string\' || params.zabbix_url.trim() === \'\') {\r\n throw \'Field "zabbix_url" cannot be empty\';\r\n }\r\n\r\n if (!/^(http|https):\\/\\/.+/.test(params.zabbix_url)) {\r\n throw \'Field "zabbix_url" must contain a schema\';\r\n }\r\n\r\n}\r\n\r\ntry {\r\n var params = JSON.parse(value);\r\n\r\n validateParams(params);\r\n\r\n var req = new HttpRequest(),\r\n fields = {},\r\n result = {tags: {}};\r\n\r\n if (typeof params.HTTPProxy === \'string\' && params.HTTPProxy.trim() !== \'\') {\r\n req.setProxy(params.HTTPProxy);\r\n }\r\n\r\n req.addHeader(\'Content-Type: application/json; charset=utf-8\');\r\n req.addHeader(\'Authorization: Bearer \' + params.bot_token);\r\n\r\n params.mattermost_url = params.mattermost_url.replace(/\\/+$/, \'\');\r\n params.zabbix_url = params.zabbix_url.replace(/\\/+$/, \'\');\r\n\r\n var APIEndpoint = params.mattermost_url + \'/api/v4/\';\r\n\r\n var Mattermost = {\r\n post_message: APIEndpoint + \'posts\',\r\n get_channel: APIEndpoint + \'channels/{0}\',\r\n get_team: APIEndpoint + \'teams/{0}\',\r\n chat_update: APIEndpoint + \'posts/{0}\',\r\n direct_channel: APIEndpoint + \'channels/direct\',\r\n channel_byname: APIEndpoint + \'teams/name/{0}/channels/name/{1}\',\r\n user_byname: APIEndpoint + \'users/username/{0}\',\r\n bot_user: APIEndpoint + \'users/me\'\r\n\r\n };\r\n\r\n params.send_mode = params.send_mode.toLowerCase();\r\n params.send_mode = params.send_mode in SEND_MODE_HANDLERS\r\n ? params.send_mode\r\n : \'alarm\';\r\n\r\n SEND_MODE_HANDLERS[params.send_mode](req, params);\r\n\r\n if (params.event_source === \'0\') {\r\n return JSON.stringify(result);\r\n }\r\n else {\r\n return \'OK\';\r\n }\r\n}\r\ncatch (error) {\r\n Zabbix.log(4, \'[ Mattermost Webhook ] Mattermost notification failed: \' + error);\r\n throw \'Mattermost notification failed: \' + error;\r\n}','30s','1','1','{EVENT.TAGS.__mattermost_message_link}','Open in Mattermost: {EVENT.TAGS.__mattermost_channel_name}','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('6','4','Opsgenie','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','var Media = {\r\n params: {},\r\n name: \'\',\r\n labels: [],\r\n HTTPProxy: \'\',\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n Media.params = params;\r\n Media.params.api += Media.params.api.endsWith(\'/\') ? \'\' : \'/\';\r\n Media.params.web += Media.params.web.endsWith(\'/\') ? \'\' : \'/\';\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n if (typeof HTTPProxy !== \'undefined\' && HTTPProxy.trim() !== \'\') {\r\n Media.HTTPProxy = HTTPProxy;\r\n }\r\n },\r\n\r\n setTags: function(event_tags_json) {\r\n if (typeof event_tags_json !== \'undefined\' && event_tags_json !== \'\'\r\n && event_tags_json !== \'{EVENT.TAGSJSON}\') {\r\n\r\n try {\r\n var tags = JSON.parse(event_tags_json),\r\n label;\r\n\r\n tags.forEach(function (tag) {\r\n if (typeof tag.tag === \'string\') {\r\n label = (tag.tag + (typeof tag.value !== \'undefined\'\r\n && tag.value !== \'\' ? (\':\' + tag.value) : \'\')).replace(/\\s/g, \'_\');\r\n Media.labels.push(label);\r\n }\r\n });\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ \' + Media.name + \' Webhook ] Failed to parse "event_tags_json" param\');\r\n }\r\n }\r\n },\r\n\r\n request: function (method, query, data, allow_404) {\r\n if (typeof(allow_404) === \'undefined\') {\r\n allow_404 = false;\r\n }\r\n\r\n [\'api\', \'token\'].forEach(function (field) {\r\n if (typeof Media.params !== \'object\' || typeof Media.params[field] === \'undefined\'\r\n || Media.params[field] === \'\') {\r\n throw \'Required \' + Media.name + \' param is not set: "\' + field + \'".\';\r\n }\r\n });\r\n\r\n var response,\r\n url = Media.params.api + query,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Authorization: \' + Media.params.token);\r\n request.setProxy(Media.HTTPProxy);\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ \' + Media.name + \' Webhook ] Sending request: \' +\r\n url + ((typeof data === \'string\') ? (\'\\n\' + data) : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ \' + Media.name + \' Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ \' + Media.name + \' Webhook ] Failed to parse response.\');\r\n response = null;\r\n }\r\n }\r\n\r\n if ((request.getStatus() < 200 || request.getStatus() >= 300)\r\n && (!allow_404 || request.getStatus() !== 404)) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response !== null) {\r\n if (typeof response.errors === \'object\' && Object.keys(response.errors).length > 0) {\r\n message += \': \' + JSON.stringify(response.errors);\r\n }\r\n else if (typeof response.errorMessages === \'object\' && Object.keys(response.errorMessages).length > 0) {\r\n message += \': \' + JSON.stringify(response.errorMessages);\r\n }\r\n else if (typeof response.message === \'string\') {\r\n message += \': \' + response.message;\r\n }\r\n }\r\n\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n getAlertId: function (requestId) {\r\n do {\r\n resp = Media.request(\'get\', \'requests/\' + requestId, undefined, true);\r\n }\r\n while (typeof resp.response !== \'object\' || typeof resp.response.data === \'undefined\'\r\n || resp.response.data.success === false);\r\n\r\n if (typeof resp.response !== \'object\' || typeof resp.response.data === \'undefined\') {\r\n throw \'Cannot get \' + Media.name + \' issue ID. Check debug log for more information.\';\r\n }\r\n\r\n return resp;\r\n }\r\n};\r\n\r\ntry {\r\n var result = {tags: {}},\r\n params = JSON.parse(value),\r\n media = {},\r\n fields = {},\r\n resp = {},\r\n responders = [],\r\n tags = [],\r\n required_params = [\r\n \'alert_subject\',\r\n \'alert_message\',\r\n \'event_id\',\r\n \'event_source\',\r\n \'event_value\',\r\n \'event_update_status\',\r\n \'opsgenie_api\',\r\n \'opsgenie_web\',\r\n \'opsgenie_token\'\r\n ],\r\n severities = [\r\n \'not_classified\',\r\n \'information\',\r\n \'warning\',\r\n \'average\',\r\n \'high\',\r\n \'disaster\',\r\n \'resolved\',\r\n \'default\'\r\n ],\r\n priority;\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (required_params.indexOf(key) !== -1 && params[key].trim() === \'\') {\r\n throw \'Parameter "\' + key + \'" cannot be empty.\';\r\n }\r\n if (key.startsWith(\'opsgenie_\')) {\r\n media[key.substring(9)] = params[key];\r\n }\r\n });\r\n\r\n // Possible values of event_source:\r\n // 0 - Trigger, 1 - Discovery, 2 - Autoregistration, 3 - Internal.\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: "\' + params.event_source + \'".\\nMust be 0-3.\';\r\n }\r\n\r\n // Check event_value for trigger-based and internal events.\r\n // Possible values: 1 for problem, 0 for recovering\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect "event_value" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check event_update_status only for trigger-based events.\r\n // Possible values: 0 - Webhook was called because of problem/recovery event, 1 - Update operation.\r\n if (params.event_source === \'0\' && params.event_update_status !== \'0\' && params.event_update_status !== \'1\') {\r\n throw \'Incorrect "event_update_status" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check event_id for a numeric value.\r\n if (isNaN(parseInt(params.event_id)) || params.event_id < 1) {\r\n throw \'Incorrect "event_id" parameter given: \' + params.event_id + \'\\nMust be a positive number.\';\r\n }\r\n\r\n if ((params.event_source === \'1\' || params.event_source === \'2\') && params.event_value === \'0\') {\r\n throw \'Recovery operations are supported only for Trigger and Internal actions.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n if (params.event_value === \'0\') {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n priority = params[\'severity_\' + severities[params.event_nseverity]];\r\n params.zbxurl = params.zbxurl + (params.zbxurl.endsWith(\'/\') ? \'\' : \'/\');\r\n\r\n Media.name = \'Opsgenie\';\r\n Media.setParams(media);\r\n Media.params.token = \'GenieKey \' + Media.params.token;\r\n Media.setProxy(params.HTTPProxy);\r\n Media.setTags(params.event_tags_json); // Set Media.labels\r\n\r\n // Create an issue.\r\n // Numeric value of the event that triggered an action (1 for problem, 0 for recovering).\r\n // Numeric value of the problem update status. Possible values:\r\n // 0 - Webhook was called because of problem/recovery event, 1 - Update operation.\r\n if ((params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0)\r\n || (params.event_source == 3 && params.event_value == 1)\r\n || params.event_source == 1 || params.event_source == 2) {\r\n fields.message = params.alert_subject;\r\n fields.alias = params.event_id;\r\n fields.description = params.alert_message;\r\n fields.priority = priority;\r\n fields.source = \'Zabbix\';\r\n\r\n if (params.event_source === \'0\') {\r\n fields.details = {\r\n \'Zabbix server\': params.zbxurl,\r\n Problem: params.zbxurl + \'tr_events.php?triggerid=\' + params.trigger_id + \'&eventid=\' + params.event_id\r\n };\r\n }\r\n else {\r\n fields.details = {\'Zabbix server\': params.zbxurl};\r\n }\r\n\r\n if (typeof params.opsgenie_teams === \'string\') {\r\n responders = params.opsgenie_teams.split(\',\');\r\n fields.responders = responders.map(function(team) {\r\n return {type: \'team\', name: team.trim()};\r\n });\r\n }\r\n\r\n fields.tags = Media.labels;\r\n if (typeof params.opsgenie_tags === \'string\') {\r\n tags = params.opsgenie_tags.split(\',\');\r\n tags.forEach(function(item) {\r\n fields.tags.push(item.trim());\r\n });\r\n }\r\n\r\n resp = Media.request(\'post\', \'\', fields);\r\n if (typeof resp.response !== \'object\' || typeof resp.response.result === \'undefined\') {\r\n throw \'Cannot create \' + Media.name + \' issue. Check debug log for more information.\';\r\n }\r\n\r\n if (resp.status === 202) {\r\n resp = Media.getAlertId(resp.response.requestId);\r\n if (params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0) {\r\n result.tags.__zbx_ops_issuekey = resp.response.data.alertId;\r\n result.tags.__zbx_ops_issuelink = Media.params.web + \'alert/detail/\' + resp.response.data.alertId;\r\n }\r\n }\r\n else {\r\n throw Media.name + \' response code is unexpected. Check debug log for more information.\';\r\n }\r\n }\r\n // Update a created issue.\r\n else {\r\n fields.user = (params.event_value != 0) ? params.zbxuser : \'\';\r\n fields.note = params.alert_message;\r\n\r\n resp = Media.request(\'post\', params.event_id + \'/notes?identifierType=alias\', fields);\r\n if (typeof resp.response !== \'object\' || typeof resp.response.result === \'undefined\') {\r\n throw \'Cannot update \' + Media.name + \' issue. Check debug log for more information.\';\r\n }\r\n\r\n if (resp.status === 202) {\r\n resp = Media.getAlertId(resp.response.requestId);\r\n }\r\n else {\r\n throw Media.name + \' response code is unexpected. Check debug log for more information.\';\r\n }\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ \' + Media.name + \' Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','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/6.0/manual/config/notifications/media/webhook#example_scripts.\r\n \r\nSet global macro {$ZABBIX.URL} with your Zabbix server URL.\r\nAdd dedicated user with media type "Opsgenie".\r\nChange the values of the variables opsgenie_api (https://api.opsgenie.com/v2/alerts or https://api.eu.opsgenie.com/v2/alerts),\r\nopsgenie_web (for example, https://myzabbix.app.opsgenie.com), opsgenie_token.');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('7','4','PagerDuty','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','try {\r\n\r\n var params = JSON.parse(value),\r\n req = new HttpRequest(),\r\n fields = {},\r\n resp = \'\';\r\n\r\n // Correspondence between the PagerDuty and Zabbix severity level\r\n var severityMapping = [\r\n \'info\', // Not classified\r\n \'info\', // Information\r\n \'warning\', // Warning\r\n \'warning\', // Average\r\n \'error\', // High\r\n \'critical\' // Disaster\r\n ];\r\n\r\n if (!severityMapping[params.severity]) {\r\n params.severity = \'0\';\r\n }\r\n\r\n if (typeof params.HTTPProxy === \'string\' && params.HTTPProxy.trim() !== \'\') {\r\n req.setProxy(params.HTTPProxy);\r\n }\r\n\r\n if (isNaN(parseInt(params.eventid)) || params.eventid < 1) {\r\n throw \'incorrect value for variable "eventid". The value must be a positive number.\';\r\n }\r\n if (params.eventname.length < 1) {\r\n throw \'incorrect value for variable "eventname". The value must be a non-empty string.\';\r\n }\r\n if (isNaN(parseInt(params.severity)) || (params.severity < 0 && params.severity > 5)) {\r\n throw \'incorrect value for variable "severity". The value must be a number 0..5.\';\r\n }\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: "\' + params.event_source + \'".\\nMust be 0-3.\';\r\n }\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.eventvalue !== \'0\' && params.eventvalue !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect "eventvalue" parameter given: "\' + params.eventvalue + \'".\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source === \'0\') {\r\n if (params.hostname.length < 1) {\r\n throw \'incorrect value for variable "hostname". The value must be a non-empty string.\';\r\n }\r\n if (isNaN(parseInt(params.triggerid)) || params.triggerid < 1) {\r\n throw \'incorrect value for variable "triggerid". The value must be a positive number.\';\r\n }\r\n if (params.eventack != \'Yes\' && params.eventack != \'No\') {\r\n throw \'incorrect value for variable "eventack". The value must be Yes or No.\';\r\n }\r\n if (isNaN(parseInt(params.eventupdate)) || (params.eventupdate < 0 || params.eventupdate > 1)) {\r\n throw \'incorrect value for variable "eventupdate". The value must be 0 or 1.\';\r\n }\r\n }\r\n\r\n\r\n\r\n req.addHeader(\'Content-Type: application/json\');\r\n\r\n fields.routing_key = params.token;\r\n fields.dedup_key = params.eventid;\r\n\r\n if (((params.eventvalue == 1) && (params.eventupdate == 0)) || params.event_source !== \'0\') {\r\n fields.event_action = \'trigger\';\r\n fields.payload = {\r\n summary: params.eventname,\r\n source: (params.event_source === \'1\') ? \'Discovery\' : params.hostname + \' : \' + params.hostip,\r\n severity: severityMapping[params.severity],\r\n };\r\n \r\n if (params.event_source === \'0\') {\r\n fields.payload.custom_details = {\r\n \'Event date\': params.eventdate,\r\n \'Event time\': params.eventtime,\r\n \'Trigger description\': params.triggerdesc,\r\n \'Trigger opdata\': params.triggeropdata,\r\n \'Event tags\': params.eventtags,\r\n \'Event host\': params.hostname,\r\n \'Event host ip\': params.hostip\r\n };\r\n fields.links = [{\r\n href: params.url + \'/tr_events.php?triggerid=\' + params.triggerid + \'&eventid=\' + params.eventid,\r\n text: \'Event link\'\r\n }];\r\n }\r\n else {\r\n fields.payload.custom_details = {\r\n \'Alert message\': params.alert_message\r\n };\r\n }\r\n\r\n fields.client = \'Zabbix\';\r\n fields.client_url = params.url;\r\n }\r\n else if ((params.eventvalue == 1) && (params.eventupdate == 1) && (params.eventack == \'Yes\'))\r\n fields.event_action = \'acknowledge\';\r\n else if (params.eventvalue == 0)\r\n fields.event_action = \'resolve\';\r\n else\r\n throw \'incorrect values. Update message without ack will not be sent.\';\r\n\r\n Zabbix.log(4, \'[PagerDuty Webhook] Sending request:\' + JSON.stringify(fields));\r\n resp = req.post(\'https://events.pagerduty.com/v2/enqueue\',\r\n JSON.stringify(fields)\r\n );\r\n Zabbix.log(4, \'[PagerDuty Webhook] Receiving response:\' + resp);\r\n\r\n try {\r\n resp = JSON.parse(resp);\r\n }\r\n catch (error) {\r\n throw \'incorrect response. PagerDuty returned a non-JSON object.\';\r\n }\r\n\r\n if (req.getStatus() != 202) {\r\n if (typeof resp === \'object\' && typeof resp.errors === \'object\' && typeof resp.errors[0] === \'string\') {\r\n throw resp.errors[0];\r\n }\r\n else {\r\n throw \'Unknown error.\';\r\n }\r\n }\r\n\r\n if (resp.status != \'success\') {\r\n throw \'Unknown error.\';\r\n }\r\n\r\n return \'OK\';\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[PagerDuty Webhook] Notification failed : \' + error);\r\n throw \'PagerDuty notification failed : \' + error;\r\n}','30s','0','0','','','Please refer to https://v2.developer.pagerduty.com/docs/send-an-event-events-api-v2 and https://www.zabbix.com/documentation/6.0/manual/config/notifications/media/webhook#example_scripts.\r\n \r\nSet global macro {$ZABBIX.URL} with your Zabbix server URL.\r\nAdd a dedicated user with the media type "PagerDuty" and place the integration key in the "token" parameter to integrate into the service.');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('8','4','Pushover','','','','','','','','0','25','0','0','0','0','','0','3','10s','1','try {\r\n var params = JSON.parse(value),\r\n request = new HttpRequest(),\r\n data,\r\n response,\r\n severities = [\r\n {name: \'not_classified\', color: \'#97AAB3\'},\r\n {name: \'information\', color: \'#7499FF\'},\r\n {name: \'warning\', color: \'#FFC859\'},\r\n {name: \'average\', color: \'#FFA059\'},\r\n {name: \'high\', color: \'#E97659\'},\r\n {name: \'disaster\', color: \'#E45959\'},\r\n {name: \'resolved\', color: \'#009900\'},\r\n {name: \'default\', color: \'#000000\'}\r\n ],\r\n priority;\r\n\r\n if (typeof params.HTTPProxy === \'string\' && params.HTTPProxy.trim() !== \'\') {\r\n request.setProxy(params.HTTPProxy);\r\n }\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: "\' + params.event_source + \'".\\nMust be 0-3.\';\r\n }\r\n\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect "event_value" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n if (params.event_value === \'0\') {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n priority = params[\'priority_\' + severities[params.event_nseverity].name] || params.priority_default;\r\n\r\n if (isNaN(priority) || priority < -2 || priority > 2) {\r\n throw \'"priority" should be -2..2\';\r\n }\r\n\r\n if (params.event_source === \'0\' && isNaN(params.triggerid)) {\r\n throw \'field "triggerid" is not a number\';\r\n }\r\n\r\n if (isNaN(params.eventid)) {\r\n throw \'field "eventid" is not a number\';\r\n }\r\n\r\n if (typeof params.message !== \'string\' || params.message.trim() === \'\') {\r\n throw \'field "message" cannot be empty\';\r\n }\r\n\r\n data = {\r\n token: params.token,\r\n user: params.user,\r\n title: params.title,\r\n message: params.message,\r\n url: (params.event_source === \'0\') \r\n ? params.url + \'/tr_events.php?triggerid=\' + params.triggerid + \'&eventid=\' + params.eventid\r\n : params.url,\r\n url_title: params.url_title,\r\n priority: priority\r\n };\r\n\r\n if (priority == 2) {\r\n if (isNaN(params.retry) || params.retry < 30) {\r\n throw \'field "retry" should be a number with value of at least 30 if "priority" is set to 2\';\r\n }\r\n\r\n if (isNaN(params.expire) || params.expire > 10800) {\r\n throw \'field "expire" should be a number with value of at most 10800 if "priority" is set to 2\';\r\n }\r\n\r\n data.retry = params.retry;\r\n data.expire = params.expire;\r\n }\r\n\r\n data = JSON.stringify(data);\r\n Zabbix.log(4, \'[ Pushover Webhook ] Sending request: \' + params.endpoint + \'\\n\' + data);\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n response = request.post(params.endpoint, data);\r\n\r\n Zabbix.log(4, \'[ Pushover Webhook ] Received response with status code \' + request.getStatus() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ Pushover Webhook ] Failed to parse response received from Pushover\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (request.getStatus() != 200 || response === null || typeof response !== \'object\' || response.status !== 1) {\r\n if (response !== null && typeof response === \'object\' && typeof response.errors === \'object\'\r\n && typeof response.errors[0] === \'string\') {\r\n throw response.errors[0];\r\n }\r\n else {\r\n throw \'Unknown error. Check debug log for more information.\';\r\n }\r\n }\r\n\r\n return \'OK\';\r\n}\r\ncatch (error) {\r\n Zabbix.log(4, \'[ Pushover Webhook ] Pushover notification failed: \' + error);\r\n throw \'Pushover notification failed: \' + error;\r\n}','30s','0','0','','','Please refer to setup guide here: https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/pushover\r\n\r\nSet token parameter with to your Pushover application key.\r\nWhen assigning Pushover media to the Zabbix user - add user key into send to field.');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('9','4','Slack','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','var SEVERITY_COLORS = [\r\n \'#97AAB3\', \'#7499FF\', \'#FFC859\',\r\n \'#FFA059\', \'#E97659\', \'#E45959\'\r\n];\r\n\r\nvar RESOLVE_COLOR = \'#009900\';\r\n\r\nvar SLACK_MODE_HANDLERS = {\r\n alarm: handlerAlarm,\r\n event: handlerEvent\r\n};\r\n\r\n\r\nif (!String.prototype.format) {\r\n String.prototype.format = function() {\r\n var args = arguments;\r\n\r\n return this.replace(/{(\\d+)}/g, function(match, number) {\r\n return number in args\r\n ? args[number]\r\n : match\r\n ;\r\n });\r\n };\r\n}\r\n\r\nfunction isEventProblem(params) {\r\n return params.event_value == 1\r\n && params.event_update_status == 0\r\n ;\r\n}\r\n\r\nfunction isEventUpdate(params) {\r\n return params.event_value == 1\r\n && params.event_update_status == 1\r\n ;\r\n}\r\n\r\nfunction isEventResolve(params) {\r\n return params.event_value == 0;\r\n}\r\n\r\nfunction getPermalink(channelId, messageTimestamp) {\r\n var req = new HttpRequest();\r\n\r\n if (typeof params.HTTPProxy === \'string\' && params.HTTPProxy.trim() !== \'\') {\r\n req.setProxy(params.HTTPProxy);\r\n }\r\n\r\n req.addHeader(\'Content-Type: application/x-www-form-urlencoded; charset=utf-8\');\r\n req.addHeader(\'Authorization: Bearer \' + params.bot_token);\r\n\r\n var query = \'{0}?channel={1}&message_ts={2}\'.format(\r\n Slack.getPermalink,\r\n encodeURIComponent(channelId),\r\n encodeURIComponent(messageTimestamp)),\r\n resp = JSON.parse(req.get(query));\r\n\r\n if (req.getStatus() != 200 || !resp.ok || resp.ok === \'false\') {\r\n throw \'message was created, but getting message link was failed with reason "\' + resp.error + \'"\';\r\n }\r\n\r\n return resp.permalink;\r\n}\r\n\r\nfunction createProblemURL(zabbix_url, triggerid, eventid, event_source) {\r\n var problem_url = \'\';\r\n if (event_source === \'0\') {\r\n problem_url = \'{0}/tr_events.php?triggerid={1}&eventid={2}\'\r\n .format(\r\n zabbix_url,\r\n triggerid,\r\n eventid\r\n );\r\n }\r\n else {\r\n problem_url = zabbix_url;\r\n }\r\n\r\n return problem_url;\r\n}\r\n\r\nfunction handlerAlarm(params) {\r\n var fields = {\r\n channel: params.channel,\r\n as_user: params.slack_as_user,\r\n };\r\n\r\n if (isEventProblem(params)) {\r\n fields.attachments = [\r\n createMessage(\r\n SEVERITY_COLORS[params.event_nseverity] || 0,\r\n params.event_date,\r\n params.event_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)\r\n )\r\n ];\r\n\r\n var resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));\r\n\r\n if (req.getStatus() != 200 || !resp.ok || resp.ok === \'false\') {\r\n throw resp.error;\r\n }\r\n\r\n result.tags = {\r\n [\'__message_ts_\' + params.channel]: resp.ts,\r\n [\'__channel_id_\' + params.channel]: resp.channel,\r\n [\'__message_link_\' + params.channel]: getPermalink(resp.channel, resp.ts),\r\n };\r\n\r\n }\r\n else if (isEventUpdate(params)) {\r\n try {\r\n var channel_event_tags = JSON.parse(params.event_tags);\r\n } catch (error) {\r\n throw \'Cannot process event tags: \' + error;\r\n }\r\n\r\n if (Array.isArray(channel_event_tags)) {\r\n for (i in channel_event_tags) {\r\n if (channel_event_tags[i].tag.includes(\'__message_ts_\' + params.channel)) {\r\n fields.thread_ts = channel_event_tags[i].value;\r\n break;\r\n }\r\n }\r\n }\r\n\r\n fields.attachments = [\r\n createMessage(\r\n SEVERITY_COLORS[params.event_nseverity] || 0,\r\n params.event_update_date,\r\n params.event_update_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),\r\n true\r\n )\r\n ];\r\n\r\n resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));\r\n\r\n if (req.getStatus() != 200 || !resp.ok || resp.ok === \'false\') {\r\n throw resp.error;\r\n }\r\n\r\n }\r\n else if (isEventResolve(params)) {\r\n\r\n fields.text = \'\';\r\n\r\n try {\r\n var channel_event_tags = JSON.parse(params.event_tags);\r\n } catch (error) {\r\n throw \'Cannot process event tags: \' + error;\r\n }\r\n\r\n if (Array.isArray(channel_event_tags)) {\r\n for (i in channel_event_tags) {\r\n if (channel_event_tags[i].tag.includes(\'__channel_id_\' + params.channel)) {\r\n fields.channel = channel_event_tags[i].value;\r\n continue;\r\n }\r\n if (channel_event_tags[i].tag.includes(\'__message_ts_\' + params.channel)) {\r\n fields.ts = channel_event_tags[i].value;\r\n }\r\n }\r\n }\r\n\r\n fields.attachments = [\r\n createMessage(\r\n RESOLVE_COLOR,\r\n params.event_date,\r\n params.event_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)\r\n )\r\n ];\r\n\r\n resp = JSON.parse(req.post(Slack.chatUpdate, JSON.stringify(fields)));\r\n if (req.getStatus() != 200 || !resp.ok || resp.ok === \'false\') {\r\n throw resp.error;\r\n }\r\n }\r\n}\r\n\r\nfunction handlerEvent(params) {\r\n var fields = {\r\n channel: params.channel,\r\n as_user: params.slack_as_user\r\n };\r\n\r\n if (isEventProblem(params)) {\r\n fields.attachments = [\r\n createMessage(\r\n SEVERITY_COLORS[params.event_nseverity] || 0,\r\n params.event_date,\r\n params.event_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)\r\n )\r\n ];\r\n\r\n var resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));\r\n\r\n if (req.getStatus() != 200 || !resp.ok || resp.ok === \'false\') {\r\n throw resp.error;\r\n }\r\n\r\n result.tags = {\r\n [\'__message_link_\' + params.channel]: getPermalink(resp.channel, resp.ts)\r\n }\r\n\r\n }\r\n else if (isEventUpdate(params)) {\r\n fields.attachments = [\r\n createMessage(\r\n SEVERITY_COLORS[params.event_nseverity] || 0,\r\n params.event_update_date,\r\n params.event_update_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),\r\n false\r\n )\r\n ];\r\n\r\n resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));\r\n\r\n if (req.getStatus() != 200 || !resp.ok || resp.ok === \'false\') {\r\n throw resp.error;\r\n }\r\n\r\n }\r\n else if (isEventResolve(params)) {\r\n fields.attachments = [\r\n createMessage(\r\n RESOLVE_COLOR,\r\n params.event_recovery_date,\r\n params.event_recovery_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)\r\n )\r\n ];\r\n\r\n resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));\r\n\r\n if (req.getStatus() != 200 || !resp.ok || resp.ok === \'false\') {\r\n throw resp.error;\r\n }\r\n }\r\n}\r\n\r\nfunction createMessage(\r\n event_severity_color,\r\n event_date,\r\n event_time,\r\n problem_url,\r\n isShort,\r\n messageText\r\n) {\r\n var message = {\r\n fallback: params.alert_subject,\r\n title: params.alert_subject,\r\n color: event_severity_color,\r\n title_link: problem_url,\r\n pretext: messageText || \'\',\r\n\r\n fields: [\r\n {\r\n title: \'Host\',\r\n value: \'{0} [{1}]\'.format(params.host_name, params.host_conn),\r\n short: true\r\n },\r\n {\r\n title: \'Event time\',\r\n value: \'{0} {1}\'.format(event_date, event_time),\r\n short: true\r\n }\r\n ],\r\n };\r\n\r\n if (params.event_source === \'0\') {\r\n message.fields.push(\r\n {\r\n title: \'Severity\',\r\n value: params.event_severity,\r\n short: true\r\n },\r\n {\r\n title: \'Opdata\',\r\n value: params.event_opdata,\r\n short: true\r\n }\r\n );\r\n }\r\n\r\n if (!isShort && params.event_source === \'0\') {\r\n message[\'actions\'] = [\r\n {\r\n type: \'button\',\r\n text: \'Open in Zabbix\',\r\n url: problem_url\r\n }\r\n ];\r\n\r\n message.fields.push(\r\n {\r\n title: \'Event tags\',\r\n value: JSON.parse(params.event_tags).filter(function (e) { return !e.tag.includes(\'__\') }).map(function (e) { return e.tag + \': \' + e.value }).join(\'\\n\') || \'None\',\r\n short: true\r\n },\r\n {\r\n title: \'Trigger description\',\r\n value: params.trigger_description,\r\n short: true\r\n }\r\n );\r\n }\r\n\r\n if (params.event_source !== \'0\' || params.event_update_status === \'1\') {\r\n message.fields.push(\r\n {\r\n title: \'Details\',\r\n value: params.alert_message,\r\n short: false\r\n }\r\n );\r\n }\r\n\r\n return message;\r\n}\r\n\r\nfunction validateParams(params) {\r\n if (typeof params.bot_token !== \'string\' || params.bot_token.trim() === \'\') {\r\n throw \'Field "bot_token" cannot be empty\';\r\n }\r\n\r\n if (typeof params.channel !== \'string\' || params.channel.trim() === \'\') {\r\n throw \'Field "channel" cannot be empty\';\r\n }\r\n\r\n if (isNaN(params.event_id)) {\r\n throw \'Field "event_id" is not a number\';\r\n }\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: "\' + params.event_source + \'".\\nMust be 0-3.\';\r\n }\r\n\r\n if (params.event_source !== \'0\') {\r\n params.event_nseverity = \'0\';\r\n params.event_severity = \'Not classified\';\r\n params.event_update_status = \'0\';\r\n params.slack_mode = \'event\';\r\n }\r\n\r\n if (params.event_source === \'1\' || params.event_source === \'2\') {\r\n params.event_value = \'1\';\r\n }\r\n\r\n if (params.event_source === \'1\') {\r\n params.host_name = params.discovery_host_dns;\r\n params.host_ip = params.discovery_host_ip;\r\n }\r\n\r\n if (!~[0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity))) {\r\n throw \'Incorrect "event_nseverity" parameter given: \' + params.event_nseverity + \'\\nMust be 0-5.\';\r\n }\r\n\r\n if (typeof params.event_severity !== \'string\' || params.event_severity.trim() === \'\') {\r\n throw \'Field "event_severity" cannot be empty\';\r\n }\r\n\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\') {\r\n throw \'Incorrect "event_update_status" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\') {\r\n throw \'Incorrect "event_value" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (typeof params.host_conn !== \'string\' || params.host_conn.trim() === \'\') {\r\n throw \'Field "host_conn" cannot be empty\';\r\n }\r\n\r\n if (typeof params.host_name !== \'string\' || params.host_name.trim() === \'\') {\r\n throw \'Field "host_name" cannot be empty\';\r\n }\r\n\r\n if (!~[\'true\', \'false\'].indexOf(params.slack_as_user.toLowerCase())) {\r\n throw \'Incorrect "slack_as_user" parameter given: \' + params.slack_as_user + \'\\nMust be "true" or "false".\';\r\n }\r\n\r\n if (!~[\'alarm\', \'event\'].indexOf(params.slack_mode)) {\r\n throw \'Incorrect "slack_mode" parameter given: \' + params.slack_mode + \'\\nMust be "alarm" or "event".\';\r\n }\r\n\r\n if (isNaN(params.trigger_id) && params.event_source === \'0\') {\r\n throw \'field "trigger_id" is not a number\';\r\n }\r\n\r\n if (typeof params.zabbix_url !== \'string\' || params.zabbix_url.trim() === \'\') {\r\n throw \'Field "zabbix_url" cannot be empty\';\r\n }\r\n\r\n if (!/^(http|https):\\/\\/.+/.test(params.zabbix_url)) {\r\n throw \'Field "zabbix_url" must contain a schema\';\r\n }\r\n}\r\n\r\ntry {\r\n var params = JSON.parse(value);\r\n\r\n validateParams(params);\r\n\r\n var req = new HttpRequest(),\r\n result = {tags: {}};\r\n\r\n if (typeof params.HTTPProxy === \'string\' && params.HTTPProxy.trim() !== \'\') {\r\n req.setProxy(params.HTTPProxy);\r\n }\r\n\r\n req.addHeader(\'Content-Type: application/json; charset=utf-8\');\r\n req.addHeader(\'Authorization: Bearer \' + params.bot_token);\r\n\r\n var slack_endpoint = \'https://slack.com/api/\';\r\n\r\n var Slack = {\r\n postMessage: slack_endpoint + \'chat.postMessage\',\r\n getPermalink: slack_endpoint + \'chat.getPermalink\',\r\n chatUpdate: slack_endpoint + \'chat.update\'\r\n };\r\n\r\n params.slack_mode = params.slack_mode.toLowerCase();\r\n params.slack_mode = params.slack_mode in SLACK_MODE_HANDLERS\r\n ? params.slack_mode\r\n : \'alarm\';\r\n\r\n SLACK_MODE_HANDLERS[params.slack_mode](params);\r\n\r\n if (params.event_source === \'0\') {\r\n return JSON.stringify(result);\r\n }\r\n else {\r\n return \'OK\';\r\n }\r\n}\r\ncatch (error) {\r\n Zabbix.log(4, \'[ Slack Webhook ] Slack notification failed : \' + error);\r\n throw \'Slack notification failed : \' + error;\r\n}','30s','1','0','','','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('10','4','Discord','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','var SEVERITY_COLORS = [\r\n \'#97AAB3\', // Not classified.\r\n \'#7499FF\', // Information.\r\n \'#FFC859\', // Warning.\r\n \'#FFA059\', // Average.\r\n \'#E97659\', // High.\r\n \'#E45959\', // Disaster.\r\n \'#009900\' // Resolved.\r\n];\r\n\r\nfunction stringTruncate(str, len) {\r\n return str.length > len ? str.substring(0, len - 3) + \'...\' : str;\r\n}\r\n\r\ntry {\r\n Zabbix.log(4, \'[ Discord Webhook ] Executed with params: \' + value);\r\n\r\n var params = JSON.parse(value);\r\n\r\n if (!params.discord_endpoint) {\r\n throw \'Cannot get discord_endpoint\';\r\n }\r\n else {\r\n params.discord_endpoint = params.discord_endpoint.replace(\'/api/\', \'/api/v7/\') + \'?wait=True\';\r\n }\r\n\r\n params.zabbix_url = (params.zabbix_url.endsWith(\'/\'))\r\n ? params.zabbix_url.slice(0, -1) : params.zabbix_url;\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: "\' + params.event_source + \'".\\nMust be 0-3.\';\r\n }\r\n\r\n // Set params to true for non trigger-based events.\r\n if (params.event_source !== \'0\') {\r\n params.use_default_message = \'true\';\r\n params.event_nseverity = \'0\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect "event_value" parameter given: "\' + params.event_value + \'".\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect "event_update_status" parameter given: "\' + params.event_update_status + \'".\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_value == 0) {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n if (!SEVERITY_COLORS[params.event_nseverity]) {\r\n throw \'Incorrect "event_nseverity" parameter given: \' + params.event_nseverity + \'\\nMust be 0-5.\';\r\n }\r\n\r\n var color = parseInt(SEVERITY_COLORS[params.event_nseverity].replace(\'#\', \'\'), 16),\r\n fields = [],\r\n body = {\r\n embeds: [\r\n {\r\n color: color || 0,\r\n url: (params.event_source === \'0\')\r\n ? params.zabbix_url + \'/tr_events.php?triggerid=\' + params.trigger_id +\r\n \'&eventid=\' + params.event_id\r\n : params.zabbix_url\r\n }\r\n ]\r\n };\r\n\r\n // Default message from {ALERT.MESSAGE}.\r\n if (params.use_default_message.toLowerCase() == \'true\') {\r\n body.embeds[0].title = stringTruncate(params.alert_subject, 256);\r\n body.embeds[0].description = stringTruncate(params.alert_message, 2048);\r\n }\r\n else {\r\n fields.push(\r\n {\r\n name: \'Host\',\r\n value: params.host_name + \' [\' + params.host_ip + \']\'\r\n }\r\n );\r\n\r\n // Resolved message.\r\n if (params.event_value == 0 && params.event_update_status == 0) {\r\n body.embeds[0].title = stringTruncate(\'OK: \' + params.event_name, 256);\r\n fields.push(\r\n {\r\n name: \'Recovery time\',\r\n value: params.event_recovery_time + \' \' + params.event_recovery_date,\r\n inline: \'True\'\r\n }\r\n );\r\n }\r\n\r\n // Problem message.\r\n else if (params.event_value == 1 && params.event_update_status == 0) {\r\n body.embeds[0].title = stringTruncate(\'PROBLEM: \' + params.event_name, 256);\r\n fields.push(\r\n {\r\n name: \'Event time\',\r\n value: params.event_time + \' \' + params.event_date,\r\n inline: \'True\'\r\n }\r\n );\r\n }\r\n\r\n // Update message.\r\n else if (params.event_update_status == 1) {\r\n body.embeds[0].title = stringTruncate(\'UPDATE: \' + params.event_name, 256);\r\n body.embeds[0].description = params.event_update_user + \' \' + params.event_update_action + \'.\';\r\n\r\n if (params.event_update_message) {\r\n body.embeds[0].description += \' Comment:\\n>>> \' + params.event_update_message;\r\n }\r\n\r\n body.embeds[0].description = stringTruncate(body.embeds[0].description, 2048);\r\n\r\n fields.push(\r\n {\r\n name: \'Event update time\',\r\n value: params.event_update_time + \' \' + params.event_update_date,\r\n inline: \'True\'\r\n }\r\n );\r\n }\r\n\r\n fields.push(\r\n {\r\n name: \'Severity\',\r\n value: params.event_severity,\r\n inline: \'True\'\r\n }\r\n );\r\n\r\n if (params.event_opdata) {\r\n fields.push(\r\n {\r\n name: \'Operational data\',\r\n value: stringTruncate(params.event_opdata, 1024),\r\n inline: \'True\'\r\n }\r\n );\r\n }\r\n\r\n if (params.event_value == 1 && params.event_update_status == 0 && params.trigger_description) {\r\n fields.push(\r\n {\r\n name: \'Trigger description\',\r\n value: stringTruncate(params.trigger_description, 1024)\r\n }\r\n );\r\n }\r\n\r\n body.embeds[0].footer = {\r\n text: \'Event ID: \' + params.event_id\r\n };\r\n\r\n if (params.event_tags) {\r\n body.embeds[0].footer.text += \'\\nEvent tags: \' + params.event_tags;\r\n }\r\n body.embeds[0].footer.text = stringTruncate(body.embeds[0].footer.text, 2048);\r\n }\r\n\r\n if (fields.length > 0) {\r\n body.embeds[0].fields = fields;\r\n }\r\n\r\n var req = new HttpRequest();\r\n\r\n if (typeof params.HTTPProxy === \'string\' && params.HTTPProxy.trim() !== \'\') {\r\n req.setProxy(params.HTTPProxy);\r\n }\r\n\r\n req.addHeader(\'Content-Type: application/json\');\r\n\r\n var resp = req.post(params.discord_endpoint, JSON.stringify(body)),\r\n data = JSON.parse(resp);\r\n\r\n Zabbix.log(4, \'[ Discord Webhook ] JSON: \' + JSON.stringify(body));\r\n Zabbix.log(4, \'[ Discord Webhook ] Response: \' + resp);\r\n\r\n if (data.id) {\r\n return resp;\r\n }\r\n else {\r\n var message = ((typeof data.message === \'string\') ? data.message : \'Unknown error\');\r\n\r\n Zabbix.log(3, \'[ Discord Webhook ] FAILED with response: \' + resp);\r\n throw message + \'. For more details check zabbix server log.\';\r\n }\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ Discord Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s','0','0','','','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('11','4','SIGNL4','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','// SIGNL4 Webhook\r\ntry {\r\n var response,\r\n payload,\r\n params = JSON.parse(value),\r\n endpoint = \'https://connect.signl4.com/webhook/\',\r\n request = new HttpRequest();\r\n\r\n if (typeof params.HTTPProxy === \'string\' && params.HTTPProxy.trim() !== \'\') {\r\n request.setProxy(params.HTTPProxy);\r\n }\r\n\r\n if (typeof params.teamsecret === \'string\' && params.teamsecret.trim() !== \'\') {\r\n endpoint += params.teamsecret;\r\n delete params.teamsecret;\r\n }\r\n else {\r\n throw \'The team secret of your SIGNL4 team cannot be empty.\';\r\n }\r\n\r\n if (typeof params.Severity === \'string\' && params.Severity === \'{EVENT.SEVERITY}\') {\r\n params.Severity = \'Not classified\';\r\n }\r\n\r\nif (typeof params.User === \'string\' && params.User === \'{USER.FULLNAME}\') {\r\n params.User = \'\';\r\n }\r\n\r\nif (typeof params.Event_Update_Action === \'string\' && params.Event_Update_Action === \'{EVENT.UPDATE.ACTION}\') {\r\n params.Event_Update_Action = \'\';\r\n }\r\n\r\n// Assemble X-S4-ExternalID for two-way integration\r\n// Format: "ZabbixEventID: 222 ZabbixURL: https://your-zabbix-server/zabbix/"\r\nparams[\'X-S4-ExternalID\'] = \'ZabbixEventID: \' + params.Event_ID;\r\nif (typeof params.Zabbix_URL === \'string\' && params.Zabbix_URL.indexOf(\'http\') == 0) {\r\n// Make sure the URL ends with \'/\'\r\nif (params.Zabbix_URL.charAt(params.Zabbix_URL.length - 1) != \'/\') {\r\nparams.Zabbix_URL = params.Zabbix_URL + \'/\';\r\n}\r\n\r\nparams[\'X-S4-ExternalID\'] = params[\'X-S4-ExternalID\'] + \' ZabbixURL: \' + params.Zabbix_URL;\r\n\r\n// Add Link parameter\r\nparams[\'Link\'] = params.Zabbix_URL + "tr_events.php?triggerid="+params.Trigger_ID + "&eventid=" + params.Event_ID;\r\n}\r\n\r\n// Check if this is a new problem or a recovery\r\nif (params.Trigger_Status == \'OK\') {\r\nparams[\'X-S4-Status\'] = \'resolved\';\r\n}\r\nelse {\r\nparams[\'X-S4-Status\'] = \'new\';\r\n}\r\n\r\n payload = JSON.stringify(params);\r\n Zabbix.log(4, \'[ SIGNL4 Webhook ] Sending request: \' + payload);\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n response = request.post(endpoint, \'payload=\' + payload);\r\n\r\n Zabbix.log(4, \'[ SIGNL4 Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response\r\n );\r\n\r\n if (request.getStatus() !== 201) {\r\n throw \'Request failed with status code \' + request.getStatus() +\r\n \'. Check debug log for more information.\';\r\n }\r\n\r\n return \'OK\';\r\n}\r\ncatch (error) {\r\n Zabbix.log(4, \'[ SIGNL4 Webhook ] ERROR: \' + error);\r\n\r\n throw \'Sending failed: \' + error;\r\n}','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.\r\n\r\nGet the app at https://www.signl4.com.\r\n\r\nFind out more including an integration video here: https://www.signl4.com/blog/portfolio_item/zabbix-mobile-alert-notification-duty-schedule-escalation/');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('12','4','Jira','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','var Jira = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n Jira.params = params;\r\n if (typeof Jira.params.url === \'string\') {\r\n if (!Jira.params.url.endsWith(\'/\')) {\r\n Jira.params.url += \'/\';\r\n }\r\n\r\n Jira.params.url += \'rest/api/latest/\';\r\n }\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n Jira.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n setTags: function(event_tags_json) {\r\n if (typeof event_tags_json !== \'undefined\' && event_tags_json !== \'\'\r\n && event_tags_json !== \'{EVENT.TAGSJSON}\') {\r\n try {\r\n var tags = JSON.parse(event_tags_json),\r\n label;\r\n\r\n Jira.labels = [];\r\n\r\n tags.forEach(function (tag) {\r\n if (typeof tag.tag !== \'undefined\' && typeof tag.value !== \'undefined\'\r\n && !tag.tag.startsWith(\'__zbx\')) {\r\n label = (tag.tag + (tag.value ? (\':\' + tag.value) : \'\')).replace(/\\s/g, \'_\');\r\n if (label.length < 256) {\r\n Jira.labels.push(label);\r\n }\r\n }\r\n });\r\n }\r\n catch (error) {\r\n // Code is not missing here.\r\n }\r\n }\r\n },\r\n\r\n escapeMarkup: function (str) {\r\n var length = str.length,\r\n result = \'\',\r\n markup = [\'{\', \'|\', \'}\', \'~\', \'_\', \'\\\\\', \'[\', \']\', \'^\', \'<\', \'>\', \'?\', \'!\', \'#\', \'+\', \'*\', \'&\'];\r\n\r\n for (var i = 0; i < length; i++) {\r\n var char = str[i];\r\n\r\n result += (markup.indexOf(char) !== -1) ? (\'\' + str[i].charCodeAt() + \';\') : char;\r\n }\r\n\r\n return result;\r\n },\r\n\r\n addCustomFields: function (data, fields) {\r\n if (typeof fields === \'object\' && Object.keys(fields).length) {\r\n var schema = Jira.getSchema(),\r\n path = [\'projects\', 0, \'issuetypes\', 0, \'fields\'],\r\n field;\r\n\r\n while ((field = path.shift()) !== undefined) {\r\n schema = schema[field];\r\n if (typeof schema === \'undefined\') {\r\n schema = null;\r\n break;\r\n }\r\n }\r\n\r\n if (schema) {\r\n Object.keys(fields)\r\n .forEach(function(field) {\r\n if (typeof schema[field] === \'object\' && typeof schema[field].schema === \'object\') {\r\n switch (schema[field].schema.type) {\r\n case \'number\':\r\n data.fields[field] = parseInt(fields[field]);\r\n break;\r\n\r\n case \'datetime\':\r\n if (fields[field].match(/\\d+[.-]\\d+[.-]\\d+T\\d+:\\d+:\\d+/) !== null) {\r\n data.fields[field] = fields[field].replace(/\\./g, \'-\');\r\n }\r\n break;\r\n\r\n case \'option\':\r\n data.fields[field] = {value: fields[field]};\r\n break;\r\n\r\n case \'array\':\r\n if (schema[field].schema.items === \'option\') {\r\n data.fields[field] = [{value: fields[field]}];\r\n }\r\n else {\r\n data.fields[field] = [fields[field]];\r\n }\r\n break;\r\n\r\n default:\r\n data.fields[field] = fields[field];\r\n }\r\n }\r\n });\r\n }\r\n else {\r\n Zabbix.log(4, \'[ Jira Webhook ] Failed to retrieve field schema.\');\r\n }\r\n }\r\n\r\n return data;\r\n },\r\n\r\n request: function (method, query, data) {\r\n [\'url\', \'user\', \'password\', \'project_key\', \'issue_type\'].forEach(function (field) {\r\n if (typeof Jira.params !== \'object\' || typeof Jira.params[field] === \'undefined\'\r\n || Jira.params[field] === \'\' ) {\r\n throw \'Required Jira param is not set: "\' + field + \'".\';\r\n }\r\n });\r\n\r\n var response,\r\n url = Jira.params.url + query,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Authorization: Basic \' + btoa(Jira.params.user + \':\' + Jira.params.password));\r\n\r\n if (typeof Jira.HTTPProxy !== \'undefined\' && Jira.HTTPProxy !== \'\') {\r\n request.setProxy(Jira.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ Jira Webhook ] Sending request: \' + url + ((typeof data === \'string\') ? (\'\\n\' + data) : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ Jira Webhook ] Received response with status code \' + request.getStatus() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ Jira Webhook ] Failed to parse response received from Jira\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response !== null && typeof response.errors !== \'undefined\'\r\n && Object.keys(response.errors).length > 0) {\r\n message += \': \' + JSON.stringify(response.errors);\r\n }\r\n else if (response !== null && typeof response.errorMessages !== \'undefined\'\r\n && Object.keys(response.errorMessages).length > 0) {\r\n message += \': \' + JSON.stringify(response.errorMessages);\r\n }\r\n\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n getSchema: function() {\r\n var result = Jira.request(\'get\', \'issue/createmeta?expand=projects.issuetypes.fields&projectKeys=\' +\r\n encodeURIComponent(Jira.params.project_key) + \'&issuetypeNames=\' +\r\n encodeURIComponent(Jira.params.issue_type));\r\n\r\n return result.response;\r\n },\r\n\r\n createIssue: function(summary, description, fields) {\r\n var data = {\r\n fields: {\r\n project: {\r\n key: Jira.params.project_key\r\n },\r\n issuetype: {\r\n name: Jira.params.issue_type\r\n },\r\n summary: summary,\r\n description: description\r\n }\r\n };\r\n\r\n if (Jira.labels && Jira.labels.length > 0) {\r\n data.fields.labels = Jira.labels;\r\n }\r\n var result = Jira.request(\'post\', \'issue\', Jira.addCustomFields(data, fields));\r\n\r\n if (typeof result.response !== \'object\' || typeof result.response.key === \'undefined\') {\r\n throw \'Cannot create Jira issue. Check debug log for more information.\';\r\n }\r\n\r\n return result.response.key;\r\n },\r\n\r\n updateIssue: function(summary, fields, update) {\r\n var data = {fields: {}};\r\n\r\n if (summary) {\r\n data.fields.summary = summary;\r\n }\r\n\r\n Jira.request(\'put\', \'issue/\' + encodeURIComponent(Jira.params.issue_key), Jira.addCustomFields(data, fields));\r\n Jira.commentIssue(update);\r\n },\r\n\r\n commentIssue: function(update) {\r\n var data = {};\r\n\r\n if (typeof update === \'string\') {\r\n data.body = update;\r\n Jira.request(\'post\', \'issue/\' + encodeURIComponent(Jira.params.issue_key) + \'/comment\', data);\r\n }\r\n else if (update.status === \'1\') {\r\n data.body = update.user + \' \' + update.action + \'.\';\r\n\r\n if (update.message) {\r\n data.body += \'\\nMessage: {quote}\' + Jira.escapeMarkup(update.message) + \'{quote}\';\r\n }\r\n\r\n Jira.request(\'post\', \'issue/\' + encodeURIComponent(Jira.params.issue_key) + \'/comment\', data);\r\n }\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n fields = {},\r\n jira = {},\r\n update = {},\r\n result = {tags: {}},\r\n required_params = [\'alert_subject\', \'summary\', \'event_recovery_value\', \'event_source\', \'event_value\'];\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'jira_\')) {\r\n jira[key.substring(5)] = params[key];\r\n }\r\n else if (key.startsWith(\'customfield_\')) {\r\n fields[key] = params[key];\r\n }\r\n else if (key.startsWith(\'event_update_\')) {\r\n update[key.substring(13)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key] === \'\') {\r\n throw \'Parameter "\' + key + \'" can\\\'t be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect "event_value" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect "event_update_status" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_recovery_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n Jira.setParams(jira);\r\n Jira.setProxy(params.HTTPProxy);\r\n Jira.setTags(params.event_tags_json);\r\n\r\n // Create issue for non trigger-based events.\r\n if (params.event_source !== \'0\' && params.event_recovery_value !== \'0\') {\r\n Jira.createIssue(params.alert_subject, params.alert_message);\r\n }\r\n // Create issue for trigger-based events.\r\n else if (params.event_value === \'1\' && update.status === \'0\' && !jira.issue_key.startsWith(jira.project_key)) {\r\n var key = Jira.createIssue(params.alert_subject,\r\n (Object.keys(fields).length ? params.trigger_description : params.alert_message), fields);\r\n\r\n\r\n result.tags.__zbx_jira_issuekey = key;\r\n result.tags.__zbx_jira_issuelink = params.jira_url +\r\n (params.jira_url.endsWith(\'/\') ? \'\' : \'/\') + \'browse/\' + key;\r\n }\r\n // Update created issue for trigger-based event.\r\n else {\r\n if (!jira.issue_key.startsWith(jira.project_key)) {\r\n throw \'Incorrect Issue key given: \' + jira.issue_key;\r\n }\r\n Jira.updateIssue(params.alert_subject, fields,\r\n ((params.event_value === \'0\' && !Object.keys(fields).length)\r\n ? params.alert_message : update));\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ Jira Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s','1','1','{EVENT.TAGS.__zbx_jira_issuelink}','Jira: {EVENT.TAGS.__zbx_jira_issuekey}','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('13','4','Jira with CustomFields','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','var Jira = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n Jira.params = params;\r\n if (typeof Jira.params.url === \'string\') {\r\n if (!Jira.params.url.endsWith(\'/\')) {\r\n Jira.params.url += \'/\';\r\n }\r\n\r\n Jira.params.url += \'rest/api/latest/\';\r\n }\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n Jira.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n setTags: function(event_tags_json) {\r\n if (typeof event_tags_json !== \'undefined\' && event_tags_json !== \'\'\r\n && event_tags_json !== \'{EVENT.TAGSJSON}\') {\r\n try {\r\n var tags = JSON.parse(event_tags_json),\r\n label;\r\n\r\n Jira.labels = [];\r\n\r\n tags.forEach(function (tag) {\r\n if (typeof tag.tag !== \'undefined\' && typeof tag.value !== \'undefined\' ) {\r\n label = (tag.tag + (tag.value ? (\':\' + tag.value) : \'\')).replace(/\\s/g, \'_\');\r\n if (label.length < 256) {\r\n Jira.labels.push(label);\r\n }\r\n }\r\n });\r\n }\r\n catch (error) {\r\n // Code is not missing here.\r\n }\r\n }\r\n },\r\n\r\n escapeMarkup: function (str) {\r\n var length = str.length,\r\n result = \'\',\r\n markup = [\'{\', \'|\', \'}\', \'~\', \'_\', \'\\\\\', \'[\', \']\', \'^\', \'<\', \'>\', \'?\', \'!\', \'#\', \'+\', \'*\', \'&\'];\r\n\r\n for (var i = 0; i < length; i++) {\r\n var char = str[i];\r\n\r\n result += (markup.indexOf(char) !== -1) ? (\'\' + str[i].charCodeAt() + \';\') : char;\r\n }\r\n\r\n return result;\r\n },\r\n\r\n addCustomFields: function (data, fields) {\r\n if (typeof fields === \'object\' && Object.keys(fields).length) {\r\n var schema = Jira.getSchema(),\r\n path = [\'projects\', 0, \'issuetypes\', 0, \'fields\'],\r\n field;\r\n\r\n while ((field = path.shift()) !== undefined) {\r\n schema = schema[field];\r\n if (typeof schema === \'undefined\') {\r\n schema = null;\r\n break;\r\n }\r\n }\r\n\r\n if (schema) {\r\n Object.keys(fields)\r\n .forEach(function(field) {\r\n data.fields[field] = fields[field];\r\n\r\n if (typeof schema[field] === \'object\' && typeof schema[field].schema === \'object\'\r\n && (schema[field].schema.type === \'number\' || schema[field].schema.type === \'datetime\')) {\r\n switch (schema[field].schema.type) {\r\n case \'number\':\r\n data.fields[field] = parseInt(fields[field]);\r\n break;\r\n\r\n case \'datetime\':\r\n if (fields[field].match(/\\d+[.-]\\d+[.-]\\d+T\\d+:\\d+:\\d+/) !== null) {\r\n data.fields[field] = fields[field].replace(/\\./g, \'-\');\r\n }\r\n else {\r\n delete data.fields[field];\r\n }\r\n break;\r\n }\r\n }\r\n });\r\n }\r\n else {\r\n Zabbix.Log(4, \'[ Jira Webhook ] Failed to retrieve field schema.\');\r\n }\r\n }\r\n\r\n return data;\r\n },\r\n\r\n request: function (method, query, data) {\r\n [\'url\', \'user\', \'password\', \'project_key\', \'issue_type\'].forEach(function (field) {\r\n if (typeof Jira.params !== \'object\' || typeof Jira.params[field] === \'undefined\'\r\n || Jira.params[field] === \'\' ) {\r\n throw \'Required Jira param is not set: "\' + field + \'".\';\r\n }\r\n });\r\n\r\n var response,\r\n url = Jira.params.url + query,\r\n request = new CurlHttpRequest();\r\n\r\n request.AddHeader(\'Content-Type: application/json\');\r\n request.AddHeader(\'Authorization: Basic \' + btoa(Jira.params.user + \':\' + Jira.params.password));\r\n\r\n if (typeof Jira.HTTPProxy !== \'undefined\' && Jira.HTTPProxy !== \'\') {\r\n request.SetProxy(Jira.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.Log(4, \'[ Jira Webhook ] Sending request: \' + url + ((typeof data === \'string\') ? (\'\\n\' + data) : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.Get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.Post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.Put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.Log(4, \'[ Jira Webhook ] Received response with status code \' + request.Status() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.Log(4, \'[ Jira Webhook ] Failed to parse response received from Jira\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (request.Status() < 200 || request.Status() >= 300) {\r\n var message = \'Request failed with status code \' + request.Status();\r\n\r\n if (response !== null && typeof response.errors !== \'undefined\'\r\n && Object.keys(response.errors).length > 0) {\r\n message += \': \' + JSON.stringify(response.errors);\r\n }\r\n else if (response !== null && typeof response.errorMessages !== \'undefined\'\r\n && Object.keys(response.errorMessages).length > 0) {\r\n message += \': \' + JSON.stringify(response.errorMessages);\r\n }\r\n\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n return {\r\n status: request.Status(),\r\n response: response\r\n };\r\n },\r\n\r\n getSchema: function() {\r\n var result = Jira.request(\'get\', \'issue/createmeta?expand=projects.issuetypes.fields&projectKeys=\' +\r\n Jira.params.project_key + \'&issuetypeNames=\' + Jira.params.issue_type);\r\n\r\n return result.response;\r\n },\r\n\r\n createIssue: function(summary, description, fields) {\r\n var data = {\r\n fields: {\r\n project: {\r\n key: Jira.params.project_key\r\n },\r\n issuetype: {\r\n name: Jira.params.issue_type\r\n },\r\n summary: summary,\r\n description: description\r\n }\r\n };\r\n\r\n if (Jira.labels && Jira.labels.length > 0) {\r\n data.fields.labels = Jira.labels;\r\n }\r\n var result = Jira.request(\'post\', \'issue\', Jira.addCustomFields(data, fields));\r\n\r\n if (typeof result.response !== \'object\' || typeof result.response.key === \'undefined\') {\r\n throw \'Cannot create Jira issue. Check debug log for more information.\';\r\n }\r\n\r\n return result.response.key;\r\n },\r\n\r\n updateIssue: function(summary, fields, update) {\r\n var data = {fields: {}};\r\n\r\n if (summary) {\r\n data.fields.summary = summary;\r\n }\r\n\r\n Jira.request(\'put\', \'issue/\' + Jira.params.issue_key, Jira.addCustomFields(data, fields));\r\n Jira.commentIssue(update);\r\n },\r\n\r\n commentIssue: function(update) {\r\n var data = {};\r\n\r\n if (typeof update === \'string\') {\r\n data.body = update;\r\n Jira.request(\'post\', \'issue/\' + Jira.params.issue_key + \'/comment\', data);\r\n }\r\n else if (update.status === \'1\') {\r\n data.body = update.user + \' \' + update.action + \'.\';\r\n\r\n if (update.message) {\r\n data.body += \'\\nMessage: {quote}\' + Jira.escapeMarkup(update.message) + \'{quote}\';\r\n }\r\n\r\n Jira.request(\'post\', \'issue/\' + Jira.params.issue_key + \'/comment\', data);\r\n }\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n fields = {},\r\n jira = {},\r\n update = {},\r\n result = {tags: {}},\r\n required_params = [\'alert_subject\', \'summary\', \'event_recovery_value\', \'event_source\', \'event_value\'];\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'jira_\')) {\r\n jira[key.substring(5)] = params[key];\r\n }\r\n else if (key.startsWith(\'customfield_\')) {\r\n fields[key] = params[key];\r\n }\r\n else if (key.startsWith(\'event_update_\')) {\r\n update[key.substring(13)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key] === \'\') {\r\n throw \'Parameter "\' + key + \'" can\\\'t be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect "event_value" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect "event_update_status" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_recovery_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n Jira.setParams(jira);\r\n Jira.setProxy(params.HTTPProxy);\r\n Jira.setTags(params.event_tags_json);\r\n\r\n // Create issue for non trigger-based events.\r\n if (params.event_source !== \'0\' && params.event_recovery_value !== \'0\') {\r\n Jira.createIssue(params.alert_subject, params.alert_message);\r\n }\r\n // Create issue for trigger-based events.\r\n else if (params.event_value === \'1\' && update.status === \'0\' && !jira.issue_key.startsWith(jira.project_key)) {\r\n var key = Jira.createIssue(params.alert_subject,\r\n (Object.keys(fields).length ? params.trigger_description : params.alert_message), fields);\r\n\r\n\r\n result.tags.__zbx_jira_issuekey = key;\r\n result.tags.__zbx_jira_issuelink = params.jira_url +\r\n (params.jira_url.endsWith(\'/\') ? \'\' : \'/\') + \'browse/\' + key;\r\n }\r\n // Update created issue for trigger-based event.\r\n else {\r\n if (!jira.issue_key.startsWith(jira.project_key)) {\r\n throw \'Incorrect Issue key given: \' + jira.issue_key;\r\n }\r\n Jira.updateIssue(params.alert_subject, fields,\r\n ((params.event_value === \'0\' && !Object.keys(fields).length)\r\n ? params.alert_message : update));\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.Log(3, \'[ Jira Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s','1','1','{EVENT.TAGS.__zbx_jira_issuelink}','Jira: {EVENT.TAGS.__zbx_jira_issuekey}','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('14','4','MS Teams','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','var SEVERITY_COLORS = [\r\n \'#97AAB3\', // Not classified.\r\n \'#7499FF\', // Information.\r\n \'#FFC859\', // Warning.\r\n \'#FFA059\', // Average.\r\n \'#E97659\', // High.\r\n \'#E45959\', // Disaster.\r\n \'#009900\', // Resolved.\r\n \'#000000\' // Default.\r\n];\r\n\r\ntry {\r\n var params = JSON.parse(value);\r\n\r\n if (typeof params.teams_endpoint !== \'string\' || params.teams_endpoint.trim() === \'\') {\r\n throw \'Cannot get teams_endpoint\';\r\n }\r\n else if (!params.teams_endpoint.startsWith(\'http\')) {\r\n throw \'Invalid MS Teams webhook URL: \' + params.teams_endpoint;\r\n }\r\n\r\n params.zabbix_url = (params.zabbix_url.endsWith(\'/\'))\r\n ? params.zabbix_url.slice(0, -1) : params.zabbix_url;\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: "\' + params.event_source + \'".\\nMust be 0-3.\';\r\n }\r\n\r\n // Set "use_default_message" to true for non trigger-based events.\r\n if (params.event_source !== \'0\') {\r\n params.use_default_message = \'true\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect "event_value" parameter given: "\' + params.event_value + \'".\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect "event_update_status" parameter given: "\' + params.event_update_status + \'".\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_value == 0) {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n if (!SEVERITY_COLORS[params.event_nseverity]) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n var request = new HttpRequest(),\r\n facts = [],\r\n body = {\r\n themeColor: SEVERITY_COLORS[params.event_nseverity].replace(\'#\', \'\'),\r\n summary: params.alert_subject,\r\n sections: [\r\n {\r\n markdown: \'false\',\r\n activityTitle: params.alert_subject,\r\n activitySubtitle: \'On \' + params.host_name + \' [\' + params.host_ip + \']\',\r\n text: (params.use_default_message.toLowerCase() == \'true\')\r\n ? params.alert_message\r\n : params.trigger_description\r\n }\r\n ],\r\n potentialAction: [\r\n {\r\n \'@type\': \'OpenUri\',\r\n name: (params.event_source === \'0\')\r\n ? \'Event Info\'\r\n : \'Zabbix Home\',\r\n targets: [\r\n {\r\n os: \'default\',\r\n uri: (params.event_source === \'0\')\r\n ? params.zabbix_url + \'/tr_events.php?triggerid=\' +\r\n params.trigger_id + \'&eventid=\' + params.event_id\r\n : params.zabbix_url\r\n }\r\n ]\r\n }\r\n ]\r\n };\r\n\r\n if (params.use_default_message.toLowerCase() !== \'true\') {\r\n // Problem message.\r\n if (params.event_value === \'1\' && params.event_update_status === \'0\') {\r\n facts.push({\r\n name: \'Event time\',\r\n value: params.event_time + \' \' + params.event_date\r\n });\r\n }\r\n // Update message.\r\n else if (params.event_update_status === \'1\') {\r\n body.sections[0].text = params.event_update_user + \' \' + params.event_update_action + \'.\';\r\n\r\n if (params.event_update_message) {\r\n body.sections[0].text += \'
Message:
\' + params.event_update_message;\r\n }\r\n\r\n facts.push({\r\n name: \'Event update time\',\r\n value: params.event_update_time + \' \' + params.event_update_date\r\n });\r\n }\r\n // Resolved message.\r\n else {\r\n facts.push({\r\n name: \'Recovery time\',\r\n value: params.event_recovery_time + \' \' + params.event_recovery_date\r\n });\r\n }\r\n\r\n if (params.event_severity && params.event_severity !== \'{EVENT.SEVERITY}\') {\r\n facts.push({\r\n name: \'Severity\',\r\n value: params.event_severity\r\n });\r\n }\r\n\r\n\r\n if (params.event_opdata && params.event_opdata !== \'{EVENT.OPDATA}\') {\r\n facts.push({\r\n name: \'Operational data\',\r\n value: params.event_opdata\r\n });\r\n }\r\n\r\n if (params.event_tags && params.event_tags !== \'{EVENT.TAGS}\') {\r\n facts.push({\r\n name: \'Event tags\',\r\n value: params.event_tags\r\n });\r\n }\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'fact_\') && params[key] !== \'\') {\r\n facts.push({\r\n name: key.substring(5),\r\n value: params[key]\r\n });\r\n }\r\n else if (key.startsWith(\'openUri_\') && params[key] !== \'\' && !params[key].startsWith(\'{\')) {\r\n body.potentialAction.push({\r\n \'@type\': \'OpenUri\',\r\n name: key.substring(8),\r\n targets: [\r\n {\r\n os: \'default\',\r\n uri: params[key]\r\n }\r\n ]\r\n });\r\n }\r\n });\r\n body.sections[0].facts = facts;\r\n }\r\n\r\n body.sections[0].text = body.sections[0].text.replace(/(?:\\r\\n|\\r|\\n)/g, \'
\');\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n\r\n if (typeof params.HTTPProxy === \'string\' && params.HTTPProxy !== \'\') {\r\n request.setProxy(params.HTTPProxy);\r\n }\r\n\r\n Zabbix.log(4, \'[ MS Teams Webhook ] JSON: \' + JSON.stringify(body));\r\n\r\n var response = request.post(params.teams_endpoint, JSON.stringify(body));\r\n\r\n Zabbix.log(4, \'[ MS Teams Webhook ] Response: \' + response);\r\n\r\n if (response === \'1\') {\r\n return \'OK\';\r\n }\r\n else {\r\n Zabbix.log(4, \'[ MS Teams Webhook ] FAILED with response: \' + response);\r\n throw response;\r\n }\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ MS Teams Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s','0','0','','','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('15','4','Redmine','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','var Redmine = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n Redmine.params = params;\r\n if (typeof Redmine.params.url === \'string\') {\r\n if (!Redmine.params.url.endsWith(\'/\')) {\r\n Redmine.params.url += \'/\';\r\n }\r\n }\r\n },\r\n\r\n addCustomFields: function (data, fields) {\r\n if (typeof fields === \'object\' && Object.keys(fields).length) {\r\n\r\n data.issue.custom_fields = [];\r\n Object.keys(fields)\r\n .forEach(function (field) {\r\n var field_value = fields[field];\r\n\r\n if (field_value !== undefined) {\r\n data.issue.custom_fields.push({ id: field, value: field_value });\r\n }\r\n });\r\n\r\n }\r\n return data;\r\n },\r\n\r\n request: function (method, query, data) {\r\n [\'url\', \'access_key\'].forEach(function (field) {\r\n if (typeof Redmine.params !== \'object\' || typeof Redmine.params[field] === \'undefined\'\r\n || Redmine.params[field] === \'\' ) {\r\n throw \'Required param is not set: "\' + field + \'".\';\r\n }\r\n });\r\n\r\n var response,\r\n url = Redmine.params.url + query,\r\n request = new HttpRequest();\r\n\r\n if (typeof Redmine.HTTPProxy === \'string\' && Redmine.HTTPProxy.trim() !== \'\') {\r\n request.setProxy(Redmine.HTTPProxy);\r\n }\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'X-Redmine-API-Key: \' + Redmine.params.access_key);\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ Redmine Webhook ] Sending request: \' +\r\n url + ((typeof data === \'string\') ? (\' \' + data) : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ Redmine Webhook ] Received response with status code \' + request.getStatus() + \': \' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ Redmine Webhook ] Failed to parse response received from Redmine\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response !== null && typeof response.errors !== \'undefined\'\r\n && Object.keys(response.errors).length > 0) {\r\n message += \': \' + JSON.stringify(response.errors);\r\n }\r\n else if (response !== null && typeof response.errorMessages !== \'undefined\'\r\n && Object.keys(response.errorMessages).length > 0) {\r\n message += \': \' + JSON.stringify(response.errorMessages);\r\n }\r\n\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n getProjectID: function(name) {\r\n var result = Redmine.request(\'get\', \'projects.json\'),\r\n project_id;\r\n\r\n if (result.response) {\r\n var projects = result.response.projects || [];\r\n\r\n for (var i in projects) {\r\n if (projects[i].name === name) {\r\n project_id = projects[i].id;\r\n break;\r\n }\r\n }\r\n }\r\n else {\r\n Zabbix.log(4, \'[ Redmine Webhook ] Failed to retrieve project data.\');\r\n }\r\n\r\n if (typeof project_id === \'undefined\') {\r\n throw \'Cannot find project with name: \' + name;\r\n }\r\n\r\n return project_id;\r\n },\r\n\r\n createIssue: function(subject, description, priority, fields) {\r\n var project_id = /^\\d+$/.test(Redmine.params.project)\r\n ? Redmine.params.project\r\n : Redmine.getProjectID(Redmine.params.project),\r\n data = {\r\n issue: {\r\n project_id: project_id,\r\n tracker_id: Redmine.params.tracker_id,\r\n subject: subject,\r\n description: description\r\n }\r\n },\r\n result;\r\n\r\n if (priority) {\r\n data.issue.priority_id = priority;\r\n }\r\n\r\n result = Redmine.request(\'post\', \'issues.json\', Redmine.addCustomFields(data, fields));\r\n\r\n if (typeof result.response !== \'object\'\r\n || typeof result.response.issue.id === \'undefined\'\r\n || result.status != 201) {\r\n throw \'Cannot create Redmine issue. Check debug log for more information.\';\r\n }\r\n\r\n return result.response.issue.id;\r\n },\r\n\r\n updateIssue: function (note, fields, status) {\r\n var data = {\r\n issue: {\r\n notes: note || \'\'\r\n }\r\n };\r\n\r\n if (status) {\r\n data.issue.status_id = status;\r\n }\r\n\r\n Redmine.request(\'put\', \'issues/\' + Redmine.params.issue_key + \'.json\', Redmine.addCustomFields(data, fields));\r\n }\r\n\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n params_redmine = {},\r\n params_fields = {},\r\n params_update = {},\r\n result = {tags: {}},\r\n required_params = [\r\n \'alert_subject\', \'tracker_id\', \'project\',\r\n \'event_source\', \'event_value\', \'event_update_status\'\r\n ],\r\n severities = [\r\n {name: \'not_classified\', color: \'#97AAB3\'},\r\n {name: \'information\', color: \'#7499FF\'},\r\n {name: \'warning\', color: \'#FFC859\'},\r\n {name: \'average\', color: \'#FFA059\'},\r\n {name: \'high\', color: \'#E97659\'},\r\n {name: \'disaster\', color: \'#E45959\'},\r\n {name: \'resolved\', color: \'#009900\'},\r\n {name: null, color: \'#000000\'}\r\n ],\r\n priority;\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'redmine_\')) {\r\n params_redmine[key.substring(8)] = params[key];\r\n }\r\n else if (key.startsWith(\'customfield_\')) {\r\n params_fields[key.substring(12)] = params[key];\r\n }\r\n else if (key.startsWith(\'event_update_\')) {\r\n params_update[key.substring(13)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key].trim() === \'\') {\r\n throw \'Parameter "\' + key + \'" cannot be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect "event_value" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_source === \'0\' && params.event_update_status !== \'0\' && params.event_update_status !== \'1\') {\r\n throw \'Incorrect "event_update_status" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n\r\n if (typeof params_redmine.close_status_id === \'string\' && params_redmine.close_status_id.trim() !== \'\' && !parseInt(params_redmine.close_status_id, 10)) {\r\n throw \'Incorrect "redmine_close_status_id" parameter given! Must be an integer.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n if (params.event_source === \'0\'\r\n && ((params.event_value === \'1\' && params.event_update_status === \'1\')\r\n || (params.event_value === \'0\'\r\n && (params.event_update_status === \'0\' || params.event_update_status === \'1\')))\r\n && (isNaN(parseInt(params.redmine_issue_key)) || parseInt(params.redmine_issue_key) < 1 )) {\r\n throw \'Incorrect "redmine_issue_key" parameter given: \' + params.redmine_issue_key +\r\n \'\\nMust be positive integer.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n if (params.event_value === \'0\') {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n priority = params[\'severity_\' + severities[params.event_nseverity].name];\r\n priority = priority && priority.trim() || severities[7].name;\r\n\r\n Redmine.setParams(params_redmine);\r\n Redmine.HTTPProxy = params.HTTPProxy;\r\n\r\n // Create issue for non trigger-based events.\r\n if (params.event_source !== \'0\'\r\n && params.event_value !== \'0\') {\r\n Redmine.createIssue(params.alert_subject, params.alert_message, priority);\r\n }\r\n // Create issue for trigger-based events.\r\n else if (params.event_value === \'1\' && params_update.status === \'0\') {\r\n var issue_id = Redmine.createIssue(params.alert_subject,\r\n params.alert_subject + \'\\n\' + params.alert_message + \'\\n\' +\r\n params.zabbix_url + (params.zabbix_url.endsWith(\'/\') ? \'\' : \'/\') +\r\n \'tr_events.php?triggerid=\' + params.trigger_id + \'&eventid=\' + params.event_id + \'\\n\',\r\n priority,\r\n params_fields);\r\n\r\n result.tags.__zbx_redmine_issue_id = issue_id;\r\n result.tags.__zbx_redmine_issuelink = params.redmine_url +\r\n (params.redmine_url.endsWith(\'/\') ? \'\' : \'/\') + \'issues/\' + issue_id;\r\n }\r\n // Close issue if parameter close_status_id is set and it is a recovery operation\r\n else if (params.event_value === \'0\' && typeof params_redmine.close_status_id === \'string\' && params_redmine.close_status_id.trim() !== \'\') {\r\n Redmine.updateIssue(params.alert_subject + \'\\n\' + params.alert_message, params_fields, params_redmine.close_status_id);\r\n }\r\n // Update created issue for trigger-based event.\r\n else {\r\n Redmine.updateIssue(params.alert_subject + \'\\n\' + params.alert_message, params_fields);\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ Redmine Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s','1','1','{EVENT.TAGS.__zbx_redmine_issuelink}','Redmine: issue #{EVENT.TAGS.__zbx_redmine_issue_id}','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('16','4','Telegram','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','var Telegram = {\r\n token: null,\r\n to: null,\r\n message: null,\r\n proxy: null,\r\n parse_mode: null,\r\n\r\n escapeMarkup: function (str, mode) {\r\n switch (mode) {\r\n case \'markdown\':\r\n return str.replace(/([_*\\[`])/g, \'\\\\$&\');\r\n\r\n case \'markdownv2\':\r\n return str.replace(/([_*\\[\\]()~`>#+\\-=|{}.!])/g, \'\\\\$&\');\r\n\r\n default:\r\n return str;\r\n }\r\n },\r\n\r\n sendMessage: function () {\r\n var params = {\r\n chat_id: Telegram.to,\r\n text: Telegram.message,\r\n disable_web_page_preview: true,\r\n disable_notification: false\r\n },\r\n data,\r\n response,\r\n request = new HttpRequest(),\r\n url = \'https://api.telegram.org/bot\' + Telegram.token + \'/sendMessage\';\r\n\r\n if (Telegram.parse_mode !== null) {\r\n params[\'parse_mode\'] = Telegram.parse_mode;\r\n }\r\n\r\n if (Telegram.proxy) {\r\n request.setProxy(Telegram.proxy);\r\n }\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n data = JSON.stringify(params);\r\n\r\n // Remove replace() function if you want to see the exposed token in the log file.\r\n Zabbix.log(4, \'[Telegram Webhook] URL: \' + url.replace(Telegram.token, \'\'));\r\n Zabbix.log(4, \'[Telegram Webhook] params: \' + data);\r\n response = request.post(url, data);\r\n Zabbix.log(4, \'[Telegram Webhook] HTTP code: \' + request.getStatus());\r\n\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n response = null;\r\n }\r\n\r\n if (request.getStatus() !== 200 || typeof response.ok !== \'boolean\' || response.ok !== true) {\r\n if (typeof response.description === \'string\') {\r\n throw response.description;\r\n }\r\n else {\r\n throw \'Unknown error. Check debug log for more information.\';\r\n }\r\n }\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value);\r\n\r\n if (typeof params.Token === \'undefined\') {\r\n throw \'Incorrect value is given for parameter "Token": parameter is missing\';\r\n }\r\n\r\n Telegram.token = params.Token;\r\n\r\n if (params.HTTPProxy) {\r\n Telegram.proxy = params.HTTPProxy;\r\n } \r\n\r\n params.ParseMode = params.ParseMode.toLowerCase();\r\n \r\n if ([\'markdown\', \'html\', \'markdownv2\'].indexOf(params.ParseMode) !== -1) {\r\n Telegram.parse_mode = params.ParseMode;\r\n }\r\n\r\n Telegram.to = params.To;\r\n Telegram.message = params.Subject + \'\\n\' + params.Message;\r\n\r\n if ([\'markdown\', \'markdownv2\'].indexOf(params.ParseMode) !== -1) {\r\n Telegram.message = Telegram.escapeMarkup(Telegram.message, params.ParseMode);\r\n }\r\n\r\n Telegram.sendMessage();\r\n\r\n return \'OK\';\r\n}\r\ncatch (error) {\r\n Zabbix.log(4, \'[Telegram Webhook] notification failed: \' + error);\r\n throw \'Sending failed: \' + error + \'.\';\r\n}','10s','0','0','','','https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/telegram\r\n\r\n1. Register bot: send "/newbot" to @BotFather and follow instructions\r\n2. Copy and paste the obtained token into the "Token" field above\r\n3. If you want to send personal notifications, you need to get chat id of the user you want to send messages to:\r\n 3.1. Send "/getid" to "@myidbot" in Telegram messenger\r\n 3.2. Copy returned chat id and save it in the "Telegram Webhook" media for the user\r\n 3.3. Ask the user to send "/start" to your bot (Telegram bot won\'t send anything to the user without it)\r\n4. If you want to send group notifications, you need to get group id of the group you want to send messages to:\r\n 4.1. Add "@myidbot" to your group\r\n 4.2. Send "/getgroupid@myidbot" in your group\r\n 4.3. Copy returned group id save it in the "Telegram Webhook" media for the user you created for group notifications\r\n 4.4. Send "/start@your_bot_name_here" in your group (Telegram bot won\'t send anything to the group without it)');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('17','4','Zendesk','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','var Zendesk = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n Zendesk.params = params;\r\n if (typeof Zendesk.params.url === \'string\') {\r\n if (!Zendesk.params.url.endsWith(\'/\')) {\r\n Zendesk.params.url += \'/\';\r\n }\r\n Zendesk.params.url += \'api/v2/\';\r\n }\r\n },\r\n\r\n addCustomFields: function (data, fields) {\r\n if (typeof fields === \'object\' && Object.keys(fields).length) {\r\n var schema = Zendesk.getSchema(),\r\n arr = [],\r\n i,\r\n n;\r\n\r\n if (schema) {\r\n Object.keys(fields)\r\n .forEach(function(field) {\r\n for (i = 0, n = schema.ticket_fields.length; i < n; i++) {\r\n if (schema.ticket_fields[i].id == field\r\n && [\'text\', \'integer\', \'date\'].indexOf(schema.ticket_fields[i].type) !== -1){\r\n\r\n switch (schema.ticket_fields[i].type) {\r\n case \'integer\':\r\n fields[field] = parseInt(fields[field]);\r\n break;\r\n case \'date\':\r\n if (fields[field].match(/^\\d{4}[.-]\\d{2}[.-]\\d{2}$/) !== null) {\r\n fields[field] = fields[field].replace(/\\./g, \'-\');\r\n }\r\n else {\r\n fields[field] = \'\';\r\n }\r\n break;\r\n }\r\n\r\n arr.push({id: field, value: fields[field]});\r\n break;\r\n }\r\n }\r\n });\r\n\r\n if (arr.length) {\r\n data.ticket[\'custom_fields\'] = arr;\r\n }\r\n }\r\n else {\r\n Zabbix.log(4, \'[Zendesk Webhook] Failed to retrieve field schema.\');\r\n }\r\n }\r\n\r\n return data;\r\n },\r\n\r\n request: function (method, query, data) {\r\n [\'url\', \'token\', \'type\'].forEach(function (field) {\r\n if (typeof Zendesk.params !== \'object\' || typeof Zendesk.params[field] === \'undefined\') {\r\n throw \'Required Zendesk param is not set: \' + field + \'\\n\' + Zendesk.params[field];\r\n }\r\n });\r\n\r\n var response,\r\n url = Zendesk.params.url + query,\r\n request = new HttpRequest();\r\n\r\n if (typeof Zendesk.HTTPProxy === \'string\' && Zendesk.HTTPProxy.trim() !== \'\') {\r\n request.setProxy(Zendesk.HTTPProxy);\r\n }\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Authorization: Basic \' + btoa(Zendesk.params.token));\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[Zendesk Webhook] Sending request: \' + url + ((typeof data === \'string\') ? (\' \' + data) : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[Zendesk Webhook] Received response with status code \' + request.getStatus() + \'. \' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[Zendesk Webhook] Failed to parse response received from Zendesk.\');\r\n }\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response !== null && typeof response.error !== \'undefined\'\r\n && Object.keys(response.error).length > 0) {\r\n message += \': \' + JSON.stringify(response.error);\r\n }\r\n else if (response !== null && typeof response.description !== \'undefined\'\r\n && Object.keys(response.description).length > 0) {\r\n message += \': \' + JSON.stringify(response.description);\r\n }\r\n else {\r\n message += \'. \' + response;\r\n }\r\n throw message + \'. Check debug log for more information.\';\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n getSchema: function() {\r\n var result = Zendesk.request(\'get\', \'ticket_fields.json\');\r\n\r\n return result.response;\r\n },\r\n\r\n createIssue: function(data, fields) {\r\n var result = Zendesk.request(\'post\', \'tickets.json\', Zendesk.addCustomFields(data, fields));\r\n\r\n if (typeof result.response !== \'object\' || typeof result.response.ticket.id === \'undefined\'\r\n || result.status != 201) {\r\n throw \'Cannot create Zendesk issue. Check debug log for more information.\';\r\n }\r\n\r\n return result.response.ticket.id;\r\n },\r\n\r\n updateIssue: function(data, fields) {\r\n Zendesk.request(\'put\', \'tickets/\' + Zendesk.params.issue_key + \'.json\', Zendesk.addCustomFields(data, fields));\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n fields = {},\r\n zendesk = {},\r\n update = {},\r\n data = {},\r\n result = {tags: {}},\r\n required_params = [\r\n \'alert_subject\',\r\n \'alert_message\',\r\n \'event_id\',\r\n \'event_source\',\r\n \'event_value\',\r\n \'event_update_status\'\r\n ],\r\n severities = [\r\n {name: \'not_classified\', color: \'#97AAB3\'},\r\n {name: \'information\', color: \'#7499FF\'},\r\n {name: \'warning\', color: \'#FFC859\'},\r\n {name: \'average\', color: \'#FFA059\'},\r\n {name: \'high\', color: \'#E97659\'},\r\n {name: \'disaster\', color: \'#E45959\'},\r\n {name: \'resolved\', color: \'#009900\'},\r\n {name: \'default\', color: \'#000000\'}\r\n ],\r\n priority;\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'zendesk_\')) {\r\n zendesk[key.substring(8)] = params[key];\r\n }\r\n else if (key.startsWith(\'customfield_\')) {\r\n fields[key.substring(12)] = params[key];\r\n }\r\n else if (key.startsWith(\'event_update_\')) {\r\n update[key.substring(13)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key].trim() === \'\') {\r\n throw \'Parameter \' + key + \' cannot be empty.\';\r\n }\r\n });\r\n\r\n // Possible values: question, incident, problems, task\r\n if ([\'question\', \'incident\', \'problem\', \'task\'].indexOf(params.zendesk_type) === -1) {\r\n throw \'Incorrect "zendesk_type" parameter given: \' + params.zendesk_type +\r\n \'\\nMust be one of question, incident, problem, task.\';\r\n }\r\n\r\n // Possible values: 0 - Trigger, 1 - Discovery, 2 - Autoregistration, 3 - Internal.\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n // Possible values: 1 for problem, 0 for recovering\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect "event_value" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n // Possible values: 0 - Webhook was called because of problem/recovery event, 1 - Update operation.\r\n if (params.event_source === \'0\' && params.event_update_status !== \'0\' && params.event_update_status !== \'1\') {\r\n throw \'Incorrect "event_update_status" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n // Zendesk_issue_key must be a positive integer if an update action is being performed.\r\n if (params.event_source === \'0\' && ((params.event_value === \'1\' && params.event_update_status === \'1\')\r\n || (params.event_value === \'0\' && (params.event_update_status === \'0\' || params.event_update_status === \'1\')))\r\n && (isNaN(parseInt(params.zendesk_issue_key)) || parseInt(params.zendesk_issue_key) < 1 )) {\r\n throw \'Incorrect "zendesk_issue_key" parameter given: \' + params.zendesk_issue_key +\r\n \'\\nMust be positive integer.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n if (params.event_value === \'0\') {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n priority = params[\'severity_\' + severities[params.event_nseverity].name] || severities[7].name;\r\n\r\n Zendesk.setParams(zendesk);\r\n Zendesk.HTTPProxy = params.HTTPProxy;\r\n\r\n // Create issue for non trigger-based events.\r\n if (params.event_source !== \'0\' && params.event_value !== \'0\') {\r\n data = {\r\n ticket: {\r\n external_id: params.event_id,\r\n type: Zendesk.params.type,\r\n status: \'new\',\r\n subject: params.alert_subject,\r\n comment: {\r\n body: params.alert_message,\r\n public: \'false\'\r\n },\r\n priority: priority,\r\n tags: params.event_tags\r\n }\r\n };\r\n\r\n Zendesk.createIssue(data, fields);\r\n }\r\n // Create issue for trigger-based events.\r\n else if (params.event_value === \'1\' && update.status === \'0\') {\r\n data = {\r\n ticket: {\r\n external_id: params.event_id,\r\n type: Zendesk.params.type,\r\n status: \'new\',\r\n subject: params.alert_subject,\r\n comment: {\r\n body: params.zbxurl + (params.zbxurl.endsWith(\'/\') ? \'\' : \'/\') + \'tr_events.php?triggerid=\' +\r\n params.trigger_id + \'&eventid=\' + params.event_id + \'\\n\' + params.alert_message,\r\n public: \'false\'\r\n },\r\n priority: priority,\r\n tags: params.event_tags\r\n }\r\n };\r\n var key = Zendesk.createIssue(data, fields);\r\n\r\n result.tags.__zbx_zdk_issuekey = key;\r\n result.tags.__zbx_zdk_issuelink = params.zendesk_url +\r\n (params.zendesk_url.endsWith(\'/\') ? \'\' : \'/\') + \'agent/tickets/\' + key;\r\n }\r\n // Update created issue for trigger-based event.\r\n else {\r\n data = {\r\n ticket: {\r\n type: Zendesk.params.type,\r\n subject: params.alert_subject,\r\n comment: {\r\n body: params.alert_message,\r\n public: \'false\'\r\n }\r\n }\r\n };\r\n\r\n Zendesk.updateIssue(data, fields);\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[Zendesk Webhook] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s','1','1','{EVENT.TAGS.__zbx_zdk_issuelink}','Zendesk: {EVENT.TAGS.__zbx_zdk_issuekey}','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('18','4','ServiceNow','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','var ServiceNow = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n ServiceNow.params = params;\r\n if (typeof ServiceNow.params.url === \'string\') {\r\n if (!ServiceNow.params.url.endsWith(\'/\')) {\r\n ServiceNow.params.url += \'/\';\r\n }\r\n\r\n ServiceNow.params.url += \'api/now/table/incident\';\r\n }\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n ServiceNow.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n setFields: function (data, fields) {\r\n if (typeof fields === \'object\' && Object.keys(fields).length) {\r\n Object.keys(fields)\r\n .forEach(function(field) {\r\n data[field] = (fields[field].match(/^\\d{4}\\.\\d{2}\\.\\d{2}$/) !== null)\r\n ? fields[field].replace(/\\./g, \'-\')\r\n : fields[field];\r\n });\r\n }\r\n },\r\n\r\n request: function (method, data) {\r\n [\'url\', \'user\', \'password\'].forEach(function (field) {\r\n if (typeof ServiceNow.params !== \'object\' || typeof ServiceNow.params[field] === \'undefined\'\r\n || ServiceNow.params[field] === \'\' ) {\r\n throw \'Required ServiceNow param is not set: "\' + field + \'".\';\r\n }\r\n });\r\n\r\n var response,\r\n url = ServiceNow.params.url,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Authorization: Basic \' + btoa(ServiceNow.params.user + \':\' + ServiceNow.params.password));\r\n\r\n if (typeof ServiceNow.HTTPProxy !== \'undefined\' && ServiceNow.HTTPProxy !== \'\') {\r\n request.setProxy(ServiceNow.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ ServiceNow Webhook ] Sending request: \' + url + ((typeof data === \'string\')\r\n ? (\'\\n\' + data)\r\n : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ ServiceNow Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ ServiceNow Webhook ] Failed to parse response received from ServiceNow\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response !== null && typeof response.error.message !== \'undefined\'\r\n && Object.keys(response.error).length > 0) {\r\n message += \': \' + JSON.stringify(response.error.message);\r\n }\r\n\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n else if (typeof response.result !== \'object\' || typeof response.result.sys_id === \'undefined\') {\r\n throw \'Cannot create ServiceNow incident. Check debug log for more information.\';\r\n }\r\n\r\n return response.result;\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n fields = {},\r\n servicenow = {},\r\n data = {},\r\n result = {tags: {}},\r\n required_params = [\r\n \'alert_subject\', \'alert_message\', \'event_source\', \'event_value\',\r\n \'event_update_status\', \'event_recovery_value\', \'event_nseverity\'\r\n ],\r\n severities = [\r\n {name: \'not_classified\', color: \'#97AAB3\'},\r\n {name: \'information\', color: \'#7499FF\'},\r\n {name: \'warning\', color: \'#FFC859\'},\r\n {name: \'average\', color: \'#FFA059\'},\r\n {name: \'high\', color: \'#E97659\'},\r\n {name: \'disaster\', color: \'#E45959\'},\r\n {name: \'resolved\', color: \'#009900\'},\r\n {name: \'default\', color: \'#000000\'}\r\n ],\r\n method = \'post\',\r\n process_tags = true;\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'servicenow_\')) {\r\n servicenow[key.substring(11)] = params[key];\r\n }\r\n else if (key.startsWith(\'u_\')) {\r\n fields[key] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key] === \'\') {\r\n throw \'Parameter "\' + key + \'" can\\\'t be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect "event_value" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect "event_update_status" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_recovery_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n data.short_description = params.alert_subject;\r\n data.description = params.alert_message;\r\n data.comments = params.alert_message;\r\n\r\n if (typeof params[\'urgency_for_\' + severities[params.event_nseverity].name] !== \'undefined\') {\r\n data.urgency = params[\'urgency_for_\' + severities[params.event_nseverity].name];\r\n }\r\n\r\n ServiceNow.setParams(servicenow);\r\n ServiceNow.setProxy(params.HTTPProxy);\r\n ServiceNow.setFields(data, fields);\r\n\r\n if (params.event_source === \'0\' && (params.event_value === \'0\' || params.event_update_status === \'1\')) {\r\n process_tags = false;\r\n method = \'put\';\r\n delete data.description;\r\n delete data.urgency;\r\n ServiceNow.params.url += \'/\' + params.servicenow_sys_id;\r\n }\r\n\r\n var response = ServiceNow.request(method, data);\r\n\r\n if (process_tags) {\r\n result.tags.__zbx_servicenow_sys_id = response.sys_id;\r\n result.tags.__zbx_servicenow_link = params.servicenow_url +\r\n (params.servicenow_url.endsWith(\'/\') ? \'\' : \'/\') + \'incident.do?sys_id=\' + response.sys_id;\r\n result.tags.__zbx_servicenow_number = response.number;\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ ServiceNow Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s','1','1','{EVENT.TAGS.__zbx_servicenow_link}','ServiceNow: {EVENT.TAGS.__zbx_servicenow_number}','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('19','4','Zammad','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','var Zammad = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n Zammad.params = params;\r\n if (typeof Zammad.params.url === \'string\') {\r\n if (!Zammad.params.url.endsWith(\'/\')) {\r\n Zammad.params.url += \'/\';\r\n }\r\n }\r\n },\r\n\r\n request: function (method, query, data) {\r\n [\'url\', \'access_token\'].forEach(function (field) {\r\n if (typeof Zammad.params !== \'object\' || typeof Zammad.params[field] === \'undefined\'\r\n || Zammad.params[field] === \'\' ) {\r\n throw \'Required param is not set: "\' + field + \'".\';\r\n }\r\n });\r\n\r\n var response,\r\n url = Zammad.params.url + query,\r\n request = new HttpRequest();\r\n\r\n if (typeof Zammad.HTTPProxy === \'string\' && Zammad.HTTPProxy.trim() !== \'\') {\r\n request.setProxy(Zammad.HTTPProxy);\r\n }\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Authorization: Token token=\' + Zammad.params.access_token);\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ Zammad Webhook ] Sending request: \' +\r\n url + ((typeof data === \'string\') ? (\' \' + data) : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ Zammad Webhook ] Received response with status code \' + request.getStatus() + \': \' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ Zammad Webhook ] Failed to parse response received from Zammad\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response !== null && typeof response.errors !== \'undefined\'\r\n && Object.keys(response.errors).length > 0) {\r\n message += \': \' + JSON.stringify(response.errors);\r\n }\r\n else if (response !== null && typeof response.errorMessages !== \'undefined\'\r\n && Object.keys(response.errorMessages).length > 0) {\r\n message += \': \' + JSON.stringify(response.errorMessages);\r\n }\r\n\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n setTicketTags: function (tags, ticket_id) {\r\n var data = {\r\n item: \'\',\r\n object: \'Ticket\',\r\n o_id: ticket_id\r\n };\r\n\r\n try {\r\n var tags_json = JSON.parse(tags),\r\n result;\r\n\r\n for (var i in tags_json) {\r\n\r\n if (tags_json[i].value) {\r\n data.item = tags_json[i].tag + ": " + tags_json[i].value;\r\n } else {\r\n data.item = tags_json[i].tag;\r\n }\r\n result = Zammad.request(\'post\', \'api/v1/tags/add\', data);\r\n\r\n if (typeof result.response !== \'object\' || result.status != 200) {\r\n Zabbix.log(4, \'[ Zammad Webhook ] Cannot add ticket tag:\' + tags_json[i].tag);\r\n }\r\n }\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ Zammad Webhook ] Failed to add ticket tags:\' + error);\r\n }\r\n\r\n return;\r\n },\r\n\r\n createTicket: function(subject, message, priority) {\r\n var data = {\r\n title: subject,\r\n group: \'Users\',\r\n article: {\r\n subject: subject,\r\n body: message,\r\n type: \'note\',\r\n internal: false\r\n },\r\n customer: Zammad.params.customer\r\n },\r\n result;\r\n\r\n if (priority) {\r\n data.priority_id = priority;\r\n }\r\n\r\n result = Zammad.request(\'post\', \'api/v1/tickets\', data);\r\n\r\n if (typeof result.response !== \'object\'\r\n || typeof result.response.id === \'undefined\'\r\n || result.status != 201) {\r\n throw \'Cannot create Zammad ticket. Check debug log for more information.\';\r\n }\r\n\r\n return result.response.id;\r\n },\r\n\r\n updateTicket: function(subject, message) {\r\n var data = {\r\n ticket_id: Zammad.params.ticket_id,\r\n subject: subject,\r\n body: message || \'\',\r\n type: \'note\',\r\n internal: false\r\n };\r\n\r\n result = Zammad.request(\'post\', \'api/v1/ticket_articles\', data);\r\n\r\n if (typeof result.response !== \'object\'\r\n || typeof result.response.id === \'undefined\'\r\n || result.status != 201) {\r\n throw \'Cannot update Zammad ticket. Check debug log for more information.\';\r\n }\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n params_zammad = {},\r\n params_update = {},\r\n result = {tags: {}},\r\n required_params = [\r\n \'alert_subject\', \'customer\',\r\n \'event_source\', \'event_value\',\r\n \'event_update_status\'\r\n ],\r\n severities = [\r\n {name: \'not_classified\', color: \'#97AAB3\'},\r\n {name: \'information\', color: \'#7499FF\'},\r\n {name: \'warning\', color: \'#FFC859\'},\r\n {name: \'average\', color: \'#FFA059\'},\r\n {name: \'high\', color: \'#E97659\'},\r\n {name: \'disaster\', color: \'#E45959\'},\r\n {name: \'resolved\', color: \'#009900\'},\r\n {name: null, color: \'#000000\'}\r\n ],\r\n priority;\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'zammad_\')) {\r\n params_zammad[key.substring(7)] = params[key].trim();\r\n }\r\n else if (key.startsWith(\'event_update_\')) {\r\n params_update[key.substring(13)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key].trim() === \'\') {\r\n throw \'Parameter "\' + key + \'" cannot be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect "event_value" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_source === \'0\' && params.event_update_status !== \'0\' && params.event_update_status !== \'1\') {\r\n throw \'Incorrect "event_update_status" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n if (params.event_source === \'0\'\r\n && ((params.event_value === \'1\' && params.event_update_status === \'1\')\r\n || (params.event_value === \'0\'\r\n && (params.event_update_status === \'0\' || params.event_update_status === \'1\')))\r\n && (isNaN(parseInt(params.zammad_ticket_id)) || parseInt(params.zammad_ticket_id) < 1 )) {\r\n throw \'Incorrect "zammad_ticket_id" parameter given: \' + params.zammad_ticket_id +\r\n \'\\nMust be positive integer.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n if (params.event_value === \'0\') {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n priority = params[\'severity_\' + severities[params.event_nseverity].name];\r\n priority = priority && priority.trim() || severities[7].name;\r\n\r\n Zammad.setParams(params_zammad);\r\n Zammad.HTTPProxy = params.HTTPProxy;\r\n\r\n // Create ticket for non trigger-based events.\r\n if (params.event_source !== \'0\'\r\n && params.event_value !== \'0\') {\r\n Zammad.createTicket(params.alert_subject, params.alert_message, priority, params.event_tags);\r\n }\r\n // Create ticket for trigger-based events.\r\n else if (params.event_value === \'1\' && params_update.status === \'0\') {\r\n var ticket_id = Zammad.createTicket(params.alert_subject,\r\n params.alert_subject + \'\\n\' + params.alert_message + \'\\n\' +\r\n params.zabbix_url + (params.zabbix_url.endsWith(\'/\') ? \'\' : \'/\') +\r\n \'tr_events.php?triggerid=\' + params.trigger_id + \'&eventid=\' + params.event_id + \'\\n\',\r\n priority);\r\n\r\n result.tags.__zbx_zammad_ticket_id = ticket_id;\r\n result.tags.__zbx_zammad_ticketlink = params.zammad_url +\r\n (params.zammad_url.endsWith(\'/\') ? \'\' : \'/\') + \'#ticket/zoom/\' + ticket_id;\r\n\r\n if (Zammad.params.enable_tags.toLowerCase() === \'true\') {\r\n Zammad.setTicketTags(params.event_tags, ticket_id);\r\n }\r\n }\r\n // Update created ticket for trigger-based event.\r\n else {\r\n Zammad.updateTicket(params.alert_subject, params.alert_message);\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ Zammad Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s','1','1','{EVENT.TAGS.__zbx_zammad_ticketlink}','Zammad: ticket #{EVENT.TAGS.__zbx_zammad_ticket_id}','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('20','4','Jira ServiceDesk','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','var Jira = {\r\n params: {},\r\n schema: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n Jira.params = params;\r\n if (typeof Jira.params.url === \'string\') {\r\n if (!Jira.params.url.endsWith(\'/\')) {\r\n Jira.params.url += \'/\';\r\n }\r\n\r\n Jira.params.url += \'rest/servicedeskapi/\';\r\n }\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n Jira.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n setTags: function(event_tags_json) {\r\n if (!Jira.schema) {\r\n Zabbix.log(4, \'[ Jira Service Desk Webhook ] Cannot add labels because failed to retrieve field schema.\');\r\n\r\n return;\r\n }\r\n\r\n var block = Jira.schema.requestTypeFields.filter(function(object) {\r\n return object.fieldId == \'labels\';\r\n });\r\n\r\n if (block[0] && typeof event_tags_json !== \'undefined\' && event_tags_json !== \'\'\r\n && event_tags_json !== \'{EVENT.TAGSJSON}\') {\r\n try {\r\n var tags = JSON.parse(event_tags_json),\r\n label;\r\n\r\n Jira.labels = [];\r\n\r\n tags.forEach(function (tag) {\r\n if (typeof tag.tag !== \'undefined\' && typeof tag.value !== \'undefined\' ) {\r\n label = (tag.tag + (tag.value ? (\':\' + tag.value) : \'\')).replace(/\\s/g, \'_\');\r\n if (label.length < 255) {\r\n Jira.labels.push(label);\r\n }\r\n }\r\n });\r\n }\r\n catch (error) {\r\n // Code is not missing here.\r\n }\r\n }\r\n },\r\n\r\n addCustomFields: function (data, fields) {\r\n if (typeof fields === \'object\' && Object.keys(fields).length) {\r\n if (Jira.schema) {\r\n Object.keys(fields)\r\n .forEach(function(field) {\r\n data.requestFieldValues[field] = fields[field];\r\n\r\n var block = Jira.schema.requestTypeFields.filter(function(object) {\r\n return object.fieldId == field;\r\n });\r\n\r\n if (typeof block[0] === \'object\' && typeof block[0].jiraSchema === \'object\'\r\n && (block[0].jiraSchema.type === \'number\' || block[0].jiraSchema.type === \'datetime\')) {\r\n switch (block[0].jiraSchema.type) {\r\n case \'number\':\r\n data.requestFieldValues[field] = parseInt(fields[field]);\r\n break;\r\n\r\n case \'datetime\':\r\n if (fields[field].match(/\\d+[.-]\\d+[.-]\\d+T\\d+:\\d+:\\d+/) !== null) {\r\n data.requestFieldValues[field] = fields[field].replace(/\\./g, \'-\');\r\n }\r\n else {\r\n delete data.requestFieldValues[field];\r\n }\r\n break;\r\n }\r\n }\r\n });\r\n }\r\n else {\r\n Zabbix.log(4, \'[ Jira Service Desk Webhook ] Cannot add custom fields\' +\r\n \'because failed to retrieve field schema.\');\r\n }\r\n }\r\n\r\n return data;\r\n },\r\n\r\n request: function (method, query, data) {\r\n [\'url\', \'user\', \'password\', \'servicedesk_id\', \'request_type_id\'].forEach(function (field) {\r\n if (typeof Jira.params !== \'object\' || typeof Jira.params[field] === \'undefined\'\r\n || Jira.params[field] === \'\' ) {\r\n throw \'Required Jira param is not set: "\' + field + \'".\';\r\n }\r\n });\r\n\r\n var response,\r\n url = Jira.params.url + query,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Authorization: Basic \' + btoa(Jira.params.user + \':\' + Jira.params.password));\r\n request.addHeader(\'X-ExperimentalApi: opt-in\');\r\n\r\n if (typeof Jira.HTTPProxy !== \'undefined\' && Jira.HTTPProxy !== \'\') {\r\n request.setProxy(Jira.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ Jira Service Desk Webhook ] Sending request: \' + url +\r\n ((typeof data === \'string\') ? (\'\\n\' + data) : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ Jira Service Desk Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ Jira Service Desk Webhook ] Failed to parse response received from Jira\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response !== null && typeof response.errors !== \'undefined\'\r\n && Object.keys(response.errors).length > 0) {\r\n message += \': \' + JSON.stringify(response.errors);\r\n }\r\n else if (response !== null && typeof response.errorMessage !== \'undefined\'\r\n && Object.keys(response.errorMessage).length > 0) {\r\n message += \': \' + JSON.stringify(response.errorMessage);\r\n }\r\n\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n getSchema: function() {\r\n var result = Jira.request(\'get\', \'servicedesk/\' + Jira.params.servicedesk_id + \'/requesttype/\' +\r\n Jira.params.request_type_id + \'/field\');\r\n\r\n if (typeof Jira.schema !== \'object\' && typeof Jira.schema.requestTypeFields !== \'object\') {\r\n Jira.schema = null;\r\n }\r\n else {\r\n Jira.schema = result.response;\r\n }\r\n },\r\n\r\n createRequest: function(summary, description, fields) {\r\n var data = {\r\n serviceDeskId: Jira.params.servicedesk_id,\r\n requestTypeId: Jira.params.request_type_id,\r\n requestFieldValues: {\r\n summary: summary,\r\n description: description\r\n }\r\n };\r\n\r\n if (Jira.labels && Jira.labels.length > 0) {\r\n data.requestFieldValues.labels = Jira.labels;\r\n }\r\n var result = Jira.request(\'post\', \'request\', Jira.addCustomFields(data, fields));\r\n\r\n if (typeof result.response !== \'object\' || typeof result.response.issueKey === \'undefined\') {\r\n throw \'Cannot create Jira request. Check debug log for more information.\';\r\n }\r\n\r\n return result.response.issueKey;\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n fields = {},\r\n jira = {},\r\n comment = {public: true},\r\n result = {tags: {}},\r\n required_params = [\r\n \'alert_subject\', \'alert_message\', \'event_source\', \'event_value\',\r\n \'event_update_status\', \'event_recovery_value\'\r\n ];\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'jira_\')) {\r\n jira[key.substring(5)] = params[key];\r\n }\r\n else if (key.startsWith(\'customfield_\')) {\r\n fields[key] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key] === \'\') {\r\n throw \'Parameter "\' + key + \'" cannot be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect "event_value" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect "event_update_status" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_recovery_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n Jira.setParams(jira);\r\n Jira.setProxy(params.HTTPProxy);\r\n Jira.getSchema();\r\n Jira.setTags(params.event_tags_json);\r\n\r\n // Create request for non trigger-based events.\r\n if (params.event_source !== \'0\' && params.event_recovery_value !== \'0\') {\r\n Jira.createRequest(params.alert_subject, params.alert_message);\r\n }\r\n // Create request for trigger-based events.\r\n else if (params.event_value === \'1\' && params.event_update_status === \'0\'\r\n && jira.request_key === \'{EVENT.TAGS.__zbx_jira_requestkey}\') {\r\n var key = Jira.createRequest(params.alert_subject, params.alert_message, fields);\r\n\r\n result.tags.__zbx_jira_requestkey = key;\r\n result.tags.__zbx_jira_requestlink = params.jira_url +\r\n (params.jira_url.endsWith(\'/\') ? \'\' : \'/\') + \'browse/\' + key;\r\n }\r\n // Comment created request for trigger-based event.\r\n else {\r\n if (jira.request_key === \'{EVENT.TAGS.__zbx_jira_requestkey}\' || jira.request_key.trim() === \'\') {\r\n throw \'Incorrect Request key given: \' + jira.request_key;\r\n }\r\n comment.body = params.alert_message;\r\n Jira.request(\'post\', \'request/\' + Jira.params.request_key + \'/comment\', comment);\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ Jira Service Desk Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s','1','1','{EVENT.TAGS.__zbx_jira_requestlink}','Jira ServiceDesk: {EVENT.TAGS.__zbx_jira_requestkey}','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('21','4','OTRS','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','var OTRS = {\r\n params: {},\r\n entrypoint: \'nph-genericinterface.pl/Webservice/ZabbixTicketConnector/Ticket\',\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n OTRS.params = params;\r\n if (typeof OTRS.params.url === \'string\') {\r\n if (!OTRS.params.url.endsWith(\'/\')) {\r\n OTRS.params.url += \'/\';\r\n }\r\n }\r\n },\r\n\r\n addDynamicFields: function (data, fields) {\r\n if (typeof fields === \'object\' && Object.keys(fields).length) {\r\n data.DynamicField = [];\r\n\r\n Object.keys(fields)\r\n .forEach(function(field) {\r\n if (field !== undefined) {\r\n if (fields[field].match(/^\\d{4}[.-]\\d{2}[.-]\\d{2}$/)) {\r\n fields[field] = fields[field].replace(/\\./g, \'-\');\r\n }\r\n\r\n data.DynamicField.push({Name: field, Value: fields[field]});\r\n }\r\n });\r\n }\r\n\r\n return data;\r\n },\r\n\r\n request: function (method, query, data) {\r\n [\'url\', \'auth_user\', \'auth_password\', \'queue\',\r\n \'customer\', \'ticket_state\', \'default_priority_id\', \'time_unit\'].forEach(function (field) {\r\n if (typeof OTRS.params !== \'object\' || typeof OTRS.params[field] === \'undefined\'\r\n || OTRS.params[field] === \'\' ) {\r\n throw \'Required param is not set: "\' + field + \'".\';\r\n }\r\n });\r\n\r\n var response,\r\n request = new HttpRequest(),\r\n url = OTRS.params.url + query +\r\n \'?UserLogin=\' + encodeURIComponent(OTRS.params.auth_user) +\r\n \'&Password=\' + encodeURIComponent(OTRS.params.auth_password);\r\n\r\n if (typeof OTRS.HTTPProxy !== \'undefined\' && OTRS.HTTPProxy.trim() !== \'\') {\r\n request.setProxy(OTRS.HTTPProxy);\r\n }\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ OTRS Webhook ] Sending request: \' +\r\n url + ((typeof data === \'string\') ? (\' \' + data) : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ OTRS Webhook ] Received response with status code \' + request.getStatus() + \': \' + response);\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n message += \': \' + response;\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ OTRS Webhook ] Failed to parse response received from OTRS\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (typeof response.Error !== \'undefined\'\r\n && Object.keys(response.Error).length > 0) {\r\n message = \'Request failed: \' + JSON.stringify(response.Error);\r\n }\r\n\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n createTicket: function(subject, message, priority, fields) {\r\n var result,\r\n data = {\r\n Ticket: {\r\n Title: subject,\r\n Queue: OTRS.params.queue,\r\n State: OTRS.params.ticket_state,\r\n PriorityID: priority || OTRS.params.default_priority_id,\r\n CustomerUser: OTRS.params.customer\r\n },\r\n Article: {\r\n Subject: subject,\r\n Body: message,\r\n TimeUnit: OTRS.params.time_unit,\r\n ContentType: \'text/plain; charset=utf8\'\r\n }\r\n };\r\n\r\n result = OTRS.request(\'post\', OTRS.entrypoint, OTRS.addDynamicFields(data, fields));\r\n\r\n if (typeof result.response !== \'object\'\r\n || typeof result.response.TicketID === \'undefined\'\r\n || result.status != 200) {\r\n throw \'Cannot create OTRS ticket. Check debug log for more information.\';\r\n }\r\n\r\n return result.response.TicketID;\r\n },\r\n\r\n updateTicket: function(subject, message) {\r\n var result,\r\n data = {\r\n Article: {\r\n Subject: subject,\r\n Body: message || \'\',\r\n TimeUnit: OTRS.params.time_unit,\r\n ContentType: \'text/plain; charset=utf8\'\r\n }\r\n };\r\n\r\n result = OTRS.request(\'put\', OTRS.entrypoint + \'/\' + encodeURIComponent(OTRS.params.ticket_id), data);\r\n\r\n if (typeof result.response !== \'object\'\r\n || typeof result.response.TicketID === \'undefined\'\r\n || result.status != 200) {\r\n throw \'Cannot update OTRS ticket. Check debug log for more information.\';\r\n }\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n params_otrs = {},\r\n params_fields = {},\r\n params_update = {},\r\n result = {tags: {}},\r\n required_params = [\r\n \'alert_subject\', \'event_source\',\r\n \'event_value\', \'event_update_status\'\r\n ],\r\n severities = [\r\n {name: \'not_classified\', color: \'#97AAB3\'},\r\n {name: \'information\', color: \'#7499FF\'},\r\n {name: \'warning\', color: \'#FFC859\'},\r\n {name: \'average\', color: \'#FFA059\'},\r\n {name: \'high\', color: \'#E97659\'},\r\n {name: \'disaster\', color: \'#E45959\'},\r\n {name: \'resolved\', color: \'#009900\'},\r\n {name: null, color: \'#000000\'}\r\n ],\r\n priority;\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'otrs_\')) {\r\n params_otrs[key.substring(5)] = params[key];\r\n }\r\n else if (key.startsWith(\'dynamicfield_\')) {\r\n params_fields[key.substring(13)] = params[key];\r\n }\r\n else if (key.startsWith(\'event_update_\')) {\r\n params_update[key.substring(13)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key].trim() === \'\') {\r\n throw \'Parameter "\' + key + \'" cannot be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect "event_value" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_source === \'0\' && params.event_update_status !== \'0\' && params.event_update_status !== \'1\') {\r\n throw \'Incorrect "event_update_status" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n if (params.event_source === \'0\'\r\n && ((params.event_value === \'1\' && params.event_update_status === \'1\')\r\n || (params.event_value === \'0\'\r\n && (params.event_update_status === \'0\' || params.event_update_status === \'1\')))\r\n && (isNaN(parseInt(params.otrs_ticket_id)) || parseInt(params.otrs_ticket_id) < 1 )) {\r\n throw \'Incorrect "otrs_ticket_id" parameter given: \' + params.otrs_ticket_id +\r\n \'\\nMust be positive integer.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n if (params.event_value === \'0\') {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n priority = params[\'severity_\' + severities[params.event_nseverity].name];\r\n priority = priority && priority.trim() || severities[7].name;\r\n\r\n OTRS.setParams(params_otrs);\r\n OTRS.HTTPProxy = params.HTTPProxy;\r\n\r\n // Create ticket for non trigger-based events.\r\n if (params.event_source !== \'0\'\r\n && params.event_value !== \'0\') {\r\n OTRS.createTicket(params.alert_subject, params.alert_message, priority);\r\n }\r\n // Create ticket for trigger-based events.\r\n else if (params.event_value === \'1\' && params_update.status === \'0\') {\r\n var ticket_id = OTRS.createTicket(params.alert_subject,\r\n params.alert_subject + \'\\n\' + params.alert_message + \'\\n\' +\r\n params.zabbix_url + (params.zabbix_url.endsWith(\'/\') ? \'\' : \'/\') +\r\n \'tr_events.php?triggerid=\' + params.trigger_id + \'&eventid=\' + params.event_id + \'\\n\',\r\n priority,\r\n params_fields);\r\n\r\n result.tags.__zbx_otrs_ticket_id = ticket_id;\r\n result.tags.__zbx_otrs_ticketlink = params.otrs_url +\r\n (params.otrs_url.endsWith(\'/\') ? \'\' : \'/\') + \'index.pl?Action=AgentTicketZoom;TicketID=\' + ticket_id;\r\n }\r\n // Update created ticket for trigger-based event.\r\n else {\r\n OTRS.updateTicket(params.alert_subject, params.alert_message);\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ OTRS Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s','1','1','{EVENT.TAGS.__zbx_otrs_ticketlink}','OTRS: ticket #{EVENT.TAGS.__zbx_otrs_ticket_id}','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('22','4','iLert','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','try {\r\n var result = { tags: {} },\r\n params = JSON.parse(value),\r\n req = new HttpRequest(),\r\n resp = \'\';\r\n\r\n if (typeof params.HTTPProxy === \'string\' && params.HTTPProxy.trim() !== \'\') {\r\n req.setProxy(params.HTTPProxy);\r\n }\r\n var alertSourceKey = params[\'.ILERT.ALERT.SOURCE.KEY\'];\r\n if (!alertSourceKey || (typeof alertSourceKey === \'string\' && alertSourceKey.trim() === \'\')) {\r\n throw \'incorrect value for variable "ILERT.ALERT.SOURCE.KEY". The value must be a non-empty string.\';\r\n }\r\n delete params[\'.ILERT.ALERT.SOURCE.KEY\'];\r\n \r\n var ilertApiBaseURL = "https://api.ilert.com";\r\n var reqURL = encodeURI(ilertApiBaseURL + "/api/v1/events/zabbix-mt/" + alertSourceKey)\r\n\r\n var incidentKey = "zabbix-" + params[\'EVENT.ID\'];\r\n var incidentViewURL = ilertApiBaseURL + "/api/v1/incidents/resolve-ik/" + alertSourceKey + "/" + incidentKey;\r\n\r\n req.addHeader(\'Accept: application/json\');\r\n req.addHeader(\'Content-Type: application/json\');\r\n\r\n Zabbix.log(4, \'[iLert Webhook] Sending request:\' + JSON.stringify(params));\r\n resp = req.post(reqURL, JSON.stringify(params));\r\n Zabbix.log(4, \'[iLert Webhook] Receiving response:\' + resp);\r\n\r\n try {\r\n resp = JSON.parse(resp);\r\n }\r\n catch (error) {\r\n throw \'incorrect response. iLert returned a non-JSON object.\';\r\n }\r\n\r\n if (req.getStatus() == 200) {\r\n result.tags.__ilert_incident_url = incidentViewURL;\r\n return JSON.stringify(result);\r\n }\r\n\r\n if (req.getStatus() == 400 && typeof resp === \'object\' && typeof resp.code === \'string\') {\r\n if (resp.code === \'NO_OPEN_INCIDENT_WITH_KEY\') {\r\n return JSON.stringify(result);\r\n }\r\n if (resp.code === \'INCIDENT_ALREADY_ACCEPTED\') {\r\n result.tags.__ilert_incident_url = incidentViewURL;\r\n return JSON.stringify(result);\r\n }\r\n }\r\n\r\n if (typeof resp === \'object\' && typeof resp.message === \'string\') {\r\n throw resp.message;\r\n }\r\n else {\r\n throw \'Unknown error.\';\r\n }\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[iLert Webhook] Notification failed : \' + error);\r\n throw \'iLert notification failed : \' + error;\r\n}','30s','1','1','{EVENT.TAGS.__ilert_incident_url}','iLert incident','Please refer to https://docs.ilert.com/integrations/zabbix/native \r\n \r\nSet global macro {$ZABBIX.URL} with your Zabbix server URL.\r\nAdd a dedicated user with the media type "iLert". You can also rewrite the incident summary via ".ILERT.INCIDENT.SUMMARY" parameter or leave it empty to use the standard pattern.');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('23','4','SolarWinds Service Desk','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','var SolarWinds = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n SolarWinds.params = params;\r\n SolarWinds.params.endpoint = \'https://api.samanage.com/\';\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n SolarWinds.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n addCustomFields: function (data, fields) {\r\n if (typeof data.incident === \'object\' && typeof fields === \'object\' && Object.keys(fields).length) {\r\n if (typeof fields.sw_fields === \'object\' && Object.keys(fields.sw_fields).length) {\r\n Object.keys(fields.sw_fields)\r\n .forEach(function(field) {\r\n try {\r\n data.incident[field] = JSON.parse(fields.sw_fields[field]);\r\n }\r\n catch (error) {\r\n data.incident[field] = fields.sw_fields[field];\r\n }\r\n });\r\n }\r\n\r\n if (typeof fields.sw_customfields === \'object\' && Object.keys(fields.sw_customfields).length) {\r\n data.incident.custom_fields_values = {custom_fields_value: []};\r\n Object.keys(fields.sw_customfields)\r\n .forEach(function(field) {\r\n data.incident.custom_fields_values.custom_fields_value.push({\r\n name: field,\r\n value: fields.sw_customfields[field]\r\n });\r\n });\r\n }\r\n }\r\n\r\n return data;\r\n },\r\n\r\n request: function (method, query, data) {\r\n [\'token\'].forEach(function (field) {\r\n if (typeof SolarWinds.params !== \'object\' || typeof SolarWinds.params[field] === \'undefined\'\r\n || SolarWinds.params[field] === \'\' ) {\r\n throw \'Required SolarWinds param is not set: "\' + field + \'".\';\r\n }\r\n });\r\n\r\n var response,\r\n url = SolarWinds.params.endpoint + query,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'X-Samanage-Authorization: Bearer \' + SolarWinds.params.token);\r\n request.addHeader(\'Accept: application/vnd.samanage.v2.1+json\');\r\n\r\n if (typeof SolarWinds.HTTPProxy !== \'undefined\' && SolarWinds.HTTPProxy !== \'\') {\r\n request.setProxy(SolarWinds.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ SolarWinds SD Webhook ] Sending request: \' + url + ((typeof data === \'string\')\r\n ? (\'\\n\' + data)\r\n : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ SolarWinds SD Webhook ] Received response with status code \' + request.getStatus() +\r\n \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ SolarWinds SD Webhook ] Failed to parse response received from SolarWinds\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response !== null && typeof response.error !== \'undefined\'\r\n && Object.keys(response.error).length > 0) {\r\n message += \': \' + JSON.stringify(response.error);\r\n }\r\n else if (response !== null && typeof response === \'object\'\r\n && Object.keys(response).length > 0) {\r\n Object.keys(response)\r\n .forEach(function(field) {\r\n message += \'\\n\' + field + \': \' + response[field][0];\r\n });\r\n }\r\n\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n createIncident: function(name, description, fields) {\r\n var data = {\r\n incident: {\r\n name: name,\r\n description: description,\r\n priority: SolarWinds.params.priority\r\n }\r\n };\r\n\r\n var result = SolarWinds.request(\'post\', \'incidents.json\', SolarWinds.addCustomFields(data, fields));\r\n\r\n if (typeof result.response !== \'object\' || typeof result.response.id === \'undefined\') {\r\n throw \'Cannot create SolarWinds incident. Check debug log for more information.\';\r\n }\r\n\r\n return result.response.id;\r\n },\r\n\r\n updateIncident: function(name, fields, message) {\r\n var data = {\r\n incident: {\r\n name: name,\r\n priority: SolarWinds.params.priority\r\n }\r\n };\r\n\r\n SolarWinds.request(\r\n \'put\',\r\n \'incidents/\' + SolarWinds.params.incident_id + \'.json\',\r\n SolarWinds.addCustomFields(data, fields));\r\n\r\n SolarWinds.commenIncident(message);\r\n },\r\n\r\n commenIncident: function(message) {\r\n var data = {\r\n comment: {\r\n body: message\r\n }\r\n };\r\n\r\n SolarWinds.request(\'post\', \'incidents/\' + SolarWinds.params.incident_id + \'/comments.json\', data);\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n fields = {},\r\n samanage = {},\r\n result = {tags: {}},\r\n required_params = [\'alert_subject\', \'event_recovery_value\', \'event_source\', \'event_value\', \'priority_default\'],\r\n severities = [\r\n {name: \'not_classified\'},\r\n {name: \'information\'},\r\n {name: \'warning\'},\r\n {name: \'average\'},\r\n {name: \'high\'},\r\n {name: \'disaster\'},\r\n {name: \'resolved\'},\r\n {name: \'default\'}\r\n ];\r\n\r\n fields.sw_fields = {};\r\n fields.sw_customfields = {};\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'samanage_\')) {\r\n samanage[key.substring(9)] = params[key];\r\n }\r\n else if (key.startsWith(\'sw_field_\')) {\r\n fields.sw_fields[key.substring(9)] = params[key];\r\n }\r\n else if (key.startsWith(\'sw_customfield_\')) {\r\n fields.sw_customfields[key.substring(15)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key] === \'\') {\r\n throw \'Parameter "\' + key + \'" can\\\'t be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect "event_value" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect "event_update_status" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_recovery_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n if (params.event_value === \'0\') {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n samanage.priority = params[\'priority_\' + severities[params.event_nseverity].name] || params.priority_default;\r\n\r\n SolarWinds.setParams(samanage);\r\n SolarWinds.setProxy(params.HTTPProxy);\r\n\r\n // Create incident for non trigger-based events.\r\n if (params.event_source !== \'0\' && params.event_recovery_value !== \'0\') {\r\n SolarWinds.createIncident(params.alert_subject, params.alert_message);\r\n }\r\n // Create incident for trigger-based events.\r\n else if (params.event_value === \'1\' && params.event_update_status === \'0\'\r\n && samanage.incident_id === \'{EVENT.TAGS.__zbx_solarwinds_inc_id}\') {\r\n var key = SolarWinds.createIncident(params.alert_subject, params.alert_message, fields);\r\n\r\n\r\n result.tags.__zbx_solarwinds_inc_id = key;\r\n result.tags.__zbx_solarwinds_inc_link = params.samanage_url +\r\n (params.samanage_url.endsWith(\'/\') ? \'\' : \'/\') + \'incidents/\' + key;\r\n }\r\n // Update created incident for trigger-based event.\r\n else {\r\n if (samanage.incident_id === \'{EVENT.TAGS.__zbx_solarwinds_inc_id}\' || samanage.incident_id === \'\') {\r\n throw \'Incorrect incident key given: \' + samanage.incident_id;\r\n }\r\n if (!params.alert_message) {\r\n throw \'Parameter "alert_message" can\\\'t be empty.\';\r\n }\r\n SolarWinds.updateIncident(params.alert_subject, fields, params.alert_message);\r\n }\r\n\r\n if (params.event_source === \'0\') {\r\n return JSON.stringify(result);\r\n }\r\n else {\r\n return \'OK\';\r\n }\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ SolarWinds SD Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s','1','1','{EVENT.TAGS.__zbx_solarwinds_inc_link}','SolarWinds incident ID: {EVENT.TAGS.__zbx_solarwinds_inc_id}','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('24','4','SysAid','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','var SysAid = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n var required = [\'url\', \'auth_user\', \'auth_password\', \'category_level_1\', \'category_level_2\',\r\n \'category_level_3\', \'incident_id\', \'template_id\', \'urgency_id\', \'incident_state\',\r\n \'default_priority_id\'\r\n ];\r\n\r\n required.forEach(function (field) {\r\n if (typeof params !== \'object\' || typeof params[field] === \'undefined\' || params[field] === \'\') {\r\n throw \'Required param is not set: "\' + field + \'".\';\r\n }\r\n });\r\n\r\n SysAid.params = params;\r\n if (typeof SysAid.params.url === \'string\' && !SysAid.params.url.endsWith(\'/\')) {\r\n SysAid.params.url += \'/\';\r\n }\r\n },\r\n\r\n login: function () {\r\n var result = SysAid.request(\'post\', \'api/v1/login\', {\r\n user_name: SysAid.params.auth_user,\r\n password: SysAid.params.auth_password\r\n });\r\n\r\n return result.response.user.id;\r\n },\r\n\r\n request: function (method, query, data) {\r\n var response,\r\n request = SysAid.req || (SysAid.req = new HttpRequest()),\r\n url = SysAid.params.url + query;\r\n\r\n if (typeof SysAid.HTTPProxy !== \'undefined\' && SysAid.HTTPProxy.trim() !== \'\') {\r\n request.setProxy(SysAid.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ SysAid Webhook ] Sending request: \' +\r\n url + ((typeof data === \'string\') ? (\' \' + data) : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ SysAid Webhook ] Received response with status code \' + request.getStatus() + \': \' + response);\r\n\r\n if (request.getStatus() !== 200) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n message += \': \' + response;\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ SysAid Webhook ] Failed to parse response received from SysAid\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (response === null || (typeof response.Error !== \'undefined\' && Object.keys(response.Error).length > 0)) {\r\n throw \'Request failed: \' + JSON.stringify(response.Error);\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n createIncident: function(subject, message, priority) {\r\n var result = SysAid.request(\'post\', \'api/v1/sr/?template=\' + encodeURIComponent(SysAid.params.template_id), {\r\n info: [\r\n {\r\n key: \'problem_type\',\r\n value: [\r\n SysAid.params.category_level_1,\r\n SysAid.params.category_level_2,\r\n SysAid.params.category_level_3\r\n ].join(\'_\')\r\n },\r\n {\r\n key: \'title\',\r\n value: subject\r\n },\r\n {\r\n key: \'description\',\r\n value: message\r\n },\r\n {\r\n key: \'status\',\r\n value: \'1\'\r\n },\r\n {\r\n key: \'urgency\',\r\n value: SysAid.params.urgency_id\r\n },\r\n {\r\n key: \'priority\',\r\n value: priority || SysAid.params.default_priority_id,\r\n }\r\n ]\r\n });\r\n\r\n if (result.response.id === \'undefined\') {\r\n throw \'Cannot create SysAid incident. Check debug log for more information.\';\r\n }\r\n\r\n return result.response.id;\r\n },\r\n\r\n updateTicket: function(note) {\r\n var date = new Date().getTime();\r\n\r\n SysAid.request(\'put\', \'api/v1/sr/\' + encodeURIComponent(SysAid.params.incident_id), {\r\n id: SysAid.params.incident_id,\r\n info: [\r\n {\r\n key: \'update_time\',\r\n value: date\r\n },\r\n {\r\n key: \'notes\',\r\n value: [\r\n {\r\n userName: \'Zabbix\',\r\n createDate: date,\r\n text: note\r\n }\r\n ]\r\n }\r\n ]\r\n });\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n params_sysaid = {},\r\n params_update = {},\r\n result = {tags: {}},\r\n required_params = [\'alert_subject\', \'event_source\', \'event_value\', \'event_update_status\'],\r\n severities = [\r\n {name: \'not_classified\', color: \'#97AAB3\'},\r\n {name: \'information\', color: \'#7499FF\'},\r\n {name: \'warning\', color: \'#FFC859\'},\r\n {name: \'average\', color: \'#FFA059\'},\r\n {name: \'high\', color: \'#E97659\'},\r\n {name: \'disaster\', color: \'#E45959\'},\r\n {name: \'resolved\', color: \'#009900\'},\r\n {name: null, color: \'#000000\'}\r\n ],\r\n priority;\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'sysaid_\')) {\r\n params_sysaid[key.substring(7)] = params[key];\r\n }\r\n else if (key.startsWith(\'event_update_\')) {\r\n params_update[key.substring(13)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key].trim() === \'\') {\r\n throw \'Parameter "\' + key + \'" cannot be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect "event_value" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_source === \'0\' && params.event_update_status !== \'0\' && params.event_update_status !== \'1\') {\r\n throw \'Incorrect "event_update_status" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n if (params.event_source === \'0\' && ((params.event_value === \'1\' && params.event_update_status === \'1\')\r\n || (params.event_value === \'0\' && (params.event_update_status === \'0\' || params.event_update_status === \'1\')))\r\n && (isNaN(parseInt(params.sysaid_incident_id)) || parseInt(params.sysaid_incident_id) < 1 )) {\r\n throw \'Incorrect "sysaid_incident_id" parameter given: \' + params.sysaid_incident_id + \'\\nMust be positive integer.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n if (params.event_value === \'0\') {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n priority = params[\'severity_\' + severities[params.event_nseverity].name];\r\n priority = priority && priority.trim() || severities[7].name;\r\n\r\n SysAid.setParams(params_sysaid);\r\n SysAid.HTTPProxy = params.HTTPProxy;\r\n SysAid.login();\r\n\r\n if (params.event_source !== \'0\' && params.event_value !== \'0\') {\r\n // Create ticket for non trigger-based events.\r\n SysAid.createIncident(params.alert_subject, params.alert_message, priority);\r\n }\r\n else if (params.event_value === \'1\' && params_update.status === \'0\') {\r\n // Create ticket for trigger-based events.\r\n var incident_id = SysAid.createIncident(params.alert_subject, params.alert_subject + \'\\n\' + params.alert_message +\r\n \'\\n\' + params.zabbix_url + (params.zabbix_url.endsWith(\'/\') ? \'\' : \'/\') + \'tr_events.php?triggerid=\' +\r\n params.trigger_id + \'&eventid=\' + params.event_id + \'\\n\', priority\r\n );\r\n\r\n result.tags.__zbx_sysaid_incident_id = incident_id;\r\n result.tags.__zbx_sysaid_incidentlink = params.sysaid_url +\r\n (params.sysaid_url.endsWith(\'/\') ? \'\' : \'/\') + \'SREdit.jsp?id=\' + incident_id + \'&fromId=IncidentsList\';\r\n }\r\n else {\r\n // Update created ticket for trigger-based event.\r\n SysAid.updateTicket(params.alert_subject + \'\\n\' + params.alert_message);\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ SysAid Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s','1','1','{EVENT.TAGS.__zbx_sysaid_incidentlink}','SysAid: incident #{EVENT.TAGS.__zbx_sysaid_incident_id}','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('25','4','TOPdesk','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','var Media = {\r\n params: {},\r\n name: \'\',\r\n labels: [],\r\n HTTPProxy: \'\',\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n Media.params = params;\r\n Media.params.api += Media.params.api.endsWith(\'/\') ? \'\' : \'/\';\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n if (typeof HTTPProxy !== \'undefined\' && HTTPProxy.trim() !== \'\') {\r\n Media.HTTPProxy = HTTPProxy;\r\n }\r\n },\r\n\r\n request: function (method, query, data) {\r\n [\'api\', \'token\'].forEach(function (field) {\r\n if (typeof Media.params !== \'object\' || typeof Media.params[field] === \'undefined\'\r\n || Media.params[field] === \'\') {\r\n throw \'Required \' + Media.name + \' param is not set: "\' + field + \'".\';\r\n }\r\n });\r\n\r\n var response,\r\n url = Media.params.api + query,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Accept: application/json\');\r\n request.addHeader(\'Authorization: \' + Media.params.token);\r\n request.setProxy(Media.HTTPProxy);\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ \' + Media.name + \' Webhook ] Sending request: \' +\r\n url + ((typeof data === \'string\') ? (\'\\n\' + data) : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ \' + Media.name + \' Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ \' + Media.name + \' Webhook ] Failed to parse response.\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response !== null) {\r\n if (typeof response.errors === \'object\' && Object.keys(response.errors).length > 0) {\r\n message += \': \' + JSON.stringify(response.errors);\r\n }\r\n else if (typeof response.errorMessages === \'object\' && Object.keys(response.errorMessages).length > 0) {\r\n message += \': \' + JSON.stringify(response.errorMessages);\r\n }\r\n else if (typeof response.message === \'string\') {\r\n message += \': \' + response.message;\r\n }\r\n }\r\n\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n }\r\n};\r\n\r\ntry {\r\n var result = {tags: {}},\r\n params = JSON.parse(value),\r\n media = {},\r\n fields = {},\r\n resp = {},\r\n required_params = [\r\n \'alert_subject\',\r\n \'alert_message\',\r\n \'event_id\',\r\n \'event_source\',\r\n \'event_value\',\r\n \'event_update_status\',\r\n \'topdesk_api\',\r\n \'topdesk_user\',\r\n \'topdesk_password\'\r\n ],\r\n severities = [\r\n \'not_classified\',\r\n \'information\',\r\n \'warning\',\r\n \'average\',\r\n \'high\',\r\n \'disaster\',\r\n \'resolved\',\r\n \'default\'\r\n ],\r\n priority;\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (required_params.indexOf(key) !== -1 && params[key].trim() === \'\') {\r\n throw \'Parameter "\' + key + \'" cannot be empty.\';\r\n }\r\n if (key.startsWith(\'topdesk_\')) {\r\n media[key.substring(8)] = params[key];\r\n }\r\n });\r\n\r\n // Possible values of event_source:\r\n // 0 - Trigger, 1 - Discovery, 2 - Autoregistration, 3 - Internal.\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: "\' + params.event_source + \'".\\nMust be 0-3.\';\r\n }\r\n\r\n // Check event_value for trigger-based and internal events.\r\n // Possible values: 1 for problem, 0 for recovering\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect "event_value" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check event_update_status only for trigger-based events.\r\n // Possible values: 0 - Webhook was called because of problem/recovery event, 1 - Update operation.\r\n if (params.event_source === \'0\' && params.event_update_status !== \'0\' && params.event_update_status !== \'1\') {\r\n throw \'Incorrect "event_update_status" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check event_id for a numeric value.\r\n if (isNaN(parseInt(params.event_id)) || params.event_id < 1) {\r\n throw \'Incorrect "event_id" parameter given: \' + params.event_id + \'\\nMust be a positive number.\';\r\n }\r\n\r\n if ((params.event_source === \'1\' || params.event_source === \'2\') && params.event_value === \'0\') {\r\n throw \'Recovery operations are supported only for Trigger and Internal actions.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n if (params.event_value === \'0\') {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n priority = params[\'severity_\' + severities[params.event_nseverity]];\r\n params.zbxurl = params.zbxurl + (params.zbxurl.endsWith(\'/\') ? \'\' : \'/\');\r\n\r\n Media.name = \'TOPdesk\';\r\n Media.setParams(media);\r\n Media.params.token = \'Basic \' + btoa(Media.params.user + \':\' + Media.params.password);\r\n Media.setProxy(params.HTTPProxy);\r\n\r\n // Create an issue.\r\n // Numeric value of the event that triggered an action (1 for problem, 0 for recovering).\r\n // Numeric value of the problem update status. Possible values:\r\n // 0 - Webhook was called because of problem/recovery event, 1 - Update operation.\r\n if ((params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0)\r\n || (params.event_source == 3 && params.event_value == 1)\r\n || params.event_source == 1 || params.event_source == 2) {\r\n Zabbix.log(4, \'[ \' + Media.name + \' Webhook ] Request of the ticket creating.\');\r\n fields.caller = {dynamicName: \'Zabbix\'};\r\n fields.briefDescription = params.alert_subject;\r\n fields.request = params.alert_message.replace(/\\n/g, \'
\');\r\n fields.priority = {name: priority};\r\n fields.processingStatus = {name: Media.params.status};\r\n fields.externalNumber = params.event_id;\r\n fields.request += \'
\' + params.zbxurl;\r\n\r\n if (params.event_source === \'0\') {\r\n fields.request += \'tr_events.php?triggerid=\' + params.trigger_id + \'&eventid=\' + params.event_id;\r\n }\r\n\r\n resp = Media.request(\'post\', \'tas/api/incidents\', fields);\r\n if (typeof resp.response !== \'object\' || typeof resp.response.id === \'undefined\') {\r\n throw \'Cannot create \' + Media.name + \' issue. Check debug log for more information.\';\r\n }\r\n\r\n if (params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0) {\r\n result.tags.__zbx_tpd_issuekey = resp.response.number;\r\n result.tags.__zbx_tpd_issuelink = Media.params.api +\r\n \'tas/secure/incident?action=show&unid=\' + resp.response.id;\r\n }\r\n }\r\n // Update a created issue.\r\n else {\r\n if (params.event_source == 3 && params.event_value == 0) {\r\n throw \'Internal event recovery actions are not supported.\';\r\n }\r\n\r\n Zabbix.log(4, \'[ \' + Media.name + \' Webhook ] Request of the ticket updating.\');\r\n fields.action = params.alert_message.replace(/\\n/g, \'
\');\r\n\r\n resp = Media.request(\'put\', \'tas/api/incidents/number/\' + Media.params.issue_key, fields);\r\n if (typeof resp.response !== \'object\' || typeof resp.response.id === \'undefined\'\r\n || resp.response.number !== Media.params.issue_key) {\r\n throw \'Cannot update \' + Media.name + \' issue. Check debug log for more information.\';\r\n }\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ \' + Media.name + \' Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s','1','1','{EVENT.TAGS.__zbx_tpd_issuelink}','TOPdesk: {EVENT.TAGS.__zbx_tpd_issuekey}','Please refer to https://developers.topdesk.com/documentation/index.html and https://www.zabbix.com/documentation/6.0/manual/config/notifications/media/webhook#example_scripts.\r\n \r\nSet global macro {$ZABBIX.URL} with your Zabbix server URL.\r\nAdd a dedicated user with the media type "TOPdesk".\r\nChange the values of the variables topdesk_api (URL), topdesk_password, topdesk_user. The topdesk_status is the default status for creating a new TOPdesk ticket.');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('26','4','iTop','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','var Itop = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n if (params.log !== \'private_log\' && params.log !== \'public_log\') {\r\n throw \'Incorrect "itop_log" parameter given: \' + params.log + \'\\nMust be "private_log" or "public_log".\';\r\n }\r\n\r\n Itop.params = params;\r\n if (typeof Itop.params.url === \'string\') {\r\n if (!Itop.params.url.endsWith(\'/\')) {\r\n Itop.params.url += \'/\';\r\n }\r\n\r\n Itop.params.url += \'webservices/rest.php?version=\' + encodeURIComponent(Itop.params.api_version);\r\n }\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n Itop.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n setCreatePayload: function () {\r\n json_data.operation = \'core/create\';\r\n json_data.fields.org_id = Itop.params.organization_id;\r\n json_data.fields.title = params.alert_subject;\r\n json_data.fields.description = params.alert_message.replace(\'<\', \'<\')\r\n .replace(\'>\', \'>\')\r\n .replace(/(?:\\r\\n|\\r|\\n)/g, \'
\');\r\n },\r\n\r\n setUpdatePayload: function () {\r\n json_data.operation = \'core/update\';\r\n json_data.key = Itop.params.id;\r\n json_data.fields.title = params.alert_subject;\r\n json_data.fields[Itop.params.log] = {\r\n add_item: {\r\n message: params.alert_subject + \'\\n\' + params.alert_message,\r\n format: \'text\'\r\n }\r\n };\r\n },\r\n\r\n request: function (data) {\r\n [\'url\', \'user\', \'password\', \'organization_id\', \'class\', \'api_version\', \'id\'].forEach(function (field) {\r\n if (typeof Itop.params !== \'object\' || typeof Itop.params[field] === \'undefined\'\r\n || Itop.params[field] === \'\' ) {\r\n throw \'Required Itop param is not set: "itop_\' + field + \'".\';\r\n }\r\n });\r\n\r\n var response,\r\n url = Itop.params.url,\r\n request = new HttpRequest(),\r\n object;\r\n\r\n request.addHeader(\'Content-Type: multipart/form-data\');\r\n request.addHeader(\'Authorization: Basic \' + btoa(Itop.params.user + \':\' + Itop.params.password));\r\n\r\n if (Itop.HTTPProxy) {\r\n request.setProxy(Itop.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ iTop Webhook ] Sending request: \' + url + \'&json_data=\' + data);\r\n\r\n response = request.post(url + \'&json_data=\' + encodeURIComponent(data));\r\n\r\n Zabbix.log(4, \'[ iTop Webhook ] Received response with status code \' + request.getStatus() + \'\\n\' + response);\r\n\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ iTop Webhook ] Failed to parse response received from iTop\');\r\n throw \'Failed to parse response received from iTop.\\nRequest status code \' +\r\n request.getStatus() + \'. Check debug log for more information.\';\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n throw \'Request failed with status code \' + request.getStatus() + \'. Check debug log for more information.\';\r\n }\r\n else if (typeof response.code !== \'undefined\' && response.code !== 0) {\r\n throw \'Request failed with iTop code \' + response.code + \': \' +\r\n JSON.stringify(response.message) + \'. Check debug log for more information.\';\r\n }\r\n else {\r\n Object.keys(response.objects)\r\n .forEach(function (key) {\r\n object = response.objects[key];\r\n });\r\n \r\n return {\r\n status: request.getStatus(),\r\n response: object.fields\r\n };\r\n }\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n json_data = {},\r\n itop_params = {},\r\n result = {tags: {}},\r\n required_params = [\r\n \'alert_subject\', \'summary\', \'event_recovery_value\',\r\n \'event_source\', \'event_value\', \'action_name\'\r\n ];\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'itop_\')) {\r\n itop_params[key.substring(5)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key] === \'\') {\r\n throw \'Parameter "\' + key + \'" can\\\'t be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect "event_value" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect "event_update_status" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_recovery_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n Itop.setParams(itop_params);\r\n Itop.setProxy(params.HTTPProxy);\r\n\r\n json_data.operation = \'\';\r\n json_data.class = Itop.params.class;\r\n json_data.comment = Itop.params.comment;\r\n json_data.output_fields = \'id, friendlyname\';\r\n json_data.fields = {};\r\n\r\n // Create issue for non trigger-based events.\r\n if (params.event_source !== \'0\' && params.event_recovery_value !== \'0\') {\r\n Itop.setCreatePayload();\r\n Itop.request(json_data);\r\n }\r\n // Create issue for trigger-based events.\r\n else if (params.event_value === \'1\' && params.event_update_status === \'0\'\r\n && Itop.params.id === \'{EVENT.TAGS.__zbx_itop_id}\') {\r\n Itop.setCreatePayload();\r\n\r\n var response = Itop.request(json_data);\r\n\r\n result.tags.__zbx_itop_id = response.response.id;\r\n result.tags.__zbx_itop_key = response.response.friendlyname;\r\n result.tags.__zbx_itop_link = params.itop_url + (params.itop_url.endsWith(\'/\') ? \'\' : \'/\') +\r\n \'pages/UI.php?operation=details&class=\' + encodeURIComponent(Itop.params.class) + \'&id=\' +\r\n encodeURIComponent(response.response.id);\r\n }\r\n // Update created issue for trigger-based event.\r\n else {\r\n if (Itop.params.id === \'{EVENT.TAGS.__zbx_itop_id}\') {\r\n throw \'Incorrect iTop ticket ID given: \' + Itop.params.id;\r\n }\r\n Itop.setUpdatePayload();\r\n Itop.request(json_data);\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ iTop Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s','1','1','{EVENT.TAGS.__zbx_itop_link}','iTop: {EVENT.TAGS.__zbx_itop_key}','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('27','4','Rocket.Chat','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','var RocketChat = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n RocketChat.params = params;\r\n if (RocketChat.params.url && RocketChat.params.api_url) {\r\n if (!RocketChat.params.url.endsWith(\'/\')) {\r\n RocketChat.params.url += \'/\';\r\n }\r\n if (!RocketChat.params.api_url.endsWith(\'/\')) {\r\n RocketChat.params.api_url += \'/\';\r\n }\r\n if (RocketChat.params.api_url.startsWith(\'/\')) {\r\n RocketChat.params.api_url = RocketChat.params.api_url.substring(1);\r\n }\r\n\r\n RocketChat.params.url += RocketChat.params.api_url;\r\n }\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n RocketChat.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n addFields: function (fields) {\r\n var data = [];\r\n\r\n if (typeof fields === \'object\' && Object.keys(fields).length) {\r\n Object.keys(fields)\r\n .forEach(function(field) {\r\n if (fields[field] === \'\') {\r\n Zabbix.log(4, \'[ RocketChat Webhook ] Field "\' + field +\r\n \'" can\\\'t be empty. The field ignored.\');\r\n }\r\n else {\r\n try {\r\n var parts = field.split(\':\'),\r\n prefix = parts[0].split(\'_\');\r\n\r\n if (typeof prefix[2] === \'undefined\'\r\n || (prefix[2] === \'p\' && params.event_value === \'1\')\r\n || (prefix[2] === \'r\' && params.event_value === \'0\')) {\r\n data.push({\r\n title: field.substring(field.indexOf(\':\') + 1),\r\n value: fields[field],\r\n short: prefix[1] === \'short\'\r\n });\r\n }\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ RocketChat Webhook ] Can\\\'t parse field "\' + field +\r\n \'". The field ignored.\');\r\n }\r\n }\r\n });\r\n }\r\n\r\n return data;\r\n },\r\n\r\n request: function (method, query, data) {\r\n [\'url\', \'api_url\', \'user_id\', \'user_token\', \'send_to\'].forEach(function (field) {\r\n if (typeof RocketChat.params !== \'object\' || typeof RocketChat.params[field] === \'undefined\'\r\n || RocketChat.params[field] === \'\' ) {\r\n throw \'Required parameter is not set: "\' + field + \'".\';\r\n }\r\n });\r\n\r\n var response,\r\n url = RocketChat.params.url + query,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'X-Auth-Token:\' + RocketChat.params.user_token);\r\n request.addHeader(\'X-User-Id:\' + RocketChat.params.user_id);\r\n\r\n if (typeof RocketChat.HTTPProxy !== \'undefined\' && RocketChat.HTTPProxy !== \'\') {\r\n request.setProxy(RocketChat.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ RocketChat Webhook ] Sending request: \' + url +\r\n ((typeof data === \'string\') ? (\'\\n\' + data) : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ RocketChat Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ RocketChat Webhook ] Failed to parse response received from RocketChat\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response !== null && typeof response.message !== \'undefined\') {\r\n message += \': \' + JSON.stringify(response.message);\r\n }\r\n else if (response !== null && typeof response.error !== \'undefined\') {\r\n message += \': \' + JSON.stringify(response.error);\r\n }\r\n\r\n throw message + \'. Check debug log for more information.\';\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n postMessage: function(use_default_message, message, fields) {\r\n var data = {\r\n channel: RocketChat.params.send_to,\r\n attachments: [{\r\n collapsed: false,\r\n color: RocketChat.params.color,\r\n title: params.alert_subject\r\n }]\r\n };\r\n\r\n if (RocketChat.params.title_link) {\r\n data.attachments[0].title_link = RocketChat.params.title_link;\r\n }\r\n\r\n if (use_default_message) {\r\n data.attachments[0].text = message;\r\n }\r\n else {\r\n data.attachments[0].fields = RocketChat.addFields(fields);\r\n }\r\n\r\n var result = RocketChat.request(\'post\', \'chat.postMessage\', data);\r\n\r\n if (typeof result.response !== \'object\' || typeof result.response.message._id === \'undefined\') {\r\n throw \'Cannot send RocketChat message. Check debug log for more information.\';\r\n }\r\n\r\n return {\r\n id: result.response.message._id,\r\n rid: result.response.message.rid,\r\n channel: result.response.channel\r\n };\r\n },\r\n\r\n sendMessage: function(update, fields) {\r\n\r\n var data = {\r\n message: {\r\n rid: RocketChat.params.room_id,\r\n tmid: RocketChat.params.msg_id,\r\n tshow: true\r\n }\r\n };\r\n\r\n if (update.status === \'0\') {\r\n data.message.attachments = [{\r\n collapsed: false,\r\n color: RocketChat.params.color,\r\n title: params.alert_subject,\r\n title_link: RocketChat.params.title_link,\r\n fields: RocketChat.addFields(fields)\r\n }];\r\n }\r\n else {\r\n data.message.alias = update.user;\r\n data.message.msg = update.action;\r\n if (update.message) {\r\n data.message.attachments = [{\r\n color: RocketChat.params.color,\r\n text: update.message\r\n }];\r\n }\r\n }\r\n\r\n RocketChat.request(\'post\', \'chat.sendMessage\', data);\r\n },\r\n\r\n getMessageLink: function(rid, id) {\r\n var room = RocketChat.request(\'get\', \'rooms.info?roomId=\' + encodeURIComponent(rid)),\r\n link = params.rc_url +\r\n (params.rc_url.endsWith(\'/\') ? \'\' : \'/\');\r\n\r\n switch (room.response.room.t) {\r\n case \'c\':\r\n link += \'channel/\' + room.response.room.name + \'?msg=\' + id;\r\n break;\r\n\r\n case \'p\':\r\n link += \'group/\' + room.response.room.name + \'?msg=\' + id;\r\n break;\r\n\r\n case \'d\':\r\n link += \'direct/\' + rid + \'?msg=\' + id;\r\n break;\r\n\r\n default:\r\n Zabbix.log(4, \'[ RocketChat Webhook ] Can\\\'t get room type. Link to message will not be added.\');\r\n }\r\n\r\n return link;\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n response,\r\n fields = {},\r\n rc = {},\r\n update = {},\r\n result = {tags: {}},\r\n required_params = [\'alert_subject\', \'alert_message\', \'event_source\', \'event_value\'],\r\n severities = [\r\n {name: \'not_classified\', color: \'#97AAB3\'},\r\n {name: \'information\', color: \'#7499FF\'},\r\n {name: \'warning\', color: \'#FFC859\'},\r\n {name: \'average\', color: \'#FFA059\'},\r\n {name: \'high\', color: \'#E97659\'},\r\n {name: \'disaster\', color: \'#E45959\'},\r\n {name: \'resolved\', color: \'#009900\'},\r\n {name: \'default\', color: \'#000000\'}\r\n ];\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'rc_\')) {\r\n rc[key.substring(3)] = params[key];\r\n }\r\n else if (key.startsWith(\'field_\')) {\r\n fields[key.substring(6)] = params[key];\r\n }\r\n else if (key.startsWith(\'event_update_\')) {\r\n update[key.substring(13)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key] === \'\') {\r\n throw \'Parameter "\' + key + \'" can\\\'t be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Forcing parameters for non trigger-based events.\r\n if (params.event_source !== \'0\') {\r\n params.use_default_message = \'true\';\r\n params.event_nseverity = \'0\';\r\n params.rc_title_link = false;\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect "event_value" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect "event_update_status" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n if (params.event_value === \'0\') {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n RocketChat.setParams(rc);\r\n RocketChat.setProxy(params.HTTPProxy);\r\n RocketChat.params.color = severities[params.event_nseverity].color;\r\n\r\n // Send default message if use_default_message === true.\r\n if (params.use_default_message.toLowerCase() === \'true\') {\r\n response = RocketChat.postMessage(true, params.alert_message);\r\n result.tags.__zbx_rc_id = response.id;\r\n result.tags.__zbx_rc_rid = response.rid;\r\n result.tags.__zbx_rc_msg_url = RocketChat.getMessageLink(response.rid, response.id);\r\n }\r\n // Send message for trigger-based events.\r\n else if (params.event_value === \'1\' && update.status === \'0\') {\r\n response = RocketChat.postMessage(false, params.alert_message, fields);\r\n result.tags.__zbx_rc_id = response.id;\r\n result.tags.__zbx_rc_rid = response.rid;\r\n result.tags.__zbx_rc_msg_url = RocketChat.getMessageLink(response.rid, response.id);\r\n }\r\n // Send thread message for trigger-based event.\r\n else {\r\n RocketChat.sendMessage(update, fields);\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ RocketChat Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s','1','1','{EVENT.TAGS.__zbx_rc_msg_url}','Rocket.Chat','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('28','4','VictorOps','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','var VictorOps = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n VictorOps.params = params;\r\n if (VictorOps.params.endpoint) {\r\n if (!VictorOps.params.endpoint.endsWith(\'/\')) {\r\n VictorOps.params.endpoint += \'/\';\r\n }\r\n\r\n if (typeof VictorOps.params.routing_key !== \'undefined\'\r\n && VictorOps.params.routing_key !== \'{ALERT.SENDTO}\'\r\n && VictorOps.params.routing_key !== \'Default\') {\r\n VictorOps.params.endpoint += VictorOps.params.routing_key;\r\n }\r\n }\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n VictorOps.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n addFields: function (fields) {\r\n var data = {};\r\n\r\n if (typeof fields === \'object\') {\r\n Object.keys(fields)\r\n .forEach(function(field) {\r\n if (fields[field] === \'\') {\r\n Zabbix.log(4, \'[ VictorOps Webhook ] Field "\' + field +\r\n \'" can\\\'t be empty. The field ignored.\');\r\n }\r\n else {\r\n try {\r\n var parts = field.split(\':\'),\r\n prefix = parts[0].split(\'_\');\r\n\r\n if (typeof prefix[1] === \'undefined\'\r\n || (prefix[1] === \'p\' && params.event_value === \'1\'\r\n && (params.event_update_status === \'0\'\r\n || params.event_update_status === \'{EVENT.UPDATE.STATUS}\'))\r\n || (prefix[1] === \'r\' && params.event_value === \'0\'\r\n && (params.event_update_status === \'0\'\r\n || params.event_update_status === \'{EVENT.UPDATE.STATUS}\'))\r\n || (prefix[1] === \'u\' && params.event_update_status === \'1\')) {\r\n data[field.substring(field.indexOf(\':\') + 1)] = fields[field];\r\n }\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ VictorOps Webhook ] Can\\\'t parse field "\' + field +\r\n \'". The field ignored.\');\r\n }\r\n }\r\n });\r\n }\r\n\r\n return data;\r\n },\r\n\r\n request: function (data) {\r\n if (typeof VictorOps.params !== \'object\' || typeof VictorOps.params.endpoint === \'undefined\'\r\n || VictorOps.params.endpoint === \'\' ) {\r\n throw \'Required parameter is not set: "vops_endpoint".\';\r\n }\r\n\r\n var response,\r\n url = VictorOps.params.endpoint,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n\r\n if (typeof VictorOps.HTTPProxy !== \'undefined\' && VictorOps.HTTPProxy !== \'\') {\r\n request.setProxy(VictorOps.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ VictorOps Webhook ] Sending request: \' + url +\r\n ((typeof data === \'string\') ? (\'\\n\' + data) : \'\'));\r\n\r\n response = request.post(url, data);\r\n\r\n Zabbix.log(4, \'[ VictorOps Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ VictorOps Webhook ] Failed to parse response received from VictorOps\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response !== null && typeof response.messages !== \'undefined\') {\r\n message += \': \' + JSON.stringify(response.messages);\r\n }\r\n\r\n throw message + \'. Check debug log for more information.\';\r\n }\r\n\r\n return response;\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n fields = {},\r\n vops = {},\r\n required_params = [\'event_source\', \'event_value\', \'priority_update\'],\r\n severities = [\r\n {name: \'not_classified\', color: \'#97AAB3\'},\r\n {name: \'information\', color: \'#7499FF\'},\r\n {name: \'warning\', color: \'#FFC859\'},\r\n {name: \'average\', color: \'#FFA059\'},\r\n {name: \'high\', color: \'#E97659\'},\r\n {name: \'disaster\', color: \'#E45959\'},\r\n {name: \'resolved\', color: \'#009900\'},\r\n {name: \'default\', color: \'#000000\'}\r\n ];\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'vops_\')) {\r\n vops[key.substring(5)] = params[key];\r\n }\r\n else if (key.startsWith(\'field\')) {\r\n fields[key.substring(5)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key] === \'\') {\r\n throw \'Parameter "\' + key + \'" can\\\'t be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect "event_value" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect "event_update_status" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n if (params.event_value === \'0\') {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n if (params.event_update_status === \'1\') {\r\n fields[\':message_type\'] = params.priority_update;\r\n }\r\n else {\r\n fields[\':message_type\'] = params[\'priority_\' + severities[params.event_nseverity].name]\r\n || \'INFO\';\r\n }\r\n\r\n if (params.event_info && params.event_source === \'0\') {\r\n fields[\':event_info\'] = params.event_info;\r\n }\r\n\r\n VictorOps.setParams(vops);\r\n VictorOps.setProxy(params.HTTPProxy);\r\n VictorOps.request(VictorOps.addFields(fields));\r\n\r\n return \'OK\';\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ VictorOps Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s','0','0','','','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('29','4','Brevis.one','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','var BrevisOne = {\r\n params: [],\r\n\r\n addParam: function (name, value) {\r\n BrevisOne.params.push(name + \'=\' + encodeURIComponent(value));\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n BrevisOne.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n setPayload: function (params) {\r\n var parts = params.send_to.split(\':\'),\r\n defaultValues = {\r\n ring: \'true\',\r\n flash: \'true\',\r\n telauto: \'false\'\r\n };\r\n\r\n BrevisOne.addParam(\'username\', params.username);\r\n BrevisOne.addParam(\'password\', params.password);\r\n BrevisOne.addParam(\'text\', params.text);\r\n\r\n if (parts.length > 1) {\r\n BrevisOne.addParam(\'mode\', parts[0]);\r\n BrevisOne.addParam(\'to\', parts[1]);\r\n }\r\n else {\r\n BrevisOne.addParam(\'to\', parts[0]);\r\n }\r\n\r\n Object.keys(defaultValues)\r\n .forEach(function (key) {\r\n if (params[key] && params[key].trim() && params[key].toLowerCase() === defaultValues[key]) {\r\n BrevisOne.addParam(key, defaultValues[key]);\r\n }\r\n });\r\n },\r\n\r\n request: function () {\r\n var response,\r\n request = new HttpRequest(),\r\n data = \'?\' + BrevisOne.params.join(\'&\');\r\n\r\n request.addHeader(\'Content-Type: multipart/form-data\');\r\n\r\n if (typeof BrevisOne.HTTPProxy !== \'undefined\' && BrevisOne.HTTPProxy !== \'\') {\r\n request.setProxy(BrevisOne.HTTPProxy);\r\n }\r\n\r\n Zabbix.log(4, \'[ BrevisOne Webhook ] Sending request.\');\r\n\r\n response = request.post(params.endpoint + data);\r\n\r\n Zabbix.log(4, \'[ BrevisOne Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response) {\r\n message += \': \' + response;\r\n }\r\n\r\n throw message + \'. Check debug log for more information.\';\r\n }\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value);\r\n\r\n [\'endpoint\', \'password\', \'username\', \'text\', \'send_to\'].forEach(function (field) {\r\n if (typeof params !== \'object\' || typeof params[field] === \'undefined\'\r\n || !params[field].trim()) {\r\n throw \'Required parameter is not set: "\' + field + \'".\';\r\n }\r\n });\r\n\r\n if (params.send_to === \'{ALERT.SENDTO}\') {\r\n throw \'Required parameter is not set: "send_to".\';\r\n }\r\n\r\n BrevisOne.setProxy(params.HTTPProxy);\r\n BrevisOne.setPayload(params);\r\n BrevisOne.request();\r\n\r\n return \'OK\';\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ BrevisOne Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s','0','0','','','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('30','4','Express.ms','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','var Express = {\r\n params: [],\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n Express.params = params;\r\n\r\n if (typeof Express.params.url === \'string\' && !Express.params.url.endsWith(\'/\')) {\r\n Express.params.url += \'/\';\r\n }\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n Express.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n request: function (query, data) {\r\n var response,\r\n url = Express.params.url + query,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Authorization: Bearer \' + Express.params.token);\r\n\r\n if (typeof Express.HTTPProxy !== \'undefined\' && Express.HTTPProxy !== \'\') {\r\n request.setProxy(Express.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ Express Webhook ] Sending request: \' + url +\r\n ((typeof data === \'string\') ? (\'\\n\' + data) : \'\'));\r\n\r\n response = request.post(url, data);\r\n\r\n Zabbix.log(4, \'[ Express Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ Express Webhook ] Failed to parse response received from Express\');\r\n response = {};\r\n }\r\n }\r\n\r\n if (response.status !== \'ok\') {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (typeof response.reason !== \'undefined\') {\r\n message += \': \' + JSON.stringify(response.reason);\r\n }\r\n\r\n throw message + \'. Check debug log for more information.\';\r\n }\r\n\r\n return response.result;\r\n },\r\n\r\n postMessage: function (is_problem) {\r\n var data,\r\n url,\r\n result = {tags: {}},\r\n response;\r\n\r\n if (is_problem) {\r\n data = {\r\n group_chat_id: Express.params.send_to,\r\n notification: {\r\n status: \'ok\',\r\n body: Express.params.message\r\n }\r\n };\r\n url = \'api/v4/botx/notifications/direct\';\r\n }\r\n else {\r\n data = {\r\n reply: {\r\n status: \'ok\',\r\n body: Express.params.message\r\n }\r\n };\r\n url = \'api/v3/botx/events/reply_event\';\r\n\r\n try {\r\n var tags = JSON.parse(Express.params.tags);\r\n }\r\n catch (error) {\r\n throw \'Value of "express_tags" is not JSON. Value: \' + Express.params.tags + \'.\';\r\n }\r\n\r\n tags.forEach(function(tag) {\r\n if (tag.tag === \'__zbx_ex_sync_id_\' + Express.params.send_to) {\r\n data.source_sync_id = tag.value;\r\n }\r\n });\r\n\r\n if (!data.source_sync_id) {\r\n throw \'Cannot update data. sync_id for the provided sender is unknown.\';\r\n }\r\n }\r\n\r\n response = Express.request(url, data);\r\n\r\n if (is_problem && response.sync_id) {\r\n result.tags[\'__zbx_ex_sync_id_\' + Express.params.send_to] = response.sync_id;\r\n\r\n return JSON.stringify(result);\r\n }\r\n else {\r\n return \'OK\';\r\n }\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n express = {},\r\n required_params = [\r\n \'express_url\', \'express_send_to\', \'express_message\', \'express_tags\', \'express_token\',\r\n \'event_source\', \'event_value\', \'event_update_status\'\r\n ];\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'express_\')) {\r\n express[key.substring(8)] = params[key];\r\n }\r\n\r\n if (required_params.indexOf(key) !== -1\r\n && (params[key].trim() === \'\' || params[key] === \'{ALERT.SENDTO}\')) {\r\n throw \'Parameter "\' + key + \'" can\\\'t be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Forcing event_value and event_update_status for non trigger-based events.\r\n if (params.event_source !== \'0\' ) {\r\n params.event_value = \'1\';\r\n params.event_update_status = \'0\';\r\n }\r\n\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\') {\r\n throw \'Incorrect "event_value" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect "event_update_status" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n Express.setParams(express);\r\n Express.setProxy(params.HTTPProxy);\r\n\r\n return Express.postMessage(params.event_value === \'1\' && params.event_update_status === \'0\');\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ Express Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s','1','0','','','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('31','4','ManageEngine ServiceDesk','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','var MEngine = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n MEngine.params = params;\r\n if (typeof MEngine.params.url === \'string\') {\r\n if (!MEngine.params.url.endsWith(\'/\')) {\r\n MEngine.params.url += \'/\';\r\n }\r\n\r\n MEngine.params.url += \'api/v3/\';\r\n }\r\n\r\n if (MEngine.params.on_premise.toLowerCase() !== \'true\'\r\n && typeof MEngine.params.on_demand_url_auth === \'string\') {\r\n if (!MEngine.params.on_demand_url_auth.endsWith(\'/\')) {\r\n MEngine.params.on_demand_url_auth += \'/\';\r\n }\r\n\r\n MEngine.params.on_demand_url_auth += \'oauth/v2/token?\';\r\n }\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n MEngine.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n createLink: function (id, url) {\r\n return url + (url.endsWith(\'/\') ? \'\' : \'/\') +\r\n ((MEngine.params.on_premise.toLowerCase() === \'true\')\r\n ? (\'WorkOrder.do?woMode=viewWO&woID=\' + id)\r\n : (\'app/itdesk/ui/requests/\' + id + \'/details\')\r\n );\r\n },\r\n\r\n refreshAccessToken: function () {\r\n [\r\n \'on_demand_url_auth\',\r\n \'on_demand_refresh_token\',\r\n \'on_demand_client_id\',\r\n \'on_demand_client_secret\'\r\n ].forEach(function (field) {\r\n if (typeof MEngine.params !== \'object\' || typeof MEngine.params[field] === \'undefined\'\r\n || MEngine.params[field].trim() === \'\' ) {\r\n throw \'Required MEngine param is not set: "sd_\' + field + \'".\';\r\n }\r\n });\r\n\r\n var response,\r\n request = new HttpRequest(),\r\n url = MEngine.params.on_demand_url_auth +\r\n \'refresh_token=\' + encodeURIComponent(MEngine.params.on_demand_refresh_token) +\r\n \'&grant_type=refresh_token&client_id=\' + encodeURIComponent(MEngine.params.on_demand_client_id) +\r\n \'&client_secret=\' + encodeURIComponent(MEngine.params.on_demand_client_secret) +\r\n \'&redirect_uri=https://www.zoho.com&scope=SDPOnDemand.requests.ALL\';\r\n\r\n if (MEngine.HTTPProxy) {\r\n request.setProxy(MEngine.HTTPProxy);\r\n }\r\n\r\n Zabbix.log(4, \'[ ManageEngine Webhook ] Refreshing access token. Request: \' + url);\r\n\r\n response = request.post(url);\r\n\r\n Zabbix.log(4, \'[ ManageEngine Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ ManageEngine Webhook ] Failed to parse response received from Zoho Accounts\');\r\n }\r\n\r\n if ((request.getStatus() < 200 || request.getStatus() >= 300) && !response.access_token) {\r\n throw \'Access token refresh failed with HTTP status code \' + request.getStatus() +\r\n \'. Check debug log for more information.\';\r\n }\r\n else {\r\n MEngine.params.on_demand_auth_token = response.access_token;\r\n }\r\n },\r\n\r\n request: function (method, query, data) {\r\n var response,\r\n url = MEngine.params.url + query,\r\n input,\r\n request = new HttpRequest(),\r\n message;\r\n\r\n if (MEngine.params.on_premise.toLowerCase() === \'true\') {\r\n request.addHeader(\'TECHNICIAN_KEY: \' + MEngine.params.on_premise_auth_token);\r\n }\r\n else {\r\n request.addHeader(\'Authorization: Zoho-oauthtoken \' + MEngine.params.on_demand_auth_token);\r\n request.addHeader(\'Accept: application/v3+json\');\r\n }\r\n\r\n if (MEngine.HTTPProxy) {\r\n request.setProxy(MEngine.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n input = \'input_data=\' + encodeURIComponent(data);\r\n Zabbix.log(4, \'[ ManageEngine Webhook ] Sending request: \' + url + \'?\' + input);\r\n\r\n switch (method) {\r\n case \'post\':\r\n response = request.post(url, input);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, input);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ ManageEngine Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ ManageEngine Webhook ] Failed to parse response received from ManageEngine\');\r\n }\r\n\r\n if ((request.getStatus() < 200 || request.getStatus() >= 300)\r\n && typeof response.response_status !== \'object\') {\r\n throw \'Request failed with HTTP status code \' + request.getStatus() +\r\n \'. Check debug log for more information.\';\r\n }\r\n else if (typeof response.response_status === \'object\' && response.response_status.status === \'failed\') {\r\n message = \'Request failed with status_code \';\r\n\r\n if (typeof response.response_status.messages === \'object\'\r\n && response.response_status.messages[0]\r\n && response.response_status.messages[0].message) {\r\n message += response.response_status.messages[0].status_code +\r\n \'. Message: \' + response.response_status.messages[0].message;\r\n }\r\n else {\r\n message += response.response_status.status_code;\r\n }\r\n\r\n message += \'. Check debug log for more information.\';\r\n throw message;\r\n }\r\n else if (response.request) {\r\n return response.request.id;\r\n }\r\n },\r\n\r\n createPaylaod: function (fields, isNote) {\r\n var data = {},\r\n result;\r\n\r\n if (isNote) {\r\n data.description = fields[\'field_string:description\'].replace(/(?:\\r\\n|\\r|\\n)/g, \'
\');\r\n result = {request_note: data};\r\n }\r\n else {\r\n Object.keys(fields)\r\n .forEach(function(field) {\r\n if (fields[field].trim() === \'\') {\r\n Zabbix.log(4, \'[ ManageEngine Webhook ] Field "\' + field +\r\n \'" can\\\'t be empty. The field ignored.\');\r\n }\r\n else {\r\n try {\r\n var prefix = field.split(\':\')[0],\r\n root;\r\n\r\n if (prefix.startsWith(\'udf_\') && !data.udf_fields) {\r\n data.udf_fields = {};\r\n root = data.udf_fields;\r\n }\r\n else if (prefix.startsWith(\'udf_\')) {\r\n root = data.udf_fields;\r\n }\r\n else {\r\n root = data;\r\n }\r\n\r\n if (prefix.endsWith(\'string\')) {\r\n root[field.substring(field.indexOf(\':\') + 1)\r\n .toLowerCase()] = fields[field];\r\n }\r\n else {\r\n root[field.substring(field.indexOf(\':\') + 1)\r\n .toLowerCase()] = {\r\n name: fields[field]\r\n };\r\n }\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ ManageEngine Webhook ] Can\\\'t parse field "\' + field +\r\n \'". The field ignored.\');\r\n }\r\n }\r\n });\r\n if (data.description) {\r\n data.description = data.description.replace(/(?:\\r\\n|\\r|\\n)/g, \'
\');\r\n }\r\n\r\n result = {request: data};\r\n }\r\n\r\n return result;\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n fields = {},\r\n sd = {},\r\n result = {tags: {}},\r\n required_params = [\r\n \'sd_on_premise\', \'field_string:subject\', \'field_string:description\',\r\n \'event_recovery_value\', \'event_source\', \'event_value\', \'event_update_status\'\r\n ],\r\n severities = [\r\n {name: \'not_classified\', color: \'#97AAB3\'},\r\n {name: \'information\', color: \'#7499FF\'},\r\n {name: \'warning\', color: \'#FFC859\'},\r\n {name: \'average\', color: \'#FFA059\'},\r\n {name: \'high\', color: \'#E97659\'},\r\n {name: \'disaster\', color: \'#E45959\'},\r\n {name: \'default\', color: \'#000000\'}\r\n ];\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'sd_\')) {\r\n sd[key.substring(3)] = params[key];\r\n }\r\n else if (key.startsWith(\'field_\') || key.startsWith(\'udf_field_\')) {\r\n fields[key] = params[key];\r\n }\r\n\r\n if (required_params.indexOf(key) !== -1 && params[key].trim() === \'\') {\r\n throw \'Parameter "\' + key + \'" can\\\'t be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect "event_value" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect "event_update_status" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_recovery_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n if (params.event_update_status === \'1\' && (typeof params.sd_request_id === \'undefined\'\r\n || params.sd_request_id.trim() === \'\'\r\n || params.sd_request_id === \'{EVENT.TAGS.__zbx_sd_request_id}\')) {\r\n throw \'Parameter "sd_request_id" can\\\'t be empty for update operation.\';\r\n }\r\n\r\n MEngine.setParams(sd);\r\n MEngine.setProxy(params.HTTPProxy);\r\n\r\n if (MEngine.params.on_premise.toLowerCase() !== \'true\') {\r\n MEngine.refreshAccessToken();\r\n }\r\n\r\n // Create issue for non trigger-based events.\r\n if (params.event_source !== \'0\' && params.event_recovery_value !== \'0\') {\r\n fields[\'field_object:priority\'] = params[\'priority_\' + severities[params.event_nseverity].name]\r\n || \'Normal\';\r\n\r\n MEngine.request(\'post\', \'requests\', MEngine.createPaylaod(fields));\r\n }\r\n // Create issue for trigger-based events.\r\n else if (params.event_value === \'1\' && params.event_update_status === \'0\') {\r\n fields[\'field_object:priority\'] = params[\'priority_\' + severities[params.event_nseverity].name]\r\n || \'Normal\';\r\n\r\n var id = MEngine.request(\'post\', \'requests\', MEngine.createPaylaod(fields));\r\n\r\n result.tags.__zbx_sd_request_id = id;\r\n result.tags.__zbx_sd_request_link = MEngine.createLink(id, params.sd_url);\r\n }\r\n // Update created issue for trigger-based event.\r\n else {\r\n if (params.event_update_status === \'1\') {\r\n MEngine.request(\'post\', \'requests/\' + params.sd_request_id + \'/notes\',\r\n MEngine.createPaylaod(fields, true)\r\n );\r\n }\r\n delete fields[\'field_string:description\'];\r\n MEngine.request(\'put\', \'requests/\' + params.sd_request_id, MEngine.createPaylaod(fields));\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ ManageEngine Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s','1','1','{EVENT.TAGS.__zbx_sd_request_link}','ManageEngine: {EVENT.TAGS.__zbx_sd_request_id}','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('32','4','Github','','','','','','','','0','25','0','0','0','0','','1','3','10s','1','var Github = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n Github.params = params;\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n Github.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n urlCheckFormat: function (url) {\r\n\r\n if (typeof url === \'string\' && !url.endsWith(\'/\')) {\r\n url += \'/\';\r\n }\r\n\r\n if (url.indexOf(\'http://\') === -1 && url.indexOf(\'https://\') === -1) {\r\n url = \'https://\' + url;\r\n }\r\n\r\n return url;\r\n },\r\n\r\n createProblemURL: function (zabbix_url, triggerid, eventid, event_source) {\r\n var problem_url = zabbix_url;\r\n\r\n if (event_source === \'0\') {\r\n problem_url += \'tr_events.php?triggerid=\' + triggerid + \'&eventid=\' + eventid;\r\n }\r\n\r\n return problem_url;\r\n },\r\n\r\n request: function (method, url, data) {\r\n [\'token\', \'user_agent\'].forEach(function (field) {\r\n if (typeof Github.params !== \'object\' || typeof Github.params[field] === \'undefined\' || Github.params[field] === \'\') {\r\n throw \'Required Github param is not set: "\' + field + \'".\';\r\n }\r\n });\r\n\r\n var response,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'User-Agent: \' + Github.params.user_agent);\r\n request.addHeader(\'Accept: application/vnd.github.v3+json\');\r\n request.addHeader(\'Authorization: token \' + Github.params.token);\r\n\r\n if (typeof Github.HTTPProxy !== \'undefined\' && Github.HTTPProxy !== \'\') {\r\n request.setProxy(Github.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ Github Webhook ] Sending request: \' + url + ((typeof data === \'string\')\r\n ? (\'\\n\' + data)\r\n : \'\'));\r\n\r\n switch (method) {\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'patch\':\r\n response = request.patch(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ Github Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ Github Webhook ] Failed to parse response received from Github\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (typeof response !== \'object\') {\r\n throw \'Failed to process response received from Github. Check debug log for more information.\';\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response.message) {\r\n message += \': \' + response.message;\r\n }\r\n\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n return response;\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n github = {},\r\n url = \'\',\r\n data = {},\r\n comment_data,\r\n result = { tags: {} },\r\n required_params = [\r\n \'alert_subject\', \'alert_message\', \'event_source\', \'event_value\',\r\n \'event_update_status\', \'event_recovery_value\', \'event_severity\',\r\n \'event_id\', \'trigger_id\', \'zabbix_url\',\r\n \'github_token\', \'github_url\', \'github_user_agent\'\r\n ],\r\n method = \'post\',\r\n process_tags = true;\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'github_\')) {\r\n github[key.substring(7)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key] === \'\') {\r\n throw \'Parameter "\' + key + \'" can\\\'t be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect "event_value" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect "event_update_status" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_recovery_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n if (typeof params.zabbix_url !== \'string\' || params.zabbix_url.trim() === \'\' || params.zabbix_url === \'{$ZABBIX.URL}\') {\r\n throw \'Field "zabbix_url" cannot be empty.\';\r\n }\r\n\r\n // Check for backslash in the end of url and schema.\r\n github.url = Github.urlCheckFormat(github.url);\r\n params.zabbix_url = Github.urlCheckFormat(params.zabbix_url);\r\n\r\n // Default url for creating issue\r\n url = github.url + \'repos/\' + github.repo + \'/issues\';\r\n\r\n data.title = params.alert_subject;\r\n data.body = params.alert_message;\r\n data.labels = [\r\n { name: "Zabbix" }\r\n ];\r\n\r\n // Adding label corresponding to trigger severity in Zabbix.\r\n if (params.event_severity !== \'undefined\' && params.event_source === \'0\') {\r\n data.labels.push({ name: params.event_severity });\r\n }\r\n\r\n // In case of update or resolve event.\r\n if (params.event_source === \'0\' && (params.event_value === \'0\' || params.event_update_status === \'1\')) {\r\n process_tags = false;\r\n method = \'patch\';\r\n url = github.url + \'repos/\' + github.repo + \'/issues/\' + github.issue_number;\r\n comment_data = Object.assign({}, data);\r\n delete data.body;\r\n } else {\r\n problem_url = Github.createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source);\r\n data.body += \'\\nEvent details in Zabbix: [\' + problem_url + \'](\' + problem_url + \')\';\r\n }\r\n\r\n Github.setParams(github);\r\n Github.setProxy(params.HTTPProxy);\r\n\r\n var response = Github.request(method, url, data);\r\n\r\n // Leave a comment if comment_data present.\r\n if (typeof comment_data === \'object\') {\r\n url = github.url + \'repos/\' + github.repo + \'/issues/\' + github.issue_number + \'/comments\';\r\n Github.request("post", url, comment_data);\r\n }\r\n\r\n if (process_tags) {\r\n result.tags.__zbx_github_issue_number = response.number;\r\n result.tags.__zbx_github_repo = github.repo;\r\n result.tags.__zbx_github_link = response.html_url;\r\n }\r\n\r\n Zabbix.log(4, \'[ Github Webhook ] Result: \' + JSON.stringify(result));\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(4, \'[ Github Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s','1','1','{EVENT.TAGS.__zbx_github_link}','Github: Issue {EVENT.TAGS.__zbx_github_issue_number}','');
INSERT INTO `media_type` (`mediatypeid`,`type`,`name`,`smtp_server`,`smtp_helo`,`smtp_email`,`exec_path`,`gsm_modem`,`username`,`passwd`,`status`,`smtp_port`,`smtp_security`,`smtp_verify_peer`,`smtp_verify_host`,`smtp_authentication`,`exec_params`,`maxsessions`,`maxattempts`,`attempt_interval`,`content_type`,`script`,`timeout`,`process_tags`,`show_event_menu`,`event_menu_url`,`event_menu_name`,`description`) values ('33','4','GLPi','','','','','','','','0','25','0','0','0','0','','1','1','10s','1','var GLPi = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n GLPi.params = params;\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n GLPi.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n urlCheckFormat: function (url) {\r\n if (typeof url === \'string\' && !url.endsWith(\'/\')) {\r\n url += \'/\';\r\n }\r\n\r\n if (url.indexOf(\'http://\') === -1 && url.indexOf(\'https://\') === -1) {\r\n url = \'https://\' + url;\r\n }\r\n\r\n return url;\r\n },\r\n\r\n getAuthToken: function (url, token) {\r\n var response,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Authorization: user_token \' + token);\r\n\r\n response = request.get(url + "apirest.php/initSession");\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ GLPi Webhook ] Failed to receive authentication token from GLPi.\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (Array.isArray(response)) {\r\n if (response[1]) {\r\n throw \'Error received from GLPi: \' + response[1];\r\n } else {\r\n throw \'Failed to receive authentication token from GLPi.\';\r\n }\r\n }\r\n\r\n if (typeof response !== \'object\' || !response.session_token) {\r\n throw \'Failed to process response received from getting GLPi authentication token. Check debug log for more information.\';\r\n }\r\n\r\n return response.session_token;\r\n },\r\n\r\n getProblemUrl: function (zabbix_url, triggerid, eventid, event_source) {\r\n var problem_url = zabbix_url;\r\n\r\n if (event_source === \'0\') {\r\n problem_url += \'tr_events.php?triggerid=\' + triggerid + \'&eventid=\' + eventid;\r\n }\r\n\r\n return problem_url;\r\n },\r\n\r\n request: function (method, url, data) {\r\n if (typeof GLPi.params !== \'object\' || typeof GLPi.params.authToken === \'undefined\' || GLPi.params.authToken === \'\') {\r\n throw \'Required GLPi param authToken is not set.\';\r\n }\r\n\r\n var response,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Session-Token:\' + GLPi.params.authToken);\r\n\r\n if (typeof GLPi.HTTPProxy !== \'undefined\' && GLPi.HTTPProxy !== \'\') {\r\n request.setProxy(GLPi.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ GLPi Webhook ] Sending request: \' + url + ((typeof data === \'string\')\r\n ? (\'\\n\' + data)\r\n : \'\'));\r\n\r\n switch (method) {\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ GLPi Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ GLPi Webhook ] Failed to parse response received from GLPi\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (typeof response !== \'object\' || typeof response === \'undefined\' || response === null) {\r\n throw \'Failed to process response received from GLPi. Check debug log for more information.\';\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response.message) {\r\n message += \': \' + response.message;\r\n }\r\n\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n return response;\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n glpi = {},\r\n url = \'\',\r\n data = {},\r\n comment_data,\r\n result = { tags: {} },\r\n required_params = [\r\n \'alert_subject\', \'alert_message\', \'event_source\', \'event_value\',\r\n \'event_update_status\', \'event_recovery_value\',\r\n \'event_id\', \'trigger_id\', \'zabbix_url\',\r\n \'glpi_token\', \'glpi_url\'\r\n ],\r\n method = \'post\',\r\n process_tags = true,\r\n response;\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'glpi_\')) {\r\n glpi[key.substring(5)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key] === \'\') {\r\n throw \'Parameter "\' + key + \'" can\\\'t be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect "event_source" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect "event_value" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect "event_update_status" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_recovery_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n if (typeof params.zabbix_url !== \'string\' || params.zabbix_url.trim() === \'\' || params.zabbix_url === \'{$ZABBIX.URL}\') {\r\n throw \'Field "zabbix_url" cannot be empty.\';\r\n }\r\n\r\n // Check for backslash in the end of url and schema.\r\n glpi.url = GLPi.urlCheckFormat(glpi.url);\r\n params.zabbix_url = GLPi.urlCheckFormat(params.zabbix_url);\r\n\r\n glpi.authToken = GLPi.getAuthToken(glpi.url, glpi.token);\r\n GLPi.setParams(glpi);\r\n\r\n data = {\r\n \'input\': {\r\n \'name\': params.alert_subject,\r\n \'content\': params.alert_message + \'\\nLink to problem in Zabbix\',\r\n \'status\': 1, // Set status "New"\r\n \'urgency\': params.event_nseverity\r\n }\r\n };\r\n\r\n // In case of resolve\r\n if (params.event_source === \'0\' && params.event_value === \'0\') {\r\n process_tags = false;\r\n dataFollowup = {\r\n \'input\': {\r\n \'items_id\': glpi.problem_id,\r\n \'itemtype\': \'Problem\',\r\n \'content\': params.alert_message + \'\\nLink to problem in Zabbix\'\r\n }\r\n };\r\n dataProblem = {\r\n \'id\': glpi.problem_id,\r\n \'input\': {\r\n \'name\': params.alert_subject,\r\n \'status\': 5, // Set status "Solved"\r\n \'urgency\': params.event_nseverity\r\n }\r\n };\r\n\r\n GLPi.request(\'put\', glpi.url + \'apirest.php/Problem/\' + glpi.problem_id, dataProblem);\r\n GLPi.request(\'post\', glpi.url + \'apirest.php/Problem/\' + glpi.problem_id + \'/ITILFollowup\', dataFollowup);\r\n }\r\n\r\n // In case of update\r\n else if (params.event_source === \'0\' && params.event_update_status === \'1\') {\r\n process_tags = false;\r\n dataFollowup = {\r\n \'input\': {\r\n \'items_id\': glpi.problem_id,\r\n \'itemtype\': \'Problem\',\r\n \'content\': params.alert_message + \'\\nLink to problem in Zabbix\'\r\n }\r\n };\r\n dataProblem = {\r\n \'id\': glpi.problem_id,\r\n \'input\': {\r\n \'name\': params.alert_subject,\r\n \'urgency\': params.event_nseverity\r\n }\r\n };\r\n\r\n GLPi.request(\'put\', glpi.url + \'apirest.php/Problem/\' + glpi.problem_id, dataProblem);\r\n GLPi.request(\'post\', glpi.url + \'apirest.php/Problem/\' + glpi.problem_id + \'/ITILFollowup\', dataFollowup);\r\n }\r\n\r\n // In case of problem\r\n else {\r\n response = GLPi.request(\'post\', glpi.url + \'apirest.php/Problem/\', data);\r\n }\r\n\r\n if (process_tags) {\r\n result.tags.__zbx_glpi_problem_id = response.id;\r\n result.tags.__zbx_glpi_link = glpi.url + \'front/problem.form.php?id=\' + response.id;\r\n }\r\n\r\n Zabbix.log(4, \'[ GLPi Webhook ] Result: \' + JSON.stringify(result));\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(4, \'[ GLPi Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s','1','1','{EVENT.TAGS.__zbx_glpi_link}','GLPi: Problem {EVENT.TAGS.__zbx_glpi_problem_id}','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('1','5','zabbix_url','{$ZABBIX.URL}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('2','5','bot_token','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('3','5','mattermost_url','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('4','5','send_mode','alarm');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('5','5','send_to','{ALERT.SENDTO}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('6','5','event_tags','{EVENT.TAGS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('8','5','event_nseverity','{EVENT.NSEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('10','5','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('11','5','event_update_status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('12','5','event_date','{EVENT.DATE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('13','5','event_time','{EVENT.TIME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('14','5','event_severity','{EVENT.SEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('15','5','event_opdata','{EVENT.OPDATA}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('16','5','event_id','{EVENT.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('18','5','trigger_id','{TRIGGER.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('19','5','trigger_description','{TRIGGER.DESCRIPTION}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('20','5','host_name','{HOST.HOST}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('21','5','host_ip','{HOST.IP}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('22','5','event_update_date','{EVENT.UPDATE.DATE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('23','5','event_update_time','{EVENT.UPDATE.TIME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('24','5','event_recovery_date','{EVENT.RECOVERY.DATE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('25','5','event_recovery_time','{EVENT.RECOVERY.TIME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('37','6','zbxurl','{$ZABBIX.URL}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('39','7','token','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('40','7','eventid','{EVENT.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('41','7','eventname','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('42','7','hostname','{HOST.NAME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('43','7','hostip','{HOST.IP}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('44','7','severity','{EVENT.NSEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('45','7','triggerdesc','{TRIGGER.DESCRIPTION}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('46','7','triggeropdata','{EVENT.OPDATA}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('47','7','eventtags','{EVENT.TAGS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('48','7','triggerid','{TRIGGER.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('49','7','eventdate','{EVENT.DATE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('50','7','eventtime','{EVENT.TIME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('52','7','eventack','{EVENT.ACK.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('53','7','eventupdate','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('54','7','eventvalue','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('55','7','url','{$ZABBIX.URL}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('56','8','token','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('57','8','user','{ALERT.SENDTO}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('58','8','message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('59','8','title','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('60','8','url','{$ZABBIX.URL}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('61','8','url_title','Zabbix');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('63','8','eventid','{EVENT.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('64','8','triggerid','{TRIGGER.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('65','9','zabbix_url','{$ZABBIX.URL}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('66','9','bot_token','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('67','9','channel','{ALERT.SENDTO}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('68','9','slack_mode','alarm');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('69','9','slack_as_user','true');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('71','9','event_tags','{EVENT.TAGSJSON}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('73','9','event_nseverity','{EVENT.NSEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('75','9','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('76','9','event_update_status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('77','9','event_date','{EVENT.DATE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('78','9','event_time','{EVENT.TIME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('79','9','event_severity','{EVENT.SEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('80','9','event_opdata','{EVENT.OPDATA}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('81','9','event_id','{EVENT.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('83','9','trigger_id','{TRIGGER.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('84','9','trigger_description','{TRIGGER.DESCRIPTION}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('85','9','host_name','{HOST.NAME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('87','9','event_update_date','{EVENT.UPDATE.DATE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('88','9','event_update_time','{EVENT.UPDATE.TIME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('89','9','event_recovery_date','{EVENT.RECOVERY.DATE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('90','9','event_recovery_time','{EVENT.RECOVERY.TIME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('91','10','zabbix_url','{$ZABBIX.URL}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('92','10','discord_endpoint','{ALERT.SENDTO}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('93','10','use_default_message','false');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('94','10','alert_message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('95','10','alert_subject','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('96','10','event_name','{EVENT.NAME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('97','10','event_id','{EVENT.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('98','10','event_severity','{EVENT.SEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('99','10','event_nseverity','{EVENT.NSEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('100','10','event_opdata','{EVENT.OPDATA}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('101','10','event_tags','{EVENT.TAGS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('102','10','event_time','{EVENT.TIME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('103','10','event_date','{EVENT.DATE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('104','10','event_recovery_date','{EVENT.RECOVERY.DATE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('105','10','event_recovery_time','{EVENT.RECOVERY.TIME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('106','10','event_update_date','{EVENT.UPDATE.DATE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('107','10','event_update_time','{EVENT.UPDATE.TIME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('108','10','event_update_action','{EVENT.UPDATE.ACTION}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('109','10','event_update_message','{EVENT.UPDATE.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('110','10','event_update_status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('111','10','event_update_user','{USER.FULLNAME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('112','10','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('113','10','host_ip','{HOST.IP}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('114','10','host_name','{HOST.NAME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('115','10','trigger_description','{TRIGGER.DESCRIPTION}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('116','10','trigger_id','{TRIGGER.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('117','8','endpoint','https://api.pushover.net/1/messages.json');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('118','8','retry','60');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('119','8','expire','1200');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('120','11','teamsecret','{ALERT.SENDTO}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('121','11','Subject','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('122','11','Message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('123','11','Severity','{EVENT.SEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('125','11','Hostname','{HOST.NAME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('127','12','alert_message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('128','12','alert_subject','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('129','12','event_recovery_value','{EVENT.RECOVERY.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('130','12','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('131','12','event_tags_json','{EVENT.TAGSJSON}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('132','12','event_update_action','{EVENT.UPDATE.ACTION}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('133','12','event_update_message','{EVENT.UPDATE.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('134','12','event_update_status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('135','12','event_update_user','{USER.FULLNAME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('136','12','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('137','12','jira_issue_key','{EVENT.TAGS.__zbx_jira_issuekey}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('138','12','jira_issue_type','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('139','12','jira_password','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('140','12','jira_project_key','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('141','12','jira_url','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('142','12','jira_user','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('143','12','trigger_description','{TRIGGER.DESCRIPTION}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('144','13','<\'DATETIME\' CUSTOMFIELD FOR EVENT RECOVERY TIME>','{EVENT.RECOVERY.DATE}T{EVENT.RECOVERY.TIME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('145','13','<\'DATETIME\' CUSTOMFIELD FOR EVENT TIME>','{EVENT.DATE}T{EVENT.TIME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('146','13','<\'NUMBER\' CUSTOMFIELD FOR EVENT.ID>','{EVENT.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('147','13','<\'NUMBER\' CUSTOMFIELD FOR TRIGGER.ID>','{TRIGGER.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('148','13','<\'STRING\' CUSTOMFIELD FOR HOST\\IP>','{HOST.HOST} [{HOST.IP}]');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('149','13','<\'STRING\' CUSTOMFIELD FOR OPERATIONAL DATA>','{EVENT.OPDATA}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('150','13','<\'STRING\' CUSTOMFIELD FOR SEVERITY>','{EVENT.SEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('151','13','<\'URL\' CUSTOMFIELD FOR EVENT URL>','{$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('152','13','alert_message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('153','13','alert_subject','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('154','13','event_recovery_value','{EVENT.RECOVERY.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('155','13','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('156','13','event_tags_json','{EVENT.TAGSJSON}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('157','13','event_update_action','{EVENT.UPDATE.ACTION}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('158','13','event_update_message','{EVENT.UPDATE.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('159','13','event_update_status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('160','13','event_update_user','{USER.FULLNAME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('161','13','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('162','13','jira_issue_key','{EVENT.TAGS.__zbx_jira_issuekey}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('163','13','jira_issue_type','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('164','13','jira_password','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('165','13','jira_project_key','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('166','13','jira_url','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('167','13','jira_user','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('168','13','trigger_description','{TRIGGER.DESCRIPTION}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('169','14','alert_message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('170','14','alert_subject','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('171','14','event_date','{EVENT.DATE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('172','14','event_id','{EVENT.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('173','14','event_nseverity','{EVENT.NSEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('174','14','event_opdata','{EVENT.OPDATA}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('175','14','event_recovery_date','{EVENT.RECOVERY.DATE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('176','14','event_recovery_time','{EVENT.RECOVERY.TIME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('177','14','event_severity','{EVENT.SEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('178','14','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('179','14','event_status','{EVENT.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('180','14','event_tags','{EVENT.TAGS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('181','14','event_time','{EVENT.TIME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('182','14','event_update_action','{EVENT.UPDATE.ACTION}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('183','14','event_update_date','{EVENT.UPDATE.DATE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('184','14','event_update_message','{EVENT.UPDATE.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('185','14','event_update_status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('186','14','event_update_time','{EVENT.UPDATE.TIME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('187','14','event_update_user','{USER.FULLNAME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('188','14','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('189','14','host_ip','{HOST.IP}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('190','14','host_name','{HOST.NAME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('191','14','teams_endpoint','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('192','14','trigger_description','{TRIGGER.DESCRIPTION}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('193','14','trigger_id','{TRIGGER.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('194','14','use_default_message','false');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('195','14','zabbix_url','{$ZABBIX.URL}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('196','15','alert_message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('197','15','alert_subject','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('198','15','event_id','{EVENT.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('199','15','event_nseverity','{EVENT.NSEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('200','15','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('201','15','event_update_message','{EVENT.UPDATE.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('202','15','event_update_status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('203','15','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('204','15','redmine_access_key','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('205','15','redmine_issue_key','{EVENT.TAGS.__zbx_redmine_issue_id}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('206','15','redmine_project','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('207','15','redmine_tracker_id','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('208','15','redmine_url','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('209','15','trigger_id','{TRIGGER.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('210','15','zabbix_url','{$ZABBIX.URL}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('211','16','Message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('212','16','ParseMode','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('213','16','Subject','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('214','16','To','{ALERT.SENDTO}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('215','16','Token','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('216','17','alert_message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('217','17','alert_subject','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('218','17','event_id','{EVENT.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('219','17','event_nseverity','{EVENT.NSEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('220','17','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('221','17','event_tags','{EVENT.TAGS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('222','17','event_update_status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('223','17','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('224','17','severity_average','normal');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('225','17','severity_default','-');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('226','17','severity_disaster','urgent');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('227','17','severity_high','high');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('228','17','severity_information','low');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('229','17','severity_not_classified','low');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('230','17','severity_warning','normal');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('231','17','trigger_id','{TRIGGER.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('232','17','zbxurl','{$ZABBIX.URL}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('233','17','zendesk_issue_key','{EVENT.TAGS.__zbx_zdk_issuekey}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('234','17','zendesk_token','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('235','17','zendesk_type','incident');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('236','17','zendesk_url','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('237','18','alert_message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('238','18','alert_subject','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('239','18','event_nseverity','{EVENT.NSEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('240','18','event_recovery_value','{EVENT.RECOVERY.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('241','18','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('242','18','event_update_status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('243','18','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('244','18','servicenow_password','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('245','18','servicenow_sys_id','{EVENT.TAGS.__zbx_servicenow_sys_id}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('246','18','servicenow_url','{ALERT.SENDTO}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('247','18','servicenow_user','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('248','18','urgency_for_average','2');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('249','18','urgency_for_disaster','1');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('250','18','urgency_for_high','2');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('251','18','urgency_for_information','3');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('252','18','urgency_for_not_classified','3');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('253','18','urgency_for_warning','3');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('254','19','alert_message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('255','19','alert_subject','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('256','19','event_id','{EVENT.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('257','19','event_nseverity','{EVENT.NSEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('258','19','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('259','19','event_tags','{EVENT.TAGSJSON}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('260','19','event_update_message','{EVENT.UPDATE.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('261','19','event_update_status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('262','19','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('263','19','trigger_id','{TRIGGER.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('264','19','zabbix_url','{$ZABBIX.URL}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('265','19','zammad_access_token','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('266','19','zammad_customer','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('267','19','zammad_enable_tags','true');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('268','19','zammad_ticket_id','{EVENT.TAGS.__zbx_zammad_ticket_id}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('269','19','zammad_url','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('270','20','alert_message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('271','20','alert_subject','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('272','20','event_recovery_value','{EVENT.RECOVERY.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('273','20','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('274','20','event_tags_json','{EVENT.TAGSJSON}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('275','20','event_update_status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('276','20','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('277','20','jira_password','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('278','20','jira_request_key','{EVENT.TAGS.__zbx_jira_requestkey}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('279','20','jira_request_type_id','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('280','20','jira_servicedesk_id','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('281','20','jira_url','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('282','20','jira_user','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('283','21','alert_message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('284','21','alert_subject','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('285','21','event_id','{EVENT.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('286','21','event_nseverity','{EVENT.NSEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('287','21','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('288','21','event_update_message','{EVENT.UPDATE.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('289','21','event_update_status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('290','21','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('291','21','otrs_auth_password','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('292','21','otrs_auth_user','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('293','21','otrs_customer','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('294','21','otrs_default_priority_id','3');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('295','21','otrs_queue','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('296','21','otrs_ticket_id','{EVENT.TAGS.__zbx_otrs_ticket_id}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('297','21','otrs_ticket_state','new');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('298','21','otrs_time_unit','0');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('299','21','otrs_url','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('300','21','trigger_id','{TRIGGER.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('301','21','zabbix_url','{$ZABBIX.URL}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('302','11','Event_Ack_Status','{EVENT.ACK.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('303','11','Event_Date_Time','{EVENT.DATE} {EVENT.TIME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('304','11','Event_ID','{EVENT.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('305','11','Event_Update_Action','{EVENT.UPDATE.ACTION}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('306','11','Event_Update_Status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('307','11','Host_IP','{HOST.IP}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('308','11','Trigger_ID','{TRIGGER.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('309','11','Trigger_Status','{TRIGGER.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('310','11','User','{USER.FULLNAME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('311','11','Zabbix_URL','{$ZABBIX.URL}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('312','10','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('313','22','.ILERT.ALERT.SOURCE.KEY','{ALERT.SENDTO}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('314','22','.ILERT.INCIDENT.SUMMARY','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('315','22','ALERT.MESSAGE','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('316','22','ALERT.SUBJECT','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('317','22','EVENT.ACK.STATUS','{EVENT.ACK.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('318','22','EVENT.DATE','{EVENT.DATE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('319','22','EVENT.ID','{EVENT.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('320','22','EVENT.NAME','{EVENT.NAME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('321','22','EVENT.NSEVERITY','{EVENT.NSEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('322','22','EVENT.OPDATA','{EVENT.OPDATA}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('323','22','EVENT.RECOVERY.DATE','{EVENT.RECOVERY.DATE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('324','22','EVENT.RECOVERY.TIME','{EVENT.RECOVERY.TIME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('325','22','EVENT.RECOVERY.VALUE','{EVENT.RECOVERY.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('326','22','EVENT.SEVERITY','{EVENT.SEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('327','22','EVENT.TAGS','{EVENT.TAGS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('328','22','EVENT.TIME','{EVENT.TIME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('329','22','EVENT.UPDATE.ACTION','{EVENT.UPDATE.ACTION}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('330','22','EVENT.UPDATE.DATE','{EVENT.UPDATE.DATE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('331','22','EVENT.UPDATE.MESSAGE','{EVENT.UPDATE.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('332','22','EVENT.UPDATE.STATUS','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('333','22','EVENT.UPDATE.TIME','{EVENT.UPDATE.TIME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('334','22','EVENT.VALUE','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('335','22','HOST.HOST','{HOST.HOST}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('336','22','HOST.IP','{HOST.IP}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('337','22','HOST.NAME','{HOST.NAME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('338','22','ITEM.ID1','{ITEM.ID1}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('339','22','ITEM.ID2','{ITEM.ID2}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('340','22','ITEM.ID3','{ITEM.ID3}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('341','22','ITEM.ID4','{ITEM.ID4}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('342','22','ITEM.ID5','{ITEM.ID5}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('343','22','ITEM.NAME1','{ITEM.NAME1}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('344','22','ITEM.NAME2','{ITEM.NAME2}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('345','22','ITEM.NAME3','{ITEM.NAME3}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('346','22','ITEM.NAME4','{ITEM.NAME4}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('347','22','ITEM.NAME5','{ITEM.NAME5}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('348','22','TRIGGER.DESCRIPTION','{TRIGGER.DESCRIPTION}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('349','22','TRIGGER.ID','{TRIGGER.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('350','22','TRIGGER.NAME','{TRIGGER.NAME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('351','22','TRIGGER.SEVERITY','{TRIGGER.SEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('352','22','TRIGGER.STATUS','{TRIGGER.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('353','22','TRIGGER.URL','{TRIGGER.URL}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('354','22','TRIGGER.VALUE','{TRIGGER.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('355','22','USER.FULLNAME','{USER.FULLNAME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('356','22','ZABBIX.URL','{$ZABBIX.URL}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('357','5','alert_message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('358','5','alert_subject','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('359','5','discovery_host_dns','{DISCOVERY.DEVICE.DNS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('360','5','discovery_host_ip','{DISCOVERY.DEVICE.IPADDRESS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('361','5','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('362','6','alert_message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('363','6','alert_subject','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('364','6','event_id','{EVENT.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('365','6','event_nseverity','{EVENT.NSEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('366','6','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('367','6','event_tags_json','{EVENT.TAGSJSON}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('368','6','event_update_status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('369','6','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('370','6','opsgenie_api','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('371','6','opsgenie_tags','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('372','6','opsgenie_teams','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('373','6','opsgenie_token','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('374','6','opsgenie_web','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('375','6','severity_average','P3');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('376','6','severity_default','P5');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('377','6','severity_disaster','P1');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('378','6','severity_high','P2');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('379','6','severity_information','P5');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('380','6','severity_not_classified','P5');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('381','6','severity_warning','P4');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('382','6','trigger_id','{TRIGGER.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('383','6','zbxuser','{USER.FULLNAME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('384','7','alert_message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('385','7','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('386','8','event_nseverity','{EVENT.NSEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('387','8','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('388','8','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('389','8','priority_average','0');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('390','8','priority_default','0');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('391','8','priority_disaster','0');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('392','8','priority_high','0');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('393','8','priority_information','0');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('394','8','priority_not_classified','0');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('395','8','priority_warning','0');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('396','9','alert_message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('397','9','alert_subject','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('398','9','discovery_host_dns','{DISCOVERY.DEVICE.DNS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('399','9','discovery_host_ip','{DISCOVERY.DEVICE.IPADDRESS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('400','9','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('401','9','host_conn','{HOST.CONN}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('402','23','alert_message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('403','23','alert_subject','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('404','23','event_nseverity','{EVENT.NSEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('405','23','event_recovery_value','{EVENT.RECOVERY.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('406','23','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('407','23','event_update_status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('408','23','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('409','23','priority_average','Medium');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('410','23','priority_default','Low');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('411','23','priority_disaster','Critical');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('412','23','priority_high','High');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('413','23','samanage_incident_id','{EVENT.TAGS.__zbx_solarwinds_inc_id}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('414','23','samanage_token','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('415','23','samanage_url','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('416','24','alert_message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('417','24','alert_subject','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('418','24','event_id','{EVENT.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('419','24','event_nseverity','{EVENT.NSEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('420','24','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('421','24','event_update_message','{EVENT.UPDATE.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('422','24','event_update_status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('423','24','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('424','24','sysaid_auth_password','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('425','24','sysaid_auth_user','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('426','24','sysaid_category_level_1','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('427','24','sysaid_category_level_2','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('428','24','sysaid_category_level_3','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('429','24','sysaid_default_priority_id','1');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('430','24','sysaid_incident_id','{EVENT.TAGS.__zbx_sysaid_incident_id}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('431','24','sysaid_incident_state','1');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('432','24','sysaid_template_id','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('433','24','sysaid_urgency_id','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('434','24','sysaid_url','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('435','24','trigger_id','{TRIGGER.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('436','24','zabbix_url','{$ZABBIX.URL}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('437','25','alert_message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('438','25','alert_subject','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('439','25','event_id','{EVENT.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('440','25','event_nseverity','{EVENT.NSEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('441','25','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('442','25','event_update_status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('443','25','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('444','25','severity_average','P3');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('445','25','severity_default','P5');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('446','25','severity_disaster','P1');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('447','25','severity_high','P2');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('448','25','severity_information','P5');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('449','25','severity_not_classified','P5');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('450','25','severity_warning','P4');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('451','25','topdesk_api','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('452','25','topdesk_issue_key','{EVENT.TAGS.__zbx_tpd_issuekey}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('453','25','topdesk_password','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('454','25','topdesk_status','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('455','25','topdesk_user','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('456','25','trigger_id','{TRIGGER.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('457','25','zbxurl','{$ZABBIX.URL}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('458','26','alert_message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('459','26','alert_subject','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('460','26','event_recovery_value','{EVENT.RECOVERY.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('461','26','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('462','26','event_update_status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('463','26','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('464','26','itop_api_version','1.3');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('465','26','itop_class','UserRequest');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('466','26','itop_comment','Created by Zabbix action {ACTION.NAME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('467','26','itop_id','{EVENT.TAGS.__zbx_itop_id}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('468','26','itop_log','private_log');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('469','26','itop_organization_id','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('470','26','itop_password','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('471','26','itop_url','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('472','26','itop_user','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('473','27','alert_message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('474','27','alert_subject','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('475','27','event_nseverity','{EVENT.NSEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('476','27','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('477','27','event_update_action','{EVENT.UPDATE.ACTION}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('478','27','event_update_message','{EVENT.UPDATE.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('479','27','event_update_status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('480','27','event_update_user','{USER.FULLNAME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('481','27','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('482','27','field_1_full:Host','{HOST.NAME} [{HOST.IP}]');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('483','27','field_2_short:Severity','{EVENT.SEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('484','27','field_3_short:Event time','{EVENT.DATE} {EVENT.TIME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('485','27','field_3_short_r:Recovery time','{EVENT.RECOVERY.DATE} {EVENT.RECOVERY.TIME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('486','27','field_4_short_r:Event duration','{EVENT.DURATION}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('487','27','field_5_short:Operational data','{EVENT.OPDATA}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('488','27','field_999_full_p:Trigger description','{TRIGGER.DESCRIPTION}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('489','27','rc_api_url','api/v1/');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('490','27','rc_msg_id','{EVENT.TAGS.__zbx_rc_id}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('491','27','rc_room_id','{EVENT.TAGS.__zbx_rc_rid}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('492','27','rc_send_to','{ALERT.SENDTO}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('493','27','rc_title_link','{$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('494','27','rc_url','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('495','27','rc_user_id','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('496','27','rc_user_token','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('497','27','use_default_message','false');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('498','28','event_info','{$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('499','28','event_nseverity','{EVENT.NSEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('500','28','event_recovery_value','{EVENT.RECOVERY.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('501','28','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('502','28','event_update_status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('503','28','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('504','28','field:entity_display_name','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('505','28','field:entity_id','{EVENT.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('506','28','field:hostname','{HOST.NAME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('507','28','field:monitoring_tool','Zabbix');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('508','28','field:operational_data','{EVENT.OPDATA}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('509','28','field:severity','{EVENT.SEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('510','28','field:state_message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('511','28','field_p:trigger_description','{TRIGGER.DESCRIPTION}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('512','28','field_r:event_duration','{EVENT.DURATION}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('513','28','field_r:recovery time','{EVENT.RECOVERY.DATE} {EVENT.RECOVERY.TIME}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('514','28','priority_average','WARNING');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('515','28','priority_default','INFO');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('516','28','priority_disaster','CRITICAL');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('517','28','priority_high','WARNING');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('518','28','priority_information','INFO');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('519','28','priority_not_classified','INFO');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('520','28','priority_resolved','OK');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('521','28','priority_update','INFO');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('522','28','priority_warning','INFO');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('523','28','vops_endpoint','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('524','28','vops_routing_key','{ALERT.SENDTO}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('525','29','endpoint','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('526','29','flash','false');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('527','29','password','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('528','29','ring','false');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('529','29','send_to','{ALERT.SENDTO}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('530','29','telauto','true');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('531','29','text','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('532','29','username','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('535','30','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('536','30','event_update_status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('537','30','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('538','30','express_message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('539','30','express_send_to','{ALERT.SENDTO}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('540','30','express_tags','{EVENT.TAGSJSON}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('541','30','express_token','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('542','30','express_url','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('543','31','event_nseverity','{EVENT.NSEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('544','31','event_recovery_value','{EVENT.RECOVERY.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('545','31','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('546','31','event_update_status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('547','31','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('548','31','field_ref:requester','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('549','31','field_string:description','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('550','31','field_string:subject','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('551','31','priority_average','Normal');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('552','31','priority_default','Normal');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('553','31','priority_disaster','High');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('554','31','priority_high','High');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('555','31','priority_information','Low');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('556','31','priority_not_classified','Low');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('557','31','priority_warning','Medium');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('558','31','sd_on_demand_client_id','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('559','31','sd_on_demand_client_secret','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('560','31','sd_on_demand_refresh_token','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('561','31','sd_on_demand_url_auth','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('562','31','sd_on_premise','true');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('563','31','sd_on_premise_auth_token','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('564','31','sd_request_id','{EVENT.TAGS.__zbx_sd_request_id}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('565','31','sd_url','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('566','31','trigger_description','{TRIGGER.DESCRIPTION}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('567','32','alert_message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('568','32','alert_subject','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('569','32','event_id','{EVENT.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('570','32','event_recovery_value','{EVENT.RECOVERY.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('571','32','event_severity','{EVENT.SEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('572','32','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('573','32','event_update_status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('574','32','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('575','32','github_issue_number','{EVENT.TAGS.__zbx_github_issue_number}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('576','32','github_repo','{ALERT.SENDTO}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('577','32','github_token','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('578','32','github_url','https://api.github.com');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('579','32','github_user_agent','Zabbix/6.0');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('580','32','trigger_id','{TRIGGER.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('581','32','zabbix_url','{$ZABBIX.URL}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('582','33','alert_message','{ALERT.MESSAGE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('583','33','alert_subject','{ALERT.SUBJECT}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('584','33','event_id','{EVENT.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('585','33','event_nseverity','{EVENT.NSEVERITY}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('586','33','event_recovery_value','{EVENT.RECOVERY.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('587','33','event_source','{EVENT.SOURCE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('588','33','event_update_status','{EVENT.UPDATE.STATUS}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('589','33','event_value','{EVENT.VALUE}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('590','33','glpi_problem_id','{EVENT.TAGS.__zbx_glpi_problem_id}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('591','33','glpi_token','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('592','33','glpi_url','');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('593','33','trigger_id','{TRIGGER.ID}');
INSERT INTO `media_type_param` (`mediatype_paramid`,`mediatypeid`,`name`,`value`) values ('594','33','zabbix_url','{$ZABBIX.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('1','1','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('2','1','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nProblem duration: {EVENT.DURATION}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('3','1','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('4','1','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('5','1','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('6','3','0','0','','{EVENT.SEVERITY}: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\n{EVENT.DATE} {EVENT.TIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('7','3','0','1','','Resolved in {EVENT.DURATION}: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\n{EVENT.DATE} {EVENT.TIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('8','3','0','2','','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem in {EVENT.AGE} at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('9','3','1','0','','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('10','3','2','0','','Autoregistration: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('11','4','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}
Problem name: {EVENT.NAME}
Host: {HOST.NAME}
Severity: {EVENT.SEVERITY}
Operational data: {EVENT.OPDATA}
Original problem ID: {EVENT.ID}
{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('12','4','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}
Problem name: {EVENT.NAME}
Problem duration: {EVENT.DURATION}
Host: {HOST.NAME}
Severity: {EVENT.SEVERITY}
Original problem ID: {EVENT.ID}
{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('13','4','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.
{EVENT.UPDATE.MESSAGE}
Current problem status: {EVENT.STATUS}
Age: {EVENT.AGE}
Acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('14','4','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}
Device IP: {DISCOVERY.DEVICE.IPADDRESS}
Device DNS: {DISCOVERY.DEVICE.DNS}
Device status: {DISCOVERY.DEVICE.STATUS}
Device uptime: {DISCOVERY.DEVICE.UPTIME}
Device service name: {DISCOVERY.SERVICE.NAME}
Device service port: {DISCOVERY.SERVICE.PORT}
Device service status: {DISCOVERY.SERVICE.STATUS}
Device service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('15','4','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}
Host IP: {HOST.IP}
Agent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('16','11','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('17','11','0','1','Resolved: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('18','11','0','2','Updated problem: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('19','11','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('20','11','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('21','12','0','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('22','12','0','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('23','12','0','2','[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('24','12','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('25','12','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('26','13','0','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('27','13','0','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('28','13','0','2','[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('29','13','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('30','13','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('31','14','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('32','14','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('33','14','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('34','14','0','1','Resolved: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('35','14','0','2','Updated problem: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('36','15','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('37','15','0','1','Resolved: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('38','15','0','2','Updated problem: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('39','15','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('40','15','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('41','16','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('42','16','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('43','16','0','2','Updated problem: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('44','16','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('45','16','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('46','17','0','0','{EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('47','17','0','1','{EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('48','17','0','2','{EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('49','17','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('50','17','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('51','17','3','0','Internal problem: {EVENT.NAME}','Internal problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('52','18','0','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('53','18','0','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('54','18','0','2','[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('55','18','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('56','18','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('57','19','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('58','19','0','1','Resolved: {EVENT.RECOVERY.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.RECOVERY.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('59','19','0','2','Updated problem: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('60','19','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('61','19','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('62','20','0','0','{EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('63','20','0','1','{EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('64','20','0','2','{EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('65','20','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('66','20','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('67','21','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('68','21','0','1','Resolved: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('69','21','0','2','Updated problem: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('70','21','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('71','21','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('72','10','0','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('73','10','0','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('74','10','0','2','[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('75','10','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('76','10','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('77','22','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('78','22','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('79','22','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nProblem duration: {EVENT.DURATION}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('80','5','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('81','5','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nProblem duration: {EVENT.DURATION}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('82','5','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('83','5','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('84','5','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('85','6','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('86','6','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('87','6','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('88','6','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('89','6','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nProblem duration: {EVENT.DURATION}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('90','7','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('91','7','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nProblem duration: {EVENT.DURATION}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('92','7','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('93','7','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('94','7','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('95','8','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('96','8','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nProblem duration: {EVENT.DURATION}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('97','8','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('98','8','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('99','8','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('100','9','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('101','9','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nProblem duration: {EVENT.DURATION}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('102','9','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('103','9','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('104','9','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('105','23','0','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n\r\nTrigger description: {TRIGGER.DESCRIPTION}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('106','23','0','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('107','23','0','2','[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('108','23','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('109','23','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('110','24','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('111','24','0','1','Resolved: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('112','24','0','2','Updated problem: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('113','24','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('114','24','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('115','25','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('116','25','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nProblem duration: {EVENT.DURATION}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('117','25','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('118','25','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('119','25','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('120','26','0','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('121','26','0','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('122','26','0','2','[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('123','26','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('124','26','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('125','27','0','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('126','27','0','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('127','27','0','2','[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('128','27','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('129','27','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('130','28','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('131','28','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nProblem duration: {EVENT.DURATION}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('132','28','0','2','[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('133','28','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('134','28','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('135','29','0','0','[{EVENT.STATUS}] {EVENT.NAME}','[{EVENT.STATUS}] {EVENT.NAME}\r\nStarted at {EVENT.TIME} on {EVENT.DATE}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nEvent info: {$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('136','29','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','[{EVENT.STATUS}] {EVENT.NAME}\r\nResolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nEvent info: {$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('137','29','0','2','[{EVENT.STATUS}] {EVENT.NAME}','[{EVENT.STATUS}] {EVENT.NAME}\r\n\r\n{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('138','29','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}\r\nDiscovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('139','29','2','0','Autoregistration: {HOST.HOST}','Autoregistration: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('140','30','0','0','[{EVENT.STATUS}] {EVENT.NAME}','[{EVENT.STATUS}] {EVENT.NAME}\r\nStarted at {EVENT.TIME} on {EVENT.DATE}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nEvent info: {$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('141','30','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','[{EVENT.STATUS}] {EVENT.NAME}\r\nResolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nEvent info: {$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('142','30','0','2','[{EVENT.STATUS}] {EVENT.NAME}','[{EVENT.STATUS}] {EVENT.NAME}\r\n\r\n{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('143','30','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}\r\nDiscovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('144','30','2','0','Autoregistration: {HOST.HOST}','Autoregistration: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('145','31','0','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('146','31','0','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('147','31','0','2','[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('148','31','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('149','31','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('150','32','0','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('151','32','0','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('152','32','0','2','[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('153','32','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('154','32','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('155','33','0','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('156','33','0','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('157','33','0','2','[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('158','33','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}');
INSERT INTO `media_type_message` (`mediatype_messageid`,`mediatypeid`,`eventsource`,`recovery`,`subject`,`message`) values ('159','33','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}');
INSERT INTO `usrgrp` (`usrgrpid`,`name`,`gui_access`,`users_status`,`debug_mode`) values ('7','Zabbix administrators','0','0','0');
INSERT INTO `usrgrp` (`usrgrpid`,`name`,`gui_access`,`users_status`,`debug_mode`) values ('8','Guests','1','0','0');
INSERT INTO `usrgrp` (`usrgrpid`,`name`,`gui_access`,`users_status`,`debug_mode`) values ('9','Disabled','0','1','0');
INSERT INTO `usrgrp` (`usrgrpid`,`name`,`gui_access`,`users_status`,`debug_mode`) values ('11','Enabled debug mode','0','0','1');
INSERT INTO `usrgrp` (`usrgrpid`,`name`,`gui_access`,`users_status`,`debug_mode`) values ('12','No access to the frontend','3','0','0');
INSERT INTO `users_groups` (`id`,`usrgrpid`,`userid`) values ('2','8','2');
INSERT INTO `users_groups` (`id`,`usrgrpid`,`userid`) values ('3','9','2');
INSERT INTO `users_groups` (`id`,`usrgrpid`,`userid`) values ('4','7','1');
INSERT INTO `scripts` (`scriptid`,`name`,`command`,`host_access`,`usrgrpid`,`groupid`,`description`,`confirmation`,`type`,`execute_on`,`timeout`,`scope`,`port`,`authtype`,`username`,`password`,`publickey`,`privatekey`,`menu_path`) values ('1','Ping','ping -c 3 {HOST.CONN}; case $? in [01]) true;; *) false;; esac','2',NULL,NULL,'','','0','2','30s','2','','0','','','','','');
INSERT INTO `scripts` (`scriptid`,`name`,`command`,`host_access`,`usrgrpid`,`groupid`,`description`,`confirmation`,`type`,`execute_on`,`timeout`,`scope`,`port`,`authtype`,`username`,`password`,`publickey`,`privatekey`,`menu_path`) values ('2','Traceroute','/usr/bin/traceroute {HOST.CONN}','2',NULL,NULL,'','','0','2','30s','2','','0','','','','','');
INSERT INTO `scripts` (`scriptid`,`name`,`command`,`host_access`,`usrgrpid`,`groupid`,`description`,`confirmation`,`type`,`execute_on`,`timeout`,`scope`,`port`,`authtype`,`username`,`password`,`publickey`,`privatekey`,`menu_path`) values ('3','Detect operating system','sudo /usr/bin/nmap -O {HOST.CONN}','2','7',NULL,'','','0','2','30s','2','','0','','','','','');
INSERT INTO `actions` (`actionid`,`name`,`eventsource`,`evaltype`,`status`,`esc_period`,`formula`,`pause_suppressed`,`notify_if_canceled`) values ('2','Auto discovery. Linux servers.','1','0','1','0','','1','1');
INSERT INTO `actions` (`actionid`,`name`,`eventsource`,`evaltype`,`status`,`esc_period`,`formula`,`pause_suppressed`,`notify_if_canceled`) values ('3','Report problems to Zabbix administrators','0','0','1','1h','','1','1');
INSERT INTO `actions` (`actionid`,`name`,`eventsource`,`evaltype`,`status`,`esc_period`,`formula`,`pause_suppressed`,`notify_if_canceled`) values ('4','Report not supported items','3','0','1','1h','','1','1');
INSERT INTO `actions` (`actionid`,`name`,`eventsource`,`evaltype`,`status`,`esc_period`,`formula`,`pause_suppressed`,`notify_if_canceled`) values ('5','Report not supported low level discovery rules','3','0','1','1h','','1','1');
INSERT INTO `actions` (`actionid`,`name`,`eventsource`,`evaltype`,`status`,`esc_period`,`formula`,`pause_suppressed`,`notify_if_canceled`) values ('6','Report unknown triggers','3','0','1','1h','','1','1');
INSERT INTO `operations` (`operationid`,`actionid`,`operationtype`,`esc_period`,`esc_step_from`,`esc_step_to`,`evaltype`,`recovery`) values ('1','2','6','0','1','1','0','0');
INSERT INTO `operations` (`operationid`,`actionid`,`operationtype`,`esc_period`,`esc_step_from`,`esc_step_to`,`evaltype`,`recovery`) values ('2','2','4','0','1','1','0','0');
INSERT INTO `operations` (`operationid`,`actionid`,`operationtype`,`esc_period`,`esc_step_from`,`esc_step_to`,`evaltype`,`recovery`) values ('3','3','0','0','1','1','0','0');
INSERT INTO `operations` (`operationid`,`actionid`,`operationtype`,`esc_period`,`esc_step_from`,`esc_step_to`,`evaltype`,`recovery`) values ('4','4','0','0','1','1','0','0');
INSERT INTO `operations` (`operationid`,`actionid`,`operationtype`,`esc_period`,`esc_step_from`,`esc_step_to`,`evaltype`,`recovery`) values ('5','5','0','0','1','1','0','0');
INSERT INTO `operations` (`operationid`,`actionid`,`operationtype`,`esc_period`,`esc_step_from`,`esc_step_to`,`evaltype`,`recovery`) values ('6','6','0','0','1','1','0','0');
INSERT INTO `operations` (`operationid`,`actionid`,`operationtype`,`esc_period`,`esc_step_from`,`esc_step_to`,`evaltype`,`recovery`) values ('7','3','11','0','1','1','0','1');
INSERT INTO `operations` (`operationid`,`actionid`,`operationtype`,`esc_period`,`esc_step_from`,`esc_step_to`,`evaltype`,`recovery`) values ('8','4','11','0','1','1','0','1');
INSERT INTO `operations` (`operationid`,`actionid`,`operationtype`,`esc_period`,`esc_step_from`,`esc_step_to`,`evaltype`,`recovery`) values ('9','5','11','0','1','1','0','1');
INSERT INTO `operations` (`operationid`,`actionid`,`operationtype`,`esc_period`,`esc_step_from`,`esc_step_to`,`evaltype`,`recovery`) values ('10','6','11','0','1','1','0','1');
INSERT INTO `opmessage` (`operationid`,`default_msg`,`subject`,`message`,`mediatypeid`) values ('3','1','','',NULL);
INSERT INTO `opmessage` (`operationid`,`default_msg`,`subject`,`message`,`mediatypeid`) values ('4','1','','',NULL);
INSERT INTO `opmessage` (`operationid`,`default_msg`,`subject`,`message`,`mediatypeid`) values ('5','1','','',NULL);
INSERT INTO `opmessage` (`operationid`,`default_msg`,`subject`,`message`,`mediatypeid`) values ('6','1','','',NULL);
INSERT INTO `opmessage` (`operationid`,`default_msg`,`subject`,`message`,`mediatypeid`) values ('7','1','','',NULL);
INSERT INTO `opmessage` (`operationid`,`default_msg`,`subject`,`message`,`mediatypeid`) values ('8','1','','',NULL);
INSERT INTO `opmessage` (`operationid`,`default_msg`,`subject`,`message`,`mediatypeid`) values ('9','1','','',NULL);
INSERT INTO `opmessage` (`operationid`,`default_msg`,`subject`,`message`,`mediatypeid`) values ('10','1','','',NULL);
INSERT INTO `opmessage_grp` (`opmessage_grpid`,`operationid`,`usrgrpid`) values ('1','3','7');
INSERT INTO `opmessage_grp` (`opmessage_grpid`,`operationid`,`usrgrpid`) values ('2','4','7');
INSERT INTO `opmessage_grp` (`opmessage_grpid`,`operationid`,`usrgrpid`) values ('3','5','7');
INSERT INTO `opmessage_grp` (`opmessage_grpid`,`operationid`,`usrgrpid`) values ('4','6','7');
INSERT INTO `opgroup` (`opgroupid`,`operationid`,`groupid`) values ('1','2','2');
INSERT INTO `conditions` (`conditionid`,`actionid`,`conditiontype`,`operator`,`value`,`value2`) values ('2','2','10','0','0','');
INSERT INTO `conditions` (`conditionid`,`actionid`,`conditiontype`,`operator`,`value`,`value2`) values ('3','2','8','0','9','');
INSERT INTO `conditions` (`conditionid`,`actionid`,`conditiontype`,`operator`,`value`,`value2`) values ('4','2','12','2','Linux','');
INSERT INTO `conditions` (`conditionid`,`actionid`,`conditiontype`,`operator`,`value`,`value2`) values ('6','4','23','0','0','');
INSERT INTO `conditions` (`conditionid`,`actionid`,`conditiontype`,`operator`,`value`,`value2`) values ('7','5','23','0','2','');
INSERT INTO `conditions` (`conditionid`,`actionid`,`conditiontype`,`operator`,`value`,`value2`) values ('8','6','23','0','4','');
INSERT INTO `config` (`configid`,`work_period`,`alert_usrgrpid`,`discovery_groupid`,`dbversion_status`,`geomaps_tile_provider`) values ('1','1-5,09:00-18:00','7','5','','OpenStreetMap.Mapnik');
INSERT INTO `graph_theme` (`graphthemeid`,`theme`,`backgroundcolor`,`graphcolor`,`gridcolor`,`maingridcolor`,`gridbordercolor`,`textcolor`,`highlightcolor`,`leftpercentilecolor`,`rightpercentilecolor`,`nonworktimecolor`,`colorpalette`) values ('1','blue-theme','FFFFFF','FFFFFF','CCD5D9','ACBBC2','ACBBC2','1F2C33','E33734','429E47','E33734','EBEBEB','1A7C11,F63100,2774A4,A54F10,FC6EA3,6C59DC,AC8C14,611F27,F230E0,5CCD18,BB2A02,5A2B57,89ABF8,7EC25C,274482,2B5429,8048B4,FD5434,790E1F,87AC4D,E89DF4');
INSERT INTO `graph_theme` (`graphthemeid`,`theme`,`backgroundcolor`,`graphcolor`,`gridcolor`,`maingridcolor`,`gridbordercolor`,`textcolor`,`highlightcolor`,`leftpercentilecolor`,`rightpercentilecolor`,`nonworktimecolor`,`colorpalette`) values ('2','dark-theme','2B2B2B','2B2B2B','454545','4F4F4F','4F4F4F','F2F2F2','E45959','59DB8F','E45959','333333','199C0D,F63100,2774A4,F7941D,FC6EA3,6C59DC,C7A72D,BA2A5D,F230E0,5CCD18,BB2A02,AC41A5,89ABF8,7EC25C,3165D5,79A277,AA73DE,FD5434,F21C3E,87AC4D,E89DF4');
INSERT INTO `graph_theme` (`graphthemeid`,`theme`,`backgroundcolor`,`graphcolor`,`gridcolor`,`maingridcolor`,`gridbordercolor`,`textcolor`,`highlightcolor`,`leftpercentilecolor`,`rightpercentilecolor`,`nonworktimecolor`,`colorpalette`) values ('3','hc-light','FFFFFF','FFFFFF','555555','000000','333333','000000','333333','000000','000000','EBEBEB','1A7C11,F63100,2774A4,A54F10,FC6EA3,6C59DC,AC8C14,611F27,F230E0,5CCD18,BB2A02,5A2B57,89ABF8,7EC25C,274482,2B5429,8048B4,FD5434,790E1F,87AC4D,E89DF4');
INSERT INTO `graph_theme` (`graphthemeid`,`theme`,`backgroundcolor`,`graphcolor`,`gridcolor`,`maingridcolor`,`gridbordercolor`,`textcolor`,`highlightcolor`,`leftpercentilecolor`,`rightpercentilecolor`,`nonworktimecolor`,`colorpalette`) values ('4','hc-dark','000000','000000','666666','888888','4F4F4F','FFFFFF','FFFFFF','FFFFFF','FFFFFF','333333','199C0D,F63100,2774A4,F7941D,FC6EA3,6C59DC,C7A72D,BA2A5D,F230E0,5CCD18,BB2A02,AC41A5,89ABF8,7EC25C,3165D5,79A277,AA73DE,FD5434,F21C3E,87AC4D,E89DF4');
INSERT INTO `globalmacro` (`globalmacroid`,`macro`,`value`,`description`,`type`) values ('2','{$SNMP_COMMUNITY}','public','','0');
INSERT INTO `regexps` (`regexpid`,`name`,`test_string`) values ('1','File systems for discovery','ext3');
INSERT INTO `regexps` (`regexpid`,`name`,`test_string`) values ('2','Network interfaces for discovery','eth0');
INSERT INTO `regexps` (`regexpid`,`name`,`test_string`) values ('3','Storage devices for SNMP discovery','/boot');
INSERT INTO `regexps` (`regexpid`,`name`,`test_string`) values ('4','Windows service names for discovery','SysmonLog');
INSERT INTO `regexps` (`regexpid`,`name`,`test_string`) values ('5','Windows service startup states for discovery','automatic');
INSERT INTO `expressions` (`expressionid`,`regexpid`,`expression`,`expression_type`,`exp_delimiter`,`case_sensitive`) values ('1','1','^(btrfs|ext2|ext3|ext4|reiser|xfs|ffs|ufs|jfs|jfs2|vxfs|hfs|apfs|refs|ntfs|fat32|zfs)$','3',',','0');
INSERT INTO `expressions` (`expressionid`,`regexpid`,`expression`,`expression_type`,`exp_delimiter`,`case_sensitive`) values ('3','3','^(Physical memory|Virtual memory|Memory buffers|Cached memory|Swap space)$','4',',','1');
INSERT INTO `expressions` (`expressionid`,`regexpid`,`expression`,`expression_type`,`exp_delimiter`,`case_sensitive`) values ('5','4','^(MMCSS|gupdate|SysmonLog|clr_optimization_v2.0.50727_32|clr_optimization_v4.0.30319_32)$','4',',','1');
INSERT INTO `expressions` (`expressionid`,`regexpid`,`expression`,`expression_type`,`exp_delimiter`,`case_sensitive`) values ('6','5','^(automatic|automatic delayed)$','3',',','1');
INSERT INTO `expressions` (`expressionid`,`regexpid`,`expression`,`expression_type`,`exp_delimiter`,`case_sensitive`) values ('7','2','^Software Loopback Interface','4',',','1');
INSERT INTO `expressions` (`expressionid`,`regexpid`,`expression`,`expression_type`,`exp_delimiter`,`case_sensitive`) values ('8','2','^(In)?[Ll]oop[Bb]ack[0-9._]*$','4',',','1');
INSERT INTO `expressions` (`expressionid`,`regexpid`,`expression`,`expression_type`,`exp_delimiter`,`case_sensitive`) values ('9','2','^NULL[0-9.]*$','4',',','1');
INSERT INTO `expressions` (`expressionid`,`regexpid`,`expression`,`expression_type`,`exp_delimiter`,`case_sensitive`) values ('10','2','^[Ll]o[0-9.]*$','4',',','1');
INSERT INTO `expressions` (`expressionid`,`regexpid`,`expression`,`expression_type`,`exp_delimiter`,`case_sensitive`) values ('11','2','^[Ss]ystem$','4',',','1');
INSERT INTO `expressions` (`expressionid`,`regexpid`,`expression`,`expression_type`,`exp_delimiter`,`case_sensitive`) values ('12','2','^Nu[0-9.]*$','4',',','1');
INSERT INTO `config_autoreg_tls` (`autoreg_tlsid`,`tls_psk_identity`,`tls_psk`) values ('1','','');
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('1','1','0','ui.default_access','1','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('2','1','0','services.read','1','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('3','1','0','services.write','0','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('4','1','0','modules.default_access','1','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('5','1','0','api.access','1','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('6','1','0','api.mode','0','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('7','1','0','actions.default_access','1','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('8','2','0','ui.default_access','1','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('9','2','0','services.read','1','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('10','2','0','services.write','1','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('11','2','0','modules.default_access','1','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('12','2','0','api.access','1','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('13','2','0','api.mode','0','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('14','2','0','actions.default_access','1','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('15','3','0','ui.default_access','1','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('16','3','0','services.read','1','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('17','3','0','services.write','1','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('18','3','0','modules.default_access','1','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('19','3','0','api.access','1','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('20','3','0','api.mode','0','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('21','3','0','actions.default_access','1','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('22','4','0','ui.default_access','1','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('23','4','0','services.read','1','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('24','4','0','services.write','0','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('25','4','0','modules.default_access','1','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('26','4','0','api.access','0','',NULL,NULL);
INSERT INTO `role_rule` (`role_ruleid`,`roleid`,`type`,`name`,`value_int`,`value_str`,`value_moduleid`,`value_serviceid`) values ('27','4','0','actions.default_access','0','',NULL,NULL);
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10001',NULL,'Linux by Zabbix agent','3','-1','2','','','Linux by Zabbix agent','0',NULL,'Official Linux template. Requires agent of Zabbix 3.0.14, 3.4.5 and 4.0.0 or newer.\r\n\r\nKnown Issues:\r\n\r\n Description: Network discovery. Zabbix agent as of 4.2 doesn\'t support items such as net.if.status, net.if.speed.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','f8f7908280354f2abeed07dc788c3747');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10047',NULL,'Zabbix server health','3','-1','2','','','Zabbix server health','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','e2d2b4e4ac28483996cc11fe42823d57');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10048',NULL,'Zabbix proxy health','3','-1','2','','','Zabbix proxy health','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','dd114bf0fb2f46bc84840f1bb24e2b23');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10050',NULL,'Zabbix agent','3','-1','2','','','Zabbix agent','0',NULL,'Use this template for agents reachable from Zabbix server/proxy (passive mode).\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','8aa4557f6c3f4aadbc03447fca3af9f6');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10074',NULL,'OpenBSD by Zabbix agent','3','-1','2','','','OpenBSD by Zabbix agent','0',NULL,'Official OpenBSD template. Requires agent of Zabbix 6.0 or newer.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','760be6e1c2194a5bb7c0df47cc5f71ca');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10075',NULL,'FreeBSD by Zabbix agent','3','-1','2','','','FreeBSD by Zabbix agent','0',NULL,'Official FreeBSD template. Requires agent of Zabbix 6.0 or newer.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','a3dc630729e443139f4e608954fa6e19');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10076',NULL,'AIX by Zabbix agent','3','-1','2','','','AIX by Zabbix agent','0',NULL,'Official AIX template. Requires agent of Zabbix 4.0.0 or newer.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','7e6bb0931a72459db9514aa924b420bc');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10077',NULL,'HP-UX by Zabbix agent','3','-1','2','','','HP-UX by Zabbix agent','0',NULL,'Official HP-UX template. Requires agent of Zabbix 4.0.0 or newer.+\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','b1fd823d262042e08291313f72be9452');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10078',NULL,'Solaris','3','-1','2','','','Solaris','0',NULL,'Official Solaris OS template. Requires Zabbix agent 4.0.0 or newer.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/+\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','eaf36c98b91843b7b79bd5184a23d377');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10079',NULL,'macOS','3','-1','2','','','macOS','0',NULL,'Official macOS template. Requires Zabbix agent 4.0.0 or newer.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','f895df5b37494f668cde1a2388d7af8b');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10081',NULL,'Windows by Zabbix agent','3','-1','2','','','Windows by Zabbix agent','0',NULL,'Official Windows template. Requires agent of Zabbix 4.4 and newer.\r\n\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387224-discussion-thread-for-official-zabbix-template-for-windows\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','13b06904a6bf41cbb795e3193d896340');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10084',NULL,'Zabbix server','0','-1','2','','','Zabbix server','0',NULL,'','1','1','','','','','','1','0','0','');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10093',NULL,'FTP Service','3','-1','2','','','FTP Service','0',NULL,'Template module for monitoring FTP service\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','3324b78f737e42fb8e6e05005c581b39');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10094',NULL,'HTTP Service','3','-1','2','','','HTTP Service','0',NULL,'Template module for monitoring HTTP service\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','ae6029df63724ff4a15819939ef74edd');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10095',NULL,'HTTPS Service','3','-1','2','','','HTTPS Service','0',NULL,'Template module for monitoring HTTPS service\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','c3ca7daa5168458f8a00852652a7f99d');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10096',NULL,'IMAP Service','3','-1','2','','','IMAP Service','0',NULL,'Template module for monitoring IMAP service\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','dd0c49d976444f168535b9c1a2db981b');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10097',NULL,'LDAP Service','3','-1','2','','','LDAP Service','0',NULL,'Template module for monitoring LDAP service\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','736d92e82cfb48a592c8a976c45ef76f');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10098',NULL,'NNTP Service','3','-1','2','','','NNTP Service','0',NULL,'Template module for monitoring NNTP service\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','22c53db48be0472cb97209c74418cf16');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10099',NULL,'NTP Service','3','-1','2','','','NTP Service','0',NULL,'Template module for monitoring NTP service\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','b28c13fdd0194ddcb5f6b18723a575ae');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10100',NULL,'POP Service','3','-1','2','','','POP Service','0',NULL,'Template module for monitoring POP service\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','e042c0e455f74e7eb2384c203edcb26e');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10101',NULL,'SMTP Service','3','-1','2','','','SMTP Service','0',NULL,'Template module for monitoring SMTP service\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','ea3cad7f70f9481ea85f797ef6ea684e');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10102',NULL,'SSH Service','3','-1','2','','','SSH Service','0',NULL,'Template module for monitoring SSH service\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','0bbd5e407d7544b28a508e18db81c235');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10103',NULL,'Telnet Service','3','-1','2','','','Telnet Service','0',NULL,'Template module for monitoring telnet service\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','7fc69c6afd334bcab0a133174983939f');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10169',NULL,'Generic Java JMX','3','-1','2','','','Generic Java JMX','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','72aab08f7f27406a8f2c291648e5ba95');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10171',NULL,'Intel SR1530 IPMI','3','-1','2','','','Intel SR1530 IPMI','0',NULL,'Template for monitoring Intel SR1530 server system\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','f01bd64eef4049fabe087cccae590226');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10172',NULL,'Intel SR1630 IPMI','3','-1','2','','','Intel SR1630 IPMI','0',NULL,'Template for monitoring Intel SR1630 server system\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','2327c665b46e4aa781d41240168c3867');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10173',NULL,'VMware','3','-1','2','','','VMware','0',NULL,'You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','56079badd056419383cc26e6a4fcc7e0');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10174',NULL,'VMware Guest','3','-1','2','','','VMware Guest','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','7942fb93ae3b47cf9ca0ea4beb0675ce');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10175',NULL,'VMware Hypervisor','3','-1','2','','','VMware Hypervisor','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','5899b2f0aced4085b5ac25d0461b3425');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10183',NULL,'EtherLike-MIB SNMP','3','-1','2','','','EtherLike-MIB SNMP','0',NULL,'Template EtherLike-MIB (duplex control only)\r\n\r\nMIBs used:\r\nEtherLike-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','3598da1effdf4ed48074608f1422e3fd');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10185',NULL,'HOST-RESOURCES-MIB SNMP','3','-1','2','','','HOST-RESOURCES-MIB SNMP','0',NULL,'HOST-RESOURCES-MIB: CPU, memory and storage(vfs.fs.file) linked together.\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','5c70662d333246668444276cb011e646');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10186',NULL,'ICMP Ping','3','-1','2','','','ICMP Ping','0',NULL,'Template Module ICMP Ping\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','37e5eb5606bc4abba66c8b20381a1e8a');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10188',NULL,'Interfaces Simple SNMP','3','-1','2','','','Interfaces Simple SNMP','0',NULL,'Template Module Interfaces Simple (no ifXTable). This is the exact copy of Template Module Interfaces template with the exception that metrics from ifXTable are replaced with ifTable counters where possible. Use this template with devices where IF-MIB::ifXtable is not available. If supported by the host - use Template Module Interfaces template instead.\r\n\r\nMIBs used:\r\nIF-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: 32bit counters are used in this template (since there is no ifXtable available). If busy interfaces return incorrect bits sent/received - set update interval to 1m or less.\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','7cd8aaa8d18d4b22a79edfb769e839b3');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10190',NULL,'Interfaces SNMP','3','-1','2','','','Interfaces SNMP','0',NULL,'Template Module Interfaces\r\n\r\nMIBs used:\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','809cd59886464ff3ad0a66d16fb1f2d8');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10192',NULL,'Interfaces Windows SNMP','3','-1','2','','','Interfaces Windows SNMP','0',NULL,'Template Interfaces Windows\r\n\r\nMIBs used:\r\nIF-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: 32bit counters are used in this template (since 64bit are not supported by Windows OS). If busy interfaces return incorrect bits sent/received - set update interval to 1m or less.\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','d7af232ed629481e95d2df9952c519c8');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10204',NULL,'Generic SNMP','3','-1','2','','','Generic SNMP','0',NULL,'Template Module Generic\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','4cb1aabe2b704b5c882963c2ef87d8f6');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10207',NULL,'Alcatel Timetra TiMOS SNMP','3','-1','2','','','Alcatel Timetra TiMOS SNMP','0',NULL,'Template Net Alcatel Timetra TiMOS\r\n\r\nMIBs used:\r\nEtherLike-MIB\r\nTIMETRA-SYSTEM-MIB\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nTIMETRA-CHASSIS-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','53044571fb864d87af32473e08c76d0b');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10208',NULL,'Brocade FC SNMP','3','-1','2','','','Brocade FC SNMP','0',NULL,'Template Net Brocade FC\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nSW-MIB\r\nIF-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: no IF-MIB::ifAlias is available\r\n Version: v6.3.1c, v7.0.0c, v7.4.1c\r\n Device: all\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','de96d02bd5f242bfa31308ae2131d03f');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10209',NULL,'Brocade_Foundry Performance SNMP','3','-1','2','','','Brocade_Foundry Performance SNMP','0',NULL,'Template Module Brocade_Foundry Performance\r\n\r\nMIBs used:\r\nFOUNDRY-SN-AGENT-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','c55052212c774e3fbab00343050b3db5');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10210',NULL,'Brocade_Foundry Nonstackable SNMP','3','-1','2','','','Brocade_Foundry Nonstackable SNMP','0',NULL,'Template Net Brocade_Foundry Nonstackable\r\n\r\nMIBs used:\r\nFOUNDRY-SN-AGENT-MIB\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','6ecfb7083ddf45f183ab4be50cfba37a');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10211',NULL,'Brocade_Foundry Stackable SNMP','3','-1','2','','','Brocade_Foundry Stackable SNMP','0',NULL,'Template Brocade_Foundry Stackable\r\n\r\nMIBs used:\r\nFOUNDRY-SN-AGENT-MIB\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nFOUNDRY-SN-STACKING-MIB\r\nIF-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: Correct fan(returns fan status as \'other(1)\' and temperature (returns 0) for the non-master Switches are not available in SNMP\r\n Version: Version 08.0.40b and above\r\n Device: ICX 7750 in stack\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','f64ad01567914165a493815e492fb315');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10212',NULL,'Cisco CISCO-MEMORY-POOL-MIB SNMP','3','-1','2','','','Cisco CISCO-MEMORY-POOL-MIB SNMP','0',NULL,'Template Cisco CISCO-MEMORY-POOL-MIB\r\n\r\nMIBs used:\r\nCISCO-MEMORY-POOL-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','d7c122cde75447248d4b1613cdc25d5b');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10213',NULL,'Cisco CISCO-PROCESS-MIB SNMP','3','-1','2','','','Cisco CISCO-PROCESS-MIB SNMP','0',NULL,'Template Cisco CISCO-PROCESS-MIB\r\n\r\nMIBs used:\r\nCISCO-PROCESS-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','f934f5e71db642c689ed2f945f73ce6c');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10215',NULL,'Cisco OLD-CISCO-CPU-MIB SNMP','3','-1','2','','','Cisco OLD-CISCO-CPU-MIB SNMP','0',NULL,'Template Cisco OLD-CISCO-CPU-MIB\r\n\r\nMIBs used:\r\nOLD-CISCO-CPU-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','1b0025aaf71f47ec91d08c17a399c6a6');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10216',NULL,'Cisco Inventory SNMP','3','-1','2','','','Cisco Inventory SNMP','0',NULL,'Template Cisco Inventory\r\n\r\nMIBs used:\r\nENTITY-MIB\r\nSNMPv2-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','90c99055648f40df8517005a7670158c');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10217',NULL,'Cisco CISCO-ENVMON-MIB SNMP','3','-1','2','','','Cisco CISCO-ENVMON-MIB SNMP','0',NULL,'Template Cisco CISCO-ENVMON-MIB\r\n\r\nMIBs used:\r\nCISCO-ENVMON-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','51af5cf9312b41d38ab22e02c9af6bbc');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10218',NULL,'Cisco IOS SNMP','3','-1','2','','','Cisco IOS SNMP','0',NULL,'Template Cisco IOS Software releases 12.2(3.5) or later\r\n\r\nMIBs used:\r\nCISCO-MEMORY-POOL-MIB\r\nIF-MIB\r\nEtherLike-MIB\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nCISCO-ENVMON-MIB\r\nCISCO-PROCESS-MIB\r\nENTITY-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: no if(in|out)(Errors|Discards) are available for vlan ifType\r\n Version: IOS for example: 12.1(22)EA11, 15.4(3)M2\r\n Device: C2911, C7600\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','aa3ce9bd8c1d40a2b0f83f9e642e88ee');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10220',NULL,'Cisco IOS prior to 12.0_3_T SNMP','3','-1','2','','','Cisco IOS prior to 12.0_3_T SNMP','0',NULL,'Cisco IOS Software releases prior to 12.0(3)T\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nOLD-CISCO-CPU-MIB\r\nCISCO-ENVMON-MIB\r\nCISCO-MEMORY-POOL-MIB\r\nENTITY-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','1bb42fbdb9054645a62ff81f14ba3b99');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10221',NULL,'Dell Force S-Series SNMP','3','-1','2','','','Dell Force S-Series SNMP','0',NULL,'Template Dell Force S-Series\r\n\r\nMIBs used:\r\nF10-S-SERIES-CHASSIS-MIB\r\nEtherLike-MIB\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','e5ec7acc7efc4ac491b6fa552ab077ae');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10222',NULL,'D-Link DES 7200 SNMP','3','-1','2','','','D-Link DES 7200 SNMP','0',NULL,'Template D-Link DES 7200\r\n\r\nMIBs used:\r\nENTITY-MIBdescription has changed\r\nIF-MIB\r\nMY-PROCESS-MIB\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMY-MEMORY-MIB\r\nENTITY-MIB\r\nMY-SYSTEM-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','395184b5d5b048a68e06c91154c56847');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10223',NULL,'D-Link DES_DGS Switch SNMP','3','-1','2','','','D-Link DES_DGS Switch SNMP','0',NULL,'Template D-Link DES_DGS Switch\r\n\r\nMIBs used:\r\nEQUIPMENT-MIB\r\nIF-MIB\r\nDLINK-AGENT-MIB\r\nEtherLike-MIB\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nENTITY-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: D-Link reports missing PSU as fail(4)\r\n Version: Firmware: 1.73R008,hardware revision: B1\r\n Device: DGS-3420-26SC Gigabit Ethernet Switch\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','d3176749a5274264938f487cd89d17eb');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10224',NULL,'Extreme EXOS SNMP','3','-1','2','','','Extreme EXOS SNMP','0',NULL,'Template Extreme EXOS\r\n\r\nMIBs used:\r\nEXTREME-SYSTEM-MIB\r\nIF-MIB\r\nEtherLike-MIB\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nEXTREME-SOFTWARE-MONITOR-MIB\r\nENTITY-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','861dbdece18f4b8f85214a319995eb3e');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10226',NULL,'Network Generic Device SNMP','3','-1','2','','','Network Generic Device SNMP','0',NULL,'Template Net Network Generic Device\r\n\r\nMIBs used:\r\nEtherLike-MIB\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','67332e679035423f85090aa985947c36');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10227',NULL,'HP Comware HH3C SNMP','3','-1','2','','','HP Comware HH3C SNMP','0',NULL,'Template Net HP Comware (HH3C)\r\n\r\nMIBs used:\r\nEtherLike-MIB\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nENTITY-MIB\r\nHH3C-ENTITY-EXT-MIB\r\nIF-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: No temperature sensors. All entities of them return 0 for HH3C-ENTITY-EXT-MIB::hh3cEntityExtTemperature\r\n Version: 1910-48 Switch Software Version 5.20.99, Release 1116 Copyright(c)2010-2016 Hewlett Packard Enterprise Development LP\r\n Device: HP 1910-48\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','57aeccd43b744942b9555269b79a96ad');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10229',NULL,'Huawei VRP SNMP','3','-1','2','','','Huawei VRP SNMP','0',NULL,'Template Net Huawei VRP\r\n\r\nMIBs used:\r\nEtherLike-MIB\r\nHUAWEI-ENTITY-EXTENT-MIB\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nENTITY-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','ad4c3dad4b7b492685d1fd3bd3a664f9');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10230',NULL,'Intel_Qlogic Infiniband SNMP','3','-1','2','','','Intel_Qlogic Infiniband SNMP','0',NULL,'Template Net Intel_Qlogic Infiniband\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nICS-CHASSIS-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','6f7f2c44e13a46a4b219fbb5db92f3f7');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10231',NULL,'Juniper SNMP','3','-1','2','','','Juniper SNMP','0',NULL,'Template Net Juniper\r\n\r\nMIBs used:\r\nEtherLike-MIB\r\nJUNIPER-ALARM-MIB\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nJUNIPER-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','a326034825984bbd8a3a5885f3939bb3');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10233',NULL,'Mikrotik SNMP','3','-1','2','','','Mikrotik SNMP','0',NULL,'Template Net Mikrotik\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: Doesn\'t have ifHighSpeed filled. fixed in more recent versions\r\n Version: RouterOS 6.28 or lower\r\n\r\n Description: Doesn\'t have any temperature sensors\r\n Version: RouterOS 6.38.5\r\n Device: Mikrotik 941-2nD, Mikrotik 951G-2HnD\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','815b5a81b29a477695fddbd533ad9c84');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10234',NULL,'Netgear Fastpath SNMP','3','-1','2','','','Netgear Fastpath SNMP','0',NULL,'Template Net Netgear Fastpath\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nFASTPATH-SWITCHING-MIB\r\nFASTPATH-BOXSERVICES-PRIVATE-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','5920713da492452889adabc25e259caa');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10235',NULL,'QTech QSW SNMP','3','-1','2','','','QTech QSW SNMP','0',NULL,'Template Net QTech QSW\r\n\r\nMIBs used:\r\nQTECH-MIB\r\nEtherLike-MIB\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nENTITY-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','21f3e79e1d2e4f5e868d1ef81c94bbfd');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10236',NULL,'TP-LINK SNMP','3','-1','2','','','TP-LINK SNMP','0',NULL,'Template Net TP-LINK\r\n\r\nMIBs used:\r\nTPLINK-SYSINFO-MIB\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nTPLINK-SYSMONITOR-MIB\r\nIF-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: Default sysLocation, sysName and sysContact is not filled with proper data. Real hostname and location can be found only in private branch (TPLINK-SYSINFO-MIB). Please check whether this problem exists in the latest firmware: https://www.tp-link.com/en/support/download/t2600g-28ts/#Firmware\r\n Version: 2.0.0 Build 20170628 Rel.55184 (Beta)\r\n Device: T2600G-28TS 2.0\r\n\r\n Description: The Serial number of the product (tpSysInfoSerialNum) is missing in HW versions prior to V2_170323\r\n Version: Prior to version V2_170323\r\n Device: T2600G-28TS 2.0\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','2b9039885edf45b8bdd39f16dd069133');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10237',NULL,'Ubiquiti AirOS SNMP','3','-1','2','','','Ubiquiti AirOS SNMP','0',NULL,'Template Net Ubiquiti AirOS\r\n\r\nMIBs used:\r\nFROGFOOT-RESOURCES-MIB\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nIEEE802dot11-MIB\r\nIF-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: UBNT unifi reports speed: like IF-MIB::ifSpeed.1 = Gauge32: 4294967295 for all interfaces\r\n Version: Firmware: BZ.ar7240.v3.7.51.6230.170322.1513\r\n Device: UBNT UAP-LR\r\n\r\n Description: UBNT AirMax(NanoStation, NanoBridge etc) reports ifSpeed: as 0 for VLAN and wireless(ath0) interfaces\r\n Version: Firmware: XW.ar934x.v5.6-beta4.22359.140521.1836\r\n Device: NanoStation M5\r\n\r\n Description: UBNT AirMax(NanoStation, NanoBridge etc) reports always return ifType: as ethernet(6) even for wifi,vlans and other types\r\n Version: Firmware: XW.ar934x.v5.6-beta4.22359.140521.1836\r\n Device: NanoStation M5\r\n\r\n Description: ifXTable is not provided in IF-MIB. So Interfaces Simple Template is used instead\r\n Version: all above\r\n Device: NanoStation, UAP-LR\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','6c235d126c1f4895acfe2156b140a886');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10248',NULL,'Linux SNMP','3','-1','2','','','Linux SNMP','0',NULL,'Template OS Linux\r\n\r\nMIBs used:\r\nEtherLike-MIB\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nUCD-DISKIO-MIB\r\nUCD-SNMP-MIB\r\nIF-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','4d3a7adbb6964bd08f2b9d28e0da6496');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10249',NULL,'Windows SNMP','3','-1','2','','','Windows SNMP','0',NULL,'Official Windows SNMP template. Requires Zabbix server 4.0.14, 4.2.8, 4.4.0 or newer (JSONPath function avg() used with types autoconversion).\r\n\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nIF-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: Doesn\'t support In/Out 64 bit counters even though IfxTable is present:\r\nCurrently, Windows gets it\'s interface status from MIB-2. Since these 64bit SNMP counters (ifHCInOctets, ifHCOutOctets, etc.) are defined as an extension to IF-MIB, Microsoft has not implemented it.\r\nhttps://social.technet.microsoft.com/Forums/windowsserver/en-US/07b62ff0-94f6-40ca-a99d-d129c1b33d70/windows-2008-r2-snmp-64bit-counters-support?forum=winservergen\r\n\r\n Version: Win2008, Win2012R2.\r\n\r\n Description: Doesn\'t support ifXTable at all\r\n Version: WindowsXP\r\n\r\n Description: EtherLike MIB is not supported\r\n Version: *\r\n Device: *\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','f9a59315c8944853bb91c0a9ec3056d7');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10250',NULL,'HP Enterprise Switch SNMP','3','-1','2','','','HP Enterprise Switch SNMP','0',NULL,'Template Net HP Enterprise Switch\r\n\r\nMIBs used:\r\nNETSWITCH-MIB\r\nHP-ICF-CHASSIS\r\nENTITY-SENSORS-MIB\r\nIF-MIB\r\nEtherLike-MIB\r\nSEMI-MIB\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nENTITY-MIB\r\nSTATISTICS-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','cce20a5d149a48b7ac7f5383c3510883');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10251',NULL,'Mellanox SNMP','3','-1','2','','','Mellanox SNMP','0',NULL,'The updated template for monitoring the Mellanox network switches over SNMP agent. All items collected in one template without any linked templates.\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nENTITY-SENSORS-MIB\r\nENTITY-STATE-MIB\r\nENTITY-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','a60798c651604d93a062bec0f8a89751');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10252',NULL,'Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5 SNMP','3','-1','2','','','Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5 SNMP','0',NULL,'Template Module Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5\r\n\r\nMIBs used:\r\nCISCO-PROCESS-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','3eadb8a2ad4a479cb59bfa6402deee3f');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10253',NULL,'Cisco IOS versions 12.0_3_T-12.2_3.5 SNMP','3','-1','2','','','Cisco IOS versions 12.0_3_T-12.2_3.5 SNMP','0',NULL,'Cisco IOS Software releases later to 12.0(3)T and prior to 12.2(3.5)\r\n\r\nMIBs used:\r\nCISCO-MEMORY-POOL-MIB\r\nIF-MIB\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nCISCO-ENVMON-MIB\r\nCISCO-PROCESS-MIB\r\nENTITY-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','40c233aaa3424fd29dc378022ff3461d');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10254',NULL,'Arista SNMP','3','-1','2','','','Arista SNMP','0',NULL,'Template Net Arista\r\n\r\nMIBs used:\r\nENTITY-SENSORS-MIB\r\nENTITY-STATE-MIB\r\nIF-MIB\r\nEtherLike-MIB\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nENTITY-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','26674f62500e4e79b9f470bbf962130d');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10255',NULL,'Dell iDRAC SNMP','3','-1','2','','','Dell iDRAC SNMP','0',NULL,'Template Server iDRAC\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nIDRAC-MIB-SMIv2\r\nSNMPv2-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','43dc5c8a9a0e4786b64e44422c7f32b4');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10256',NULL,'HP iLO SNMP','3','-1','2','','','HP iLO SNMP','0',NULL,'Template Server HP iLO\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nCPQHLTH-MIB\r\nSNMPv2-MIB\r\nCPQSINFO-MIB\r\nCPQIDA-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','c2a7ddca051d4b4a9553f339c57e47a9');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10258',NULL,'IBM IMM SNMP','3','-1','2','','','IBM IMM SNMP','0',NULL,'Template Server IBM IMM\r\n\r\nMIBs used:\r\nIMM-MIB\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: Some IMMs (IMM1) do not return disks\r\n Version: IMM1\r\n Device: IBM x3250M3\r\n\r\n Description: Some IMMs (IMM1) do not return fan status: fanHealthStatus\r\n Version: IMM1\r\n Device: IBM x3250M3\r\n\r\n Description: IMM1 servers (M2, M3 generations) sysObjectID is NET-SNMP-MIB::netSnmpAgentOIDs.10\r\n Version: IMM1\r\n Device: IMM1 servers (M2,M3 generations)\r\n\r\n Description: IMM1 servers (M2, M3 generations) only Ambient temperature sensor available\r\n Version: IMM1\r\n Device: IMM1 servers (M2,M3 generations)\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','c9e1acd3ae4a427ab39724b6bcaf839e');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10259',NULL,'Supermicro Aten SNMP','3','-1','2','','','Supermicro Aten SNMP','0',NULL,'Template Server Supermicro Aten\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nATEN-IPMI-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','cf0947cc05d3450b9a6d66b2eb180482');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10260',NULL,'Apache Tomcat by JMX','3','-1','2','','','Apache Tomcat by JMX','0',NULL,'The template to monitor Apache Tomcat by Zabbix that work without any external scripts.\r\nThe metrics are collected by JMX.\r\n\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/411862-discussion-thread-for-official-zabbix-template-tomcat\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','3cc8c9ae7055458c9a803597007f70bd');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10261',NULL,'Remote Zabbix server health','3','-1','2','','','Remote Zabbix server health','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','79b16cbbe593444eae3de66de0cb566b');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10262',NULL,'Remote Zabbix proxy health','3','-1','2','','','Remote Zabbix proxy health','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','970c2342146549768e6b91a26089bcdf');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10264',NULL,'Apache by Zabbix agent','3','-1','2','','','Apache by Zabbix agent','0',NULL,'Get metrics from mod_status module using HTTP agent.\r\nhttps://httpd.apache.org/docs/current/mod/mod_status.html\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384764-discussion-thread-for-official-zabbix-template-apache\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','a8d91e4f36794e32b73090d5edf3d7ae');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10265',NULL,'Apache by HTTP','3','-1','2','','','Apache by HTTP','0',NULL,'Get metrics from mod_status module using HTTP agent.\r\nhttps://httpd.apache.org/docs/current/mod/mod_status.html\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384764-discussion-thread-for-official-zabbix-template-apache\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','86702e8bc514434e8c914d50c206cb94');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10266',NULL,'Nginx by Zabbix agent','3','-1','2','','','Nginx by Zabbix agent','0',NULL,'Get metrics from stub status module using Zabbix agent running on Linux\r\nhttps://nginx.ru/en/docs/http/ngx_http_stub_status_module.html\r\n\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384765-discussion-thread-for-official-zabbix-template-nginx\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','27f6424905884dbb96ab9210d987a56c');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10267',NULL,'Nginx by HTTP','3','-1','2','','','Nginx by HTTP','0',NULL,'Get metrics from stub status module using HTTP agent\r\nhttps://nginx.ru/en/docs/http/ngx_http_stub_status_module.html.\r\n\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384765-discussion-thread-for-official-zabbix-template-nginx\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','13d5bb0a4ae84228bff408aab5be338e');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10268',NULL,'Linux memory SNMP','3','-1','2','','','Linux memory SNMP','0',NULL,'MIBs used:\r\nUCD-SNMP-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP.\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','443e4897fb0a4eef9d4624a3baa8f174');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10269',NULL,'Linux block devices SNMP','3','-1','2','','','Linux block devices SNMP','0',NULL,'MIBs used:\r\nUCD-DISKIO-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','8278f5e79ef2420cab500a147cc72009');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10270',NULL,'Linux CPU SNMP','3','-1','2','','','Linux CPU SNMP','0',NULL,'MIBs used:\r\nHOST-RESOURCES-MIB\r\nUCD-SNMP-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','f55b1b1c10a44fe8aef0631f6f41b86d');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10271',NULL,'Linux filesystems SNMP','3','-1','2','','','Linux filesystems SNMP','0',NULL,'MIBs used:\r\nHOST-RESOURCES-MIB\r\nUCD-SNMP-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','cbaf0383cb934294ac53a28ddfd49434');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10272',NULL,'Linux CPU by Zabbix agent','3','-1','2','','','Linux CPU by Zabbix agent','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','d4e080814aad467dbf6b95c46b862c28');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10273',NULL,'Linux filesystems by Zabbix agent','3','-1','2','','','Linux filesystems by Zabbix agent','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','fdcdd5810fba49928922a683d32aa76f');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10274',NULL,'Linux memory by Zabbix agent','3','-1','2','','','Linux memory by Zabbix agent','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','06c211e947414638bd00e555e206d03d');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10275',NULL,'Linux block devices by Zabbix agent','3','-1','2','','','Linux block devices by Zabbix agent','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','45486dbbf5bf49f28866fcb212731cf0');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10276',NULL,'Linux network interfaces by Zabbix agent','3','-1','2','','','Linux network interfaces by Zabbix agent','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','18ecfb2a7e754315bb8d7f71917153da');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10277',NULL,'Linux generic by Zabbix agent','3','-1','2','','','Linux generic by Zabbix agent','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','38f973ee1556494fadeacb2f6b1ec987');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10285',NULL,'Linux by Prom','3','-1','2','','','Linux by Prom','0',NULL,'Official Linux template using node exporter.\r\n\r\nKnown Issues:\r\n\r\n Description: node_exporter v0.16.0 renamed many metrics. CPU utilization for \'guest\' and \'guest_nice\' metrics are not supported in this template with node_exporter < 0.16. Disk IO metrics are not supported. Other metrics provided as \'best effort\'.\r\nSee https://github.com/prometheus/node_exporter/releases/tag/v0.16.0 for details.\r\n Version: below 0.16.0\r\n\r\n Description: metric node_network_info with label \'device\' cannot be found, so network discovery is not possible.\r\n Version: below 0.18\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','2506b0ca01884903b547b1e19b76ce6d');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10286',NULL,'Windows CPU by Zabbix agent','3','-1','2','','','Windows CPU by Zabbix agent','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','e358504d59404f688e236444dd82d2c3');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10287',NULL,'Windows memory by Zabbix agent','3','-1','2','','','Windows memory by Zabbix agent','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','539b4b98f6fb4e12bbdf3bcdb85df2d1');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10288',NULL,'Windows filesystems by Zabbix agent','3','-1','2','','','Windows filesystems by Zabbix agent','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','cb28abff977b4b6eb34665ff2218163b');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10289',NULL,'Windows physical disks by Zabbix agent','3','-1','2','','','Windows physical disks by Zabbix agent','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','4026647be95a47de98b0f09dc36ce72f');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10290',NULL,'Windows generic by Zabbix agent','3','-1','2','','','Windows generic by Zabbix agent','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','95c4026f8ade4fa7b72f8140fc152aea');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10291',NULL,'Windows network by Zabbix agent','3','-1','2','','','Windows network by Zabbix agent','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','6ad6a4d1e677461ca6d1d5b2dcaba6d2');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10292',NULL,'Zabbix agent active','3','-1','2','','','Zabbix agent active','0',NULL,'Use this template instead of \'Template Module Zabbix agent\' for agents running in active mode only.\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','650bec3f2f364a478b82317396949459');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10300',NULL,'RabbitMQ cluster by Zabbix agent','3','-1','2','','','RabbitMQ cluster by Zabbix agent','0',NULL,'Get cluster metrics from RabbitMQ management plugin provided an HTTP-based API using Zabbix agent.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387226-discussion-thread-for-official-zabbix-template-rabbitmq\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','5fa761bc51e4432a90c6c9eece930c4a');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10301',NULL,'RabbitMQ node by Zabbix agent','3','-1','2','','','RabbitMQ node by Zabbix agent','0',NULL,'Get node metrics from RabbitMQ management plugin provided an HTTP-based API using Zabbix agent.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387226-discussion-thread-for-official-zabbix-template-rabbitmq\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','d5dc11ae9ab143a89c4be534bbb35188');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10302',NULL,'RabbitMQ cluster by HTTP','3','-1','2','','','RabbitMQ cluster by HTTP','0',NULL,'Get cluster metrics from RabbitMQ management plugin provided an HTTP-based API using HTTP agent.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387226-discussion-thread-for-official-zabbix-template-rabbitmq\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','8c8474148c2a4eaeabe5a9331ea99d77');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10303',NULL,'RabbitMQ node by HTTP','3','-1','2','','','RabbitMQ node by HTTP','0',NULL,'Get node metrics from RabbitMQ management plugin provided an HTTP-based API using HTTP agent.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387226-discussion-thread-for-official-zabbix-template-rabbitmq\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','b9514029d03b44de9adf24251778dbf3');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10304',NULL,'Cisco UCS SNMP','3','-1','2','','','Cisco UCS SNMP','0',NULL,'Template Server Cisco UCS\r\n\r\nMIBs used:\r\nCISCO-UNIFIED-COMPUTING-COMPUTE-MIB\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nCISCO-UNIFIED-COMPUTING-PROCESSOR-MIB\r\nCISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB\r\nCISCO-UNIFIED-COMPUTING-STORAGE-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','cb66d34564e44b3893442fc74cf6e951');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10305',NULL,'HOST-RESOURCES-MIB CPU SNMP','3','-1','2','','','HOST-RESOURCES-MIB CPU SNMP','0',NULL,'Requires Zabbix server 4.0.14, 4.2.8, 4.4.0 or newer (JSONPath function avg() used with types autoconversion).\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','b3dd7c4974f442d68c53a79056bc5388');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10306',NULL,'HOST-RESOURCES-MIB memory SNMP','3','-1','2','','','HOST-RESOURCES-MIB memory SNMP','0',NULL,'MIBs used:\r\nHOST-RESOURCES-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','a2718bb9168a451fae8fc97486176943');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10307',NULL,'HOST-RESOURCES-MIB storage SNMP','3','-1','2','','','HOST-RESOURCES-MIB storage SNMP','0',NULL,'MIBs used:\r\nHOST-RESOURCES-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','f6572ac29240452596e9f7b2a7ebb408');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10308',NULL,'HAProxy by Zabbix agent','3','-1','2','','','HAProxy by Zabbix agent','0',NULL,'Get metrics from status page using Zabbix agent\r\nhttps://www.haproxy.com/blog/exploring-the-haproxy-stats-page/.\r\nExample configuration of HAProxy:\r\n frontend stats\r\n bind *:8404\r\n stats enable\r\n stats uri /stats\r\n stats refresh 10s\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/393527-discussion-thread-for-official-zabbix-template-haproxy\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','812073bf8df143bcae2a84b32c3965e5');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10309',NULL,'HAProxy by HTTP','3','-1','2','','','HAProxy by HTTP','0',NULL,'Get metrics from status page using HTTP agent\r\nhttps://www.haproxy.com/blog/exploring-the-haproxy-stats-page/.\r\nExample configuration of HAProxy:\r\n frontend stats\r\n bind *:8404\r\n stats enable\r\n stats uri /stats\r\n stats refresh 10s\r\n #stats auth Username:Password # Authentication credentials\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/393527-discussion-thread-for-official-zabbix-template-haproxy\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','948d046cb2894e5c8d07767a518cc1a9');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10310',NULL,'Redis by Zabbix agent 2','3','-1','2','','','Redis by Zabbix agent 2','0',NULL,'Get Redis metrics from plugin for the New Zabbix Agent (zabbix-agent2).\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/389050-discussion-thread-for-official-zabbix-template-redis\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','e111446745a1425b862f8727ae63bce4');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10314',NULL,'Windows services by Zabbix agent','3','-1','2','','','Windows services by Zabbix agent','0',NULL,'Template Services OS Windows\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','dfd6f32510a840c29f9cb4b974977770');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10316',NULL,'MySQL by Zabbix agent','3','-1','2','','','MySQL by Zabbix agent','0',NULL,'Requirements for template operation:\r\n1.Install Zabbix agent and MySQL client.\r\n2.Copy template_db_mysql.conf into folder with Zabbix agent configuration (/etc/zabbix/zabbix_agentd.d/ by default). Don\'t forget to restart zabbix-agent.\r\n3.Create MySQL user for monitoring. For example:\r\nCREATE USER \'zbx_monitor\'@\'%\' IDENTIFIED BY \'\';\r\nGRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO \'zbx_monitor\'@\'%\';\r\nFor more information read the MySQL documentation https://dev.mysql.com/doc/refman/8.0/en/grant.html , please. \r\n4.Create .my.cnf in home directory of Zabbix agent for Linux (/var/lib/zabbix by default) or my.cnf in c:\\ for Windows. For example:\r\n[client]\r\nuser=\'zbx_monitor\'\r\npassword=\'\'\r\n\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384189-discussion-thread-for-official-zabbix-template-db-mysql\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','f255e3fc32124b55b2a17ef3c961e5f5');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10317',NULL,'MySQL by ODBC','3','-1','2','','','MySQL by ODBC','0',NULL,'Requirements for template operation:\r\n1. Create MySQL user for monitoring. For example:\r\nCREATE USER \'zbx_monitor\'@\'%\' IDENTIFIED BY \'\';\r\nGRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO \'zbx_monitor\'@\'%\';\r\nFor more information read the MYSQL documentation https://dev.mysql.com/doc/refman/8.0/en/grant.html , please.\r\n2. Set the user name and password in host macros ({$MYSQL.USER} and {$MYSQL.PASSWORD}).\r\n\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384189-discussion-thread-for-official-zabbix-template-db-mysql\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','e19c120027e04da69b130e0f6cea29fc');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10318',NULL,'Docker by Zabbix agent 2','3','-1','2','','','Docker by Zabbix agent 2','0',NULL,'Get Docker engine metrics from plugin for the New Zabbix Agent (zabbix-agent2).\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/435429-discussion-thread-for-official-zabbix-template-docker\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','c5fd214cdd0d4b3b8272e73b022ba5c2');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10319',NULL,'Memcached by Zabbix agent 2','3','-1','2','','','Memcached by Zabbix agent 2','0',NULL,'Get Memcached metrics from plugin for the New Zabbix Agent (zabbix-agent2).\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/398623-discussion-thread-for-official-zabbix-template-memcached\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','05894ba2c9184d33992bf1bd21c347f6');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10320',NULL,'MySQL by Zabbix agent 2','3','-1','2','','','MySQL by Zabbix agent 2','0',NULL,'Requirements for template operation:\r\n1. Create MySQL user for monitoring. For example:\r\nCREATE USER \'zbx_monitor\'@\'%\' IDENTIFIED BY \'\';\r\nGRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO \'zbx_monitor\'@\'%\';\r\nFor more information please read the MySQL documentation https://dev.mysql.com/doc/refman/8.0/en/grant.html.\r\n2. Set in the {$MYSQL.DSN} macro the data source name of the MySQL instance either session name from Zabbix agent 2 configuration file or URI.\r\nExamples: MySQL1, tcp://localhost:3306, tcp://172.16.0.10, unix:/var/run/mysql.sock\r\nFor more information about MySQL Unix socket file please read the MySQL documentation https://dev.mysql.com/doc/refman/8.0/en/problems-with-mysql-sock.html.\r\n3. If you had set URI in the {$MYSQL.DSN}, please define the user name and password in host macros ({$MYSQL.USER} and {$MYSQL.PASSWORD}).\r\nLeave macros {$MYSQL.USER} and {$MYSQL.PASSWORD} empty if you use a session name. Set the user name and password in the Plugins.Mysql.<...> section of your Zabbix agent 2 configuration file.\r\nFor more information about configuring the Zabbix MySQL plugin please read the documentation https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/src/go/plugins/mysql/README.md.\r\n\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384189-discussion-thread-for-official-zabbix-template-db-mysql\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','4904f84303c74c5e955b7849730c3155');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10321',NULL,'Chassis by IPMI','3','-1','2','','','Chassis by IPMI','0',NULL,'Template for monitoring servers with BMC over IPMI that work without any external scripts.\r\nAll metrics are collected at once, thanks to Zabbix\'s bulk data collection. The template is available starting from Zabbix version 5.0.\r\nIt collects metrics by polling BMC remotely using an IPMI agent.\r\n\r\n\r\nKnown Issues:\r\n\r\n Description: If the BMC has a sensor with an empty threshold value, we get the LLD error "Cannot create trigger...".\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/398023-discussion-thread-for-official-zabbix-template-ipmi\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','02f35169a5a54a5aad8b3f06e798ab1f');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10322',NULL,'Elasticsearch Cluster by HTTP','3','-1','2','','','Elasticsearch Cluster by HTTP','0',NULL,'The template to monitor Elasticsearch by Zabbix that work without any external scripts.\r\nIt works with both standalone and cluster instances.\r\nThe metrics are collected in one pass remotely using an HTTP agent.\r\nThey are getting values from REST API _cluster/health, _cluster/stats, _nodes/stats requests.\r\nYou can set {$ELASTICSEARCH.USERNAME} and {$ELASTICSEARCH.PASSWORD} macros in the template for using on the host level.\r\nIf you use an atypical location ES API, don\'t forget to change the macros {$ELASTICSEARCH.SCHEME},{$ELASTICSEARCH.PORT}.\r\n\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/399473-discussion-thread-for-official-zabbix-template-for-elasticsearch\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','52b2664578884d9eba62e47375c99f8e');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10323',NULL,'ClickHouse by HTTP','3','-1','2','','','ClickHouse by HTTP','0',NULL,'Get node metrics from ClickHouse HTTP interface using HTTP agent.\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','95f2053c21094ad4968440b562cc7ea2');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10324',NULL,'Etcd by HTTP','3','-1','2','','','Etcd by HTTP','0',NULL,'Get Etcd metrics by HTTP agent.\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','b25b8b517a4743c48037bfa10af3dc3c');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10325',NULL,'IIS by Zabbix agent','3','-1','2','','','IIS by Zabbix agent','0',NULL,'Get metrics from IIS using Zabbix agent running on Windows.\r\n\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/401862-discussion-thread-for-official-zabbix-template-internet-information-services\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','c7c7e5dc319b4801982e719beb1c5191');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10326',NULL,'IIS by Zabbix agent active','3','-1','2','','','IIS by Zabbix agent active','0',NULL,'Get metrics from IIS using Zabbix agent running on Windows.\r\n\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/401862-discussion-thread-for-official-zabbix-template-internet-information-services\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','4677be3e07bf4f3285496f2f4230b928');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10327',NULL,'MSSQL by ODBC','3','-1','2','','','MSSQL by ODBC','0',NULL,'1. Create an MSSQL user for monitoring.\r\n View Server State and View Any Definition permissions should be granted to the user.\r\n Grant this user read permissions to the sysjobschedules, sysjobhistory, sysjobs tables.\r\n For more information, see MSSQL documentation.\r\n2. Set the user name and password in host macros ({$MSSQL.USER} and {$MSSQL.PASSWORD}).\r\n Do not forget to install Microsoft ODBC driver on Zabbix server or Zabbix proxy.\r\n See Microsoft documentation for instructions: https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-ver15.\r\n Note! Credentials in the odbc.ini do not work for MSSQL.\r\n3. For named instance set the value of {$MSSQL.INSTANCE} macro as MSSQL$instance name.\r\nThe "Service\'s TCP port state" item uses {HOST.CONN} and {$MSSQL.PORT} macros to check the availability of the MSSQL instance.\r\n\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','001a1677f6a949b6bddfdb2926023300');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10328',NULL,'Oracle by ODBC','3','-1','2','','','Oracle by ODBC','0',NULL,'1. Create an Oracle user for monitoring.\r\n\r\n2. Set the user name and password in host macros ({$ORACLE.USER} and {$ORACLE.PASSWORD}).\r\n Do not forget to install the Microsoft ODBC driver on the Zabbix server or the Zabbix proxy.\r\n See Oracle documentation for instructions: https://www.oracle.com/database/technologies/releasenote-odbc-ic.html.\r\n\r\n Note! Credentials in the odbc.ini do not work for Oracle.\r\n Note! Be sure that ODBC connects to Oracle with session parameter NLS_NUMERIC_CHARACTERS= \'.,\' It is important for correct display float numbers in Zabbix.\r\nThe "Service\'s TCP port state" item uses {HOST.CONN} and {$ORACLE.PORT} macros to check the availability of the listener.\r\n\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','00ade9277d7c41e8b57d638b22d54372');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10329',NULL,'PostgreSQL by Zabbix agent 2','3','-1','2','','','PostgreSQL by Zabbix agent 2','0',NULL,'You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384190-%C2%A0discussion-thread-for-official-zabbix-template-db-postgresql\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','d0ef7d659a8f4beaaabfc4b6134e737a');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10330',NULL,'PHP-FPM by Zabbix agent','3','-1','2','','','PHP-FPM by Zabbix agent','0',NULL,'Get PHP-FPM metrics using Zabbix agent running on Linux.\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','1cbda0970410435684135884d0cb7090');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10331',NULL,'PHP-FPM by HTTP','3','-1','2','','','PHP-FPM by HTTP','0',NULL,'Get PHP-FPM metrics using the Zabbix HTTP agent.\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','49c77ce207f8478da53e761526d6eca5');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10333',NULL,'{#HV.UUID}','0','-1','2','','','{#HV.NAME}','2',NULL,'','1','1','','','','','','1','0','1','051a1469d4d045cbbf818fcc843a352e');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10334',NULL,'{#VM.UUID}','0','-1','2','','','{#VM.NAME}','2',NULL,'','1','1','','','','','','1','0','1','23b9ae9d6f33414880db1cb107115810');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10335',NULL,'Oracle by Zabbix agent 2','3','-1','2','','','Oracle by Zabbix agent 2','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','d670c32f007d438c9dcd32db57d2b691');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10336',NULL,'Asterisk by HTTP','3','-1','2','','','Asterisk by HTTP','0',NULL,'The template gets Asterisk metrics from AMI by HTTP agent.\r\nYou should enable the mini-HTTP Server, add the option webenabled=yes\r\nin the general section of the manager.conf file and create Asterisk Manager\r\nuser with system and command write permissions within your Asterisk instance.\r\nDisable the PJSIP driver if you do not use PJSIP or do not have PJSIP endpoints.\r\nPlease, define AMI address in the {$AMI.URL} macro. Also, the Zabbix host\r\nshould have an Agent interface with the AMI address to check Asterisk service\r\nstatus.\r\nThen you can define {$AMI.USERNAME} and {$AMI.SECRET} macros in\r\nthe template for using on the host level.\r\nIf there are errors, increase the logging to debug level and see the Zabbix server log.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/410060-discussion-thread-for-official-zabbix-template-asterisk\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','30cc187a4e994c39b07f53d86b5cc6bc');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10337',NULL,'Linux block devices by Zabbix agent active','3','-1','2','','','Linux block devices by Zabbix agent active','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','aa226119d3e94f53b9a2809f1d4ebaee');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10338',NULL,'Linux CPU by Zabbix agent active','3','-1','2','','','Linux CPU by Zabbix agent active','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','da53e44145304098b4c3ff749996e3e7');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10339',NULL,'Linux filesystems by Zabbix agent active','3','-1','2','','','Linux filesystems by Zabbix agent active','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','c626d864a2894d29a9d661d6025536ff');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10340',NULL,'Linux generic by Zabbix agent active','3','-1','2','','','Linux generic by Zabbix agent active','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','7e4dc41320fd48bd97549025f4c3bcc6');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10341',NULL,'Linux memory by Zabbix agent active','3','-1','2','','','Linux memory by Zabbix agent active','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','5f577b9e34a8444c920e8199170f7fe6');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10342',NULL,'Linux network interfaces by Zabbix agent active','3','-1','2','','','Linux network interfaces by Zabbix agent active','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','fac8b6986be24a8c91f7b0b15439bccf');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10343',NULL,'Linux by Zabbix agent active','3','-1','2','','','Linux by Zabbix agent active','0',NULL,'Official Linux template. Requires agent of Zabbix 3.0.14, 3.4.5 and 4.0.0 or newer.\r\n\r\nKnown Issues:\r\n\r\n Description: Network discovery. Zabbix agent as of 4.2 doesn\'t support items such as net.if.status, net.if.speed.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','e2307c94f1744af7a8f1f458a67af424');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10344',NULL,'Windows CPU by Zabbix agent active','3','-1','2','','','Windows CPU by Zabbix agent active','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','296cb27ad93b4063b77aaf1a8339d40c');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10345',NULL,'Windows filesystems by Zabbix agent active','3','-1','2','','','Windows filesystems by Zabbix agent active','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','1b04ac025fcf474cb97e6c8c95855eeb');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10346',NULL,'Windows generic by Zabbix agent active','3','-1','2','','','Windows generic by Zabbix agent active','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','6dd37a415f4c40aa960d7ba91b6b5143');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10347',NULL,'Windows memory by Zabbix agent active','3','-1','2','','','Windows memory by Zabbix agent active','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','e6535f54a0554463889fb8c65db11250');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10348',NULL,'Windows network by Zabbix agent active','3','-1','2','','','Windows network by Zabbix agent active','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','792cb76a1a6340d8acb36d8802d22c00');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10349',NULL,'Windows physical disks by Zabbix agent active','3','-1','2','','','Windows physical disks by Zabbix agent active','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','222cf73cb40941f6be62db0540524e5e');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10350',NULL,'Windows services by Zabbix agent active','3','-1','2','','','Windows services by Zabbix agent active','0',NULL,'Template Services OS Windows\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','3366a65bbc3e46348bec303e84e23b15');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10351',NULL,'Windows by Zabbix agent active','3','-1','2','','','Windows by Zabbix agent active','0',NULL,'Official Windows template. Requires agent of Zabbix 4.4 and newer.\r\n\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387224-discussion-thread-for-official-zabbix-template-for-windows\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','5fdd2ca8b8f84962aaea5a218b46ea7d');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10353',NULL,'Ceph by Zabbix agent 2','3','-1','2','','','Ceph by Zabbix agent 2','0',NULL,'You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/410059-discussion-thread-for-official-zabbix-template-ceph\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','09fb25d089f7467f860895f6e71d3fa2');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10355',NULL,'Squid SNMP','3','-1','2','','','Squid SNMP','0',NULL,'Template for monitoring Squid caching proxy via SNMP\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/409339-discussion-thread-for-official-zabbix-template-squid\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','8e5236f799b347a8ae90a979198be85e');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10357',NULL,'PostgreSQL by Zabbix agent','3','-1','2','','','PostgreSQL by Zabbix agent','0',NULL,'You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384190-%C2%A0discussion-thread-for-official-zabbix-template-db-postgresql\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','399bd1ee587245ecac6f39beaa99886f');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10358',NULL,'Apache ActiveMQ by JMX','3','-1','2','','','Apache ActiveMQ by JMX','0',NULL,'The template to monitor Apache ActiveMQ by Zabbix that work without any external scripts.\r\nThe metrics are collected by JMX.\r\nYou can set macro values and add macros with context for specific brokers or destinations following macro description.\r\n\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/411049-discussion-thread-for-official-zabbix-template-amq\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','c87e0a2e0683483ab7c6f3c380e9f840');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10359',NULL,'Aranet Cloud','3','-1','2','','','Aranet Cloud','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','af21edc47557400583e537904ea632aa');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10360',NULL,'Microsoft Exchange Server 2016 by Zabbix agent','3','-1','2','','','Microsoft Exchange Server 2016 by Zabbix agent','0',NULL,'The template to monitor Microsoft Exchange Server 2016 by Zabbix that works without any external scripts.\r\nThe metrics are collected by Zabbix agent.\r\nRecommended to use it with "OS Windows by Zabbix agent" template.\r\n\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/415007-discussion-thread-for-official-zabbix-template-microsoft-exchange\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','cbf70ed444394566bcf213dd63d4d352');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10361',NULL,'Microsoft Exchange Server 2016 by Zabbix agent active','3','-1','2','','','Microsoft Exchange Server 2016 by Zabbix agent active','0',NULL,'The template to monitor Microsoft Exchange Server 2016 by Zabbix that works without any external scripts.\r\nThe metrics are collected by Zabbix agent active.\r\nRecommended to use it with "OS Windows by Zabbix agent active" template.\r\n\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/415007-discussion-thread-for-official-zabbix-template-microsoft-exchange\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','a0e05ca631034676821b7e0e1ce25488');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10362',NULL,'GitLab by HTTP','3','-1','2','','','GitLab by HTTP','0',NULL,'Get GitLab metrics by HTTP agent from Prometheus metrics endpoint.\r\n\r\nTo access the metrics, the client IP address must be explicitly allowed. See https://docs.gitlab.com/ee/administration/monitoring/ip_whitelist.html.\r\n\r\nDon\'t forget change macros {$GITLAB.URL}.\r\nSome metrics may not be collected depending on your Gitlab instance version and configuration. See (Gitlab\'s documentation[)https://docs.gitlab.com/ee/administration/monitoring/prometheus/gitlab_metrics.html] for further information about its metric collection.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','f445dac89ff74deabaae9dcb84815998');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10363',NULL,'Hadoop by HTTP','3','-1','2','','','Hadoop by HTTP','0',NULL,'The template gets the Hadoop metrics from cluster\'s hosts (ResourceManager, NodeManagers, NameNode, DataNodes) by HTTP agent. You should define the IP address (or FQDN) and Web-UI port for the ResourceManager in {$HADOOP.RESOURCEMANAGER.HOST} and {$HADOOP.RESOURCEMANAGER.PORT} macros and for the NameNode in {$HADOOP.NAMENODE.HOST} and {$HADOOP.NAMENODE.PORT} macros respectively. Macros can be set in the template or overridden at the host level.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/413459-discussion-thread-for-official-zabbix-template-hadoop\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','e129aeba7c814bf189772cf5919b4bbb');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10364',NULL,'Apache Kafka by JMX','3','-1','2','','','Apache Kafka by JMX','0',NULL,'Official JMX Template for Apache Kafka.\r\n The metrics are collected by JMX.\r\n You can set {$KAFKA.USER} and {$KAFKA.PASSWORD} macros in the template for using on the host level.\r\n\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','2eb43a3c9666467683b9ce09d2bd26d7');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10365',NULL,'HashiCorp Vault by HTTP','3','-1','2','','','HashiCorp Vault by HTTP','0',NULL,'Get HashiCorp Vault metrics from Vault API HTTP Prometheus metrics endpoint.\r\n\r\nSome metrics may not be collected depending on your Vault instance version and configuration.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','2f82248e411340429d390e8389850401');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10366',NULL,'VMware FQDN','3','-1','2','','','VMware FQDN','0',NULL,'You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','ca02e82e6c414d0aa7aedc8d78468a49');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10367',NULL,'{#HV.UUID}','0','-1','2','','','{#HV.NAME}','2',NULL,'','1','1','','','','','','1','0','1','51cf7ea3e6a74f7e8dde628dbc5347a3');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10368',NULL,'{#VM.DNS}','0','-1','2','','','{#VM.NAME}','2',NULL,'','1','1','','','','','','1','0','1','a12e25c500a14fcf99295c207371ca1b');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10369',NULL,'Zookeeper by HTTP','3','-1','2','','','Zookeeper by HTTP','0',NULL,'Get Apache Zookeeper metrics by HTTP agent.\r\n This template works with standalone and cluster instances. Metrics are collected from each Zookeeper node by requests to AdminServer.\r\n Don\'t forget to change macros {$ZOOKEEPER.COMMAND_URL}, {$ZOOKEEPER.PORT}, {$ZOOKEEPER.SCHEME}.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','b606eda347ea4663a33ad4d12a482750');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10370',NULL,'Apache Cassandra by JMX','3','-1','2','','','Apache Cassandra by JMX','0',NULL,'The template to monitor Apache Cassandra by Zabbix that work without any external scripts.\r\nIt works with both standalone and cluster instances.\r\nThe metrics are collected by JMX.\r\nYou can set {$CASSANDRA.USER} and {$CASSANDRA.PASSWORD} macros in the template for using on the host level.\r\n\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/410057-discussion-thread-for-official-zabbix-template-apache-cassandra\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','5c42de26643c4b43b23a11159df021ce');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10371',NULL,'Morningstar ProStar MPPT SNMP','3','-1','2','','','Morningstar ProStar MPPT SNMP','0',NULL,'MIBs used:\r\nPROSTAR-MPPT\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','b84324c2a40a496dbbb379bbf5dde8d5');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10372',NULL,'Morningstar ProStar PWM SNMP','3','-1','2','','','Morningstar ProStar PWM SNMP','0',NULL,'MIBs used:\r\nPROSTAR-PWM\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','24bed6339f0a492fab86fe757394b937');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10373',NULL,'Morningstar SunSaver MPPT SNMP','3','-1','2','','','Morningstar SunSaver MPPT SNMP','0',NULL,'MIBs used:\r\nSUNSAVER-MPPT\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','f1336fd88ab0415a9c02892a71e50032');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10374',NULL,'Morningstar SureSine SNMP','3','-1','2','','','Morningstar SureSine SNMP','0',NULL,'MIBs used:\r\nSURESINE\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','3bbfe42c78c74f04a2565431fbdd19e2');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10375',NULL,'Morningstar TriStar MPPT 600V SNMP','3','-1','2','','','Morningstar TriStar MPPT 600V SNMP','0',NULL,'MIBs used:\r\nTRISTAR-MPPT\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','2d20a2fbd540492089fdcafc8feb60e3');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10376',NULL,'Morningstar TriStar MPPT SNMP','3','-1','2','','','Morningstar TriStar MPPT SNMP','0',NULL,'MIBs used:\r\nTRISTAR-MPPT\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','07b32152c3654e8ead4c1eeae24efa8f');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10377',NULL,'Morningstar TriStar PWM SNMP','3','-1','2','','','Morningstar TriStar PWM SNMP','0',NULL,'MIBs used:\r\nTRISTAR\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','230fa9f7c1774821bbe6cdcbbba5cbc6');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10378',NULL,'NetApp FAS3220 SNMP','3','-1','2','','','NetApp FAS3220 SNMP','0',NULL,'The template to monitor SAN NetApp FAS3220 cluster by Zabbix SNMP agent.\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nNETAPP-MIB\r\nIF-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/416694-discussion-thread-for-official-zabbix-template-netapp-fas3220\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','e118ab11c1ec4f9cbe21dfce1441c0f6');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10379',NULL,'Jenkins by HTTP','3','-1','2','','','Jenkins by HTTP','0',NULL,'Get Jenkins metrics by HTTP agent.\r\nMetrics are collected by requests to Metrics API. Install Metrics plugin and configure access to the Metrics Servlet by issuing API key.\r\nDon\'t forget to change macros {$JENKINS.URL}, {$JENKINS.USER}, {$JENKINS.API.TOKEN}, {$JENKINS.API.KEY}.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','2ef2f2eb75ee4a0bae839e22aa76e5fc');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10380',NULL,'Hikvision camera by HTTP','3','-1','2','','','Hikvision camera by HTTP','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','3fb4020df2984b0ab64dfd8355ff5c65');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10381',NULL,'Ignite by JMX','3','-1','2','','','Ignite by JMX','0',NULL,'The template to monitor Apache Ignite by Zabbix that work without any external scripts.\r\n It works with both standalone and cluster instances.\r\n The metrics are discoverable and collected by JMX.\r\n Current JMX tree hierarchy contains classloader by default. Add the following jvm option `-DIGNITE_MBEAN_APPEND_CLASS_LOADER_ID=false`to will exclude one level with Classloader name.\r\n You can set {$IGNITE.USER} and {$IGNITE.PASSWORD} macros in the template for using on the host level.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','ab05dbb15ff047f192782f617f0627ac');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10382',NULL,'Microsoft SharePoint by HTTP','3','-1','2','','','Microsoft SharePoint by HTTP','0',NULL,'Overview:\r\nTemplate receives data via HTTP Agent.\r\nSetup:\r\nCreate a new host.\r\nDefine macros according to your Sharepoint web portal.\r\nIt is recommended to fill in the values of the filter macros to avoid getting redundant data.\r\n\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','8d5fe5b4ebb64255a2429b34c7dd3681');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10383',NULL,'SMART by Zabbix agent 2','3','-1','2','','','SMART by Zabbix agent 2','0',NULL,'The template for monitoring S.M.A.R.T. attributes of physical disk that works without any external scripts. It collects metrics by Zabbix agent 2 version 5.0 and later with Smartmontools version 7.1 and later. Disk discovery LLD rule finds all HDD, SSD, NVMe disks with S.M.A.R.T. enabled. Attribute discovery LLD rule have pre-defined Vendor Specific Attributes for each disk, and will be discovered if attribute is present.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/415662-discussion-thread-for-official-zabbix-smart-disk-monitoring\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','7b6c6228b25f4586b42cd1bf37ff8034');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10384',NULL,'SMART by Zabbix agent 2 active','3','-1','2','','','SMART by Zabbix agent 2 active','0',NULL,'The template for monitoring S.M.A.R.T. attributes of physical disk that works without any external scripts. It collects metrics by Zabbix agent 2 version 5.0 and later with Smartmontools version 7.1 and later. Disk discovery LLD rule finds all HDD, SSD, NVMe disks with S.M.A.R.T. enabled. Attribute discovery LLD rule have pre-defined Vendor Specific Attributes for each disk, and will be discovered if attribute is present.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/415662-discussion-thread-for-official-zabbix-smart-disk-monitoring\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','e518b1340ce44d7389d2cc7c304a97b4');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10385',NULL,'Huawei OceanStor 5300 V5 SNMP','3','-1','2','','','Huawei OceanStor 5300 V5 SNMP','0',NULL,'The template to monitor SAN Huawei OceanStor 5300 V5 by Zabbix SNMP agent.\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418855-discussion-thread-for-official-zabbix-template-huawei-oceanstor\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','c5564dd58c394b969d5365cc5de3e7f8');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10386',NULL,'MongoDB node by Zabbix agent 2','3','-1','2','','','MongoDB node by Zabbix agent 2','0',NULL,'Get MongoDB metrics from plugin for the zabbix-agent2.\r\n 1. Setup and configure zabbix-agent2 compiled with the MongoDB monitoring plugin.\r\n 2. Set the {$MONGODB.CONNSTRING} such as or named session.\r\n 3. Set the user name and password in host macros ({$MONGODB.USER}, {$MONGODB.PASSWORD}) if you want to override parameters from the Zabbix agent configuration file.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420659-discussion-thread-for-official-zabbix-template-db-mongodb\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','81aa8c5ab5594f77a2b26fb7f5094048');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10387',NULL,'MongoDB cluster by Zabbix agent 2','3','-1','2','','','MongoDB cluster by Zabbix agent 2','0',NULL,'Get MongoDB metrics from plugin for the zabbix-agent2.\r\n 1. Setup and configure zabbix-agent2 compiled with the MongoDB monitoring plugin.\r\n 2. Set the {$MONGODB.CONNSTRING} such as or named session.\r\n 3. Set the user name and password in host macros ({$MONGODB.USER}, {$MONGODB.PASSWORD}) if you want to override parameters from the Zabbix agent configuration file.\r\n\r\n All sharded Mongodb nodes (mongod) will be discovered with attached template "MongoDB node".\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420659-discussion-thread-for-official-zabbix-template-db-mongodb\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','d38b271797bd41f2ad8c79d83b9d8d9c');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10388',NULL,'{#HOSTNAME}','0','-1','2','','','{#HOSTNAME}','2',NULL,'','1','1','','','','','','1','0','0','809db5d8d32a45898e8401f288a42fac');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10389',NULL,'{#HOSTNAME}','0','-1','2','','','{#HOSTNAME}','2',NULL,'','1','1','','','','','','1','0','0','3fcd3244b1234186bda9a35c8f61c850');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10390',NULL,'Cisco Catalyst 3750V2-24FS SNMP','3','-1','2','','','Cisco Catalyst 3750V2-24FS SNMP','0',NULL,'Template Cisco Catalyst 3750V2-24FS\r\n \r\n MIBs used:\r\n CISCO-MEMORY-POOL-MIB\r\n IF-MIB\r\n EtherLike-MIB\r\n SNMPv2-MIB\r\n CISCO-PROCESS-MIB\r\n CISCO-ENVMON-MIB\r\n ENTITY-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418396-discussion-thread-for-official-zabbix-templates-for-cisco\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','6ff896f545e043cc98de6d98698d41df');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10391',NULL,'Cisco Catalyst 3750V2-24PS SNMP','3','-1','2','','','Cisco Catalyst 3750V2-24PS SNMP','0',NULL,'Template Cisco Catalyst 3750V2-24PS\r\n \r\n MIBs used:\r\n CISCO-MEMORY-POOL-MIB\r\n IF-MIB\r\n EtherLike-MIB\r\n SNMPv2-MIB\r\n CISCO-PROCESS-MIB\r\n CISCO-ENVMON-MIB\r\n ENTITY-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418396-discussion-thread-for-official-zabbix-templates-for-cisco\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','4583f0c3bc894251a6c5e7129cb5b9aa');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10392',NULL,'Cisco Catalyst 3750V2-24TS SNMP','3','-1','2','','','Cisco Catalyst 3750V2-24TS SNMP','0',NULL,'Template Cisco Catalyst 3750V2-24TS\r\n \r\n MIBs used:\r\n CISCO-MEMORY-POOL-MIB\r\n IF-MIB\r\n EtherLike-MIB\r\n SNMPv2-MIB\r\n CISCO-PROCESS-MIB\r\n CISCO-ENVMON-MIB\r\n ENTITY-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418396-discussion-thread-for-official-zabbix-templates-for-cisco\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','30d084c6b7844b7cab6cf820b00bb7b2');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10393',NULL,'Cisco Catalyst 3750V2-48PS SNMP','3','-1','2','','','Cisco Catalyst 3750V2-48PS SNMP','0',NULL,'Template Cisco Catalyst 3750V2-48PS\r\n \r\n MIBs used:\r\n CISCO-MEMORY-POOL-MIB\r\n IF-MIB\r\n EtherLike-MIB\r\n SNMPv2-MIB\r\n CISCO-PROCESS-MIB\r\n CISCO-ENVMON-MIB\r\n ENTITY-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418396-discussion-thread-for-official-zabbix-templates-for-cisco\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','ea096c13a09b4d7a9be0aab1cec95206');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10394',NULL,'Cisco Catalyst 3750V2-48TS SNMP','3','-1','2','','','Cisco Catalyst 3750V2-48TS SNMP','0',NULL,'Template Cisco Catalyst 3750V2-48TS\r\n \r\n MIBs used:\r\n CISCO-MEMORY-POOL-MIB\r\n IF-MIB\r\n EtherLike-MIB\r\n SNMPv2-MIB\r\n CISCO-PROCESS-MIB\r\n CISCO-ENVMON-MIB\r\n ENTITY-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418396-discussion-thread-for-official-zabbix-templates-for-cisco\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','f744679600844c07b2b4eedda9bc3d0c');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10395',NULL,'APC UPS SNMP','3','-1','2','','','APC UPS SNMP','0',NULL,'Template Power APC UPS\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nPowerNet-MIB\r\nSNMPv2-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','3ec55c9966624ef5bc1b50502812d581');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10396',NULL,'NetApp AFF A700 by HTTP','3','-1','2','','','NetApp AFF A700 by HTTP','0',NULL,'The template to monitor SAN NetApp AFF A700 cluster by Zabbix HTTP agent.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','79267c69f54a4e59b4152aba4e8c4bd5');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10397',NULL,'TiDB PD by HTTP','3','-1','2','','','TiDB PD by HTTP','0',NULL,'The template to monitor PD server of TiDB cluster by Zabbix that works without any external scripts.\r\nMost of the metrics are collected in one go, thanks to Zabbix bulk data collection.\r\nDon\'t forget to change the macros {$PD.URL}, {$PD.PORT}.\r\n\r\nTemplate `TiDB PD by HTTP` — collects metrics by HTTP agent from PD /metrics endpoint and from monitoring API.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','43596328d4d74a5592906a9e08e3fd96');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10398',NULL,'TiDB by HTTP','3','-1','2','','','TiDB by HTTP','0',NULL,'The template to monitor TiDB server of TiDB cluster by Zabbix that works without any external scripts.\r\nMost of the metrics are collected in one go, thanks to Zabbix bulk data collection.\r\nDon\'t forget to change the macros {$TIDB.URL}, {$TIDB.PORT}.\r\n\r\nTemplate `TiDB by HTTP` — collects metrics by HTTP agent from PD /metrics endpoint and from monitoring API.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','8ec72ebbe3204d7789429640abcac610');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10399',NULL,'TiDB TiKV by HTTP','3','-1','2','','','TiDB TiKV by HTTP','0',NULL,'The template to monitor TiKV server of TiDB cluster by Zabbix that works without any external scripts.\r\nMost of the metrics are collected in one go, thanks to Zabbix bulk data collection.\r\nDon\'t forget to change the macros {$TIKV.URL}, {$TIKV.PORT}.\r\n\r\nTemplate `TiDB TiKV by HTTP` — collects metrics by HTTP agent from TiKV /metrics endpoint.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','3a0bbbb2ec0a4c58bba3ba3a3d6ce660');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10400',NULL,'APC UPS Galaxy 3500 SNMP','3','-1','2','','','APC UPS Galaxy 3500 SNMP','0',NULL,'Template Power APC UPS Galaxy 3500\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nPowerNet-MIB\r\nSNMPv2-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','5d3971cd973b46e7915d7ae0750bac57');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10401',NULL,'APC Smart-UPS 2200 RM SNMP','3','-1','2','','','APC Smart-UPS 2200 RM SNMP','0',NULL,'Template Power APC Smart-UPS 2200 RM\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nPowerNet-MIB\r\nSNMPv2-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','e8c0b2c40e884f1598d86f3edf020ea7');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10402',NULL,'APC Smart-UPS 3000 XLM SNMP','3','-1','2','','','APC Smart-UPS 3000 XLM SNMP','0',NULL,'Template Power APC Smart-UPS 3000 XLM\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nPowerNet-MIB\r\nSNMPv2-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','eafd78764fde4110b9e46ae184f327ba');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10403',NULL,'APC Smart-UPS RT 1000 RM XL SNMP','3','-1','2','','','APC Smart-UPS RT 1000 RM XL SNMP','0',NULL,'Template Power APC Smart-UPS RT 1000 RM XL\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nPowerNet-MIB\r\nSNMPv2-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','340ec6917c274ead8fab36925e57f30a');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10404',NULL,'APC Smart-UPS RT 1000 XL SNMP','3','-1','2','','','APC Smart-UPS RT 1000 XL SNMP','0',NULL,'Template Power APC Smart-UPS RT 1000 XL\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nPowerNet-MIB\r\nSNMPv2-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','32d3c78ff44c4c3c9ff5b893ad7f5fc9');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10406',NULL,'APC Smart-UPS SRT 8000 SNMP','3','-1','2','','','APC Smart-UPS SRT 8000 SNMP','0',NULL,'Template Power APC Smart-UPS SRT 8000\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nPowerNet-MIB\r\nSNMPv2-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','b3caafda8c5345cc832ac3be3cefa615');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10407',NULL,'APC UPS Symmetra LX SNMP','3','-1','2','','','APC UPS Symmetra LX SNMP','0',NULL,'Template Power APC UPS Symmetra LX\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nPowerNet-MIB\r\nSNMPv2-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','0b9a899ff8f1467c9fdf999d02b9fd77');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10408',NULL,'APC UPS Symmetra RM SNMP','3','-1','2','','','APC UPS Symmetra RM SNMP','0',NULL,'Template Power APC UPS Symmetra RM\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nPowerNet-MIB\r\nSNMPv2-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','1dac0a88c3774315b90622a48031e369');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10409',NULL,'APC UPS Symmetra RX SNMP','3','-1','2','','','APC UPS Symmetra RX SNMP','0',NULL,'Template Power APC UPS Symmetra RX\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nPowerNet-MIB\r\nSNMPv2-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','4ffb0f9103084384a98379ed533865e9');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10410',NULL,'WildFly Domain by JMX','3','-1','2','','','WildFly Domain by JMX','0',NULL,'Official JMX Template for WildFly.\r\nThe metrics are collected by JMX. This template works with Domain Controller.\r\nYou can set {$WILDFLY.USER} and {$WILDFLY.PASSWORD} macros in the template for using on the host level.\r\n\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','4b27e636b6ad4ce68511d344d5604999');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10411',NULL,'WildFly Server by JMX','3','-1','2','','','WildFly Server by JMX','0',NULL,'Official JMX Template for WildFly.\r\nThe metrics are collected by JMX. This template works with standalone and domain instances.\r\nYou can set {$WILDFLY.USER} and {$WILDFLY.PASSWORD} macros in the template for using on the host level.\r\n\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','2bf5827343f0420792ad953f290baa05');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10412',NULL,'APC Smart-UPS SRT 5000 SNMP','3','-1','2','','','APC Smart-UPS SRT 5000 SNMP','0',NULL,'Template Power APC Smart-UPS SRT 5000\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nPowerNet-MIB\r\nSNMPv2-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','8ec76aeb703747a5affdf435bc12f572');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10413',NULL,'Website certificate by Zabbix agent 2','3','-1','2','','','Website certificate by Zabbix agent 2','0',NULL,'The template to monitor TLS/SSL certificate on the website by Zabbix agent 2 that works without any external scripts.\r\nZabbix agent 2 with the WebCertificate plugin requests certificate using the web.certificate.get key and returns JSON with certificate attributes.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/428309-discussion-thread-for-official-zabbix-template-tls-ssl-certificates-monitoring\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','5630ec1b1baf449abe1bc5521f85fe6c');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10414',NULL,'Cloudflare by HTTP','3','-1','2','','','Cloudflare by HTTP','0',NULL,'The template to monitor Cloudflare to see your web traffic and DNS metrics. It works without any external scripts and uses Script item.\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','08ef3d687d754b0aba17e1dcbd77d4bd');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10415',NULL,'Nginx Plus by HTTP','3','-1','2','','','Nginx Plus by HTTP','0',NULL,'Get Nginx Plus metrics by HTTP agent.\r\nMetrics are collected by requests to Nginx Plus API.\r\nDon\'t forget to change macros {$NGINX.API.ENDPOINT}.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','8cad0f2564694416b60bd8a414948641');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10416',NULL,'Systemd by Zabbix agent 2','3','-1','2','','','Systemd by Zabbix agent 2','0',NULL,'Get systemd units metrics from plugin for the zabbix-agent2.\r\n 1. Setup and configure zabbix-agent2 compiled with the Systemd monitoring plugin.\r\n 2. Set filters with macros if you want to override default filter parameters.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','90ac276995294a6aa88462c032d2ddaf');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10417',NULL,'GridGain by JMX','3','-1','2','','','GridGain by JMX','0',NULL,'The template to monitor GridGain In-Memory Computing Platform by Zabbix that work without any external scripts.\r\n It works with both standalone and cluster instances.\r\n The metrics are discoverable and collected by JMX.\r\n Current JMX tree hierarchy contains classloader by default. Add the following jvm option `-DIGNITE_MBEAN_APPEND_CLASS_LOADER_ID=false`to will exclude one level with Classloader name.\r\n You can set {$GRIDGAIN.USER} and {$GRIDGAIN.PASSWORD} macros in the template for using on the host level.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','47d87c39c121429b98a18f641aa443ea');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10418',NULL,'Cisco ASAv SNMP','3','-1','2','','','Cisco ASAv SNMP','0',NULL,'Template Net Cisco ASAv\r\n\r\nMIBs used:\r\nCISCO-PORT-MIB\r\nCISCO-MEMORY-POOL-MIB\r\nCISCO-REMOTE-ACCESS-MONITOR-MIB\r\nIF-MIB\r\nRFC1213-MIB\r\nCISCO-PROCESS-MIB\r\nENTITY-MIB\r\n CISCO-REMOTE-ACCESS-MONITOR-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418396-discussion-thread-for-official-zabbix-templates-for-cisco\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','75d009cd4dc84ee7a8fc479fa2fbaeee');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10419',NULL,'F5 Big-IP SNMP','3','-1','2','','','F5 Big-IP SNMP','0',NULL,'MIBs used:\r\nRFC1213-MIB\r\nF5-BIGIP-LOCAL-MIB\r\nF5-BIGIP-SYSTEM-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','44c2c2d94a4447c6a924386640e4854a');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10420',NULL,'ZYXEL AAM1212-51 IES-612 SNMP','3','-1','2','','','ZYXEL AAM1212-51 IES-612 SNMP','0',NULL,'ZYXEL AAM1212-51 / IES-612\r\n\r\nMIBs used:\r\nRFC1213-MIB\r\nHOST-RESOURCES-MIB\r\nADSL-LINE-MIB\r\nZYXEL-IESCOMMON-MIB\r\nIF-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.\r\n Version: all versions firmware\r\n Device: ZYXEL AAM1212-51 / IES-612\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','3a71dcdcfe0b4a0e8284d8939d335cce');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10421',NULL,'ZYXEL ES3500-8PD SNMP','3','-1','2','','','ZYXEL ES3500-8PD SNMP','0',NULL,'ZYXEL ES3500-8PD\r\n\r\nMIBs used:\r\nRFC1213-MIB\r\nHOST-RESOURCES-MIB\r\n ZYXEL-ES3500-8PD-MIB\r\nIF-MIB\r\nZYXEL-ES3500-8PD-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.\r\n Version: all versions firmware\r\n Device: ZYXEL ES3500-8PD\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','b8a6f34fd5c447b1b9310746a96f4e80');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10422',NULL,'ZYXEL GS-4012F SNMP','3','-1','2','','','ZYXEL GS-4012F SNMP','0',NULL,'ZYXEL GS-4012F\r\n\r\nMIBs used:\r\nZYXEL-GS4012F-MIB\r\nRFC1213-MIB\r\nHOST-RESOURCES-MIB\r\nIF-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.\r\n Version: all versions firmware\r\n Device: ZYXEL GS-4012F\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','73f123bb9ffe4587a0269c7e8752b2ed');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10423',NULL,'ZYXEL IES-500x SNMP','3','-1','2','','','ZYXEL IES-500x SNMP','0',NULL,'ZYXEL IES-500x\r\n\r\nMIBs used:\r\nRFC1213-MIB\r\nHOST-RESOURCES-MIB\r\nADSL-LINE-MIB\r\nZYXEL-IES5000-MIB\r\nIF-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.\r\n Version: all versions firmware\r\n Device: ZYXEL IES-500x\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','3db86b0d235e4c7b80f7d6144ca08925');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10424',NULL,'ZYXEL IES-6000 SNMP','3','-1','2','','','ZYXEL IES-6000 SNMP','0',NULL,'ZYXEL IES-6000\r\n\r\nMIBs used:\r\nRFC1213-MIB\r\nHOST-RESOURCES-MIB\r\nADSL-LINE-MIB\r\nZYXEL-IES5000-MIB\r\nIF-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.\r\n Version: all versions firmware\r\n Device: ZYXEL IES-6000\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','3645654baaf04f11927b171bcb048349');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10425',NULL,'ZYXEL IES1248-51 SNMP','3','-1','2','','','ZYXEL IES1248-51 SNMP','0',NULL,'ZYXEL IES1248-51\r\n\r\nMIBs used:\r\nRFC1213-MIB\r\nHOST-RESOURCES-MIB\r\nADSL-LINE-MIB\r\nZYXEL-IESCOMMON-MIB\r\nIF-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.\r\n Version: all versions firmware\r\n Device: ZYXEL IES1248-51\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','8e6d7067cd094e56a52db999b3199edc');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10426',NULL,'ZYXEL MES-3528 SNMP','3','-1','2','','','ZYXEL MES-3528 SNMP','0',NULL,'ZYXEL MES-3528\r\n\r\nMIBs used:\r\nRFC1213-MIB\r\n ZYXEL-MES3528-MIB\r\nHOST-RESOURCES-MIB\r\nZYXEL-MES3528-MIB\r\nIF-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.\r\n Version: all versions firmware\r\n Device: ZYXEL MES-3528\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','249de8d8d21e4dda9c3f766ab6201378');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10427',NULL,'ZYXEL MES3500-10 SNMP','3','-1','2','','','ZYXEL MES3500-10 SNMP','0',NULL,'ZYXEL MES3500-10\r\n\r\nMIBs used:\r\nRFC1213-MIB\r\nHOST-RESOURCES-MIB\r\nZYXEL-MES3500-10-MIB\r\n ZYXEL-MES3500-10-MIB\r\nIF-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.\r\n Version: all versions firmware\r\n Device: ZYXEL MES3500-10\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','21a95afef0e74fb19691693090403d1d');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10428',NULL,'ZYXEL MES3500-24 SNMP','3','-1','2','','','ZYXEL MES3500-24 SNMP','0',NULL,'ZYXEL MES3500-24\r\n\r\nMIBs used:\r\nRFC1213-MIB\r\nHOST-RESOURCES-MIB\r\n ZYXEL-MES3500-24-MIB\r\nZYXEL-MES3500-24-MIB\r\nIF-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.\r\n Version: all versions firmware\r\n Device: ZYXEL MES3500-24\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','292970ad91204722b5e5cb3233fc0026');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10429',NULL,'ZYXEL MGS-3712 SNMP','3','-1','2','','','ZYXEL MGS-3712 SNMP','0',NULL,'ZYXEL MGS-3712\r\n\r\nMIBs used:\r\nRFC1213-MIB\r\nHOST-RESOURCES-MIB\r\nZYXEL-MGS3712F-MIB\r\nIF-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.\r\n Version: all versions firmware\r\n Device: ZYXEL MGS-3712\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','8ea7299983f24d0a913606e334f0e526');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10430',NULL,'ZYXEL MGS-3712F SNMP','3','-1','2','','','ZYXEL MGS-3712F SNMP','0',NULL,'ZYXEL MGS-3712F\r\n\r\nMIBs used:\r\nRFC1213-MIB\r\nHOST-RESOURCES-MIB\r\nZYXEL-MGS3712F-MIB\r\nIF-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.\r\n Version: all versions firmware\r\n Device: ZYXEL MGS-3712F\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','01deb47efa1f4a9092de67fd61820a7d');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10431',NULL,'ZYXEL MES3500-24S SNMP','3','-1','2','','','ZYXEL MES3500-24S SNMP','0',NULL,'ZYXEL MES3500-24S\r\n\r\nMIBs used:\r\nZYXEL-TRANSCEIVER-MIB\r\nIF-MIB\r\nRFC1213-MIB\r\nHOST-RESOURCES-MIB\r\nZYXEL-HW-MONITOR-MIB\r\nZYXEL-PORT-MIB\r\nZYXEL-ES-COMMON\r\n\r\nKnown Issues:\r\n\r\n Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.\r\n Version: all versions firmware\r\n Device: ZYXEL MGS3520-28\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','89eef2fe23964f44bf9aec6d00e39efd');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10432',NULL,'ZYXEL MGS3520-28x SNMP','3','-1','2','','','ZYXEL MGS3520-28x SNMP','0',NULL,'ZYXEL MGS3520-28x\r\n\r\nMIBs used:\r\nZYXEL-TRANSCEIVER-MIB\r\nIF-MIB\r\nRFC1213-MIB\r\nHOST-RESOURCES-MIB\r\nZYXEL-HW-MONITOR-MIB\r\nZYXEL-PORT-MIB\r\nZYXEL-ES-COMMON\r\n\r\nKnown Issues:\r\n\r\n Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.\r\n Version: all versions firmware\r\n Device: ZYXEL MGS3520-28\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','9cc843a085bb4ee5af0dc4d764a7eee9');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10433',NULL,'ZYXEL XGS-4728F SNMP','3','-1','2','','','ZYXEL XGS-4728F SNMP','0',NULL,'ZYXEL XGS-4728F\r\n\r\nMIBs used:\r\nRFC1213-MIB\r\nHOST-RESOURCES-MIB\r\nZYXEL-XGS4728F-MIB\r\nIF-MIB\r\n ZYXEL-XGS4728F-MIB\r\n\r\nKnown Issues:\r\n\r\n Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.\r\n Version: all versions firmware\r\n Device: ZYXEL XGS-4728F\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','ab18a5665b7d4bed876881b5c4e8ce51');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10434',NULL,'Cisco UCS Manager SNMP','3','-1','2','','','Cisco UCS Manager SNMP','0',NULL,'This is a template for Cisco UCS Manager monitoring via Zabbix SNMP Agent that works without any external scripts.\r\n\r\n\r\nMIBs used:\r\nCISCO-UNIFIED-COMPUTING-COMPUTE-MIB\r\nCISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB\r\nIF-MIB\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nCISCO-UNIFIED-COMPUTING-PROCESSOR-MIB\r\nCISCO-UNIFIED-COMPUTING-STORAGE-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418396-discussion-thread-for-official-zabbix-templates-for-cisco\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','d5eb4ce08a334098a85e6e02c534be90');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10435',NULL,'DELL PowerEdge R720 by HTTP','3','-1','2','','','DELL PowerEdge R720 by HTTP','0',NULL,'Template for DELL PowerEdge R720 servers with iDRAC 8/9 firmware 4.32 and later and Redfish API enabled.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','9643f22821104f809e2486be83e1816e');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10436',NULL,'DELL PowerEdge R720 SNMP','3','-1','2','','','DELL PowerEdge R720 SNMP','0',NULL,'Template for DELL PowerEdge R720 servers with iDRAC version 7 and later.\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nIDRAC-MIB-SMIv2\r\nSNMPv2-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','fe5b8448661f41b9a6d948fccd7f9045');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10437',NULL,'DELL PowerEdge R740 by HTTP','3','-1','2','','','DELL PowerEdge R740 by HTTP','0',NULL,'Template for DELL PowerEdge R740 servers with iDRAC 8/9 firmware 4.32 and later and Redfish API enabled.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','3f707f39c32a4b6e8b214c38a260f6f9');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10438',NULL,'DELL PowerEdge R740 SNMP','3','-1','2','','','DELL PowerEdge R740 SNMP','0',NULL,'Template for DELL PowerEdge R740 servers with iDRAC version 7 and later.\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nIDRAC-MIB-SMIv2\r\nSNMPv2-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','9fde0e1c36f8453da72f97535d4e74ca');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10439',NULL,'DELL PowerEdge R820 by HTTP','3','-1','2','','','DELL PowerEdge R820 by HTTP','0',NULL,'Template for DELL PowerEdge R820 servers with iDRAC 8/9 firmware 4.32 and later and Redfish API enabled.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','1e9fe6b88c7542638c0f5d94484858b2');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10440',NULL,'DELL PowerEdge R820 SNMP','3','-1','2','','','DELL PowerEdge R820 SNMP','0',NULL,'Template for DELL PowerEdge R820 servers with iDRAC version 7 and later.\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nIDRAC-MIB-SMIv2\r\nSNMPv2-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','d41c5d0fa91545d68cced1b5dabe4bf1');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10441',NULL,'DELL PowerEdge R840 by HTTP','3','-1','2','','','DELL PowerEdge R840 by HTTP','0',NULL,'Template for DELL PowerEdge R840 servers with iDRAC 8/9 firmware 4.32 and later and Redfish API enabled.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','20147f00f92d4240aab0b70cf578c022');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10442',NULL,'DELL PowerEdge R840 SNMP','3','-1','2','','','DELL PowerEdge R840 SNMP','0',NULL,'Template for DELL PowerEdge R840 servers with iDRAC version 7 and later.\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nIDRAC-MIB-SMIv2\r\nSNMPv2-MIB\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','fc834b8da8864678b55557e9a237eac9');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10443',NULL,'HPE ProLiant BL460 SNMP','3','-1','2','','','HPE ProLiant BL460 SNMP','0',NULL,'Template for HPE ProLiant BL460 servers with HP iLO version 4 and later.\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nCPQHLTH-MIB\r\nSNMPv2-MIB\r\nCPQNIC-MIB\r\nCPQSINFO-MIB\r\nCPQIDA-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','172ec7e51f1c4a6ba49baffbab3dda97');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10444',NULL,'HPE ProLiant BL920 SNMP','3','-1','2','','','HPE ProLiant BL920 SNMP','0',NULL,'Template for HPE ProLiant BL920 servers with HP iLO version 4 and later.\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nCPQHLTH-MIB\r\nSNMPv2-MIB\r\nCPQNIC-MIB\r\nCPQSINFO-MIB\r\nCPQIDA-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','586119e5e27e4062a3cce8601ecb8d71');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10445',NULL,'HPE ProLiant DL360 SNMP','3','-1','2','','','HPE ProLiant DL360 SNMP','0',NULL,'Template for HPE ProLiant DL360 servers with HP iLO version 4 and later.\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nCPQHLTH-MIB\r\nSNMPv2-MIB\r\nCPQNIC-MIB\r\nCPQSINFO-MIB\r\nCPQIDA-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','60cb9ccb922e4fd194a1d9573db10237');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10446',NULL,'HPE ProLiant DL380 SNMP','3','-1','2','','','HPE ProLiant DL380 SNMP','0',NULL,'Template for HPE ProLiant DL380 servers with HP iLO version 4 and later.\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nCPQHLTH-MIB\r\nSNMPv2-MIB\r\nCPQNIC-MIB\r\nCPQSINFO-MIB\r\nCPQIDA-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','379aaf7e87574debb4f5c3947a22ec68');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10447',NULL,'Travis CI by HTTP','3','-1','2','','','Travis CI by HTTP','0',NULL,'Template for monitoring Travis CI https://travis-ci.com\r\nYou must set {$TRAVIS.API.TOKEN} and {$TRAVIS.API.URL} macros.\r\n {$TRAVIS.API.TOKEN} is a Travis API authentication token located in User -> Settings -> API authentication.\r\n {$TRAVIS.API.URL} could be in 2 different variations:\r\n - for a private project : api.travis-ci.com\r\n - for an enterprise projects: api.example.com (where you replace example.com with the domain Travis CI is running on)\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','8cdbe00a2a3046ee962d28d32567968a');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10448',NULL,'InfluxDB by HTTP','3','-1','2','','','InfluxDB by HTTP','0',NULL,'Get InfluxDB metrics by HTTP agent from Prometheus metrics endpoint.\r\nFor organization discovery template need to use Authorization via API token. See docs: https://docs.influxdata.com/influxdb/v2.0/security/tokens/\r\n\r\nDon\'t forget change macros {$INFLUXDB.URL}, {$INFLUXDB.API.TOKEN}.\r\nSome metrics may not be collected depending on your InfluxDB instance version and configuration.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','a6fe3640b23544e7ae15d438b38ce1cd');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10449',NULL,'MikroTik CCR1009-7G-1C-1SPC SNMP','3','-1','2','','','MikroTik CCR1009-7G-1C-1S+PC SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR1009-7G-1C-1S+PC.\r\n7x Gigabit Ethernet, 1x Combo port (SFP or Gigabit Ethernet), 1xSFP+ cage, 9 cores x 1GHz CPU, 2GB RAM, LCD panel, passive cooling desktop enclosure, SmartCard slot, RouterOS L6, PSU\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','d596d6d231bf49c08890aa3ff135ecc6');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10450',NULL,'MikroTik CCR1009-7G-1C-1S SNMP','3','-1','2','','','MikroTik CCR1009-7G-1C-1S+ SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR1009-7G-1C-1S+.\r\n1U rackmount, 7x Gigabit Ethernet, 1x Combo port (SFP or Gigabit Ethernet), 1xSFP+ cage, 9 cores x 1.2GHz CPU, 2GB RAM, LCD panel, Dual Power supplies, SmartCard slot, RouterOS L6\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','a809695fbc784b75adcd4833c86bca8d');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10451',NULL,'MikroTik CCR1009-7G-1C-PC SNMP','3','-1','2','','','MikroTik CCR1009-7G-1C-PC SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR1009-7G-1C-PC.\r\n7x Gigabit Ethernet, 1x Combo port (SFP or Gigabit Ethernet), 9 cores x 1GHz CPU, 1GB RAM, passive cooling case, RouterOS L6\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','012e7043ff9849e197c42bf41cdf4d9a');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10452',NULL,'MikroTik CCR1016-12G SNMP','3','-1','2','','','MikroTik CCR1016-12G SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR1016-12G.\r\n1U rackmount, 12x Gigabit Ethernet, LCD, 16 cores x 1.2GHz CPU, 2GB RAM, 17.8mpps fastpath, Up to 12Gbit/s throughput, RouterOS L6, Dual PSU\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','5ed19d1f74224588bf5f53ac47003acc');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10453',NULL,'MikroTik CCR1016-12S-1S SNMP','3','-1','2','','','MikroTik CCR1016-12S-1S+ SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR1016-12S-1S+.\r\n1U rackmount, 12xSFP cage, 1xSFP+ cage, 16 cores x 1.2GHz CPU, 2GB RAM, LCD panel, Dual Power supplies, RouterOS L6\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','654910b270d9464f863ed085ba7302ce');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10454',NULL,'MikroTik CCR1036-12G-4S-EM SNMP','3','-1','2','','','MikroTik CCR1036-12G-4S-EM SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR1036-12G-4S-EM.\r\n1U rackmount, 12x Gigabit Ethernet, 4xSFP cages, LCD, 36 cores x 1.2GHz CPU, 8GB RAM, 24 mpps fastpath, Up to 16Gbit/s throughput, RouterOS L6, Dual PSU\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','930c0e0534a9424fb01f2b6218d8ce59');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10455',NULL,'MikroTik CCR1036-12G-4S SNMP','3','-1','2','','','MikroTik CCR1036-12G-4S SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR1036-12G-4S.\r\n1U rackmount, 12x Gigabit Ethernet, 4xSFP cages, LCD, 36 cores x 1.2GHz CPU, 4GB RAM, 24 mpps fastpath, Up to 16Gbit/s throughput, RouterOS L6, Dual PSU\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','82b428ad78d34988b93f3d577f2b6adc');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10456',NULL,'MikroTik CCR1036-8G-2SEM SNMP','3','-1','2','','','MikroTik CCR1036-8G-2S+EM SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR1036-8G-2S+EM.\r\n1U rackmount, 8x Gigabit Ethernet, 2xSFP+ cages, LCD, 36 cores x 1.2GHz CPU, 8GB RAM, 41.5mpps fastpath, Up to 28Gbit/s throughput, RouterOS L6, Dual PSU\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','7b3ecb24366f4685970df8e1143323f0');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10457',NULL,'MikroTik CCR1036-8G-2S SNMP','3','-1','2','','','MikroTik CCR1036-8G-2S+ SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR1036-8G-2S+.\r\n1U rackmount, 8x Gigabit Ethernet, 2xSFP+ cages, LCD, 36 cores x 1.2GHz CPU, 4GB RAM, 41.5mpps fastpath, Up to 28Gbit/s throughput, RouterOS L6, Dual PSU\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','7f44e67e3f564ec9894c9142d7276553');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10458',NULL,'MikroTik CCR1072-1G-8S SNMP','3','-1','2','','','MikroTik CCR1072-1G-8S+ SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR1072-1G-8S+.\r\n1U rackmount, 1x Gigabit Ethernet, 8xSFP+ cages, LCD, 72 cores x 1GHz CPU, 16GB RAM, up to 120 million packets per second, 80Gbps throughput, RouterOS L6\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','e7894db1c4c94e0f8715977e751368b3');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10459',NULL,'MikroTik CCR2004-16G-2S SNMP','3','-1','2','','','MikroTik CCR2004-16G-2S+ SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR2004-16G-2S+.\r\nThis powerful and affordable router crushes all previous CCR models in single-core performance. 16x Gigabit Ethernet ports, 2x10G SFP+ cages, active cooling and the best single-core performance per watt & best overall performance per watt among all the CCR devices.\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','ab871d051e304f83950171c5243aa4db');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10460',NULL,'MikroTik CCR2004-1G-12S2XS SNMP','3','-1','2','','','MikroTik CCR2004-1G-12S+2XS SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR2004-1G-12S+2XS.\r\nThe Connectivity Router - your best companion when it comes to SFP, SFP+ and SFP28 management! 1, 10 and 25 Gbps ports in a single device to make your life easier.\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','f2efeb94f4bd4ed9ab34a973c0363eb8');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10461',NULL,'MikroTik CRS106-1C-5S SNMP','3','-1','2','','','MikroTik CRS106-1C-5S SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS106-1C-5S.\r\nSmart Switch, 5x SFP cages, 1x Combo port (SFP or Gigabit Ethernet), 400MHz CPU, 128MB RAM, desktop case, RouterOS L5\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','20ea139663264c21bca0dcecf2e95589');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10462',NULL,'MikroTik CRS109-8G-1S-2HnD-IN SNMP','3','-1','2','','','MikroTik CRS109-8G-1S-2HnD-IN SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS109-8G-1S-2HnD-IN.\r\n8x Gigabit Smart Switch, 1x SFP cage, LCD, 802.11b/g/n Dual Chain wireless, 600MHz CPU, 128MB RAM, Metal desktop case, RouterOS L5, supports 10-57V, 802.3af/at compliant\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','fac16383680c4454be48b6db870d975e');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10463',NULL,'MikroTik CRS112-8G-4S-IN SNMP','3','-1','2','','','MikroTik CRS112-8G-4S-IN SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS112-8G-4S-IN.\r\n8x Gigabit Ethernet Smart Switch, 4x SFP cages, 400MHz CPU, 128MB RAM, desktop case, RouterOS L5\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','8d7d49fd0b3f4b1f9046dc0e94457931');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10464',NULL,'MikroTik CRS112-8P-4S-IN SNMP','3','-1','2','','','MikroTik CRS112-8P-4S-IN SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS112-8P-4S-IN.\r\n8x Gigabit Ethernet Smart Switch with PoE-out, 4x SFP cages, 400MHz CPU, 128MB RAM, desktop case, RouterOS L5\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','538ec67ce01341a9b281dbd86d86d2a2');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10465',NULL,'MikroTik CRS125-24G-1S-2HnD-IN SNMP','3','-1','2','','','MikroTik CRS125-24G-1S-2HnD-IN SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS125-24G-1S-2HnD-IN.\r\n24x Gigabit Ethernet layer 3 Smart Switch, 1x SFP cage, LCD, 802.11b/g/n Dual Chain wireless, 600MHz CPU, 128MB RAM, Metal desktop case, RouterOS L5\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','c8db153405704d859ba5ee19f08b46f3');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10466',NULL,'MikroTik CRS212-1G-10S-1SIN SNMP','3','-1','2','','','MikroTik CRS212-1G-10S-1S+IN SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS212-1G-10S-1S+IN.\r\nSmart Switch, 1x Gigabit LAN, 10x SFP cages, 1x SFP+ cage, LCD, 400MHz CPU, 64MB RAM, Metal desktop case, RouterOS L5\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','cdb6ebceb1174bada392dd24889b14d9');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10467',NULL,'MikroTik CRS305-1G-4SIN SNMP','3','-1','2','','','MikroTik CRS305-1G-4S+IN SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS305-1G-4S+IN.\r\nFive-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','223101f878704022a04c30c3ff066e3f');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10468',NULL,'MikroTik CRS309-1G-8SIN SNMP','3','-1','2','','','MikroTik CRS309-1G-8S+IN SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS309-1G-8S+IN.\r\nDesktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','bcc01f2b466345c4bcbe0cea1a7884d1');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10469',NULL,'MikroTik CRS312-4C8XG-RM SNMP','3','-1','2','','','MikroTik CRS312-4C+8XG-RM SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS312-4C+8XG-RM.\r\nSwitch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','8da94e2f01ff46e28becf0b08ff09ace');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10470',NULL,'MikroTik CRS317-1G-16SRM SNMP','3','-1','2','','','MikroTik CRS317-1G-16S+RM SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS317-1G-16S+RM.\r\nSmart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','f474ff823fe84d689b9e4c6a4f0ce59e');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10471',NULL,'MikroTik CRS326-24G-2SIN SNMP','3','-1','2','','','MikroTik CRS326-24G-2S+IN SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS326-24G-2S+IN.\r\n24 Gigabit ports, 2 SFP+ cages and a desktop case – server room power for your home!\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','c5f41fe0f54f470f9e304384838f150a');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10472',NULL,'MikroTik CRS326-24G-2SRM SNMP','3','-1','2','','','MikroTik CRS326-24G-2S+RM SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS326-24G-2S+RM.\r\n24 Gigabit port switch with 2 x SFP+ cages in 1U rackmount case, Dual boot (RouterOS or SwitchOS)\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','bc80883918ac4f879427ca145122b5cb');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10473',NULL,'MikroTik CRS326-24S2QRM SNMP','3','-1','2','','','MikroTik CRS326-24S+2Q+RM SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS326-24S+2Q+RM.\r\nOur fastest switch for the most demanding setups\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','e7ed0e0cbd0b439394f6498ea90dc31d');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10474',NULL,'MikroTik CRS328-24P-4SRM SNMP','3','-1','2','','','MikroTik CRS328-24P-4S+RM SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS328-24P-4S+RM.\r\n24 port Gigabit Ethernet router/switch with four 10Gbps SFP+ ports in 1U rackmount case, Dual Boot and PoE output, 500W\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','dcf88bca5aaf4123a10eb3daab28a9af');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10475',NULL,'MikroTik CRS328-4C-20S-4SRM SNMP','3','-1','2','','','MikroTik CRS328-4C-20S-4S+RM SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS328-4C-20S-4S+RM.\r\nSmart Switch, 20 x SFP cages, 4 x SFP+ cages, 4 x Combo ports (Gigabit Ethernet or SFP), 800MHz CPU, 512MB RAM, 1U rackmount case, Dual Power Supplies, RouterOS L5 or SwitchOS (Dual Boot)\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','6742f5ed33ca4c19b8e61203770e5fe5');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10476',NULL,'MikroTik CRS354-48G-4S2QRM SNMP','3','-1','2','','','MikroTik CRS354-48G-4S+2Q+RM SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS354-48G-4S+2Q+RM.\r\nBest price and best performance on the market – this 48 port switch will rock any setup, including 40 Gbps devices!\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','d1c1ab5db2c34c17ae3541407f8b7faa');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10477',NULL,'MikroTik CRS354-48P-4S2QRM SNMP','3','-1','2','','','MikroTik CRS354-48P-4S+2Q+RM SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS354-48P-4S+2Q+RM.\r\nThe 48 port champion you’ve been waiting for - now with PoE-out!\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','fa5e5e131eb34bbea1b1f7b2352a853d');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10478',NULL,'MikroTik CSS326-24G-2SRM SNMP','3','-1','2','','','MikroTik CSS326-24G-2S+RM SNMP','0',NULL,'The template for monitoring Switch MikroTik CSS326-24G-2S+RM.\r\nSwOS powered 24 port Gigabit Ethernet switch with two SFP+ ports in 1U rackmount case\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','75ada0d6fb22416a9e6e5f44c2c3f64a');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10479',NULL,'MikroTik CSS610-8G-2SIN SNMP','3','-1','2','','','MikroTik CSS610-8G-2S+IN SNMP','0',NULL,'The template for monitoring Switch MikroTik CSS610-8G-2S+IN.\r\nEight 1G Ethernet ports and two SFP+ ports for 10G fiber connectivity. Portable, powerful and extremely cost-effective – this switch is an instant classic!\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','8d22b4d1a9c6457fbd6fd959263f91db');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10480',NULL,'MikroTik FiberBox SNMP','3','-1','2','','','MikroTik FiberBox SNMP','0',NULL,'The template for monitoring Switch MikroTik FiberBox.\r\nAn outdoor switch with five SFP ports\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','2bd6f566391d49dab6bee184522ab5fa');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10481',NULL,'MikroTik PowerBox Pro SNMP','3','-1','2','','','MikroTik PowerBox Pro SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik PowerBox Pro.\r\nFive Gigabit Ethernet Router with 4xPoE-out ports, SFP cage and outdoor enclosure\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','c03e1ab0128a4ae1847bc04a34f5634e');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10482',NULL,'MikroTik PowerBox SNMP','3','-1','2','','','MikroTik PowerBox SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik PowerBox.\r\n650MHz CPU, 64MB RAM, 5xEthernet with PoE output for four ports, RouterOS L4, outdoor case, PSU\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','0c7b3c03a5854f868b56f3ab63e2d3f7');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10483',NULL,'MikroTik RB1100AHx4 Dude Edition SNMP','3','-1','2','','','MikroTik RB1100AHx4 Dude Edition SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik RB1100AHx4 Dude Edition.\r\nPowerful 1U rackmount router with 13x Gigabit Ethernet ports, 60GB M.2 drive for Dude database\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','fac50638cb77468598c29a6a47520c24');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10484',NULL,'MikroTik RB1100AHx4 SNMP','3','-1','2','','','MikroTik RB1100AHx4 SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik RB1100AHx4.\r\nPowerful 1U rackmount router with 13x Gigabit Ethernet ports\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','3dfd1a55987848e5aa6ffe92c228f63b');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10485',NULL,'MikroTik RB2011UiAS-IN SNMP','3','-1','2','','','MikroTik RB2011UiAS-IN SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik RB2011UiAS-IN.\r\nDesktop metal case, 5xEthernet, 5xGigabit Ethernet, USB, LCD, PoE out on port 10, 600MHz CPU, 128MB RAM, RouterOS L5\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','8cf537f34600403b9de31d3db4eb2a1d');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10486',NULL,'MikroTik RB2011UiAS-RM SNMP','3','-1','2','','','MikroTik RB2011UiAS-RM SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik RB2011UiAS-RM.\r\n1U rackmount, 5xEthernet, 5xGigabit Ethernet, USB, LCD, PoE out on port 10, 600MHz CPU, 128MB RAM, RouterOS L5\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','969cf5dca58f47f0b271ccf62ef79c13');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10487',NULL,'MikroTik RB2011iL-IN SNMP','3','-1','2','','','MikroTik RB2011iL-IN SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik RB2011iL-IN.\r\nDesktop metal case, 5xEthernet, 5xGigabit Ethernet, PoE out on port 10, 600MHz CPU, 64MB RAM, RouterOS L4\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','141438a05f904b518c7d3ddfbbabf91f');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10488',NULL,'MikroTik RB2011iL-RM SNMP','3','-1','2','','','MikroTik RB2011iL-RM SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik RB2011iL-RM.\r\n1U rackmount, 5xEthernet, 5xGigabit Ethernet, PoE out on port 10, 600MHz CPU, 64MB RAM, RouterOS L4\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','6d9737c72e5540d39e3553b773a587b1');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10489',NULL,'MikroTik RB2011iLS-IN SNMP','3','-1','2','','','MikroTik RB2011iLS-IN SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik RB2011iLS-IN.\r\nDesktop metal case, 5xEthernet, 5xGigabit Ethernet, SFP cage, PoE out on port 10, 600MHz CPU, 64MB RAM, RouterOS L4\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','318fd61c22fa4f1a92a71376814d6c32');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10490',NULL,'MikroTik RB260GSP SNMP','3','-1','2','','','MikroTik RB260GSP SNMP','0',NULL,'The template for monitoring Switch MikroTik RB260GSP.\r\n5x Gigabit PoE out Ethernet Smart Switch, SFP cage, plastic case, SwOS\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','5331ecc3be9f47d6a8eb0732ae141239');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10491',NULL,'MikroTik RB260GS SNMP','3','-1','2','','','MikroTik RB260GS SNMP','0',NULL,'The template for monitoring Switch MikroTik RB260GS.\r\n5x Gigabit Ethernet Smart Switch, SFP cage, plastic case, SwOS\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','1a74dd95e7244493a1b13b94fe9dd9e8');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10492',NULL,'MikroTik RB3011UiAS-RM SNMP','3','-1','2','','','MikroTik RB3011UiAS-RM SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik RB3011UiAS-RM.\r\n1U rackmount, 10xGigabit Ethernet, SFP, USB 3.0, LCD, PoE out on port 10, 2x1.4GHz CPU, 1GB RAM, RouterOS L5\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','cc762a057f0f467ab571b6d76a9bb278');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10493',NULL,'MikroTik RB4011iGSRM SNMP','3','-1','2','','','MikroTik RB4011iGS+RM SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik RB4011iGS+RM.\r\nPowerful 10xGigabit port router with a Quad-core 1.4Ghz CPU, 1GB RAM, SFP+ 10Gbps cage and desktop case with rack ears\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','780c4a9a657e42fc83f1ab9a535f5184');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10494',NULL,'MikroTik RB5009UGSIN SNMP','3','-1','2','','','MikroTik RB5009UG+S+IN SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik RB5009UG+S+IN.\r\nThe ultimate heavy-duty home lab router with USB 3.0, 1G and 2.5G Ethernet and a 10G SFP+ cage. You can mount four of these new routers in a single 1U rackmount space! Unprecedented processing power in such a small form factor.\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','7b6f7a12a6b449ca926e74c894eca354');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10495',NULL,'MikroTik hEX PoE lite SNMP','3','-1','2','','','MikroTik hEX PoE lite SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik hEX PoE lite.\r\n5xEthernet with PoE output for four ports, USB, 650MHz CPU, 64MB RAM, RouterOS L4\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','a5ddacdd5ac64b82bf5183769cc03e8c');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10496',NULL,'MikroTik hEX PoE SNMP','3','-1','2','','','MikroTik hEX PoE SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik hEX PoE.\r\n5x Gigabit Ethernet with PoE output for four ports, SFP, USB, 800MHz CPU, 128MB RAM, RouterOS L4\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','ff57532daf924030b364e3b75acb74c4');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10497',NULL,'MikroTik hEX S SNMP','3','-1','2','','','MikroTik hEX S SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik hEX S.\r\n5x Gigabit Ethernet, SFP, Dual Core 880MHz CPU, 256MB RAM, USB, microSD, RouterOS L4, IPsec hardware encryption support and The Dude server package\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','7802db8c2f9c4a7eba7b381b8f3fa5c5');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10498',NULL,'MikroTik hEX lite SNMP','3','-1','2','','','MikroTik hEX lite SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik hEX lite.\r\n5x Ethernet, Small plastic case, 850MHz CPU, 64MB RAM, Most affordable MPLS router, RouterOS L4\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','2785d83763c641a7a7937b516665d93a');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10499',NULL,'MikroTik hEX SNMP','3','-1','2','','','MikroTik hEX SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik hEX.\r\n5x Gigabit Ethernet, Dual Core 880MHz CPU, 256MB RAM, USB, microSD, RouterOS L4\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','68c2034014f24115ae9e910962530472');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10500',NULL,'MikroTik netPower 15FR SNMP','3','-1','2','','','MikroTik netPower 15FR SNMP','0',NULL,'The template for monitoring Switch MikroTik netPower 15FR.\r\nAn outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed – choose GPEN over GPON!\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','f1928e12f9554599a9adb516f38b6bf6');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10501',NULL,'MikroTik netPower 16P SNMP','3','-1','2','','','MikroTik netPower 16P SNMP','0',NULL,'The template for monitoring Switch MikroTik netPower 16P.\r\nAn outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','b126aaf4499d49d7b4fcee0329b7dea7');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10502',NULL,'MikroTik netPower Lite 7R SNMP','3','-1','2','','','MikroTik netPower Lite 7R SNMP','0',NULL,'The template for monitoring Switch MikroTik netPower Lite 7R.\r\nAn outdoor reverse PoE switch with Gigabit Ethernet and 10G SFP+ ports.\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nMIKROTIK-MIB\r\nIF-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','1782caa5bf724f66a23e7dbb96ef7ba2');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10503',NULL,'VMWare SD-WAN VeloCloud by HTTP','3','-1','2','','','VMWare SD-WAN VeloCloud by HTTP','0',NULL,'Template for monitoring VMWare SD-WAN VeloCloud https://www.vmware.com/products/sd-wan.html\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','e1ca624566424496bff9d90c261ab37b');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10504',NULL,'Kubernetes API server by HTTP','3','-1','2','','','Kubernetes API server by HTTP','0',NULL,'Get Kubernetes API server metrics by HTTP agent from Prometheus metrics endpoint.\r\n\r\nDon\'t forget change macros {$KUBE.API.SERVER.URL}, {$KUBE.API.TOKEN}.\r\nSome metrics may not be collected depending on your Kubernetes API server instance version and configuration.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.42','1','1','','','','','','1','0','0','85ce114c802e4e28a5f3597e07d07032');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10505',NULL,'Kubernetes Controller manager by HTTP','3','-1','2','','','Kubernetes Controller manager by HTTP','0',NULL,'Get Kubernetes Controller manager metrics by HTTP agent from Prometheus metrics endpoint.\r\n\r\nDon\'t forget change macros {$KUBE.API.SERVER.URL}.\r\nSome metrics may not be collected depending on your Kubernetes Controller manager instance version and configuration.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','2420a8a4fda74fbc81743aed69fafa3b');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10506',NULL,'Kubernetes Kubelet by HTTP','3','-1','2','','','Kubernetes Kubelet by HTTP','0',NULL,'Get Kubernetes kubelet metrics by HTTP agent from Prometheus metrics endpoint.\r\n\r\nDon\'t forget change macros {$KUBE.KUBELET.URL}, {$KUBE.API.TOKEN}.\r\nSome metrics may not be collected depending on your Kubernetes API server instance version and configuration.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','e785916967c14544b59c3644c3edda3a');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10507',NULL,'Kubernetes nodes by HTTP','3','-1','2','','','Kubernetes nodes by HTTP','0',NULL,'Get Kubernetes nodes metrics by HTTP.\r\nMetrics are collected by requests to Kubernetes API.\r\n\r\nDon\'t forget to read the README.md for the correct setup of the template.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.42','1','1','','','','','','1','0','0','f397be2340734d24bc666102fbe184a5');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10508',NULL,'{#NAME}','0','-1','2','','','{#NAME}','2',NULL,'','1','1','','','','','','1','0','1','bfcbf26edd704bdfaa65e244a987839e');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10509',NULL,'Kubernetes Scheduler by HTTP','3','-1','2','','','Kubernetes Scheduler by HTTP','0',NULL,'Get Kubernetes Scheduler metrics by HTTP agent from Prometheus metrics endpoint.\r\n\r\nDon\'t forget change macros {$KUBE.API.SERVER.URL}.\r\nSome metrics may not be collected depending on your Kubernetes Scheduler instance version and configuration.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','ece96efdf0a045b99ede7978fa9366d6');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10510',NULL,'Kubernetes cluster state by HTTP','3','-1','2','','','Kubernetes cluster state by HTTP','0',NULL,'Get Kubernetes state metrics by HTTP.\r\nMetrics are collected by requests to Kubernetes API.\r\n\r\nDon\'t forget to read the README.md for the correct setup of the template.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.42','1','1','','','','','','1','0','0','07695028a2ba4b66a5414797bec791df');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10511',NULL,'API {#NAME}','0','-1','2','','','API {#NAME}','2',NULL,'','1','1','','','','','','1','0','1','a67ac5100e6d499088e4c81856f947fc');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10512',NULL,'Controller manager {#NAME}','0','-1','2','','','Controller manager {#NAME}','2',NULL,'','1','1','','','','','','1','0','1','9d529f3924fc4831a62fb1eec79b64d7');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10513',NULL,'Scheduler {#NAME}','0','-1','2','','','Scheduler {#NAME}','2',NULL,'','1','1','','','','','','1','0','1','46da4b85c58f4c59825e61778a64a58e');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10514',NULL,'Kubelet {#NAME}','0','-1','2','','','Kubelet {#NAME}','2',NULL,'','1','1','','','','','','1','0','1','c1c4807f378a47dfa59e9bbc8e43f5e2');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10515',NULL,'PFSense SNMP','3','-1','2','','','PFSense SNMP','0',NULL,'Template for monitoring pfSense by SNMP\r\nSetup:\r\n 1. Enable SNMP daemon at Services in pfSense web interface https://docs.netgate.com/pfsense/en/latest/services/snmp.html\r\n 2. Setup firewall rule to get access from Zabbix proxy or Zabbix server by SNMP https://docs.netgate.com/pfsense/en/latest/firewall/index.html#managing-firewall-rules\r\n 3. Link template to the host\r\n\r\n\r\nMIBs used:\r\nBEGEMOT-PF-MIB\r\nHOST-RESOURCES-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','16f281aeb8904d3db8b66dda94611fcc');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10516',NULL,'OpenWeatherMap by HTTP','3','-1','2','','','OpenWeatherMap by HTTP','0',NULL,'Get weather metrics from OpenWeatherMap current weather API by HTTP.\r\nIt works without any external scripts and uses the Script item.\r\n\r\nSetup:\r\n 1. Create a host.\r\n\r\n 2. Link the template to the host.\r\n\r\n 3. Customize the values of {$OPENWEATHERMAP.API.TOKEN} and {$LOCATION} macros. \r\n OpenWeatherMap API Tokens are available in your OpenWeatherMap account https://home.openweathermap.org/api_keys. \r\n Locations can be set by few ways:\r\n - by geo coordinates (for example: 56.95,24.0833)\r\n - by location name (for example: Riga)\r\n - by location ID. Link to the list of city ID: http://bulk.openweathermap.org/sample/city.list.json.gz\r\n - by zip/post code with a country code (for example: 94040,us)\r\n A few locations can be added to the macro at the same time by "|" delimiter. \r\n For example: 43.81821,7.76115|Riga|2643743|94040,us.\r\n Please note that API requests by city name, zip-codes and city id will be deprecated soon.\r\n \r\n Language and units macros can be customized too if necessary.\r\n List of available languages: https://openweathermap.org/current#multi.\r\n Available units of measurement are: standard, metric and imperial https://openweathermap.org/current#data.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','8098b3c157ab456abd55d3840eef79c1');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10517',NULL,'Proxmox VE by HTTP','3','-1','2','','','Proxmox VE by HTTP','0',NULL,'Template tooling version used: 0.41','1','1','','','','','','1','0','0','4958b76448d74ff1b6d7d6280449beee');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10518',NULL,'TrueNAS SNMP','3','-1','2','','','TrueNAS SNMP','0',NULL,'Template for monitoring TrueNAS by SNMP\r\nSetup:\r\n 1. Import template into Zabbix\r\n 2. Enable SNMP daemon at Services in TrueNAS web interface https://www.truenas.com/docs/core/services/snmp\r\n 3. Link template to the host\r\n\r\n\r\nMIBs used:\r\nHOST-RESOURCES-MIB\r\nSNMPv2-MIB\r\nUCD-DISKIO-MIB\r\nUCD-SNMP-MIB\r\nFREENAS-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','28e31ef9402d4c1ba2fbc730a288d2d8');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10519',NULL,'HashiCorp Consul Node by HTTP','3','-1','2','','','HashiCorp Consul Node by HTTP','0',NULL,'Get HashiCorp Consul Node metrics by HTTP agent from metrics endpoint.\r\n\r\nDon\'t forget to change macros {$CONSUL.NODE.API.URL}, {$CONSUL.TOKEN}.\r\nSome metrics may not be collected depending on your HashiCorp Consul instance version and configuration.\r\nMore information about metrics you can find in official documentation: https://www.consul.io/docs/agent/telemetry\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.42','1','1','','','','','','1','0','0','884bdbeea93c4be0a11a2c92a5f8adce');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10520',NULL,'HashiCorp Consul Cluster by HTTP','3','-1','2','','','HashiCorp Consul Cluster by HTTP','0',NULL,'Get HashiCorp Consul Cluster services and nodes by HTTP agent from API endpoints.\r\n\r\nDon\'t forget to change macros {$CONSUL.CLUSTER.URL}, {$CONSUL.TOKEN}.\r\nSome metrics may not be collected depending on your HashiCorp Consul instance version and configuration.\r\nMore information about metrics you can find in official documentation: https://www.consul.io/docs/agent/telemetry\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.42','1','1','','','','','','1','0','0','3db29bb6b2b14fa289ba7915264efcdf');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10521',NULL,'Consul {#NODE_NAME}','0','-1','2','','','Consul {#NODE_NAME}','2',NULL,'','1','1','','','','','','1','0','1','20efdd208e1548a7877a970e1600e5ba');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10522',NULL,'Envoy Proxy by HTTP','3','-1','2','','','Envoy Proxy by HTTP','0',NULL,'Get Envoy Proxy metrics by HTTP agent from metrics endpoint.\r\nhttps://www.envoyproxy.io/docs/envoy/v1.20.0/operations/stats_overview\r\n\r\nDon\'t forget to change macros {$ENVOY.URL}, {$ENVOY.METRICS.PATH}.\r\nSome metrics may not be collected depending on your Envoy Proxy instance version and configuration.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','0368ca599bbb49729587b9c43ac83084');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10523',NULL,'CockroachDB by HTTP','3','-1','2','','','CockroachDB by HTTP','0',NULL,'Get CockroachDB metrics from Prometheus and health endpoints by HTTP agent.\r\n\r\nInternal node metrics are collected from Prometheus /_status/vars endpoint.\r\nNode health metrics are collected from /health and /health?ready=1 endpoints.\r\nTemplate doesn\'t require usage of session token.\r\n\r\nDon\'t forget change macros {$COCKROACHDB.API.SCHEME} according to your situation (secure/insecure node).\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','36116d8675da47b8a678193969d5a787');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10524',NULL,'HPE MSA 2040 Storage by HTTP','3','-1','2','','','HPE MSA 2040 Storage by HTTP','0',NULL,'The template to monitor HPE MSA 2040 by HTTP.\r\nIt works without any external scripts and uses the script item.\r\n\r\nSetup:\r\n1. Create user "zabbix" with monitor role on the storage.\r\n2. Link the template to a host.\r\n3. Configure {$HPE.MSA.API.PASSWORD} and an interface with address through which API is accessible.\r\n4. Change {$HPE.MSA.API.SCHEME} and {$HPE.MSA.API.PORT} macros if needed.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','be10b1140fce4cc08247260b71bcd037');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10525',NULL,'HPE MSA 2060 Storage by HTTP','3','-1','2','','','HPE MSA 2060 Storage by HTTP','0',NULL,'The template to monitor HPE MSA 2060 by HTTP.\r\nIt works without any external scripts and uses the script item.\r\n\r\nSetup:\r\n1. Create user "zabbix" with monitor role on the storage.\r\n2. Link the template to a host.\r\n3. Configure {$HPE.MSA.API.PASSWORD} and an interface with address through which API is accessible.\r\n4. Change {$HPE.MSA.API.SCHEME} and {$HPE.MSA.API.PORT} macros if needed.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','10537641cfa3416ab0f1451cdb61d804');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10526',NULL,'HPE Primera by HTTP','3','-1','2','','','HPE Primera by HTTP','0',NULL,'The template to monitor HPE Primera by HTTP.\r\nIt works without any external scripts and uses the script item.\r\n\r\nSetup:\r\n 1. Create user zabbix on the storage with browse role and enable it for all domains.\r\n 2. The WSAPI server does not start automatically.\r\n - Log in to the CLI as Super, Service, or any role granted the wsapi_set right.\r\n - Start the WSAPI server by command: `startwsapi`.\r\n - To check WSAPI state use command: `showwsapi`.\r\n 3. Link template to the host.\r\n 4. Configure macros {$HPE.PRIMERA.USERNAME} and {$HPE.PRIMERA.PASSWORD}.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','b8750c02b5624c6889979b129735bd56');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10527',NULL,'HPE Synergy by HTTP','3','-1','2','','','HPE Synergy by HTTP','0',NULL,'The template to monitor HPE Synergy by HTTP.\r\nIt works without any external scripts and uses the script item.\r\n\r\nSetup:\r\n 1. Link template to the host.\r\n 2. Configure macros {$HPE.SYNERGY.API.USERNAME} and {$HPE.SYNERGY.API.PASSWORD}.\r\n\r\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','0ffde4421f524bcbac2f47fec87c0f95');
INSERT INTO `hosts` (`hostid`,`proxy_hostid`,`host`,`status`,`ipmi_authtype`,`ipmi_privilege`,`ipmi_username`,`ipmi_password`,`name`,`flags`,`templateid`,`description`,`tls_connect`,`tls_accept`,`tls_issuer`,`tls_subject`,`tls_psk_identity`,`tls_psk`,`proxy_address`,`auto_compress`,`discover`,`custom_interfaces`,`uuid`) values ('10528',NULL,'OPNsense SNMP','3','-1','2','','','OPNsense SNMP','0',NULL,'Template for monitoring OPNsense by SNMP\r\nSetup:\r\n 1. Enable bsnmpd daemon by creating new config file "/etc/rc.conf.d/bsnmpd" with the following content:\r\n bsnmpd_enable="YES"\r\n 2. Uncomment the following lines in "/etc/snmpd.config" file to enable required SNMP modules:\r\n begemotSnmpdModulePath."hostres" = "/usr/lib/snmp_hostres.so"\r\n begemotSnmpdModulePath."pf" = "/usr/lib/snmp_pf.so"\r\n 3. Start bsnmpd daemon with the following command:\r\n /etc/rc.d/bsnmpd start\r\n 4. Setup a firewall rule to get access from Zabbix proxy or Zabbix server by SNMP (https://docs.opnsense.org/manual/firewall.html).\r\n 5. Link the template to a host.\r\n\r\n\r\nMIBs used:\r\nBEGEMOT-PF-MIB\r\nHOST-RESOURCES-MIB\r\n\r\nTemplate tooling version used: 0.41','1','1','','','','','','1','0','0','0c94915edb4c41bf8c627dddb4f68f5a');
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('1','10333','{#CLUSTER.NAME}',NULL,NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('2','10333','{#DATACENTER.NAME}',NULL,NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('4','10334','{#CLUSTER.NAME} (vm)',NULL,NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('6','10334','{#HV.NAME}',NULL,NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('16','10367','{#CLUSTER.NAME}',NULL,NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('17','10367','{#DATACENTER.NAME}',NULL,NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('19','10368','{#CLUSTER.NAME} (vm)',NULL,NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('21','10368','{#HV.NAME}',NULL,NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('35','10388','MongoDB sharded cluster/{#REPLICASET}',NULL,NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('37','10389','MongoDB sharded cluster/{#ID}',NULL,NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('54','10334','{#DATACENTER.NAME}/{#VM.FOLDER} (vm)',NULL,NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('57','10368','{#DATACENTER.NAME}/{#VM.FOLDER} (vm)',NULL,NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('136','10508','','12',NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('137','10511','','12',NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('138','10512','','12',NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('139','10513','','12',NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('140','10514','','12',NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('141','10333','','12',NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('142','10334','','12',NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('143','10367','','12',NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('144','10368','','12',NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('145','10388','','13',NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('146','10389','','13',NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('151','10521','','12',NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('152','10521','Consul cluster/{#NODE_DATACENTER}',NULL,NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('153','10508','{#CLUSTER_HOSTNAME}: Kubernetes/Nodes/Role: {#ROLES}',NULL,NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('154','10511','{#CLUSTER_HOSTNAME}: Kubernetes/Components: {#COMPONENT.API}',NULL,NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('155','10512','{#CLUSTER_HOSTNAME}: Kubernetes/Components: {#COMPONENT.CONTROLLER}',NULL,NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('156','10514','{#CLUSTER_HOSTNAME}: Kubernetes/Components: {#COMPONENT}',NULL,NULL);
INSERT INTO `group_prototype` (`group_prototypeid`,`hostid`,`name`,`groupid`,`templateid`) values ('157','10513','{#CLUSTER_HOSTNAME}: Kubernetes/Components: {#COMPONENT.SCHEDULER}',NULL,NULL);
INSERT INTO `interface` (`interfaceid`,`hostid`,`main`,`type`,`useip`,`ip`,`dns`,`port`) values ('1','10084','1','1','1','127.0.0.1','','10050');
INSERT INTO `interface` (`interfaceid`,`hostid`,`main`,`type`,`useip`,`ip`,`dns`,`port`) values ('2','10333','1','1','1','{#HV.IP}','','10050');
INSERT INTO `interface` (`interfaceid`,`hostid`,`main`,`type`,`useip`,`ip`,`dns`,`port`) values ('3','10334','1','1','1','{#VM.IP}','','10050');
INSERT INTO `interface` (`interfaceid`,`hostid`,`main`,`type`,`useip`,`ip`,`dns`,`port`) values ('4','10367','1','1','1','{#HV.IP}','','10050');
INSERT INTO `interface` (`interfaceid`,`hostid`,`main`,`type`,`useip`,`ip`,`dns`,`port`) values ('5','10368','1','1','1','{#VM.IP}','','10050');
INSERT INTO `interface` (`interfaceid`,`hostid`,`main`,`type`,`useip`,`ip`,`dns`,`port`) values ('6','10508','1','1','1','{#IP}','','10050');
INSERT INTO `interface` (`interfaceid`,`hostid`,`main`,`type`,`useip`,`ip`,`dns`,`port`) values ('7','10511','1','1','1','{#IP}','','10050');
INSERT INTO `interface` (`interfaceid`,`hostid`,`main`,`type`,`useip`,`ip`,`dns`,`port`) values ('8','10512','1','1','1','{#IP}','','10050');
INSERT INTO `interface` (`interfaceid`,`hostid`,`main`,`type`,`useip`,`ip`,`dns`,`port`) values ('9','10513','1','1','1','{#IP}','','10050');
INSERT INTO `interface` (`interfaceid`,`hostid`,`main`,`type`,`useip`,`ip`,`dns`,`port`) values ('10','10514','1','1','1','{#IP}','','10050');
INSERT INTO `interface` (`interfaceid`,`hostid`,`main`,`type`,`useip`,`ip`,`dns`,`port`) values ('11','10521','1','1','1','{#NODE_ADDRESS}','','10050');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1','10093','Service state','c363fc0046f4493eb7ba6379c41d3e58');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('2','10094','Service state','2ad1e9aeb097470ba36a09c56c67eadd');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('3','10095','Service state','3fea65dd433444ac86936134d0a28fd2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('4','10096','Service state','17353d47bd0a4a03a8f3ab799207e157');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('5','10097','Service state','ddbdab3aa88f4ad0b331a65504cceca5');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('6','10098','Service state','e0acc1611fcf43e38d6d1de761c48409');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('7','10099','Service state','1fb344806bc84930a4c45b84fd375cc8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('8','10100','Service state','603906e741e94b349db9e5116aa2c81b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('9','10101','Service state','41d22d9ad511457ba57ff86c11453f0b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('10','10102','Service state','80377235a65c4d119745137e4658ef67');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('11','10103','Service state','1d4d40a040d84b0eae345be144dee1b7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('12','10186','Service state','bdb5d65d925542eaa61c302dc40fbfe8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('13','10264','Service state','452297e814a84b08a72730a7b777e378');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('14','10265','Service state','a5d1f911fb264bd4bc087ea582626d7f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('15','10266','Service state','53c8528c18814f30a45d1540ab9e5c00');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('16','10267','Service state','5c0883d194e8494498474106c22be2ca');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('17','10301','Service state','c369d410303349b4973431b6ff8dcb85');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('18','10303','Service state','aaf7d0b8b306412b8a3272343708518f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('19','10308','Service state','4980ec41c6644ecb9d5b52027a381fd8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('20','10309','Service state','a8a0c20f1d404a79900064ac5d11a8b2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('21','10310','Service state','ae3eec95cd1c440ba6c67ed5d7b7b915');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('22','10316','Service state','4f2d7ca3c89246c6b691557447230031');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('23','10317','Service state','622c38d0af2a4b6ea7a640a5d1a22b93');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('24','10318','Service state','8effc3f81db14540996e2373dde6eca9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('25','10319','Service state','acd57d4f29a34286a801ce49cd6553fe');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('26','10320','Service state','f2e8233fcf0a4dd2b53a82ca48436a88');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('27','10322','Service state','15d416d869894fdb959ca2cda2c5e37c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('28','10323','Service state','94147888c7ad4f5bae864eb2698f0237');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('29','10324','Service state','1735a8d251b24c3fbab32e766064536b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('30','10325','Service state','5f3f78a3470c48b69442d942f21d11d0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('31','10326','Service state','41be60c561114627b861677603b92acb');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('32','10327','Service state','03cde96b90a641598db572a662dc2064');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('33','10328','Service state','45ad479873b84113a98fa21b21081c65');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('34','10330','Service state','1caa1e7c41e14c7492ab8112f93ea068');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('35','10331','Service state','8e8fa515c14c4ac181db791c2c68c518');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('36','10335','Service state','31c489581d8b4246942c663b88fbaf9f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('37','10336','Service state','d6e38832f2d44ec0bf6761e36fd7668f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('38','10353','Service state','22fe6d6c74454775994f07fc05d7bafd');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('39','10355','Service state','1bd791d250e441aeb1c73e499d96e98e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('40','10357','Service state','372bc939f3924aafa13c4821b83a9276');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('41','10363','Service state','6c967c4df18d4c7ebb0fd4be17df292a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('42','10365','Service state','547a6b8002d44a8f8f363023c6097b1e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('43','10175','Service state','25d04e2838af4fcca9ddd21df6781497');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('44','10378','Service state','a84db909cb1841c688acc6b4b1b28af4');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('45','10314','Windows service state','5d9a045df1df48daaa6752bd75f1681d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('46','10325','Windows service state','d65f1af3c1e24a338983c52c5aa07d27');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('47','10326','Windows service state','6dc834d8e50842d3a7337b0f88540b61');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('48','10350','Windows service state','af7bd46d70ed4058afa4961d130dc0b2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('49','10050','Zabbix agent ping status','e5a39fd666b04b70b6eea53e2373b564');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('50','10292','Zabbix agent ping status','9bf3eef7e8d8402ca6f826b377ea2db6');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('51','10174','VMware VirtualMachinePowerState','78f08f5c5c0047b999a2e8daa96cf8b7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('52','10173','VMware status','3c59c22905054d42ac4ee8b72fe5f270');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('53','10175','VMware status','2b324fd8d7624874a3a81449b62c2cd6');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('54','10366','VMware status','5e5e3b01ef334bd39441568ebd0c31c0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('55','10047','Value cache operating mode','97bbea700550483bbd8405b4dd9d8005');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('56','10261','Value cache operating mode','5dff563dde3c45d8b6d92525111384c6');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('57','10251','ENTITY-SENSORS-MIB::EntitySensorStatus','d42214398aea4362b4fc61a090f188e1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('58','10254','ENTITY-SENSORS-MIB::EntitySensorStatus','318f3041aea04848a223de86e589c232');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('59','10183','EtherLike-MIB::dot3StatsDuplexStatus','6c35799bc36d413b94c0ac110224f208');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('60','10188','IF-MIB::ifOperStatus','4578589110ec40e19297e1d35d17c82f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('61','10190','IF-MIB::ifOperStatus','692e46f1836c4e2682a0dc882fec89a0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('62','10192','IF-MIB::ifOperStatus','4b84f531e2df454a8824070608bfbf49');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('63','10276','ifOperStatus','8513cf23b8d34952b92a31bbd82a31d3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('64','10285','ifOperStatus','4827063819f14d539f509552c84f5f94');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('65','10342','ifOperStatus','9bc9524635a349409e244ad5215c80c1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('66','10188','IF-MIB::ifType','4e22cbad0d9146059d9fbf89714e6460');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('67','10190','IF-MIB::ifType','7a288ac5cdbf429b9d568b12b312ad70');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('68','10192','IF-MIB::ifType','41952f292f004232b94f4d201e6bf727');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('69','10204','zabbix.host.available','ced60845a741400390ba002e69e26b0f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('70','10050','zabbix.host.available','0d5e922550954e6bad89b22f1d9d0c65');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('71','10207','TIMETRA-CHASSIS-MIB::TmnxDeviceState','95a194271a584008a81564fd80189c5a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('72','10208','SW-MIB::swSensorStatus','73618556ee4b4e8f9ec9acf0893e13ea');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('73','10208','SW-MIB::swOperStatus','54427fdf694547c598e3662df09a980a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('74','10210','FOUNDRY-SN-AGENT-MIB::snChasPwrSupplyOperStatus','fe1c4f9f35a34b6189110fc95e21b086');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('75','10211','FOUNDRY-SN-AGENT-MIB::snChasPwrSupplyOperStatus','7b767e61825544bb857347f303a1f077');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('76','10210','FOUNDRY-SN-AGENT-MIB::snChasFanOperStatus','d457efd8cee74f168bd88f4fb2376142');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('77','10211','FOUNDRY-SN-AGENT-MIB::snChasFanOperStatus','41fadae69fa64af4a21c853fc00f23c0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('78','10217','CISCO-ENVMON-MIB::CiscoEnvMonState','96da9a43fa60420696714c57d3e72f13');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('79','10221','F10-S-SERIES-CHASSIS-MIB::chSysFanTrayOperStatus','b389c759db0448ffbe28d4572fbfb3e9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('80','10221','F10-S-SERIES-CHASSIS-MIB::chSysPowerSupplyOperStatus','2532df482bd348ba8202c3eb2b76340b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('81','10222','MY-SYSTEM-MIB::mySystemFanIsNormal','5889e276245d411bacd130427ae4a5d4');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('82','10223','EQUIPMENT-MIB::swFanStatus','e7ab460cf1bf4fca8afc22566257fc3a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('83','10223','EQUIPMENT-MIB::swPowerStatus','a46e6b21933f4aa7be17f9f11b1356ee');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('84','10224','EXTREME-SYSTEM-MIB::extremeFanOperational','b71a1b2d06324275a37a1952f13e29b3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('85','10224','EXTREME-SYSTEM-MIB::extremeOverTemperatureAlarm','34c686dbaf8649b3b7dcc243068a739a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('86','10224','EXTREME-SYSTEM-MIB::extremePowerSupplyStatus','85bfdbc16637406fb5f1a23a15f16c77');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('87','10227','HH3C-ENTITY-EXT-MIB::hh3cEntityExtErrorStatus','d7832aa00dd743bb8451cabff4e90e60');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('88','10250','HP-ICF-CHASSIS::hpicfSensorStatus','3c0731bf0669419fa8ebfdf9f7ec14de');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('89','10229','HUAWEI-ENTITY-EXTENT-MIB::hwEntityFanState','5d3f20a830b34f668c5f3ece41a039cd');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('90','10230','ICS-CHASSIS-MIB::icsChassisFanOperStatus','39299506ad14445fa7b7a9e78cc54619');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('91','10230','ICS-CHASSIS-MIB::icsChassisSensorSlotOperStatus','4c80241c4d5d4b949577e9741710a32b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('92','10230','ICS-CHASSIS-MIB::icsChassisPowerSupplyOperStatus','535cb21845474749994bf7c395e39312');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('93','10231','JUNIPER-ALARM-MIB::jnxRedAlarmState','3aaa451c55cd4e72ab84b65dd8310564');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('94','10231','JUNIPER-ALARM-MIB::jnxOperatingState','64128e7f2adf44988b0ca3edd76cba61');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('95','10251','ENTITY-STATE-MIB::EntityOperState','bd1dc90aa54849d0a5ae9bdf368d03a9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('96','10254','ENTITY-STATE-MIB::EntityOperState','15ba17df88eb435d9d48145fba8d9029');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('97','10234','FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesPowSupplyItemState','d11e2b2f01c641728d1b7f764fa49f37');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('98','10234','FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesFanItemState','3046d246b1064c749c1c9144442c0fac');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('99','10234','FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesTempSensorState','4da55a4de7284012890e1fd5458f039a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('100','10235','QTECH-MIB::sysFanStatus','fe2ada3a06844e138b3c4fed1a8c8d2d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('101','10235','QTECH-MIB::sysPowerStatus','439cee4220954720aa34725fdc6c365e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('102','10256','CPQSINFO-MIB::status','8374297ea234491b980591a8daa88e1f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('103','10256','CPQHLTH-MIB::cpqHeTemperatureLocale','f1e590a8cc744e22b900595851833357');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('104','10256','CPQIDA-MIB::cpqDaCntlrModel','140a21785b764c95a3f78c8c05ed0844');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('105','10256','CPQIDA-MIB::cpqDaPhyDrvStatus','68bc7370fb8a43ee9957240e29636562');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('106','10258','IMM-MIB::systemHealthStat','61bded84be1d419083d8bd8a8bd25152');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('107','10255','IDRAC-MIB-SMIv2::ObjectStatusEnum','f90ca4bbf10f41deb68b458b795f6bb2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('108','10255','IDRAC-MIB-SMIv2::StatusProbeEnum','ba7ff497325e4488af87afcc58e0cd42');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('109','10255','IDRAC-MIB-SMIv2::physicalDiskComponentStatus','3277b276bbb241699ac6011387e90126');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('110','10255','IDRAC-MIB-SMIv2::BooleanType','7648c14caa6e4dd4b0d2bc28e594090c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('111','10255','IDRAC-MIB-SMIv2::physicalDiskMediaType','3d57a8ee9167490cabf6429d9cd14b4a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('112','10255','IDRAC-MIB-SMIv2::batteryState','3459ea1c2ec94b3b8e39b8b7f76def81');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('113','10255','IDRAC-MIB-SMIv2::virtualDiskLayout','65e49bfeafcd4a7287ac779cf405d4eb');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('114','10255','IDRAC-MIB-SMIv2::virtualDiskOperationalState','6b8270d891b54aef8d7889ddce498ff2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('115','10255','IDRAC-MIB-SMIv2::virtualDiskWritePolicy','12019ceefc2e4ab896ea8106efac48b8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('116','10255','IDRAC-MIB-SMIv2::virtualDiskState','9da59b80065d4c46a270a544e00f18d7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('117','10256','CPQIDA-MIB::cpqDaPhyDrvSmartStatus','54b288da67e1431c9d401cf47a518bcc');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('118','10256','CPQIDA-MIB::cpqDaAccelStatus','20d96ea63e994ba49244b94a4c24aec3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('119','10256','CPQIDA-MIB::cpqDaAccelBattery','7502d61cf7644a2d9cff7462f53569ee');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('120','10256','CPQIDA-MIB::cpqDaPhyDrvMediaType','8351a024aa4d42d1915b44abe8acc4aa');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('121','10256','CPQIDA-MIB::cpqDaLogDrvFaultTol','442c9095de9f4aa5bcca659292b2c12b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('122','10256','CPQIDA-MIB::cpqDaLogDrvStatus','8db38b47aba64739ae9f078f43b42888');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('123','10329','PostgreSQL recovery role','9f38c01c325248d4b538c0582432b541');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('124','10357','PostgreSQL recovery role','2e376ee568d04e7bbe98cbae4181f313');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('125','10329','PostgreSQL replication status','0fba38eefa4c4073b46d3f8579fda314');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('126','10357','PostgreSQL replication status','7f553f18ef6544ceaa4b50c4ebf0e583');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('127','10276','Linux::Interface protocol types','e2db25377a2b49c897bbb8b6c30831e2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('128','10285','Linux::Interface protocol types','4d912f1ee95942038f306ddefb3a57b3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('129','10342','Linux::Interface protocol types','8f709b791d1342a48615632e86969c92');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('130','10291','Win32_NetworkAdapter::AdapterTypeId','dd37c51d4ded48ceb449fa633dd707e2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('131','10348','Win32_NetworkAdapter::AdapterTypeId','7300d3f66dec4f90bcd6889d206db89f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('132','10291','Win32_NetworkAdapter::NetConnectionStatus','3265d77e34ba44f688b7aaceeeccda6b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('133','10348','Win32_NetworkAdapter::NetConnectionStatus','a1e647b6b26547bfbc044d213150c71b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('134','10301','RabbitMQ healthcheck','08ee896f31a1457a8e9b4f6f251700d4');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('135','10303','RabbitMQ healthcheck','55188bbb2ede4300a6292b373ee36ab7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('136','10301','Alarm state','ce579def20ac488dbce1ff69baaa8c50');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('137','10303','Alarm state','e65c3d3e8ea443a281b37c51ca461c26');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('138','10304','CISCO-UNIFIED-COMPUTING-TC-MIB::CucsEquipmentOperability','e1686896f31e483f9add962dbbd90afb');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('139','10304','CISCO-UNIFIED-COMPUTING-TC-MIB::CucsLsOperState','398aa5bf5eb44a8c8dd96babd98f1bd3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('140','10304','CISCO-UNIFIED-COMPUTING-TC-MIB::CucsStoragePDriveStatus','9b7c7078039c4e348ab417da71b96f5c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('141','10304','CISCO-UNIFIED-COMPUTING-TC-MIB::CucsStorageLunType','7d3e38476c894ae59ecac6640b24f833');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('142','10304','CISCO-UNIFIED-COMPUTING-TC-MIB::CucsEquipmentPresence','5055674c42a241e3a2156de1dc1715bf');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('143','10310','Redis bgwrite status','098c2240a8e947fc9f6f0a677ffcbc0e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('144','10310','Redis flag','3b6cd97c65d14e10bdabf5c42d767ad9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('145','10310','Redis repl offset','47c80efdf46745f1959eee76f68014e7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('146','10310','Redis bgsave time','82f4dc4ef0c9471d82dbe3605f4f31d0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('147','10318','Docker flag','c289195aa4dc47ab883fa95c9cb6fd07');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('148','10322','ES cluster state','d651bdf75d0849d5ab2b0802fab76e22');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('149','10323','Replicas state','4d926c30529447b3816cec3f1440b47a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('150','10324','Etcd healthcheck','f25e21a70baa4e009bdbcb44acb1a22e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('151','10324','Etcd leader','7bcaf8a520e24613a96d49e63a91a55b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('152','10325','Application pool state','63d1ad6b4cf643da870b14c53da6c52f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('153','10326','Application pool state','636c6915a8154b6ea1ea5b00f015c149');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('154','10327','MSSQL DB state','bac1a10dad134d50add5bc9550e2ebf3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('155','10327','MSSQL AG Connected state','bfbb00eb85d747dabeda2954a5d659b7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('156','10327','MSSQL AG Join state','47413c135c094cdc8b59f18a9b195a78');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('157','10327','MSSQL AG Operational state','a570f341d9a8470797aecfebd376b2b8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('158','10327','MSSQL AG Recovery health','4ec6a96ff6c64756b2f27e47972fd9f6');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('159','10327','MSSQL AG Role','596556fba6064efb8155233371eb2950');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('160','10327','MSSQL AG Synchronization health','2ab0923b3ce14ffc9dd454114f6b15be');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('161','10327','MSSQL - Yes / No','c66ee50a8b3f4b6788b732bb8a6b514e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('162','10327','MSSQL Mirroring State','f1c105c262c5476798a93eaa4c46fbda');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('163','10327','MSSQL Mirroring Role','09aaa82ccd6a444b80d5d3bb182fbafd');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('164','10327','MSSQL Safety level','e70421b2c3db4ce1937791bdb432040e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('165','10327','MSSQL Witness state','aa9de6e21d08486db04f29e10d11a94c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('166','10328','Oracle DB open status','d0912db18fe54941b9345ebf869fd1a6');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('167','10335','Oracle DB open status','015a0c94ba2644c6aa343d3f792a4072');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('168','10328','Oracle DB role','df05d594141f42ebb294cf6adca5fd6b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('169','10335','Oracle DB role','afade10cda4e453982355342ba9d8d9f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('170','10328','Oracle instance status','41e105c52bf045899c3c4a1cb4e16865');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('171','10335','Oracle instance status','4893318c780f47719e12e839c9a846c2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('172','10328','Oracle instance role','97b689d7ddc04bcd9b9f92af6ba783bd');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('173','10335','Oracle instance role','53d97b73db8449959420e03114d345c3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('174','10328','Oracle archiver state','3afaab75342c4be186fb4f595ed62a31');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('175','10335','Oracle archiver state','f39e64058fef423bb858ba45834a3455');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('176','10328','Oracle tablespace status','c6633e4ef9a84fa7b843529479a06158');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('177','10335','Oracle tablespace status','f14ed94cf12740a19e221ddaa4855c54');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('178','10328','Oracle Archivelog status','79af6c068ba141ba9806f4341edd9266');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('179','10335','Oracle Archivelog status','5a90da8dd6124159a7f82a7a996f0a53');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('180','10328','Oracle force log status','f00ca5c45ab84df788820af2642e4784');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('181','10335','Oracle force log status','1d9f4a44f2f94a799768f147cb712331');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('182','10328','Oracle log mode','809554f521d645ea8e8850c3b1f41579');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('183','10335','Oracle log mode','910dd4a87f75434289fa2e345778d18d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('184','10353','Ceph cluster status','2a4b2a8c55ba48b2a815e4123c9ea7fa');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('185','10360','Exchange database copy role','4a0e19e58ade4e8c878a6b87f4021416');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('186','10361','Exchange database copy role','0797c152a163407aa9490a63f80a8fd1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('187','10360','Exchange database state','2d131c4a033c4145a6bd66ec4c0c030a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('188','10361','Exchange database state','a4fac47b56e4470c9c6d435d7eb06845');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('189','10362','GitLab healthcheck','3b40391bb8b6472e9c3fd8e1f001fe04');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('190','10364','Kafka controller state','cf2440fb69c24371b231cb0a69002333');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('191','10365','Vault flag','46edbd58c7384b53bb31775244c23343');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('192','10371','ProStar MPPT charge state','1703c3aeb1b24641821e1c6d2cb4c8b7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('193','10371','ProStar MPPT load state','b5403a0805a54b9294f69a1e11a438b1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('194','10372','ProStar PWM charge state','f94eb6ad54c44281878c7c018c6209d1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('195','10372','ProStar PWM load state','f0be8765c74e4c4788d4ff99a6c5ccd4');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('196','10373','SunSaver MPPT charge state','b51b9440e801481fbb76f28b4a5431d1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('197','10373','SunSaver MPPT load state','f21076ed51104b84ba4d78dd74bd1a5b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('198','10374','SureSine load state','1d6f60ea7d414cb8a26ddad70fc352b2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('199','10375','TriStar MPPT 600V charge state','8a0dfdf98d254c219905751cccc878d7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('200','10376','TriStar MPPT charge state','3c6c60ef422c4788bf0c5b74ffab7ef0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('201','10377','TriStar PWM charge state','4985c4742d5844e7bc0aee5aeeacc436');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('202','10377','TriStar PWM control mode','252c3fb63cc34bb1a36ae6e9cbe5880c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('203','10377','TriStar PWM load state','735e1a0d990a4c449e59eeb402f3b40e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('204','10378','FAS3220 HA cannot takeover cause','e078162b11ff49f59c3ab6d905f88f2c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('205','10378','FAS3220 HA settings','d6993f0258dd4978a85aa5c141f1706e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('206','10378','FAS3220 NVRAM battery status','1fe2bf70bd63468584708a9d09eb42a1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('207','10378','FAS3220 Port health','ee5e67c90bca4ded84df2d82589bc2fb');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('208','10378','FAS3220 Port link state','bd6ea858292c414d9bfd435631001ef5');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('209','10378','FAS3220 Port role','c598c387157d4450b5bf8f68e6e794a4');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('210','10378','FAS3220 Port speed','6b0fec10a0eb4c70a8982419c6e635b9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('211','10378','FAS3220 Port UP by administrator','c50cdd6dbe19482abdb870c12e7c7b8d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('212','10379','Computer online','d1b719ea85464279bd473fcdb34008da');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('213','10379','Computer state','5313fc2399b24216945ed6416a00d55d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('214','10379','Jenkins healthcheck','a51dacf033d1423a886ca9dbfdf9b175');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('215','10379','Service state','b45a6b0148074212bf45d6bb311565c2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('216','10380','Login status','4c14241141504a9d852d83965c309f31');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('217','10256','CPQHLTH-MIB::cpqHeTemperatureCondition','1a03c5602a4a49f8839d820c666434fc');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('218','10382','HTTP response status code','70add725d6a84f6f9ed0917107dfffc9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('219','10385','Huawei storage: Controller role','b5c6d9d67da54531a918c93a9c98cec8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('220','10385','Huawei storage: Health status','b7f399070ee0419cac1722f80268ff1a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('221','10385','Huawei storage: LUN status','e361f6b8fe92430f86d0e3dc70118ba9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('222','10385','Huawei storage: Running status','ae5093d843784258aa32437cde486574');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('223','10300','RabbitMQ healthcheck','78275d6daacf42b4b97e3d806dfe81fe');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('224','10302','RabbitMQ healthcheck','3380e05a15774dad92e77c983448698b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('225','10386','MongoDB flag','9f921e1503e74204b8f128966f9562bc');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('226','10386','ReplicaSet node state','a99141555eff42ff8d367f10d9a7c569');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('227','10386','Service state','b37ba44823e34a13a119f86f3d58a65a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('228','10387','MongoDB flag','2014769595e34d4bb18dbcf4d9eaf112');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('229','10387','Service state','3cedce4712fa4a3eba63ccd7a790ecf6');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('230','10390','CISCO-ENVMON-MIB::CiscoEnvMonState','673c7626d11b4867aba08e96b0fbd149');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('231','10390','EtherLike-MIB::dot3StatsDuplexStatus','4c04fea7546044d9a9c64762a9e1ebdd');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('232','10390','IF-MIB::ifOperStatus','346b197cb4fe42cb9b304ce246e5924f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('233','10390','IF-MIB::ifType','94e4f1da1ff24b96bdccf04ec663a1ae');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('234','10390','Service state','3a72216b3fea4ad482d0e3655e407747');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('235','10390','zabbix.host.available','868c28a7406c4ab3b48b783a6e7590ba');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('236','10391','CISCO-ENVMON-MIB::CiscoEnvMonState','cbeb53fa3c2a4b16b7f7ee92265efd8c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('237','10391','EtherLike-MIB::dot3StatsDuplexStatus','5ef472cb5f424ef9a7393156204613ba');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('238','10391','IF-MIB::ifOperStatus','73b7c034142043b689792e1e71dd5872');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('239','10391','IF-MIB::ifType','635461b9ca404cc1b92c1fab0c6327f6');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('240','10391','Service state','142fe822cc424a76899551b6f29799d9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('241','10391','zabbix.host.available','939c7551b81e40e9b053e624211d0901');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('242','10392','CISCO-ENVMON-MIB::CiscoEnvMonState','fea34445b6cd4847b420d212f9b0201e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('243','10392','EtherLike-MIB::dot3StatsDuplexStatus','867b0e42f8a24a278ee15476aeadfa0b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('244','10392','IF-MIB::ifOperStatus','3534f9f22afe4f98a712a86ce755f491');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('245','10392','IF-MIB::ifType','88b99531b08248e8be1fc0a3210acee1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('246','10392','Service state','653ce2314e6f499b84250048df1314f8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('247','10392','zabbix.host.available','690c4c1545894d049ac8e26e3de7ec9c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('248','10393','CISCO-ENVMON-MIB::CiscoEnvMonState','e47b3ba8fb9c4ecf82701ddf571d55b6');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('249','10393','EtherLike-MIB::dot3StatsDuplexStatus','412b00b4bfbc48b4906370635c12dcee');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('250','10393','IF-MIB::ifOperStatus','358db91b44e645df92072f0a1449de2e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('251','10393','IF-MIB::ifType','877039dc6b0a467783828f3421887b83');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('252','10393','Service state','1d4c62bd989748a0b7947b6455405d96');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('253','10393','zabbix.host.available','ff706c036eac4ef88570e41629e65514');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('254','10394','CISCO-ENVMON-MIB::CiscoEnvMonState','52875f5c6b1b4bb3987c3baa03860d4d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('255','10394','EtherLike-MIB::dot3StatsDuplexStatus','8decf4d7d8744711b5f2ea68b5e73d14');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('256','10394','IF-MIB::ifOperStatus','e8815fad611e47389c987c88a029cece');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('257','10394','IF-MIB::ifType','93f29c48ad8b4bc7afe036817d946b18');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('258','10394','Service state','ee7cb62782d44458abc9f7cca816dca8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('259','10394','zabbix.host.available','6273854a740e41718cd1354f227cf4db');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('260','10251','IF-MIB::ifOperStatus','04fa3aad27e044a094dce939b3d361ec');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('261','10251','IF-MIB::ifType','afe0ce28ed5d49dd822cc7013356c599');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('262','10251','Service state','deb16b99706645929e300b0590f013f3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('263','10251','zabbix.host.available','a85fe23199cd4d779655f690a706d7c7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('264','10395','PowerNet-MIB::uioSensorStatusAlarmStatus','a808aadebf964e0cb6b8724bf1165013');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('265','10395','PowerNet-MIB::upsAdvBatteryReplaceIndicator','731b036e41d147ba81bfcfb7e99b561b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('266','10395','PowerNet-MIB::upsAdvInputLineFailCause','f310a0bceb06404d9daee67ab578e4b8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('267','10395','PowerNet-MIB::upsBasicBatteryStatus','795c75c652124ad282bad3dfd50b8e39');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('268','10395','Service state','cbd3d7c999244cd6a44a8fc566533005');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('269','10395','zabbix.host.available','781c568d935d40f2a43951488cf2e046');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('270','10327','MSSQL Job Run Status','eefa6e0e6f8b4facbc12004437b7ee8f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('271','10397','Service state','bce54cbdf2b8487985f9c7847a4c4918');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('272','10398','Service state','047f0303f1bc424a959f5d0ceaab77c7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('273','10400','PowerNet-MIB::uioSensorStatusAlarmStatus','30a78904cbc94fc58609dc1a11aa48ef');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('274','10400','PowerNet-MIB::upsAdvBatteryReplaceIndicator','ace379c23ae247f3b92ccffb9eef920c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('275','10400','PowerNet-MIB::upsAdvInputLineFailCause','19686fc030ee4c6bb69aacd3b9c735ca');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('276','10400','PowerNet-MIB::upsBasicBatteryStatus','80593b554d0a431aa89a0c4960f8565c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('277','10400','PowerNet-MIB::upsBasicOutputStatus','f41b7d5469e64557ab0cdb81526aeac0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('278','10400','zabbix.host.available','edd7578bf71146dd88770a39eec537e0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('279','10401','PowerNet-MIB::uioSensorStatusAlarmStatus','6940a4d08173433bb4bc8ff3b44e578c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('280','10401','PowerNet-MIB::upsAdvBatteryReplaceIndicator','add26e1622ed4d1fbdb4a9bdbf7facb8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('281','10401','PowerNet-MIB::upsAdvInputLineFailCause','2597173167e34be0943fb6c81f2597e5');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('282','10401','PowerNet-MIB::upsBasicBatteryStatus','7d2a66214d4b4b96890aa9e1c9bcf050');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('283','10401','PowerNet-MIB::upsBasicOutputStatus','351383a7383a4472a31c09009cf9d1f5');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('284','10401','zabbix.host.available','3aadc179423b4298b2e8a6e4850466a5');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('285','10402','PowerNet-MIB::uioSensorStatusAlarmStatus','55fecbd639c44c328b4199569a7305ef');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('286','10402','PowerNet-MIB::upsAdvBatteryReplaceIndicator','1ce6860b108948bda40d514fd4e3ed69');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('287','10402','PowerNet-MIB::upsAdvInputLineFailCause','db1fa20d76c8416c83fa0b7fda536fa8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('288','10402','PowerNet-MIB::upsBasicBatteryStatus','50b6ae187875406ea8ba1669add70899');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('289','10402','PowerNet-MIB::upsBasicOutputStatus','9c5fd52c36f6451ea3f502a871e821d7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('290','10402','zabbix.host.available','89597d423b454a42aa80fa8f7a20f273');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('291','10403','PowerNet-MIB::uioSensorStatusAlarmStatus','7cf932d3b9304f2cb151134e9ea3be82');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('292','10403','PowerNet-MIB::upsAdvBatteryReplaceIndicator','63c5f0e1601947e5a02abd25a07a9af4');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('293','10403','PowerNet-MIB::upsAdvInputLineFailCause','70d097ce846c45aeb3c8be031c427511');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('294','10403','PowerNet-MIB::upsBasicBatteryStatus','3424a9229a134b47b8544d611be082fb');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('295','10403','PowerNet-MIB::upsBasicOutputStatus','05a60d9c47274f5a8f6c92efe8158b8e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('296','10403','zabbix.host.available','d4ee88b3cf5d4d95b27be2e7b2f20e3c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('297','10404','PowerNet-MIB::uioSensorStatusAlarmStatus','b2af1e2dcb874d43949c383f9b347f36');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('298','10404','PowerNet-MIB::upsAdvBatteryReplaceIndicator','b06b54b07e6840e5a0c52ba7a6acf86a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('299','10404','PowerNet-MIB::upsAdvInputLineFailCause','a62f96735c47467da94b6bcf98cc013d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('300','10404','PowerNet-MIB::upsBasicBatteryStatus','ed12e8780c384caba8035fbb1c78e115');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('301','10404','PowerNet-MIB::upsBasicOutputStatus','ae2ed0c2c99a4ad496f7a35226e3d4f0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('302','10404','zabbix.host.available','8cddc4f99ecb4866b1638b82b145ea8b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('309','10406','PowerNet-MIB::uioSensorStatusAlarmStatus','864d59cbfcc8431cb334b812bf7ef3a3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('310','10406','PowerNet-MIB::upsAdvBatteryReplaceIndicator','cc42cb7a7fb4417fa1c143e214958c1d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('311','10406','PowerNet-MIB::upsAdvInputLineFailCause','a3bbd0be8c7c4dc1aa9accb9f22292c9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('312','10406','PowerNet-MIB::upsBasicBatteryStatus','f801d4fb07c644e4be1f01e99ba48aa7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('313','10406','PowerNet-MIB::upsBasicOutputStatus','28964e9cf2b849fbb2f8d998cecdacda');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('314','10406','zabbix.host.available','12058346f9e046388767c2939bbed2cf');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('315','10395','PowerNet-MIB::upsBasicOutputStatus','c536d9dc64724643a9291c9b601b1eac');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('316','10407','PowerNet-MIB::uioSensorStatusAlarmStatus','aec3362485c242ec928cb8ecfe5e61cf');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('317','10407','PowerNet-MIB::upsAdvBatteryReplaceIndicator','912d8834176b4fe4a2f6bd12ef3ee3c1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('318','10407','PowerNet-MIB::upsAdvInputLineFailCause','e079fa8cc9614245b0fecf4b8f42feca');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('319','10407','PowerNet-MIB::upsBasicBatteryStatus','24229472978c42739cdbe7aa47e1d34c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('320','10407','PowerNet-MIB::upsBasicOutputStatus','8c2c9721615c4408976f7632180ecfe3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('321','10407','zabbix.host.available','625f28bd49f14e49a1a7a4da01429906');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('322','10408','PowerNet-MIB::uioSensorStatusAlarmStatus','8516e97893ed4f2ebe70766d17eeacde');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('323','10408','PowerNet-MIB::upsAdvBatteryReplaceIndicator','84387eb0a5ef4523ac5d990eb4a6a796');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('324','10408','PowerNet-MIB::upsAdvInputLineFailCause','58104ecf15d34fe38922f3fe5fa25027');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('325','10408','PowerNet-MIB::upsBasicBatteryStatus','43715c15fed840fc8e188d062c0ef2da');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('326','10408','PowerNet-MIB::upsBasicOutputStatus','d9b5340729684dd0a450b6de6b14b590');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('327','10408','zabbix.host.available','cdf3578a66db4cfda6c36b4bbb295173');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('328','10409','PowerNet-MIB::uioSensorStatusAlarmStatus','e2877a188bd24918992f8c7878550924');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('329','10409','PowerNet-MIB::upsAdvBatteryReplaceIndicator','33d83523ceee4f3e916c885ebb33e8b9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('330','10409','PowerNet-MIB::upsAdvInputLineFailCause','c50ef9a9476d47e6935a6026bbb24d06');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('331','10409','PowerNet-MIB::upsBasicBatteryStatus','96a985d8351f48be86c5b00472b48feb');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('332','10409','PowerNet-MIB::upsBasicOutputStatus','160f7a39770d492c93403097650c1568');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('333','10409','zabbix.host.available','cc7a368057bc47eeb834dc9363183c59');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('334','10410','WildFly flag','e23e06cfd0ce4e069b9d996f101f6ee6');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('335','10411','WildFly flag','4004b5f2501f44a69dc86afce3daa4d1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('336','10412','PowerNet-MIB::uioSensorStatusAlarmStatus','41e166e2a5f948488238198920ab4b17');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('337','10412','PowerNet-MIB::upsAdvBatteryReplaceIndicator','224af0a6a5db48ef9c8861bc61873ea9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('338','10412','PowerNet-MIB::upsAdvInputLineFailCause','ded19296204545b9ab463d4fc65f3cfd');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('339','10412','PowerNet-MIB::upsBasicBatteryStatus','271d8f0594cf451a8aaa98c84850ebf7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('340','10412','PowerNet-MIB::upsBasicOutputStatus','171d4d5bf01442e391b04f9e448df5a0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('341','10412','zabbix.host.available','8b4f199f5e704cbea67182d4abf9b8de');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('342','10308','Server mode','bf2e9463450d4f4899abcac85cde0a92');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('343','10309','Server mode','450c1b2c6d58432b8a5b34dd3b5e8870');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('344','10416','Unit Active State','fe20979701834a80a823c514d11c19e7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('345','10416','Unit File State','e0a5e55e5a074a26935386c5e29a0e36');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('346','10416','Unit Load State','0309ef57e92a4ea2ae4404a685f0e7b8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('347','10418','Cisco ASAv algorithm validate packets','764f7c162b8a45d9b41e795cf2f5f8da');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('348','10418','Cisco ASAv encryption algorithm','f38e3c5200c941aa831857698eb3ea8b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('349','10418','Cisco ASAv port admin status','8395b87d3ff3496aabafdfd1d2e1c4be');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('350','10418','Cisco ASAv port operational status','e97c331986454b68917c771c3bba9a3d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('351','10418','Cisco ASAv session protocol','22e5704487924e4ebca70e2062d40da4');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('352','10418','Cisco ASAv user authenticate method','8dd72ccb744e4bd989ea739e21da7820');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('353','10418','Physical class','3c3b7c75af4b4fedb12e30fb74406a23');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('354','10418','SNMP available','91e8696b05654efca8f03b700ea74b0b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('355','10419','Chassis status','849febb31f524e9296afc5ec6ffb2fe3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('356','10419','Module provision level','ed7e1317987b433e9aa7168db3824c94');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('357','10419','Pause state','6e590fa7db7441d5a4b145204ee254bb');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('358','10419','SNMP available','b615a47192fc48f4b2cedb205c33f7d0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('359','10420','SNMP available','2b7c7c3eecb743e8a30ab3adc74ffd06');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('360','10420','ZYXEL AAM1212-51 / IES-612 port admin status','db7f61bebcac452c8081b2c58d1013d8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('361','10420','ZYXEL AAM1212-51 / IES-612 port operational status','6c2a29dac43340399990340fe26a7a72');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('362','10421','SNMP available','494c8983c4cf453789d2f0bbbe5cbbf3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('363','10421','ZYXEL ES3500-8PD operational mode port link up type','7cfe02e1eb224f6abe5216aaec31402c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('364','10421','ZYXEL ES3500-8PD operational mode port speed duplex','b568c9f69a1a4dd5951f1121523475c9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('365','10421','ZYXEL ES3500-8PD port admin status','4a20dd55c16b4c9082f267c532a4507a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('366','10421','ZYXEL ES3500-8PD port operational status','17635045a1ee4b8bba21b7d44634c57f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('367','10421','ZYXEL ES3500-8PD SFP status','875833a6ca71431da2b3747c4c1e3008');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('368','10422','SNMP available','c6ba6086ed584ba0a4dd58ffe8564fbf');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('369','10422','ZYXEL GS-4012F operational mode port link up type','82cce670bef64a47b326bb8b1a2f6cd8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('370','10422','ZYXEL GS-4012F operational mode port speed duplex','d7d38cadffc240f9a01434546659d036');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('371','10422','ZYXEL GS-4012F port admin status','7456d212b8f44f7da215fc86f39e3956');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('372','10422','ZYXEL GS-4012F port operational status','afa699db0bfc4cfbb48729932967230e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('373','10423','SNMP available','10dd3d9951014a38bc3517df54381a66');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('374','10423','ZYXEL IES-500x module status','efd6a6086011465ca956b1664f7d6474');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('375','10423','ZYXEL IES-500x module type','892651d2b1e3431490f2c531a50e2732');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('376','10423','ZYXEL IES-500x port admin status','9174dafc199e438994256eff4dd87bdd');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('377','10423','ZYXEL IES-500x port operational status','f64c046f1eca45e09dad683603f4674b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('378','10424','SNMP available','5247e9e5efcd4b29b864e336619eafcf');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('379','10424','ZYXEL IES-6000 module status','0236177f088340ff8ce5adb9361b8df8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('380','10424','ZYXEL IES-6000 module type','7ad4e124b8184fb8abc454c70c67e309');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('381','10424','ZYXEL IES-6000 port admin status','b20f50ac559f45369de16c04f5ccf523');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('382','10424','ZYXEL IES-6000 port operational status','2f3b061e1d6f46a3b8216b2398fc2896');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('383','10425','SNMP available','34ea860866f24498927b73f4ce438837');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('384','10425','ZYXEL IES1248-51 port admin status','b933d3a98256457d906de8f7da377bac');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('385','10425','ZYXEL IES1248-51 port operational status','e780cc91765849a0ace3d2eb2e4824a0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('386','10426','SNMP available','ac3d8b1e51074733a8bce57814528d83');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('387','10426','ZYXEL MES-3528 operational mode port link up type','042fc0ecdef34baab224062d4f746b96');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('388','10426','ZYXEL MES-3528 operational mode port speed duplex','cce63413576040fe8df5969886da993d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('389','10426','ZYXEL MES-3528 port admin status','6220d70f35404dd6834674510e0ae9ea');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('390','10426','ZYXEL MES-3528 port operational status','36e992f6794a492e87c3c5a9749e26b3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('391','10426','ZYXEL MES-3528 SFP status','da9692b414de47d5bac9cd3287492e0b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('392','10427','SNMP available','7ad9362759b542d98a67796dd13fc5d4');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('393','10427','ZYXEL MES3500-10 operational mode port link up type','064efc8dae8e47ae9c14713c7b31a36c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('394','10427','ZYXEL MES3500-10 operational mode port speed duplex','4ad7b4bf94494c93bdcbf36af095d5c3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('395','10427','ZYXEL MES3500-10 port admin status','e6a8dc82d4ca4b989daafd66ef1ab2ce');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('396','10427','ZYXEL MES3500-10 port operational status','a96f6ed4d9e34a0cb79cee8bdbd672f5');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('397','10427','ZYXEL MES3500-10 SFP status','8e9755ff129740298ab5f5497c6c17a2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('398','10428','SNMP available','dbb03955eb7043dda4dea1a9d7e8e043');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('399','10428','ZYXEL MES3500-24 operational mode port link up type','c0f699295af740e2aabbb06c6718e8f8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('400','10428','ZYXEL MES3500-24 operational mode port speed duplex','f94441e46ffe4908a8a57089cbdaeaa7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('401','10428','ZYXEL MES3500-24 port admin status','df2213aff9984b3f837f99944f3c9bc0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('402','10428','ZYXEL MES3500-24 port operational status','679674c6b9364083a1eb1c9c9be136a2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('403','10428','ZYXEL MES3500-24 SFP status','f12de6ba6b4c4556b276f9d5d509ffcf');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('404','10429','SNMP available','6e923e1e3ed34b8f87357b5fd7407c54');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('405','10429','ZYXEL MGS-3712 operational mode port link up type','7c5d7efbd17f48619a3f4211a269b38d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('406','10429','ZYXEL MGS-3712 operational mode port speed duplex','da42da17340044ea83521107ac4dee04');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('407','10429','ZYXEL MGS-3712 port admin status','7e107b2d754945dbaf833955fcae7f48');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('408','10429','ZYXEL MGS-3712 port operational status','ed71a5038bf34198a3a56b0020ad728e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('409','10429','ZYXEL MGS-3712 SFP status','b89570749c5d4dcb9378b7951803b8e4');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('410','10430','SNMP available','bf6cbe819fb94c85becf4364c47ef1c4');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('411','10430','ZYXEL MGS-3712F operational mode port link up type','2695f35dedcf41e1aade2037e931c57e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('412','10430','ZYXEL MGS-3712F operational mode port speed duplex','c2b235ab2e6042568c096fdfb466f7dc');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('413','10430','ZYXEL MGS-3712F port admin status','d145d8ee5ad2423f906335d30bfef592');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('414','10430','ZYXEL MGS-3712F port operational status','655823ba854540c78a8078d4e7594bf9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('415','10430','ZYXEL MGS-3712F SFP status','bf0d94784c404b209d4c75c8f582a5c6');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('416','10431','SNMP available','9e4265c1129d482fa12a09e657a7cda3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('417','10431','ZYXEL MES3500-24S operational mode port link up type','615d399b1a6045359dfc262b364b4c55');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('418','10431','ZYXEL MES3500-24S operational mode port speed duplex','4217cd5f5c1f4b438cd4701c023da375');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('419','10431','ZYXEL MES3500-24S port admin status','7e705fdb791341b8a1c86ee7d85fbfea');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('420','10431','ZYXEL MES3500-24S port operational status','08e22f2eac034c9db9bba73040cea453');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('421','10431','ZYXEL MES3500-24S SFP status','161770392cdb4dcd92c3596b5ad6d06a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('422','10432','SNMP available','5c5037a96f084a8182a5fb00f49ff285');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('423','10432','ZYXEL MGS3520-28x operational mode port link up type','2b38ddd0e1a34cfab7dd6af9ebf28aca');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('424','10432','ZYXEL MGS3520-28x operational mode port speed duplex','f23ebe496cfc4e659a09eff530b81a24');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('425','10432','ZYXEL MGS3520-28x port admin status','3e0566598e394d80988fb49cd3215922');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('426','10432','ZYXEL MGS3520-28x port operational status','2ffe41460977466cb09bc241b8d22739');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('427','10432','ZYXEL MGS3520-28x SFP status','4443c6780c8f4d16a5f1efd5426db02e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('428','10433','SNMP available','a7acf3b0ac684d4e80c560bcd3dd2dc6');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('429','10433','ZYXEL XGS-4728F operational mode port link up type','042ccfb45b0a4ef7bc8842f731dd8c4f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('430','10433','ZYXEL XGS-4728F operational mode port speed duplex','d466ff32531d4eaea989c07aa5989d6b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('431','10433','ZYXEL XGS-4728F port admin status','250f228ead4b433f987d42014255a617');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('432','10433','ZYXEL XGS-4728F port operational status','ed13145eeefd44dda083716080725e60');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('433','10433','ZYXEL XGS-4728F SFP status','49b0a85b7da947ab91e47ed2f2123907');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('434','10434','CISCO-UNIFIED-COMPUTING-TC-MIB::CucsEquipmentOperability','8648df22d8be42359900e11ea395a98c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('435','10434','CISCO-UNIFIED-COMPUTING-TC-MIB::CucsEquipmentPresence','17dde900e96a47929b0abed0d5006c84');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('436','10434','CISCO-UNIFIED-COMPUTING-TC-MIB::CucsLsOperState','c4a3603d4d8944ad8a8d2529bc3f1278');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('437','10434','CISCO-UNIFIED-COMPUTING-TC-MIB::CucsStorageLunType','7d09a2b8df18410ca871ed9e7dbe6aa1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('438','10434','CISCO-UNIFIED-COMPUTING-TC-MIB::CucsStoragePDriveStatus','70a906bfe3b447a39e5a0f0ba5210ae2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('439','10434','CISCO-UNIFIED-COMPUTING-TC-MIB::CucsStorageTechnology','e1407fbe331343d3bda7d7eb122c085a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('440','10434','IF-MIB::ifOperStatus','2b0fde08268f4ce7b47aae3827ebdf23');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('441','10434','IF-MIB::ifType','be402fda36e64dd2ad807925755735c4');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('442','10434','zabbix.host.available','9ea529bf28a84fae95f1506ca6ca37b8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('443','10435','zabbix.host.available','13a9860da38f4727a6f958b5cd3d3468');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('444','10436','IDRAC-MIB-SMIv2::batteryState','662600e752b94992b157724609e6b7ce');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('445','10436','IDRAC-MIB-SMIv2::BooleanType','db5865050a564fb9afa7215e9b1f7b59');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('446','10436','IDRAC-MIB-SMIv2::ObjectStatusEnum','03744c3cbad64946a71c27fa57d1ecc5');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('447','10436','IDRAC-MIB-SMIv2::physicalDiskComponentStatus','6ca166558903480a912a7dd700b10de2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('448','10436','IDRAC-MIB-SMIv2::physicalDiskMediaType','3ab13a74743f4635afac016594d6fc0f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('449','10436','IDRAC-MIB-SMIv2::StatusProbeEnum','5de90687104a4a82bf33099f7a53b8e2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('450','10436','IDRAC-MIB-SMIv2::virtualDiskLayout','742cb11d3e104411bd7b5777f3713d2e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('451','10436','IDRAC-MIB-SMIv2::virtualDiskOperationalState','cf6ea6091e864b589be59060bf822b3e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('452','10436','IDRAC-MIB-SMIv2::virtualDiskReadPolicy','bf35de999eed469d95be5d095481d0e4');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('453','10436','IDRAC-MIB-SMIv2::virtualDiskState','fa2c1fd3e71244f2960565b53cf89675');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('454','10436','IDRAC-MIB-SMIv2::virtualDiskWritePolicy','b2e0c35a0f0440ed96fadf89fbd8d730');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('455','10436','zabbix.host.available','e745027008e84545a52a8804e8a8aa05');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('456','10437','zabbix.host.available','182f54d53eab4a2ea6025dfc028a6892');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('457','10438','IDRAC-MIB-SMIv2::batteryState','00de3138244c4b758736da399416b193');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('458','10438','IDRAC-MIB-SMIv2::BooleanType','30da32599eab4478bc8645382d02a460');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('459','10438','IDRAC-MIB-SMIv2::ObjectStatusEnum','c51def0f0ce640e7ae70f9fe0da7589d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('460','10438','IDRAC-MIB-SMIv2::physicalDiskComponentStatus','349663986938482ca7e4519516a289ea');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('461','10438','IDRAC-MIB-SMIv2::physicalDiskMediaType','1945a0e1d81f495ab41c9ef848e8fde9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('462','10438','IDRAC-MIB-SMIv2::StatusProbeEnum','b3e8adf66be04293ab6b1416705721a6');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('463','10438','IDRAC-MIB-SMIv2::virtualDiskLayout','c6b9cc21da864d47982d1bb4223d5826');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('464','10438','IDRAC-MIB-SMIv2::virtualDiskOperationalState','4dbff414bf354da499f98c7391453e47');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('465','10438','IDRAC-MIB-SMIv2::virtualDiskReadPolicy','5d2e0552eab844728f62b95db3d9dd24');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('466','10438','IDRAC-MIB-SMIv2::virtualDiskState','2d250d26187e410492725f1022ae7b26');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('467','10438','IDRAC-MIB-SMIv2::virtualDiskWritePolicy','9536e2ee81374408aa40ad069533d6da');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('468','10438','zabbix.host.available','a5ac79d4c3f14ce59155b61cb0780e57');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('469','10439','IDRAC-MIB-SMIv2::batteryState','ce3baf68b6e54ad3a67f77d5e8d5567a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('470','10439','IDRAC-MIB-SMIv2::ObjectStatusEnum','1ce66d22fc074d6ab113fb5449cb778a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('471','10439','IDRAC-MIB-SMIv2::physicalDiskComponentStatus','c137d9094e9c434e975bac41ebdff156');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('472','10439','IDRAC-MIB-SMIv2::physicalDiskMediaType','f1ee4057a7394260b877b3a2b1ad0943');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('473','10439','IDRAC-MIB-SMIv2::StatusProbeEnum','660f91b00d694691953b39ac2800bdbe');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('474','10439','IDRAC-MIB-SMIv2::virtualDiskOperationalState','d8f93c2c425d4d8c9c2d5a5a489ba614');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('475','10439','IDRAC-MIB-SMIv2::virtualDiskReadPolicy','335c6dd916ba49cda3f537a6f3371540');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('476','10439','IDRAC-MIB-SMIv2::virtualDiskState','be6fadfed0574457b289dd5beda43e73');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('477','10439','IDRAC-MIB-SMIv2::virtualDiskWritePolicy','2c0f81605b694b7cba7232b102bde235');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('478','10439','zabbix.host.available','42059b2450fd4856a4c38019df326920');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('479','10440','IDRAC-MIB-SMIv2::batteryState','1ac64ea780474ceb91de5038ed9a3046');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('480','10440','IDRAC-MIB-SMIv2::BooleanType','234f3debc9424c38a793d3913a6ae15a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('481','10440','IDRAC-MIB-SMIv2::ObjectStatusEnum','cafb2094b58742e4a1affff59eff8f3f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('482','10440','IDRAC-MIB-SMIv2::physicalDiskComponentStatus','8aea183646034b20afa2bb48a2f81099');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('483','10440','IDRAC-MIB-SMIv2::physicalDiskMediaType','e06877de7dd14b52b8338796d6da8e5f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('484','10440','IDRAC-MIB-SMIv2::StatusProbeEnum','e8b8263d6214491eb17893e0ebba0aed');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('485','10440','IDRAC-MIB-SMIv2::virtualDiskLayout','ef48e8403dc84d048f7177a26224ac99');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('486','10440','IDRAC-MIB-SMIv2::virtualDiskOperationalState','2f814b3be15f438c8e7062645e3b2fd2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('487','10440','IDRAC-MIB-SMIv2::virtualDiskReadPolicy','a273ff1ff94c44f98e1ff312223712b8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('488','10440','IDRAC-MIB-SMIv2::virtualDiskState','91fea9a659114dfa90ca363ad879b243');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('489','10440','IDRAC-MIB-SMIv2::virtualDiskWritePolicy','633fb28afa934585abc60c3b91a278fa');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('490','10440','zabbix.host.available','4d5e4fb93a594bac8ef3b9e62da06fa4');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('491','10441','zabbix.host.available','82a264b7c920495ca0de966a3a7c0a14');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('492','10442','IDRAC-MIB-SMIv2::batteryState','644e180666f042d79bed40ac4e55c9bd');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('493','10442','IDRAC-MIB-SMIv2::BooleanType','42f304068b834ba48db2eb28cb29d9f3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('494','10442','IDRAC-MIB-SMIv2::ObjectStatusEnum','ee86b423d3444d57b7fc11fbb4989177');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('495','10442','IDRAC-MIB-SMIv2::physicalDiskComponentStatus','f655a6ed92e6430d9dbb7eff874f6307');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('496','10442','IDRAC-MIB-SMIv2::physicalDiskMediaType','3b74eb4e2b6144da845dfa5068f2dd08');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('497','10442','IDRAC-MIB-SMIv2::StatusProbeEnum','e87119147cd74d299861d14e1bc9c1af');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('498','10442','IDRAC-MIB-SMIv2::virtualDiskLayout','b513b8f45d6a4d17925669c35a68d7b6');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('499','10442','IDRAC-MIB-SMIv2::virtualDiskOperationalState','18152f06a04b4dfd84ade32d0a316769');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('500','10442','IDRAC-MIB-SMIv2::virtualDiskReadPolicy','09d591b105544625acf40b12b0569c9c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('501','10442','IDRAC-MIB-SMIv2::virtualDiskState','2cae2d1a9ad74ffe861f09a11f644550');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('502','10442','IDRAC-MIB-SMIv2::virtualDiskWritePolicy','6b19b83ac05e49749f592db773ab6db3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('503','10442','zabbix.host.available','39239bfc67b84ac9a4854f5d10d72f58');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('504','10443','CPQHLTH-MIB::cpqHeTemperatureCondition','1b67de295fef454cb89744b101cf5a19');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('505','10443','CPQHLTH-MIB::cpqHeTemperatureLocale','07d063dcbb3d4f1a8642bfd93afcd327');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('506','10443','CPQIDA-MIB::cpqDaAccelBattery','009fd99d3734459285fa037c4a0ca201');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('507','10443','CPQIDA-MIB::cpqDaAccelStatus','e138320082fc4aa69f3b23dad80272b2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('508','10443','CPQIDA-MIB::cpqDaCntlrModel','4891472973f84343ade2c5b61d96fcef');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('509','10443','CPQIDA-MIB::cpqDaLogDrvFaultTol','a368b7472246477599d6278df8348bc9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('510','10443','CPQIDA-MIB::cpqDaLogDrvStatus','aab16842347c4e58b9bbee274dad3c62');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('511','10443','CPQIDA-MIB::cpqDaPhyDrvMediaType','b3b110016c8c4272b9228161798a9bbd');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('512','10443','CPQIDA-MIB::cpqDaPhyDrvSmartStatus','5b016d244c6845f7afcc80361aec2af1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('513','10443','CPQIDA-MIB::cpqDaPhyDrvStatus','2f4e1eb1f32847b3808372d02f752575');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('514','10443','CPQNIC-MIB::cpqNicIfPhysAdapterStatus','3fe7ff0237a54f6cae3a1b8ffdabf157');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('515','10443','CPQSINFO-MIB::status','342d09a1cfe543b9ac1555daee9f2235');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('516','10443','zabbix.host.available','c57a256a525b46b0a1d0646200de57e2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('517','10444','CPQHLTH-MIB::cpqHeTemperatureCondition','1f0d43fc8b334b6da324b6ce4f838f81');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('518','10444','CPQHLTH-MIB::cpqHeTemperatureLocale','96287ed099c14e09b2e1708487f64d8d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('519','10444','CPQIDA-MIB::cpqDaAccelBattery','684758347f0740e08af4986ed148e81f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('520','10444','CPQIDA-MIB::cpqDaAccelStatus','ff25d5d2484f40ea99b212e19c48e375');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('521','10444','CPQIDA-MIB::cpqDaCntlrModel','4dc1441ab9964badbcb73e0dc213fe39');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('522','10444','CPQIDA-MIB::cpqDaLogDrvFaultTol','3fd86d20618b43f39911746d72c2c242');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('523','10444','CPQIDA-MIB::cpqDaLogDrvStatus','e72171bf818e4ee1bdf9638cb0494693');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('524','10444','CPQIDA-MIB::cpqDaPhyDrvMediaType','3d32638b989d4d3e87f727baaef8b051');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('525','10444','CPQIDA-MIB::cpqDaPhyDrvSmartStatus','137c69d61b394c979d7d25d91bcc2f0b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('526','10444','CPQIDA-MIB::cpqDaPhyDrvStatus','9af698a37bd844069eb2235f7f5d4800');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('527','10444','CPQNIC-MIB::cpqNicIfPhysAdapterStatus','04dcfa6e36ca4a0590475d84186a5d62');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('528','10444','CPQSINFO-MIB::status','83162a1a3b124ab2ae9b4cf1149486f9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('529','10444','zabbix.host.available','63b879b39b084a318547620421164c05');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('530','10445','CPQHLTH-MIB::cpqHeTemperatureCondition','eb946b7168084341870c9157173b5c1e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('531','10445','CPQHLTH-MIB::cpqHeTemperatureLocale','a293ad4b90c14fe188623341b954d852');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('532','10445','CPQIDA-MIB::cpqDaAccelBattery','ca2a5be5f3cf4fa7a9812d483ba043c5');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('533','10445','CPQIDA-MIB::cpqDaAccelStatus','f15cd1d7fa7e4e05b46e872daa3a3c83');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('534','10445','CPQIDA-MIB::cpqDaCntlrModel','abaffb0a2a1f47ec8aa64f6264d29092');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('535','10445','CPQIDA-MIB::cpqDaLogDrvFaultTol','204396956bfe4ff5808dfa93bb35705c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('536','10445','CPQIDA-MIB::cpqDaLogDrvStatus','adb434bee0104007a4c0d053211bc2e7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('537','10445','CPQIDA-MIB::cpqDaPhyDrvMediaType','6cc6b46021f74cae83b29a62fc2cd1c0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('538','10445','CPQIDA-MIB::cpqDaPhyDrvSmartStatus','02eab0a3c02d440c82b86ddbd4ed1af6');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('539','10445','CPQIDA-MIB::cpqDaPhyDrvStatus','8ab32bfce9f143da86a458427804a5f4');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('540','10445','CPQNIC-MIB::cpqNicIfPhysAdapterStatus','d7ae95f8b813415c8d35cfe8debf8f2d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('541','10445','CPQSINFO-MIB::status','365afa633545431482f2ec054750da88');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('542','10445','zabbix.host.available','9665746d6c2a4ad0b85b2f1f7d1cb12d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('543','10446','CPQHLTH-MIB::cpqHeTemperatureCondition','5655717fa32f4711b3062b97f1e5895b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('544','10446','CPQHLTH-MIB::cpqHeTemperatureLocale','ae1477baf3c046cbb5519346f28c7017');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('545','10446','CPQIDA-MIB::cpqDaAccelBattery','af8340b5070f47e085eb91eb4580d728');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('546','10446','CPQIDA-MIB::cpqDaAccelStatus','4c4378c0d1af4a6693f8c03bfaa9ad40');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('547','10446','CPQIDA-MIB::cpqDaCntlrModel','23a855763fc346ea8a3559399ffa7428');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('548','10446','CPQIDA-MIB::cpqDaLogDrvFaultTol','87ad87e768bc4d8ab77841e29176c36f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('549','10446','CPQIDA-MIB::cpqDaLogDrvStatus','46a2f599d46d438899ea4d8c552f51b4');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('550','10446','CPQIDA-MIB::cpqDaPhyDrvMediaType','5f6868416f454beba585a0d2e9038117');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('551','10446','CPQIDA-MIB::cpqDaPhyDrvSmartStatus','f78e361d31d94c479594b9d73257f80a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('552','10446','CPQIDA-MIB::cpqDaPhyDrvStatus','0efa6b7ed90f4edebc3282af5dbaf6c4');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('553','10446','CPQNIC-MIB::cpqNicIfPhysAdapterStatus','1d312bcad99c43b8931fb128f6250afa');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('554','10446','CPQSINFO-MIB::status','48e68c2789334818b5536be3f8628f66');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('555','10446','zabbix.host.available','1b63c6eea5fc42a99501408d603c158b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('556','10448','InfluxDB healthcheck','d1b4478bdfc44c6db79a4a262f605d92');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('557','10419','SNMP ltmPoolStatusEnabledState','74bcf04a70da49f89f04a20a9830fe13');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('558','10419','SNMP ltmVsStatusAvailState','3a8776175b1f4cd7aa62f0182c7e3ed7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('559','10419','SNMP sysCmFailoverStatusId','6f96920248994bca92eb8d4394346027');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('560','10419','SNMP sysCmSyncStatusId','1a42ed91b734453ab29a4c1f1feaca89');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('561','10503','Edge activation state','6ac13cd1206145919ae7c9776ef5e76b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('562','10503','Edge HA status','cd8d83dc329144d9925a5c52db95df96');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('563','10503','Edge states','87f150cd23e14448b35980b546dc2cd8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('564','10503','Link states','249b93828946422c9ef8870a915661ca');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('565','10047','Cluster node status','cee1681b12ff49b6b7d442a851e870b4');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('566','10261','Cluster node status','25ab0f5c570b4a7e9d15bd41db79fe25');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('567','10505','Leader status','fa1732213d27418a88a61c964d93e9d7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('568','10507','Node conditions','785b20f8979341c4b470870ec8f50414');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('569','10507','Pod conditions','f93e30e125de4909b52e7c38bc3f2c97');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('570','10507','Pod phase','21ff77dde5964dcfb4bb2ae202a5f33c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('571','10515','IF-MIB::ifOperStatus','2216d8afb349448394590770ff99e56a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('572','10515','IF-MIB::ifType','3165b9b6c79e446f9d1029571518004e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('573','10515','Services status','fc5652614ee94cd8b437b3058886e857');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('574','10515','Service state','c3c721156c624317af993e1a263c16bc');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('575','10515','SNMPv2-TC::TruthValue','f6bb441b7a65446c96c546bd3f3140ee');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('576','10515','zabbix.host.available','d553e33d8b104a5e89d88500e85fa5fc');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('577','10204','Service state','1817725a41454fd3b9ad22feaf889fc5');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('578','10207','EtherLike-MIB::dot3StatsDuplexStatus','b31f48e2216f441daa0b05561ac2ab6a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('579','10207','IF-MIB::ifOperStatus','0a25bc3fe4dd40f8a08962befa8416d1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('580','10207','IF-MIB::ifType','ce3031283a6d458489747bfbf3696ab6');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('581','10207','Service state','2d7b52f7709c460597a1ff44c1e39a1b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('582','10207','zabbix.host.available','03dcc409833146f6a1678df8b1311c40');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('583','10254','EtherLike-MIB::dot3StatsDuplexStatus','322511c8bbf34b8da79b98e47067db64');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('584','10254','IF-MIB::ifOperStatus','97fa6952fa0a4a2a965ba1e88eebe706');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('585','10254','IF-MIB::ifType','629b7642da57472ea36074d43e45ce8e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('586','10254','Service state','ab33ce8c3fff400eb49d274d76143a37');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('587','10254','zabbix.host.available','564ef39203334aff99b78aa8fb3fd2da');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('588','10208','IF-MIB::ifOperStatus','c8b95f7ce9e44b5ea09273fb6c3c9a28');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('589','10208','IF-MIB::ifType','db55d484980244b4bf5c60e0908f4e9b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('590','10208','Service state','17cb6bdbe4244a8fab16c0cbca5a4a00');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('591','10208','zabbix.host.available','2fdee7620a3a449f9dd61eb3405e620c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('592','10210','IF-MIB::ifOperStatus','1b40ba5987784986bb25aa9dfa2d1e81');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('593','10210','IF-MIB::ifType','5a55c0fddcc9450eb3e07b76cc73f8ee');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('594','10210','Service state','ac73622b29f54d21aa6bcbac5a783599');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('595','10210','zabbix.host.available','f74856688e9444bd93951f0c246ae483');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('596','10211','IF-MIB::ifOperStatus','82de0c54872847d190ee681690aac69c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('597','10211','IF-MIB::ifType','6ba7778a7b454c649d6eb0126edd6a62');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('598','10211','Service state','534121daa14949a6b5205cb9b7138b04');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('599','10211','zabbix.host.available','e7bbb30eb3b748c6b6087bc2c353c3a8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('600','10220','CISCO-ENVMON-MIB::CiscoEnvMonState','0e5588b6aa714283b436031ff8ebc93a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('601','10220','Service state','9fc9d3c2eb254de996d9c4a61ba58671');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('602','10220','zabbix.host.available','bb13061dd5b542f9b0f5921e75866679');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('603','10218','CISCO-ENVMON-MIB::CiscoEnvMonState','fb67666002524322b1b9ae9ed1611be5');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('604','10218','EtherLike-MIB::dot3StatsDuplexStatus','36ad5e7621ff466ca89e641c4410c6a1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('605','10218','IF-MIB::ifOperStatus','6c1104306b5447328703076cb76b64a9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('606','10218','IF-MIB::ifType','80d8685de68c49d8beb0f96f58baa1ce');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('607','10218','Service state','521e28cd45a1421d89b1588e5392b50a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('608','10218','zabbix.host.available','cc333fe140bc45388e5508237b42e1ad');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('609','10253','CISCO-ENVMON-MIB::CiscoEnvMonState','d811f4c78e8246f6a3ed1e903ade574d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('610','10253','IF-MIB::ifOperStatus','b4d11dd4e18b4958a17b5da31d101e08');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('611','10253','IF-MIB::ifType','475ca8ba5faf4ddca62bd41be9b3d410');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('612','10253','Service state','5470fefd50c64782ac60e3a2aa8b3d3c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('613','10253','zabbix.host.available','91d7e7e2bd4d48d7aecb9f9b4654185f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('614','10221','EtherLike-MIB::dot3StatsDuplexStatus','1962bc26a6064ee6868371f86d44dbeb');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('615','10221','IF-MIB::ifOperStatus','7f124ca304d9431386bba2edbb9b2560');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('616','10221','IF-MIB::ifType','9fde4e729aaf43cc993167d7c0bcae23');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('617','10221','Service state','38ce73f0eb6b4c4a912b61b2014156fb');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('618','10221','zabbix.host.available','01bced41864644fd842efed7085fda69');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('619','10222','IF-MIB::ifOperStatus','538fac0622da44f6983715e4ab5174d8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('620','10222','IF-MIB::ifType','111695131cb1419e910bec80a4b8e799');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('621','10222','Service state','613f2da376b04842aad29125788f0b91');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('622','10222','zabbix.host.available','73baa4be94844904b9a6fc06152a948a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('623','10223','EtherLike-MIB::dot3StatsDuplexStatus','a5032b272e4c4208b16ce190833103b0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('624','10223','IF-MIB::ifOperStatus','2bdac31f40b04baaa131ebedde8d5077');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('625','10223','IF-MIB::ifType','d050b91fbb5c406b8b59e4e66d3c783e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('626','10223','Service state','1012a8cf8ce34825aae3ffbb36ee1313');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('627','10223','zabbix.host.available','93ebe10df982453aa98621c1f1d070f9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('628','10224','EtherLike-MIB::dot3StatsDuplexStatus','60e2bd909e284621a8a21810623b0e94');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('629','10224','IF-MIB::ifOperStatus','2fcb120b5eb840ddbad31a7291711b7d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('630','10224','IF-MIB::ifType','d09aa2831cca48eb8c9011582c15bea1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('631','10224','Service state','3177ca5723c3410daf20723b88019907');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('632','10224','zabbix.host.available','c6691c15854b472982f8a6636efdbe82');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('633','10226','EtherLike-MIB::dot3StatsDuplexStatus','df2e3dab72d94efba9a85bfd7d1c3148');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('634','10226','IF-MIB::ifOperStatus','9b4ab9573d184bf381f80ba4392fedc7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('635','10226','IF-MIB::ifType','8f5eaea6553c4053b1d04569bc14bcb7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('636','10226','Service state','b146c1413392488884ca17289a55055a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('637','10226','zabbix.host.available','77a05f825d144596a08149088121951a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('638','10227','EtherLike-MIB::dot3StatsDuplexStatus','ec3b9adaa2ad448db5a613cfb6e02fd3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('639','10227','IF-MIB::ifOperStatus','47c29a4e28094f59a3666ab1bc7bbba9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('640','10227','IF-MIB::ifType','023e30ad64bc402abf989de29c2b7c5e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('641','10227','Service state','814a713abe0740bc93531596474b80b2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('642','10227','zabbix.host.available','f6c6d62117c749a482792e753486a2be');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('643','10250','EtherLike-MIB::dot3StatsDuplexStatus','846197beea984cc783b84822437bbace');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('644','10250','IF-MIB::ifOperStatus','28a4a6c5a2b84802bfb1e3215ae398a7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('645','10250','IF-MIB::ifType','5a230e50a04d4855808dc213db1bb5c5');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('646','10250','Service state','5a584e3a8795417c86911e6ffc37b0bd');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('647','10250','zabbix.host.available','b9fe3941224749efa881a61b56c5d888');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('648','10229','EtherLike-MIB::dot3StatsDuplexStatus','64bf3ebd444c4c4ca472b0846790b107');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('649','10229','IF-MIB::ifOperStatus','ec040521269743e7a402bbdd1c952ea3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('650','10229','IF-MIB::ifType','a46f120c4e16400980806c27eb08de1e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('651','10229','Service state','3bde7ef9431d4a9e86d3cb88bb46a38b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('652','10229','zabbix.host.available','c2435e2487434b3b888c54cb4b6c0139');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('653','10230','IF-MIB::ifOperStatus','59e447d9af934975975b38972c8a7fca');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('654','10230','IF-MIB::ifType','f959de5e694a4e46a35da37ff58af887');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('655','10230','Service state','9c931d7fbc984fd6b3a44a09fec264e1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('656','10230','zabbix.host.available','d6130251df4c41c0b417fcd8d71f3f15');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('657','10231','EtherLike-MIB::dot3StatsDuplexStatus','69625f8a027542638c3ca9b64522602d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('658','10231','IF-MIB::ifOperStatus','79269236a24e4a1d8f40a600ee1c3a65');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('659','10231','IF-MIB::ifType','f345b4dd14784f7f96902ad7f95d4038');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('660','10231','Service state','e3bf54eef520492a94ad3d7bd7c3dede');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('661','10231','zabbix.host.available','022ceae4990140a59b2ceca83a826dd5');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('662','10449','IF-MIB::ifOperStatus','2c87030228374ab0a2f1051f5fdd1c48');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('663','10449','IF-MIB::ifType','20bb48090ee04eadb771f56365193646');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('664','10449','Service state','e7be0480e0904cc6a68cc027961d36f3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('665','10449','zabbix.host.available','1cab243abc4747c3ae5bc1e432c8e2f2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('666','10450','IF-MIB::ifOperStatus','3a94c6ec55bb4acea2aff228712bc4f2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('667','10450','IF-MIB::ifType','0a80c83f5dcc47b095641aa5a0ed3fcf');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('668','10450','Service state','e785477c09fb4857b2b6ab0065eb30bb');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('669','10450','zabbix.host.available','845e465060de4e619f5d2fc841730211');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('670','10451','IF-MIB::ifOperStatus','fc286c3054704db2bc3b0e8b88ff74c0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('671','10451','IF-MIB::ifType','1299953fcf1143fb9155f889f39af069');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('672','10451','Service state','85dc872152ec4c5f8af35558e554abae');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('673','10451','zabbix.host.available','1f457b001e2e4d6c8ce2c386ea4d7f77');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('674','10452','IF-MIB::ifOperStatus','22f415a6b99d4266adc34008f74b8273');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('675','10452','IF-MIB::ifType','6ed02c4fe35042698491af23e9f9bf81');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('676','10452','Service state','c16dce20ddb24e648936f2c874df7611');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('677','10452','zabbix.host.available','9556e9053f5f49e2b8f8f4c312a15fc0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('678','10453','IF-MIB::ifOperStatus','1fd54fd1f5b245aa92674432cac9455d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('679','10453','IF-MIB::ifType','e8025fb20449470da19bf5881ebe3467');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('680','10453','Service state','f9e0c946ec844715a29819e037a52d46');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('681','10453','zabbix.host.available','d0c9d2ac973d49f09fd14d04803ccdf6');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('682','10454','IF-MIB::ifOperStatus','91555b102b4344ecabb9ffba5cefdfd2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('683','10454','IF-MIB::ifType','e93fd9e1a289402f9631275a21da92a8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('684','10454','Service state','562a1120aa7148b3a3ebd862480574bf');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('685','10454','zabbix.host.available','eaac357da10f4fa3ad2cf4cb5784c45a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('686','10455','IF-MIB::ifOperStatus','584f260e2200488084f41fbe709dd0ab');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('687','10455','IF-MIB::ifType','12b06f3b345c43e7b9b6f2299b2608bb');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('688','10455','Service state','8dd8911e238240a3a0455805bb8128af');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('689','10455','zabbix.host.available','2f9ffba5f4ae4226b8ff39e4bff0b5d1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('690','10456','IF-MIB::ifOperStatus','33859113b37a4ed7b36e31ec6d016fd5');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('691','10456','IF-MIB::ifType','480088441ae34e1d93cd19fa6379e30f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('692','10456','Service state','72f64e97a698449cbd0b6b60bc418b2e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('693','10456','zabbix.host.available','a52a4ff531194e7090d12246e011e9d0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('694','10457','IF-MIB::ifOperStatus','6e4c66c16e274c5f8caa1617020884cc');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('695','10457','IF-MIB::ifType','ec8ebd0e1ace4fc4b455cd932c5abb6f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('696','10457','Service state','33a1f843573446878618a06307d76f8d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('697','10457','zabbix.host.available','4e2dde2550564c3baa667b369e03b257');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('698','10458','IF-MIB::ifOperStatus','766be8ef402c431995ab5c5e70970cf4');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('699','10458','IF-MIB::ifType','2a9c7cab3ad0446896cc2ef6121d4452');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('700','10458','Service state','b5de6f35c8c14486b755175e8dee1d41');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('701','10458','zabbix.host.available','506571817e794083bdf3a7276b60c22d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('702','10459','IF-MIB::ifOperStatus','39905ed60f834c78836e3fe8b4cf34fe');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('703','10459','IF-MIB::ifType','308b4e2991ad4af88564441bc0e23b93');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('704','10459','Service state','1624693f374e437db131f743864e865b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('705','10459','zabbix.host.available','95c329958acd4df1b5e2459725d50115');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('706','10460','IF-MIB::ifOperStatus','d58e77f172d14ec5ab67d03296c7d38c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('707','10460','IF-MIB::ifType','acf4edb812eb4123af1d8560e63221bd');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('708','10460','Service state','ad346998940e4b4e8e131b26ee4bee23');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('709','10460','zabbix.host.available','6bd7aa56b18d4545891bfb11b69ddbd4');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('710','10461','IF-MIB::ifOperStatus','ce35f7985cc545bb821b0d0603ddcdd5');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('711','10461','IF-MIB::ifType','15e27cbe878e40b69ca4b16a3f6d1e2a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('712','10461','Service state','aae875e8761d49fda56524ee5d37f279');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('713','10461','zabbix.host.available','287ca5d5072f4fa7b96a31a0812e1cc5');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('714','10462','IF-MIB::ifOperStatus','10ff85e100864e88910e26efd34896d3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('715','10462','IF-MIB::ifType','b65a31c66306406a8fe73e6c210c0ba6');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('716','10462','Service state','d8e4b86f85e549e4a3641b36c3b8c0b2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('717','10462','zabbix.host.available','61071e8ff079488dab143843f124fa99');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('718','10463','IF-MIB::ifOperStatus','554abaed99124d0eb787506c0cb1b56a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('719','10463','IF-MIB::ifType','b59e05d6e52a4e3fb7546d7435c0dddd');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('720','10463','Service state','59c270831db949389b6c8ae00b0ff394');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('721','10463','zabbix.host.available','c6ee3b849b6942238cf691ecdb90be26');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('722','10464','IF-MIB::ifOperStatus','844451a575b14c3abccb52db6637c57c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('723','10464','IF-MIB::ifType','f258811d525d47d7a491ffca5cf36211');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('724','10464','Service state','cadc9c4a3e0549a9bd4092539a6e788b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('725','10464','zabbix.host.available','85b1c3feb18c4cbeb187dff5c4dd723b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('726','10465','IF-MIB::ifOperStatus','88ab84cb938a40a3918f884efd188d15');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('727','10465','IF-MIB::ifType','6b690add355342aea58455d2e54f9202');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('728','10465','Service state','b217d2a84c9844a08e6fef80c9dc6297');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('729','10465','zabbix.host.available','be9bb4ec29c7453aaef08944117fa319');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('730','10466','IF-MIB::ifOperStatus','9a2a53f5b1ee4cfd8128d6fd3ee94f19');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('731','10466','IF-MIB::ifType','6efc0b7ffc2e4205b2cbcca15ceba64c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('732','10466','Service state','d6a4ac3dba1d494e8a61150fbdd8cacc');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('733','10466','zabbix.host.available','4fa91d64132a4c2089cba197f734c0e3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('734','10467','IF-MIB::ifOperStatus','741d15ef55334ec9b017e355a1ed958b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('735','10467','IF-MIB::ifType','9b1f0649653b46c7be262934f376926e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('736','10467','Service state','9493572ff58f4e4c86208bb8ac839aa3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('737','10467','zabbix.host.available','bb18fe8a5404430e95b6bb00d571e6ed');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('738','10468','IF-MIB::ifOperStatus','eb2dc24843604c1b8ef9169ce65e570c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('739','10468','IF-MIB::ifType','ea9e3359b57840c8b1fa1b1c0cbf55c5');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('740','10468','Service state','e392411ac64845efaedeec750731caa8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('741','10468','zabbix.host.available','9200cc616f934bc5b0df6136c53e0650');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('742','10469','IF-MIB::ifOperStatus','09f1738eab3c4fc381b22b1d82a8d192');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('743','10469','IF-MIB::ifType','e56e7aefbc244b1f9a93fb787d7043db');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('744','10469','Service state','8ca1d63f5ca1449fb4f2dbb94b54835a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('745','10469','zabbix.host.available','c5f9837a1d6d42bb9ffae512dd63f0d6');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('746','10470','IF-MIB::ifOperStatus','898bfaed08a44954897385e63d854c0f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('747','10470','IF-MIB::ifType','d441d05e0e24462b817c5b3eae8d9b9d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('748','10470','Service state','04f7843b43454cc487e70cd3639b4024');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('749','10470','zabbix.host.available','84bf465ed8e3421e817ba4648e7707e9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('750','10471','IF-MIB::ifOperStatus','a47c7db9e85a42f6807209393d5be773');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('751','10471','IF-MIB::ifType','79a3153cc7f74b8ab41acec0f722476c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('752','10471','Service state','f430b2fa108a4c2c964d4e39c794cfaf');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('753','10471','zabbix.host.available','5bc4289f35bd41b9a5034da380f78eba');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('754','10472','IF-MIB::ifOperStatus','8c73c67d22c343c5a37d23afe2fbe98b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('755','10472','IF-MIB::ifType','7d7a0f21f1aa40ceb5acd6f1d9815875');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('756','10472','Service state','c9ed7ee77afb436e8c85baba81aa3971');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('757','10472','zabbix.host.available','ef6e97ca311d411c8b1d3dc7d87a1fce');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('758','10473','IF-MIB::ifOperStatus','d9450045bbb64855ae135a53308f3a22');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('759','10473','IF-MIB::ifType','6a6b6e7caa4d41b4b08781b665219425');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('760','10473','Service state','03feaa2653754a39a49be179e127cfef');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('761','10473','zabbix.host.available','26e5c5020edb4553a70bf0647d5e99a7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('762','10474','IF-MIB::ifOperStatus','d081693e5965461ab47d1e39712d0730');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('763','10474','IF-MIB::ifType','4028b1d91dd34224af78d961a8139422');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('764','10474','Service state','1b36de603f4a489ab58b3a2007664b97');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('765','10474','zabbix.host.available','827c5e25ce6c499690912ce2f51f2d23');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('766','10475','IF-MIB::ifOperStatus','42f75b8ccc1642699bc4c681379cdf9a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('767','10475','IF-MIB::ifType','eaf1d4babd704133811b0a0bc912d319');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('768','10475','Service state','057602363ab44b638e1c116e1e4edafd');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('769','10475','zabbix.host.available','14fa9bc957f644c19e88352fcd00a196');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('770','10476','IF-MIB::ifOperStatus','328bdd06aa634535895f099b1ae489a2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('771','10476','IF-MIB::ifType','1404a90ce0c24bdfb85712fa4ada16f7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('772','10476','Service state','92b5d1e8e71948fba8a01231ff5661ae');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('773','10476','zabbix.host.available','6c09aa1071a04b4381d625bfa862651c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('774','10477','IF-MIB::ifOperStatus','a020e149d8cd44b4bc01757e860fea9b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('775','10477','IF-MIB::ifType','eb92bcec20754ffda075157e919ff103');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('776','10477','Service state','ff7e81f30cbc4a8e9bdd4ab9f1b67332');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('777','10477','zabbix.host.available','51f609663817483cb44991b1057b6fd1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('778','10478','IF-MIB::ifOperStatus','03170ad661d94227a3ed44be919bb70b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('779','10478','IF-MIB::ifType','154285efa1184f648f415c16c80ed959');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('780','10478','Service state','e99c8b74b91047ce94ccf9d257da7952');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('781','10478','zabbix.host.available','4e98aec63e9a447085e18b0c00878c72');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('782','10479','IF-MIB::ifOperStatus','373f90696d5446dfb8b96ac601ea46bf');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('783','10479','IF-MIB::ifType','ec31f6a5de23428babb52891633c1cbf');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('784','10479','Service state','46a72cb8e18e4f6287a01663b70d65b8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('785','10479','zabbix.host.available','3ecff0e7f545452eaf0a4ea5c259099d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('786','10480','IF-MIB::ifOperStatus','405ab38009ec49348abe0b0c40cf8400');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('787','10480','IF-MIB::ifType','f8b354a36e1b483a9b62e151e9979e44');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('788','10480','Service state','d6794baa748e42ecbbb7ff798a7b6dfe');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('789','10480','zabbix.host.available','80459903b71047d1979a2043fa4a77a9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('790','10481','IF-MIB::ifOperStatus','f3c5ab8576b34585a21cc5c12ea2f030');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('791','10481','IF-MIB::ifType','6f4886e0f3014d9796ba3014a2cf4190');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('792','10481','Service state','15c511178ebd4ea1b08cf75048915a8d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('793','10481','zabbix.host.available','5b9f23af5c684b2f8360032126ac323e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('794','10482','IF-MIB::ifOperStatus','1688633d1275445f846db4e63be4ec87');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('795','10482','IF-MIB::ifType','54cc6fac26fa4e038de096b4e4a27ca9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('796','10482','Service state','7b5f3cb781fd49e1bc0a1811fc6bdb3c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('797','10482','zabbix.host.available','07adb358b3dc45dd848501bb129c184f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('798','10483','IF-MIB::ifOperStatus','6baa15161f3645ec9f7c55454fb5b575');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('799','10483','IF-MIB::ifType','9fa04834870c42d18cff898de904b7d1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('800','10483','Service state','cb3fc2c6a23845979765dc351158e134');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('801','10483','zabbix.host.available','239cc24f3e7046059da55c621f7f7741');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('802','10484','IF-MIB::ifOperStatus','7c2123a387904176a8285e3e1405622f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('803','10484','IF-MIB::ifType','618992ab84bd450c95e42ce469bbd45f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('804','10484','Service state','0cd4de70a85e44d28b6cad58f76dd298');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('805','10484','zabbix.host.available','ecb1dff8b48f4537ab39a61186db0dd7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('806','10485','IF-MIB::ifOperStatus','2cc282d274444241a03ee557db156c73');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('807','10485','IF-MIB::ifType','4c9d084f51dd4c649b645c71a812220d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('808','10485','Service state','3136d5ca9dd543d1a63a6df52bb60249');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('809','10485','zabbix.host.available','8f791785fd354a10b5c5a005e023d6c8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('810','10486','IF-MIB::ifOperStatus','270aa43aec684b4691a231c73aeb3f0f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('811','10486','IF-MIB::ifType','4e3a9e65c5734c34b6a73f9f68513e3e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('812','10486','Service state','f90f3e32b5b54f0c93aa0e5722810917');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('813','10486','zabbix.host.available','c3ffbe98192e4639843ab4a3584965ac');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('814','10487','IF-MIB::ifOperStatus','5ad8c335be4242fab3fe494707553a44');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('815','10487','IF-MIB::ifType','ab80a859fba74ce085fdfdddbadeda8e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('816','10487','Service state','4c5a4ebb20fd4111b444af3db223a21a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('817','10487','zabbix.host.available','46e81d323d9745f4af7af06ff9f85d3a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('818','10488','IF-MIB::ifOperStatus','77234a3478a44316b69d7cb39b018b47');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('819','10488','IF-MIB::ifType','42a4cc6793864b5fa8fcfbb158b993cc');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('820','10488','Service state','09896efced0143bc9f4c9f33db6051a4');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('821','10488','zabbix.host.available','097987211d8a41c5bb87be4f8b9e4598');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('822','10489','IF-MIB::ifOperStatus','8ab38f3183414268a97886537f26bb62');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('823','10489','IF-MIB::ifType','94cc38c8cfd3498ca3e08b2f3a215d7b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('824','10489','Service state','ffb74f2e72274c3eadcee61d34faf885');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('825','10489','zabbix.host.available','680e9b81d3094abc8a37ae0645076fe0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('826','10490','IF-MIB::ifOperStatus','e730f38a15e34cb4b52d27710056a28a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('827','10490','IF-MIB::ifType','486c1f40eae844d28eb8acfdebf52bb3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('828','10490','Service state','cdebb7ffdc0c4191a2b84569e3d8d40c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('829','10490','zabbix.host.available','9b957d38b829475a8cbe06991ff90659');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('830','10491','IF-MIB::ifOperStatus','bba96f7bcedf4277b5411562b17b0216');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('831','10491','IF-MIB::ifType','e1c29894283b4837b9fb6b1929b2af2e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('832','10491','Service state','9c3206fa143949e1a3d6423bc410a2dd');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('833','10491','zabbix.host.available','85e730aa40d141f488e0d0e5cc51f4cf');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('834','10492','IF-MIB::ifOperStatus','e6d270e997dc40dcb0b2d69f0eeaad69');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('835','10492','IF-MIB::ifType','3435384894224f579ceb1d9529532d49');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('836','10492','Service state','470819e8e6e04c988f1ddaf4ae78362c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('837','10492','zabbix.host.available','a57b96fc823f4634901a4da9df6d8f25');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('838','10493','IF-MIB::ifOperStatus','1a0d7378fe7340b68845b69fb4f93483');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('839','10493','IF-MIB::ifType','11d4940866204548bc22f75188bcbc23');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('840','10493','Service state','c9b07b4e497c4723a45effe620dae0e8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('841','10493','zabbix.host.available','2a3d5a84618f48d2a98f1ce43b1541f9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('842','10494','IF-MIB::ifOperStatus','209d3691ddba4079971e42b4c66bbf7b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('843','10494','IF-MIB::ifType','537470b0ce914388bae1f5c9d0b7e650');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('844','10494','Service state','f4e3f00eee7942b4a923008204a5efae');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('845','10494','zabbix.host.available','7e6ac491ba67468ca65aaadd506b0653');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('846','10495','IF-MIB::ifOperStatus','c212726bbd1047f2aa72c2f88b1bd4d8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('847','10495','IF-MIB::ifType','1d00e802a2c44775a84e2cff4e9f3e65');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('848','10495','Service state','47444d3fbb2f414dbb1c6ad7cb77ee13');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('849','10495','zabbix.host.available','451f6505bd2e43e08ab5f86e0e7ff816');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('850','10496','IF-MIB::ifOperStatus','15171bce73d64d4db72399fefc7c55f1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('851','10496','IF-MIB::ifType','bcd9de0d817246688f7682a1b66ed046');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('852','10496','Service state','c0bded469f6a4378a7fdcadd7c858b24');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('853','10496','zabbix.host.available','427da1e5397442f3a00e445928f054ed');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('854','10497','IF-MIB::ifOperStatus','6ea0ca9342014c71be6d5c38203bcf55');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('855','10497','IF-MIB::ifType','97906247683e4a488e191c5aba0b1bb3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('856','10497','Service state','7a87ed0256064913ac714fe514f3a87b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('857','10497','zabbix.host.available','18e987751fe7494bba178a5412592b90');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('858','10498','IF-MIB::ifOperStatus','76ca35629e874d2f90546a74a4b36ffb');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('859','10498','IF-MIB::ifType','a6383fcd4ce349eeac45dea55c502ded');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('860','10498','Service state','7cc0bd53766f455fa18674f6c6d08b47');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('861','10498','zabbix.host.available','8882c6eab8a7460e81bed27d01992b08');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('862','10499','IF-MIB::ifOperStatus','e440d3590aee41198de71b1b8d03b4b9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('863','10499','IF-MIB::ifType','9f7f414526dd464f813b6c193317729c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('864','10499','Service state','b31538483a81433a9136af0e3f210b2c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('865','10499','zabbix.host.available','61a780952af848389136a09bbebbec46');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('866','10500','IF-MIB::ifOperStatus','839bc47f8c5a4c08a124d98a67d1d008');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('867','10500','IF-MIB::ifType','e5ff01ab289d41c3b0400ddddd560252');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('868','10500','Service state','60d08c7e151244b6818a208dc71be165');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('869','10500','zabbix.host.available','4afed47df39742559534158284d405a4');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('870','10501','IF-MIB::ifOperStatus','f67e80e8803c4aa7bf64347a6ab40336');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('871','10501','IF-MIB::ifType','bb70b4c197574b659fec20c066393945');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('872','10501','Service state','828e978dbe3d445d8059c31f8902e403');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('873','10501','zabbix.host.available','47facf2a4a234c31851d1ec80a803cbe');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('874','10502','IF-MIB::ifOperStatus','c3ca1fe6814948818bde09a430c55d56');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('875','10502','IF-MIB::ifType','526dda4a360a4b81b3875c105087b417');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('876','10502','Service state','325bbbb044504b29957d9a759d7947d0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('877','10502','zabbix.host.available','77b701dfe7914b54ad7f361e0ff55f3f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('878','10233','IF-MIB::ifOperStatus','b020eb645cff47c0b91891a36652c087');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('879','10233','IF-MIB::ifType','0ab024c489794d1299d2992ad5b3e1e8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('880','10233','Service state','4197110252654153a2eee46de014a4c0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('881','10233','zabbix.host.available','f63bc9f2c0d0427b9d1eccae7a1d612d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('882','10234','IF-MIB::ifOperStatus','fecd5d9485284373bf7a2675c2b29698');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('883','10234','IF-MIB::ifType','fc2630e4b471489e86b27cad74869009');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('884','10234','Service state','5f4a459df3414f51a6304e95e33719cb');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('885','10234','zabbix.host.available','8f0e780896f9432486996071a231fba3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('886','10235','EtherLike-MIB::dot3StatsDuplexStatus','867a4b73b9c74b8991bd9e7fada4266f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('887','10235','IF-MIB::ifOperStatus','8be611d8f2c84397b7ded25165d6c63c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('888','10235','IF-MIB::ifType','041993f5fd2c4dec97fe4a1ede37cad5');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('889','10235','Service state','56ec9ee320f545d7a9f0941258f298ac');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('890','10235','zabbix.host.available','1bc8b4e625ae4328b3919b6379680ddd');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('891','10236','IF-MIB::ifOperStatus','ca6bcc5f345b46ffaa445d38a90ddcae');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('892','10236','IF-MIB::ifType','7eaf5db3b1f047bd9a8f5acdfdaf59ad');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('893','10236','Service state','0d9190336b1d47569f423067889d7a4d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('894','10236','zabbix.host.available','090a2707e81e42829504663cf37b8223');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('895','10237','IF-MIB::ifOperStatus','2fc5bef495074d0e86641cc136e3dcde');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('896','10237','IF-MIB::ifType','5161926438084643a3e2b08dac97cb4f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('897','10237','Service state','d72bcf64fddb4f4faf3bfb039a36e0e4');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('898','10237','zabbix.host.available','4ceae86ef7e84797a911fd3d257eaa46');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('899','10076','zabbix.host.available','4a25a6b3d6e4482ab2a748c79cb55524');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('900','10076','Zabbix agent ping status','f2885fb5e52946f8bce8eb96a60f433a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('901','10075','zabbix.host.available','9c02af203e354ac6ac87a742e85f683b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('902','10075','Zabbix agent ping status','b82f35541efe4fc1a432c049eba5d082');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('903','10077','zabbix.host.available','663bea44626447b5a72a71238dfda919');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('904','10077','Zabbix agent ping status','3f4bc88020d444e1b951aebfa8f3dfb8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('905','10001','ifOperStatus','8c048c6cca8248f2860c208e8db0f59e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('906','10001','Linux::Interface protocol types','044df261808442a8af9e5cda0acaa6a5');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('907','10001','zabbix.host.available','5488e5d78d704b78aee60c60414ce0c3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('908','10001','Zabbix agent ping status','64faba3a883241a88da8833970ac3ab0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('909','10343','ifOperStatus','276914b5aee2435da609d3112ecd359d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('910','10343','Linux::Interface protocol types','79afe98a54a648bb981c29e70ba6652c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('911','10343','zabbix.host.available','6a21d2d8f1f645ee8ea99f7734d6c967');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('912','10343','Zabbix agent ping status','d63e00a243804cc2bcaaf2644db9629d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('913','10248','EtherLike-MIB::dot3StatsDuplexStatus','1fe48656fa5e4a23903921a5b0f2aac4');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('914','10248','IF-MIB::ifOperStatus','1578e9a6c5f24dd1915d981c245b68fa');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('915','10248','IF-MIB::ifType','4a342bf160284052bc94e123d13f7992');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('916','10248','Service state','1ccba0a6ed744226ba878957e7d1aa47');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('917','10248','zabbix.host.available','72e9f56c06b546319580d856fc112dc1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('918','10079','zabbix.host.available','0355844b2bee4fb59bddda6175ef4810');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('919','10079','Zabbix agent ping status','a72caf871acf4776a891a612932fbf2e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('920','10074','zabbix.host.available','693c226692c548869e77d3313934ca28');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('921','10074','Zabbix agent ping status','8dad41742edf49178119c70abea0a0dc');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('922','10078','zabbix.host.available','2a704279b6e946a99b88bdebd4f99653');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('923','10078','Zabbix agent ping status','5db838501e354313888d84800658ed6a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('924','10081','Win32_NetworkAdapter::AdapterTypeId','9b087b9bfa09434ea0d0b5c32577abcc');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('925','10081','Win32_NetworkAdapter::NetConnectionStatus','7e549195e83446228db8bf1101bea83d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('926','10081','Windows service state','3f685167f97c492598ad445fc938560f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('927','10081','zabbix.host.available','c80233756c9d43769f334d632da07b8c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('928','10081','Zabbix agent ping status','5d3e53f3090448c7aaf081eb32b28ced');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('929','10351','Win32_NetworkAdapter::AdapterTypeId','224ca38281f04c83844763251505cdce');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('930','10351','Win32_NetworkAdapter::NetConnectionStatus','850e339a24de4ef6a0a881dc57bfa3a6');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('931','10351','Windows service state','e29ffb786c21406aa2338e3d35b484ef');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('932','10351','zabbix.host.available','9c0c0eb0ed7e495b9d4d487df7af0acd');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('933','10351','Zabbix agent ping status','c8fa75d469d74d2e97b9f410d219ef61');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('934','10249','IF-MIB::ifOperStatus','2357d81186e34d5b91db98c2350e0bdf');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('935','10249','IF-MIB::ifType','b3f64ce647bc4647a692f2e3bafa3760');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('936','10249','Service state','43b61695bdf347cb8ec9bd23e7cdbc88');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('937','10249','zabbix.host.available','a979f49c325344e0b6c064b829a21f62');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('938','10385','Service state','0aa29a4ffa224d56a107a1cfbd6c416a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('939','10385','zabbix.host.available','d107957d44424014a251dff95751a41f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('940','10378','zabbix.host.available','7ad319d1815e45a1a28a8cd2516fd8eb');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('941','10304','Service state','b98830da69f9463f949ed2df7ee5dcb3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('942','10304','zabbix.host.available','a67fce1a203742eea56849fc38b8af39');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('943','10255','Service state','485c599de2394bd3bc7cfd2272d72ca0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('944','10255','zabbix.host.available','1548d19085874e6a86abb4783f5ba920');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('945','10256','Service state','98d8b8c35272455281f6ae0775691117');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('946','10256','zabbix.host.available','1d84ec840bfb4ca0a8e98d11008e8423');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('947','10258','Service state','2fa79738fa194e04bfaeee91a2e4396f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('948','10258','zabbix.host.available','c446435a96c24db2845ba0651eb44c94');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('949','10259','Service state','e6794dc7602149a3b4fdbfeef45f6e8e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('950','10259','zabbix.host.available','1fbe26c5dcb3457f98f84a240aa790cd');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('951','10510','CronJob suspend flag','a435f7e23050406ca40cf6f5f872b5a7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('952','10516','Wind direction','9a8fdac997914722acfea90f1f9d45e9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('953','10517','Cluster quorate','d4bbd08f3a324a57af97a17f819cb3f3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('954','10517','HTTP response status code','87034fae192c44dba6c8bb568cd90bbd');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('955','10517','Node online','99c0bc65efb34d298586320bdcf14209');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('956','10518','FREENAS-MIB::ZPoolHealthType','1ce70fc8edf2449ea6a0c687f359441a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('957','10518','IF-MIB::ifOperStatus','4f6e0ca65b9e49ddbf8888120a0e904c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('958','10518','IF-MIB::ifType','bc968f23f59943c3b7213b3dd937cf16');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('959','10518','Service state','dd1bf7f8b7b642d584528240a25df254');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('960','10518','zabbix.host.available','6b810f3744284881b60277cc0d96dfa9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('961','10519','Consul Autopilot healthy','92638a6d5a9347edb011a8c999a9895e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('962','10519','Consul health state','1f966e7c41134551870c82f013f0b2cd');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('963','10519','Consul Node role','8d8f7d7e37a44fe8ac590147f621cb4c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('964','10520','Consul health state','9c120a74ede844e6a410b7e2c2d712bb');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('965','10522','Envoy listener manager','2152e7a114f3489eb6ea80b948c0db5c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('966','10522','Envoy server live','c05c038099d74d11b6fef057518a1fc9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('967','10522','Envoy server state','f467d440b03e4dab8cc4b15f87185eb5');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('968','10523','Node health','2e7ddaadebce4b1089dcf01a91d01293');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('969','10523','Node readiness','705e364c9e1b44dbb3fb50a1b27a8cdb');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('970','10523','Service state','cc5f50f62d4a4895aa64d167f56cb99c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('971','10524','Controller status','3bb065172c93464c9f5e2e569f523a05');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('972','10524','Disk group status','78f22a3d82a64372abb3e3eeb08cf03e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('973','10524','Disk temperature status','eb92d7812b8e4d2dbe4908fc3d42ade8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('974','10524','Disk type','e6478ee0a41b49778f2a3dc130649838');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('975','10524','Enclosure status','243d29502c1c416c85eb2ccc961a159c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('976','10524','Fan status','40916613dcf24dc2beb8634ec67c04bf');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('977','10524','FRU status','f656acc354ab4593a1c1718668c02001');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('978','10524','Health','448c57be77694badb75dbdabe9b233df');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('979','10524','Port type','66a23d01db744677a1878143ccf102c7');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('980','10524','RAID type','996bbe1c4e2841d6ac35efd9b5236fef');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('981','10524','Status','6c5d6649be2347ca83258f0ab1a63137');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('982','10525','Controller status','f7af1259f3c54a5faa040c743d386d1d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('983','10525','Disk group status','6bb0dfe12f4249ef9f4b804885c70c60');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('984','10525','Disk temperature status','de0e7d801a9b42cf80fe4c71c0eed982');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('985','10525','Disk type','10547e62c7bb4581b347bc523ef03582');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('986','10525','Enclosure status','37317f19f7d74b8fa61dd1b28e6f4d42');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('987','10525','Fan status','1acc14c82fba4c3daa207d0ce9b702f2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('988','10525','FRU status','284ed898fb7c46ecb8d719646445264c');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('989','10525','Health','cb8c3d00dfd4456181765b8b350ea4d2');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('990','10525','Port type','ec101e7d212747779ed56ef9dbf72e2b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('991','10525','RAID type','171c9abf20514b0fb78d532bd987881b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('992','10525','Status','402b0dacf14a4436b0d3cfe237bf1e86');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('993','10526','Boolean','79ba0611293541f29f8b43b34e64465d');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('994','10526','diskState enum','fd9a3483b02f45c6836b9a126b669402');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('995','10526','hardwareType enum','7513c4c923884ed4b8e35ee9cdf4f627');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('996','10526','portConnType enum','5d243add5b534ebfac8ef95d55c4c8c9');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('997','10526','portFailOverState enum','5762248dd10143a3945c989f0fb73b47');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('998','10526','portLinkState enum','5a6cdc765c254f17b136c4267fc71349');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('999','10526','rcopyStatus enum','eb36574d642d4f9ea51688b4ff971c91');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1000','10526','Service state','aaa5a863e8524a7088e64a51f5976c98');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1001','10526','State enum','86e4337cbc86423fb9f605a9fb3b25b1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1002','10526','taskStatus enum','5cfd4442b6244399b7aa8b57e9816a4e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1003','10526','taskType enum','9a8e1dbbb8f7497c9492fc941fde7177');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1004','10526','Volume compressionState enum','f529111642364bb3a23637adc554e592');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1005','10526','Volume deduplicationState enum','716912c7b7d94f8e97fbf911edc9578e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1006','10526','Volume detailed state enum','6a2355e32bf54483b252f1aaf170aa45');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1007','10527','Boolean','20d3a73c6cc84329a5dfafff29de32cc');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1008','10527','Device presence','d3641b3e94ad495f8e0c5c49984a5aa1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1009','10527','Enclosure state','082018b109e24116bbd92f0657113165');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1010','10527','Health status','05742432aca048ca96684ba52bd058ae');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1011','10527','Hypervisor manager state','6cd4b888faa442c19392b959f1605179');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1012','10527','Link port state','930add5553ea42668e590c9824d9e8d3');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1013','10527','Logical enclosure state','556391b7f9c045c89d28ac52a1082635');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1014','10527','Maintenance state','e26c553cffab4766866bf25639fb89da');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1015','10527','MGMT port state','c66615691cba4abc9c7adecc29bb346b');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1016','10527','Migration state','6feb2826df9244a8b6b7732c98090b63');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1017','10527','Partition health','b878a1503ac14781a142f69a587264ed');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1018','10527','Partition status','2c6d8b81e7ee4407b17ca06739ac71f1');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1019','10527','Physical server power state','7daddccc109d41f8abf1e04ba1fbd358');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1020','10527','Power state','fe093138fdd14f7f80fa4498d91d7fa0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1021','10527','Rack state','5a4901bdd6024256afbfebee6827e103');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1022','10527','Resource state','ba5903d60953477aafd313d3688c8dd8');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1023','10527','Server hardware state','a545b93c790741a29b726f04f03cbc8f');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1024','10527','Service state','2d6f2f67dc114502ae699e873130ba23');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1025','10527','State reason','647f5a6d2ce54e78af163f8676f3f1e0');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1026','10527','Storage volume state','e20d58a33c3b4a8891dda5da8b86cd5a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1027','10528','IF-MIB::ifOperStatus','b556be6037b449139eab7830cdab494a');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1028','10528','IF-MIB::ifType','c9a24f17cf8243feb44825d707132180');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1029','10528','Services status','0cb987b54d4243009aeae0454d0c059e');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1030','10528','SNMPv2-TC::TruthValue','1e5ba7a78b5843f0a97edc51eaa96778');
INSERT INTO `valuemap` (`valuemapid`,`hostid`,`name`,`uuid`) values ('1031','10528','zabbix.host.available','187ea1eb9cdb4f52bf5a6651820024a9');
INSERT INTO `items` (`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`,`uuid`) values ('10061','5','','10047','Zabbix server: Number of processed numeric (float) values per second','zabbix[wcache,values,float]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed float values.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','de63f78f36e74361b6c9993d12d8b7c8');
INSERT INTO `items` (`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`,`uuid`) values ('10062','5','','10047','Zabbix server: Number of processed character values per second','zabbix[wcache,values,str]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed character/string values.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b58fdd85cd6a48489d0b983ee8ebe97b');
INSERT INTO `items` (`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`,`uuid`) values ('10063','5','','10047','Zabbix server: Number of processed log values per second','zabbix[wcache,values,log]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed log values.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dae76dc6c4ce4707be7cf9534efc0233');
INSERT INTO `items` (`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`,`uuid`) values ('10064','5','','10047','Zabbix server: Number of processed numeric (unsigned) values per second','zabbix[wcache,values,uint]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed numeric (unsigned) values.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','47132a8565c943c0abbd4918d6af9339');
INSERT INTO `items` (`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`,`uuid`) values ('10065','5','','10047','Zabbix server: Number of processed text values per second','zabbix[wcache,values,text]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed text values.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5397d6d4dedc44c29ff25b8fd5611003');
INSERT INTO `items` (`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`,`uuid`) values ('10066','5','','10047','Zabbix server: Number of processed not supported values per second','zabbix[wcache,values,not supported]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of times item processing resulted in item becoming unsupported or keeping that state.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c99a99cf7e1e44918736ab860694d3a4');
INSERT INTO `items` (`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`,`uuid`) values ('10067','5','','10048','Zabbix proxy: Number of processed numeric (float) values per second','zabbix[wcache,values,float]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed float values.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ba5efd0ed21d4ac39e1375788b7198de');
INSERT INTO `items` (`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`,`uuid`) values ('10068','5','','10048','Zabbix proxy: Number of processed character values per second','zabbix[wcache,values,str]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed character/string values.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5f0c3ed0998e499aaa1e4a30726928fc');
INSERT INTO `items` (`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`,`uuid`) values ('10069','5','','10048','Zabbix proxy: Number of processed log values per second','zabbix[wcache,values,log]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed log values.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','47cdd6ef01734ec1ab15b0ab43d147ca');
INSERT INTO `items` (`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`,`uuid`) values ('10070','5','','10048','Zabbix proxy: Number of processed numeric (unsigned) values per second','zabbix[wcache,values,uint]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed numeric (unsigned) values.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8e4b9641b173415c8608ee4863bcd547');
INSERT INTO `items` (`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`,`uuid`) values ('10071','5','','10048','Zabbix proxy: Number of processed text values per second','zabbix[wcache,values,text]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed text values.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1c259b08b3ff445f9b2f24a02c07c5db');
INSERT INTO `items` (`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`,`uuid`) values ('10072','5','','10048','Zabbix proxy: Number of processed not supported values per second','zabbix[wcache,values,not supported]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of times item processing resulted in item becoming unsupported or keeping that state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','46574db1d70545f6af89e8607d22f5bb');
INSERT INTO `items` (`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`,`uuid`) values ('22183','5','','10047','Zabbix server: History write cache, % used','zabbix[wcache,history,pused]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache. Percentage of used history buffer.\r\nHistory cache is used to store item values. A high number indicates performance problems on the database side.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1ae8253bb4da434da3ea6bcb0352115d');
INSERT INTO `items` (`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`,`uuid`) values ('22185','5','','10047','Zabbix server: Trend write cache, % used','zabbix[wcache,trend,pused]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache. Percentage of used trend buffer.\r\nTrend cache stores aggregate for the current hour for all items that receive data.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5cca0fc9878d4e068467d5a3b8558ed5');
INSERT INTO `items` (`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`,`uuid`) values ('22187','5','','10047','Zabbix server: Number of processed values per second','zabbix[wcache,values]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nTotal number of values processed by Zabbix server or Zabbix proxy, except unsupported items.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','db364af6bcb24881850f3979933fccb0');
INSERT INTO `items` (`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`,`uuid`) values ('22189','5','','10047','Zabbix server: Configuration cache, % used','zabbix[rcache,buffer,pused]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Availability statistics of Zabbix configuration cache. Percentage of used buffer.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac2aebc15b084d049538b12e9513c08d');
INSERT INTO `items` (`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`,`uuid`) values ('22191','5','','10047','Zabbix server: Value cache, % used','zabbix[vcache,buffer,pused]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Availability statistics of Zabbix value cache. Percentage of used buffer.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','559ca5966e404c948f99cabf7a9077e8');
INSERT INTO `items` (`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`,`uuid`) values ('22196','5','','10047','Zabbix server: Value cache hits','zabbix[vcache,cache,hits]','1m','1w','365d','0','0','','vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Effectiveness statistics of Zabbix value cache. Number of cache hits (history values taken from the cache).','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','69b14487a9744dbb866f2e6ee131d0e5');
INSERT INTO `items` (`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`,`uuid`) values ('22199','5','','10047','Zabbix server: Value cache misses','zabbix[vcache,cache,misses]','1m','1w','365d','0','0','','vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Effectiveness statistics of Zabbix value cache. Number of cache misses (history values taken from the database).','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c78439859fd248cdb15e1eee37be2220');
INSERT INTO `items` (`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`,`uuid`) values ('22219','5','','10047','Zabbix server: Queue over 10 minutes','zabbix[queue,10m]','1m','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of monitored items in the queue which are delayed at least by 10 minutes.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2b2f695ed1ef4a7a871c80df9c911e90');
INSERT INTO `items` (`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`,`uuid`) values ('22231','0','','10050','Version of Zabbix agent running','agent.version','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3a6af03a083b4366bd1d4c6ccf06ca88');
INSERT INTO `items` (`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`,`uuid`) values ('22232','0','','10050','Zabbix agent ping','agent.ping','1m','7d','365d','0','3','','','','',NULL,'49','','','0','','','','','0',NULL,'The agent always returns 1 for this item. It could be used in combination with nodata() for availability check.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','37a952edc12f47d6ac6f3ca04eb41326');
INSERT INTO `items` (`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`,`uuid`) values ('22396','5','','10047','Zabbix server: History index cache, % used','zabbix[wcache,index,pused]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache. Percentage of used history index buffer.\r\nHistory index cache is used to index values stored in history cache.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9fc7faf5455e4e78bdb1406f947bfa08');
INSERT INTO `items` (`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`,`uuid`) values ('22399','5','','10047','Zabbix server: Utilization of poller data collector processes, in %','zabbix[process,poller,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time poller processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cbec202e15be49de93dc0c5f58824ae3');
INSERT INTO `items` (`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`,`uuid`) values ('22400','5','','10047','Zabbix server: Utilization of unreachable poller data collector processes, in %','zabbix[process,unreachable poller,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time unreachable poller processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4fd24bdb8935435e8617c9607b9c6ca1');
INSERT INTO `items` (`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`,`uuid`) values ('22401','5','','10047','Zabbix server: Utilization of vmware data collector processes, in %','zabbix[process,vmware collector,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time vmware collector processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bad00e43cd064a0fb3a4b65b71bea926');
INSERT INTO `items` (`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`,`uuid`) values ('22402','5','','10047','Zabbix server: Utilization of http poller data collector processes, in %','zabbix[process,http poller,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time http poller processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','419e937c4a1d4fa09c4b50ca88cbe3e2');
INSERT INTO `items` (`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`,`uuid`) values ('22404','5','','10047','Zabbix server: Utilization of trapper data collector processes, in %','zabbix[process,trapper,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time trapper processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0dd727eddfaf45a9a819a9d64c5b72c7');
INSERT INTO `items` (`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`,`uuid`) values ('22406','5','','10047','Zabbix server: Utilization of history syncer internal processes, in %','zabbix[process,history syncer,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time history syncer processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4d92eb7b411345cfbd6e2ea2ff5c1788');
INSERT INTO `items` (`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`,`uuid`) values ('22408','5','','10047','Zabbix server: Utilization of housekeeper internal processes, in %','zabbix[process,housekeeper,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time housekeeper processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','23f448b5acba472881857647ca1bb614');
INSERT INTO `items` (`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`,`uuid`) values ('22412','5','','10047','Zabbix server: Utilization of configuration syncer internal processes, in %','zabbix[process,configuration syncer,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time configuration syncer processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','301e7fe93a024444b19766e665e9d156');
INSERT INTO `items` (`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`,`uuid`) values ('22414','5','','10047','Zabbix server: Utilization of self-monitoring internal processes, in %','zabbix[process,self-monitoring,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time self-monitoring processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6fc9c055d4894c19b3b1075db106d995');
INSERT INTO `items` (`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`,`uuid`) values ('22416','5','','10047','Zabbix server: Utilization of ipmi poller data collector processes, in %','zabbix[process,ipmi poller,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time ipmi poller processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c11d415de9c64fd6911f82d49db140d3');
INSERT INTO `items` (`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`,`uuid`) values ('22418','5','','10047','Zabbix server: Utilization of icmp pinger data collector processes, in %','zabbix[process,icmp pinger,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time icmp pinger processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d5d469d5eb2e4e0ca0afc89b603d4065');
INSERT INTO `items` (`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`,`uuid`) values ('22420','5','','10047','Zabbix server: Utilization of proxy poller data collector processes, in %','zabbix[process,proxy poller,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time proxy poller processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','baf22e095078435d978a6c4374500db4');
INSERT INTO `items` (`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`,`uuid`) values ('22422','5','','10047','Zabbix server: Utilization of escalator internal processes, in %','zabbix[process,escalator,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time escalator processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d12ce718fad34644b92d98cf2096e7df');
INSERT INTO `items` (`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`,`uuid`) values ('22424','5','','10047','Zabbix server: Utilization of alerter internal processes, in %','zabbix[process,alerter,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time alerter processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cac7bb12993945fe848df86f7c4502ed');
INSERT INTO `items` (`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`,`uuid`) values ('22426','5','','10047','Zabbix server: Utilization of timer internal processes, in %','zabbix[process,timer,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time timer processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3af0ec03af6542e18aaff505e3806089');
INSERT INTO `items` (`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`,`uuid`) values ('22430','5','','10047','Zabbix server: Utilization of discoverer data collector processes, in %','zabbix[process,discoverer,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time discoverer processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','db7fee2552d5487fa608cf12f69aef41');
INSERT INTO `items` (`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`,`uuid`) values ('22689','5','','10047','Zabbix server: Utilization of java poller data collector processes, in %','zabbix[process,java poller,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time java poller processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a8168691df3d43f1a1e106062f18ee06');
INSERT INTO `items` (`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`,`uuid`) values ('22835','0','','10074','Maximum number of opened files','kernel.maxfiles','1h','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'It could be increased by using sysctl utility or modifying file /etc/sysctl.conf.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','56a83dc0e14e47339e13a451adcefef7');
INSERT INTO `items` (`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`,`uuid`) values ('22836','0','','10074','Maximum number of processes','kernel.maxproc','1h','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'It could be increased by using sysctl utility or modifying file /etc/sysctl.conf.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e55f8256dd2d48fd9e7fd786f872b4bc');
INSERT INTO `items` (`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`,`uuid`) values ('22837','0','','10074','Number of running processes','proc.num[,,run]','1m','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of processes in running state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7f8fdbc74cf14fa2afda3b57c548c751');
INSERT INTO `items` (`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`,`uuid`) values ('22838','0','','10074','Number of processes','proc.num[]','1m','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of processes in any state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','966acafb928b43f8a63ee673b1716d28');
INSERT INTO `items` (`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`,`uuid`) values ('22839','0','','10074','Host boot time','system.boottime','10m','1w','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4e06c5b504c04c169ea1a0d6a7951eeb');
INSERT INTO `items` (`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`,`uuid`) values ('22840','0','','10074','Interrupts per second','system.cpu.intr','1m','1w','365d','0','3','','ips','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f6ed0de8cbb545298b174b19938a527e');
INSERT INTO `items` (`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`,`uuid`) values ('22841','0','','10074','Processor load (15 min average per core)','system.cpu.load[percpu,avg15]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor load is calculated as system CPU load divided by number of CPU cores.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0403d3b318a649d4aa0da97e18546bcb');
INSERT INTO `items` (`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`,`uuid`) values ('22842','0','','10074','Processor load (1 min average per core)','system.cpu.load[percpu,avg1]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor load is calculated as system CPU load divided by number of CPU cores.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e4eab397cfd43d2a4aef7e2aa8c3a37');
INSERT INTO `items` (`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`,`uuid`) values ('22843','0','','10074','Processor load (5 min average per core)','system.cpu.load[percpu,avg5]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor load is calculated as system CPU load divided by number of CPU cores.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','55ad1da5b20c465f8db86701dcf3e974');
INSERT INTO `items` (`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`,`uuid`) values ('22844','0','','10074','Context switches per second','system.cpu.switches','1m','1w','365d','0','3','','sps','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2226fac821fe4928a9d727770e0af4d0');
INSERT INTO `items` (`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`,`uuid`) values ('22845','0','','10074','CPU idle time','system.cpu.util[,idle]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent doing nothing.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4689c51946c845e5b31cb7ca5b58fbe3');
INSERT INTO `items` (`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`,`uuid`) values ('22846','0','','10074','CPU interrupt time','system.cpu.util[,interrupt]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time the CPU has been servicing hardware interrupts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad032417f6de4e03a4f956bea65d8ce0');
INSERT INTO `items` (`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`,`uuid`) values ('22848','0','','10074','CPU nice time','system.cpu.util[,nice]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running users\' processes that have been niced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84030949a4d545b59db4aa3b38402174');
INSERT INTO `items` (`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`,`uuid`) values ('22851','0','','10074','CPU system time','system.cpu.util[,system]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running the kernel and its processes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','63121eb34bc94eeabd7352992b67befb');
INSERT INTO `items` (`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`,`uuid`) values ('22852','0','','10074','CPU user time','system.cpu.util[,user]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running users\' processes that are not niced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c9adb1a7c2fd4db9b176f9008483f2d7');
INSERT INTO `items` (`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`,`uuid`) values ('22853','0','','10074','Host name','system.hostname','1h','1w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System host name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a80cd7ca70954cd1b6b89a686f642b9d');
INSERT INTO `items` (`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`,`uuid`) values ('22854','0','','10074','Host local time','system.localtime','1m','1w','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cfff34f2374c410492b89cce1c6b5198');
INSERT INTO `items` (`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`,`uuid`) values ('22855','0','','10074','Free swap space','system.swap.size[,free]','1m','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e758448d5ec242e6a7a17f67c8f62874');
INSERT INTO `items` (`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`,`uuid`) values ('22856','0','','10074','Free swap space in %','system.swap.size[,pfree]','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','43648a7f2c79443781a0ad500e7a9e6c');
INSERT INTO `items` (`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`,`uuid`) values ('22857','0','','10074','Total swap space','system.swap.size[,total]','1h','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','61f33f0c3e35499b999626058048ec66');
INSERT INTO `items` (`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`,`uuid`) values ('22858','0','','10074','System information','system.uname','1h','1w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The information as normally returned by \'uname -a\'.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b19974c64b4141c2aca0e997b03c2f0a');
INSERT INTO `items` (`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`,`uuid`) values ('22859','0','','10074','System uptime','system.uptime','10m','1w','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d14bcdc15cc24f90baea06a13077a54f');
INSERT INTO `items` (`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`,`uuid`) values ('22860','0','','10074','Number of logged in users','system.users.num','1m','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of users who are currently logged in.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','165a44bf3b9d49378e500acb90aa7957');
INSERT INTO `items` (`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`,`uuid`) values ('22861','0','','10074','Checksum of /etc/passwd','vfs.file.cksum[/etc/passwd,sha256]','1h','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f11f6e3539a244409f1c72dbd6f16b76');
INSERT INTO `items` (`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`,`uuid`) values ('22862','0','','10074','Available memory','vm.memory.size[available]','1m','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Available memory is defined as free+cached+buffers memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5b6c92c92e434dff8ce19e28b3ba785e');
INSERT INTO `items` (`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`,`uuid`) values ('22863','0','','10074','Total memory','vm.memory.size[total]','1h','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b32320608732421fac18437006bc1874');
INSERT INTO `items` (`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`,`uuid`) values ('22867','0','','10074','Mounted filesystem discovery','vfs.fs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of file systems of different types as defined in global regular expression "File systems for discovery".','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','feb02c707aa64b91a3b340aa5ef23de9');
INSERT INTO `items` (`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`,`uuid`) values ('22868','0','','10074','Filesystems: Free disk space on {#FSNAME}','vfs.fs.size[{#FSNAME},free]','1m','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d53bf828e684464a88157fd3dfd1b8d4');
INSERT INTO `items` (`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`,`uuid`) values ('22869','0','','10074','Filesystems: Free inodes on {#FSNAME} (percentage)','vfs.fs.inode[{#FSNAME},pfree]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c29bc3c6bd844242b9165251dd3266bb');
INSERT INTO `items` (`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`,`uuid`) values ('22870','0','','10074','Filesystems: Total disk space on {#FSNAME}','vfs.fs.size[{#FSNAME},total]','1h','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c27bfca98fc4e709b5fe66e8c181fbd');
INSERT INTO `items` (`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`,`uuid`) values ('22871','0','','10074','Filesystems: Used disk space on {#FSNAME}','vfs.fs.size[{#FSNAME},used]','1m','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','840eed51cf264b5698fe4f38fd03ea16');
INSERT INTO `items` (`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`,`uuid`) values ('22872','0','','10074','Filesystems: Free disk space on {#FSNAME} (percentage)','vfs.fs.size[{#FSNAME},pfree]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bcae23e8404349af87c570c353bfe0fe');
INSERT INTO `items` (`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`,`uuid`) values ('22875','0','','10075','Maximum number of opened files','kernel.maxfiles','1h','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'It could be increased by using sysctl utility or modifying file /etc/sysctl.conf.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d1b2d3cc2b7e44af8f9bfee11e04bf21');
INSERT INTO `items` (`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`,`uuid`) values ('22876','0','','10075','Maximum number of processes','kernel.maxproc','1h','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'It could be increased by using sysctl utility or modifying file /etc/sysctl.conf.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','58244a8e72694ffcbba5a78a910ae818');
INSERT INTO `items` (`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`,`uuid`) values ('22877','0','','10075','Number of running processes','proc.num[,,run]','1m','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of processes in running state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','448c6de07b244281a4b1defe2e811773');
INSERT INTO `items` (`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`,`uuid`) values ('22878','0','','10075','Number of processes','proc.num[]','1m','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of processes in any state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5fd5b351d8214eac8f4f4649594c27eb');
INSERT INTO `items` (`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`,`uuid`) values ('22879','0','','10075','Host boot time','system.boottime','10m','1w','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4a533b30c43e42fb8c9eabada0817186');
INSERT INTO `items` (`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`,`uuid`) values ('22880','0','','10075','Interrupts per second','system.cpu.intr','1m','1w','365d','0','3','','ips','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','db555e8318cf4e7aa7beb85aa0250697');
INSERT INTO `items` (`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`,`uuid`) values ('22881','0','','10075','Processor load (15 min average per core)','system.cpu.load[percpu,avg15]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor load is calculated as system CPU load divided by number of CPU cores.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad9ebf859f7346ca885c1edcb7333d78');
INSERT INTO `items` (`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`,`uuid`) values ('22882','0','','10075','Processor load (1 min average per core)','system.cpu.load[percpu,avg1]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor load is calculated as system CPU load divided by number of CPU cores.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2336b2ec03a846f3bed1e64384b2532e');
INSERT INTO `items` (`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`,`uuid`) values ('22883','0','','10075','Processor load (5 min average per core)','system.cpu.load[percpu,avg5]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor load is calculated as system CPU load divided by number of CPU cores.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','de68f40fc96648c0925c1f6a4ca6776e');
INSERT INTO `items` (`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`,`uuid`) values ('22884','0','','10075','Context switches per second','system.cpu.switches','1m','1w','365d','0','3','','sps','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0a140185a5114dd29451bfac68abdde5');
INSERT INTO `items` (`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`,`uuid`) values ('22885','0','','10075','CPU idle time','system.cpu.util[,idle]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent doing nothing.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7612803821c845889bda84b7f1ac9ae5');
INSERT INTO `items` (`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`,`uuid`) values ('22886','0','','10075','CPU interrupt time','system.cpu.util[,interrupt]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time the CPU has been servicing hardware interrupts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f2acc3cd432546e5a223095a0ea2f096');
INSERT INTO `items` (`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`,`uuid`) values ('22888','0','','10075','CPU nice time','system.cpu.util[,nice]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running users\' processes that have been niced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','efa92492bec0437ba74f47d694500cab');
INSERT INTO `items` (`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`,`uuid`) values ('22891','0','','10075','CPU system time','system.cpu.util[,system]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running the kernel and its processes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c9479b02b04141128b1ce7c8f3726c09');
INSERT INTO `items` (`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`,`uuid`) values ('22892','0','','10075','CPU user time','system.cpu.util[,user]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running users\' processes that are not niced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1f3bc82009e04b59845a0e15004637ad');
INSERT INTO `items` (`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`,`uuid`) values ('22893','0','','10075','Host name','system.hostname','1h','1w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System host name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c17d001bd20a4732b8ef487366c6aa42');
INSERT INTO `items` (`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`,`uuid`) values ('22894','0','','10075','Host local time','system.localtime','1m','1w','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4095ed7d606a47439294097a98af2c4f');
INSERT INTO `items` (`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`,`uuid`) values ('22895','0','','10075','Free swap space','system.swap.size[,free]','1m','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','63fc1259011f4250901889979cdf472c');
INSERT INTO `items` (`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`,`uuid`) values ('22896','0','','10075','Free swap space in %','system.swap.size[,pfree]','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','187d11e610b94b468d18b88ca38f2c32');
INSERT INTO `items` (`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`,`uuid`) values ('22897','0','','10075','Total swap space','system.swap.size[,total]','1h','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9647b0b857074c4b9c14f15bb04af096');
INSERT INTO `items` (`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`,`uuid`) values ('22898','0','','10075','System information','system.uname','1h','1w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The information as normally returned by \'uname -a\'.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4523ae069e0b4e16bcb5182c6dbf63f2');
INSERT INTO `items` (`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`,`uuid`) values ('22899','0','','10075','System uptime','system.uptime','10m','1w','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a49b956d592c4e2ba41caac3671e009f');
INSERT INTO `items` (`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`,`uuid`) values ('22900','0','','10075','Number of logged in users','system.users.num','1m','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of users who are currently logged in.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fec3e877764e4bfd98e77da9d8c73606');
INSERT INTO `items` (`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`,`uuid`) values ('22901','0','','10075','Checksum of /etc/passwd','vfs.file.cksum[/etc/passwd,sha256]','1h','1w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2bb327cd5f8c49d9b680142825b9c030');
INSERT INTO `items` (`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`,`uuid`) values ('22902','0','','10075','Available memory','vm.memory.size[available]','1m','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Available memory is defined as free+cached+buffers memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','561c7a383b944bca9ec5f7c44e322fed');
INSERT INTO `items` (`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`,`uuid`) values ('22903','0','','10075','Total memory','vm.memory.size[total]','1h','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ffa54e82b7914672a3f7134134ac2638');
INSERT INTO `items` (`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`,`uuid`) values ('22907','0','','10075','Mounted filesystem discovery','vfs.fs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of file systems of different types as defined in global regular expression "File systems for discovery".','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4fd60a606c6343e9a7d7808d1d1f6008');
INSERT INTO `items` (`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`,`uuid`) values ('22908','0','','10075','Filesystems: Free disk space on {#FSNAME}','vfs.fs.size[{#FSNAME},free]','1m','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2ed6230d292a4037b67fe549c719e7ee');
INSERT INTO `items` (`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`,`uuid`) values ('22909','0','','10075','Filesystems: Free inodes on {#FSNAME} (percentage)','vfs.fs.inode[{#FSNAME},pfree]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a5cdfe771122483fa1a88b2ea5c26b36');
INSERT INTO `items` (`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`,`uuid`) values ('22910','0','','10075','Filesystems: Total disk space on {#FSNAME}','vfs.fs.size[{#FSNAME},total]','1h','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6daede58ae8f4e42a4aa2539a552ab08');
INSERT INTO `items` (`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`,`uuid`) values ('22911','0','','10075','Filesystems: Used disk space on {#FSNAME}','vfs.fs.size[{#FSNAME},used]','1m','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6efb08c26e1b439181a17d462ec1dab8');
INSERT INTO `items` (`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`,`uuid`) values ('22912','0','','10075','Filesystems: Free disk space on {#FSNAME} (percentage)','vfs.fs.size[{#FSNAME},pfree]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa0dd0eb957a4485b1a62f715381019a');
INSERT INTO `items` (`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`,`uuid`) values ('22917','0','','10076','Number of running processes','proc.num[,,run]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of processes in running state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c2d08ab5833493ba45ebfe5154f04c1');
INSERT INTO `items` (`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`,`uuid`) values ('22918','0','','10076','Number of processes','proc.num[]','1m','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of processes in any state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7c64480f840a4778bde5278e1c0a083f');
INSERT INTO `items` (`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`,`uuid`) values ('22920','0','','10076','Interrupts per second','system.cpu.intr','1m','1w','365d','0','3','','ips','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4a15778222a24f129b8ae7c240a32ded');
INSERT INTO `items` (`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`,`uuid`) values ('22921','0','','10076','Processor load (15 min average per core)','system.cpu.load[percpu,avg15]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor load is calculated as system CPU load divided by number of CPU cores.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','02210ac2faaa4f7bb74e995726706abc');
INSERT INTO `items` (`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`,`uuid`) values ('22922','0','','10076','Processor load (1 min average per core)','system.cpu.load[percpu,avg1]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor load is calculated as system CPU load divided by number of CPU cores.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4f8665f48aff4fa39e85639fed7b71c5');
INSERT INTO `items` (`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`,`uuid`) values ('22923','0','','10076','Processor load (5 min average per core)','system.cpu.load[percpu,avg5]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor load is calculated as system CPU load divided by number of CPU cores.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6fa2275f1f83456abfe786c8565c7a2d');
INSERT INTO `items` (`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`,`uuid`) values ('22924','0','','10076','Context switches per second','system.cpu.switches','1m','1w','365d','0','3','','sps','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1ad486947da9428abdebcecb83ca3d8b');
INSERT INTO `items` (`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`,`uuid`) values ('22933','0','','10076','Host name','system.hostname','1h','1w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System host name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f4d10d49fa3c4dababf03d2cb80f044c');
INSERT INTO `items` (`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`,`uuid`) values ('22934','0','','10076','Host local time','system.localtime','1m','1w','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aebc5bb0264a4f55985c96445964dfc4');
INSERT INTO `items` (`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`,`uuid`) values ('22938','0','','10076','System information','system.uname','1h','1w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The information as normally returned by \'uname -a\'.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d0ef675d313849269890d06c7e003c9e');
INSERT INTO `items` (`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`,`uuid`) values ('22939','0','','10076','System uptime','system.uptime','10m','1w','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2e0ff86c992c4a098af8cb1bee0f0001');
INSERT INTO `items` (`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`,`uuid`) values ('22940','0','','10076','Number of logged in users','system.users.num','1m','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of users who are currently logged in.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','980a59760ef9481298ed35322841f939');
INSERT INTO `items` (`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`,`uuid`) values ('22941','0','','10076','Checksum of /etc/passwd','vfs.file.cksum[/etc/passwd,sha256]','1h','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4771d6d33c2247d6843198152a7065a8');
INSERT INTO `items` (`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`,`uuid`) values ('22942','0','','10076','Available memory','vm.memory.size[available]','1m','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Available memory is defined as free+cached+buffers memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d4d9deab17b42f4a953c5210acac6f1');
INSERT INTO `items` (`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`,`uuid`) values ('22943','0','','10076','Total memory','vm.memory.size[total]','1h','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','57d30ccd5db64dc8b9498a36efe768e9');
INSERT INTO `items` (`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`,`uuid`) values ('22944','0','','10076','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery".','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','409cce8967b4494bbcc5193a26c69b06');
INSERT INTO `items` (`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`,`uuid`) values ('22945','0','','10076','Interface {#IFNAME}: Incoming network traffic','net.if.in[{#IFNAME}]','1m','1w','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','df9710a48eaa4a72911de3971b37c596');
INSERT INTO `items` (`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`,`uuid`) values ('22946','0','','10076','Interface {#IFNAME}: Outgoing network traffic','net.if.out[{#IFNAME}]','1m','1w','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0704fb302aa94f73bedade3a998a0fa3');
INSERT INTO `items` (`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`,`uuid`) values ('22947','0','','10076','Mounted filesystem discovery','vfs.fs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of file systems of different types as defined in global regular expression "File systems for discovery".','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4a0b17decdf1449d9463cf00720a843d');
INSERT INTO `items` (`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`,`uuid`) values ('22948','0','','10076','{#FSNAME}: Free disk space','vfs.fs.size[{#FSNAME},free]','1m','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','13e212598f744a7fa535c23731190c61');
INSERT INTO `items` (`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`,`uuid`) values ('22949','0','','10076','{#FSNAME}: Free inodes, %','vfs.fs.inode[{#FSNAME},pfree]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ee5ae5de6f7b40b4a9b064bdc733de91');
INSERT INTO `items` (`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`,`uuid`) values ('22950','0','','10076','{#FSNAME}: Total disk space','vfs.fs.size[{#FSNAME},total]','1h','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6f6c92bc72014612b2efb92d12d8c425');
INSERT INTO `items` (`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`,`uuid`) values ('22951','0','','10076','{#FSNAME}: Used disk space','vfs.fs.size[{#FSNAME},used]','1m','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','915e72271f134684b2d10d05d4035962');
INSERT INTO `items` (`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`,`uuid`) values ('22952','0','','10076','{#FSNAME}: Free disk space, %','vfs.fs.size[{#FSNAME},pfree]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','428b0314dd574df1970dd2cae7e8889b');
INSERT INTO `items` (`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`,`uuid`) values ('22961','0','','10077','Processor load (15 min average per core)','system.cpu.load[percpu,avg15]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor load is calculated as system CPU load divided by number of CPU cores.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','296dbd5148184004b26ac50ae5e6893b');
INSERT INTO `items` (`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`,`uuid`) values ('22962','0','','10077','Processor load (1 min average per core)','system.cpu.load[percpu,avg1]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor load is calculated as system CPU load divided by number of CPU cores.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bcba4702a58d48339c6e7e49dea574c4');
INSERT INTO `items` (`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`,`uuid`) values ('22963','0','','10077','Processor load (5 min average per core)','system.cpu.load[percpu,avg5]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor load is calculated as system CPU load divided by number of CPU cores.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','60057d54b81342f4aaa0103a278bf7b6');
INSERT INTO `items` (`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`,`uuid`) values ('22965','0','','10077','CPU idle time','system.cpu.util[,idle]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent doing nothing.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2b82ccaf9eb1424593e2738a5512e182');
INSERT INTO `items` (`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`,`uuid`) values ('22968','0','','10077','CPU nice time','system.cpu.util[,nice]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running users\' processes that have been niced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8665bd2dc84e46daa081a379548b0603');
INSERT INTO `items` (`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`,`uuid`) values ('22971','0','','10077','CPU system time','system.cpu.util[,system]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running the kernel and its processes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8419321f4744476ea27b7d1acddcd365');
INSERT INTO `items` (`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`,`uuid`) values ('22972','0','','10077','CPU user time','system.cpu.util[,user]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running users\' processes that are not niced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','611c9a3c70aa4455b6ec7bebe64b5316');
INSERT INTO `items` (`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`,`uuid`) values ('22973','0','','10077','Host name','system.hostname','1h','1w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System host name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6e3b32f3f92543759ef2f30834899ba0');
INSERT INTO `items` (`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`,`uuid`) values ('22974','0','','10077','Host local time','system.localtime','1m','1w','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16c6c420c710498083355361b104f7a2');
INSERT INTO `items` (`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`,`uuid`) values ('22978','0','','10077','System information','system.uname','1h','1w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The information as normally returned by \'uname -a\'.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b66598337e0e4990a2776d2a42020e72');
INSERT INTO `items` (`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`,`uuid`) values ('22980','0','','10077','Number of logged in users','system.users.num','1m','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of users who are currently logged in.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bb698e97aa1b45ebadcb48da729b8e64');
INSERT INTO `items` (`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`,`uuid`) values ('22981','0','','10077','Checksum of /etc/passwd','vfs.file.cksum[/etc/passwd,sha256]','1h','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4e11e7c5d43a4566989b39dbc0c23266');
INSERT INTO `items` (`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`,`uuid`) values ('22982','0','','10077','Available memory','vm.memory.size[available]','1m','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Available memory is defined as free+cached+buffers memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','767abadfa8be4bccb2c4c5a1d532ba87');
INSERT INTO `items` (`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`,`uuid`) values ('22983','0','','10077','Total memory','vm.memory.size[total]','1h','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6da082e7f822465592f66e2bd0a46947');
INSERT INTO `items` (`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`,`uuid`) values ('22984','0','','10077','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery".','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','83058e954f1d497d8c33c82c771d2250');
INSERT INTO `items` (`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`,`uuid`) values ('22985','0','','10077','Interface {#IFNAME}: Incoming network traffic','net.if.in[{#IFNAME}]','1m','1w','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1c1dc757da2a43c4827734e4b7b3fcd2');
INSERT INTO `items` (`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`,`uuid`) values ('22986','0','','10077','Interface {#IFNAME}: Outgoing network traffic','net.if.out[{#IFNAME}]','1m','1w','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4de64b1ecae344afa12f892937caa04e');
INSERT INTO `items` (`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`,`uuid`) values ('22987','0','','10077','Mounted filesystem discovery','vfs.fs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of file systems of different types as defined in global regular expression "File systems for discovery".','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','883b3a5efab34685b9e6c9a84a6bec84');
INSERT INTO `items` (`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`,`uuid`) values ('22988','0','','10077','{#FSNAME}: Free disk space','vfs.fs.size[{#FSNAME},free]','1m','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','75efb4ab311848ec9bbb03cf05efef8b');
INSERT INTO `items` (`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`,`uuid`) values ('22989','0','','10077','{#FSNAME}: Free inodes, %','vfs.fs.inode[{#FSNAME},pfree]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dbf8305aadb049a58b19a50d4e36fde9');
INSERT INTO `items` (`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`,`uuid`) values ('22990','0','','10077','{#FSNAME}: Total disk space','vfs.fs.size[{#FSNAME},total]','1h','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3d75a99c05bf41a2b63ce2b0caf4a6cc');
INSERT INTO `items` (`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`,`uuid`) values ('22991','0','','10077','{#FSNAME}: Used disk space','vfs.fs.size[{#FSNAME},used]','1m','1w','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0aa8dd5bbaea4f35808ef735f0cec18d');
INSERT INTO `items` (`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`,`uuid`) values ('22992','0','','10077','{#FSNAME}: Free disk space, %','vfs.fs.size[{#FSNAME},pfree]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','707d7dfb2dc243d49e4623f1d043a5b7');
INSERT INTO `items` (`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`,`uuid`) values ('22996','0','','10078','Maximum number of processes','kernel.maxproc','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'It could be increased by using sysctl utility or modifying file /etc/sysctl.conf.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2fa6d58a5c7d48da90b1caf521e867cd');
INSERT INTO `items` (`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`,`uuid`) values ('22997','0','','10078','Number of running processes','proc.num[,,run]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of processes in running state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7c8c8421fb514e67bc9f14cefe4018f3');
INSERT INTO `items` (`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`,`uuid`) values ('22998','0','','10078','Number of processes','proc.num[]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of processes in any state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','74c805e8bfd947348b206a0d33bfc461');
INSERT INTO `items` (`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`,`uuid`) values ('22999','0','','10078','Host boot time','system.boottime','10m','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1812e26de9ad4a36abb5498154e6ea3c');
INSERT INTO `items` (`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`,`uuid`) values ('23000','0','','10078','Interrupts per second','system.cpu.intr','1m','7d','365d','0','3','','ips','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8186ed95ed8c4d6eb52ea2e718984170');
INSERT INTO `items` (`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`,`uuid`) values ('23001','0','','10078','Processor load (15 min average per core)','system.cpu.load[percpu,avg15]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor load is calculated as system CPU load divided by number of CPU cores.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c13c2ff556594c5d985420dc974659cf');
INSERT INTO `items` (`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`,`uuid`) values ('23002','0','','10078','Processor load (1 min average per core)','system.cpu.load[percpu,avg1]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor load is calculated as system CPU load divided by number of CPU cores.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1a7cc53a5497427da28f882b1b185fad');
INSERT INTO `items` (`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`,`uuid`) values ('23003','0','','10078','Processor load (5 min average per core)','system.cpu.load[percpu,avg5]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor load is calculated as system CPU load divided by number of CPU cores.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5b053b6c00464f8b8f5fc49fffda1394');
INSERT INTO `items` (`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`,`uuid`) values ('23004','0','','10078','Context switches per second','system.cpu.switches','1m','7d','365d','0','3','','sps','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','320f8803624f4ad2b9e66f1a08f5a145');
INSERT INTO `items` (`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`,`uuid`) values ('23005','0','','10078','CPU idle time','system.cpu.util[,idle]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent doing nothing.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a653205d5ce4462089da4ed4d6f97f3a');
INSERT INTO `items` (`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`,`uuid`) values ('23007','0','','10078','CPU iowait time','system.cpu.util[,iowait]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of time the CPU has been waiting for I/O to complete.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9bee92be803c48489509e41c19718abc');
INSERT INTO `items` (`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`,`uuid`) values ('23011','0','','10078','CPU system time','system.cpu.util[,system]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running the kernel and its processes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bb32808bf73f489399ecb3e02bc18194');
INSERT INTO `items` (`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`,`uuid`) values ('23012','0','','10078','CPU user time','system.cpu.util[,user]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running users\' processes that are not niced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d30ad6a457df4e39819b76fc1be7a562');
INSERT INTO `items` (`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`,`uuid`) values ('23013','0','','10078','Host name','system.hostname','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System host name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1945e624e1864f2ba543f9438b1733f1');
INSERT INTO `items` (`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`,`uuid`) values ('23014','0','','10078','Host local time','system.localtime','1m','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0a0a8ab7047b400aaffe99917349291e');
INSERT INTO `items` (`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`,`uuid`) values ('23015','0','','10078','Free swap space','system.swap.size[,free]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','71597a2dfdeb4c63acf7505ffb7f4f08');
INSERT INTO `items` (`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`,`uuid`) values ('23016','0','','10078','Free swap space in %','system.swap.size[,pfree]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b2ee2b52a64841e282915d6de3c7f739');
INSERT INTO `items` (`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`,`uuid`) values ('23017','0','','10078','Total swap space','system.swap.size[,total]','1h','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0e7ea1fd204c44f3b0a7880eac21a0df');
INSERT INTO `items` (`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`,`uuid`) values ('23018','0','','10078','System information','system.uname','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The information as normally returned by \'uname -a\'.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','034f7934cdb54cc6b99194fac9197bfb');
INSERT INTO `items` (`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`,`uuid`) values ('23019','0','','10078','System uptime','system.uptime','10m','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c15a8b1b6cbd446bad669ead64a172a1');
INSERT INTO `items` (`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`,`uuid`) values ('23020','0','','10078','Number of logged in users','system.users.num','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of users who are currently logged in.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a2c0d69124424e49aa4fc1f2416ffc37');
INSERT INTO `items` (`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`,`uuid`) values ('23021','0','','10078','Checksum of /etc/passwd','vfs.file.cksum[/etc/passwd,sha256]','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5dd55b892d1b4828bfc570d6bf48251d');
INSERT INTO `items` (`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`,`uuid`) values ('23022','0','','10078','Available memory','vm.memory.size[available]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Available memory is defined as free+cached+buffers memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6888f0dd6b2e418f8c28a0ee59648fa3');
INSERT INTO `items` (`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`,`uuid`) values ('23023','0','','10078','Total memory','vm.memory.size[total]','1h','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d96d5ebfa074428e957335b5fa58189b');
INSERT INTO `items` (`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`,`uuid`) values ('23024','0','','10078','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery".','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6a47f796859241c1aa30f0d731cacf52');
INSERT INTO `items` (`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`,`uuid`) values ('23025','0','','10078','Interface {#IFNAME}: Incoming network traffic','net.if.in[{#IFNAME}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','548f317737ee4facbed4a371f3476352');
INSERT INTO `items` (`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`,`uuid`) values ('23026','0','','10078','Interface {#IFNAME}: Outgoing network traffic','net.if.out[{#IFNAME}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','02dbf0af85294ab0bbf042fca79448cc');
INSERT INTO `items` (`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`,`uuid`) values ('23027','0','','10078','Mounted filesystem discovery','vfs.fs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of file systems of different types as defined in global regular expression "File systems for discovery".','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3abf31160b404cf095daca79f2a03188');
INSERT INTO `items` (`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`,`uuid`) values ('23028','0','','10078','{#FSNAME}: Free disk space','vfs.fs.size[{#FSNAME},free]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e4c935091c6c49f185ef0e93963388ff');
INSERT INTO `items` (`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`,`uuid`) values ('23029','0','','10078','{#FSNAME}: Free inodes (percentage)','vfs.fs.inode[{#FSNAME},pfree]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa40b3df2229405193c373b00064e420');
INSERT INTO `items` (`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`,`uuid`) values ('23030','0','','10078','{#FSNAME}: Total disk space','vfs.fs.size[{#FSNAME},total]','1h','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e15cfb60494944db8e9b2fe929d91fef');
INSERT INTO `items` (`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`,`uuid`) values ('23031','0','','10078','{#FSNAME}: Used disk space','vfs.fs.size[{#FSNAME},used]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0da8a65250ec4027b3093772f5c26532');
INSERT INTO `items` (`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`,`uuid`) values ('23032','0','','10078','{#FSNAME}: Free disk space (percentage)','vfs.fs.size[{#FSNAME},pfree]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e2805fb218d64ddd8ea58beae73e1343');
INSERT INTO `items` (`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`,`uuid`) values ('23035','0','','10079','Maximum number of opened files','kernel.maxfiles','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'It could be increased by using sysctl utility or modifying file /etc/sysctl.conf.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d25aa1f2eae445ceb18b7e4ee5383585');
INSERT INTO `items` (`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`,`uuid`) values ('23036','0','','10079','Maximum number of processes','kernel.maxproc','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'It could be increased by using sysctl utility or modifying file /etc/sysctl.conf.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c376cae54854613a1533eb804bcee56');
INSERT INTO `items` (`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`,`uuid`) values ('23039','0','','10079','Host boot time','system.boottime','10m','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','928f973c004447d099a79e09a8b98cee');
INSERT INTO `items` (`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`,`uuid`) values ('23041','0','','10079','Processor load (15 min average per core)','system.cpu.load[percpu,avg15]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor load is calculated as system CPU load divided by number of CPU cores.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1ddc219f824541ca9c9ef30afda56df2');
INSERT INTO `items` (`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`,`uuid`) values ('23042','0','','10079','Processor load (1 min average per core)','system.cpu.load[percpu,avg1]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor load is calculated as system CPU load divided by number of CPU cores.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5abd63bb64114794ae6d253dcc12afb4');
INSERT INTO `items` (`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`,`uuid`) values ('23043','0','','10079','Processor load (5 min average per core)','system.cpu.load[percpu,avg5]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor load is calculated as system CPU load divided by number of CPU cores.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e569411a7b4415098d21aaa44068dee');
INSERT INTO `items` (`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`,`uuid`) values ('23053','0','','10079','Host name','system.hostname','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System host name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9c0230c0bb944523bd781c37304bb87b');
INSERT INTO `items` (`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`,`uuid`) values ('23054','0','','10079','Host local time','system.localtime','1m','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a7ce2c61d3a4696ac76e0406308e61b');
INSERT INTO `items` (`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`,`uuid`) values ('23058','0','','10079','System information','system.uname','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The information as normally returned by \'uname -a\'.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c73ff0f28d24d92955c667e5245cfa0');
INSERT INTO `items` (`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`,`uuid`) values ('23059','0','','10079','System uptime','system.uptime','10m','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','34c001a77a904224aa90338590375870');
INSERT INTO `items` (`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`,`uuid`) values ('23060','0','','10079','Number of logged in users','system.users.num','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of users who are currently logged in.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','31ea6bafabbe440ea1b8d1b6cea74444');
INSERT INTO `items` (`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`,`uuid`) values ('23061','0','','10079','Checksum of /etc/passwd','vfs.file.cksum[/etc/passwd,sha256]','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6df0d9e8694d45dfa11e433d8de7be41');
INSERT INTO `items` (`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`,`uuid`) values ('23062','0','','10079','Available memory','vm.memory.size[available]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Available memory is defined as free+cached+buffers memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','daf35c33bb84443f893bb06bfe10f870');
INSERT INTO `items` (`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`,`uuid`) values ('23063','0','','10079','Total memory','vm.memory.size[total]','1h','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','83c0218324a548c4a01054801a4d8b0b');
INSERT INTO `items` (`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`,`uuid`) values ('23067','0','','10079','Mounted filesystem discovery','vfs.fs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of file systems of different types as defined in global regular expression "File systems for discovery".','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c537fbe006d7434dab08add1dcf87537');
INSERT INTO `items` (`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`,`uuid`) values ('23068','0','','10079','{#FSNAME}: Free disk space','vfs.fs.size[{#FSNAME},free]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','29340ac4c5d3419cb4508641e85d787d');
INSERT INTO `items` (`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`,`uuid`) values ('23069','0','','10079','{#FSNAME}: Free inodes (percentage)','vfs.fs.inode[{#FSNAME},pfree]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b7560dc2b6f743458128961cc962bcd3');
INSERT INTO `items` (`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`,`uuid`) values ('23070','0','','10079','{#FSNAME}: Total disk space','vfs.fs.size[{#FSNAME},total]','1h','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c311ced2b4204b368af1c8a8c27f9c99');
INSERT INTO `items` (`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`,`uuid`) values ('23071','0','','10079','{#FSNAME}: Used disk space','vfs.fs.size[{#FSNAME},used]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','748612098b4e4befa0f39f11b99eced4');
INSERT INTO `items` (`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`,`uuid`) values ('23072','0','','10079','{#FSNAME}: Free disk space (percentage)','vfs.fs.size[{#FSNAME},pfree]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d9aa50bddb642499ad575a0cc71146b');
INSERT INTO `items` (`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`,`uuid`) values ('23073','0','','10075','Network interfaces: Incoming network traffic on {#IFNAME}','net.if.in[{#IFNAME}]','1m','1w','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b1f9e472c6ed467d8cb0cc1739c39b59');
INSERT INTO `items` (`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`,`uuid`) values ('23074','0','','10075','Network interfaces: Outgoing network traffic on {#IFNAME}','net.if.out[{#IFNAME}]','1m','1w','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac93068d05084aa0a32a1bee78df3bd8');
INSERT INTO `items` (`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`,`uuid`) values ('23075','0','','10074','Network interfaces: Incoming network traffic on {#IFNAME}','net.if.in[{#IFNAME}]','1m','1w','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','81dec4b8de8c4ab68aef26d9f00aee87');
INSERT INTO `items` (`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`,`uuid`) values ('23076','0','','10074','Network interfaces: Outgoing network traffic on {#IFNAME}','net.if.out[{#IFNAME}]','1m','1w','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16bced1c77eb46799ecedcde5049dbdb');
INSERT INTO `items` (`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`,`uuid`) values ('23077','0','','10079','Incoming network traffic on en0','net.if.in[en0]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','951d874e6b644f9787c7a0d267bafcf8');
INSERT INTO `items` (`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`,`uuid`) values ('23078','0','','10079','Outgoing network traffic on en0','net.if.out[en0]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac875bd25d484d38b16cb02c30be6b67');
INSERT INTO `items` (`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`,`uuid`) values ('23108','0','','10076','CPU available physical processors in the shared pool','system.stat[cpu,app]','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','081f8986446d43e7a3b72f7084576600');
INSERT INTO `items` (`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`,`uuid`) values ('23109','0','','10076','CPU entitled capacity consumed','system.stat[cpu,ec]','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','6a97d56a6c2e45e1b10b97e2395ff30d');
INSERT INTO `items` (`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`,`uuid`) values ('23110','0','','10076','CPU idle time','system.stat[cpu,id]','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','142f33d7b2c3469c9664fedf4f053616');
INSERT INTO `items` (`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`,`uuid`) values ('23111','0','','10076','CPU logical processor utilization','system.stat[cpu,lbusy]','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','752c952fb18e4a0e8e5e3415b107b9f1');
INSERT INTO `items` (`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`,`uuid`) values ('23112','0','','10076','CPU number of physical processors consumed','system.stat[cpu,pc]','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','748f1316a33b48658b11dca8f45cfcce');
INSERT INTO `items` (`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`,`uuid`) values ('23113','0','','10076','CPU system time','system.stat[cpu,sy]','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','2647132edb6647ca9ef43a00ca09ecbd');
INSERT INTO `items` (`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`,`uuid`) values ('23114','0','','10076','CPU user time','system.stat[cpu,us]','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','e990898ddbb74c7b9a8c1c67cb9544cf');
INSERT INTO `items` (`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`,`uuid`) values ('23115','0','','10076','CPU iowait time','system.stat[cpu,wa]','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','2cd7a00570ad487d9cdf39fd198b2c0b');
INSERT INTO `items` (`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`,`uuid`) values ('23116','0','','10076','Amount of data transferred','system.stat[disk,bps]','1m','1w','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6748e4c87589472ca1474f3c7b729e0c');
INSERT INTO `items` (`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`,`uuid`) values ('23117','0','','10076','Number of transfers','system.stat[disk,tps]','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','bf0180d8f109451db616749990a113a6');
INSERT INTO `items` (`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`,`uuid`) values ('23118','0','','10076','Processor units is entitled to receive','system.stat[ent]','1h','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3e1af0261f6a421d8ca554f8eb222716');
INSERT INTO `items` (`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`,`uuid`) values ('23119','0','','10076','Kernel thread context switches','system.stat[faults,cs]','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','0fe71698a3c74c93a8cb3a937dc7226c');
INSERT INTO `items` (`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`,`uuid`) values ('23120','0','','10076','Device interrupts','system.stat[faults,in]','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','a1e13d2dbd8b4086974ea32a2cd743b1');
INSERT INTO `items` (`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`,`uuid`) values ('23121','0','','10076','System calls','system.stat[faults,sy]','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','883c7a12b1d54f4d8189ca0d9cc43102');
INSERT INTO `items` (`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`,`uuid`) values ('23122','0','','10076','Length of the swap queue','system.stat[kthr,b]','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','f027ed1c43464d4ab9a13d4b9f647e7e');
INSERT INTO `items` (`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`,`uuid`) values ('23123','0','','10076','Length of the run queue','system.stat[kthr,r]','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','6795c2b6914d4303bf30c71c7405ff7d');
INSERT INTO `items` (`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`,`uuid`) values ('23124','0','','10076','Active virtual pages','system.stat[memory,avm]','1m','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','12142f133863448c9c937c671e183bbb');
INSERT INTO `items` (`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`,`uuid`) values ('23125','0','','10076','Free real memory','system.stat[memory,fre]','1m','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3b4a5ff768654ff5a87b955684a0d7b5');
INSERT INTO `items` (`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`,`uuid`) values ('23126','0','','10076','File page-ins per second','system.stat[page,fi]','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','bf890bf5cd1748a5af9528a111ba43c4');
INSERT INTO `items` (`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`,`uuid`) values ('23127','0','','10076','File page-outs per second','system.stat[page,fo]','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','19c4f7132b6c46aa9522bd46da3e8f03');
INSERT INTO `items` (`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`,`uuid`) values ('23128','0','','10076','Pages freed (page replacement)','system.stat[page,fr]','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','9ff3f7faa76c414aae7c5babb91fe065');
INSERT INTO `items` (`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`,`uuid`) values ('23129','0','','10076','Pages paged in from paging space','system.stat[page,pi]','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','6009d8a0fc2f486db979b226eb975e78');
INSERT INTO `items` (`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`,`uuid`) values ('23130','0','','10076','Pages paged out to paging space','system.stat[page,po]','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','26fb1471e08c4c46800e4887d8bccd80');
INSERT INTO `items` (`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`,`uuid`) values ('23131','0','','10076','Pages scanned by page-replacement algorithm','system.stat[page,sr]','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','83b1456726d448d6a756e03c0ec02342');
INSERT INTO `items` (`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`,`uuid`) values ('23171','5','','10047','Zabbix server: Utilization of snmp trapper data collector processes, in %','zabbix[process,snmp trapper,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time snmp trapper processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cb9a7c4f3373496da97f3e0b8c978366');
INSERT INTO `items` (`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`,`uuid`) values ('23251','5','','10047','Zabbix server: Queue','zabbix[queue]','1m','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of monitored items in the queue which are delayed at least by 6 seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aaf58555c0774e848f51a351b6ae8462');
INSERT INTO `items` (`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`,`uuid`) values ('23318','0','','10050','Host name of Zabbix agent running','agent.hostname','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f46c6142cf434df1b6abe9334bf6c84c');
INSERT INTO `items` (`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`,`uuid`) values ('23329','0','','10074','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery".','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d02d41ad698942bfab1fe29fad31010a');
INSERT INTO `items` (`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`,`uuid`) values ('23340','5','','10048','Zabbix proxy: Number of processed values per second','zabbix[wcache,values]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nTotal number of values processed by Zabbix server or Zabbix proxy, except unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5229b786efc84f01bb31f2819c47d9f4');
INSERT INTO `items` (`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`,`uuid`) values ('23341','5','','10048','Zabbix proxy: History index cache, % used','zabbix[wcache,index,pused]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache. Percentage of used history index buffer.\r\nHistory index cache is used to index values stored in history cache.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8c4c7802497d4de4988278edc29f8eb1');
INSERT INTO `items` (`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`,`uuid`) values ('23342','5','','10048','Zabbix proxy: History write cache, % used','zabbix[wcache,history,pused]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache. Percentage of used history buffer.\r\nHistory cache is used to store item values. A high number indicates performance problems on the database side.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aec73d2a7e444702b352c75998bf636e');
INSERT INTO `items` (`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`,`uuid`) values ('23343','5','','10048','Zabbix proxy: Utilization of self-monitoring internal processes, in %','zabbix[process,self-monitoring,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time self-monitoring processes have been busy in the last minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1fd488bbb4af450cb2b5e8c81b739f29');
INSERT INTO `items` (`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`,`uuid`) values ('23344','5','','10048','Zabbix proxy: Utilization of snmp trapper data collector processes, in %','zabbix[process,snmp trapper,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time snmp trapper processes have been busy in the last minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','77ab21500d734deea86938a1a90035e0');
INSERT INTO `items` (`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`,`uuid`) values ('23345','5','','10048','Zabbix proxy: Utilization of trapper data collector processes, in %','zabbix[process,trapper,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time trapper processes have been busy in the last minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8d99635291d14ae8a5ba7d794540bde2');
INSERT INTO `items` (`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`,`uuid`) values ('23346','5','','10048','Zabbix proxy: Utilization of unreachable poller data collector processes, in %','zabbix[process,unreachable poller,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time unreachable poller processes have been busy in the last minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7b0f5b75d4854b84a7e1f51975732e25');
INSERT INTO `items` (`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`,`uuid`) values ('23347','5','','10048','Zabbix proxy: Utilization of configuration syncer internal processes, in %','zabbix[process,configuration syncer,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time configuration syncer processes have been busy in the last minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3d1bfa64a447427da0b463c3617b212e');
INSERT INTO `items` (`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`,`uuid`) values ('23348','5','','10048','Zabbix proxy: Utilization of poller data collector processes, in %','zabbix[process,poller,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time poller processes have been busy in the last minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','334398ad893e4146bc1b9370eef9df59');
INSERT INTO `items` (`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`,`uuid`) values ('23349','5','','10048','Zabbix proxy: Utilization of java poller data collector processes, in %','zabbix[process,java poller,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time java poller processes have been busy in the last minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','02214c0c38394bef8d648369584ae30b');
INSERT INTO `items` (`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`,`uuid`) values ('23350','5','','10048','Zabbix proxy: Utilization of history syncer internal processes, in %','zabbix[process,history syncer,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time history syncer processes have been busy in the last minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7dde8cd03e5043a2bd484f7213a5f112');
INSERT INTO `items` (`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`,`uuid`) values ('23351','5','','10048','Zabbix proxy: Utilization of heartbeat sender internal processes, in %','zabbix[process,heartbeat sender,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time heartbeat sender processes have been busy in the last minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a1a7b0f3c34248a0993c305cd76fea5a');
INSERT INTO `items` (`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`,`uuid`) values ('23352','5','','10048','Zabbix proxy: Utilization of discoverer data collector processes, in %','zabbix[process,discoverer,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time discoverer processes have been busy in the last minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1d00c5ef345f4827a921ff3e3617d316');
INSERT INTO `items` (`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`,`uuid`) values ('23353','5','','10048','Zabbix proxy: Utilization of housekeeper internal processes, in %','zabbix[process,housekeeper,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time housekeeper processes have been busy in the last minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','31f0355f4d7c4de6b0d6f206d1ca9fa3');
INSERT INTO `items` (`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`,`uuid`) values ('23354','5','','10048','Zabbix proxy: Utilization of http poller data collector processes, in %','zabbix[process,http poller,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time http poller processes have been busy in the last minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','782b11dbe3ce47e3b9098c43d83057ad');
INSERT INTO `items` (`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`,`uuid`) values ('23355','5','','10048','Zabbix proxy: Utilization of ipmi poller data collector processes, in %','zabbix[process,ipmi poller,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time ipmi poller processes have been busy in the last minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7cfb2f1504dd4b0aaac804b132d49bc5');
INSERT INTO `items` (`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`,`uuid`) values ('23356','5','','10048','Zabbix proxy: Utilization of icmp pinger data collector processes, in %','zabbix[process,icmp pinger,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time icmp pinger processes have been busy in the last minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9b899ab317b447d1a82d1136e0a2ff6f');
INSERT INTO `items` (`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`,`uuid`) values ('23357','5','','10048','Zabbix proxy: Configuration cache, % used','zabbix[rcache,buffer,pused]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Availability statistics of Zabbix configuration cache. Percentage of used buffer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','606d1d43812341db8260a233295a4a4e');
INSERT INTO `items` (`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`,`uuid`) values ('23358','5','','10048','Zabbix proxy: Queue','zabbix[queue]','1m','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of monitored items in the queue which are delayed at least by 6 seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cfbb623cca754fd49d4f606ab52f658d');
INSERT INTO `items` (`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`,`uuid`) values ('23359','5','','10048','Zabbix proxy: Queue over 10 minutes','zabbix[queue,10m]','1m','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of monitored items in the queue which are delayed at least by 10 minutes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2fa1c8d8fcb94d4c83cf4e291420a690');
INSERT INTO `items` (`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`,`uuid`) values ('23360','5','','10048','Zabbix proxy: Utilization of data sender internal processes, in %','zabbix[process,data sender,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time data sender processes have been busy in the last minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','69eefd6aba164d71b0a2b8d2df06e9a3');
INSERT INTO `items` (`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`,`uuid`) values ('23540','0','','10075','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery".','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cac3466488a544198f766d1152878456');
INSERT INTO `items` (`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`,`uuid`) values ('23634','5','','10047','Zabbix server: VMware cache, % used','zabbix[vmware,buffer,pused]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Availability statistics of Zabbix vmware cache. Percentage of used buffer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d273413004094604ad247c0ff9695879');
INSERT INTO `items` (`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`,`uuid`) values ('23644','3','','10093','FTP service is running','net.tcp.service[ftp]','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','057eaf069912400994e28af132ad5db8');
INSERT INTO `items` (`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`,`uuid`) values ('23646','3','','10095','HTTPS service is running','net.tcp.service[https]','1m','1w','365d','0','3','','','','',NULL,'3','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7164297bdfa54a5b897fc908bdcfb86c');
INSERT INTO `items` (`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`,`uuid`) values ('23647','3','','10096','IMAP service is running','net.tcp.service[imap]','1m','1w','365d','0','3','','','','',NULL,'4','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','823451f4ebb6437c88c2915ba6d6faad');
INSERT INTO `items` (`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`,`uuid`) values ('23648','3','','10097','LDAP service is running','net.tcp.service[ldap]','1m','1w','365d','0','3','','','','',NULL,'5','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a0d19592dc5b4ab49240fc7d6101a459');
INSERT INTO `items` (`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`,`uuid`) values ('23649','3','','10098','NNTP service is running','net.tcp.service[nntp]','1m','1w','365d','0','3','','','','',NULL,'6','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ac15acb2a1f488eb56088c6f963d1c7');
INSERT INTO `items` (`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`,`uuid`) values ('23650','3','','10099','NTP service is running','net.udp.service[ntp]','1m','1w','365d','0','3','','','','',NULL,'7','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e6101cf9015e436e82d9203f638f1840');
INSERT INTO `items` (`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`,`uuid`) values ('23651','3','','10100','POP service is running','net.tcp.service[pop]','1m','1w','365d','0','3','','','','',NULL,'8','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ef6870d87700429a92c3dc496342457a');
INSERT INTO `items` (`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`,`uuid`) values ('23652','3','','10101','SMTP service is running','net.tcp.service[smtp]','1m','1w','365d','0','3','','','','',NULL,'9','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7edce69c026143258edc03dc8e970ec9');
INSERT INTO `items` (`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`,`uuid`) values ('23653','3','','10102','SSH service is running','net.tcp.service[ssh]','1m','1w','365d','0','3','','','','',NULL,'10','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','096952457aad464e9669a0fef710874b');
INSERT INTO `items` (`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`,`uuid`) values ('23654','3','','10103','Telnet service is running','net.tcp.service[telnet]','1m','1w','365d','0','3','','','','',NULL,'11','','','0','','','','','0',NULL,'','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','55990514600a4a998dbc4bdd94edbcb2');
INSERT INTO `items` (`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`,`uuid`) values ('23661','5','','10047','Zabbix server: Value cache operating mode','zabbix[vcache,cache,mode]','1m','1w','365d','0','3','','','','',NULL,'55','','','0','','','','','0',NULL,'Value cache operating mode.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','07379df0114445b7b06818736f011ca6');
INSERT INTO `items` (`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`,`uuid`) values ('23663','5','','10047','Zabbix server: Utilization of task manager internal processes, in %','zabbix[process,task manager,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time task manager processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','caeb7ecc88cc4c14bb80f901284be9a5');
INSERT INTO `items` (`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`,`uuid`) values ('25366','5','','10047','Zabbix server: Utilization of ipmi manager internal processes, in %','zabbix[process,ipmi manager,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time ipmi manager processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','24b6b466929347f0a8164c89ba5624fe');
INSERT INTO `items` (`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`,`uuid`) values ('25368','5','','10048','Zabbix proxy: Utilization of ipmi manager internal processes, in %','zabbix[process,ipmi manager,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time ipmi manager processes have been busy in the last minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','52b3123dfef94d8bba1b1a13314a9d4f');
INSERT INTO `items` (`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`,`uuid`) values ('25369','5','','10048','Zabbix proxy: Utilization of task manager internal processes, in %','zabbix[process,task manager,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time task manager processes have been busy in the last minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','94d1aa1bff2d499f9e29dd9cafd04b9e');
INSERT INTO `items` (`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`,`uuid`) values ('25370','5','','10047','Zabbix server: Utilization of alert manager internal processes, in %','zabbix[process,alert manager,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time alert manager processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d098ea71dd22428a8a8a42cf299699b7');
INSERT INTO `items` (`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`,`uuid`) values ('25665','5','','10047','Zabbix server: Utilization of preprocessing manager internal processes, in %','zabbix[process,preprocessing manager,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time preprocessing manager processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fc7999dd8d2d41a5a80eeb4b6c4c9b13');
INSERT INTO `items` (`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`,`uuid`) values ('25666','5','','10047','Zabbix server: Utilization of preprocessing worker internal processes, in %','zabbix[process,preprocessing worker,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time preprocessing worker processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6af695693d41434a96c0c6a020580828');
INSERT INTO `items` (`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`,`uuid`) values ('26925','12','','10171','Power','power','1m','1w','365d','0','3','','','','',NULL,NULL,'','power','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1821294a921d401f822678ce1d246163');
INSERT INTO `items` (`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`,`uuid`) values ('26926','12','','10171','Processor Vcc','processor_vcc','1m','1w','365d','0','0','','V','','',NULL,NULL,'','Processor Vcc','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','efc577d6deba4f46b1fe79e6a1a26fdd');
INSERT INTO `items` (`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`,`uuid`) values ('26927','12','','10171','System Fan 3','system_fan_3','1m','1w','365d','0','0','','RPM','','',NULL,NULL,'','System Fan 3','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','89e5edc9cd6d4984a7a76320f7800ae9');
INSERT INTO `items` (`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`,`uuid`) values ('26928','12','','10171','BB Ambient Temp','bb_ambient_temp','1m','1w','365d','0','0','','C','','',NULL,NULL,'','BB Ambient Temp','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2e6d7059cbb349889c639e9fba09bd8c');
INSERT INTO `items` (`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`,`uuid`) values ('26929','12','','10171','BB +5.0V','bb_5.0v','1m','1w','365d','0','0','','V','','',NULL,NULL,'','BB +5.0V','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7931e499e1894942a4763432a6a446fd');
INSERT INTO `items` (`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`,`uuid`) values ('26930','12','','10171','BB +3.3V','bb_3.3v','1m','1w','365d','0','0','','V','','',NULL,NULL,'','BB +3.3V','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','21820c76180446ff9965f8937e6d1ba0');
INSERT INTO `items` (`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`,`uuid`) values ('26931','12','','10171','BB +3.3V STBY','bb_3.3v_stby','1m','1w','365d','0','0','','V','','',NULL,NULL,'','BB +3.3V STBY','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7bd5269be38c417aba374c9e8af28f8c');
INSERT INTO `items` (`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`,`uuid`) values ('26932','12','','10171','BB +1.8V SM','bb_1.8v_sm','1m','1w','365d','0','0','','V','','',NULL,NULL,'','BB +1.8V SM','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f1d7b90d87c6411e9d887d223b4f9022');
INSERT INTO `items` (`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`,`uuid`) values ('26933','12','','10172','Front Panel Temp','front_panel_temp','1m','1w','365d','0','0','','C','','',NULL,NULL,'','Front Panel Temp','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d59236617a234098b0cd62ac30cba975');
INSERT INTO `items` (`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`,`uuid`) values ('26934','12','','10172','Power','power','1m','1w','365d','0','3','','','','',NULL,NULL,'','power','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e4f51e8a51fb4f23afe9d505ede91891');
INSERT INTO `items` (`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`,`uuid`) values ('26935','12','','10172','System Fan 2','system_fan_2','1m','1w','365d','0','0','','RPM','','',NULL,NULL,'','System Fan 2','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ede3efc70c794c3390531b41a28411ef');
INSERT INTO `items` (`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`,`uuid`) values ('26936','12','','10172','System Fan 3','system_fan_3','1m','1w','365d','0','0','','RPM','','',NULL,NULL,'','System Fan 3','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b51ab327c547413fb94dae69e93458d2');
INSERT INTO `items` (`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`,`uuid`) values ('26937','12','','10172','BB +5.0V','bb_5.0v','1m','1w','365d','0','0','','V','','',NULL,NULL,'','BB +5.0V','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a60f33969e54742989571dc2f93be57');
INSERT INTO `items` (`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`,`uuid`) values ('26938','12','','10172','BB +3.3V STBY','bb_3.3v_stby','1m','1w','365d','0','0','','V','','',NULL,NULL,'','BB +3.3V STBY','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aef2b61786354719a6d99f60cff59f14');
INSERT INTO `items` (`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`,`uuid`) values ('26939','12','','10172','BB +1.05V PCH','bb_1.05v_pch','1m','1w','365d','0','0','','V','','',NULL,NULL,'','BB +1.05V PCH','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d2827f4cc6c4470daf4fd20868ed94c8');
INSERT INTO `items` (`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`,`uuid`) values ('26940','12','','10172','BB +1.1V P1 Vccp','bb_1.1v_p1_vccp','1m','1w','365d','0','0','','V','','',NULL,NULL,'','BB +1.1V P1 Vccp','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3bbcfcb625fa4805806601284c3eda20');
INSERT INTO `items` (`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`,`uuid`) values ('26941','12','','10172','BB +1.5V P1 DDR3','bb_1.5v_p1_ddr3','1m','1w','365d','0','0','','V','','',NULL,NULL,'','BB +1.5V P1 DDR3','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','350b21b2a569489a9c4c7376bf788a0e');
INSERT INTO `items` (`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`,`uuid`) values ('26942','12','','10172','BB +3.3V','bb_3.3v','1m','1w','365d','0','0','','V','','',NULL,NULL,'','BB +3.3V','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6bc6b9c60ce24189b8b0f8a928fab701');
INSERT INTO `items` (`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`,`uuid`) values ('26943','12','','10172','Baseboard Temp','baseboard_temp','1m','1w','365d','0','0','','C','','',NULL,NULL,'','Baseboard Temp','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8271dc34162d4657be1a67b5d8a4473b');
INSERT INTO `items` (`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`,`uuid`) values ('27031','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10183','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2a04f08ae9504f9dadb73550700960b1');
INSERT INTO `items` (`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`,`uuid`) values ('27032','20','1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}','10183','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'59','','','0','','','','','2',NULL,'MIB: EtherLike-MIB\r\nThe current mode of operation of the MAC\r\nentity. \'unknown\' indicates that the current\r\nduplex mode could not be determined.\r\n\r\nManagement control of the duplex mode is\r\naccomplished through the MAU MIB. When\r\nan interface does not support autonegotiation,\r\nor when autonegotiation is not enabled, the\r\nduplex mode is controlled using\r\nifMauDefaultType. When autonegotiation is\r\nsupported and enabled, duplex mode is controlled\r\nusing ifMauAutoNegAdvertisedBits. In either\r\ncase, the currently operating duplex mode is\r\nreflected both in this object and in ifMauType.\r\n\r\nNote that this object provides redundant\r\ninformation with ifMauType. Normally, redundant\r\nobjects are discouraged. However, in this\r\ninstance, it allows a management application to\r\ndetermine the duplex status of an interface\r\nwithout having to know every possible value of\r\nifMauType. This was felt to be sufficiently\r\nvaluable to justify the redundancy.\r\nReference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6bb6b8b98190429ca7564944885f5bdc');
INSERT INTO `items` (`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`,`uuid`) values ('27065','3','','10186','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','a79e33e5fd264725b934f603fa071555');
INSERT INTO `items` (`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`,`uuid`) values ('27066','3','','10186','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','04b21adaf422473a88df2c52786474ed');
INSERT INTO `items` (`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`,`uuid`) values ('27067','3','','10186','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'12','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','db5a94f6cea14deba957202b2f014469');
INSERT INTO `items` (`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`,`uuid`) values ('27078','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10188','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4d142a571991482da0560cb2faa8f673');
INSERT INTO `items` (`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`,`uuid`) values ('27079','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10188','Interface {#IFDESCR}: Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','018d93910eef44388fcd1eb1de63262b');
INSERT INTO `items` (`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`,`uuid`) values ('27080','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10188','Interface {#IFDESCR}: Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'66','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9470d6a01c4e4ea2a007582ac1c0ce64');
INSERT INTO `items` (`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`,`uuid`) values ('27081','20','1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX}','10188','Interface {#IFDESCR}: Speed','net.if.speed[ifSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in bits per second.\r\nFor interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,\r\nthis object should contain the nominal bandwidth.\r\nIf the bandwidth of the interface is greater than the maximum value reportable by this object then\r\nthis object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interface\'s speed.\r\nFor a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b93b4164db1c4c838ecfd5c2b261acfb');
INSERT INTO `items` (`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`,`uuid`) values ('27082','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10188','Interface {#IFDESCR}: Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2395b3a694474b9894e64f759dbe805e');
INSERT INTO `items` (`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`,`uuid`) values ('27083','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10188','Interface {#IFDESCR}: Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f6872ed88b464c37800738fd5e492896');
INSERT INTO `items` (`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`,`uuid`) values ('27084','20','1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX}','10188','Interface {#IFDESCR}: Bits received','net.if.in[ifInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3a971825c99e476aa2c18b1a792ec19d');
INSERT INTO `items` (`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`,`uuid`) values ('27085','20','1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX}','10188','Interface {#IFDESCR}: Bits sent','net.if.out[ifOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2a7b5b7e48444c8c8cf38f89a1a1091e');
INSERT INTO `items` (`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`,`uuid`) values ('27086','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10188','Interface {#IFDESCR}: Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f97ed0e4b7b3473a988f27a60e5d79ef');
INSERT INTO `items` (`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`,`uuid`) values ('27087','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10188','Interface {#IFDESCR}: Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'60','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','43d9d7883a1b4f6dbe4e118ef12d731e');
INSERT INTO `items` (`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`,`uuid`) values ('27098','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10190','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ea9babbf98cf48688aa00faf500e171e');
INSERT INTO `items` (`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`,`uuid`) values ('27099','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10190','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2ba24b3517aa4dbfb2d56f9e6c082668');
INSERT INTO `items` (`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`,`uuid`) values ('27100','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10190','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'67','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','565967032d23436486868eb495f7ed17');
INSERT INTO `items` (`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`,`uuid`) values ('27101','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10190','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b63cb94bb9954ee4ab56d2a7d25d5957');
INSERT INTO `items` (`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`,`uuid`) values ('27102','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10190','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','baca586b493448959a945c9433c38fe7');
INSERT INTO `items` (`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`,`uuid`) values ('27103','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10190','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2712f191e05046da85321c0ceeea85b3');
INSERT INTO `items` (`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`,`uuid`) values ('27104','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10190','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','633cdf45222b454198ec66308aa7a55d');
INSERT INTO `items` (`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`,`uuid`) values ('27105','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10190','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9037dd45e90a45baa58014d20db3ab0f');
INSERT INTO `items` (`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`,`uuid`) values ('27106','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10190','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c7296aa56884ef48bb66c25097848f9');
INSERT INTO `items` (`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`,`uuid`) values ('27107','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10190','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'61','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0ac3b237358a4df69712d3829341766b');
INSERT INTO `items` (`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`,`uuid`) values ('27118','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10192','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d883a4e556c44f3ab92f49d1aa264737');
INSERT INTO `items` (`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`,`uuid`) values ('27119','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10192','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','10b775275f604bf593d1773be919c253');
INSERT INTO `items` (`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`,`uuid`) values ('27120','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10192','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'68','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','557b8ccf262a4d94abff327bcf41822b');
INSERT INTO `items` (`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`,`uuid`) values ('27121','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10192','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','290ed87b085144c5bea26de86e7d5c7f');
INSERT INTO `items` (`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`,`uuid`) values ('27122','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10192','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16f12f7e76d14fe4b2675a3c86dbe0ff');
INSERT INTO `items` (`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`,`uuid`) values ('27123','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10192','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e6695fe534d44477a06da86bdd9e49a4');
INSERT INTO `items` (`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`,`uuid`) values ('27124','20','1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX}','10192','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a7994f0c49e747b480428f20f4ddd49b');
INSERT INTO `items` (`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`,`uuid`) values ('27125','20','1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX}','10192','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','95e58c279df24606b28fb325e7006b54');
INSERT INTO `items` (`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`,`uuid`) values ('27126','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10192','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','199eb3a0274a43f198137abefba57f09');
INSERT INTO `items` (`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`,`uuid`) values ('27127','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10192','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'62','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','73b1182c727449f69fb0dc67b19aec5d');
INSERT INTO `items` (`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`,`uuid`) values ('27152','20','1.3.6.1.2.1.1.5.0','10204','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3996a3a8d927473aa07c47e63a09b865');
INSERT INTO `items` (`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`,`uuid`) values ('27154','5','','10204','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'69','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3e8c2d440441416b9ccec7dd90e21503');
INSERT INTO `items` (`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`,`uuid`) values ('27157','17','','10204','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','2cda26906f254e13985cecdbb7901d1a');
INSERT INTO `items` (`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`,`uuid`) values ('27203','20','1.3.6.1.2.1.1.1.0','10207','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2183a57a2c904632bf813c15610765f7');
INSERT INTO `items` (`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`,`uuid`) values ('27207','20','1.3.6.1.4.1.6527.3.1.2.1.1.9.0','10207','Used memory','vm.memory.used[sgiKbMemoryUsed.0]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TIMETRA-SYSTEM-MIB\r\nThe value of sgiKbMemoryUsed indicates the total pre-allocated pool memory, in kilobytes, currently in use on the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f5cd1ed0f61f464f86a97485f833d832');
INSERT INTO `items` (`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`,`uuid`) values ('27208','20','1.3.6.1.4.1.6527.3.1.2.1.1.1.0','10207','CPU utilization','system.cpu.util[sgiCpuUsage.0]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TIMETRA-SYSTEM-MIB\r\nThe value of sgiCpuUsage indicates the current CPU utilization for the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e28cb751b37e42d29be9f0295bd030b6');
INSERT INTO `items` (`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`,`uuid`) values ('27209','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8,{#TEMP_SENSOR},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.17]','10207','Temperature Discovery','temperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6382c9595cb446778d23bb273143b27c');
INSERT INTO `items` (`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`,`uuid`) values ('27210','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.4.1.2]','10207','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0fa1180b594e401a83927f6c20809a86');
INSERT INTO `items` (`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`,`uuid`) values ('27211','20','discovery[{#ENT_NAME},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8,{#ENT_CLASS},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.7,{#ENT_SN},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5]','10207','Entity Serial Numbers Discovery','entity_sn.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','fe7fa4ab68b8430c86a3adf6ba2fd048');
INSERT INTO `items` (`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`,`uuid`) values ('27212','20','1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.{#SNMPINDEX}','10207','{#SNMPVALUE}: Temperature','sensor.temp.value[tmnxHwTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TIMETRA-SYSTEM-MIB\r\nThe current temperature reading in degrees celsius from this hardware component\'s temperature sensor. If this component does not contain a temperature sensor, then the value -1 is returned.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c6a233ce51d44b63963f2345f709e6b3');
INSERT INTO `items` (`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`,`uuid`) values ('27213','20','1.3.6.1.4.1.6527.3.1.2.2.1.4.1.2.{#SNMPINDEX}','10207','#{#SNMPINDEX}: Fan status','sensor.fan.status[tmnxChassisFanOperStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'71','','','0','','','','','2',NULL,'MIB: TIMETRA-SYSTEM-MIB\r\nCurrent status of the Fan tray.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','be9fb466b33f4d078b6aae15123bc7d6');
INSERT INTO `items` (`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`,`uuid`) values ('27214','20','1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5.{#SNMPINDEX}','10207','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[tmnxHwSerialNumber.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TIMETRA-CHASSIS-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ec087163f366430fbd688390bce17980');
INSERT INTO `items` (`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`,`uuid`) values ('27236','20','1.3.6.1.4.1.1588.2.1.1.1.1.6.0','10208','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SW-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c6e2d4c076b14ed19fbcb08caa32e5be');
INSERT INTO `items` (`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`,`uuid`) values ('27237','20','1.3.6.1.4.1.1588.2.1.1.1.1.10.0','10208','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SW-MIB','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c68a1be050d4c1287e63eb7b3b81f8f');
INSERT INTO `items` (`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`,`uuid`) values ('27238','20','1.3.6.1.4.1.1588.2.1.1.1.1.7.0','10208','Overall system health status','system.status[swOperStatus.0]','30s','2w','0d','0','3','','','','',NULL,'73','','','0','','','','','0',NULL,'MIB: SW-MIB\r\nThe current operational status of the switch.The states are as follow:\r\nonline(1) means the switch is accessible by an external Fibre Channel port\r\noffline(2) means the switch is not accessible\r\ntesting(3) means the switch is in a built-in test mode and is not accessible by an external Fibre Channel port\r\nfaulty(4) means the switch is not operational.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','29f1dda8042d4fd18d7da9eb95fea76c');
INSERT INTO `items` (`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`,`uuid`) values ('27240','20','1.3.6.1.4.1.1588.2.1.1.1.26.1.0','10208','CPU utilization','system.cpu.util[swCpuUsage.0]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SW-MIB\r\nSystem\'s CPU usage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b17a06635cb2400f9c6d0f848fd38868');
INSERT INTO `items` (`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`,`uuid`) values ('27242','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5]','10208','Temperature Discovery','temperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','efaa3e2dfb5b405d99998bd6f8a08697');
INSERT INTO `items` (`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`,`uuid`) values ('27243','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5]','10208','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','32c9720e348e4d4ebb9e70c2b247de29');
INSERT INTO `items` (`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`,`uuid`) values ('27244','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5]','10208','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','721801e236e34b02b5430d115b23817e');
INSERT INTO `items` (`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`,`uuid`) values ('27246','20','1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX}','10208','{#SENSOR_INFO}: Temperature status','sensor.temp.status[swSensorStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'72','','','0','','','','','2',NULL,'MIB: SW-MIB\r\nTemperature status of testpoint: {#SENSOR_INFO}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f95f92a4151d4039ab3ce73ca231f079');
INSERT INTO `items` (`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`,`uuid`) values ('27247','20','1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.{#SNMPINDEX}','10208','{#SENSOR_INFO}: Temperature','sensor.temp.value[swSensorValue.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: SW-MIB\r\nTemperature readings of testpoint: {#SENSOR_INFO}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ee48ef951f124c569327670a2a0f2152');
INSERT INTO `items` (`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`,`uuid`) values ('27248','20','1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX}','10208','{#SENSOR_INFO}: Power supply status','sensor.psu.status[swSensorStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'72','','','0','','','','','2',NULL,'MIB: SW-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7a8f32cbb43f4ce789097e8cb26b0456');
INSERT INTO `items` (`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`,`uuid`) values ('27249','20','1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.{#SNMPINDEX}','10208','{#SENSOR_INFO}: Fan speed','sensor.fan.speed[swSensorValue.{#SNMPINDEX}]','1m','90d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: SW-MIB\r\nThe current value (reading) of the sensor.\r\nThe value, -2147483648, represents an unknown quantity.\r\nThe fan value will be in RPM(revolution per minute)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4f37f76d0b3241598e69b091f1835ef5');
INSERT INTO `items` (`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`,`uuid`) values ('27250','20','1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX}','10208','{#SENSOR_INFO}: Fan status','sensor.fan.status[swSensorStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'72','','','0','','','','','2',NULL,'MIB: SW-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ee2569161ad146b392bb8f331a7f7d19');
INSERT INTO `items` (`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`,`uuid`) values ('27294','20','1.3.6.1.4.1.1991.1.1.2.1.52.0','10209','CPU utilization','system.cpu.util[snAgGblCpuUtil1MinAvg.0]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FOUNDRY-SN-AGENT-MIB\r\nThe statistics collection of 1 minute CPU utilization.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b2bda926f1864eb893c53ef0c6cad2a2');
INSERT INTO `items` (`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`,`uuid`) values ('27295','20','1.3.6.1.4.1.1991.1.1.2.1.11.0','10210','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FOUNDRY-SN-AGENT-MIB\r\nThe version of the running software in the form\'major.minor.maintenance[letters]\'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4f58884d810a416ea321dd622c876d06');
INSERT INTO `items` (`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`,`uuid`) values ('27296','20','1.3.6.1.4.1.1991.1.1.1.1.2.0','10210','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FOUNDRY-SN-AGENT-MIB','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7d8b9dc153c4408c99a707a9b4d57647');
INSERT INTO `items` (`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`,`uuid`) values ('27297','20','1.3.6.1.4.1.1991.1.1.2.1.11.0','10211','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FOUNDRY-SN-AGENT-MIB\r\nThe version of the running software in the form \'major.minor.maintenance[letters]\'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c17e0d80c354391b339142f2a973886');
INSERT INTO `items` (`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`,`uuid`) values ('27302','20','discovery[{#PSU_INDEX},1.3.6.1.4.1.1991.1.1.1.2.1.1.1]','10210','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'snChasPwrSupplyTable: A table of each power supply information. Only installed power supply appears in a table row.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ea01b3ce15248868f1ced0b38bf1245');
INSERT INTO `items` (`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`,`uuid`) values ('27303','20','discovery[{#FAN_INDEX},1.3.6.1.4.1.1991.1.1.1.3.1.1.1]','10210','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'snChasFanTable: A table of each fan information. Only installed fan appears in a table row.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cb46b61100c8456098a85b1e48644146');
INSERT INTO `items` (`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`,`uuid`) values ('27304','20','discovery[{#SENSOR_DESCR},1.3.6.1.4.1.1991.1.1.2.13.1.1.3]','10210','Temperature Discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'snAgentTempTable:Table to list temperatures of the modules in the device. This table is applicable to only those modules with temperature sensors.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','44a84963c9d04fc5a82415602ec8db33');
INSERT INTO `items` (`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`,`uuid`) values ('27306','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.1.1.18]','10210','Temperature Discovery Chassis','temp.chassis.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Since temperature of the chassis is not available on all Brocade/Foundry hardware, this LLD is here to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5b62e90cfc5549d4b189158499b3d9fb');
INSERT INTO `items` (`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`,`uuid`) values ('27307','20','discovery[{#PSU_UNIT},1.3.6.1.4.1.1991.1.1.1.2.2.1.1,{#PSU_INDEX},1.3.6.1.4.1.1991.1.1.1.2.2.1.2]','10211','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'snChasPwrSupply2Table: A table of each power supply information for each unit. Only installed power supply appears in a table row.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','36f00d10099946c9bf3a9e617252bec1');
INSERT INTO `items` (`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`,`uuid`) values ('27308','20','discovery[{#FAN_UNIT},1.3.6.1.4.1.1991.1.1.1.3.2.1.1,{#FAN_INDEX},1.3.6.1.4.1.1991.1.1.1.3.2.1.2]','10211','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'snChasFan2Table: A table of each fan information for each unit. Only installed fan appears in a table row.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a192b69e71684d9381ca48b5453a2d8b');
INSERT INTO `items` (`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`,`uuid`) values ('27309','20','discovery[{#SENSOR_DESCR},1.3.6.1.4.1.1991.1.1.2.13.3.1.4]','10211','Temperature Discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'snAgentTemp2Table:Table to list temperatures of the modules in the device for each unit. This table is applicable to only those modules with temperature sensors.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c700d182f3e041d3b31076984100a402');
INSERT INTO `items` (`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`,`uuid`) values ('27310','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.3.31.2.1.1.5]','10211','Stack Discovery','stack.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering snStackingConfigUnitTable for Model names','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e78f4dcfd112442f8b053f1eb0a28741');
INSERT INTO `items` (`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`,`uuid`) values ('27311','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.1.4.1.1.1]','10211','Chassis Discovery','chassis.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'snChasUnitIndex: The index to chassis table.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','88f67d02cd484dfb841f5f841c3e0bd6');
INSERT INTO `items` (`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`,`uuid`) values ('27312','20','1.3.6.1.4.1.1991.1.1.1.2.1.1.3.{#SNMPINDEX}','10210','PSU {#PSU_INDEX}: Power supply status','sensor.psu.status[snChasPwrSupplyOperStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'74','','','0','','','','','2',NULL,'MIB: FOUNDRY-SN-AGENT-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','47e7c7bb4c27483bb4dd458b5a2d2c1e');
INSERT INTO `items` (`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`,`uuid`) values ('27313','20','1.3.6.1.4.1.1991.1.1.1.3.1.1.3.{#SNMPINDEX}','10210','Fan {#FAN_INDEX}: Fan status','sensor.fan.status[snChasFanOperStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'76','','','0','','','','','2',NULL,'MIB: FOUNDRY-SN-AGENT-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9edc2a34faa84e908b33259d495b5da1');
INSERT INTO `items` (`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`,`uuid`) values ('27314','20','1.3.6.1.4.1.1991.1.1.2.13.1.1.4.{#SNMPINDEX}','10210','{#SENSOR_DESCR}: Temperature','sensor.temp.value[snAgentTempValue.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FOUNDRY-SN-AGENT-MIB\r\nTemperature of the sensor represented by this row. Each unit is 0.5 degrees Celsius.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c181349497cc4d2dbaf43f51712278df');
INSERT INTO `items` (`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`,`uuid`) values ('27315','20','1.3.6.1.4.1.1991.1.1.1.1.18.{#SNMPINDEX}','10210','Chassis #{#SNMPINDEX}: Temperature','sensor.temp.value[snChasActualTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FOUNDRY-SN-AGENT-MIB\r\nTemperature of the chassis. Each unit is 0.5 degrees Celsius.\r\nOnly management module built with temperature sensor hardware is applicable.\r\nFor those non-applicable management module, it returns no-such-name.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','699f30c8feee47cf8bf3da4d10f2c8aa');
INSERT INTO `items` (`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`,`uuid`) values ('27316','20','1.3.6.1.4.1.1991.1.1.1.2.2.1.4.{#SNMPINDEX}','10211','Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply status','sensor.psu.status[snChasPwrSupply2OperStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'75','','','0','','','','','2',NULL,'MIB: FOUNDRY-SN-AGENT-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d96f92d0de9e48968483b9354b99e509');
INSERT INTO `items` (`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`,`uuid`) values ('27317','20','1.3.6.1.4.1.1991.1.1.1.3.2.1.4.{#SNMPINDEX}','10211','Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan status','sensor.fan.status[snChasFan2OperStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'77','','','0','','','','','2',NULL,'MIB: FOUNDRY-SN-AGENT-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5491a504d4f8441eb3be588f2ed56d7c');
INSERT INTO `items` (`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`,`uuid`) values ('27318','20','1.3.6.1.4.1.1991.1.1.2.13.3.1.5.{#SNMPINDEX}','10211','{#SENSOR_DESCR}: Temperature','sensor.temp.value[snAgentTemp2Value.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FOUNDRY-SN-AGENT-MIB\r\nTemperature of the sensor represented by this row. Each unit is 0.5 degrees Celsius.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a6bc8a2263444fa1a2b07478068d7297');
INSERT INTO `items` (`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`,`uuid`) values ('27319','20','1.3.6.1.4.1.1991.1.1.3.31.2.1.1.5.{#SNMPINDEX}','10211','Unit {#SNMPINDEX}: Hardware model name','system.hw.model[snStackingConfigUnitType.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FOUNDRY-SN-STACKING-MIB\r\nA description of the configured/active system type for each unit.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a4fd63461cb24e4e81e4cbba9f086595');
INSERT INTO `items` (`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`,`uuid`) values ('27320','20','1.3.6.1.4.1.1991.1.1.1.4.1.1.2.{#SNMPINDEX}','10211','Unit {#SNMPVALUE}: Hardware serial number','system.hw.serialnumber[snChasUnitSerNum.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FOUNDRY-SN-AGENT-MIB\r\nThe serial number of the chassis for each unit. If the serial number is unknown or unavailable then the value should be a zero length string.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2638da6ab127484f8119f8d46d5c996b');
INSERT INTO `items` (`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`,`uuid`) values ('27376','20','1.3.6.1.4.1.9.2.1.58','10215','CPU utilization','system.cpu.util[avgBusy5]','5m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: OLD-CISCO-CPU-MIB\r\n5 minute exponentially-decayed moving average of the CPU busy percentage.\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1b8784537cc04a939b8ceb26a5d3b5a1');
INSERT INTO `items` (`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`,`uuid`) values ('27378','20','1.3.6.1.2.1.47.1.1.1.1.11.1','10216','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3b54e3692fe643e99704767f9a58a1c2');
INSERT INTO `items` (`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`,`uuid`) values ('27379','20','1.3.6.1.2.1.47.1.1.1.1.13.1','10216','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','edb172996a954eb986c97bcfee052a36');
INSERT INTO `items` (`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`,`uuid`) values ('27390','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2]','10212','Memory Discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.\r\nhttp://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d84cfe9db46d49c8971317f7e09d9537');
INSERT INTO `items` (`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`,`uuid`) values ('27391','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5]','10213','CPU Discovery','cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable,\r\nindexed with cpmCPUTotalIndex.\r\nThis table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,\r\nlike different CPU chips, group of CPUs, or CPUs in different modules/cards.\r\nIn case of a single CPU, cpmCPUTotalTable has only one entry.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dc4773499a1d419caa5c2c96bd4afb7b');
INSERT INTO `items` (`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`,`uuid`) values ('27393','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11]','10216','Entity Serial Numbers Discovery','entity_sn.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','0908cfd197214f6c8092bbd426ef83bf');
INSERT INTO `items` (`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`,`uuid`) values ('27394','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2]','10217','Temperature Discovery','temperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status\r\nmaintained by the environmental monitor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e61bb682818b4f31a669acd31335160c');
INSERT INTO `items` (`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`,`uuid`) values ('27395','20','discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2]','10217','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of power supply status maintained by the environmental monitor card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','932817396a5b47f29af28e439711ef59');
INSERT INTO `items` (`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`,`uuid`) values ('27396','20','discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2]','10217','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of fan status maintained by the environmental monitor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','31e5f90d88574fa0a35664e2c6b51e98');
INSERT INTO `items` (`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`,`uuid`) values ('27415','20','1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX}','10212','{#SNMPVALUE}: Free memory','vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB\r\nIndicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a88a818dfdf743408698d7a45bc29edc');
INSERT INTO `items` (`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`,`uuid`) values ('27416','20','1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX}','10212','{#SNMPVALUE}: Used memory','vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB\r\nIndicates the number of bytes from the memory pool that are currently in use by applications on the managed device.\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','32d6bbb06c624f9e9a236fb53507948c');
INSERT INTO `items` (`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`,`uuid`) values ('27417','20','1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX}','10213','#{#SNMPINDEX}: CPU utilization','system.cpu.util[cpmCPUTotal5minRev.{#SNMPINDEX}]','5m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-PROCESS-MIB\r\nThe cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','884048f6fc414188b58341ecaca9aea3');
INSERT INTO `items` (`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`,`uuid`) values ('27419','20','1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}','10216','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3a6277e70ce6448b857bfc170ded8542');
INSERT INTO `items` (`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`,`uuid`) values ('27420','20','1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX}','10217','{#SNMPVALUE}: Temperature status','sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'78','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nThe current state of the test point being instrumented.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','72f0970a636d44278b75f30a1dabfeb8');
INSERT INTO `items` (`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`,`uuid`) values ('27421','20','1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX}','10217','{#SNMPVALUE}: Temperature','sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nThe current measurement of the test point being instrumented.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4859221e53d7485485db1c9060d7f705');
INSERT INTO `items` (`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`,`uuid`) values ('27422','20','1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX}','10217','{#SENSOR_INFO}: Power supply status','sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'78','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d500235d63ca41888585d267a7d82e2a');
INSERT INTO `items` (`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`,`uuid`) values ('27423','20','1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX}','10217','{#SENSOR_INFO}: Fan status','sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'78','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','62a05225a1634d7486fab92cf100544e');
INSERT INTO `items` (`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`,`uuid`) values ('27473','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.9.1.1]','10221','CPU and Memory and Flash Discovery','module.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff38ddf97a2a47c88ad93d590dedc22a');
INSERT INTO `items` (`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`,`uuid`) values ('27474','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.3.1.1]','10221','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of power supply residents in the S-series chassis.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','21117a6eb71f4837971ccedfff7596f6');
INSERT INTO `items` (`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`,`uuid`) values ('27475','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.4.1.1]','10221','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f35cb754ebd748b7842c67461264f48d');
INSERT INTO `items` (`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`,`uuid`) values ('27476','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.2.1.2]','10221','Stack Unit Discovery','stack.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a619474b839642f69e583a2c63e8b4ba');
INSERT INTO `items` (`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`,`uuid`) values ('27478','20','1.3.6.1.4.1.6027.3.10.1.2.9.1.3.{#SNMPINDEX}','10221','#{#SNMPINDEX}: CPU utilization','system.cpu.util[chStackUnitCpuUtil1Min.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F10-S-SERIES-CHASSIS-MIB\r\nCPU utilization in percentage for last 1 minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f2f0febdd3c14d77a47461c22b883bb5');
INSERT INTO `items` (`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`,`uuid`) values ('27479','20','1.3.6.1.4.1.6027.3.10.1.2.3.1.2.{#SNMPINDEX}','10221','PSU {#SNMPVALUE}: Power supply status','sensor.psu.status[chSysPowerSupplyOperStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'80','','','0','','','','','2',NULL,'MIB: F10-S-SERIES-CHASSIS-MIB\r\nThe status of the power supply {#SNMPVALUE}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7cc5081ad6114124845beedbe4725899');
INSERT INTO `items` (`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`,`uuid`) values ('27480','20','1.3.6.1.4.1.6027.3.10.1.2.4.1.2.{#SNMPINDEX}','10221','Fan {#SNMPVALUE}: Fan status','sensor.fan.status[chSysFanTrayOperStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'79','','','0','','','','','2',NULL,'MIB: F10-S-SERIES-CHASSIS-MIB\r\nThe status of the fan tray {#SNMPVALUE}.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c916b4658e914e93af13b4fe7b58138e');
INSERT INTO `items` (`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`,`uuid`) values ('27481','20','1.3.6.1.4.1.6027.3.10.1.2.2.1.10.{#SNMPINDEX}','10221','#{#SNMPVALUE}: Operating system','system.sw.os[chStackUnitCodeVersion.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F10-S-SERIES-CHASSIS-MIB\r\nCurrent code version of this unit.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','67cce945315e426f9b12456fe95a6c1a');
INSERT INTO `items` (`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`,`uuid`) values ('27482','20','1.3.6.1.4.1.6027.3.10.1.2.2.1.21.{#SNMPINDEX}','10221','#{#SNMPVALUE}: Hardware version(revision)','system.hw.version[chStackUnitProductRev.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F10-S-SERIES-CHASSIS-MIB\r\nThe unit manufacturer\'s product revision','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd68fcd8247744cb8c10e3dfc699bc7f');
INSERT INTO `items` (`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`,`uuid`) values ('27483','20','1.3.6.1.4.1.6027.3.10.1.2.2.1.12.{#SNMPINDEX}','10221','#{#SNMPVALUE}: Hardware serial number','system.hw.serialnumber[chStackUnitSerialNumber.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F10-S-SERIES-CHASSIS-MIB\r\nThe unit\'s serial number.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eb6853c30dd04581b2e362d7747b40b5');
INSERT INTO `items` (`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`,`uuid`) values ('27484','20','1.3.6.1.4.1.6027.3.10.1.2.2.1.7.{#SNMPINDEX}','10221','#{#SNMPVALUE}: Hardware model name','system.hw.model[chStackUnitModelID.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F10-S-SERIES-CHASSIS-MIB\r\nThe plugged-in model ID for this unit.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d6e3d7bb74b84e0c895a1b1b740f0e14');
INSERT INTO `items` (`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`,`uuid`) values ('27485','20','1.3.6.1.4.1.6027.3.10.1.2.2.1.14.{#SNMPINDEX}','10221','Device {#SNMPVALUE}: Temperature','sensor.temp.value[chStackUnitTemp.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F10-S-SERIES-CHASSIS-MIB\r\nThe temperature of the unit.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4eaf5b777b0c4efeb34140618e18aaa5');
INSERT INTO `items` (`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`,`uuid`) values ('27508','20','1.3.6.1.2.1.47.1.1.1.1.8.1','10222','Hardware version(revision)','system.hw.version','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fd86860f9ebc42b1970a845b7940daed');
INSERT INTO `items` (`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`,`uuid`) values ('27509','20','1.3.6.1.2.1.47.1.1.1.1.9.1','10222','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIBdescription has changed','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c48928c7392d472d950804ee30936f0f');
INSERT INTO `items` (`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`,`uuid`) values ('27510','20','1.3.6.1.2.1.1.1.0','10222','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9461071bb9fa44909aa181779c894a7b');
INSERT INTO `items` (`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`,`uuid`) values ('27511','20','1.3.6.1.4.1.171.10.97.2.36.1.1.3.0','10222','CPU utilization','system.cpu.util[myCPUUtilization5Min.0]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MY-PROCESS-MIB\r\nCPU utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ec0e7cc71b39447087f580569559a6d6');
INSERT INTO `items` (`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`,`uuid`) values ('27512','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.35.1.1.1.2]','10222','Memory Discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','80a71c76148f4408993f4d2fba2aac4c');
INSERT INTO `items` (`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`,`uuid`) values ('27513','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.23.1.2]','10222','Temperature Discovery','temperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d596adf697c1431cbe1244fe2737ca55');
INSERT INTO `items` (`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`,`uuid`) values ('27514','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.18.1.3]','10222','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1290d8eb44564a15b98d212c6f007b05');
INSERT INTO `items` (`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`,`uuid`) values ('27515','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.21.1.3]','10222','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e0940a9219c4d3094c85777e89c63a6');
INSERT INTO `items` (`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`,`uuid`) values ('27517','20','1.3.6.1.4.1.171.10.97.2.1.1.23.1.3.{#SNMPINDEX}','10222','{#SNMPVALUE}: Temperature','sensor.temp.value[mySystemTemperatureCurrent.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MY-SYSTEM-MIB\r\nReturn the current temperature of the FastSwitch.The temperature display is not supported for the current temperature returns to 0.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d861801102794d989895b4546a0e10fb');
INSERT INTO `items` (`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`,`uuid`) values ('27518','20','1.3.6.1.4.1.171.10.97.2.1.1.18.1.2.{#SNMPINDEX}','10222','{#SNMPVALUE}: Power supply status','sensor.psu.status[mySystemElectricalSourceIsNormal.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'81','','','0','','','','','2',NULL,'MIB: MY-SYSTEM-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','949bf64a7d75429586292fd0acf4b84e');
INSERT INTO `items` (`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`,`uuid`) values ('27519','20','1.3.6.1.4.1.171.10.97.2.1.1.21.1.2.{#SNMPINDEX}','10222','{#SNMPVALUE}: Fan status','sensor.fan.status[mySystemFanIsNormal.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'81','','','0','','','','','2',NULL,'MIB: MY-SYSTEM-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','77005f8940f44f47abe28debbcea1573');
INSERT INTO `items` (`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`,`uuid`) values ('27543','20','1.3.6.1.2.1.47.1.1.1.1.8.1','10223','Hardware version(revision)','system.hw.version','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','06e2bd7f602140f49685ae8dbfa44660');
INSERT INTO `items` (`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`,`uuid`) values ('27544','20','1.3.6.1.2.1.47.1.1.1.1.9.1','10223','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8e6d4c6568c54aeeb745c5ba43945174');
INSERT INTO `items` (`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`,`uuid`) values ('27545','20','1.3.6.1.4.1.171.12.1.1.12.0','10223','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: DLINK-AGENT-MIB\r\nA text string containing the serial number of this device.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3dd0e86421b5410f9c34680650a0d9a5');
INSERT INTO `items` (`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`,`uuid`) values ('27546','20','1.3.6.1.2.1.1.1.0','10223','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc6cdf26ee0f4c5682c956c0ac741898');
INSERT INTO `items` (`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`,`uuid`) values ('27547','20','1.3.6.1.4.1.171.12.1.1.6.2.0','10223','CPU utilization','system.cpu.util[agentCPUutilizationIn1min.0]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: DLINK-AGENT-MIB\r\nThe unit of time is 1 minute. The value will be between 0% (idle) and 100%(very busy).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9d265ce34e9344c6875497e7ed0ebc89');
INSERT INTO `items` (`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`,`uuid`) values ('27548','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.1.1.9.1.1]','10223','Memory Discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0e1d87089c084979ade1f58cdedd42f8');
INSERT INTO `items` (`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`,`uuid`) values ('27549','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.8.1.1]','10223','Temperature Discovery','temperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','17702e5430f943fc9ebeefdbdd363e58');
INSERT INTO `items` (`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`,`uuid`) values ('27550','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.6.1.2,{#STATUS},1.3.6.1.4.1.171.12.11.1.6.1.3]','10223','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'swPowerID of EQUIPMENT-MIB::swPowerTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','57ec484412604bf091a2b8a5be1dff3e');
INSERT INTO `items` (`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`,`uuid`) values ('27551','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.7.1.2,{#STATUS},1.3.6.1.4.1.171.12.11.1.7.1.3]','10223','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'swFanID of EQUIPMENT-MIB::swFanTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8e7fe508f2ee4304a6097cabaf93b44f');
INSERT INTO `items` (`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`,`uuid`) values ('27553','20','1.3.6.1.4.1.171.12.11.1.8.1.2.{#SNMPINDEX}','10223','#{#SNMPVALUE}: Temperature','sensor.temp.value[swTemperatureCurrent.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: EQUIPMENT-MIB\r\nThe shelf current temperature.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a84312b0296a432a948e6065c20749f1');
INSERT INTO `items` (`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`,`uuid`) values ('27554','20','1.3.6.1.4.1.171.12.11.1.6.1.3.{#SNMPINDEX}','10223','#{#SNMPVALUE}: Power supply status','sensor.psu.status[swPowerStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'83','','','0','','','','','2',NULL,'MIB: EQUIPMENT-MIB\r\nIndicates the current power status.\r\nlowVoltage : The voltage of the power unit is too low.\r\noverCurrent: The current of the power unit is too high.\r\nworking : The power unit is working normally.\r\nfail : The power unit has failed.\r\nconnect : The power unit is connected but not powered on.\r\ndisconnect : The power unit is not connected.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e87cca325f94ac091723f4dcef5ef26');
INSERT INTO `items` (`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`,`uuid`) values ('27555','20','1.3.6.1.4.1.171.12.11.1.7.1.3.{#SNMPINDEX}','10223','#{#SNMPVALUE}: Fan status','sensor.fan.status[swFanStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'82','','','0','','','','','2',NULL,'MIB: EQUIPMENT-MIB\r\nIndicates the current fan status.\r\nspeed-0 : If the fan function is normal and the fan does not spin due to the temperature not reaching the threshold, the status of the fan is speed 0.\r\nspeed-low : Fan spin using the lowest speed.\r\nspeed-middle: Fan spin using the middle speed.\r\nspeed-high : Fan spin using the highest speed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9fec4303859d411db13a470374862232');
INSERT INTO `items` (`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`,`uuid`) values ('27579','20','1.3.6.1.2.1.47.1.1.1.1.9.1','10224','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7f6260a568644e89ba87ccca63102357');
INSERT INTO `items` (`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`,`uuid`) values ('27580','20','1.3.6.1.2.1.47.1.1.1.1.9.1','10224','Hardware version(revision)','system.hw.version','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ec263e1593e48d18b3e50f215e94196');
INSERT INTO `items` (`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`,`uuid`) values ('27582','20','1.3.6.1.2.1.47.1.1.1.1.11.1','10224','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','93882ec52eed40778858e52dc7153093');
INSERT INTO `items` (`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`,`uuid`) values ('27583','20','1.3.6.1.2.1.47.1.1.1.1.2.1','10224','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','42ec93c3013d428c9f72fe721ea46db5');
INSERT INTO `items` (`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`,`uuid`) values ('27584','20','1.3.6.1.4.1.1916.1.1.1.8.0','10224','Device: Temperature','sensor.temp.value[extremeCurrentTemperature.0]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: EXTREME-SYSTEM-MIB\r\nTemperature readings of testpoint: Device\r\nReference: https://gtacknowledge.extremenetworks.com/articles/Q_A/Does-EXOS-support-temperature-polling-via-SNMP-on-all-nodes-in-a-stack','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2e8384090e304767bc6bba60d822e223');
INSERT INTO `items` (`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`,`uuid`) values ('27585','20','1.3.6.1.4.1.1916.1.1.1.7.0','10224','Device: Temperature status','sensor.temp.status[extremeOverTemperatureAlarm.0]','3m','2w','0d','0','3','','','','',NULL,'85','','','0','','','','','0',NULL,'MIB: EXTREME-SYSTEM-MIB\r\nTemperature status of testpoint: Device','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b17bfccc91f1489fb9f85d719ca19d70');
INSERT INTO `items` (`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`,`uuid`) values ('27586','20','1.3.6.1.4.1.1916.1.32.1.2.0','10224','CPU utilization','system.cpu.util[extremeCpuMonitorTotalUtilization.0]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: EXTREME-SOFTWARE-MONITOR-MIB\r\nTotal CPU utilization (percentage) as of last sampling.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fd93c5fb3e054f84b052d7f682a87655');
INSERT INTO `items` (`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`,`uuid`) values ('27587','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.32.2.2.1.1]','10224','Memory Discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','53af0f95ffe243c394c273a1bc2857a3');
INSERT INTO `items` (`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`,`uuid`) values ('27588','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.1.1.27.1.1]','10224','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Table of status of all power supplies in the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f3211654d55c4c778817e82ed2c123b6');
INSERT INTO `items` (`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`,`uuid`) values ('27589','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.1.1.9.1.1]','10224','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1ed41878ed4a455c8a3871169225b8f6');
INSERT INTO `items` (`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`,`uuid`) values ('27591','20','1.3.6.1.4.1.1916.1.32.2.2.1.2.{#SNMPINDEX}','10224','#{#SNMPVALUE}: Total memory','vm.memory.total[extremeMemoryMonitorSystemTotal.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: EXTREME-SOFTWARE-MONITOR-MIB\r\nTotal amount of DRAM in Kbytes in the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b22ba07a208d41788d0fb33074125ffd');
INSERT INTO `items` (`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`,`uuid`) values ('27593','20','1.3.6.1.4.1.1916.1.1.1.27.1.2.{#SNMPINDEX}','10224','PSU {#SNMPVALUE}: Power supply status','sensor.psu.status[extremePowerSupplyStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'86','','','0','','','','','2',NULL,'MIB: EXTREME-SYSTEM-MIB\r\nStatus of the power supply {#SNMPVALUE}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff7de77c363f4487ba9be3d262f912da');
INSERT INTO `items` (`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`,`uuid`) values ('27594','20','1.3.6.1.4.1.1916.1.1.1.9.1.4.{#SNMPINDEX}','10224','Fan {#SNMPVALUE}: Fan speed','sensor.fan.speed[extremeFanSpeed.{#SNMPINDEX}]','1m','90d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: EXTREME-SYSTEM-MIB\r\nThe speed (RPM) of a cooling fan in the fantray {#SNMPVALUE}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a9789017b3284366a56e7f9727ae20cd');
INSERT INTO `items` (`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`,`uuid`) values ('27595','20','1.3.6.1.4.1.1916.1.1.1.9.1.2.{#SNMPINDEX}','10224','Fan {#SNMPVALUE}: Fan status','sensor.fan.status[extremeFanOperational.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'84','','','0','','','','','2',NULL,'MIB: EXTREME-SYSTEM-MIB\r\nOperational status of a cooling fan.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','601afb1fdc4744b29c2e52a260ccecfd');
INSERT INTO `items` (`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`,`uuid`) values ('27665','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.47.1.1.1.1.2,{#MODULE_NAME},1.3.6.1.2.1.47.1.1.1.1.7]','10227','Module Discovery','module.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Filter limits results to \'Module level1\' or Fabric Modules','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','268421e66ba94cecac8fdeac7dfbffbb');
INSERT INTO `items` (`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`,`uuid`) values ('27666','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.47.1.1.1.1.2,{#MODULE_NAME},1.3.6.1.2.1.47.1.1.1.1.7]','10227','Temperature Discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering modules temperature (same filter as in Module Discovery) plus and temperature sensors','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','14606d314fc24002a0a4cda2fa009d45');
INSERT INTO `items` (`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`,`uuid`) values ('27667','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_DESCR},1.3.6.1.2.1.47.1.1.1.1.2]','10227','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering all entities of PhysicalClass - 7: fan(7)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fdd2fcda49ab4f00861f1a2dcee1dcad');
INSERT INTO `items` (`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`,`uuid`) values ('27668','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_DESCR},1.3.6.1.2.1.47.1.1.1.1.2]','10227','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering all entities of PhysicalClass - 6: powerSupply(6)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','75f751bae6e64b9892c9283cefa8db80');
INSERT INTO `items` (`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`,`uuid`) values ('27669','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7]','10227','Entity Discovery','entity.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab903dd9cb4b49daba7a1bb0c2c65a1f');
INSERT INTO `items` (`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`,`uuid`) values ('27671','20','1.3.6.1.4.1.25506.2.6.1.1.1.1.6.{#SNMPINDEX}','10227','{#MODULE_NAME}: CPU utilization','system.cpu.util[hh3cEntityExtCpuUsage.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HH3C-ENTITY-EXT-MIB\r\nThe CPU usage for this entity. Generally, the CPU usage\r\nwill calculate the overall CPU usage on the entity, and it\r\nis not sensible with the number of CPU on the entity','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','edbaa4c5e6e744b3bd4d7ab85b42c1ca');
INSERT INTO `items` (`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`,`uuid`) values ('27672','20','1.3.6.1.4.1.25506.2.6.1.1.1.1.12.{#SNMPINDEX}','10227','{#SNMPVALUE}: Temperature','sensor.temp.value[hh3cEntityExtTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HH3C-ENTITY-EXT-MIB\r\nThe temperature for the {#SNMPVALUE}.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4b18458608f74e0ca48af5cb674e324d');
INSERT INTO `items` (`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`,`uuid`) values ('27673','20','1.3.6.1.4.1.25506.2.6.1.1.1.1.19.{#SNMPINDEX}','10227','{#ENT_NAME}: Fan status','sensor.fan.status[hh3cEntityExtErrorStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'87','','','0','','','','','2',NULL,'MIB: HH3C-ENTITY-EXT-MIB\r\nIndicate the error state of this entity object.\r\nfanError(41) means that the fan stops working.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9cacbc1e037a4c0abdf0862014484a3c');
INSERT INTO `items` (`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`,`uuid`) values ('27674','20','1.3.6.1.4.1.25506.2.6.1.1.1.1.19.{#SNMPINDEX}','10227','{#ENT_NAME}: Power supply status','sensor.psu.status[hh3cEntityExtErrorStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'87','','','0','','','','','2',NULL,'MIB: HH3C-ENTITY-EXT-MIB\r\nIndicate the error state of this entity object.\r\npsuError(51) means that the Power Supply Unit is in the state of fault.\r\nrpsError(61) means the Redundant Power Supply is in the state of fault.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1ed2aa667cc94e6f9fb3abb9cb8de9b2');
INSERT INTO `items` (`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`,`uuid`) values ('27675','20','1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX}','10227','{#ENT_NAME}: Operating system','system.sw.os[entPhysicalSoftwareRev.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a54f57e58f494300b99161b1fb8f2edf');
INSERT INTO `items` (`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`,`uuid`) values ('27676','20','1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX}','10227','{#ENT_NAME}: Hardware version(revision)','system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a63db3df3939447397df5bf9a58edde1');
INSERT INTO `items` (`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`,`uuid`) values ('27677','20','1.3.6.1.2.1.47.1.1.1.1.9.{#SNMPINDEX}','10227','{#ENT_NAME}: Firmware version','system.hw.firmware[entPhysicalFirmwareRev.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','88a392e093444292b3c58c5f9d5305a5');
INSERT INTO `items` (`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`,`uuid`) values ('27678','20','1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}','10227','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ebc80e149fc4db7a4fb7df2322aad86');
INSERT INTO `items` (`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`,`uuid`) values ('27679','20','1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX}','10227','{#ENT_NAME}: Hardware model name','system.hw.model[entPhysicalDescr.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc241e313bde48e1bd23f3eefb667439');
INSERT INTO `items` (`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`,`uuid`) values ('27745','20','discovery[{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7]','10229','MPU Discovery','mpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234. Filter limits results to Main Processing Units','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','597d528e3de944a5807ff37a97763a7e');
INSERT INTO `items` (`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`,`uuid`) values ('27746','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7]','10229','Entity Discovery','entity.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','df877d1d7c9f44b5917b47aa474bbd2f');
INSERT INTO `items` (`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`,`uuid`) values ('27747','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.2011.5.25.31.1.1.10.1.1]','10229','FAN Discovery','discovery.fans','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','40ceaa1bc97342c18e6af3e0b931a08b');
INSERT INTO `items` (`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`,`uuid`) values ('27748','20','1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX}','10229','{#ENT_NAME}: Hardware version(revision)','system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','110646e0177f4fbe840f6ba2d1d2afc4');
INSERT INTO `items` (`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`,`uuid`) values ('27749','20','1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX}','10229','{#ENT_NAME}: Operating system','system.sw.os[entPhysicalSoftwareRev.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4472c8f94cd241468c851283f9854730');
INSERT INTO `items` (`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`,`uuid`) values ('27750','20','1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}','10229','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d7e128d526c14d1bb5519090104f0e04');
INSERT INTO `items` (`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`,`uuid`) values ('27751','20','1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.{#SNMPINDEX}','10229','{#ENT_NAME}: Temperature','sensor.temp.value[hwEntityTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HUAWEI-ENTITY-EXTENT-MIB\r\nThe temperature for the {#SNMPVALUE}.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','29549c71091a44108377a90eb9afff25');
INSERT INTO `items` (`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`,`uuid`) values ('27753','20','1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.{#SNMPINDEX}','10229','{#ENT_NAME}: CPU utilization','system.cpu.util[hwEntityCpuUsage.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HUAWEI-ENTITY-EXTENT-MIB\r\nThe CPU usage for this entity. Generally, the CPU usage will calculate the overall CPU usage on the entity, and itis not sensible with the number of CPU on the entity.\r\nReference: http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6fae73ea06ff4e99956085fb807d75ae');
INSERT INTO `items` (`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`,`uuid`) values ('27754','20','1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX}','10229','{#ENT_NAME}: Hardware model name','system.hw.model[entPhysicalDescr.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c25af879114744fda58fb8516a0c171a');
INSERT INTO `items` (`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`,`uuid`) values ('27755','20','1.3.6.1.4.1.2011.5.25.31.1.1.10.1.7.{#SNMPINDEX}','10229','#{#SNMPVALUE}: Fan status','sensor.fan.status[hwEntityFanState.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'89','','','0','','','','','2',NULL,'MIB: HUAWEI-ENTITY-EXTENT-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dfd00d1c27034d1b8f800939e33e8ddb');
INSERT INTO `items` (`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`,`uuid`) values ('27777','20','1.3.6.1.4.1.10222.2.1.1.1.0','10230','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ICS-CHASSIS-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9cfafe1389af4e569886c5acd8d95de9');
INSERT INTO `items` (`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`,`uuid`) values ('27778','20','1.3.6.1.4.1.10222.2.1.1.1.0','10230','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ICS-CHASSIS-MIB','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','656086e221e84a9a90cc16855f564571');
INSERT INTO `items` (`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`,`uuid`) values ('27779','20','discovery[{#SENSOR_TYPE},1.3.6.1.4.1.10222.2.1.9.8.1.2,{#SENSOR_INFO},1.3.6.1.4.1.10222.2.1.9.8.1.7]','10230','Temperature Discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering sensor\'s table with temperature filter','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9c408be55f0b4b1384191275f1b624a8');
INSERT INTO `items` (`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`,`uuid`) values ('27780','20','discovery[{#ENT_CLASS},1.3.6.1.4.1.10222.2.1.1.9.1.3,{#ENT_NAME},1.3.6.1.4.1.10222.2.1.1.9.1.2]','10230','Unit Discovery','unit.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1b369978fa354767834598c87c0df1e0');
INSERT INTO `items` (`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`,`uuid`) values ('27781','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.10222.2.1.4.7.1.2]','10230','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A textual description of the power supply, that can be assigned by the administrator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','757aae6d5bcc40f5a14f1c3225569892');
INSERT INTO `items` (`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`,`uuid`) values ('27782','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.10222.2.1.6.5.1.2]','10230','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'icsChassisFanDescription of icsChassisFanTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','74e3c6efb7f24ffaa2b59c3518d37b32');
INSERT INTO `items` (`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`,`uuid`) values ('27783','20','1.3.6.1.4.1.10222.2.1.9.8.1.3.{#SNMPINDEX}','10230','{#SENSOR_INFO}: Temperature status','sensor.temp.status[icsChassisSensorSlotOperStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'91','','','0','','','','','2',NULL,'MIB: ICS-CHASSIS-MIB\r\nThe operational status of the sensor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16048f5e4b6a497d8007336a3faa7ccf');
INSERT INTO `items` (`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`,`uuid`) values ('27784','20','1.3.6.1.4.1.10222.2.1.9.8.1.8.{#SNMPINDEX}','10230','{#SENSOR_INFO}: Temperature','sensor.temp.value[icsChassisSensorSlotValue.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ICS-CHASSIS-MIB\r\nThe current value read from the sensor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','943a4862c1e34cc1a30364a2677b327b');
INSERT INTO `items` (`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`,`uuid`) values ('27785','20','1.3.6.1.4.1.10222.2.1.1.10.1.1.{#SNMPINDEX}','10230','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[icsChassisSystemUnitFruSerialNumber.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ICS-CHASSIS-MIB\r\nThe serial number of the FRU. If not available, this value is a zero-length string.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fe7ccdebf77246009bc91f9a18cc8ddb');
INSERT INTO `items` (`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`,`uuid`) values ('27786','20','1.3.6.1.4.1.10222.2.1.4.7.1.3.{#SNMPINDEX}','10230','{#SNMPVALUE}: Power supply status','sensor.psu.status[icsChassisPowerSupplyEntry.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'92','','','0','','','','','2',NULL,'MIB: ICS-CHASSIS-MIB\r\nActual status of the power supply:\r\n(1) unknown: status not known.\r\n(2) disabled: power supply is disabled.\r\n(3) failed - power supply is unable to supply power due to failure.\r\n(4) warning - power supply is supplying power, but an output or sensor is bad or warning.\r\n(5) standby - power supply believed usable,but not supplying power.\r\n(6) engaged - power supply is supplying power.\r\n(7) redundant - power supply is supplying power, but not needed.\r\n(8) notPresent - power supply is supplying power is not present.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2fbaed6a1a0d4b5b85be9f48d0fd7862');
INSERT INTO `items` (`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`,`uuid`) values ('27787','20','1.3.6.1.4.1.10222.2.1.6.5.1.3.{#SNMPINDEX}','10230','{#SNMPVALUE}: Fan status','sensor.fan.status[icsChassisFanOperStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'90','','','0','','','','','2',NULL,'MIB: ICS-CHASSIS-MIB\r\nThe operational status of the fan unit.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c0bcbe5b06e34e65b1ea5d24e5c7bf18');
INSERT INTO `items` (`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`,`uuid`) values ('27812','20','1.3.6.1.4.1.2636.3.1.2.0','10231','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: JUNIPER-MIB\r\nThe name, model, or detailed description of the box,indicating which product the box is about, for example \'M40\'.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7a472141ebcf4816bffe9bb49f003db6');
INSERT INTO `items` (`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`,`uuid`) values ('27813','20','1.3.6.1.4.1.2636.3.1.3.0','10231','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: JUNIPER-MIB\r\nThe serial number of this subject, blank if unknown or unavailable.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b836efdbd3ac4becac319030250c1beb');
INSERT INTO `items` (`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`,`uuid`) values ('27814','20','1.3.6.1.4.1.2636.3.4.2.3.1.0','10231','Overall system health status','system.status[jnxRedAlarmState.0]','30s','2w','0d','0','3','','','','',NULL,'93','','','0','','','','','0',NULL,'MIB: JUNIPER-ALARM-MIB\r\nThe red alarm indication on the craft interface panel.\r\nThe red alarm is on when there is some system\r\nfailure or power supply failure or the system\r\nis experiencing a hardware malfunction or some\r\nthreshold is being exceeded.\r\n\r\nThis red alarm state could be turned off by the\r\nACO/LT (Alarm Cut Off / Lamp Test) button on the\r\nfront panel module.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','414a29c595b2439dacb15b4fa0734ab4');
INSERT INTO `items` (`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`,`uuid`) values ('27815','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5]','10231','CPU and Memory Discovery','jnxOperatingTable.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning JUNIPER-MIB::jnxOperatingTable for CPU and Memory\r\nhttp://kb.juniper.net/InfoCenter/index?page=content&id=KB17526&actp=search. Filter limits results to Routing Engines','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3ce46d56008248cf960c6bf689ea7c0b');
INSERT INTO `items` (`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`,`uuid`) values ('27816','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.7,{#SENSOR_INFO},1.3.6.1.4.1.2636.3.1.13.1.5]','10231','Temperature discovery','jnxOperatingTable.discovery.temp','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning JUNIPER-MIB::jnxOperatingTable for Temperature\r\nhttp://kb.juniper.net/InfoCenter/index?page=content&id=KB17526&actp=search. Filter limits results to Routing Engines','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e28a9bc06ada4427a7e135aa41c4f76b');
INSERT INTO `items` (`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`,`uuid`) values ('27817','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5.4]','10231','FAN Discovery','jnxOperatingTable.discovery.fans','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning JUNIPER-MIB::jnxOperatingTable for Fans','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6e60561a198d43cf8c0fbe9a8ba1c492');
INSERT INTO `items` (`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`,`uuid`) values ('27818','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5.2]','10231','PSU Discovery','jnxOperatingTable.discovery.psu','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning JUNIPER-MIB::jnxOperatingTable for Power Supplies','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa36adb11a874374a739d96a2f9a0b3d');
INSERT INTO `items` (`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`,`uuid`) values ('27821','20','1.3.6.1.4.1.2636.3.1.13.1.7.{#SNMPINDEX}','10231','{#SENSOR_INFO}: Temperature','sensor.temp.value[jnxOperatingTemp.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: JUNIPER-MIB\r\nThe temperature in Celsius (degrees C) of {#SENSOR_INFO}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','96f44fbce5de45e6918efd140283453b');
INSERT INTO `items` (`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`,`uuid`) values ('27822','20','1.3.6.1.4.1.2636.3.1.13.1.6.4.{#SNMPINDEX}','10231','{#SNMPVALUE}: Fan status','sensor.fan.status[jnxOperatingState.4.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'94','','','0','','','','','2',NULL,'MIB: JUNIPER-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','be611a0c7aee4d72a0b5c53d199b7469');
INSERT INTO `items` (`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`,`uuid`) values ('27823','20','1.3.6.1.4.1.2636.3.1.13.1.6.2.{#SNMPINDEX}','10231','{#SNMPVALUE}: Power supply status','sensor.psu.status[jnxOperatingState.2.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'94','','','0','','','','','2',NULL,'MIB: JUNIPER-MIB\r\nIf they are using DC power supplies there is a known issue on PR 1064039 where the fans do not detect the temperature correctly and fail to cool the power supply causing the shutdown to occur.\r\nThis is fixed in Junos 13.3R7 https://forums.juniper.net/t5/Routing/PEM-0-not-OK-MX104/m-p/289644#M14122','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c7101436ab3a4c0696cf74bc3c97c265');
INSERT INTO `items` (`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`,`uuid`) values ('27893','20','1.3.6.1.2.1.1.1.0','10233','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8d2c5a405ffa42fc81a2c9b914e20874');
INSERT INTO `items` (`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`,`uuid`) values ('27894','20','1.3.6.1.4.1.14988.1.1.7.3.0','10233','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c5a89f75a8d4e38ad021b3539ce8273');
INSERT INTO `items` (`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`,`uuid`) values ('27895','20','1.3.6.1.4.1.14988.1.1.7.4.0','10233','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','260eff3ec4034e33aea9c25962a782be');
INSERT INTO `items` (`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`,`uuid`) values ('27898','20','1.3.6.1.2.1.25.2.3.1.5.65536','10233','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0636e173288d42e68faf62c381a65087');
INSERT INTO `items` (`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`,`uuid`) values ('27900','20','1.3.6.1.2.1.25.2.3.1.6.65536','10233','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7d4a1591887848028ea8bae81b7d01a7');
INSERT INTO `items` (`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`,`uuid`) values ('27901','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10233','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb2a399dbdb54484a9f58ae2437c32fb');
INSERT INTO `items` (`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`,`uuid`) values ('27902','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10233','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9a4ae5c2a50d4414ab0eed2c70bcd9c3');
INSERT INTO `items` (`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`,`uuid`) values ('27903','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10233','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6bb65981928d40378a95ee74aff82cc5');
INSERT INTO `items` (`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`,`uuid`) values ('27904','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10233','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','560173245c8245128bc7071b8201fe12');
INSERT INTO `items` (`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`,`uuid`) values ('27905','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10233','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad101c676b5243eca67eb68d879f5212');
INSERT INTO `items` (`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`,`uuid`) values ('27906','15','','10233','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b602ff4381e04e50a9282fe6f9f5c834');
INSERT INTO `items` (`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`,`uuid`) values ('27907','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10233','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','64747345083e4b38b0e963ccd0b8271b');
INSERT INTO `items` (`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`,`uuid`) values ('27908','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10233','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','35034472b281453bbfbcf65b5d60dd7e');
INSERT INTO `items` (`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`,`uuid`) values ('27930','20','1.3.6.1.4.1.4526.10.1.1.1.3.0','10234','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FASTPATH-SWITCHING-MIB','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2470e113b1174c70a1265bf4c4252b5f');
INSERT INTO `items` (`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`,`uuid`) values ('27931','20','1.3.6.1.4.1.4526.10.1.1.1.4.0','10234','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FASTPATH-SWITCHING-MIB\r\nSerial number of the switch','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','697f863cf86544d4a366e8827976ed50');
INSERT INTO `items` (`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`,`uuid`) values ('27935','20','1.3.6.1.4.1.4526.10.1.1.5.2.0','10234','Total memory','vm.memory.total[agentSwitchCpuProcessMemAvailable.0]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FASTPATH-SWITCHING-MIB\r\nThe total Memory allocated for the tasks','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','98037eeab349478c8c393b163ec5193e');
INSERT INTO `items` (`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`,`uuid`) values ('27936','20','1.3.6.1.4.1.4526.10.1.1.4.9.0','10234','CPU utilization','system.cpu.util[agentSwitchCpuProcessTotalUtilization.0]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FASTPATH-SWITCHING-MIB\r\nCPU utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e8ffc912f0ee47cca513861fcecfddb0');
INSERT INTO `items` (`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`,`uuid`) values ('27937','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.8.1.1]','10234','Temperature Discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesTempSensorsTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c63b577cb8544b54a40a4d86bc926ada');
INSERT INTO `items` (`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`,`uuid`) values ('27938','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.6.1.1]','10234','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'FASTPATH-BOXSERVICES-PRIVATE-MIB::1.3.6.1.4.1.4526.10.43.1.6.1.1','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8fb96a540bab4deba00626237797cb62');
INSERT INTO `items` (`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`,`uuid`) values ('27939','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.7.1.1]','10234','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesPowSupplyIndex','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','251d90e9c6ae4dad92328b677f6d6edf');
INSERT INTO `items` (`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`,`uuid`) values ('27940','20','1.3.6.1.4.1.4526.10.43.1.8.1.3.{#SNMPINDEX}','10234','#{#SNMPVALUE}: Temperature status','sensor.temp.status[boxServicesTempSensorState.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'99','','','0','','','','','2',NULL,'MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB\r\nThe state of temperature sensor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac4a292ab2e548fea3326aaa92162140');
INSERT INTO `items` (`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`,`uuid`) values ('27941','20','1.3.6.1.4.1.4526.10.43.1.8.1.5.{#SNMPINDEX}','10234','#{#SNMPVALUE}: Temperature','sensor.temp.value[boxServicesTempSensorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB\r\nThe temperature value reported by sensor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','488762ecfb1549d294886681a6ec34f6');
INSERT INTO `items` (`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`,`uuid`) values ('27942','20','1.3.6.1.4.1.4526.10.43.1.6.1.3.{#SNMPINDEX}','10234','#{#SNMPVALUE}: Fan status','sensor.fan.status[boxServicesFanItemState.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'98','','','0','','','','','2',NULL,'MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB\r\nThe status of fan','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9f515526de2c47108182b444d1d093c3');
INSERT INTO `items` (`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`,`uuid`) values ('27943','20','1.3.6.1.4.1.4526.10.43.1.7.1.3.{#SNMPINDEX}','10234','#{#SNMPVALUE}: Power supply status','sensor.psu.status[boxServicesPowSupplyItemState.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'97','','','0','','','','','2',NULL,'MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB\r\nThe status of power supply','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa5a704044b44909b2a348184ec71bc0');
INSERT INTO `items` (`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`,`uuid`) values ('27967','20','1.3.6.1.2.1.47.1.1.1.1.9.1','10235','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e7dda2d7f577404dbe8e5beba7609617');
INSERT INTO `items` (`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`,`uuid`) values ('27968','20','1.3.6.1.2.1.47.1.1.1.1.8.1','10235','Hardware version(revision)','system.hw.version','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a842a44da43a4d2c906d0c642eb11411');
INSERT INTO `items` (`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`,`uuid`) values ('27970','20','1.3.6.1.2.1.47.1.1.1.1.11.1','10235','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','684868048c1645aea9d8ad94514bd4c6');
INSERT INTO `items` (`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`,`uuid`) values ('27971','20','1.3.6.1.2.1.47.1.1.1.1.13.1','10235','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5ff90f06a84a43ac937d3798b360bbd9');
INSERT INTO `items` (`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`,`uuid`) values ('27972','20','1.3.6.1.4.1.27514.100.1.11.7.0','10235','Used memory','vm.memory.used[switchMemoryBusy.0]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: QTECH-MIB\r\nUsed memory in Bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8821718704db4ab4a8af8fbeb61dde93');
INSERT INTO `items` (`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`,`uuid`) values ('27973','20','1.3.6.1.4.1.27514.100.1.11.6.0','10235','Total memory','vm.memory.total[switchMemorySize.0]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: QTECH-MIB\r\nTotal memory in Bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','609971d1876444659f779ef28ed81ce7');
INSERT INTO `items` (`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`,`uuid`) values ('27975','20','1.3.6.1.4.1.27514.100.1.11.10.0','10235','CPU utilization','system.cpu.util[switchCpuUsage.0]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: QTECH-MIB\r\nCPU utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','daab52a7d91b431b8ec579200e53a0c4');
INSERT INTO `items` (`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`,`uuid`) values ('27997','20','1.3.6.1.4.1.11863.6.1.1.5.0','10236','Hardware version(revision)','system.hw.version','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TPLINK-SYSINFO-MIB\r\nThe hardware version of the product.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','20690cbfeb924ec79f67200da3e0577c');
INSERT INTO `items` (`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`,`uuid`) values ('27998','20','1.3.6.1.4.1.11863.6.1.1.6.0','10236','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TPLINK-SYSINFO-MIB\r\nThe software version of the product.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1d20905fda0442b8b7b0eefcf473afd9');
INSERT INTO `items` (`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`,`uuid`) values ('27999','20','1.3.6.1.4.1.11863.6.1.1.8.0','10236','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TPLINK-SYSINFO-MIB\r\nThe Serial number of the product.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d2cc080e7e7f49a19bb27737c749ba36');
INSERT INTO `items` (`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`,`uuid`) values ('28000','20','1.3.6.1.4.1.11863.6.1.1.5.0','10236','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TPLINK-SYSINFO-MIB\r\nThe hardware version of the product.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a571370a974c43deb9b5bb531d4dc4ce');
INSERT INTO `items` (`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`,`uuid`) values ('28001','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.11863.6.4.1.1.1.1.1]','10236','CPU Discovery','cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering TPLINK-SYSMONITOR-MIB::tpSysMonitorCpuTable, displays the CPU utilization of all UNITs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5325de505855448a8c785066374ba201');
INSERT INTO `items` (`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`,`uuid`) values ('28002','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.11863.6.4.1.2.1.1.1]','10236','Memory Discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering TPLINK-SYSMONITOR-MIB::tpSysMonitorMemoryTable, displays the memory utilization of all UNITs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7a3144453fc644b3bd42dec4ba843bef');
INSERT INTO `items` (`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`,`uuid`) values ('28003','20','1.3.6.1.4.1.11863.6.4.1.1.1.1.3.{#SNMPINDEX}','10236','#{#SNMPVALUE}: CPU utilization','system.cpu.util[tpSysMonitorCpu1Minute.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TPLINK-SYSMONITOR-MIB\r\nDisplays the CPU utilization in 1 minute.\r\nReference: http://www.tp-link.com/faq-1330.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84929a905e144746b047a20bbfb7ae40');
INSERT INTO `items` (`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`,`uuid`) values ('28026','20','1.2.840.10036.3.1.2.1.3.5','10237','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IEEE802dot11-MIB\r\nA printable string used to identify the manufacturer\'s product name of the resource. Maximum string length is 128 octets.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e770de183b1e4ffc9348750520719b41');
INSERT INTO `items` (`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`,`uuid`) values ('28027','20','1.2.840.10036.3.1.2.1.4.5','10237','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IEEE802dot11-MIB\r\nPrintable string used to identify the manufacturer\'s product version of the resource. Maximum string length is 128 octets.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9e8ab4b180f24b64bcddfc1606d616d0');
INSERT INTO `items` (`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`,`uuid`) values ('28031','20','1.3.6.1.4.1.10002.1.1.1.4.2.1.3.2','10237','CPU utilization','system.cpu.util[loadValue.2]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FROGFOOT-RESOURCES-MIB\r\n5 minute load average of processor load.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1aaf7d729983431cb28351e7ba0c8235');
INSERT INTO `items` (`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`,`uuid`) values ('28141','20','1.3.6.1.4.1.11.2.14.11.5.1.1.3.0','10250','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: NETSWITCH-MIB\r\nContains the operating code version number (also known as software or firmware).\r\nFor example, a software version such as A.08.01 is described as follows:\r\nA the function set available in your router\r\n08 the common release number\r\n01 updates to the current common release','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dadf12eb4c0a42bf9504e15bc4fe6d7c');
INSERT INTO `items` (`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`,`uuid`) values ('28142','20','1.3.6.1.4.1.11.2.36.1.1.2.9.0','10250','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SEMI-MIB','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','12d7d4a915714166b2c0a48733235ac1');
INSERT INTO `items` (`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`,`uuid`) values ('28143','20','1.3.6.1.4.1.11.2.14.11.5.1.9.6.1.0','10250','CPU utilization','system.cpu.util[hpSwitchCpuStat.0]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STATISTICS-MIB\r\nThe CPU utilization in percent(%).\r\nReference: http://h20564.www2.hpe.com/hpsc/doc/public/display?docId=emr_na-c02597344&sp4ts.oid=51079','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','083172af308e401a99a662f615a5b450');
INSERT INTO `items` (`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`,`uuid`) values ('28144','20','discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3]','10250','Temperature Discovery','temp.precision0.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'ENTITY-SENSORS-MIB::EntitySensorDataType discovery with temperature filter','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5039f958791e40dbb19e16359dad0898');
INSERT INTO `items` (`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`,`uuid`) values ('28145','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.1]','10250','Memory Discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of NETSWITCH-MIB::hpLocalMemTable, A table that contains information on all the local memory for each slot.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e175ffc9f7db4714bc99450e86a3963f');
INSERT INTO `items` (`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`,`uuid`) values ('28146','20','discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4]','10250','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.2 - fans and are present','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ebc407e29b1f4575b50ca7bfb3a2abc8');
INSERT INTO `items` (`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`,`uuid`) values ('28147','20','discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4]','10250','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.1 - power supplies and are present','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','75ff389432a443dd89075f5a89bfbc1e');
INSERT INTO `items` (`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`,`uuid`) values ('28148','20','discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4]','10250','Temp Status Discovery','temp.status.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.3 - over temp status and are present','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8e9738236f3a4f5eb29df85a46e82326');
INSERT INTO `items` (`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`,`uuid`) values ('28149','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7]','10250','Entity Discovery','entity.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4d827ed3c2a6436d9ea453ef1568d47e');
INSERT INTO `items` (`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`,`uuid`) values ('28150','20','1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX}','10250','{#SENSOR_INFO}: Temperature','sensor.temp.value[entPhySensorValue.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-SENSORS-MIB\r\nThe most recent measurement obtained by the agent for this sensor.\r\nTo correctly interpret the value of this object, the associated entPhySensorType,\r\nentPhySensorScale, and entPhySensorPrecision objects must also be examined.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0f33142de9874eb288d48337becae31a');
INSERT INTO `items` (`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`,`uuid`) values ('28153','20','1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.7.{#SNMPINDEX}','10250','#{#SNMPVALUE}: Used memory','vm.memory.used[hpLocalMemAllocBytes.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: NETSWITCH-MIB\r\nThe number of currently allocated bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a724e90409b746068c4765dbbcfaf70d');
INSERT INTO `items` (`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`,`uuid`) values ('28154','20','1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX}','10250','{#ENT_DESCR}: Fan status','sensor.fan.status[hpicfSensorStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'88','','','0','','','','','2',NULL,'MIB: HP-ICF-CHASSIS\r\nActual status indicated by the sensor: {#ENT_DESCR}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','939c03f1532944b4bfb732eb52b4d566');
INSERT INTO `items` (`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`,`uuid`) values ('28155','20','1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX}','10250','{#ENT_DESCR}: Power supply status','sensor.psu.status[hpicfSensorStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'88','','','0','','','','','2',NULL,'MIB: HP-ICF-CHASSIS\r\nActual status indicated by the sensor: {#ENT_DESCR}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','221f46a720ee4b2dbb35ad055f784146');
INSERT INTO `items` (`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`,`uuid`) values ('28156','20','1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX}','10250','{#ENT_DESCR}: Temperature status','sensor.temp.status[hpicfSensorStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'88','','','0','','','','','2',NULL,'MIB: HP-ICF-CHASSIS\r\nActual status indicated by the sensor: {#ENT_DESCR}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e5dbc6e86d0e4272aab83171cd9115e7');
INSERT INTO `items` (`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`,`uuid`) values ('28157','20','1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX}','10250','{#ENT_NAME}: Hardware version(revision)','system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','baffe9cf11744c2286592a35934fb5b0');
INSERT INTO `items` (`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`,`uuid`) values ('28158','20','1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX}','10250','{#ENT_NAME}: Hardware model name','system.hw.model[entPhysicalDescr.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6bd9d8c8d9cd473fb7e562cbde4de097');
INSERT INTO `items` (`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`,`uuid`) values ('28196','20','discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3]','10251','Temperature Discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'ENTITY-SENSORS-MIB::EntitySensorDataType discovery with temperature filter','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','247124c5f8db4825bf4ea593bd0ff413');
INSERT INTO `items` (`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`,`uuid`) values ('28197','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2]','10251','Fan Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'ENTITY-SENSORS-MIB::EntitySensorDataType discovery with rpm filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c10f61247804bd4a8aa59fb3568d938');
INSERT INTO `items` (`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`,`uuid`) values ('28198','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7]','10251','Entity Discovery','entity.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','55a44fb2235f4e25b960422338674193');
INSERT INTO `items` (`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`,`uuid`) values ('28199','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7]','10251','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8d0cb484e4544ffca4319ccece754123');
INSERT INTO `items` (`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`,`uuid`) values ('28200','20','1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX}','10251','{#SENSOR_INFO}: Temperature status','sensor.temp.status[entPhySensorOperStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'57','','','0','','','','','2',NULL,'MIB: ENTITY-SENSORS-MIB\r\nThe operational status of the sensor {#SENSOR_INFO}. Possible values:\r\n- ok(1) indicates that the agent can obtain the sensor value.\r\n- unavailable(2) indicates that the agent presently cannot obtain the sensor value.\r\n- nonoperational(3) indicates that the agent believes the sensor is broken. The sensor could have a hard failure (disconnected wire), or a soft failure such as out-of-range, jittery, or wildly fluctuating readings.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4f298c0f2b6547b7b1827b3faebd1089');
INSERT INTO `items` (`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`,`uuid`) values ('28201','20','1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX}','10251','{#SENSOR_INFO}: Temperature','sensor.temp.value[entPhySensorValue.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-SENSORS-MIB\r\nThe most recent measurement obtained by the agent for this sensor.\r\nTo correctly interpret the value of this object, the associated entPhySensorType,\r\nentPhySensorScale, and entPhySensorPrecision objects must also be examined.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ffe7f6dff12f4b4ba24ddc28c6d1182b');
INSERT INTO `items` (`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`,`uuid`) values ('28202','20','1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX}','10251','{#SENSOR_INFO}: Fan status','sensor.fan.status[entPhySensorOperStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'57','','','0','','','','','2',NULL,'MIB: ENTITY-SENSORS-MIB\r\nThe operational status of the sensor {#SENSOR_INFO}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','401d26902e6f4080ab2b0123d95a08ba');
INSERT INTO `items` (`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`,`uuid`) values ('28203','20','1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX}','10251','{#SENSOR_INFO}: Fan speed','sensor.fan.speed[entPhySensorValue.{#SNMPINDEX}]','1m','90d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-SENSORS-MIB\r\nThe most recent measurement obtained by the agent for this sensor.\r\nTo correctly interpret the value of this object, the associated entPhySensorType,\r\nentPhySensorScale, and entPhySensorPrecision objects must also be examined.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','284de830d5924f528b0c86abe5dbc48d');
INSERT INTO `items` (`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`,`uuid`) values ('28204','20','1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}','10251','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9f2e2fd678e94554be29654a5746099f');
INSERT INTO `items` (`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`,`uuid`) values ('28205','20','1.3.6.1.2.1.47.1.1.1.1.13.{#SNMPINDEX}','10251','{#ENT_NAME}: Hardware model name','system.hw.model[entPhysicalModelName.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d3643a044d4544e8a3487ed79c3a5390');
INSERT INTO `items` (`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`,`uuid`) values ('28206','20','1.3.6.1.2.1.131.1.1.1.3.{#SNMPINDEX}','10251','{#ENT_NAME}: Power supply status','sensor.psu.status[entStateOper.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'95','','','0','','','','','2',NULL,'MIB: ENTITY-STATE-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','38a00c9f9f9447d0a0c9788ca9dcc9f2');
INSERT INTO `items` (`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`,`uuid`) values ('28244','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5]','10252','CPU Discovery','cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable,\r\nindexed with cpmCPUTotalIndex.\r\nThis table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,\r\nlike different CPU chips, group of CPUs, or CPUs in different modules/cards.\r\nIn case of a single CPU, cpmCPUTotalTable has only one entry.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','372b5656330f41d18ccf99ca89fa8504');
INSERT INTO `items` (`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`,`uuid`) values ('28246','20','1.3.6.1.4.1.9.9.109.1.1.1.1.5.{#SNMPINDEX}','10252','{#SNMPVALUE}: CPU utilization','system.cpu.util[cpmCPUTotal5min.{#SNMPINDEX}]','5m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-PROCESS-MIB\r\nThe overall CPU busy percentage in the last 5 minute\r\nperiod. This object deprecates the avgBusy5 object from\r\nthe OLD-CISCO-SYSTEM-MIB. This object is deprecated\r\nby cpmCPUTotal5minRev which has the changed range\r\nof value (0..100).\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b7a375f679024cb990ae97933e5f77d6');
INSERT INTO `items` (`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`,`uuid`) values ('28248','5','','10047','Zabbix server: Preprocessing queue','zabbix[preprocessing_queue]','1m','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of values enqueued in the preprocessing queue.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','97485f6c9efb443caa54b44c15fdbfeb');
INSERT INTO `items` (`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`,`uuid`) values ('28250','5','','10048','Zabbix proxy: Utilization of vmware data collector processes, in %','zabbix[process,vmware collector,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time vmware collector processes have been busy in the last minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a5a7076a175c400f866a4d873d12e1e4');
INSERT INTO `items` (`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`,`uuid`) values ('28251','5','','10048','Zabbix proxy: VMware cache, % used','zabbix[vmware,buffer,pused]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Availability statistics of Zabbix vmware cache. Percentage of used buffer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fc7412c1a02240b7931d3511743a2662');
INSERT INTO `items` (`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`,`uuid`) values ('28308','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7]','10254','Entity discovery','entity.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','54b839c0606741bfad5c84497cf1d295');
INSERT INTO `items` (`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`,`uuid`) values ('28309','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7]','10254','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','01b83e46160a437da4345824f472cc3b');
INSERT INTO `items` (`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`,`uuid`) values ('28323','20','1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX}','10254','{#SENSOR_INFO}: Temperature','sensor.temp.value[entPhySensorValue.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-SENSORS-MIB\r\nThe most recent measurement obtained by the agent for this sensor.\r\nTo correctly interpret the value of this object, the associated entPhySensorType,\r\nentPhySensorScale, and entPhySensorPrecision objects must also be examined.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0f769e8ce0b647989085460beb9a2155');
INSERT INTO `items` (`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`,`uuid`) values ('28324','20','1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX}','10254','{#SENSOR_INFO}: Temperature status','sensor.temp.status[entPhySensorOperStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'58','','','0','','','','','2',NULL,'MIB: ENTITY-SENSORS-MIB\r\nThe operational status of the sensor {#SENSOR_INFO}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2851148fc01c4ba5afb5ab6a3deba5ff');
INSERT INTO `items` (`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`,`uuid`) values ('28325','20','1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX}','10254','{#SENSOR_INFO}: Fan speed','sensor.fan.speed[entPhySensorValue.{#SNMPINDEX}]','1m','90d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-SENSORS-MIB\r\nThe most recent measurement obtained by the agent for this sensor.\r\nTo correctly interpret the value of this object, the associated entPhySensorType,\r\nentPhySensorScale, and entPhySensorPrecision objects must also be examined.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7d86974a2de14ce3a254172b6bf0761f');
INSERT INTO `items` (`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`,`uuid`) values ('28326','20','1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX}','10254','{#SENSOR_INFO}: Fan status','sensor.fan.status[entPhySensorOperStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'58','','','0','','','','','2',NULL,'MIB: ENTITY-SENSORS-MIB\r\nThe operational status of the sensor {#SENSOR_INFO}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c5e6aaebbf9d467488fdfa1127a31fd7');
INSERT INTO `items` (`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`,`uuid`) values ('28327','20','1.3.6.1.2.1.47.1.1.1.1.13.{#SNMPINDEX}','10254','{#ENT_NAME}: Hardware model name','system.hw.model[entPhysicalModelName.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','161777c6b77c4c91a11e90dda46d4ec5');
INSERT INTO `items` (`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`,`uuid`) values ('28328','20','1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}','10254','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2f25bd11644d4bd3917d6c6693e74c99');
INSERT INTO `items` (`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`,`uuid`) values ('28329','20','1.3.6.1.2.1.131.1.1.1.3.{#SNMPINDEX}','10254','{#ENT_NAME}: Power supply status','sensor.psu.status[entStateOper.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'96','','','0','','','','','2',NULL,'MIB: ENTITY-STATE-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3ec518948c0d4472b55adc761ef7855d');
INSERT INTO `items` (`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`,`uuid`) values ('28341','20','1.3.6.1.4.1.674.10892.5.2.1.0','10255','Overall system health status','system.status[globalSystemStatus.0]','30s','2w','0d','0','3','','','','',NULL,'107','','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the overall rollup status of all components in the system being monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9750f3ffa5d648ce9e99adea1d92b54c');
INSERT INTO `items` (`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`,`uuid`) values ('28342','20','1.3.6.1.4.1.674.10892.5.1.3.12.0','10255','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the model name of the system.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9fc4348dc3c641dcbd0bb04b58145c91');
INSERT INTO `items` (`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`,`uuid`) values ('28344','20','1.3.6.1.4.1.674.10892.5.1.3.2.0','10255','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the service tag of the system.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4951ab6260b145ccb0c21abdcf5bb361');
INSERT INTO `items` (`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`,`uuid`) values ('28345','20','1.3.6.1.4.1.674.10892.5.1.1.8.0','10255','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the firmware version of a remote access card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e49f14d4a51f4018b17bd200d4819975');
INSERT INTO `items` (`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`,`uuid`) values ('28346','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.20.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.674.10892.5.4.700.20.1.8]','10255','Temperature CPU Discovery','temp.cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Probe Table IDRAC-MIB-SMIv2::temperatureProbeTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3e79192b1bba479faaf852cb15fe9e26');
INSERT INTO `items` (`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`,`uuid`) values ('28347','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.20.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.674.10892.5.4.700.20.1.8]','10255','Temperature Ambient Discovery','temp.ambient.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Probe Table IDRAC-MIB-SMIv2::temperatureProbeTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c3769c4cc3f3480ebad7b7c6e458c1c0');
INSERT INTO `items` (`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`,`uuid`) values ('28348','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.600.12.1.5,{#PSU_DESCR},1.3.6.1.4.1.674.10892.5.4.600.12.1.8]','10255','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'IDRAC-MIB-SMIv2::powerSupplyTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2a4ea81f9ecd4d04ad508c50395551da');
INSERT INTO `items` (`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`,`uuid`) values ('28349','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.12.1.5,{#FAN_DESCR},1.3.6.1.4.1.674.10892.5.4.700.12.1.8,{#TYPE},1.3.6.1.4.1.674.10892.5.4.700.12.1.7]','10255','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'IDRAC-MIB-SMIv2::coolingDeviceTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','10eaaac3051e47d9bf8fd5e6f0ff840e');
INSERT INTO `items` (`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`,`uuid`) values ('28350','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2]','10255','Physical Disk Discovery','physicaldisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'IDRAC-MIB-SMIv2::physicalDiskTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3a7ac779581345b9b4791390dee3baf4');
INSERT INTO `items` (`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`,`uuid`) values ('28351','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2]','10255','Virtual Disk Discovery','virtualdisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'IDRAC-MIB-SMIv2::virtualDiskTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','57a914e4d66d4babaadde1b0787ba734');
INSERT INTO `items` (`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`,`uuid`) values ('28352','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38,{#CNTLR_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79]','10255','Array Controller Discovery','physicaldisk.arr.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'IDRAC-MIB-SMIv2::controllerTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','49d6570731ad4cd9a33bf4afa660eaf8');
INSERT INTO `items` (`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`,`uuid`) values ('28353','20','discovery[{#BATTERY_NUM},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1]','10255','Array Controller Cache Discovery','array.cache.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'IDRAC-MIB-SMIv2::batteryTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2bb1759d46264c92b7cb70e7a1d18236');
INSERT INTO `items` (`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`,`uuid`) values ('28354','20','1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX}','10255','{#SENSOR_LOCALE}: Temperature','sensor.temp.value[temperatureProbeReading.CPU.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,'108','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\n0700.0020.0001.0006 This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete,the value returned for this attribute is the temperature that the probeis reading in tenths of degrees Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9b4381f5a34a4ff4bde7294fb34f2a27');
INSERT INTO `items` (`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`,`uuid`) values ('28355','20','1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX}','10255','{#SENSOR_LOCALE}: Temperature status','sensor.temp.status[temperatureProbeStatus.CPU.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'108','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\n0700.0020.0001.0005 This attribute defines the probe status of the temperature probe.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dfc1f114d3de4e9f98254116f5958025');
INSERT INTO `items` (`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`,`uuid`) values ('28356','20','1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX}','10255','{#SENSOR_LOCALE}: Temperature','sensor.temp.value[temperatureProbeReading.Ambient.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,'108','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\n0700.0020.0001.0006 This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete,the value returned for this attribute is the temperature that the probeis reading in tenths of degrees Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','406352e7250740939c22dd5cba8cd361');
INSERT INTO `items` (`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`,`uuid`) values ('28357','20','1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX}','10255','{#SENSOR_LOCALE}: Temperature status','sensor.temp.status[temperatureProbeStatus.Ambient.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'108','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\n0700.0020.0001.0005 This attribute defines the probe status of the temperature probe.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','050e4ce134df4ec9b35dbb470b89811b');
INSERT INTO `items` (`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`,`uuid`) values ('28358','20','1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX}','10255','{#PSU_DESCR}: Power supply status','sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'107','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\n0600.0012.0001.0005 This attribute defines the status of the power supply.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8036b7f190284e03b5cbc34e2fa081e3');
INSERT INTO `items` (`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`,`uuid`) values ('28359','20','1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX}','10255','{#FAN_DESCR}: Fan status','sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'108','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\n0700.0012.0001.0005 This attribute defines the probe status of the cooling device.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','363a909cc7eb4dc6a225417b2487bad8');
INSERT INTO `items` (`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`,`uuid`) values ('28360','20','1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX}','10255','{#FAN_DESCR}: Fan speed','sensor.fan.speed[coolingDeviceReading.{#SNMPINDEX}]','1m','90d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\n0700.0012.0001.0006 This attribute defines the reading for a cooling device\r\nof subtype other than coolingDeviceSubTypeIsDiscrete. When the value\r\nfor coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, the\r\nvalue returned for this attribute is the speed in RPM or the OFF/ON value\r\nof the cooling device. When the value for coolingDeviceSubType is\r\ncoolingDeviceSubTypeIsDiscrete, a value is not returned for this attribute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bf61401efbc44ed39bedc92b97ff563a');
INSERT INTO `items` (`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`,`uuid`) values ('28361','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX}','10255','{#DISK_NAME}: Physical disk status','system.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}]','3m','90d','0d','0','3','','','','',NULL,'109','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe status of the physical disk itself without the propagation of any contained component status.\r\nPossible values:\r\n1: Other\r\n2: Unknown\r\n3: OK\r\n4: Non-critical\r\n5: Critical\r\n6: Non-recoverable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7b1d2992683d404db552abd870c6c627');
INSERT INTO `items` (`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`,`uuid`) values ('28362','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX}','10255','{#DISK_NAME}: Physical disk serial number','system.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}]','1d','90d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe physical disk\'s unique identification number from the manufacturer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1cfaa7f506144a06a3ee159528a1a8fb');
INSERT INTO `items` (`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`,`uuid`) values ('28363','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX}','10255','{#DISK_NAME}: Physical disk S.M.A.R.T. status','system.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}]','3m','90d','0d','0','3','','','','',NULL,'110','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nIndicates whether the physical disk has received a predictive failure alert.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c9de9677d214c8fa6ba706a57c46f9f');
INSERT INTO `items` (`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`,`uuid`) values ('28364','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX}','10255','{#DISK_NAME}: Physical disk model name','system.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe model number of the physical disk.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f094adc420fc49b19e23a3071b8dc15f');
INSERT INTO `items` (`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`,`uuid`) values ('28365','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.27.{#SNMPINDEX}','10255','{#DISK_NAME}: Physical disk part number','system.hw.physicaldisk.part_number[physicalDiskPartNumber.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe part number of the disk.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6a6a8198b9c6485290acb703d87ec7c9');
INSERT INTO `items` (`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`,`uuid`) values ('28366','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX}','10255','{#DISK_NAME}: Physical disk media type','system.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}]','1h','2w','0d','0','3','','','','',NULL,'111','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe media type of the physical disk. Possible Values:\r\n1: The media type could not be determined.\r\n2: Hard Disk Drive (HDD).\r\n3: Solid State Drive (SSD).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b5d7d97f769948d1986548b8f799874a');
INSERT INTO `items` (`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`,`uuid`) values ('28367','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX}','10255','{#DISK_NAME}: Disk size','system.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}]','1h','2w','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe size of the physical disk in megabytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','17b6d1e6664e4c3e90f3e68df2316fb4');
INSERT INTO `items` (`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`,`uuid`) values ('28368','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX}','10255','Disk {#SNMPVALUE}({#DISK_NAME}): Layout type','system.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}]','1h','2w','365d','0','3','','','','',NULL,'113','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe virtual disk\'s RAID type.\r\nPossible values:\r\n1: Not one of the following\r\n2: RAID-0\r\n3: RAID-1\r\n4: RAID-5\r\n5: RAID-6\r\n6: RAID-10\r\n7: RAID-50\r\n8: RAID-60\r\n9: Concatenated RAID 1\r\n10: Concatenated RAID 5','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6f600a00e0004adab0b6acaf57375a26');
INSERT INTO `items` (`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`,`uuid`) values ('28369','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX}','10255','Disk {#SNMPVALUE}({#DISK_NAME}): Current state','system.hw.virtualdisk.state[virtualDiskOperationalState.{#SNMPINDEX}]','3m','2w','365d','0','3','','','','',NULL,'114','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe state of the virtual disk when there are progressive operations ongoing.\r\nPossible values:\r\n1: There is no active operation running.\r\n2: The virtual disk configuration has changed. The physical disks included in the virtual disk are being modified to support the new configuration.\r\n3: A Consistency Check (CC) is being performed on the virtual disk.\r\n4: The virtual disk is being initialized.\r\n5: BackGround Initialization (BGI) is being performed on the virtual disk.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3134da694a68466cbe811c1658be24af');
INSERT INTO `items` (`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`,`uuid`) values ('28370','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX}','10255','Disk {#SNMPVALUE}({#DISK_NAME}): Read policy','system.hw.virtualdisk.readpolicy[virtualDiskReadPolicy.{#SNMPINDEX}]','1h','2w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe read policy used by the controller for read operations on this virtual disk.\r\nPossible values:\r\n1: No Read Ahead.\r\n2: Read Ahead.\r\n3: Adaptive Read Ahead.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5859b6822849438fa355694f42cc0b12');
INSERT INTO `items` (`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`,`uuid`) values ('28371','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX}','10255','Disk {#SNMPVALUE}({#DISK_NAME}): Write policy','system.hw.virtualdisk.writepolicy[virtualDiskWritePolicy.{#SNMPINDEX}]','1h','2w','365d','0','3','','','','',NULL,'115','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe write policy used by the controller for write operations on this virtual disk.\r\nPossible values:\r\n1: Write Through.\r\n2: Write Back.\r\n3: Force Write Back.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0e469e2e2a7c40998a72a986ef61a4e6');
INSERT INTO `items` (`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`,`uuid`) values ('28372','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX}','10255','Disk {#SNMPVALUE}({#DISK_NAME}): Disk size','system.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}]','1h','2w','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe size of the virtual disk in megabytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f42ea3af24564ba09c306e16580df656');
INSERT INTO `items` (`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`,`uuid`) values ('28373','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX}','10255','Disk {#SNMPVALUE}({#DISK_NAME}): Status','system.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}]','3m','2w','365d','0','3','','','','',NULL,'116','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe current state of this virtual disk (which includes any member physical disks.)\r\nPossible states:\r\n1: The current state could not be determined.\r\n2: The virtual disk is operating normally or optimally.\r\n3: The virtual disk has encountered a failure. The data on disk is lost or is about to be lost.\r\n4: The virtual disk encountered a failure with one or all of the constituent redundant physical disks.\r\nThe data on the virtual disk might no longer be fault tolerant.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1e749a7717b94b42ad52d45bebaf9dd5');
INSERT INTO `items` (`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`,`uuid`) values ('28374','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX}','10255','{#CNTLR_NAME}: Disk array controller status','system.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}]','1m','1w','0d','0','3','','','','',NULL,'107','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe status of the controller itself without the propagation of any contained component status.\r\nPossible values:\r\n1: Other\r\n2: Unknown\r\n3: OK\r\n4: Non-critical\r\n5: Critical\r\n6: Non-recoverable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','55504ef472384a8689a72ae70881fe71');
INSERT INTO `items` (`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`,`uuid`) values ('28375','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX}','10255','{#CNTLR_NAME}: Disk array controller model','system.hw.diskarray.model[controllerName.{#SNMPINDEX}]','1d','90d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe controller\'s name as represented in Storage Management.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f2d6f51d3b4047d99efe437b5995a6c5');
INSERT INTO `items` (`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`,`uuid`) values ('28376','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX}','10255','Battery {#BATTERY_NUM}: Disk array cache controller battery status','system.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}]','1m','1w','0d','0','3','','','','',NULL,'112','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nCurrent state of battery.\r\nPossible values:\r\n1: The current state could not be determined.\r\n2: The battery is operating normally.\r\n3: The battery has failed and needs to be replaced.\r\n4: The battery temperature is high or charge level is depleting.\r\n5: The battery is missing or not detected.\r\n6: The battery is undergoing the re-charge phase.\r\n7: The battery voltage or charge level is below the threshold.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','05378fb979554b3d824c355b360f0652');
INSERT INTO `items` (`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`,`uuid`) values ('28388','20','1.3.6.1.4.1.232.6.2.6.1.0','10256','System: Temperature status','sensor.temp.status[cpqHeThermalCondition.0]','1m','7d','0d','0','3','','','','',NULL,'102','','','0','','','','','0',NULL,'MIB: CPQHLTH-MIB\r\nThis value specifies the overall condition of the system\'s thermal environment.\r\nThis value will be one of the following:\r\nother(1) Temperature could not be determined.\r\nok(2) The temperature sensor is within normal operating range.\r\ndegraded(3) The temperature sensor is outside of normal operating range.\r\nfailed(4) The temperature sensor detects a condition that could permanently damage the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','399110973c134983bd5020b9e5b509f4');
INSERT INTO `items` (`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`,`uuid`) values ('28390','20','1.3.6.1.4.1.232.2.2.4.2.0','10256','Hardware model name','system.hw.model','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CPQSINFO-MIB\r\nThe machine product name.The name of the machine used in this system.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2708e6cb2ba240a791685ebdcab3407f');
INSERT INTO `items` (`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`,`uuid`) values ('28391','20','1.3.6.1.4.1.232.2.2.2.1.0','10256','Hardware serial number','system.hw.serialnumber','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CPQSINFO-MIB\r\nThe serial number of the physical system unit. The string will be empty if the system does not report the serial number function.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','96e27ad668944845a7f598f35b577d18');
INSERT INTO `items` (`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`,`uuid`) values ('28392','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10256','Temperature Discovery','tempDescr.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d39d17234d34419ab9bb0c1d90505bff');
INSERT INTO `items` (`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`,`uuid`) values ('28393','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10256','Temperature Discovery Ambient','tempDescr.discovery.ambient','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with ambient(11) and 0.1 index filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','279cdcdb6d304a7fb6ba0667c55fc774');
INSERT INTO `items` (`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`,`uuid`) values ('28394','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10256','Temperature Discovery CPU','tempDescr.discovery.cpu','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with cpu(6) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8a0f24370b2246799b3db8c547f34d3e');
INSERT INTO `items` (`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`,`uuid`) values ('28395','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10256','Temperature Discovery Memory','tempDescr.discovery.memory','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with memory(7) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f35e84ec9cb74bd19610fa7fdc59433d');
INSERT INTO `items` (`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`,`uuid`) values ('28396','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10256','Temperature Discovery PSU','tempDescr.discovery.psu','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with powerSupply(10) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c12fc57ae86e434abd25e8ba8f6ca642');
INSERT INTO `items` (`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`,`uuid`) values ('28397','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10256','Temperature Discovery I/O','tempDescr.discovery.io','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with ioBoard(5) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b32425e531b444c69cdc3efc015286f2');
INSERT INTO `items` (`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`,`uuid`) values ('28398','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.9.3.1.5,{#CHASSIS_NUM},1.3.6.1.4.1.232.6.2.9.3.1.1,{#BAY_NUM},1.3.6.1.4.1.232.6.2.9.3.1.2]','10256','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQHLTH-MIB::cpqHeFltTolPowerSupplyStatus','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a77e77fc862847078ff3328f4d331747');
INSERT INTO `items` (`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`,`uuid`) values ('28399','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.7.1.9]','10256','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQHLTH-MIB::cpqHeFltTolFanCondition','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dd52cf7724f7471cabf1970707a6fdd6');
INSERT INTO `items` (`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`,`uuid`) values ('28400','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.2.1.1.1,{#CNTLR_SLOT},1.3.6.1.4.1.232.3.2.2.1.1.5,{#CNTLR_LOCATION},1.3.6.1.4.1.232.3.2.2.1.1.20]','10256','Array Controller Discovery','array.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CPQIDA-MIB::cpqDaCntlrTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bfbfb003935f4a2da4ff253f1f01cda9');
INSERT INTO `items` (`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`,`uuid`) values ('28401','20','discovery[{#CACHE_STATUS},1.3.6.1.4.1.232.3.2.2.2.1.2,{#CACHE_CNTRL_INDEX},1.3.6.1.4.1.232.3.2.2.2.1.1]','10256','Array Controller Cache Discovery','array.cache.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CPQIDA-MIB::cpqDaAccelTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7589f2f30c7e4cf88bb7cd1d57f543a4');
INSERT INTO `items` (`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`,`uuid`) values ('28402','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.5.1.1.5,{#DISK_LOCATION},1.3.6.1.4.1.232.3.2.5.1.1.64]','10256','Physical Disk Discovery','physicalDisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of physical drive entries CPQIDA-MIB::cpqDaPhyDrvTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5b68bccba85349beb2800bbb99ba5e13');
INSERT INTO `items` (`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`,`uuid`) values ('28403','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.3.1.1.2,{#DISK_NAME},1.3.6.1.4.1.232.3.2.3.1.1.14]','10256','Virtual Disk Discovery','virtualdisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQIDA-MIB::cpqDaLogDrvTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f8ddad8119414bdbb695feaa788aa89e');
INSERT INTO `items` (`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`,`uuid`) values ('28404','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10256','{#SNMPINDEX}: Temperature','sensor.temp.value[cpqHeTemperatureCelsius.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: {#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7c7d2807f0714bca8c8f263c2a4be8e6');
INSERT INTO `items` (`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`,`uuid`) values ('28405','20','1.3.6.1.4.1.232.6.2.6.8.1.3.{#SNMPINDEX}','10256','{#SNMPINDEX}: Temperature sensor location','sensor.temp.locale[cpqHeTemperatureLocale.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'103','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThis specifies the location of the temperature sensor present in the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','63fd55c6dee6427bbba7daa023d8f91a');
INSERT INTO `items` (`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`,`uuid`) values ('28406','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10256','Ambient: Temperature','sensor.temp.value[cpqHeTemperatureCelsius.Ambient.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: Ambient','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fd9c9a22a2a946ef895f92300de12004');
INSERT INTO `items` (`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`,`uuid`) values ('28407','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10256','CPU-{#SNMPINDEX}: Temperature','sensor.temp.value[cpqHeTemperatureCelsius.CPU.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: CPU-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0bfe29bdf06e4432aafbbddb5bc02272');
INSERT INTO `items` (`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`,`uuid`) values ('28408','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10256','Memory-{#SNMPINDEX}: Temperature','sensor.temp.value[cpqHeTemperatureCelsius.Memory.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: Memory-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','feb78ed0e9c640f2b2e122bebca181a7');
INSERT INTO `items` (`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`,`uuid`) values ('28409','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10256','PSU-{#SNMPINDEX}: Temperature','sensor.temp.value[cpqHeTemperatureCelsius.PSU.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: PSU-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d2e8eb2989364732b85dbef4eb7d1ce4');
INSERT INTO `items` (`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`,`uuid`) values ('28411','20','1.3.6.1.4.1.232.6.2.9.3.1.4.{#SNMPINDEX}','10256','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status','sensor.psu.status[cpqHeFltTolPowerSupplyCondition.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'102','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe condition of the power supply. This value will be one of the following:\r\nother(1) The status could not be determined or not present.\r\nok(2) The power supply is operating normally.\r\ndegraded(3) A temperature sensor, fan or other power supply component is outside of normal operating range.\r\nfailed(4) A power supply component detects a condition that could permanently damage the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','45d3144d0e5342c6a98b6aca01f4a907');
INSERT INTO `items` (`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`,`uuid`) values ('28412','20','1.3.6.1.4.1.232.6.2.6.7.1.9.{#SNMPINDEX}','10256','Fan {#SNMPINDEX}: Fan status','sensor.fan.status[cpqHeFltTolFanCondition.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'102','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe condition of the fan.\r\nThis value will be one of the following:\r\nother(1) Fan status detection is not supported by this system or driver.\r\nok(2) The fan is operating properly.\r\ndegraded(2) A redundant fan is not operating properly.\r\nfailed(4) A non-redundant fan is not operating properly.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2173681feff54bbbb27bca1c82fab363');
INSERT INTO `items` (`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`,`uuid`) values ('28413','20','1.3.6.1.4.1.232.3.2.2.1.1.6.{#SNMPINDEX}','10256','{#CNTLR_LOCATION}: Disk array controller status','system.hw.diskarray.status[cpqDaCntlrCondition.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'102','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nThis value represents the overall condition of this controller,\r\nand any associated logical drives,physical drives, and array accelerators.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','71ae1496057044819a80f0660d838083');
INSERT INTO `items` (`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`,`uuid`) values ('28414','20','1.3.6.1.4.1.232.3.2.2.1.1.2.{#SNMPINDEX}','10256','{#CNTLR_LOCATION}: Disk array controller model','system.hw.diskarray.model[cpqDaCntlrModel.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'104','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nArray Controller Model. The type of controller card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','72e008704de649bbb10df34d38158b69');
INSERT INTO `items` (`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`,`uuid`) values ('28415','20','1.3.6.1.4.1.232.3.2.2.2.1.2.{#SNMPINDEX}','10256','#{#CACHE_CNTRL_INDEX}: Disk array cache controller status','system.hw.diskarray.cache.status[cpqDaAccelStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'118','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nCache Module/Operations Status. This describes the status of the cache module and/or cache operations.\r\nNote that for some controller models, a cache module board that physically attaches to the controller or chipset may not be an available option.\r\n\r\nThe status can be:\r\nOther (1)\r\n Indicates that the instrument agent does not recognize the status of the cache module. You may need to upgrade the instrument agent.\r\n\r\nInvalid (2)\r\n Indicates that a cache module board has not been installed in this system or is present but not configured.\r\n\r\nEnabled (3)\r\n Indicates that cache operations are currently configured and enabled for at least one logical drive.\r\n\r\nTemporarily Disabled (4)\r\n Indicates that cache operations have been temporarily disabled. View the cache module board error code object to determine why the write cache operations have been temporarily disabled.\r\n\r\nPermanently Disabled (5)\r\n Indicates that cache operations have been permanently disabled. View the cache module board error code object to determine why the write cache operations have been disabled.\r\n\r\nCache Module Flash Memory Not Attached (6)\r\n Indicates that the flash memory component of the flash backed cache module is not attached. This status will be set when the flash memory is not attached and the Supercap is attached. This value is only used on flash backed cache modules that support removable flash memory.\r\n\r\nCache Module Degraded Failsafe Speed (7)\r\n Indicates that the cache module board is currently degraded and operating at a failsafe speed. View variables cpqDaCacheMemoryDataWidth and cpqDaCacheMemoryTransferRate to obtain the cache module board`s current memory data width and memory transfer rate.\r\n\r\nCache Module Critical Failure (8)\r\n Indicates that the cache module board has encountered a critical failure. The controller is currently operating in Zero Memory Raid mode.\r\n \r\nRead Cache Could Not Be Mapped (9)\r\n Indicates that the read cache memory in a split cache configuration could not be mapped by the operating system and as a result is not available. This status may be caused by virtual space limitations in certain operating systems and is only applicable to B-Series controllers.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2e20ec1d27374dceb363a6cdd568d23d');
INSERT INTO `items` (`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`,`uuid`) values ('28416','20','1.3.6.1.4.1.232.3.2.2.2.1.6.{#SNMPINDEX}','10256','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status','system.hw.diskarray.cache.battery.status[cpqDaAccelBattery.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'119','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nCache Module Board Backup Power Status. This monitors the status of each backup power source on the board.\r\nThe backup power source can only recharge when the system has power applied. The type of backup power source used is indicated by cpqDaAccelBackupPowerSource.\r\nThe following values are valid:\r\nOther (1) Indicates that the instrument agent does not recognize backup power status. You may need to update your software.\r\n\r\nOk (2) The backup power source is fully charged.\r\n\r\nRecharging (3) The array controller has one or more cache module backup power sources that are recharging.\r\nCache module operations such as Battery/Flash Backed Write Cache, Expansion, Extension and Migration are temporarily suspended until the backup power source is fully charged.\r\nCache module operations will automatically resume when charging is complete.\r\n\r\nFailed (4) The battery pack is below the sufficient voltage level and has not recharged in 36 hours.\r\nYour Cache Module board needs to be serviced.\r\n\r\nDegraded (5) The battery is still operating, however, one of the batteries in the pack has failed to recharge properly.\r\nYour Cache Module board should be serviced as soon as possible.\r\n\r\nNotPresent (6) A backup power source is not present on the cache module board. Some controllers do not have backup power sources.\r\n\r\nCapacitor Failed (7) The flash backed cache module capacitor is below the sufficient voltage level and has not recharged in 10 minutes. Your Cache Module board needs to be serviced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f212a5a7f2754d49aab4d4a4a6a5ca44');
INSERT INTO `items` (`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`,`uuid`) values ('28417','20','1.3.6.1.4.1.232.3.2.5.1.1.6.{#SNMPINDEX}','10256','{#DISK_LOCATION}: Physical disk status','system.hw.physicaldisk.status[cpqDaPhyDrvStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'105','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive Status. This shows the status of the physical drive. The following values are valid for the physical drive status:\r\nother (1) Indicates that the instrument agent does not recognize the drive.\r\nYou may need to upgrade your instrument agent and/or driver software.\r\nok (2) Indicates the drive is functioning properly.\r\nfailed (3) Indicates that the drive is no longer operating and should be replaced.\r\npredictiveFailure(4) Indicates that the drive has a predictive failure error and should be replaced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d88cd26724fd4f19b899b4767fb33814');
INSERT INTO `items` (`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`,`uuid`) values ('28418','20','1.3.6.1.4.1.232.3.2.5.1.1.57.{#SNMPINDEX}','10256','{#DISK_LOCATION}: Physical disk S.M.A.R.T. status','system.hw.physicaldisk.smart_status[cpqDaPhyDrvSmartStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'117','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive S.M.A.R.T Status.The following values are defined:\r\nother(1) The agent is unable to determine if the status of S.M.A.R.T predictive failure monitoring for this drive.\r\nok(2) Indicates the drive is functioning properly.\r\nreplaceDrive(3) Indicates that the drive has a S.M.A.R.T predictive failure error and should be replaced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e0864c9d70204f048fc0c597a996b19f');
INSERT INTO `items` (`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`,`uuid`) values ('28419','20','1.3.6.1.4.1.232.3.2.5.1.1.51.{#SNMPINDEX}','10256','{#DISK_LOCATION}: Physical disk serial number','system.hw.physicaldisk.serialnumber[cpqDaPhyDrvSerialNum.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive Serial Number.\r\nThis is the serial number assigned to the physical drive.\r\nThis value is based upon the serial number as returned by the SCSI inquiry command\r\nbut may have been modified due to space limitations. This can be used for identification purposes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5eca1a95575f4cb891545bde063aae7b');
INSERT INTO `items` (`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`,`uuid`) values ('28420','20','1.3.6.1.4.1.232.3.2.5.1.1.3.{#SNMPINDEX}','10256','{#DISK_LOCATION}: Physical disk model name','system.hw.physicaldisk.model[cpqDaPhyDrvModel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive Model.This is a text description of the physical drive.\r\nThe text that appears depends upon who manufactured the drive and the drive type.\r\nIf a drive fails, note the model to identify the type of drive necessary for replacement.\r\nIf a model number is not present, you may not have properly initialized the drive array to which the physical drive is attached for monitoring.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','82f09b232147488fb9bd7253ce1432c2');
INSERT INTO `items` (`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`,`uuid`) values ('28421','20','1.3.6.1.4.1.232.3.2.5.1.1.69.{#SNMPINDEX}','10256','{#DISK_LOCATION}: Physical disk media type','system.hw.physicaldisk.media_type[cpqDaPhyDrvMediaType.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'120','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nDrive Array Physical Drive Media Type.The following values are defined:\r\nother(1) The instrument agent is unable to determine the physical drive\'s media type.\r\nrotatingPlatters(2) The physical drive media is composed of rotating platters.\r\nsolidState(3) The physical drive media is composed of solid state electronics.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a6dfc1cf30e141b6b47d463d436f14b6');
INSERT INTO `items` (`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`,`uuid`) values ('28422','20','1.3.6.1.4.1.232.3.2.5.1.1.45.{#SNMPINDEX}','10256','{#DISK_LOCATION}: Disk size','system.hw.physicaldisk.size[cpqDaPhyDrvMediaType.{#SNMPINDEX}]','1m','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive Size in MB.\r\nThis is the size of the physical drive in megabytes.\r\nThis value is calculated using the value 1,048,576 (2^20) as a megabyte.\r\nDrive manufacturers sometimes use the number 1,000,000 as a megabyte when giving drive capacities so this value may differ\r\nfrom the advertised size of a drive. This field is only applicable for controllers which support SCSI drives,\r\nand therefore is not supported by the IDA or IDA-2 controllers. The field will contain 0xFFFFFFFF if the drive capacity cannot be calculated\r\nor if the controller does not support SCSI drives.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','03cf9c027f9b4557a0d0a233347c58d2');
INSERT INTO `items` (`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`,`uuid`) values ('28423','20','1.3.6.1.4.1.232.3.2.3.1.1.4.{#SNMPINDEX}','10256','Disk {#SNMPINDEX}({#DISK_NAME}): Status','system.hw.virtualdisk.status[cpqDaLogDrvStatus.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'122','','','0','','','','','2',NULL,'Logical Drive Status.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e0de2e2cc2ac423c95bcca5c77b1a53c');
INSERT INTO `items` (`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`,`uuid`) values ('28424','20','1.3.6.1.4.1.232.3.2.3.1.1.3.{#SNMPINDEX}','10256','Disk {#SNMPINDEX}({#DISK_NAME}): Layout type','system.hw.virtualdisk.layout[cpqDaLogDrvFaultTol.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'121','','','0','','','','','2',NULL,'Logical Drive Fault Tolerance.\r\nThis shows the fault tolerance mode of the logical drive.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3d06c600df19479abc35c47832f1abc2');
INSERT INTO `items` (`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`,`uuid`) values ('28425','20','1.3.6.1.4.1.232.3.2.3.1.1.9.{#SNMPINDEX}','10256','Disk {#SNMPINDEX}({#DISK_NAME}): Disk size','system.hw.virtualdisk.size[cpqDaLogDrvSize.{#SNMPINDEX}]','1m','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Logical Drive Size.\r\nThis is the size of the logical drive in megabytes. This value\r\nis calculated using the value 1,048,576 (2^20) as a megabyte.\r\nDrive manufacturers sometimes use the number 1,000,000 as a\r\nmegabyte when giving drive capacities so this value may\r\ndiffer from the advertised size of a drive.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','39add64d1cef451091f5416440ea0adc');
INSERT INTO `items` (`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`,`uuid`) values ('28465','20','1.3.6.1.4.1.2.3.51.3.1.4.1.0','10258','Overall system health status','system.status[systemHealthStat.0]','30s','2w','0d','0','3','','','','',NULL,'106','','','0','','','','','0',NULL,'MIB: IMM-MIB\r\nIndicates status of system health for the system in which the IMM resides. Value of \'nonRecoverable\' indicates a severe error has occurred and the system may not be functioning. A value of \'critical\' indicates that a error has occurred but the system is currently functioning properly. A value of \'nonCritical\' indicates that a condition has occurred that may change the state of the system in the future but currently the system is working properly. A value of \'normal\' indicates that the system is operating normally.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','33572e0e11214d8b8454e6947e0d282d');
INSERT INTO `items` (`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`,`uuid`) values ('28466','20','1.3.6.1.4.1.2.3.51.3.1.5.2.1.5.0','10258','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IMM-MIB','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7075609a2d2545828a93f701d7b02c17');
INSERT INTO `items` (`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`,`uuid`) values ('28467','20','1.3.6.1.4.1.2.3.51.3.1.5.2.1.3.0','10258','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IMM-MIB\r\nMachine serial number VPD information','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','db393421a28b44148b0a1e1273186900');
INSERT INTO `items` (`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`,`uuid`) values ('28468','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2]','10258','Temperature Discovery','tempDescr.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning IMM-MIB::tempTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b5ac4b78efca4e8a9d8b2eb875f49c49');
INSERT INTO `items` (`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`,`uuid`) values ('28469','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2]','10258','Temperature Discovery Ambient','tempDescr.discovery.ambient','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning IMM-MIB::tempTable with Ambient filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1e4d30dcff7f48bc872127d11f2e22b8');
INSERT INTO `items` (`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`,`uuid`) values ('28470','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2]','10258','Temperature Discovery CPU','tempDescr.discovery.cpu','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning IMM-MIB::tempTable with CPU filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7eb45db4b05e42d39e0e2cf889dec2b8');
INSERT INTO `items` (`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`,`uuid`) values ('28471','20','discovery[{#PSU_DESCR},1.3.6.1.4.1.2.3.51.3.1.11.2.1.2]','10258','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'IMM-MIB::powerFruName','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e83e43db572d4a25b80629a115214ae8');
INSERT INTO `items` (`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`,`uuid`) values ('28472','20','discovery[{#FAN_DESCR},1.3.6.1.4.1.2.3.51.3.1.3.2.1.2]','10258','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'IMM-MIB::fanDescr','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c93e3c9379a4434f84334e5989ec2592');
INSERT INTO `items` (`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`,`uuid`) values ('28473','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.12.2.1.1]','10258','Physical Disk Discovery','physicalDisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dbf08da1d50c4a919bd2bbb1ee15f77e');
INSERT INTO `items` (`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`,`uuid`) values ('28474','20','1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX}','10258','{#SNMPVALUE}: Temperature','sensor.temp.value[tempReading.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IMM-MIB\r\nTemperature readings of testpoint: {#SNMPVALUE}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','02af08c624bc444aae5d1f1b8f8b5d4a');
INSERT INTO `items` (`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`,`uuid`) values ('28475','20','1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX}','10258','Ambient: Temperature','sensor.temp.value[tempReading.Ambient.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IMM-MIB\r\nTemperature readings of testpoint: Ambient','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c29ef915c0a6419eabd041ea34775c45');
INSERT INTO `items` (`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`,`uuid`) values ('28476','20','1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX}','10258','CPU: Temperature','sensor.temp.value[tempReading.CPU.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IMM-MIB\r\nTemperature readings of testpoint: CPU','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','87da5286971d4f6487c3220c85850658');
INSERT INTO `items` (`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`,`uuid`) values ('28477','20','1.3.6.1.4.1.2.3.51.3.1.11.2.1.6.{#SNMPINDEX}','10258','{#PSU_DESCR}: Power supply status','sensor.psu.status[powerHealthStatus.{#SNMPINDEX}]','3m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IMM-MIB\r\nA description of the power module status.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e8c7e01f5c3f40d29cdaa7506e293c80');
INSERT INTO `items` (`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`,`uuid`) values ('28478','20','1.3.6.1.4.1.2.3.51.3.1.3.2.1.10.{#SNMPINDEX}','10258','{#FAN_DESCR}: Fan status','sensor.fan.status[fanHealthStatus.{#SNMPINDEX}]','3m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IMM-MIB\r\nA description of the fan component status.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6e576c4059c84b6fa80376ee59fd373b');
INSERT INTO `items` (`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`,`uuid`) values ('28479','20','1.3.6.1.4.1.2.3.51.3.1.3.2.1.3.{#SNMPINDEX}','10258','{#FAN_DESCR}: Fan speed, %','sensor.fan.speed.percentage[fanSpeed.{#SNMPINDEX}]','1m','90d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IMM-MIB\r\nFan speed expressed in percent(%) of maximum RPM.\r\nAn octet string expressed as \'ddd% of maximum\' where:d is a decimal digit or blank space for a leading zero.\r\nIf the fan is determined not to be running or the fan speed cannot be determined, the string will indicate \'Offline\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3281ba9d16754ff79a9ed0e2bb328129');
INSERT INTO `items` (`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`,`uuid`) values ('28480','20','1.3.6.1.4.1.2.3.51.3.1.12.2.1.3.{#SNMPINDEX}','10258','{#SNMPINDEX}: Physical disk status','system.hw.physicaldisk.status[diskHealthStatus.{#SNMPINDEX}]','3m','90d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IMM-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da7aa00e553c4014a70fe08f5fdb67fd');
INSERT INTO `items` (`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`,`uuid`) values ('28481','20','1.3.6.1.4.1.2.3.51.3.1.12.2.1.2.{#SNMPINDEX}','10258','{#SNMPINDEX}: Physical disk part number','system.hw.physicaldisk.part_number[diskFruName.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IMM-MIB\r\ndisk module FRU name.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','08f626e126bf45fa8f978a2324118626');
INSERT INTO `items` (`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`,`uuid`) values ('28493','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.21317.1.3.1.2,{#SENSOR_DESCR},1.3.6.1.4.1.21317.1.3.1.13]','10259','Temperature Discovery','tempDescr.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning ATEN-IPMI-MIB::sensorTable with filter: not connected temp sensors (Value = 0)','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c03c556ed8e441099513aaacaf4a3752');
INSERT INTO `items` (`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`,`uuid`) values ('28494','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.21317.1.3.1.2,{#SENSOR_DESCR},1.3.6.1.4.1.21317.1.3.1.13]','10259','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning ATEN-IPMI-MIB::sensorTable with filter: not connected FAN sensors (Value = 0)','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e31995e21b3942e58b7ed451f57f0360');
INSERT INTO `items` (`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`,`uuid`) values ('28495','20','1.3.6.1.4.1.21317.1.3.1.2.{#SNMPINDEX}','10259','{#SENSOR_DESCR}: Temperature','sensor.temp.value[sensorReading.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ATEN-IPMI-MIB\r\nA textual string containing information about the interface.\r\nThis string should include the name of the manufacturer, the product name and the version of the interface hardware/software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fe3acdb63d884c10bc5abe7edf001ceb');
INSERT INTO `items` (`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`,`uuid`) values ('28496','20','1.3.6.1.4.1.21317.1.3.1.2.{#SNMPINDEX}','10259','{#SENSOR_DESCR}: Fan speed, %','sensor.fan.speed.percentage[sensorReading.{#SNMPINDEX}]','1m','90d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ATEN-IPMI-MIB\r\nA textual string containing information about the interface.\r\nThis string should include the name of the manufacturer, the product name and the version of the interface hardware/software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5309e5fab7a44b11a8f045db2868a544');
INSERT INTO `items` (`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`,`uuid`) values ('28511','16','','10260','Tomcat: Version','jmx["Catalina:type=Server",serverInfo]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','0',NULL,'The version of the Tomcat.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7f6ec0e48d41456896799f487cd8243e');
INSERT INTO `items` (`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`,`uuid`) values ('28533','5','','10047','Zabbix server: LLD queue','zabbix[lld_queue]','1m','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of values enqueued in the low-level discovery processing queue.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d596a84dece14aa59ca53e9f53b21edb');
INSERT INTO `items` (`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`,`uuid`) values ('28535','5','','10047','Zabbix server: Utilization of LLD manager internal processes, in %','zabbix[process,lld manager,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time lld manager processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e0ffccdaa51459c90d4868e61b1c6a8');
INSERT INTO `items` (`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`,`uuid`) values ('28537','5','','10047','Zabbix server: Utilization of LLD worker internal processes, in %','zabbix[process,lld worker,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time lld worker processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b7b36eea80448ac8d11f7f30fb355da');
INSERT INTO `items` (`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`,`uuid`) values ('28539','5','','10261','Remote Zabbix server: Zabbix stats','zabbix[stats,{$ADDRESS},{$PORT}]','1m','0d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Zabbix server statistics master item.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b9a588fee45047b6b991015e7e83f3f2');
INSERT INTO `items` (`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`,`uuid`) values ('28540','5','','10261','Remote Zabbix server: Zabbix stats queue','zabbix[stats,{$ADDRESS},{$PORT},queue]','1m','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of monitored items in the queue which are delayed at least by 6 seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c140ebe6c0404ee6b17b5ada2de09f28');
INSERT INTO `items` (`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`,`uuid`) values ('28541','5','','10261','Remote Zabbix server: Zabbix stats queue over 10m','zabbix[stats,{$ADDRESS},{$PORT},queue,10m]','1m','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of monitored items in the queue which are delayed at least by 10 minutes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','95c8bab7640a4227b8ce6cac06e1a08b');
INSERT INTO `items` (`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`,`uuid`) values ('28585','5','','10262','Remote Zabbix proxy: Zabbix stats','zabbix[stats,{$ZABBIX.PROXY.ADDRESS},{$ZABBIX.PROXY.PORT}]','1m','0d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Zabbix server statistics master item.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c3d4e015efe7459f8207096a04b296f0');
INSERT INTO `items` (`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`,`uuid`) values ('28586','5','','10262','Remote Zabbix proxy: Zabbix stats queue','zabbix[stats,{$ZABBIX.PROXY.ADDRESS},{$ZABBIX.PROXY.PORT},queue]','1m','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of monitored items in the queue which are delayed at least by 6 seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','128bcd3c019946b593f3256858cf8397');
INSERT INTO `items` (`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`,`uuid`) values ('28587','5','','10262','Remote Zabbix proxy: Zabbix stats queue over 10m','zabbix[stats,{$ZABBIX.PROXY.ADDRESS},{$ZABBIX.PROXY.PORT},queue,10m]','1m','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of monitored items in the queue which are delayed at least by 10 minutes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c9b9ee0faefd4cefbac32f548539266e');
INSERT INTO `items` (`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`,`uuid`) values ('28617','5','','10048','Zabbix proxy: Preprocessing queue','zabbix[preprocessing_queue]','1m','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of values enqueued in the preprocessing queue.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0230306272c24858b49243ef1c61e2ec');
INSERT INTO `items` (`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`,`uuid`) values ('28618','5','','10048','Zabbix proxy: Utilization of preprocessing manager internal processes, in %','zabbix[process,preprocessing manager,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time preprocessing manager processes have been busy in the last minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','20705fe12d4c40a4a27306b66ec9a69d');
INSERT INTO `items` (`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`,`uuid`) values ('28619','5','','10048','Zabbix proxy: Utilization of preprocessing worker internal processes, in %','zabbix[process,preprocessing worker,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time preprocessing worker processes have been busy in the last minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9c7916375cf841fb8edaf383b93a0522');
INSERT INTO `items` (`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`,`uuid`) values ('28743','0','','10264','Apache: Service ping','net.tcp.service[http,"{$APACHE.STATUS.HOST}","{$APACHE.STATUS.PORT}"]','1m','7d','365d','0','3','','','','',NULL,'13','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','369f00e2970048c786ce3bd609e65566');
INSERT INTO `items` (`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`,`uuid`) values ('28744','0','','10264','Apache: Memory usage (vsize)','proc.mem["{$APACHE.PROCESS_NAME}",,,,vsize]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Virtual memory size used by process in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f20b7a01ff134a128c54ea83af8557e2');
INSERT INTO `items` (`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`,`uuid`) values ('28745','0','','10264','Apache: Memory usage (rss)','proc.mem["{$APACHE.PROCESS_NAME}",,,,rss]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident set size memory used by process in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','384bf197e6a241b3b63bb89d009bba6b');
INSERT INTO `items` (`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`,`uuid`) values ('28746','0','','10264','Apache: Number of processes running','proc.num["{$APACHE.PROCESS_NAME}"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','233b5466014640e4b990ffd81fa19fa1');
INSERT INTO `items` (`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`,`uuid`) values ('28747','0','','10264','Apache: CPU utilization','proc.cpu.util["{$APACHE.PROCESS_NAME}"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Process CPU utilization percentage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b73280fb0af64c7899abfc74cc074b13');
INSERT INTO `items` (`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`,`uuid`) values ('28748','0','','10264','Apache: Service response time','net.tcp.service.perf[http,"{$APACHE.STATUS.HOST}","{$APACHE.STATUS.PORT}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','267ca6fe038346e5be1113f3bf9b4023');
INSERT INTO `items` (`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`,`uuid`) values ('28775','19','','10265','Apache: Get status','apache.get_status','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Getting data from a machine-readable version of the Apache status page.\r\nhttps://httpd.apache.org/docs/current/mod/mod_status.html','0','30d','0','',NULL,'3s','{$APACHE.STATUS.SCHEME}://{HOST.CONN}:{$APACHE.STATUS.PORT}/{$APACHE.STATUS.PATH}','','','200','1','0','','2','0','0','0','0','0','0','e61be8ad92004100aca55fcedd2a3807');
INSERT INTO `items` (`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`,`uuid`) values ('28776','3','','10265','Apache: Service ping','net.tcp.service[http,"{HOST.CONN}","{$APACHE.STATUS.PORT}"]','1m','7d','365d','0','3','','','','',NULL,'14','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb65918695094026838e2b9e4ca00402');
INSERT INTO `items` (`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`,`uuid`) values ('28777','3','','10265','Apache: Service response time','net.tcp.service.perf[http,"{HOST.CONN}","{$APACHE.STATUS.PORT}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5039d11bc3964d6e9928a0a46dd0b402');
INSERT INTO `items` (`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`,`uuid`) values ('28804','0','','10266','Nginx: Get stub status page','web.page.get["{$NGINX.STUB_STATUS.HOST}","{$NGINX.STUB_STATUS.PATH}","{$NGINX.STUB_STATUS.PORT}"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The following status information is provided:\r\nActive connections - the current number of active client connections including Waiting connections.\r\nAccepts - the total number of accepted client connections.\r\nHandled - the total number of handled connections. Generally, the parameter value is the same as accepts unless some resource limits have been reached (for example, the worker_connections limit).\r\nRequests - the total number of client requests.\r\nReading - the current number of connections where nginx is reading the request header.\r\nWriting - the current number of connections where nginx is writing the response back to the client.\r\nWaiting - the current number of idle client connections waiting for a request.\r\nhttps://nginx.org/en/docs/http/ngx_http_stub_status_module.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','52a23a9f6d60490c8f5565b938154f61');
INSERT INTO `items` (`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`,`uuid`) values ('28805','0','','10266','Nginx: Service response time','net.tcp.service.perf[http,"{$NGINX.STUB_STATUS.HOST}","{$NGINX.STUB_STATUS.PORT}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','75a7795df3034835bcfd143f7c3e9b94');
INSERT INTO `items` (`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`,`uuid`) values ('28806','0','','10266','Nginx: CPU utilization','proc.cpu.util[nginx]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Process CPU utilization percentage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84c95c1955bf4ccaa12a060a9acdb478');
INSERT INTO `items` (`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`,`uuid`) values ('28807','0','','10266','Nginx: Memory usage (rss)','proc.mem[nginx,,,,rss]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident set size memory used by process in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','64d208475c034bae953a64cde1833ebb');
INSERT INTO `items` (`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`,`uuid`) values ('28808','0','','10266','Nginx: Memory usage (vsize)','proc.mem[nginx,,,,vsize]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Virtual memory size used by process in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','21fccb0286fb407c85f1972e994c698e');
INSERT INTO `items` (`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`,`uuid`) values ('28809','0','','10266','Nginx: Number of processes running','proc.num[nginx]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of the Nginx processes running.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ba3da6baccee4b31947bf20d3cae0e5f');
INSERT INTO `items` (`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`,`uuid`) values ('28810','0','','10266','Nginx: Service status','net.tcp.service[http,"{$NGINX.STUB_STATUS.HOST}","{$NGINX.STUB_STATUS.PORT}"]','1m','7d','365d','0','3','','','','',NULL,'15','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f06e76888f464e13b7cc4c3db33e8131');
INSERT INTO `items` (`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`,`uuid`) values ('28821','19','','10267','Nginx: Get stub status page','nginx.get_stub_status','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The following status information is provided:\r\nActive connections - the current number of active client connections including Waiting connections.\r\nAccepts - the total number of accepted client connections.\r\nHandled - the total number of handled connections. Generally, the parameter value is the same as accepts unless some resource limits have been reached (for example, the worker_connections limit).\r\nRequests - the total number of client requests.\r\nReading - the current number of connections where nginx is reading the request header.\r\nWriting - the current number of connections where nginx is writing the response back to the client.\r\nWaiting - the current number of idle client connections waiting for a request.\r\nhttps://nginx.org/en/docs/http/ngx_http_stub_status_module.html','0','30d','0','',NULL,'3s','{$NGINX.STUB_STATUS.SCHEME}://{HOST.CONN}:{$NGINX.STUB_STATUS.PORT}/{$NGINX.STUB_STATUS.PATH}','','','200','1','0','','2','0','0','0','0','0','0','86f93d1941d147fe94d754eddd3e8ff2');
INSERT INTO `items` (`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`,`uuid`) values ('28822','3','','10267','Nginx: Service status','net.tcp.service[http,"{HOST.CONN}","{$NGINX.STUB_STATUS.PORT}"]','1m','7d','365d','0','3','','','','',NULL,'16','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e4a09193bc8f42f2888ece83f89f84af');
INSERT INTO `items` (`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`,`uuid`) values ('28823','3','','10267','Nginx: Service response time','net.tcp.service.perf[http,"{HOST.CONN}","{$NGINX.STUB_STATUS.PORT}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','18c6209295b347e2a96ef11b147139d8');
INSERT INTO `items` (`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`,`uuid`) values ('28894','20','1.3.6.1.4.1.2636.3.1.13.1.8.{#SNMPINDEX}','10231','{#SNMPVALUE}: CPU utilization','system.cpu.util[jnxOperatingCPU.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: JUNIPER-MIB\r\nThe CPU utilization in percentage of this subject. Zero if unavailable or inapplicable.\r\nReference: http://kb.juniper.net/library/CUSTOMERSERVICE/GLOBAL_JTAC/BK26199/SRX%20SNMP%20Monitoring%20Guide_v1.1.pdf','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','932c89bb249d412fabd3549ddcbf654e');
INSERT INTO `items` (`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`,`uuid`) values ('28978','15','','10268','Memory utilization','vm.memory.util[snmp]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vm.memory.total[memTotalReal.0])-(last(//vm.memory.free[memAvailReal.0])+last(//vm.memory.buffers[memBuffer.0])+last(//vm.memory.cached[memCached.0])))/last(//vm.memory.total[memTotalReal.0])*100','','0','','','','','0',NULL,'Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac10ac53a99e464bbf0c5894d4297cfc');
INSERT INTO `items` (`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`,`uuid`) values ('28979','20','1.3.6.1.4.1.2021.4.6.0','10268','Free memory','vm.memory.free[memAvailReal.0]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b13aae9bb13c432998688f8c3230ddb2');
INSERT INTO `items` (`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`,`uuid`) values ('28980','20','1.3.6.1.4.1.2021.4.14.0','10268','Memory (buffers)','vm.memory.buffers[memBuffer.0]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB\r\nMemory used by kernel buffers (Buffers in /proc/meminfo).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','81c8a8aa72144ec99c0723bd1c7efde0');
INSERT INTO `items` (`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`,`uuid`) values ('28981','20','1.3.6.1.4.1.2021.4.15.0','10268','Memory (cached)','vm.memory.cached[memCached.0]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB\r\nMemory used by the page cache and slabs (Cached and Slab in /proc/meminfo).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a74e6bc72c8c45f2b01ee1b50ce64fdc');
INSERT INTO `items` (`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`,`uuid`) values ('28982','20','1.3.6.1.4.1.2021.4.5.0','10268','Total memory','vm.memory.total[memTotalReal.0]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB\r\nTotal memory in Bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','849c5cd7aec94ed48c6a0a321b54d801');
INSERT INTO `items` (`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`,`uuid`) values ('28983','15','','10268','Available memory','vm.memory.available[snmp]','1m','7d','365d','0','3','','B','','',NULL,NULL,'last(//vm.memory.free[memAvailReal.0])+last(//vm.memory.buffers[memBuffer.0])+last(//vm.memory.cached[memCached.0])','','0','','','','','0',NULL,'Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d2f2a3127c83459696bb7496de04830b');
INSERT INTO `items` (`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`,`uuid`) values ('28984','20','1.3.6.1.4.1.2021.4.3.0','10268','Total swap space','system.swap.total[memTotalSwap.0]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB\r\nThe total amount of swap space configured for this host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e3c9bc424684af8b16852548145d240');
INSERT INTO `items` (`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`,`uuid`) values ('28985','20','1.3.6.1.4.1.2021.4.4.0','10268','Free swap space','system.swap.free[memAvailSwap.0]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB\r\nThe amount of swap space currently unused or available.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','286b7a7da5bc46349d98d40e0fa87bb3');
INSERT INTO `items` (`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`,`uuid`) values ('28986','15','','10268','Free swap space in %','system.swap.pfree[snmp]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//system.swap.free[memAvailSwap.0])/last(//system.swap.total[memTotalSwap.0])*100','','0','','','','','0',NULL,'The free space of swap volume/file in percent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','95b96317790d467c8f2c3acbe4f508a2');
INSERT INTO `items` (`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`,`uuid`) values ('28987','20','1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-1"]','10270','Load average (1m avg)','system.cpu.load.avg1[laLoad.1]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','335279fa524d48089d99ffba47017a0f');
INSERT INTO `items` (`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`,`uuid`) values ('28988','20','1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-5"]','10270','Load average (5m avg)','system.cpu.load.avg5[laLoad.2]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','74a03675fdba49969d7286d718edc4e8');
INSERT INTO `items` (`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`,`uuid`) values ('28989','20','1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-15"]','10270','Load average (15m avg)','system.cpu.load.avg15[laLoad.3]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d774c8d00aab4158b856feda354fcef6');
INSERT INTO `items` (`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`,`uuid`) values ('28990','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10270','Number of CPUs','system.cpu.num[snmp]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nCount the number of CPU cores by counting number of cores discovered in hrProcessorTable using LLD','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','20dbc1d9ed25400983eadb6e9d6f1f04');
INSERT INTO `items` (`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`,`uuid`) values ('28991','20','1.3.6.1.4.1.2021.11.59.0','10270','Interrupts per second','system.cpu.intr[ssRawInterrupts.0]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cf935e4e2f224ce5a9d09662df90e5b2');
INSERT INTO `items` (`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`,`uuid`) values ('28992','20','1.3.6.1.4.1.2021.11.60.0','10270','Context switches per second','system.cpu.switches[ssRawContexts.0]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2e52405bed144bd392ba386d8d8fa752');
INSERT INTO `items` (`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`,`uuid`) values ('29008','20','discovery[{#DEVNAME},1.3.6.1.4.1.2021.13.15.1.1.2]','10269','Block devices discovery','vfs.dev.discovery[snmp]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Block devices are discovered from UCD-DISKIO-MIB::diskIOTable (http://net-snmp.sourceforge.net/docs/mibs/ucdDiskIOMIB.html#diskIOTable)','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a85f20bbf86045438460bf439422aaec');
INSERT INTO `items` (`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`,`uuid`) values ('29010','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4]','10271','Mounted filesystem discovery','vfs.fs.discovery[snmp]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c55b2f96bd50421482dfcc230e6de01e');
INSERT INTO `items` (`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`,`uuid`) values ('29014','20','1.3.6.1.4.1.2021.13.15.1.1.5.{#SNMPINDEX}','10269','{#DEVNAME}: Disk read rate','vfs.dev.read.rate[diskIOReads.{#SNMPINDEX}]','1m','7d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-DISKIO-MIB\r\nThe number of read accesses from this device since boot.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ed71e7a243594c3bb0c2055b5cfb6f62');
INSERT INTO `items` (`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`,`uuid`) values ('29015','20','1.3.6.1.4.1.2021.13.15.1.1.6.{#SNMPINDEX}','10269','{#DEVNAME}: Disk write rate','vfs.dev.write.rate[diskIOWrites.{#SNMPINDEX}]','1m','7d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-DISKIO-MIB\r\nThe number of write accesses from this device since boot.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a060b61ad4f24be299c0a9b2582dda87');
INSERT INTO `items` (`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`,`uuid`) values ('29016','20','1.3.6.1.4.1.2021.13.15.1.1.9.{#SNMPINDEX}','10269','{#DEVNAME}: Disk utilization','vfs.dev.util[diskIOLA1.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-DISKIO-MIB\r\nThe 1 minute average load of disk (%)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e96a297e7e54c0ba4607949c854edc8');
INSERT INTO `items` (`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`,`uuid`) values ('29017','20','1.3.6.1.4.1.2021.11.53.0','10270','CPU idle time','system.cpu.idle[ssCpuRawIdle.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nThe time the CPU has spent doing nothing.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b20769f44f8247e1a6a5908ff084ff81');
INSERT INTO `items` (`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`,`uuid`) values ('29018','20','1.3.6.1.4.1.2021.11.52.0','10270','CPU system time','system.cpu.system[ssCpuRawSystem.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nThe time the CPU has spent running the kernel and its processes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b45abb043f14f23bd8d71f0bca70c06');
INSERT INTO `items` (`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`,`uuid`) values ('29019','20','1.3.6.1.4.1.2021.11.50.0','10270','CPU user time','system.cpu.user[ssCpuRawUser.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nThe time the CPU has spent running users\' processes that are not niced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','295af9e607aa46c4886a49905137b7ad');
INSERT INTO `items` (`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`,`uuid`) values ('29020','20','1.3.6.1.4.1.2021.11.64.0','10270','CPU steal time','system.cpu.steal[ssCpuRawSteal.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nThe amount of CPU \'stolen\' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b98feceb5d1b4dafbbbbc80d3f9598f9');
INSERT INTO `items` (`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`,`uuid`) values ('29021','20','1.3.6.1.4.1.2021.11.61.0','10270','CPU softirq time','system.cpu.softirq[ssCpuRawSoftIRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nThe amount of time the CPU has been servicing software interrupts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1c121eeb3f864dd68569efff6ab79ac8');
INSERT INTO `items` (`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`,`uuid`) values ('29022','20','1.3.6.1.4.1.2021.11.51.0','10270','CPU nice time','system.cpu.nice[ssCpuRawNice.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nThe time the CPU has spent running users\' processes that have been niced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','80c42f533f3d40529a1451ecdbaf3d62');
INSERT INTO `items` (`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`,`uuid`) values ('29023','20','1.3.6.1.4.1.2021.11.54.0','10270','CPU iowait time','system.cpu.iowait[ssCpuRawWait.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nAmount of time the CPU has been waiting for I/O to complete.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ce41593112f1497884643f7f99075f4b');
INSERT INTO `items` (`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`,`uuid`) values ('29024','20','1.3.6.1.4.1.2021.11.56.0','10270','CPU interrupt time','system.cpu.interrupt[ssCpuRawInterrupt.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nThe amount of time the CPU has been servicing hardware interrupts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7da67bc8887a4d36abba6b041a72f221');
INSERT INTO `items` (`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`,`uuid`) values ('29025','20','1.3.6.1.4.1.2021.11.65.0','10270','CPU guest time','system.cpu.guest[ssCpuRawGuest.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nGuest time (time spent running a virtual CPU for a guest operating system).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7cb1bdc138a041039b229804e5f55676');
INSERT INTO `items` (`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`,`uuid`) values ('29026','20','1.3.6.1.4.1.2021.11.66.0','10270','CPU guest nice time','system.cpu.guest_nice[ssCpuRawGuestNice.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nTime spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','47939519397147e7be84d1d3223e8111');
INSERT INTO `items` (`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`,`uuid`) values ('29027','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10271','{#FSNAME}: Used space','vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2cfbdae09907476ea6d73af86338f279');
INSERT INTO `items` (`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`,`uuid`) values ('29028','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10271','{#FSNAME}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in units of hrStorageAllocationUnits.\r\nThis object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.\r\nFor example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9e9b2eb864164eebb4825ba0331b0b95');
INSERT INTO `items` (`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`,`uuid`) values ('29029','15','','10271','{#FSNAME}: Space utilization','vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageUsed.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for {#FSNAME}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3cc99f32a3a44b2a94c2bab5f2765c8e');
INSERT INTO `items` (`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`,`uuid`) values ('29030','20','1.3.6.1.4.1.2021.9.1.10["index","1.3.6.1.4.1.2021.9.1.2", "{#FSNAME}"]','10271','{#FSNAME}: Free inodes in %','vfs.fs.inode.pfree[dskPercentNode.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nIf having problems collecting this item make sure access to UCD-SNMP-MIB is allowed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c0b2605afe84c288207c04b9946dfbf');
INSERT INTO `items` (`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`,`uuid`) values ('29087','0','','10272','Number of CPUs','system.cpu.num','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a735c884e70349f78c66233047f7afe6');
INSERT INTO `items` (`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`,`uuid`) values ('29088','0','','10272','CPU iowait time','system.cpu.util[,iowait]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of time the CPU has been waiting for I/O to complete.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c078212326f04fd8878eee4b63e3ef7e');
INSERT INTO `items` (`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`,`uuid`) values ('29089','0','','10272','Context switches per second','system.cpu.switches','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f3ec31faa3ca4be6a176bc47679d18f7');
INSERT INTO `items` (`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`,`uuid`) values ('29090','0','','10272','CPU guest nice time','system.cpu.util[,guest_nice]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','61e4250a2b0341f684ebc8adb568822f');
INSERT INTO `items` (`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`,`uuid`) values ('29091','0','','10272','CPU guest time','system.cpu.util[,guest]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Guest time (time spent running a virtual CPU for a guest operating system).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8778c8da3e45497584428b512f278fb9');
INSERT INTO `items` (`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`,`uuid`) values ('29092','0','','10272','CPU softirq time','system.cpu.util[,softirq]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time the CPU has been servicing software interrupts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6eab3a98207a4aa397083de9773560d2');
INSERT INTO `items` (`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`,`uuid`) values ('29093','0','','10272','CPU interrupt time','system.cpu.util[,interrupt]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time the CPU has been servicing hardware interrupts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9e9fac69e7b646e2946987bdb3f36103');
INSERT INTO `items` (`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`,`uuid`) values ('29094','0','','10272','CPU steal time','system.cpu.util[,steal]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of CPU \'stolen\' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d540fcdaaebc47dbbc52f6b92331ae61');
INSERT INTO `items` (`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`,`uuid`) values ('29095','0','','10272','CPU nice time','system.cpu.util[,nice]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running users\' processes that have been niced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ca4c30b1c8a24edea59f6a2d76158f5f');
INSERT INTO `items` (`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`,`uuid`) values ('29096','0','','10272','Load average (1m avg)','system.cpu.load[all,avg1]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9c7bd054537a449c84959c68850a232b');
INSERT INTO `items` (`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`,`uuid`) values ('29097','0','','10272','CPU user time','system.cpu.util[,user]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running users\' processes that are not niced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3e37c91b2d304a5583f0578b99ec8eec');
INSERT INTO `items` (`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`,`uuid`) values ('29098','0','','10272','CPU system time','system.cpu.util[,system]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running the kernel and its processes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a0e8576ca7cd47a8adf72bfcde1065be');
INSERT INTO `items` (`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`,`uuid`) values ('29099','0','','10272','CPU idle time','system.cpu.util[,idle]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent doing nothing.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5cb0b9e7dacf4507bd0007e923f8a970');
INSERT INTO `items` (`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`,`uuid`) values ('29100','0','','10272','Load average (15m avg)','system.cpu.load[all,avg15]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9298150efe98434694bc3ef940e4da3f');
INSERT INTO `items` (`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`,`uuid`) values ('29101','0','','10272','Load average (5m avg)','system.cpu.load[all,avg5]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dd912665ba1c4934af0bf3cb22cb925c');
INSERT INTO `items` (`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`,`uuid`) values ('29102','0','','10272','Interrupts per second','system.cpu.intr','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c0c12ca155b042b2b5f33d9ced5f1cd2');
INSERT INTO `items` (`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`,`uuid`) values ('29103','0','','10274','Available memory in %','vm.memory.size[pavailable]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Available memory as percentage of total. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','20299d21c1ee47a284f54e3b9c8ac919');
INSERT INTO `items` (`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`,`uuid`) values ('29104','0','','10274','Total memory','vm.memory.size[total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total memory in Bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b2f541b33a32428aa7644825d54f706a');
INSERT INTO `items` (`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`,`uuid`) values ('29105','0','','10274','Available memory','vm.memory.size[available]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e9aa329aff2c443595cd77443a512a1a');
INSERT INTO `items` (`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`,`uuid`) values ('29106','0','','10274','Total swap space','system.swap.size[,total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total space of swap volume/file in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0067f617f90643d8b5721a659992db77');
INSERT INTO `items` (`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`,`uuid`) values ('29107','0','','10274','Free swap space','system.swap.size[,free]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of swap volume/file in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e65616ce708743a6a7b8fea2ec89620b');
INSERT INTO `items` (`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`,`uuid`) values ('29108','0','','10274','Free swap space in %','system.swap.size[,pfree]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of swap volume/file in percent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da85940246a044398668403af8ce0bb6');
INSERT INTO `items` (`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`,`uuid`) values ('29110','0','','10277','System uptime','system.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'System uptime in \'N days, hh:mm:ss\' format.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0a49428e394c4431bf97aa8787637bff');
INSERT INTO `items` (`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`,`uuid`) values ('29111','0','','10277','System boot time','system.boottime','15m','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','48c251895f234f4595c4133015c27a18');
INSERT INTO `items` (`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`,`uuid`) values ('29112','0','','10277','System local time','system.localtime','1m','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'System local time of the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac41daaa287944f3b0429c6fb2bca09c');
INSERT INTO `items` (`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`,`uuid`) values ('29113','0','','10277','System name','system.hostname','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System host name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f744b8e0be46431e8088803b3a1b210d');
INSERT INTO `items` (`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`,`uuid`) values ('29114','0','','10277','System description','system.uname','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The information as normally returned by \'uname -a\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b3a8feced15d4a09a8a2d8d1d8c9a546');
INSERT INTO `items` (`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`,`uuid`) values ('29115','0','','10277','Number of logged in users','system.users.num','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of users who are currently logged in.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c595adf482c04553a2477bc1d929bc8d');
INSERT INTO `items` (`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`,`uuid`) values ('29116','0','','10277','Maximum number of open file descriptors','kernel.maxfiles','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'It could be increased by using sysctl utility or modifying file /etc/sysctl.conf.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5dc4ebda1b9244e7a9f901209b78570f');
INSERT INTO `items` (`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`,`uuid`) values ('29117','0','','10277','Maximum number of processes','kernel.maxproc','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'It could be increased by using sysctl utility or modifying file /etc/sysctl.conf.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a82525acd1bd4039860ad2d750476760');
INSERT INTO `items` (`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`,`uuid`) values ('29118','0','','10277','Number of processes','proc.num','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0207b131fa26435ba6b5979c46719bc8');
INSERT INTO `items` (`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`,`uuid`) values ('29119','0','','10277','Number of running processes','proc.num[,,run]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fa98827fe6474bf692d6aba3273836f7');
INSERT INTO `items` (`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`,`uuid`) values ('29120','0','','10277','Checksum of /etc/passwd','vfs.file.cksum[/etc/passwd,sha256]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a10cff7883a4433bb744ebc2264fa13d');
INSERT INTO `items` (`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`,`uuid`) values ('29121','0','','10277','Operating system','system.sw.os','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a40ad2e2bda3453b873d634e6a003dc2');
INSERT INTO `items` (`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`,`uuid`) values ('29122','0','','10277','Operating system architecture','system.sw.arch','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Operating system architecture of the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2e6e1ac8eb724a47b6c50b6c352ee3f7');
INSERT INTO `items` (`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`,`uuid`) values ('29123','0','','10277','Software installed','system.sw.packages','1h','2w','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1097f843e7324a1fa0508544ddddd556');
INSERT INTO `items` (`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`,`uuid`) values ('29201','0','','10273','Mounted filesystem discovery','vfs.fs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of file systems of different types.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1ec7965ad995437da2dc1f94749f3230');
INSERT INTO `items` (`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`,`uuid`) values ('29203','0','','10276','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aea284394a914ede923d0004369184cf');
INSERT INTO `items` (`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`,`uuid`) values ('29210','0','','10273','{#FSNAME}: Used space','vfs.fs.size[{#FSNAME},used]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used storage in Bytes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','74c773bffa8e41f2a3cd7abf0b710fcf');
INSERT INTO `items` (`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`,`uuid`) values ('29211','0','','10273','{#FSNAME}: Total space','vfs.fs.size[{#FSNAME},total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space in Bytes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e6ce1925a65d4b1fa954ac55fcd39b04');
INSERT INTO `items` (`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`,`uuid`) values ('29212','0','','10273','{#FSNAME}: Space utilization','vfs.fs.size[{#FSNAME},pused]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Space utilization in % for {#FSNAME}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a39947b5a940441a961f685b430cd7e9');
INSERT INTO `items` (`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`,`uuid`) values ('29213','0','','10273','{#FSNAME}: Free inodes in %','vfs.fs.inode[{#FSNAME},pfree]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8d6496b8be814dc885a1efb42823ae4f');
INSERT INTO `items` (`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`,`uuid`) values ('29216','0','','10276','Interface {#IFNAME}: Bits received','net.if.in["{#IFNAME}"]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','544b545925344458ae3895198fa5b00a');
INSERT INTO `items` (`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`,`uuid`) values ('29217','0','','10276','Interface {#IFNAME}: Bits sent','net.if.out["{#IFNAME}"]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','efa9c1b34b86486c9260730316c7a67c');
INSERT INTO `items` (`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`,`uuid`) values ('29218','0','','10276','Interface {#IFNAME}: Outbound packets with errors','net.if.out["{#IFNAME}",errors]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0044c70afff64bf99ecec9173ef7a0f8');
INSERT INTO `items` (`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`,`uuid`) values ('29219','0','','10276','Interface {#IFNAME}: Inbound packets with errors','net.if.in["{#IFNAME}",errors]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f0c78df653744f03aaef06f909525a3d');
INSERT INTO `items` (`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`,`uuid`) values ('29220','0','','10276','Interface {#IFNAME}: Outbound packets discarded','net.if.out["{#IFNAME}",dropped]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3502455ff20742439521d5b9d2f015a3');
INSERT INTO `items` (`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`,`uuid`) values ('29221','0','','10276','Interface {#IFNAME}: Inbound packets discarded','net.if.in["{#IFNAME}",dropped]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a57cd0076d346ae953d0c85ff64ecaf');
INSERT INTO `items` (`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`,`uuid`) values ('29222','0','','10276','Interface {#IFNAME}: Operational status','vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"]','1m','7d','0','0','3','','','','',NULL,'63','','','0','','','','','2',NULL,'Reference: https://www.kernel.org/doc/Documentation/networking/operstates.txt','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f9d88bf4e5b245ed80870b50506e7db3');
INSERT INTO `items` (`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`,`uuid`) values ('29223','0','','10276','Interface {#IFNAME}: Interface type','vfs.file.contents["/sys/class/net/{#IFNAME}/type"]','1h','7d','0d','0','3','','','','',NULL,'127','','','0','','','','','2',NULL,'Indicates the interface protocol type as a decimal value.\r\nSee include/uapi/linux/if_arp.h for all possible values.\r\nReference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','09bb129b088d493990bb4fa381eacad8');
INSERT INTO `items` (`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`,`uuid`) values ('29395','19','','10285','Get node_exporter metrics','node_exporter.get','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','http://{HOST.CONN}:{$NODE_EXPORTER_PORT}/metrics','','','200','1','0','','0','0','0','0','0','0','0','8b2fffcba0b24ca8a687361645ffaa1d');
INSERT INTO `items` (`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`,`uuid`) values ('29396','15','','10285','Memory utilization','vm.memory.util[node_exporter]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vm.memory.total[node_exporter])-last(//vm.memory.available[node_exporter]))/last(//vm.memory.total[node_exporter])*100','','0','','','','','0',NULL,'Memory used percentage is calculated as (total-available)/total*100.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','60c716c692fb482f9abffb0fc9ce4324');
INSERT INTO `items` (`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`,`uuid`) values ('29397','15','','10285','Free swap space in %','system.swap.pfree[node_exporter]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//system.swap.free[node_exporter])/last(//system.swap.total[node_exporter])*100','','0','','','','','0',NULL,'The free space of swap volume/file in percent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','99feb76b7da04b00a0d191b92bf979a1');
INSERT INTO `items` (`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`,`uuid`) values ('29432','15','','10285','{#FSNAME}: Used space','vfs.fs.used[node_exporter,"{#FSNAME}"]','1m','7d','365d','0','0','','B','','',NULL,NULL,'(last(//vfs.fs.total[node_exporter,"{#FSNAME}"])-last(//vfs.fs.free[node_exporter,"{#FSNAME}"]))','','0','','','','','2',NULL,'Used storage in Bytes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','89e559a7ff364dd78b638454896692c5');
INSERT INTO `items` (`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`,`uuid`) values ('29433','15','','10285','{#FSNAME}: Space utilization','vfs.fs.pused[node_exporter,"{#FSNAME}"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[node_exporter,"{#FSNAME}"])/last(//vfs.fs.total[node_exporter,"{#FSNAME}"]))*100','','0','','','','','2',NULL,'Space utilization in % for {#FSNAME}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','89afe41bb0d74c579a9cff8b036d30dc');
INSERT INTO `items` (`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`,`uuid`) values ('29434','15','','10285','{#DEVNAME}: Disk read request avg waiting time (r_await)','vfs.dev.read.await[node_exporter,"{#DEVNAME}"]','1m','7d','365d','0','0','','!ms','','',NULL,NULL,'(last(//vfs.dev.read.time.rate[node_exporter,"{#DEVNAME}"])/(last(//vfs.dev.read.rate[node_exporter,"{#DEVNAME}"])+(last(//vfs.dev.read.rate[node_exporter,"{#DEVNAME}"])=0)))*1000*(last(//vfs.dev.read.rate[node_exporter,"{#DEVNAME}"]) > 0)','','0','','','','','2',NULL,'This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9d158ecffdaa43f6bd0ab867ca68620b');
INSERT INTO `items` (`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`,`uuid`) values ('29435','15','','10285','{#DEVNAME}: Disk write request avg waiting time (w_await)','vfs.dev.write.await[node_exporter,"{#DEVNAME}"]','1m','7d','365d','0','0','','!ms','','',NULL,NULL,'(last(//vfs.dev.write.time.rate[node_exporter,"{#DEVNAME}"])/(last(//vfs.dev.write.rate[node_exporter,"{#DEVNAME}"])+(last(//vfs.dev.write.rate[node_exporter,"{#DEVNAME}"])=0)))*1000*(last(//vfs.dev.write.rate[node_exporter,"{#DEVNAME}"]) > 0)','','0','','','','','2',NULL,'This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','94203a49081047b6bc76cd66aecd55ce');
INSERT INTO `items` (`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`,`uuid`) values ('29454','0','','10286','CPU utilization','system.cpu.util','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','177e472955434cb19dadb06c0f34eb31');
INSERT INTO `items` (`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`,`uuid`) values ('29455','0','','10286','CPU interrupt time','perf_counter_en["\\Processor Information(_total)\\% Interrupt Time"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The Processor Information\\% Interrupt Time is the time the processor spends receiving and servicing\r\nhardware interrupts during sample intervals. This value is an indirect indicator of the activity of\r\ndevices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication\r\nlines, network interface cards and other peripheral devices. This is an easy way to identify a potential\r\nhardware failure. This should never be higher than 20%.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','609619e2b6364d9e90bef828610b23f8');
INSERT INTO `items` (`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`,`uuid`) values ('29456','0','','10286','Context switches per second','perf_counter_en["\\System\\Context Switches/sec"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Context Switches/sec is the combined rate at which all processors on the computer are switched from one thread to another.\r\nContext switches occur when a running thread voluntarily relinquishes the processor, is preempted by a higher priority ready thread, or switches between user-mode and privileged (kernel) mode to use an Executive or subsystem service.\r\nIt is the sum of Thread\\\\Context Switches/sec for all threads running on all processors in the computer and is measured in numbers of switches.\r\nThere are context switch counters on the System and Thread objects. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ee61e8919984a3d9a7125fd4fe7c397');
INSERT INTO `items` (`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`,`uuid`) values ('29457','0','','10286','CPU privileged time','perf_counter_en["\\Processor Information(_total)\\% Privileged Time"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The Processor Information\\% Privileged Time counter shows the percent of time that the processor is spent\r\nexecuting in Kernel (or Privileged) mode. Privileged mode includes services interrupts inside Interrupt\r\nService Routines (ISRs), executing Deferred Procedure Calls (DPCs), Device Driver calls and other kernel-mode\r\nfunctions of the Windows® Operating System.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eb5144d1e3cb4417ae0abcdeca10e0ed');
INSERT INTO `items` (`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`,`uuid`) values ('29458','0','','10286','CPU user time','perf_counter_en["\\Processor Information(_total)\\% User Time"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The Processor Information\\% User Time counter shows the percent of time that the processor(s) is spent executing\r\nin User mode.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5611c125bf01479fadc2e59db073cc9c');
INSERT INTO `items` (`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`,`uuid`) values ('29459','0','','10286','CPU queue length','perf_counter_en["\\System\\Processor Queue Length"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Processor Queue Length shows the number of threads that are observed as delayed in the processor Ready Queue\r\nand are waiting to be executed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1a2b85fb8355459e9c5c723164d09d41');
INSERT INTO `items` (`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`,`uuid`) values ('29460','0','','10287','Used memory','vm.memory.size[used]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Used memory in Bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','69f61ded5de04623be01a77e160a41e6');
INSERT INTO `items` (`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`,`uuid`) values ('29461','0','','10287','Total memory','vm.memory.size[total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total memory in Bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','35f397ade625477eba0b557a58113761');
INSERT INTO `items` (`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`,`uuid`) values ('29462','15','','10287','Memory utilization','vm.memory.util','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.size[used]) / last(//vm.memory.size[total]) * 100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','97295c0987bd44f1af578a2e37f469f4');
INSERT INTO `items` (`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`,`uuid`) values ('29463','0','','10287','Cache bytes','perf_counter_en["\\Memory\\Cache Bytes"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Cache Bytes is the sum of the Memory\\\\System Cache Resident Bytes, Memory\\\\System Driver Resident Bytes,\r\nMemory\\\\System Code Resident Bytes, and Memory\\\\Pool Paged Resident Bytes counters. This counter displays\r\nthe last observed value only; it is not an average.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dbbd157ca9464e858bcfbf9a88cac775');
INSERT INTO `items` (`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`,`uuid`) values ('29466','0','','10287','Total swap space','system.swap.size[,total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total space of swap volume/file in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','711aae9de25e43728bfc9c26f06c800a');
INSERT INTO `items` (`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`,`uuid`) values ('29467','0','','10287','Free system page table entries','perf_counter_en["\\Memory\\Free System Page Table Entries"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This indicates the number of page table entries not currently in use by the system. If the number is less\r\nthan 5,000, there may well be a memory leak or you running out of memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bea4109baa6e425eaa7b8cb3bbb1c01a');
INSERT INTO `items` (`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`,`uuid`) values ('29468','0','','10287','Memory page faults per second','perf_counter_en["\\Memory\\Page Faults/sec"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Page Faults/sec is the average number of pages faulted per second. It is measured in number of pages\r\nfaulted per second because only one page is faulted in each fault operation, hence this is also equal\r\nto the number of page fault operations. This counter includes both hard faults (those that require\r\ndisk access) and soft faults (where the faulted page is found elsewhere in physical memory.) Most\r\nprocessors can handle large numbers of soft faults without significant consequence. However, hard faults,\r\nwhich require disk access, can cause significant delays.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c54782d0e8384d9cba8fe79af050e7ac');
INSERT INTO `items` (`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`,`uuid`) values ('29469','0','','10287','Memory pages per second','perf_counter_en["\\Memory\\Pages/sec"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This measures the rate at which pages are read from or written to disk to resolve hard page faults.\r\nIf the value is greater than 1,000, as a result of excessive paging, there may be a memory leak.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1ce3e64002424f29b73a5159152ae529');
INSERT INTO `items` (`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`,`uuid`) values ('29470','0','','10287','Memory pool non-paged','perf_counter_en["\\Memory\\Pool Nonpaged Bytes"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'This measures the size, in bytes, of the non-paged pool. This is an area of system memory for objects\r\nthat cannot be written to disk but instead must remain in physical memory as long as they are allocated.\r\nThere is a possible memory leak if the value is greater than 175MB (or 100MB with the /3GB switch).\r\nA typical Event ID 2019 is recorded in the system event log.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b4ae2ff5830b47f882744f5fbcfcca05');
INSERT INTO `items` (`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`,`uuid`) values ('29472','0','','10290','Uptime','system.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'System uptime in \'N days, hh:mm:ss\' format.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','24411175d64f48a195ee4a2323d8e799');
INSERT INTO `items` (`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`,`uuid`) values ('29473','0','','10290','System local time','system.localtime','1m','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'System local time of the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','25454c401bea41a4b3c49da3165f3d3d');
INSERT INTO `items` (`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`,`uuid`) values ('29474','0','','10290','System name','system.hostname','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System host name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','78ae4dbd2d894819a36a7d3d00f2e508');
INSERT INTO `items` (`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`,`uuid`) values ('29475','0','','10290','System description','system.uname','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System description of the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','76ef3297b4b740bfaf891e039f7d4dff');
INSERT INTO `items` (`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`,`uuid`) values ('29476','0','','10290','Number of processes','proc.num[]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of processes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8401ea3152ea45269eeb6cc7fa70f1aa');
INSERT INTO `items` (`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`,`uuid`) values ('29477','0','','10290','Number of threads','perf_counter_en["\\System\\Threads"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of threads used by all running processes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1245fca060fb424897387d56d29fe030');
INSERT INTO `items` (`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`,`uuid`) values ('29478','0','','10290','Operating system architecture','system.sw.arch','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Operating system architecture of the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5ed680dff3154af58e7adc0571a6ee9d');
INSERT INTO `items` (`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`,`uuid`) values ('29506','0','','10288','Mounted filesystem discovery','vfs.fs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of file systems of different types.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f603eb3367ad4326a1f1ec7b9c14c07a');
INSERT INTO `items` (`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`,`uuid`) values ('29512','0','','10288','{#FSLABEL}({#FSNAME}): Used space','vfs.fs.size[{#FSNAME},used]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used storage in Bytes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ed0c1057b2704ab098847ae62fec9064');
INSERT INTO `items` (`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`,`uuid`) values ('29513','0','','10288','{#FSLABEL}({#FSNAME}): Total space','vfs.fs.size[{#FSNAME},total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space in Bytes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a1661dae47c640be9cfa9e807e125ff3');
INSERT INTO `items` (`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`,`uuid`) values ('29514','0','','10288','{#FSLABEL}({#FSNAME}): Space utilization','vfs.fs.size[{#FSNAME},pused]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Space utilization in % for {#FSNAME}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84c999eefbdd43319d0b992aff43f3c5');
INSERT INTO `items` (`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`,`uuid`) values ('29544','5','','10050','Zabbix agent availability','zabbix[host,agent,available]','1m','7d','365d','0','3','','','','',NULL,'70','','','0','','','','','0',NULL,'Monitoring agent availability status','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','49708b126e3844b898d2625f77c0030c');
INSERT INTO `items` (`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`,`uuid`) values ('29545','7','','10292','Version of Zabbix agent running','agent.version','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','41fb0f76fa1d464f8ab67f744fc29e8b');
INSERT INTO `items` (`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`,`uuid`) values ('29546','7','','10292','Host name of Zabbix agent running','agent.hostname','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ca27c17d8ca34643a7db8b99d2cc3025');
INSERT INTO `items` (`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`,`uuid`) values ('29547','7','','10292','Zabbix agent ping','agent.ping','1m','7d','365d','0','3','','','','',NULL,'50','','','0','','','','','0',NULL,'The agent always returns 1 for this item. It could be used in combination with nodata() for availability check.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0f86ec6cde2249f7946c678f9fd2665a');
INSERT INTO `items` (`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`,`uuid`) values ('29653','0','','10301','RabbitMQ: Get node overview','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/overview"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The HTTP API endpoint that returns cluster-wide metrics','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1af326f40cdb407a96b34025062b4743');
INSERT INTO `items` (`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`,`uuid`) values ('29654','0','','10301','RabbitMQ: Get nodes','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/nodes/{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME}?memory=true"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The HTTP API endpoint that returns nodes metrics','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','61730555a0ae4f798ea740effb82764c');
INSERT INTO `items` (`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`,`uuid`) values ('29655','0','','10301','RabbitMQ: Service ping','net.tcp.service["{$RABBITMQ.API.SCHEME}","{$RABBITMQ.API.HOST}","{$RABBITMQ.API.PORT}"]','1m','7d','365d','0','3','','','','',NULL,'17','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6229b623f5ff40f9a65e9573b3b86e3f');
INSERT INTO `items` (`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`,`uuid`) values ('29656','0','','10301','RabbitMQ: CPU utilization','proc.cpu.util["{$RABBITMQ.PROCESS_NAME}"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Process CPU utilization percentage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b195bf594c44b1f869b4a7671f61453');
INSERT INTO `items` (`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`,`uuid`) values ('29657','0','','10301','RabbitMQ: Memory usage (vsize)','proc.mem["{$RABBITMQ.PROCESS_NAME}",,,,vsize]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Virtual memory size used by process in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4faac75027d14304ab071602df8f2937');
INSERT INTO `items` (`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`,`uuid`) values ('29658','0','','10301','RabbitMQ: Memory usage (rss)','proc.mem["{$RABBITMQ.PROCESS_NAME}",,,,rss]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident set size memory used by process in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6f13f672d8ce4c9592e0f3f5ec3b0ec4');
INSERT INTO `items` (`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`,`uuid`) values ('29659','0','','10301','RabbitMQ: Number of processes running','proc.num["{$RABBITMQ.PROCESS_NAME}"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8f1c8d2449c44ab590842184d9deb3a6');
INSERT INTO `items` (`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`,`uuid`) values ('29660','0','','10301','RabbitMQ: Service response time','net.tcp.service.perf["{$RABBITMQ.API.SCHEME}","{$RABBITMQ.API.HOST}","{$RABBITMQ.API.PORT}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b1f191f9077f4382b5b87e0085ae2622');
INSERT INTO `items` (`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`,`uuid`) values ('29661','0','','10301','RabbitMQ: Get queues','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/queues"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The HTTP API endpoint that returns queues metrics','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7fb61ad564db42d5a373912491f5c9d3');
INSERT INTO `items` (`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`,`uuid`) values ('29738','19','','10302','RabbitMQ: Get overview','rabbitmq.get_overview','1m','1h','0','0','4','','','','',NULL,NULL,'','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','0',NULL,'The HTTP API endpoint that returns cluster-wide metrics','0','30d','0','',NULL,'3s','{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/overview','','','200','1','0','','0','0','0','0','0','0','0','c0d7c1940dea4cd4a01a94b9629db3ce');
INSERT INTO `items` (`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`,`uuid`) values ('29739','19','','10302','RabbitMQ: Get exchanges','rabbitmq.get_exchanges','1m','1h','0','0','4','','','','',NULL,NULL,'','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','0',NULL,'The HTTP API endpoint that returns exchanges metrics','0','30d','0','',NULL,'3s','{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/exchanges','','','200','1','0','','0','0','0','0','0','0','0','dd74265fcc2d48e2b160e749706c9a6c');
INSERT INTO `items` (`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`,`uuid`) values ('29741','19','','10303','RabbitMQ: Get nodes','rabbitmq.get_nodes','1m','1h','0','0','4','','','','',NULL,NULL,'','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','0',NULL,'The HTTP API endpoint that returns nodes metrics','0','30d','0','',NULL,'3s','{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/nodes/{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME}?memory=true','','','200','1','0','','0','0','0','0','0','0','0','14468c29d16440cfb40429f58a0399f4');
INSERT INTO `items` (`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`,`uuid`) values ('29742','3','','10303','RabbitMQ: Service ping','net.tcp.service["{$RABBITMQ.API.SCHEME}","{HOST.CONN}","{$RABBITMQ.API.PORT}"]','1m','7d','365d','0','3','','','','',NULL,'18','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f53379f858f74714b15ee12fe6fc2d08');
INSERT INTO `items` (`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`,`uuid`) values ('29743','3','','10303','RabbitMQ: Service response time','net.tcp.service.perf["{$RABBITMQ.API.SCHEME}","{HOST.CONN}","{$RABBITMQ.API.PORT}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','542f36f0b4e24d99a402a98b6f6fe4c4');
INSERT INTO `items` (`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`,`uuid`) values ('29745','19','','10303','RabbitMQ: Get queues','rabbitmq.get_queues','1m','1h','0','0','4','','','','',NULL,NULL,'','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','0',NULL,'The HTTP API endpoint that returns queues metrics','0','30d','0','',NULL,'3s','{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/queues','','','200','1','0','','0','0','0','0','0','0','0','3d0770d550b24f5ca80289cb723c8386');
INSERT INTO `items` (`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`,`uuid`) values ('29822','5','','10047','Zabbix server: Utilization of alert syncer internal processes, in %','zabbix[process,alert syncer,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time alert syncer processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eea69b4541844ebbbbf634594c14a8f2');
INSERT INTO `items` (`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`,`uuid`) values ('29844','20','1.3.6.1.2.1.1.3.0','10204','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','000b97abddcd44bfb57e0eeb1b77f69e');
INSERT INTO `items` (`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`,`uuid`) values ('29845','20','1.3.6.1.2.1.1.6.0','10204','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','02b453f44c014f2bb1054e801058b381');
INSERT INTO `items` (`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`,`uuid`) values ('29846','20','1.3.6.1.2.1.1.4.0','10204','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','62da59c7aae54df7976f327119fe7cc2');
INSERT INTO `items` (`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`,`uuid`) values ('29847','20','1.3.6.1.2.1.1.2.0','10204','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9dbcc5a1cd7240c896e2ea718f9ccb35');
INSERT INTO `items` (`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`,`uuid`) values ('29848','20','1.3.6.1.2.1.1.1.0','10204','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','29a3e5277de94386a5985fcf38a09364');
INSERT INTO `items` (`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`,`uuid`) values ('29994','20','1.3.6.1.4.1.232.6.1.3.0','10256','Overall system health status','system.status[cpqHeMibCondition.0]','1m','7d','0d','0','3','','','','',NULL,'102','','','0','','','','','0',NULL,'MIB: CPQHLTH-MIB\r\nThe overall condition. This object represents the overall status of the server information represented by this MIB.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5f30715570c449ecb4e07858256a3e05');
INSERT INTO `items` (`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`,`uuid`) values ('29998','0','','10300','RabbitMQ: Get overview','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/overview"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The HTTP API endpoint that returns cluster-wide metrics','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','943eabfb44164908b9135aa4d6478bea');
INSERT INTO `items` (`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`,`uuid`) values ('29999','0','','10300','RabbitMQ: Get exchanges','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/exchanges"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The HTTP API endpoint that returns exchanges metrics','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f015f991bcea4c4dbf83dfb013300010');
INSERT INTO `items` (`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`,`uuid`) values ('30043','19','','10303','RabbitMQ: Get node overview','rabbitmq.get_node_overview','1m','1h','0','0','4','','','','',NULL,NULL,'','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','0',NULL,'The HTTP API endpoint that returns cluster-wide metrics','0','30d','0','',NULL,'3s','{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/overview','','','200','1','0','','0','0','0','0','0','0','0','ff7ec5f6e2354c90bffdbd25f9360555');
INSERT INTO `items` (`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`,`uuid`) values ('30057','20','discovery[{#SENSOR_LOCATION},1.3.6.1.4.1.9.9.719.1.9.44.1.2]','10304','Temperature Discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','06216bba529b4fb2b1c52fb57d365c6a');
INSERT INTO `items` (`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`,`uuid`) values ('30058','20','discovery[{#SENSOR_LOCATION},1.3.6.1.4.1.9.9.719.1.41.2.1.2]','10304','Temperature CPU Discovery','temp.cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','098a87f2e7094da9853bf2cb94677092');
INSERT INTO `items` (`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`,`uuid`) values ('30059','20','discovery[{#PSU_LOCATION},1.3.6.1.4.1.9.9.719.1.15.56.1.2]','10304','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f8be95a8eb5a487c8c8f05d62e90f041');
INSERT INTO `items` (`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`,`uuid`) values ('30060','20','discovery[{#UNIT_LOCATION},1.3.6.1.4.1.9.9.719.1.9.35.1.2]','10304','Unit Discovery','unit.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0a96ab839bde40cf9d1d4db602c57a5e');
INSERT INTO `items` (`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`,`uuid`) values ('30061','20','discovery[{#FAN_LOCATION},1.3.6.1.4.1.9.9.719.1.15.12.1.2]','10304','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c067096a2fc40c390a335e40bacc089');
INSERT INTO `items` (`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`,`uuid`) values ('30062','20','discovery[{#DISK_LOCATION},1.3.6.1.4.1.9.9.719.1.45.4.1.2]','10304','Physical Disk Discovery','physicalDisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of physical drive entries CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageLocalDiskTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','93247d3808394f7195356ced554d0d55');
INSERT INTO `items` (`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`,`uuid`) values ('30063','20','discovery[{#VDISK_LOCATION},1.3.6.1.4.1.9.9.719.1.45.8.1.2]','10304','Virtual Disk Discovery','virtualdisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageLocalLunTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b76c04b65a8348539434d8857d1450aa');
INSERT INTO `items` (`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`,`uuid`) values ('30064','20','discovery[{#DISKARRAY_LOCATION},1.3.6.1.4.1.9.9.719.1.45.1.1.2]','10304','Array Controller Discovery','array.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b77a56dcaa1947dd8c74b5764c36c22a');
INSERT INTO `items` (`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`,`uuid`) values ('30065','20','discovery[{#DISKARRAY_CACHE_LOCATION},1.3.6.1.4.1.9.9.719.1.45.11.1.2]','10304','Array Controller Cache Discovery','array.cache.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c6518a1df0b45c09f3a2f186c3d4e3b');
INSERT INTO `items` (`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`,`uuid`) values ('30066','20','1.3.6.1.4.1.9.9.719.1.9.44.1.4.{#SNMPINDEX}','10304','{#SENSOR_LOCATION}.Ambient: Temperature','sensor.temp.value[cucsComputeRackUnitMbTempStatsAmbientTemp.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB\r\nTemperature readings of testpoint: {#SENSOR_LOCATION}.Ambient','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ee4d857346541c6870586a0c7989fc5');
INSERT INTO `items` (`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`,`uuid`) values ('30067','20','1.3.6.1.4.1.9.9.719.1.9.44.1.8.{#SNMPINDEX}','10304','{#SENSOR_LOCATION}.Front: Temperature','sensor.temp.value[cucsComputeRackUnitMbTempStatsFrontTemp.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB\r\nCisco UCS compute:RackUnitMbTempStats:frontTemp managed object property','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9dc8ac1ccf2a4671bef441db6297b2f9');
INSERT INTO `items` (`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`,`uuid`) values ('30068','20','1.3.6.1.4.1.9.9.719.1.9.44.1.21.{#SNMPINDEX}','10304','{#SENSOR_LOCATION}.Rear: Temperature','sensor.temp.value[cucsComputeRackUnitMbTempStatsRearTemp.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB\r\nCisco UCS compute:RackUnitMbTempStats:rearTemp managed object property','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','631d46aad1b2403b9512299e2446a24e');
INSERT INTO `items` (`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`,`uuid`) values ('30069','20','1.3.6.1.4.1.9.9.719.1.9.44.1.13.{#SNMPINDEX}','10304','{#SENSOR_LOCATION}.IOH: Temperature','sensor.temp.value[cucsComputeRackUnitMbTempSltatsIoh1Temp.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB\r\nCisco UCS compute:RackUnitMbTempStats:ioh1Temp managed object property','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1287280a5c9449bd96f11ad3b6a92455');
INSERT INTO `items` (`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`,`uuid`) values ('30070','20','1.3.6.1.4.1.9.9.719.1.41.2.1.10.{#SNMPINDEX}','10304','{#SENSOR_LOCATION}: Temperature','sensor.temp.value[cucsProcessorEnvStatsTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-PROCESSOR-MIB\r\nCisco UCS processor:EnvStats:temperature managed object property','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b0a744fc4e524406ab87ccc4fbaae3b2');
INSERT INTO `items` (`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`,`uuid`) values ('30071','20','1.3.6.1.4.1.9.9.719.1.15.56.1.7.{#SNMPINDEX}','10304','{#PSU_LOCATION}: Power supply status','sensor.psu.status[cucsEquipmentPsuOperState.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'138','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB\r\nCisco UCS equipment:Psu:operState managed object property','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0e869e57db494940b630fc2b8f10c60b');
INSERT INTO `items` (`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`,`uuid`) values ('30072','20','1.3.6.1.4.1.9.9.719.1.9.35.1.42.{#SNMPINDEX}','10304','{#UNIT_LOCATION}: Overall system health status','system.status[cucsComputeRackUnitOperState.{#SNMPINDEX}]','30s','2w','0d','0','3','','','','',NULL,'139','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB\r\nCisco UCS compute:RackUnit:operState managed object property','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','00a0fe6510064375a1736433a17904c0');
INSERT INTO `items` (`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`,`uuid`) values ('30073','20','1.3.6.1.4.1.9.9.719.1.9.35.1.32.{#SNMPINDEX}','10304','{#UNIT_LOCATION}: Hardware model name','system.hw.model[cucsComputeRackUnitModel.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB\r\nCisco UCS compute:RackUnit:model managed object property','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9d0f6f5594a24c588da63fd29bf2152f');
INSERT INTO `items` (`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`,`uuid`) values ('30074','20','1.3.6.1.4.1.9.9.719.1.9.35.1.47.{#SNMPINDEX}','10304','{#UNIT_LOCATION}: Hardware serial number','system.hw.serialnumber[cucsComputeRackUnitSerial.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB\r\nCisco UCS compute:RackUnit:serial managed object property','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b0c955f0fc184c6686fa2fe3fce29f1a');
INSERT INTO `items` (`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`,`uuid`) values ('30075','20','1.3.6.1.4.1.9.9.719.1.15.12.1.9.{#SNMPINDEX}','10304','{#FAN_LOCATION}: Fan status','sensor.fan.status[cucsEquipmentFanOperState.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'138','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB\r\nCisco UCS equipment:Fan:operState managed object property','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f65860004eb74ab187d080782177370c');
INSERT INTO `items` (`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`,`uuid`) values ('30076','20','1.3.6.1.4.1.9.9.719.1.45.4.1.18.{#SNMPINDEX}','10304','{#DISK_LOCATION}: Physical disk status','system.hw.physicaldisk.status[cucsStorageLocalDiskDiskState.{#SNMPINDEX}]','3m','90d','0d','0','3','','','','',NULL,'140','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB\r\nCisco UCS storage:LocalDisk:diskState managed object property.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cb73c8de596549888d5f94b13619da3d');
INSERT INTO `items` (`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`,`uuid`) values ('30077','20','1.3.6.1.4.1.9.9.719.1.45.4.1.12.{#SNMPINDEX}','10304','{#DISK_LOCATION}: Physical disk model name','system.hw.physicaldisk.model[cucsStorageLocalDiskSerial.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB\r\nCisco UCS storage:LocalDisk:serial managed object property. Actually returns part number code','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d45ac307cce40d481c556660dea3157');
INSERT INTO `items` (`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`,`uuid`) values ('30078','20','1.3.6.1.4.1.9.9.719.1.45.4.1.7.{#SNMPINDEX}','10304','{#DISK_LOCATION}: Physical disk media type','system.hw.physicaldisk.media_type[cucsStorageLocalDiskModel.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB\r\nCisco UCS storage:LocalDisk:model managed object property. Actually returns \'HDD\' or \'SSD\'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4dc3f8718af645998441c436263a1053');
INSERT INTO `items` (`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`,`uuid`) values ('30079','20','1.3.6.1.4.1.9.9.719.1.45.4.1.13.{#SNMPINDEX}','10304','{#DISK_LOCATION}: Disk size','system.hw.physicaldisk.size[cucsStorageLocalDiskSize.{#SNMPINDEX}]','1h','2w','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB\r\nCisco UCS storage:LocalDisk:size managed object property. In MB.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da12b7742c0343709ab4c1d97c0b0f4c');
INSERT INTO `items` (`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`,`uuid`) values ('30080','20','1.3.6.1.4.1.9.9.719.1.45.8.1.10.{#SNMPINDEX}','10304','{#VDISK_LOCATION}: Status','system.hw.virtualdisk.status[cucsStorageLocalLunPresence.{#SNMPINDEX}]','3m','2w','365d','0','3','','','','',NULL,'142','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB\r\nCisco UCS storage:LocalLun:presence managed object property','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c0d7116c19940608ca40058e47fd595');
INSERT INTO `items` (`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`,`uuid`) values ('30081','20','1.3.6.1.4.1.9.9.719.1.45.8.1.14.{#SNMPINDEX}','10304','{#VDISK_LOCATION}: Layout type','system.hw.virtualdisk.layout[cucsStorageLocalLunType.{#SNMPINDEX}]','1h','2w','365d','0','3','','','','',NULL,'141','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB\r\nCisco UCS storage:LocalLun:type managed object property','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0c6d53aae84e41fa9bdccf06a51bbf21');
INSERT INTO `items` (`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`,`uuid`) values ('30082','20','1.3.6.1.4.1.9.9.719.1.45.8.1.13.{#SNMPINDEX}','10304','{#VDISK_LOCATION}: Disk size','system.hw.virtualdisk.size[cucsStorageLocalLunSize.{#SNMPINDEX}]','1h','2w','0d','0','3','','B','','',NULL,'141','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB\r\nCisco UCS storage:LocalLun:size managed object property in MB.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','db7e07e0325145d0a8f6bcef0cd0dff2');
INSERT INTO `items` (`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`,`uuid`) values ('30083','20','1.3.6.1.4.1.9.9.719.1.45.1.1.6.{#SNMPINDEX}','10304','{#DISKARRAY_LOCATION}: Disk array controller status','system.hw.diskarray.status[cucsStorageControllerOperState.{#SNMPINDEX}]','1m','1w','0d','0','3','','','','',NULL,'138','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','262d45ac58734c0096de2b96d8294f4c');
INSERT INTO `items` (`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`,`uuid`) values ('30084','20','1.3.6.1.4.1.9.9.719.1.45.1.1.5.{#SNMPINDEX}','10304','{#DISKARRAY_LOCATION}: Disk array controller model','system.hw.diskarray.model[cucsStorageControllerModel.{#SNMPINDEX}]','1d','90d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b0e1dd6aab454628bf46c0dba5293424');
INSERT INTO `items` (`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`,`uuid`) values ('30085','20','1.3.6.1.4.1.9.9.719.1.45.11.1.9.{#SNMPINDEX}','10304','{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery status','system.hw.diskarray.cache.battery.status[cucsStorageRaidBatteryOperability.{#SNMPINDEX}]','1m','1w','0d','0','3','','','','',NULL,'138','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','52055929503041018d8261f15231f346');
INSERT INTO `items` (`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`,`uuid`) values ('30086','20','1.3.6.1.2.1.1.1.0','10207','Operating system','system.sw.os[sysDescr.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9f1c8827a9ef4948808bac9d76add9a8');
INSERT INTO `items` (`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`,`uuid`) values ('30087','20','1.3.6.1.4.1.6527.3.1.2.1.1.10.0','10207','Available memory','vm.memory.available[sgiKbMemoryAvailable.0]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TIMETRA-SYSTEM-MIB\r\nThe value of sgiKbMemoryAvailable indicates the amount of free memory, in kilobytes, in the overall system that is not allocated to memory pools, but is available in case a memory pool needs to grow.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3f2769066a184d29afd26047039b633c');
INSERT INTO `items` (`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`,`uuid`) values ('30088','15','','10207','Total memory','vm.memory.total[snmp]','1m','7d','365d','0','3','','B','','',NULL,NULL,'last(//vm.memory.available[sgiKbMemoryAvailable.0])+last(//vm.memory.used[sgiKbMemoryUsed.0])','','0','','','','','0',NULL,'Total memory in Bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9005685cea194d7c9702f19040df7b80');
INSERT INTO `items` (`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`,`uuid`) values ('30089','15','','10207','Memory utilization','vm.memory.util[vm.memory.util.0]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[sgiKbMemoryUsed.0])/(last(//vm.memory.available[sgiKbMemoryAvailable.0])+last(//vm.memory.used[sgiKbMemoryUsed.0]))*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f223ac289a99469e8861219f4254dea6');
INSERT INTO `items` (`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`,`uuid`) values ('30090','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.5.1.6]','10207','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f99bcd2eff1349f08ae23f6f9dbd6cfb');
INSERT INTO `items` (`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`,`uuid`) values ('30091','20','1.3.6.1.4.1.6527.3.1.2.2.1.5.1.6.{#SNMPINDEX}','10207','#{#SNMPINDEX}: Power supply status','sensor.psu.status[tmnxChassisPowerSupply1Status.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'71','','','0','','','','','2',NULL,'MIB: TIMETRA-SYSTEM-MIB\r\nThe overall status of an equipped power supply.\r\nFor AC multiple power supplies, this represents the overall status of the first power supply in the tray (or shelf).\r\nFor any other type, this represents the overall status of the power supply.\r\nIf tmnxChassisPowerSupply1Status is\'deviceStateOk\', then all monitored statuses are \'deviceStateOk\'.\r\nA value of \'deviceStateFailed\' represents a condition where at least one monitored status is in a failed state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a52d5ce3437f4f1ca633cc541028ccc7');
INSERT INTO `items` (`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`,`uuid`) values ('30092','20','1.3.6.1.4.1.6527.3.1.2.2.1.5.1.7.{#SNMPINDEX}','10207','#{#SNMPINDEX}: Power supply status','sensor.psu.status[tmnxChassisPowerSupply2Status.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'71','','','0','','','','','2',NULL,'MIB: TIMETRA-SYSTEM-MIB\r\nThe overall status of an equipped power supply.\r\nFor AC multiple power supplies, this represents the overall status of the second power supply in the tray (or shelf).\r\nFor any other type, this field is unused and set to \'deviceNotEquipped\'.\r\nIf tmnxChassisPowerSupply2Status is \'deviceStateOk\', then all monitored statuses are \'deviceStateOk\'.\r\nA value of \'deviceStateFailed\' represents a condition where at least one monitored status is in a failed state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b73b01d720c7431085657548d620f76e');
INSERT INTO `items` (`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`,`uuid`) values ('30093','20','1.3.6.1.4.1.1588.2.1.1.1.26.6.0','10208','Memory utilization','vm.memory.util[swMemUsage.0]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SW-MIB\r\nMemory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9a8441cae4fb4c698502a20d5ce23ddf');
INSERT INTO `items` (`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`,`uuid`) values ('30094','20','1.3.6.1.4.1.1991.1.1.2.1.53.0','10209','Memory utilization','vm.memory.util[snAgGblDynMemUtil.0]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FOUNDRY-SN-AGENT-MIB\r\nThe system dynamic memory utilization, in unit of percentage.\r\nDeprecated: Refer to snAgSystemDRAMUtil.\r\nFor NI platforms, refer to snAgentBrdMemoryUtil100thPercent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e357f3d53b9a48a087e140b94b3aff1d');
INSERT INTO `items` (`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`,`uuid`) values ('30097','20','1.3.6.1.2.1.1.1.0','10216','Operating system','system.sw.os[sysDescr.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','51b1c178adff415bbe36a4363d6e06c1');
INSERT INTO `items` (`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`,`uuid`) values ('30101','15','','10212','{#SNMPVALUE}: Memory utilization','vm.memory.util[vm.memory.util.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}])/(last(//vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}])+last(//vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Memory utilization in %','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5065203cb8244befadc54cdb004d4b40');
INSERT INTO `items` (`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`,`uuid`) values ('30105','20','1.3.6.1.4.1.6027.3.10.1.2.9.1.5.{#SNMPINDEX}','10221','#{#SNMPINDEX}: Memory utilization','vm.memory.util[chStackUnitMemUsageUtil.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F10-S-SERIES-CHASSIS-MIB\r\nTotal memory usage in percentage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3571d6508f07442983936fdcc2ba733f');
INSERT INTO `items` (`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`,`uuid`) values ('30106','20','1.3.6.1.4.1.171.10.97.2.1.1.2.0','10222','Operating system','system.sw.os[mySystemSwVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MY-SYSTEM-MIB','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8d31f35a9d8842f086a123014bfd27ad');
INSERT INTO `items` (`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`,`uuid`) values ('30107','20','1.3.6.1.4.1.171.10.97.2.35.1.1.1.3.{#SNMPINDEX}','10222','{#SNMPINDEX}: Memory utilization','vm.memory.util[myMemoryPoolCurrentUtilization.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MY-MEMORY-MIB\r\nThis is the memory pool utilization currently.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa68024ac558424a8147f8d1e59a7b50');
INSERT INTO `items` (`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`,`uuid`) values ('30108','20','1.3.6.1.4.1.171.12.1.1.9.1.4.{#SNMPINDEX}','10223','#{#SNMPVALUE}: Memory utilization','vm.memory.util[agentDRAMutilization.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: DLINK-AGENT-MIB\r\nThe percentage of used DRAM memory of the total DRAM memory available.The value will be between 0%(idle) and 100%(very busy)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ec82ef56dce54315a905721bd0cabaa6');
INSERT INTO `items` (`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`,`uuid`) values ('30109','20','1.3.6.1.4.1.1916.1.1.1.13.0','10224','Operating system','system.sw.os[extremePrimarySoftwareRev.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: EXTREME-SYSTEM-MIB\r\nThe software revision of the primary image stored in this device.\r\nThis string will have a zero length if the revision is unknown, invalid or not present.\r\nThis will also be reported in RMON2 probeSoftwareRev if this is the software image currently running in the device.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0ba6360ecf4c4487a249e3efabca2e0c');
INSERT INTO `items` (`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`,`uuid`) values ('30110','20','1.3.6.1.4.1.1916.1.32.2.2.1.3.{#SNMPINDEX}','10224','#{#SNMPVALUE}: Available memory','vm.memory.available[extremeMemoryMonitorSystemFree.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: EXTREME-SOFTWARE-MONITOR-MIB\r\nTotal amount of free memory in Kbytes in the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6856e5a75d884af1957b9a3f92d86360');
INSERT INTO `items` (`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`,`uuid`) values ('30111','15','','10224','#{#SNMPVALUE}: Memory utilization','vm.memory.util[{#SNMPVALUE}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vm.memory.total[extremeMemoryMonitorSystemTotal.{#SNMPINDEX}]) - last(//vm.memory.available[extremeMemoryMonitorSystemFree.{#SNMPINDEX}])) / last(//vm.memory.total[extremeMemoryMonitorSystemTotal.{#SNMPINDEX}]) * 100','','0','','','','','2',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','830ec2341dc64980be35d87141a31b67');
INSERT INTO `items` (`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`,`uuid`) values ('30112','20','1.3.6.1.4.1.25506.2.6.1.1.1.1.8.{#SNMPINDEX}','10227','{#MODULE_NAME}: Memory utilization','vm.memory.util[hh3cEntityExtMemUsage.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HH3C-ENTITY-EXT-MIB\r\nThe memory usage for the entity. This object indicates what\r\npercent of memory are used.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3021126f556f4c62b335c8108ba1cff1');
INSERT INTO `items` (`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`,`uuid`) values ('30113','20','1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.6.{#SNMPINDEX}','10250','#{#SNMPVALUE}: Available memory','vm.memory.available[hpLocalMemFreeBytes.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: NETSWITCH-MIB\r\nThe number of available (unallocated) bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','27c87eb48e2e49879960bbb14430e52b');
INSERT INTO `items` (`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`,`uuid`) values ('30114','20','1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.5.{#SNMPINDEX}','10250','#{#SNMPVALUE}: Total memory','vm.memory.total[hpLocalMemTotalBytes.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: NETSWITCH-MIB\r\nThe number of currently installed bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1b6f6b3a06d44ff088a5ac0336ad995b');
INSERT INTO `items` (`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`,`uuid`) values ('30115','15','','10250','#{#SNMPVALUE}: Memory utilization','vm.memory.util[snmp.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hpLocalMemAllocBytes.{#SNMPINDEX}])/last(//vm.memory.total[hpLocalMemTotalBytes.{#SNMPINDEX}])*100','','0','','','','','2',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7167b10eb27548b8b48b7dc2881b82dd');
INSERT INTO `items` (`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`,`uuid`) values ('30116','20','1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.{#SNMPINDEX}','10229','{#ENT_NAME}: Memory utilization','vm.memory.util[hwEntityMemUsage.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HUAWEI-ENTITY-EXTENT-MIB\r\nThe memory usage for the entity. This object indicates what percent of memory are used.\r\nReference: http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6215b7e957884516a350f8a7038c7d3e');
INSERT INTO `items` (`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`,`uuid`) values ('30117','20','1.3.6.1.2.1.1.1.0','10231','Operating system','system.sw.os[sysDescr.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','24cd5862c2de4cbaad0b3bbce7f26a65');
INSERT INTO `items` (`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`,`uuid`) values ('30118','20','1.3.6.1.4.1.2636.3.1.13.1.11.{#SNMPINDEX}','10231','{#SNMPVALUE}: Memory utilization','vm.memory.util[jnxOperatingBuffer.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: JUNIPER-MIB\r\nThe buffer pool utilization in percentage of this subject. Zero if unavailable or inapplicable.\r\nReference: http://kb.juniper.net/library/CUSTOMERSERVICE/GLOBAL_JTAC/BK26199/SRX%20SNMP%20Monitoring%20Guide_v1.1.pdf','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f60e29b4392e4a3e882a4175e618890c');
INSERT INTO `items` (`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`,`uuid`) values ('30119','20','1.3.6.1.4.1.14988.1.1.4.4.0','10233','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e3b3e78086742a7b9cda953367a2d83');
INSERT INTO `items` (`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`,`uuid`) values ('30120','15','','10233','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','56017f610bf74f0aaaa92e9183e68ea5');
INSERT INTO `items` (`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`,`uuid`) values ('30121','20','1.3.6.1.4.1.4526.10.1.1.1.10.0','10234','Operating system','system.sw.os[agentInventoryOperatingSystem.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FASTPATH-SWITCHING-MIB\r\nOperating System running on this unit','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5bd8c956163d4201a7e896abde28044b');
INSERT INTO `items` (`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`,`uuid`) values ('30122','20','1.3.6.1.4.1.4526.10.1.1.5.1.0','10234','Available memory','vm.memory.available[agentSwitchCpuProcessMemFree.0]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FASTPATH-SWITCHING-MIB\r\nThe total memory freed for utilization.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f94ffd4d6eb84ae88cdf5033df65f249');
INSERT INTO `items` (`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`,`uuid`) values ('30123','15','','10234','Memory utilization','vm.memory.util[memoryUsedPercentage.0]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vm.memory.total[agentSwitchCpuProcessMemAvailable.0])-last(//vm.memory.available[agentSwitchCpuProcessMemFree.0]))/last(//vm.memory.total[agentSwitchCpuProcessMemAvailable.0])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','86ef153d78b5466cac76a32f81d8b958');
INSERT INTO `items` (`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`,`uuid`) values ('30124','20','1.3.6.1.4.1.27514.100.1.11.9.0','10235','Temperature','sensor.temp.value[switchTemperature.0]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: QTECH-MIB\r\nTemperature readings of testpoint: __RESOURCE__','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ddb9ac31893d4b1d882b0e500d2d6ad7');
INSERT INTO `items` (`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`,`uuid`) values ('30125','20','1.3.6.1.4.1.27514.100.1.3.0','10235','Operating system','system.sw.os[sysSoftwareVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: QTECH-MIB','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ea6000232033495babf9157a67b89bcc');
INSERT INTO `items` (`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`,`uuid`) values ('30126','15','','10235','Memory utilization','vm.memory.util[vm.memory.util.0]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[switchMemoryBusy.0])/last(//vm.memory.total[switchMemorySize.0])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f2271ace8bd040618f10ec651a634cbc');
INSERT INTO `items` (`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`,`uuid`) values ('30127','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.27514.100.1.12.1.3]','10235','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','58e5512df6204f7b9b7156055cfa35d4');
INSERT INTO `items` (`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`,`uuid`) values ('30128','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.27514.100.1.7.1.5]','10235','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ca95cd64b34740df80505a2df513dd25');
INSERT INTO `items` (`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`,`uuid`) values ('30129','20','1.3.6.1.4.1.27514.100.1.12.1.3.{#SNMPINDEX}','10235','{#SNMPINDEX}: Fan status','sensor.fan.status[sysFanStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'100','','','0','','','','','2',NULL,'MIB: QTECH-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bbd9e200b3e849d69fa4084f7ac7f378');
INSERT INTO `items` (`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`,`uuid`) values ('30130','20','1.3.6.1.4.1.27514.100.1.7.1.5.{#SNMPINDEX}','10235','{#SNMPINDEX}: Power supply status','sensor.psu.status[sysPowerStatus.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'101','','','0','','','','','2',NULL,'MIB: QTECH-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','124af24c3fb140499431f18e82a00c9d');
INSERT INTO `items` (`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`,`uuid`) values ('30131','20','1.3.6.1.4.1.11863.6.4.1.2.1.1.2.{#SNMPINDEX}','10236','#{#SNMPVALUE}: Memory utilization','vm.memory.util[tpSysMonitorMemoryUtilization.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TPLINK-SYSMONITOR-MIB\r\nDisplays the memory utilization.\r\nReference: http://www.tp-link.com/faq-1330.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5800682fc8f8439eb404707f995ec9a6');
INSERT INTO `items` (`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`,`uuid`) values ('30132','20','1.3.6.1.4.1.10002.1.1.1.1.3.0','10237','Memory (buffers)','vm.memory.buffers[memBuffer.0]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FROGFOOT-RESOURCES-MIB\r\nMemory used by kernel buffers (Buffers in /proc/meminfo).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6393f8a84fd4417abdccd8bd867aac7e');
INSERT INTO `items` (`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`,`uuid`) values ('30133','20','1.3.6.1.4.1.10002.1.1.1.1.4.0','10237','Memory (cached)','vm.memory.cached[memCache.0]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FROGFOOT-RESOURCES-MIB\r\nMemory used by the page cache and slabs (Cached and Slab in /proc/meminfo).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','224c8d32f0d649b3b94b77e960934f15');
INSERT INTO `items` (`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`,`uuid`) values ('30134','20','1.3.6.1.4.1.10002.1.1.1.1.2.0','10237','Free memory','vm.memory.free[memFree.0]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FROGFOOT-RESOURCES-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','401b95eff89743cba6942606ac051b01');
INSERT INTO `items` (`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`,`uuid`) values ('30135','20','1.3.6.1.4.1.10002.1.1.1.1.1.0','10237','Total memory','vm.memory.total[memTotal.0]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FROGFOOT-RESOURCES-MIB\r\nTotal memory in Bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eefa6d2e8560407f82bbb8783bb399ad');
INSERT INTO `items` (`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`,`uuid`) values ('30136','15','','10237','Memory utilization','vm.memory.util[memoryUsedPercentage]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vm.memory.total[memTotal.0])-(last(//vm.memory.free[memFree.0])+last(//vm.memory.buffers[memBuffer.0])+last(//vm.memory.cached[memCache.0])))/last(//vm.memory.total[memTotal.0])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','29df9ffb192d4434a88ac6a413b9569d');
INSERT INTO `items` (`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`,`uuid`) values ('30137','0','','10286','CPU DPC time','perf_counter_en["\\Processor Information(_total)\\% DPC Time"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Processor DPC time is the time that a single processor spent receiving and servicing deferred procedure\r\ncalls (DPCs). DPCs are interrupts that run at a lower priority than standard interrupts. % DPC Time is a\r\ncomponent of % Privileged Time because DPCs are executed in privileged mode. If a high % DPC Time is\r\nsustained, there may be a processor bottleneck or an application or hardware related issue that can\r\nsignificantly diminish overall system performance.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8362346c013546f39f8140061f7b3f01');
INSERT INTO `items` (`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`,`uuid`) values ('30141','20','1.3.6.1.4.1.674.10892.5.1.3.6.0','10255','Operating system','system.sw.os[systemOSName]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the name of the operating system that the hostis running.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','83ebf3d38c92457a9d0462e3849d83ce');
INSERT INTO `items` (`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`,`uuid`) values ('30142','20','discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2]','10305','CPU utilization','system.cpu.util','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that processors was not idle.\r\nImplementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','76b66d024509446ea4e7a48439f8d406');
INSERT INTO `items` (`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`,`uuid`) values ('30147','20','discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4]','10306','Memory discovery','vm.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with memory filter','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','232e52a9b3df42f2b539c5924edc20c8');
INSERT INTO `items` (`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`,`uuid`) values ('30148','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4]','10307','Storage discovery','vfs.fs.discovery[snmp]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','924e22f54534410fbc596042b8378a60');
INSERT INTO `items` (`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`,`uuid`) values ('30157','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10306','{#MEMNAME}: Total memory','vm.memory.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in units of hrStorageAllocationUnits.\r\nThis object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.\r\nFor example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','03d6c47431e74cd8b1d9faf95e9bc756');
INSERT INTO `items` (`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`,`uuid`) values ('30158','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10306','{#MEMNAME}: Used memory','vm.memory.used[hrStorageUsed.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f5b701faf10d40d596d04e1d921861f9');
INSERT INTO `items` (`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`,`uuid`) values ('30159','15','','10306','{#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','99961a81ae4a474ea157f108c8014c77');
INSERT INTO `items` (`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`,`uuid`) values ('30160','15','','10307','{#FSNAME}: Space utilization','vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageUsed.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for {#FSNAME}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d5512358f364ec1b8f0aed223d56d32');
INSERT INTO `items` (`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`,`uuid`) values ('30161','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10307','{#FSNAME}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in units of hrStorageAllocationUnits.\r\nThis object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.\r\nFor example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','de2da3226b2145f3943d18ce59f2d803');
INSERT INTO `items` (`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`,`uuid`) values ('30162','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10307','{#FSNAME}: Used space','vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','719bf2d97348421cb02544efe5caf1bb');
INSERT INTO `items` (`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`,`uuid`) values ('30187','0','','10308','HAProxy: Service response time','net.tcp.service.perf["{$HAPROXY.STATS.SCHEME}","{HOST.CONN}","{$HAPROXY.STATS.PORT}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c224cfe9b7474f9e80618dde78cfcb11');
INSERT INTO `items` (`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`,`uuid`) values ('30188','0','','10308','HAProxy: Service status','net.tcp.service["{$HAPROXY.STATS.SCHEME}","{HOST.CONN}","{$HAPROXY.STATS.PORT}"]','1m','7d','365d','0','3','','','','',NULL,'19','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','97e45c508f5a4df78fc783382088e233');
INSERT INTO `items` (`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`,`uuid`) values ('30189','0','','10308','HAProxy: Get stats','web.page.get["{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH};csv"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'HAProxy Statistics Report in CSV format','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aabdb5706b6744379561f269e0709141');
INSERT INTO `items` (`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`,`uuid`) values ('30190','0','','10308','HAProxy: Get stats page','web.page.get["{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'HAProxy Statistics Report HTML','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e70009bd4e3041a3952738673ebb5c29');
INSERT INTO `items` (`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`,`uuid`) values ('30196','15','','10308','HAProxy Frontend {#PXNAME}: Session utilization','haproxy.frontend.sutil[{#PXNAME},{#SVNAME}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//haproxy.frontend.scur[{#PXNAME},{#SVNAME}]) / last(//haproxy.frontend.slim[{#PXNAME},{#SVNAME}]) * 100','','0','','','','','2',NULL,'Percentage of sessions used (scur / slim * 100).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4aedda0904954ade92a4aad6460d759b');
INSERT INTO `items` (`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`,`uuid`) values ('30230','19','','10309','HAProxy: Get stats','haproxy.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$HAPROXY.USERNAME}','{$HAPROXY.PASSWORD}','','','0',NULL,'HAProxy Statistics Report in CSV format','0','30d','0','',NULL,'3s','{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH};csv','','','200','1','0','','0','0','0','0','0','0','0','93a0ea1e5b0145b5bd2dcdb698d367c2');
INSERT INTO `items` (`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`,`uuid`) values ('30231','19','','10309','HAProxy: Get stats page','haproxy.get_html','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$HAPROXY.USERNAME}','{$HAPROXY.PASSWORD}','','','0',NULL,'HAProxy Statistics Report HTML','0','30d','0','',NULL,'3s','{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH}','','','200','1','0','','0','0','0','0','0','0','0','123c03c715494faea6b1d4f8b8fa564d');
INSERT INTO `items` (`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`,`uuid`) values ('30239','15','','10309','HAProxy Frontend {#PXNAME}: Session utilization','haproxy.frontend.sutil[{#PXNAME},{#SVNAME}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//haproxy.frontend.scur[{#PXNAME},{#SVNAME}]) / last(//haproxy.frontend.slim[{#PXNAME},{#SVNAME}]) * 100','','0','','','','','2',NULL,'Percentage of sessions used (scur / slim * 100).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','53efa6139fe3400283c96ec76eb20855');
INSERT INTO `items` (`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`,`uuid`) values ('30273','0','','10310','Redis: Ping','redis.ping["{$REDIS.CONN.URI}"]','1m','7h','365d','0','3','','','','',NULL,'21','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5949fadcbe2b405baff0668e81627278');
INSERT INTO `items` (`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`,`uuid`) values ('30274','0','','10310','Redis: Slowlog entries per second','redis.slowlog.count["{$REDIS.CONN.URI}"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','51a65fa1d27e4fcd915c5019687e7bc9');
INSERT INTO `items` (`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`,`uuid`) values ('30275','0','','10310','Redis: Get config','redis.config["{$REDIS.CONN.URI}"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bf68f3ecc3544ef0af00889139caf313');
INSERT INTO `items` (`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`,`uuid`) values ('30276','0','','10310','Redis: Get info','redis.info["{$REDIS.CONN.URI}"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','720f146ffe7e481482e11db4b99634c8');
INSERT INTO `items` (`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`,`uuid`) values ('30337','0','','10310','Process metrics discovery','proc.num["{$REDIS.LLD.PROCESS_NAME}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Collect metrics by Zabbix agent if it exists','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','527a3526b0e64225bb3dcf2dbbfbda5b');
INSERT INTO `items` (`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`,`uuid`) values ('30344','0','','10310','Redis: CPU utilization','proc.cpu.util["{$REDIS.PROCESS_NAME}{#SINGLETON}"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Process CPU utilization percentage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','376a8861723c45c3bde08573c7ab2ed9');
INSERT INTO `items` (`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`,`uuid`) values ('30345','0','','10310','Redis: Memory usage (rss)','proc.mem["{$REDIS.PROCESS_NAME}{#SINGLETON}",,,,rss]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Resident set size memory used by process in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9d68e00f913a4faea5a334d361f324b0');
INSERT INTO `items` (`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`,`uuid`) values ('30346','0','','10310','Redis: Memory usage (vsize)','proc.mem["{$REDIS.PROCESS_NAME}{#SINGLETON}",,,,vsize]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Virtual memory size used by process in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','325cabaa95994a58bf30992586ba7544');
INSERT INTO `items` (`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`,`uuid`) values ('30347','0','','10310','Redis: Number of processes running','proc.num["{$REDIS.PROCESS_NAME}{#SINGLETON}"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d9ccc25e5d1b4f05b22354a7672b518c');
INSERT INTO `items` (`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`,`uuid`) values ('30423','0','','10314','Windows services discovery','service.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of Windows services of different types as defined in template\'s macros.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d4fb5efff5494013b452e5a47ac265f5');
INSERT INTO `items` (`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`,`uuid`) values ('30425','0','','10314','State of service "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME})','service.info["{#SERVICE.NAME}",state]','1m','7d','365d','0','3','','','','',NULL,'45','','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','934d8e7f237d42739e880803f02f0da9');
INSERT INTO `items` (`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`,`uuid`) values ('30431','0','','10316','MySQL: Version','mysql.version["{$MYSQL.HOST}","{$MYSQL.PORT}"]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a5d0f152c3ef4e069c3d5a6a5a9470fe');
INSERT INTO `items` (`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`,`uuid`) values ('30432','0','','10316','MySQL: Status','mysql.ping["{$MYSQL.HOST}","{$MYSQL.PORT}"]','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','41cd6c8c535948f3bde6324e0912f1a8');
INSERT INTO `items` (`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`,`uuid`) values ('30433','0','','10316','MySQL: Get status variables','mysql.get_status_variables["{$MYSQL.HOST}","{$MYSQL.PORT}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets server global status information.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2ba81b425bde4ba5b3f7d00a6c922ed9');
INSERT INTO `items` (`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`,`uuid`) values ('30434','15','','10316','MySQL: Buffer pool utilization','mysql.buffer_pool_utilization','1m','7d','365d','0','0','','%','','',NULL,NULL,'( last(//mysql.innodb_buffer_pool_pages_total) - \r\nlast(//mysql.innodb_buffer_pool_pages_free) ) / \r\n( last(//mysql.innodb_buffer_pool_pages_total) + \r\n( last(//mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 * \r\n( last(//mysql.innodb_buffer_pool_pages_total) > 0 )','','0','','','','','0',NULL,'Ratio of used to total pages in the buffer pool.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9aca02e86e744f43ab48e8ca9453cf77');
INSERT INTO `items` (`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`,`uuid`) values ('30435','15','','10316','MySQL: Buffer pool efficiency','mysql.buffer_pool_efficiency','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//mysql.innodb_buffer_pool_reads) / \r\n( last(//mysql.innodb_buffer_pool_read_requests) + \r\n( last(//mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * \r\n( last(//mysql.innodb_buffer_pool_read_requests) > 0 )','','0','','','','','0',NULL,'The item shows how effectively the buffer pool is serving reads.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9a447424aca84124abdfa389865126d4');
INSERT INTO `items` (`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`,`uuid`) values ('30472','0','','10316','Database discovery','mysql.db.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning databases in DBMS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ceb226f000d48f099ee6e128ad551b5');
INSERT INTO `items` (`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`,`uuid`) values ('30473','0','','10316','Replication discovery','mysql.replication.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If "show slave status" returns Master_Host, "Replication: *" items are created.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aed60b7ae3794d0ba25ad82da12b8966');
INSERT INTO `items` (`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`,`uuid`) values ('30474','0','','10316','MySQL: Size of database {#DBNAME}','mysql.dbsize["{$MYSQL.HOST}","{$MYSQL.PORT}","{#DBNAME}"]','5m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dda45077011d4f8fa5c25b1f351179ca');
INSERT INTO `items` (`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`,`uuid`) values ('30475','0','','10316','MySQL: Replication Slave status {#MASTERHOST}','mysql.slave_status["{$MYSQL.HOST}","{$MYSQL.PORT}","{#MASTERHOST}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The item gets status information on the essential parameters of the slave threads.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d87c7c03e5884a43912f60ad91c3b46f');
INSERT INTO `items` (`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`,`uuid`) values ('30479','11','','10317','MySQL: Get status variables','db.odbc.get[get_status_variables,"{$MYSQL.DSN}"]','1m','0','0','0','4','','','','',NULL,NULL,'show global status','','0','{$MYSQL.USER}','{$MYSQL.PASSWORD}','','','0',NULL,'The item gets server global status information.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','72e0f88741d746bf88e8951ef69681f9');
INSERT INTO `items` (`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`,`uuid`) values ('30480','11','','10317','MySQL: Version','db.odbc.select[version,"{$MYSQL.DSN}"]','15m','7d','0','0','1','','','','',NULL,NULL,'select version()','','0','{$MYSQL.USER}','{$MYSQL.PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b9fb80ca366e4d33801472bcd013f881');
INSERT INTO `items` (`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`,`uuid`) values ('30481','11','','10317','MySQL: Status','db.odbc.select[ping,"{$MYSQL.DSN}"]','1m','7d','365d','0','3','','','','',NULL,'23','select "1"','','0','{$MYSQL.USER}','{$MYSQL.PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5b7c14e38799427cb6520f47bf8afe6c');
INSERT INTO `items` (`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`,`uuid`) values ('30482','15','','10317','MySQL: Buffer pool efficiency','mysql.buffer_pool_efficiency','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//mysql.innodb_buffer_pool_reads) / \r\n( last(//mysql.innodb_buffer_pool_read_requests) + \r\n( last(//mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * \r\n( last(//mysql.innodb_buffer_pool_read_requests) > 0 )','','0','','','','','0',NULL,'The item shows how effectively the buffer pool is serving reads.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','05e7e91206bb4138a945ea0de2d8c01d');
INSERT INTO `items` (`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`,`uuid`) values ('30483','15','','10317','MySQL: Buffer pool utilization','mysql.buffer_pool_utilization','1m','7d','365d','0','0','','%','','',NULL,NULL,'( last(//mysql.innodb_buffer_pool_pages_total) - \r\nlast(//mysql.innodb_buffer_pool_pages_free) ) / \r\n( last(//mysql.innodb_buffer_pool_pages_total) + \r\n( last(//mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 * \r\n( last(//mysql.innodb_buffer_pool_pages_total) > 0 )','','0','','','','','0',NULL,'Ratio of used to total pages in the buffer pool.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad5520e067ea405eb939d319fa9690e9');
INSERT INTO `items` (`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`,`uuid`) values ('30520','11','','10317','Database discovery','db.odbc.discovery[databases,"{$MYSQL.DSN}"]','1h','90d','0','0','4','','','','',NULL,NULL,'show databases','','0','{$MYSQL.USER}','{$MYSQL.PASSWORD}','','','1',NULL,'Scanning databases in DBMS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0987fb6afdae4587bc32864fa42728f2');
INSERT INTO `items` (`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`,`uuid`) values ('30521','11','','10317','Replication discovery','db.odbc.discovery[replication,"{$MYSQL.DSN}"]','1h','90d','0','0','4','','','','',NULL,NULL,'show slave status','','0','{$MYSQL.USER}','{$MYSQL.PASSWORD}','','','1',NULL,'If "show slave status" returns Master_Host, "Replication: *" items are created.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d0a235c0267c48e28bc6ecb99fb2380d');
INSERT INTO `items` (`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`,`uuid`) values ('30522','11','','10317','MySQL: Size of database {#DATABASE}','db.odbc.select[{#DATABASE}_size,"{$MYSQL.DSN}"]','5m','7d','365d','0','3','','B','','',NULL,NULL,'SELECT COALESCE(SUM(DATA_LENGTH + INDEX_LENGTH),0) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA="{#DATABASE}"','','0','{$MYSQL.USER}','{$MYSQL.PASSWORD}','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f358179ef78b4a31affa9e049b4048b8');
INSERT INTO `items` (`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`,`uuid`) values ('30523','11','','10317','MySQL: Replication Slave status {#MASTER_HOST}','db.odbc.get["{#MASTER_HOST}","{$MYSQL.DSN}"]','1m','0','0','0','4','','','','',NULL,NULL,'show slave status','','0','{$MYSQL.USER}','{$MYSQL.PASSWORD}','','','2',NULL,'The item gets status information on the essential parameters of the slave threads.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d88f65c4bee84e74bb6e00061ab27f0c');
INSERT INTO `items` (`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`,`uuid`) values ('30527','0','','10318','Docker: Get data_usage','docker.data_usage','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4f7221691d494c60b40abb6dd5c14719');
INSERT INTO `items` (`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`,`uuid`) values ('30528','0','','10318','Docker: Get containers','docker.containers','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6edcd2fbe7c446738d323ce7f1c11810');
INSERT INTO `items` (`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`,`uuid`) values ('30529','0','','10318','Docker: Get info','docker.info','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3d8265e0495d4cbe97535f281a957b3e');
INSERT INTO `items` (`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`,`uuid`) values ('30530','0','','10318','Docker: Ping','docker.ping','1m','7h','365d','0','3','','','','',NULL,'24','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c8f26e4b80f4356bde061ccddb95f2c');
INSERT INTO `items` (`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`,`uuid`) values ('30531','0','','10318','Docker: Get images','docker.images','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8b2be6316b8d4d019443062f0809b579');
INSERT INTO `items` (`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`,`uuid`) values ('30571','0','','10318','Containers discovery','docker.containers.discovery[false]','15m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for containers metrics\r\n\r\nParameter:\r\ntrue - Returns all containers\r\nfalse - Returns only running containers','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6f379dce9d3440018deb2c2cbaa91c06');
INSERT INTO `items` (`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`,`uuid`) values ('30572','0','','10318','Images discovery','docker.images.discovery','15m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for images metrics','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b31468772c942cc8a401af2d33f17d2');
INSERT INTO `items` (`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`,`uuid`) values ('30573','0','','10318','Container {#NAME}: Get stats','docker.container_stats["{#NAME}"]','1m','0','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get container stats based on resource usage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4192b5b8be2545568637b7121c1466c1');
INSERT INTO `items` (`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`,`uuid`) values ('30574','0','','10318','Container {#NAME}: Get info','docker.container_info["{#NAME}"]','1m','0','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Return low-level information about a container','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','743e2c9545de49c89472e343bf8d38da');
INSERT INTO `items` (`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`,`uuid`) values ('30611','0','','10319','Memcached: Ping','memcached.ping["{$MEMCACHED.CONN.URI}"]','1m','7d','365d','0','3','','','','',NULL,'25','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','57a4c2e763c3430daacd4495b91c3e74');
INSERT INTO `items` (`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`,`uuid`) values ('30612','0','','10319','Memcached: Get status','memcached.stats["{$MEMCACHED.CONN.URI}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3a096b6d7d9945fe9a25d1fb5c835f1a');
INSERT INTO `items` (`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`,`uuid`) values ('30637','0','','10320','MySQL: Version','mysql.version["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8058b068b90748fea464443058103fc8');
INSERT INTO `items` (`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`,`uuid`) values ('30638','0','','10320','MySQL: Status','mysql.ping["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"]','1m','7d','365d','0','3','','','','',NULL,'26','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ca25701d88a4d33899a515d8e25dd5b');
INSERT INTO `items` (`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`,`uuid`) values ('30639','0','','10320','MySQL: Get status variables','mysql.get_status_variables["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets server global status information.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a18b1092c42a4560abac7af42b14f007');
INSERT INTO `items` (`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`,`uuid`) values ('30640','15','','10320','MySQL: Buffer pool utilization','mysql.buffer_pool_utilization','1m','7d','365d','0','0','','%','','',NULL,NULL,'( last(//mysql.innodb_buffer_pool_pages_total) - \r\nlast(//mysql.innodb_buffer_pool_pages_free) ) / \r\n( last(//mysql.innodb_buffer_pool_pages_total) + \r\n( last(//mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 * \r\n( last(//mysql.innodb_buffer_pool_pages_total) > 0 )','','0','','','','','0',NULL,'Ratio of used to total pages in the buffer pool.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','70a1642e80114fd3a129c5774acc4f50');
INSERT INTO `items` (`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`,`uuid`) values ('30641','15','','10320','MySQL: Buffer pool efficiency','mysql.buffer_pool_efficiency','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//mysql.innodb_buffer_pool_reads) / \r\n( last(//mysql.innodb_buffer_pool_read_requests) + \r\n( last(//mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * \r\n( last(//mysql.innodb_buffer_pool_read_requests) > 0 )','','0','','','','','0',NULL,'The item shows how effectively the buffer pool is serving reads.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e222b97642d04128af8c1ec20e463152');
INSERT INTO `items` (`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`,`uuid`) values ('30678','0','','10320','Database discovery','mysql.db.discovery["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning databases in DBMS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','49cbb331980040908673ceb2706d9542');
INSERT INTO `items` (`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`,`uuid`) values ('30679','0','','10320','Replication discovery','mysql.replication.discovery["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If "show slave status" returns Master_Host, "Replication: *" items are created.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','59cd0d5f67e441f7ad3627233ab6b595');
INSERT INTO `items` (`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`,`uuid`) values ('30680','0','','10320','MySQL: Size of database {#DATABASE}','mysql.db.size["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}","{#DATABASE}"]','5m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e3e3c31483e94be2bd24b062bb049027');
INSERT INTO `items` (`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`,`uuid`) values ('30681','0','','10320','MySQL: Replication Slave status {#MASTER_HOST}','mysql.replication.get_slave_status["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}","{#MASTER_HOST}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The item gets status information on the essential parameters of the slave threads.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','130d6421b7864444a083dc7ffb1c03c5');
INSERT INTO `items` (`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`,`uuid`) values ('30685','12','','10321','Get IPMI sensors','ipmi.get','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The master item that receives all sensors with values for LLD and dependent elements from BMC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dbcf45cb09284fc19a17e7369c8fda43');
INSERT INTO `items` (`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`,`uuid`) values ('30690','3','','10322','ES: Service status','net.tcp.service["{$ELASTICSEARCH.SCHEME}","{HOST.CONN}","{$ELASTICSEARCH.PORT}"]','1m','7d','365d','0','3','','','','',NULL,'27','','','0','','','','','0',NULL,'Checks if the service is running and accepting TCP connections.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d0d38ce55f844a51a0f2131c86bec1ae');
INSERT INTO `items` (`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`,`uuid`) values ('30691','19','','10322','ES: Get cluster stats','es.cluster.get_stats','1m','0h','0','0','4','','','','',NULL,NULL,'','','1','{$ELASTICSEARCH.USERNAME}','{$ELASTICSEARCH.PASSWORD}','','','0',NULL,'Returns cluster statistics.','0','30d','0','',NULL,'15s','{$ELASTICSEARCH.SCHEME}://{HOST.CONN}:{$ELASTICSEARCH.PORT}/_cluster/stats','','','200','1','0','','0','0','0','0','0','0','0','7066a66f352e4d79ba4aec11c0c5c611');
INSERT INTO `items` (`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`,`uuid`) values ('30692','3','','10322','ES: Service response time','net.tcp.service.perf["{$ELASTICSEARCH.SCHEME}","{HOST.CONN}","{$ELASTICSEARCH.PORT}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Checks performance of the TCP service.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','671888d47c724e54aca78fbe1b3ecaed');
INSERT INTO `items` (`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`,`uuid`) values ('30693','19','','10322','ES: Get nodes stats','es.nodes.get_stats','1m','0h','0','0','4','','','','',NULL,NULL,'','','1','{$ELASTICSEARCH.USERNAME}','{$ELASTICSEARCH.PASSWORD}','','','0',NULL,'Returns cluster nodes statistics.','0','30d','0','',NULL,'30s','{$ELASTICSEARCH.SCHEME}://{HOST.CONN}:{$ELASTICSEARCH.PORT}/_nodes/stats','','','200','1','0','','0','0','0','0','0','0','0','66c22b8b2b8b40fda7ac6f0ae472befd');
INSERT INTO `items` (`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`,`uuid`) values ('30694','19','','10322','ES: Get cluster health','es.cluster.get_health','1m','0h','0','0','4','','','','',NULL,NULL,'','','1','{$ELASTICSEARCH.USERNAME}','{$ELASTICSEARCH.PASSWORD}','','','0',NULL,'Returns the health status of a cluster.','0','30d','0','',NULL,'15s','{$ELASTICSEARCH.SCHEME}://{HOST.CONN}:{$ELASTICSEARCH.PORT}/_cluster/health?timeout=5s','','','200','1','0','','0','0','0','0','0','0','0','7f587fd270be4eb68d81ae1de2a3ca1f');
INSERT INTO `items` (`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`,`uuid`) values ('30713','19','','10322','Cluster nodes discovery','es.nodes.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$ELASTICSEARCH.USERNAME}','{$ELASTICSEARCH.PASSWORD}','','','1',NULL,'Discovery ES cluster nodes.','0','30d','0','',NULL,'15s','{$ELASTICSEARCH.SCHEME}://{HOST.CONN}:{$ELASTICSEARCH.PORT}/_nodes/_all/nodes','','','200','1','0','','0','0','0','0','0','0','0','5105173f24d941b2969fe3d190d22e82');
INSERT INTO `items` (`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`,`uuid`) values ('30714','15','','10322','ES {#ES.NODE}: Query latency','es.node.indices.search.query_latency[{#ES.NODE}]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'change(//es.node.indices.search.query_time_in_millis[{#ES.NODE}]) / \r\n( change(//es.node.indices.search.query_total[{#ES.NODE}]) + (change(//es.node.indices.search.query_total[{#ES.NODE}]) = 0) )','','0','','','','','2',NULL,'The average query latency calculated by sampling the total number of queries and the total elapsed time at regular intervals.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fadb6fe530ab4b1296d4c17728667b12');
INSERT INTO `items` (`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`,`uuid`) values ('30715','15','','10322','ES {#ES.NODE}: Flush latency','es.node.indices.flush.latency[{#ES.NODE}]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'change(//es.node.indices.flush.total_time_in_millis[{#ES.NODE}]) / ( change(//es.node.indices.flush.total[{#ES.NODE}]) + (change(//es.node.indices.flush.total[{#ES.NODE}]) = 0) )','','0','','','','','2',NULL,'The average flush latency calculated from the available flush.total and flush.total_time_in_millis metrics.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c530311329e348cca74c38fa2260236b');
INSERT INTO `items` (`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`,`uuid`) values ('30716','15','','10322','ES {#ES.NODE}: Indexing latency','es.node.indices.indexing.index_latency[{#ES.NODE}]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'change(//es.node.indices.indexing.index_time_in_millis[{#ES.NODE}]) / ( change(//es.node.indices.indexing.index_total[{#ES.NODE}]) + (change(//es.node.indices.indexing.index_total[{#ES.NODE}]) = 0) )','','0','','','','','2',NULL,'The average indexing latency calculated from the available index_total and index_time_in_millis metrics.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','23f54c51c30a4dbdbef48611a7907db6');
INSERT INTO `items` (`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`,`uuid`) values ('30717','15','','10322','ES {#ES.NODE}: Fetch latency','es.node.indices.search.fetch_latency[{#ES.NODE}]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'change(//es.node.indices.search.fetch_time_in_millis[{#ES.NODE}]) / ( change(//es.node.indices.search.fetch_total[{#ES.NODE}]) + (change(//es.node.indices.search.fetch_total[{#ES.NODE}]) = 0) )','','0','','','','','2',NULL,'The average fetch latency calculated by sampling the total number of fetches and the total elapsed time at regular intervals.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','79b5fd5e04e249da9f73fbe68915fdb1');
INSERT INTO `items` (`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`,`uuid`) values ('30789','3','','10309','HAProxy: Service response time','net.tcp.service.perf["{$HAPROXY.STATS.SCHEME}","{HOST.CONN}","{$HAPROXY.STATS.PORT}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6f9c22a840764181be9cf98609e7f691');
INSERT INTO `items` (`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`,`uuid`) values ('30790','3','','10309','HAProxy: Service status','net.tcp.service["{$HAPROXY.STATS.SCHEME}","{HOST.CONN}","{$HAPROXY.STATS.PORT}"]','1m','7d','365d','0','3','','','','',NULL,'20','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','68cb52357d7443d79373df3890ed175f');
INSERT INTO `items` (`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`,`uuid`) values ('30821','19','','10323','ClickHouse: Ping','clickhouse.ping','1m','7d','365d','0','3','','','','',NULL,'28','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ping','','','200','1','0','','0','0','0','0','0','0','0','cb40b0cf1296436d9a4e41062d1b3fa9');
INSERT INTO `items` (`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`,`uuid`) values ('30822','19','','10323','ClickHouse: Version','clickhouse.version','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the server','0','30d','0','',NULL,'3s','{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/','[{"query":"SELECT version()"}]','','200','1','0','X-ClickHouse-User: {$CLICKHOUSE.USER}\r\nX-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}','0','0','0','0','0','0','0','d09b77c25dfd45249df05fc3f6d45b7b');
INSERT INTO `items` (`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`,`uuid`) values ('30823','19','','10323','ClickHouse: Get replicas info','clickhouse.replicas','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/','[{"query":"SELECT database, table, is_readonly, is_session_expired, future_parts, parts_to_check, queue_size, inserts_in_queue, merges_in_queue, log_max_index, log_pointer, total_replicas, active_replicas, log_max_index - log_pointer as replica_lag FROM system.replicas format JSON"}]','','200','1','0','X-ClickHouse-User: {$CLICKHOUSE.USER}\r\nX-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}','0','0','0','0','0','0','0','3793962be3494772832796c932947e1d');
INSERT INTO `items` (`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`,`uuid`) values ('30824','19','','10323','ClickHouse: Get system.asynchronous_metrics','clickhouse.system.asynchronous_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get metrics that are calculated periodically in the background','0','30d','0','',NULL,'3s','{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/','[{"query":"select metric, value from system.asynchronous_metrics format JSON"}]','','200','1','0','X-ClickHouse-User: {$CLICKHOUSE.USER}\r\nX-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}','0','0','0','0','0','0','0','6c84e0abd186467882d2d3842749f937');
INSERT INTO `items` (`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`,`uuid`) values ('30825','19','','10323','ClickHouse: Get system.events','clickhouse.system.events','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get information about the number of events that have occurred in the system.','0','30d','0','',NULL,'3s','{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/','[{"query":"select event, value from system.events format JSON"}]','','200','1','0','X-ClickHouse-User: {$CLICKHOUSE.USER}\r\nX-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}','0','0','0','0','0','0','0','8aa612d27547446e9457aeaf6e94e320');
INSERT INTO `items` (`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`,`uuid`) values ('30826','19','','10323','ClickHouse: Get system.metrics','clickhouse.system.metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get metrics which can be calculated instantly, or have a current value format JSONEachRow','0','30d','0','',NULL,'3s','{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/','[{"query":"select metric, value from system.metrics format JSON"}]','','200','1','0','X-ClickHouse-User: {$CLICKHOUSE.USER}\r\nX-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}','0','0','0','0','0','0','0','2193464b67724392905deef21f2f7c20');
INSERT INTO `items` (`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`,`uuid`) values ('30827','19','','10323','ClickHouse: Longest currently running query time','clickhouse.process.elapsed','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Get longest running query.','0','30d','0','',NULL,'3s','{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/','[{"query":"SELECT max(elapsed) FROM system.processes"}]','','200','1','0','X-ClickHouse-User: {$CLICKHOUSE.USER}\r\nX-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}','0','0','0','0','0','0','0','4fb14efc757542c1b50605bdfb2e23cb');
INSERT INTO `items` (`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`,`uuid`) values ('30828','19','','10323','ClickHouse: Get tables info','clickhouse.tables','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/','[{"query":"select database, table, sum(bytes) as bytes, count() as parts, sum(rows) as rows from system.parts where active = 1 group by database, table format JSON"}]','','200','1','0','X-ClickHouse-User: {$CLICKHOUSE.USER}\r\nX-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}','0','0','0','0','0','0','0','042f4b688cfe488fbd0e80f40f51ce78');
INSERT INTO `items` (`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`,`uuid`) values ('30829','19','','10323','ClickHouse: Get system.settings','clickhouse.system.settings','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get information about settings that are currently in use.','0','30d','0','',NULL,'3s','{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/','[{"query":"select name, value from system.settings format JSON"}]','','200','1','0','X-ClickHouse-User: {$CLICKHOUSE.USER}\r\nX-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}','0','0','0','0','0','0','0','88c843c6d4fd43c794d1447109146312');
INSERT INTO `items` (`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`,`uuid`) values ('30830','19','','10323','ClickHouse: Get dictionaries info','clickhouse.dictionaries','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/','[{"query":"SELECT * FROM system.dictionaries format JSON"}]','','200','1','0','X-ClickHouse-User: {$CLICKHOUSE.USER}\r\nX-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}','0','0','0','0','0','0','0','46d8ed7374274d71a06119f50463f26c');
INSERT INTO `items` (`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`,`uuid`) values ('30896','0','','10264','Apache: Get status','web.page.get["{$APACHE.STATUS.SCHEME}://{$APACHE.STATUS.HOST}:{$APACHE.STATUS.PORT}/{$APACHE.STATUS.PATH}"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Getting data from a machine-readable version of the Apache status page.\r\nhttps://httpd.apache.org/docs/current/mod/mod_status.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','115413a0f5ab4caba418ab841ad81eba');
INSERT INTO `items` (`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`,`uuid`) values ('30923','3','','10324','Etcd: Service\'s TCP port state','net.tcp.service["{$ETCD.SCHEME}","{HOST.CONN}","{$ETCD.PORT}"]','1m','7d','365d','0','3','','','','',NULL,'29','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a0f94f429b99432e86d15ffa74d6eada');
INSERT INTO `items` (`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`,`uuid`) values ('30924','19','','10324','Etcd: Node health','etcd.health','1m','7d','365d','0','3','','','','',NULL,'150','','','1','{$ETCD.USER}','{$ETCD.PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'3s','{$ETCD.SCHEME}://{HOST.CONN}:{$ETCD.PORT}/health','','','200','1','0','','0','0','0','0','0','0','0','3fde4db8b9684ba4b56ba915e48957b5');
INSERT INTO `items` (`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`,`uuid`) values ('30925','19','','10324','Etcd: Get node metrics','etcd.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$ETCD.USER}','{$ETCD.PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'3s','{$ETCD.SCHEME}://{HOST.CONN}:{$ETCD.PORT}/metrics','','','200','1','0','','0','0','0','0','0','0','0','34ffab33275a400ab88e5217dee5ef96');
INSERT INTO `items` (`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`,`uuid`) values ('30926','19','','10324','Etcd: Get version','etcd.get_version','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','{$ETCD.SCHEME}://{HOST.CONN}:{$ETCD.PORT}/version','','','200','1','0','','0','0','0','0','0','0','0','fdf7593420ab42b2a5af8f8b8030b517');
INSERT INTO `items` (`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`,`uuid`) values ('30968','3','','10325','IIS: {$IIS.PORT} port ping','net.tcp.service[{$IIS.SERVICE},,{$IIS.PORT}]','1m','7d','365d','0','3','','','','',NULL,'30','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','96f2dd86997d4e259875b2fa9b1a3169');
INSERT INTO `items` (`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`,`uuid`) values ('30969','0','','10325','IIS: Total connection attempts','perf_counter_en["\\Web Service(_Total)\\Total Connection Attempts (all instances)"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of connections to the Web or FTP service that have been attempted since service startup. The count is the total for all Web sites or FTP sites combined.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','805f7dca2ac74f5bbfb81c5e7bfa6e09');
INSERT INTO `items` (`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`,`uuid`) values ('30970','0','','10325','IIS: Method POST requests per second','perf_counter_en["\\Web Service(_Total)\\Post Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of HTTP requests using POST method. Generally used for forms or gateway requests. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5f1210173665453e84f8f330a8c15eea');
INSERT INTO `items` (`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`,`uuid`) values ('30971','0','','10325','IIS: Method PROPFIND requests per second','perf_counter_en["\\Web Service(_Total)\\Propfind Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the PROPFIND method made. Propfind requests retrieve property values on files and directories. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f197e93e03d04025bc855d4d77c35010');
INSERT INTO `items` (`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`,`uuid`) values ('30972','0','','10325','IIS: Method PROPPATCH requests per second','perf_counter_en["\\Web Service(_Total)\\Proppatch Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the PROPPATCH method made. Proppatch requests set property values on files and directories. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','55c71bab45b04a2ca2afb526bf7c3e7f');
INSERT INTO `items` (`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`,`uuid`) values ('30973','0','','10325','IIS: Method PUT requests per second','perf_counter_en["\\Web Service(_Total)\\Put Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the PUT method made. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d1d19cf6c920465184aa2b2a8b4439c9');
INSERT INTO `items` (`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`,`uuid`) values ('30974','0','','10325','IIS: Method MS-SEARCH requests per second','perf_counter_en["\\Web Service(_Total)\\Search Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the MS-SEARCH method made. Search requests are used to query the server to find resources that match a set of conditions provided by the client. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','20ae8a67912045dc9b69c83d68e5e8ea');
INSERT INTO `items` (`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`,`uuid`) values ('30975','0','','10325','IIS: Uptime','perf_counter_en["\\Web Service(_Total)\\Service Uptime"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Service uptime in seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4aa9419482eb484a8fc1773bee8b2993');
INSERT INTO `items` (`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`,`uuid`) values ('30976','0','','10325','IIS: Method Total requests per second','perf_counter_en["\\Web Service(_Total)\\Total Method Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of all HTTP requests received. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','90eb19d7d37f439da2c78c44d85784ef');
INSERT INTO `items` (`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`,`uuid`) values ('30977','0','','10325','IIS: Method OPTIONS requests per second','perf_counter_en["\\Web Service(_Total)\\Options Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the OPTIONS method made. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','22ececa2db2d488587b1194883723ea6');
INSERT INTO `items` (`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`,`uuid`) values ('30978','0','','10325','IIS: Method TRACE requests per second','perf_counter_en["\\Web Service(_Total)\\Trace Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the TRACE method made. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c2ddd72243ba4a499a7a1e9ba6e4046c');
INSERT INTO `items` (`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`,`uuid`) values ('30979','0','','10325','IIS: Method TRACE requests per second','perf_counter_en["\\Web Service(_Total)\\Unlock Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the UNLOCK method made. Unlock requests are used to remove locks from files. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','05a19416695b436daf701d9750b015a8');
INSERT INTO `items` (`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`,`uuid`) values ('30980','0','','10325','IIS: Files cache hits percentage','perf_counter_en["\\Web Service Cache\\File Cache Hits %"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of user-mode file cache hits to total cache requests (since service startup). Note: This value might be low if the Kernel URI cache hits percentage is high.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1e4b39ec2cca49fb9fb5a306c2724568');
INSERT INTO `items` (`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`,`uuid`) values ('30981','0','','10325','IIS: File cache misses','perf_counter_en["\\Web Service Cache\\File Cache Misses"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of unsuccessful lookups in the user-mode file cache since service startup.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d9c46d370afc496ba0a0ad0c141b4490');
INSERT INTO `items` (`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`,`uuid`) values ('30982','0','','10325','IIS: URIs cache hits percentage','perf_counter_en["\\Web Service Cache\\URI Cache Hits %"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of user-mode URI Cache Hits to total cache requests (since service startup)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','566f0bea097e4b0bb7042e4f0302ff26');
INSERT INTO `items` (`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`,`uuid`) values ('30983','0','','10325','IIS: URI cache misses','perf_counter_en["\\Web Service Cache\\URI Cache Misses"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of unsuccessful lookups in the user-mode URI cache since service startup.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab1884be28b54ea7bb187bbe843bb6a7');
INSERT INTO `items` (`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`,`uuid`) values ('30984','0','','10325','IIS: World Wide Web Publishing Service (W3SVC) state','service.info[W3SVC]','1m','7d','365d','0','3','','','','',NULL,'46','','','0','','','','','0',NULL,'The World Wide Web Publishing Service (W3SVC) provides web connectivity and administration of websites through the IIS snap-in. If the World Wide Web Publishing Service stops, the operating system cannot serve any form of web request. This service was dependent on "Windows Process Activation Service".','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7d76ec3d35f6446c842595c4831fabf4');
INSERT INTO `items` (`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`,`uuid`) values ('30985','0','','10325','IIS: Method Total Other requests per second','perf_counter_en["\\Web Service(_Total)\\Other Request Methods/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total Other Request Methods is the number of HTTP requests that are not OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, MOVE, COPY, MKCOL, PROPFIND, PROPPATCH, SEARCH, LOCK or UNLOCK methods (since service startup). Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1653ca4c0c6743f39d9b1e764022da7c');
INSERT INTO `items` (`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`,`uuid`) values ('30986','0','','10325','IIS: Not Found errors per second','perf_counter_en["\\Web Service(_Total)\\Not Found Errors/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of errors due to requests that couldn\'t be satisfied by the server because the requested document could not be found. These are generally reported to the client with HTTP error code 404. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','11d9995d25114e4fad666a1b75734c01');
INSERT INTO `items` (`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`,`uuid`) values ('30987','0','','10325','IIS: Anonymous users per second','perf_counter_en["\\Web Service(_Total)\\Anonymous Users/sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of requests from users over an anonymous connection per second. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','50d8f5a08bbc494b8525f26eedbee781');
INSERT INTO `items` (`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`,`uuid`) values ('30988','0','','10325','IIS: Current connections','perf_counter_en["\\Web Service(_Total)\\Current Connections"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active connections.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1baed2823f1a4d2ca618cac5ab8bbcbb');
INSERT INTO `items` (`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`,`uuid`) values ('30989','0','','10325','IIS: Bytes Received per second','perf_counter_en["\\Web Service(_Total)\\Bytes Received/sec", 60]','1m','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The average rate per minute at which data bytes are received by the service at the Application Layer. Does not include protocol headers or control bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac80660edbb74c1fb4739368806900d5');
INSERT INTO `items` (`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`,`uuid`) values ('30990','0','','10325','IIS: Bytes Sent per second','perf_counter_en["\\Web Service(_Total)\\Bytes Sent/sec", 60]','1m','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The average rate per minute at which data bytes are sent by the service.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a0648316a164446bbf605930469d4c4');
INSERT INTO `items` (`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`,`uuid`) values ('30991','0','','10325','IIS: Bytes Total per second','perf_counter_en["\\Web Service(_Total)\\Bytes Total/Sec", 60]','1m','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The average rate per minute of total bytes/sec transferred by the Web service (sum of bytes sent/sec and bytes received/sec).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f086d17b51254e16bd43b57b39dc000e');
INSERT INTO `items` (`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`,`uuid`) values ('30992','0','','10325','IIS: Method CGI requests per second','perf_counter_en["\\Web Service(_Total)\\CGI Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of CGI requests that are simultaneously being processed by the Web service. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b94dc0df81234c7d97197fe30875d5e9');
INSERT INTO `items` (`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`,`uuid`) values ('30993','0','','10325','IIS: Connection attempts per second','perf_counter_en["\\Web Service(_Total)\\Connection Attempts/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The average rate per minute that connections using the Web service are being attempted. The count is the average for all Web sites combined.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1e8244ebb5524c72af1d506df7bb2982');
INSERT INTO `items` (`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`,`uuid`) values ('30994','0','','10325','IIS: Method COPY requests per second','perf_counter_en["\\Web Service(_Total)\\Copy Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests made using the COPY method. Copy requests are used for copying files and directories. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2b4cb17b486643eda9a560b43af70d74');
INSERT INTO `items` (`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`,`uuid`) values ('30995','0','','10325','IIS: Method DELETE requests per second','perf_counter_en["\\Web Service(_Total)\\Delete Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the DELETE method made. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','350a6c7fac354570bbba04aa2fd6c98a');
INSERT INTO `items` (`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`,`uuid`) values ('30996','0','','10325','IIS: NonAnonymous users per second','perf_counter_en["\\Web Service(_Total)\\NonAnonymous Users/sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of requests from users over a non-anonymous connection per second. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d67523ef47464f8c9735d0a0359b5c77');
INSERT INTO `items` (`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`,`uuid`) values ('30997','0','','10325','IIS: Method GET requests per second','perf_counter_en["\\Web Service(_Total)\\Get Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests made using the GET method. GET requests are generally used for basic file retrievals or image maps, though they can be used with forms. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6ae641f632ae4422a6f71898078dc2ee');
INSERT INTO `items` (`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`,`uuid`) values ('30998','0','','10325','IIS: Method HEAD requests per second','perf_counter_en["\\Web Service(_Total)\\Head Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the HEAD method made. HEAD requests generally indicate a client is querying the state of a document they already have to see if it needs to be refreshed. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e37ff2d4d1b4bf6bad855a3d09ec6c7');
INSERT INTO `items` (`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`,`uuid`) values ('30999','0','','10325','IIS: Method ISAPI requests per second','perf_counter_en["\\Web Service(_Total)\\ISAPI Extension Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of ISAPI Extension requests that are simultaneously being processed by the Web service. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','18217a40ddbc421fb2db1b19d1fb7d59');
INSERT INTO `items` (`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`,`uuid`) values ('31000','0','','10325','IIS: Locked errors per second','perf_counter_en["\\Web Service(_Total)\\Locked Errors/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of errors due to requests that couldn\'t be satisfied by the server because the requested document was locked. These are generally reported as an HTTP 423 error code to the client. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b7634ae2a9d5454bbac631b55e896277');
INSERT INTO `items` (`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`,`uuid`) values ('31001','0','','10325','IIS: Method LOCK requests per second','perf_counter_en["\\Web Service(_Total)\\Lock Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests made using the LOCK method. Lock requests are used to lock a file for one user so that only that user can modify the file. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','069548a7c9e840bb8975f9b02b582c51');
INSERT INTO `items` (`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`,`uuid`) values ('31002','0','','10325','IIS: Method MKCOL requests per second','perf_counter_en["\\Web Service(_Total)\\Mkcol Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the MKCOL method made. Mkcol requests are used to create directories on the server. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','02c1fe0d15d94744959e4b53b21309fe');
INSERT INTO `items` (`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`,`uuid`) values ('31003','0','','10325','IIS: Method MOVE requests per second','perf_counter_en["\\Web Service(_Total)\\Move Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the MOVE method made. Move requests are used for moving files and directories. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6395e8edb1394396bd7602f621cf4b00');
INSERT INTO `items` (`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`,`uuid`) values ('31004','0','','10325','IIS: Windows Process Activation Service (WAS) state','service.info[WAS]','1m','7d','365d','0','3','','','','',NULL,'46','','','0','','','','','0',NULL,'Windows Process Activation Service (WAS) is a tool for managing worker processes that contain applications that host Windows Communication Foundation (WCF) services. Worker processes handle requests that are sent to a Web Server for specific application pools. Each application pool sets boundaries for the applications it contains.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','38858eb3cc2f4580a0a3c56c11fdeba5');
INSERT INTO `items` (`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`,`uuid`) values ('31005','0','','10325','Application pools discovery','wmi.getall[root\\webAdministration, select Name from ApplicationPool]','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','6148952d54d54982af404c6c845ccbf2');
INSERT INTO `items` (`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`,`uuid`) values ('31006','0','','10325','IIS: AppPool {#APPPOOL} state','perf_counter_en["\\APP_POOL_WAS({#APPPOOL})\\Current Application Pool State"]','1m','7d','365d','0','3','','','','',NULL,'152','','','0','','','','','2',NULL,'The state of the application pool.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','270068fe6e6844ae9bbf993509eda7e0');
INSERT INTO `items` (`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`,`uuid`) values ('31007','0','','10325','IIS: {#APPPOOL} Uptime','perf_counter_en["\\APP_POOL_WAS({#APPPOOL})\\Current Application Pool Uptime"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The web application uptime period since the last restart.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f039a53351d54132ab9ad046282389d8');
INSERT INTO `items` (`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`,`uuid`) values ('31008','0','','10325','IIS: AppPool {#APPPOOL} recycles','perf_counter_en["\\APP_POOL_WAS({#APPPOOL})\\Total Application Pool Recycles"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times the application pool has been recycled since Windows Process Activation Service (WAS) started.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4700b5729ca440869de976ae347598cf');
INSERT INTO `items` (`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`,`uuid`) values ('31009','0','','10325','IIS: AppPool {#APPPOOL} current queue size','perf_counter_en["\\HTTP Service Request Queues({#APPPOOL})\\CurrentQueueSize"]','30s','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of requests in the queue.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','193642cad7214206a00db4f710bfbef8');
INSERT INTO `items` (`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`,`uuid`) values ('31010','3','','10326','IIS: {$IIS.PORT} port ping','net.tcp.service[{$IIS.SERVICE},,{$IIS.PORT}]','1m','7d','365d','0','3','','','','',NULL,'31','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8fa6b28b8226408db07a2317a99581a5');
INSERT INTO `items` (`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`,`uuid`) values ('31011','7','','10326','IIS: Total connection attempts','perf_counter_en["\\Web Service(_Total)\\Total Connection Attempts (all instances)"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of connections to the Web or FTP service that have been attempted since service startup. The count is the total for all Web sites or FTP sites combined.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f181123b522946018d9ac90599693cfe');
INSERT INTO `items` (`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`,`uuid`) values ('31012','7','','10326','IIS: Method POST requests per second','perf_counter_en["\\Web Service(_Total)\\Post Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of HTTP requests using POST method. Generally used for forms or gateway requests. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','222bb49332214781bc48a0eb610035c2');
INSERT INTO `items` (`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`,`uuid`) values ('31013','7','','10326','IIS: Method PROPFIND requests per second','perf_counter_en["\\Web Service(_Total)\\Propfind Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the PROPFIND method made. Propfind requests retrieve property values on files and directories. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','011fff85fb0440b78ca7857454577c08');
INSERT INTO `items` (`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`,`uuid`) values ('31014','7','','10326','IIS: Method PROPPATCH requests per second','perf_counter_en["\\Web Service(_Total)\\Proppatch Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the PROPPATCH method made. Proppatch requests set property values on files and directories. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3b8a1eea86034a268ac37031c08d3740');
INSERT INTO `items` (`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`,`uuid`) values ('31015','7','','10326','IIS: Method PUT requests per second','perf_counter_en["\\Web Service(_Total)\\Put Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the PUT method made. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c4615d7155d14f98b76705df1a5778e4');
INSERT INTO `items` (`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`,`uuid`) values ('31016','7','','10326','IIS: Method MS-SEARCH requests per second','perf_counter_en["\\Web Service(_Total)\\Search Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the MS-SEARCH method made. Search requests are used to query the server to find resources that match a set of conditions provided by the client. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a1cfef3952c346ccb39e85038e49ae63');
INSERT INTO `items` (`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`,`uuid`) values ('31017','7','','10326','IIS: Uptime','perf_counter_en["\\Web Service(_Total)\\Service Uptime"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Service uptime in seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d53040c921324b2195045dacb3738d6f');
INSERT INTO `items` (`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`,`uuid`) values ('31018','7','','10326','IIS: Method Total requests per second','perf_counter_en["\\Web Service(_Total)\\Total Method Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of all HTTP requests received. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff70ce9edf1c45ba8263d33847992baf');
INSERT INTO `items` (`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`,`uuid`) values ('31019','7','','10326','IIS: Method OPTIONS requests per second','perf_counter_en["\\Web Service(_Total)\\Options Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the OPTIONS method made. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dcb0338dc59d4c95b9f712fed84a3aa2');
INSERT INTO `items` (`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`,`uuid`) values ('31020','7','','10326','IIS: Method TRACE requests per second','perf_counter_en["\\Web Service(_Total)\\Trace Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the TRACE method made. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fff9e968d5474adfbfd4ae9e19d836d9');
INSERT INTO `items` (`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`,`uuid`) values ('31021','7','','10326','IIS: Method TRACE requests per second','perf_counter_en["\\Web Service(_Total)\\Unlock Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the UNLOCK method made. Unlock requests are used to remove locks from files. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b6b770a6b014b8c857277e1d9cf6ffe');
INSERT INTO `items` (`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`,`uuid`) values ('31022','7','','10326','IIS: Files cache hits percentage','perf_counter_en["\\Web Service Cache\\File Cache Hits %"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of user-mode file cache hits to total cache requests (since service startup). Note: This value might be low if the Kernel URI cache hits percentage is high.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5ef9aec68d5b4fe79b17453ab8988b59');
INSERT INTO `items` (`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`,`uuid`) values ('31023','7','','10326','IIS: File cache misses','perf_counter_en["\\Web Service Cache\\File Cache Misses"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of unsuccessful lookups in the user-mode file cache since service startup.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a041713a95e746f5b4797a7aecaed9a5');
INSERT INTO `items` (`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`,`uuid`) values ('31024','7','','10326','IIS: URIs cache hits percentage','perf_counter_en["\\Web Service Cache\\URI Cache Hits %"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of user-mode URI Cache Hits to total cache requests (since service startup)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5488881cba254b6b8f49ebacae2bc4c4');
INSERT INTO `items` (`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`,`uuid`) values ('31025','7','','10326','IIS: URI cache misses','perf_counter_en["\\Web Service Cache\\URI Cache Misses"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of unsuccessful lookups in the user-mode URI cache since service startup.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ffd18aef119f4c7c845c6a3e76fb747d');
INSERT INTO `items` (`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`,`uuid`) values ('31026','7','','10326','IIS: World Wide Web Publishing Service (W3SVC) state','service.info[W3SVC]','1m','7d','365d','0','3','','','','',NULL,'47','','','0','','','','','0',NULL,'The World Wide Web Publishing Service (W3SVC) provides web connectivity and administration of websites through the IIS snap-in. If the World Wide Web Publishing Service stops, the operating system cannot serve any form of web request. This service was dependent on "Windows Process Activation Service".','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','31d4f21ce4c6412b912ca65fe9aee83c');
INSERT INTO `items` (`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`,`uuid`) values ('31027','7','','10326','IIS: Method Total Other requests per second','perf_counter_en["\\Web Service(_Total)\\Other Request Methods/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total Other Request Methods is the number of HTTP requests that are not OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, MOVE, COPY, MKCOL, PROPFIND, PROPPATCH, SEARCH, LOCK or UNLOCK methods (since service startup). Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eb6a098fef824b2e9abe80b4331190f4');
INSERT INTO `items` (`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`,`uuid`) values ('31028','7','','10326','IIS: Not Found errors per second','perf_counter_en["\\Web Service(_Total)\\Not Found Errors/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of errors due to requests that couldn\'t be satisfied by the server because the requested document could not be found. These are generally reported to the client with HTTP error code 404. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','13e65fdff0704e6f87133b8efe34704f');
INSERT INTO `items` (`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`,`uuid`) values ('31029','7','','10326','IIS: Anonymous users per second','perf_counter_en["\\Web Service(_Total)\\Anonymous Users/sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of requests from users over an anonymous connection per second. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e70f872ed9184757b8a62c732658faa5');
INSERT INTO `items` (`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`,`uuid`) values ('31030','7','','10326','IIS: Current connections','perf_counter_en["\\Web Service(_Total)\\Current Connections"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active connections.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8b316e2896f041dca9b4adc601093b5c');
INSERT INTO `items` (`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`,`uuid`) values ('31031','7','','10326','IIS: Bytes Received per second','perf_counter_en["\\Web Service(_Total)\\Bytes Received/sec", 60]','1m','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The average rate per minute at which data bytes are received by the service at the Application Layer. Does not include protocol headers or control bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','64816de795864c8fae879e670dfe9e93');
INSERT INTO `items` (`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`,`uuid`) values ('31032','7','','10326','IIS: Bytes Sent per second','perf_counter_en["\\Web Service(_Total)\\Bytes Sent/sec", 60]','1m','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The average rate per minute at which data bytes are sent by the service.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1b0b636e0bbd4948b3047071a4b964fc');
INSERT INTO `items` (`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`,`uuid`) values ('31033','7','','10326','IIS: Bytes Total per second','perf_counter_en["\\Web Service(_Total)\\Bytes Total/Sec", 60]','1m','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The average rate per minute of total bytes/sec transferred by the Web service (sum of bytes sent/sec and bytes received/sec).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5abf01f6e7a7419d9a1de9803ccf1060');
INSERT INTO `items` (`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`,`uuid`) values ('31034','7','','10326','IIS: Method CGI requests per second','perf_counter_en["\\Web Service(_Total)\\CGI Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of CGI requests that are simultaneously being processed by the Web service. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','37b23949ca94466eb552c6fd8239b650');
INSERT INTO `items` (`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`,`uuid`) values ('31035','7','','10326','IIS: Connection attempts per second','perf_counter_en["\\Web Service(_Total)\\Connection Attempts/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The average rate per minute that connections using the Web service are being attempted. The count is the average for all Web sites combined.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d32eb1398fa7454eb91329aa39d1e90e');
INSERT INTO `items` (`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`,`uuid`) values ('31036','7','','10326','IIS: Method COPY requests per second','perf_counter_en["\\Web Service(_Total)\\Copy Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests made using the COPY method. Copy requests are used for copying files and directories. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','182bceaa31194bdd8c906cf226039b0b');
INSERT INTO `items` (`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`,`uuid`) values ('31037','7','','10326','IIS: Method DELETE requests per second','perf_counter_en["\\Web Service(_Total)\\Delete Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the DELETE method made. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7da6cf8a65b94b6f8d89dc53c7de38eb');
INSERT INTO `items` (`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`,`uuid`) values ('31038','7','','10326','IIS: NonAnonymous users per second','perf_counter_en["\\Web Service(_Total)\\NonAnonymous Users/sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of requests from users over a non-anonymous connection per second. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6dfe3dbde2544c5080c3845d54c83219');
INSERT INTO `items` (`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`,`uuid`) values ('31039','7','','10326','IIS: Method GET requests per second','perf_counter_en["\\Web Service(_Total)\\Get Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests made using the GET method. GET requests are generally used for basic file retrievals or image maps, though they can be used with forms. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5381bfc071524f32bb5290379d2e978d');
INSERT INTO `items` (`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`,`uuid`) values ('31040','7','','10326','IIS: Method HEAD requests per second','perf_counter_en["\\Web Service(_Total)\\Head Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the HEAD method made. HEAD requests generally indicate a client is querying the state of a document they already have to see if it needs to be refreshed. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','414b17c9eb11460cb55d35aeb7b8c071');
INSERT INTO `items` (`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`,`uuid`) values ('31041','7','','10326','IIS: Method ISAPI requests per second','perf_counter_en["\\Web Service(_Total)\\ISAPI Extension Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of ISAPI Extension requests that are simultaneously being processed by the Web service. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d5b38b5472214d629e832d2709c64b3c');
INSERT INTO `items` (`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`,`uuid`) values ('31042','7','','10326','IIS: Locked errors per second','perf_counter_en["\\Web Service(_Total)\\Locked Errors/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of errors due to requests that couldn\'t be satisfied by the server because the requested document was locked. These are generally reported as an HTTP 423 error code to the client. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','74fed9efa0ae4301aab2f73d76fd8357');
INSERT INTO `items` (`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`,`uuid`) values ('31043','7','','10326','IIS: Method LOCK requests per second','perf_counter_en["\\Web Service(_Total)\\Lock Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests made using the LOCK method. Lock requests are used to lock a file for one user so that only that user can modify the file. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cdf63d485cd1419385caabc050eb533c');
INSERT INTO `items` (`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`,`uuid`) values ('31044','7','','10326','IIS: Method MKCOL requests per second','perf_counter_en["\\Web Service(_Total)\\Mkcol Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the MKCOL method made. Mkcol requests are used to create directories on the server. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','edbe50383897434cb33378b973628061');
INSERT INTO `items` (`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`,`uuid`) values ('31045','7','','10326','IIS: Method MOVE requests per second','perf_counter_en["\\Web Service(_Total)\\Move Requests/Sec", 60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the MOVE method made. Move requests are used for moving files and directories. Average per minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','51a74530b894484a9ba101eb1176a982');
INSERT INTO `items` (`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`,`uuid`) values ('31046','7','','10326','IIS: Windows Process Activation Service (WAS) state','service.info[WAS]','1m','7d','365d','0','3','','','','',NULL,'47','','','0','','','','','0',NULL,'Windows Process Activation Service (WAS) is a tool for managing worker processes that contain applications that host Windows Communication Foundation (WCF) services. Worker processes handle requests that are sent to a Web Server for specific application pools. Each application pool sets boundaries for the applications it contains.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7f016ce3ab3941b78741dfb72c6d7693');
INSERT INTO `items` (`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`,`uuid`) values ('31047','7','','10326','Application pools discovery','wmi.getall[root\\webAdministration, select Name from ApplicationPool]','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','1dfb7339b81b4237a4e90b29328de297');
INSERT INTO `items` (`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`,`uuid`) values ('31048','7','','10326','IIS: AppPool {#APPPOOL} state','perf_counter_en["\\APP_POOL_WAS({#APPPOOL})\\Current Application Pool State"]','1m','7d','365d','0','3','','','','',NULL,'153','','','0','','','','','2',NULL,'The state of the application pool.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','82c0636b84d84863a2051d6b708d841b');
INSERT INTO `items` (`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`,`uuid`) values ('31049','7','','10326','IIS: {#APPPOOL} Uptime','perf_counter_en["\\APP_POOL_WAS({#APPPOOL})\\Current Application Pool Uptime"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The web application uptime period since the last restart.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f0a6fe8a4cc44582a3048f1a00442736');
INSERT INTO `items` (`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`,`uuid`) values ('31050','7','','10326','IIS: AppPool {#APPPOOL} recycles','perf_counter_en["\\APP_POOL_WAS({#APPPOOL})\\Total Application Pool Recycles"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times the application pool has been recycled since Windows Process Activation Service (WAS) started.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e2cfc77aebab4b14bf6a690dbdd0c2b1');
INSERT INTO `items` (`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`,`uuid`) values ('31051','7','','10326','IIS: AppPool {#APPPOOL} current queue size','perf_counter_en["\\HTTP Service Request Queues({#APPPOOL})\\CurrentQueueSize"]','30s','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of requests in the queue.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d525c1c47ee2402d9635ae276a5e58ec');
INSERT INTO `items` (`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`,`uuid`) values ('31054','3','','10323','ClickHouse: Check port availability','net.tcp.service[{$CLICKHOUSE.SCHEME},"{HOST.CONN}","{$CLICKHOUSE.PORT}"]','1m','7d','365d','0','3','','','','',NULL,'28','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','68d1e19a6ec2401ba0dd509de7df2812');
INSERT INTO `items` (`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`,`uuid`) values ('31055','11','','10327','MSSQL: Get performance counters','db.odbc.get[get_status_variables,"{$MSSQL.DSN}"]','0;m0-59','0','0','0','4','','','','',NULL,NULL,'SELECT object_name,counter_name,instance_name,cntr_value\r\nFROM sys.dm_os_performance_counters\r\nUNION\r\nSELECT \'{$MSSQL.INSTANCE}\' as object_name,\'Version\' as counter_name,@@version as instance_name,0 as cntr_value\r\nUNION\r\nSELECT \'{$MSSQL.INSTANCE}\' as object_name,\'Uptime\' as counter_name,\'\' as instance_name,DATEDIFF(second,sqlserver_start_time,GETDATE()) as cntr_value\r\nFROM sys.dm_os_sys_info\r\nUNION\r\nSELECT \'{$MSSQL.INSTANCE}:Databases\' as object_name,\'State\' as counter_name,name as instance_name,state as cntr_value\r\nFROM sys.databases\r\nUNION\r\nSELECT a.object_name,\'BufferCacheHitRatio\' as counter_name,\'\' as instance_name,cast(a.cntr_value*100.0/b.cntr_value as dec(3,0)) as cntr_value\r\nFROM sys.dm_os_performance_counters a\r\nJOIN (SELECT cntr_value,OBJECT_NAME\r\nFROM sys.dm_os_performance_counters\r\nWHERE counter_name=\'Buffer cache hit ratio base\' AND OBJECT_NAME=\'{$MSSQL.INSTANCE}:Buffer Manager\') b\r\nON a.OBJECT_NAME=b.OBJECT_NAME\r\nWHERE a.counter_name=\'Buffer cache hit ratio\' AND a.OBJECT_NAME=\'{$MSSQL.INSTANCE}:Buffer Manager\'\r\nUNION\r\nSELECT a.object_name,\'WorktablesFromCacheRatio\' as counter_name,\'\' as instance_name,cast(a.cntr_value*100.0/b.cntr_value as dec(3,0)) as cntr_value\r\nFROM sys.dm_os_performance_counters a\r\nJOIN (SELECT cntr_value,OBJECT_NAME\r\nFROM sys.dm_os_performance_counters\r\nWHERE counter_name=\'Worktables From Cache Base\' AND OBJECT_NAME=\'{$MSSQL.INSTANCE}:Access Methods\') b\r\nON a.OBJECT_NAME=b.OBJECT_NAME\r\nWHERE a.counter_name=\'Worktables From Cache Ratio\' AND a.OBJECT_NAME=\'{$MSSQL.INSTANCE}:Access Methods\'\r\nUNION\r\nSELECT a.object_name,\'CacheHitRatio\' as counter_name,\'_Total\' as instance_name,cast(a.cntr_value*100.0/b.cntr_value as dec(3,0)) as cntr_value\r\nFROM sys.dm_os_performance_counters a\r\nJOIN (SELECT cntr_value,OBJECT_NAME\r\nFROM sys.dm_os_performance_counters\r\nWHERE counter_name=\'Cache Hit Ratio base\' AND OBJECT_NAME=\'{$MSSQL.INSTANCE}:Plan Cache\' AND instance_name=\'_Total\') b\r\nON a.OBJECT_NAME=b.OBJECT_NAME\r\nWHERE a.counter_name=\'Cache Hit Ratio\' AND a.OBJECT_NAME=\'{$MSSQL.INSTANCE}:Plan Cache\' AND instance_name=\'_Total\'','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','0',NULL,'The item gets server global status information.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff07b83d161c4e0fbddf8c2e2c282258');
INSERT INTO `items` (`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`,`uuid`) values ('31056','15','','10327','MSSQL: Total average wait time','mssql.average_wait_time','0;m0-59s3','7d','365d','0','0','','ms','','',NULL,NULL,'(last(//mssql.average_wait_time_raw) - last(//mssql.average_wait_time_raw,#2)) /\r\n(last(//mssql.average_wait_time_base) - last(//mssql.average_wait_time_base,#2) +\r\n(last(//mssql.average_wait_time_base) - last(//mssql.average_wait_time_base,#2)=0))','','0','','','','','0',NULL,'The average wait time, in milliseconds, for each lock request that had to wait.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2915866b5891480aafd73463aca88a21');
INSERT INTO `items` (`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`,`uuid`) values ('31057','3','','10327','MSSQL: Service\'s TCP port state','net.tcp.service[tcp,{HOST.CONN},{$MSSQL.PORT}]','30s','7d','365d','0','3','','','','',NULL,'32','','','0','','','','','0',NULL,'Test the availability of MS SQL Server on a TCP port.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c0302965c2574b43955a1d37a8fce9eb');
INSERT INTO `items` (`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`,`uuid`) values ('31058','15','','10327','MSSQL: Average latch wait time','mssql.average_latch_wait_time','0;m0-59s3','7d','365d','0','0','','ms','','',NULL,NULL,'(last(//mssql.average_latch_wait_time_raw) - last(//mssql.average_latch_wait_time_raw,#2)) /\r\n(last(//mssql.average_latch_wait_time_base) - last(//mssql.average_latch_wait_time_base,#2) +\r\n(last(//mssql.average_latch_wait_time_base) - last(//mssql.average_latch_wait_time_base,#2)=0))','','0','','','','','0',NULL,'Average latch wait time (in milliseconds) for latch requests that had to wait.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1d49af2907d541719e4482439de3ef40');
INSERT INTO `items` (`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`,`uuid`) values ('31122','11','','10327','Availability groups discovery','db.odbc.discovery[availability_groups,"{$MSSQL.DSN}"]','1h','90d','0','0','4','','','','',NULL,NULL,'SELECT name as group_name\r\nFROM sys.availability_groups','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','1',NULL,'Discovery of the existing availability groups.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2a5ddb4df6e14ebd94517cbd2a1f8295');
INSERT INTO `items` (`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`,`uuid`) values ('31123','11','','10327','Database discovery','db.odbc.discovery[dbname,"{$MSSQL.DSN}"]','1h','90d','0','0','4','','','','',NULL,NULL,'SELECT name as dbname\r\nFROM sys.databases','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','1',NULL,'Scanning databases in DBMS.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2e38ea24c9bf4a5480df0816b7c659b3');
INSERT INTO `items` (`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`,`uuid`) values ('31124','11','','10327','Local database discovery','db.odbc.discovery[local_db,"{$MSSQL.DSN}"]','1h','90d','0','0','4','','','','',NULL,NULL,'SELECT ag.name AS group_name, arcs.replica_server_name AS replica_name,\r\ndb_name(drs.database_id) AS dbname, drs.is_local\r\nFROM sys.dm_hadr_database_replica_states drs JOIN sys.dm_hadr_availability_replica_cluster_states arcs\r\nON arcs.replica_id = drs.replica_id\r\nJOIN sys.availability_groups ag ON ag.group_id = arcs.group_id\r\nJOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id\r\nWHERE drs.is_local = 1','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','1',NULL,'Discovery of the local availability databases.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f7395d344b67423dadcefe3f94ad159d');
INSERT INTO `items` (`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`,`uuid`) values ('31125','11','','10327','Mirroring discovery','db.odbc.discovery[mirrors,"{$MSSQL.DSN}"]','1h','90d','0','0','4','','','','',NULL,NULL,'SELECT db_name(database_id) as dbname\r\nFROM sys.database_mirroring\r\nWHERE mirroring_state_desc IS NOT NULL','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','1',NULL,'To see the row for a database other than master or tempdb, you must\r\neither be the database owner or have at least ALTER ANY DATABASE or VIEW ANY\r\nDATABASE server-level permission or CREATE DATABASE permission in the master\r\ndatabase. To see non-NULL values on a mirror database, you must be a member\r\nof the sysadmin fixed server role.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8354506d23b241c689079eb8ff1acb72');
INSERT INTO `items` (`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`,`uuid`) values ('31126','11','','10327','Non-local database discovery','db.odbc.discovery[non-local_db,"{$MSSQL.DSN}"]','1h','90d','0','0','4','','','','',NULL,NULL,'SELECT ag.name AS group_name, arcs.replica_server_name AS replica_name,\r\ndb_name(drs.database_id) AS dbname, drs.is_local\r\nFROM sys.dm_hadr_database_replica_states drs JOIN sys.dm_hadr_availability_replica_cluster_states arcs\r\nON arcs.replica_id = drs.replica_id\r\nJOIN sys.availability_groups ag ON ag.group_id = arcs.group_id\r\nJOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id\r\nWHERE drs.is_local = 0','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','1',NULL,'Discovery of the non-local (not local to the SQL Server instance) availability databases.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f9691782f89c459c849c00c68775b4bd');
INSERT INTO `items` (`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`,`uuid`) values ('31127','11','','10327','Replication discovery','db.odbc.discovery[replicas,"{$MSSQL.DSN}"]','1h','90d','0','0','4','','','','',NULL,NULL,'SELECT ag.name as group_name,\r\narcs.replica_server_name as replica_name\r\nFROM sys.dm_hadr_availability_replica_cluster_states as arcs\r\nJOIN sys.availability_groups ag ON ag.group_id = arcs.group_id\r\nJOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','1',NULL,'Discovery of the database replicas.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8c279cd6442f48bb9c6001ea6d3acfa0');
INSERT INTO `items` (`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`,`uuid`) values ('31128','11','','10327','MSSQL AG \'{#GROUP_NAME}\': Get replica states','db.odbc.get[{#GROUP_NAME}_replica_states,"{$MSSQL.DSN}"]','1m','0h','0','0','4','','','','',NULL,NULL,'SELECT ag.name as group_name,\r\nISNULL(ags.primary_recovery_health, 2) as primary_recovery_health,\r\nISNULL(ags.primary_replica, \'Unknown\') as primary_replica,\r\nISNULL(ags.secondary_recovery_health, 2) as secondary_recovery_health,\r\nags.synchronization_health as synchronization_health\r\nFROM sys.dm_hadr_availability_group_states ags JOIN sys.availability_groups ag ON ag.group_id = ags.group_id','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','2',NULL,'Getting replica states - name, primary and secondary health, synchronization health.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7cdafac918494002a219345f648747ba');
INSERT INTO `items` (`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`,`uuid`) values ('31129','11','','10327','MSSQL AG \'{#GROUP_NAME}\' Local DB \'{#DBNAME}\': Get local DB states','db.odbc.get["{#GROUP_NAME}_{#DBNAME}_local_db.states","{$MSSQL.DSN}"]','1m','0h','0','0','4','','','','',NULL,NULL,'SELECT drs.database_state as database_state, \r\ndrs.is_suspended as is_suspended, \r\ndrs.synchronization_health as synchronization_health, \r\nag.name as group_name,\r\narcs.replica_server_name as replica_name,\r\ndb_name(drs.database_id) as dbname\r\nFROM sys.dm_hadr_database_replica_states drs \r\nJOIN sys.dm_hadr_availability_replica_cluster_states arcs ON arcs.replica_id = drs.replica_id \r\nJOIN sys.availability_groups ag ON ag.group_id = arcs.group_id \r\nJOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','2',NULL,'Getting the states of the local availability database.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7eda3060b4bc446fb458bec5967b7d3c');
INSERT INTO `items` (`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`,`uuid`) values ('31130','11','','10327','MSSQL Mirroring \'{#DBNAME}\': Get the mirror state','db.odbc.get["{#DBNAME}_mirroring_state","{$MSSQL.DSN}"]','1m','0h','0','0','4','','','','',NULL,NULL,'SELECT ISNULL(m.mirroring_role,0) as mirroring_role,\r\nISNULL(m.mirroring_role_sequence,0) as mirroring_role_sequence,\r\nISNULL(m.mirroring_state,7) as mirroring_state,\r\nISNULL(m.mirroring_witness_state,3) as mirroring_witness_state,\r\nISNULL(m.mirroring_safety_level,3) as mirroring_safety_level,\r\ndb_name(m.database_id) as dbname \r\nFROM sys.database_mirroring as m\r\nWHERE m.mirroring_state_desc IS NOT NULL','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','2',NULL,'Getting mirrors state','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','082fb332849e4633a169f1a6dbe3a8c5');
INSERT INTO `items` (`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`,`uuid`) values ('31132','11','','10327','MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Get the replica state','db.odbc.get["{#GROUP_NAME}_{#REPLICA_NAME}_replica.state","{$MSSQL.DSN}"]','1m','0h','0','0','4','','','','',NULL,NULL,'SELECT ars.connected_state as connected_state,\r\nars.is_local as is_local,\r\narcs.join_state as join_state,\r\nISNULL(ars.operational_state,6) as operational_state,\r\nISNULL(ars.recovery_health,2) as recovery_health,\r\nars.role as role,\r\nars.synchronization_health as synchronization_health,\r\nag.name as group_name, \r\narcs.replica_server_name as replica_name\r\nFROM sys.dm_hadr_availability_replica_cluster_states as arcs \r\nJOIN sys.availability_groups ag ON ag.group_id = arcs.group_id\r\nJOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id\r\nWHERE ag.name = \'{#GROUP_NAME}\' AND arcs.replica_server_name = \'{#REPLICA_NAME}\'','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','2',NULL,'Getting the database replica states.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','287c420d8d5346d7a21de580ce1836eb');
INSERT INTO `items` (`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`,`uuid`) values ('31180','11','','10328','Oracle: Get archive log info','db.odbc.get[get_archivelog_stat,,"Driver={$ORACLE.DRIVER};DBQ=//{HOST.CONN}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','5m','0','0','0','4','','','','',NULL,NULL,'SELECT\r\nd.dest_name, DECODE (d.status, \'VALID\',3, \'DEFERRED\', 2, \'ERROR\', 1, 0) AS status,\r\nd.log_sequence,\r\nd.error\r\nFROM v$archive_dest d , v$database db\r\nWHERE d.status != \'INACTIVE\' AND db.log_mode = \'ARCHIVELOG\';','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1a6e01f90dca47459975632c14ce5a39');
INSERT INTO `items` (`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`,`uuid`) values ('31181','11','','10328','Oracle: Get tablespaces stats','db.odbc.get[get_tablespaces_stats,,"Driver={$ORACLE.DRIVER};DBQ=//{HOST.CONN}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','1m','0','0','0','4','','','','',NULL,NULL,'SELECT\r\n df.tablespace_name AS TABLESPACE,\r\n df.type AS TYPE,\r\n NVL(SUM(df.BYTES), 0) AS FILE_BYTES,\r\n NVL(SUM(df.MAX_BYTES), 0) AS MAX_BYTES,\r\n NVL(SUM(f.FREE), 0) AS FREE_BYTES,\r\n SUM(df.BYTES)-SUM(f.FREE) AS USED_BYTES,\r\n ROUND(DECODE(SUM(df.MAX_BYTES), 0, 0, (SUM(df.BYTES) / SUM(df.MAX_BYTES) * 100)), 2) AS USED_PCT_MAX,\r\n ROUND(DECODE(SUM(df.BYTES), 0, 0,(SUM(df.BYTES)-SUM(f.FREE))/ SUM(df.BYTES)* 100), 2) AS USED_FILE_PCT,\r\n DECODE(df.STATUS, \'ONLINE\', 1, \'OFFLINE\', 2, \'READ ONLY\', 3, 0) AS STATUS\r\nFROM ( SELECT\r\n ddf.file_id,\r\n dt.contents AS TYPE,\r\n dt.STATUS ,\r\n ddf.file_name,\r\n ddf.tablespace_name,\r\n TRUNC(ddf.bytes) AS bytes,\r\n TRUNC(GREATEST(ddf.bytes, ddf.maxbytes)) AS max_bytes\r\n FROM\r\n dba_data_files ddf,\r\n dba_tablespaces dt\r\n WHERE\r\n ddf.tablespace_name = dt.tablespace_name ) df,\r\n ( SELECT TRUNC(SUM(bytes)) AS FREE, file_id FROM dba_free_space GROUP BY file_id ) f\r\n WHERE df.file_id = f.file_id (+)\r\n GROUP BY df.tablespace_name, df.TYPE, df.status\r\nUNION ALL\r\nSELECT\r\n Y.name AS TABLESPACE,\r\n Y.type AS TYPE,\r\n NVL(SUM(Y.BYTES), 0) AS FILE_BYTES,\r\n NVL(SUM(Y.MAX_BYTES), 0) AS MAX_BYTES,\r\n NVL(MAX(NVL(Y.FREE_BYTES, 0)), 0) AS FREE,\r\n SUM(Y.BYTES)-MAX(Y.FREE_BYTES) AS USED_BYTES,\r\n ROUND(DECODE(SUM(Y.MAX_BYTES), 0, 0, (SUM(Y.BYTES) / SUM(Y.MAX_BYTES) * 100)), 2) AS USED_PCT_MAX,\r\n ROUND(DECODE(SUM(Y.BYTES), 0, 0,(SUM(Y.BYTES)-MAX(Y.FREE_BYTES))/ SUM(Y.BYTES)* 100), 2) AS USED_FILE_PCT,\r\n DECODE(Y.TBS_STATUS, \'ONLINE\', 1, \'OFFLINE\', 2, \'READ ONLY\', 3, 0) AS STATUS\r\n FROM ( SELECT\r\n dtf.tablespace_name AS name,\r\n dt.contents AS TYPE,\r\n dt.STATUS AS tbs_status,\r\n dtf.status AS status,\r\n dtf.bytes AS bytes,\r\n (SELECT\r\n ((f.total_blocks - s.tot_used_blocks)* vp.value)\r\n FROM ( SELECT tablespace_name, SUM(used_blocks) tot_used_blocks FROM gv$sort_segment\r\n WHERE tablespace_name != \'DUMMY\'\r\n GROUP BY tablespace_name) s,\r\n ( SELECT tablespace_name, SUM(blocks) total_blocks FROM dba_temp_files\r\n WHERE tablespace_name != \'DUMMY\'\r\n GROUP BY tablespace_name) f,\r\n ( SELECT value FROM v$parameter WHERE name = \'db_block_size\') vp\r\n WHERE\r\n f.tablespace_name = s.tablespace_name\r\n AND f.tablespace_name = dtf.tablespace_name ) AS free_bytes,\r\n CASE WHEN dtf.maxbytes = 0 THEN dtf.bytes\r\n ELSE dtf.maxbytes END AS max_bytes\r\n FROM\r\n sys.dba_temp_files dtf,\r\n sys.dba_tablespaces dt\r\n WHERE\r\n dtf.tablespace_name = dt.tablespace_name ) Y\r\n GROUP BY Y.name, Y.TYPE, Y.tbs_status;','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','0',NULL,'Get tablespaces stats.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','972be2e777e44c539d0ddd7918b79e88');
INSERT INTO `items` (`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`,`uuid`) values ('31182','11','','10328','Oracle: Get ASM stats','db.odbc.get[get_asm_stat,,"Driver={$ORACLE.DRIVER};DBQ=//{HOST.CONN}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','1m','0','0','0','4','','','','',NULL,NULL,'SELECT\r\nname AS dg_name,\r\nROUND(total_mb / DECODE(TYPE, \'NORMAL\', 2, \'HIGH\', 3, \'EXTERN\', 1)*1024*1024) AS size_byte,\r\nROUND(usable_file_mb*1024*1024 ) AS free_size_byte,\r\nROUND(100-(usable_file_mb /(total_mb / DECODE(TYPE, \'NORMAL\', 2, \'HIGH\', 3, \'EXTERN\', 1)))* 100, 2) AS used_percent\r\nFROM v$asm_diskgroup ;','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','0',NULL,'Get ASM disk groups stats.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','63fad55a2ced487aa30017b33bf1692e');
INSERT INTO `items` (`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`,`uuid`) values ('31183','0','','10328','Oracle: Service\'s TCP port state','net.tcp.service[tcp,{HOST.CONN},{$ORACLE.PORT}]','30s','7d','365d','0','3','','','','',NULL,'33','','','0','','','','','0',NULL,'Test the availability of Oracle on TCP port.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7ee99dfbd8dd4048bc2867aaa2fc335e');
INSERT INTO `items` (`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`,`uuid`) values ('31184','0','','10328','Oracle: Number of LISTENER processes','proc.num[,,,"tnslsnr LISTENER"]','30s','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of LISTENER processes running','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bf89a6ced768432a9cc3c27e1e3159d0');
INSERT INTO `items` (`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`,`uuid`) values ('31185','11','','10328','Oracle: Get system metrics','db.odbc.get[get_system_metrics,,"Driver={$ORACLE.DRIVER};DBQ=//{HOST.CONN}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','0;m0-59','0','0','0','4','','','','',NULL,NULL,'SELECT \'SYS::\' || METRIC_NAME AS METRIC, ROUND(VALUE,3) as VALUE\r\n FROM V$SYSMETRIC WHERE GROUP_ID = 2\r\nUNION\r\n SELECT \'SYSPARAM::\' || INITCAP(NAME) AS METRIC, to_number(VALUE)\r\n FROM V$SYSTEM_PARAMETER WHERE NAME IN (\'sessions\', \'processes\', \'db_files\')\r\nUNION\r\n SELECT \'SESSION::Long time locked\' ,count(*) FROM V$SESSION s WHERE s.BLOCKING_SESSION IS NOT NULL AND s.BLOCKING_SESSION_STATUS=\'VALID\' AND s.SECONDS_IN_WAIT > {$ORACLE.SESSION.LOCK.MAX.TIME}\r\nUNION\r\nSELECT \'SESSION::Lock rate\' ,(cnt_block / cnt_all)* 100 pct\r\nFROM ( SELECT COUNT(*) cnt_block FROM v$session WHERE blocking_session IS NOT NULL), ( SELECT COUNT(*) cnt_all FROM v$session)\r\nUNION\r\n SELECT \'SESSION::Long time locked\' ,count(*) FROM V$SESSION s WHERE s.BLOCKING_SESSION IS NOT NULL AND s.BLOCKING_SESSION_STATUS=\'VALID\' AND s.SECONDS_IN_WAIT > {$ORACLE.SESSION.LOCK.MAX.TIME}\r\nUNION\r\n SELECT \'SESSION::Total\', COUNT(*) AS VALUE FROM V$SESSION\r\nUNION\r\nSELECT \'SESSION::Concurrency rate\', NVL(ROUND(SUM(duty_act.cnt*100 / num_cores.val)), 0)\r\nFROM\r\n( SELECT DECODE(session_state, \'ON CPU\', \'CPU\', wait_class) wait_class, ROUND(COUNT(*)/(60 * 15), 1) cnt\r\nFROM v$active_session_history sh\r\nWHERE sh.sample_time >= SYSDATE - 15 / 1440 AND DECODE(session_state, \'ON CPU\', \'CPU\', wait_class) IN(\'Concurrency\')\r\nGROUP BY DECODE(session_state, \'ON CPU\', \'CPU\', wait_class)) duty_act,\r\n( SELECT SUM(value) val FROM v$osstat WHERE stat_name = \'NUM_CPU_CORES\') num_cores\r\nUNION\r\n SELECT \'PGA::\' || INITCAP(NAME), VALUE FROM V$PGASTAT\r\nUNION\r\n SELECT \'FRA::Space Limit\' AS METRIC, space_limit AS VALUE FROM V$RECOVERY_FILE_DEST\r\nUNION\r\n SELECT \'FRA::Space Used\', space_used AS VALUE FROM V$RECOVERY_FILE_DEST\r\nUNION\r\n SELECT \'FRA::Space Reclaimable\', space_reclaimable AS VALUE FROM V$RECOVERY_FILE_DEST\r\nUNION\r\n SELECT \'FRA::Number Of Files\', number_of_files AS VALUE FROM V$RECOVERY_FILE_DEST\r\nUNION\r\n SELECT \'FRA::Usable Pct\', DECODE(space_limit, 0, 0,(100-(100 *(space_used-space_reclaimable)/ space_limit))) AS VALUE FROM V$RECOVERY_FILE_DEST\r\nUNION\r\n SELECT \'FRA::Restore Point\', COUNT(*) AS VALUE FROM V$RESTORE_POINT\r\nUNION\r\n SELECT \'PROC::Procnum\', COUNT(*) FROM v$process\r\nUNION\r\n SELECT \'DATAFILE::Count\', COUNT(*) FROM v$datafile\r\nUNION\r\n SELECT \'SGA::\' || INITCAP(pool), SUM(bytes) FROM V$SGASTAT\r\n WHERE pool IN ( \'java pool\', \'large pool\' ) GROUP BY pool\r\nUNION\r\n SELECT \'SGA::Shared Pool\', SUM(bytes) FROM V$SGASTAT\r\n WHERE pool = \'shared pool\' AND name NOT IN (\'library cache\', \'dictionary cache\', \'free memory\', \'sql area\')\r\nUNION\r\n SELECT \'SGA::\' || INITCAP(name), bytes FROM V$SGASTAT\r\n WHERE pool IS NULL AND name IN (\'log_buffer\', \'fixed_sga\')\r\nUNION\r\n SELECT \'SGA::Buffer_Cache\', SUM(bytes) FROM V$SGASTAT\r\n WHERE pool IS NULL AND name IN (\'buffer_cache\', \'db_block_buffers\')\r\nUNION\r\n SELECT \'REDO::Available\', count(*) from v$log t where t.status in (\'INACTIVE\', \'UNUSED\')\r\nUNION\r\n SELECT \'USER::Expire password\', ROUND(DECODE(SIGN(NVL(u.expiry_date, SYSDATE + 999) - SYSDATE),-1, 0, NVL(u.expiry_date, SYSDATE + 999) - SYSDATE)) exp_passwd_days_before\r\nFROM dba_users u WHERE username = UPPER(\'{$ORACLE.USER}\');','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','0',NULL,'The item gets system metric values.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3839683749974cdeafd9178bdccb38d6');
INSERT INTO `items` (`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`,`uuid`) values ('31186','11','','10328','Oracle: Get CDB and No-CDB info','db.odbc.get[get_cdb_info,,"Driver={$ORACLE.DRIVER};DBQ=//{HOST.CONN}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','1m','0','0','0','4','','','','',NULL,NULL,'SELECT name as DBNAME,\r\nDECODE(open_mode, \'MOUNTED\', 1, \'READ ONLY\', 2, \'READ WRITE\', 3, \'READ ONLY WITH APPLY\', 4, \'MIGRATE\', 5, 0) AS open_mode,\r\nDECODE(database_role, \'SNAPSHOT STANDBY\', 1, \'LOGICAL STANDBY\', 2, \'PHYSICAL STANDBY\', 3, \'PRIMARY\', 4, \'FAR SYNC\', 5, 0) AS ROLE,\r\nDECODE(force_logging, \'YES\',1,\'NO\',0,0) AS force_logging,\r\nDECODE(log_mode, \'MANUAL\',2 ,\'ARCHIVELOG\',1,\'NOARCHIVELOG\',0,0) AS log_mode\r\nFROM v$database','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','0',NULL,'Get info about CDB and No-CDB databases on instance.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5de7c786988d49d0b50f28d2d622db62');
INSERT INTO `items` (`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`,`uuid`) values ('31187','11','','10328','Oracle: Get PDB info','db.odbc.get[get_pdb_info,,"Driver={$ORACLE.DRIVER};DBQ=//{HOST.CONN}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','1m','0','0','0','4','','','','',NULL,NULL,'SELECT\r\nname as DBNAME,\r\nDECODE(open_mode, \'MOUNTED\', 1, \'READ ONLY\', 2, \'READ WRITE\', 3, \'READ ONLY WITH APPLY\', 4, \'MIGRATE\', 5, 0) AS open_mode\r\nFROM v$pdbs;','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','0',NULL,'Get info about PDB databases on instance.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cedcebd0b7ce474c9681022fcc75df1c');
INSERT INTO `items` (`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`,`uuid`) values ('31188','11','','10328','Oracle: Get instance state','db.odbc.get[get_instance_state,,"Driver={$ORACLE.DRIVER};DBQ=//{HOST.CONN}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','1m','0','0','0','4','','','','',NULL,NULL,'SELECT\r\nINSTANCE_NAME,\r\nHOST_NAME,\r\nVERSION || \'-\' || EDITION AS VERSION,\r\nfloor((SYSDATE - startup_time)*60*60*24) AS UPTIME,\r\ndecode(status,\'STARTED\',1,\'MOUNTED\',2,\'OPEN\',3,\'OPEN MIGRATE\',4, 0) AS STATUS,\r\ndecode(archiver,\'STOPPED\',1,\'STARTED\',2,\'FAILED\',3, 0) AS ARCHIVER,\r\ndecode(instance_role,\'PRIMARY_INSTANCE\',1,\'SECONDARY_INSTANCE\',2, 0) AS INSTANCE_ROLE\r\nFROM v$instance;','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','0',NULL,'The item gets state of the current instance.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dde19b79507648bd80a82a0575bf8671');
INSERT INTO `items` (`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`,`uuid`) values ('31253','11','','10328','Archive log discovery','db.odbc.discovery[archivelog,,"Driver={$ORACLE.DRIVER};DBQ=//{HOST.CONN}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','1h','90d','0','0','4','','','','',NULL,NULL,'SELECT d.dest_name\r\nFROM v$archive_dest d , v$database db WHERE d.status != \'INACTIVE\' AND db.log_mode = \'ARCHIVELOG\';','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','1',NULL,'Log archive destinations.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a527b14b1cee4115be5c5e9387af821b');
INSERT INTO `items` (`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`,`uuid`) values ('31254','11','','10328','ASM disk groups discovery','db.odbc.discovery[asm,,"Driver={$ORACLE.DRIVER};DBQ=//{HOST.CONN}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','1h','90d','0','0','4','','','','',NULL,NULL,'SELECT name AS dg_name FROM v$asm_diskgroup;','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','1',NULL,'ASM disk groups','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c40708b755c7464bb064b7bffc584381');
INSERT INTO `items` (`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`,`uuid`) values ('31255','11','','10328','Database discovery','db.odbc.discovery[db_list,,"Driver={$ORACLE.DRIVER};DBQ=//{HOST.CONN}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','1h','90d','0','0','4','','','','',NULL,NULL,'SELECT name as DBNAME, DECODE(CDB, \'YES\', \'CDB\', \'No-CDB\') AS TYPE FROM V$DATABASE;','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','1',NULL,'Scanning databases in DBMS.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0f65936b86314c269b7720a9ff3f1c14');
INSERT INTO `items` (`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`,`uuid`) values ('31256','11','','10328','PDB discovery','db.odbc.discovery[pdb_list,,"Driver={$ORACLE.DRIVER};DBQ=//{HOST.CONN}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','1h','90d','0','0','4','','','','',NULL,NULL,'SELECT name as DBNAME FROM V$PDBS;','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','1',NULL,'Scanning PDB in DBMS.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2611e69f735a42b190852589658dd591');
INSERT INTO `items` (`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`,`uuid`) values ('31257','11','','10328','Tablespace discovery','db.odbc.discovery[tbsname,,"Driver={$ORACLE.DRIVER};DBQ=//{HOST.CONN}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','1h','90d','0','0','4','','','','',NULL,NULL,'SELECT\r\ntablespace_name AS tablespace,\r\ncontents FROM DBA_TABLESPACES;','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','1',NULL,'Scanning tablespaces in DBMS.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c8de553c98f64e59b40bf927f6447ad1');
INSERT INTO `items` (`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`,`uuid`) values ('31274','0','','10329','PostgreSQL: Get bgwriter','pgsql.bgwriter["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'https://www.postgresql.org/docs/12/monitoring-stats.html#PG-STAT-BGWRITER-VIEW','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6020e17c25104cbfba182e9cddfe6336');
INSERT INTO `items` (`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`,`uuid`) values ('31275','0','','10329','Replication: Lag in bytes','pgsql.replication.lag.b["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Replication lag with Master in byte.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da9ce769f9444a3f9600ce64c4ab2857');
INSERT INTO `items` (`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`,`uuid`) values ('31276','0','','10329','PostgreSQL: Get connections','pgsql.connections["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_stat_activity\r\nhttps://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ACTIVITY-VIEW','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e926ecd967f342bf90e9923825147d64');
INSERT INTO `items` (`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`,`uuid`) values ('31277','0','','10329','PostgreSQL: Get dbstat sum','pgsql.dbstat.sum["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_stat_database per database\r\nhttps://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-DATABASE-VIEW','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ddddde3084d54f55838b970f44290523');
INSERT INTO `items` (`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`,`uuid`) values ('31279','0','','10329','PostgreSQL: Get dbstat','pgsql.dbstat["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_stat_database per database\r\nhttps://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-DATABASE-VIEW','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3be06ec14cba44d0892f3271a599c473');
INSERT INTO `items` (`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`,`uuid`) values ('31280','0','','10329','PostgreSQL: Get locks','pgsql.locks["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_locks per database\r\nhttps://www.postgresql.org/docs/current/explicit-locking.html#LOCKING-TABLES','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7112eeb300c14d959c79715462bf9563');
INSERT INTO `items` (`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`,`uuid`) values ('31282','0','','10329','PostgreSQL: Ping','pgsql.ping["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','56323e572fa443228987c62039153825');
INSERT INTO `items` (`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`,`uuid`) values ('31283','0','','10329','Replication: Standby count','pgsql.replication.count["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of standby servers','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a171db459d6144e4ad294579fb8dc56d');
INSERT INTO `items` (`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`,`uuid`) values ('31284','0','','10329','Replication: Lag in seconds','pgsql.replication.lag.sec["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"]','1m','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Replication lag with Master in seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a9eb8ee4a484911903688e620eb618b');
INSERT INTO `items` (`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`,`uuid`) values ('31285','0','','10329','Replication: Recovery role','pgsql.replication.recovery_role["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"]','1m','7d','365d','0','3','','','','',NULL,'123','','','0','','','','','0',NULL,'Replication role: 1 — recovery is still in progress (standby mode), 0 — master mode.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4085b836bf614f3d910818074c386845');
INSERT INTO `items` (`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`,`uuid`) values ('31286','0','','10329','Replication: Status','pgsql.replication.status["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"]','1m','7d','365d','0','3','','','','',NULL,'125','','','0','','','','','0',NULL,'Replication status: 0 — streaming is down, 1 — streaming is up, 2 — master mode','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c83904cbad74ff7a0d10136a233e6c6');
INSERT INTO `items` (`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`,`uuid`) values ('31287','0','','10329','PostgreSQL: Uptime','pgsql.uptime["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','efa946a67e5844ecb905c68a2a6b85bb');
INSERT INTO `items` (`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`,`uuid`) values ('31288','0','','10329','Autovacuum: Count of autovacuum workers','pgsql.autovacuum.count["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of autovacuum workers.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d9169b4b31554063b9d01d0d27b4beee');
INSERT INTO `items` (`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`,`uuid`) values ('31289','0','','10329','PostgreSQL: Get archive','pgsql.archive["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect archive status metrics','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e9f4284fd3a1459e9c519dbdd8ee3425');
INSERT INTO `items` (`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`,`uuid`) values ('31290','0','','10329','PostgreSQL: Get WAL','pgsql.wal.stat["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"]','5m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect WAL metrics','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c3d96741af454f6b9a3a49b6117c31be');
INSERT INTO `items` (`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`,`uuid`) values ('31334','0','','10329','Database discovery','pgsql.db.discovery["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"]','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','b1a4bfe1031a40529a7c38ac6bed3c6d');
INSERT INTO `items` (`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`,`uuid`) values ('31335','0','','10329','DB {#DBNAME}: Database age','pgsql.db.age["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"]','10m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Database age','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1419ff1331734a4088349332e118ca94');
INSERT INTO `items` (`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`,`uuid`) values ('31336','0','','10329','DB {#DBNAME}: Database size','pgsql.db.size["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"]','5m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Database size','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b614a0909eec40bc841bf7446e842544');
INSERT INTO `items` (`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`,`uuid`) values ('31337','0','','10329','DB {#DBNAME}: Get bloating tables','pgsql.db.bloating_tables["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bloating tables','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4367ba7fdffd459ea2b18e1877bc74ca');
INSERT INTO `items` (`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`,`uuid`) values ('31367','0','','10275','Block devices discovery','vfs.dev.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','4f3743bbc7ca4da89f833b72eb9e23b7');
INSERT INTO `items` (`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`,`uuid`) values ('31370','15','','10275','{#DEVNAME}: Disk read request avg waiting time (r_await)','vfs.dev.read.await[{#DEVNAME}]','1m','7d','365d','0','0','','!ms','','',NULL,NULL,'(last(//vfs.dev.read.time.rate[{#DEVNAME}])/(last(//vfs.dev.read.rate[{#DEVNAME}])+(last(//vfs.dev.read.rate[{#DEVNAME}])=0)))*1000*(last(//vfs.dev.read.rate[{#DEVNAME}]) > 0)','','0','','','','','2',NULL,'This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','92de75ec84994081831753c64c234b41');
INSERT INTO `items` (`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`,`uuid`) values ('31371','15','','10275','{#DEVNAME}: Disk write request avg waiting time (w_await)','vfs.dev.write.await[{#DEVNAME}]','1m','7d','365d','0','0','','!ms','','',NULL,NULL,'(last(//vfs.dev.write.time.rate[{#DEVNAME}])/(last(//vfs.dev.write.rate[{#DEVNAME}])+(last(//vfs.dev.write.rate[{#DEVNAME}])=0)))*1000*(last(//vfs.dev.write.rate[{#DEVNAME}]) > 0)','','0','','','','','2',NULL,'This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0edcba521a6348629740e5b80034cb28');
INSERT INTO `items` (`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`,`uuid`) values ('31372','0','','10275','{#DEVNAME}: Get stats','vfs.file.contents[/sys/block/{#DEVNAME}/stat]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get contents of /sys/block/{#DEVNAME}/stat for disk stats.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e25a03160e3243b5a33dfd834055b6e4');
INSERT INTO `items` (`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`,`uuid`) values ('31419','0','','10286','Number of cores','wmi.get[root/cimv2,"Select NumberOfLogicalProcessors from Win32_ComputerSystem"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of logical processors available on the computer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d6b17d211ed746aaabac591a3dad5813');
INSERT INTO `items` (`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`,`uuid`) values ('31420','0','','10287','Used swap space in %','perf_counter_en["\\Paging file(_Total)\\% Usage"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The used space of swap volume/file in percent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d24566c5c0fc4c219f521a1d4ae18546');
INSERT INTO `items` (`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`,`uuid`) values ('31421','15','','10287','Free swap space','system.swap.free','1m','7d','365d','0','3','','B','','',NULL,NULL,'last(//system.swap.size[,total]) - last(//system.swap.size[,total]) / 100 * last(//perf_counter_en["\\Paging file(_Total)\\% Usage"])','','0','','','','','0',NULL,'The free space of swap volume/file in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3b8acdfa9b744fb595590daa370b16a9');
INSERT INTO `items` (`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`,`uuid`) values ('31422','0','','10291','Network interfaces WMI get','wmi.getall[root\\cimv2,"select Name,Description,NetConnectionID,Speed,AdapterTypeId,NetConnectionStatus,GUID from win32_networkadapter where PhysicalAdapter=True and NetConnectionStatus>0"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Raw data of win32_networkadapter.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','52d75ac9adc347959053860a7e0ac199');
INSERT INTO `items` (`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`,`uuid`) values ('31430','0','','10289','Physical disks discovery','perf_instance_en.discovery[PhysicalDisk]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of installed physical disks.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d03f20ec394e4725a5dfdceecb79c8bd');
INSERT INTO `items` (`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`,`uuid`) values ('31433','0','','10291','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in["{#IFGUID}",dropped]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of incoming packets dropped on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9e9fdb17beee45ef9bc0eac67c512da4');
INSERT INTO `items` (`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`,`uuid`) values ('31434','0','','10291','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in["{#IFGUID}",errors]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of incoming packets with errors on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','29d94ac228794aa9a89a4147014c35d1');
INSERT INTO `items` (`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`,`uuid`) values ('31435','0','','10291','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in["{#IFGUID}"]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Incoming traffic on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','18cb6d1cde06482a8adb10e78576b512');
INSERT INTO `items` (`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`,`uuid`) values ('31436','0','','10291','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out["{#IFGUID}",dropped]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of outgoing packets dropped on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e3065d25674045938470ce2e10fbd6c0');
INSERT INTO `items` (`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`,`uuid`) values ('31437','0','','10291','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out["{#IFGUID}",errors]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of outgoing packets with errors on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b3472a08272143bead7b9dc366b4992f');
INSERT INTO `items` (`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`,`uuid`) values ('31438','0','','10291','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out["{#IFGUID}"]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Outgoing traffic on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2e208f1d9ca949f582f24015350395b6');
INSERT INTO `items` (`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`,`uuid`) values ('31439','0','','10289','{#DEVNAME}: Disk utilization by idle time','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\% Idle Time",60]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests based on idle time.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','44d9353d47274309bb3edaa34b7b3470');
INSERT INTO `items` (`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`,`uuid`) values ('31440','0','','10289','{#DEVNAME}: Disk average queue size (avgqu-sz)','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Current Disk Queue Length",60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3565ad70600d4c8aa5ebbbebd3f67270');
INSERT INTO `items` (`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`,`uuid`) values ('31441','0','','10289','{#DEVNAME}: Disk read rate','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Disk Reads/sec",60]','1m','7d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of read operations on the disk.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3485202f1e6b42ce8099ce6d6347a994');
INSERT INTO `items` (`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`,`uuid`) values ('31442','0','','10289','{#DEVNAME}: Disk write rate','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Disk Writes/sec",60]','1m','7d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of write operations on the disk.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','66e312629db1460c8b215d34d29f7418');
INSERT INTO `items` (`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`,`uuid`) values ('31499','16','','10169','ClassLoading: Loaded class count','jmx["java.lang:type=ClassLoading","LoadedClassCount"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Displays number of classes that are currently loaded in the Java virtual machine.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d16a651b35234011876b4f0c98126988');
INSERT INTO `items` (`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`,`uuid`) values ('31516','16','','10169','OperatingSystem: File descriptors maximum count','jmx["java.lang:type=OperatingSystem","MaxFileDescriptorCount"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'This is the number of file descriptors we can have opened in the same process, as determined by the operating system. You can never have more file descriptors than this number.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4c847c1239654be7b4f4d03fbb45ea4f');
INSERT INTO `items` (`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`,`uuid`) values ('31517','16','','10169','OperatingSystem: File descriptors opened','jmx["java.lang:type=OperatingSystem","OpenFileDescriptorCount"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'This is the number of opened file descriptors at the moment, if this reaches the MaxFileDescriptorCount, the application will throw an IOException: Too many open files. This could mean you are opening file descriptors and never closing them.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f72ee698db964f3c9ce84bbb4a1274d7');
INSERT INTO `items` (`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`,`uuid`) values ('31518','16','','10169','OperatingSystem: Process CPU Load','jmx["java.lang:type=OperatingSystem","ProcessCpuLoad"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'ProcessCpuLoad represents the CPU load in this process.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c252493c9304aabbb2930b9a82a1cbf');
INSERT INTO `items` (`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`,`uuid`) values ('31519','16','','10169','Runtime: JVM uptime','jmx["java.lang:type=Runtime","Uptime"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','00007954da00442b9631e15995ef6cab');
INSERT INTO `items` (`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`,`uuid`) values ('31520','16','','10169','Runtime: JVM name','jmx["java.lang:type=Runtime","VmName"]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e824c36de524425eaac253bcf3a1f3ec');
INSERT INTO `items` (`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`,`uuid`) values ('31521','16','','10169','Runtime: JVM version','jmx["java.lang:type=Runtime","VmVersion"]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a8675d659349414fa10cc11a1cd4ddd7');
INSERT INTO `items` (`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`,`uuid`) values ('31522','16','','10169','Threading: Daemon thread count','jmx["java.lang:type=Threading","DaemonThreadCount"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Number of daemon threads running.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f2f0836103ea4358a740abc0010336ca');
INSERT INTO `items` (`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`,`uuid`) values ('31523','16','','10169','Threading: Peak thread count','jmx["java.lang:type=Threading","PeakThreadCount"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Maximum number of threads being executed at the same time since the JVM was started or the peak was reset.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1793243b7ed147f1a182876fda905ebc');
INSERT INTO `items` (`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`,`uuid`) values ('31524','16','','10169','Threading: Thread count','jmx["java.lang:type=Threading","ThreadCount"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The number of threads running at the current moment.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ca198e0473384025aecbc16913800c0c');
INSERT INTO `items` (`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`,`uuid`) values ('31527','16','','10169','ClassLoading: Total loaded class count','jmx["java.lang:type=ClassLoading","TotalLoadedClassCount"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Displays the total number of classes that have been loaded since the Java virtual machine has started execution.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fc79c5ac074f4266a88d5c239fa0fb70');
INSERT INTO `items` (`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`,`uuid`) values ('31529','16','','10169','ClassLoading: Unloaded class count','jmx["java.lang:type=ClassLoading","UnloadedClassCount"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Displays the total number of classes that have been loaded since the Java virtual machine has started execution.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b7620bdebd044fb1b1d2cb293ea8912c');
INSERT INTO `items` (`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`,`uuid`) values ('31530','16','','10169','Compilation: Name of the current JIT compiler','jmx["java.lang:type=Compilation","Name"]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Displays the total number of classes unloaded since the Java virtual machine has started execution.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0d6880c07fcd42bebddc41f5f2eb7bdd');
INSERT INTO `items` (`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`,`uuid`) values ('31531','16','','10169','Compilation: Accumulated time spent','jmx["java.lang:type=Compilation","TotalCompilationTime"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Displays the approximate accumulated elapsed time spent in compilation, in seconds.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c097ea2de6034d1d94f528533562b896');
INSERT INTO `items` (`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`,`uuid`) values ('31544','16','','10169','Memory: Heap memory committed','jmx["java.lang:type=Memory","HeapMemoryUsage.committed"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Current heap memory allocated. This amount of memory is guaranteed for the Java virtual machine to use.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d98a8d00639742f4b62a29e0c7394d61');
INSERT INTO `items` (`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`,`uuid`) values ('31545','16','','10169','Memory: Heap memory maximum size','jmx["java.lang:type=Memory","HeapMemoryUsage.max"]','1m','7d','365d','0','0','','B','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Maximum amount of heap that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e757e0d3d72548df97066632448dd18c');
INSERT INTO `items` (`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`,`uuid`) values ('31546','16','','10169','Memory: Heap memory used','jmx["java.lang:type=Memory","HeapMemoryUsage.used"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Current memory usage outside the heap.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0c24cd559cd74ddb9ff0b167a3d37c23');
INSERT INTO `items` (`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`,`uuid`) values ('31547','16','','10169','Memory: Non-Heap memory committed','jmx["java.lang:type=Memory","NonHeapMemoryUsage.committed"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Current memory allocated outside the heap. This amount of memory is guaranteed for the Java virtual machine to use.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','50bb1ecb0a2141bbba128dfc842a1e34');
INSERT INTO `items` (`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`,`uuid`) values ('31548','16','','10169','Memory: Non-Heap memory maximum size','jmx["java.lang:type=Memory","NonHeapMemoryUsage.max"]','1m','7d','365d','0','0','','B','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Maximum amount of non-heap memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0c6301dfec1c4e6c8ab26091e9372e91');
INSERT INTO `items` (`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`,`uuid`) values ('31549','16','','10169','Memory: Non-Heap memory used','jmx["java.lang:type=Memory","NonHeapMemoryUsage.used"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Current memory usage outside the heap','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','58d2bb1791994cbcacb75d029ed8a21b');
INSERT INTO `items` (`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`,`uuid`) values ('31550','16','','10169','Memory: Object pending finalization count','jmx["java.lang:type=Memory","ObjectPendingFinalizationCount"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The approximate number of objects for which finalization is pending.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e309472afb794a2c9cd581275931db79');
INSERT INTO `items` (`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`,`uuid`) values ('31553','16','','10169','Threading: Total started thread count','jmx["java.lang:type=Threading","TotalStartedThreadCount"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The number of threads started since the JVM was launched.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9db83653dfa6449c95ffec2b0e6c8b5d');
INSERT INTO `items` (`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`,`uuid`) values ('31554','15','','10327','MSSQL: Percent of Adhoc queries running','mssql.percent_of_adhoc_queries','0;m0-59s3','7d','365d','0','0','','%','','',NULL,NULL,'last(//mssql.sql_compilations_sec.rate) * 100 /\r\n(last(//mssql.batch_requests_sec.rate) + (last(//mssql.batch_requests_sec.rate)=0))','','0','','','','','0',NULL,'The ratio of SQL compilations per second to Batch requests per second in percentage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','76918163a16e4ad786bed2040acc8061');
INSERT INTO `items` (`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`,`uuid`) values ('31555','15','','10327','MSSQL: Full scans to Index searches ratio','mssql.scan_to_search','0;m0-59s3','7d','365d','0','0','','','','',NULL,NULL,'last(//mssql.full_scans_sec.rate) / (last(//mssql.index_searches_sec.rate) + (last(//mssql.index_searches_sec.rate)=0))','','0','','','','','0',NULL,'The ratio of Full scans per second to Index searches per second. The threshold recommendation is strictly for OLTP workloads.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ce27df57ebc4ecca1a4741e66c9fba0');
INSERT INTO `items` (`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`,`uuid`) values ('31556','15','','10327','MSSQL: Percent of Recompiled Transact-SQL Objects','mssql.percent_recompilations_to_compilations','0;m0-59s3','7d','365d','0','0','','%','','',NULL,NULL,'last(//mssql.sql_recompilations_sec.rate) * 100 /\r\n(last(//mssql.sql_compilations_sec.rate) + (last(//mssql.sql_compilations_sec.rate)=0))','','0','','','','','0',NULL,'The ratio of SQL re-compilations per second to SQL compilations per second in percentage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ceab0472883f47b0a18b04fc6f7438ab');
INSERT INTO `items` (`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`,`uuid`) values ('31557','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10233','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9c6a401a70ec4dba92bd9e270fe7dc79');
INSERT INTO `items` (`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`,`uuid`) values ('31558','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10233','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5eada6e6837648859ccb440525281698');
INSERT INTO `items` (`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`,`uuid`) values ('31559','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10233','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','644433b2a1fa4b38916e2ae4bf74c28d');
INSERT INTO `items` (`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`,`uuid`) values ('31560','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10233','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2bfb758ca6264401902524b32e04f472');
INSERT INTO `items` (`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`,`uuid`) values ('31561','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10233','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','db129187106741d88fc14774a1a5652d');
INSERT INTO `items` (`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`,`uuid`) values ('31562','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10233','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a9ca50960dd043038808f3572d1fb281');
INSERT INTO `items` (`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`,`uuid`) values ('31563','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10233','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9f5c294b30d24e5084e8953173bf886e');
INSERT INTO `items` (`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`,`uuid`) values ('31564','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10233','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6140d7fe8011400cb827339f8f6f9cdf');
INSERT INTO `items` (`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`,`uuid`) values ('31565','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10233','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','45fc6875a91d47debb4e39d93e5b8186');
INSERT INTO `items` (`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`,`uuid`) values ('31566','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10233','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5dc0caa311304e6a96c620b10f52f267');
INSERT INTO `items` (`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`,`uuid`) values ('31567','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10233','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7df773f57c234d219f5a75e11844f5e0');
INSERT INTO `items` (`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`,`uuid`) values ('31568','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10233','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0db356f16542489586aacdecb029f691');
INSERT INTO `items` (`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`,`uuid`) values ('31569','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10233','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e2212bb46d804d6687a2fe992f867b9d');
INSERT INTO `items` (`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`,`uuid`) values ('31570','0','','10330','PHP-FPM: Get status page','web.page.get["{$PHP_FPM.HOST}","{$PHP_FPM.STATUS.PAGE}?json","{$PHP_FPM.PORT}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','09ec73291f21417ab8f19f56fda3331f');
INSERT INTO `items` (`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`,`uuid`) values ('31571','0','','10330','PHP-FPM: php-fpm_ping','web.page.get["{$PHP_FPM.HOST}","{$PHP_FPM.PING.PAGE}","{$PHP_FPM.PORT}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c0c438492c63453496e83938745ffffc');
INSERT INTO `items` (`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`,`uuid`) values ('31572','0','','10330','PHP-FPM: Number of processes running','proc.num["{$PHP_FPM.PROCESS_NAME}"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab8dc0d1ce344fe8ae6a22716a168fbd');
INSERT INTO `items` (`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`,`uuid`) values ('31573','15','','10330','PHP-FPM: Queue usage','php-fpm.listen_queue_usage','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//php-fpm.listen_queue)/(last(//php-fpm.listen_queue_len)+(last(//php-fpm.listen_queue_len)=0))*100','','0','','','','','0',NULL,'Queue utilization','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dfabcd55c13449c29a48b70fdce77674');
INSERT INTO `items` (`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`,`uuid`) values ('31574','0','','10330','PHP-FPM: Memory usage (rss)','proc.mem["{$PHP_FPM.PROCESS_NAME}",,,,rss]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident set size memory used by process in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f55a5ef29f864d0a8c1af25df2372f7c');
INSERT INTO `items` (`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`,`uuid`) values ('31575','0','','10330','PHP-FPM: Memory usage, %','proc.mem["{$PHP_FPM.PROCESS_NAME}",,,,pmem]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory used percentage relative to total memory available.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ef771994ec9e482babf872d9f867d500');
INSERT INTO `items` (`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`,`uuid`) values ('31576','0','','10330','PHP-FPM: CPU utilization','proc.cpu.util["{$PHP_FPM.PROCESS_NAME}"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Process CPU utilization percentage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a709eaae52ad4128a129c618db6525d2');
INSERT INTO `items` (`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`,`uuid`) values ('31593','15','','10331','PHP-FPM: Queue usage','php-fpm.listen_queue_usage','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//php-fpm.listen_queue)/(last(//php-fpm.listen_queue_len)+(last(//php-fpm.listen_queue_len)=0))*100','','0','','','','','0',NULL,'Queue utilization','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','314c3f19311f47acb93b046ab2625c75');
INSERT INTO `items` (`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`,`uuid`) values ('31594','19','','10331','PHP-FPM: Get status page','php-fpm.get_status','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','{$PHP_FPM.SCHEME}://{$PHP_FPM.HOST}:{$PHP_FPM.PORT}/{$PHP_FPM.STATUS.PAGE}?json','','','200','1','0','','0','0','0','0','0','0','0','b91063d42d4b454089b58e29ee3bdb38');
INSERT INTO `items` (`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`,`uuid`) values ('31595','19','','10331','PHP-FPM: Get ping page','php-fpm.get_ping','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','{$PHP_FPM.SCHEME}://{$PHP_FPM.HOST}:{$PHP_FPM.PORT}/{$PHP_FPM.PING.PAGE}','','','200','1','0','','2','0','0','0','0','0','0','a9ae24915703483ea95a346c625ed70e');
INSERT INTO `items` (`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`,`uuid`) values ('31612','3','','10173','VMware: Event log','vmware.eventlog[{$VMWARE.URL},skip]','1m','7d','0','0','2','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Collect VMware event log. See also: https://www.zabbix.com/documentation/6.0/manual/config/items/preprocessing/examples#filtering_vmware_event_log_records','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5ce209f4d94f460488a74a92a52d92b1');
INSERT INTO `items` (`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`,`uuid`) values ('31613','3','','10173','VMware: Full name','vmware.fullname[{$VMWARE.URL}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'VMware service full name.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ee2edadb8ce943ef81d25dbbba8667a4');
INSERT INTO `items` (`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`,`uuid`) values ('31614','3','','10173','VMware: Version','vmware.version[{$VMWARE.URL}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'VMware service version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a0ec9145f2234fbea79a28c57ebdb44d');
INSERT INTO `items` (`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`,`uuid`) values ('31655','3','','10173','Discover VMware clusters','vmware.cluster.discovery[{$VMWARE.URL}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'Discovery of clusters','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16ffc933cce74cf28a6edf306aa99782');
INSERT INTO `items` (`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`,`uuid`) values ('31656','3','','10173','Discover VMware datastores','vmware.datastore.discovery[{$VMWARE.URL}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8fb6a45cbe074b0cb6df53758e2c6623');
INSERT INTO `items` (`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`,`uuid`) values ('31657','3','','10173','Discover VMware hypervisors','vmware.hv.discovery[{$VMWARE.URL}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'Discovery of hypervisors.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a5bc075e89f248e7b411d8f960897a08');
INSERT INTO `items` (`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`,`uuid`) values ('31658','3','','10173','Discover VMware VMs','vmware.vm.discovery[{$VMWARE.URL}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'Discovery of guest virtual machines.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9fd559f4e88c4677a1b874634dd686f5');
INSERT INTO `items` (`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`,`uuid`) values ('31663','3','','10173','VMware: Status of "{#CLUSTER.NAME}" cluster','vmware.cluster.status[{$VMWARE.URL},{#CLUSTER.NAME}]','1m','7d','365d','0','3','','','','',NULL,'52','','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware cluster status.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','46111f91dd564a459dbc1d396e2e6c76');
INSERT INTO `items` (`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`,`uuid`) values ('31664','3','','10173','VMware: Average read latency of the datastore {#DATASTORE}','vmware.datastore.read[{$VMWARE.URL},{#DATASTORE},latency]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'Amount of time for a read operation from the datastore (milliseconds).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4b61838ba4c34e709b25081ae5b059b5');
INSERT INTO `items` (`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`,`uuid`) values ('31665','3','','10173','VMware: Free space on datastore {#DATASTORE} (percentage)','vmware.datastore.size[{$VMWARE.URL},{#DATASTORE},pfree]','5m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware datastore space in percentage from total.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5355c401dc244bc588ccd18767577c93');
INSERT INTO `items` (`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`,`uuid`) values ('31666','3','','10173','VMware: Total size of datastore {#DATASTORE}','vmware.datastore.size[{$VMWARE.URL},{#DATASTORE}]','5m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware datastore space in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84f13c4fde2d4a17baaf0c8c1eb4f2c0');
INSERT INTO `items` (`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`,`uuid`) values ('31667','3','','10173','VMware: Average write latency of the datastore {#DATASTORE}','vmware.datastore.write[{$VMWARE.URL},{#DATASTORE},latency]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'Amount of time for a write operation to the datastore (milliseconds).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','540cd0fbc56c4b8ea19f2ff5839ce00d');
INSERT INTO `items` (`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`,`uuid`) values ('31684','0','','10335','Oracle: Ping','oracle.ping["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','30s','7d','365d','0','3','','','','',NULL,'36','','','0','','','','','0',NULL,'Test the connection to Oracle Database state','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7f4d8ea4912944ec8bf32edff9e3b5ae');
INSERT INTO `items` (`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`,`uuid`) values ('31685','0','','10335','Oracle: Datafiles count','oracle.datafiles.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Current number of datafile.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','12efa23a53eb468ea7b0713b8f610542');
INSERT INTO `items` (`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`,`uuid`) values ('31686','0','','10335','Oracle: Get FRA stats','oracle.fra.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get FRA statistics.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1aa391bbd2484793a31dc9f0dce51b46');
INSERT INTO `items` (`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`,`uuid`) values ('31687','0','','10335','Oracle: Number of processes','oracle.proc.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ce9dabcce58d408d8188fe7caa71e666');
INSERT INTO `items` (`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`,`uuid`) values ('31688','0','','10335','Oracle: Get SGA stats','oracle.sga.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get SGA statistics.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1bafc80a94fb454785362593b8a73be3');
INSERT INTO `items` (`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`,`uuid`) values ('31689','0','','10335','Oracle: Get PDB info','oracle.pdb.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get info about PDB databases on instance.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ca4452418d2641bd87fa75e946c2bf98');
INSERT INTO `items` (`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`,`uuid`) values ('31690','0','','10335','Oracle: Get ASM stats','oracle.diskgroups.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get ASM disk groups stats.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cb703b07fc514ce5aedc561896bcd53f');
INSERT INTO `items` (`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`,`uuid`) values ('31691','0','','10335','Oracle: Get system metrics','oracle.sys.metrics["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','0;m0-59','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets system metric values.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eccce1efc85d46199b3147ec586e1cd5');
INSERT INTO `items` (`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`,`uuid`) values ('31692','0','','10335','Oracle: Get instance state','oracle.instance.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets state of the current instance.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c7dd0c162b742d08a2432c8bdde4ce2');
INSERT INTO `items` (`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`,`uuid`) values ('31693','0','','10335','Oracle: Get system parameters','oracle.sys.params["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get a set of system parameter values.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d59cca864e8044d89f9b4689ec712511');
INSERT INTO `items` (`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`,`uuid`) values ('31694','0','','10335','Oracle: Get PGA stats','oracle.pga.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get PGA statistics.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4926809f2c244b33b1a0650510a30fa4');
INSERT INTO `items` (`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`,`uuid`) values ('31695','0','','10335','Oracle: Redo logs available to switch','oracle.redolog.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of available for log switching inactive/unused REDO logs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','898a5325c2a2469dabb6a2356107dd66');
INSERT INTO `items` (`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`,`uuid`) values ('31696','0','','10335','Oracle: User\'s expire password','oracle.user.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1m','7d','365d','0','0','','days','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of days before zabbix account password expired.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','73ff311f3d5c4e93b5919f5633fc09f9');
INSERT INTO `items` (`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`,`uuid`) values ('31697','0','','10335','Oracle: Get archive log info','oracle.archive.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','5m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1ad93880e4314d68b9e1aa4e00f03b6e');
INSERT INTO `items` (`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`,`uuid`) values ('31698','0','','10335','Oracle: Get sessions stats','oracle.sessions.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}","{$ORACLE.SESSION.LOCK.MAX.TIME}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get sessions statistics. {$ORACLE.SESSION.LOCK.MAX.TIME} -- maximum seconds in the current wait condition for counting long time locked sessions. Default: 600 seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','41d61d167bf044fe9f0d9815b4fd27e6');
INSERT INTO `items` (`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`,`uuid`) values ('31699','0','','10335','Oracle: Get CDB and No-CDB info','oracle.cdb.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get info about CDB and No-CDB databases on instance.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1bad65e85d8b482d9cd83b1d202f8d8c');
INSERT INTO `items` (`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`,`uuid`) values ('31700','0','','10335','Oracle: Get tablespaces stats','oracle.ts.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get tablespaces stats.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','97ac4acedcde465b8d004a8ac476dd99');
INSERT INTO `items` (`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`,`uuid`) values ('31761','0','','10335','Archive log discovery','oracle.archive.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Log archive destinations.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e2f1ce8c037f4efa9bdb98166d344be6');
INSERT INTO `items` (`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`,`uuid`) values ('31762','0','','10335','Database discovery','oracle.db.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning databases in DBMS.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','59840e68757644afbcf6ec49a6f5e95d');
INSERT INTO `items` (`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`,`uuid`) values ('31763','0','','10335','ASM disk groups discovery','oracle.diskgroups.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'ASM disk groups','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8d31eea973a7408abf0eb25ca7ba70c6');
INSERT INTO `items` (`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`,`uuid`) values ('31764','0','','10335','PDB discovery','oracle.pdb.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning PDB in DBMS.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','479a56fe538f46c094cc4b595d070776');
INSERT INTO `items` (`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`,`uuid`) values ('31765','0','','10335','Tablespace discovery','oracle.ts.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning tablespaces in DBMS.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','46ee5f42a15b43a58f7ef0ce5e3638d3');
INSERT INTO `items` (`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`,`uuid`) values ('31782','3','','10336','Asterisk: Service status','net.tcp.service["tcp","{HOST.CONN}","{$AMI.PORT}"]','1m','7d','365d','0','3','','','','',NULL,'37','','','0','','','','','0',NULL,'Asterisk Manager API port availability.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','58e18df6a5534395bf74d3babdb73170');
INSERT INTO `items` (`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`,`uuid`) values ('31783','3','','10336','Asterisk: Service response time','net.tcp.service.perf["tcp","{HOST.CONN}","{$AMI.PORT}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Asterisk Manager API performance.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','09102393dc6a4ac598f02d95801c6ca0');
INSERT INTO `items` (`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`,`uuid`) values ('31784','19','','10336','Asterisk: Get stats','asterisk.get_stats','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Asterisk system information in JSON format.','0','30d','0','',NULL,'3s','{$AMI.URL}','[{"action":"login"},{"username":"{$AMI.USERNAME}"},{"secret":"{$AMI.SECRET}"}]','','200','1','0','','1','0','0','0','0','0','0','7db3e9cdae3d4bffa7429617e351fce1');
INSERT INTO `items` (`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`,`uuid`) values ('31820','7','','10338','Interrupts per second','system.cpu.intr','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ce91073d4a344a1bbbdb5f98a48ade4');
INSERT INTO `items` (`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`,`uuid`) values ('31821','7','','10338','CPU idle time','system.cpu.util[,idle]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent doing nothing.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b2f6d924272d4b84bf26cd497a85d24f');
INSERT INTO `items` (`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`,`uuid`) values ('31822','7','','10338','CPU system time','system.cpu.util[,system]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running the kernel and its processes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','768051f0019b4823a34cd1e7c03e507d');
INSERT INTO `items` (`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`,`uuid`) values ('31823','7','','10338','CPU steal time','system.cpu.util[,steal]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of CPU \'stolen\' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','676c1243ad404ec7b4bbdfcf1a230c8f');
INSERT INTO `items` (`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`,`uuid`) values ('31824','7','','10338','CPU softirq time','system.cpu.util[,softirq]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time the CPU has been servicing software interrupts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c86a06e45ce449158e90ba1843fa73be');
INSERT INTO `items` (`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`,`uuid`) values ('31825','7','','10338','CPU nice time','system.cpu.util[,nice]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running users\' processes that have been niced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f67af9ba78054119806eb8ee6bbe6759');
INSERT INTO `items` (`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`,`uuid`) values ('31826','7','','10338','CPU iowait time','system.cpu.util[,iowait]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of time the CPU has been waiting for I/O to complete.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e8d5b76517c946b18b7d55c9ff2c23cb');
INSERT INTO `items` (`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`,`uuid`) values ('31827','7','','10338','CPU interrupt time','system.cpu.util[,interrupt]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time the CPU has been servicing hardware interrupts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4eae770bff5f404481f2c57673fc8b3d');
INSERT INTO `items` (`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`,`uuid`) values ('31828','7','','10338','CPU guest time','system.cpu.util[,guest]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Guest time (time spent running a virtual CPU for a guest operating system).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','113b52c5d0cc4fec815d1a8e76fad4b8');
INSERT INTO `items` (`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`,`uuid`) values ('31829','7','','10338','Load average (1m avg)','system.cpu.load[all,avg1]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','028f6c4184fe4827816e47ec9ffded70');
INSERT INTO `items` (`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`,`uuid`) values ('31830','7','','10338','CPU guest nice time','system.cpu.util[,guest_nice]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b642aa7ed2dc41738a58339898ed6180');
INSERT INTO `items` (`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`,`uuid`) values ('31831','7','','10338','Context switches per second','system.cpu.switches','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2524a63bea9d44858b4b0a068360a3ad');
INSERT INTO `items` (`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`,`uuid`) values ('31832','7','','10338','Number of CPUs','system.cpu.num','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e522484fae9044c5bb364a8be14dfd39');
INSERT INTO `items` (`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`,`uuid`) values ('31833','7','','10338','Load average (5m avg)','system.cpu.load[all,avg5]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','507ff2791866406caf0a90c698b0b37a');
INSERT INTO `items` (`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`,`uuid`) values ('31834','7','','10338','Load average (15m avg)','system.cpu.load[all,avg15]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9502c5e47bd542ecbb8e2bfbf9020367');
INSERT INTO `items` (`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`,`uuid`) values ('31835','7','','10338','CPU user time','system.cpu.util[,user]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running users\' processes that are not niced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','28b99eefcae047fe8dee348ddbb96728');
INSERT INTO `items` (`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`,`uuid`) values ('31836','7','','10340','Maximum number of open file descriptors','kernel.maxfiles','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'It could be increased by using sysctl utility or modifying file /etc/sysctl.conf.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','98a2a698cd784267a965d653fdbba456');
INSERT INTO `items` (`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`,`uuid`) values ('31837','7','','10340','Maximum number of processes','kernel.maxproc','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'It could be increased by using sysctl utility or modifying file /etc/sysctl.conf.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7778ab98754146ecbfd2735d9c322c97');
INSERT INTO `items` (`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`,`uuid`) values ('31838','7','','10340','Number of processes','proc.num','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','64268d5004a64e0ba737dcf4dd213913');
INSERT INTO `items` (`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`,`uuid`) values ('31839','7','','10340','Number of running processes','proc.num[,,run]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','06e306520579482b8105d7421ad16da1');
INSERT INTO `items` (`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`,`uuid`) values ('31840','7','','10340','System boot time','system.boottime','15m','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','04989d7ca98246ce93405b25bd86aeda');
INSERT INTO `items` (`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`,`uuid`) values ('31841','7','','10340','System name','system.hostname','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System host name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','40de32e4124b456faba499e00b1c7174');
INSERT INTO `items` (`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`,`uuid`) values ('31842','7','','10340','System local time','system.localtime','1m','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'System local time of the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','510ed427b1284906824df3123b94a0bc');
INSERT INTO `items` (`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`,`uuid`) values ('31843','7','','10340','Operating system architecture','system.sw.arch','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Operating system architecture of the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6f37348c05fa409e9189af3731296095');
INSERT INTO `items` (`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`,`uuid`) values ('31844','7','','10340','Operating system','system.sw.os','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','79d493ae03a64bdab89520c3dde0410c');
INSERT INTO `items` (`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`,`uuid`) values ('31845','7','','10340','Software installed','system.sw.packages','1h','2w','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','42df39b3317a4bd6908686a491fd3d18');
INSERT INTO `items` (`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`,`uuid`) values ('31846','7','','10340','System description','system.uname','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The information as normally returned by \'uname -a\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d875142b4ea0442db59768be58c9d026');
INSERT INTO `items` (`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`,`uuid`) values ('31847','7','','10340','System uptime','system.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'System uptime in \'N days, hh:mm:ss\' format.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2e5b3c8596df4aaebce704f3904630a7');
INSERT INTO `items` (`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`,`uuid`) values ('31848','7','','10340','Number of logged in users','system.users.num','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of users who are currently logged in.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a58cfd080cfe44d9ae054754bbc69892');
INSERT INTO `items` (`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`,`uuid`) values ('31849','7','','10340','Checksum of /etc/passwd','vfs.file.cksum[/etc/passwd,sha256]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7cb47989debc4deba77394a5320a83e8');
INSERT INTO `items` (`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`,`uuid`) values ('31850','7','','10341','Free swap space','system.swap.size[,free]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of swap volume/file in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','824d5c6e62c04f2d8b6e73aeca87be1e');
INSERT INTO `items` (`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`,`uuid`) values ('31851','7','','10341','Free swap space in %','system.swap.size[,pfree]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of swap volume/file in percent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f3b551caf6b44511a44f5ebb07ba5917');
INSERT INTO `items` (`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`,`uuid`) values ('31852','7','','10341','Total swap space','system.swap.size[,total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total space of swap volume/file in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b1a37ddf8db402491ac856980437a45');
INSERT INTO `items` (`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`,`uuid`) values ('31853','7','','10341','Available memory','vm.memory.size[available]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','156ef93f80d7499198909fc3fbc84672');
INSERT INTO `items` (`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`,`uuid`) values ('31854','7','','10341','Available memory in %','vm.memory.size[pavailable]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Available memory as percentage of total. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','79d2b01adaf14794826f78c860867fc5');
INSERT INTO `items` (`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`,`uuid`) values ('31855','7','','10341','Total memory','vm.memory.size[total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total memory in Bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e1bc17b4c3d7499b954fe10e5feb35e1');
INSERT INTO `items` (`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`,`uuid`) values ('31896','7','','10337','Block devices discovery','vfs.dev.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','37d15facfc5f42f4ad1145f55d4bdb1e');
INSERT INTO `items` (`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`,`uuid`) values ('31897','7','','10339','Mounted filesystem discovery','vfs.fs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of file systems of different types.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','39b800d6136b4f8a8e57bbccc2f0352f');
INSERT INTO `items` (`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`,`uuid`) values ('31898','7','','10342','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','37a61365e2f34811a389f37aafc04169');
INSERT INTO `items` (`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`,`uuid`) values ('31902','15','','10337','{#DEVNAME}: Disk read request avg waiting time (r_await)','vfs.dev.read.await[{#DEVNAME}]','1m','7d','365d','0','0','','!ms','','',NULL,NULL,'(last(//vfs.dev.read.time.rate[{#DEVNAME}])/(last(//vfs.dev.read.rate[{#DEVNAME}])+(last(//vfs.dev.read.rate[{#DEVNAME}])=0)))*1000*(last(//vfs.dev.read.rate[{#DEVNAME}]) > 0)','','0','','','','','2',NULL,'This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4263e16baa044186947ad9f4ec12f6b4');
INSERT INTO `items` (`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`,`uuid`) values ('31903','15','','10337','{#DEVNAME}: Disk write request avg waiting time (w_await)','vfs.dev.write.await[{#DEVNAME}]','1m','7d','365d','0','0','','!ms','','',NULL,NULL,'(last(//vfs.dev.write.time.rate[{#DEVNAME}])/(last(//vfs.dev.write.rate[{#DEVNAME}])+(last(//vfs.dev.write.rate[{#DEVNAME}])=0)))*1000*(last(//vfs.dev.write.rate[{#DEVNAME}]) > 0)','','0','','','','','2',NULL,'This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e36cbccc4d9e470f8078bd2e04c5c5da');
INSERT INTO `items` (`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`,`uuid`) values ('31904','7','','10337','{#DEVNAME}: Get stats','vfs.file.contents[/sys/block/{#DEVNAME}/stat]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get contents of /sys/block/{#DEVNAME}/stat for disk stats.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab92fd1578124197ba4dc8af11ebece4');
INSERT INTO `items` (`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`,`uuid`) values ('31905','7','','10339','{#FSNAME}: Free inodes in %','vfs.fs.inode[{#FSNAME},pfree]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','27292d6abec04f0492bf50c39749c4ea');
INSERT INTO `items` (`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`,`uuid`) values ('31906','7','','10339','{#FSNAME}: Space utilization','vfs.fs.size[{#FSNAME},pused]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Space utilization in % for {#FSNAME}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9f94a00cd29a420185475690d2f049c5');
INSERT INTO `items` (`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`,`uuid`) values ('31907','7','','10339','{#FSNAME}: Total space','vfs.fs.size[{#FSNAME},total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space in Bytes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bba48614f65c468c82a494f3f119a21d');
INSERT INTO `items` (`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`,`uuid`) values ('31908','7','','10339','{#FSNAME}: Used space','vfs.fs.size[{#FSNAME},used]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used storage in Bytes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','76bbffc4bd4a4ac3b3ff60ff27509372');
INSERT INTO `items` (`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`,`uuid`) values ('31909','7','','10342','Interface {#IFNAME}: Inbound packets discarded','net.if.in["{#IFNAME}",dropped]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','62c1ecd956cb496b9d5257dad026add5');
INSERT INTO `items` (`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`,`uuid`) values ('31910','7','','10342','Interface {#IFNAME}: Inbound packets with errors','net.if.in["{#IFNAME}",errors]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5b771b290bb847be89bd7729709b7277');
INSERT INTO `items` (`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`,`uuid`) values ('31911','7','','10342','Interface {#IFNAME}: Bits received','net.if.in["{#IFNAME}"]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd9652a4c1dd45eaa31807bdf9a84a79');
INSERT INTO `items` (`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`,`uuid`) values ('31912','7','','10342','Interface {#IFNAME}: Outbound packets discarded','net.if.out["{#IFNAME}",dropped]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f5c36654948041bfb45878117781b02f');
INSERT INTO `items` (`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`,`uuid`) values ('31913','7','','10342','Interface {#IFNAME}: Outbound packets with errors','net.if.out["{#IFNAME}",errors]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','af4d99f8a7604fdfaaa3190469ddf9ec');
INSERT INTO `items` (`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`,`uuid`) values ('31914','7','','10342','Interface {#IFNAME}: Bits sent','net.if.out["{#IFNAME}"]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9cd8c1068368472383c468145c5aecba');
INSERT INTO `items` (`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`,`uuid`) values ('31915','7','','10342','Interface {#IFNAME}: Operational status','vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"]','1m','7d','0','0','3','','','','',NULL,'65','','','0','','','','','2',NULL,'Reference: https://www.kernel.org/doc/Documentation/networking/operstates.txt','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b38858cf52f945599ca475b635aab285');
INSERT INTO `items` (`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`,`uuid`) values ('31916','7','','10342','Interface {#IFNAME}: Interface type','vfs.file.contents["/sys/class/net/{#IFNAME}/type"]','1h','7d','0d','0','3','','','','',NULL,'129','','','0','','','','','2',NULL,'Indicates the interface protocol type as a decimal value.\r\nSee include/uapi/linux/if_arp.h for all possible values.\r\nReference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1506d09010fc48378b35b434e0eb18c1');
INSERT INTO `items` (`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`,`uuid`) values ('31948','7','','10344','CPU DPC time','perf_counter_en["\\Processor Information(_total)\\% DPC Time"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Processor DPC time is the time that a single processor spent receiving and servicing deferred procedure\r\ncalls (DPCs). DPCs are interrupts that run at a lower priority than standard interrupts. % DPC Time is a\r\ncomponent of % Privileged Time because DPCs are executed in privileged mode. If a high % DPC Time is\r\nsustained, there may be a processor bottleneck or an application or hardware related issue that can\r\nsignificantly diminish overall system performance.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','94cedfa2390f4e509456222a69207023');
INSERT INTO `items` (`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`,`uuid`) values ('31949','7','','10344','CPU interrupt time','perf_counter_en["\\Processor Information(_total)\\% Interrupt Time"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The Processor Information\\% Interrupt Time is the time the processor spends receiving and servicing\r\nhardware interrupts during sample intervals. This value is an indirect indicator of the activity of\r\ndevices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication\r\nlines, network interface cards and other peripheral devices. This is an easy way to identify a potential\r\nhardware failure. This should never be higher than 20%.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9c3ee1744a604a41b90dcec49effaff7');
INSERT INTO `items` (`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`,`uuid`) values ('31950','7','','10344','CPU privileged time','perf_counter_en["\\Processor Information(_total)\\% Privileged Time"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The Processor Information\\% Privileged Time counter shows the percent of time that the processor is spent\r\nexecuting in Kernel (or Privileged) mode. Privileged mode includes services interrupts inside Interrupt\r\nService Routines (ISRs), executing Deferred Procedure Calls (DPCs), Device Driver calls and other kernel-mode\r\nfunctions of the Windows® Operating System.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','49073e4ccf964d349945824888ec46b0');
INSERT INTO `items` (`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`,`uuid`) values ('31951','7','','10344','CPU user time','perf_counter_en["\\Processor Information(_total)\\% User Time"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The Processor Information\\% User Time counter shows the percent of time that the processor(s) is spent executing\r\nin User mode.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bebffbf027bb48feba459e7f344d67f2');
INSERT INTO `items` (`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`,`uuid`) values ('31952','7','','10344','Context switches per second','perf_counter_en["\\System\\Context Switches/sec"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Context Switches/sec is the combined rate at which all processors on the computer are switched from one thread to another.\r\nContext switches occur when a running thread voluntarily relinquishes the processor, is preempted by a higher priority ready thread, or switches between user-mode and privileged (kernel) mode to use an Executive or subsystem service.\r\nIt is the sum of Thread\\\\Context Switches/sec for all threads running on all processors in the computer and is measured in numbers of switches.\r\nThere are context switch counters on the System and Thread objects. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8d1d279c74324690a1ee37dbc90a7f88');
INSERT INTO `items` (`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`,`uuid`) values ('31953','7','','10344','CPU queue length','perf_counter_en["\\System\\Processor Queue Length"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Processor Queue Length shows the number of threads that are observed as delayed in the processor Ready Queue\r\nand are waiting to be executed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b7a1b8f5c4664195921d459a60f09d57');
INSERT INTO `items` (`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`,`uuid`) values ('31954','7','','10344','CPU utilization','system.cpu.util','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6f3c6b7312be445eb54e0851447a879e');
INSERT INTO `items` (`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`,`uuid`) values ('31955','7','','10344','Number of cores','wmi.get[root/cimv2,"Select NumberOfLogicalProcessors from Win32_ComputerSystem"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of logical processors available on the computer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cb071eb5cc82471c83e88b9125c2832a');
INSERT INTO `items` (`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`,`uuid`) values ('31956','7','','10346','Number of threads','perf_counter_en["\\System\\Threads"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of threads used by all running processes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','09ff6e03432f4db58e5f43697d0333e8');
INSERT INTO `items` (`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`,`uuid`) values ('31957','7','','10346','Number of processes','proc.num[]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of processes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','665093a48f39404e9ae3221657a5e962');
INSERT INTO `items` (`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`,`uuid`) values ('31958','7','','10346','System name','system.hostname','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System host name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','73b821a638a74e6d86be642952d2d6fe');
INSERT INTO `items` (`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`,`uuid`) values ('31959','7','','10346','System local time','system.localtime','1m','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'System local time of the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','78f2089b58f54042ac70fd9ac3b2aa7e');
INSERT INTO `items` (`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`,`uuid`) values ('31960','7','','10346','Operating system architecture','system.sw.arch','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Operating system architecture of the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0522b89bdee248c5aad6ff77d9a68311');
INSERT INTO `items` (`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`,`uuid`) values ('31961','7','','10346','System description','system.uname','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System description of the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','383c3f59afee455d8981fe85e46c94dd');
INSERT INTO `items` (`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`,`uuid`) values ('31962','7','','10346','Uptime','system.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'System uptime in \'N days, hh:mm:ss\' format.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e5342587828d40ed8feafdccdd6d92e3');
INSERT INTO `items` (`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`,`uuid`) values ('31963','7','','10347','Cache bytes','perf_counter_en["\\Memory\\Cache Bytes"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Cache Bytes is the sum of the Memory\\\\System Cache Resident Bytes, Memory\\\\System Driver Resident Bytes,\r\nMemory\\\\System Code Resident Bytes, and Memory\\\\Pool Paged Resident Bytes counters. This counter displays\r\nthe last observed value only; it is not an average.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','50610f9c46a848bdbdc08ed5b9c2a156');
INSERT INTO `items` (`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`,`uuid`) values ('31964','7','','10347','Free system page table entries','perf_counter_en["\\Memory\\Free System Page Table Entries"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This indicates the number of page table entries not currently in use by the system. If the number is less\r\nthan 5,000, there may well be a memory leak or you running out of memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6faf395b5bb14456a33e6689b7618613');
INSERT INTO `items` (`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`,`uuid`) values ('31965','7','','10347','Memory page faults per second','perf_counter_en["\\Memory\\Page Faults/sec"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Page Faults/sec is the average number of pages faulted per second. It is measured in number of pages\r\nfaulted per second because only one page is faulted in each fault operation, hence this is also equal\r\nto the number of page fault operations. This counter includes both hard faults (those that require\r\ndisk access) and soft faults (where the faulted page is found elsewhere in physical memory.) Most\r\nprocessors can handle large numbers of soft faults without significant consequence. However, hard faults,\r\nwhich require disk access, can cause significant delays.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9529c721229841f78362b4759cf2a910');
INSERT INTO `items` (`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`,`uuid`) values ('31966','7','','10347','Memory pages per second','perf_counter_en["\\Memory\\Pages/sec"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This measures the rate at which pages are read from or written to disk to resolve hard page faults.\r\nIf the value is greater than 1,000, as a result of excessive paging, there may be a memory leak.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f6c50f669f59467e9c5dca1c54f11ba6');
INSERT INTO `items` (`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`,`uuid`) values ('31967','7','','10347','Memory pool non-paged','perf_counter_en["\\Memory\\Pool Nonpaged Bytes"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'This measures the size, in bytes, of the non-paged pool. This is an area of system memory for objects\r\nthat cannot be written to disk but instead must remain in physical memory as long as they are allocated.\r\nThere is a possible memory leak if the value is greater than 175MB (or 100MB with the /3GB switch).\r\nA typical Event ID 2019 is recorded in the system event log.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','46dbc910c830421f9a95e0da1e467b39');
INSERT INTO `items` (`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`,`uuid`) values ('31968','7','','10347','Used swap space in %','perf_counter_en["\\Paging file(_Total)\\% Usage"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The used space of swap volume/file in percent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','81b54eadc3c546858982dc8cf9228dd4');
INSERT INTO `items` (`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`,`uuid`) values ('31969','15','','10347','Free swap space','system.swap.free','1m','7d','365d','0','3','','B','','',NULL,NULL,'last(//system.swap.size[,total]) - last(//system.swap.size[,total]) / 100 * last(//perf_counter_en["\\Paging file(_Total)\\% Usage"])','','0','','','','','0',NULL,'The free space of swap volume/file in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2eec55a22cf74c16b06eb6f9028637f8');
INSERT INTO `items` (`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`,`uuid`) values ('31970','7','','10347','Total swap space','system.swap.size[,total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total space of swap volume/file in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9a73bfe24f884eea9bb9a13042b6dbfd');
INSERT INTO `items` (`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`,`uuid`) values ('31971','7','','10347','Total memory','vm.memory.size[total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total memory in Bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b6b897e08b0f4dd1b858304d5456ab86');
INSERT INTO `items` (`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`,`uuid`) values ('31972','7','','10347','Used memory','vm.memory.size[used]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Used memory in Bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7b6b29a6d984476785e77b9604874ed5');
INSERT INTO `items` (`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`,`uuid`) values ('31973','15','','10347','Memory utilization','vm.memory.util','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.size[used]) / last(//vm.memory.size[total]) * 100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5731f496327c422e8fb33a1db6412d74');
INSERT INTO `items` (`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`,`uuid`) values ('31974','7','','10348','Network interfaces WMI get','wmi.getall[root\\cimv2,"select Name,Description,NetConnectionID,Speed,AdapterTypeId,NetConnectionStatus,GUID from win32_networkadapter where PhysicalAdapter=True and NetConnectionStatus>0"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Raw data of win32_networkadapter.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7c115b04b8904cc187aa3c8bbf456a57');
INSERT INTO `items` (`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`,`uuid`) values ('32004','7','','10345','Mounted filesystem discovery','vfs.fs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of file systems of different types.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c6af2bf05ad2458babf0a3533d6c36f3');
INSERT INTO `items` (`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`,`uuid`) values ('32006','7','','10349','Physical disks discovery','perf_instance_en.discovery[PhysicalDisk]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of installed physical disks.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','355a9297d1fb4cb0b587e40ef152dc0f');
INSERT INTO `items` (`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`,`uuid`) values ('32007','7','','10350','Windows services discovery','service.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of Windows services of different types as defined in template\'s macros.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','25e19e75eb4d4fd68df976323c7fac21');
INSERT INTO `items` (`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`,`uuid`) values ('32012','7','','10345','{#FSLABEL}({#FSNAME}): Space utilization','vfs.fs.size[{#FSNAME},pused]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Space utilization in % for {#FSNAME}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d3c76d7f4644e07a351aacc0c2b0651');
INSERT INTO `items` (`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`,`uuid`) values ('32013','7','','10345','{#FSLABEL}({#FSNAME}): Total space','vfs.fs.size[{#FSNAME},total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space in Bytes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ca1e75a143f4b1c9cb1b1e9d0d02286');
INSERT INTO `items` (`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`,`uuid`) values ('32014','7','','10345','{#FSLABEL}({#FSNAME}): Used space','vfs.fs.size[{#FSNAME},used]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used storage in Bytes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c221010d5aef4bb182681092d0df3586');
INSERT INTO `items` (`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`,`uuid`) values ('32015','7','','10348','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in["{#IFGUID}",dropped]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of incoming packets dropped on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a1c5afacb66f4c9abf4f8e901f42cb64');
INSERT INTO `items` (`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`,`uuid`) values ('32016','7','','10348','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in["{#IFGUID}",errors]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of incoming packets with errors on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3ee5bf3e405c4de2856bfaa729b0f469');
INSERT INTO `items` (`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`,`uuid`) values ('32017','7','','10348','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in["{#IFGUID}"]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Incoming traffic on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ea8b2a4901254965b40e57f7bdf1ea3f');
INSERT INTO `items` (`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`,`uuid`) values ('32018','7','','10348','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out["{#IFGUID}",dropped]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of outgoing packets dropped on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8feffdee85e2486191de0968ec7918b7');
INSERT INTO `items` (`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`,`uuid`) values ('32019','7','','10348','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out["{#IFGUID}",errors]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of outgoing packets with errors on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84d1943e15c046f894bf0219288671e4');
INSERT INTO `items` (`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`,`uuid`) values ('32020','7','','10348','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out["{#IFGUID}"]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Outgoing traffic on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb0785a7e7e54743bef715fb60dbe890');
INSERT INTO `items` (`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`,`uuid`) values ('32021','7','','10349','{#DEVNAME}: Disk utilization by idle time','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\% Idle Time",60]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests based on idle time.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7d6ab9b1b76041869d7818652b5c5b0e');
INSERT INTO `items` (`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`,`uuid`) values ('32022','7','','10349','{#DEVNAME}: Disk average queue size (avgqu-sz)','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Current Disk Queue Length",60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1201592953094d48af20a0e420bfa846');
INSERT INTO `items` (`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`,`uuid`) values ('32023','7','','10349','{#DEVNAME}: Disk read rate','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Disk Reads/sec",60]','1m','7d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of read operations on the disk.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e0f052d64ea544b09dfe619cb91f28c8');
INSERT INTO `items` (`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`,`uuid`) values ('32024','7','','10349','{#DEVNAME}: Disk write rate','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Disk Writes/sec",60]','1m','7d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of write operations on the disk.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','33e5e9eccad84737bf428fc54b25fc5c');
INSERT INTO `items` (`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`,`uuid`) values ('32025','7','','10350','State of service "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME})','service.info["{#SERVICE.NAME}",state]','1m','7d','365d','0','3','','','','',NULL,'48','','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c1606f1f7c9e4eb494c0c5e4e4f21ea5');
INSERT INTO `items` (`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`,`uuid`) values ('32117','0','','10353','Ceph: Get df','ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','af3e6faf835f41ef93cbbc44aa57f97e');
INSERT INTO `items` (`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`,`uuid`) values ('32118','0','','10353','Ceph: Get OSD dump','ceph.osd.dump["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e7eb1f67d81c4e2ba7c57cfbc81d1a00');
INSERT INTO `items` (`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`,`uuid`) values ('32119','0','','10353','Ceph: Get overall cluster status','ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8b43d105f9d64a3a94196f3f3bc7eac3');
INSERT INTO `items` (`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`,`uuid`) values ('32120','0','','10353','Ceph: Ping','ceph.ping["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]','1m','7d','365d','0','3','','','','',NULL,'38','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','911e8a654ca44e7ca56b8010ac7381c8');
INSERT INTO `items` (`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`,`uuid`) values ('32121','0','','10353','Ceph: Get OSD stats','ceph.osd.stats["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','35b63ca6519e4137bb7655e37ed08e51');
INSERT INTO `items` (`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`,`uuid`) values ('32168','0','','10353','OSD','ceph.osd.discovery["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','374557a43a824d938e9a8e656151e0c9');
INSERT INTO `items` (`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`,`uuid`) values ('32169','0','','10353','Pool','ceph.pool.discovery["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb6b4d27f46e4160ad978244aa845d0e');
INSERT INTO `items` (`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`,`uuid`) values ('32239','3','','10355','Squid: Service ping','net.tcp.service[tcp,,{$SQUID.HTTP.PORT}]','1m','7d','365d','0','3','','','','',NULL,'39','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','86cc718ce21b4ff9b0a09479ae3fc130');
INSERT INTO `items` (`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`,`uuid`) values ('32240','20','1.3.6.1.4.1.3495.1.3.1.7.0','10355','Squid: Objects count','squid[cacheNumObjCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of objects stored by the cache','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','387bbd61d3bd469baa6c560afe8a18ae');
INSERT INTO `items` (`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`,`uuid`) values ('32241','20','1.3.6.1.4.1.3495.1.3.2.2.1.6.5','10355','Squid: ICP query service time per 5 minutes','squid[cacheIcpQuerySvcTime.5]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'ICP query service time per 5 minutes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cb9d0c300beb47568e99ff7966e1b10e');
INSERT INTO `items` (`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`,`uuid`) values ('32242','20','1.3.6.1.4.1.3495.1.3.2.2.1.6.60','10355','Squid: ICP query service time per hour','squid[cacheIcpQuerySvcTime.60]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'ICP query service time per hour','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9130a0bc53144fe992b701aa9159ff70');
INSERT INTO `items` (`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`,`uuid`) values ('32243','20','1.3.6.1.4.1.3495.1.3.2.2.1.7.5','10355','Squid: ICP reply service time per 5 minutes','squid[cacheIcpReplySvcTime.5]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'ICP reply service time per 5 minutes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','35a7585432b3467585ff98b23e610d82');
INSERT INTO `items` (`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`,`uuid`) values ('32244','20','1.3.6.1.4.1.3495.1.3.2.2.1.7.60','10355','Squid: ICP reply service time per hour','squid[cacheIcpReplySvcTime.60]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'ICP reply service time per hour','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','94eab55af41a465196588d08acbacb56');
INSERT INTO `items` (`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`,`uuid`) values ('32245','20','1.3.6.1.4.1.3495.1.4.1.3.0','10355','Squid: IP cache hits per second','squid[cacheIpHits]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of IP Cache hits','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c5409583483e4024aabaab500bcb637a');
INSERT INTO `items` (`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`,`uuid`) values ('32246','20','1.3.6.1.4.1.3495.1.4.1.6.0','10355','Squid: IP cache misses per second','squid[cacheIpMisses]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of IP Cache misses','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8e474d2fd410472bb03024d2a2361b5d');
INSERT INTO `items` (`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`,`uuid`) values ('32247','20','1.3.6.1.4.1.3495.1.4.1.2.0','10355','Squid: IP cache requests per second','squid[cacheIpRequests]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of IP Cache requests','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dc837a887c3c463a9011d923dbbfbc0f');
INSERT INTO `items` (`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`,`uuid`) values ('32248','20','1.3.6.1.4.1.3495.1.3.1.6.0','10355','Squid: Memory maximum resident size','squid[cacheMaxResSize]','1m','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum Resident Size','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','70786920f94f41eeb0fc525c2e6431cf');
INSERT INTO `items` (`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`,`uuid`) values ('32249','20','1.3.6.1.4.1.3495.1.2.5.1.0','10355','Squid: Memory maximum cache size','squid[cacheMemMaxSize]','1m','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The value of the cache_mem parameter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d84c3a3633784f77bf9375bf59da490b');
INSERT INTO `items` (`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`,`uuid`) values ('32250','20','1.3.6.1.4.1.3495.1.3.1.3.0','10355','Squid: Memory cache usage','squid[cacheMemUsage]','1m','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total accounted memory','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c14fe87f87ca48f39bbe765db60e0a41');
INSERT INTO `items` (`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`,`uuid`) values ('32251','20','1.3.6.1.4.1.3495.1.3.2.1.1.0','10355','Squid: HTTP requests received per second','squid[cacheProtoClientHttpRequests]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests received','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1e648a20db904e92ae4ec0c3f9037a99');
INSERT INTO `items` (`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`,`uuid`) values ('32252','20','1.3.6.1.4.1.3495.1.3.2.1.7.0','10355','Squid: ICP messages received per second','squid[cacheIcpPktsRecv]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of ICP messages received','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ee83c13fa6d41dfb8bfea91c02341b9');
INSERT INTO `items` (`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`,`uuid`) values ('32253','20','1.3.6.1.4.1.3495.1.3.2.2.1.10.1','10355','Squid: Byte hit ratio per 1 minute','squid[cacheRequestByteRatio.1]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Byte Hit Ratios','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','31f3e3bb57d645ff8df6b9b8d1b70a49');
INSERT INTO `items` (`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`,`uuid`) values ('32254','20','1.3.6.1.4.1.3495.1.3.2.2.1.10.5','10355','Squid: Byte hit ratio per 5 minutes','squid[cacheRequestByteRatio.5]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Byte Hit Ratios','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e19775b9c83648d58655a1130c5771e4');
INSERT INTO `items` (`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`,`uuid`) values ('32255','20','1.3.6.1.4.1.3495.1.3.2.2.1.10.60','10355','Squid: Byte hit ratio per 1 hour','squid[cacheRequestByteRatio.60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Byte Hit Ratios','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ffb3fc17631f4cd6b55ed6eefd2e6cea');
INSERT INTO `items` (`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`,`uuid`) values ('32256','20','1.3.6.1.4.1.3495.1.3.2.2.1.9.1','10355','Squid: Request hit ratio per 1 minute','squid[cacheRequestHitRatio.1]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Byte Hit Ratios','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a4ba5af69dd64fd8acf707ee1eaaeb32');
INSERT INTO `items` (`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`,`uuid`) values ('32257','20','1.3.6.1.4.1.3495.1.3.2.2.1.9.5','10355','Squid: Request hit ratio per 5 minutes','squid[cacheRequestHitRatio.5]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Byte Hit Ratios','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b5ae7935e9be40e18c3020820a7865c7');
INSERT INTO `items` (`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`,`uuid`) values ('32258','20','1.3.6.1.4.1.3495.1.3.2.2.1.9.60','10355','Squid: Request hit ratio per 1 hour','squid[cacheRequestHitRatio.60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Byte Hit Ratios','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b09f7a1d9dc340b88106016586099dba');
INSERT INTO `items` (`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`,`uuid`) values ('32259','20','1.3.6.1.4.1.3495.1.2.5.3.0','10355','Squid: Cache swap high water mark','squid[cacheSwapHighWM]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Cache Swap High Water Mark','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','69e4fb088c6949ac94eabcb892df46ab');
INSERT INTO `items` (`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`,`uuid`) values ('32260','20','1.3.6.1.4.1.3495.1.2.5.4.0','10355','Squid: Cache swap low water mark','squid[cacheSwapLowWM]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Cache Swap Low Water Mark','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','221e583d7cf2455b9d848462de4b1e9a');
INSERT INTO `items` (`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`,`uuid`) values ('32261','20','1.3.6.1.4.1.3495.1.2.5.2.0','10355','Squid: Cache swap directory size','squid[cacheSwapMaxSize]','1m','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total of the cache_dir space allocated','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','215aefddd30e41aea54e30678f290215');
INSERT INTO `items` (`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`,`uuid`) values ('32262','20','1.3.6.1.4.1.3495.1.3.1.1.0','10355','Squid: Sys page faults per second','squid[cacheSysPageFaults]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Page faults with physical I/O','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','38ad99f9b30c4d729030ceab6575f4f5');
INSERT INTO `items` (`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`,`uuid`) values ('32263','20','1.3.6.1.4.1.3495.1.1.3.0','10355','Squid: Uptime','squid[cacheUptime]','5m','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The Uptime of the cache in timeticks (in hundredths of a second) with preprocessing','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','67460731d9c94166870874239c9a60da');
INSERT INTO `items` (`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`,`uuid`) values ('32264','20','1.3.6.1.4.1.3495.1.3.2.1.6.0','10355','Squid: ICP messages sent per second','squid[cacheIcpPktsSent]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of ICP messages sent','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dee7d8cf211b4ad0a645a8d6d4f24c31');
INSERT INTO `items` (`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`,`uuid`) values ('32265','20','1.3.6.1.4.1.3495.1.3.2.1.8.0','10355','Squid: ICP traffic transmitted per second','squid[cacheIcpKbSent]','1m','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of ICP traffic transmitted','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7234b612b50a45e0a1bb69654e2e784d');
INSERT INTO `items` (`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`,`uuid`) values ('32266','20','1.3.6.1.4.1.3495.1.3.1.5.0','10355','Squid: CPU usage','squid[cacheCpuUsage]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage use of the CPU','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d7f0f6b0f89462e96e86940b779eb69');
INSERT INTO `items` (`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`,`uuid`) values ('32267','20','1.3.6.1.4.1.3495.1.4.2.3.0','10355','Squid: FQDN cache hits per second','squid[cacheFqdnHits]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of FQDN Cache hits','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0aea1fe702004d65919fc010c971c3b5');
INSERT INTO `items` (`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`,`uuid`) values ('32268','20','1.3.6.1.4.1.3495.1.3.1.12.0','10355','Squid: File descriptor count - current used','squid[cacheCurrentFileDescrCnt]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of file descriptors in use','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','960b137ab773492ab3073e108575e4fc');
INSERT INTO `items` (`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`,`uuid`) values ('32269','20','1.3.6.1.4.1.3495.1.3.1.13.0','10355','Squid: File descriptor count - current maximum','squid[cacheCurrentFileDescrMax]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Highest number of file descriptors in use','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','37b45201f8444583b01e0df5af2bc14e');
INSERT INTO `items` (`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`,`uuid`) values ('32270','20','1.3.6.1.4.1.3495.1.3.1.8.0','10355','Squid: Objects LRU expiration age','squid[cacheCurrentLRUExpiration]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Storage LRU Expiration Age','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','910afdc20767408f90d1bc5b7a9fd6a4');
INSERT INTO `items` (`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`,`uuid`) values ('32271','20','1.3.6.1.4.1.3495.1.3.1.11.0','10355','Squid: File descriptor count - current reserved','squid[cacheCurrentResFileDescrCnt]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Reserved number of file descriptors','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','26b8b1a25dc74099b61813905477b414');
INSERT INTO `items` (`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`,`uuid`) values ('32272','20','1.3.6.1.4.1.3495.1.3.2.1.14.0','10355','Squid: Cache swap current size','squid[cacheCurrentSwapSize]','1m','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Storage Swap Size','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','35f3009401b6449d95988d9ee7a621a7');
INSERT INTO `items` (`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`,`uuid`) values ('32273','20','1.3.6.1.4.1.3495.1.3.1.9.0','10355','Squid: Objects unlinkd requests','squid[cacheCurrentUnlinkRequests]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Requests given to unlinkd','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0789a0fa3e3b42a08a5e5bf8d0307970');
INSERT INTO `items` (`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`,`uuid`) values ('32274','20','1.3.6.1.4.1.3495.1.3.1.10.0','10355','Squid: File descriptor count - current available','squid[cacheCurrentUnusedFDescrCnt]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Available number of file descriptors','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6bc024be663b466ca677941130e11f50');
INSERT INTO `items` (`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`,`uuid`) values ('32275','20','1.3.6.1.4.1.3495.1.4.3.2.0','10355','Squid: DNS server replies per second','squid[cacheDnsReplies]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of external dns server replies','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1aecf10756f949999c8f3fe5ce9c2a32');
INSERT INTO `items` (`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`,`uuid`) values ('32276','20','1.3.6.1.4.1.3495.1.4.3.1.0','10355','Squid: DNS server requests per second','squid[cacheDnsRequests]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of external dns server requests','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e5f647c77bdb498e9cc286795bc4077c');
INSERT INTO `items` (`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`,`uuid`) values ('32277','20','1.3.6.1.4.1.3495.1.3.2.2.1.8.5','10355','Squid: DNS service time per 5 minutes','squid[cacheDnsSvcTime.5]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'DNS service time per 5 minutes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3f4366896dd84b8ab78d6e3dc8a6ab63');
INSERT INTO `items` (`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`,`uuid`) values ('32278','20','1.3.6.1.4.1.3495.1.3.2.2.1.8.60','10355','Squid: DNS service time per hour','squid[cacheDnsSvcTime.60]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'DNS service time per hour','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','99448052f1a34e15a5c042124db7b651');
INSERT INTO `items` (`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`,`uuid`) values ('32279','20','1.3.6.1.4.1.3495.1.4.2.6.0','10355','Squid: FQDN cache misses per second','squid[cacheFqdnMisses]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of FQDN Cache misses','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2dea9b707b844d32b65a2d479ddb7d72');
INSERT INTO `items` (`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`,`uuid`) values ('32280','20','1.3.6.1.4.1.3495.1.3.2.1.9.0','10355','Squid: ICP traffic received per second','squid[cacheIcpKbRecv]','1m','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of ICP traffic received','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bde307ead15d48859a97e35e52327d50');
INSERT INTO `items` (`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`,`uuid`) values ('32281','20','1.3.6.1.4.1.3495.1.4.2.2.0','10355','Squid: FQDN cache requests per second','squid[cacheFqdnRequests]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of FQDN Cache requests','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1dad3f381c174b869c73f55cd831b40a');
INSERT INTO `items` (`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`,`uuid`) values ('32282','20','1.3.6.1.4.1.3495.1.3.2.2.1.2.5','10355','Squid: HTTP all service time per 5 minutes','squid[cacheHttpAllSvcTime.5]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'HTTP all service time per 5 minutes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','633a70cd41c44f2c895148a7ae394acd');
INSERT INTO `items` (`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`,`uuid`) values ('32283','20','1.3.6.1.4.1.3495.1.3.2.2.1.2.60','10355','Squid: HTTP all service time per hour','squid[cacheHttpAllSvcTime.60]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'HTTP all service time per hour','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d3aa021743134d97af9dd8840b0ef692');
INSERT INTO `items` (`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`,`uuid`) values ('32284','20','1.3.6.1.4.1.3495.1.3.2.1.3.0','10355','Squid: HTTP Errors sent per second','squid[cacheHttpErrors]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP Errors sent to clients','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7f5bd8f89ea0495ea87c294fb8c606dd');
INSERT INTO `items` (`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`,`uuid`) values ('32285','20','1.3.6.1.4.1.3495.1.3.2.1.2.0','10355','Squid: HTTP Hits sent from cache per second','squid[cacheHttpHits]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP Hits sent to clients from cache','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','adfe3e2fc775400991d2ea2f06218daf');
INSERT INTO `items` (`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`,`uuid`) values ('32286','20','1.3.6.1.4.1.3495.1.3.2.2.1.5.5','10355','Squid: HTTP hit service time per 5 minutes','squid[cacheHttpHitSvcTime.5]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'HTTP hit service time per 5 minutes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0c4fd7c154a44442a3cec82ba4026b7d');
INSERT INTO `items` (`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`,`uuid`) values ('32287','20','1.3.6.1.4.1.3495.1.3.2.2.1.5.60','10355','Squid: HTTP hit service time per hour','squid[cacheHttpHitSvcTime.60]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'HTTP hit service time per hour','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a642c99d6c3f4f5e8ec218459fd76f04');
INSERT INTO `items` (`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`,`uuid`) values ('32288','20','1.3.6.1.4.1.3495.1.3.2.1.4.0','10355','Squid: HTTP traffic received per second','squid[cacheHttpInKb]','1m','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP traffic received from clients','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f2366a6008cb4dc7856904ea5c6631dd');
INSERT INTO `items` (`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`,`uuid`) values ('32289','20','1.3.6.1.4.1.3495.1.3.2.2.1.3.5','10355','Squid: HTTP miss service time per 5 minutes','squid[cacheHttpMissSvcTime.5]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'HTTP miss service time per 5 minutes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f8fa271a272442369b6cbc4fb1a2decc');
INSERT INTO `items` (`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`,`uuid`) values ('32290','20','1.3.6.1.4.1.3495.1.3.2.2.1.3.60','10355','Squid: HTTP miss service time per hour','squid[cacheHttpMissSvcTime.60]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'HTTP miss service time per hour','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','23e5a3bd6e9a4c50a7d54336a6afc1e1');
INSERT INTO `items` (`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`,`uuid`) values ('32291','20','1.3.6.1.4.1.3495.1.3.2.1.5.0','10355','Squid: HTTP traffic sent per second','squid[cacheHttpOutKb]','1m','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP traffic sent to clients','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff6b7946363d44bba5721c82c8f84df7');
INSERT INTO `items` (`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`,`uuid`) values ('32292','20','1.3.6.1.4.1.3495.1.2.3.0','10355','Squid: Version','squid[cacheVersionId]','1m','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Cache Software Version','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d7c7f0faa1f64745be774e30e6f0b68f');
INSERT INTO `items` (`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`,`uuid`) values ('32364','0','','10357','PostgreSQL: Get connections sum','pgsql.connections.sum["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DB}"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_stat_activity\r\nhttps://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ACTIVITY-VIEW','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b0da0c4856a645ca8ef03405d2d8d4a5');
INSERT INTO `items` (`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`,`uuid`) values ('32365','0','','10357','PostgreSQL: Get locks','pgsql.locks["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DB}"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_locks per database\r\nhttps://www.postgresql.org/docs/current/explicit-locking.html#LOCKING-TABLES','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7cee21f6225340ef80e9cdef7ce20b10');
INSERT INTO `items` (`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`,`uuid`) values ('32366','0','','10357','Status: Ping time','pgsql.ping.time["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DB}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f42bd73b3af6451b8a3a6113dcc1b675');
INSERT INTO `items` (`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`,`uuid`) values ('32367','0','','10357','Status: Ping','pgsql.ping["{$PG.HOST}","{$PG.PORT}"]','1m','7d','365d','0','3','','','','',NULL,'40','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f5bd615243b344cb88dac1e83436cc85');
INSERT INTO `items` (`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`,`uuid`) values ('32368','0','','10357','PostgreSQL: Get queries','pgsql.queries["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DB}","{$PG.QUERY_ETIME.MAX.WARN}"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics by query execution time','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','47bf580e1e4e48cf9c0e94fcf90288ac');
INSERT INTO `items` (`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`,`uuid`) values ('32369','0','','10357','Replication: standby count','pgsql.replication.count["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DB}"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of standby servers','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d8a509bd011a4ecda5d439295e257e9d');
INSERT INTO `items` (`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`,`uuid`) values ('32370','0','','10357','Replication: lag in seconds','pgsql.replication.lag.sec["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DB}"]','1m','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Replication lag with Master in seconds','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','21f8bea1141249c7a4dfafad5bc3ef41');
INSERT INTO `items` (`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`,`uuid`) values ('32371','0','','10357','Replication: recovery role','pgsql.replication.recovery_role["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DB}"]','1m','7d','365d','0','3','','','','',NULL,'124','','','0','','','','','0',NULL,'Replication role: 1 — recovery is still in progress (standby mode), 0 — master mode.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','09f696124fca4c5b844bf66c9c912b87');
INSERT INTO `items` (`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`,`uuid`) values ('32372','0','','10357','Replication: status','pgsql.replication.status["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DB}"]','1m','7d','365d','0','3','','','','',NULL,'126','','','0','','','','','0',NULL,'Replication status: 0 — streaming is down, 1 — streaming is up, 2 — master mode','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d449017462704508a4aad51a6b45fb30');
INSERT INTO `items` (`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`,`uuid`) values ('32373','0','','10357','Status: Config hash','pgsql.config.hash["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DB}"]','15m','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'PostgreSQL configuration hash','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','248cbe5067324b9ca435f2aced5e2a5f');
INSERT INTO `items` (`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`,`uuid`) values ('32374','0','','10357','Status: Cache hit ratio %','pgsql.cache.hit["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DB}"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Cache hit ratio','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','70a7581fabd14e05bda762b79811187c');
INSERT INTO `items` (`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`,`uuid`) values ('32375','0','','10357','PostgreSQL: Get bgwriter','pgsql.bgwriter["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DB}"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics about the background writer process\'s activity','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1fc5ba48a0974bd7bf965b5f130deded');
INSERT INTO `items` (`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`,`uuid`) values ('32376','0','','10357','PostgreSQL: Get transactions','pgsql.transactions["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DB}"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect metrics by transaction execution time','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff26a1c256bd40978f49a7a025538aa1');
INSERT INTO `items` (`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`,`uuid`) values ('32377','0','','10357','Status: Uptime','pgsql.uptime["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DB}"]','1m','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6418a2f286e64ecabf2295fca063f8af');
INSERT INTO `items` (`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`,`uuid`) values ('32378','0','','10357','Status: Version','pgsql.version["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DB}"]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'PostgreSQL version','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','321525ebcea44396922e96deec2e8ad1');
INSERT INTO `items` (`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`,`uuid`) values ('32379','0','','10357','PostgreSQL: Get WAL','pgsql.wal.stat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DB}"]','5m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Master item to collect WAL metrics','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7cd6c524ecab41f9a22489866d503361');
INSERT INTO `items` (`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`,`uuid`) values ('32380','0','','10357','PostgreSQL: Get dbstat','pgsql.dbstat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DB}"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_stat_database per database\r\nhttps://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-DATABASE-VIEW','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b44f263fb33e461e8c3d700fb7688c7b');
INSERT INTO `items` (`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`,`uuid`) values ('32404','0','','10357','Database discovery','pgsql.discovery.db["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DB}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c4c658507394f5bb362e601f7c59d63');
INSERT INTO `items` (`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`,`uuid`) values ('32405','0','','10357','DB {#DBNAME}: Database size','pgsql.db.size["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DB}","{#DBNAME}"]','15m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Database size','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','69575e9785184ef5be2502e3cc282220');
INSERT INTO `items` (`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`,`uuid`) values ('32406','0','','10357','DB {#DBNAME}: Get frozen XID','pgsql.frozenxid["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ddf6d0b7b5fe4cbbb540687051b8e5f5');
INSERT INTO `items` (`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`,`uuid`) values ('32407','0','','10357','DB {#DBNAME}: Get scans','pgsql.scans["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of scans done for table/index in the database','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4bf92e4b0fed4d32b808b299d9e1fb0c');
INSERT INTO `items` (`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`,`uuid`) values ('32435','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10233','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','017797e68eae49afaa864dd57757bbd8');
INSERT INTO `items` (`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`,`uuid`) values ('32436','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10233','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','25cf4b11ade848fb9947ef85c59da65a');
INSERT INTO `items` (`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`,`uuid`) values ('32437','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10233','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','467f6179fa7d43c2a23333330c1ceac1');
INSERT INTO `items` (`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`,`uuid`) values ('32438','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10233','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0994d40dab10493c96c4f79d0cc5e619');
INSERT INTO `items` (`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`,`uuid`) values ('32439','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10233','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1c5a284353964175b4541c78fea7d07d');
INSERT INTO `items` (`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`,`uuid`) values ('32440','16','','10358','Brokers discovery','jmx.discovery[beans,"org.apache.activemq:type=Broker,brokerName=*"]','1h','90d','0','0','4','','','{1152} and {1153}','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','1',NULL,'Discovery of brokers','0','30d','3','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cbd9f98c2c1e412081a546e18066a868');
INSERT INTO `items` (`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`,`uuid`) values ('32441','16','','10358','Destinations discovery','jmx.discovery[beans,"org.apache.activemq:type=Broker,brokerName=*,destinationType=*,destinationName=*"]','1h','90d','0','0','4','','','{1154} and {1155}','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','1',NULL,'Discovery of destinations','0','30d','3','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','14432547793d42d2b75c7b08fcbb3545');
INSERT INTO `items` (`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`,`uuid`) values ('32442','16','','10358','Broker {#JMXBROKERNAME}: Version','jmx[{#JMXOBJ},BrokerVersion]','1m','7d','0','0','4','','','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'The version of the broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','29a0f197bfe847d596dad4923364490e');
INSERT INTO `items` (`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`,`uuid`) values ('32443','16','','10358','Broker {#JMXBROKERNAME}: Memory limit','jmx[{#JMXOBJ},MemoryLimit]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Memory limit, in bytes, used for holding undelivered messages before paging to temporary storage.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','85c19ccb8b6a4242a8ba699e76836427');
INSERT INTO `items` (`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`,`uuid`) values ('32444','16','','10358','Broker {#JMXBROKERNAME}: Memory usage in percents','jmx[{#JMXOBJ}, MemoryPercentUsage]','1m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Percent of memory limit used.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e2a5638adf6405087014bfcfc8ffc93');
INSERT INTO `items` (`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`,`uuid`) values ('32445','16','','10358','Broker {#JMXBROKERNAME}: Storage limit','jmx[{#JMXOBJ},StoreLimit]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Disk limit, in bytes, used for persistent messages before producers are blocked.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','78806476b5cb4ce48f8ca8dbd173c7c3');
INSERT INTO `items` (`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`,`uuid`) values ('32446','16','','10358','Broker {#JMXBROKERNAME}: Storage usage in percents','jmx[{#JMXOBJ},StorePercentUsage]','1m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Percent of store limit used.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fc4c79543a6f4b7b9c22f11b61b644c9');
INSERT INTO `items` (`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`,`uuid`) values ('32447','16','','10358','Broker {#JMXBROKERNAME}: Temp limit','jmx[{#JMXOBJ},TempLimit]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Disk limit, in bytes, used for non-persistent messages and temporary data before producers are blocked.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','09db80ee80ea47189142130d35a8e1c2');
INSERT INTO `items` (`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`,`uuid`) values ('32448','16','','10358','Broker {#JMXBROKERNAME}: Temp usage in percents','jmx[{#JMXOBJ},TempPercentUsage]','1m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Percent of temp limit used.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','95354144839e4d22a82c4e9a1fab83d9');
INSERT INTO `items` (`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`,`uuid`) values ('32449','16','','10358','Broker {#JMXBROKERNAME}: Consumers count total','jmx[{#JMXOBJ},TotalConsumerCount]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Number of consumers attached to this broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','64ab04e456804e10a6c78c3190807506');
INSERT INTO `items` (`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`,`uuid`) values ('32450','16','','10358','Broker {#JMXBROKERNAME}: Messages dequeue rate','jmx[{#JMXOBJ},TotalDequeueCount]','1m','7d','365d','0','3','','messages/sec','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Rate of messages that have been delivered by the broker and acknowledged by consumers.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','48bc7dab4a1a40d8a823e880018cf8e7');
INSERT INTO `items` (`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`,`uuid`) values ('32451','16','','10358','Broker {#JMXBROKERNAME}: Messages enqueue rate','jmx[{#JMXOBJ},TotalEnqueueCount]','1m','7d','365d','0','3','','messages/sec','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Rate of messages that have been sent to the broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a462499eecbd443e931a9aa831240f65');
INSERT INTO `items` (`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`,`uuid`) values ('32452','16','','10358','Broker {#JMXBROKERNAME}: Producers count total','jmx[{#JMXOBJ},TotalProducerCount]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Number of producers attached to this broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2453d8221cec4e1ead6622c001ac9a8c');
INSERT INTO `items` (`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`,`uuid`) values ('32453','16','','10358','Broker {#JMXBROKERNAME}: Uptime','jmx[{#JMXOBJ},UptimeMillis]','1m','7d','365d','0','3','','s','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'The uptime of the broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a46d7281cb234ccaadacbb7d311cbd39');
INSERT INTO `items` (`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`,`uuid`) values ('32454','16','','10358','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count total on {#JMXBROKERNAME}','jmx["org.apache.activemq:type=Broker,brokerName={#JMXBROKERNAME}",{$ACTIVEMQ.TOTAL.CONSUMERS.COUNT: "{#JMXDESTINATIONNAME}"}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Number of consumers attached to the broker of this destination. Used to suppress destination\'s triggers when the count of consumers on the broker is lower than threshold.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fd8129c9a66043d896a70c91c8b0d471');
INSERT INTO `items` (`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`,`uuid`) values ('32455','16','','10358','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count total on {#JMXBROKERNAME}','jmx["org.apache.activemq:type=Broker,brokerName={#JMXBROKERNAME}",{$ACTIVEMQ.TOTAL.PRODUCERS.COUNT: "{#JMXDESTINATIONNAME}"}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Number of producers attached to the broker of this destination. Used to suppress destination\'s triggers when the count of producers on the broker is lower than threshold.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','99f2094b02f848e785e40296958c5450');
INSERT INTO `items` (`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`,`uuid`) values ('32456','16','','10358','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count','jmx[{#JMXOBJ},ConsumerCount]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Number of consumers attached to this destination.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e93e53a0c2d49a49d421ded87b6b1f8');
INSERT INTO `items` (`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`,`uuid`) values ('32457','16','','10358','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Messages dequeue rate','jmx[{#JMXOBJ},DequeueCount]','1m','7d','365d','0','3','','messages/sec','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Rate of messages that has been acknowledged (and removed) from the destination.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3536ec77069a434e854415f0a3270e67');
INSERT INTO `items` (`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`,`uuid`) values ('32458','16','','10358','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Messages enqueue rate','jmx[{#JMXOBJ},EnqueueCount]','1m','7d','365d','0','3','','messages/sec','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Rate of messages that have been sent to the destination.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a6dacc8c4d1f4724bf49c63449992035');
INSERT INTO `items` (`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`,`uuid`) values ('32459','16','','10358','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Expired messages count','jmx[{#JMXOBJ},ExpiredCount]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Number of messages that have been expired.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1c4ea913a9564d74b31ef82314203a15');
INSERT INTO `items` (`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`,`uuid`) values ('32460','16','','10358','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage in percents','jmx[{#JMXOBJ},MemoryPercentUsage]','1m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'The percentage of the memory limit used.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','158fac5a1b3c4f07a4004a733f9b6995');
INSERT INTO `items` (`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`,`uuid`) values ('32461','16','','10358','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count','jmx[{#JMXOBJ},ProducerCount]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Number of producers attached to this destination.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','82ee74872f6e46efbf16ae0705bcf2a6');
INSERT INTO `items` (`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`,`uuid`) values ('32462','16','','10358','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Queue size','jmx[{#JMXOBJ},QueueSize]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Number of messages on this destination, including any that have been dispatched but not acknowledged.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fdc1e26fbe6545d3bdfc86f6f8c91b8b');
INSERT INTO `items` (`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`,`uuid`) values ('32463','21','','10359','Aranet: Get data','aranet.get_data','1m','0','0','0','4','','','','',NULL,NULL,'var Aranet = {\r\n params: {},\r\n auth_token: null,\r\n refresh_token: null,\r\n space_id: null,\r\n\r\n setParams: function (params) {\r\n [\'api_endpoint\', \'username\', \'password\', \'space_name\'].forEach(function (field) {\r\n if (typeof params !== \'object\' || typeof params[field] === \'undefined\'\r\n || params[field] === \'\') {\r\n throw \'Required param is not set: "\' + field + \'".\';\r\n }\r\n });\r\n\r\n Aranet.params = params;\r\n if (typeof Aranet.params.api_endpoint === \'string\') {\r\n if (!Aranet.params.api_endpoint.endsWith(\'/\')) {\r\n Aranet.params.api_endpoint += \'/\';\r\n }\r\n }\r\n },\r\n\r\n request: function (method, query, data) {\r\n var response,\r\n request = new HttpRequest(),\r\n url = Aranet.params.api_endpoint + query;\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n\r\n if (Aranet.auth_token !== null) {\r\n request.addHeader(\'Authorization: Bearer \' + Aranet.auth_token);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ Aranet scraper ] Received response with status code \' + request.getStatus() + \': \' + response);\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n message += \': \' + response;\r\n throw message;\r\n }\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n throw \'Failed to parse response received from Aranet Cloud. Check debug log for more information.\';\r\n }\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n login: function () {\r\n var result,\r\n data = {\r\n login: Aranet.params.username,\r\n passw: Aranet.params.password\r\n };\r\n\r\n result = Aranet.request(\'post\', \'user/login\', data);\r\n if (typeof result.response !== \'object\'\r\n || typeof result.response.auth === \'undefined\'\r\n || result.status != 200) {\r\n throw \'Cannot login to Aranet Cloud. Check debug log for more information.\';\r\n }\r\n\r\n Aranet.auth_token = result.response.auth;\r\n Aranet.refresh_token = result.response.refresh;\r\n\r\n var spaces = result.response.spaces;\r\n for (var key in spaces) {\r\n if (spaces[key] == Aranet.params.space_name) {\r\n Aranet.space_id = key;\r\n break;\r\n }\r\n }\r\n\r\n return result.response;\r\n },\r\n\r\n logout: function () {\r\n var result,\r\n data = {\r\n refresh: Aranet.refresh_token\r\n };\r\n\r\n try {\r\n result = Aranet.request(\'post\', \'user/logout\', data);\r\n if (result.status != 204) {\r\n throw \'Cannot logout from Aranet Cloud \' + request.getStatus() + \': \' + result.response;\r\n }\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ Aranet scraper ] \' + error)\r\n }\r\n },\r\n\r\n getMetrics: function () {\r\n var result = Aranet.request(\'get\', \'metrics/\' + Aranet.space_id);\r\n\r\n if (typeof result.response !== \'object\'\r\n || typeof result.response.data === \'undefined\'\r\n || result.status != 200) {\r\n throw \'Cannot get metrics data from Aranet Cloud. Check debug log for more information.\';\r\n };\r\n\r\n return result.response;\r\n },\r\n\r\n getSensors: function () {\r\n var result = Aranet.request(\'get\', \'sensors/\' + Aranet.space_id + \'?fields=devices,metrics,telemetry,name\');\r\n\r\n if (typeof result.response !== \'object\'\r\n || typeof result.response.data === \'undefined\'\r\n || result.status != 200) {\r\n throw \'Cannot get sensors data from Aranet Cloud. Check debug log for more information.\';\r\n };\r\n\r\n return result.response;\r\n },\r\n\r\n getGateways: function () {\r\n var result = Aranet.request(\'get\', \'gateways/\' + Aranet.space_id);\r\n\r\n if (typeof result.response !== \'object\'\r\n || typeof result.response.devices === \'undefined\'\r\n || result.status != 200) {\r\n throw \'Cannot get gateways data from Aranet Cloud. Check debug log for more information.\';\r\n };\r\n\r\n return result.response;\r\n }\r\n}\r\n\r\nvar processed_metrics = {},\r\n processed_sensors = [];\r\n\r\ntry {\r\n Aranet.setParams(JSON.parse(value));\r\n\r\n Aranet.login();\r\n\r\n var raw_metrics = Aranet.getMetrics(),\r\n raw_sensors = Aranet.getSensors(),\r\n raw_gateways = Aranet.getGateways();\r\n\r\n Aranet.logout();\r\n\r\n var items = raw_metrics.data.items;\r\n for (item_idx in items) {\r\n var unit_name,\r\n units = items[item_idx].units;\r\n\r\n units.some(function (unit) {\r\n unit_name = unit.name;\r\n if (unit.selected) {\r\n return true;\r\n }\r\n });\r\n\r\n processed_metrics[items[item_idx].id] = {\r\n name: items[item_idx].name,\r\n unit: unit_name\r\n }\r\n\r\n delete items[item_idx];\r\n }\r\n\r\n var items = raw_sensors.data.items;\r\n for (item_idx in items) {\r\n var upd_ts = 0,\r\n gateway = {},\r\n sensor_metrics = [],\r\n metrics = items[item_idx].metrics,\r\n telemetry = items[item_idx].telemetry;\r\n\r\n for (m_idx in metrics) {\r\n var unit = processed_metrics[metrics[m_idx].id];\r\n\r\n if (upd_ts < metrics[m_idx].t) {\r\n upd_ts = metrics[m_idx].t;\r\n }\r\n\r\n sensor_metrics.push({\r\n name: unit.name,\r\n unit: unit.unit,\r\n value: metrics[m_idx].v\r\n });\r\n }\r\n\r\n for (var t_idx in telemetry) {\r\n var unit = processed_metrics[telemetry[t_idx].id];\r\n\r\n if (upd_ts < telemetry[t_idx].t) {\r\n upd_ts = telemetry[t_idx].t;\r\n }\r\n\r\n sensor_metrics.push({\r\n name: unit.name,\r\n unit: unit.unit,\r\n value: telemetry[t_idx].v\r\n });\r\n }\r\n\r\n raw_gateways.devices.some(function (dev) {\r\n if (items[item_idx].devices[0].id === dev.id) {\r\n gateway = {\r\n id: dev.id,\r\n name: dev.device\r\n }\r\n return true;\r\n }\r\n })\r\n\r\n if (upd_ts) {\r\n sensor_metrics.push({\r\n name: \'Last update\',\r\n unit: \'s\',\r\n value: upd_ts\r\n });\r\n }\r\n\r\n var sensor_id = parseInt(items[item_idx].id).toString(16).slice(-5);\r\n\r\n processed_sensors.push({\r\n id: sensor_id,\r\n name: items[item_idx].name.trim() === \'\' ? sensor_id : items[item_idx].name,\r\n gateway: gateway,\r\n metrics: sensor_metrics\r\n });\r\n\r\n delete items[item_idx];\r\n }\r\n\r\n return JSON.stringify(processed_sensors);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ Aranet scraper ] ERROR: \' + error);\r\n throw \'Scraping failed: \' + error;\r\n}','','0','','','','','0',NULL,'','0','30d','0','',NULL,'10s','','','','200','1','0','','0','0','0','0','0','0','0','56f89fce2b1541b7898ad56362d4b28a');
INSERT INTO `items` (`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`,`uuid`) values ('32516','0','','10360','MS Exchange: Databases total mounted','perf_counter_en["\\MSExchange Active Manager(_total)\\Database Mounted"]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of active database copies on the server.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b4978a9a4cff4ce88fbc82683b61eec4');
INSERT INTO `items` (`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`,`uuid`) values ('32517','0','','10360','MS Exchange [Client Access Server]: ActiveSync: ping command pending','perf_counter_en["\\MSExchange ActiveSync\\Ping Commands Pending", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of ping commands currently pending in the queue.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9b59700d8db8472fbde41c85c7a06ffc');
INSERT INTO `items` (`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`,`uuid`) values ('32518','0','','10360','MS Exchange [Client Access Server]: ActiveSync: requests per second','perf_counter_en["\\MSExchange ActiveSync\\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of HTTP requests received from the client via ASP.NET per second. Determines the current Exchange ActiveSync request rate. Used only to determine current user load.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fa70b4e2d17c44c6945dd2d1c971c34c');
INSERT INTO `items` (`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`,`uuid`) values ('32519','0','','10360','MS Exchange [Client Access Server]: ActiveSync: sync commands per second','perf_counter_en["\\MSExchange ActiveSync\\Sync Commands/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of sync commands processed per second. Clients use this command to synchronize items within a folder.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8528015c73134a239d7ac235464788dd');
INSERT INTO `items` (`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`,`uuid`) values ('32520','0','','10360','MS Exchange [Client Access Server]: Autodiscover: requests per second','perf_counter_en["\\MSExchangeAutodiscover\\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of Autodiscover service requests processed each second. Determines current user load.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','456cb7af0b224a59afabae36d24d2cbc');
INSERT INTO `items` (`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`,`uuid`) values ('32521','0','','10360','MS Exchange [Client Access Server]: Availability Service: availability requests per second','perf_counter_en["\\MSExchange Availability Service\\Availability Requests (sec)", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of requests serviced per second. The request can be only for free/ busy information or include suggestions. One request may contain multiple mailboxes. Determines the rate at which Availability service requests are occurring.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b9a539175cbb4259b064a787a25e9dbe');
INSERT INTO `items` (`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`,`uuid`) values ('32522','0','','10360','MS Exchange [Client Access Server]: Outlook Web App: current unique users','perf_counter_en["\\MSExchange OWA\\Current Unique Users", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of unique users currently logged on to Outlook Web App. This value monitors the number of unique active user sessions, so that users are only removed from this counter after they log off or their session times out. Determines current user load.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c2a83dfef35497baf8c38b801854882');
INSERT INTO `items` (`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`,`uuid`) values ('32523','0','','10360','MS Exchange [Client Access Server]: Outlook Web App: requests per second','perf_counter_en["\\MSExchange OWA\\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of requests handled by Outlook Web App per second. Determines current user load.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c7fd331673e4d84aa09551222469b08');
INSERT INTO `items` (`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`,`uuid`) values ('32524','0','','10360','MS Exchange [Client Access Server]: MSExchangeWS: requests per second','perf_counter_en["\\MSExchangeWS\\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of requests processed each second. Determines current user load.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9808449df53148a9a988a69d66944371');
INSERT INTO `items` (`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`,`uuid`) values ('32525','0','','10360','Databases discovery','perf_instance.discovery["MSExchange Active Manager"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of Exchange databases.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f3d6e34eaff844bfab582cb55d679e82');
INSERT INTO `items` (`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`,`uuid`) values ('32526','0','','10360','LDAP discovery','perf_instance_en.discovery["MSExchange ADAccess Domain Controllers"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of domain controller.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','635f8c96cf544dcd97e4a58b2e9353de');
INSERT INTO `items` (`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`,`uuid`) values ('32527','0','','10360','Web services discovery','perf_instance_en.discovery["Web Service"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of Exchange web services.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8a1cb7e22e55406e8e721a2189d7e00d');
INSERT INTO `items` (`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`,`uuid`) values ('32528','0','','10360','Active Manager [{#INSTANCE}]: Database copy role','perf_counter_en["\\MSExchange Active Manager({#INSTANCE})\\Database Copy Role Active"]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,'185','','','0','','','','','2',NULL,'Database copy active or passive role.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b2d46b766f24947b76b49d8368044a5');
INSERT INTO `items` (`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`,`uuid`) values ('32529','0','','10360','Information Store [{#INSTANCE}]: Page faults per second','perf_counter_en["\\MSExchange Database({#INF.STORE})\\Database Page Fault Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the rate of page faults that can\'t be serviced because there are no pages available for allocation from the database cache. If this counter is above 0, it\'s an indication that the MSExchange Database\\I/O Database Writes (Attached) Average Latency is too high.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ad0743878ed411ab1e76b8e774e91e9');
INSERT INTO `items` (`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`,`uuid`) values ('32530','0','','10360','Information Store [{#INSTANCE}]: Log records stalled','perf_counter_en["\\MSExchange Database({#INF.STORE})\\Log Record Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the number of log records that can\'t be added to the log buffers per second because the log buffers are full. The average value should be below 10 per second. Spikes (maximum values) shouldn\'t be higher than 100 per second.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1af9e0b4abb74e07af1d0d183333f0c4');
INSERT INTO `items` (`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`,`uuid`) values ('32531','0','','10360','Information Store [{#INSTANCE}]: Log threads waiting','perf_counter_en["\\MSExchange Database({#INF.STORE})\\Log Threads Waiting", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the number of threads waiting to complete an update of the database by writing their data to the log.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1b53de26c73a49bdb7fe55328db03ddd');
INSERT INTO `items` (`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`,`uuid`) values ('32532','0','','10360','Database Counters [{#INSTANCE}]: Active database read operations per second','perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Reads (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the number of database read operations.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1da31e52e5dd4b72bea5811a9bb06a01');
INSERT INTO `items` (`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`,`uuid`) values ('32533','0','','10360','Database Counters [{#INSTANCE}]: Active database read operations latency','perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Reads (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the average length of time per database read operation. Should be less than 20 ms on average.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0bc5750ca13f4f738904e45f9860b76a');
INSERT INTO `items` (`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`,`uuid`) values ('32534','0','','10360','Database Counters [{#INSTANCE}]: Passive database read operations latency','perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Reads (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the average length of time per passive database read operation. Should be less than 200ms on average.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3095c843659341fd854fb297a9fdf14a');
INSERT INTO `items` (`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`,`uuid`) values ('32535','0','','10360','Database Counters [{#INSTANCE}]: Active database write operations per second','perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Writes (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the number of database write operations per second for each attached database instance.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7456bcbbac114ead9c417bcbeefa0e1c');
INSERT INTO `items` (`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`,`uuid`) values ('32536','0','','10360','Database Counters [{#INSTANCE}]: Active database write operations latency','perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Writes (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the average length of time per database write operation. Should be less than 50ms on average.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e45413cc0e46458f9a00132b30c7c354');
INSERT INTO `items` (`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`,`uuid`) values ('32537','0','','10360','Database Counters [{#INSTANCE}]: Passive database write operations latency','perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Writes (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the average length of time, in ms, per passive database write operation. Should be less than the read latency for the same instance, as measured by the MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Reads (Recovery) Average Latency counter.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5b7fc1949b67404584d2809556f3d595');
INSERT INTO `items` (`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`,`uuid`) values ('32538','0','','10360','Information Store [{#INSTANCE}]: Active mailboxes count','perf_counter_en["\\MSExchangeIS Store({#INSTANCE})\\Active mailboxes"]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of active mailboxes in this database.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6128c55bf63a4c48981dfccd077b4635');
INSERT INTO `items` (`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`,`uuid`) values ('32539','0','','10360','Information Store [{#INSTANCE}]: Database state','perf_counter_en["\\MSExchangeIS Store({#INSTANCE})\\Database State"]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,'187','','','0','','','','','2',NULL,'Database state. Possible values:\r\n0: Database without any copy and dismounted.\r\n1: Database is a primary database and mounted.\r\n2: Database is a passive copy and the state is healthy.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4db79306eb044db899be5e7672651959');
INSERT INTO `items` (`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`,`uuid`) values ('32540','0','','10360','Information Store [{#INSTANCE}]: RPC requests latency','perf_counter_en["\\MSExchangeIS Store({#INSTANCE})\\RPC Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'RPC Latency average is the average latency of RPC requests per database. Average is calculated over all RPCs since exrpc32 was loaded. Should be less than 50ms at all times, with spikes less than 100ms.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6bc9bc6d20df4de89ff03d63f21f6eab');
INSERT INTO `items` (`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`,`uuid`) values ('32541','0','','10360','Information Store [{#INSTANCE}]: RPC requests per second','perf_counter_en["\\MSExchangeIS Store({#INSTANCE})\\RPC Operations/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the number of RPC operations per second for each database instance.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5321c367d288406d8d9eac217a444e9c');
INSERT INTO `items` (`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`,`uuid`) values ('32542','0','','10360','Information Store [{#INSTANCE}]: RPC requests total','perf_counter_en["\\MSExchangeIS Store({#INSTANCE})\\RPC requests", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the overall RPC requests currently executing within the information store process. Should be below 70 at all times.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','701d6a4fcfe14f899e0282eb75e08753');
INSERT INTO `items` (`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`,`uuid`) values ('32543','0','','10360','Domain Controller [{#INSTANCE}]: Read time','perf_counter_en["\\MSExchange ADAccess Domain Controllers({#INSTANCE})\\LDAP Read Time", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time that it takes to send an LDAP read request to the domain controller in question and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b1c046c5aca04b85bf907f83c05b4142');
INSERT INTO `items` (`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`,`uuid`) values ('32544','0','','10360','Domain Controller [{#INSTANCE}]: Search time','perf_counter_en["\\MSExchange ADAccess Domain Controllers({#INSTANCE})\\LDAP Search Time", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time that it takes to send an LDAP search request and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c7326e542e534afd9a1df9a8ec1226e4');
INSERT INTO `items` (`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`,`uuid`) values ('32545','0','','10360','Web Service [{#INSTANCE}]: Current connections','perf_counter_en["\\Web Service({#INSTANCE})\\Current Connections", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the current number of connections established to the each Web Service.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c3d1881bb294a31afa09605699a6965');
INSERT INTO `items` (`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`,`uuid`) values ('32546','7','','10361','MS Exchange: Databases total mounted','perf_counter_en["\\MSExchange Active Manager(_total)\\Database Mounted"]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of active database copies on the server.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5af1c3257c264abda20023eae10b3b86');
INSERT INTO `items` (`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`,`uuid`) values ('32547','7','','10361','MS Exchange [Client Access Server]: ActiveSync: ping command pending','perf_counter_en["\\MSExchange ActiveSync\\Ping Commands Pending", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of ping commands currently pending in the queue.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bb9de29f56124a77a6ac1d3f8cbd72e9');
INSERT INTO `items` (`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`,`uuid`) values ('32548','7','','10361','MS Exchange [Client Access Server]: ActiveSync: requests per second','perf_counter_en["\\MSExchange ActiveSync\\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of HTTP requests received from the client via ASP.NET per second. Determines the current Exchange ActiveSync request rate. Used only to determine current user load.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','038e740be37c40339520b4c4b1b0d18b');
INSERT INTO `items` (`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`,`uuid`) values ('32549','7','','10361','MS Exchange [Client Access Server]: ActiveSync: sync commands per second','perf_counter_en["\\MSExchange ActiveSync\\Sync Commands/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of sync commands processed per second. Clients use this command to synchronize items within a folder.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','953665dbe8f948ff821333a4d50eada6');
INSERT INTO `items` (`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`,`uuid`) values ('32550','7','','10361','MS Exchange [Client Access Server]: Autodiscover: requests per second','perf_counter_en["\\MSExchangeAutodiscover\\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of Autodiscover service requests processed each second. Determines current user load.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c8ed8a7e36c6453183aee1a778a4749a');
INSERT INTO `items` (`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`,`uuid`) values ('32551','7','','10361','MS Exchange [Client Access Server]: Availability Service: availability requests per second','perf_counter_en["\\MSExchange Availability Service\\Availability Requests (sec)", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of requests serviced per second. The request can be only for free/ busy information or include suggestions. One request may contain multiple mailboxes. Determines the rate at which Availability service requests are occurring.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2260d98130814d369ac1c90324caaa26');
INSERT INTO `items` (`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`,`uuid`) values ('32552','7','','10361','MS Exchange [Client Access Server]: Outlook Web App: current unique users','perf_counter_en["\\MSExchange OWA\\Current Unique Users", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of unique users currently logged on to Outlook Web App. This value monitors the number of unique active user sessions, so that users are only removed from this counter after they log off or their session times out. Determines current user load.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b4336fce2d27450b95de4f1bbbf947f3');
INSERT INTO `items` (`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`,`uuid`) values ('32553','7','','10361','MS Exchange [Client Access Server]: Outlook Web App: requests per second','perf_counter_en["\\MSExchange OWA\\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of requests handled by Outlook Web App per second. Determines current user load.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','14344546f3a748fbb8f78e503e92255f');
INSERT INTO `items` (`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`,`uuid`) values ('32554','7','','10361','MS Exchange [Client Access Server]: MSExchangeWS: requests per second','perf_counter_en["\\MSExchangeWS\\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of requests processed each second. Determines current user load.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e8c8e348c01e48ad92ee02060717e097');
INSERT INTO `items` (`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`,`uuid`) values ('32555','7','','10361','Databases discovery','perf_instance.discovery["MSExchange Active Manager"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of Exchange databases.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3b23aa50517a4081b8463f694757cd0c');
INSERT INTO `items` (`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`,`uuid`) values ('32556','7','','10361','LDAP discovery','perf_instance_en.discovery["MSExchange ADAccess Domain Controllers"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of domain controller.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c18f965b9ba6419ea578238ebc8168bb');
INSERT INTO `items` (`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`,`uuid`) values ('32557','7','','10361','Web services discovery','perf_instance_en.discovery["Web Service"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of Exchange web services.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8749f11f547546ac8bf81478c798186f');
INSERT INTO `items` (`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`,`uuid`) values ('32558','7','','10361','Active Manager [{#INSTANCE}]: Database copy role','perf_counter_en["\\MSExchange Active Manager({#INSTANCE})\\Database Copy Role Active"]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,'186','','','0','','','','','2',NULL,'Database copy active or passive role.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e0a5f324690432199728f577dbcc91a');
INSERT INTO `items` (`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`,`uuid`) values ('32559','7','','10361','Information Store [{#INSTANCE}]: Page faults per second','perf_counter_en["\\MSExchange Database({#INF.STORE})\\Database Page Fault Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the rate of page faults that can\'t be serviced because there are no pages available for allocation from the database cache. If this counter is above 0, it\'s an indication that the MSExchange Database\\I/O Database Writes (Attached) Average Latency is too high.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','947396e622b24e2090a23607ee7a06a4');
INSERT INTO `items` (`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`,`uuid`) values ('32560','7','','10361','Information Store [{#INSTANCE}]: Log records stalled','perf_counter_en["\\MSExchange Database({#INF.STORE})\\Log Record Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the number of log records that can\'t be added to the log buffers per second because the log buffers are full. The average value should be below 10 per second. Spikes (maximum values) shouldn\'t be higher than 100 per second.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8c1ca3d79ef445668e8a5ba04a278e6f');
INSERT INTO `items` (`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`,`uuid`) values ('32561','7','','10361','Information Store [{#INSTANCE}]: Log threads waiting','perf_counter_en["\\MSExchange Database({#INF.STORE})\\Log Threads Waiting", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the number of threads waiting to complete an update of the database by writing their data to the log.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9173dba68e55434aaa324b3e38ba22bb');
INSERT INTO `items` (`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`,`uuid`) values ('32562','7','','10361','Database Counters [{#INSTANCE}]: Active database read operations per second','perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Reads (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the number of database read operations.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ad96174c29142f6904322d08d76fe8e');
INSERT INTO `items` (`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`,`uuid`) values ('32563','7','','10361','Database Counters [{#INSTANCE}]: Active database read operations latency','perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Reads (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the average length of time per database read operation. Should be less than 20 ms on average.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0df865f52f304f97aa01a706e455e153');
INSERT INTO `items` (`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`,`uuid`) values ('32564','7','','10361','Database Counters [{#INSTANCE}]: Passive database read operations latency','perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Reads (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the average length of time per passive database read operation. Should be less than 200ms on average.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8381c3c3971f4b3380cfe5d663e31416');
INSERT INTO `items` (`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`,`uuid`) values ('32565','7','','10361','Database Counters [{#INSTANCE}]: Active database write operations per second','perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Writes (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the number of database write operations per second for each attached database instance.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','defb4f7dfb6f4a97a4928bab82897845');
INSERT INTO `items` (`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`,`uuid`) values ('32566','7','','10361','Database Counters [{#INSTANCE}]: Active database write operations latency','perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Writes (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the average length of time per database write operation. Should be less than 50ms on average.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9c83e27f56f94bea9e635158037a0c8b');
INSERT INTO `items` (`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`,`uuid`) values ('32567','7','','10361','Database Counters [{#INSTANCE}]: Passive database write operations latency','perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Writes (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the average length of time, in ms, per passive database write operation. Should be less than the read latency for the same instance, as measured by the MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Reads (Recovery) Average Latency counter.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a53596604a4c4a49bd04bfda30064d78');
INSERT INTO `items` (`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`,`uuid`) values ('32568','7','','10361','Information Store [{#INSTANCE}]: Active mailboxes count','perf_counter_en["\\MSExchangeIS Store({#INSTANCE})\\Active mailboxes"]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of active mailboxes in this database.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ef13ef1197a4ba1abba1591ae588fa8');
INSERT INTO `items` (`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`,`uuid`) values ('32569','7','','10361','Information Store [{#INSTANCE}]: Database state','perf_counter_en["\\MSExchangeIS Store({#INSTANCE})\\Database State"]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,'188','','','0','','','','','2',NULL,'Database state. Possible values:\r\n0: Database without any copy and dismounted.\r\n1: Database is a primary database and mounted.\r\n2: Database is a passive copy and the state is healthy.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0e3dbea7e5694cc48c5216d92db67f7f');
INSERT INTO `items` (`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`,`uuid`) values ('32570','7','','10361','Information Store [{#INSTANCE}]: RPC requests latency','perf_counter_en["\\MSExchangeIS Store({#INSTANCE})\\RPC Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'RPC Latency average is the average latency of RPC requests per database. Average is calculated over all RPCs since exrpc32 was loaded. Should be less than 50ms at all times, with spikes less than 100ms.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4a08076fdfcb4226a122474f5c2e98d9');
INSERT INTO `items` (`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`,`uuid`) values ('32571','7','','10361','Information Store [{#INSTANCE}]: RPC requests per second','perf_counter_en["\\MSExchangeIS Store({#INSTANCE})\\RPC Operations/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the number of RPC operations per second for each database instance.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c423048154634eb29f4fe56c306f5b04');
INSERT INTO `items` (`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`,`uuid`) values ('32572','7','','10361','Information Store [{#INSTANCE}]: RPC requests total','perf_counter_en["\\MSExchangeIS Store({#INSTANCE})\\RPC requests", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the overall RPC requests currently executing within the information store process. Should be below 70 at all times.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0f4970d43155441ab0f860e4e06328e0');
INSERT INTO `items` (`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`,`uuid`) values ('32573','7','','10361','Domain Controller [{#INSTANCE}]: Read time','perf_counter_en["\\MSExchange ADAccess Domain Controllers({#INSTANCE})\\LDAP Read Time", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time that it takes to send an LDAP read request to the domain controller in question and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','577f868ff1e54113b61e8f74a084f611');
INSERT INTO `items` (`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`,`uuid`) values ('32574','7','','10361','Domain Controller [{#INSTANCE}]: Search time','perf_counter_en["\\MSExchange ADAccess Domain Controllers({#INSTANCE})\\LDAP Search Time", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time that it takes to send an LDAP search request and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1c94a8c06c5a4d4894060b68fc44a093');
INSERT INTO `items` (`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`,`uuid`) values ('32575','7','','10361','Web Service [{#INSTANCE}]: Current connections','perf_counter_en["\\Web Service({#INSTANCE})\\Current Connections", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the current number of connections established to the each Web Service.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','91f7649f17bf4d7a9ded8bec70ff09e2');
INSERT INTO `items` (`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`,`uuid`) values ('32576','19','','10362','GitLab: Application server status','gitlab.liveness','1m','7d','365d','0','3','','','','',NULL,'189','','','0','','','','','0',NULL,'Checks whether the application server is running. This probe is used to know if Rails Controllers are not deadlocked due to a multi-threading.','0','30d','0','',NULL,'3s','{$GITLAB.URL}/-/liveness','','','200','1','0','','0','0','0','0','0','0','0','c48920e302ff4b9ab16f45b67775b440');
INSERT INTO `items` (`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`,`uuid`) values ('32577','19','','10362','GitLab: Instance readiness check','gitlab.readiness','1m','7d','365d','0','3','','','','',NULL,'189','','','0','','','','','0',NULL,'The readiness probe checks whether the GitLab instance is ready to accept traffic via Rails Controllers.','0','30d','0','',NULL,'3s','{$GITLAB.URL}/-/readiness','','','200','1','0','','0','0','0','0','0','0','0','794a8d7f474d490c96e714dac810140d');
INSERT INTO `items` (`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`,`uuid`) values ('32578','19','','10362','GitLab: Get instance metrics','gitlab.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','{$GITLAB.URL}/-/metrics','','','200','1','0','','0','0','0','0','0','0','0','2aa509b84dc14026b8ff8ed473add2d2');
INSERT INTO `items` (`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`,`uuid`) values ('32619','19','','10362','Puma metrics discovery','gitlab.puma.discovery','3h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery Puma specific metrics, when Puma is used.','0','30d','0','',NULL,'3s','{$GITLAB.URL}/-/metrics','','','200','1','0','','0','0','0','0','0','0','0','acd3e31daa8f497bb1ce0f91d104d928');
INSERT INTO `items` (`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`,`uuid`) values ('32620','19','','10362','Unicorn metrics discovery','gitlab.unicorn.discovery','3h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'DiscoveryUnicorn specific metrics, when Unicorn is used.','0','30d','0','',NULL,'3s','{$GITLAB.URL}/-/metrics','','','200','1','0','','0','0','0','0','0','0','0','912723d1837641cf9b84996788bd6b54');
INSERT INTO `items` (`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`,`uuid`) values ('32634','19','','10363','Get DataNodes states','hadoop.datanodes.get','1m','0h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','{$HADOOP.NAMENODE.HOST}:{$HADOOP.NAMENODE.PORT}/jmx?qry=Hadoop:service=NameNode,name=NameNodeInfo','','','200','1','0','','0','0','0','0','0','0','0','d2d19ac9d1eb434c98a55cbf76c27850');
INSERT INTO `items` (`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`,`uuid`) values ('32635','19','','10363','Get NodeManagers states','hadoop.nodemanagers.get','1m','0h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','{$HADOOP.RESOURCEMANAGER.HOST}:{$HADOOP.RESOURCEMANAGER.PORT}/jmx?qry=Hadoop:service=ResourceManager,name=RMNMInfo','','','200','1','0','','0','0','0','0','0','0','0','6d7546c5d15d4e478b2e87e35d5306b0');
INSERT INTO `items` (`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`,`uuid`) values ('32636','3','','10363','NameNode: Service status','net.tcp.service["tcp","{$HADOOP.NAMENODE.HOST}","{$HADOOP.NAMENODE.PORT}"]','1m','7d','365d','0','3','','','','',NULL,'41','','','0','','','','','0',NULL,'Hadoop NameNode API port availability.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c52d856e07e4524abf3c2ae4b47c6b6');
INSERT INTO `items` (`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`,`uuid`) values ('32637','3','','10363','ResourceManager: Service response time','net.tcp.service.perf["tcp","{$HADOOP.RESOURCEMANAGER.HOST}","{$HADOOP.RESOURCEMANAGER.PORT}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Hadoop ResourceManager API performance.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','98b11f1156dc472fbce27ca053e01d4e');
INSERT INTO `items` (`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`,`uuid`) values ('32638','3','','10363','NameNode: Service response time','net.tcp.service.perf["tcp","{$HADOOP.NAMENODE.HOST}","{$HADOOP.NAMENODE.PORT}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Hadoop NameNode API performance.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','66a87b21d32c436bb2d2eb23ec328f91');
INSERT INTO `items` (`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`,`uuid`) values ('32639','19','','10363','Get ResourceManager stats','hadoop.resourcemanager.get','1m','0h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','{$HADOOP.RESOURCEMANAGER.HOST}:{$HADOOP.RESOURCEMANAGER.PORT}/jmx','','','200','1','0','','0','0','0','0','0','0','0','e693cff98ec74cc198ec6b5e973f116c');
INSERT INTO `items` (`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`,`uuid`) values ('32640','3','','10363','ResourceManager: Service status','net.tcp.service["tcp","{$HADOOP.RESOURCEMANAGER.HOST}","{$HADOOP.RESOURCEMANAGER.PORT}"]','1m','7d','365d','0','3','','','','',NULL,'41','','','0','','','','','0',NULL,'Hadoop ResourceManager API port availability.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','615b75c42ebe471da798a0613667d499');
INSERT INTO `items` (`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`,`uuid`) values ('32641','19','','10363','Get NameNode stats','hadoop.namenode.get','1m','0h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','{$HADOOP.NAMENODE.HOST}:{$HADOOP.NAMENODE.PORT}/jmx','','','200','1','0','','0','0','0','0','0','0','0','687406d06ce94a8291b2e72bb2f8bec4');
INSERT INTO `items` (`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`,`uuid`) values ('32668','19','','10363','Data node discovery','hadoop.datanode.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','{$HADOOP.NAMENODE.HOST}:{$HADOOP.NAMENODE.PORT}/jmx?qry=Hadoop:service=NameNode,name=NameNodeInfo','','','200','1','0','','0','0','0','0','0','0','0','0f05e90a6fc547d18f291ae2264db9d1');
INSERT INTO `items` (`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`,`uuid`) values ('32669','19','','10363','Node manager discovery','hadoop.nodemanager.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','{$HADOOP.RESOURCEMANAGER.HOST}:{$HADOOP.RESOURCEMANAGER.PORT}/jmx?qry=Hadoop:service=ResourceManager,name=RMNMInfo','','','200','1','0','','0','0','0','0','0','0','0','de2d5f97843345668bc0b8c8336b9c14');
INSERT INTO `items` (`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`,`uuid`) values ('32670','19','','10363','Hadoop DataNode {#HOSTNAME}: Get stats','hadoop.datanode.get[{#HOSTNAME}]','1m','0h','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','{#INFOADDR}/jmx','','','200','1','0','','0','0','0','0','0','0','0','6d2d030b3ddb41a394faede737329bbb');
INSERT INTO `items` (`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`,`uuid`) values ('32671','19','','10363','Hadoop NodeManager {#HOSTNAME}: Get stats','hadoop.nodemanager.get[{#HOSTNAME}]','1m','0h','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','{#NODEHTTPADDRESS}/jmx','','','200','1','0','','0','0','0','0','0','0','0','23c89dfb26a34b77bf34fcf543f719f2');
INSERT INTO `items` (`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`,`uuid`) values ('32693','16','','10364','Kafka: Leader election per second','jmx["kafka.controller:type=ControllerStats,name=LeaderElectionRateAndTimeMs","Count"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Number of leader elections per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cf096fad8b83431a968095ce8f5d3029');
INSERT INTO `items` (`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`,`uuid`) values ('32694','16','','10364','Kafka: Request handler average idle percent','jmx["kafka.server:type=KafkaRequestHandlerPool,name=RequestHandlerAvgIdlePercent","OneMinuteRate"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Indicates the percentage of time that the request handler (IO) threads are not in use.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2e7433fbf07d415ea40251a29364264c');
INSERT INTO `items` (`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`,`uuid`) values ('32695','16','','10364','Kafka: Fetch-Consumer request total time, mean','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=UpdateMetadata","Mean"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Average time for a request to update metadata.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c66e750dccd0461e82f8a3b5bd432333');
INSERT INTO `items` (`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`,`uuid`) values ('32696','16','','10364','Kafka: Network processor average idle percent','jmx["kafka.network:type=SocketServer,name=NetworkProcessorAvgIdlePercent","Value"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The average percentage of time that the network processors are idle.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','46a7230e12f8404c813e60fae1eaf91d');
INSERT INTO `items` (`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`,`uuid`) values ('32697','16','','10364','Kafka: Uptime','jmx["kafka.server:type=app-info","start-time-ms"]','1m','7d','365d','0','3','','s','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Service uptime in seconds.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','deca38d699f44dea90961be921d096e4');
INSERT INTO `items` (`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`,`uuid`) values ('32698','16','','10364','Kafka: Version','jmx["kafka.server:type=app-info","version"]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Current version of broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','75bf053e436e4bb8bb2a94e86a0b194c');
INSERT INTO `items` (`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`,`uuid`) values ('32699','16','','10364','Kafka: Bytes in per second','jmx["kafka.server:type=BrokerTopicMetrics,name=BytesInPerSec","Count"]','1m','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The rate at which data sent from producers is consumed by the broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','47dcd92e0ca64833af8d8112b7c66731');
INSERT INTO `items` (`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`,`uuid`) values ('32700','16','','10364','Kafka: Bytes out per second','jmx["kafka.server:type=BrokerTopicMetrics,name=BytesOutPerSec","Count"]','1m','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The rate at which data is fetched and read from the broker by consumers.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d71ed49d3a1f4599b239105ab7435724');
INSERT INTO `items` (`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`,`uuid`) values ('32701','16','','10364','Kafka: Bytes rejected per second','jmx["kafka.server:type=BrokerTopicMetrics,name=BytesRejectedPerSec","Count"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The rate at which bytes rejected per second by the broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','15d9fe23872541f0bb3dd1ce33598a61');
INSERT INTO `items` (`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`,`uuid`) values ('32702','16','','10364','Kafka: Client fetch request failed per second','jmx["kafka.server:type=BrokerTopicMetrics,name=FailedFetchRequestsPerSec","Count"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Number of client fetch request failures per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2ce7bb5db0674cb1a9504c4d8af72a00');
INSERT INTO `items` (`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`,`uuid`) values ('32703','16','','10364','Kafka: Produce requests failed per second','jmx["kafka.server:type=BrokerTopicMetrics,name=FailedProduceRequestsPerSec","Count"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Number of failed produce requests per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a26150db6e464090910b837b69e6df8f');
INSERT INTO `items` (`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`,`uuid`) values ('32704','16','','10364','Kafka: Messages in per second','jmx["kafka.server:type=BrokerTopicMetrics,name=MessagesInPerSec","Count"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The rate at which individual messages are consumed by the broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','28e488bbe6544d688e741b2ab0397275');
INSERT INTO `items` (`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`,`uuid`) values ('32705','16','','10364','Kafka: Requests in producer purgatory','jmx["kafka.server:type=DelayedOperationPurgatory,name=PurgatorySize,delayedOperation=Fetch","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Number of requests waiting in producer purgatory.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a3d88b98436040e494911b94ce72de8b');
INSERT INTO `items` (`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`,`uuid`) values ('32706','16','','10364','Kafka: Requests in fetch purgatory','jmx["kafka.server:type=DelayedOperationPurgatory,name=PurgatorySize,delayedOperation=Produce","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Number of requests waiting in fetch purgatory.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d68c2995725745a5b1f3f4507a5fe49c');
INSERT INTO `items` (`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`,`uuid`) values ('32707','16','','10364','Kafka: Replication maximum lag','jmx["kafka.server:type=ReplicaFetcherManager,name=MaxLag,clientId=Replica","Value"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The maximum lag between the time that messages are received by the leader replica and by the follower replicas.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb83a988422c40b792e23b10a0f2ba64');
INSERT INTO `items` (`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`,`uuid`) values ('32708','16','','10364','Kafka: UpdateMetadata request total time, p95','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=UpdateMetadata","95thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Time for update metadata requests for 95th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','230f713f85c748bd9d29d8d086fcc80a');
INSERT INTO `items` (`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`,`uuid`) values ('32709','16','','10364','Kafka: ISR expands per second','jmx["kafka.server:type=ReplicaManager,name=IsrExpandsPerSec","Count"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The rate at which the number of ISRs in the broker increases.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6125c4144c42452ea20c53c5365ad970');
INSERT INTO `items` (`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`,`uuid`) values ('32710','16','','10364','Kafka: ISR shrink per second','jmx["kafka.server:type=ReplicaManager,name=IsrShrinksPerSec","Count"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Rate of replicas leaving the ISR pool.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','81eb0364269b40988404bd902ba409f4');
INSERT INTO `items` (`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`,`uuid`) values ('32711','16','','10364','Kafka: Leader count','jmx["kafka.server:type=ReplicaManager,name=LeaderCount","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The number of replicas for which this broker is the leader.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9489608614ac4d96810362fc52901c55');
INSERT INTO `items` (`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`,`uuid`) values ('32712','16','','10364','Kafka: Partition count','jmx["kafka.server:type=ReplicaManager,name=PartitionCount","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The number of partitions in the broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1a737ce50a274c3696beade89187afd1');
INSERT INTO `items` (`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`,`uuid`) values ('32713','16','','10364','Kafka: Number of reassigning partitions','jmx["kafka.server:type=ReplicaManager,name=ReassigningPartitions","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The number of reassigning leader partitions on a broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','05fb33b225264059a2eef04a91963dbb');
INSERT INTO `items` (`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`,`uuid`) values ('32714','16','','10364','Kafka: Under minimum ISR partition count','jmx["kafka.server:type=ReplicaManager,name=UnderMinIsrPartitionCount","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The number of partitions under the minimum In-Sync Replica (ISR) count.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b22cee3e3aa849a1b5098e18f42b3b3d');
INSERT INTO `items` (`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`,`uuid`) values ('32715','16','','10364','Kafka: Under replicated partitions','jmx["kafka.server:type=ReplicaManager,name=UnderReplicatedPartitions","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The number of partitions that have not been fully replicated in the follower replicas (the number of non-reassigning replicas - the number of ISR > 0).','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f55e42503d7d4091bd4487a30bb144b9');
INSERT INTO `items` (`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`,`uuid`) values ('32716','16','','10364','Kafka: Request queue size','jmx["kafka.server:type=Request","queue-size"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The size of the delay queue.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c2086b19fcf84c1f948ec80726054dcd');
INSERT INTO `items` (`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`,`uuid`) values ('32717','16','','10364','Kafka: ZooKeeper connection status','jmx["kafka.server:type=SessionExpireListener,name=SessionState","Value"]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Connection status of broker\'s ZooKeeper session.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e96464452c844cb7bdeaab62f7c7e5ed');
INSERT INTO `items` (`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`,`uuid`) values ('32718','16','','10364','Kafka: ZooKeeper disconnect rate','jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperDisconnectsPerSec","Count"]','1m','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'ZooKeeper client disconnect per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9852aa0bf3074a319b83f695a9d0deca');
INSERT INTO `items` (`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`,`uuid`) values ('32719','16','','10364','Kafka: ZooKeeper session expiration rate','jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperExpiresPerSec","Count"]','1m','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'ZooKeeper client session expiration per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3e612950b2c5476e9634ce11f93dfd61');
INSERT INTO `items` (`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`,`uuid`) values ('32720','16','','10364','Kafka: ZooKeeper readonly rate','jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperReadOnlyConnectsPerSec","Count"]','1m','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'ZooKeeper client readonly per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e9f647cf41214ef7aab480d349f48c21');
INSERT INTO `items` (`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`,`uuid`) values ('32721','16','','10364','Kafka: ZooKeeper sync rate','jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperSyncConnectsPerSec","Count"]','1m','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'ZooKeeper client sync per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b156305285bf4d508afd1d9c91ae34c0');
INSERT INTO `items` (`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`,`uuid`) values ('32722','16','','10364','Kafka: UpdateMetadata request total time, p99','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=UpdateMetadata","99thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Time for update metadata requests for 99th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8e654055b20748a085178882d7b5bed9');
INSERT INTO `items` (`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`,`uuid`) values ('32723','16','','10364','Kafka: Produce request total time, mean','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=Produce","Mean"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Average time in ms to serve the Produce request.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5bcb9ecd5d77460fb25d2afa5173832b');
INSERT INTO `items` (`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`,`uuid`) values ('32724','16','','10364','Kafka: Unclean leader election per second','jmx["kafka.controller:type=ControllerStats,name=UncleanLeaderElectionsPerSec","Count"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Number of “unclean” elections per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','57efca0b4b1e4d1298d7cf77d8d04c98');
INSERT INTO `items` (`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`,`uuid`) values ('32725','16','','10364','Kafka: Produce response send time, p95','jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=Produce","95thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The time taken, in milliseconds, to send the response for 95th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','410c2ecf84fa4f67a9d0b0ca69d77338');
INSERT INTO `items` (`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`,`uuid`) values ('32726','16','','10364','Kafka: Controller state on broker','jmx["kafka.controller:type=KafkaController,name=ActiveControllerCount","Value"]','1m','7d','365d','0','3','','','','',NULL,'190','','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'One indicates that the broker is the controller for the cluster.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9b3ae38007db4fd5a4e0d3baf026b732');
INSERT INTO `items` (`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`,`uuid`) values ('32727','16','','10364','Kafka: Offline partitions count','jmx["kafka.controller:type=KafkaController,name=OfflinePartitionsCount","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Number of partitions that don\'t have an active leader.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','765a10af1fa6444bbeaa7b1669e3c8b2');
INSERT INTO `items` (`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`,`uuid`) values ('32728','16','','10364','Kafka: Ineligible pending replica deletes','jmx["kafka.controller:type=KafkaController,name=ReplicasIneligibleToDeleteCount","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The number of ineligible pending replica deletes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6f4b742f64a04254b607fd49fd7fbfa3');
INSERT INTO `items` (`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`,`uuid`) values ('32729','16','','10364','Kafka: Pending replica deletes','jmx["kafka.controller:type=KafkaController,name=ReplicasToDeleteCount","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The number of pending replica deletes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','77069f977a4b4277a13ef329c4cc810f');
INSERT INTO `items` (`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`,`uuid`) values ('32730','16','','10364','Kafka: Ineligible pending topic deletes','jmx["kafka.controller:type=KafkaController,name=TopicsIneligibleToDeleteCount","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The number of ineligible pending topic deletes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ddfd3ce0b846434fb4dddf391b956d6f');
INSERT INTO `items` (`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`,`uuid`) values ('32731','16','','10364','Kafka: Pending topic deletes','jmx["kafka.controller:type=KafkaController,name=TopicsToDeleteCount","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The number of pending topic deletes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','96c5cb8b0647481e90e0878c8bbc4d4b');
INSERT INTO `items` (`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`,`uuid`) values ('32732','16','','10364','Kafka: Offline log directory count','jmx["kafka.log:type=LogManager,name=OfflineLogDirectoryCount","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The number of offline log directories (for example, after a hardware failure).','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c11c8666c0ba4f03b8ba15573b7a6ffd');
INSERT INTO `items` (`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`,`uuid`) values ('32733','16','','10364','Kafka: Fetch-Consumer response send time, p95','jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchConsumer","95thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The time taken, in milliseconds, to send the response for 95th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4fd9235510964af99e3c174c6a18773b');
INSERT INTO `items` (`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`,`uuid`) values ('32734','16','','10364','Kafka: Fetch-Consumer response send time, p99','jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchConsumer","99thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The time taken, in milliseconds, to send the response for 99th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3674bdbc6d7742399478a960c1a24647');
INSERT INTO `items` (`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`,`uuid`) values ('32735','16','','10364','Kafka: Fetch-Consumer response send time, mean','jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchConsumer","Mean"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Average time taken, in milliseconds, to send the response.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','04dea48528bb4f56bfcbf93576ba328f');
INSERT INTO `items` (`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`,`uuid`) values ('32736','16','','10364','Kafka: Fetch-Follower response send time, p95','jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchFollower","95thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The time taken, in milliseconds, to send the response for 95th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','57af4d4b76f548e897d9e66459928b40');
INSERT INTO `items` (`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`,`uuid`) values ('32737','16','','10364','Kafka: Fetch-Follower response send time, p99','jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchFollower","99thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The time taken, in milliseconds, to send the response for 99th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5222217c516a4ab9926afd9ddbe6bfdb');
INSERT INTO `items` (`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`,`uuid`) values ('32738','16','','10364','Kafka: Fetch-Follower response send time, mean','jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchFollower","Mean"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Average time taken, in milliseconds, to send the response.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b11586ce79e846b495ed15a112959685');
INSERT INTO `items` (`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`,`uuid`) values ('32739','16','','10364','Kafka: Produce response send time, p99','jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=Produce","99thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The time taken, in milliseconds, to send the response for 99th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e5d7139fbd5a4688bba04d5837a21d3b');
INSERT INTO `items` (`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`,`uuid`) values ('32740','16','','10364','Kafka: Produce request total time, p99','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=Produce","99thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Time in ms to serve the Produce requests for 99th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b59938aa9192429890367ca1dc2e74b7');
INSERT INTO `items` (`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`,`uuid`) values ('32741','16','','10364','Kafka: Produce response send time, mean','jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=Produce","Mean"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Average time taken, in milliseconds, to send the response.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6e51118940ed4bd192774b8fa44aeb26');
INSERT INTO `items` (`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`,`uuid`) values ('32742','16','','10364','Kafka: Temporary memory size in bytes (Fetch), max','jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Fetch","Max"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The maximum of temporary memory used for converting message formats and decompressing messages.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','10cd80d9dd0e4b918138aa99dcd28b2a');
INSERT INTO `items` (`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`,`uuid`) values ('32743','16','','10364','Kafka: Temporary memory size in bytes (Fetch), min','jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Fetch","Mean"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The minimum of temporary memory used for converting message formats and decompressing messages.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9034049c16424d81a22b0f0063657ed6');
INSERT INTO `items` (`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`,`uuid`) values ('32744','16','','10364','Kafka: Temporary memory size in bytes (Produce), max','jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Produce","Max"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The maximum of temporary memory used for converting message formats and decompressing messages.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','57a5c2d51b4f424baf34ab963eed45a4');
INSERT INTO `items` (`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`,`uuid`) values ('32745','16','','10364','Kafka: Temporary memory size in bytes (Produce), avg','jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Produce","Mean"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The amount of temporary memory used for converting message formats and decompressing messages.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f28dcdf12db44b30a82b7a1bead52521');
INSERT INTO `items` (`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`,`uuid`) values ('32746','16','','10364','Kafka: Temporary memory size in bytes (Produce), min','jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Produce","Min"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The minimum of temporary memory used for converting message formats and decompressing messages.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eddaa3dce4be472ba2133674c845a53f');
INSERT INTO `items` (`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`,`uuid`) values ('32747','16','','10364','Kafka: Fetch-Consumer request total time, p95','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchConsumer","95thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Time in ms to serve the Fetch-Consumer request for 95th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','36b32cc516ce48859fda10b348564446');
INSERT INTO `items` (`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`,`uuid`) values ('32748','16','','10364','Kafka: Fetch-Consumer request total time, p99','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchConsumer","99thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Time in ms to serve the specified Fetch-Consumer for 99th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e08291248e4e42858303c27de441aa1b');
INSERT INTO `items` (`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`,`uuid`) values ('32749','16','','10364','Kafka: Fetch-Consumer request total time, mean','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchConsumer","Mean"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Average time in ms to serve the Fetch-Consumer request.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16c3eb799dca4ed7b167e1127406766e');
INSERT INTO `items` (`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`,`uuid`) values ('32750','16','','10364','Kafka: Fetch-Follower request total time, p95','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchFollower","95thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Time in ms to serve the Fetch-Follower request for 95th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','01704212d78343c597f92fa151f3372a');
INSERT INTO `items` (`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`,`uuid`) values ('32751','16','','10364','Kafka: Fetch-Follower request total time, p99','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchFollower","99thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Time in ms to serve the Fetch-Follower request for 99th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c7d9215ee14a4d86b5ad38dbad26c247');
INSERT INTO `items` (`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`,`uuid`) values ('32752','16','','10364','Kafka: Fetch-Follower request total time, mean','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchFollower","Mean"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Average time in ms to serve the Fetch-Follower request.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','487274528ec646afb5e04f6edd6619b5');
INSERT INTO `items` (`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`,`uuid`) values ('32753','16','','10364','Kafka: Produce request total time, p95','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=Produce","95thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Time in ms to serve the Produce requests for 95th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3680508a52524de08819abc3d81056be');
INSERT INTO `items` (`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`,`uuid`) values ('32754','16','','10364','Kafka: ZooKeeper client request latency','jmx["kafka.server:type=ZooKeeperClientMetrics,name=ZooKeeperRequestLatencyMs","Count"]','1m','7d','365d','0','3','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Latency in milliseconds for ZooKeeper requests from broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3b6de5f72ed94b928684083fbb65b6cb');
INSERT INTO `items` (`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`,`uuid`) values ('32755','16','','10364','Topic Metrics (read)','jmx.discovery[beans,"kafka.server:type=BrokerTopicMetrics,name=BytesOutPerSec,topic=*"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','1',NULL,'','0','30d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c4421eb9f9ab4bf2b6d4ba101c897ca7');
INSERT INTO `items` (`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`,`uuid`) values ('32756','16','','10364','Topic Metrics (errors)','jmx.discovery[beans,"kafka.server:type=BrokerTopicMetrics,name=BytesRejectedPerSec,topic=*"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','1',NULL,'','0','30d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','82037c202489462fa9c4afbb23618315');
INSERT INTO `items` (`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`,`uuid`) values ('32757','16','','10364','Topic Metrics (write)','jmx.discovery[beans,"kafka.server:type=BrokerTopicMetrics,name=MessagesInPerSec,topic=*"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','1',NULL,'','0','30d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d5ec81baadad41f29882757979443b5b');
INSERT INTO `items` (`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`,`uuid`) values ('32758','16','','10364','Kafka {#JMXTOPIC}: Bytes out per second','jmx["kafka.server:type=BrokerTopicMetrics,name=BytesOutPerSec,topic={#JMXTOPIC}","Count"]','1m','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','2',NULL,'The rate at which data is fetched and read from the broker by consumers (by topic).','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','42ad85334b524973afa2fd8f2a135e77');
INSERT INTO `items` (`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`,`uuid`) values ('32759','16','','10364','Kafka {#JMXTOPIC}: Bytes rejected per second','jmx["kafka.server:type=BrokerTopicMetrics,name=BytesRejectedPerSec,topic={#JMXTOPIC}","Count"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','2',NULL,'Rejected bytes rate by topic.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','abaf2616581a46158a13a71ffcf67634');
INSERT INTO `items` (`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`,`uuid`) values ('32760','16','','10364','Kafka {#JMXTOPIC}: Bytes in per second','jmx["kafka.server:type=BrokerTopicMetrics,name=BytesInPerSec,topic={#JMXTOPIC}","Count"]','1m','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','2',NULL,'The rate at which data sent from producers is consumed by topic.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','61bb29999ea1465c8125b518507d9e5d');
INSERT INTO `items` (`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`,`uuid`) values ('32761','16','','10364','Kafka {#JMXTOPIC}: Messages in per second','jmx["kafka.server:type=BrokerTopicMetrics,name=MessagesInPerSec,topic={#JMXTOPIC}","Count"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','2',NULL,'The rate at which individual messages are consumed by topic.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c18b5eca61b4ed2ae1aae197b7c9958');
INSERT INTO `items` (`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`,`uuid`) values ('32762','16','','10260','Protocol handlers discovery','jmx.discovery[attributes,"Catalina:type=ProtocolHandler,port=*"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','1',NULL,'Discovery for ProtocolHandler','0','30d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a478be537e5f48fe95310997d0df0eda');
INSERT INTO `items` (`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`,`uuid`) values ('32763','16','','10260','Global request processors discovery','jmx.discovery[beans,"Catalina:type=GlobalRequestProcessor,name=*"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','1',NULL,'Discovery for GlobalRequestProcessor','0','30d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','77175f79fe844bb8bca66de437a3ba32');
INSERT INTO `items` (`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`,`uuid`) values ('32764','16','','10260','Contexts discovery','jmx.discovery[beans,"Catalina:type=Manager,host=*,context=*"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','1',NULL,'Discovery for contexts','0','30d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cf1badf064714d9b9e3b7110696432f9');
INSERT INTO `items` (`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`,`uuid`) values ('32765','16','','10260','Thread pools discovery','jmx.discovery[beans,"Catalina:type=ThreadPool,name=*"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','1',NULL,'Discovery for ThreadPool','0','30d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','05752834671f416fb2fdac1006308c3e');
INSERT INTO `items` (`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`,`uuid`) values ('32766','16','','10260','{#JMXVALUE}: Gzip compression status','jmx[{#JMXOBJ},compression]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Gzip compression status on {#JMXNAME}. Enabling gzip compression may save server bandwidth.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','830f58f8ad6640d989a70c01f7aa2ad8');
INSERT INTO `items` (`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`,`uuid`) values ('32767','16','','10260','{#JMXNAME}: Bytes received per second','jmx[{#JMXOBJ},bytesReceived]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Bytes received rate by processor {#JMXNAME}','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d7cb07f3f5e04792850332c416284dd9');
INSERT INTO `items` (`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`,`uuid`) values ('32768','16','','10260','{#JMXNAME}: Bytes sent per second','jmx[{#JMXOBJ},bytesSent]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Bytes sent rate by processor {#JMXNAME}','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','abad7332ed6b417c92f6038ce12ae000');
INSERT INTO `items` (`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`,`uuid`) values ('32769','16','','10260','{#JMXNAME}: Errors per second','jmx[{#JMXOBJ},errorCount]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Error rate of request processor {#JMXNAME}','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1596a335401d47d6b2bde7a5b0de7b07');
INSERT INTO `items` (`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`,`uuid`) values ('32770','16','','10260','{#JMXNAME}: Requests processing time','jmx[{#JMXOBJ},processingTime]','1m','7d','365d','0','3','','s','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'The total time to process all incoming requests of request processor\r\n{#JMXNAME}','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','985d3eeacd9d404385bfcef693add39a');
INSERT INTO `items` (`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`,`uuid`) values ('32771','16','','10260','{#JMXNAME}: Requests per second','jmx[{#JMXOBJ},requestCount]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Rate of requests served by request processor {#JMXNAME}','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8e0307b5063549dab118e0e374a62aad');
INSERT INTO `items` (`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`,`uuid`) values ('32772','16','','10260','{#JMXHOST}{#JMXCONTEXT}: Sessions active','jmx[{#JMXOBJ},activeSessions]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Active sessions of the application.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c20bb67db247471ba686d2ea371b7c73');
INSERT INTO `items` (`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`,`uuid`) values ('32773','16','','10260','{#JMXHOST}{#JMXCONTEXT}: Sessions allowed maximum','jmx[{#JMXOBJ},maxActiveSessions]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'The maximum number of active Sessions allowed, or -1 for no limit.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bc3c2a3cff614f3eaf001463df1b2364');
INSERT INTO `items` (`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`,`uuid`) values ('32774','16','','10260','{#JMXHOST}{#JMXCONTEXT}: Sessions active maximum so far','jmx[{#JMXOBJ},maxActive]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Maximum number of active sessions so far.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fd8678e68cf440939af2dd8f3568a42f');
INSERT INTO `items` (`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`,`uuid`) values ('32775','16','','10260','{#JMXHOST}{#JMXCONTEXT}: Sessions rejected per second','jmx[{#JMXOBJ},rejectedSessions]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Rate of sessions we rejected due to maxActive being reached.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','34702e2d6b2142ec9aa43bea1059a98a');
INSERT INTO `items` (`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`,`uuid`) values ('32776','16','','10260','{#JMXHOST}{#JMXCONTEXT}: Sessions created per second','jmx[{#JMXOBJ},sessionCounter]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Rate of sessions created by this application per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eb28f9bd99d440f4a50d1c24ae758029');
INSERT INTO `items` (`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`,`uuid`) values ('32777','16','','10260','{#JMXNAME}: Threads count','jmx[{#JMXOBJ},currentThreadCount]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Amount of threads the thread pool has right now, both busy and free.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7d7418c72ced48eca2a92e30021b611b');
INSERT INTO `items` (`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`,`uuid`) values ('32778','16','','10260','{#JMXNAME}: Threads busy','jmx[{#JMXOBJ},currentThreadsBusy]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Number of the requests that are being currently handled.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','35b1e99fbc44448083b5aad0ce1239a1');
INSERT INTO `items` (`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`,`uuid`) values ('32779','16','','10260','{#JMXNAME}: Threads limit','jmx[{#JMXOBJ},maxThreads]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Limit of the threads count. When currentThreadsBusy counter reaches the maxThreads limit, no more requests could be handled, and the application chokes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','32e316ce567c4f94aecb89d9763e4d27');
INSERT INTO `items` (`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`,`uuid`) values ('32780','19','','10365','Vault: Get leader','vault.get_leader','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','{$VAULT.API.SCHEME}://{$VAULT.HOST}:{$VAULT.API.PORT}/v1/sys/leader','','','200','1','0','X-Vault-Token: {$VAULT.TOKEN}','0','0','0','0','0','0','0','f92c90b99edc42d9b170d775c714fa0a');
INSERT INTO `items` (`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`,`uuid`) values ('32781','19','','10365','Vault: Get health','vault.get_health','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','{$VAULT.API.SCHEME}://{$VAULT.HOST}:{$VAULT.API.PORT}/v1/sys/health','','','200,429,472,473,503,501','1','0','X-Vault-Token: {$VAULT.TOKEN}','0','0','0','0','0','0','0','a78063c1186540fb88d3b958b14250bf');
INSERT INTO `items` (`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`,`uuid`) values ('32782','19','','10365','Vault: Get metrics','vault.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','{$VAULT.API.SCHEME}://{$VAULT.HOST}:{$VAULT.API.PORT}/v1/sys/metrics?format=prometheus','','','200,503,403','1','0','X-Vault-Token: {$VAULT.TOKEN}','0','0','0','0','0','0','0','4ccc4256252f4345a264db340f4ddbf5');
INSERT INTO `items` (`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`,`uuid`) values ('32783','21','','10365','Vault: Get tokens','vault.get_tokens','15m','0','0','0','4','','','','',NULL,NULL,'var params = JSON.parse(value);\r\n\r\nparams[\'url\'] = params.scheme + \'://\'\r\n + params.host + \':\'\r\n + params.port + \'/v1/auth/token/lookup-accessor\';\r\n\r\nvar request = new HttpRequest(),\r\n output = [];\r\n\r\nrequest.addHeader(\'X-Vault-Token: \' + params.token);\r\n\r\nparams.accessors.trim().split(/\\x20+/).forEach(function (accessor) {\r\n if (!accessor) {\r\n return;\r\n }\r\n\r\n var response,\r\n data = {},\r\n error_msg = \'\';\r\n\r\n try {\r\n response = request.post(params.url, JSON.stringify({ accessor: accessor }));\r\n Zabbix.log(4, \'[ Vault API ] Received response with status code \' + request.getStatus() + \': \' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n throw \'Failed to parse response received from Vault API. Check debug log for more information.\';\r\n }\r\n }\r\n\r\n if (request.getStatus() !== 200) {\r\n throw response.errors && response.errors[0] || JSON.stringify(response);\r\n }\r\n\r\n if (typeof response !== \'object\' || typeof response.data === \'undefined\') {\r\n throw \'Cannot lookup token from Vault API. Check debug log for more information.\';\r\n }\r\n\r\n data = response.data;\r\n }\r\n catch (error) {\r\n error_msg = error;\r\n }\r\n\r\n output.push({\r\n \'accessor\': accessor,\r\n \'token_name\': data.display_name || \'null\',\r\n \'ttl\': data.ttl || 0,\r\n \'has_ttl\': !!data.expire_time,\r\n \'error\': error_msg.toString()\r\n });\r\n});\r\n\r\nreturn JSON.stringify(output);','','0','','','','','0',NULL,'Get information about tokens via their accessors. Accessors are defined in the macro "{$VAULT.TOKEN.ACCESSORS}".','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e8cb015d45ad4e3b9f87d3cbbae3a980');
INSERT INTO `items` (`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`,`uuid`) values ('32890','3','','10174','VMware: Cluster name','vmware.vm.cluster.name[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Cluster name of the guest VM.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','061eed2d40d5427092b50172ea0a9c41');
INSERT INTO `items` (`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`,`uuid`) values ('32891','3','','10174','VMware: Swapped memory','vmware.vm.memory.size.swapped[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The amount of guest physical memory swapped out to the VM\'s swap device by ESX.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b064f0e0a53f4f6588827100becb4335');
INSERT INTO `items` (`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`,`uuid`) values ('32892','3','','10174','VMware: Unshared storage space','vmware.vm.storage.unshared[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Total storage space, in bytes, occupied by the virtual machine across all datastores, that is not shared with any other virtual machine.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','35aa9ee1743e4c1787c426da20f48097');
INSERT INTO `items` (`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`,`uuid`) values ('32893','3','','10174','VMware: Uncommitted storage space','vmware.vm.storage.uncommitted[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Additional storage space, in bytes, potentially used by this virtual machine on all datastores.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8183cf2c54774d7eb544f645d5c26b8c');
INSERT INTO `items` (`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`,`uuid`) values ('32894','3','','10174','VMware: Committed storage space','vmware.vm.storage.committed[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Total storage space, in bytes, committed to this virtual machine across all datastores.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','13173517c99e4a87aa6750392d14b255');
INSERT INTO `items` (`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`,`uuid`) values ('32895','3','','10174','VMware: Power state','vmware.vm.powerstate[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','7d','365d','0','3','','','','',NULL,'51','','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The current power state of the virtual machine.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0943ff346c9d4cc69fc773843066c473');
INSERT INTO `items` (`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`,`uuid`) values ('32896','3','','10174','VMware: Memory size','vmware.vm.memory.size[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1h','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Total size of configured memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9533bc39366443fe8a3808190801441a');
INSERT INTO `items` (`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`,`uuid`) values ('32897','3','','10174','VMware: Host memory usage','vmware.vm.memory.size.usage.host[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The amount of host physical memory allocated to the VM, accounting for saving from memory sharing with other VMs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6fcbe4e95fce445aa417b9738004391f');
INSERT INTO `items` (`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`,`uuid`) values ('32898','3','','10174','VMware: Guest memory usage','vmware.vm.memory.size.usage.guest[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The amount of guest physical memory that is being used by the VM.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e960399726a240de9ecc12eff65415ae');
INSERT INTO `items` (`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`,`uuid`) values ('32899','3','','10174','VMware: Shared memory','vmware.vm.memory.size.shared[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The amount of guest physical memory shared through transparent page sharing.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c6a539ee57bf48f78342358c391c65ea');
INSERT INTO `items` (`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`,`uuid`) values ('32900','3','','10174','VMware: Number of virtual CPUs','vmware.vm.cpu.num[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Number of virtual CPUs assigned to the guest.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bbfb146e74144160b2e47c0f2cdc6c20');
INSERT INTO `items` (`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`,`uuid`) values ('32901','3','','10174','VMware: Private memory','vmware.vm.memory.size.private[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Amount of memory backed by host memory and not being shared.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6563409185804ed89b49dfde92edfa10');
INSERT INTO `items` (`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`,`uuid`) values ('32902','3','','10174','VMware: Compressed memory','vmware.vm.memory.size.compressed[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The amount of memory currently in the compression cache for this VM.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9e7b9360e4d84e9397b5f0a7ab074726');
INSERT INTO `items` (`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`,`uuid`) values ('32903','3','','10174','VMware: Ballooned memory','vmware.vm.memory.size.ballooned[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The amount of guest physical memory that is currently reclaimed through the balloon driver.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fbe7477fd85a4ee39a9226b2c6995446');
INSERT INTO `items` (`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`,`uuid`) values ('32904','3','','10174','VMware: Hypervisor name','vmware.vm.hv.name[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Hypervisor name of the guest VM.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fedec469a1d040ae971e0013102e1e7c');
INSERT INTO `items` (`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`,`uuid`) values ('32905','3','','10174','VMware: Datacenter name','vmware.vm.datacenter.name[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Datacenter name of the guest VM.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3e70b5d443b942db974b5f92a7acce19');
INSERT INTO `items` (`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`,`uuid`) values ('32906','3','','10174','VMware: CPU usage','vmware.vm.cpu.usage[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','7d','365d','0','3','','Hz','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Current upper-bound on CPU usage. The upper-bound is based on the host the virtual machine is current running on, as well as limits configured on the virtual machine itself or any parent resource pool. Valid while the virtual machine is running.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ea416ff054cc4031ac6b5cf446156540');
INSERT INTO `items` (`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`,`uuid`) values ('32907','3','','10174','VMware: CPU ready','vmware.vm.cpu.ready[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','7d','365d','0','3','','ms','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Time that the virtual machine was ready, but could not get scheduled to run on the physical CPU during last measurement interval (VMware vCenter/ESXi Server performance counter sampling interval - 20 seconds)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff0a31df94784cfbbf10deca55f76145');
INSERT INTO `items` (`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`,`uuid`) values ('32908','3','','10174','VMware: Uptime','vmware.vm.uptime[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'System uptime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4c3b010d7ea74da6b0dc1dd4e625bbb0');
INSERT INTO `items` (`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`,`uuid`) values ('32909','3','','10175','VMware: Hypervisor ping','icmpping[]','1m','7d','365d','0','3','','','','',NULL,'43','','','0','','','','','0',NULL,'Checks if the hypervisor is running and accepting ICMP pings.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3010cb082f23478b858912f944347530');
INSERT INTO `items` (`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`,`uuid`) values ('32910','3','','10175','VMware: Vendor','vmware.hv.hw.vendor[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The hardware vendor identification.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aec06090d16d4bdd8ed3494b448f19d8');
INSERT INTO `items` (`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`,`uuid`) values ('32911','3','','10175','VMware: Version','vmware.hv.version[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Dot-separated version string.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','222ad20887cf479b8e81a4c338078d17');
INSERT INTO `items` (`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`,`uuid`) values ('32912','3','','10175','VMware: Uptime','vmware.hv.uptime[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1m','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'System uptime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ecad96137494476293b57a0440de3f65');
INSERT INTO `items` (`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`,`uuid`) values ('32913','3','','10175','VMware: Overall status','vmware.hv.status[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1m','7d','365d','0','3','','','','',NULL,'53','','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The overall alarm status of the host: gray - unknown, green - ok, red - it has a problem, yellow - it might have a problem.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0cec294521314c5482233b5b96e90c8d');
INSERT INTO `items` (`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`,`uuid`) values ('32915','3','','10175','VMware: Number of bytes transmitted','vmware.hv.network.out[{$VMWARE.URL},{$VMWARE.HV.UUID},bps]','1m','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'VMware hypervisor network output statistics (bytes per second).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b013afcba08b47f4a5b590a59f464a58');
INSERT INTO `items` (`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`,`uuid`) values ('32916','3','','10175','VMware: Number of bytes received','vmware.hv.network.in[{$VMWARE.URL},{$VMWARE.HV.UUID},bps]','1m','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'VMware hypervisor network input statistics (bytes per second).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','33f78ab6ee6c4e7585a83a60cdecab6f');
INSERT INTO `items` (`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`,`uuid`) values ('32917','3','','10175','VMware: Used memory','vmware.hv.memory.used[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Physical memory usage on the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','93d680d6886d446badbbe995ddd9ba9c');
INSERT INTO `items` (`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`,`uuid`) values ('32918','3','','10175','VMware: Ballooned memory','vmware.hv.memory.size.ballooned[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The amount of guest physical memory that is currently reclaimed through the balloon driver. Sum of all guest VMs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','21020a79436a49c38caf8941f6b68da3');
INSERT INTO `items` (`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`,`uuid`) values ('32919','3','','10175','VMware: Bios UUID','vmware.hv.hw.uuid[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The hardware BIOS identification.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6c4aab55b3e640779a25ac90b9ca2a43');
INSERT INTO `items` (`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`,`uuid`) values ('32920','3','','10175','VMware: Cluster name','vmware.hv.cluster.name[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Cluster name of the guest VM.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','af4d0877fda84753816c817ad76162f1');
INSERT INTO `items` (`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`,`uuid`) values ('32921','3','','10175','VMware: Model','vmware.hv.hw.model[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The system model identification.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7ed7ac26da384bcda976badf24ebbec1');
INSERT INTO `items` (`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`,`uuid`) values ('32922','3','','10175','VMware: Total memory','vmware.hv.hw.memory[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The physical memory size.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ce89c38e6e5d4338a30ee150be1b2b67');
INSERT INTO `items` (`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`,`uuid`) values ('32923','3','','10175','VMware: CPU threads','vmware.hv.hw.cpu.threads[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Number of physical CPU threads on the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','89cb0a4809e7454a862f398a0e9d6bed');
INSERT INTO `items` (`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`,`uuid`) values ('32924','3','','10175','VMware: CPU cores','vmware.hv.hw.cpu.num[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Number of physical CPU cores on the host. Physical CPU cores are the processors contained by a CPU package.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c99a5bf2e3904f97b3d361ca20af7883');
INSERT INTO `items` (`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`,`uuid`) values ('32925','3','','10175','VMware: CPU model','vmware.hv.hw.cpu.model[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The CPU model.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3f0c35fcef9e4699ac5a1c51d80f8da4');
INSERT INTO `items` (`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`,`uuid`) values ('32926','3','','10175','VMware: CPU frequency','vmware.hv.hw.cpu.freq[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','7d','365d','0','3','','Hz','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The speed of the CPU cores. This is an average value if there are multiple speeds. The product of CPU frequency and number of cores is approximately equal to the sum of the MHz for all the individual cores on the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad0053d57b834e6a9776c08e1c455d55');
INSERT INTO `items` (`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`,`uuid`) values ('32927','3','','10175','VMware: Full name','vmware.hv.fullname[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The complete product name, including the version information.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c29837f75f04d7f9a5786691b3dd991');
INSERT INTO `items` (`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`,`uuid`) values ('32928','3','','10175','VMware: Datacenter name','vmware.hv.datacenter.name[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Datacenter name of the hypervisor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e4d27d7f9b9048d4ae6c60cbdd6c0091');
INSERT INTO `items` (`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`,`uuid`) values ('32929','3','','10175','VMware: CPU usage','vmware.hv.cpu.usage[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1m','7d','365d','0','3','','Hz','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Aggregated CPU usage across all cores on the host in Hz. This is only available if the host is connected.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1bff6fbd300d4455a787a273d957bba3');
INSERT INTO `items` (`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`,`uuid`) values ('32930','3','','10175','VMware: Number of guest VMs','vmware.hv.vm.num[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Number of guest virtual machines.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2045df572e864834bd4bd97046353f4e');
INSERT INTO `items` (`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`,`uuid`) values ('32931','3','','10174','Network device discovery','vmware.vm.net.if.discovery[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'Discovery of all network devices.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','914634668bab4266bd641ee224dbc1e4');
INSERT INTO `items` (`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`,`uuid`) values ('32932','3','','10174','Disk device discovery','vmware.vm.vfs.dev.discovery[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'Discovery of all disk devices.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b1543bdfb5a342d7ad694c87248fe173');
INSERT INTO `items` (`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`,`uuid`) values ('32933','3','','10174','Mounted filesystem discovery','vmware.vm.vfs.fs.discovery[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'Discovery of all guest file systems.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','44ff9ef164dc4d20acf06b3368d64456');
INSERT INTO `items` (`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`,`uuid`) values ('32934','3','','10175','Datastore discovery','vmware.hv.datastore.discovery[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb7774df87994355baff7402d9fabcc2');
INSERT INTO `items` (`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`,`uuid`) values ('32935','3','','10174','VMware: Number of bytes received on interface {#IFDESC}','vmware.vm.net.if.in[{$VMWARE.URL},{$VMWARE.VM.UUID},{#IFNAME},bps]','1m','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine network interface input statistics (bytes per second).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1a7452a0061b45b1b1904e3ff64cf49f');
INSERT INTO `items` (`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`,`uuid`) values ('32936','3','','10174','VMware: Number of packets received on interface {#IFDESC}','vmware.vm.net.if.in[{$VMWARE.URL},{$VMWARE.VM.UUID},{#IFNAME},pps]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine network interface input statistics (packets per second).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','863c3aee5d9248d48adbf86832fa6c8e');
INSERT INTO `items` (`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`,`uuid`) values ('32937','3','','10174','VMware: Number of bytes transmitted on interface {#IFDESC}','vmware.vm.net.if.out[{$VMWARE.URL},{$VMWARE.VM.UUID},{#IFNAME},bps]','1m','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine network interface output statistics (bytes per second).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0993e42664a14cd7936351c55b1d64a4');
INSERT INTO `items` (`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`,`uuid`) values ('32938','3','','10174','VMware: Number of packets transmitted on interface {#IFDESC}','vmware.vm.net.if.out[{$VMWARE.URL},{$VMWARE.VM.UUID},{#IFNAME},pps]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine network interface output statistics (packets per second).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','144a2ed3f76e49af92462e0fea275ede');
INSERT INTO `items` (`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`,`uuid`) values ('32939','3','','10174','VMware: Average number of bytes read from the disk {#DISKDESC}','vmware.vm.vfs.dev.read[{$VMWARE.URL},{$VMWARE.VM.UUID},{#DISKNAME},bps]','1m','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine disk device read statistics (bytes per second).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd151efc8a0b41e9b64cbf21303fc659');
INSERT INTO `items` (`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`,`uuid`) values ('32940','3','','10174','VMware: Average number of reads from the disk {#DISKDESC}','vmware.vm.vfs.dev.read[{$VMWARE.URL},{$VMWARE.VM.UUID},{#DISKNAME},ops]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine disk device read statistics (operations per second).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e6248013150d4f23a0774f6cc80e8df3');
INSERT INTO `items` (`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`,`uuid`) values ('32941','3','','10174','VMware: Average number of bytes written to the disk {#DISKDESC}','vmware.vm.vfs.dev.write[{$VMWARE.URL},{$VMWARE.VM.UUID},{#DISKNAME},bps]','1m','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine disk device write statistics (bytes per second).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7ea68380b855460b8e51281223659661');
INSERT INTO `items` (`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`,`uuid`) values ('32942','3','','10174','VMware: Average number of writes to the disk {#DISKDESC}','vmware.vm.vfs.dev.write[{$VMWARE.URL},{$VMWARE.VM.UUID},{#DISKNAME},ops]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine disk device write statistics (operations per second).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8344a1066f5c4ef49894d2d18fac2339');
INSERT INTO `items` (`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`,`uuid`) values ('32943','3','','10174','VMware: Free disk space on {#FSNAME}','vmware.vm.vfs.fs.size[{$VMWARE.URL},{$VMWARE.VM.UUID},{#FSNAME},free]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine file system statistics (bytes).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','622e96310f9d4f54b4ed82f655fa153b');
INSERT INTO `items` (`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`,`uuid`) values ('32944','3','','10174','VMware: Free disk space on {#FSNAME} (percentage)','vmware.vm.vfs.fs.size[{$VMWARE.URL},{$VMWARE.VM.UUID},{#FSNAME},pfree]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine file system statistics (percentages).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3103537bb1d24633a064d173b3b530f2');
INSERT INTO `items` (`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`,`uuid`) values ('32945','3','','10174','VMware: Total disk space on {#FSNAME}','vmware.vm.vfs.fs.size[{$VMWARE.URL},{$VMWARE.VM.UUID},{#FSNAME},total]','1h','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine total disk space (bytes).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','08d05eac03994b56867ec302a346735c');
INSERT INTO `items` (`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`,`uuid`) values ('32946','3','','10174','VMware: Used disk space on {#FSNAME}','vmware.vm.vfs.fs.size[{$VMWARE.URL},{$VMWARE.VM.UUID},{#FSNAME},used]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine used disk space (bytes).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','09bb15da42464d8295d5e94b1d42cc87');
INSERT INTO `items` (`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`,`uuid`) values ('32947','3','','10175','VMware: Average read latency of the datastore {#DATASTORE}','vmware.hv.datastore.read[{$VMWARE.URL},{$VMWARE.HV.UUID},{#DATASTORE},latency]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'Average amount of time for a read operation from the datastore (milliseconds).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','259d1ff4bde143248f7ee2f7f880cb62');
INSERT INTO `items` (`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`,`uuid`) values ('32948','3','','10175','VMware: Free space on datastore {#DATASTORE} (percentage)','vmware.hv.datastore.size[{$VMWARE.URL},{$VMWARE.HV.UUID},{#DATASTORE},pfree]','5m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware datastore space in percentage from total.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f36245398cc4460a9cb4ec741612693b');
INSERT INTO `items` (`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`,`uuid`) values ('32949','3','','10175','VMware: Total size of datastore {#DATASTORE}','vmware.hv.datastore.size[{$VMWARE.URL},{$VMWARE.HV.UUID},{#DATASTORE}]','5m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware datastore space in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc83e8f5ec08483db75482706bf01aba');
INSERT INTO `items` (`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`,`uuid`) values ('32950','3','','10175','VMware: Average write latency of the datastore {#DATASTORE}','vmware.hv.datastore.write[{$VMWARE.URL},{$VMWARE.HV.UUID},{#DATASTORE},latency]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'Average amount of time for a write operation to the datastore (milliseconds).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9db980d8f5f44af5ad11a5949d80031d');
INSERT INTO `items` (`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`,`uuid`) values ('32951','3','','10366','VMware: Event log','vmware.eventlog[{$VMWARE.URL},skip]','1m','7d','0','0','2','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Collect VMware event log. See also: https://www.zabbix.com/documentation/6.0/manual/config/items/preprocessing/examples#filtering_vmware_event_log_records','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','64b8a28c1a904540930ebfec5af04872');
INSERT INTO `items` (`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`,`uuid`) values ('32952','3','','10366','VMware: Full name','vmware.fullname[{$VMWARE.URL}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'VMware service full name.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ebb8417eceb541b1b51909c745642f05');
INSERT INTO `items` (`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`,`uuid`) values ('32953','3','','10366','VMware: Version','vmware.version[{$VMWARE.URL}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'VMware service version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','edfdedd78e9c4c299a1555bd13b2f677');
INSERT INTO `items` (`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`,`uuid`) values ('32954','3','','10366','Discover VMware clusters','vmware.cluster.discovery[{$VMWARE.URL}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'Discovery of clusters','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dc0a844c06f7456b8643f9f9672e6b8e');
INSERT INTO `items` (`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`,`uuid`) values ('32955','3','','10366','Discover VMware datastores','vmware.datastore.discovery[{$VMWARE.URL}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3cd02594ee644dbe88bdfc4f4257ae05');
INSERT INTO `items` (`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`,`uuid`) values ('32956','3','','10366','Discover VMware hypervisors','vmware.hv.discovery[{$VMWARE.URL}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'Discovery of hypervisors.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','988bb85b325449b29780eeda15c73620');
INSERT INTO `items` (`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`,`uuid`) values ('32957','3','','10366','Discover VMware VMs FQDN','vmware.vm.discovery[{$VMWARE.URL}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'Discovery of guest virtual machines.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a7e2f6830442433cbe515e8bd72ee0b8');
INSERT INTO `items` (`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`,`uuid`) values ('32958','3','','10366','VMware: Status of "{#CLUSTER.NAME}" cluster','vmware.cluster.status[{$VMWARE.URL},{#CLUSTER.NAME}]','1m','7d','365d','0','3','','','','',NULL,'54','','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware cluster status.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','41fbb29592f9495e92d88240ce2ba7a5');
INSERT INTO `items` (`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`,`uuid`) values ('32959','3','','10366','VMware: Average read latency of the datastore {#DATASTORE}','vmware.datastore.read[{$VMWARE.URL},{#DATASTORE},latency]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'Amount of time for a read operation from the datastore (milliseconds).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0ed09f26cbad4d96bea297da4215d73b');
INSERT INTO `items` (`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`,`uuid`) values ('32960','3','','10366','VMware: Free space on datastore {#DATASTORE} (percentage)','vmware.datastore.size[{$VMWARE.URL},{#DATASTORE},pfree]','5m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware datastore space in percentage from total.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a2b1785fc773404e9ce69bcd868c5b88');
INSERT INTO `items` (`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`,`uuid`) values ('32961','3','','10366','VMware: Total size of datastore {#DATASTORE}','vmware.datastore.size[{$VMWARE.URL},{#DATASTORE}]','5m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware datastore space in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','78fb4b4b0eec44a99207f8354773269d');
INSERT INTO `items` (`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`,`uuid`) values ('32962','3','','10366','VMware: Average write latency of the datastore {#DATASTORE}','vmware.datastore.write[{$VMWARE.URL},{#DATASTORE},latency]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'Amount of time for a write operation to the datastore (milliseconds).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d9570c0822cc4996a7dda1ddb9426404');
INSERT INTO `items` (`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`,`uuid`) values ('32963','19','','10369','Zookeeper: Get server metrics','zookeeper.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','{$ZOOKEEPER.SCHEME}://{HOST.CONN}:{$ZOOKEEPER.PORT}/{$ZOOKEEPER.COMMAND_URL}/monitor','','','200','1','0','','0','0','0','0','0','0','0','cf7e83297d6343fb87dcd7848f62ce41');
INSERT INTO `items` (`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`,`uuid`) values ('32964','19','','10369','Zookeeper: Get connections stats','zookeeper.get_connections_stats','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get information on client connections to server. Note, depending on the number of client connections this operation may be expensive (i.e. impact server performance).','0','30d','0','',NULL,'3s','{$ZOOKEEPER.SCHEME}://{HOST.CONN}:{$ZOOKEEPER.PORT}/{$ZOOKEEPER.COMMAND_URL}/connections','','','200','1','0','','0','0','0','0','0','0','0','f682f5d6e1664f919872f309371e4079');
INSERT INTO `items` (`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`,`uuid`) values ('32998','19','','10369','Clients discovery','zookeeper.clients','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Get list of client connections.\r\nNote, depending on the number of client connections this operation may be expensive (i.e. impact server performance).','0','30d','0','',NULL,'3s','{$ZOOKEEPER.SCHEME}://{HOST.CONN}:{$ZOOKEEPER.PORT}/{$ZOOKEEPER.COMMAND_URL}/connections','','','200','1','0','','0','0','0','0','0','0','0','e0f576ea5ae44289866fb726079ddbf8');
INSERT INTO `items` (`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`,`uuid`) values ('33018','5','','10048','Zabbix proxy: Utilization of availability manager internal processes, in %','zabbix[process,availability manager,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time availability manager processes have been busy in the last minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5131f979c17a4346a95f8ba77e7133a4');
INSERT INTO `items` (`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`,`uuid`) values ('33019','5','','10048','Zabbix proxy: Utilization of history poller data collector processes, in %','zabbix[process,history poller,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time history poller processes have been busy in the last minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d34bb8623fff4fb99f87167534299654');
INSERT INTO `items` (`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`,`uuid`) values ('33020','5','','10047','Zabbix server: Trend function cache, % unique requests','zabbix[tcache,cache,pitems]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Effectiveness statistics of the Zabbix trend function cache. Percentage of cached items from cached items + requests. Low percentage most likely means that the cache size can be reduced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b14a5ba6c93f4d6c9dfd820640d34e9b');
INSERT INTO `items` (`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`,`uuid`) values ('33021','5','','10047','Zabbix server: Trend function cache, % misses','zabbix[tcache,cache,pmisses]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Effectiveness statistics of the Zabbix trend function cache. Percentage of cache misses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6db1280cb0134e81af8e070ae2356e7b');
INSERT INTO `items` (`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`,`uuid`) values ('33022','5','','10047','Zabbix server: Utilization of availability manager internal processes, in %','zabbix[process,availability manager,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time availability manager processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8677812221994919a46f6cbba16ad447');
INSERT INTO `items` (`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`,`uuid`) values ('33023','5','','10047','Zabbix server: Utilization of history poller data collector processes, in %','zabbix[process,history poller,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time history poller processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8de74bea977141469cf2d594bc907968');
INSERT INTO `items` (`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`,`uuid`) values ('33028','16','','10370','Cluster: Name','jmx["org.apache.cassandra.db:type=StorageService","ClusterName"]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','147ba5946b994324b1f6d88a8d3b6541');
INSERT INTO `items` (`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`,`uuid`) values ('33029','16','','10370','Thread pool SecondaryIndexManagement: Currently blocked task','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=SecondaryIndexManagement,name=CurrentlyBlockedTasks","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.\r\nSecondaryIndexManagement: Performs updates to secondary indexes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','18b83c6b48164e1f9b8f9ae6058da276');
INSERT INTO `items` (`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`,`uuid`) values ('33030','16','','10370','Thread pool HintsDispatcher: Pending tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=HintsDispatcher,name=PendingTasks","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of queued tasks queued up on this pool.\r\nHintsDispatcher: Performs hinted handoff.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0efbb0ab0e3244428f5e5917fa73437c');
INSERT INTO `items` (`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`,`uuid`) values ('33031','16','','10370','Thread pool HintsDispatcher: Total blocked tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=HintsDispatcher,name=TotalBlockedTasks","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that were blocked due to queue saturation.\r\nHintsDispatcher: Performs hinted handoff.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4eb4e405cc564c9c8a694f085b1905dd');
INSERT INTO `items` (`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`,`uuid`) values ('33032','16','','10370','Thread pool MemtableFlushWriter: Currently blocked task','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtableFlushWriter,name=CurrentlyBlockedTasks","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.\r\nMemtableFlushWriter: Writes memtables to disk.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7fd397d3d09a494fb0032d97c93dc462');
INSERT INTO `items` (`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`,`uuid`) values ('33033','16','','10370','Thread pool MemtableFlushWriter: Pending tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtableFlushWriter,name=PendingTasks","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of queued tasks queued up on this pool.\r\nMemtableFlushWriter: Writes memtables to disk.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c0eaf8af68114b0eb1f16e7cb456a442');
INSERT INTO `items` (`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`,`uuid`) values ('33034','16','','10370','Thread pool MemtableFlushWriter: Total blocked tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtableFlushWriter,name=TotalBlockedTasks","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that were blocked due to queue saturation.\r\nMemtableFlushWriter: Writes memtables to disk.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3e402261b410467cb177b3c02dd237f3');
INSERT INTO `items` (`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`,`uuid`) values ('33035','16','','10370','Thread pool MemtablePostFlush: Currently blocked task','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtablePostFlush,name=CurrentlyBlockedTasks","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.\r\nMemtablePostFlush: Cleans up commit log after memtable is written to disk.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','868e8d31c8424607a7f0aafd4eff46cf');
INSERT INTO `items` (`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`,`uuid`) values ('33036','16','','10370','Thread pool MemtablePostFlush: Pending tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtablePostFlush,name=PendingTasks","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of queued tasks queued up on this pool.\r\nMemtablePostFlush: Cleans up commit log after memtable is written to disk.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ddfd1f388ed4c3a9e81558e626f9525');
INSERT INTO `items` (`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`,`uuid`) values ('33037','16','','10370','Thread pool MemtablePostFlush: Total blocked tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtablePostFlush,name=TotalBlockedTasks","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that were blocked due to queue saturation.\r\nMemtablePostFlush: Cleans up commit log after memtable is written to disk.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e00f5f7ac9904ea4981c44a506005d62');
INSERT INTO `items` (`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`,`uuid`) values ('33038','16','','10370','Thread pool MigrationStage: Currently blocked task','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MigrationStage,name=CurrentlyBlockedTasks","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.\r\nMigrationStage: Runs schema migrations.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','480f3d158c764cd3877e0b04189eb60c');
INSERT INTO `items` (`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`,`uuid`) values ('33039','16','','10370','Thread pool MigrationStage: Pending tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MigrationStage,name=PendingTasks","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of queued tasks queued up on this pool.\r\nMigrationStage: Runs schema migrations.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f9b504b8b9f34f70a15691a16ee69e39');
INSERT INTO `items` (`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`,`uuid`) values ('33040','16','','10370','Thread pool MigrationStage: Total blocked tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MigrationStage,name=TotalBlockedTasks","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that were blocked due to queue saturation.\r\nMigrationStage: Runs schema migrations.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','79bc07acfef846768a036243efd3d954');
INSERT INTO `items` (`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`,`uuid`) values ('33041','16','','10370','Thread pool MiscStage: Currently blocked task','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MiscStage,name=CurrentlyBlockedTasks","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.\r\nMiscStage: Miscellaneous tasks run here.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','94360cbf59cc4978ab64872f9d0a9100');
INSERT INTO `items` (`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`,`uuid`) values ('33042','16','','10370','Thread pool MiscStage: Pending tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MiscStage,name=PendingTasks","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of queued tasks queued up on this pool.\r\nMiscStage: Miscellaneous tasks run here.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0a0ee6e0a2de4da5acfa715959dbae9f');
INSERT INTO `items` (`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`,`uuid`) values ('33043','16','','10370','Thread pool MiscStage: Total blocked tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MiscStage,name=TotalBlockedTasks","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that were blocked due to queue saturation.\r\nMiscStage: Miscellaneous tasks run here.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','807494ed64b54f9a95961fa7031e7d7f');
INSERT INTO `items` (`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`,`uuid`) values ('33044','16','','10370','Thread pool SecondaryIndexManagement: Pending tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=SecondaryIndexManagement,name=PendingTasks","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of queued tasks queued up on this pool.\r\nSecondaryIndexManagement: Performs updates to secondary indexes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','622728098a35433bb00b7ab1614665bc');
INSERT INTO `items` (`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`,`uuid`) values ('33045','16','','10370','Storage: Hints','jmx["org.apache.cassandra.metrics:type=Storage,name=TotalHints","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of hint messages written to this node since [re]start. Includes one entry for each host to be hinted per hint.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3e0332f3770046b5b3ba4216111f3b3f');
INSERT INTO `items` (`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`,`uuid`) values ('33046','16','','10370','Thread pool SecondaryIndexManagement: Total blocked tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=SecondaryIndexManagement,name=TotalBlockedTasks","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that were blocked due to queue saturation.\r\nSecondaryIndexManagement: Performs updates to secondary indexes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0dbd7303e9a64bc581ef8c6619876d2b');
INSERT INTO `items` (`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`,`uuid`) values ('33047','16','','10370','Thread pool CounterMutationStage: Currently blocked task','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=CounterMutationStage,name=CurrentlyBlockedTasks","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.\r\nCounterMutationStage: Responsible for counter writes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1ff2b0f1c6a04cfca0d40a68c5a39476');
INSERT INTO `items` (`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`,`uuid`) values ('33048','16','','10370','Thread pool CounterMutationStage: Pending tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=CounterMutationStage,name=PendingTasks","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of queued tasks queued up on this pool.\r\nCounterMutationStage: Responsible for counter writes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b0cc87b96d0e4f3c8ff2023665d90379');
INSERT INTO `items` (`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`,`uuid`) values ('33049','16','','10370','Thread pool CounterMutationStage: Total blocked tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=CounterMutationStage,name=TotalBlockedTasks","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that were blocked due to queue saturation.\r\nCounterMutationStage: Responsible for counter writes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab2b8d88ecf54b028b88cd757581a419');
INSERT INTO `items` (`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`,`uuid`) values ('33050','16','','10370','Thread pool MutationStage: Currently blocked task','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=MutationStage,name=CurrentlyBlockedTasks","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.\r\nMutationStage: Responsible for writes (exclude materialized and counter writes).','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ef7d71b026ec4e948acf8d7469b21ee2');
INSERT INTO `items` (`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`,`uuid`) values ('33051','16','','10370','Thread pool.MutationStage: Pending tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=MutationStage,name=PendingTasks","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of queued tasks queued up on this pool.\r\nMutationStage: Responsible for writes (exclude materialized and counter writes).','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b2eb10fe498847c88b395013e4fb516c');
INSERT INTO `items` (`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`,`uuid`) values ('33052','16','','10370','Thread pool MutationStage: Total blocked tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=MutationStage,name=TotalBlockedTasks","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that were blocked due to queue saturation.\r\nMutationStage: Responsible for writes (exclude materialized and counter writes).','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c6e48ac0ece74e31803dd72310306330');
INSERT INTO `items` (`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`,`uuid`) values ('33053','16','','10370','Thread pool ReadStage: Currently blocked task','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ReadStage,name=CurrentlyBlockedTasks","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.\r\nReadStage: Local reads run on this thread pool.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e588e58881b74123bfa6f2d5d948da93');
INSERT INTO `items` (`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`,`uuid`) values ('33054','16','','10370','Thread pool ReadStage: Pending tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ReadStage,name=PendingTasks","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of queued tasks queued up on this pool.\r\nReadStage: Local reads run on this thread pool.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2770bde0ee834ddebcd773e265fa0aef');
INSERT INTO `items` (`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`,`uuid`) values ('33055','16','','10370','Thread pool ReadStage: Total blocked tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ReadStage,name=TotalBlockedTasks","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that were blocked due to queue saturation.\r\nReadStage: Local reads run on this thread pool.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9d9b20c6994c40849048cb5d0fe407ad');
INSERT INTO `items` (`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`,`uuid`) values ('33056','16','','10370','Thread pool ViewMutationStage: Currently blocked task','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ViewMutationStage,name=CurrentlyBlockedTasks","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.\r\nViewMutationStage: Responsible for materialized view writes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','49df0b39c6a944d5ab96a946b233c380');
INSERT INTO `items` (`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`,`uuid`) values ('33057','16','','10370','Thread pool ViewMutationStage: Pending tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ViewMutationStage,name=PendingTasks","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of queued tasks queued up on this pool.\r\nViewMutationStage: Responsible for materialized view writes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','967065e24d2c44be96687cd829ea928c');
INSERT INTO `items` (`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`,`uuid`) values ('33058','16','','10370','Thread pool ViewMutationStage: Total blocked tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ViewMutationStage,name=TotalBlockedTasks","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that were blocked due to queue saturation.\r\nViewMutationStage: Responsible for materialized view writes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e6719076bbd46f78d3fb9b625a0cdda');
INSERT INTO `items` (`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`,`uuid`) values ('33059','16','','10370','Cluster: Nodes down','jmx["org.apache.cassandra.net:type=FailureDetector","DownEndpointCount"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f131a5faad964307aa860e3932ba781d');
INSERT INTO `items` (`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`,`uuid`) values ('33060','16','','10370','Thread pool HintsDispatcher: Currently blocked task','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=HintsDispatcher,name=CurrentlyBlockedTasks","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.\r\nHintsDispatcher: Performs hinted handoff.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6c9721f341904c5abb4d4a4637f6c80c');
INSERT INTO `items` (`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`,`uuid`) values ('33061','16','','10370','Storage: Used (bytes)','jmx["org.apache.cassandra.metrics:type=Storage,name=Load","Count"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Size, in bytes, of the on disk data size this node manages.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','31fabd5575074957946328b0257568c6');
INSERT INTO `items` (`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`,`uuid`) values ('33062','16','','10370','Version','jmx["org.apache.cassandra.db:type=StorageService","ReleaseVersion"]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1bd80c1ce70045cbadf60ee06a09a989');
INSERT INTO `items` (`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`,`uuid`) values ('33063','16','','10370','KeyCache: requests per second','jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Requests","Count"]','1m','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Rate of cache requests.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6f6980f9267b4bef93e3a37153ef2184');
INSERT INTO `items` (`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`,`uuid`) values ('33064','16','','10370','Compaction: Number of completed tasks','jmx["org.apache.cassandra.metrics:name=CompletedTasks,type=Compaction","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of completed compactions since server [re]start.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b202aa02d0b74e8da321a2a19fe33880');
INSERT INTO `items` (`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`,`uuid`) values ('33065','16','','10370','Commitlog: Pending tasks','jmx["org.apache.cassandra.metrics:name=PendingTasks,type=CommitLog","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of commit log messages written but yet to be fsync\'d.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7176e7e8241648d1b7e81a0b4d2d329c');
INSERT INTO `items` (`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`,`uuid`) values ('33066','16','','10370','Latency: Read median','jmx["org.apache.cassandra.metrics:name=ReadLatency,type=Table","50thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Latency read from disk in milliseconds - median.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6e4ad2b5249c465894b87006a38b9542');
INSERT INTO `items` (`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`,`uuid`) values ('33067','16','','10370','Latency: Read 75 percentile','jmx["org.apache.cassandra.metrics:name=ReadLatency,type=Table","75thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Latency read from disk in milliseconds - p75.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a8b0499f15a74102b6ca486dee07e99b');
INSERT INTO `items` (`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`,`uuid`) values ('33068','16','','10370','Latency: Read 95 percentile','jmx["org.apache.cassandra.metrics:name=ReadLatency,type=Table","95thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Latency read from disk in milliseconds - p95.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e3a95a9119149889365691d932b8407');
INSERT INTO `items` (`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`,`uuid`) values ('33069','16','','10370','Commitlog: Total size','jmx["org.apache.cassandra.metrics:name=TotalCommitLogSize,type=CommitLog","Value"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Current size, in bytes, used by all the commit log segments.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','70eebcf7274942eeae0a80911b7c9095');
INSERT INTO `items` (`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`,`uuid`) values ('33070','16','','10370','Compaction: Total compactions completed','jmx["org.apache.cassandra.metrics:name=TotalCompactionsCompleted,type=Compaction","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Throughput of completed compactions since server [re]start.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','24e44d0bf8254131a032406ffad86732');
INSERT INTO `items` (`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`,`uuid`) values ('33071','16','','10370','Latency: Write median','jmx["org.apache.cassandra.metrics:name=WriteLatency,type=Table","50thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Latency write to disk in milliseconds - median.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','31ccd8b50bcb412893e91accb853d755');
INSERT INTO `items` (`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`,`uuid`) values ('33072','16','','10370','Latency: Write 75 percentile','jmx["org.apache.cassandra.metrics:name=WriteLatency,type=Table","75thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Latency write to disk in milliseconds - p75.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8f0aa624a54d45f5b6c8ead24694fc58');
INSERT INTO `items` (`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`,`uuid`) values ('33073','16','','10370','Latency: Write 95 percentile','jmx["org.apache.cassandra.metrics:name=WriteLatency,type=Table","95thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Latency write to disk in milliseconds - p95.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc084d0142a94262b585d6b4a7b06468');
INSERT INTO `items` (`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`,`uuid`) values ('33074','16','','10370','KeyCache: Capacity','jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Capacity","Value"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Cache capacity in bytes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','934eb483047649449bfa221e3cc610d3');
INSERT INTO `items` (`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`,`uuid`) values ('33075','16','','10370','KeyCache: Entries','jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Entries","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Total number of cache entries.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c4f8435dfef0426682781711addbf075');
INSERT INTO `items` (`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`,`uuid`) values ('33076','16','','10370','KeyCache: HitRate','jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=HitRate","Value"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'All time cache hit rate.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b3351f07502d4cb8a16d4fa730a72a6a');
INSERT INTO `items` (`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`,`uuid`) values ('33077','16','','10370','KeyCache: Hits per second','jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Hits","Count"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Rate of cache hits.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3980ae66ea1b415baa24078d26ebeaee');
INSERT INTO `items` (`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`,`uuid`) values ('33078','16','','10370','KeyCache: Size','jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Size","Value"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Total size of occupied cache, in bytes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f8fed6058d4b45a7afcaf5a057622c19');
INSERT INTO `items` (`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`,`uuid`) values ('33079','16','','10370','Storage: Errors','jmx["org.apache.cassandra.metrics:type=Storage,name=Exceptions","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of internal exceptions caught. Under normal exceptions this should be zero.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b15aa6f290d14fd1bee094325c444e8b');
INSERT INTO `items` (`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`,`uuid`) values ('33080','16','','10370','Client connections: Native','jmx["org.apache.cassandra.metrics:type=Client,name=connectedNativeClients","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of clients connected to this nodes native protocol server.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','574ff464fe6b43cfb1d07e4ad1383c33');
INSERT INTO `items` (`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`,`uuid`) values ('33081','16','','10370','Client connections: Trifts','jmx["org.apache.cassandra.metrics:type=Client,name=connectedThriftClients","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of connected to this nodes thrift clients.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','15d5bd0e534246a7922f8dbcc2a96a21');
INSERT INTO `items` (`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`,`uuid`) values ('33082','16','','10370','Latency: Client request read median','jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","50thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Total latency serving data to clients in milliseconds - median.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6c1cf4b7835d4c66ac1e42840199594c');
INSERT INTO `items` (`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`,`uuid`) values ('33083','16','','10370','Latency: Client request read 75 percentile','jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","75thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Total latency serving data to clients in milliseconds - p75.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c0606810baad4e438f6d69508cf11581');
INSERT INTO `items` (`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`,`uuid`) values ('33084','16','','10370','Latency: Client request read 95 percentile','jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","95thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Total latency serving data to clients in milliseconds - p95.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ed583b0546c4897b9ff423e36097046');
INSERT INTO `items` (`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`,`uuid`) values ('33085','16','','10370','Client request: Read per second','jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","Count"]','1m','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'The number of client requests per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4f68953ebaca4d089a11c78e04c9170f');
INSERT INTO `items` (`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`,`uuid`) values ('33086','16','','10370','Latency: Client request write median','jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","50thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Total latency serving write requests from clients in milliseconds - median.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','72cdc0188682483d8c1d837f2c9c475b');
INSERT INTO `items` (`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`,`uuid`) values ('33087','16','','10370','Latency: Client request write 75 percentile','jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","75thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Total latency serving write requests from clients in milliseconds - p75.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a63545e0bf8d4c87818fe719c299b508');
INSERT INTO `items` (`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`,`uuid`) values ('33088','16','','10370','Latency: Client request write 95 percentile','jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","95thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Total latency serving write requests from clients in milliseconds - p95.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','955f1f2615a14694bb20eedd07963ada');
INSERT INTO `items` (`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`,`uuid`) values ('33089','16','','10370','Client request: Write per second','jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","Count"]','1m','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'The number of local write requests per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d914d6cd66ad48d09197a30819a386f9');
INSERT INTO `items` (`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`,`uuid`) values ('33090','16','','10370','Client request: Write Timeouts','jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Timeouts","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of write requests timeouts encountered.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','30b3ba5b576045dabda9b3a0914a1dc6');
INSERT INTO `items` (`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`,`uuid`) values ('33091','16','','10370','Compaction: Pending tasks','jmx["org.apache.cassandra.metrics:type=Compaction,name=PendingTasks","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Estimated number of compactions remaining to perform.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e55942a9ef3c41e8993e8c8d849ff026');
INSERT INTO `items` (`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`,`uuid`) values ('33092','16','','10370','Dropped messages: Write (Mutation)','jmx["org.apache.cassandra.metrics:type=DroppedMessage,scope=MUTATION,name=Dropped","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of dropped regular writes messages.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f4686c81fe1b42c2bbe049ec421b4533');
INSERT INTO `items` (`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`,`uuid`) values ('33093','16','','10370','Dropped messages: Read','jmx["org.apache.cassandra.metrics:type=DroppedMessage,scope=READ,name=Dropped","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of dropped regular reads messages.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2001c9fa67bc4ec4b693d289edc38cfa');
INSERT INTO `items` (`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`,`uuid`) values ('33094','16','','10370','Cluster: Nodes up','jmx["org.apache.cassandra.net:type=FailureDetector","UpEndpointCount"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb35aef03e254d98a3d29e8180a1a5a5');
INSERT INTO `items` (`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`,`uuid`) values ('33095','16','','10370','Tables','jmx.discovery[beans,"org.apache.cassandra.metrics:type=Table,keyspace=*,scope=*,name=ReadLatency"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','1',NULL,'Info about keyspaces and tables','0','30d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','504e40d04a024249bfd4ac67891f8a21');
INSERT INTO `items` (`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`,`uuid`) values ('33096','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Bloom filter false ratio','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=BloomFilterFalseRatio","Value"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The ratio of Bloom filter false positives to total checks.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','22c24ee8cfd34623b137c6cad5a2299d');
INSERT INTO `items` (`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`,`uuid`) values ('33097','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Row cache hits','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=RowCacheHit","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The number of row cache hits.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a73d2b8f38184698a3ab7a4bb3742b4a');
INSERT INTO `items` (`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`,`uuid`) values ('33098','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Write latency 95 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WriteLatency","95thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'Latency write to disk in milliseconds.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8d79071ab7ad49c483efbb7503a4b308');
INSERT INTO `items` (`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`,`uuid`) values ('33099','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Write latency 75 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WriteLatency","75thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'Latency write to disk in milliseconds.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','141b38b299e14068abc0c175ae4023e6');
INSERT INTO `items` (`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`,`uuid`) values ('33100','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Waiting on free memtable space95 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WaitingOnFreeMemtableSpace","95thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The time spent waiting for free memtable space either on- or off-heap - p95.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','af19509867e54f19a64a4b66d054e0cf');
INSERT INTO `items` (`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`,`uuid`) values ('33101','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Waiting on free memtable space 75 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WaitingOnFreeMemtableSpace","75thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The time spent waiting for free memtable space either on- or off-heap - p75.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b599e354a5ee417cb056dea424a5792d');
INSERT INTO `items` (`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`,`uuid`) values ('33102','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Disk space used','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=TotalDiskSpaceUsed","Count"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'Disk space used.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a20ace3047bd4a238644dbc55d2f8fed');
INSERT INTO `items` (`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`,`uuid`) values ('33103','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Tombstone scanned 95 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=TombstoneScannedHistogram","95thPercentile"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'Number of tombstones scanned per read - p95.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','70fedfc2310e4eb19195da72c9ada63d');
INSERT INTO `items` (`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`,`uuid`) values ('33104','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Tombstone scanned 75 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=TombstoneScannedHistogram","75thPercentile"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'Number of tombstones scanned per read - p75.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','592bde2f9eb24d7e80b45f3db965b2e0');
INSERT INTO `items` (`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`,`uuid`) values ('33105','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: SS Tables per read 95 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=SSTablesPerReadHistogram","95thPercentile"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The number of SSTable data files accessed per read - p95.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','187487b9d35444da989f9e0e3814798a');
INSERT INTO `items` (`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`,`uuid`) values ('33106','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: SS Tables per read 75 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=SSTablesPerReadHistogram","75thPercentile"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The number of SSTable data files accessed per read - p75.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','53e4852850a74163ad797969d3366eb0');
INSERT INTO `items` (`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`,`uuid`) values ('33107','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Snapshots size','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=SnapshotsSize","Value"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The disk space truly used by snapshots.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','529e7683300b4fe9bb46e3f9ed8a9552');
INSERT INTO `items` (`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`,`uuid`) values ('33108','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Row cache misses','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=RowCacheMiss","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The number of table row cache misses.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','32df58c8fa3a4ad3ba2e70fc056895ad');
INSERT INTO `items` (`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`,`uuid`) values ('33109','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Out of row cache hits','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=RowCacheHitOutOfRange","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The number of row cache hits that do not satisfy the query filter and went to disk.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','213ecd18728a40ffbdbeac07daf0e26f');
INSERT INTO `items` (`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`,`uuid`) values ('33110','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Read per second','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ReadLatency","Count"]','1m','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The number of client requests per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fdec15a1f86b4943bbd72fb992dfce90');
INSERT INTO `items` (`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`,`uuid`) values ('33111','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Bytes flushed','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=BytesFlushed","Count"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The amount of data that was flushed since (re)start.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','417a27c1779a4d08b5673320b1542ad8');
INSERT INTO `items` (`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`,`uuid`) values ('33112','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Read latency 95 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ReadLatency","95thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'Latency read from disk in milliseconds.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','38d31a8a16f04c39a64ee36940ae7eb8');
INSERT INTO `items` (`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`,`uuid`) values ('33113','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Read latency 75 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ReadLatency","75thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'Latency read from disk in milliseconds.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1d240e1fe4b245b0b1b2b30d42e5077e');
INSERT INTO `items` (`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`,`uuid`) values ('33114','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Pending flushes','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=PendingFlushes","Count"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The number of pending flushes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e287e5459644536b9420263b4096dd1');
INSERT INTO `items` (`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`,`uuid`) values ('33115','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Pending compactions','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=PendingCompactions","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The number of pending compactions.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1f44ed6c453d44fc811ae310701df4bf');
INSERT INTO `items` (`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`,`uuid`) values ('33116','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Mean partition size','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=MeanPartitionSize","Value"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The average size of compacted partition.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bdf111fbca884f49a6cda263b8b07feb');
INSERT INTO `items` (`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`,`uuid`) values ('33117','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Max sartition size','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=MaxPartitionSize","Value"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The size of the largest compacted partition.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c447d219390a48f2bbbe0d19211472c8');
INSERT INTO `items` (`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`,`uuid`) values ('33118','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Live SS Table','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=LiveSSTableCount","Value"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'Number of "live" (in use) SSTables.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bf733ba7ab2045d38a88c6f0650ba1f2');
INSERT INTO `items` (`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`,`uuid`) values ('33119','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Live disk space used','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=LiveDiskSpaceUsed","Count"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The disk space used by "live" SSTables (only counts in use files).','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b69ac0bb285a4e8fa82a98f4de2645d2');
INSERT INTO `items` (`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`,`uuid`) values ('33120','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: KeyCache hit rate','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=KeyCacheHitRate","Value"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The key cache hit rate.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b43134f2d2a043f2a61919467619efe2');
INSERT INTO `items` (`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`,`uuid`) values ('33121','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Compression ratio','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=CompressionRatio","Value"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The compression ratio for all SSTables.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9721c8cd9d0f415d9d5ddfeb417cee01');
INSERT INTO `items` (`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`,`uuid`) values ('33122','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Compaction bytes written','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=CompactionBytesWritten","Count"]','1m','7d','365d','0','0','','B','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The amount of data that was compacted since (re)start.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','71b3b14f8ce7414786fa0bcd471e8842');
INSERT INTO `items` (`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`,`uuid`) values ('33123','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Col update time delta 95 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ColUpdateTimeDeltaHistogram","95thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The column update time delta - p95.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','685e1bbe10044d9d9ae2b02357ba2934');
INSERT INTO `items` (`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`,`uuid`) values ('33124','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Col update time delta75 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ColUpdateTimeDeltaHistogram","75thPercentile"]','1m','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The column update time delta - p75.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b6623ca2ba0c4dd9ad2be5fa263896f5');
INSERT INTO `items` (`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`,`uuid`) values ('33125','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Write per second','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WriteLatency","Count"]','1m','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The number of local write requests per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c1a9748ab9824626b9a59c323aff9a3d');
INSERT INTO `items` (`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`,`uuid`) values ('33126','15','','10316','MySQL: Calculated value of innodb_log_file_size','mysql.innodb_log_file_size','1m','7d','365d','0','0','','','','',NULL,NULL,'(last(//mysql.innodb_os_log_written) - last(//mysql.innodb_os_log_written,#1:now-1h)) / {$MYSQL.INNODB_LOG_FILES}','','0','','','','','0',NULL,'Calculated by (innodb_os_log_written-innodb_os_log_written(time shift -1h))/{$MYSQL.INNODB_LOG_FILES} value of the innodb_log_file_size. Innodb_log_file_size is the size in bytes of the each InnoDB redo log file in the log group. The combined size can be no more than 512GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e5413d85449e4baea683c6365808cc17');
INSERT INTO `items` (`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`,`uuid`) values ('33140','15','','10320','MySQL: Calculated value of innodb_log_file_size','mysql.innodb_log_file_size','1m','7d','365d','0','0','','','','',NULL,NULL,'(last(//mysql.innodb_os_log_written) - last(//mysql.innodb_os_log_written,#1:now-1h)) / {$MYSQL.INNODB_LOG_FILES}','','0','','','','','0',NULL,'Calculated by (innodb_os_log_written-innodb_os_log_written(time shift -1h))/{$MYSQL.INNODB_LOG_FILES} value of the innodb_log_file_size. Innodb_log_file_size is the size in bytes of the each InnoDB redo log file in the log group. The combined size can be no more than 512GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e35cf67b6d2f44ffae908296faccfa50');
INSERT INTO `items` (`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`,`uuid`) values ('33154','15','','10317','MySQL: Calculated value of innodb_log_file_size','mysql.innodb_log_file_size','1m','7d','365d','0','0','','','','',NULL,NULL,'(last(//mysql.innodb_os_log_written) - last(//mysql.innodb_os_log_written,#1:now-1h)) / {$MYSQL.INNODB_LOG_FILES}','','0','','','','','0',NULL,'Calculated by (innodb_os_log_written-innodb_os_log_written(time shift -1h))/{$MYSQL.INNODB_LOG_FILES} value of the innodb_log_file_size. Innodb_log_file_size is the size in bytes of the each InnoDB redo log file in the log group. The combined size can be no more than 512GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4680fd31a2514e3f827b0060a6d5bfc4');
INSERT INTO `items` (`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`,`uuid`) values ('33172','0','','10329','PostgreSQL: Custom queries','pgsql.custom.query["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}",""]','1m','1h','0','1','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Execute custom queries from file *.sql (check for option Plugins.Postgres.CustomQueriesPath at agent configuration)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1cab825fac8a49ba96dfbf7a696be729');
INSERT INTO `items` (`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`,`uuid`) values ('33173','15','','10329','PostgreSQL: Cache hit','pgsql.cache.hit["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//pgsql.dbstat.sum.blks_hit.rate) * 100 / (last(//pgsql.dbstat.sum.blks_hit.rate) + last(//pgsql.dbstat.sum.blks_read.rate))','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b98d2328694f44598f2177b3f93d4b90');
INSERT INTO `items` (`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`,`uuid`) values ('33174','0','','10329','PostgreSQL: Age of oldest xid','pgsql.oldest.xid["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Age of oldest xid.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0377fe6f2f8d4539b649c636ab012415');
INSERT INTO `items` (`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`,`uuid`) values ('33175','0','','10329','PostgreSQL: Get replication','pgsql.replication.process["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect metrics from the pg_stat_replication, which contains information about the WAL sender process, showing statistics about replication to that sender\'s connected standby server.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4120befb754d47e9a931f868c28badb9');
INSERT INTO `items` (`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`,`uuid`) values ('33177','0','','10329','Replication Discovery','pgsql.replication.process.discovery["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"]','15m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e94f9017c06644a2bbcb48697381556d');
INSERT INTO `items` (`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`,`uuid`) values ('33181','20','discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3,{#THRESHOLD_LO_WARN},1.3.6.1.4.1.30065.3.12.1.1.1.1,{#THRESHOLD_LO_CRIT},1.3.6.1.4.1.30065.3.12.1.1.1.2,{#THRESHOLD_HI_WARN},1.3.6.1.4.1.30065.3.12.1.1.1.3,{#THRESHOLD_HI_CRIT},1.3.6.1.4.1.30065.3.12.1.1.1.4]','10254','Get sensors','sensors.get','1h','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets sensors with type, description, and thresholds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8954dfa9dc4445ad987f764e35c7db6e');
INSERT INTO `items` (`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`,`uuid`) values ('33183','20','1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX}','10254','{#SENSOR_INFO}: Voltage','sensor.voltage.value[entPhySensorValue.{#SNMPINDEX}]','1m','90d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-SENSORS-MIB\r\nThe most recent measurement obtained by the agent for this sensor.\r\nTo correctly interpret the value of this object, the associated entPhySensorType,\r\nentPhySensorScale, and entPhySensorPrecision objects must also be examined.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7f66af7d12864f2cbaa8a106979ec427');
INSERT INTO `items` (`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`,`uuid`) values ('33184','20','1.3.6.1.4.1.33333.5.64.0','10371','Array: Sweep Pmax','array.sweep_pmax[arrayMaxPowerSweep.0]','1m','7d','365d','0','0','','W','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT\r\nArray Max. Power (sweep)\r\n Description:Array Max. Power (last sweep)\r\n Scaling Factor:1.0\r\n Units:W\r\n Range:[0.0, 500]\r\n Modbus address:0x003E','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a517a7aafbab426eb6ced8d5f57c1fa4');
INSERT INTO `items` (`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`,`uuid`) values ('33185','20','1.3.6.1.4.1.33333.5.53.0','10371','Load: State','load.state[loadState.0]','1m','7d','365d','0','0','','','','',NULL,'193','','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT\r\nLoad State\r\n Description:Load State\r\n Modbus address:0x002E\r\n\r\n 0: Start\r\n1: Normal\r\n2: LvdWarning\r\n3: Lvd\r\n4: Fault\r\n5: Disconnect\r\n6: NormalOff\r\n7: Override\r\n8: NotUsed','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ae927b5cba5b43f5a2136fd3ee71b63d');
INSERT INTO `items` (`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`,`uuid`) values ('33186','20','1.3.6.1.4.1.33333.5.39.0','10371','Temperature: Battery','temp.battery[batteryTemperature.0]','1m','7d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT\r\nBattery Temperature\r\n Description:Battery Temperature\r\n Scaling Factor:1.0\r\n Units:deg C\r\n Range:[-128, 127]\r\n Modbus address:0x001B','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1a8e79f49e86429abc80dd29598299ee');
INSERT INTO `items` (`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`,`uuid`) values ('33187','20','1.3.6.1.4.1.33333.5.40.0','10371','Temperature: Ambient','temp.ambient[ambientTemperature.0]','1m','7d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT\r\nAmbient Temperature\r\n Description:Ambient Temperature\r\n Scaling Factor:1.0\r\n Units:deg C\r\n Range:[-128, 127]\r\n Modbus address:0x001C','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9a87cdcf65184059be334e986bcf801d');
INSERT INTO `items` (`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`,`uuid`) values ('33188','20','1.3.6.1.4.1.33333.5.48.0','10371','Battery: Target Voltage','target.voltage[targetVoltage.0]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT\r\nTarget Voltage\r\n Description:Target Regulation Voltage\r\n Scaling Factor:1.0\r\n Units:V\r\n Range:[0.0, 80.0]\r\n Modbus address:0x0024','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','20ce95acdff6486684461f10579a73b4');
INSERT INTO `items` (`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`,`uuid`) values ('33189','20','1.3.6.1.2.1.1.3.0','10371','Status: Uptime (network)','status.net.uptime','1m','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','526ee94df484462a9264e57d92954e64');
INSERT INTO `items` (`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`,`uuid`) values ('33190','20','1.3.6.1.4.1.33333.5.54.0','10371','Status: Load Faults','status.load_faults[loadFaults.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT\r\nDescription:Array Faults\r\nModbus address:0x0022','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb4d2147a8224b599ad908eca1b019e4');
INSERT INTO `items` (`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`,`uuid`) values ('33191','20','1.3.6.1.4.1.33333.5.46.0','10371','Status: Array Faults','status.array_faults[arrayFaults.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT\r\nDescription:Array Faults\r\nModbus address:0x0022','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8fbb5c650fa040c892a1d10a17fbbf14');
INSERT INTO `items` (`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`,`uuid`) values ('33192','20','1.3.6.1.4.1.33333.5.59.0','10371','Status: Alarms','status.alarms[alarms.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT\r\nDescription:Alarms\r\nModbus addresses:H=0x0038 L=0x0039','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d44cb5d7db31402dae79275a9148817d');
INSERT INTO `items` (`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`,`uuid`) values ('33193','20','1.3.6.1.4.1.33333.5.32.0','10371','Load: Voltage','load.voltage[loadVoltage.0]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT\r\nLoad Voltage\r\n Description:Load Voltage\r\n Scaling Factor:1.0\r\n Units:V\r\n Range:[0, 80]\r\n Modbus address:0x0014','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','47894752dd1d41f1aa882387acf6dc3a');
INSERT INTO `items` (`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`,`uuid`) values ('33194','20','1.3.6.1.4.1.33333.5.34.0','10371','Load: Current','load.current[loadCurrent.0]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT\r\nLoad Current\r\n Description:Load Current\r\n Scaling Factor:1.0\r\n Units:A\r\n Range:[0, 60]\r\n Modbus address:0x0016','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','29a7d76472fb4025bc78fbeab273e955');
INSERT INTO `items` (`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`,`uuid`) values ('33195','20','1.3.6.1.4.1.33333.5.63.0','10371','Array: Sweep Vmp','array.sweep_vmp[arrayVmp.0]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT\r\nArray Vmp\r\n Description:Array Max. Power Point Voltage\r\n Scaling Factor:1.0\r\n Units:V\r\n Range:[0.0, 5000.0]\r\n Modbus address:0x003D','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7714c76013e341f8b6753cc5a50a960f');
INSERT INTO `items` (`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`,`uuid`) values ('33196','20','1.3.6.1.4.1.33333.5.56.0','10371','Counter: Load Amp-hours','counter.load_amp_hours[ahLoadResettable.0]','1m','7d','365d','0','0','','Ah','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT\r\nDescription:Ah Load (Resettable)\r\nScaling Factor:0.1\r\nUnits:Ah\r\nRange:[0.0, 4294967294]\r\nModbus addresses:H=0x0032 L=0x0033','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c72ef851c2d240c9835c1703cec49fd6');
INSERT INTO `items` (`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`,`uuid`) values ('33197','20','1.3.6.1.4.1.33333.5.51.0','10371','Counter: Charge KW-hours','counter.charge_kw_hours[kwhChargeResettable.0]','1m','7d','365d','0','0','','!kWh','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT\r\nkWh Charge (Resettable)\r\nDescription:Kilowatt Hours Charge (Resettable)\r\nScaling Factor:1.0\r\nUnits:kWh\r\nRange:[0.0, 65535]\r\nModbus address:0x002A','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4a53a2211a1249d59369ad65762ffe47');
INSERT INTO `items` (`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`,`uuid`) values ('33198','20','1.3.6.1.4.1.33333.5.49.0','10371','Counter: Charge Amp-hours','counter.charge_amp_hours[ahChargeResettable.0]','1m','7d','365d','0','0','','Ah','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT\r\nAh Charge (Resettable)\r\n Description:Ah Charge (Resettable)\r\n Scaling Factor:0.1\r\n Units:Ah\r\n Range:[0.0, 4294967294]\r\n Modbus addresses:H=0x0026 L=0x0027','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','009eb72ff6674da49d1dd85a6f9459cf');
INSERT INTO `items` (`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`,`uuid`) values ('33199','20','1.3.6.1.4.1.33333.5.45.0','10371','Battery: Charge State','charge.state[chargeState.0]','1m','7d','365d','0','0','','','','',NULL,'192','','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT\r\nCharge State\r\n Description:Control State\r\n Modbus address:0x0021\r\n\r\n 0: Start\r\n 1: NightCheck\r\n 2: Disconnect\r\n 3: Night\r\n 4: Fault\r\n 5: BulkMppt\r\n 6: Absorption\r\n 7: Float\r\n 8: Equalize\r\n 9: Slave\r\n 10: Fixed','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1b1b61995c0d4d89a7f9ad4e14c3541f');
INSERT INTO `items` (`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`,`uuid`) values ('33200','20','1.3.6.1.4.1.33333.5.33.0','10371','Battery: Charge Current','charge.current[chargeCurrent.0]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT\r\nCharge Current\r\n Description:Charge Current\r\n Scaling Factor:1.0\r\n Units:A\r\n Range:[0, 40]\r\n Modbus address:0x0010','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ed1d54fce0904b7c9d0895a094f55108');
INSERT INTO `items` (`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`,`uuid`) values ('33201','20','1.3.6.1.4.1.33333.5.30.0','10371','Battery: Battery Voltage discovery','battery.voltage.discovery[batteryTerminalVoltage.0]','15m','0','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fe5c3b724e894573acdaf522a2213adb');
INSERT INTO `items` (`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`,`uuid`) values ('33202','20','1.3.6.1.4.1.33333.5.31.0','10371','Array: Voltage','array.voltage[arrayVoltage.0]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT\r\nArray Voltage\r\n Description:Array Voltage\r\n Scaling Factor:1.0\r\n Units:V\r\n Range:[0, 80]\r\n Modbus address:0x0013','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','41a1118e1be3417daa79faace733d861');
INSERT INTO `items` (`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`,`uuid`) values ('33203','20','1.3.6.1.4.1.33333.5.65.0','10371','Array: Sweep Voc','array.sweep_voc[arrayVoc.0]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT\r\nArray Voc\r\n Description:Array Open Circuit Voltage\r\n Scaling Factor:1.0\r\n Units:V\r\n Range:[0.0, 80.0]\r\n Modbus address:0x003F','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','379ab969ad784968a1090ff98f5801ff');
INSERT INTO `items` (`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`,`uuid`) values ('33204','20','1.3.6.1.4.1.33333.5.38.0','10371','Temperature: Heatsink','temp.heatsink[heatsinkTemperature.0]','1m','7d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT\r\nHeatsink Temperature\r\n Description:Heatsink Temperature\r\n Scaling Factor:1.0\r\n Units:deg C\r\n Range:[-128, 127]\r\n Modbus address:0x001A','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7d0cf28c0d334154971738df11775d1f');
INSERT INTO `items` (`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`,`uuid`) values ('33206','20','1.3.6.1.4.1.33333.5.30.0','10371','Battery: Voltage{#SINGLETON}','battery.voltage[batteryTerminalVoltage.0{#SINGLETON}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PROSTAR-MPPT\r\nBattery Terminal Voltage\r\nDescription:Battery Terminal Voltage\r\nScaling Factor:1.0\r\nUnits:V\r\nRange:[0.0, 80.0]\r\nModbus address:0x0012','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c02c73a349ec4a6b8557e142c4866148');
INSERT INTO `items` (`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`,`uuid`) values ('33207','20','1.3.6.1.4.1.33333.6.31.0','10372','Array: Voltage','array.voltage[arrayVoltage.0]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM\r\nDescription:Array Voltage\r\nScaling Factor:1.0\r\nUnits:V\r\nRange:[0, 80]\r\nModbus address:0x0013','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','953fb8b3c23f420bb6132874ce3e33e2');
INSERT INTO `items` (`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`,`uuid`) values ('33208','20','1.3.6.1.4.1.33333.6.59.0','10372','Status: Alarms','status.alarms[alarms.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM\r\nDescription:Alarms\r\nModbus addresses:H=0x0038 L=0x0039','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7c1c1e03425c4b4bb176cf45458b916a');
INSERT INTO `items` (`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`,`uuid`) values ('33209','20','1.3.6.1.4.1.33333.6.39.0','10372','Temperature: Battery','temp.battery[batteryTemperature.0]','1m','7d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM\r\nDescription:Battery Temperature\r\nScaling Factor:1.0\r\nUnits:deg C\r\nRange:[-128, 127]\r\nModbus address:0x001B','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','39763f7fccd94aefb720a34871c0962b');
INSERT INTO `items` (`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`,`uuid`) values ('33210','20','1.3.6.1.4.1.33333.6.40.0','10372','Temperature: Ambient','temp.ambient[ambientTemperature.0]','1m','7d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM\r\nDescription:Ambient Temperature\r\nScaling Factor:1.0\r\nUnits:deg C\r\nRange:[-128, 127]\r\nModbus address:0x001C','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','13d3479a7b5940b5a53d5f13bea9e2d1');
INSERT INTO `items` (`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`,`uuid`) values ('33211','20','1.3.6.1.4.1.33333.6.48.0','10372','Battery: Target Voltage','target.voltage[targetVoltage.0]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM\r\nDescription:Target Regulation Voltage\r\nScaling Factor:1.0\r\nUnits:V\r\nRange:[0.0, 80.0]\r\nModbus address:0x0024','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f4b7bfb000754a17b4719863d3755519');
INSERT INTO `items` (`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`,`uuid`) values ('33212','20','1.3.6.1.2.1.1.3.0','10372','Status: Uptime (network)','status.net.uptime','1m','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','42f6a75d923d4262b37d85c4f7d1d322');
INSERT INTO `items` (`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`,`uuid`) values ('33213','20','1.3.6.1.4.1.33333.6.54.0','10372','Status: Load Faults','status.load_faults[loadFaults.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM\r\nDescription:Load Faults\r\nModbus address:0x002F','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1cd47d04af104cb9ab1cd7dc745a6aea');
INSERT INTO `items` (`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`,`uuid`) values ('33214','20','1.3.6.1.4.1.33333.6.46.0','10372','Status: Array Faults','status.array_faults[arrayFaults.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM\r\nDescription:Array Faults\r\nModbus address:0x0022','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2517d96e51c14372a0336c9a6ed5d078');
INSERT INTO `items` (`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`,`uuid`) values ('33215','20','1.3.6.1.4.1.33333.6.32.0','10372','Load: Voltage','load.voltage[loadVoltage.0]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM\r\nDescription:Load Voltage\r\nScaling Factor:1.0\r\nUnits:V\r\nRange:[0, 80]\r\nModbus address:0x0014','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cccc0976a62b47b1a558d521704c125d');
INSERT INTO `items` (`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`,`uuid`) values ('33216','20','1.3.6.1.4.1.33333.6.30.0','10372','Battery: Battery Voltage discovery','battery.voltage.discovery[batteryTerminalVoltage.0]','15m','0','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a80ad3ace9b14446bc5fd5d6aaa5af87');
INSERT INTO `items` (`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`,`uuid`) values ('33217','20','1.3.6.1.4.1.33333.6.53.0','10372','Load: State','load.state[loadState.0]','1m','7d','365d','0','0','','','','',NULL,'195','','','0','','','','','0',NULL,'MIB: PROSTAR-PWM\r\nDescription:Load State\r\nModbus address:0x002E\r\n\r\n0: Start\r\n1: Normal\r\n2: LvdWarning\r\n3: Lvd\r\n4: Fault\r\n5: Disconnect\r\n6: NormalOff\r\n7: Override\r\n8: NotUsed','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','14b3ca3869374f54a467e5e9017f918a');
INSERT INTO `items` (`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`,`uuid`) values ('33218','20','1.3.6.1.4.1.33333.6.34.0','10372','Load: Current','load.current[loadCurrent.0]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM\r\nDescription:Load Current\r\nScaling Factor:1.0\r\nUnits:A\r\nRange:[0, 60]\r\nModbus address:0x0016','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dcade8607cf142a2b88333f9880448fc');
INSERT INTO `items` (`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`,`uuid`) values ('33219','20','1.3.6.1.4.1.33333.6.56.0','10372','Counter: Load Amp-hours','counter.load_amp_hours[ahLoadResettable.0]','1m','7d','365d','0','0','','Ah','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM\r\nDescription:Ah Load (Resettable)\r\nScaling Factor:0.1\r\nUnits:Ah\r\nRange:[0.0, 4294967294]\r\nModbus addresses:H=0x0032 L=0x0033','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','104a7db1c27d40b3bbee506f7f922393');
INSERT INTO `items` (`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`,`uuid`) values ('33220','20','1.3.6.1.4.1.33333.6.51.0','10372','Counter: Charge KW-hours','counter.charge_kw_hours[kwhChargeResettable.0]','1m','7d','365d','0','0','','!kWh','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM\r\nDescription:Kilowatt Hours Charge (Resettable)\r\nScaling Factor:1.0\r\nUnits:kWh\r\nRange:[0.0, 65535]\r\nModbus address:0x002A','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0e7124df3f2b4298b1a13576d0b2d5e7');
INSERT INTO `items` (`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`,`uuid`) values ('33221','20','1.3.6.1.4.1.33333.6.49.0','10372','Counter: Charge Amp-hours','counter.charge_amp_hours[ahChargeResettable.0]','1m','7d','365d','0','0','','Ah','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM\r\nDescription:Ah Charge (Resettable)\r\nScaling Factor:0.1\r\nUnits:Ah\r\nRange:[0.0, 4294967294]\r\nModbus addresses:H=0x0026 L=0x0027','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8acd2e7944694a828cf9b739b75513d9');
INSERT INTO `items` (`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`,`uuid`) values ('33222','20','1.3.6.1.4.1.33333.6.45.0','10372','Battery: Charge State','charge.state[chargeState.0]','1m','7d','365d','0','0','','','','',NULL,'194','','','0','','','','','0',NULL,'MIB: PROSTAR-PWM\r\nDescription:Control State\r\nModbus address:0x0021\r\n\r\n0: Start\r\n1: NightCheck\r\n2: Disconnect\r\n3: Night\r\n4: Fault\r\n5: Bulk\r\n6: Pwm\r\n7: Float\r\n8: Equalize','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a7ae2d3b911e4bb5a7eeb770470245a5');
INSERT INTO `items` (`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`,`uuid`) values ('33223','20','1.3.6.1.4.1.33333.6.33.0','10372','Battery: Charge Current','charge.current[chargeCurrent.0]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM\r\nDescription:Charge Current\r\nScaling Factor:1.0\r\nUnits:A\r\nRange:[0, 40]\r\nModbus address:0x0011','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','148008b117c94155ba81600e3050ab25');
INSERT INTO `items` (`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`,`uuid`) values ('33224','20','1.3.6.1.4.1.33333.6.38.0','10372','Temperature: Heatsink','temp.heatsink[heatsinkTemperature.0]','1m','7d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM\r\nDescription:Heatsink Temperature\r\nScaling Factor:1.0\r\nUnits:deg C\r\nRange:[-128, 127]\r\nModbus address:0x001A','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1d13bd3ea24a4fcab3cd5b7586e6033a');
INSERT INTO `items` (`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`,`uuid`) values ('33226','20','1.3.6.1.4.1.33333.6.30.0','10372','Battery: Voltage{#SINGLETON}','battery.voltage[batteryTerminalVoltage.0{#SINGLETON}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PROSTAR-PWM\r\nDescription:Control State\r\nModbus address:0x0021','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6e4ed5ae449c48eeb328d30b76d083a2');
INSERT INTO `items` (`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`,`uuid`) values ('33227','20','1.3.6.1.4.1.33333.3.57.0','10373','Array: Sweep Pmax','array.sweep_pmax[arrayMaxPowerSweep.0]','1m','7d','365d','0','0','','W','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT\r\nDescription:Array Open Circuit Voltage\r\nScaling Factor:0.0030517578125\r\nUnits:V\r\nRange:[0.0, 80.0]\r\nModbus address:0x002A','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9836b1fc81b84a44b2a708291bd5bf1a');
INSERT INTO `items` (`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`,`uuid`) values ('33228','20','1.3.6.1.4.1.33333.3.46.0','10373','Load: State','load.state[loadState.0]','1m','7d','365d','0','0','','','','',NULL,'197','','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT\r\nDescription:Load State\r\nModbus address:0x001A\r\n\r\n0: Start\r\n1: Normal\r\n2: LvdWarning\r\n3: Lvd\r\n4: Fault\r\n5: Disconnect\r\n6: NormalOff\r\n7: Override\r\n8: NotUsed','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c5dfef2deee445ec88e2d63dbfbbaf68');
INSERT INTO `items` (`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`,`uuid`) values ('33229','20','1.3.6.1.4.1.33333.3.36.0','10373','Temperature: Battery','temp.battery[batteryTemperature.0]','1m','7d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT\r\nDescription:Heatsink Temperature\r\nScaling Factor:1.0\r\nUnits:deg C\r\nRange:[-128, 127]\r\nModbus address:0x000D','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','157faa85ae244950b4a114b95bad6d50');
INSERT INTO `items` (`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`,`uuid`) values ('33230','20','1.3.6.1.4.1.33333.3.37.0','10373','Temperature: Ambient','temp.ambient[ambientTemperature.0]','1m','7d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT\r\nDescription:Ambient Temperature\r\nScaling Factor:1.0\r\nUnits:deg C\r\nRange:[-128, 127]\r\nModbus address:0x000F','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','430cf6fcb9b74943a8ca7f1d9d06fa56');
INSERT INTO `items` (`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`,`uuid`) values ('33231','20','1.3.6.1.4.1.33333.3.42.0','10373','Battery: Target Voltage','target.voltage[targetVoltage.0]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT\r\nDescription:Target Regulation Voltage\r\nScaling Factor:0.0030517578125\r\nUnits:V\r\nRange:[0.0, 80.0]\r\nModbus address:0x0014','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','52afa576b83b49e69ec8d379fbc42965');
INSERT INTO `items` (`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`,`uuid`) values ('33232','20','1.3.6.1.2.1.1.3.0','10373','Status: Uptime (network)','status.net.uptime','1m','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','63512390f2a04885bf8d0e19653a72b1');
INSERT INTO `items` (`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`,`uuid`) values ('33233','20','1.3.6.1.4.1.33333.3.47.0','10373','Status: Load Faults','status.load_faults[loadFaults.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT\r\nDescription:Array Faults\r\nModbus address:0x0012','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','24762b0c264745548150a4bd5913156f');
INSERT INTO `items` (`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`,`uuid`) values ('33234','20','1.3.6.1.4.1.33333.3.40.0','10373','Status: Array Faults','status.array_faults[arrayFaults.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT\r\nDescription:Array Faults\r\nModbus address:0x0012','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f44756455697466cb905aa6ae4d0220d');
INSERT INTO `items` (`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`,`uuid`) values ('33235','20','1.3.6.1.4.1.33333.3.52.0','10373','Status: Alarms','status.alarms[alarms.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT\r\nDescription:Alarms\r\nModbus addresses:H=0x0023 L=0x0024','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','91f2c1893b594e808032eb0140247d7a');
INSERT INTO `items` (`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`,`uuid`) values ('33236','20','1.3.6.1.4.1.33333.3.32.0','10373','Load: Voltage','load.voltage[loadVoltage.0]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT\r\nDescription:Load Voltage\r\nScaling Factor:0.0030517578125\r\nUnits:V\r\nRange:[0, 80]\r\nModbus address:0x000A','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a9ca69fcedbb4524a8eb4b92b975008e');
INSERT INTO `items` (`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`,`uuid`) values ('33237','20','1.3.6.1.4.1.33333.3.34.0','10373','Load: Current','load.current[loadCurrent.0]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT\r\nDescription:Load Current\r\nScaling Factor:0.002415771484375\r\nUnits:A\r\nRange:[0, 60]\r\nModbus address:0x000C','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6491ee507d9a4c099852d33e57df48a9');
INSERT INTO `items` (`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`,`uuid`) values ('33238','20','1.3.6.1.4.1.33333.3.56.0','10373','Array: Sweep Vmp','array.sweep_vmp[arrayVmp.0]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT\r\nDescription:Array Max. Power Point Voltage\r\nScaling Factor:0.0030517578125\r\nUnits:V\r\nRange:[0.0, 5000.0]\r\nModbus address:0x0028','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0842746ca41c44128a575113307259e2');
INSERT INTO `items` (`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`,`uuid`) values ('33239','20','1.3.6.1.4.1.33333.3.49.0','10373','Counter: Load Amp-hours','counter.load_amp_hours[ahLoadResettable.0]','1m','7d','365d','0','0','','Ah','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT\r\nDescription:Ah Load(Resettable)\r\nScaling Factor:0.1\r\nUnits:Ah\r\nRange:[0.0, 4294967294]\r\nModbus addresses:H=0x001D L=0x001E','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','28e679eace174d289ca5ccf90f3b9150');
INSERT INTO `items` (`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`,`uuid`) values ('33240','20','1.3.6.1.4.1.33333.3.45.0','10373','Counter: Charge KW-hours','counter.charge_kw_hours[kwhCharge.0]','1m','7d','365d','0','3','','!kWh','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f6d0f89c747b4418ad34c32b5ac9a5b9');
INSERT INTO `items` (`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`,`uuid`) values ('33241','20','1.3.6.1.4.1.33333.3.43.0','10373','Counter: Charge Amp-hours','counter.charge_amp_hours[ahChargeResettable.0]','1m','7d','365d','0','0','','Ah','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT\r\nDescription:Ah Charge(Resettable)\r\nScaling Factor:0.1\r\nUnits:Ah\r\nRange:[0.0, 4294967294]\r\nModbus addresses:H=0x0015 L=0x0016','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','149545b9154044e3af27b4e9ad809c0e');
INSERT INTO `items` (`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`,`uuid`) values ('33242','20','1.3.6.1.4.1.33333.3.39.0','10373','Battery: Charge State','charge.state[chargeState.0]','1m','7d','365d','0','0','','','','',NULL,'196','','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT\r\nDescription:Control State\r\nModbus address:0x0011\r\n\r\n0: Start\r\n1: NightCheck\r\n2: Disconnect\r\n3: Night\r\n4: Fault\r\n5: BulkMppt\r\n6: Pwm\r\n7: Float\r\n8: Equalize','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4da765c8e26540c190ea07be08b87abc');
INSERT INTO `items` (`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`,`uuid`) values ('33243','20','1.3.6.1.4.1.33333.3.33.0','10373','Battery: Charge Current','charge.current[chargeCurrent.0]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT\r\nDescription:Target Regulation Voltage\r\nScaling Factor:0.0030517578125\r\nUnits:V\r\nRange:[0.0, 80.0]\r\nModbus address:0x0014','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a36313ef0933403788a42de8a62b4838');
INSERT INTO `items` (`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`,`uuid`) values ('33244','20','1.3.6.1.4.1.33333.3.30.0','10373','Battery: Battery Voltage discovery','battery.voltage.discovery[batteryVoltage.0]','15m','0','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f8803a1390b745f08673d4ea998548a9');
INSERT INTO `items` (`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`,`uuid`) values ('33245','20','1.3.6.1.4.1.33333.3.31.0','10373','Array: Voltage','array.voltage[arrayVoltage.0]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT\r\nDescription:Array Voltage\r\nScaling Factor:0.0030517578125\r\nUnits:V\r\nRange:[0, 80]\r\nModbus address:0x0009','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da1f347b28dd4fbeb123f228adefb0ed');
INSERT INTO `items` (`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`,`uuid`) values ('33246','20','1.3.6.1.4.1.33333.3.58.0','10373','Array: Sweep Voc','array.sweep_voc[arrayVoc.0]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT\r\nDescription:Array Open Circuit Voltage\r\nScaling Factor:0.0030517578125\r\nUnits:V\r\nRange:[0.0, 80.0]\r\nModbus address:0x002A','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0e3371208513416ab1b9afdf2c3b2c08');
INSERT INTO `items` (`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`,`uuid`) values ('33247','20','1.3.6.1.4.1.33333.3.35.0','10373','Temperature: Heatsink','temp.heatsink[heatsinkTemperature.0]','1m','7d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT\r\nDescription:Battery Temperature\r\nScaling Factor:1.0\r\nUnits:deg C\r\nRange:[-128, 127]\r\nModbus address:0x000E','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5f238fe557a7412cad5f3864e407284e');
INSERT INTO `items` (`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`,`uuid`) values ('33249','20','1.3.6.1.4.1.33333.3.30.0','10373','Battery: Voltage{#SINGLETON}','battery.voltage[batteryVoltage.0{#SINGLETON}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: SUNSAVER-MPPT\r\nDescription:Control State\r\nModbus address:0x0011','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','903b96b7eb37482da469fc802d3da1b0');
INSERT INTO `items` (`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`,`uuid`) values ('33250','20','1.3.6.1.4.1.33333.9.30.0','10374','Battery: Battery Voltage discovery','battery.voltage.discovery[batteryVoltageSlow.0]','15m','0','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SURESINE','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c577d82138d04ca689155f01fe32dd74');
INSERT INTO `items` (`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`,`uuid`) values ('33251','20','1.3.6.1.4.1.33333.9.31.0','10374','Load: A/C Current','load.ac_current[acCurrent.0]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SURESINE\r\nDescription:AC Output Current\r\nScaling Factor:0.0001953125\r\nUnits:A\r\nRange:[0.0, 17]\r\nModbus address:0x0005','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0cbf90bdfbc44bc9939167625c20aaed');
INSERT INTO `items` (`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`,`uuid`) values ('33252','20','1.3.6.1.4.1.33333.9.33.0','10374','Load: State','load.state[loadState.0]','1m','7d','365d','0','0','','','','',NULL,'198','','','0','','','','','0',NULL,'MIB: SURESINE\r\nDescription:Load State\r\nModbus address:0x000B\r\n\r\n 0: Start\r\n1: LoadOn\r\n2: LvdWarning\r\n3: LowVoltageDisconnect\r\n4: Fault\r\n5: Disconnect\r\n6: NormalOff\r\n7: UnknownState\r\n8: Standby','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','193eeecf87c24527b5ba4b0df2b66cfc');
INSERT INTO `items` (`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`,`uuid`) values ('33253','20','1.3.6.1.4.1.33333.9.34.0','10374','Status: Alarms','status.alarms[alarms.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SURESINE\r\nDescription:Faults\r\nModbus address:0x0007','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d15815c3d6024a83ac03425e23d798cd');
INSERT INTO `items` (`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`,`uuid`) values ('33254','20','1.3.6.1.4.1.33333.9.35.0','10374','Status: Faults','status.faults[faults.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SURESINE\r\nDescription:Faults\r\nModbus address:0x0007','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d92ff915ccda482db946118238ea2ef3');
INSERT INTO `items` (`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`,`uuid`) values ('33255','20','1.3.6.1.2.1.1.3.0','10374','Status: Uptime (network)','status.net.uptime','1m','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cb4a5c3033f84baa8260a8199265e5a9');
INSERT INTO `items` (`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`,`uuid`) values ('33256','20','1.3.6.1.4.1.33333.9.32.0','10374','Temperature: Heatsink','temp.heatsink[heatsinkTemperature.0]','1m','7d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SURESINE\r\nDescription:Heatsink Temperature\r\nScaling Factor:1\r\nUnits:C\r\nRange:[-128, 127]\r\nModbus address:0x0006','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c6119c74beeb4ab69854d52f2eaa969d');
INSERT INTO `items` (`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`,`uuid`) values ('33258','20','1.3.6.1.4.1.33333.9.30.0','10374','Battery: Voltage{#SINGLETON}','battery.voltage[batteryVoltageSlow.0{#SINGLETON}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: SURESINE\r\nDescription:Battery Voltage(slow)\r\nScaling Factor:0.0002581787109375\r\nUnits:V\r\nRange:[0.0, 17.0]\r\nModbus address:0x0004','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3a526ad82f7a48c589c3079599e0334e');
INSERT INTO `items` (`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`,`uuid`) values ('33259','20','1.3.6.1.4.1.33333.7.31.0','10375','Array: Array Current','array.current[arrayCurrent.0]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Array Current\r\nScaling Factor:1.0\r\nUnits:A\r\nRange:[-10, 80]\r\nModbus address:0x001d','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2e83c42d78e8486f936733e3cb6dee6b');
INSERT INTO `items` (`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`,`uuid`) values ('33260','20','1.3.6.1.4.1.33333.7.50.0','10375','Counter: Charge Amp-hours','counter.charge_amp_hours[ahChargeResetable.0]','1m','7d','365d','0','0','','Ah','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Ah Charge Resettable\r\nScaling Factor:1.0\r\nUnits:Ah\r\nRange:[0.0, 5000]\r\nModbus addresses:H=0x0034 L=0x0035','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3d67ceefb2c443d38051e2d22aca45ce');
INSERT INTO `items` (`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`,`uuid`) values ('33261','20','1.3.6.1.4.1.33333.7.48.0','10375','Temperature: Battery','temp.battery[batteryTemperature.0]','1m','7d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Batt. Temp\r\nScaling Factor:1.0\r\nUnits:C\r\nRange:[-40, 80]\r\nModbus address:0x0025','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4f3fdc6382704fb584fbe11264a0e5c2');
INSERT INTO `items` (`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`,`uuid`) values ('33262','20','1.3.6.1.4.1.33333.7.45.0','10375','Battery: Target Voltage','target.voltage[targetRegulationVoltage.0]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Target Voltage\r\nScaling Factor:1.0\r\nUnits:V\r\nRange:[-10, 650.0]\r\nModbus address:0x0033','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','738f2e6d143a4e6db3ecf2736ca843cb');
INSERT INTO `items` (`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`,`uuid`) values ('33263','20','1.3.6.1.2.1.1.3.0','10375','Status: Uptime (network)','status.net.uptime','1m','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e6a4dd0a61c8479985a1179842d22766');
INSERT INTO `items` (`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`,`uuid`) values ('33264','20','1.3.6.1.4.1.33333.7.55.0','10375','Status: Faults','status.faults[faults.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Faults\r\nModbus addresses:H=0x002c L=0x002d','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','81efe20cce1b4b26a6eda83e86fbd49c');
INSERT INTO `items` (`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`,`uuid`) values ('33265','20','1.3.6.1.4.1.33333.7.57.0','10375','Status: Alarms','status.alarms[alarms.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Alarms\r\nModbus addresses:H=0x002e L=0x002f','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a2b5a78fe649480ea0cc580b5fa30bde');
INSERT INTO `items` (`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`,`uuid`) values ('33266','20','1.3.6.1.4.1.33333.7.52.0','10375','Counter: Charge KW-hours','counter.charge_kw_hours[kwhChargeResetable.0]','1m','7d','365d','0','0','','!kWh','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:kWh Charge Resettable\r\nScaling Factor:1.0\r\nUnits:kWh\r\nRange:[0.0, 65535.0]\r\nModbus address:0x0038','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1a7ff2c884784eb4817956e0ecd5b718');
INSERT INTO `items` (`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`,`uuid`) values ('33267','20','1.3.6.1.4.1.33333.7.46.0','10375','Battery: Charge State','charge.state[chargeState.0]','1m','7d','365d','0','0','','','','',NULL,'199','','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Charge State\r\nModbus address:0x0032\r\n\r\n0: Start\r\n1: NightCheck\r\n2: Disconnect\r\n3: Night\r\n4: Fault\r\n5: Mppt\r\n6: Absorption\r\n7: Float\r\n8: Equalize\r\n9: Slave\r\n10: Fixed','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa20a89288c444a492910cb1a7f19499');
INSERT INTO `items` (`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`,`uuid`) values ('33268','20','1.3.6.1.4.1.33333.7.33.0','10375','Array: Sweep Pmax','array.sweep_pmax[arrayPmaxLastSweep.0]','1m','7d','365d','0','0','','W','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Pmax (last sweep)\r\nScaling Factor:1.0\r\nUnits:W\r\nRange:[-10, 5000]\r\nModbus address:0x003c','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9750ce4073d9467fa18f0e35f990c081');
INSERT INTO `items` (`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`,`uuid`) values ('33269','20','1.3.6.1.4.1.33333.7.44.0','10375','Battery: Output Power','charge.output_power[ outputPower.0]','1m','7d','365d','0','0','','W','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Output Power\r\nScaling Factor:1.0\r\nUnits:W\r\nRange:[-10, 4000]\r\nModbus address:0x003a','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6e168ff947324068aad1fc16d577369d');
INSERT INTO `items` (`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`,`uuid`) values ('33270','20','1.3.6.1.4.1.33333.7.42.0','10375','Battery: Charge Current','charge.current[batteryCurrent.0]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Battery Current\r\nScaling Factor:1.0\r\nUnits:A\r\nRange:[-10, 80]\r\nModbus address:0x001c','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e42ba3c9a764b9690feb04d4bf7df45');
INSERT INTO `items` (`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`,`uuid`) values ('33271','20','1.3.6.1.4.1.33333.7.36.0','10375','Battery: Battery Voltage discovery','battery.voltage.discovery[batteryVoltage.0]','15m','0','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Battery voltage\r\nScaling Factor:1.0\r\nUnits:V\r\nRange:[-10, 80]\r\nModbus address:0x0018','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','058dc403d9b541978aebcb2944ecf75f');
INSERT INTO `items` (`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`,`uuid`) values ('33272','20','1.3.6.1.4.1.33333.7.30.0','10375','Array: Voltage','array.voltage[arrayVoltage.0]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Array Voltage\r\nScaling Factor:1.0\r\nUnits:V\r\nRange:[-10, 650]\r\nModbus address:0x001b','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e13c3135ce8649ea9c88d4f9eb56219e');
INSERT INTO `items` (`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`,`uuid`) values ('33273','20','1.3.6.1.4.1.33333.7.35.0','10375','Array: Sweep Voc','array.sweep_voc[arrayVocLastSweep.0]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Voc (last sweep)\r\nScaling Factor:1.0\r\nUnits:V\r\nRange:[-10, 650.0]\r\nModbus address:0x003e','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a8f4819131fe4247aef9b1cd819b47d9');
INSERT INTO `items` (`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`,`uuid`) values ('33274','20','1.3.6.1.4.1.33333.7.34.0','10375','Array: Sweep Vmp','array.sweep_vmp[arrayVmpLastSweep.0]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Vmp (last sweep)\r\nScaling Factor:1.0\r\nUnits:V\r\nRange:[-10, 650.0]\r\nModbus address:0x003d','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','de36a1087b2d4ade8369c620c794c881');
INSERT INTO `items` (`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`,`uuid`) values ('33275','20','1.3.6.1.4.1.33333.7.49.0','10375','Temperature: Heatsink','temp.heatsink[heatsinkTemperature.0]','1m','7d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:HS Temp\r\nScaling Factor:1.0\r\nUnits:C\r\nRange:[-40, 80]\r\nModbus address:0x0023','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d3abc18d718540039adcfcb4a74bea43');
INSERT INTO `items` (`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`,`uuid`) values ('33277','20','1.3.6.1.4.1.33333.7.36.0','10375','Battery: Voltage{#SINGLETON}','battery.voltage[batteryVoltage.0{#SINGLETON}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Battery voltage\r\nScaling Factor:1.0\r\nUnits:V\r\nRange:[-10, 80]\r\nModbus address:0x0018','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','429d19822647434ca7df7016f44d690f');
INSERT INTO `items` (`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`,`uuid`) values ('33278','20','1.3.6.1.4.1.33333.2.31.0','10376','Array: Array Current','array.current[arrayCurrent.0]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Array Current\r\nScaling Factor:0.00244140625\r\nUnits:A\r\nRange:[-10, 80]\r\nModbus address:0x001d','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c3dcfd83bf946fb9da84f648c1efbac');
INSERT INTO `items` (`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`,`uuid`) values ('33279','20','1.3.6.1.4.1.33333.2.50.0','10376','Counter: Charge Amp-hours','counter.charge_amp_hours[ahChargeResetable.0]','1m','7d','365d','0','0','','Ah','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Ah Charge Resettable\r\nScaling Factor:0.1\r\nUnits:Ah\r\nRange:[0.0, 5000]\r\nModbus addresses:H=0x0034 L=0x0035','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','48db3379939b4698b8f30ff7118a9a95');
INSERT INTO `items` (`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`,`uuid`) values ('33280','20','1.3.6.1.4.1.33333.2.48.0','10376','Temperature: Battery','temp.battery[batteryTemperature.0]','1m','7d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Batt. Temp\r\nScaling Factor:1.0\r\nUnits:C\r\nRange:[-40, 80]\r\nModbus address:0x0025','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9aee4500f32a4016be4f137c948b3d67');
INSERT INTO `items` (`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`,`uuid`) values ('33281','20','1.3.6.1.4.1.33333.2.45.0','10376','Battery: Target Voltage','target.voltage[targetRegulationVoltage.0]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Target Voltage\r\nScaling Factor:0.0054931640625\r\nUnits:V\r\nRange:[-10, 180.0]\r\nModbus address:0x0033','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c46896a6169142b59fc7f534f1981993');
INSERT INTO `items` (`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`,`uuid`) values ('33282','20','1.3.6.1.2.1.1.3.0','10376','Status: Uptime (network)','status.net.uptime','1m','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5f1e79c9987648c8abb325a507209a07');
INSERT INTO `items` (`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`,`uuid`) values ('33283','20','1.3.6.1.4.1.33333.2.55.0','10376','Status: Faults','status.faults[faults.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Faults\r\nModbus address:0x002c','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','64a01cde330e437499a719237f68fda2');
INSERT INTO `items` (`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`,`uuid`) values ('33284','20','1.3.6.1.4.1.33333.2.57.0','10376','Status: Alarms','status.alarms[alarms.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Faults\r\nModbus address:0x002c','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c96236f9623495289b94bd4d63e6faf');
INSERT INTO `items` (`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`,`uuid`) values ('33285','20','1.3.6.1.4.1.33333.2.52.0','10376','Counter: Charge KW-hours','counter.charge_kw_hours[kwhChargeResetable.0]','1m','7d','365d','0','3','','!kWh','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:kWh Charge Resettable\r\nScaling Factor:0.1\r\nUnits:kWh\r\nRange:[0.0, 65535.0]\r\nModbus address:0x0038','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f14eb25c426141d1875d5828b5c62c30');
INSERT INTO `items` (`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`,`uuid`) values ('33286','20','1.3.6.1.4.1.33333.2.46.0','10376','Battery: Charge State','charge.state[chargeState.0]','1m','7d','365d','0','0','','','','',NULL,'200','','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Charge State\r\nModbus address:0x0032\r\n\r\n0: Start\r\n1: NightCheck\r\n2: Disconnect\r\n3: Night\r\n4: Fault\r\n5: Mppt\r\n6: Absorption\r\n7: Float\r\n8: Equalize\r\n9: Slave','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7ad0e0153d6342a5bdd1576b2ad815e3');
INSERT INTO `items` (`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`,`uuid`) values ('33287','20','1.3.6.1.4.1.33333.2.33.0','10376','Array: Sweep Pmax','array.sweep_pmax[arrayPmaxLastSweep.0]','1m','7d','365d','0','0','','W','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Pmax (last sweep)\r\nScaling Factor:0.10986328125\r\nUnits:W\r\nRange:[-10, 5000]\r\nModbus address:0x003c','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','53c1cccd0262422eb18bb6745adb2369');
INSERT INTO `items` (`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`,`uuid`) values ('33288','20','1.3.6.1.4.1.33333.2.44.0','10376','Battery: Output Power','charge.output_power[ outputPower.0]','1m','7d','365d','0','0','','W','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Output Power\r\nScaling Factor:0.10986328125\r\nUnits:W\r\nRange:[-10, 5000]\r\nModbus address:0x003a','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e70284aa07924a61add98dc516f0429e');
INSERT INTO `items` (`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`,`uuid`) values ('33289','20','1.3.6.1.4.1.33333.2.42.0','10376','Battery: Charge Current','charge.current[batteryCurrent.0]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Battery Current\r\nScaling Factor:0.00244140625\r\nUnits:A\r\nRange:[-10, 80]\r\nModbus address:0x001c','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e1646c9847064d53913d9c57d1b59de7');
INSERT INTO `items` (`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`,`uuid`) values ('33290','20','1.3.6.1.4.1.33333.2.36.0','10376','Battery: Battery Voltage discovery','battery.voltage.discovery[batteryVoltage.0]','15m','0','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f40795d2c28b4f53ac50399ca6e6f8d6');
INSERT INTO `items` (`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`,`uuid`) values ('33291','20','1.3.6.1.4.1.33333.2.30.0','10376','Array: Voltage','array.voltage[arrayVoltage.0]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Array Voltage\r\nScaling Factor:0.0054931640625\r\nUnits:V\r\nRange:[-10, 180]\r\nModbus address:0x001b','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','419b9faf88284121a8806c60c8a4550d');
INSERT INTO `items` (`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`,`uuid`) values ('33292','20','1.3.6.1.4.1.33333.2.35.0','10376','Array: Sweep Voc','array.sweep_voc[arrayVocLastSweep.0]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Voc (last sweep)\r\nScaling Factor:0.0054931640625\r\nUnits:V\r\nRange:[-10, 180.0]\r\nModbus address:0x003e','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ced0f7c4abb6409399a9e05797841497');
INSERT INTO `items` (`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`,`uuid`) values ('33293','20','1.3.6.1.4.1.33333.2.34.0','10376','Array: Sweep Vmp','array.sweep_vmp[arrayVmpLastSweep.0]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Vmp (last sweep)\r\nScaling Factor:0.0054931640625\r\nUnits:V\r\nRange:[-10, 180.0]\r\nModbus address:0x003d','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2f0bbf8b6d53457283069aaf8e0386ae');
INSERT INTO `items` (`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`,`uuid`) values ('33294','20','1.3.6.1.4.1.33333.2.49.0','10376','Temperature: Heatsink','temp.heatsink[heatsinkTemperature.0]','1m','7d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT\r\nDescription:HS Temp\r\nScaling Factor:1.0\r\nUnits:C\r\nRange:[-40, 80]\r\nModbus address:0x0023','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ffed57b626254db6bcc0df6de51d39fa');
INSERT INTO `items` (`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`,`uuid`) values ('33296','20','1.3.6.1.4.1.33333.2.36.0','10376','Battery: Voltage{#SINGLETON}','battery.voltage[batteryVoltage.0{#SINGLETON}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TRISTAR-MPPT\r\nDescription:Battery voltage\r\nScaling Factor:0.0054931640625\r\nUnits:V\r\nRange:[-10, 180.0]\r\nModbus address:0x0018','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','763cce63817f471095bdce7a6127b0bf');
INSERT INTO `items` (`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`,`uuid`) values ('33297','20','1.3.6.1.4.1.33333.8.30.0','10377','Battery: Battery Voltage discovery','battery.voltage.discovery[batteryVoltage.0]','15m','0','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR\r\nDescription:Battery voltage\r\nScaling Factor:0.002950042724609375\r\nUnits:V\r\nRange:[0.0, 80.0]\r\nModbus address:0x0008','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b76ef47ada0c43cfb50c6a80c8ca55e5');
INSERT INTO `items` (`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`,`uuid`) values ('33298','20','1.3.6.1.4.1.33333.8.45.0','10377','Status: Control Mode','control.mode[controlMode.0]','1m','7d','365d','0','0','','','','',NULL,'202','','','0','','','','','0',NULL,'MIB: TRISTAR\r\nDescription:Control Mode\r\nModbus address:0x001A\r\n\r\n0: charge\r\n1: loadControl\r\n2: diversion\r\n3: lighting','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0c57da022cf8497e88f788cee1b3a0a6');
INSERT INTO `items` (`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`,`uuid`) values ('33299','20','1.3.6.1.4.1.33333.8.39.0','10377','Counter: Amp-hours','counter.charge_amp_hours[ahResettable.0]','1m','7d','365d','0','0','','Ah','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR\r\nDescription:Ah (Resettable)\r\nScaling Factor:0.1\r\nUnits:Ah\r\nRange:[0.0, 50000.0]\r\nModbus addresses:H=0x0011 L=0x0012','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','25a576060f6948e59a855462b04c7276');
INSERT INTO `items` (`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`,`uuid`) values ('33300','20','1.3.6.1.4.1.33333.8.49.0','10377','Counter: KW-hours','counter.charge_kw_hours[kilowattHours.0]','1m','7d','365d','0','0','','!kWh','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR\r\nDescription:Kilowatt Hours\r\nScaling Factor:1.0\r\nUnits:kWh\r\nRange:[0.0, 5000.0]\r\nModbus address:0x001E','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d2351af0b6244044949eba67a7f7b39c');
INSERT INTO `items` (`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`,`uuid`) values ('33301','20','1.3.6.1.4.1.33333.8.42.0','10377','Status: Alarms','status.alarms[alarms.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR\r\nDescription:Alarms\r\nModbus addresses:H=0x001D L=0x0017','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','03c3397ac32b47499002b13e0735ec9b');
INSERT INTO `items` (`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`,`uuid`) values ('33302','20','1.3.6.1.4.1.33333.8.43.0','10377','Status: Faults','status.faults[faults.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR\r\nDescription:Battery voltage\r\nScaling Factor:0.002950042724609375\r\nUnits:V\r\nRange:[0.0, 80.0]\r\nModbus address:0x0008','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9d0f4444f98c4ec082d35559e8fe9ac5');
INSERT INTO `items` (`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`,`uuid`) values ('33303','20','1.3.6.1.2.1.1.3.0','10377','Status: Uptime (network)','status.net.uptime','1m','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','642eec19ba5d450186590e9f5bba36db');
INSERT INTO `items` (`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`,`uuid`) values ('33304','20','1.3.6.1.4.1.33333.8.37.0','10377','Temperature: Battery','temp.battery[batteryTemperature.0]','1m','7d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR\r\nDescription:Battery Temperature\r\nScaling Factor:1.0\r\nUnits:deg C\r\nRange:[-40, 120]\r\nModbus address:0x000F','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bc729e23973b4d9d97d694d884431e0b');
INSERT INTO `items` (`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`,`uuid`) values ('33305','20','1.3.6.1.4.1.33333.8.36.0','10377','Temperature: Heatsink','temp.heatsink[heatsinkTemperature.0]','1m','7d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR\r\nDescription:Heatsink Temperature\r\nScaling Factor:1.0\r\nUnits:deg C\r\nRange:[-40, 120]\r\nModbus address:0x000E','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a9a009058e99419dbb6cbef5b7797388');
INSERT INTO `items` (`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`,`uuid`) values ('33312','20','1.3.6.1.4.1.33333.8.30.0','10377','Battery: Voltage{#SINGLETON}','battery.voltage[batteryVoltage.0{#SINGLETON}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TRISTAR\r\nDescription:Battery voltage\r\nScaling Factor:0.002950042724609375\r\nUnits:V\r\nRange:[0.0, 80.0]\r\nModbus address:0x0008','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e1960caed8c44606bb684e28cdfac3c7');
INSERT INTO `items` (`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`,`uuid`) values ('33313','20','1.3.6.1.4.1.33333.8.32.0','10377','Array: Voltage{#SINGLETON}','array.voltage[arrayloadVoltage.0{#SINGLETON}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TRISTAR\r\nDescription:Array/Load Voltage\r\nScaling Factor:0.00424652099609375\r\nUnits:V\r\nRange:[0, 80]\r\nModbus address:0x000A','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f5d120bee1964f10853819d576ddb930');
INSERT INTO `items` (`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`,`uuid`) values ('33314','20','1.3.6.1.4.1.33333.8.33.0','10377','Battery: Charge Current{#SINGLETON}','charge.current[chargeCurrent.0{#SINGLETON}]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TRISTAR\r\nDescription:Charge Current\r\nScaling Factor:0.002034515380859375\r\nUnits:A\r\nRange:[0, 60]\r\nModbus address:0x000B','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b5d74de2e96440a5a00a4a4dffffbb26');
INSERT INTO `items` (`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`,`uuid`) values ('33315','20','1.3.6.1.4.1.33333.8.46.0','10377','Battery: Charge State{#SINGLETON}','charge.state[controlState.0{#SINGLETON}]','1m','7d','365d','0','0','','','','',NULL,'201','','','0','','','','','2',NULL,'MIB: TRISTAR\r\nDescription:Control State\r\nModbus address:0x001B','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e08b526bbb484753a11c99011d31d945');
INSERT INTO `items` (`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`,`uuid`) values ('33316','20','1.3.6.1.4.1.33333.8.38.0','10377','Battery: Target Voltage{#SINGLETON}','target.voltage[targetVoltage.0{#SINGLETON}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TRISTAR\r\nDescription:Target Regulation Voltage\r\nScaling Factor:0.002950042724609375\r\nUnits:V\r\nRange:[0.0, 80.0]\r\nModbus address:0x0010','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','edd7d01d2523481293f3ac9e8f3c0a00');
INSERT INTO `items` (`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`,`uuid`) values ('33317','20','1.3.6.1.4.1.33333.8.48.0','10377','Load: PWM Duty Cycle{#SINGLETON}','diversion.pwm_duty_cycle[pwmDutyCycle.0{#SINGLETON}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TRISTAR\r\nDescription:PWM Duty Cycle\r\nScaling Factor:0.392156862745098\r\nUnits:%\r\nRange:[0.0, 100.0]\r\nModbus address:0x001C','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','33e6b5a75c1e454cb7b7bc0b1426d1b9');
INSERT INTO `items` (`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`,`uuid`) values ('33318','20','1.3.6.1.4.1.33333.8.47.0','10377','Load: State{#SINGLETON}','load.state[loadState.0{#SINGLETON}]','1m','7d','365d','0','0','','','','',NULL,'203','','','0','','','','','2',NULL,'MIB: TRISTAR\r\nDescription:Load State\r\nModbus address:0x001B\r\n\r\n0: Start\r\n1: Normal\r\n2: LvdWarning\r\n3: Lvd\r\n4: Fault\r\n5: Disconnect\r\n6: LvdWarning1\r\n7: OverrideLvd\r\n8: Equalize','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d42918b9c244f88a23ab1daf2a929ce');
INSERT INTO `items` (`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`,`uuid`) values ('33319','20','1.3.6.1.4.1.33333.8.34.0','10377','Load: Current{#SINGLETON}','load.current[loadCurrent.0{#SINGLETON}]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TRISTAR\r\nDescription:Load Current\r\nScaling Factor:0.00966400146484375\r\nUnits:A\r\nRange:[0, 60]\r\nModbus address:0x000C','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b6db019203cc41ca94dcbe54382fdaad');
INSERT INTO `items` (`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`,`uuid`) values ('33320','20','1.3.6.1.4.1.33333.8.32.0','10377','Load: Voltage{#SINGLETON}','load.voltage[arrayloadVoltage.0{#SINGLETON}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TRISTAR\r\nDescription:Array/Load Voltage\r\nScaling Factor:0.00424652099609375\r\nUnits:V\r\nRange:[0, 80]\r\nModbus address:0x000A','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f87ddb7d31d748c8917030ede731f37a');
INSERT INTO `items` (`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`,`uuid`) values ('33321','0','','10289','{#DEVNAME}: Average disk read queue length','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk Read Queue Length",60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Average disk read queue, the number of requests outstanding on the disk at the time the performance data is collected.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8122d6fd46a54d5f8b23c4b21a333959');
INSERT INTO `items` (`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`,`uuid`) values ('33322','0','','10289','{#DEVNAME}: Disk read request avg waiting time','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk sec/Read",60]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time for read requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f6896b69665d4a9bb160b23a322919d4');
INSERT INTO `items` (`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`,`uuid`) values ('33323','0','','10289','{#DEVNAME}: Disk write request avg waiting time','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk sec/Write",60]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time for write requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','704680610f6a42dc9373db929a3d0d53');
INSERT INTO `items` (`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`,`uuid`) values ('33324','0','','10289','{#DEVNAME}: Average disk write queue length','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk Write Queue Length",60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Average disk write queue, the number of requests outstanding on the disk at the time the performance data is collected.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9f5d1cdb629847ad97e0fa0804883e91');
INSERT INTO `items` (`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`,`uuid`) values ('33329','7','','10349','{#DEVNAME}: Average disk read queue length','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk Read Queue Length",60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Average disk read queue, the number of requests outstanding on the disk at the time the performance data is collected.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ee3e17e348f84f8bb4eb9675cb0ef045');
INSERT INTO `items` (`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`,`uuid`) values ('33330','7','','10349','{#DEVNAME}: Disk read request avg waiting time','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk sec/Read",60]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time for read requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','83bc066220ec47bb898351e8d20fb81d');
INSERT INTO `items` (`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`,`uuid`) values ('33331','7','','10349','{#DEVNAME}: Disk write request avg waiting time','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk sec/Write",60]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time for write requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9f906bcb67f847b7bfbca098659063d4');
INSERT INTO `items` (`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`,`uuid`) values ('33332','7','','10349','{#DEVNAME}: Average disk write queue length','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk Write Queue Length",60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Average disk write queue, the number of requests outstanding on the disk at the time the performance data is collected.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','584f4a8fba0b4e3cba7f37cba42cd97c');
INSERT INTO `items` (`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`,`uuid`) values ('33348','20','1.3.6.1.4.1.789.1.6.4.7.0','10378','NetApp FAS3220: Failed disks count','fas3220.disk[diskFailedCount]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of disks that are currently broken.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4239eba959f14e0ebc44a0fa7d124042');
INSERT INTO `items` (`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`,`uuid`) values ('33349','20','1.3.6.1.4.1.789.1.6.4.10.0','10378','NetApp FAS3220: Failed disks message','fas3220.disk[diskFailedMessage]','1m','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'If diskFailedCount is non-zero, this is a string describing the failed disk or disks. Each failed disk is described.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','980e2c347d254c4d88d918b2171679bb');
INSERT INTO `items` (`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`,`uuid`) values ('33350','20','1.3.6.1.4.1.789.1.1.6.0','10378','NetApp FAS3220: Product firmware version','fas3220.inventory[productFirmwareVersion]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version string for the firmware running on this platform.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7b6d8c8272714343bd420a32c6763c9e');
INSERT INTO `items` (`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`,`uuid`) values ('33351','20','1.3.6.1.4.1.789.1.1.2.0','10378','NetApp FAS3220: Product version','fas3220.inventory[productVersion]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: NETAPP-MIB\r\nVersion string for the software running on this platform.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3f0418935b9d40e98d129f280ba5ba6b');
INSERT INTO `items` (`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`,`uuid`) values ('33352','20','discovery[{#NODE.NAME},1.3.6.1.4.1.789.1.25.2.1.1]','10378','Cluster metrics discovery','fas3220.cluster.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of Cluster metrics per node','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c999a3f338934982aa4359d9f0a8df30');
INSERT INTO `items` (`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`,`uuid`) values ('33353','20','discovery[{#NODE.NAME},1.3.6.1.4.1.789.1.2.1.14.1.1]','10378','CPU discovery','fas3220.cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of CPU metrics per node','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e0b97a8434f94d0ba14023cc434a8926');
INSERT INTO `items` (`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`,`uuid`) values ('33354','20','discovery[{#FSNAME},1.3.6.1.4.1.789.1.5.4.1.2,{#FSTYPE},1.3.6.1.4.1.789.1.5.4.1.23,{#VSERVER},1.3.6.1.4.1.789.1.5.4.1.34]','10378','Filesystems discovery','fas3220.fs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Filesystems discovery with filter.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b6dcacd213ce436aabb6c33d236fc077');
INSERT INTO `items` (`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`,`uuid`) values ('33355','20','discovery[{#NODE.NAME},1.3.6.1.4.1.789.1.21.2.1.1,{#PARTNER.NAME},1.3.6.1.4.1.789.1.21.2.1.8]','10378','HA discovery','fas3220.ha.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of high availability metrics per node','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e06a66c956164722a289cb8832341451');
INSERT INTO `items` (`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`,`uuid`) values ('33356','20','discovery[{#IFNAME},1.3.6.1.4.1.789.1.22.2.1.2,{#NODE},1.3.6.1.4.1.789.1.22.2.1.1,{#TYPE},1.3.6.1.4.1.789.1.22.2.1.15,{#ROLE},1.3.6.1.4.1.789.1.22.2.1.3,{#IFDESCR},1.3.6.1.4.1.789.1.22.1.2.1.2]','10378','Network ports discovery','fas3220.net.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Network interfaces discovery with filter.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0984cb890ec64f748e6bc5531bf80112');
INSERT INTO `items` (`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`,`uuid`) values ('33357','20','1.3.6.1.4.1.789.1.25.2.1.19.{#SNMPINDEX}','10378','Node {#NODE.NAME}: Failed FAN count','fas3220.cluster[nodeEnvFailedFanCount, "{#NODE.NAME}"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of the number of chassis fans that are not operating within the recommended RPM range.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2363873641874c50b70bf170e05ea10e');
INSERT INTO `items` (`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`,`uuid`) values ('33358','20','1.3.6.1.4.1.789.1.25.2.1.20.{#SNMPINDEX}','10378','Node {#NODE.NAME}: Failed FAN message','fas3220.cluster[nodeEnvFailedFanMessage, "{#NODE.NAME}"]','1m','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Text message describing current condition of chassis fans. This is useful only if envFailedFanCount is not zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac1d666db8c0495c860a59d98caeb4ab');
INSERT INTO `items` (`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`,`uuid`) values ('33359','20','1.3.6.1.4.1.789.1.25.2.1.21.{#SNMPINDEX}','10378','Node {#NODE.NAME}: Degraded power supplies count','fas3220.cluster[nodeEnvFailedPowerSupplyCount, "{#NODE.NAME}"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of the number of power supplies that are in degraded mode.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad74f96ff33249e1937c2702c4bbce94');
INSERT INTO `items` (`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`,`uuid`) values ('33360','20','1.3.6.1.4.1.789.1.25.2.1.22.{#SNMPINDEX}','10378','Node {#NODE.NAME}: Degraded power supplies message','fas3220.cluster[nodeEnvFailedPowerSupplyMessage, "{#NODE.NAME}"]','1m','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Text message describing the state of any power supplies that are currently degraded. This is useful only if envFailedPowerSupplyCount is not zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','343e02ff8f9f417292a2bb548db355ee');
INSERT INTO `items` (`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`,`uuid`) values ('33361','20','1.3.6.1.4.1.789.1.25.2.1.18.{#SNMPINDEX}','10378','Node {#NODE.NAME}: Over-temperature','fas3220.cluster[nodeEnvOverTemperature, "{#NODE.NAME}"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'An indication of whether the hardware is currently operating outside of its recommended temperature range. The hardware will shutdown if the temperature exceeds critical thresholds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','73853db2e6924c8395aac1655fab24b4');
INSERT INTO `items` (`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`,`uuid`) values ('33362','20','1.3.6.1.4.1.789.1.25.2.1.11.{#SNMPINDEX}','10378','Node {#NODE.NAME}: Health','fas3220.cluster[nodeHealth, "{#NODE.NAME}"]','1m','7d','365d','0','3','','','','',NULL,'44','','','0','','','','','2',NULL,'Whether or not the node can communicate with the cluster.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c6663dc780f14fd4bb01a108d0d2c6b0');
INSERT INTO `items` (`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`,`uuid`) values ('33363','20','1.3.6.1.4.1.789.1.25.2.1.3.{#SNMPINDEX}','10378','Node {#NODE.NAME}: Location','fas3220.cluster[nodeLocation, "{#NODE.NAME}"]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Node Location. Same as sysLocation for a specific node.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b8c922cbd60e4432822268c2a642fd95');
INSERT INTO `items` (`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`,`uuid`) values ('33364','20','1.3.6.1.4.1.789.1.25.2.1.4.{#SNMPINDEX}','10378','Node {#NODE.NAME}: Model','fas3220.cluster[nodeModel, "{#NODE.NAME}"]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Node Model. Same as productModel for a specific node.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eae21d81e97a47dfa80701fb343294b4');
INSERT INTO `items` (`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`,`uuid`) values ('33365','20','1.3.6.1.4.1.789.1.25.2.1.17.{#SNMPINDEX}','10378','Node {#NODE.NAME}: NVRAM battery status','fas3220.cluster[nodeNvramBatteryStatus, "{#NODE.NAME}"]','1m','7d','365d','0','3','','','','',NULL,'206','','','0','','','','','2',NULL,'An indication of the current status of the NVRAM battery or batteries.\r\nBatteries which are fully or partially discharged may not fully protect the system during a crash. The end-of-life status values are based on the manufacturer\'s recommended life for the batteries.\r\nPossible values:\r\nok(1),\r\npartiallyDischarged(2),\r\nfullyDischarged(3),\r\nnotPresent(4),\r\nnearEndOfLife(5),\r\natEndOfLife(6),\r\nunknown(7),\r\noverCharged(8),\r\nfullyCharged(9).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cd00e7ff616f4b69a94af9e9494b060e');
INSERT INTO `items` (`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`,`uuid`) values ('33366','20','1.3.6.1.4.1.789.1.25.2.1.5.{#SNMPINDEX}','10378','Node {#NODE.NAME}: Serial number','fas3220.cluster[nodeSerialNumber, "{#NODE.NAME}"]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Node Serial Number. Same as productSerialNum for a specific node.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4fc5f0cdd87147d59fe8d073e361c2d8');
INSERT INTO `items` (`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`,`uuid`) values ('33367','20','1.3.6.1.4.1.789.1.25.2.1.7.{#SNMPINDEX}','10378','Node {#NODE.NAME}: Uptime','fas3220.cluster[nodeUptime, "{#NODE.NAME}"]','1m','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Node uptime. Same as sysUpTime for a specific node.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ed05a8e28bd4b87b2b5981b45ec9fbe');
INSERT INTO `items` (`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`,`uuid`) values ('33368','20','1.3.6.1.4.1.789.1.2.1.14.1.4.{#SNMPINDEX}','10378','Node {#NODE.NAME}: CPU utilization','fas3220.cpu[cDOTCpuBusyTimePerCent, "{#NODE.NAME}"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The average, over the last minute, of the percentage of time that this processor was not idle.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0cf9871cac314b0fb92710144acf3f66');
INSERT INTO `items` (`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`,`uuid`) values ('33369','20','1.3.6.1.4.1.789.1.5.4.1.31.{#SNMPINDEX}','10378','{#VSERVER}{#FSNAME}: Total space available','fas3220.fs[df64AvailKBytes, "{#VSERVER}{#FSNAME}"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total disk space that is free for use on {#FSNAME}.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4f77d54089e34da8bf5b50033e3e2ca3');
INSERT INTO `items` (`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`,`uuid`) values ('33370','20','1.3.6.1.4.1.789.1.5.4.1.29.{#SNMPINDEX}','10378','{#VSERVER}{#FSNAME}: Total space','fas3220.fs[df64TotalKBytes, "{#VSERVER}{#FSNAME}"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total capacity in Bytes for {#FSNAME}.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','be517380be12421c867ed48e16fe5c4e');
INSERT INTO `items` (`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`,`uuid`) values ('33371','20','1.3.6.1.4.1.789.1.5.4.1.30.{#SNMPINDEX}','10378','{#VSERVER}{#FSNAME}: Total space used','fas3220.fs[df64UsedKBytes, "{#VSERVER}{#FSNAME}"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total disk space that is in use on {#FSNAME}.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d4989438446a4d228b83b0b22c11af90');
INSERT INTO `items` (`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`,`uuid`) values ('33372','20','1.3.6.1.4.1.789.1.5.4.1.38.{#SNMPINDEX}','10378','{#VSERVER}{#FSNAME}: Saved by compression percents','fas3220.fs[dfCompressSavedPercent, "{#VSERVER}{#FSNAME}"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Provides the percentage of compression savings in a volume, which is ((compr_saved/used)) * 10(compr_saved + 0). This is only returned for volumes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','74868589894f468fa5daada73c042aca');
INSERT INTO `items` (`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`,`uuid`) values ('33373','20','1.3.6.1.4.1.789.1.5.4.1.40.{#SNMPINDEX}','10378','{#VSERVER}{#FSNAME}: Saved by deduplication percents','fas3220.fs[dfDedupeSavedPercent, "{#VSERVER}{#FSNAME}"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Provides the percentage of deduplication savings in a volume, which is ((dedup_saved/(dedup_saved + used)) * 100). This is only returned for volumes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6fd01f706f8f4088b91cd6aad58a65ce');
INSERT INTO `items` (`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`,`uuid`) values ('33374','20','1.3.6.1.4.1.789.1.5.4.1.6.{#SNMPINDEX}','10378','{#VSERVER}{#FSNAME}: Used space percents','fas3220.fs[dfPerCentKBytesCapacity, "{#VSERVER}{#FSNAME}"]','1m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of disk space currently in use on {#FSNAME}.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b74fafe10c844feda4e72346b2fe88f6');
INSERT INTO `items` (`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`,`uuid`) values ('33375','20','1.3.6.1.4.1.789.1.21.2.1.5.{#SNMPINDEX}','10378','Node {#NODE.NAME}: Cannot takeover cause','fas3220.ha[haCannotTakeoverCause, "{#NODE.NAME}"]','1m','7d','365d','0','3','','','','',NULL,'204','','','0','','','','','2',NULL,'The reason node cannot take over it\'s HA partner {#PARTNER.NAME}.\r\nPossible states:\r\n ok(1),\r\n unknownReason(2),\r\n disabledByOperator(3),\r\n interconnectOffline(4),\r\n disabledByPartner(5),\r\n takeoverFailed(6),\r\n mailboxIsInDegradedState(7),\r\n partnermailboxIsInUninitialisedState(8),\r\n mailboxVersionMismatch(9),\r\n nvramSizeMismatch(10),\r\n kernelVersionMismatch(11),\r\n partnerIsInBootingStage(12),\r\n diskshelfIsTooHot(13),\r\n partnerIsPerformingRevert(14),\r\n nodeIsPerformingRevert(15),\r\n sametimePartnerIsAlsoTryingToTakeUsOver(16),\r\n alreadyInTakenoverMode(17),\r\n nvramLogUnsynchronized(18),\r\n stateofBackupMailboxIsDoubtful(19).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a6d4f2976de841108b53be013376549b');
INSERT INTO `items` (`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`,`uuid`) values ('33376','20','1.3.6.1.4.1.789.1.21.2.1.3.{#SNMPINDEX}','10378','Node {#NODE.NAME}: HA settings','fas3220.ha[haSettings, "{#NODE.NAME}"]','1m','7d','365d','0','3','','','','',NULL,'205','','','0','','','','','2',NULL,'High Availability configuration settings. The value notConfigured(1) indicates that the HA is not licensed. The thisNodeDead(5) setting indicates that this node has been takenover.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','70624f45000443999b416d5806ead949');
INSERT INTO `items` (`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`,`uuid`) values ('33377','20','1.3.6.1.4.1.789.1.22.1.2.1.28.{#IFSNMPINDEX}','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): Inbound packets discarded','fas3220.net.if[if64InDiscards, "{#NODE}", "{#IFNAME}"]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets that were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','abbab9f31f7a4e07a2e5f3fcb2150677');
INSERT INTO `items` (`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`,`uuid`) values ('33378','20','1.3.6.1.4.1.789.1.22.1.2.1.29.{#IFSNMPINDEX}','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): Inbound packets with errors','fas3220.net.if[if64InErrors, "{#NODE}", "{#IFNAME}"]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6f8c273e8efa40e3888716c7cad79f3f');
INSERT INTO `items` (`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`,`uuid`) values ('33379','20','1.3.6.1.4.1.789.1.22.1.2.1.25.{#IFSNMPINDEX}','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): Bits received','fas3220.net.if[if64InOctets, "{#NODE}", "{#IFNAME}"]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of octets received on the interface, including framing characters.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6fa2bb39354e4024805a82acf4feab29');
INSERT INTO `items` (`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`,`uuid`) values ('33380','20','1.3.6.1.4.1.789.1.22.1.2.1.34.{#IFSNMPINDEX}','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): Outbound packets discarded','fas3220.net.if[if64OutDiscards, "{#NODE}", "{#IFNAME}"]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets that were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b414bb327e744c4b932263502da396c1');
INSERT INTO `items` (`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`,`uuid`) values ('33381','20','1.3.6.1.4.1.789.1.22.1.2.1.35.{#IFSNMPINDEX}','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): Outbound packets with errors','fas3220.net.if[if64OutErrors, "{#NODE}", "{#IFNAME}"]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets that could not be transmitted because of errors.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','baf565d001c044f8b8b5ea5caf09ea60');
INSERT INTO `items` (`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`,`uuid`) values ('33382','20','1.3.6.1.4.1.789.1.22.1.2.1.31.{#IFSNMPINDEX}','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): Bits sent','fas3220.net.if[if64OutOctets, "{#NODE}", "{#IFNAME}"]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of octets transmitted out of the interface, including framing characters.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cd474bb9b7b741e8a19654f9e2a67890');
INSERT INTO `items` (`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`,`uuid`) values ('33383','20','1.3.6.1.4.1.789.1.22.2.1.32.{#SNMPINDEX}','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): Health degraded reason','fas3220.net.port[netportDegradedReason, "{#NODE}", "{#IFNAME}"]','1m','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The list of reasons why the port is marked as degraded.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fc759bc9f1fd479498157c5ded9d1123');
INSERT INTO `items` (`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`,`uuid`) values ('33384','20','1.3.6.1.4.1.789.1.22.2.1.30.{#SNMPINDEX}','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): Health','fas3220.net.port[netportHealthStatus, "{#NODE}", "{#IFNAME}"]','1m','7d','365d','0','0','','','','',NULL,'207','','','0','','','','','2',NULL,'The health status of the port.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d50375f621464117afa5c469d06aa3a6');
INSERT INTO `items` (`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`,`uuid`) values ('33385','20','1.3.6.1.4.1.789.1.22.2.1.4.{#SNMPINDEX}','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): State','fas3220.net.port[netportLinkState, "{#NODE}", "{#IFNAME}"]','1m','7d','365d','0','3','','','','',NULL,'208','','','0','','','','','2',NULL,'The link-state of the port. Normally it is either UP(2) or DOWN(3).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','13b38a463e7a49058ca6907a9430d49f');
INSERT INTO `items` (`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`,`uuid`) values ('33386','20','1.3.6.1.4.1.789.1.22.2.1.3.{#SNMPINDEX}','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): Role','fas3220.net.port[netportRole, "{#NODE}", "{#IFNAME}"]','1m','7d','365d','0','3','','','','',NULL,'209','','','0','','','','','2',NULL,'Role of the port. A port must have one of the following roles: cluster(1), data(2), mgmt(3), intercluster(4), cluster-mgmt(5) or undef(0). The cluster port is used to communicate to other node(s) in the cluster. The data port services clients\' requests. It is where all the file requests come in. The management port is used by administrator to manage resources within a node. The intercluster port is used to communicate to other cluster. The cluster-mgmt port is used to manage resources within the cluster. The undef role is for the port that has not yet been assigned a role.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ba18b4cebd7547c1bd6f92bd9e0ca791');
INSERT INTO `items` (`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`,`uuid`) values ('33387','20','1.3.6.1.4.1.789.1.22.2.1.11.{#SNMPINDEX}','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): Speed','fas3220.net.port[netportSpeedOper, "{#NODE}", "{#IFNAME}"]','1m','7d','365d','0','3','','','','',NULL,'210','','','0','','','','','2',NULL,'The speed appears on the port. It can be either undef(0), auto(1), ten Mb/s(2), hundred Mb/s(3), one Gb/s(4), or ten Gb/s(5).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e8816bdb15e4f1ab60c2c1b9706a34f');
INSERT INTO `items` (`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`,`uuid`) values ('33388','20','1.3.6.1.4.1.789.1.22.2.1.14.{#SNMPINDEX}','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): Up by an administrator','fas3220.net.port[netportUpAdmin, "{#NODE}", "{#IFNAME}"]','1m','7d','365d','0','3','','','','',NULL,'211','','','0','','','','','2',NULL,'Indicates whether the port status is set \'UP\' by an administrator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ea7cd0c80dae43e3bfd871b8ce1c541b');
INSERT INTO `items` (`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`,`uuid`) values ('33391','19','','10379','Jenkins: Get computer info','jenkins.computer_info','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$JENKINS.USER}','{$JENKINS.API.TOKEN}','','','0',NULL,'','0','30d','0','',NULL,'3s','{$JENKINS.URL}/computer/api/json','','','200','1','0','','0','0','0','0','0','0','0','7ae6f7fae8d4485fb850c84ac00b7ff1');
INSERT INTO `items` (`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`,`uuid`) values ('33392','19','','10379','Jenkins: Service ping','jenkins.ping','1m','7d','365d','0','3','','','','',NULL,'215','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','{$JENKINS.URL}/metrics/{$JENKINS.API.KEY}/ping','','','200','1','0','','0','0','0','0','0','0','0','21cad39b9c914516827b09d04716a71f');
INSERT INTO `items` (`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`,`uuid`) values ('33393','19','','10379','Jenkins: Get jobs info','jenkins.job_info','5m','0','0','0','4','','','','',NULL,NULL,'','','1','{$JENKINS.USER}','{$JENKINS.API.TOKEN}','','','0',NULL,'','0','30d','0','',NULL,'3s','{$JENKINS.URL}/api/json','[{"tree":"jobs[name,description,url,healthReport[score],lastBuild[number,result,duration,timestamp],lastSuccessfulBuild[number,result,duration,timestamp],lastFailedBuild[number,result,duration,timestamp]]"}]','','200','1','0','','0','0','0','0','0','0','0','dc47555812a0485e9d77da3e5a1c1227');
INSERT INTO `items` (`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`,`uuid`) values ('33394','19','','10379','Jenkins: Get service metrics','jenkins.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','{$JENKINS.URL}/metrics/{$JENKINS.API.KEY}/metrics','','','200','1','0','','0','0','0','0','0','0','0','db4c0de52dca4c8a853edf918b35bbe4');
INSERT INTO `items` (`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`,`uuid`) values ('33395','19','','10379','Jenkins: Get healthcheck','jenkins.healthcheck','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','{$JENKINS.URL}/metrics/{$JENKINS.API.KEY}/healthcheck','','','200','1','0','','0','0','0','0','0','0','0','4be0216b409d46a2a12e2929a9a03295');
INSERT INTO `items` (`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`,`uuid`) values ('33465','19','','10379','Computers discovery','jenkins.computers','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$JENKINS.USER}','{$JENKINS.API.TOKEN}','','','1',NULL,'','0','30d','0','',NULL,'3s','{$JENKINS.URL}/computer/api/json','[{"tree":"computer[description,displayName,monitorData]"}]','','200','1','0','','0','0','0','0','0','0','0','eb3e35534745476c8b205acb88382c77');
INSERT INTO `items` (`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`,`uuid`) values ('33466','19','','10379','Jobs discovery','jenkins.jobs','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$JENKINS.USER}','{$JENKINS.API.TOKEN}','','','1',NULL,'','0','30d','0','',NULL,'3s','{$JENKINS.URL}/api/json','[{"tree":"jobs[name,description,url]"}]','','200','1','0','','0','0','0','0','0','0','0','25949e5e452e4fa384ec4aa2088375aa');
INSERT INTO `items` (`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`,`uuid`) values ('33491','19','','10380','Hikvision camera: Get streaming channels','hikvision_cam.get_streaming','1m','0','0','0','4','','','','',NULL,NULL,'','','4','{$USER}','{$PASSWORD}','','','0',NULL,'Used to get the properties of streaming channels for the device','0','30d','0','',NULL,'3s','http://{HOST.CONN}:{$HIKVISION_ISAPI_PORT}/ISAPI/Streaming/channels','','','200,401','1','0','','0','0','0','0','0','0','0','65f89830d9f041f9a1558936dfcffc5f');
INSERT INTO `items` (`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`,`uuid`) values ('33492','19','','10380','Hikvision camera: Get system status','hikvision_cam.get_status','1m','0','0','0','4','','','','',NULL,NULL,'','','4','{$USER}','{$PASSWORD}','','','0',NULL,'It is used to get the status information of the device','0','30d','0','',NULL,'3s','http://{HOST.CONN}:{$HIKVISION_ISAPI_PORT}/ISAPI/System/status','','','200,401','1','0','','0','0','0','0','0','0','0','1ad3e3c9f60043a58f63addc8768c887');
INSERT INTO `items` (`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`,`uuid`) values ('33493','19','','10380','Hikvision camera: Get device info','hikvision_cam.get_info','1m','0','0','0','4','','','','',NULL,NULL,'','','4','{$USER}','{$PASSWORD}','','','0',NULL,'Used to get the device information','0','30d','0','',NULL,'3s','http://{HOST.CONN}:{$HIKVISION_ISAPI_PORT}/ISAPI/System/deviceInfo','','','200,401','1','0','','0','0','0','0','0','0','0','0ddd3af82fb64b75821dc1fab96c16ab');
INSERT INTO `items` (`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`,`uuid`) values ('33520','19','','10380','PTZ discovery','hikvision_cam.ptz.discovery','1d','90d','0','0','4','','','','',NULL,NULL,'','','4','{$USER}','{$PASSWORD}','','','1',NULL,'','0','30d','0','',NULL,'3s','http://{HOST.CONN}:{$HIKVISION_ISAPI_PORT}/ISAPI/PTZCtrl/channels','','','200,401','1','0','','0','0','0','0','0','0','0','00647c38d30d44378bdcf573178063ec');
INSERT INTO `items` (`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`,`uuid`) values ('33521','19','','10380','Streaming channels discovery','hikvision_cam.streaming.discovery','1d','90d','0','0','4','','','','',NULL,NULL,'','','4','{$USER}','{$PASSWORD}','','','1',NULL,'','0','30d','1','',NULL,'3s','http://{HOST.CONN}:{$HIKVISION_ISAPI_PORT}/ISAPI/Streaming/channels','','','200,401','1','0','','0','0','0','0','0','0','0','0bf00b49acd448ddbd1f4fac7630c40e');
INSERT INTO `items` (`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`,`uuid`) values ('33522','19','','10380','Hikvision camera: Get PTZ info','hikvision_cam.get_ptz[{#PTZ_CHANNEL_ID}]','1m','0','0','0','4','','','','',NULL,NULL,'','','4','{$USER}','{$PASSWORD}','','','2',NULL,'High precision positioning which is accurate to a bit after the decimal point','0','30d','0','',NULL,'3s','http://{HOST.CONN}:{$HIKVISION_ISAPI_PORT}/ISAPI/PTZCtrl/channels/{#PTZ_CHANNEL_ID}/status','','','200,401','1','0','','0','0','0','0','0','0','0','6799d99ad02743a1b294b80bbed52280');
INSERT INTO `items` (`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`,`uuid`) values ('33542','16','','10381','Data region metrics','jmx.discovery[beans,"org.apache:group=DataRegionMetrics,*"]','10m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','1',NULL,'','0','30d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2aa2cf6500b347e083c492aa2eade85a');
INSERT INTO `items` (`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`,`uuid`) values ('33543','16','','10381','Local node metrics','jmx.discovery[beans,"org.apache:group=Kernal,name=ClusterLocalNodeMetricsMXBeanImpl,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','1',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','92f16f4d02e149c5ae5b09f1007cead8');
INSERT INTO `items` (`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`,`uuid`) values ('33544','16','','10381','Cluster metrics','jmx.discovery[beans,"org.apache:group=Kernal,name=ClusterMetricsMXBeanImpl,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','1',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1b3b0461964a418a962539ec4c17aca6');
INSERT INTO `items` (`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`,`uuid`) values ('33545','16','','10381','Ignite kernal metrics','jmx.discovery[beans,"org.apache:group=Kernal,name=IgniteKernal,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','1',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c1513c51c41046c288b9add14feaabdb');
INSERT INTO `items` (`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`,`uuid`) values ('33546','16','','10381','TCP Communication SPI metrics','jmx.discovery[beans,"org.apache:group=SPIs,name=TcpCommunicationSpi,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','1',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','afd0c3182f8d4a299a180848eb096b95');
INSERT INTO `items` (`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`,`uuid`) values ('33547','16','','10381','TCP discovery SPI','jmx.discovery[beans,"org.apache:group=SPIs,name=TcpDiscoverySpi,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','1',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bab4df33f0bb4b5d892438865b6a97f2');
INSERT INTO `items` (`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`,`uuid`) values ('33548','16','','10381','Transaction metrics','jmx.discovery[beans,"org.apache:group=TransactionMetrics,name=TransactionMetricsMxBeanImpl,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','1',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','709e596e106b40869be746dc84214c06');
INSERT INTO `items` (`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`,`uuid`) values ('33549','16','','10381','Cache groups','jmx.discovery[beans,"org.apache:group=\\"Cache groups\\",*"]','10m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','1',NULL,'','0','30d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aefce82342554933ae1214dcd7ca708b');
INSERT INTO `items` (`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`,`uuid`) values ('33550','16','','10381','Thread pool metrics','jmx.discovery[beans,"org.apache:group=\\"Thread Pools\\",*"]','10m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','1',NULL,'','0','30d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d532f96029b7415fac925e6fd53100f4');
INSERT INTO `items` (`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`,`uuid`) values ('33551','16','','10381','Cache metrics','jmx.discovery[beans,"org.apache:name=\\"org.apache.ignite.internal.processors.cache.CacheLocalMetricsMXBeanImpl\\",*"]','10m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','1',NULL,'','0','30d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b050fc87d8a3400282739f03c1a5fefd');
INSERT INTO `items` (`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`,`uuid`) values ('33552','16','','10381','Data region {#JMXNAME}: Allocation, rate','jmx["{#JMXOBJ}",AllocationRate]','1m','7d','365d','0','0','','!pps','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Allocation rate (pages per second) averaged across rateTimeInternal.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','56780f0bc58e499bb452e5879961ac9d');
INSERT INTO `items` (`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`,`uuid`) values ('33553','16','','10381','Data region {#JMXNAME}: Checkpoint buffer size','jmx["{#JMXOBJ}",CheckpointBufferSize]','1m','7d','365d','0','0','','B','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Total size in bytes for checkpoint buffer.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9b3528eb623c4fdda10228671268bcdb');
INSERT INTO `items` (`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`,`uuid`) values ('33554','16','','10381','Data region {#JMXNAME}: Dirty pages','jmx["{#JMXOBJ}",DirtyPages]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Number of pages in memory not yet synchronized with persistent storage.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','21f8fc17522d40cc8723053e8ed8716f');
INSERT INTO `items` (`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`,`uuid`) values ('33555','16','','10381','Data region {#JMXNAME}: Eviction, rate','jmx["{#JMXOBJ}",EvictionRate]','1m','7d','365d','0','0','','!pps','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Eviction rate (pages per second).','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8bcc78ee4e984f9c8c07b60e5dd35c42');
INSERT INTO `items` (`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`,`uuid`) values ('33556','16','','10381','Data region {#JMXNAME}: Size, max','jmx["{#JMXOBJ}",MaxSize]','1m','7d','365d','0','0','','B','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Maximum memory region size defined by its data region.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7fa689749cd64474af294976e4bc7762');
INSERT INTO `items` (`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`,`uuid`) values ('33557','16','','10381','Data region {#JMXNAME}: Offheap size','jmx["{#JMXOBJ}",OffHeapSize]','1m','7d','365d','0','0','','B','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Offheap size in bytes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bb0dd42c5a3c400f95a7084792e7522e');
INSERT INTO `items` (`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`,`uuid`) values ('33558','16','','10381','Data region {#JMXNAME}: Offheap used size','jmx["{#JMXOBJ}",OffheapUsedSize]','1m','7d','365d','0','0','','B','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Total used offheap size in bytes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a793c5e41891467fb3ee53722f9fae13');
INSERT INTO `items` (`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`,`uuid`) values ('33559','16','','10381','Data region {#JMXNAME}: Pages fill factor','jmx["{#JMXOBJ}",PagesFillFactor]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The percentage of the used space.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b4fb229defdb434b8307d91e2f17f5db');
INSERT INTO `items` (`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`,`uuid`) values ('33560','16','','10381','Data region {#JMXNAME}: Pages replace, rate','jmx["{#JMXOBJ}",PagesReplaceRate]','1m','7d','365d','0','0','','!pps','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Rate at which pages in memory are replaced with pages from persistent storage (pages per second).','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ca77d42a8f44e278b44417d33094535');
INSERT INTO `items` (`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`,`uuid`) values ('33561','16','','10381','Data region {#JMXNAME}: Allocated, bytes','jmx["{#JMXOBJ}",TotalAllocatedSize]','1m','7d','365d','0','0','','B','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Total size of memory allocated in bytes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b62d56147b3d43aebd1f3c9eb13a8e05');
INSERT INTO `items` (`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`,`uuid`) values ('33562','16','','10381','Data region {#JMXNAME}: Used checkpoint buffer size','jmx["{#JMXOBJ}",UsedCheckpointBufferSize]','1m','7d','365d','0','0','','B','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Used checkpoint buffer size in bytes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','14b02d5526c44f2599e1893b815b1d2b');
INSERT INTO `items` (`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`,`uuid`) values ('33563','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs active, current','jmx["{#JMXOBJ}",CurrentActiveJobs]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Number of currently active jobs concurrently executing on the node.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7f8721ab4e6c4b23bd1e948f8c1c4480');
INSERT INTO `items` (`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`,`uuid`) values ('33564','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, current','jmx["{#JMXOBJ}",CurrentCancelledJobs]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Number of cancelled jobs that are still running.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','13b1867082c340d0a6f317c94376a055');
INSERT INTO `items` (`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`,`uuid`) values ('33565','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: PME duration, current','jmx["{#JMXOBJ}",CurrentPmeDuration]','1m','7d','365d','0','3','','ms','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Current PME duration in milliseconds.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','832c3683406c460c826522f8b2e3aafa');
INSERT INTO `items` (`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`,`uuid`) values ('33566','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs rejected, current','jmx["{#JMXOBJ}",CurrentRejectedJobs]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Number of jobs rejected after more recent collision resolution operation.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6b68ba90e40b4fa0a798dfde64ba8f01');
INSERT INTO `items` (`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`,`uuid`) values ('33567','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Threads count, current','jmx["{#JMXOBJ}",CurrentThreadCount]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Current number of live threads.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c459658bf32f4ca5aac6cfe1f8a8cc5b');
INSERT INTO `items` (`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`,`uuid`) values ('33568','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs waiting, current','jmx["{#JMXOBJ}",CurrentWaitingJobs]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Number of queued jobs currently waiting to be executed.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e29b01d139bd4d7e8248ccddb2a19baa');
INSERT INTO `items` (`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`,`uuid`) values ('33569','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Heap memory used','jmx["{#JMXOBJ}",HeapMemoryUsed]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Current heap size that is used for object allocation.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5f61ae253e4f459ebc403ca69d85a617');
INSERT INTO `items` (`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`,`uuid`) values ('33570','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, rate','jmx["{#JMXOBJ}",TotalCancelledJobs]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Total number of jobs cancelled by the node per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','923c561a1a504ce399bf6b1892e29a3e');
INSERT INTO `items` (`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`,`uuid`) values ('33571','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs executed, rate','jmx["{#JMXOBJ}",TotalExecutedJobs]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Total number of jobs handled by the node per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d6044f18b5e741818ca299ce8b19ccdb');
INSERT INTO `items` (`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`,`uuid`) values ('33572','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs rejects, rate','jmx["{#JMXOBJ}",TotalRejectedJobs]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Total number of jobs this node rejects during collision resolution operations since node startup per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','15135ffe1ec74e8c920ee4c70b986904');
INSERT INTO `items` (`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`,`uuid`) values ('33573','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Active baseline','jmx["{#JMXOBJ}",ActiveBaselineNodes]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of nodes that are currently active in the baseline topology.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','238c39ab7d5640abb3a81f0a51acc065');
INSERT INTO `items` (`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`,`uuid`) values ('33574','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Baseline','jmx["{#JMXOBJ}",TotalBaselineNodes]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Total baseline nodes that are registered in the baseline topology.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4edffa6b8f294d959797a5c6ca4ccc5a');
INSERT INTO `items` (`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`,`uuid`) values ('33575','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Client','jmx["{#JMXOBJ}",TotalClientNodes]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of client nodes in the cluster.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a4116287c8a34359a46eff1217f7418d');
INSERT INTO `items` (`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`,`uuid`) values ('33576','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, total','jmx["{#JMXOBJ}",TotalNodes]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Total number of nodes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','517a320bd6964ec7906bf6b0408d834b');
INSERT INTO `items` (`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`,`uuid`) values ('33577','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Server','jmx["{#JMXOBJ}",TotalServerNodes]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of server nodes in the cluster.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9cfa72ba360840d9b87de9c59b780529');
INSERT INTO `items` (`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`,`uuid`) values ('33578','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Version','jmx["{#JMXOBJ}",FullVersion]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Version of Ignite instance.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b9e23036503a4227bfbb21969583120e');
INSERT INTO `items` (`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`,`uuid`) values ('33579','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Local node ID','jmx["{#JMXOBJ}",LocalNodeId]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Unique identifier for this node within grid.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cfa6cb5b02634c9d803b7c3a0774a7ce');
INSERT INTO `items` (`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`,`uuid`) values ('33580','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Uptime','jmx["{#JMXOBJ}",UpTime]','1m','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Uptime of Ignite instance.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d48d3694467e4153af369475672e4811');
INSERT INTO `items` (`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`,`uuid`) values ('33581','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Communication outbound messages queue','jmx["{#JMXOBJ}",OutboundMessagesQueueSize]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Outbound messages queue size.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c6d996a3b2754963a916f44e8e99e828');
INSERT INTO `items` (`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`,`uuid`) values ('33582','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Communication messages received, rate','jmx["{#JMXOBJ}",ReceivedMessagesCount]','1m','7d','365d','0','0','','!msg/s','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of messages received per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8a25c98dd3374e78ba26cebea1eaaebc');
INSERT INTO `items` (`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`,`uuid`) values ('33584','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Communication messages sent, rate','jmx["{#JMXOBJ}",SentMessagesCount]','1m','7d','365d','0','0','','!msg/s','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of messages sent per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6eacaf2c8e9e4f53991d547f81731780');
INSERT INTO `items` (`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`,`uuid`) values ('33585','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Coordinator','jmx["{#JMXOBJ}",Coordinator]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Current coordinator UUID.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d7a4b267f29b4baab3af479e7b49ae66');
INSERT INTO `items` (`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`,`uuid`) values ('33586','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Discovery message worker queue','jmx["{#JMXOBJ}",MessageWorkerQueueSize]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Message worker queue current size.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7b7a7edb2602436c8b53d6f9f4ea2236');
INSERT INTO `items` (`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`,`uuid`) values ('33587','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes failed','jmx["{#JMXOBJ}",NodesFailed]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Nodes failed count.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d933d5036b1f41358130c512af1161c6');
INSERT INTO `items` (`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`,`uuid`) values ('33588','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes joined','jmx["{#JMXOBJ}",NodesJoined]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Nodes join count.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4464386c72704016a790371e8117896c');
INSERT INTO `items` (`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`,`uuid`) values ('33589','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes left','jmx["{#JMXOBJ}",NodesLeft]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Nodes left count.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fda81af6a86948b394b53f1ec505993a');
INSERT INTO `items` (`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`,`uuid`) values ('33590','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Discovery reconnect, rate','jmx["{#JMXOBJ}",ReconnectCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Number of times node tries to (re)establish connection to another node per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','57aeab81263f45fba8189347d5446045');
INSERT INTO `items` (`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`,`uuid`) values ('33591','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: TotalProcessedMessages','jmx["{#JMXOBJ}",TotalProcessedMessages]','1m','7d','365d','0','0','','!msg/s','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of messages received per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','615e7eb22a2d46ab863628d40bff4d7d');
INSERT INTO `items` (`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`,`uuid`) values ('33592','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Discovery messages received, rate','jmx["{#JMXOBJ}",TotalReceivedMessages]','1m','7d','365d','0','0','','!msg/s','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of messages processed per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b896207c7fda48ea9265cebfee12f6df');
INSERT INTO `items` (`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`,`uuid`) values ('33593','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Locked keys','jmx["{#JMXOBJ}",LockedKeysNumber]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of keys locked on the node.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9bdf9d13664b405f9737590323bc4a1c');
INSERT INTO `items` (`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`,`uuid`) values ('33594','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions owner, current','jmx["{#JMXOBJ}",OwnerTransactionsNumber]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of active transactions for which this node is the initiator.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac461a17802440a8906ea7471659935a');
INSERT INTO `items` (`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`,`uuid`) values ('33595','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions committed, rate','jmx["{#JMXOBJ}",TransactionsCommittedNumber]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of transactions which were committed per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3754810fbb1f47fe858880ada9f40921');
INSERT INTO `items` (`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`,`uuid`) values ('33596','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions holding lock, current','jmx["{#JMXOBJ}",TransactionsHoldingLockNumber]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of active transactions holding at least one key lock.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff5a1a7f579c430c8f1860d241bd8b2f');
INSERT INTO `items` (`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`,`uuid`) values ('33597','16','','10381','Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions rolledback, rate','jmx["{#JMXOBJ}",TransactionsRolledBackNumber]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of transactions which were rollback per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3de3a27adea84e9cbb2cae812a3bc9c6');
INSERT INTO `items` (`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`,`uuid`) values ('33598','16','','10381','Cache group [{#JMXNAME}]: Backups','jmx["{#JMXOBJ}",Backups]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Count of backups configured for cache group.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0014580397654a279b3c8906e457ee74');
INSERT INTO `items` (`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`,`uuid`) values ('33599','16','','10381','Cache group [{#JMXNAME}]: Caches','jmx["{#JMXOBJ}",Caches]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'List of caches.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8b5acfc3a3c64714b57381fc0ae6b1a6');
INSERT INTO `items` (`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`,`uuid`) values ('33600','16','','10381','Cache group [{#JMXNAME}]: Local node partitions, moving','jmx["{#JMXOBJ}",LocalNodeMovingPartitionsCount]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Count of partitions with state MOVING for this cache group located on this node.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','253059e09010451f94ad0e6b10be7cc5');
INSERT INTO `items` (`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`,`uuid`) values ('33601','16','','10381','Cache group [{#JMXNAME}]: Local node partitions, owning','jmx["{#JMXOBJ}",LocalNodeOwningPartitionsCount]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Count of partitions with state OWNING for this cache group located on this node.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84edf5609ef94d0185a15a606384e609');
INSERT INTO `items` (`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`,`uuid`) values ('33602','16','','10381','Cache group [{#JMXNAME}]: Local node entries, renting','jmx["{#JMXOBJ}",LocalNodeRentingEntriesCount]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Count of entries remains to evict in RENTING partitions located on this node for this cache group.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','314499dd6d214bdcbc524f83c6cbaa2b');
INSERT INTO `items` (`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`,`uuid`) values ('33603','16','','10381','Cache group [{#JMXNAME}]: Local node partitions, renting','jmx["{#JMXOBJ}",LocalNodeRentingPartitionsCount]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Count of partitions with state RENTING for this cache group located on this node.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','06aff67a70624af899b2f111d7e6c34b');
INSERT INTO `items` (`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`,`uuid`) values ('33604','16','','10381','Cache group [{#JMXNAME}]: Partition copies, max','jmx["{#JMXOBJ}",MaximumNumberOfPartitionCopies]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Maximum number of partition copies for all partitions of this cache group.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6888861452b64b9e90ece1d1ab97ab4d');
INSERT INTO `items` (`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`,`uuid`) values ('33605','16','','10381','Cache group [{#JMXNAME}]: Partition copies, min','jmx["{#JMXOBJ}",MinimumNumberOfPartitionCopies]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Minimum number of partition copies for all partitions of this cache group.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9910268fcb3a46aca2eeaf581420ca31');
INSERT INTO `items` (`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`,`uuid`) values ('33606','16','','10381','Cache group [{#JMXNAME}]: Partitions','jmx["{#JMXOBJ}",Partitions]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Count of partitions for cache group.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','edc59b661b004f9a8687b6a6b0e1dc09');
INSERT INTO `items` (`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`,`uuid`) values ('33607','16','','10381','Thread pool [{#JMXNAME}]: Pool size, core','jmx["{#JMXOBJ}",CorePoolSize]','1m','7d','365d','0','3','','!msg','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The core number of threads.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1646bb35234742bb894a5abfd1fbf021');
INSERT INTO `items` (`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`,`uuid`) values ('33608','16','','10381','Thread pool [{#JMXNAME}]: Pool size, max','jmx["{#JMXOBJ}",MaximumPoolSize]','1m','7d','365d','0','3','','!msg','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The maximum allowed number of threads.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','959cfe87996b4d6886bb90db2265deef');
INSERT INTO `items` (`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`,`uuid`) values ('33609','16','','10381','Thread pool [{#JMXNAME}]: Pool size','jmx["{#JMXOBJ}",PoolSize]','1m','7d','365d','0','3','','!msg','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Current number of threads in the pool.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6c7897c2f2c842988a1e6802eb11adde');
INSERT INTO `items` (`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`,`uuid`) values ('33610','16','','10381','Thread pool [{#JMXNAME}]: Queue size','jmx["{#JMXOBJ}",QueueSize]','1m','7d','365d','0','3','','!msg','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Current size of the execution queue.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b4b22918f374603a2f14efc95c217da');
INSERT INTO `items` (`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`,`uuid`) values ('33611','16','','10381','Cache group [{#JMXGROUP}]: Cache gets, rate','jmx["{#JMXOBJ}",CacheGets]','1m','7d','365d','0','0','','ops','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of gets to the cache per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','372f156464634c2b98c2ce3bfe9ac2f4');
INSERT INTO `items` (`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`,`uuid`) values ('33612','16','','10381','Cache group [{#JMXGROUP}]: Cache hits, pct','jmx["{#JMXOBJ}",CacheHitPercentage]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Percentage of successful hits.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e633d192b3a472e9a29b4e0a0013ab1');
INSERT INTO `items` (`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`,`uuid`) values ('33613','16','','10381','Cache group [{#JMXGROUP}]: Cache misses, pct','jmx["{#JMXOBJ}",CacheMissPercentage]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Percentage of accesses that failed to find anything.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0d79c416c12748f9a3471003ce4d88fb');
INSERT INTO `items` (`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`,`uuid`) values ('33614','16','','10381','Cache group [{#JMXGROUP}]: Cache puts, rate','jmx["{#JMXOBJ}",CachePuts]','1m','7d','365d','0','0','','ops','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of puts to the cache per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb324608d65545c79e71df0978d0d053');
INSERT INTO `items` (`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`,`uuid`) values ('33615','16','','10381','Cache group [{#JMXGROUP}]: Cache removals, rate','jmx["{#JMXOBJ}",CacheRemovals]','1m','7d','365d','0','0','','ops','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of removals from the cache per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','503f39545fa04af79e8dc85f0550ed6b');
INSERT INTO `items` (`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`,`uuid`) values ('33616','16','','10381','Cache group [{#JMXGROUP}]: Cache size','jmx["{#JMXOBJ}",CacheSize]','1m','7d','365d','0','3','','!keys','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of non-null values in the cache as a long value.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','182dea03e7d64425aea8c64e1d5714ba');
INSERT INTO `items` (`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`,`uuid`) values ('33617','16','','10381','Cache group [{#JMXGROUP}]: Cache transaction commits, rate','jmx["{#JMXOBJ}",CacheTxCommits]','1m','7d','365d','0','0','','!tps','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of transaction commits per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','74119c1570c24155b450db6e5c1126cd');
INSERT INTO `items` (`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`,`uuid`) values ('33618','16','','10381','Cache group [{#JMXGROUP}]: Cache transaction rollbacks, rate','jmx["{#JMXOBJ}",CacheTxRollbacks]','1m','7d','365d','0','0','','!tps','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of transaction rollback per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','34d8a8ac772a48c486bfb101e7129fd8');
INSERT INTO `items` (`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`,`uuid`) values ('33619','16','','10381','Cache group [{#JMXGROUP}]: Cache heap entries','jmx["{#JMXOBJ}",HeapEntriesCount]','1m','7d','365d','0','3','','!keys','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of entries in heap memory.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cb6b9006d41c46f29ff902a76a27c6f5');
INSERT INTO `items` (`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`,`uuid`) values ('33620','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10256','Temperature Discovery System','tempDescr.discovery.system','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4d513f2958ac483383ff803df781bd76');
INSERT INTO `items` (`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`,`uuid`) values ('33621','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10256','{#SNMPINDEX}: Temperature sensor condition','sensor.temp.condition[cpqHeTemperatureCondition.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'217','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac352f7b00d6478daf601d0f7cb508e4');
INSERT INTO `items` (`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`,`uuid`) values ('33622','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10256','Ambient: Temperature sensor condition','sensor.temp.condition[cpqHeTemperatureCondition.Ambient.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'217','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da102e6fc86b49c7bd57c2805ca08675');
INSERT INTO `items` (`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`,`uuid`) values ('33623','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10256','CPU-{#SNMPINDEX}: Temperature sensor condition','sensor.temp.condition[cpqHeTemperatureCondition.CPU.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'217','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4cad241ca3bd4382879bebabc4f42201');
INSERT INTO `items` (`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`,`uuid`) values ('33624','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10256','I/O-{#SNMPINDEX}: Temperature sensor condition','sensor.temp.condition[cpqHeTemperatureCondition."I/O.{#SNMPINDEX}"]','1m','7d','365d','0','3','','','','',NULL,'217','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','51fbe5f6d6c1481e818eafa7cbe01295');
INSERT INTO `items` (`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`,`uuid`) values ('33625','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10256','I/O-{#SNMPINDEX}: Temperature','sensor.temp.value[cpqHeTemperatureCelsius."I/O.{#SNMPINDEX}"]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: I/O-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a37a9c96a9748468d10562bd1242aa0');
INSERT INTO `items` (`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`,`uuid`) values ('33626','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10256','Memory-{#SNMPINDEX}: Temperature sensor condition','sensor.temp.condition[cpqHeTemperatureCondition.Memory.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'217','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','861d683a933b4eb5989b0f5484a9a93d');
INSERT INTO `items` (`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`,`uuid`) values ('33627','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10256','PSU-{#SNMPINDEX}: Temperature sensor condition','sensor.temp.condition[cpqHeTemperatureCondition.PSU.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'217','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','01eea51183834c6a8ed7daf75abe6c87');
INSERT INTO `items` (`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`,`uuid`) values ('33628','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10256','System-{#SNMPINDEX}: Temperature sensor condition','sensor.temp.condition[cpqHeTemperatureCondition.System.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'217','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6adae921be5545c995cf24b2b900818c');
INSERT INTO `items` (`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`,`uuid`) values ('33629','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10256','System-{#SNMPINDEX}: Temperature','sensor.temp.value[cpqHeTemperatureCelsius.System.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: System-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa985d3fb0084e24bd9f3e81c249cae4');
INSERT INTO `items` (`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`,`uuid`) values ('33630','21','','10382','Sharepoint: Get directory structure','sharepoint.get_dir','{$SHAREPOINT.GET_INTERVAL}','0','0','0','4','','','','',NULL,NULL,'try {\r\n\r\n const js_start = new Date().getTime();\r\n\r\n var params = JSON.parse(value);\r\n var result = {\r\n status: 0,\r\n data: {}\r\n };\r\n\r\n var req = new HttpRequest();\r\n\r\n var out = {};\r\n var queue = [];\r\n\r\n var node;\r\n var obj_iter_by_name;\r\n var cpath;\r\n\r\n var current_folder;\r\n var child_folders;\r\n var child_files;\r\n var obj_iter_file;\r\n\r\n req.addHeader(\'Accept: application/json; odata=verbose\');\r\n req.setHttpAuth(HTTPAUTH_NTLM, params.user, params.password);\r\n queue.push({\r\n patch: params.root,\r\n json: []\r\n });\r\n\r\n while (queue.length) {\r\n node = queue.pop();\r\n obj_iter_by_name = out;\r\n cpath = node.json.slice()\r\n\r\n current_folder = JSON.parse(req.get(encodeURI(params.url + "/_api/web/GetFolderByServerRelativeUrl(\'" + node.patch.replace("\'", "\'\'") + "\')")));\r\n\r\n result.status = req.getStatus();\r\n if (result.status != 200) {\r\n throw result.status;\r\n }\r\n\r\n cpath.forEach(function (nd) {\r\n obj_iter_by_name = obj_iter_by_name[nd]\r\n });\r\n\r\n obj_iter_by_name[current_folder.d.Name] = {\r\n meta: {\r\n size: 0,\r\n created: Math.round(new Date(current_folder.d.TimeCreated).getTime() / 1000),\r\n modified: Math.round(new Date(current_folder.d.TimeLastModified).getTime() / 1000)\r\n },\r\n data: {}\r\n }\r\n\r\n child_folders = JSON.parse(req.get(encodeURI(params.url + "/_api/web/GetFolderByServerRelativeUrl(\'" + node.patch.replace("\'", "\'\'") + "\')/Folders")));\r\n\r\n cpath.push(current_folder.d.Name, "data");\r\n child_folders.d.results.forEach(function (dir) {\r\n queue.push({\r\n patch: dir.ServerRelativeUrl,\r\n json: cpath\r\n });\r\n });\r\n\r\n child_files = JSON.parse(req.get(encodeURI(params.url + "/_api/web/GetFolderByServerRelativeUrl(\'" + node.patch.replace("\'", "\'\'") + "\')/Files")));\r\n child_files.d.results.forEach(function (file) {\r\n obj_iter_by_name[current_folder.d.Name].data[file.Name] = {\r\n meta: {\r\n size: file.Length,\r\n created: Math.round(new Date(file.TimeCreated).getTime() / 1000),\r\n modified: Math.round(new Date(file.TimeLastModified).getTime() / 1000)\r\n }\r\n };\r\n\r\n obj_iter_file = out;\r\n cpath.forEach(function (nd) {\r\n obj_iter_file = obj_iter_file[nd];\r\n if (nd != "data") {\r\n obj_iter_file.meta.size += +file.Length;\r\n }\r\n });\r\n });\r\n\r\n }\r\n\r\n result.data = out;\r\n\r\n} catch (error) {\r\n Zabbix.log(3, "Sharepoint fs scan failed: " + params.url + " Error: " + error);\r\n if (!Number.isInteger(error))\r\n result.status = 520;\r\n}\r\n\r\nresult.time = new Date().getTime() - js_start;\r\nreturn JSON.stringify(result);','','0','','','','','0',NULL,'Used to get directory structure information','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','71e23c666b84414490589a509b60c488');
INSERT INTO `items` (`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`,`uuid`) values ('33631','19','','10382','Sharepoint: Health score','sharepoint.health_score','1m','7d','365d','0','3','','','','',NULL,NULL,'','','2','{$SHAREPOINT.USER}','{$SHAREPOINT.PASSWORD}','','','0',NULL,'This item specifies a value between 0 and 10, where 0 represents a low load and a high ability to process requests and 10 represents a high load and that the server is throttling requests to maintain adequate throughput.','0','30d','0','',NULL,'3s','{$SHAREPOINT.URL}','','','200','1','0','','1','3','0','0','0','0','0','7b59d767712f49b3bbc17947999ca944');
INSERT INTO `items` (`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`,`uuid`) values ('33634','21','','10382','Directory discovery','sharepoint.directory.discovery','{$SHAREPOINT.LLD_INTERVAL}','90d','0','0','4','','','','',NULL,NULL,'try {\r\n\r\n var params = JSON.parse(value);\r\n var result = [];\r\n\r\n var req = new HttpRequest();\r\n\r\n var queue = [];\r\n\r\n var node;\r\n var current_folder;\r\n var child_folders;\r\n var child_files;\r\n\r\n req.addHeader(\'Accept: application/json; odata=verbose\');\r\n req.setHttpAuth(HTTPAUTH_NTLM, params.user, params.password);\r\n queue.push({\r\n patch: params.root,\r\n json_query: \'$["data"]\'\r\n });\r\n\r\n while (queue.length) {\r\n node = queue.pop();\r\n\r\n current_folder = JSON.parse(req.get(encodeURI(params.url + "/_api/web/GetFolderByServerRelativeUrl(\'" + node.patch.replace("\'", "\'\'") + "\')")));\r\n\r\n result.status = req.getStatus();\r\n if (result.status != 200) {\r\n throw result.status;\r\n }\r\n\r\n result.push({\r\n \'{#SHAREPOINT.LLD.NAME}\': current_folder.d.Name,\r\n \'{#SHAREPOINT.LLD.TYPE}\': \'FOLDER\',\r\n \'{#SHAREPOINT.LLD.FULL_PATH}\': node.patch,\r\n \'{#SHAREPOINT.LLD.JSON_PATH}\': node.json_query + \'["\' + current_folder.d.Name + \'"]\',\r\n \'{#SHAREPOINT.LLD.SIZE}\': 0,\r\n \'{#SHAREPOINT.LLD.CREATED}\': Math.round(new Date(current_folder.d.TimeCreated).getTime() / 1000),\r\n \'{#SHAREPOINT.LLD.MODIFIED}\': Math.round(new Date(current_folder.d.TimeLastModified).getTime() / 1000)\r\n });\r\n\r\n child_folders = JSON.parse(req.get(encodeURI(params.url + "/_api/web/GetFolderByServerRelativeUrl(\'" + node.patch.replace("\'", "\'\'") + "\')/Folders")));\r\n\r\n child_folders.d.results.forEach(function (dir) {\r\n queue.push({\r\n patch: dir.ServerRelativeUrl,\r\n json_query: node.json_query + \'["\' + current_folder.d.Name + \'"]["data"]\'\r\n });\r\n });\r\n\r\n child_files = JSON.parse(req.get(encodeURI(params.url + "/_api/web/GetFolderByServerRelativeUrl(\'" + node.patch.replace("\'", "\'\'") + "\')/Files")));\r\n child_files.d.results.forEach(function (file) {\r\n result.push({\r\n \'{#SHAREPOINT.LLD.NAME}\': file.Name,\r\n \'{#SHAREPOINT.LLD.TYPE}\': \'FILE\',\r\n \'{#SHAREPOINT.LLD.FULL_PATH}\': file.ServerRelativeUrl,\r\n \'{#SHAREPOINT.LLD.JSON_PATH}\': node.json_query + \'["\' + current_folder.d.Name + \'"]\' + \'["data"]["\' + file.Name + \'"]\',\r\n \'{#SHAREPOINT.LLD.SIZE}\': file.Length,\r\n \'{#SHAREPOINT.LLD.CREATED}\': Math.round(new Date(file.TimeCreated).getTime() / 1000),\r\n \'{#SHAREPOINT.LLD.MODIFIED}\': Math.round(new Date(file.TimeLastModified).getTime() / 1000)\r\n });\r\n });\r\n }\r\n\r\n} catch (error) {\r\n Zabbix.log(3, "Sharepoint fs discovery failed: " + params.url + " Error: " + error);\r\n return "Sharepoint fs discovery failed: " + params.url + " Error: " + error;\r\n}\r\n\r\nreturn JSON.stringify(result);','','0','','','','','1',NULL,'','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0fe7e8e5480a42b7903cb7ac9bf931cc');
INSERT INTO `items` (`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`,`uuid`) values ('33638','3','','10174','VMware: Host memory consumed','vmware.vm.memory.size.consumed[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Amount of host physical memory consumed for backing up guest physical memory pages.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','04a40f805fed4ddfa1590274a996a019');
INSERT INTO `items` (`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`,`uuid`) values ('33639','3','','10174','VMware: Host memory usage in percents','vmware.vm.memory.usage[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Percentage of host physical memory that has been consumed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e82daa73e03e43b9838d9e414d710e38');
INSERT INTO `items` (`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`,`uuid`) values ('33640','3','','10174','VMware: CPU latency in percents','vmware.vm.cpu.latency[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Percentage of time the virtual machine is unable to run because it is contending for access to the physical CPU(s).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','31389342688f4b0696a49431923a528f');
INSERT INTO `items` (`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`,`uuid`) values ('33641','3','','10174','VMware: Uptime of guest OS','vmware.vm.guest.osuptime[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Total time elapsed since the last operating system boot-up (in seconds).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','521a0396514845e3bc5d3dc54ec3d940');
INSERT INTO `items` (`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`,`uuid`) values ('33642','3','','10174','VMware: Guest memory swapped','vmware.vm.guest.memory.size.swapped[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Amount of guest physical memory that is swapped out to the swap space.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e645130999db470fbbf14a8055c95b23');
INSERT INTO `items` (`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`,`uuid`) values ('33643','3','','10174','VMware: CPU usage in percents','vmware.vm.cpu.usage.perf[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'CPU usage as a percentage during the interval.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','50606be978814b51b4bae54340965cdc');
INSERT INTO `items` (`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`,`uuid`) values ('33644','3','','10174','VMware: CPU swap-in latency in percents','vmware.vm.cpu.swapwait[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Percentage of CPU time spent waiting for swap-in.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','50de05f27f33425cb207a3fdece7ecb1');
INSERT INTO `items` (`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`,`uuid`) values ('33645','3','','10174','VMware: CPU readiness latency in percents','vmware.vm.cpu.readiness[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Percentage of time that the virtual machine was ready, but could not get scheduled to run on the physical CPU.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f4d72109b7ee4e0bb65aab1de85b6b05');
INSERT INTO `items` (`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`,`uuid`) values ('33646','3','','10175','VMware: Power usage','vmware.hv.power[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1m','7d','365d','0','3','','!W','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Current power usage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','179a981cf30f4f77869e3b50dc2bc333');
INSERT INTO `items` (`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`,`uuid`) values ('33647','3','','10175','VMware: Power usage maximum allowed','vmware.hv.power[{$VMWARE.URL},{$VMWARE.HV.UUID},max]','1m','7d','365d','0','3','','!W','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Maximum allowed power usage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e4116d7c7e234c5ebd5784f42ade1f2e');
INSERT INTO `items` (`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`,`uuid`) values ('33648','3','','10175','VMware: CPU utilization','vmware.hv.cpu.utilization[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'CPU usage as a percentage during the interval depends on power management or HT.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aad168c33cd14f76aa14ab5ca26498ec');
INSERT INTO `items` (`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`,`uuid`) values ('33649','3','','10175','VMware: CPU usage in percents','vmware.hv.cpu.usage.perf[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'CPU usage as a percentage during the interval.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c4ebd62118464e7a8d1945f80d70f8ae');
INSERT INTO `items` (`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`,`uuid`) values ('33650','3','','10174','VMware: Network utilization on interface {#IFDESC}','vmware.vm.net.if.usage[{$VMWARE.URL},{$VMWARE.VM.UUID},{#IFNAME}]','1m','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine network utilization (combined transmit-rates and receive-rates) during the interval.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9c3cd13576cc4c0a8972fa188f911e96');
INSERT INTO `items` (`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`,`uuid`) values ('33651','3','','10174','VMware: Average number of outstanding read requests to the disk {#DISKDESC}','vmware.vm.storage.readoio[{$VMWARE.URL},{$VMWARE.VM.UUID},{#DISKNAME}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'Average number of outstanding read requests to the virtual disk during the collection interval.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a4886b1072314819aaf21183949c94bb');
INSERT INTO `items` (`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`,`uuid`) values ('33652','3','','10174','VMware: Average read latency to the disk {#DISKDESC}','vmware.vm.storage.totalreadlatency[{$VMWARE.URL},{$VMWARE.VM.UUID},{#DISKNAME}]','1m','7d','365d','0','3','','!ms','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'The average time a read from the virtual disk takes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','172e4882d39f49d486ab5590163fdd4b');
INSERT INTO `items` (`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`,`uuid`) values ('33653','3','','10174','VMware: Average write latency to the disk {#DISKDESC}','vmware.vm.storage.totalwritelatency[{$VMWARE.URL},{$VMWARE.VM.UUID},{#DISKNAME}]','1m','7d','365d','0','3','','!ms','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'The average time a write to the virtual disk takes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4fe54828be084b15bb92507106756a5f');
INSERT INTO `items` (`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`,`uuid`) values ('33654','3','','10174','VMware: Average number of outstanding write requests to the disk {#DISKDESC}','vmware.vm.storage.writeoio[{$VMWARE.URL},{$VMWARE.VM.UUID},{#DISKNAME}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'Average number of outstanding write requests to the virtual disk during the collection interval.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a74614af101c404eb7ebec10319dca05');
INSERT INTO `items` (`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`,`uuid`) values ('33655','3','','10175','VMware: Multipath count for datastore {#DATASTORE}','vmware.hv.datastore.multipath[{$VMWARE.URL},{$VMWARE.HV.UUID},{#DATASTORE}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'Number of available datastore paths.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','65e6c165c3674953b2845d4101a9a6bf');
INSERT INTO `items` (`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`,`uuid`) values ('33658','0','','10383','Disk discovery','smart.disk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery SMART disks.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4575af2717ec4bf78645edb84a966c84');
INSERT INTO `items` (`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`,`uuid`) values ('33670','7','','10384','Disk discovery','smart.disk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery SMART disks.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0a56a348d4a446938beae1eae5ec8993');
INSERT INTO `items` (`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`,`uuid`) values ('33691','20','1.3.6.1.4.1.34774.4.1.1.3.0','10385','OceanStor 5300 V5: Status','huawei.5300.v5[status]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System running status.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','86d978c810024643829d3192156e9e6c');
INSERT INTO `items` (`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`,`uuid`) values ('33692','20','1.3.6.1.4.1.34774.4.1.1.5.0','10385','OceanStor 5300 V5: Capacity total','huawei.5300.v5[totalCapacity]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total capacity of a device.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','04c8d7f53668449ea32c4ed611b71237');
INSERT INTO `items` (`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`,`uuid`) values ('33693','20','1.3.6.1.4.1.34774.4.1.1.4.0','10385','OceanStor 5300 V5: Capacity used','huawei.5300.v5[usedCapacity]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Used capacity of a device.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ef77f126052b4f9e9cddafdab20577d1');
INSERT INTO `items` (`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`,`uuid`) values ('33694','20','1.3.6.1.4.1.34774.4.1.1.6.0','10385','OceanStor 5300 V5: Version','huawei.5300.v5[version]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The device version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0a2e129d84d14e88bf953f3a9ca76b46');
INSERT INTO `items` (`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`,`uuid`) values ('33695','20','discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.5.1.1,{#LOCATION},1.3.6.1.4.1.34774.4.1.23.5.5.1.2]','10385','BBU discovery','huawei.5300.bbu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of BBU','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6de9606d1f594546b76e79bbb72a8a56');
INSERT INTO `items` (`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`,`uuid`) values ('33696','20','discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.2.1.1]','10385','Controllers discovery','huawei.5300.controllers.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of controllers','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c676eae5d7c548e788f7addc2343389f');
INSERT INTO `items` (`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`,`uuid`) values ('33697','20','discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.1.1.1,{#MODEL},1.3.6.1.4.1.34774.4.1.23.5.1.1.12,{#LOCATION},1.3.6.1.4.1.34774.4.1.23.5.1.1.4]','10385','Disks discovery','huawei.5300.disks.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of disks','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3a0b0a1fcdd9402cb67e93903049b070');
INSERT INTO `items` (`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`,`uuid`) values ('33698','20','discovery[{#NAME},1.3.6.1.4.1.34774.4.1.23.5.6.1.2]','10385','Enclosure discovery','huawei.5300.enclosure.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of enclosures','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','21e6235b6b314ce6a6392aafc9a3de07');
INSERT INTO `items` (`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`,`uuid`) values ('33699','20','discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.4.1.1,{#LOCATION},1.3.6.1.4.1.34774.4.1.23.5.4.1.2]','10385','FANs discovery','huawei.5300.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of FANs','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ae390e1c100d490ab4e878bac8951744');
INSERT INTO `items` (`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`,`uuid`) values ('33700','20','discovery[{#NAME},1.3.6.1.4.1.34774.4.1.19.9.4.1.2]','10385','LUNs discovery','huawei.5300.lun.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of LUNs','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aeb30b2aec4842bfb0a9f946988783a2');
INSERT INTO `items` (`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`,`uuid`) values ('33701','20','discovery[{#NODE},1.3.6.1.4.1.34774.4.1.21.3.1.1]','10385','Nodes performance discovery','huawei.5300.nodes.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of nodes performance counters','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6b934c21d8c54adf8b2e6d28e250537b');
INSERT INTO `items` (`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`,`uuid`) values ('33702','20','discovery[{#NAME},1.3.6.1.4.1.34774.4.1.23.4.2.1.2,{#THRESHOLD},1.3.6.1.4.1.34774.4.1.23.4.2.1.14]','10385','Storage pools discovery','huawei.5300.pool.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of storage pools','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','746fcf5132a54e0588713e6313d03e02');
INSERT INTO `items` (`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`,`uuid`) values ('33703','20','1.3.6.1.4.1.34774.4.1.23.5.5.1.3.{#SNMPINDEX}','10385','BBU {#ID} on {#LOCATION}: Health status','huawei.5300.v5[hwInfoBBUHealthStatus, "{#ID}:{#LOCATION}"]','1m','7d','365d','0','3','','','','',NULL,'220','','','0','','','','','2',NULL,'Health status of a BBU. For details, see definition of Enum Values (HEALTH_STATUS_E).\r\nhttps://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e9632c3596954729a8d49039ea787efd');
INSERT INTO `items` (`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`,`uuid`) values ('33704','20','1.3.6.1.4.1.34774.4.1.23.5.5.1.4.{#SNMPINDEX}','10385','BBU {#ID} on {#LOCATION}: Running status','huawei.5300.v5[hwInfoBBURunningStatus, "{#ID}:{#LOCATION}"]','1m','7d','365d','0','3','','','','',NULL,'222','','','0','','','','','2',NULL,'Running status of a BBU. For details, see definition of Enum Values (RUNNING_STATUS_E).\r\nhttps://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a861b76edde842448f39afd9788fa852');
INSERT INTO `items` (`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`,`uuid`) values ('33705','20','1.3.6.1.4.1.34774.4.1.23.5.2.1.8.{#SNMPINDEX}','10385','Controller {#ID}: CPU utilization','huawei.5300.v5[hwInfoControllerCPUUsage, "{#ID}"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'CPU usage of a controller {#ID}.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f9023618aa2b4c23a81c8cc3793bac0d');
INSERT INTO `items` (`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`,`uuid`) values ('33706','20','1.3.6.1.4.1.34774.4.1.23.5.2.1.2.{#SNMPINDEX}','10385','Controller {#ID}: Health status','huawei.5300.v5[hwInfoControllerHealthStatus, "{#ID}"]','1m','7d','365d','0','3','','','','',NULL,'220','','','0','','','','','2',NULL,'Controller health status. For details, see definition of Enum Values (HEALTH_STATUS_E).\r\nhttps://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','99798c647f2344d2896b644f2bd7e1c0');
INSERT INTO `items` (`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`,`uuid`) values ('33707','20','1.3.6.1.4.1.34774.4.1.23.5.2.1.9.{#SNMPINDEX}','10385','Controller {#ID}: Memory utilization','huawei.5300.v5[hwInfoControllerMemoryUsage, "{#ID}"]','1m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Memory usage of a controller {#ID}.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','42b61bf322fb495d94802c23f85f22b2');
INSERT INTO `items` (`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`,`uuid`) values ('33708','20','1.3.6.1.4.1.34774.4.1.23.5.2.1.6.{#SNMPINDEX}','10385','Controller {#ID}: Role','huawei.5300.v5[hwInfoControllerRole, "{#ID}"]','1m','7d','365d','0','3','','','','',NULL,'219','','','0','','','','','2',NULL,'Controller role..','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4797e9608d2445e385ad9db6097feeeb');
INSERT INTO `items` (`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`,`uuid`) values ('33709','20','1.3.6.1.4.1.34774.4.1.23.5.2.1.3.{#SNMPINDEX}','10385','Controller {#ID}: Running status','huawei.5300.v5[hwInfoControllerRunningStatus, "{#ID}"]','1m','7d','365d','0','3','','','','',NULL,'222','','','0','','','','','2',NULL,'Controller running status. For details, see definition of Enum Values (RUNNING_STATUS_E).\r\nhttps://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b9a0053b16c04cefbdfc320659d79754');
INSERT INTO `items` (`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`,`uuid`) values ('33710','20','1.3.6.1.4.1.34774.4.1.23.5.1.1.25.{#SNMPINDEX}','10385','Disk {#MODEL} on {#LOCATION}: Health score','huawei.5300.v5[hwInfoDiskHealthMark, "{#ID}"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Health score of a disk. If the value is 255, indicating invalid.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4952b2d54c3a4bb98e26f8221d2833a8');
INSERT INTO `items` (`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`,`uuid`) values ('33711','20','1.3.6.1.4.1.34774.4.1.23.5.1.1.2.{#SNMPINDEX}','10385','Disk {#MODEL} on {#LOCATION}: Health status','huawei.5300.v5[hwInfoDiskHealthStatus, "{#ID}"]','1m','7d','365d','0','3','','','','',NULL,'220','','','0','','','','','2',NULL,'Disk health status. For details, see definition of Enum Values (HEALTH_STATUS_E).\r\nhttps://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d30c2d9d18d54af08c18bd35b5664a0d');
INSERT INTO `items` (`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`,`uuid`) values ('33712','20','1.3.6.1.4.1.34774.4.1.23.5.1.1.3.{#SNMPINDEX}','10385','Disk {#MODEL} on {#LOCATION}: Running status','huawei.5300.v5[hwInfoDiskRunningStatus, "{#ID}"]','1m','7d','365d','0','3','','','','',NULL,'222','','','0','','','','','2',NULL,'Disk running status. For details, see definition of Enum Values (RUNNING_STATUS_E).\r\nhttps://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d5f1c54d524847ebae2015968e772d92');
INSERT INTO `items` (`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`,`uuid`) values ('33713','20','1.3.6.1.4.1.34774.4.1.23.5.1.1.11.{#SNMPINDEX}','10385','Disk {#MODEL} on {#LOCATION}: Temperature','huawei.5300.v5[hwInfoDiskTemperature, "{#ID}"]','1m','7d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk temperature.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','769abd2f1a8d43cda52c8021c20fe3c4');
INSERT INTO `items` (`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`,`uuid`) values ('33714','20','1.3.6.1.4.1.34774.4.1.23.5.6.1.4.{#SNMPINDEX}','10385','Enclosure {#NAME}: Health status','huawei.5300.v5[hwInfoEnclosureHealthStatus, "{#NAME}"]','1m','7d','365d','0','3','','','','',NULL,'220','','','0','','','','','2',NULL,'Enclosure health status. For details, see definition of Enum Values (HEALTH_STATUS_E).\r\nhttps://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a2be3a03bccf48a0baa067d8ef83a3b1');
INSERT INTO `items` (`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`,`uuid`) values ('33715','20','1.3.6.1.4.1.34774.4.1.23.5.6.1.5.{#SNMPINDEX}','10385','Enclosure {#NAME}: Running status','huawei.5300.v5[hwInfoEnclosureRunningStatus, "{#NAME}"]','1m','7d','365d','0','3','','','','',NULL,'222','','','0','','','','','2',NULL,'Enclosure running status. For details, see definition of Enum Values (RUNNING_STATUS_E).\r\nhttps://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b96af65318d64932bc13e8e81155644c');
INSERT INTO `items` (`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`,`uuid`) values ('33716','20','1.3.6.1.4.1.34774.4.1.23.5.6.1.8.{#SNMPINDEX}','10385','Enclosure {#NAME}: Temperature','huawei.5300.v5[hwInfoEnclosureTemperature, "{#NAME}"]','1m','7d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'Enclosure temperature.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','37fa5a5f2d7d440dbb38781bddf5cd46');
INSERT INTO `items` (`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`,`uuid`) values ('33717','20','1.3.6.1.4.1.34774.4.1.23.5.4.1.3.{#SNMPINDEX}','10385','FAN {#ID} on {#LOCATION}: Health status','huawei.5300.v5[hwInfoFanHealthStatus, "{#ID}:{#LOCATION}"]','1m','7d','365d','0','3','','','','',NULL,'220','','','0','','','','','2',NULL,'Health status of a fan. For details, see definition of Enum Values (HEALTH_STATUS_E).\r\nhttps://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c75f70a1c6d44a87aec0b27c3d9fbf5e');
INSERT INTO `items` (`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`,`uuid`) values ('33718','20','1.3.6.1.4.1.34774.4.1.23.5.4.1.4.{#SNMPINDEX}','10385','FAN {#ID} on {#LOCATION}: Running status','huawei.5300.v5[hwInfoFanRunningStatus, "{#ID}:{#LOCATION}"]','1m','7d','365d','0','3','','','','',NULL,'222','','','0','','','','','2',NULL,'Operating status of a fan. For details, see definition of Enum Values (RUNNING_STATUS_E).\r\nhttps://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','800d348ca4394215800c227b421e9bea');
INSERT INTO `items` (`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`,`uuid`) values ('33719','20','1.3.6.1.4.1.34774.4.1.21.4.1.13.{#SNMPINDEX}','10385','LUN {#NAME}: Average total I/O latency','huawei.5300.v5[hwPerfLunAverageIOResponseTime, "{#NAME}"]','1m','7d','365d','0','3','','!ms','','',NULL,NULL,'','','0','','','','','2',NULL,'Average I/O latency of the node in milliseconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d434317e77514a18907a400f68ad773e');
INSERT INTO `items` (`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`,`uuid`) values ('33720','20','1.3.6.1.4.1.34774.4.1.21.4.1.15.{#SNMPINDEX}','10385','LUN {#NAME}: Average read I/O latency','huawei.5300.v5[hwPerfLunAverageReadIOLatency, "{#NAME}"]','1m','7d','365d','0','3','','!ms','','',NULL,NULL,'','','0','','','','','2',NULL,'Average read I/O response time in milliseconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','75e6ce80f06c4b3b86a13de4aadf25d7');
INSERT INTO `items` (`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`,`uuid`) values ('33721','20','1.3.6.1.4.1.34774.4.1.21.4.1.16.{#SNMPINDEX}','10385','LUN {#NAME}: Average write I/O latency','huawei.5300.v5[hwPerfLunAverageWriteIOLatency, "{#NAME}"]','1m','7d','365d','0','3','','!ms','','',NULL,NULL,'','','0','','','','','2',NULL,'Average write I/O response time in milliseconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b639b6cc20524fe1a5c415a6218b5382');
INSERT INTO `items` (`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`,`uuid`) values ('33722','20','1.3.6.1.4.1.34774.4.1.21.4.1.4.{#SNMPINDEX}','10385','LUN {#NAME}: Read operations per second','huawei.5300.v5[hwPerfLunReadIOPS, "{#NAME}"]','1m','7d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Read IOPS of the node.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6e2c299282f045cca7a07dedd30b5f89');
INSERT INTO `items` (`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`,`uuid`) values ('33723','20','1.3.6.1.4.1.34774.4.1.21.4.1.7.{#SNMPINDEX}','10385','LUN {#NAME}: Read traffic per second','huawei.5300.v5[hwPerfLunReadTraffic, "{#NAME}"]','1m','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Current read bandwidth for the LUN.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8e376b38196b4954895b10aefbdf65ba');
INSERT INTO `items` (`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`,`uuid`) values ('33724','20','1.3.6.1.4.1.34774.4.1.21.4.1.3.{#SNMPINDEX}','10385','LUN {#NAME}: Total I/O per second','huawei.5300.v5[hwPerfLunTotalIOPS, "{#NAME}"]','1m','7d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Current IOPS of the LUN.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4d83d160c92845c9ac0f51f5f0158c3b');
INSERT INTO `items` (`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`,`uuid`) values ('33725','20','1.3.6.1.4.1.34774.4.1.21.4.1.6.{#SNMPINDEX}','10385','LUN {#NAME}: Total traffic per second','huawei.5300.v5[hwPerfLunTotalTraffic, "{#NAME}"]','1m','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Current total bandwidth for the LUN.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1bbe8185981349dcb8a867955ff19c2f');
INSERT INTO `items` (`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`,`uuid`) values ('33726','20','1.3.6.1.4.1.34774.4.1.21.4.1.5.{#SNMPINDEX}','10385','LUN {#NAME}: Write operations per second','huawei.5300.v5[hwPerfLunWriteIOPS, "{#NAME}"]','1m','7d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Write IOPS of the node.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1aed4e060c9743caa13d1ace2cee16f3');
INSERT INTO `items` (`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`,`uuid`) values ('33727','20','1.3.6.1.4.1.34774.4.1.21.4.1.8.{#SNMPINDEX}','10385','LUN {#NAME}: Write traffic per second','huawei.5300.v5[hwPerfLunWriteTraffic, "{#NAME}"]','1m','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Current write bandwidth for the LUN.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4a21edb8ea37437f8435565e04c5ce28');
INSERT INTO `items` (`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`,`uuid`) values ('33728','20','1.3.6.1.4.1.34774.4.1.19.9.4.1.5.{#SNMPINDEX}','10385','LUN {#NAME}: Capacity','huawei.5300.v5[hwStorageLunCapacity, "{#NAME}"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Capacity of the LUN.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4c85003e7f7441adb4490efcb03e477e');
INSERT INTO `items` (`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`,`uuid`) values ('33729','20','1.3.6.1.4.1.34774.4.1.19.9.4.1.11.{#SNMPINDEX}','10385','LUN {#NAME}: Status','huawei.5300.v5[hwStorageLunStatus, "{#NAME}"]','1m','7d','365d','0','3','','','','',NULL,'221','','','0','','','','','2',NULL,'Status of the LUN.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f613af109f2846c88e845f626743232b');
INSERT INTO `items` (`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`,`uuid`) values ('33730','20','1.3.6.1.4.1.34774.4.1.21.3.1.2.{#SNMPINDEX}','10385','Node {#NODE}: CPU utilization','huawei.5300.v5[hwPerfNodeCPUUsage, "{#NODE}"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'CPU usage of the node {#NODE}.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac917a8a5b364f66a62c580cb6249c02');
INSERT INTO `items` (`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`,`uuid`) values ('33731','20','1.3.6.1.4.1.34774.4.1.21.3.1.4.{#SNMPINDEX}','10385','Node {#NODE}: Average I/O latency','huawei.5300.v5[hwPerfNodeDelay, "{#NODE}"]','1m','7d','365d','0','0','','!ms','','',NULL,NULL,'','','0','','','','','2',NULL,'Average I/O latency of the node.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','336022218b44497f84056fce4ed4d2bf');
INSERT INTO `items` (`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`,`uuid`) values ('33732','20','1.3.6.1.4.1.34774.4.1.21.3.1.6.{#SNMPINDEX}','10385','Node {#NODE}: Read operations per second','huawei.5300.v5[hwPerfNodeReadIOPS, "{#NODE}"]','1m','7d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Read IOPS of the node.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3019a48ac4d34552a00c3344d04ec055');
INSERT INTO `items` (`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`,`uuid`) values ('33733','20','1.3.6.1.4.1.34774.4.1.21.3.1.9.{#SNMPINDEX}','10385','Node {#NODE}: Read traffic per second','huawei.5300.v5[hwPerfNodeReadTraffic, "{#NODE}"]','1m','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Read bandwidth for the node.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e0c9807e30cc49c480f4862bf7228da8');
INSERT INTO `items` (`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`,`uuid`) values ('33734','20','1.3.6.1.4.1.34774.4.1.21.3.1.5.{#SNMPINDEX}','10385','Node {#NODE}: Total I/O per second','huawei.5300.v5[hwPerfNodeTotalIOPS, "{#NODE}"]','1m','7d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Total IOPS of the node.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1c3d8562d32d4412b649738c05350c4d');
INSERT INTO `items` (`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`,`uuid`) values ('33735','20','1.3.6.1.4.1.34774.4.1.21.3.1.8.{#SNMPINDEX}','10385','Node {#NODE}: Total traffic per second','huawei.5300.v5[hwPerfNodeTotalTraffic, "{#NODE}"]','1m','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Total bandwidth for the node.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','604ab970767b4a4e80e5e2e29d30f9a1');
INSERT INTO `items` (`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`,`uuid`) values ('33736','20','1.3.6.1.4.1.34774.4.1.21.3.1.7.{#SNMPINDEX}','10385','Node {#NODE}: Write operations per second','huawei.5300.v5[hwPerfNodeWriteIOPS, "{#NODE}"]','1m','7d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Write IOPS of the node.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd0c930ef95b4bb6838cac49dd38bf6f');
INSERT INTO `items` (`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`,`uuid`) values ('33737','20','1.3.6.1.4.1.34774.4.1.21.3.1.7.{#SNMPINDEX}','10385','Node {#NODE}: Write traffic per second','huawei.5300.v5[hwPerfNodeWriteTraffic, "{#NODE}"]','1m','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Write bandwidth for the node.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4f5105903075422cb6643dca913df933');
INSERT INTO `items` (`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`,`uuid`) values ('33738','20','1.3.6.1.4.1.34774.4.1.23.4.2.1.9.{#SNMPINDEX}','10385','Pool {#NAME}: Capacity free','huawei.5300.v5[hwInfoStoragePoolFreeCapacity, "{#NAME}"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Available capacity of a storage pool.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','07d22960999a4d8392b90280bf8d3389');
INSERT INTO `items` (`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`,`uuid`) values ('33739','15','','10385','Pool {#NAME}: Capacity used percentage','huawei.5300.v5[hwInfoStoragePoolFreeCapacityPct, "{#NAME}"]','1m','7d','365d','0','3','','%','','',NULL,NULL,'last(//huawei.5300.v5[hwInfoStoragePoolSubscribedCapacity, "{#NAME}"])/last(//huawei.5300.v5[hwInfoStoragePoolTotalCapacity, "{#NAME}"])*100','','0','','','','','2',NULL,'Used capacity of a storage pool in percents.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a800b047bda64f528ad4d22698efaa7d');
INSERT INTO `items` (`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`,`uuid`) values ('33740','20','1.3.6.1.4.1.34774.4.1.23.4.2.1.5.{#SNMPINDEX}','10385','Pool {#NAME}: Health status','huawei.5300.v5[hwInfoStoragePoolHealthStatus, "{#NAME}"]','1m','7d','365d','0','3','','','','',NULL,'220','','','0','','','','','2',NULL,'Health status of a storage pool. For details, see definition of Enum Values (HEALTH_STATUS_E).\r\nhttps://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8a8bb086e75b4476af3686e5d28d8cfc');
INSERT INTO `items` (`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`,`uuid`) values ('33741','20','1.3.6.1.4.1.34774.4.1.23.4.2.1.6.{#SNMPINDEX}','10385','Pool {#NAME}: Running status','huawei.5300.v5[hwInfoStoragePoolRunningStatus, "{#NAME}"]','1m','7d','365d','0','3','','','','',NULL,'222','','','0','','','','','2',NULL,'Operating status of a storage pool. For details, see definition of Enum Values (RUNNING_STATUS_E).\r\nhttps://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a5e886744b82456e8a028f01d458307a');
INSERT INTO `items` (`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`,`uuid`) values ('33742','20','1.3.6.1.4.1.34774.4.1.23.4.2.1.8.{#SNMPINDEX}','10385','Pool {#NAME}: Capacity used','huawei.5300.v5[hwInfoStoragePoolSubscribedCapacity, "{#NAME}"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used capacity of a storage pool.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8e59b01ae52b403a8e0da860c909faa1');
INSERT INTO `items` (`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`,`uuid`) values ('33743','20','1.3.6.1.4.1.34774.4.1.23.4.2.1.7.{#SNMPINDEX}','10385','Pool {#NAME}: Capacity total','huawei.5300.v5[hwInfoStoragePoolTotalCapacity, "{#NAME}"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total capacity of a storage pool.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e82a9a0946814522a517694df270a400');
INSERT INTO `items` (`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`,`uuid`) values ('33747','0','','10300','RabbitMQ: Healthcheck: alarms in effect in the cluster{#SINGLETON}','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/health/checks/alarms{#SINGLETON}"]','1m','7d','365d','0','3','','','','',NULL,'223','','','0','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','2',NULL,'Responds a 200 OK if there are no alarms in effect in the cluster, otherwise responds with a 503 Service Unavailable.','0','30d','0','',NULL,'3s','{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/alarms','','','200,503,404','1','0','','1','0','0','0','0','0','0','4c93b04164d24eb8b9dbdab652afc7bc');
INSERT INTO `items` (`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`,`uuid`) values ('33748','0','','10301','RabbitMQ: Healthcheck{#SINGLETON}','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/healthchecks/node{#SINGLETON}"]','1m','7h','365d','0','3','','','','',NULL,'134','','','0','','','','','2',NULL,'Runs basic healthchecks in the current node. Checks that the rabbit application is running, channels and queues can be listed successfully, and that no alarms are in effect.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8b959a9d03dc4ae8bed7292973f4fcc4');
INSERT INTO `items` (`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`,`uuid`) values ('33749','0','','10301','RabbitMQ: Healthcheck: expiration date on the certificates{#SINGLETON}','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/certificate-expiration/1/months{#SINGLETON}"]','1m','7d','365d','0','3','','','','',NULL,'134','','','0','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','2',NULL,'Checks the expiration date on the certificates for every listener configured to use TLS. Responds a 200 OK if all certificates are valid (have not expired), otherwise responds with a 503 Service Unavailable.','0','30d','0','',NULL,'3s','','','','200,503,404','1','0','','1','0','0','0','0','0','0','0f1cd729d8f4447db25e0af19eae595d');
INSERT INTO `items` (`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`,`uuid`) values ('33750','0','','10301','RabbitMQ: Healthcheck: local alarms in effect on this node{#SINGLETON}','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/local-alarms{#SINGLETON}"]','1m','7d','365d','0','3','','','','',NULL,'134','','','0','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','2',NULL,'Responds a 200 OK if there are no local alarms in effect on the target node, otherwise responds with a 503 Service Unavailable.','0','30d','0','',NULL,'3s','','','','200,503,404','1','0','','1','0','0','0','0','0','0','701449b128cb42cdb971fc608ba9f29b');
INSERT INTO `items` (`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`,`uuid`) values ('33751','0','','10301','RabbitMQ: Healthcheck: classic mirrored queues without synchronized mirrors online{#SINGLETON}','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-mirror-sync-critical{#SINGLETON}"]','1m','7d','365d','0','3','','','','',NULL,'134','','','0','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','2',NULL,'Checks if there are classic mirrored queues without synchronized mirrors online (queues that would potentially lose data if the target node is shut down). Responds a 200 OK if there are no such classic mirrored queues, otherwise responds with a 503 Service Unavailable.','0','30d','0','',NULL,'3s','','','','200,503,404','1','0','','1','0','0','0','0','0','0','7a07966d8dde4f2caa9ff95693b86974');
INSERT INTO `items` (`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`,`uuid`) values ('33752','0','','10301','RabbitMQ: Healthcheck: queues with minimum online quorum{#SINGLETON}','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-quorum-critical{#SINGLETON}"]','1m','7d','365d','0','3','','','','',NULL,'134','','','0','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','2',NULL,'Checks if there are quorum queues with minimum online quorum (queues that would lose their quorum and availability if the target node is shut down). Responds a 200 OK if there are no such quorum queues, otherwise responds with a 503 Service Unavailable.','0','30d','0','',NULL,'3s','','','','200,503,404','1','0','','1','0','0','0','0','0','0','f6ec1bb1cc4741be852136fac2c63333');
INSERT INTO `items` (`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`,`uuid`) values ('33753','0','','10301','RabbitMQ: Healthcheck: virtual hosts on this node{#SINGLETON}','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/virtual-hosts{#SINGLETON}"]','1m','7d','365d','0','3','','','','',NULL,'134','','','0','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','2',NULL,'Responds a 200 OK if all virtual hosts and running on the target node, otherwise responds with a 503 Service Unavailable.','0','30d','0','',NULL,'3s','','','','200,503,404','1','0','','1','0','0','0','0','0','0','0d1ad3daf2bb46dba2c9913c1684a0d4');
INSERT INTO `items` (`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`,`uuid`) values ('33757','19','','10302','RabbitMQ: Healthcheck: alarms in effect in the cluster{#SINGLETON}','rabbitmq.healthcheck.alarms[{#SINGLETON}]','1m','7d','365d','0','3','','','','',NULL,'224','','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','2',NULL,'Responds a 200 OK if there are no alarms in effect in the cluster, otherwise responds with a 503 Service Unavailable.','0','30d','0','',NULL,'3s','{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/alarms','','','200,503,404','1','0','','1','0','0','0','0','0','0','90db70de99454f7b924d84174a5951fb');
INSERT INTO `items` (`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`,`uuid`) values ('33758','19','','10303','RabbitMQ: Healthcheck{#SINGLETON}','rabbitmq.healthcheck[{#SINGLETON}]','1m','7h','365d','0','3','','','','',NULL,'135','','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','2',NULL,'Runs basic healthchecks in the current node. Checks that the rabbit application is running, channels and queues can be listed successfully, and that no alarms are in effect.','0','30d','0','',NULL,'3s','{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/healthchecks/node','','','200','1','0','','0','0','0','0','0','0','0','22f9a51fd0ea41148846ecde7dbf4d99');
INSERT INTO `items` (`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`,`uuid`) values ('33759','19','','10303','RabbitMQ: Healthcheck: expiration date on the certificates{#SINGLETON}','rabbitmq.healthcheck.certificate_expiration[{#SINGLETON}]','1m','7d','365d','0','3','','','','',NULL,'135','','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','2',NULL,'Checks the expiration date on the certificates for every listener configured to use TLS. Responds a 200 OK if all certificates are valid (have not expired), otherwise responds with a 503 Service Unavailable.','0','30d','0','',NULL,'3s','{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/certificate-expiration/1/months','','','200,503,404','1','0','','1','0','0','0','0','0','0','d18cd1fd8cd749e4a00b8186fd93345f');
INSERT INTO `items` (`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`,`uuid`) values ('33760','19','','10303','RabbitMQ: Healthcheck: local alarms in effect on this node{#SINGLETON}','rabbitmq.healthcheck.local_alarms[{#SINGLETON}]','1m','7d','365d','0','3','','','','',NULL,'135','','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','2',NULL,'Responds a 200 OK if there are no local alarms in effect on the target node, otherwise responds with a 503 Service Unavailable.','0','30d','0','',NULL,'3s','{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/local-alarms','','','200,503,404','1','0','','1','0','0','0','0','0','0','e1359646453e43cbaf0b4e1b89bdcdeb');
INSERT INTO `items` (`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`,`uuid`) values ('33761','19','','10303','RabbitMQ: Healthcheck: classic mirrored queues without synchronized mirrors online{#SINGLETON}','rabbitmq.healthcheck.mirror_sync[{#SINGLETON}]','1m','7d','365d','0','3','','','','',NULL,'135','','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','2',NULL,'Checks if there are classic mirrored queues without synchronized mirrors online (queues that would potentially lose data if the target node is shut down). Responds a 200 OK if there are no such classic mirrored queues, otherwise responds with a 503 Service Unavailable.','0','30d','0','',NULL,'3s','{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-mirror-sync-critical','','','200,503,404','1','0','','1','0','0','0','0','0','0','9867c266760a48d981caa1f34f2c3238');
INSERT INTO `items` (`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`,`uuid`) values ('33762','19','','10303','RabbitMQ: Healthcheck: queues with minimum online quorum{#SINGLETON}','rabbitmq.healthcheck.quorum[{#SINGLETON}]','1m','7d','365d','0','3','','','','',NULL,'135','','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','2',NULL,'Checks if there are quorum queues with minimum online quorum (queues that would lose their quorum and availability if the target node is shut down). Responds a 200 OK if there are no such quorum queues, otherwise responds with a 503 Service Unavailable.','0','30d','0','',NULL,'3s','{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-quorum-critical','','','200,503,404','1','0','','1','0','0','0','0','0','0','972b6409c80d4ac796e5472b72ce82ae');
INSERT INTO `items` (`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`,`uuid`) values ('33763','19','','10303','RabbitMQ: Healthcheck: virtual hosts on this node{#SINGLETON}','rabbitmq.healthcheck.virtual_hosts[{#SINGLETON}]','1m','7d','365d','0','3','','','','',NULL,'135','','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','2',NULL,'Responds a 200 OK if all virtual hosts and running on the target node, otherwise responds with a 503 Service Unavailable.','0','30d','0','',NULL,'3s','{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/virtual-hosts','','','200,503,404','1','0','','1','0','0','0','0','0','0','d701b9acae86464282b308df720a1de2');
INSERT INTO `items` (`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`,`uuid`) values ('33764','0','','10386','MongoDB: Get server status','mongodb.server.status["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns a database\'s state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb0cc7d44559406cada9d90a51bc999c');
INSERT INTO `items` (`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`,`uuid`) values ('33765','0','','10386','MongoDB: Get Replica Set status','mongodb.rs.status["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns the replica set status from the point of view of the member where the method is run.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3b448eff509240faba344f7b325f3e28');
INSERT INTO `items` (`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`,`uuid`) values ('33766','0','','10386','MongoDB: Ping','mongodb.ping["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','30s','7d','365d','0','3','','','','',NULL,'227','','','0','','','','','0',NULL,'Test if a connection is alive or not.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','350da28ce7ab42f9b96728ec730d4bd6');
INSERT INTO `items` (`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`,`uuid`) values ('33767','0','','10386','MongoDB: Get oplog stats','mongodb.oplog.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns status of the replica set, using data polled from the oplog.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8e7406e64edd4fe5ba87d4018011c958');
INSERT INTO `items` (`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`,`uuid`) values ('33768','0','','10386','MongoDB: Get collections usage stats','mongodb.collections.usage["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns usage statistics for each collection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','46f0a53612de4448ab8e98098375656b');
INSERT INTO `items` (`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`,`uuid`) values ('33808','0','','10386','Collection discovery','mongodb.collections.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Collect collections metrics.\r\nNote, depending on the number of DBs and collections this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES}.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a6398a8ae4fe4891a03bb6041bf71f53');
INSERT INTO `items` (`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`,`uuid`) values ('33809','0','','10386','Database discovery','mongodb.db.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Collect database metrics.\r\nNote, depending on the number of DBs this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a2a57b40d12944ae8ee21c166706b132');
INSERT INTO `items` (`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`,`uuid`) values ('33812','0','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Get collection stats {#DBNAME}.{#COLLECTION}','mongodb.collection.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}","{#COLLECTION}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns a variety of storage statistics for a given collection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d43709c548b84ea9b2c3c1b159bf28a3');
INSERT INTO `items` (`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`,`uuid`) values ('33813','0','','10386','MongoDB {#DBNAME}: Get db stats {#DBNAME}','mongodb.db.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns statistics reflecting the database system\'s state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','829536cb5dd448d8a05a30cf6eff8599');
INSERT INTO `items` (`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`,`uuid`) values ('33886','0','','10387','MongoDB cluster: Jumbo chunks','mongodb.jumbo_chunks.count["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of \'jumbo\' chunks in the mongo cluster.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','110685e463e141ca800b2638e3532d51');
INSERT INTO `items` (`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`,`uuid`) values ('33887','0','','10387','MongoDB cluster: Get server status','mongodb.server.status["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The mongos statistic','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b8c6dadff060447e9718b49fdc796d8d');
INSERT INTO `items` (`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`,`uuid`) values ('33888','0','','10387','MongoDB cluster: Ping','mongodb.ping["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','30s','7d','365d','0','3','','','','',NULL,'229','','','0','','','','','0',NULL,'Test if a connection is alive or not.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff979eb9ba4a4420a753913df5431219');
INSERT INTO `items` (`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`,`uuid`) values ('33889','0','','10387','MongoDB cluster: Get mongodb.connpool.stats','mongodb.connpool.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns current info about connpool.stats.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f34fcc3866b446748b7a8d11311edd82');
INSERT INTO `items` (`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`,`uuid`) values ('33920','0','','10387','Config servers discovery','mongodb.cfg.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery shared cluster config servers.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eb57a506cc5640a79e6df51179321ba0');
INSERT INTO `items` (`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`,`uuid`) values ('33921','0','','10387','Collection discovery','mongodb.collections.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Collect collections metrics.\r\nNote, depending on the number of DBs and collections this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES}.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','61a19fbf4f9f4c2f9ad215b08d41e544');
INSERT INTO `items` (`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`,`uuid`) values ('33922','0','','10387','Database discovery','mongodb.db.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Collect database metrics.\r\nNote, depending on the number of DBs this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','25ece32c5f764461913f605ba3d7736a');
INSERT INTO `items` (`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`,`uuid`) values ('33923','0','','10387','Shards discovery','mongodb.sh.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery shared cluster hosts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a8bcea1509974c0f9d0051591e92cd5a');
INSERT INTO `items` (`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`,`uuid`) values ('33924','0','','10387','MongoDB {#DBNAME}.{#COLLECTION}: Get collection stats {#DBNAME}.{#COLLECTION}','mongodb.collection.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}","{#COLLECTION}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns a variety of storage statistics for a given collection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa964be0bc5c4318bc92c3192c269d8e');
INSERT INTO `items` (`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`,`uuid`) values ('33925','0','','10387','MongoDB {#DBNAME}: Get db stats {#DBNAME}','mongodb.db.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns statistics reflecting the database system\'s state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7fbc424bca06451d9ed1fe689ea81bf9');
INSERT INTO `items` (`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`,`uuid`) values ('33941','11','','10327','MSSQL AG \'{#GROUP_NAME}\' Non-Local DB \'*{#REPLICA_NAME}*{#DBNAME}\': Get non-local DB states','db.odbc.get["{#GROUP_NAME}*{#REPLICA_NAME}*{#DBNAME}_non-local_db.states","{$MSSQL.DSN}"]','1m','0h','0','0','4','','','','',NULL,NULL,'SELECT drs.log_send_queue_size as log_send_queue_size,\r\ndrs.redo_queue_size as redo_queue_size,\r\nag.name as group_name,\r\narcs.replica_server_name as replica_name,\r\ndb_name(drs.database_id) as dbname\r\nFROM sys.dm_hadr_database_replica_states drs \r\nJOIN sys.dm_hadr_availability_replica_cluster_states arcs ON arcs.replica_id = drs.replica_id \r\nJOIN sys.availability_groups ag ON ag.group_id = arcs.group_id \r\nJOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','2',NULL,'Getting the states of the non-local availability database.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da05efa5ffab475fa95718e8e0069c80');
INSERT INTO `items` (`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`,`uuid`) values ('33944','3','','10390','ICMP ping','icmpping','1m','7d','365d','0','3','','','','',NULL,'234','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1a1244d5dcbc4cbcb5edb70b7cd2b3aa');
INSERT INTO `items` (`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`,`uuid`) values ('33945','3','','10390','ICMP loss','icmppingloss','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5804e615ec714a85ab3bf8128f92d0fc');
INSERT INTO `items` (`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`,`uuid`) values ('33946','3','','10390','ICMP response time','icmppingsec','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','02403547a7714c94ba442d09ba91a1be');
INSERT INTO `items` (`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`,`uuid`) values ('33947','17','','10390','SNMP traps (fallback)','snmptrap.fallback','1m','7d','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','80fe62cf4b2b4b96a077f23ff40d9baf');
INSERT INTO `items` (`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`,`uuid`) values ('33948','20','1.3.6.1.2.1.1.4.0','10390','System contact details','system.contact','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','0bcb970099c0429a9254c88d94d3f27d');
INSERT INTO `items` (`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`,`uuid`) values ('33949','20','1.3.6.1.2.1.1.1.0','10390','System description','system.descr','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6a1b8a292e9448329b538c0c6c47317b');
INSERT INTO `items` (`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`,`uuid`) values ('33950','20','1.3.6.1.2.1.47.1.1.1.1.13.1','10390','Hardware model name','system.hw.model','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e7b500dbdd044fd2a6213496422d4540');
INSERT INTO `items` (`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`,`uuid`) values ('33951','20','1.3.6.1.2.1.47.1.1.1.1.11.1','10390','Hardware serial number','system.hw.serialnumber','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7f1f5522eab7406ea8dfce09cb84d39d');
INSERT INTO `items` (`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`,`uuid`) values ('33952','20','1.3.6.1.2.1.1.6.0','10390','System location','system.location','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','cb5e9fc216ca46f885562169ed67a612');
INSERT INTO `items` (`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`,`uuid`) values ('33953','20','1.3.6.1.2.1.1.5.0','10390','System name','system.name','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c79c23799ba248e0b35a086a7503646b');
INSERT INTO `items` (`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`,`uuid`) values ('33954','20','1.3.6.1.2.1.1.2.0','10390','System object ID','system.objectid','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f4d399a9cb884067a8303799b6ddfca4');
INSERT INTO `items` (`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`,`uuid`) values ('33955','20','1.3.6.1.2.1.1.1.0','10390','Operating system','system.sw.os','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bf04928736ed4d3c855d8e0718cdfa1f');
INSERT INTO `items` (`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`,`uuid`) values ('33956','20','1.3.6.1.2.1.1.3.0','10390','Uptime (network)','system.net.uptime','1m','7d','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3001dec3d8564a4e83e25e557c6d1336');
INSERT INTO `items` (`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`,`uuid`) values ('33957','5','','10390','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'235','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1fe8d0559b794a47a78fccde9156b694');
INSERT INTO `items` (`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`,`uuid`) values ('33958','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5]','10390','CPU discovery','cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,\r\nindexed with cpmCPUTotalIndex .\r\nThis table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,\r\nlike different CPU chips, group of CPUs, or CPUs in different modules/cards.\r\nIn case of a single CPU, cpmCPUTotalTable has only one entry.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fd02edfd2bdb43a3b02495722e01b462');
INSERT INTO `items` (`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`,`uuid`) values ('33959','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11]','10390','Entity Serial Numbers discovery','entity_sn.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','bee10a232bfb498286a73963b6fe1f2a');
INSERT INTO `items` (`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`,`uuid`) values ('33960','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2]','10390','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of fan status maintained by the environmental monitor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c2e82ee5eff4bceafeec77e63120b08');
INSERT INTO `items` (`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`,`uuid`) values ('33961','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2]','10390','Memory discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.\r\nhttp://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bfcf962374c14dc2805b39bf00987f3c');
INSERT INTO `items` (`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`,`uuid`) values ('33962','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10390','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2d0c3668e56c4511b6625d6dc7b72015');
INSERT INTO `items` (`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`,`uuid`) values ('33963','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10390','EtherLike discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','836c2d80023941e6a9c66d7129d0caf2');
INSERT INTO `items` (`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`,`uuid`) values ('33964','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2]','10390','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of power supply status maintained by the environmental monitor card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fd7b48d3e3124526918cbe23e6980e4d');
INSERT INTO `items` (`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`,`uuid`) values ('33965','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2]','10390','Temperature discovery','temperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status\r\nmaintained by the environmental monitor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5d7f7f4b585d4702922efffecd0ea00b');
INSERT INTO `items` (`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`,`uuid`) values ('33966','20','1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX}','10390','#{#SNMPINDEX}: CPU utilization','system.cpu.util[{#SNMPINDEX}]','5m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-PROCESS-MIB\r\nObject name: cpmCPUTotal5minRev\r\nThe cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','75ac10af8a84469aaf83ead5ada42fc5');
INSERT INTO `items` (`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`,`uuid`) values ('33967','20','1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}','10390','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[{#SNMPINDEX}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB\r\nObject name: entPhysicalSerialNum','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b0602fa005c140cd9d123eacd62ced06');
INSERT INTO `items` (`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`,`uuid`) values ('33968','20','1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX}','10390','{#SNMPVALUE}: Fan status','sensor.fan.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'230','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nObject name: ciscoEnvMonFanState','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','15cc972b704a4f9c9e5a7798df362fa3');
INSERT INTO `items` (`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`,`uuid`) values ('33969','20','1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX}','10390','{#SNMPVALUE}: Free memory','vm.memory.free[{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB\r\nObject name: ciscoMemoryPoolFree\r\nIndicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8eaceca5f390424db56dcc3b006baa54');
INSERT INTO `items` (`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`,`uuid`) values ('33970','20','1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX}','10390','{#SNMPVALUE}: Used memory','vm.memory.used[{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB\r\nObject name: ciscoMemoryPoolUsed\r\nIndicates the number of bytes from the memory pool that are currently in use by applications on the managed device.\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','446338a14fcf4ba99e72902821ae9c44');
INSERT INTO `items` (`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`,`uuid`) values ('33971','15','','10390','{#SNMPVALUE}: Memory utilization','vm.memory.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[{#SNMPINDEX}])/(last(//vm.memory.free[{#SNMPINDEX}])+last(//vm.memory.used[{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Memory utilization in %','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','000ba7ca09814368aae61f3f08fb740e');
INSERT INTO `items` (`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`,`uuid`) values ('33972','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10390','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e3c18989a34a434687ffa57423025878');
INSERT INTO `items` (`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`,`uuid`) values ('33973','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10390','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','20da38b76f1a4b418b6a965cf973b30a');
INSERT INTO `items` (`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`,`uuid`) values ('33974','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10390','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e21895be99254fe49cfd654a576da912');
INSERT INTO `items` (`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`,`uuid`) values ('33975','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10390','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ace9c36c517a47dfa1ece694d6c10883');
INSERT INTO `items` (`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`,`uuid`) values ('33976','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10390','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6fbeb22aa8384ba5a7d246ef6a749aff');
INSERT INTO `items` (`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`,`uuid`) values ('33977','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10390','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','943c994ad06a4193a840e2734465ad01');
INSERT INTO `items` (`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`,`uuid`) values ('33978','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10390','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','66348f674b9143f48ea7ef829c220845');
INSERT INTO `items` (`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`,`uuid`) values ('33979','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10390','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'232','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1f73344515564398b4f17ea531285deb');
INSERT INTO `items` (`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`,`uuid`) values ('33980','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10390','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'233','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f2d27d63c05a479f893f0a8ad9447747');
INSERT INTO `items` (`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`,`uuid`) values ('33981','20','1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}','10390','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'231','','','0','','','','','2',NULL,'MIB: EtherLike-MIB\r\nObject name: dot3StatsDuplexStatus\r\nThe current mode of operation of the MAC\r\nentity. \'unknown\' indicates that the current\r\nduplex mode could not be determined.\r\n\r\nManagement control of the duplex mode is\r\naccomplished through the MAU MIB. When\r\nan interface does not support autonegotiation,\r\nor when autonegotiation is not enabled, the\r\nduplex mode is controlled using\r\nifMauDefaultType. When autonegotiation is\r\nsupported and enabled, duplex mode is controlled\r\nusing ifMauAutoNegAdvertisedBits. In either\r\ncase, the currently operating duplex mode is\r\nreflected both in this object and in ifMauType.\r\n\r\nNote that this object provides redundant\r\ninformation with ifMauType. Normally, redundant\r\nobjects are discouraged. However, in this\r\ninstance, it allows a management application to\r\ndetermine the duplex status of an interface\r\nwithout having to know every possible value of\r\nifMauType. This was felt to be sufficiently\r\nvaluable to justify the redundancy.\r\nReference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','946ab71daeb34f79868c0fb49aea0beb');
INSERT INTO `items` (`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`,`uuid`) values ('33982','20','1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX}','10390','{#SNMPVALUE}: Power supply status','sensor.psu.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'230','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nObject name: ciscoEnvMonSupplyState','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','330b4d1a9e92485b9997d2a9e0e1079a');
INSERT INTO `items` (`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`,`uuid`) values ('33983','20','1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX}','10390','{#SNMPVALUE}: Temperature status','sensor.temp.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'230','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nObject name: ciscoEnvMonTemperatureState\r\nThe current state of the test point being instrumented.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c520d3696a4d44e9a7095837f9457a9d');
INSERT INTO `items` (`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`,`uuid`) values ('33984','20','1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX}','10390','{#SNMPVALUE}: Temperature','sensor.temp.value[{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nObject name: ciscoEnvMonTemperatureValue\r\nThe current measurement of the test point being instrumented.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad48c4102a784c8c8d22825235710831');
INSERT INTO `items` (`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`,`uuid`) values ('33985','3','','10391','ICMP ping','icmpping','1m','7d','365d','0','3','','','','',NULL,'240','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84ef605d7c914f62b4497ed6fdaccd8a');
INSERT INTO `items` (`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`,`uuid`) values ('33986','3','','10391','ICMP loss','icmppingloss','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c40980a878c94c3db61f80e206b890ec');
INSERT INTO `items` (`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`,`uuid`) values ('33987','3','','10391','ICMP response time','icmppingsec','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d1c2bc9cee7046c2a17f876dce1f063f');
INSERT INTO `items` (`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`,`uuid`) values ('33988','17','','10391','SNMP traps (fallback)','snmptrap.fallback','1m','7d','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','612f59e4d582463bb386046a1d4342da');
INSERT INTO `items` (`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`,`uuid`) values ('33989','20','1.3.6.1.2.1.1.4.0','10391','System contact details','system.contact','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','582260ed2f2d4f419651bc526e41b733');
INSERT INTO `items` (`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`,`uuid`) values ('33990','20','1.3.6.1.2.1.1.1.0','10391','System description','system.descr','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','956ce9527d604b4493d52815799590ca');
INSERT INTO `items` (`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`,`uuid`) values ('33991','20','1.3.6.1.2.1.47.1.1.1.1.13.1','10391','Hardware model name','system.hw.model','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb4df28cb44941e5b39348afe421a2ad');
INSERT INTO `items` (`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`,`uuid`) values ('33992','20','1.3.6.1.2.1.47.1.1.1.1.11.1','10391','Hardware serial number','system.hw.serialnumber','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','664548f83e924a8aaa125579f230d0e9');
INSERT INTO `items` (`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`,`uuid`) values ('33993','20','1.3.6.1.2.1.1.6.0','10391','System location','system.location','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','b6d1ee7b8b3e42e380f6aa44bf39c008');
INSERT INTO `items` (`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`,`uuid`) values ('33994','20','1.3.6.1.2.1.1.5.0','10391','System name','system.name','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2f5f5b376c034f439ae19ed24e4d8bc5');
INSERT INTO `items` (`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`,`uuid`) values ('33995','20','1.3.6.1.2.1.1.2.0','10391','System object ID','system.objectid','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d791eebac4884924b7f40c08174aef00');
INSERT INTO `items` (`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`,`uuid`) values ('33996','20','1.3.6.1.2.1.1.1.0','10391','Operating system','system.sw.os','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c7c4907dfdd46d18321f80b00152771');
INSERT INTO `items` (`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`,`uuid`) values ('33997','20','1.3.6.1.2.1.1.3.0','10391','Uptime (network)','system.net.uptime','1m','7d','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a9070d15765c4acaa856dde8ece57340');
INSERT INTO `items` (`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`,`uuid`) values ('33998','5','','10391','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'241','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','92d5d0c598674f20a0228cc66a433e84');
INSERT INTO `items` (`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`,`uuid`) values ('33999','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5]','10391','CPU discovery','cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,\r\nindexed with cpmCPUTotalIndex .\r\nThis table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,\r\nlike different CPU chips, group of CPUs, or CPUs in different modules/cards.\r\nIn case of a single CPU, cpmCPUTotalTable has only one entry.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8635e89e60fd4c65a47a6da2bf3c072d');
INSERT INTO `items` (`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`,`uuid`) values ('34000','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11]','10391','Entity Serial Numbers discovery','entity_sn.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','7a62ebc0c38942fa9f72eebc839be5d7');
INSERT INTO `items` (`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`,`uuid`) values ('34001','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2]','10391','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of fan status maintained by the environmental monitor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','235f74f154bc422482f524b9a4c08125');
INSERT INTO `items` (`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`,`uuid`) values ('34002','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2]','10391','Memory discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.\r\nhttp://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','86589a8d54cb4cfc81c38a6eeac05b80');
INSERT INTO `items` (`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`,`uuid`) values ('34003','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10391','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2b0dacd3b651413fb674eac430613286');
INSERT INTO `items` (`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`,`uuid`) values ('34004','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10391','EtherLike discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dbfa0bb2cc7a4a08a50311e37c6bc94b');
INSERT INTO `items` (`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`,`uuid`) values ('34005','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2]','10391','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of power supply status maintained by the environmental monitor card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','400dddbb882445af9e7b986bc4529908');
INSERT INTO `items` (`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`,`uuid`) values ('34006','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2]','10391','Temperature discovery','temperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status\r\nmaintained by the environmental monitor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b4eb58fb8820452d89447b786cee3361');
INSERT INTO `items` (`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`,`uuid`) values ('34007','20','1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX}','10391','#{#SNMPINDEX}: CPU utilization','system.cpu.util[{#SNMPINDEX}]','5m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-PROCESS-MIB\r\nObject name: cpmCPUTotal5minRev\r\nThe cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','32bac9ece98d497680e84e43d1ac8f8e');
INSERT INTO `items` (`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`,`uuid`) values ('34008','20','1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}','10391','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[{#SNMPINDEX}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB\r\nObject name: entPhysicalSerialNum','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ba6a0cf3f63b475d80a59e537302bbaa');
INSERT INTO `items` (`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`,`uuid`) values ('34009','20','1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX}','10391','{#SNMPVALUE}: Fan status','sensor.fan.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'236','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nObject name: ciscoEnvMonFanState','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d7ae10cf2595493aa6b31c52bbc6220d');
INSERT INTO `items` (`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`,`uuid`) values ('34010','20','1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX}','10391','{#SNMPVALUE}: Free memory','vm.memory.free[{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB\r\nObject name: ciscoMemoryPoolFree\r\nIndicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8aa33136af58484ca1e0ee894dd9b22c');
INSERT INTO `items` (`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`,`uuid`) values ('34011','20','1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX}','10391','{#SNMPVALUE}: Used memory','vm.memory.used[{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB\r\nObject name: ciscoMemoryPoolUsed\r\nIndicates the number of bytes from the memory pool that are currently in use by applications on the managed device.\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','73a46e97c57e4fca912e74a7253e21f6');
INSERT INTO `items` (`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`,`uuid`) values ('34012','15','','10391','{#SNMPVALUE}: Memory utilization','vm.memory.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[{#SNMPINDEX}])/(last(//vm.memory.free[{#SNMPINDEX}])+last(//vm.memory.used[{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Memory utilization in %','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','50638b5c78584c99978c6b57bec520d4');
INSERT INTO `items` (`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`,`uuid`) values ('34013','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10391','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','670a337b61b8485da83bff8fb357aa6c');
INSERT INTO `items` (`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`,`uuid`) values ('34014','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10391','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','677b9af6e45e42c1bc59772453778de2');
INSERT INTO `items` (`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`,`uuid`) values ('34015','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10391','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d745a153bdd443afb3b6c690a6cb1834');
INSERT INTO `items` (`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`,`uuid`) values ('34016','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10391','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e000bdb0549747b98ef9ef824ead399d');
INSERT INTO `items` (`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`,`uuid`) values ('34017','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10391','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bf863b01e546466e9f7516435fd34631');
INSERT INTO `items` (`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`,`uuid`) values ('34018','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10391','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8b9edde24248456f902880625e33e289');
INSERT INTO `items` (`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`,`uuid`) values ('34019','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10391','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fa0715f32e7441958e1d555efe7ccc9f');
INSERT INTO `items` (`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`,`uuid`) values ('34020','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10391','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'238','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','94183e5ed20f4f5495162b696097fd70');
INSERT INTO `items` (`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`,`uuid`) values ('34021','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10391','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'239','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','27b0676374f847ad8330028e62b7b6af');
INSERT INTO `items` (`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`,`uuid`) values ('34022','20','1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}','10391','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'237','','','0','','','','','2',NULL,'MIB: EtherLike-MIB\r\nObject name: dot3StatsDuplexStatus\r\nThe current mode of operation of the MAC\r\nentity. \'unknown\' indicates that the current\r\nduplex mode could not be determined.\r\n\r\nManagement control of the duplex mode is\r\naccomplished through the MAU MIB. When\r\nan interface does not support autonegotiation,\r\nor when autonegotiation is not enabled, the\r\nduplex mode is controlled using\r\nifMauDefaultType. When autonegotiation is\r\nsupported and enabled, duplex mode is controlled\r\nusing ifMauAutoNegAdvertisedBits. In either\r\ncase, the currently operating duplex mode is\r\nreflected both in this object and in ifMauType.\r\n\r\nNote that this object provides redundant\r\ninformation with ifMauType. Normally, redundant\r\nobjects are discouraged. However, in this\r\ninstance, it allows a management application to\r\ndetermine the duplex status of an interface\r\nwithout having to know every possible value of\r\nifMauType. This was felt to be sufficiently\r\nvaluable to justify the redundancy.\r\nReference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a5008d1d42d9472392b456b1d8af2568');
INSERT INTO `items` (`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`,`uuid`) values ('34023','20','1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX}','10391','{#SNMPVALUE}: Power supply status','sensor.psu.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'236','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nObject name: ciscoEnvMonSupplyState','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','317bb1028c0b46fbac62df30e0ac6653');
INSERT INTO `items` (`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`,`uuid`) values ('34024','20','1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX}','10391','{#SNMPVALUE}: Temperature status','sensor.temp.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'236','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nObject name: ciscoEnvMonTemperatureState\r\nThe current state of the test point being instrumented.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','774a9aa6ec954121ae96f7f76f7e3022');
INSERT INTO `items` (`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`,`uuid`) values ('34025','20','1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX}','10391','{#SNMPVALUE}: Temperature','sensor.temp.value[{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nObject name: ciscoEnvMonTemperatureValue\r\nThe current measurement of the test point being instrumented.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','44a96489bbfc4245b8fe0ffee74e0c96');
INSERT INTO `items` (`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`,`uuid`) values ('34026','3','','10392','ICMP ping','icmpping','1m','7d','365d','0','3','','','','',NULL,'246','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','872058629f19424995e696d1354fbe01');
INSERT INTO `items` (`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`,`uuid`) values ('34027','3','','10392','ICMP loss','icmppingloss','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','56b5f81de3c34f2aa9acd399dd212d62');
INSERT INTO `items` (`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`,`uuid`) values ('34028','3','','10392','ICMP response time','icmppingsec','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d34fc050448e4c48b303bf8c75c50060');
INSERT INTO `items` (`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`,`uuid`) values ('34029','17','','10392','SNMP traps (fallback)','snmptrap.fallback','1m','7d','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','c7a43b6281384161b6e1f28840d55aa1');
INSERT INTO `items` (`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`,`uuid`) values ('34030','20','1.3.6.1.2.1.1.4.0','10392','System contact details','system.contact','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','7f563d184760420080849d161bf373f6');
INSERT INTO `items` (`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`,`uuid`) values ('34031','20','1.3.6.1.2.1.1.1.0','10392','System description','system.descr','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','74af4fbc07284c9eb9d4a913fd5e7b2b');
INSERT INTO `items` (`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`,`uuid`) values ('34032','20','1.3.6.1.2.1.47.1.1.1.1.13.1','10392','Hardware model name','system.hw.model','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a7cf2f68a1c842e081deec4a16410071');
INSERT INTO `items` (`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`,`uuid`) values ('34033','20','1.3.6.1.2.1.47.1.1.1.1.11.1','10392','Hardware serial number','system.hw.serialnumber','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d9b2e70dd61424f8f0ffebf89d20853');
INSERT INTO `items` (`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`,`uuid`) values ('34034','20','1.3.6.1.2.1.1.6.0','10392','System location','system.location','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','cc4aa80bbd2d49f9bca23b305399f0fa');
INSERT INTO `items` (`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`,`uuid`) values ('34035','20','1.3.6.1.2.1.1.5.0','10392','System name','system.name','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','726fa93646ad429789dcec2fbfabc6ff');
INSERT INTO `items` (`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`,`uuid`) values ('34036','20','1.3.6.1.2.1.1.2.0','10392','System object ID','system.objectid','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e7cd491cf664de0b5046cd011186a0e');
INSERT INTO `items` (`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`,`uuid`) values ('34037','20','1.3.6.1.2.1.1.1.0','10392','Operating system','system.sw.os','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','89971d6753ce4d98b68a70bf26f4b99e');
INSERT INTO `items` (`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`,`uuid`) values ('34038','20','1.3.6.1.2.1.1.3.0','10392','Uptime (network)','system.net.uptime','1m','7d','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ecc18617c57a44bb96a565f450d569ac');
INSERT INTO `items` (`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`,`uuid`) values ('34039','5','','10392','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'247','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0951ddc53a2847b8ba816a5e4de9da2f');
INSERT INTO `items` (`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`,`uuid`) values ('34040','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5]','10392','CPU discovery','cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,\r\nindexed with cpmCPUTotalIndex .\r\nThis table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,\r\nlike different CPU chips, group of CPUs, or CPUs in different modules/cards.\r\nIn case of a single CPU, cpmCPUTotalTable has only one entry.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a525aec08c6945fda4cad224232825a9');
INSERT INTO `items` (`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`,`uuid`) values ('34041','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11]','10392','Entity Serial Numbers discovery','entity_sn.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','777db6085eed46dbaef83c05049a8d4b');
INSERT INTO `items` (`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`,`uuid`) values ('34042','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2]','10392','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of fan status maintained by the environmental monitor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c204b466541d475c959d2613a848f03a');
INSERT INTO `items` (`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`,`uuid`) values ('34043','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2]','10392','Memory discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.\r\nhttp://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bcde2f961af64c0eb27ec663577c60e1');
INSERT INTO `items` (`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`,`uuid`) values ('34044','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10392','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ce14cdd4669c4e8bb7b2badbe071f2d9');
INSERT INTO `items` (`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`,`uuid`) values ('34045','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10392','EtherLike discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d1264fbbd4b547a6874152179ed756d5');
INSERT INTO `items` (`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`,`uuid`) values ('34046','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2]','10392','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of power supply status maintained by the environmental monitor card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','742411a65e7f4b5fafc47e861ab8bd23');
INSERT INTO `items` (`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`,`uuid`) values ('34047','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2]','10392','Temperature discovery','temperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status\r\nmaintained by the environmental monitor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','595c88262f2f48c99d16f22ab7d70aac');
INSERT INTO `items` (`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`,`uuid`) values ('34048','20','1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX}','10392','#{#SNMPINDEX}: CPU utilization','system.cpu.util[{#SNMPINDEX}]','5m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-PROCESS-MIB\r\nObject name: cpmCPUTotal5minRev\r\nThe cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a912b6f023a64087a99827f9c3cd8ceb');
INSERT INTO `items` (`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`,`uuid`) values ('34049','20','1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}','10392','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[{#SNMPINDEX}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB\r\nObject name: entPhysicalSerialNum','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a7b5453459d24368943dd3394fca3d8f');
INSERT INTO `items` (`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`,`uuid`) values ('34050','20','1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX}','10392','{#SNMPVALUE}: Fan status','sensor.fan.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'242','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nObject name: ciscoEnvMonFanState','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','889b225dd7a84e4a9bce92d7138a6615');
INSERT INTO `items` (`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`,`uuid`) values ('34051','20','1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX}','10392','{#SNMPVALUE}: Free memory','vm.memory.free[{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB\r\nObject name: ciscoMemoryPoolFree\r\nIndicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c9040a8de7048baaa169b35f596a145');
INSERT INTO `items` (`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`,`uuid`) values ('34052','20','1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX}','10392','{#SNMPVALUE}: Used memory','vm.memory.used[{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB\r\nObject name: ciscoMemoryPoolUsed\r\nIndicates the number of bytes from the memory pool that are currently in use by applications on the managed device.\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e48d2527e378472ab060592a6b303484');
INSERT INTO `items` (`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`,`uuid`) values ('34053','15','','10392','{#SNMPVALUE}: Memory utilization','vm.memory.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[{#SNMPINDEX}])/(last(//vm.memory.free[{#SNMPINDEX}])+last(//vm.memory.used[{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Memory utilization in %','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c4b89f27f4534408a7fbe72110ce86de');
INSERT INTO `items` (`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`,`uuid`) values ('34054','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10392','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c8d390c0ef1544a08d6a6974d49f17ad');
INSERT INTO `items` (`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`,`uuid`) values ('34055','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10392','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','02a607faaaf0494097e25a81d850d646');
INSERT INTO `items` (`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`,`uuid`) values ('34056','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10392','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8b26f84549f14a91935b85b133e8b85b');
INSERT INTO `items` (`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`,`uuid`) values ('34057','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10392','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6afb99d2489a4e4fa6ed329d3b140e99');
INSERT INTO `items` (`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`,`uuid`) values ('34058','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10392','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b58d6657f5e14788829ff03f04bd1ac9');
INSERT INTO `items` (`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`,`uuid`) values ('34059','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10392','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fc23b72b6e0c4b0a9d5c9828f25cc43b');
INSERT INTO `items` (`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`,`uuid`) values ('34060','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10392','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a69f1d2e284a4d468d7226a68560405f');
INSERT INTO `items` (`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`,`uuid`) values ('34061','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10392','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'244','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9a2539d5137645cc868d80c6543b2a32');
INSERT INTO `items` (`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`,`uuid`) values ('34062','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10392','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'245','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f286f2bafa3e4d17a74842fff0a86dcf');
INSERT INTO `items` (`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`,`uuid`) values ('34063','20','1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}','10392','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'243','','','0','','','','','2',NULL,'MIB: EtherLike-MIB\r\nObject name: dot3StatsDuplexStatus\r\nThe current mode of operation of the MAC\r\nentity. \'unknown\' indicates that the current\r\nduplex mode could not be determined.\r\n\r\nManagement control of the duplex mode is\r\naccomplished through the MAU MIB. When\r\nan interface does not support autonegotiation,\r\nor when autonegotiation is not enabled, the\r\nduplex mode is controlled using\r\nifMauDefaultType. When autonegotiation is\r\nsupported and enabled, duplex mode is controlled\r\nusing ifMauAutoNegAdvertisedBits. In either\r\ncase, the currently operating duplex mode is\r\nreflected both in this object and in ifMauType.\r\n\r\nNote that this object provides redundant\r\ninformation with ifMauType. Normally, redundant\r\nobjects are discouraged. However, in this\r\ninstance, it allows a management application to\r\ndetermine the duplex status of an interface\r\nwithout having to know every possible value of\r\nifMauType. This was felt to be sufficiently\r\nvaluable to justify the redundancy.\r\nReference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab70998b12124fee93168b5e8222512e');
INSERT INTO `items` (`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`,`uuid`) values ('34064','20','1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX}','10392','{#SNMPVALUE}: Power supply status','sensor.psu.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'242','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nObject name: ciscoEnvMonSupplyState','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a3617fa8711146a0bdddd2e721cedb52');
INSERT INTO `items` (`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`,`uuid`) values ('34065','20','1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX}','10392','{#SNMPVALUE}: Temperature status','sensor.temp.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'242','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nObject name: ciscoEnvMonTemperatureState\r\nThe current state of the test point being instrumented.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e1636ece86b1427cad01e7223052b526');
INSERT INTO `items` (`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`,`uuid`) values ('34066','20','1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX}','10392','{#SNMPVALUE}: Temperature','sensor.temp.value[{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nObject name: ciscoEnvMonTemperatureValue\r\nThe current measurement of the test point being instrumented.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16a4c905660349aaaddf52573916e187');
INSERT INTO `items` (`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`,`uuid`) values ('34067','3','','10393','ICMP ping','icmpping','1m','7d','365d','0','3','','','','',NULL,'252','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d729b3a06df94b6890fe4c62f8d26f60');
INSERT INTO `items` (`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`,`uuid`) values ('34068','3','','10393','ICMP loss','icmppingloss','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3a6fdbfbbf7c4944a24e22e93aabf0e3');
INSERT INTO `items` (`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`,`uuid`) values ('34069','3','','10393','ICMP response time','icmppingsec','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','80efc7d77e314e97953cc75b5ae43e92');
INSERT INTO `items` (`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`,`uuid`) values ('34070','17','','10393','SNMP traps (fallback)','snmptrap.fallback','1m','7d','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','2c44173959284d7db1d2a745c68fa0a3');
INSERT INTO `items` (`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`,`uuid`) values ('34071','20','1.3.6.1.2.1.1.4.0','10393','System contact details','system.contact','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','b3ac05facd4349fc8e573525f3fdb239');
INSERT INTO `items` (`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`,`uuid`) values ('34072','20','1.3.6.1.2.1.1.1.0','10393','System description','system.descr','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f21c4e4de69342a68ca060a52fe071d6');
INSERT INTO `items` (`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`,`uuid`) values ('34073','20','1.3.6.1.2.1.47.1.1.1.1.13.1','10393','Hardware model name','system.hw.model','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2a0f9c29094f4a72ab66813c931d35ee');
INSERT INTO `items` (`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`,`uuid`) values ('34074','20','1.3.6.1.2.1.47.1.1.1.1.11.1','10393','Hardware serial number','system.hw.serialnumber','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','487fc626eb5e4629a0585210153ebbd1');
INSERT INTO `items` (`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`,`uuid`) values ('34075','20','1.3.6.1.2.1.1.6.0','10393','System location','system.location','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','679e63af2b3548c48b278da7356ae8ed');
INSERT INTO `items` (`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`,`uuid`) values ('34076','20','1.3.6.1.2.1.1.5.0','10393','System name','system.name','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5d51ca0ffadf4e4599390aa9a4644426');
INSERT INTO `items` (`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`,`uuid`) values ('34077','20','1.3.6.1.2.1.1.2.0','10393','System object ID','system.objectid','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2d49036582724a19b5cd5006360be8d2');
INSERT INTO `items` (`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`,`uuid`) values ('34078','20','1.3.6.1.2.1.1.1.0','10393','Operating system','system.sw.os','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5852aecfbfbe429097c660d8a1ce47ee');
INSERT INTO `items` (`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`,`uuid`) values ('34079','20','1.3.6.1.2.1.1.3.0','10393','Uptime (network)','system.net.uptime','1m','7d','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','54ff117dbac14916aee823e247bff23f');
INSERT INTO `items` (`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`,`uuid`) values ('34080','5','','10393','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'253','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','642cee0c23134982adc4dfc486a63843');
INSERT INTO `items` (`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`,`uuid`) values ('34081','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5]','10393','CPU discovery','cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,\r\nindexed with cpmCPUTotalIndex .\r\nThis table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,\r\nlike different CPU chips, group of CPUs, or CPUs in different modules/cards.\r\nIn case of a single CPU, cpmCPUTotalTable has only one entry.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a55dd3dac1d74fdea664fbccbce717cc');
INSERT INTO `items` (`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`,`uuid`) values ('34082','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11]','10393','Entity Serial Numbers discovery','entity_sn.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','7361d8c6f2a34111b478f4d5c1e12d01');
INSERT INTO `items` (`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`,`uuid`) values ('34083','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2]','10393','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of fan status maintained by the environmental monitor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a13d58f913b24056bc2f0e770657d1be');
INSERT INTO `items` (`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`,`uuid`) values ('34084','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2]','10393','Memory discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.\r\nhttp://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','637a377b92854de1a0c05f53a2a88851');
INSERT INTO `items` (`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`,`uuid`) values ('34085','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10393','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','11a26fe1c76447ba82250c7056c3ff9f');
INSERT INTO `items` (`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`,`uuid`) values ('34086','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10393','EtherLike discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','51398634ec1742dc95df5907e1042763');
INSERT INTO `items` (`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`,`uuid`) values ('34087','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2]','10393','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of power supply status maintained by the environmental monitor card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','60431e4af4764ee694973a0ed13b2898');
INSERT INTO `items` (`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`,`uuid`) values ('34088','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2]','10393','Temperature discovery','temperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status\r\nmaintained by the environmental monitor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84a4865dabb8489a9981eb02de238837');
INSERT INTO `items` (`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`,`uuid`) values ('34089','20','1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX}','10393','#{#SNMPINDEX}: CPU utilization','system.cpu.util[{#SNMPINDEX}]','5m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-PROCESS-MIB\r\nObject name: cpmCPUTotal5minRev\r\nThe cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dfb4e2bee3754f6489ee1b5bff628a4d');
INSERT INTO `items` (`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`,`uuid`) values ('34090','20','1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}','10393','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[{#SNMPINDEX}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB\r\nObject name: entPhysicalSerialNum','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fa0ce17966414937ba22b2a0891ca372');
INSERT INTO `items` (`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`,`uuid`) values ('34091','20','1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX}','10393','{#SNMPVALUE}: Fan status','sensor.fan.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'248','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nObject name: ciscoEnvMonFanState','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa190606669d43d996bce9c76df97081');
INSERT INTO `items` (`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`,`uuid`) values ('34092','20','1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX}','10393','{#SNMPVALUE}: Free memory','vm.memory.free[{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB\r\nObject name: ciscoMemoryPoolFree\r\nIndicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','44769632224a48dcb4756260910ba785');
INSERT INTO `items` (`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`,`uuid`) values ('34093','20','1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX}','10393','{#SNMPVALUE}: Used memory','vm.memory.used[{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB\r\nObject name: ciscoMemoryPoolUsed\r\nIndicates the number of bytes from the memory pool that are currently in use by applications on the managed device.\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0f037e9121254776a84158ce1090ac80');
INSERT INTO `items` (`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`,`uuid`) values ('34094','15','','10393','{#SNMPVALUE}: Memory utilization','vm.memory.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[{#SNMPINDEX}])/(last(//vm.memory.free[{#SNMPINDEX}])+last(//vm.memory.used[{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Memory utilization in %','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','926ffaaf890240be8d3632fe60b17c93');
INSERT INTO `items` (`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`,`uuid`) values ('34095','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10393','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','757501460bb14d65b14cab2249e0f7b6');
INSERT INTO `items` (`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`,`uuid`) values ('34096','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10393','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4880d42b5c034fbaa07b5ccb3e74a3ae');
INSERT INTO `items` (`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`,`uuid`) values ('34097','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10393','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e5e3c7c9d2904b19a7e8f0fe39d881db');
INSERT INTO `items` (`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`,`uuid`) values ('34098','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10393','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d0a3f00c7494655b8c67d6f257be372');
INSERT INTO `items` (`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`,`uuid`) values ('34099','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10393','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ce74da47f48e426a9364f92f58d50693');
INSERT INTO `items` (`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`,`uuid`) values ('34100','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10393','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a5efeed06f5f45d18e58517fb39323e8');
INSERT INTO `items` (`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`,`uuid`) values ('34101','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10393','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bc137542c8e14308bec44ac90469e8d0');
INSERT INTO `items` (`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`,`uuid`) values ('34102','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10393','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'250','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f13cc69469844cbdad4f2eac0e7f045e');
INSERT INTO `items` (`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`,`uuid`) values ('34103','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10393','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'251','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7bf551e444994cdaa08f208c10b89860');
INSERT INTO `items` (`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`,`uuid`) values ('34104','20','1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}','10393','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'249','','','0','','','','','2',NULL,'MIB: EtherLike-MIB\r\nObject name: dot3StatsDuplexStatus\r\nThe current mode of operation of the MAC\r\nentity. \'unknown\' indicates that the current\r\nduplex mode could not be determined.\r\n\r\nManagement control of the duplex mode is\r\naccomplished through the MAU MIB. When\r\nan interface does not support autonegotiation,\r\nor when autonegotiation is not enabled, the\r\nduplex mode is controlled using\r\nifMauDefaultType. When autonegotiation is\r\nsupported and enabled, duplex mode is controlled\r\nusing ifMauAutoNegAdvertisedBits. In either\r\ncase, the currently operating duplex mode is\r\nreflected both in this object and in ifMauType.\r\n\r\nNote that this object provides redundant\r\ninformation with ifMauType. Normally, redundant\r\nobjects are discouraged. However, in this\r\ninstance, it allows a management application to\r\ndetermine the duplex status of an interface\r\nwithout having to know every possible value of\r\nifMauType. This was felt to be sufficiently\r\nvaluable to justify the redundancy.\r\nReference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3a3836aa72914f14b1ee8d48be3b2bd1');
INSERT INTO `items` (`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`,`uuid`) values ('34105','20','1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX}','10393','{#SNMPVALUE}: Power supply status','sensor.psu.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'248','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nObject name: ciscoEnvMonSupplyState','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6ebc2645c84c4eb3acecaae528501cc2');
INSERT INTO `items` (`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`,`uuid`) values ('34106','20','1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX}','10393','{#SNMPVALUE}: Temperature status','sensor.temp.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'248','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nObject name: ciscoEnvMonTemperatureState\r\nThe current state of the test point being instrumented.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b60cf661f8c949c4860cea6d0c39e87b');
INSERT INTO `items` (`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`,`uuid`) values ('34107','20','1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX}','10393','{#SNMPVALUE}: Temperature','sensor.temp.value[{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nObject name: ciscoEnvMonTemperatureValue\r\nThe current measurement of the test point being instrumented.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','957a69769a7d4d27930d82feb359b3d5');
INSERT INTO `items` (`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`,`uuid`) values ('34108','3','','10394','ICMP ping','icmpping','1m','7d','365d','0','3','','','','',NULL,'258','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5d096334d7e2455797c9a5a46fecfaec');
INSERT INTO `items` (`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`,`uuid`) values ('34109','3','','10394','ICMP loss','icmppingloss','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a88b7bcaa2174a76b09031993ee48fb4');
INSERT INTO `items` (`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`,`uuid`) values ('34110','3','','10394','ICMP response time','icmppingsec','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','906ca6fa0cf64000bac2efbc0f5dc7f9');
INSERT INTO `items` (`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`,`uuid`) values ('34111','17','','10394','SNMP traps (fallback)','snmptrap.fallback','1m','7d','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','bc9c48b56cc6405c8256566d4768903a');
INSERT INTO `items` (`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`,`uuid`) values ('34112','20','1.3.6.1.2.1.1.4.0','10394','System contact details','system.contact','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','19896943dda74f798241c176b1f4fc4f');
INSERT INTO `items` (`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`,`uuid`) values ('34113','20','1.3.6.1.2.1.1.1.0','10394','System description','system.descr','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c4bd78d5e1f442128eddcdf4ea22d4b3');
INSERT INTO `items` (`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`,`uuid`) values ('34114','20','1.3.6.1.2.1.47.1.1.1.1.13.1','10394','Hardware model name','system.hw.model','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','58642d7727964ba48f41bc33cfb6ef37');
INSERT INTO `items` (`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`,`uuid`) values ('34115','20','1.3.6.1.2.1.47.1.1.1.1.11.1','10394','Hardware serial number','system.hw.serialnumber','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7fa7b4e4803e4eed932c176afed56cd5');
INSERT INTO `items` (`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`,`uuid`) values ('34116','20','1.3.6.1.2.1.1.6.0','10394','System location','system.location','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','213f54a3c23c40aa8693169efd8c0d82');
INSERT INTO `items` (`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`,`uuid`) values ('34117','20','1.3.6.1.2.1.1.5.0','10394','System name','system.name','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e325f94720f4b29ad83a741a3735fa1');
INSERT INTO `items` (`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`,`uuid`) values ('34118','20','1.3.6.1.2.1.1.2.0','10394','System object ID','system.objectid','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2fce50826a7d498abe4ca628021fb9ac');
INSERT INTO `items` (`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`,`uuid`) values ('34119','20','1.3.6.1.2.1.1.1.0','10394','Operating system','system.sw.os','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0d55299054304e658dc036f234727c73');
INSERT INTO `items` (`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`,`uuid`) values ('34120','20','1.3.6.1.2.1.1.3.0','10394','Uptime (network)','system.net.uptime','1m','7d','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d33f3f14dfff49d88269706ab464e2b9');
INSERT INTO `items` (`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`,`uuid`) values ('34121','5','','10394','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'259','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','82c87e2ade594f68abc4861e4d328a16');
INSERT INTO `items` (`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`,`uuid`) values ('34122','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5]','10394','CPU discovery','cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,\r\nindexed with cpmCPUTotalIndex .\r\nThis table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,\r\nlike different CPU chips, group of CPUs, or CPUs in different modules/cards.\r\nIn case of a single CPU, cpmCPUTotalTable has only one entry.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f472cb3505b34f14b84bc1ce69f66b29');
INSERT INTO `items` (`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`,`uuid`) values ('34123','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11]','10394','Entity Serial Numbers discovery','entity_sn.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','7b40466007144e82ba7b6081d9d024ae');
INSERT INTO `items` (`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`,`uuid`) values ('34124','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2]','10394','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of fan status maintained by the environmental monitor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4972e929a2e84bc1bf37f8844aa640d2');
INSERT INTO `items` (`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`,`uuid`) values ('34125','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2]','10394','Memory discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.\r\nhttp://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d5c08c7436a44b74b35c4dd5be5c308a');
INSERT INTO `items` (`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`,`uuid`) values ('34126','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10394','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c0be105de4db4c0182833e6a7e0fcd01');
INSERT INTO `items` (`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`,`uuid`) values ('34127','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10394','EtherLike discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','15992a60957c4ef896ece23744da52f1');
INSERT INTO `items` (`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`,`uuid`) values ('34128','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2]','10394','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of power supply status maintained by the environmental monitor card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d2658fe23d274233accf16090273118f');
INSERT INTO `items` (`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`,`uuid`) values ('34129','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2]','10394','Temperature discovery','temperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status\r\nmaintained by the environmental monitor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab60f4a103254b2c87f260014ecd1a28');
INSERT INTO `items` (`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`,`uuid`) values ('34130','20','1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX}','10394','#{#SNMPINDEX}: CPU utilization','system.cpu.util[{#SNMPINDEX}]','5m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-PROCESS-MIB\r\nObject name: cpmCPUTotal5minRev\r\nThe cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','71248adcae1247fb8fe96ff83505b72a');
INSERT INTO `items` (`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`,`uuid`) values ('34131','20','1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}','10394','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[{#SNMPINDEX}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB\r\nObject name: entPhysicalSerialNum','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c08c86fa7d1a4f16b51a8212eb98826f');
INSERT INTO `items` (`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`,`uuid`) values ('34132','20','1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX}','10394','{#SNMPVALUE}: Fan status','sensor.fan.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'254','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nObject name: ciscoEnvMonFanState','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6bc5cda2b5fa487d8841f6f9d07899e3');
INSERT INTO `items` (`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`,`uuid`) values ('34133','20','1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX}','10394','{#SNMPVALUE}: Free memory','vm.memory.free[{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB\r\nObject name: ciscoMemoryPoolFree\r\nIndicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3520b5d6482145958337956cb29d5dad');
INSERT INTO `items` (`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`,`uuid`) values ('34134','20','1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX}','10394','{#SNMPVALUE}: Used memory','vm.memory.used[{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB\r\nObject name: ciscoMemoryPoolUsed\r\nIndicates the number of bytes from the memory pool that are currently in use by applications on the managed device.\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5317e1db040846728cf05f3b7fe5dcab');
INSERT INTO `items` (`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`,`uuid`) values ('34135','15','','10394','{#SNMPVALUE}: Memory utilization','vm.memory.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[{#SNMPINDEX}])/(last(//vm.memory.free[{#SNMPINDEX}])+last(//vm.memory.used[{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Memory utilization in %','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9120f609d03f44c68c5c34177745422c');
INSERT INTO `items` (`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`,`uuid`) values ('34136','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10394','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','06f850ef11f24e79be813a8b79e25d91');
INSERT INTO `items` (`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`,`uuid`) values ('34137','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10394','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','216cd11617ce4fcb9551cbada0189919');
INSERT INTO `items` (`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`,`uuid`) values ('34138','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10394','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9dfdb09ca395486b9b71f1e3d74b8f5a');
INSERT INTO `items` (`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`,`uuid`) values ('34139','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10394','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','69fffa684b344774877ccb05e80fa0ab');
INSERT INTO `items` (`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`,`uuid`) values ('34140','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10394','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ce6a12b2553d456b87738efeb43ca849');
INSERT INTO `items` (`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`,`uuid`) values ('34141','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10394','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eee4285b410f470f82e05c8f0cbc97b5');
INSERT INTO `items` (`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`,`uuid`) values ('34142','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10394','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b95c3c8730434b58a1a03c661c767901');
INSERT INTO `items` (`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`,`uuid`) values ('34143','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10394','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'256','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','28cb37005e6c46eaa636b5de0b7b5c8d');
INSERT INTO `items` (`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`,`uuid`) values ('34144','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10394','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'257','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','73d4de02c2e84a75acd66e33d98f6180');
INSERT INTO `items` (`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`,`uuid`) values ('34145','20','1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}','10394','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'255','','','0','','','','','2',NULL,'MIB: EtherLike-MIB\r\nObject name: dot3StatsDuplexStatus\r\nThe current mode of operation of the MAC\r\nentity. \'unknown\' indicates that the current\r\nduplex mode could not be determined.\r\n\r\nManagement control of the duplex mode is\r\naccomplished through the MAU MIB. When\r\nan interface does not support autonegotiation,\r\nor when autonegotiation is not enabled, the\r\nduplex mode is controlled using\r\nifMauDefaultType. When autonegotiation is\r\nsupported and enabled, duplex mode is controlled\r\nusing ifMauAutoNegAdvertisedBits. In either\r\ncase, the currently operating duplex mode is\r\nreflected both in this object and in ifMauType.\r\n\r\nNote that this object provides redundant\r\ninformation with ifMauType. Normally, redundant\r\nobjects are discouraged. However, in this\r\ninstance, it allows a management application to\r\ndetermine the duplex status of an interface\r\nwithout having to know every possible value of\r\nifMauType. This was felt to be sufficiently\r\nvaluable to justify the redundancy.\r\nReference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','530a9cfa68024c1e8ad6573573c8f2b7');
INSERT INTO `items` (`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`,`uuid`) values ('34146','20','1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX}','10394','{#SNMPVALUE}: Power supply status','sensor.psu.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'254','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nObject name: ciscoEnvMonSupplyState','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b87fda0166dc4baa9c24124dae6cea5c');
INSERT INTO `items` (`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`,`uuid`) values ('34147','20','1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX}','10394','{#SNMPVALUE}: Temperature status','sensor.temp.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'254','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nObject name: ciscoEnvMonTemperatureState\r\nThe current state of the test point being instrumented.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2b2423e625914a4f89b16faaed832bae');
INSERT INTO `items` (`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`,`uuid`) values ('34148','20','1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX}','10394','{#SNMPVALUE}: Temperature','sensor.temp.value[{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nObject name: ciscoEnvMonTemperatureValue\r\nThe current measurement of the test point being instrumented.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','92864c59d4b34a979dc465824c3ef1b2');
INSERT INTO `items` (`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`,`uuid`) values ('34149','3','','10251','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'262','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','87480ce035a94f299c4cf4103eaaf066');
INSERT INTO `items` (`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`,`uuid`) values ('34150','3','','10251','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','50e85be3969447c58fcfeca5d9a1a9bb');
INSERT INTO `items` (`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`,`uuid`) values ('34151','3','','10251','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','7567e999d75442379066babdc9b50894');
INSERT INTO `items` (`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`,`uuid`) values ('34152','17','','10251','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','0cb8aadeb5554583a65c3496cfed2c1b');
INSERT INTO `items` (`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`,`uuid`) values ('34153','20','1.3.6.1.2.1.1.4.0','10251','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','f62a8b653c3d44d09864a4a4c910aeb1');
INSERT INTO `items` (`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`,`uuid`) values ('34154','20','discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2]','10251','CPU utilization','system.cpu.util','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that processors was not idle.\r\nImplementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c33470549bda45e88ecb8ded7d0b5e87');
INSERT INTO `items` (`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`,`uuid`) values ('34155','20','1.3.6.1.2.1.1.1.0','10251','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','64c4f3e890ec4c29be07ba2d06345534');
INSERT INTO `items` (`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`,`uuid`) values ('34156','20','1.3.6.1.2.1.1.6.0','10251','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','e0d2149e1a114f3a971c324673beae2f');
INSERT INTO `items` (`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`,`uuid`) values ('34157','20','1.3.6.1.2.1.1.5.0','10251','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f63d1f71a97e45b0ab5716299ef298ea');
INSERT INTO `items` (`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`,`uuid`) values ('34158','20','1.3.6.1.2.1.1.2.0','10251','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f1535f45138b472c945e231a9beb9cc5');
INSERT INTO `items` (`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`,`uuid`) values ('34159','20','1.3.6.1.2.1.1.3.0','10251','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d7f06d23f6b14677b5183f2cc94fc10d');
INSERT INTO `items` (`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`,`uuid`) values ('34160','5','','10251','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'263','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aba117057e824b6789fca847cae9e0fc');
INSERT INTO `items` (`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`,`uuid`) values ('34161','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10251','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9e0d4ed074214f22bbbc9c8a5e3b9d0d');
INSERT INTO `items` (`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`,`uuid`) values ('34162','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4]','10251','Storage discovery','vfs.fs.discovery[snmp]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f4c83472c88b419da104e4c5a35d6fc9');
INSERT INTO `items` (`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`,`uuid`) values ('34163','20','discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4]','10251','Memory discovery','vm.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with memory filter','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','32a20a1f65d64db3bf17d6d405321253');
INSERT INTO `items` (`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`,`uuid`) values ('34164','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10251','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8f6e736b5c9c48a68e16122d592534b2');
INSERT INTO `items` (`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`,`uuid`) values ('34165','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10251','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c625b20266a04a1ba0421b4a64629dcc');
INSERT INTO `items` (`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`,`uuid`) values ('34166','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10251','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','262f5aa5582441ecb93fd7df6a59a76d');
INSERT INTO `items` (`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`,`uuid`) values ('34167','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10251','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b7c510be904e4d06830ae13a16bc9668');
INSERT INTO `items` (`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`,`uuid`) values ('34168','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10251','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','67b4b6520bbd45fd96d78a5942b54c09');
INSERT INTO `items` (`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`,`uuid`) values ('34169','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10251','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8e149281afb742758a00b699a281a584');
INSERT INTO `items` (`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`,`uuid`) values ('34170','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10251','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ddbde55ce98f465a8973d60b1ecb0f8c');
INSERT INTO `items` (`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`,`uuid`) values ('34171','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10251','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'260','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6a1429de015640768d2cdd2adc4b09d7');
INSERT INTO `items` (`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`,`uuid`) values ('34172','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10251','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'261','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7ecba23625b64d94873b938ebbce500b');
INSERT INTO `items` (`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`,`uuid`) values ('34173','15','','10251','{#FSNAME}: Space utilization','vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageUsed.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for {#FSNAME}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84e47981247243bd888a870700da8be3');
INSERT INTO `items` (`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`,`uuid`) values ('34174','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10251','{#FSNAME}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in units of hrStorageAllocationUnits.\r\nThis object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.\r\nFor example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1a743f5b617f4800b5b2b9672f34693c');
INSERT INTO `items` (`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`,`uuid`) values ('34175','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10251','{#FSNAME}: Used space','vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','82fadd771c3040c9ba001a9a40a83163');
INSERT INTO `items` (`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`,`uuid`) values ('34176','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10251','{#MEMNAME}: Total memory','vm.memory.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in units of hrStorageAllocationUnits.\r\nThis object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.\r\nFor example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','70918ede8bff4f76be467a806a015b21');
INSERT INTO `items` (`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`,`uuid`) values ('34177','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10251','{#MEMNAME}: Used memory','vm.memory.used[hrStorageUsed.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e661062e7fcb45968ca1e9a1306f4848');
INSERT INTO `items` (`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`,`uuid`) values ('34178','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','cedea4befd6a47b8983eff5dee9feed9');
INSERT INTO `items` (`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`,`uuid`) values ('34180','20','1.3.6.1.4.1.318.1.1.1.4.3.3.0','10395','Output load','output.load[upsHighPrecOutputLoad]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current UPS load expressed as percentage\r\nof rated capacity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c17c7fd7e6504592869dc14c4a002254');
INSERT INTO `items` (`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`,`uuid`) values ('34181','20','1.3.6.1.2.1.1.3.0','10395','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management\r\nportion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','701fa778bc03444aad94343d0dbe048e');
INSERT INTO `items` (`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`,`uuid`) values ('34182','20','1.3.6.1.4.1.318.1.1.1.1.2.3.0','10395','Serial number','system.sn[upsAdvIdentSerialNumber]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nAn 8-character string identifying the serial number of\r\n the UPS internal microprocessor. This number is set at\r\n the factory. NOTE: This number does NOT correspond to\r\n the serial number on the rear of the UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1df309508ac9433397f88120b2895451');
INSERT INTO `items` (`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`,`uuid`) values ('34183','20','1.3.6.1.2.1.1.2.0','10395','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management\r\nsubsystem contained in the entity. This value is allocated within the SMI enterprises\r\nsubtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what\r\nkind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was\r\nassigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1\r\nto its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6780faad9fc9492f9f92915db5161e43');
INSERT INTO `items` (`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`,`uuid`) values ('34185','20','1.3.6.1.4.1.318.1.1.1.1.1.1.0','10395','Model','system.model[upsBasicIdentModel]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe UPS model name (e.g. \'APC Smart-UPS 600\').','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6030dbee3cc24dbeb15e4b802e89cbc8');
INSERT INTO `items` (`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`,`uuid`) values ('34186','20','1.3.6.1.2.1.1.6.0','10395','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet,\r\n3rd 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','445d7a843340424ab7c09ab001d5865c');
INSERT INTO `items` (`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`,`uuid`) values ('34187','20','1.3.6.1.2.1.1.1.0','10395','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ed42f6f2d8c24176b53f38e0a857a129');
INSERT INTO `items` (`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`,`uuid`) values ('34188','20','1.3.6.1.2.1.1.4.0','10395','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed\r\nnode, together with information on how to contact this person. If no contact\r\ninformation is known, the value is the zero-length string.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','299e4e11e0374888877e1dc386409726');
INSERT INTO `items` (`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`,`uuid`) values ('34189','17','','10395','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','2c52ba1a964a40e1b4a75582ee6ad43b');
INSERT INTO `items` (`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`,`uuid`) values ('34190','20','1.3.6.1.4.1.318.1.1.1.4.3.1.0','10395','Output voltage','output.voltage[upsHighPrecOutputVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe output voltage of the UPS system in VAC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','37d7eda5664c4ae2b4a126c60a8eb40b');
INSERT INTO `items` (`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`,`uuid`) values ('34191','20','1.3.6.1.4.1.318.1.1.1.4.1.1.0','10395','Output status','output.status[upsBasicOutputStatus]','1m','7d','365d','0','3','','','','',NULL,'315','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current state of the UPS. If the UPS is unable to\r\n determine the state of the UPS this variable is set\r\n to unknown(1).\r\nDuring self-test most UPSes report onBattery(3) but\r\n some that support it will report onBatteryTest(15).\r\n To determine self-test status across all UPSes, refer\r\n to the upsBasicStateOutputState OID.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0ae99a18a5c24fb0b812353d25459e1f');
INSERT INTO `items` (`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`,`uuid`) values ('34192','20','1.3.6.1.4.1.318.1.1.1.4.3.4.0','10395','Output current','output.current[upsHighPrecOutputCurrent]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe 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','a332c87a948045beae13f74984245b86');
INSERT INTO `items` (`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`,`uuid`) values ('34193','20','1.3.6.1.4.1.318.1.1.1.2.2.5.0','10395','External battery packs count','battery.external_packs_count[upsAdvBatteryNumOfBattPacks]','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe number of external battery packs connected to the UPS. If\r\n the UPS does not use smart cells then the agent reports\r\n ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','390e33a7623d41d2a8a67752c6d5c733');
INSERT INTO `items` (`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`,`uuid`) values ('34194','20','1.3.6.1.4.1.318.1.1.1.3.3.1.0','10395','Input voltage','input.voltage[upsHighPrecInputLineVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current utility line voltage in VAC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','de84a2fbbb464023a7b73e01895a9e9d');
INSERT INTO `items` (`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`,`uuid`) values ('34195','20','1.3.6.1.4.1.318.1.1.1.3.3.4.0','10395','Input frequency','input.frequency[upsHighPrecInputFrequency]','1m','7d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current input frequency to the UPS system in Hz.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c0b565f2b6a44a2a91cc61fd220f056');
INSERT INTO `items` (`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`,`uuid`) values ('34196','20','1.3.6.1.4.1.318.1.1.1.3.2.5.0','10395','Input fail cause','input.fail[upsAdvInputLineFailCause]','1m','7d','365d','0','3','','','','',NULL,'266','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe reason for the occurrence of the last transfer to UPS\r\nbattery power. The variable is set to:\r\n- noTransfer(1) -- if there is no transfer yet.\r\n- highLineVoltage(2) -- if the transfer to battery is caused\r\nby an over voltage greater than the high transfer voltage.\r\n- brownout(3) -- if the duration of the outage is greater than\r\nfive seconds and the line voltage is between 40% of the\r\nrated output voltage and the low transfer voltage.\r\n- blackout(4) -- if the duration of the outage is greater than five\r\nseconds and the line voltage is between 40% of the rated\r\noutput voltage and ground.\r\n- smallMomentarySag(5) -- if the duration of the outage is less\r\nthan five seconds and the line voltage is between 40% of the\r\nrated output voltage and the low transfer voltage.\r\n- deepMomentarySag(6) -- if the duration of the outage is less\r\nthan five seconds and the line voltage is between 40% of the\r\nrated output voltage and ground. The variable is set to\r\n- smallMomentarySpike(7) -- if the line failure is caused by a\r\nrate of change of input voltage less than ten volts per cycle.\r\n- largeMomentarySpike(8) -- if the line failure is caused by\r\na rate of change of input voltage greater than ten volts per cycle.\r\n- selfTest(9) -- if the UPS was commanded to do a self test.\r\n- rateOfVoltageChange(10) -- if the failure is due to the rate of change of\r\nthe line voltage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6ce40beab0b44248868652b0ed543afc');
INSERT INTO `items` (`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`,`uuid`) values ('34200','20','1.3.6.1.4.1.318.1.1.1.2.3.4.0','10395','Battery voltage','battery.voltage[upsHighPrecBatteryActualVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe actual battery bus voltage in Volts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b78d2e9160c74f328b8123ba2031d7bf');
INSERT INTO `items` (`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`,`uuid`) values ('34201','20','1.3.6.1.4.1.318.1.1.1.2.3.2.0','10395','Battery temperature','battery.temperature[upsHighPrecBatteryTemperature]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current internal UPS temperature in Celsius.\r\n Temperatures below zero read as 0.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7c35a9646eed4e4581edc51d42a9604c');
INSERT INTO `items` (`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`,`uuid`) values ('34202','20','1.3.6.1.4.1.318.1.1.1.2.1.1.0','10395','Battery status','battery.status[upsBasicBatteryStatus]','1m','7d','365d','0','3','','','','',NULL,'267','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe status of the UPS batteries. A batteryLow(3) value\r\n indicates the UPS will be unable to sustain the current\r\n load, and its services will be lost if power is not restored.\r\n The amount of run time in reserve at the time of low battery\r\n can be configured by the upsAdvConfigLowBatteryRunTime.\r\n A batteryInFaultCondition(4)value indicates that a battery\r\n installed has an internal error condition.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f4106603e47e40548592d60a7b8b3148');
INSERT INTO `items` (`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`,`uuid`) values ('34203','20','1.3.6.1.4.1.318.1.1.1.2.2.3.0','10395','Battery runtime remaining','battery.runtime_remaining[upsAdvBatteryRunTimeRemaining]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe UPS battery run time remaining before battery\r\n exhaustion.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f52a3e2ae08c4b2996249c5601b4098d');
INSERT INTO `items` (`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`,`uuid`) values ('34204','20','1.3.6.1.4.1.318.1.1.1.2.2.4.0','10395','Battery replace indicator','battery.replace_indicator[upsAdvBatteryReplaceIndicator]','1m','7d','365d','0','3','','','','',NULL,'265','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nIndicates whether the UPS batteries need replacement.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eb74b3671b4d4335ad92bd3b027547b0');
INSERT INTO `items` (`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`,`uuid`) values ('34205','20','1.3.6.1.4.1.318.1.1.1.2.1.3.0','10395','Battery last replace date','battery.last_replace_date[upsBasicBatteryLastReplaceDate]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe date when the UPS system\'s batteries were last replaced\r\n in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value\r\n is originally set at the factory. When the UPS batteries\r\n are replaced, this value should be reset by the administrator.\r\n 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','3d69adaa88e64b8084d38c1482815bf2');
INSERT INTO `items` (`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`,`uuid`) values ('34206','5','','10395','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'269','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ca3275f69f3c4e7c9c71108451c0b64f');
INSERT INTO `items` (`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`,`uuid`) values ('34207','20','discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6]','10395','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','52345d2975214002bdd05a24e43484a8');
INSERT INTO `items` (`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`,`uuid`) values ('34208','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]','10395','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','f7eb1c82c6694e72b7d28ba4d71d8741');
INSERT INTO `items` (`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`,`uuid`) values ('34209','20','discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3]','10395','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','457169b3c43846739614a6ddc7155fda');
INSERT INTO `items` (`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`,`uuid`) values ('34210','20','discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3]','10395','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','06a853147fe646659d066fff34f67faa');
INSERT INTO `items` (`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`,`uuid`) values ('34211','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1]','10395','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','16e8b3b4d38040a7961b1de4c18a4ea9');
INSERT INTO `items` (`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`,`uuid`) values ('34212','20','1.3.6.1.4.1.318.1.1.1.2.2.6.0','10395','{#SNMPINDEX}: External battery packs bad','battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}]','15m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe number of external battery packs connected to the UPS that\r\nare defective. If the UPS does not use smart cells then the\r\nagent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c4dccc96218448d696952f6ea5d1f24b');
INSERT INTO `items` (`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`,`uuid`) values ('34213','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX}','10395','{#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\r\nThe battery cartridge estimated battery replace date.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a168ef9da6504b31a8234b272f1a1a80');
INSERT INTO `items` (`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`,`uuid`) values ('34214','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX}','10395','{#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\r\nThe battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n 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','fd71d1ceaf524aeaac38de5f63d101fd');
INSERT INTO `items` (`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`,`uuid`) values ('34215','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX}','10395','{#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\r\nThe battery cartridge status.\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fa05e062413a4c1fba4d35e3006b91f4');
INSERT INTO `items` (`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`,`uuid`) values ('34216','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX}','10395','{#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\r\nThe battery pack temperature in Celsius.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','017347865030426e9dde74e9bcf38c76');
INSERT INTO `items` (`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`,`uuid`) values ('34217','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX}','10395','{#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\r\nThe battery pack serial number.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','354c1d6766d6453caeb382cf7ede7951');
INSERT INTO `items` (`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`,`uuid`) values ('34218','20','1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1','10395','{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current humidity reading - a relative humidity\r\n percentage. -1 indicates an invalid reading due to either a\r\n sensor that doesn\'t read humidity or lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ee017a632ee944fe9122e21fa7e7531f');
INSERT INTO `items` (`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`,`uuid`) values ('34219','20','1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1','10395','{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'264','','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe alarm status of the sensor. Possible values:\r\nuioNormal (1),\r\nuioWarning (2),\r\nuioCritical (3),\r\nsensorStatusNotApplicable (4)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0431cf0a54b449c9b77623b69629920f');
INSERT INTO `items` (`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`,`uuid`) values ('34220','20','1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1','10395','{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current temperature reading in Celsius.\r\n -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6de4920e4e87418884a82ff8b40a46ab');
INSERT INTO `items` (`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`,`uuid`) values ('34221','20','1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1','10395','{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current humidity reading - a relative humidity\r\n percentage. -1 indicates an invalid reading due to either a\r\n sensor that doesn\'t read humidity or lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3417b035a4f14ce3992e10029674de8e');
INSERT INTO `items` (`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`,`uuid`) values ('34222','20','1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1','10395','{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'264','','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe alarm status of the sensor. Possible values:\r\nuioNormal (1),\r\nuioWarning (2),\r\nuioCritical (3),\r\nsensorStatusNotApplicable (4)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d04af1687eb846d18b57af04ab1b594b');
INSERT INTO `items` (`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`,`uuid`) values ('34223','20','1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1','10395','{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current temperature reading in Celsius.\r\n -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bbf611aad1454b38ad39fa258239394a');
INSERT INTO `items` (`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`,`uuid`) values ('34224','20','1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX}','10395','{#PHASEINDEX}: Phase input current','phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe input current in 0.1 amperes, or -0.1 if it\'s\r\n unsupported by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a1b8277cd1b248348263c233ab05fd4f');
INSERT INTO `items` (`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`,`uuid`) values ('34225','20','1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX}','10395','{#PHASEINDEX}: Phase input voltage','phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe input voltage in VAC, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','40c05eaf739540979d11787a694cb8c9');
INSERT INTO `items` (`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`,`uuid`) values ('34226','19','','10396','Get chassis','netapp.chassis.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/cluster/chassis?fields=id,state','','','200','1','0','','0','0','0','0','0','0','0','95d822159f2a4c4084ad36b18cd11a1d');
INSERT INTO `items` (`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`,`uuid`) values ('34227','15','','10396','Cluster latency, read','netapp.cluster.statistics.latency.read','1m','7d','365d','0','0','','!ms','','',NULL,NULL,'(last(//netapp.cluster.statistics.latency_raw.read) - last(//netapp.cluster.statistics.latency_raw.read,#2)) /\r\n( last(//netapp.cluster.statistics.iops_raw.read) - last(//netapp.cluster.statistics.iops_raw.read,#2) +\r\n(last(//netapp.cluster.statistics.iops_raw.read) - last(//netapp.cluster.statistics.iops_raw.read,#2) = 0) ) * 0.001','','0','','','','','0',NULL,'The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for read I/O operations.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4b89e603f9cf4b92a85293b1ad15c005');
INSERT INTO `items` (`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`,`uuid`) values ('34228','19','','10396','Get SVMs','netapp.svms.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/svm/svms?fields=name,state,comment','','','200','1','0','','0','0','0','0','0','0','0','7a813b7cb05d497fbf77bf11b01757dd');
INSERT INTO `items` (`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`,`uuid`) values ('34229','19','','10396','Get FC ports','netapp.ports.fc.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/network/fc/ports?fields=name,node.name,description,enabled,fabric.switch_port,state','','','200','1','0','','0','0','0','0','0','0','0','2a6abfe87cc548bb81fcb217cde4f805');
INSERT INTO `items` (`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`,`uuid`) values ('34230','19','','10396','Get ethernet ports','netapp.ports.eth.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/network/ethernet/ports?fields=name,type,node.name,broadcast_domain.name,enabled,state,mtu,speed','','','200','1','0','','0','0','0','0','0','0','0','c677a3caf7a04710bc67b165b4152808');
INSERT INTO `items` (`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`,`uuid`) values ('34231','19','','10396','Get nodes','netapp.nodes.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/cluster/nodes?fields=*','','','200','1','0','','0','0','0','0','0','0','0','5c36efc545ba4dcbb0be84da5e8088cc');
INSERT INTO `items` (`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`,`uuid`) values ('34232','19','','10396','Get LUNs','netapp.luns.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/storage/luns?fields=name,svm.name,space.size,space.used,status.state,status.container_state','','','200','1','0','','0','0','0','0','0','0','0','c9b6ac2405af48c0899d1536662f752b');
INSERT INTO `items` (`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`,`uuid`) values ('34233','19','','10396','Get FRUs','netapp.frus.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/cluster/chassis?fields=id,frus.id,frus.state','','','200','1','0','','0','0','0','0','0','0','0','54163ca73a8c40188048ef5d89ec4927');
INSERT INTO `items` (`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`,`uuid`) values ('34234','19','','10396','Get disks','netapp.disks.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/storage/disks?fields=state,node.name','','','200','1','0','','0','0','0','0','0','0','0','c9bf91e0f23c4961aed8ee5b32ff7767');
INSERT INTO `items` (`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`,`uuid`) values ('34235','19','','10396','Get cluster','netapp.cluster.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/cluster','','','200','1','0','','0','0','0','0','0','0','0','49490a886b5f4e5c9e8cc121a6ffd713');
INSERT INTO `items` (`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`,`uuid`) values ('34236','15','','10396','Cluster latency, write','netapp.cluster.statistics.latency.write','1m','7d','365d','0','0','','!ms','','',NULL,NULL,'(last(//netapp.cluster.statistics.latency_raw.write) - last(//netapp.cluster.statistics.latency_raw.write,#2)) /\r\n( last(//netapp.cluster.statistics.iops_raw.write) - last(//netapp.cluster.statistics.iops_raw.write,#2) +\r\n(last(//netapp.cluster.statistics.iops_raw.write) - last(//netapp.cluster.statistics.iops_raw.write,#2) = 0) ) * 0.001','','0','','','','','0',NULL,'The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for write I/O operations.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','543ba306d85e41c98d34dab39463dd87');
INSERT INTO `items` (`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`,`uuid`) values ('34237','15','','10396','Cluster latency, total','netapp.cluster.statistics.latency.total','1m','7d','365d','0','0','','!ms','','',NULL,NULL,'(last(//netapp.cluster.statistics.latency_raw.total) - last(//netapp.cluster.statistics.latency_raw.total,#2)) /\r\n( last(//netapp.cluster.statistics.iops_raw.total) - last(//netapp.cluster.statistics.iops_raw.total,#2) +\r\n(last(//netapp.cluster.statistics.iops_raw.total) - last(//netapp.cluster.statistics.iops_raw.total,#2) = 0) ) * 0.001','','0','','','','','0',NULL,'The average latency per I/O operation in milliseconds observed at the storage object. Performance metric aggregated over all types of I/O operations.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c953f67a7484e389d11ac5ef6b06c44');
INSERT INTO `items` (`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`,`uuid`) values ('34238','19','','10396','Get volumes','netapp.volumes.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/storage/volumes?fields=name,comment,state,type,svm.name,space.size,space.available,space.used,statistics','','','200','1','0','','0','0','0','0','0','0','0','fa7fa8daaaa640d494af38614ba12c2e');
INSERT INTO `items` (`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`,`uuid`) values ('34239','15','','10396','Cluster latency, other','netapp.cluster.statistics.latency.other','1m','7d','365d','0','0','','!ms','','',NULL,NULL,'(last(//netapp.cluster.statistics.latency_raw.other) - last(//netapp.cluster.statistics.latency_raw.other,#2)) /\r\n(last(//netapp.cluster.statistics.iops_raw.other) - last(//netapp.cluster.statistics.iops_raw.other,#2) +\r\n(last(//netapp.cluster.statistics.iops_raw.other) - last(//netapp.cluster.statistics.iops_raw.other,#2) = 0) ) * 0.001','','0','','','','','0',NULL,'The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4bd4fe94e9a54fa2b8ab9bdf0475edff');
INSERT INTO `items` (`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`,`uuid`) values ('34260','19','','10396','Chassis discovery','netapp.chassis.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','1',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/cluster/chassis?fields=id','','','200','1','0','','0','0','0','0','0','0','0','c5265605c1b5440999b7c0dbff8ce328');
INSERT INTO `items` (`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`,`uuid`) values ('34261','19','','10396','Disks discovery','netapp.disks.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','1',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/storage/disks?fields=name,node.name','','','200','1','0','','0','0','0','0','0','0','0','e7c0955f88d342179b96f56e1f35afe2');
INSERT INTO `items` (`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`,`uuid`) values ('34263','19','','10396','LUNs discovery','netapp.luns.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','1',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/storage/luns?fields=name,svm.name,space.size,space.used,status.state,status.container_state','','','200','1','0','','0','0','0','0','0','0','0','b75474be384f4d7fa0f625c4cebeef43');
INSERT INTO `items` (`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`,`uuid`) values ('34264','19','','10396','Nodes discovery','netapp.nodes.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','1',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/cluster/nodes?fields=name','','','200','1','0','','0','0','0','0','0','0','0','b914c4c37ba446eba7ecdc73a9692885');
INSERT INTO `items` (`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`,`uuid`) values ('34265','19','','10396','Ethernet ports discovery','netapp.ports.ether.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','1',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/network/ethernet/ports?fields=name,state,node.name','','','200','1','0','','0','0','0','0','0','0','0','98ed5727ede8490b8479a2194b2c847a');
INSERT INTO `items` (`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`,`uuid`) values ('34266','19','','10396','FC ports discovery','netapp.ports.fc.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','1',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/network/fc/ports?fields=node.name,name,state','','','200','1','0','','0','0','0','0','0','0','0','bab3f935c2a04c89b0901f1c19d50558');
INSERT INTO `items` (`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`,`uuid`) values ('34267','19','','10396','SVMs discovery','netapp.svms.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','1',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/svm/svms?fields=name','','','200','1','0','','0','0','0','0','0','0','0','b2a5b50d7e3e4592ad9627ae85487554');
INSERT INTO `items` (`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`,`uuid`) values ('34268','19','','10396','Volumes discovery','netapp.volumes.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','1',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/storage/volumes?fields=name','','','200','1','0','','0','0','0','0','0','0','0','3d2001596c2642e7a6ee09d3ac7effb3');
INSERT INTO `items` (`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`,`uuid`) values ('34269','15','','10396','{#VOLUMENAME}: Volume latency, other','netapp.volume.statistics.latency.other[{#VOLUMENAME}]','1m','7d','365d','0','0','','!ms','','',NULL,NULL,'(last(//netapp.volume.statistics.latency_raw.other[{#VOLUMENAME}]) - last(//netapp.volume.statistics.latency_raw.other[{#VOLUMENAME}],#2)) /\r\n( last(//netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}],#2) +\r\n(last(//netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}],#2) = 0) ) * 0.001','','0','','','','','2',NULL,'The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fc21c2c1ff87454ea9fc59af4d0d4693');
INSERT INTO `items` (`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`,`uuid`) values ('34270','15','','10396','{#VOLUMENAME}: Volume latency, read','netapp.volume.statistics.latency.read[{#VOLUMENAME}]','1m','7d','365d','0','0','','!ms','','',NULL,NULL,'(last(//netapp.volume.statistics.latency_raw.read[{#VOLUMENAME}]) - last(//netapp.volume.statistics.latency_raw.read[{#VOLUMENAME}],#2)) /\r\n( last(//netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}],#2) +\r\n(last(//netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}],#2) = 0)) * 0.001','','0','','','','','2',NULL,'The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for read I/O operations.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3e80e6c55bd0497f87d4f4e71f11f0aa');
INSERT INTO `items` (`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`,`uuid`) values ('34271','15','','10396','{#VOLUMENAME}: Volume latency, write','netapp.volume.statistics.latency.write[{#VOLUMENAME}]','1m','7d','365d','0','0','','!ms','','',NULL,NULL,'(last(//netapp.volume.statistics.latency_raw.write[{#VOLUMENAME}]) - last(//netapp.volume.statistics.latency_raw.write[{#VOLUMENAME}],#2)) /\r\n( last(//netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}],#2) +\r\n(last(//netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}],#2) = 0) ) * 0.001','','0','','','','','2',NULL,'The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for write I/O operations.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eb2b3a3c4807415a8a88d11b19ae7fe6');
INSERT INTO `items` (`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`,`uuid`) values ('34272','15','','10396','{#VOLUMENAME}: Volume latency, total','netapp.volume.statistics.latency.total[{#VOLUMENAME}]','1m','7d','365d','0','0','','!ms','','',NULL,NULL,'(last(//netapp.volume.statistics.latency_raw.total[{#VOLUMENAME}]) - last(//netapp.volume.statistics.latency_raw.total[{#VOLUMENAME}],#2)) /\r\n( last(//netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}],#2) +\r\n(last(//netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}],#2) = 0) ) * 0.001','','0','','','','','2',NULL,'The average latency per I/O operation in milliseconds observed at the storage object. Performance metric aggregated over all types of I/O operations.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff804a090b064bfeb60183d7d7d2abe1');
INSERT INTO `items` (`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`,`uuid`) values ('34316','5','','10047','Zabbix server: Utilization of report writer internal processes, in %','zabbix[process,report writer,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time report writer processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9c74858428cb4578b8a9095140b64d52');
INSERT INTO `items` (`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`,`uuid`) values ('34317','5','','10047','Zabbix server: Utilization of report manager internal processes, in %','zabbix[process,report manager,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time report manager processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3db38f5d250741fd833aec23e09bc52e');
INSERT INTO `items` (`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`,`uuid`) values ('34322','11','','10327','MSSQL: Get job status','db.odbc.get[get_job_status,"{$MSSQL.DSN}"]','10m','0','0','0','4','','','','',NULL,NULL,'SELECT sj.name AS JobName\r\n, sj.enabled AS Enabled\r\n, sjs.last_run_outcome AS RunStatus\r\n, sjs.last_outcome_message AS LastRunStatusMessage\r\n, sjs.last_run_duration/10000*3600 + sjs.last_run_duration/100%100*60 + sjs.last_run_duration%100 AS RunDuration\r\n, CASE sjs.last_run_date\r\n WHEN 0 THEN NULL\r\n ELSE msdb.dbo.agent_datetime(sjs.last_run_date,sjs.last_run_time)\r\n END AS LastRunDateTime\r\n, sja.next_scheduled_run_date AS NextRunDateTime\r\nFROM msdb..sysjobs AS sj\r\nLEFT JOIN msdb..sysjobservers AS sjs ON sj.job_id = sjs.job_id\r\nLEFT JOIN ( SELECT job.job_id,\r\n max(act.session_id) AS s_id,\r\n max(act.next_scheduled_run_date) AS next_scheduled_run_date\r\n FROM msdb..sysjobs AS job\r\n LEFT JOIN msdb..sysjobactivity AS act ON act.job_id = job.job_id\r\n GROUP BY job.job_id ) AS sja ON sja.job_id = sj.job_id\r\nWHERE Enabled = 1','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','0',NULL,'The item gets sql agent job status.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cae1f9b034b04357b038212b04cac794');
INSERT INTO `items` (`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`,`uuid`) values ('34323','11','','10327','MSSQL: Get last backup','db.odbc.get[get_last_backup,"{$MSSQL.DSN}"]','10m','0','0','0','4','','','','',NULL,NULL,'SELECT bs.database_name as dbname,[type], DATEDIFF(SECOND, bs.backup_finish_date, getdate()) as timesincelastbackup, (DATEDIFF(SECOND, bs.backup_start_date, bs.backup_finish_date)) as duration\r\nFROM msdb.dbo.backupset as bs WHERE bs.database_name not in (\r\nSELECT\r\nAGDatabases.database_name AS Databasename\r\nFROM sys.dm_hadr_availability_group_states States\r\nINNER JOIN master.sys.availability_groups Groups ON States.group_id = Groups.group_id\r\nINNER JOIN sys.availability_databases_cluster AGDatabases ON Groups.group_id = AGDatabases.group_id\r\nWHERE primary_replica != @@Servername OR primary_replica is NULL\r\n)\r\nGROUP BY bs.database_name, backup_finish_date, [type], backup_start_date\r\nHAVING backup_finish_date = (SELECT MAX(backup_finish_date) from msdb.dbo.backupset WHERE database_name = bs.database_name AND bs.type = [type])\r\nORDER BY bs.database_name','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','0',NULL,'The item gets information about backup processes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9b106ca122fb4b75a761e80f4239f906');
INSERT INTO `items` (`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`,`uuid`) values ('34324','11','','10327','Job discovery','db.odbc.discovery[jobname,"{$MSSQL.DSN}"]','1h','90d','0','0','4','','','','',NULL,NULL,'SELECT name AS jobname FROM msdb..sysjobs WHERE enabled = 1','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','1',NULL,'Scanning jobs in DBMS.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d972c575a944d49badfc2e6a614f686');
INSERT INTO `items` (`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`,`uuid`) values ('34336','19','','10397','PD: Get instance metrics','pd.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get TiDB PD instance metrics.','0','30d','0','',NULL,'3s','{$PD.URL}:{$PD.PORT}/metrics','','','200','1','0','','0','0','0','0','0','0','0','3a1fd879a08a445cbf438f3d68078111');
INSERT INTO `items` (`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`,`uuid`) values ('34337','19','','10397','PD: Get instance status','pd.get_status','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get TiDB PD instance status info.','0','30d','0','',NULL,'3s','{$PD.URL}:{$PD.PORT}/pd/api/v1/status','','','200','1','0','','0','0','0','0','0','0','0','7eb740eed4eb43a0a449e1c1436e582b');
INSERT INTO `items` (`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`,`uuid`) values ('34367','19','','10398','TiDB: Get instance status','tidb.get_status','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get TiDB instance status info.','0','30d','0','',NULL,'3s','{$TIDB.URL}:{$TIDB.PORT}/status','','','200','1','0','','0','0','0','0','0','0','0','e95ebe1050b8404f8274e243203fdecc');
INSERT INTO `items` (`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`,`uuid`) values ('34368','19','','10398','TiDB: Get instance metrics','tidb.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get TiDB instance metrics.','0','30d','0','',NULL,'3s','{$TIDB.URL}:{$TIDB.PORT}/metrics','','','200','1','0','','0','0','0','0','0','0','0','954f5e433a7c44128d7772b87d493270');
INSERT INTO `items` (`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`,`uuid`) values ('34412','19','','10399','TiKV: Get instance metrics','tikv.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get TiKV instance metrics.','0','30d','0','',NULL,'3s','{$TIKV.URL}:{$TIKV.PORT}/metrics','','','200','1','0','','0','0','0','0','0','0','0','418bcc8c0bc440468efe833bef02929d');
INSERT INTO `items` (`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`,`uuid`) values ('34451','20','1.3.6.1.4.1.318.1.1.1.2.3.1.0','10400','Battery capacity','battery.capacity[upsHighPrecBatteryCapacity]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe remaining battery capacity expressed as\r\n percentage of full capacity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','70ebcb1dee674a60a1410895d60e8245');
INSERT INTO `items` (`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`,`uuid`) values ('34452','20','1.3.6.1.4.1.318.1.1.1.4.1.1.0','10400','Output status','output.status[upsBasicOutputStatus]','1m','7d','365d','0','3','','','','',NULL,'277','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current state of the UPS. If the UPS is unable to\r\n determine the state of the UPS this variable is set\r\n to unknown(1).\r\nDuring self-test most UPSes report onBattery(3) but\r\n some that support it will report onBatteryTest(15).\r\n To determine self-test status across all UPSes, refer\r\n to the upsBasicStateOutputState OID.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8a6c9b134ebc4fd19876cf5d50dfc17b');
INSERT INTO `items` (`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`,`uuid`) values ('34453','20','1.3.6.1.2.1.1.3.0','10400','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management\r\nportion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fc207a1df4324fcf99ba1da262527fe3');
INSERT INTO `items` (`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`,`uuid`) values ('34454','20','1.3.6.1.4.1.318.1.1.1.1.2.3.0','10400','Serial number','system.sn[upsAdvIdentSerialNumber]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nAn 8-character string identifying the serial number of\r\n the UPS internal microprocessor. This number is set at\r\n the factory. NOTE: This number does NOT correspond to\r\n the serial number on the rear of the UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ef25b1e818534420920ff6260fa2932e');
INSERT INTO `items` (`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`,`uuid`) values ('34455','20','1.3.6.1.2.1.1.2.0','10400','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management\r\nsubsystem contained in the entity. This value is allocated within the SMI enterprises\r\nsubtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what\r\nkind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was\r\nassigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1\r\nto its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5497f3649b9348dca290c55e94f48597');
INSERT INTO `items` (`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`,`uuid`) values ('34456','20','1.3.6.1.2.1.1.5.0','10400','System name','system.name[sysName.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By\r\nconvention, this is the node\'s fully-qualified domain name. If the name is unknown,\r\nthe value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d6f2c9770c28487d9fa6af2b63917958');
INSERT INTO `items` (`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`,`uuid`) values ('34457','20','1.3.6.1.4.1.318.1.1.1.1.1.1.0','10400','Model','system.model[upsBasicIdentModel]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe UPS model name (e.g. \'APC Smart-UPS 600\').','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','93b6e128e95a4a96bde38ef15d74d510');
INSERT INTO `items` (`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`,`uuid`) values ('34458','20','1.3.6.1.2.1.1.6.0','10400','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet,\r\n3rd 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','b109475e72e74e76846aa478e9937101');
INSERT INTO `items` (`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`,`uuid`) values ('34459','20','1.3.6.1.2.1.1.1.0','10400','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f1df592a2b114677a1beabec33ce01f9');
INSERT INTO `items` (`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`,`uuid`) values ('34460','20','1.3.6.1.2.1.1.4.0','10400','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed\r\nnode, together with information on how to contact this person. If no contact\r\ninformation is known, the value is the zero-length string.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa5e85ef78504fc080b97342baf6cb35');
INSERT INTO `items` (`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`,`uuid`) values ('34461','17','','10400','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','7d20aa252c5143c98de837dbd2f0cd53');
INSERT INTO `items` (`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`,`uuid`) values ('34462','20','1.3.6.1.4.1.318.1.1.1.4.3.1.0','10400','Output voltage','output.voltage[upsHighPrecOutputVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe output voltage of the UPS system in VAC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ec893da7b8540548d60a91ee7e2df83');
INSERT INTO `items` (`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`,`uuid`) values ('34463','20','1.3.6.1.4.1.318.1.1.1.4.3.3.0','10400','Output load','output.load[upsHighPrecOutputLoad]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current UPS load expressed as percentage\r\nof rated capacity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5774ead79e8b4d63a4a31bc091d1c52a');
INSERT INTO `items` (`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`,`uuid`) values ('34464','20','1.3.6.1.4.1.318.1.1.1.2.2.5.0','10400','External battery packs count','battery.external_packs_count[upsAdvBatteryNumOfBattPacks]','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe number of external battery packs connected to the UPS. If\r\n the UPS does not use smart cells then the agent reports\r\n ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2b417eadc988460a89db04efdaca4ffc');
INSERT INTO `items` (`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`,`uuid`) values ('34465','20','1.3.6.1.4.1.318.1.1.1.4.3.4.0','10400','Output current','output.current[upsHighPrecOutputCurrent]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe 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','a6737781029b422ca7a8bbfa0ed80b56');
INSERT INTO `items` (`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`,`uuid`) values ('34466','20','1.3.6.1.4.1.318.1.1.1.3.3.1.0','10400','Input voltage','input.voltage[upsHighPrecInputLineVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current utility line voltage in VAC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','89bb663e356c4420bcbe2a9470ae3195');
INSERT INTO `items` (`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`,`uuid`) values ('34467','20','1.3.6.1.4.1.318.1.1.1.3.3.4.0','10400','Input frequency','input.frequency[upsHighPrecInputFrequency]','1m','7d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current input frequency to the UPS system in Hz.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3a64740655ca455ab0280592b5f0055f');
INSERT INTO `items` (`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`,`uuid`) values ('34468','20','1.3.6.1.4.1.318.1.1.1.3.2.5.0','10400','Input fail cause','input.fail[upsAdvInputLineFailCause]','1m','7d','365d','0','3','','','','',NULL,'275','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe reason for the occurrence of the last transfer to UPS\r\nbattery power. The variable is set to:\r\n- noTransfer(1) -- if there is no transfer yet.\r\n- highLineVoltage(2) -- if the transfer to battery is caused\r\nby an over voltage greater than the high transfer voltage.\r\n- brownout(3) -- if the duration of the outage is greater than\r\nfive seconds and the line voltage is between 40% of the\r\nrated output voltage and the low transfer voltage.\r\n- blackout(4) -- if the duration of the outage is greater than five\r\nseconds and the line voltage is between 40% of the rated\r\noutput voltage and ground.\r\n- smallMomentarySag(5) -- if the duration of the outage is less\r\nthan five seconds and the line voltage is between 40% of the\r\nrated output voltage and the low transfer voltage.\r\n- deepMomentarySag(6) -- if the duration of the outage is less\r\nthan five seconds and the line voltage is between 40% of the\r\nrated output voltage and ground. The variable is set to\r\n- smallMomentarySpike(7) -- if the line failure is caused by a\r\nrate of change of input voltage less than ten volts per cycle.\r\n- largeMomentarySpike(8) -- if the line failure is caused by\r\na rate of change of input voltage greater than ten volts per cycle.\r\n- selfTest(9) -- if the UPS was commanded to do a self test.\r\n- rateOfVoltageChange(10) -- if the failure is due to the rate of change of\r\nthe line voltage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9069a1c0d9304e7fa5f2df133dbb46cd');
INSERT INTO `items` (`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`,`uuid`) values ('34469','20','1.3.6.1.4.1.318.1.1.1.2.3.4.0','10400','Battery voltage','battery.voltage[upsHighPrecBatteryActualVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe actual battery bus voltage in Volts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','756f727fe8374aeba9d1afd7bbe77f02');
INSERT INTO `items` (`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`,`uuid`) values ('34470','20','1.3.6.1.4.1.318.1.1.1.2.3.2.0','10400','Battery temperature','battery.temperature[upsHighPrecBatteryTemperature]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current internal UPS temperature in Celsius.\r\n Temperatures below zero read as 0.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7a0a2b5e702f473fa1144eaf499367b2');
INSERT INTO `items` (`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`,`uuid`) values ('34471','20','1.3.6.1.4.1.318.1.1.1.2.1.1.0','10400','Battery status','battery.status[upsBasicBatteryStatus]','1m','7d','365d','0','3','','','','',NULL,'276','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe status of the UPS batteries. A batteryLow(3) value\r\n indicates the UPS will be unable to sustain the current\r\n load, and its services will be lost if power is not restored.\r\n The amount of run time in reserve at the time of low battery\r\n can be configured by the upsAdvConfigLowBatteryRunTime.\r\n A batteryInFaultCondition(4)value indicates that a battery\r\n installed has an internal error condition.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','22a95e447ad74d43a191f368346fde59');
INSERT INTO `items` (`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`,`uuid`) values ('34472','20','1.3.6.1.4.1.318.1.1.1.2.2.3.0','10400','Battery runtime remaining','battery.runtime_remaining[upsAdvBatteryRunTimeRemaining]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe UPS battery run time remaining before battery\r\n exhaustion.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','89cca909c60745fe824d02aa0d4bc3d7');
INSERT INTO `items` (`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`,`uuid`) values ('34473','20','1.3.6.1.4.1.318.1.1.1.2.2.4.0','10400','Battery replace indicator','battery.replace_indicator[upsAdvBatteryReplaceIndicator]','1m','7d','365d','0','3','','','','',NULL,'274','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nIndicates whether the UPS batteries need replacement.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b7614652ff6f4e0890f366b8e0831b80');
INSERT INTO `items` (`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`,`uuid`) values ('34474','20','1.3.6.1.4.1.318.1.1.1.2.1.3.0','10400','Battery last replace date','battery.last_replace_date[upsBasicBatteryLastReplaceDate]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe date when the UPS system\'s batteries were last replaced\r\n in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value\r\n is originally set at the factory. When the UPS batteries\r\n are replaced, this value should be reset by the administrator.\r\n 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','98af792142464656b925a452e5ebf1cc');
INSERT INTO `items` (`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`,`uuid`) values ('34475','5','','10400','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'278','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','efad5c028c0d4c11b57a19dc04830ea7');
INSERT INTO `items` (`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`,`uuid`) values ('34476','20','discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6]','10400','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','54a867c14c814e4ab4803c5a59082e44');
INSERT INTO `items` (`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`,`uuid`) values ('34477','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]','10400','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','0c8fc55bbe984d919c3b87a096d900d5');
INSERT INTO `items` (`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`,`uuid`) values ('34478','20','discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3]','10400','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','ffb60da941114174932b219e14892be9');
INSERT INTO `items` (`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`,`uuid`) values ('34479','20','discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3]','10400','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','463ed9f01f3a4cf6ba91f2707baded15');
INSERT INTO `items` (`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`,`uuid`) values ('34480','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1]','10400','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','f16f2ab100614ae6bccf66e5a840c7db');
INSERT INTO `items` (`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`,`uuid`) values ('34481','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1]','10400','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','518ca26562f04d7b8e5af9d26317d138');
INSERT INTO `items` (`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`,`uuid`) values ('34482','20','1.3.6.1.4.1.318.1.1.1.2.2.6.0','10400','{#SNMPINDEX}: External battery packs bad','battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}]','15m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe number of external battery packs connected to the UPS that\r\nare defective. If the UPS does not use smart cells then the\r\nagent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2a60e35fabb44c78bd827e22293166d9');
INSERT INTO `items` (`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`,`uuid`) values ('34483','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX}','10400','{#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\r\nThe battery cartridge estimated battery replace date.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a7023eed55484d1d9f0754ccb1ec9f87');
INSERT INTO `items` (`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`,`uuid`) values ('34484','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX}','10400','{#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\r\nThe battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n 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','41cd82bb312344b7bdb9c7c5aac2eb21');
INSERT INTO `items` (`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`,`uuid`) values ('34485','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX}','10400','{#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\r\nThe battery cartridge status.\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','241efd4ef6204c58adc04e4e04660845');
INSERT INTO `items` (`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`,`uuid`) values ('34486','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX}','10400','{#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\r\nThe battery pack temperature in Celsius.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a55dd3033a2645aab5592f356043c342');
INSERT INTO `items` (`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`,`uuid`) values ('34487','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX}','10400','{#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\r\nThe battery pack serial number.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ea7d066a5ae4141b4cd0af13d96c40c');
INSERT INTO `items` (`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`,`uuid`) values ('34488','20','1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1','10400','{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current humidity reading - a relative humidity\r\n percentage. -1 indicates an invalid reading due to either a\r\n sensor that doesn\'t read humidity or lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f2bcca2221e94e828755a90f98c98495');
INSERT INTO `items` (`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`,`uuid`) values ('34489','20','1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1','10400','{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'273','','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe alarm status of the sensor. Possible values:\r\nuioNormal (1),\r\nuioWarning (2),\r\nuioCritical (3),\r\nsensorStatusNotApplicable (4)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1a41c120082948bdb6865413bdc09917');
INSERT INTO `items` (`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`,`uuid`) values ('34490','20','1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1','10400','{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current temperature reading in Celsius.\r\n -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a191d2ff066e4f4ba04aede67cd6876d');
INSERT INTO `items` (`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`,`uuid`) values ('34491','20','1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1','10400','{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current humidity reading - a relative humidity\r\n percentage. -1 indicates an invalid reading due to either a\r\n sensor that doesn\'t read humidity or lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e2200965a13541b1a100e4880d8363ff');
INSERT INTO `items` (`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`,`uuid`) values ('34492','20','1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1','10400','{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'273','','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe alarm status of the sensor. Possible values:\r\nuioNormal (1),\r\nuioWarning (2),\r\nuioCritical (3),\r\nsensorStatusNotApplicable (4)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','492835d959d644d7b95fc480cba5d3dc');
INSERT INTO `items` (`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`,`uuid`) values ('34493','20','1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1','10400','{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current temperature reading in Celsius.\r\n -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2cf2d697c95845ba8ec61af2ec698f4c');
INSERT INTO `items` (`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`,`uuid`) values ('34494','20','1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX}','10400','{#PHASEINDEX}: Phase input current','phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe input current in 0.1 amperes, or -0.1 if it\'s\r\n unsupported by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7c0490500bed4258a8663777cd62e378');
INSERT INTO `items` (`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`,`uuid`) values ('34495','20','1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX}','10400','{#PHASEINDEX}: Phase input voltage','phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe input voltage in VAC, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7356945fc0e94026a2ca04d297fdf953');
INSERT INTO `items` (`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`,`uuid`) values ('34496','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX}','10400','{#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\r\nThe output current in 0.1 amperes drawn\r\n by the load on the UPS, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c3888f41e7f246b1a30d21325f814695');
INSERT INTO `items` (`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`,`uuid`) values ('34497','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX}','10400','{#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\r\nThe percentage of the UPS load capacity in VA at\r\n redundancy @ (n + x) presently being used on this\r\n 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','3eb001cece8340d59cd0e7f59812f149');
INSERT INTO `items` (`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`,`uuid`) values ('34498','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}','10400','{#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\r\nThe output voltage in VAC, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f09e23dcb5b24170b356556a36bb39cc');
INSERT INTO `items` (`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`,`uuid`) values ('34499','20','1.3.6.1.4.1.318.1.1.1.2.3.1.0','10401','Battery capacity','battery.capacity[upsHighPrecBatteryCapacity]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe remaining battery capacity expressed as\r\n percentage of full capacity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6933bd19628f4699974d5dc4b1637c53');
INSERT INTO `items` (`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`,`uuid`) values ('34500','20','1.3.6.1.4.1.318.1.1.1.4.1.1.0','10401','Output status','output.status[upsBasicOutputStatus]','1m','7d','365d','0','3','','','','',NULL,'283','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current state of the UPS. If the UPS is unable to\r\n determine the state of the UPS this variable is set\r\n to unknown(1).\r\nDuring self-test most UPSes report onBattery(3) but\r\n some that support it will report onBatteryTest(15).\r\n To determine self-test status across all UPSes, refer\r\n to the upsBasicStateOutputState OID.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','54d22d1cc362492ebe8695257afc20ec');
INSERT INTO `items` (`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`,`uuid`) values ('34501','20','1.3.6.1.2.1.1.3.0','10401','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management\r\nportion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f077c3558d24471ca807ea24b3f0c5ea');
INSERT INTO `items` (`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`,`uuid`) values ('34502','20','1.3.6.1.4.1.318.1.1.1.1.2.3.0','10401','Serial number','system.sn[upsAdvIdentSerialNumber]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nAn 8-character string identifying the serial number of\r\n the UPS internal microprocessor. This number is set at\r\n the factory. NOTE: This number does NOT correspond to\r\n the serial number on the rear of the UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4e87619ed81346d497c3c3f548c342b5');
INSERT INTO `items` (`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`,`uuid`) values ('34503','20','1.3.6.1.2.1.1.2.0','10401','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management\r\nsubsystem contained in the entity. This value is allocated within the SMI enterprises\r\nsubtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what\r\nkind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was\r\nassigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1\r\nto its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a393860311b4b64ae5a4ce7cd7000dc');
INSERT INTO `items` (`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`,`uuid`) values ('34504','20','1.3.6.1.2.1.1.5.0','10401','System name','system.name[sysName.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By\r\nconvention, this is the node\'s fully-qualified domain name. If the name is unknown,\r\nthe value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d9452c921e4946719726b292d8c0cbd6');
INSERT INTO `items` (`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`,`uuid`) values ('34505','20','1.3.6.1.4.1.318.1.1.1.1.1.1.0','10401','Model','system.model[upsBasicIdentModel]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe UPS model name (e.g. \'APC Smart-UPS 600\').','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1ba45d867e3d4bb99eeb8c0c320ef127');
INSERT INTO `items` (`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`,`uuid`) values ('34506','20','1.3.6.1.2.1.1.6.0','10401','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet,\r\n3rd 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','ac995904f95240d9b1f44c27adea5731');
INSERT INTO `items` (`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`,`uuid`) values ('34507','20','1.3.6.1.2.1.1.1.0','10401','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e5d72eba4dfb41f8ae73904c936dd64b');
INSERT INTO `items` (`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`,`uuid`) values ('34508','20','1.3.6.1.2.1.1.4.0','10401','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed\r\nnode, together with information on how to contact this person. If no contact\r\ninformation is known, the value is the zero-length string.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','943b146891ac461c92d286704a0864b2');
INSERT INTO `items` (`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`,`uuid`) values ('34509','17','','10401','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','94d838cc8cf2438296477c0139a3c152');
INSERT INTO `items` (`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`,`uuid`) values ('34510','20','1.3.6.1.4.1.318.1.1.1.4.3.1.0','10401','Output voltage','output.voltage[upsHighPrecOutputVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe output voltage of the UPS system in VAC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4e43a6966bf642e19567dcd3763125e7');
INSERT INTO `items` (`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`,`uuid`) values ('34511','20','1.3.6.1.4.1.318.1.1.1.4.3.3.0','10401','Output load','output.load[upsHighPrecOutputLoad]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current UPS load expressed as percentage\r\nof rated capacity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','df799c65dbe5437aa941de3e6d386b26');
INSERT INTO `items` (`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`,`uuid`) values ('34512','20','1.3.6.1.4.1.318.1.1.1.2.2.5.0','10401','External battery packs count','battery.external_packs_count[upsAdvBatteryNumOfBattPacks]','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe number of external battery packs connected to the UPS. If\r\n the UPS does not use smart cells then the agent reports\r\n ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ba1d824fdc548b4bca770f4145f7169');
INSERT INTO `items` (`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`,`uuid`) values ('34513','20','1.3.6.1.4.1.318.1.1.1.4.3.4.0','10401','Output current','output.current[upsHighPrecOutputCurrent]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe 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','744d345cd3964baf85f8fefed19f9001');
INSERT INTO `items` (`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`,`uuid`) values ('34514','20','1.3.6.1.4.1.318.1.1.1.3.3.1.0','10401','Input voltage','input.voltage[upsHighPrecInputLineVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current utility line voltage in VAC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','91a6bc765a954f9e97b855d9dfebd3f7');
INSERT INTO `items` (`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`,`uuid`) values ('34515','20','1.3.6.1.4.1.318.1.1.1.3.3.4.0','10401','Input frequency','input.frequency[upsHighPrecInputFrequency]','1m','7d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current input frequency to the UPS system in Hz.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cfd390d57dbc4046a3a6af384420b697');
INSERT INTO `items` (`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`,`uuid`) values ('34516','20','1.3.6.1.4.1.318.1.1.1.3.2.5.0','10401','Input fail cause','input.fail[upsAdvInputLineFailCause]','1m','7d','365d','0','3','','','','',NULL,'281','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe reason for the occurrence of the last transfer to UPS\r\nbattery power. The variable is set to:\r\n- noTransfer(1) -- if there is no transfer yet.\r\n- highLineVoltage(2) -- if the transfer to battery is caused\r\nby an over voltage greater than the high transfer voltage.\r\n- brownout(3) -- if the duration of the outage is greater than\r\nfive seconds and the line voltage is between 40% of the\r\nrated output voltage and the low transfer voltage.\r\n- blackout(4) -- if the duration of the outage is greater than five\r\nseconds and the line voltage is between 40% of the rated\r\noutput voltage and ground.\r\n- smallMomentarySag(5) -- if the duration of the outage is less\r\nthan five seconds and the line voltage is between 40% of the\r\nrated output voltage and the low transfer voltage.\r\n- deepMomentarySag(6) -- if the duration of the outage is less\r\nthan five seconds and the line voltage is between 40% of the\r\nrated output voltage and ground. The variable is set to\r\n- smallMomentarySpike(7) -- if the line failure is caused by a\r\nrate of change of input voltage less than ten volts per cycle.\r\n- largeMomentarySpike(8) -- if the line failure is caused by\r\na rate of change of input voltage greater than ten volts per cycle.\r\n- selfTest(9) -- if the UPS was commanded to do a self test.\r\n- rateOfVoltageChange(10) -- if the failure is due to the rate of change of\r\nthe line voltage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b83275fc1176451dacaa28606edf045a');
INSERT INTO `items` (`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`,`uuid`) values ('34517','20','1.3.6.1.4.1.318.1.1.1.2.3.4.0','10401','Battery voltage','battery.voltage[upsHighPrecBatteryActualVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe actual battery bus voltage in Volts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','805d95a6f256410ca083f31cc480b88b');
INSERT INTO `items` (`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`,`uuid`) values ('34518','20','1.3.6.1.4.1.318.1.1.1.2.3.2.0','10401','Battery temperature','battery.temperature[upsHighPrecBatteryTemperature]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current internal UPS temperature in Celsius.\r\n Temperatures below zero read as 0.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bda8df2bbd2a40dc937b2cd5b8017a68');
INSERT INTO `items` (`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`,`uuid`) values ('34519','20','1.3.6.1.4.1.318.1.1.1.2.1.1.0','10401','Battery status','battery.status[upsBasicBatteryStatus]','1m','7d','365d','0','3','','','','',NULL,'282','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe status of the UPS batteries. A batteryLow(3) value\r\n indicates the UPS will be unable to sustain the current\r\n load, and its services will be lost if power is not restored.\r\n The amount of run time in reserve at the time of low battery\r\n can be configured by the upsAdvConfigLowBatteryRunTime.\r\n A batteryInFaultCondition(4)value indicates that a battery\r\n installed has an internal error condition.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','078719d0396247bca76d85e1e4c650de');
INSERT INTO `items` (`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`,`uuid`) values ('34520','20','1.3.6.1.4.1.318.1.1.1.2.2.3.0','10401','Battery runtime remaining','battery.runtime_remaining[upsAdvBatteryRunTimeRemaining]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe UPS battery run time remaining before battery\r\n exhaustion.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','05be71fcb7c1484f876229f48649039e');
INSERT INTO `items` (`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`,`uuid`) values ('34521','20','1.3.6.1.4.1.318.1.1.1.2.2.4.0','10401','Battery replace indicator','battery.replace_indicator[upsAdvBatteryReplaceIndicator]','1m','7d','365d','0','3','','','','',NULL,'280','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nIndicates whether the UPS batteries need replacement.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4c1107eb93114d9096518dc134e08bdc');
INSERT INTO `items` (`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`,`uuid`) values ('34522','20','1.3.6.1.4.1.318.1.1.1.2.1.3.0','10401','Battery last replace date','battery.last_replace_date[upsBasicBatteryLastReplaceDate]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe date when the UPS system\'s batteries were last replaced\r\n in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value\r\n is originally set at the factory. When the UPS batteries\r\n are replaced, this value should be reset by the administrator.\r\n 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','147e0b7b466e402ba59d73d66801ef1a');
INSERT INTO `items` (`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`,`uuid`) values ('34523','5','','10401','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'284','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d679688992124f6c91c3f70bcc341d2d');
INSERT INTO `items` (`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`,`uuid`) values ('34524','20','discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6]','10401','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','72077c26a51b43a6afea271e70d13004');
INSERT INTO `items` (`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`,`uuid`) values ('34525','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]','10401','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','38aa32616e964db088f4faff12867f1a');
INSERT INTO `items` (`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`,`uuid`) values ('34526','20','discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3]','10401','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','e428310ecc5f4a53ab7932bcf1247a30');
INSERT INTO `items` (`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`,`uuid`) values ('34527','20','discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3]','10401','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','291c45432792490fb3dbccab1a0b9183');
INSERT INTO `items` (`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`,`uuid`) values ('34528','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1]','10401','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','f39e3c1e6b774ada90ca722cb6ca59b4');
INSERT INTO `items` (`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`,`uuid`) values ('34529','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1]','10401','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','f56bcd41c5ee4e16b2558563718bf2a6');
INSERT INTO `items` (`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`,`uuid`) values ('34530','20','1.3.6.1.4.1.318.1.1.1.2.2.6.0','10401','{#SNMPINDEX}: External battery packs bad','battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}]','15m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe number of external battery packs connected to the UPS that\r\nare defective. If the UPS does not use smart cells then the\r\nagent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','76ae1be14ab6402e9495bf0dea6243f2');
INSERT INTO `items` (`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`,`uuid`) values ('34531','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX}','10401','{#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\r\nThe battery cartridge estimated battery replace date.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','153ab66e45ae4bc3bbf33324c111ea5e');
INSERT INTO `items` (`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`,`uuid`) values ('34532','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX}','10401','{#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\r\nThe battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n 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','2e3adbdd7c9a4f3f9f151d19e69885bf');
INSERT INTO `items` (`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`,`uuid`) values ('34533','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX}','10401','{#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\r\nThe battery cartridge status.\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','90e566dbc3184ef8b2ff171630a37c8a');
INSERT INTO `items` (`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`,`uuid`) values ('34534','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX}','10401','{#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\r\nThe battery pack temperature in Celsius.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9277c9b4e065400eb31f2ad965bfa2a5');
INSERT INTO `items` (`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`,`uuid`) values ('34535','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX}','10401','{#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\r\nThe battery pack serial number.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','70a45fc5ad1945a89133a4729340bdee');
INSERT INTO `items` (`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`,`uuid`) values ('34536','20','1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1','10401','{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current humidity reading - a relative humidity\r\n percentage. -1 indicates an invalid reading due to either a\r\n sensor that doesn\'t read humidity or lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5bc38e9b268047e09d77fc144395b2df');
INSERT INTO `items` (`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`,`uuid`) values ('34537','20','1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1','10401','{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'279','','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe alarm status of the sensor. Possible values:\r\nuioNormal (1),\r\nuioWarning (2),\r\nuioCritical (3),\r\nsensorStatusNotApplicable (4)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c4bd5c3b0af145448aa2b084738f5149');
INSERT INTO `items` (`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`,`uuid`) values ('34538','20','1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1','10401','{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current temperature reading in Celsius.\r\n -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','87494b17faf349248ed6cffc4c932a0f');
INSERT INTO `items` (`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`,`uuid`) values ('34539','20','1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1','10401','{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current humidity reading - a relative humidity\r\n percentage. -1 indicates an invalid reading due to either a\r\n sensor that doesn\'t read humidity or lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e2cbe8a1fdfe4d368987a8417dc5637b');
INSERT INTO `items` (`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`,`uuid`) values ('34540','20','1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1','10401','{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'279','','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe alarm status of the sensor. Possible values:\r\nuioNormal (1),\r\nuioWarning (2),\r\nuioCritical (3),\r\nsensorStatusNotApplicable (4)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fc4623c5e962448dbffc98301ddcef4b');
INSERT INTO `items` (`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`,`uuid`) values ('34541','20','1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1','10401','{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current temperature reading in Celsius.\r\n -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b4e350ad5bb24d7b96091f8b9766cff7');
INSERT INTO `items` (`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`,`uuid`) values ('34542','20','1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX}','10401','{#PHASEINDEX}: Phase input current','phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe input current in 0.1 amperes, or -0.1 if it\'s\r\n unsupported by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2be0a7af3cd34723aa5560cd0f86cb44');
INSERT INTO `items` (`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`,`uuid`) values ('34543','20','1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX}','10401','{#PHASEINDEX}: Phase input voltage','phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe input voltage in VAC, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dac612b382ce4b93b588e2ba43c01c68');
INSERT INTO `items` (`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`,`uuid`) values ('34544','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX}','10401','{#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\r\nThe output current in 0.1 amperes drawn\r\n by the load on the UPS, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','193b0c6624a44545b28009ab31463125');
INSERT INTO `items` (`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`,`uuid`) values ('34545','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX}','10401','{#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\r\nThe percentage of the UPS load capacity in VA at\r\n redundancy @ (n + x) presently being used on this\r\n 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','3af338de874c439daeba535156033317');
INSERT INTO `items` (`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`,`uuid`) values ('34546','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}','10401','{#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\r\nThe output voltage in VAC, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a7aecf3b0c2e448b9c09babc79c52380');
INSERT INTO `items` (`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`,`uuid`) values ('34547','20','1.3.6.1.4.1.318.1.1.1.2.3.1.0','10402','Battery capacity','battery.capacity[upsHighPrecBatteryCapacity]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe remaining battery capacity expressed as\r\n percentage of full capacity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6e8ed2c349d744a1a07928b32cf574c3');
INSERT INTO `items` (`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`,`uuid`) values ('34548','20','1.3.6.1.4.1.318.1.1.1.4.1.1.0','10402','Output status','output.status[upsBasicOutputStatus]','1m','7d','365d','0','3','','','','',NULL,'289','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current state of the UPS. If the UPS is unable to\r\n determine the state of the UPS this variable is set\r\n to unknown(1).\r\nDuring self-test most UPSes report onBattery(3) but\r\n some that support it will report onBatteryTest(15).\r\n To determine self-test status across all UPSes, refer\r\n to the upsBasicStateOutputState OID.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','107461ac37984a708acf7f55ae248d67');
INSERT INTO `items` (`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`,`uuid`) values ('34549','20','1.3.6.1.2.1.1.3.0','10402','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management\r\nportion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','39dd6b9b815a4a838a43d2ebf3fcc8f9');
INSERT INTO `items` (`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`,`uuid`) values ('34550','20','1.3.6.1.4.1.318.1.1.1.1.2.3.0','10402','Serial number','system.sn[upsAdvIdentSerialNumber]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nAn 8-character string identifying the serial number of\r\n the UPS internal microprocessor. This number is set at\r\n the factory. NOTE: This number does NOT correspond to\r\n the serial number on the rear of the UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0c36d0bb59a44db2b80ae4a4ff2d7c1b');
INSERT INTO `items` (`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`,`uuid`) values ('34551','20','1.3.6.1.2.1.1.2.0','10402','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management\r\nsubsystem contained in the entity. This value is allocated within the SMI enterprises\r\nsubtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what\r\nkind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was\r\nassigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1\r\nto its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f6922cd0f93a4a4288a978ff8336226b');
INSERT INTO `items` (`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`,`uuid`) values ('34552','20','1.3.6.1.2.1.1.5.0','10402','System name','system.name[sysName.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By\r\nconvention, this is the node\'s fully-qualified domain name. If the name is unknown,\r\nthe value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1f591627fea54a9ebdd8f10cbf39b9ed');
INSERT INTO `items` (`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`,`uuid`) values ('34553','20','1.3.6.1.4.1.318.1.1.1.1.1.1.0','10402','Model','system.model[upsBasicIdentModel]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe UPS model name (e.g. \'APC Smart-UPS 600\').','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','272883d0a1cd4bb585a6ede50336c873');
INSERT INTO `items` (`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`,`uuid`) values ('34554','20','1.3.6.1.2.1.1.6.0','10402','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet,\r\n3rd 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','a5c6c4c44132439abd0e5fd88e3c90cf');
INSERT INTO `items` (`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`,`uuid`) values ('34555','20','1.3.6.1.2.1.1.1.0','10402','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a312df9175ca45528375398f56fa3b3b');
INSERT INTO `items` (`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`,`uuid`) values ('34556','20','1.3.6.1.2.1.1.4.0','10402','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed\r\nnode, together with information on how to contact this person. If no contact\r\ninformation is known, the value is the zero-length string.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fbcbe2cffc8c4bb6b11276cdd03376c3');
INSERT INTO `items` (`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`,`uuid`) values ('34557','17','','10402','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','92c2ef138bf148199cdb6d9684b6fa23');
INSERT INTO `items` (`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`,`uuid`) values ('34558','20','1.3.6.1.4.1.318.1.1.1.4.3.1.0','10402','Output voltage','output.voltage[upsHighPrecOutputVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe output voltage of the UPS system in VAC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ebf71f0afed5460ba4c7f66bb162de9f');
INSERT INTO `items` (`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`,`uuid`) values ('34559','20','1.3.6.1.4.1.318.1.1.1.4.3.3.0','10402','Output load','output.load[upsHighPrecOutputLoad]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current UPS load expressed as percentage\r\nof rated capacity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a2613c8d71864594a0c94064d99e059e');
INSERT INTO `items` (`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`,`uuid`) values ('34560','20','1.3.6.1.4.1.318.1.1.1.2.2.5.0','10402','External battery packs count','battery.external_packs_count[upsAdvBatteryNumOfBattPacks]','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe number of external battery packs connected to the UPS. If\r\n the UPS does not use smart cells then the agent reports\r\n ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','86780568c0594469bc7324c68440cbec');
INSERT INTO `items` (`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`,`uuid`) values ('34561','20','1.3.6.1.4.1.318.1.1.1.4.3.4.0','10402','Output current','output.current[upsHighPrecOutputCurrent]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe 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','a8d017e0fa5d4eca838ad068f0dffcd9');
INSERT INTO `items` (`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`,`uuid`) values ('34562','20','1.3.6.1.4.1.318.1.1.1.3.3.1.0','10402','Input voltage','input.voltage[upsHighPrecInputLineVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current utility line voltage in VAC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e90dbc034cc447afb4ac1c8ced484882');
INSERT INTO `items` (`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`,`uuid`) values ('34563','20','1.3.6.1.4.1.318.1.1.1.3.3.4.0','10402','Input frequency','input.frequency[upsHighPrecInputFrequency]','1m','7d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current input frequency to the UPS system in Hz.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab28b72c192e48b5819079bd386ba8ea');
INSERT INTO `items` (`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`,`uuid`) values ('34564','20','1.3.6.1.4.1.318.1.1.1.3.2.5.0','10402','Input fail cause','input.fail[upsAdvInputLineFailCause]','1m','7d','365d','0','3','','','','',NULL,'287','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe reason for the occurrence of the last transfer to UPS\r\nbattery power. The variable is set to:\r\n- noTransfer(1) -- if there is no transfer yet.\r\n- highLineVoltage(2) -- if the transfer to battery is caused\r\nby an over voltage greater than the high transfer voltage.\r\n- brownout(3) -- if the duration of the outage is greater than\r\nfive seconds and the line voltage is between 40% of the\r\nrated output voltage and the low transfer voltage.\r\n- blackout(4) -- if the duration of the outage is greater than five\r\nseconds and the line voltage is between 40% of the rated\r\noutput voltage and ground.\r\n- smallMomentarySag(5) -- if the duration of the outage is less\r\nthan five seconds and the line voltage is between 40% of the\r\nrated output voltage and the low transfer voltage.\r\n- deepMomentarySag(6) -- if the duration of the outage is less\r\nthan five seconds and the line voltage is between 40% of the\r\nrated output voltage and ground. The variable is set to\r\n- smallMomentarySpike(7) -- if the line failure is caused by a\r\nrate of change of input voltage less than ten volts per cycle.\r\n- largeMomentarySpike(8) -- if the line failure is caused by\r\na rate of change of input voltage greater than ten volts per cycle.\r\n- selfTest(9) -- if the UPS was commanded to do a self test.\r\n- rateOfVoltageChange(10) -- if the failure is due to the rate of change of\r\nthe line voltage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7b7d6fdeea2e49c9bb74eb301ecca93a');
INSERT INTO `items` (`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`,`uuid`) values ('34565','20','1.3.6.1.4.1.318.1.1.1.2.3.4.0','10402','Battery voltage','battery.voltage[upsHighPrecBatteryActualVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe actual battery bus voltage in Volts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e478bdaa89674f6792e39ff1a2d9a413');
INSERT INTO `items` (`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`,`uuid`) values ('34566','20','1.3.6.1.4.1.318.1.1.1.2.3.2.0','10402','Battery temperature','battery.temperature[upsHighPrecBatteryTemperature]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current internal UPS temperature in Celsius.\r\n Temperatures below zero read as 0.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bded43c8a4eb4d1b9cf5403d3f3027cd');
INSERT INTO `items` (`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`,`uuid`) values ('34567','20','1.3.6.1.4.1.318.1.1.1.2.1.1.0','10402','Battery status','battery.status[upsBasicBatteryStatus]','1m','7d','365d','0','3','','','','',NULL,'288','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe status of the UPS batteries. A batteryLow(3) value\r\n indicates the UPS will be unable to sustain the current\r\n load, and its services will be lost if power is not restored.\r\n The amount of run time in reserve at the time of low battery\r\n can be configured by the upsAdvConfigLowBatteryRunTime.\r\n A batteryInFaultCondition(4)value indicates that a battery\r\n installed has an internal error condition.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9fa77fdcbd7343ca904c6282efcb7c72');
INSERT INTO `items` (`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`,`uuid`) values ('34568','20','1.3.6.1.4.1.318.1.1.1.2.2.3.0','10402','Battery runtime remaining','battery.runtime_remaining[upsAdvBatteryRunTimeRemaining]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe UPS battery run time remaining before battery\r\n exhaustion.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d15c36fb66754791b1014f52171efe1c');
INSERT INTO `items` (`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`,`uuid`) values ('34569','20','1.3.6.1.4.1.318.1.1.1.2.2.4.0','10402','Battery replace indicator','battery.replace_indicator[upsAdvBatteryReplaceIndicator]','1m','7d','365d','0','3','','','','',NULL,'286','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nIndicates whether the UPS batteries need replacement.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b50a17ab043c404990dd088ac9f74078');
INSERT INTO `items` (`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`,`uuid`) values ('34570','20','1.3.6.1.4.1.318.1.1.1.2.1.3.0','10402','Battery last replace date','battery.last_replace_date[upsBasicBatteryLastReplaceDate]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe date when the UPS system\'s batteries were last replaced\r\n in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value\r\n is originally set at the factory. When the UPS batteries\r\n are replaced, this value should be reset by the administrator.\r\n 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','1928e58e65a34b188916086bad5b8725');
INSERT INTO `items` (`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`,`uuid`) values ('34571','5','','10402','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'290','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','edb39f7236d74c6783e0d4b832e0b94b');
INSERT INTO `items` (`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`,`uuid`) values ('34572','20','discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6]','10402','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','2edf8773186845499a991288d1a7a55b');
INSERT INTO `items` (`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`,`uuid`) values ('34573','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]','10402','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','a0d8d681bfb54c1d9792beaf3f708d69');
INSERT INTO `items` (`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`,`uuid`) values ('34574','20','discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3]','10402','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','88f5bc98004740fe886f5b1144de2c35');
INSERT INTO `items` (`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`,`uuid`) values ('34575','20','discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3]','10402','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','c64b5cb02dec4873a2e041359da3cdf7');
INSERT INTO `items` (`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`,`uuid`) values ('34576','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1]','10402','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','ecca1791b7744f30bfcc1018a10cf1fa');
INSERT INTO `items` (`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`,`uuid`) values ('34577','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1]','10402','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','c1771434bf6b476280c2f2d15bb52608');
INSERT INTO `items` (`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`,`uuid`) values ('34578','20','1.3.6.1.4.1.318.1.1.1.2.2.6.0','10402','{#SNMPINDEX}: External battery packs bad','battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}]','15m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe number of external battery packs connected to the UPS that\r\nare defective. If the UPS does not use smart cells then the\r\nagent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7ff04c0f873c4c0f9af5aca2bd447cce');
INSERT INTO `items` (`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`,`uuid`) values ('34579','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX}','10402','{#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\r\nThe battery cartridge estimated battery replace date.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','35e7da4783e245a2bfff75f3ae79ff5e');
INSERT INTO `items` (`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`,`uuid`) values ('34580','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX}','10402','{#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\r\nThe battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n 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','b86ac9ee81fe40c8995618c387775270');
INSERT INTO `items` (`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`,`uuid`) values ('34581','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX}','10402','{#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\r\nThe battery cartridge status.\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','db78c715c220433cb338199d43cb84a0');
INSERT INTO `items` (`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`,`uuid`) values ('34582','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX}','10402','{#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\r\nThe battery pack temperature in Celsius.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bab950aa54ca425db4593049a64cf56f');
INSERT INTO `items` (`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`,`uuid`) values ('34583','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX}','10402','{#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\r\nThe battery pack serial number.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d2983b402dfd4435a4790d560da8f6f6');
INSERT INTO `items` (`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`,`uuid`) values ('34584','20','1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1','10402','{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current humidity reading - a relative humidity\r\n percentage. -1 indicates an invalid reading due to either a\r\n sensor that doesn\'t read humidity or lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','34e5f00097f4448eadf16071cfa234e9');
INSERT INTO `items` (`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`,`uuid`) values ('34585','20','1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1','10402','{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'285','','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe alarm status of the sensor. Possible values:\r\nuioNormal (1),\r\nuioWarning (2),\r\nuioCritical (3),\r\nsensorStatusNotApplicable (4)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','04425d6cc153491d9cb710b875f8c9cb');
INSERT INTO `items` (`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`,`uuid`) values ('34586','20','1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1','10402','{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current temperature reading in Celsius.\r\n -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','29cedff7a5f043caaaa8ff5798b3e925');
INSERT INTO `items` (`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`,`uuid`) values ('34587','20','1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1','10402','{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current humidity reading - a relative humidity\r\n percentage. -1 indicates an invalid reading due to either a\r\n sensor that doesn\'t read humidity or lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','445fa35253b942cf8009460ea67701fd');
INSERT INTO `items` (`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`,`uuid`) values ('34588','20','1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1','10402','{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'285','','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe alarm status of the sensor. Possible values:\r\nuioNormal (1),\r\nuioWarning (2),\r\nuioCritical (3),\r\nsensorStatusNotApplicable (4)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','58a2e39cd7fc4fe1bd825ce6086b4931');
INSERT INTO `items` (`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`,`uuid`) values ('34589','20','1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1','10402','{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current temperature reading in Celsius.\r\n -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c78cd23b59254174b333514d9c8d28e1');
INSERT INTO `items` (`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`,`uuid`) values ('34590','20','1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX}','10402','{#PHASEINDEX}: Phase input current','phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe input current in 0.1 amperes, or -0.1 if it\'s\r\n unsupported by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a8ed43fa8a4543f8ab116c8886511aa3');
INSERT INTO `items` (`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`,`uuid`) values ('34591','20','1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX}','10402','{#PHASEINDEX}: Phase input voltage','phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe input voltage in VAC, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','593b355efb0a4e40bd3527c24994da0a');
INSERT INTO `items` (`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`,`uuid`) values ('34592','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX}','10402','{#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\r\nThe output current in 0.1 amperes drawn\r\n by the load on the UPS, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','582f567d83e84d64862183c3b1e248f8');
INSERT INTO `items` (`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`,`uuid`) values ('34593','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX}','10402','{#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\r\nThe percentage of the UPS load capacity in VA at\r\n redundancy @ (n + x) presently being used on this\r\n 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','32c88f722f074fd699d880a603aaa91b');
INSERT INTO `items` (`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`,`uuid`) values ('34594','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}','10402','{#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\r\nThe output voltage in VAC, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0502345887e54bbc849a9a4e46a571da');
INSERT INTO `items` (`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`,`uuid`) values ('34595','20','1.3.6.1.4.1.318.1.1.1.2.3.1.0','10403','Battery capacity','battery.capacity[upsHighPrecBatteryCapacity]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe remaining battery capacity expressed as\r\n percentage of full capacity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','94c5c76b7e09402bb221827ee1fea5bc');
INSERT INTO `items` (`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`,`uuid`) values ('34596','20','1.3.6.1.4.1.318.1.1.1.4.1.1.0','10403','Output status','output.status[upsBasicOutputStatus]','1m','7d','365d','0','3','','','','',NULL,'295','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current state of the UPS. If the UPS is unable to\r\n determine the state of the UPS this variable is set\r\n to unknown(1).\r\nDuring self-test most UPSes report onBattery(3) but\r\n some that support it will report onBatteryTest(15).\r\n To determine self-test status across all UPSes, refer\r\n to the upsBasicStateOutputState OID.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3170d441ede24494b9570b6d318cc05f');
INSERT INTO `items` (`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`,`uuid`) values ('34597','20','1.3.6.1.2.1.1.3.0','10403','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management\r\nportion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','336ef2166914449fafa13ab08fe7c7a1');
INSERT INTO `items` (`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`,`uuid`) values ('34598','20','1.3.6.1.4.1.318.1.1.1.1.2.3.0','10403','Serial number','system.sn[upsAdvIdentSerialNumber]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nAn 8-character string identifying the serial number of\r\n the UPS internal microprocessor. This number is set at\r\n the factory. NOTE: This number does NOT correspond to\r\n the serial number on the rear of the UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','269ce166bb904fa8b11fc2fdf1f67d76');
INSERT INTO `items` (`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`,`uuid`) values ('34599','20','1.3.6.1.2.1.1.2.0','10403','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management\r\nsubsystem contained in the entity. This value is allocated within the SMI enterprises\r\nsubtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what\r\nkind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was\r\nassigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1\r\nto its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1c00c980ff284fb2bafb8358cc477d13');
INSERT INTO `items` (`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`,`uuid`) values ('34600','20','1.3.6.1.2.1.1.5.0','10403','System name','system.name[sysName.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By\r\nconvention, this is the node\'s fully-qualified domain name. If the name is unknown,\r\nthe value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','482bec6573f249abbb721f2ec90def3b');
INSERT INTO `items` (`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`,`uuid`) values ('34601','20','1.3.6.1.4.1.318.1.1.1.1.1.1.0','10403','Model','system.model[upsBasicIdentModel]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe UPS model name (e.g. \'APC Smart-UPS 600\').','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','866889bb71e949c18520bf8fefd3e7ea');
INSERT INTO `items` (`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`,`uuid`) values ('34602','20','1.3.6.1.2.1.1.6.0','10403','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet,\r\n3rd 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','d0351d1bc1dc4f1b853fe64d456b3570');
INSERT INTO `items` (`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`,`uuid`) values ('34603','20','1.3.6.1.2.1.1.1.0','10403','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','01302a36cafd421c90d746f785c83f3f');
INSERT INTO `items` (`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`,`uuid`) values ('34604','20','1.3.6.1.2.1.1.4.0','10403','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed\r\nnode, together with information on how to contact this person. If no contact\r\ninformation is known, the value is the zero-length string.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da60acc731a64257a90512b5c70d1e92');
INSERT INTO `items` (`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`,`uuid`) values ('34605','17','','10403','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','d08fb7e3fae84d2cbae64ab9771ffcdc');
INSERT INTO `items` (`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`,`uuid`) values ('34606','20','1.3.6.1.4.1.318.1.1.1.4.3.1.0','10403','Output voltage','output.voltage[upsHighPrecOutputVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe output voltage of the UPS system in VAC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6c7d7d803647478c8f2a79875457110c');
INSERT INTO `items` (`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`,`uuid`) values ('34607','20','1.3.6.1.4.1.318.1.1.1.4.3.3.0','10403','Output load','output.load[upsHighPrecOutputLoad]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current UPS load expressed as percentage\r\nof rated capacity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cd7b2c1b12df4fd19f37485aa380b295');
INSERT INTO `items` (`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`,`uuid`) values ('34608','20','1.3.6.1.4.1.318.1.1.1.2.2.5.0','10403','External battery packs count','battery.external_packs_count[upsAdvBatteryNumOfBattPacks]','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe number of external battery packs connected to the UPS. If\r\n the UPS does not use smart cells then the agent reports\r\n ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1a52452353b443d6b965293fda3b16b9');
INSERT INTO `items` (`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`,`uuid`) values ('34609','20','1.3.6.1.4.1.318.1.1.1.4.3.4.0','10403','Output current','output.current[upsHighPrecOutputCurrent]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe 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','145d3bf81b00427aad5563a4feb7aea1');
INSERT INTO `items` (`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`,`uuid`) values ('34610','20','1.3.6.1.4.1.318.1.1.1.3.3.1.0','10403','Input voltage','input.voltage[upsHighPrecInputLineVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current utility line voltage in VAC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d7281586af02462a9a2f511c0a5741eb');
INSERT INTO `items` (`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`,`uuid`) values ('34611','20','1.3.6.1.4.1.318.1.1.1.3.3.4.0','10403','Input frequency','input.frequency[upsHighPrecInputFrequency]','1m','7d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current input frequency to the UPS system in Hz.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0ceb5a6d71f440fcbd2da06b0cc1bbb3');
INSERT INTO `items` (`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`,`uuid`) values ('34612','20','1.3.6.1.4.1.318.1.1.1.3.2.5.0','10403','Input fail cause','input.fail[upsAdvInputLineFailCause]','1m','7d','365d','0','3','','','','',NULL,'293','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe reason for the occurrence of the last transfer to UPS\r\nbattery power. The variable is set to:\r\n- noTransfer(1) -- if there is no transfer yet.\r\n- highLineVoltage(2) -- if the transfer to battery is caused\r\nby an over voltage greater than the high transfer voltage.\r\n- brownout(3) -- if the duration of the outage is greater than\r\nfive seconds and the line voltage is between 40% of the\r\nrated output voltage and the low transfer voltage.\r\n- blackout(4) -- if the duration of the outage is greater than five\r\nseconds and the line voltage is between 40% of the rated\r\noutput voltage and ground.\r\n- smallMomentarySag(5) -- if the duration of the outage is less\r\nthan five seconds and the line voltage is between 40% of the\r\nrated output voltage and the low transfer voltage.\r\n- deepMomentarySag(6) -- if the duration of the outage is less\r\nthan five seconds and the line voltage is between 40% of the\r\nrated output voltage and ground. The variable is set to\r\n- smallMomentarySpike(7) -- if the line failure is caused by a\r\nrate of change of input voltage less than ten volts per cycle.\r\n- largeMomentarySpike(8) -- if the line failure is caused by\r\na rate of change of input voltage greater than ten volts per cycle.\r\n- selfTest(9) -- if the UPS was commanded to do a self test.\r\n- rateOfVoltageChange(10) -- if the failure is due to the rate of change of\r\nthe line voltage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0a12f157ae844129a35084b5ab0a8eab');
INSERT INTO `items` (`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`,`uuid`) values ('34613','20','1.3.6.1.4.1.318.1.1.1.2.3.4.0','10403','Battery voltage','battery.voltage[upsHighPrecBatteryActualVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe actual battery bus voltage in Volts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4b456cb5c0224b31a2f8b4bb40d8203b');
INSERT INTO `items` (`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`,`uuid`) values ('34614','20','1.3.6.1.4.1.318.1.1.1.2.3.2.0','10403','Battery temperature','battery.temperature[upsHighPrecBatteryTemperature]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current internal UPS temperature in Celsius.\r\n Temperatures below zero read as 0.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c03e15aaf58f4056b88677c44c5d7d87');
INSERT INTO `items` (`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`,`uuid`) values ('34615','20','1.3.6.1.4.1.318.1.1.1.2.1.1.0','10403','Battery status','battery.status[upsBasicBatteryStatus]','1m','7d','365d','0','3','','','','',NULL,'294','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe status of the UPS batteries. A batteryLow(3) value\r\n indicates the UPS will be unable to sustain the current\r\n load, and its services will be lost if power is not restored.\r\n The amount of run time in reserve at the time of low battery\r\n can be configured by the upsAdvConfigLowBatteryRunTime.\r\n A batteryInFaultCondition(4)value indicates that a battery\r\n installed has an internal error condition.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a631704123c2498aa8ce973e36c13698');
INSERT INTO `items` (`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`,`uuid`) values ('34616','20','1.3.6.1.4.1.318.1.1.1.2.2.3.0','10403','Battery runtime remaining','battery.runtime_remaining[upsAdvBatteryRunTimeRemaining]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe UPS battery run time remaining before battery\r\n exhaustion.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f151210b9cd749b2b3e5af2145733c82');
INSERT INTO `items` (`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`,`uuid`) values ('34617','20','1.3.6.1.4.1.318.1.1.1.2.2.4.0','10403','Battery replace indicator','battery.replace_indicator[upsAdvBatteryReplaceIndicator]','1m','7d','365d','0','3','','','','',NULL,'292','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nIndicates whether the UPS batteries need replacement.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8f4351d23be04a3abee1e6edb746a9ec');
INSERT INTO `items` (`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`,`uuid`) values ('34618','20','1.3.6.1.4.1.318.1.1.1.2.1.3.0','10403','Battery last replace date','battery.last_replace_date[upsBasicBatteryLastReplaceDate]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe date when the UPS system\'s batteries were last replaced\r\n in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value\r\n is originally set at the factory. When the UPS batteries\r\n are replaced, this value should be reset by the administrator.\r\n 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','7a887ae254b04b19bac605bb36141767');
INSERT INTO `items` (`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`,`uuid`) values ('34619','5','','10403','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'296','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f4f9ebb1e55b41a5a6e470a541e136bc');
INSERT INTO `items` (`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`,`uuid`) values ('34620','20','discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6]','10403','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','67fa8bb8687b4a36b8d32cda72083966');
INSERT INTO `items` (`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`,`uuid`) values ('34621','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]','10403','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','b4a8277fdf6f4e76a641690aaf6e7faa');
INSERT INTO `items` (`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`,`uuid`) values ('34622','20','discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3]','10403','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','59467725274d4dba8e839d167cabe693');
INSERT INTO `items` (`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`,`uuid`) values ('34623','20','discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3]','10403','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','d4b34302c7d74f83a409947f2eed37b0');
INSERT INTO `items` (`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`,`uuid`) values ('34624','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1]','10403','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','525a204918834dbfa788a3681c2d0527');
INSERT INTO `items` (`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`,`uuid`) values ('34625','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1]','10403','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','cbd6b174482c4769887fc1aa2dc2ad5a');
INSERT INTO `items` (`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`,`uuid`) values ('34626','20','1.3.6.1.4.1.318.1.1.1.2.2.6.0','10403','{#SNMPINDEX}: External battery packs bad','battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}]','15m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe number of external battery packs connected to the UPS that\r\nare defective. If the UPS does not use smart cells then the\r\nagent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b144bee7e8464540bbcd8a3c28ce7e9f');
INSERT INTO `items` (`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`,`uuid`) values ('34627','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX}','10403','{#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\r\nThe battery cartridge estimated battery replace date.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9715d1700f5f49ffaf3ff35c666f50cf');
INSERT INTO `items` (`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`,`uuid`) values ('34628','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX}','10403','{#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\r\nThe battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n 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','2e7f6a940840406cb17bb1af20936326');
INSERT INTO `items` (`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`,`uuid`) values ('34629','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX}','10403','{#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\r\nThe battery cartridge status.\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad5ce159270e41899665be0a9f9697e1');
INSERT INTO `items` (`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`,`uuid`) values ('34630','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX}','10403','{#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\r\nThe battery pack temperature in Celsius.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1628e49e7f7b468ca2dee87a80321b44');
INSERT INTO `items` (`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`,`uuid`) values ('34631','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX}','10403','{#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\r\nThe battery pack serial number.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7c2aec802cfa4b0292e9d1daa94aee05');
INSERT INTO `items` (`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`,`uuid`) values ('34632','20','1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1','10403','{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current humidity reading - a relative humidity\r\n percentage. -1 indicates an invalid reading due to either a\r\n sensor that doesn\'t read humidity or lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0336e646ea6247ad8ef4254dff64623e');
INSERT INTO `items` (`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`,`uuid`) values ('34633','20','1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1','10403','{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'291','','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe alarm status of the sensor. Possible values:\r\nuioNormal (1),\r\nuioWarning (2),\r\nuioCritical (3),\r\nsensorStatusNotApplicable (4)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','137fdf42e0ab476e86e7b0b3bc87d5cc');
INSERT INTO `items` (`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`,`uuid`) values ('34634','20','1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1','10403','{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current temperature reading in Celsius.\r\n -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b97e3012569840f1bb7da5f5403db6e0');
INSERT INTO `items` (`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`,`uuid`) values ('34635','20','1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1','10403','{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current humidity reading - a relative humidity\r\n percentage. -1 indicates an invalid reading due to either a\r\n sensor that doesn\'t read humidity or lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','872bd20f6f5d453490324cd8ea5be7c2');
INSERT INTO `items` (`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`,`uuid`) values ('34636','20','1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1','10403','{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'291','','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe alarm status of the sensor. Possible values:\r\nuioNormal (1),\r\nuioWarning (2),\r\nuioCritical (3),\r\nsensorStatusNotApplicable (4)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e10189271da445a494d274d99269ab75');
INSERT INTO `items` (`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`,`uuid`) values ('34637','20','1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1','10403','{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current temperature reading in Celsius.\r\n -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','11cac46ee1834e7c816a2cd9dcc02e82');
INSERT INTO `items` (`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`,`uuid`) values ('34638','20','1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX}','10403','{#PHASEINDEX}: Phase input current','phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe input current in 0.1 amperes, or -0.1 if it\'s\r\n unsupported by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fd698a699cd546418802964c6157290e');
INSERT INTO `items` (`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`,`uuid`) values ('34639','20','1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX}','10403','{#PHASEINDEX}: Phase input voltage','phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe input voltage in VAC, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1baaad88e9064b92b453fb2c1c7d73d5');
INSERT INTO `items` (`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`,`uuid`) values ('34640','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX}','10403','{#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\r\nThe output current in 0.1 amperes drawn\r\n by the load on the UPS, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84ec9adaa7c94f10b55ae9968449d673');
INSERT INTO `items` (`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`,`uuid`) values ('34641','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX}','10403','{#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\r\nThe percentage of the UPS load capacity in VA at\r\n redundancy @ (n + x) presently being used on this\r\n 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','6d1812674e5646f8acf2ea47acf05a6d');
INSERT INTO `items` (`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`,`uuid`) values ('34642','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}','10403','{#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\r\nThe output voltage in VAC, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c0573d586b24e53aeebb6c44b907bbd');
INSERT INTO `items` (`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`,`uuid`) values ('34643','20','1.3.6.1.4.1.318.1.1.1.2.3.1.0','10404','Battery capacity','battery.capacity[upsHighPrecBatteryCapacity]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe remaining battery capacity expressed as\r\n percentage of full capacity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6ac68411ef214cc7aa49d39d58ce3c6a');
INSERT INTO `items` (`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`,`uuid`) values ('34644','20','1.3.6.1.4.1.318.1.1.1.4.1.1.0','10404','Output status','output.status[upsBasicOutputStatus]','1m','7d','365d','0','3','','','','',NULL,'301','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current state of the UPS. If the UPS is unable to\r\n determine the state of the UPS this variable is set\r\n to unknown(1).\r\nDuring self-test most UPSes report onBattery(3) but\r\n some that support it will report onBatteryTest(15).\r\n To determine self-test status across all UPSes, refer\r\n to the upsBasicStateOutputState OID.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3edf5e7776ae4cc6aebcedcbf4ab8d78');
INSERT INTO `items` (`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`,`uuid`) values ('34645','20','1.3.6.1.2.1.1.3.0','10404','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management\r\nportion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bbcb555846df4169bc7aead77403e8eb');
INSERT INTO `items` (`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`,`uuid`) values ('34646','20','1.3.6.1.4.1.318.1.1.1.1.2.3.0','10404','Serial number','system.sn[upsAdvIdentSerialNumber]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nAn 8-character string identifying the serial number of\r\n the UPS internal microprocessor. This number is set at\r\n the factory. NOTE: This number does NOT correspond to\r\n the serial number on the rear of the UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ebb979a5e4a45fd9acf956df034f9be');
INSERT INTO `items` (`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`,`uuid`) values ('34647','20','1.3.6.1.2.1.1.2.0','10404','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management\r\nsubsystem contained in the entity. This value is allocated within the SMI enterprises\r\nsubtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what\r\nkind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was\r\nassigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1\r\nto its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4e7a9b6aa8dd4371b83bf47f8246cebf');
INSERT INTO `items` (`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`,`uuid`) values ('34648','20','1.3.6.1.2.1.1.5.0','10404','System name','system.name[sysName.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By\r\nconvention, this is the node\'s fully-qualified domain name. If the name is unknown,\r\nthe value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e4d9441075954c068b6fd92bbff49cef');
INSERT INTO `items` (`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`,`uuid`) values ('34649','20','1.3.6.1.4.1.318.1.1.1.1.1.1.0','10404','Model','system.model[upsBasicIdentModel]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe UPS model name (e.g. \'APC Smart-UPS 600\').','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','320221ba30744ca78b8dce03dccd549b');
INSERT INTO `items` (`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`,`uuid`) values ('34650','20','1.3.6.1.2.1.1.6.0','10404','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet,\r\n3rd 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','031b9d385cae4641b9ecfb76c4174262');
INSERT INTO `items` (`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`,`uuid`) values ('34651','20','1.3.6.1.2.1.1.1.0','10404','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e0d638ab398f40e8a9555925cd8ba907');
INSERT INTO `items` (`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`,`uuid`) values ('34652','20','1.3.6.1.2.1.1.4.0','10404','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed\r\nnode, together with information on how to contact this person. If no contact\r\ninformation is known, the value is the zero-length string.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','50cc8e7cea0c40948c006623dfa94dae');
INSERT INTO `items` (`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`,`uuid`) values ('34653','17','','10404','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','d633cd3273e74209a1b0c6b761028e0a');
INSERT INTO `items` (`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`,`uuid`) values ('34654','20','1.3.6.1.4.1.318.1.1.1.4.3.1.0','10404','Output voltage','output.voltage[upsHighPrecOutputVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe output voltage of the UPS system in VAC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bcb28618699448ea8d9d056bad203a0e');
INSERT INTO `items` (`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`,`uuid`) values ('34655','20','1.3.6.1.4.1.318.1.1.1.4.3.3.0','10404','Output load','output.load[upsHighPrecOutputLoad]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current UPS load expressed as percentage\r\nof rated capacity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1d9d7ef724ff41eda4fd536df6af93cb');
INSERT INTO `items` (`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`,`uuid`) values ('34656','20','1.3.6.1.4.1.318.1.1.1.2.2.5.0','10404','External battery packs count','battery.external_packs_count[upsAdvBatteryNumOfBattPacks]','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe number of external battery packs connected to the UPS. If\r\n the UPS does not use smart cells then the agent reports\r\n ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7f3b05afa58142d5b8670c40c196baf8');
INSERT INTO `items` (`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`,`uuid`) values ('34657','20','1.3.6.1.4.1.318.1.1.1.4.3.4.0','10404','Output current','output.current[upsHighPrecOutputCurrent]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe 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','861757e4bb1a4dc6ac1c8ef94d973328');
INSERT INTO `items` (`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`,`uuid`) values ('34658','20','1.3.6.1.4.1.318.1.1.1.3.3.1.0','10404','Input voltage','input.voltage[upsHighPrecInputLineVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current utility line voltage in VAC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e2b5b824c4704293ad68185971e9fb03');
INSERT INTO `items` (`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`,`uuid`) values ('34659','20','1.3.6.1.4.1.318.1.1.1.3.3.4.0','10404','Input frequency','input.frequency[upsHighPrecInputFrequency]','1m','7d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current input frequency to the UPS system in Hz.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','700a78a4ab3c441496ecafc5ddde6a9d');
INSERT INTO `items` (`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`,`uuid`) values ('34660','20','1.3.6.1.4.1.318.1.1.1.3.2.5.0','10404','Input fail cause','input.fail[upsAdvInputLineFailCause]','1m','7d','365d','0','3','','','','',NULL,'299','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe reason for the occurrence of the last transfer to UPS\r\nbattery power. The variable is set to:\r\n- noTransfer(1) -- if there is no transfer yet.\r\n- highLineVoltage(2) -- if the transfer to battery is caused\r\nby an over voltage greater than the high transfer voltage.\r\n- brownout(3) -- if the duration of the outage is greater than\r\nfive seconds and the line voltage is between 40% of the\r\nrated output voltage and the low transfer voltage.\r\n- blackout(4) -- if the duration of the outage is greater than five\r\nseconds and the line voltage is between 40% of the rated\r\noutput voltage and ground.\r\n- smallMomentarySag(5) -- if the duration of the outage is less\r\nthan five seconds and the line voltage is between 40% of the\r\nrated output voltage and the low transfer voltage.\r\n- deepMomentarySag(6) -- if the duration of the outage is less\r\nthan five seconds and the line voltage is between 40% of the\r\nrated output voltage and ground. The variable is set to\r\n- smallMomentarySpike(7) -- if the line failure is caused by a\r\nrate of change of input voltage less than ten volts per cycle.\r\n- largeMomentarySpike(8) -- if the line failure is caused by\r\na rate of change of input voltage greater than ten volts per cycle.\r\n- selfTest(9) -- if the UPS was commanded to do a self test.\r\n- rateOfVoltageChange(10) -- if the failure is due to the rate of change of\r\nthe line voltage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4cb80c94f3d14674bc7a3933c7571eac');
INSERT INTO `items` (`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`,`uuid`) values ('34661','20','1.3.6.1.4.1.318.1.1.1.2.3.4.0','10404','Battery voltage','battery.voltage[upsHighPrecBatteryActualVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe actual battery bus voltage in Volts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ee98deaf4bf46afb06f694d19757237');
INSERT INTO `items` (`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`,`uuid`) values ('34662','20','1.3.6.1.4.1.318.1.1.1.2.3.2.0','10404','Battery temperature','battery.temperature[upsHighPrecBatteryTemperature]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current internal UPS temperature in Celsius.\r\n Temperatures below zero read as 0.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','04cd5e06823846b58ad57e2c358f346e');
INSERT INTO `items` (`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`,`uuid`) values ('34663','20','1.3.6.1.4.1.318.1.1.1.2.1.1.0','10404','Battery status','battery.status[upsBasicBatteryStatus]','1m','7d','365d','0','3','','','','',NULL,'300','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe status of the UPS batteries. A batteryLow(3) value\r\n indicates the UPS will be unable to sustain the current\r\n load, and its services will be lost if power is not restored.\r\n The amount of run time in reserve at the time of low battery\r\n can be configured by the upsAdvConfigLowBatteryRunTime.\r\n A batteryInFaultCondition(4)value indicates that a battery\r\n installed has an internal error condition.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','047a5a3a957949d288588eb11f36f25e');
INSERT INTO `items` (`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`,`uuid`) values ('34664','20','1.3.6.1.4.1.318.1.1.1.2.2.3.0','10404','Battery runtime remaining','battery.runtime_remaining[upsAdvBatteryRunTimeRemaining]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe UPS battery run time remaining before battery\r\n exhaustion.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','95749270e6234d6cbd1edb0c5e1118e0');
INSERT INTO `items` (`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`,`uuid`) values ('34665','20','1.3.6.1.4.1.318.1.1.1.2.2.4.0','10404','Battery replace indicator','battery.replace_indicator[upsAdvBatteryReplaceIndicator]','1m','7d','365d','0','3','','','','',NULL,'298','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nIndicates whether the UPS batteries need replacement.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','44a33eba233e4bd7ac51ca2dcabf2939');
INSERT INTO `items` (`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`,`uuid`) values ('34666','20','1.3.6.1.4.1.318.1.1.1.2.1.3.0','10404','Battery last replace date','battery.last_replace_date[upsBasicBatteryLastReplaceDate]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe date when the UPS system\'s batteries were last replaced\r\n in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value\r\n is originally set at the factory. When the UPS batteries\r\n are replaced, this value should be reset by the administrator.\r\n 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','87b91005f5ff4ba5b0086e25eaa799bd');
INSERT INTO `items` (`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`,`uuid`) values ('34667','5','','10404','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'302','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f24fc7ed9ffa4884891a01a0f1565fc4');
INSERT INTO `items` (`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`,`uuid`) values ('34668','20','discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6]','10404','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','9389b159502e4242b02a11104124bae5');
INSERT INTO `items` (`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`,`uuid`) values ('34669','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]','10404','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','ec66331f2ae64801a3ef51d6dec5a00f');
INSERT INTO `items` (`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`,`uuid`) values ('34670','20','discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3]','10404','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','19379361227740c3bf8bc9852886538d');
INSERT INTO `items` (`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`,`uuid`) values ('34671','20','discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3]','10404','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','c4df3e0e0eba4585bdd01358f9d7f5d9');
INSERT INTO `items` (`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`,`uuid`) values ('34672','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1]','10404','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','68610f5b6df44229bcb0ad4b0fa1c3f8');
INSERT INTO `items` (`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`,`uuid`) values ('34673','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1]','10404','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','a7b39188df294ec182c3e1f2a2417154');
INSERT INTO `items` (`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`,`uuid`) values ('34674','20','1.3.6.1.4.1.318.1.1.1.2.2.6.0','10404','{#SNMPINDEX}: External battery packs bad','battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}]','15m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe number of external battery packs connected to the UPS that\r\nare defective. If the UPS does not use smart cells then the\r\nagent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','202a5c9f91c64011a915157a07245a6d');
INSERT INTO `items` (`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`,`uuid`) values ('34675','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX}','10404','{#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\r\nThe battery cartridge estimated battery replace date.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8d1574f1c1d442529509580309153564');
INSERT INTO `items` (`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`,`uuid`) values ('34676','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX}','10404','{#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\r\nThe battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n 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','3c829e3adec64fb39334dbacc03a3229');
INSERT INTO `items` (`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`,`uuid`) values ('34677','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX}','10404','{#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\r\nThe battery cartridge status.\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','15f52cb076cb414fb794113e9981fdde');
INSERT INTO `items` (`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`,`uuid`) values ('34678','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX}','10404','{#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\r\nThe battery pack temperature in Celsius.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e0d8f68302264c1b9420284f3e3a0272');
INSERT INTO `items` (`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`,`uuid`) values ('34679','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX}','10404','{#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\r\nThe battery pack serial number.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bca352c952174256b9cfbcffb86fbf90');
INSERT INTO `items` (`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`,`uuid`) values ('34680','20','1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1','10404','{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current humidity reading - a relative humidity\r\n percentage. -1 indicates an invalid reading due to either a\r\n sensor that doesn\'t read humidity or lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d9c8acbf3a90411582404c9d5cfa9f70');
INSERT INTO `items` (`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`,`uuid`) values ('34681','20','1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1','10404','{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'297','','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe alarm status of the sensor. Possible values:\r\nuioNormal (1),\r\nuioWarning (2),\r\nuioCritical (3),\r\nsensorStatusNotApplicable (4)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1a475822bc324bbf8c4aa15c34734270');
INSERT INTO `items` (`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`,`uuid`) values ('34682','20','1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1','10404','{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current temperature reading in Celsius.\r\n -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d1005b2b6ad41369174d93b1ebe1959');
INSERT INTO `items` (`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`,`uuid`) values ('34683','20','1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1','10404','{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current humidity reading - a relative humidity\r\n percentage. -1 indicates an invalid reading due to either a\r\n sensor that doesn\'t read humidity or lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7d08e2a5df41454f863f5b50a911f819');
INSERT INTO `items` (`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`,`uuid`) values ('34684','20','1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1','10404','{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'297','','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe alarm status of the sensor. Possible values:\r\nuioNormal (1),\r\nuioWarning (2),\r\nuioCritical (3),\r\nsensorStatusNotApplicable (4)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4774fd152aab49de9064490cf7ec1d0a');
INSERT INTO `items` (`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`,`uuid`) values ('34685','20','1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1','10404','{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current temperature reading in Celsius.\r\n -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d94425f2025045459af40e8fcb72734e');
INSERT INTO `items` (`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`,`uuid`) values ('34686','20','1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX}','10404','{#PHASEINDEX}: Phase input current','phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe input current in 0.1 amperes, or -0.1 if it\'s\r\n unsupported by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d17e9bb868b143dca508c4f79092cd6e');
INSERT INTO `items` (`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`,`uuid`) values ('34687','20','1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX}','10404','{#PHASEINDEX}: Phase input voltage','phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe input voltage in VAC, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cf03abf328754a4082017f480051292f');
INSERT INTO `items` (`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`,`uuid`) values ('34688','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX}','10404','{#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\r\nThe output current in 0.1 amperes drawn\r\n by the load on the UPS, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','638c63c2f4ad4cad8ed71a796d78705b');
INSERT INTO `items` (`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`,`uuid`) values ('34689','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX}','10404','{#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\r\nThe percentage of the UPS load capacity in VA at\r\n redundancy @ (n + x) presently being used on this\r\n 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','ba4a2ae8abea4e2692b9a43231783648');
INSERT INTO `items` (`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`,`uuid`) values ('34690','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}','10404','{#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\r\nThe output voltage in VAC, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4e22c7f6d7e14b20b3720e082042fd4f');
INSERT INTO `items` (`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`,`uuid`) values ('34739','20','1.3.6.1.4.1.318.1.1.1.2.3.1.0','10406','Battery capacity','battery.capacity[upsHighPrecBatteryCapacity]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe remaining battery capacity expressed as\r\n percentage of full capacity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c4f4a85105f24292a3b566d0d1bcc090');
INSERT INTO `items` (`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`,`uuid`) values ('34740','20','1.3.6.1.4.1.318.1.1.1.4.1.1.0','10406','Output status','output.status[upsBasicOutputStatus]','1m','7d','365d','0','3','','','','',NULL,'313','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current state of the UPS. If the UPS is unable to\r\n determine the state of the UPS this variable is set\r\n to unknown(1).\r\nDuring self-test most UPSes report onBattery(3) but\r\n some that support it will report onBatteryTest(15).\r\n To determine self-test status across all UPSes, refer\r\n to the upsBasicStateOutputState OID.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','11c1742beed041999375e5a1ede42546');
INSERT INTO `items` (`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`,`uuid`) values ('34741','20','1.3.6.1.2.1.1.3.0','10406','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management\r\nportion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','320bdbfd8076411bb1dd63fccddec126');
INSERT INTO `items` (`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`,`uuid`) values ('34742','20','1.3.6.1.4.1.318.1.1.1.1.2.3.0','10406','Serial number','system.sn[upsAdvIdentSerialNumber]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nAn 8-character string identifying the serial number of\r\n the UPS internal microprocessor. This number is set at\r\n the factory. NOTE: This number does NOT correspond to\r\n the serial number on the rear of the UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','63852531159c44f1beca7facd8f93fa2');
INSERT INTO `items` (`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`,`uuid`) values ('34743','20','1.3.6.1.2.1.1.2.0','10406','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management\r\nsubsystem contained in the entity. This value is allocated within the SMI enterprises\r\nsubtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what\r\nkind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was\r\nassigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1\r\nto its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b59b3801f5584321a1fca9bdb466f191');
INSERT INTO `items` (`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`,`uuid`) values ('34744','20','1.3.6.1.2.1.1.5.0','10406','System name','system.name[sysName.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By\r\nconvention, this is the node\'s fully-qualified domain name. If the name is unknown,\r\nthe value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','13c26820947442f581c2234c38c052cc');
INSERT INTO `items` (`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`,`uuid`) values ('34745','20','1.3.6.1.4.1.318.1.1.1.1.1.1.0','10406','Model','system.model[upsBasicIdentModel]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe UPS model name (e.g. \'APC Smart-UPS 600\').','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','57f3c4c2aff04eef83b7a7a53fa9f95c');
INSERT INTO `items` (`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`,`uuid`) values ('34746','20','1.3.6.1.2.1.1.6.0','10406','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet,\r\n3rd 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','25aa469a757347089191eb8e364d4df9');
INSERT INTO `items` (`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`,`uuid`) values ('34747','20','1.3.6.1.2.1.1.1.0','10406','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','13d3c18413a249d492272a7373ebd772');
INSERT INTO `items` (`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`,`uuid`) values ('34748','20','1.3.6.1.2.1.1.4.0','10406','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed\r\nnode, together with information on how to contact this person. If no contact\r\ninformation is known, the value is the zero-length string.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e4995e72f6b442bd9b8c90f09eb54f16');
INSERT INTO `items` (`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`,`uuid`) values ('34749','17','','10406','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','ae4579b14c424c0492acbfcb5aa5dd67');
INSERT INTO `items` (`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`,`uuid`) values ('34750','20','1.3.6.1.4.1.318.1.1.1.4.3.1.0','10406','Output voltage','output.voltage[upsHighPrecOutputVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe output voltage of the UPS system in VAC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','07059c625de94e618925249492982fb7');
INSERT INTO `items` (`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`,`uuid`) values ('34751','20','1.3.6.1.4.1.318.1.1.1.4.3.3.0','10406','Output load','output.load[upsHighPrecOutputLoad]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current UPS load expressed as percentage\r\nof rated capacity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0413f6ef89894dc6ba51e42f6a963f94');
INSERT INTO `items` (`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`,`uuid`) values ('34752','20','1.3.6.1.4.1.318.1.1.1.2.2.5.0','10406','External battery packs count','battery.external_packs_count[upsAdvBatteryNumOfBattPacks]','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe number of external battery packs connected to the UPS. If\r\n the UPS does not use smart cells then the agent reports\r\n ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7d7c2b962e9843b8a6cf72c04ff1e479');
INSERT INTO `items` (`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`,`uuid`) values ('34753','20','1.3.6.1.4.1.318.1.1.1.4.3.4.0','10406','Output current','output.current[upsHighPrecOutputCurrent]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe 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','e4d76d857c4e46fd9b0e97405b17988a');
INSERT INTO `items` (`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`,`uuid`) values ('34754','20','1.3.6.1.4.1.318.1.1.1.3.3.1.0','10406','Input voltage','input.voltage[upsHighPrecInputLineVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current utility line voltage in VAC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c69418651f75413e95645c62fa3fee7f');
INSERT INTO `items` (`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`,`uuid`) values ('34755','20','1.3.6.1.4.1.318.1.1.1.3.3.4.0','10406','Input frequency','input.frequency[upsHighPrecInputFrequency]','1m','7d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current input frequency to the UPS system in Hz.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7574344f67544554804c4c68e39d3d72');
INSERT INTO `items` (`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`,`uuid`) values ('34756','20','1.3.6.1.4.1.318.1.1.1.3.2.5.0','10406','Input fail cause','input.fail[upsAdvInputLineFailCause]','1m','7d','365d','0','3','','','','',NULL,'311','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe reason for the occurrence of the last transfer to UPS\r\nbattery power. The variable is set to:\r\n- noTransfer(1) -- if there is no transfer yet.\r\n- highLineVoltage(2) -- if the transfer to battery is caused\r\nby an over voltage greater than the high transfer voltage.\r\n- brownout(3) -- if the duration of the outage is greater than\r\nfive seconds and the line voltage is between 40% of the\r\nrated output voltage and the low transfer voltage.\r\n- blackout(4) -- if the duration of the outage is greater than five\r\nseconds and the line voltage is between 40% of the rated\r\noutput voltage and ground.\r\n- smallMomentarySag(5) -- if the duration of the outage is less\r\nthan five seconds and the line voltage is between 40% of the\r\nrated output voltage and the low transfer voltage.\r\n- deepMomentarySag(6) -- if the duration of the outage is less\r\nthan five seconds and the line voltage is between 40% of the\r\nrated output voltage and ground. The variable is set to\r\n- smallMomentarySpike(7) -- if the line failure is caused by a\r\nrate of change of input voltage less than ten volts per cycle.\r\n- largeMomentarySpike(8) -- if the line failure is caused by\r\na rate of change of input voltage greater than ten volts per cycle.\r\n- selfTest(9) -- if the UPS was commanded to do a self test.\r\n- rateOfVoltageChange(10) -- if the failure is due to the rate of change of\r\nthe line voltage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','07754bb421d0435995abbc49d4597908');
INSERT INTO `items` (`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`,`uuid`) values ('34757','20','1.3.6.1.4.1.318.1.1.1.2.3.4.0','10406','Battery voltage','battery.voltage[upsHighPrecBatteryActualVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe actual battery bus voltage in Volts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fa8256c826954defa82083ddc742624e');
INSERT INTO `items` (`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`,`uuid`) values ('34758','20','1.3.6.1.4.1.318.1.1.1.2.3.2.0','10406','Battery temperature','battery.temperature[upsHighPrecBatteryTemperature]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current internal UPS temperature in Celsius.\r\n Temperatures below zero read as 0.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','533041b6831c451cb72991d3fdeca535');
INSERT INTO `items` (`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`,`uuid`) values ('34759','20','1.3.6.1.4.1.318.1.1.1.2.1.1.0','10406','Battery status','battery.status[upsBasicBatteryStatus]','1m','7d','365d','0','3','','','','',NULL,'312','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe status of the UPS batteries. A batteryLow(3) value\r\n indicates the UPS will be unable to sustain the current\r\n load, and its services will be lost if power is not restored.\r\n The amount of run time in reserve at the time of low battery\r\n can be configured by the upsAdvConfigLowBatteryRunTime.\r\n A batteryInFaultCondition(4)value indicates that a battery\r\n installed has an internal error condition.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ceed5ddfc9964aabaebb0b97875b1bd9');
INSERT INTO `items` (`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`,`uuid`) values ('34760','20','1.3.6.1.4.1.318.1.1.1.2.2.3.0','10406','Battery runtime remaining','battery.runtime_remaining[upsAdvBatteryRunTimeRemaining]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe UPS battery run time remaining before battery\r\n exhaustion.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ae8a19896d21405ca99a5bfbd5de1f95');
INSERT INTO `items` (`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`,`uuid`) values ('34761','20','1.3.6.1.4.1.318.1.1.1.2.2.4.0','10406','Battery replace indicator','battery.replace_indicator[upsAdvBatteryReplaceIndicator]','1m','7d','365d','0','3','','','','',NULL,'310','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nIndicates whether the UPS batteries need replacement.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4cdd4bbff845477194a6d96a31431d23');
INSERT INTO `items` (`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`,`uuid`) values ('34762','20','1.3.6.1.4.1.318.1.1.1.2.1.3.0','10406','Battery last replace date','battery.last_replace_date[upsBasicBatteryLastReplaceDate]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe date when the UPS system\'s batteries were last replaced\r\n in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value\r\n is originally set at the factory. When the UPS batteries\r\n are replaced, this value should be reset by the administrator.\r\n 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','552e030c272d43a0998bc2648f15ae44');
INSERT INTO `items` (`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`,`uuid`) values ('34763','5','','10406','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'314','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','567996748402435d80aae37818d4125e');
INSERT INTO `items` (`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`,`uuid`) values ('34764','20','discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6]','10406','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','912994ce460742ebbb91c89d28d87d73');
INSERT INTO `items` (`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`,`uuid`) values ('34765','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]','10406','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','abfe041a98dc4023b21ec6d9e829a94a');
INSERT INTO `items` (`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`,`uuid`) values ('34766','20','discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3]','10406','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','52e5451d8c7a41478ef9dde6a3c16378');
INSERT INTO `items` (`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`,`uuid`) values ('34767','20','discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3]','10406','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','39f516180a1b4727907b1e2974111fe1');
INSERT INTO `items` (`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`,`uuid`) values ('34768','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1]','10406','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','10363e965d97464a9344baa5fa7a2f53');
INSERT INTO `items` (`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`,`uuid`) values ('34769','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1]','10406','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','0a3159e22ba640e2840789b63bee2bda');
INSERT INTO `items` (`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`,`uuid`) values ('34770','20','1.3.6.1.4.1.318.1.1.1.2.2.6.0','10406','{#SNMPINDEX}: External battery packs bad','battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}]','15m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe number of external battery packs connected to the UPS that\r\nare defective. If the UPS does not use smart cells then the\r\nagent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e74988ed369b429893ca495a57ae9a52');
INSERT INTO `items` (`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`,`uuid`) values ('34771','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX}','10406','{#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\r\nThe battery cartridge estimated battery replace date.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b3835f9b8e9c41c98a747c37feaedb50');
INSERT INTO `items` (`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`,`uuid`) values ('34772','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX}','10406','{#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\r\nThe battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n 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','820d8eda050b41a3a9ba2889e290a28a');
INSERT INTO `items` (`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`,`uuid`) values ('34773','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX}','10406','{#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\r\nThe battery cartridge status.\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cf709f051aa242799cf14ba923d9a0c0');
INSERT INTO `items` (`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`,`uuid`) values ('34774','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX}','10406','{#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\r\nThe battery pack temperature in Celsius.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','99c570ed628343e99ac086167cec51ee');
INSERT INTO `items` (`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`,`uuid`) values ('34775','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX}','10406','{#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\r\nThe battery pack serial number.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','597b33ec3d4c4f79bc0acc36edaa6dec');
INSERT INTO `items` (`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`,`uuid`) values ('34776','20','1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1','10406','{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current humidity reading - a relative humidity\r\n percentage. -1 indicates an invalid reading due to either a\r\n sensor that doesn\'t read humidity or lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','418b37fbca594f6288eeccdbe272bad7');
INSERT INTO `items` (`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`,`uuid`) values ('34777','20','1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1','10406','{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'309','','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe alarm status of the sensor. Possible values:\r\nuioNormal (1),\r\nuioWarning (2),\r\nuioCritical (3),\r\nsensorStatusNotApplicable (4)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','53102fe478cf47bd9fbe5240aab7cf65');
INSERT INTO `items` (`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`,`uuid`) values ('34778','20','1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1','10406','{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current temperature reading in Celsius.\r\n -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0f44bfc0e17b47919e83246046209bbf');
INSERT INTO `items` (`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`,`uuid`) values ('34779','20','1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1','10406','{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current humidity reading - a relative humidity\r\n percentage. -1 indicates an invalid reading due to either a\r\n sensor that doesn\'t read humidity or lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2263b22a266a4db091f05522a024a1e4');
INSERT INTO `items` (`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`,`uuid`) values ('34780','20','1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1','10406','{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'309','','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe alarm status of the sensor. Possible values:\r\nuioNormal (1),\r\nuioWarning (2),\r\nuioCritical (3),\r\nsensorStatusNotApplicable (4)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b7af85f894194cf39c369fcba0401cc5');
INSERT INTO `items` (`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`,`uuid`) values ('34781','20','1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1','10406','{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current temperature reading in Celsius.\r\n -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84af771eee61470d9a61cede04718d88');
INSERT INTO `items` (`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`,`uuid`) values ('34782','20','1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX}','10406','{#PHASEINDEX}: Phase input current','phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe input current in 0.1 amperes, or -0.1 if it\'s\r\n unsupported by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a275ab18a7064706bf721498ac7c5605');
INSERT INTO `items` (`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`,`uuid`) values ('34783','20','1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX}','10406','{#PHASEINDEX}: Phase input voltage','phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe input voltage in VAC, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','113adf39a65548abab2da39aec20c169');
INSERT INTO `items` (`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`,`uuid`) values ('34784','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX}','10406','{#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\r\nThe output current in 0.1 amperes drawn\r\n by the load on the UPS, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3b625f8ab9f54dca882534d78ee0e584');
INSERT INTO `items` (`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`,`uuid`) values ('34785','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX}','10406','{#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\r\nThe percentage of the UPS load capacity in VA at\r\n redundancy @ (n + x) presently being used on this\r\n 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','99357a267db04c8ca9385aaa15116b79');
INSERT INTO `items` (`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`,`uuid`) values ('34786','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}','10406','{#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\r\nThe output voltage in VAC, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','13315206a94948a09fbb4a9843d2e149');
INSERT INTO `items` (`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`,`uuid`) values ('34787','20','1.3.6.1.4.1.318.1.1.1.2.3.1.0','10395','Battery capacity','battery.capacity[upsHighPrecBatteryCapacity]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe remaining battery capacity expressed as\r\n percentage of full capacity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','96898d48b27946bfa9a623d7d0b028be');
INSERT INTO `items` (`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`,`uuid`) values ('34788','20','1.3.6.1.2.1.1.5.0','10395','System name','system.name[sysName.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By\r\nconvention, this is the node\'s fully-qualified domain name. If the name is unknown,\r\nthe value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','45a80892f41b411e8457f99b069b59ee');
INSERT INTO `items` (`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`,`uuid`) values ('34789','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1]','10395','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','ba649e1239384e3e8ebe6ae29394aecb');
INSERT INTO `items` (`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`,`uuid`) values ('34790','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX}','10395','{#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\r\nThe output current in 0.1 amperes drawn\r\n by the load on the UPS, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cfdded918e444958b5c592efae76b96e');
INSERT INTO `items` (`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`,`uuid`) values ('34791','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX}','10395','{#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\r\nThe percentage of the UPS load capacity in VA at\r\n redundancy @ (n + x) presently being used on this\r\n 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','262d5cf179e64a2596edd86adc5570e3');
INSERT INTO `items` (`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`,`uuid`) values ('34792','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}','10395','{#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\r\nThe output voltage in VAC, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab38f845f0e448f0b3638f6728cbf5bf');
INSERT INTO `items` (`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`,`uuid`) values ('34793','20','1.3.6.1.4.1.318.1.1.1.2.3.1.0','10407','Battery capacity','battery.capacity[upsHighPrecBatteryCapacity]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe remaining battery capacity expressed as\r\n percentage of full capacity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','560d838206844447b8f79fd4500557b2');
INSERT INTO `items` (`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`,`uuid`) values ('34794','20','1.3.6.1.4.1.318.1.1.1.4.1.1.0','10407','Output status','output.status[upsBasicOutputStatus]','1m','7d','365d','0','3','','','','',NULL,'320','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current state of the UPS. If the UPS is unable to\r\n determine the state of the UPS this variable is set\r\n to unknown(1).\r\nDuring self-test most UPSes report onBattery(3) but\r\n some that support it will report onBatteryTest(15).\r\n To determine self-test status across all UPSes, refer\r\n to the upsBasicStateOutputState OID.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','978a7ee6923c40cd8097afb60c81244f');
INSERT INTO `items` (`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`,`uuid`) values ('34795','20','1.3.6.1.2.1.1.3.0','10407','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management\r\nportion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0810681a8ae74ad8b28ea38119a93f59');
INSERT INTO `items` (`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`,`uuid`) values ('34796','20','1.3.6.1.4.1.318.1.1.1.1.2.3.0','10407','Serial number','system.sn[upsAdvIdentSerialNumber]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nAn 8-character string identifying the serial number of\r\n the UPS internal microprocessor. This number is set at\r\n the factory. NOTE: This number does NOT correspond to\r\n the serial number on the rear of the UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3f61bd561e7d42fbb55b71df9ea3b5b1');
INSERT INTO `items` (`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`,`uuid`) values ('34797','20','1.3.6.1.2.1.1.2.0','10407','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management\r\nsubsystem contained in the entity. This value is allocated within the SMI enterprises\r\nsubtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what\r\nkind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was\r\nassigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1\r\nto its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9f858f7eaed545b8a35ac24e858b0826');
INSERT INTO `items` (`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`,`uuid`) values ('34798','20','1.3.6.1.2.1.1.5.0','10407','System name','system.name[sysName.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By\r\nconvention, this is the node\'s fully-qualified domain name. If the name is unknown,\r\nthe value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b15628c68d4c4e8ca761ad9fa7e40a1c');
INSERT INTO `items` (`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`,`uuid`) values ('34799','20','1.3.6.1.4.1.318.1.1.1.1.1.1.0','10407','Model','system.model[upsBasicIdentModel]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe UPS model name (e.g. \'APC Smart-UPS 600\').','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','64d56d199021432886452fff5a4c6d22');
INSERT INTO `items` (`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`,`uuid`) values ('34800','20','1.3.6.1.2.1.1.6.0','10407','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet,\r\n3rd 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','6a06715ef4c44534a0ebc45f4e5adb5b');
INSERT INTO `items` (`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`,`uuid`) values ('34801','20','1.3.6.1.2.1.1.1.0','10407','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e8c576f27f4c49ef9acd1ba7198ffbb6');
INSERT INTO `items` (`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`,`uuid`) values ('34802','20','1.3.6.1.2.1.1.4.0','10407','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed\r\nnode, together with information on how to contact this person. If no contact\r\ninformation is known, the value is the zero-length string.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8dd800fbbcde431aa421eeb5a33eb798');
INSERT INTO `items` (`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`,`uuid`) values ('34803','17','','10407','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','102179b315b548e289df3459bc5860c1');
INSERT INTO `items` (`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`,`uuid`) values ('34804','20','1.3.6.1.4.1.318.1.1.1.4.3.1.0','10407','Output voltage','output.voltage[upsHighPrecOutputVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe output voltage of the UPS system in VAC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9cf495d14fdf4059b6c35e7857d7a18c');
INSERT INTO `items` (`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`,`uuid`) values ('34805','20','1.3.6.1.4.1.318.1.1.1.4.3.3.0','10407','Output load','output.load[upsHighPrecOutputLoad]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current UPS load expressed as percentage\r\nof rated capacity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d27e991fc0f64b4f9704fb8183567e8d');
INSERT INTO `items` (`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`,`uuid`) values ('34806','20','1.3.6.1.4.1.318.1.1.1.2.2.5.0','10407','External battery packs count','battery.external_packs_count[upsAdvBatteryNumOfBattPacks]','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe number of external battery packs connected to the UPS. If\r\n the UPS does not use smart cells then the agent reports\r\n ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3fea9d328d5342b5bae6b643a0b45495');
INSERT INTO `items` (`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`,`uuid`) values ('34807','20','1.3.6.1.4.1.318.1.1.1.4.3.4.0','10407','Output current','output.current[upsHighPrecOutputCurrent]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe 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','bbb33508be95488680bcb644a44626ef');
INSERT INTO `items` (`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`,`uuid`) values ('34808','20','1.3.6.1.4.1.318.1.1.1.3.3.1.0','10407','Input voltage','input.voltage[upsHighPrecInputLineVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current utility line voltage in VAC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5764182c547143b3b044ec1adb54c1ce');
INSERT INTO `items` (`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`,`uuid`) values ('34809','20','1.3.6.1.4.1.318.1.1.1.3.3.4.0','10407','Input frequency','input.frequency[upsHighPrecInputFrequency]','1m','7d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current input frequency to the UPS system in Hz.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','05ccf5bd85414ee9b5860c80f6e8323f');
INSERT INTO `items` (`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`,`uuid`) values ('34810','20','1.3.6.1.4.1.318.1.1.1.3.2.5.0','10407','Input fail cause','input.fail[upsAdvInputLineFailCause]','1m','7d','365d','0','3','','','','',NULL,'318','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe reason for the occurrence of the last transfer to UPS\r\nbattery power. The variable is set to:\r\n- noTransfer(1) -- if there is no transfer yet.\r\n- highLineVoltage(2) -- if the transfer to battery is caused\r\nby an over voltage greater than the high transfer voltage.\r\n- brownout(3) -- if the duration of the outage is greater than\r\nfive seconds and the line voltage is between 40% of the\r\nrated output voltage and the low transfer voltage.\r\n- blackout(4) -- if the duration of the outage is greater than five\r\nseconds and the line voltage is between 40% of the rated\r\noutput voltage and ground.\r\n- smallMomentarySag(5) -- if the duration of the outage is less\r\nthan five seconds and the line voltage is between 40% of the\r\nrated output voltage and the low transfer voltage.\r\n- deepMomentarySag(6) -- if the duration of the outage is less\r\nthan five seconds and the line voltage is between 40% of the\r\nrated output voltage and ground. The variable is set to\r\n- smallMomentarySpike(7) -- if the line failure is caused by a\r\nrate of change of input voltage less than ten volts per cycle.\r\n- largeMomentarySpike(8) -- if the line failure is caused by\r\na rate of change of input voltage greater than ten volts per cycle.\r\n- selfTest(9) -- if the UPS was commanded to do a self test.\r\n- rateOfVoltageChange(10) -- if the failure is due to the rate of change of\r\nthe line voltage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','13c0d202d19f4b64a52141062c4be6bb');
INSERT INTO `items` (`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`,`uuid`) values ('34811','20','1.3.6.1.4.1.318.1.1.1.2.3.4.0','10407','Battery voltage','battery.voltage[upsHighPrecBatteryActualVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe actual battery bus voltage in Volts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab0f5d86a40b421ba136506f7854bbbd');
INSERT INTO `items` (`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`,`uuid`) values ('34812','20','1.3.6.1.4.1.318.1.1.1.2.3.2.0','10407','Battery temperature','battery.temperature[upsHighPrecBatteryTemperature]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current internal UPS temperature in Celsius.\r\n Temperatures below zero read as 0.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d581eae836342bb8280eb09d7894533');
INSERT INTO `items` (`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`,`uuid`) values ('34813','20','1.3.6.1.4.1.318.1.1.1.2.1.1.0','10407','Battery status','battery.status[upsBasicBatteryStatus]','1m','7d','365d','0','3','','','','',NULL,'319','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe status of the UPS batteries. A batteryLow(3) value\r\n indicates the UPS will be unable to sustain the current\r\n load, and its services will be lost if power is not restored.\r\n The amount of run time in reserve at the time of low battery\r\n can be configured by the upsAdvConfigLowBatteryRunTime.\r\n A batteryInFaultCondition(4)value indicates that a battery\r\n installed has an internal error condition.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c1d818ee115343c8bb41bedb8de7f2bd');
INSERT INTO `items` (`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`,`uuid`) values ('34814','20','1.3.6.1.4.1.318.1.1.1.2.2.3.0','10407','Battery runtime remaining','battery.runtime_remaining[upsAdvBatteryRunTimeRemaining]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe UPS battery run time remaining before battery\r\n exhaustion.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8340b775b76f4e8aad6d3984c63632e9');
INSERT INTO `items` (`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`,`uuid`) values ('34815','20','1.3.6.1.4.1.318.1.1.1.2.2.4.0','10407','Battery replace indicator','battery.replace_indicator[upsAdvBatteryReplaceIndicator]','1m','7d','365d','0','3','','','','',NULL,'317','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nIndicates whether the UPS batteries need replacement.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','731d350450f742d880d81ff2be69e67e');
INSERT INTO `items` (`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`,`uuid`) values ('34816','20','1.3.6.1.4.1.318.1.1.1.2.1.3.0','10407','Battery last replace date','battery.last_replace_date[upsBasicBatteryLastReplaceDate]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe date when the UPS system\'s batteries were last replaced\r\n in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value\r\n is originally set at the factory. When the UPS batteries\r\n are replaced, this value should be reset by the administrator.\r\n 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','f4bd3a4a637640e29f50ebd36fb510e5');
INSERT INTO `items` (`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`,`uuid`) values ('34817','5','','10407','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'321','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9562f60b1cbd4fe08614221e69efd811');
INSERT INTO `items` (`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`,`uuid`) values ('34818','20','discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6]','10407','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','35a885d8f181416db86f2ffe73a30f7f');
INSERT INTO `items` (`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`,`uuid`) values ('34819','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]','10407','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','168bfbfc58ca46509caf54ae3562f0bc');
INSERT INTO `items` (`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`,`uuid`) values ('34820','20','discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3]','10407','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','598521a7c59d425d9deb58c9829e344e');
INSERT INTO `items` (`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`,`uuid`) values ('34821','20','discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3]','10407','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','14e6acae826e4e87b68c04beee67a5cb');
INSERT INTO `items` (`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`,`uuid`) values ('34822','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1]','10407','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','b4f271299e9a47bf8543863a7d9be479');
INSERT INTO `items` (`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`,`uuid`) values ('34823','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1]','10407','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','4232ad35daa3403da085f1ba6c7af348');
INSERT INTO `items` (`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`,`uuid`) values ('34824','20','1.3.6.1.4.1.318.1.1.1.2.2.6.0','10407','{#SNMPINDEX}: External battery packs bad','battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}]','15m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe number of external battery packs connected to the UPS that\r\nare defective. If the UPS does not use smart cells then the\r\nagent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b0b3bb219c534b40ad07f89ac8c43797');
INSERT INTO `items` (`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`,`uuid`) values ('34825','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX}','10407','{#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\r\nThe battery cartridge estimated battery replace date.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3d2e62971cfb4b0a92b51ece740e1a58');
INSERT INTO `items` (`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`,`uuid`) values ('34826','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX}','10407','{#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\r\nThe battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n 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','b49b4836472f45e3b4947048dcd64cf8');
INSERT INTO `items` (`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`,`uuid`) values ('34827','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX}','10407','{#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\r\nThe battery cartridge status.\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','df73a5fd0d964c67857178a936c2dc7d');
INSERT INTO `items` (`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`,`uuid`) values ('34828','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX}','10407','{#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\r\nThe battery pack temperature in Celsius.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','18c46e7d50ee4eefb669705d62e2224c');
INSERT INTO `items` (`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`,`uuid`) values ('34829','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX}','10407','{#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\r\nThe battery pack serial number.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5fadf217f7444f58ba3dca52bc6cff76');
INSERT INTO `items` (`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`,`uuid`) values ('34830','20','1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1','10407','{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current humidity reading - a relative humidity\r\n percentage. -1 indicates an invalid reading due to either a\r\n sensor that doesn\'t read humidity or lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2db30af657574f8f9390002f94b7e249');
INSERT INTO `items` (`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`,`uuid`) values ('34831','20','1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1','10407','{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'316','','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe alarm status of the sensor. Possible values:\r\nuioNormal (1),\r\nuioWarning (2),\r\nuioCritical (3),\r\nsensorStatusNotApplicable (4)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6182750c55f24110b076d95c2cdbd1fa');
INSERT INTO `items` (`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`,`uuid`) values ('34832','20','1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1','10407','{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current temperature reading in Celsius.\r\n -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fc394520f4964a86ac93e87da2fc541b');
INSERT INTO `items` (`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`,`uuid`) values ('34833','20','1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1','10407','{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current humidity reading - a relative humidity\r\n percentage. -1 indicates an invalid reading due to either a\r\n sensor that doesn\'t read humidity or lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5f5df15d6cc4455083f9fa6932d86656');
INSERT INTO `items` (`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`,`uuid`) values ('34834','20','1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1','10407','{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'316','','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe alarm status of the sensor. Possible values:\r\nuioNormal (1),\r\nuioWarning (2),\r\nuioCritical (3),\r\nsensorStatusNotApplicable (4)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ecc2e5c49b004027bb9ccd5498e3d169');
INSERT INTO `items` (`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`,`uuid`) values ('34835','20','1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1','10407','{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current temperature reading in Celsius.\r\n -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f2cd5bb0c8a64b09868ddff9b14e4cbd');
INSERT INTO `items` (`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`,`uuid`) values ('34836','20','1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX}','10407','{#PHASEINDEX}: Phase input current','phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe input current in 0.1 amperes, or -0.1 if it\'s\r\n unsupported by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','161257625bc84427be6cfcd86023c2ec');
INSERT INTO `items` (`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`,`uuid`) values ('34837','20','1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX}','10407','{#PHASEINDEX}: Phase input voltage','phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe input voltage in VAC, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','080719150b424168999c21ff597e6948');
INSERT INTO `items` (`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`,`uuid`) values ('34838','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX}','10407','{#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\r\nThe output current in 0.1 amperes drawn\r\n by the load on the UPS, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2834306ba5464ffaa472c0adddc3d829');
INSERT INTO `items` (`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`,`uuid`) values ('34839','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX}','10407','{#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\r\nThe percentage of the UPS load capacity in VA at\r\n redundancy @ (n + x) presently being used on this\r\n 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','7b0f22672b38492e92c8551c3009baef');
INSERT INTO `items` (`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`,`uuid`) values ('34840','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}','10407','{#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\r\nThe output voltage in VAC, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a590ab8671574e119fe3335110fdee49');
INSERT INTO `items` (`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`,`uuid`) values ('34841','20','1.3.6.1.4.1.318.1.1.1.2.3.1.0','10408','Battery capacity','battery.capacity[upsHighPrecBatteryCapacity]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe remaining battery capacity expressed as\r\n percentage of full capacity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e8257d78c2e24e3cb152886d39bca4fe');
INSERT INTO `items` (`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`,`uuid`) values ('34842','20','1.3.6.1.4.1.318.1.1.1.4.1.1.0','10408','Output status','output.status[upsBasicOutputStatus]','1m','7d','365d','0','3','','','','',NULL,'326','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current state of the UPS. If the UPS is unable to\r\n determine the state of the UPS this variable is set\r\n to unknown(1).\r\nDuring self-test most UPSes report onBattery(3) but\r\n some that support it will report onBatteryTest(15).\r\n To determine self-test status across all UPSes, refer\r\n to the upsBasicStateOutputState OID.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7655b8ff3d5e41f0a5409fcfd646933a');
INSERT INTO `items` (`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`,`uuid`) values ('34843','20','1.3.6.1.2.1.1.3.0','10408','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management\r\nportion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b4ca2f993709413b9a00fa1389ec9e3c');
INSERT INTO `items` (`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`,`uuid`) values ('34844','20','1.3.6.1.4.1.318.1.1.1.1.2.3.0','10408','Serial number','system.sn[upsAdvIdentSerialNumber]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nAn 8-character string identifying the serial number of\r\n the UPS internal microprocessor. This number is set at\r\n the factory. NOTE: This number does NOT correspond to\r\n the serial number on the rear of the UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','64ab7fd8a79448d580ad24ecf488241c');
INSERT INTO `items` (`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`,`uuid`) values ('34845','20','1.3.6.1.2.1.1.2.0','10408','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management\r\nsubsystem contained in the entity. This value is allocated within the SMI enterprises\r\nsubtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what\r\nkind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was\r\nassigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1\r\nto its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f6bd69ea5df144c996f050ded122521e');
INSERT INTO `items` (`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`,`uuid`) values ('34846','20','1.3.6.1.2.1.1.5.0','10408','System name','system.name[sysName.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By\r\nconvention, this is the node\'s fully-qualified domain name. If the name is unknown,\r\nthe value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','155feccece4a4625b98efa206ad5e0b1');
INSERT INTO `items` (`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`,`uuid`) values ('34847','20','1.3.6.1.4.1.318.1.1.1.1.1.1.0','10408','Model','system.model[upsBasicIdentModel]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe UPS model name (e.g. \'APC Smart-UPS 600\').','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd0dc104ded94e4cbba3a8557e642caf');
INSERT INTO `items` (`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`,`uuid`) values ('34848','20','1.3.6.1.2.1.1.6.0','10408','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet,\r\n3rd 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','49b8ef5ff3a3400d8f412d4440040461');
INSERT INTO `items` (`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`,`uuid`) values ('34849','20','1.3.6.1.2.1.1.1.0','10408','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','251cc61592f543e3929aef3cb46f1b34');
INSERT INTO `items` (`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`,`uuid`) values ('34850','20','1.3.6.1.2.1.1.4.0','10408','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed\r\nnode, together with information on how to contact this person. If no contact\r\ninformation is known, the value is the zero-length string.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2d22b58a5c9f4fedbd03862398113546');
INSERT INTO `items` (`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`,`uuid`) values ('34851','17','','10408','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','39dd21c0f2194acaa9fddbdfccde05dd');
INSERT INTO `items` (`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`,`uuid`) values ('34852','20','1.3.6.1.4.1.318.1.1.1.4.3.1.0','10408','Output voltage','output.voltage[upsHighPrecOutputVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe output voltage of the UPS system in VAC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8d93b482d7c549f593c41abb9380ce2f');
INSERT INTO `items` (`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`,`uuid`) values ('34853','20','1.3.6.1.4.1.318.1.1.1.4.3.3.0','10408','Output load','output.load[upsHighPrecOutputLoad]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current UPS load expressed as percentage\r\nof rated capacity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0e5240e578d043609fba4024db8c8df1');
INSERT INTO `items` (`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`,`uuid`) values ('34854','20','1.3.6.1.4.1.318.1.1.1.2.2.5.0','10408','External battery packs count','battery.external_packs_count[upsAdvBatteryNumOfBattPacks]','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe number of external battery packs connected to the UPS. If\r\n the UPS does not use smart cells then the agent reports\r\n ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d26227e3d5754d8493ddaa9c3f5f2b5a');
INSERT INTO `items` (`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`,`uuid`) values ('34855','20','1.3.6.1.4.1.318.1.1.1.4.3.4.0','10408','Output current','output.current[upsHighPrecOutputCurrent]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe 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','9bcae00165414f4aa15a40bc078aa44d');
INSERT INTO `items` (`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`,`uuid`) values ('34856','20','1.3.6.1.4.1.318.1.1.1.3.3.1.0','10408','Input voltage','input.voltage[upsHighPrecInputLineVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current utility line voltage in VAC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c658b02eea284fcf8e302c20a2256cf0');
INSERT INTO `items` (`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`,`uuid`) values ('34857','20','1.3.6.1.4.1.318.1.1.1.3.3.4.0','10408','Input frequency','input.frequency[upsHighPrecInputFrequency]','1m','7d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current input frequency to the UPS system in Hz.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e16be6095dc24b48bc541325b1675dd0');
INSERT INTO `items` (`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`,`uuid`) values ('34858','20','1.3.6.1.4.1.318.1.1.1.3.2.5.0','10408','Input fail cause','input.fail[upsAdvInputLineFailCause]','1m','7d','365d','0','3','','','','',NULL,'324','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe reason for the occurrence of the last transfer to UPS\r\nbattery power. The variable is set to:\r\n- noTransfer(1) -- if there is no transfer yet.\r\n- highLineVoltage(2) -- if the transfer to battery is caused\r\nby an over voltage greater than the high transfer voltage.\r\n- brownout(3) -- if the duration of the outage is greater than\r\nfive seconds and the line voltage is between 40% of the\r\nrated output voltage and the low transfer voltage.\r\n- blackout(4) -- if the duration of the outage is greater than five\r\nseconds and the line voltage is between 40% of the rated\r\noutput voltage and ground.\r\n- smallMomentarySag(5) -- if the duration of the outage is less\r\nthan five seconds and the line voltage is between 40% of the\r\nrated output voltage and the low transfer voltage.\r\n- deepMomentarySag(6) -- if the duration of the outage is less\r\nthan five seconds and the line voltage is between 40% of the\r\nrated output voltage and ground. The variable is set to\r\n- smallMomentarySpike(7) -- if the line failure is caused by a\r\nrate of change of input voltage less than ten volts per cycle.\r\n- largeMomentarySpike(8) -- if the line failure is caused by\r\na rate of change of input voltage greater than ten volts per cycle.\r\n- selfTest(9) -- if the UPS was commanded to do a self test.\r\n- rateOfVoltageChange(10) -- if the failure is due to the rate of change of\r\nthe line voltage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','439c87539027462c9b8210a056887885');
INSERT INTO `items` (`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`,`uuid`) values ('34859','20','1.3.6.1.4.1.318.1.1.1.2.3.4.0','10408','Battery voltage','battery.voltage[upsHighPrecBatteryActualVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe actual battery bus voltage in Volts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ab2309be6cc4eea8697f17e80b015d8');
INSERT INTO `items` (`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`,`uuid`) values ('34860','20','1.3.6.1.4.1.318.1.1.1.2.3.2.0','10408','Battery temperature','battery.temperature[upsHighPrecBatteryTemperature]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current internal UPS temperature in Celsius.\r\n Temperatures below zero read as 0.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','17ffb34351da46e59d2288cd291a7912');
INSERT INTO `items` (`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`,`uuid`) values ('34861','20','1.3.6.1.4.1.318.1.1.1.2.1.1.0','10408','Battery status','battery.status[upsBasicBatteryStatus]','1m','7d','365d','0','3','','','','',NULL,'325','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe status of the UPS batteries. A batteryLow(3) value\r\n indicates the UPS will be unable to sustain the current\r\n load, and its services will be lost if power is not restored.\r\n The amount of run time in reserve at the time of low battery\r\n can be configured by the upsAdvConfigLowBatteryRunTime.\r\n A batteryInFaultCondition(4)value indicates that a battery\r\n installed has an internal error condition.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','322c3b48bcb74fa5829ef41015308d97');
INSERT INTO `items` (`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`,`uuid`) values ('34862','20','1.3.6.1.4.1.318.1.1.1.2.2.3.0','10408','Battery runtime remaining','battery.runtime_remaining[upsAdvBatteryRunTimeRemaining]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe UPS battery run time remaining before battery\r\n exhaustion.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','80a4e6cf09a147a7b166755aa182fdcd');
INSERT INTO `items` (`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`,`uuid`) values ('34863','20','1.3.6.1.4.1.318.1.1.1.2.2.4.0','10408','Battery replace indicator','battery.replace_indicator[upsAdvBatteryReplaceIndicator]','1m','7d','365d','0','3','','','','',NULL,'323','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nIndicates whether the UPS batteries need replacement.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','abb901813d91481baef234496ddece33');
INSERT INTO `items` (`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`,`uuid`) values ('34864','20','1.3.6.1.4.1.318.1.1.1.2.1.3.0','10408','Battery last replace date','battery.last_replace_date[upsBasicBatteryLastReplaceDate]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe date when the UPS system\'s batteries were last replaced\r\n in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value\r\n is originally set at the factory. When the UPS batteries\r\n are replaced, this value should be reset by the administrator.\r\n 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','138afef586634623974c1cefd45281e9');
INSERT INTO `items` (`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`,`uuid`) values ('34865','5','','10408','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'327','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d69889a19b564ed384fc96e8a70971a5');
INSERT INTO `items` (`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`,`uuid`) values ('34866','20','discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6]','10408','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','82e8f10c883546ef8196e071fdd8df91');
INSERT INTO `items` (`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`,`uuid`) values ('34867','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]','10408','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','b615a0d1ef1e49678daa4de77b47623e');
INSERT INTO `items` (`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`,`uuid`) values ('34868','20','discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3]','10408','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','3adfddb03546462a9bcfdc5b059a29cc');
INSERT INTO `items` (`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`,`uuid`) values ('34869','20','discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3]','10408','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','8243825c5bbc42639f8796d1082a4a05');
INSERT INTO `items` (`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`,`uuid`) values ('34870','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1]','10408','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','6d6d6b6a71434315a0bbc38b56d47f49');
INSERT INTO `items` (`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`,`uuid`) values ('34871','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1]','10408','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','a2da2392f78b4b5ea97370ef0f276973');
INSERT INTO `items` (`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`,`uuid`) values ('34872','20','1.3.6.1.4.1.318.1.1.1.2.2.6.0','10408','{#SNMPINDEX}: External battery packs bad','battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}]','15m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe number of external battery packs connected to the UPS that\r\nare defective. If the UPS does not use smart cells then the\r\nagent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7b7ef64f2c3f4c0abeff433279903426');
INSERT INTO `items` (`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`,`uuid`) values ('34873','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX}','10408','{#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\r\nThe battery cartridge estimated battery replace date.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','28f43e10b50d4709a6790d2f7d0552c2');
INSERT INTO `items` (`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`,`uuid`) values ('34874','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX}','10408','{#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\r\nThe battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n 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','ebaf443cd74f4be282939032a843dcef');
INSERT INTO `items` (`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`,`uuid`) values ('34875','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX}','10408','{#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\r\nThe battery cartridge status.\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a415a0d85a1146e6aadfd691fcc5da63');
INSERT INTO `items` (`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`,`uuid`) values ('34876','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX}','10408','{#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\r\nThe battery pack temperature in Celsius.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8d1317fc38034fd78b5cff3b04dce7f1');
INSERT INTO `items` (`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`,`uuid`) values ('34877','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX}','10408','{#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\r\nThe battery pack serial number.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2694e29b9287464898684b711040d75a');
INSERT INTO `items` (`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`,`uuid`) values ('34878','20','1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1','10408','{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current humidity reading - a relative humidity\r\n percentage. -1 indicates an invalid reading due to either a\r\n sensor that doesn\'t read humidity or lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fe2eb706e52849f79781b746db05e753');
INSERT INTO `items` (`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`,`uuid`) values ('34879','20','1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1','10408','{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'322','','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe alarm status of the sensor. Possible values:\r\nuioNormal (1),\r\nuioWarning (2),\r\nuioCritical (3),\r\nsensorStatusNotApplicable (4)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e80af415f8384d0fa54c6954594b5794');
INSERT INTO `items` (`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`,`uuid`) values ('34880','20','1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1','10408','{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current temperature reading in Celsius.\r\n -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c2e3e2ea6df84a609acdc3e05d4ea036');
INSERT INTO `items` (`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`,`uuid`) values ('34881','20','1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1','10408','{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current humidity reading - a relative humidity\r\n percentage. -1 indicates an invalid reading due to either a\r\n sensor that doesn\'t read humidity or lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','22227cb4aa284d9392015e3a2fe20912');
INSERT INTO `items` (`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`,`uuid`) values ('34882','20','1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1','10408','{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'322','','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe alarm status of the sensor. Possible values:\r\nuioNormal (1),\r\nuioWarning (2),\r\nuioCritical (3),\r\nsensorStatusNotApplicable (4)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a140c9eaef4049278bc5f2bfd28d0339');
INSERT INTO `items` (`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`,`uuid`) values ('34883','20','1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1','10408','{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current temperature reading in Celsius.\r\n -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','69ca20795352489b9efc0a0c0cc1b27f');
INSERT INTO `items` (`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`,`uuid`) values ('34884','20','1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX}','10408','{#PHASEINDEX}: Phase input current','phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe input current in 0.1 amperes, or -0.1 if it\'s\r\n unsupported by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','45def82313f74727826a0db8aa18eecc');
INSERT INTO `items` (`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`,`uuid`) values ('34885','20','1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX}','10408','{#PHASEINDEX}: Phase input voltage','phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe input voltage in VAC, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e6d933f8a79248539fa9b5ce447813b5');
INSERT INTO `items` (`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`,`uuid`) values ('34886','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX}','10408','{#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\r\nThe output current in 0.1 amperes drawn\r\n by the load on the UPS, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16117cb258304fb8bc2660ff4b80cc1c');
INSERT INTO `items` (`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`,`uuid`) values ('34887','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX}','10408','{#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\r\nThe percentage of the UPS load capacity in VA at\r\n redundancy @ (n + x) presently being used on this\r\n 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','177f5c2dcfac4bb997f778dcd58ba638');
INSERT INTO `items` (`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`,`uuid`) values ('34888','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}','10408','{#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\r\nThe output voltage in VAC, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc7c08b1bf924507b6d15cd9105926a5');
INSERT INTO `items` (`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`,`uuid`) values ('34889','20','1.3.6.1.4.1.318.1.1.1.2.3.1.0','10409','Battery capacity','battery.capacity[upsHighPrecBatteryCapacity]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe remaining battery capacity expressed as\r\n percentage of full capacity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0f45eeef24724e3b89760b04bfd037ae');
INSERT INTO `items` (`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`,`uuid`) values ('34890','20','1.3.6.1.4.1.318.1.1.1.4.1.1.0','10409','Output status','output.status[upsBasicOutputStatus]','1m','7d','365d','0','3','','','','',NULL,'332','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current state of the UPS. If the UPS is unable to\r\n determine the state of the UPS this variable is set\r\n to unknown(1).\r\nDuring self-test most UPSes report onBattery(3) but\r\n some that support it will report onBatteryTest(15).\r\n To determine self-test status across all UPSes, refer\r\n to the upsBasicStateOutputState OID.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f8e4bcaa71e045e09af82ee739202778');
INSERT INTO `items` (`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`,`uuid`) values ('34891','20','1.3.6.1.2.1.1.3.0','10409','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management\r\nportion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4aac942cab30432d81c4df32e01af5e2');
INSERT INTO `items` (`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`,`uuid`) values ('34892','20','1.3.6.1.4.1.318.1.1.1.1.2.3.0','10409','Serial number','system.sn[upsAdvIdentSerialNumber]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nAn 8-character string identifying the serial number of\r\n the UPS internal microprocessor. This number is set at\r\n the factory. NOTE: This number does NOT correspond to\r\n the serial number on the rear of the UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0e72609b44094aff8acfa58b63ca97ba');
INSERT INTO `items` (`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`,`uuid`) values ('34893','20','1.3.6.1.2.1.1.2.0','10409','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management\r\nsubsystem contained in the entity. This value is allocated within the SMI enterprises\r\nsubtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what\r\nkind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was\r\nassigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1\r\nto its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0d3fcfce413a4f6aaaa2390183ab0c82');
INSERT INTO `items` (`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`,`uuid`) values ('34894','20','1.3.6.1.2.1.1.5.0','10409','System name','system.name[sysName.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By\r\nconvention, this is the node\'s fully-qualified domain name. If the name is unknown,\r\nthe value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c521e1e94da4dd2bd71719bf20e14b8');
INSERT INTO `items` (`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`,`uuid`) values ('34895','20','1.3.6.1.4.1.318.1.1.1.1.1.1.0','10409','Model','system.model[upsBasicIdentModel]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe UPS model name (e.g. \'APC Smart-UPS 600\').','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c5b88814e4c4dc9b90ed4a5e49a91ca');
INSERT INTO `items` (`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`,`uuid`) values ('34896','20','1.3.6.1.2.1.1.6.0','10409','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet,\r\n3rd 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','be1280a6b2d84393ad001113bf7c80f2');
INSERT INTO `items` (`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`,`uuid`) values ('34897','20','1.3.6.1.2.1.1.1.0','10409','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9bca97c1e308421b82f4769151f5177e');
INSERT INTO `items` (`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`,`uuid`) values ('34898','20','1.3.6.1.2.1.1.4.0','10409','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed\r\nnode, together with information on how to contact this person. If no contact\r\ninformation is known, the value is the zero-length string.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1de71b45323b4eb5bc1a38315d56ce58');
INSERT INTO `items` (`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`,`uuid`) values ('34899','17','','10409','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','c892c7f2ddcd4e15b1d5ab907cd70dcf');
INSERT INTO `items` (`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`,`uuid`) values ('34900','20','1.3.6.1.4.1.318.1.1.1.4.3.1.0','10409','Output voltage','output.voltage[upsHighPrecOutputVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe output voltage of the UPS system in VAC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e7969358cce84f3eb749b1c43d96c583');
INSERT INTO `items` (`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`,`uuid`) values ('34901','20','1.3.6.1.4.1.318.1.1.1.4.3.3.0','10409','Output load','output.load[upsHighPrecOutputLoad]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current UPS load expressed as percentage\r\nof rated capacity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3ac052b6b4e241d9af470b70212ab8d3');
INSERT INTO `items` (`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`,`uuid`) values ('34902','20','1.3.6.1.4.1.318.1.1.1.2.2.5.0','10409','External battery packs count','battery.external_packs_count[upsAdvBatteryNumOfBattPacks]','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe number of external battery packs connected to the UPS. If\r\n the UPS does not use smart cells then the agent reports\r\n ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a40074f9db134bc8bc4bd9800906137d');
INSERT INTO `items` (`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`,`uuid`) values ('34903','20','1.3.6.1.4.1.318.1.1.1.4.3.4.0','10409','Output current','output.current[upsHighPrecOutputCurrent]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe 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','71cfc894a29f4bffb1f4199e0010aea0');
INSERT INTO `items` (`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`,`uuid`) values ('34904','20','1.3.6.1.4.1.318.1.1.1.3.3.1.0','10409','Input voltage','input.voltage[upsHighPrecInputLineVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current utility line voltage in VAC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5478b17ba84c4f12bc1ffa7dfc507ae1');
INSERT INTO `items` (`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`,`uuid`) values ('34905','20','1.3.6.1.4.1.318.1.1.1.3.3.4.0','10409','Input frequency','input.frequency[upsHighPrecInputFrequency]','1m','7d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current input frequency to the UPS system in Hz.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ab48c798ac94773b37228a8f725efd0');
INSERT INTO `items` (`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`,`uuid`) values ('34906','20','1.3.6.1.4.1.318.1.1.1.3.2.5.0','10409','Input fail cause','input.fail[upsAdvInputLineFailCause]','1m','7d','365d','0','3','','','','',NULL,'330','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe reason for the occurrence of the last transfer to UPS\r\nbattery power. The variable is set to:\r\n- noTransfer(1) -- if there is no transfer yet.\r\n- highLineVoltage(2) -- if the transfer to battery is caused\r\nby an over voltage greater than the high transfer voltage.\r\n- brownout(3) -- if the duration of the outage is greater than\r\nfive seconds and the line voltage is between 40% of the\r\nrated output voltage and the low transfer voltage.\r\n- blackout(4) -- if the duration of the outage is greater than five\r\nseconds and the line voltage is between 40% of the rated\r\noutput voltage and ground.\r\n- smallMomentarySag(5) -- if the duration of the outage is less\r\nthan five seconds and the line voltage is between 40% of the\r\nrated output voltage and the low transfer voltage.\r\n- deepMomentarySag(6) -- if the duration of the outage is less\r\nthan five seconds and the line voltage is between 40% of the\r\nrated output voltage and ground. The variable is set to\r\n- smallMomentarySpike(7) -- if the line failure is caused by a\r\nrate of change of input voltage less than ten volts per cycle.\r\n- largeMomentarySpike(8) -- if the line failure is caused by\r\na rate of change of input voltage greater than ten volts per cycle.\r\n- selfTest(9) -- if the UPS was commanded to do a self test.\r\n- rateOfVoltageChange(10) -- if the failure is due to the rate of change of\r\nthe line voltage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','598c1b4cc957455b84c2edcbe844e169');
INSERT INTO `items` (`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`,`uuid`) values ('34907','20','1.3.6.1.4.1.318.1.1.1.2.3.4.0','10409','Battery voltage','battery.voltage[upsHighPrecBatteryActualVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe actual battery bus voltage in Volts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ae8516a825b94d90b267371934bc452f');
INSERT INTO `items` (`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`,`uuid`) values ('34908','20','1.3.6.1.4.1.318.1.1.1.2.3.2.0','10409','Battery temperature','battery.temperature[upsHighPrecBatteryTemperature]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current internal UPS temperature in Celsius.\r\n Temperatures below zero read as 0.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','59cc2d65eca142adb00ec80e237b134e');
INSERT INTO `items` (`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`,`uuid`) values ('34909','20','1.3.6.1.4.1.318.1.1.1.2.1.1.0','10409','Battery status','battery.status[upsBasicBatteryStatus]','1m','7d','365d','0','3','','','','',NULL,'331','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe status of the UPS batteries. A batteryLow(3) value\r\n indicates the UPS will be unable to sustain the current\r\n load, and its services will be lost if power is not restored.\r\n The amount of run time in reserve at the time of low battery\r\n can be configured by the upsAdvConfigLowBatteryRunTime.\r\n A batteryInFaultCondition(4)value indicates that a battery\r\n installed has an internal error condition.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a5ccdee4e5ff49f183adab8a283e88a0');
INSERT INTO `items` (`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`,`uuid`) values ('34910','20','1.3.6.1.4.1.318.1.1.1.2.2.3.0','10409','Battery runtime remaining','battery.runtime_remaining[upsAdvBatteryRunTimeRemaining]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe UPS battery run time remaining before battery\r\n exhaustion.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','849b9ffa0c0b4dd59e7c5a544a135fa3');
INSERT INTO `items` (`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`,`uuid`) values ('34911','20','1.3.6.1.4.1.318.1.1.1.2.2.4.0','10409','Battery replace indicator','battery.replace_indicator[upsAdvBatteryReplaceIndicator]','1m','7d','365d','0','3','','','','',NULL,'329','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nIndicates whether the UPS batteries need replacement.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','810c9cd371c14e44b8670ad3f4e003d5');
INSERT INTO `items` (`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`,`uuid`) values ('34912','20','1.3.6.1.4.1.318.1.1.1.2.1.3.0','10409','Battery last replace date','battery.last_replace_date[upsBasicBatteryLastReplaceDate]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe date when the UPS system\'s batteries were last replaced\r\n in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value\r\n is originally set at the factory. When the UPS batteries\r\n are replaced, this value should be reset by the administrator.\r\n 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','c069bb03f58a47b981448a33a1663463');
INSERT INTO `items` (`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`,`uuid`) values ('34913','5','','10409','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'333','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','582ff80b2df049b8acf233ad4dbfe1f1');
INSERT INTO `items` (`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`,`uuid`) values ('34914','20','discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6]','10409','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','eddb568fd0e34398bcee7d39a6f76319');
INSERT INTO `items` (`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`,`uuid`) values ('34915','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]','10409','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','0c31de1650b94f8cabef339e2ef009e3');
INSERT INTO `items` (`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`,`uuid`) values ('34916','20','discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3]','10409','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','93941e38fd2d4b48bd8b50179692cb56');
INSERT INTO `items` (`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`,`uuid`) values ('34917','20','discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3]','10409','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','7cd4c33584004a6d811478e8a83e0898');
INSERT INTO `items` (`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`,`uuid`) values ('34918','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1]','10409','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','88032aa9a832464ca2a077271113e7c9');
INSERT INTO `items` (`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`,`uuid`) values ('34919','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1]','10409','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','262343758e9649a8a6fe2b77631f66df');
INSERT INTO `items` (`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`,`uuid`) values ('34920','20','1.3.6.1.4.1.318.1.1.1.2.2.6.0','10409','{#SNMPINDEX}: External battery packs bad','battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}]','15m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe number of external battery packs connected to the UPS that\r\nare defective. If the UPS does not use smart cells then the\r\nagent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','11c16d0e18a745679bcf8546cb8f0641');
INSERT INTO `items` (`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`,`uuid`) values ('34921','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX}','10409','{#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\r\nThe battery cartridge estimated battery replace date.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6bd2d90f306e4252b5fc44eab860f4ab');
INSERT INTO `items` (`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`,`uuid`) values ('34922','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX}','10409','{#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\r\nThe battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n 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','c4a7061be8f64f398ad0f3c52db29bbd');
INSERT INTO `items` (`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`,`uuid`) values ('34923','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX}','10409','{#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\r\nThe battery cartridge status.\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8f5b3a61acad491f8ca6860f6201252d');
INSERT INTO `items` (`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`,`uuid`) values ('34924','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX}','10409','{#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\r\nThe battery pack temperature in Celsius.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','346f2ab5b340401880c63a6cb9eec949');
INSERT INTO `items` (`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`,`uuid`) values ('34925','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX}','10409','{#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\r\nThe battery pack serial number.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','230fc138d8f64c4f9eeee438d42b519e');
INSERT INTO `items` (`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`,`uuid`) values ('34926','20','1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1','10409','{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current humidity reading - a relative humidity\r\n percentage. -1 indicates an invalid reading due to either a\r\n sensor that doesn\'t read humidity or lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','15f23c88f9b24580add63b69fb8a41de');
INSERT INTO `items` (`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`,`uuid`) values ('34927','20','1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1','10409','{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'328','','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe alarm status of the sensor. Possible values:\r\nuioNormal (1),\r\nuioWarning (2),\r\nuioCritical (3),\r\nsensorStatusNotApplicable (4)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','230f3e596bbc4cb6961eda599da74f5e');
INSERT INTO `items` (`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`,`uuid`) values ('34928','20','1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1','10409','{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current temperature reading in Celsius.\r\n -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f777176e1d7b4e328209aeeced8e680b');
INSERT INTO `items` (`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`,`uuid`) values ('34929','20','1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1','10409','{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current humidity reading - a relative humidity\r\n percentage. -1 indicates an invalid reading due to either a\r\n sensor that doesn\'t read humidity or lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3a933ac0f9b2425d9929ed244a3ce61a');
INSERT INTO `items` (`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`,`uuid`) values ('34930','20','1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1','10409','{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'328','','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe alarm status of the sensor. Possible values:\r\nuioNormal (1),\r\nuioWarning (2),\r\nuioCritical (3),\r\nsensorStatusNotApplicable (4)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b8a37686d5374b4fa05717987e54c2f6');
INSERT INTO `items` (`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`,`uuid`) values ('34931','20','1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1','10409','{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current temperature reading in Celsius.\r\n -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','15e3cf28f89043029e722b1813737c6c');
INSERT INTO `items` (`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`,`uuid`) values ('34932','20','1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX}','10409','{#PHASEINDEX}: Phase input current','phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe input current in 0.1 amperes, or -0.1 if it\'s\r\n unsupported by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d6afc20571ce43fa9861ef6c1e17d6c8');
INSERT INTO `items` (`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`,`uuid`) values ('34933','20','1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX}','10409','{#PHASEINDEX}: Phase input voltage','phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe input voltage in VAC, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6993631adffb41fabc7995bd9158e448');
INSERT INTO `items` (`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`,`uuid`) values ('34934','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX}','10409','{#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\r\nThe output current in 0.1 amperes drawn\r\n by the load on the UPS, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6bed63601e6b426799b860dc5e2ea8b2');
INSERT INTO `items` (`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`,`uuid`) values ('34935','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX}','10409','{#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\r\nThe percentage of the UPS load capacity in VA at\r\n redundancy @ (n + x) presently being used on this\r\n 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','5ec8aae1e2b24350b005d0177b164e6b');
INSERT INTO `items` (`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`,`uuid`) values ('34936','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}','10409','{#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\r\nThe output voltage in VAC, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3da95223adfc4d638406c6908bba7063');
INSERT INTO `items` (`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`,`uuid`) values ('34937','16','','10410','WildFly: Uptime','jmx["java.lang:type=Runtime","Uptime"]','1m','7d','365d','0','3','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'WildFly server uptime.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa30358b46024aef8fa2e3ba387c4fb9');
INSERT INTO `items` (`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`,`uuid`) values ('34938','16','','10410','WildFly: Launch type','jmx["jboss.as:management-root=server","launchType"]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The manner in which the server process was launched. Either "DOMAIN" for a domain mode server launched by a Host Controller, "STANDALONE" for a standalone server launched from the command line, or "EMBEDDED" for a standalone server launched as an embedded part of an application running in the same virtual machine.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c0653e99ddb4f26ae12ce4d6ce9892c');
INSERT INTO `items` (`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`,`uuid`) values ('34939','16','','10410','WildFly: Name','jmx["jboss.as:management-root=server","name"]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'For standalone mode: The name of this server. If not set, defaults to the runtime value of InetAddress.getLocalHost().getHostName().\r\nFor domain mode: The name given to this domain','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5412059106e844ae89f6f84b4da42388');
INSERT INTO `items` (`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`,`uuid`) values ('34940','16','','10410','WildFly: Process type','jmx["jboss.as:management-root=server","processType"]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The type of process represented by this root resource.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d5e2f5e277874567a5d46196fd032298');
INSERT INTO `items` (`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`,`uuid`) values ('34941','16','','10410','WildFly: Version','jmx["jboss.as:management-root=server","productVersion"]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The version of the WildFly Core based product release','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f1bb15824f384e21bb9ae1224abd18e0');
INSERT INTO `items` (`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`,`uuid`) values ('34942','16','','10410','Deployments discovery','jmx.get[beans,"jboss.as.expr:deployment=*,server-group=*"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','1',NULL,'Discovery deployments metrics.','0','30d','1','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3af697e56771487abee9f62e453fb0c3');
INSERT INTO `items` (`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`,`uuid`) values ('34943','16','','10410','Servers discovery','jmx.get[beans,"jboss.as:host=master,server-config=*"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','1',NULL,'Discovery instances in domain.','0','30d','1','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da7f7dfad0c1440a8980693870364baa');
INSERT INTO `items` (`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`,`uuid`) values ('34944','16','','10410','WildFly deployment [{#DEPLOYMENT}]: Enabled','jmx["{#JMXOBJ}",enabled]','1m','7d','365d','0','3','','','','',NULL,'334','','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'Boolean indicating whether the deployment content is currently deployed in the runtime (or should be deployed in the runtime the next time the server starts.)','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e6b1bebba5da4ce493ba7edf869c37b3');
INSERT INTO `items` (`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`,`uuid`) values ('34945','16','','10410','WildFly deployment [{#DEPLOYMENT}]: Managed','jmx["{#JMXOBJ}",managed]','1m','7d','365d','0','3','','','','',NULL,'334','','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'Indicates if the deployment is managed (aka uses the ContentRepository).','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','45d729721df34ef297109b58027ca4c1');
INSERT INTO `items` (`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`,`uuid`) values ('34946','16','','10410','WildFly domain: Server {#SERVER}: Autostart','jmx["{#JMXOBJ}",autoStart]','1m','7d','365d','0','3','','','','',NULL,'334','','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'Whether or not this server should be started when the Host Controller starts.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d0938bbf20854315bd5cf17491b0ae1c');
INSERT INTO `items` (`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`,`uuid`) values ('34947','16','','10410','WildFly domain: Server {#SERVER}: Server group','jmx["{#JMXOBJ}",group]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The name of a server group from the domain model.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd544e2d41c148f993b84ca7d1aad4a9');
INSERT INTO `items` (`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`,`uuid`) values ('34948','16','','10410','WildFly domain: Server {#SERVER}: Status','jmx["{#JMXOBJ}",status]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The current status of the server.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','64a8a71b3d254a479ce4e5ea82f566ee');
INSERT INTO `items` (`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`,`uuid`) values ('34949','16','','10411','WildFly: Uptime','jmx["java.lang:type=Runtime","Uptime"]','1m','7d','365d','0','3','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'WildFly server uptime.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9b9fce7f4b4945fea45feaa5b213c186');
INSERT INTO `items` (`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`,`uuid`) values ('34950','16','','10411','WildFly: Transactions: Committed, rate','jmx["jboss.as:subsystem=transactions","numberOfCommittedTransactions"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The number of committed transactions','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c157932072e416baed45a2350a3bd66');
INSERT INTO `items` (`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`,`uuid`) values ('34951','16','','10411','WildFly: Transactions: Timed out, rate','jmx["jboss.as:subsystem=transactions","numberOfTimedOutTransactions"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The number of transactions that have rolled back due to timeout.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','90f1a21c335b42928455d31635bfd11d');
INSERT INTO `items` (`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`,`uuid`) values ('34952','16','','10411','WildFly: Transactions: System rollbacks, rate','jmx["jboss.as:subsystem=transactions","numberOfSystemRollbacks"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The number of transactions that have been rolled back due to internal system errors.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6ca6b59da5da4d7cb6fbacd2bdd37996');
INSERT INTO `items` (`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`,`uuid`) values ('34953','16','','10411','WildFly: Transactions: ResourceRollbacks, rate','jmx["jboss.as:subsystem=transactions","numberOfResourceRollbacks"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The number of transactions that rolled back due to resource (participant) failure.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b1f782b6d71b4cc698a3f0d3b9d03a8d');
INSERT INTO `items` (`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`,`uuid`) values ('34954','16','','10411','WildFly: Transactions: Nested, rate','jmx["jboss.as:subsystem=transactions","numberOfNestedTransactions"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The total number of nested (sub) transactions created.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6ca1501ec2904b7b875d2f9bfa127e10');
INSERT INTO `items` (`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`,`uuid`) values ('34955','16','','10411','WildFly: Transactions: Current','jmx["jboss.as:subsystem=transactions","numberOfInflightTransactions"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The number of transactions that have begun but not yet terminated.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','50ba79375dbf48c8b86c3d8654576186');
INSERT INTO `items` (`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`,`uuid`) values ('34956','16','','10411','WildFly: Transactions: Heuristics, rate','jmx["jboss.as:subsystem=transactions","numberOfHeuristics"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The number of transactions which have terminated with heuristic outcomes.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','82958fc3169c42d2bb0c9dc29e341b8f');
INSERT INTO `items` (`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`,`uuid`) values ('34957','16','','10411','WildFly: Transactions: Application rollbacks, rate','jmx["jboss.as:subsystem=transactions","numberOfApplicationRollbacks"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The number of transactions that have been rolled back by application request. This includes those that timeout, since the timeout behavior is considered an attribute of the application configuration.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','035752468405481a9e0c4c60e662eadc');
INSERT INTO `items` (`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`,`uuid`) values ('34958','16','','10411','WildFly: Launch type','jmx["jboss.as:management-root=server","launchType"]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The manner in which the server process was launched. Either "DOMAIN" for a domain mode server launched by a Host Controller, "STANDALONE" for a standalone server launched from the command line, or "EMBEDDED" for a standalone server launched as an embedded part of an application running in the same virtual machine.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','daf104c5cafe4879b79fb30fca99c838');
INSERT INTO `items` (`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`,`uuid`) values ('34959','16','','10411','WildFly: Transactions: Aborted, rate','jmx["jboss.as:subsystem=transactions","numberOfAbortedTransactions"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The number of aborted (i.e. rolledback) transactions per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2986d57975334b0bbf6bd687df457c26');
INSERT INTO `items` (`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`,`uuid`) values ('34960','16','','10411','WildFly: Server controller state','jmx["jboss.as:management-root=server","serverState"]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The current state of the server controller; either STARTING, RUNNING, RESTART_REQUIRED, RELOAD_REQUIRED or STOPPING.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cd57068c6e18440a8e14c0b4fc5c6c78');
INSERT INTO `items` (`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`,`uuid`) values ('34961','16','','10411','WildFly: Runtime configuration state','jmx["jboss.as:management-root=server","runtimeConfigurationState"]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The current persistent configuration state, one of starting, ok, reload-required, restart-required, stopping or stopped.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','855c96cf1b3d4ef691f7693ba5f8357f');
INSERT INTO `items` (`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`,`uuid`) values ('34962','16','','10411','WildFly: Version','jmx["jboss.as:management-root=server","productVersion"]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The version of the WildFly Core based product release','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0238c33ca0f045a7b1376cd5b3048bf0');
INSERT INTO `items` (`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`,`uuid`) values ('34963','16','','10411','WildFly: Process type','jmx["jboss.as:management-root=server","processType"]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The type of process represented by this root resource.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','98dd8a8de5f240998bebaf28c8d1bbe2');
INSERT INTO `items` (`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`,`uuid`) values ('34964','16','','10411','WildFly: Name','jmx["jboss.as:management-root=server","name"]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'For standalone mode: The name of this server. If not set, defaults to the runtime value of InetAddress.getLocalHost().getHostName().\r\nFor domain mode: The name given to this domain','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b3c30ba00ac54677a944cda7ec8536af');
INSERT INTO `items` (`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`,`uuid`) values ('34965','16','','10411','WildFly: Transactions: Total, rate','jmx["jboss.as:subsystem=transactions","numberOfTransactions"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The total number of transactions (top-level and nested) created per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a0c40292c62e4d51a96db3e07967b17c');
INSERT INTO `items` (`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`,`uuid`) values ('34966','16','','10411','Deployments discovery','jmx.get[beans,"jboss.as.expr:deployment=*"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','1',NULL,'Discovery deployments metrics.','0','30d','1','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9dbbe152925245f8a1f3bf5c32ae49c0');
INSERT INTO `items` (`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`,`uuid`) values ('34967','16','','10411','JDBC metrics discovery','jmx.get[beans,"jboss.as:subsystem=datasources,data-source=*,statistics=jdbc"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','1',NULL,'','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8e3d5fe1a5a348169c15217bd083abf5');
INSERT INTO `items` (`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`,`uuid`) values ('34968','16','','10411','Pools metrics discovery','jmx.get[beans,"jboss.as:subsystem=datasources,data-source=*,statistics=pool"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','1',NULL,'','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f8fd6899dafb4247853bd3ed3fbabd48');
INSERT INTO `items` (`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`,`uuid`) values ('34969','16','','10411','Undertow metrics discovery','jmx.get[beans,"jboss.as:subsystem=undertow,server=*,http-listener=*"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','1',NULL,'','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0a566b1e160649cdb5fda18d3b157733');
INSERT INTO `items` (`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`,`uuid`) values ('34970','16','','10411','WildFly deployment [{#DEPLOYMENT}]: Enabled time','jmx["{#JMXOBJ}",enabledTime]','1m','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'Indicates if the deployment is managed (aka uses the ContentRepository).','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','52d99e3f76b4464fbf47271243682d05');
INSERT INTO `items` (`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`,`uuid`) values ('34971','16','','10411','WildFly deployment [{#DEPLOYMENT}]: Enabled','jmx["{#JMXOBJ}",enabled]','1m','7d','365d','0','3','','','','',NULL,'335','','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'Boolean indicating whether the deployment content is currently deployed in the runtime (or should be deployed in the runtime the next time the server starts.)','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8942cf5bc803401cac2f4d9ea943f1fe');
INSERT INTO `items` (`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`,`uuid`) values ('34972','16','','10411','WildFly deployment [{#DEPLOYMENT}]: Managed','jmx["{#JMXOBJ}",managed]','1m','7d','365d','0','3','','','','',NULL,'335','','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'Indicates if the deployment is managed (aka uses the ContentRepository).','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f633e596ddcc4620a193243c80a6633b');
INSERT INTO `items` (`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`,`uuid`) values ('34973','16','','10411','WildFly deployment [{#DEPLOYMENT}]: Persistent','jmx["{#JMXOBJ}",persistent]','1m','7d','365d','0','3','','','','',NULL,'335','','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'Indicates if the deployment is managed (aka uses the ContentRepository).','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','498f0d31a5044b91b4aa8af621011919');
INSERT INTO `items` (`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`,`uuid`) values ('34974','16','','10411','WildFly deployment [{#DEPLOYMENT}]: Status','jmx["{#JMXOBJ}",status]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The current runtime status of a deployment.\r\nPossible status modes are OK, FAILED, and STOPPED.\r\nFAILED indicates a dependency is missing or a service could not start.\r\nSTOPPED indicates that the deployment was not enabled or was manually stopped.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d5dd67dc20c54ef1921da9c9a068ad29');
INSERT INTO `items` (`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`,`uuid`) values ('34975','16','','10411','WildFly {#JMX_DATA_SOURCE}: Cache access, rate','jmx["{#JMXOBJ}",PreparedStatementCacheAccessCount]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of times that the statement cache was accessed per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6c0c0f94300148eda82224da1bc73bd1');
INSERT INTO `items` (`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`,`uuid`) values ('34976','16','','10411','WildFly {#JMX_DATA_SOURCE}: Cache add, rate','jmx["{#JMXOBJ}",PreparedStatementCacheAddCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of statements added to the statement cache per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0857fb4d2d2447a0b0dede21bb4b4bd5');
INSERT INTO `items` (`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`,`uuid`) values ('34977','16','','10411','WildFly {#JMX_DATA_SOURCE}: Cache current size','jmx["{#JMXOBJ}",PreparedStatementCacheCurrentSize]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of prepared and callable statements currently cached in the statement cache.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bf368224ed444311ae1af4098c4bdb1f');
INSERT INTO `items` (`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`,`uuid`) values ('34978','16','','10411','WildFly {#JMX_DATA_SOURCE}: Cache delete, rate','jmx["{#JMXOBJ}",PreparedStatementCacheDeleteCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of statements discarded from the cache per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9c08f05299774a538a52be2c11e62cda');
INSERT INTO `items` (`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`,`uuid`) values ('34979','16','','10411','WildFly {#JMX_DATA_SOURCE}: Cache hit, rate','jmx["{#JMXOBJ}",PreparedStatementCacheHitCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of times that statements from the cache were used per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dbe7bc3d9a8a46c6a84b956f0a9e33be');
INSERT INTO `items` (`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`,`uuid`) values ('34980','16','','10411','WildFly {#JMX_DATA_SOURCE}: Cache miss, rate','jmx["{#JMXOBJ}",PreparedStatementCacheMissCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of times that a statement request could not be satisfied with a statement from the cache per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0e81a30b802941c4bc0e34a10a8d0573');
INSERT INTO `items` (`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`,`uuid`) values ('34981','16','','10411','WildFly {#JMX_DATA_SOURCE}: Statistics enabled','jmx["{#JMXOBJ}",statisticsEnabled]','1m','7d','365d','0','3','','','','',NULL,'335','','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'Define whether runtime statistics are enabled or not.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','81dbce02ad4d492ebebd1a205bea1b43');
INSERT INTO `items` (`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`,`uuid`) values ('34982','16','','10411','WildFly {#JMX_DATA_SOURCE}: Connections: Active','jmx["{#JMXOBJ}",ActiveCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of open connections.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','06d61e390b0e403e81b1eaa77815cde2');
INSERT INTO `items` (`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`,`uuid`) values ('34983','16','','10411','WildFly {#JMX_DATA_SOURCE}: XA: Commit time, avg','jmx["{#JMXOBJ}",XACommitAverageTime]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The average time for a XAResource commit invocation.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c22389aa983a4cdca504e3cc41126f03');
INSERT INTO `items` (`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`,`uuid`) values ('34984','16','','10411','WildFly {#JMX_DATA_SOURCE}: XA: Start time, avg','jmx["{#JMXOBJ}",XAStartAverageTime]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The average time for a XAResource start invocation.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab9c32db31d84a46967c1f601f11f610');
INSERT INTO `items` (`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`,`uuid`) values ('34985','16','','10411','WildFly {#JMX_DATA_SOURCE}: XA: Rollback, rate','jmx["{#JMXOBJ}",XARollbackCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of XAResource rollback invocations per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0c0749b041124e1ebb11396344517c01');
INSERT INTO `items` (`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`,`uuid`) values ('34986','16','','10411','WildFly {#JMX_DATA_SOURCE}: XA: Rollback time, avg','jmx["{#JMXOBJ}",XARollbackAverageTime]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The average time for a XAResource rollback invocation.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd64f91e953249e993c3c388f3382ff4');
INSERT INTO `items` (`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`,`uuid`) values ('34987','16','','10411','WildFly {#JMX_DATA_SOURCE}: XA: Recover, rate','jmx["{#JMXOBJ}",XARecoverCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of XAResource recover invocations per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d7a3de25f6a74c75b65bc9c83decc1ac');
INSERT INTO `items` (`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`,`uuid`) values ('34988','16','','10411','WildFly {#JMX_DATA_SOURCE}: XA: Recover time, avg','jmx["{#JMXOBJ}",XARecoverAverageTime]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The average time for a XAResource recover invocation.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','30f0474a666547c39e0d793decd0be57');
INSERT INTO `items` (`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`,`uuid`) values ('34989','16','','10411','WildFly {#JMX_DATA_SOURCE}: XA: Prepare, rate','jmx["{#JMXOBJ}",XAPrepareCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of XAResource prepare invocations per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','96c723883cfa416b9e030e5d42836de3');
INSERT INTO `items` (`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`,`uuid`) values ('34990','16','','10411','WildFly {#JMX_DATA_SOURCE}: XA: Prepare time, avg','jmx["{#JMXOBJ}",XAPrepareAverageTime]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The average time for a XAResource prepare invocation.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4513aff93c8a404389aaf58b28aab5b1');
INSERT INTO `items` (`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`,`uuid`) values ('34991','16','','10411','WildFly {#JMX_DATA_SOURCE}: XA: Forget, rate','jmx["{#JMXOBJ}",XAForgetCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of XAResource forget invocations per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','685173455b424a5aa5463670c1718314');
INSERT INTO `items` (`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`,`uuid`) values ('34992','16','','10411','WildFly {#JMX_DATA_SOURCE}: XA: Forget time, avg','jmx["{#JMXOBJ}",XAForgetAverageTime]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The average time for a XAResource forget invocation.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b5028a44fa2b4347abe11177d61567e2');
INSERT INTO `items` (`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`,`uuid`) values ('34993','16','','10411','WildFly {#JMX_DATA_SOURCE}: XA: End, rate','jmx["{#JMXOBJ}",XAEndCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of XAResource end invocations per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c51dd8821ace4724ae965d7ca6f3ebdd');
INSERT INTO `items` (`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`,`uuid`) values ('34994','16','','10411','WildFly {#JMX_DATA_SOURCE}: XA: End time, avg','jmx["{#JMXOBJ}",XAEndAverageTime]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The average time for a XAResource end invocation.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6f15c885d49e4c1a89bd52b0b4ff0035');
INSERT INTO `items` (`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`,`uuid`) values ('34995','16','','10411','WildFly {#JMX_DATA_SOURCE}: XA: Commit, rate','jmx["{#JMXOBJ}",XACommitCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of XAResource commit invocations per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2510b507e62c4574af32bb0a283995e8');
INSERT INTO `items` (`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`,`uuid`) values ('34996','16','','10411','WildFly {#JMX_DATA_SOURCE}: Connections: Wait','jmx["{#JMXOBJ}",WaitCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of requests that had to wait to obtain a physical connection.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4832c8d39e0d4329af6876c594a3d741');
INSERT INTO `items` (`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`,`uuid`) values ('34997','16','','10411','WildFly {#JMX_DATA_SOURCE}: Connections: Available','jmx["{#JMXOBJ}",AvailableCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The available count.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','64565b71c26b463d8ea83ee5ee18284f');
INSERT INTO `items` (`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`,`uuid`) values ('34998','16','','10411','WildFly {#JMX_DATA_SOURCE}: Connections: Timed out, rate','jmx["{#JMXOBJ}",TimedOut]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The timed out connections per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','727ff33cec8e4223bc5054c53d0de88b');
INSERT INTO `items` (`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`,`uuid`) values ('34999','16','','10411','WildFly {#JMX_DATA_SOURCE}: Statistics enabled','jmx["{#JMXOBJ}",statisticsEnabled]','1m','7d','365d','0','0','','','','',NULL,'335','','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'Define whether runtime statistics are enabled or not.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb9a55168c8a4082a19f846ca10adc85');
INSERT INTO `items` (`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`,`uuid`) values ('35000','16','','10411','WildFly {#JMX_DATA_SOURCE}: Connections: Used, max','jmx["{#JMXOBJ}",MaxUsedCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The maximum number of connections used.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2f3e82a1c2f2472f95e4a85e3b182739');
INSERT INTO `items` (`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`,`uuid`) values ('35001','16','','10411','WildFly {#JMX_DATA_SOURCE}: Connections: In use','jmx["{#JMXOBJ}",InUseCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of physical connections currently in use.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a5eed78c02274f6180eb667091087ce0');
INSERT INTO `items` (`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`,`uuid`) values ('35002','16','','10411','WildFly {#JMX_DATA_SOURCE}: Connections: Idle','jmx["{#JMXOBJ}",IdleCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of physical connections currently idle.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a02eb0060fbb4f598d654d93c286c543');
INSERT INTO `items` (`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`,`uuid`) values ('35003','16','','10411','WildFly {#JMX_DATA_SOURCE}: Connections: Destroyed, rate','jmx["{#JMXOBJ}",DestroyedCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The destroyed count.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','606ed51ce8e549c7af20d7c1c5f78e6e');
INSERT INTO `items` (`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`,`uuid`) values ('35004','16','','10411','WildFly {#JMX_DATA_SOURCE}: Connections: Created, rate','jmx["{#JMXOBJ}",CreatedCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The created per second','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c01eb89708224899a9ac8e90ee79bcca');
INSERT INTO `items` (`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`,`uuid`) values ('35005','16','','10411','WildFly {#JMX_DATA_SOURCE}: Connections: Blocking failure, rate','jmx["{#JMXOBJ}",BlockingFailureCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of failures trying to obtain a physical connection per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ba111d0ad76848c39c54ffc37d04e561');
INSERT INTO `items` (`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`,`uuid`) values ('35006','16','','10411','WildFly {#JMX_DATA_SOURCE}: Connections: Usage time, avg','jmx["{#JMXOBJ}",AverageUsageTime]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The average time spent using a physical connection','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a76602ba784a4d40a3672a80487c878a');
INSERT INTO `items` (`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`,`uuid`) values ('35007','16','','10411','WildFly {#JMX_DATA_SOURCE}: Connections: Pool time, avg','jmx["{#JMXOBJ}",AveragePoolTime]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The average time for a physical connection spent in the pool.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c3a313b3d1c34e6b99ae73d5195e7fac');
INSERT INTO `items` (`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`,`uuid`) values ('35008','16','','10411','WildFly {#JMX_DATA_SOURCE}: Connections: Get time, avg','jmx["{#JMXOBJ}",AverageGetTime]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The average time spent obtaining a physical connection.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','52320ebbe70244e3ad52b0766cd03d8d');
INSERT INTO `items` (`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`,`uuid`) values ('35009','16','','10411','WildFly {#JMX_DATA_SOURCE}: Connections: Creating time, avg','jmx["{#JMXOBJ}",AverageCreationTime]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The average time spent creating a physical connection.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','788691ba487e422a913d408361f99e4d');
INSERT INTO `items` (`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`,`uuid`) values ('35010','16','','10411','WildFly {#JMX_DATA_SOURCE}: Blocking time, avg','jmx["{#JMXOBJ}",AverageBlockingTime]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'Average Blocking Time for pool.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','adf534b46aba4f28acea58ea46197edd');
INSERT INTO `items` (`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`,`uuid`) values ('35011','16','','10411','WildFly {#JMX_DATA_SOURCE}: XA: Start rate','jmx["{#JMXOBJ}",XAStartCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of XAResource start invocations per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ef5b00e1dcab4addbc72a0c191e3728b');
INSERT INTO `items` (`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`,`uuid`) values ('35012','16','','10411','WildFly listener {#HTTP_LISTENER}: Bytes received, rate','jmx["{#JMXOBJ}",bytesReceived]','1m','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of bytes that have been received by this listener per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dde94dd2df61495582234d709552fe17');
INSERT INTO `items` (`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`,`uuid`) values ('35013','16','','10411','WildFly listener {#HTTP_LISTENER}: Bytes sent, rate','jmx["{#JMXOBJ}",bytesSent]','1m','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of bytes that have been sent out on this listener per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','36451d29d7074b8ebdb3f366eeaa84df');
INSERT INTO `items` (`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`,`uuid`) values ('35014','16','','10411','WildFly listener {#HTTP_LISTENER}: Errors, rate','jmx["{#JMXOBJ}",errorCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of 500 responses that have been sent by this listener per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a34cb42c703a4996ab9a4c7a08e71eeb');
INSERT INTO `items` (`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`,`uuid`) values ('35015','16','','10411','WildFly listener {#HTTP_LISTENER}: Requests, rate','jmx["{#JMXOBJ}",requestCount]','1m','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of requests this listener has served per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2e7a581b104a4d4a8a0d9235b899635a');
INSERT INTO `items` (`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`,`uuid`) values ('35016','20','1.3.6.1.4.1.318.1.1.1.2.3.1.0','10412','Battery capacity','battery.capacity[upsHighPrecBatteryCapacity]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe remaining battery capacity expressed as\r\n percentage of full capacity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f5ca8610803e4aca8c6c3c8f6044ca43');
INSERT INTO `items` (`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`,`uuid`) values ('35017','20','1.3.6.1.4.1.318.1.1.1.4.1.1.0','10412','Output status','output.status[upsBasicOutputStatus]','1m','7d','365d','0','3','','','','',NULL,'340','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current state of the UPS. If the UPS is unable to\r\n determine the state of the UPS this variable is set\r\n to unknown(1).\r\nDuring self-test most UPSes report onBattery(3) but\r\n some that support it will report onBatteryTest(15).\r\n To determine self-test status across all UPSes, refer\r\n to the upsBasicStateOutputState OID.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c87c096a38284b82bb0fd8c9dfe871ef');
INSERT INTO `items` (`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`,`uuid`) values ('35018','20','1.3.6.1.2.1.1.3.0','10412','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management\r\nportion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1b9e4b13cfcb4680b25dd8974900fc17');
INSERT INTO `items` (`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`,`uuid`) values ('35019','20','1.3.6.1.4.1.318.1.1.1.1.2.3.0','10412','Serial number','system.sn[upsAdvIdentSerialNumber]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nAn 8-character string identifying the serial number of\r\n the UPS internal microprocessor. This number is set at\r\n the factory. NOTE: This number does NOT correspond to\r\n the serial number on the rear of the UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a3069693d6e545978fb877d767dface5');
INSERT INTO `items` (`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`,`uuid`) values ('35020','20','1.3.6.1.2.1.1.2.0','10412','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management\r\nsubsystem contained in the entity. This value is allocated within the SMI enterprises\r\nsubtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what\r\nkind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was\r\nassigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1\r\nto its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1782e98504114e7c847b6d127b3a3ae1');
INSERT INTO `items` (`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`,`uuid`) values ('35021','20','1.3.6.1.2.1.1.5.0','10412','System name','system.name[sysName.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By\r\nconvention, this is the node\'s fully-qualified domain name. If the name is unknown,\r\nthe value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5778610ee61d472d9dc8c8da94f9e301');
INSERT INTO `items` (`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`,`uuid`) values ('35022','20','1.3.6.1.4.1.318.1.1.1.1.1.1.0','10412','Model','system.model[upsBasicIdentModel]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe UPS model name (e.g. \'APC Smart-UPS 600\').','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e81f54bbbdd41ca8f9e010dbddc485f');
INSERT INTO `items` (`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`,`uuid`) values ('35023','20','1.3.6.1.2.1.1.6.0','10412','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet,\r\n3rd 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','a57de4a9da144c2aa880253e4e2b46f9');
INSERT INTO `items` (`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`,`uuid`) values ('35024','20','1.3.6.1.2.1.1.1.0','10412','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0617c89b47454dbd833fcc2b8d570db8');
INSERT INTO `items` (`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`,`uuid`) values ('35025','20','1.3.6.1.2.1.1.4.0','10412','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed\r\nnode, together with information on how to contact this person. If no contact\r\ninformation is known, the value is the zero-length string.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7485fd42dd2749028a2d67f315888723');
INSERT INTO `items` (`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`,`uuid`) values ('35026','17','','10412','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','3892c18baef54c598dc78035f5a7540a');
INSERT INTO `items` (`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`,`uuid`) values ('35027','20','1.3.6.1.4.1.318.1.1.1.4.3.1.0','10412','Output voltage','output.voltage[upsHighPrecOutputVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe output voltage of the UPS system in VAC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','998d1322a2274da19abe10cdcb3c52e0');
INSERT INTO `items` (`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`,`uuid`) values ('35028','20','1.3.6.1.4.1.318.1.1.1.4.3.3.0','10412','Output load','output.load[upsHighPrecOutputLoad]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current UPS load expressed as percentage\r\nof rated capacity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5427a9b46ea54920b3fcc7d8ca413e0e');
INSERT INTO `items` (`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`,`uuid`) values ('35029','20','1.3.6.1.4.1.318.1.1.1.2.2.5.0','10412','External battery packs count','battery.external_packs_count[upsAdvBatteryNumOfBattPacks]','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe number of external battery packs connected to the UPS. If\r\n the UPS does not use smart cells then the agent reports\r\n ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7652aff14f644896be902fe18f3bb46a');
INSERT INTO `items` (`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`,`uuid`) values ('35030','20','1.3.6.1.4.1.318.1.1.1.4.3.4.0','10412','Output current','output.current[upsHighPrecOutputCurrent]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe 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','b0d66c706be8457cbf794171253dd927');
INSERT INTO `items` (`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`,`uuid`) values ('35031','20','1.3.6.1.4.1.318.1.1.1.3.3.1.0','10412','Input voltage','input.voltage[upsHighPrecInputLineVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current utility line voltage in VAC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','65acc805ec7f4a2883d28f51b32054cc');
INSERT INTO `items` (`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`,`uuid`) values ('35032','20','1.3.6.1.4.1.318.1.1.1.3.3.4.0','10412','Input frequency','input.frequency[upsHighPrecInputFrequency]','1m','7d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current input frequency to the UPS system in Hz.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb816e1a6ff640d69a5465e78febc03e');
INSERT INTO `items` (`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`,`uuid`) values ('35033','20','1.3.6.1.4.1.318.1.1.1.3.2.5.0','10412','Input fail cause','input.fail[upsAdvInputLineFailCause]','1m','7d','365d','0','3','','','','',NULL,'338','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe reason for the occurrence of the last transfer to UPS\r\nbattery power. The variable is set to:\r\n- noTransfer(1) -- if there is no transfer yet.\r\n- highLineVoltage(2) -- if the transfer to battery is caused\r\nby an over voltage greater than the high transfer voltage.\r\n- brownout(3) -- if the duration of the outage is greater than\r\nfive seconds and the line voltage is between 40% of the\r\nrated output voltage and the low transfer voltage.\r\n- blackout(4) -- if the duration of the outage is greater than five\r\nseconds and the line voltage is between 40% of the rated\r\noutput voltage and ground.\r\n- smallMomentarySag(5) -- if the duration of the outage is less\r\nthan five seconds and the line voltage is between 40% of the\r\nrated output voltage and the low transfer voltage.\r\n- deepMomentarySag(6) -- if the duration of the outage is less\r\nthan five seconds and the line voltage is between 40% of the\r\nrated output voltage and ground. The variable is set to\r\n- smallMomentarySpike(7) -- if the line failure is caused by a\r\nrate of change of input voltage less than ten volts per cycle.\r\n- largeMomentarySpike(8) -- if the line failure is caused by\r\na rate of change of input voltage greater than ten volts per cycle.\r\n- selfTest(9) -- if the UPS was commanded to do a self test.\r\n- rateOfVoltageChange(10) -- if the failure is due to the rate of change of\r\nthe line voltage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','09f34437ff2e422bb62d7ba44b05657c');
INSERT INTO `items` (`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`,`uuid`) values ('35034','20','1.3.6.1.4.1.318.1.1.1.2.3.4.0','10412','Battery voltage','battery.voltage[upsHighPrecBatteryActualVoltage]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe actual battery bus voltage in Volts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','560031163d54444cb5ead172e9e238d2');
INSERT INTO `items` (`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`,`uuid`) values ('35035','20','1.3.6.1.4.1.318.1.1.1.2.3.2.0','10412','Battery temperature','battery.temperature[upsHighPrecBatteryTemperature]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe current internal UPS temperature in Celsius.\r\n Temperatures below zero read as 0.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','48552e466ee54883ae3cbfd5e549ffc5');
INSERT INTO `items` (`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`,`uuid`) values ('35036','20','1.3.6.1.4.1.318.1.1.1.2.1.1.0','10412','Battery status','battery.status[upsBasicBatteryStatus]','1m','7d','365d','0','3','','','','',NULL,'339','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe status of the UPS batteries. A batteryLow(3) value\r\n indicates the UPS will be unable to sustain the current\r\n load, and its services will be lost if power is not restored.\r\n The amount of run time in reserve at the time of low battery\r\n can be configured by the upsAdvConfigLowBatteryRunTime.\r\n A batteryInFaultCondition(4)value indicates that a battery\r\n installed has an internal error condition.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aebc8b49a97243038b97855c5d20edb7');
INSERT INTO `items` (`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`,`uuid`) values ('35037','20','1.3.6.1.4.1.318.1.1.1.2.2.3.0','10412','Battery runtime remaining','battery.runtime_remaining[upsAdvBatteryRunTimeRemaining]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe UPS battery run time remaining before battery\r\n exhaustion.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6aacf5a02a824b9d8b3c2676b126b186');
INSERT INTO `items` (`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`,`uuid`) values ('35038','20','1.3.6.1.4.1.318.1.1.1.2.2.4.0','10412','Battery replace indicator','battery.replace_indicator[upsAdvBatteryReplaceIndicator]','1m','7d','365d','0','3','','','','',NULL,'337','','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nIndicates whether the UPS batteries need replacement.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f4d790f93a1c4e75a7ebd3d89d0d9d90');
INSERT INTO `items` (`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`,`uuid`) values ('35039','20','1.3.6.1.4.1.318.1.1.1.2.1.3.0','10412','Battery last replace date','battery.last_replace_date[upsBasicBatteryLastReplaceDate]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB\r\nThe date when the UPS system\'s batteries were last replaced\r\n in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value\r\n is originally set at the factory. When the UPS batteries\r\n are replaced, this value should be reset by the administrator.\r\n 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','ee059b1bb6ac486c8c5dd29654899d71');
INSERT INTO `items` (`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`,`uuid`) values ('35040','5','','10412','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'341','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','63079124c55f479dad013d0c15077577');
INSERT INTO `items` (`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`,`uuid`) values ('35041','20','discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6]','10412','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','af4472b543b54699b6e812de51be2419');
INSERT INTO `items` (`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`,`uuid`) values ('35042','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]','10412','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','a3716fb0833e4655b63ec4ccc5736950');
INSERT INTO `items` (`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`,`uuid`) values ('35043','20','discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3]','10412','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','e858b8966abc444a914ef60c1708b835');
INSERT INTO `items` (`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`,`uuid`) values ('35044','20','discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3]','10412','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','415a43bfe1d845f88f0ac15e80a0dc14');
INSERT INTO `items` (`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`,`uuid`) values ('35045','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1]','10412','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','5971a05073b84056bf4e30dfa3e2e18e');
INSERT INTO `items` (`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`,`uuid`) values ('35046','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1]','10412','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','e4f2cd7e1f004c4abd5be7e5fc28a9eb');
INSERT INTO `items` (`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`,`uuid`) values ('35047','20','1.3.6.1.4.1.318.1.1.1.2.2.6.0','10412','{#SNMPINDEX}: External battery packs bad','battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}]','15m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe number of external battery packs connected to the UPS that\r\nare defective. If the UPS does not use smart cells then the\r\nagent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a8a07270aac8499391fddfd1b6d517a3');
INSERT INTO `items` (`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`,`uuid`) values ('35048','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX}','10412','{#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\r\nThe battery cartridge estimated battery replace date.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b68c1b0a33bf4d2c94bd46e25a6b5e46');
INSERT INTO `items` (`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`,`uuid`) values ('35049','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX}','10412','{#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\r\nThe battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n 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','8629f478f8e44e079b69914b498ce2f5');
INSERT INTO `items` (`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`,`uuid`) values ('35050','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX}','10412','{#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\r\nThe battery cartridge status.\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fd2d784d618a4ad883a4afb8a9b94940');
INSERT INTO `items` (`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`,`uuid`) values ('35051','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX}','10412','{#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\r\nThe battery pack temperature in Celsius.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6b20217de8474cc08ca3818784804109');
INSERT INTO `items` (`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`,`uuid`) values ('35052','20','1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX}','10412','{#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\r\nThe battery pack serial number.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7757bd184a7c4c0bbd442c7a3013f6d9');
INSERT INTO `items` (`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`,`uuid`) values ('35053','20','1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1','10412','{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current humidity reading - a relative humidity\r\n percentage. -1 indicates an invalid reading due to either a\r\n sensor that doesn\'t read humidity or lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bddad787e7df427b8b225c9af517c3c1');
INSERT INTO `items` (`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`,`uuid`) values ('35054','20','1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1','10412','{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'336','','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe alarm status of the sensor. Possible values:\r\nuioNormal (1),\r\nuioWarning (2),\r\nuioCritical (3),\r\nsensorStatusNotApplicable (4)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5cab24d2166244fd9528930edbafa677');
INSERT INTO `items` (`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`,`uuid`) values ('35055','20','1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1','10412','{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current temperature reading in Celsius.\r\n -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','af55c3c3bc2f45ec9f735de0fb5a4285');
INSERT INTO `items` (`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`,`uuid`) values ('35056','20','1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1','10412','{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current humidity reading - a relative humidity\r\n percentage. -1 indicates an invalid reading due to either a\r\n sensor that doesn\'t read humidity or lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4a5c62571e0b4fdaa6c7b85645e06649');
INSERT INTO `items` (`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`,`uuid`) values ('35057','20','1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1','10412','{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'336','','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe alarm status of the sensor. Possible values:\r\nuioNormal (1),\r\nuioWarning (2),\r\nuioCritical (3),\r\nsensorStatusNotApplicable (4)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e09e9e197d2f4afc83231cb304a26b09');
INSERT INTO `items` (`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`,`uuid`) values ('35058','20','1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1','10412','{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}]','1m','7d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe sensor\'s current temperature reading in Celsius.\r\n -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7bc1fa7e114e40ffadd4336a3980e4c2');
INSERT INTO `items` (`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`,`uuid`) values ('35059','20','1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX}','10412','{#PHASEINDEX}: Phase input current','phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}]','1m','7d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe input current in 0.1 amperes, or -0.1 if it\'s\r\n unsupported by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','847e044ec924456daf41025d312334bf');
INSERT INTO `items` (`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`,`uuid`) values ('35060','20','1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX}','10412','{#PHASEINDEX}: Phase input voltage','phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB\r\nThe input voltage in VAC, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','15de75236e9c44f1bb4bbf4c0425c9c2');
INSERT INTO `items` (`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`,`uuid`) values ('35061','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX}','10412','{#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\r\nThe output current in 0.1 amperes drawn\r\n by the load on the UPS, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0e4b4159dd0543faa5d93969f8e5753b');
INSERT INTO `items` (`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`,`uuid`) values ('35062','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX}','10412','{#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\r\nThe percentage of the UPS load capacity in VA at\r\n redundancy @ (n + x) presently being used on this\r\n 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','3d35f771f73545e2806153f33e747bc4');
INSERT INTO `items` (`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`,`uuid`) values ('35063','20','1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}','10412','{#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\r\nThe output voltage in VAC, or -1 if it\'s unsupported\r\n by this UPS.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d27c63f29e9b453a9bbdac1c0c8065ae');
INSERT INTO `items` (`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`,`uuid`) values ('35064','0','','10413','Cert: Get','web.certificate.get[{$CERT.WEBSITE.HOSTNAME},{$CERT.WEBSITE.PORT},{$CERT.WEBSITE.IP}]','15m','0h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns the JSON with attributes of a certificate of the requested site.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ec072b3b1c6847b79acac9f18d14df8a');
INSERT INTO `items` (`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`,`uuid`) values ('35077','21','','10414','Cloudflare: Get data','cloudflare.get','0;m01','0','0','0','4','','','','',NULL,NULL,'var Cloudflare = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n [\'api_endpoint\', \'token\', \'zone\'].forEach(function (field) {\r\n if (typeof params !== \'object\' || typeof params[field] === \'undefined\'\r\n || params[field] === \'\') {\r\n throw \'Required param is not set: "\' + field + \'".\';\r\n }\r\n });\r\n\r\n Cloudflare.params = params;\r\n if (typeof Cloudflare.params.api_endpoint === \'string\') {\r\n if (!Cloudflare.params.api_endpoint.endsWith(\'/\')) {\r\n Cloudflare.params.api_endpoint += \'/\';\r\n }\r\n }\r\n },\r\n\r\n request: function (method, query, data) {\r\n var response,\r\n request = new HttpRequest(),\r\n url = Cloudflare.params.api_endpoint + query;\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Authorization: Bearer \' + Cloudflare.params.token);\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ Cloudflare ] Sending request: \' + url + ((typeof data === \'string\') ? (\'\\n\' + data) : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ Cloudflare ] Received response with status code \' + request.getStatus() + \': \' + response);\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n throw \'Request failed with status code \' + request.getStatus() + \': \' + response;\r\n }\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n throw \'Failed to parse response received from Cloudflare. Check debug log for more information.\';\r\n }\r\n }\r\n\r\n if (query === \'graphql/\' && request.getStatus() == 200 && typeof response.errors !== \'undefined\'\r\n && Array.isArray(response.errors)) {\r\n throw \'Request failed with error "\' + (getField(response, \'errors.0.message\') || \'unknown\') + \'"\';\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n }\r\n}\r\n\r\nfunction getField(object, field, def) {\r\n var names = field.split(\'.\');\r\n var name = names.shift();\r\n\r\n while (typeof name !== \'undefined\') {\r\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\r\n return def;\r\n }\r\n\r\n object = object[name];\r\n name = names.shift();\r\n }\r\n\r\n return object;\r\n}\r\n\r\ntry {\r\n Cloudflare.setParams(JSON.parse(value));\r\n\r\n var datetime_end = new Date(),\r\n datetime_start = new Date();\r\n\r\n datetime_start.setTime(datetime_end.getTime() - 3600000);\r\n datetime_start.setMinutes(0, 0, 0);\r\n datetime_end.setTime(datetime_start.getTime());\r\n datetime_end.setMinutes(59, 59, 0);\r\n\r\n var datetime_start_str = datetime_start.toISOString(),\r\n datetime_end_str = datetime_end.toISOString();\r\n\r\n var data = {\r\n "query": "{viewer {zones(filter: {zoneTag: \\"" + Cloudflare.params.zone + "\\"}) {\\\r\n httpRequests1hGroups(limit: 100 filter: {\\\r\n datetime_geq: \\"" + datetime_start_str + "\\", datetime_leq: \\"" + datetime_end_str + "\\"\\\r\n }) {\\\r\n sum{\\\r\n requests\\\r\n cachedRequests\\\r\n encryptedRequests\\\r\n responseStatusMap{ requests edgeResponseStatus }\\\r\n bytes\\\r\n cachedBytes\\\r\n encryptedBytes\\\r\n threats\\\r\n pageViews\\\r\n }\\\r\n uniq{uniques}\\\r\n }\\\r\n }}}", "variables": {}\r\n }\r\n var result = Cloudflare.request(\'post\', \'graphql/\', data),\r\n cloudflare = {},\r\n res = getField(result.response, \'data.viewer.zones.0.httpRequests1hGroups.0.sum\');\r\n\r\n if (typeof res === \'object\') {\r\n cloudflare = {\r\n requests: {\r\n all: res.requests || 0,\r\n cached: res.cachedRequests || 0,\r\n encrypted: res.encryptedRequests || 0,\r\n cache_hit_ratio: 0,\r\n success_ratio: 0,\r\n others_ratio: 0,\r\n response_100: 0,\r\n response_200: 0,\r\n response_300: 0,\r\n response_400: 0,\r\n response_500: 0\r\n },\r\n bandwidth: {\r\n all: res.bytes || 0,\r\n cached: res.cachedBytes || 0,\r\n cache_hit_ratio: 0,\r\n encrypted: res.encryptedBytes || 0,\r\n },\r\n threats: {\r\n all: res.threats || 0\r\n },\r\n pageviews: {\r\n all: res.pageViews || 0\r\n }\r\n }\r\n\r\n cloudflare.requests.uncached = res.requests - res.cachedRequests;\r\n cloudflare.requests.unencrypted = cloudflare.requests.all - cloudflare.requests.encrypted;\r\n cloudflare.bandwidth.uncached = cloudflare.bandwidth.all - cloudflare.bandwidth.cached;\r\n cloudflare.bandwidth.unencrypted = cloudflare.bandwidth.all - cloudflare.bandwidth.encrypted;\r\n\r\n if (Array.isArray(res.responseStatusMap)) {\r\n res.responseStatusMap.forEach(function (element) {\r\n var group = Math.floor((element.edgeResponseStatus / 100)) * 100;\r\n cloudflare.requests[\'response_\' + group] += element.requests;\r\n });\r\n }\r\n\r\n if (cloudflare.requests.all > 0) {\r\n cloudflare.requests.success_ratio = (cloudflare.requests.response_200\r\n / cloudflare.requests.all * 100).toFixed(2);\r\n cloudflare.requests.others_ratio = ((cloudflare.requests.all - cloudflare.requests.response_200)\r\n / cloudflare.requests.all * 100).toFixed(2);\r\n cloudflare.requests.cache_hit_ratio = (cloudflare.requests.cached\r\n / cloudflare.requests.all * 100).toFixed(2);\r\n }\r\n\r\n if (cloudflare.bandwidth.all > 0) {\r\n cloudflare.bandwidth.cache_hit_ratio = (cloudflare.bandwidth.cached / cloudflare.bandwidth.all * 100).toFixed(2);\r\n }\r\n\r\n res = getField(result.response, \'data.viewer.zones.0.httpRequests1hGroups.0.uniq\');\r\n\r\n if (typeof res === \'object\') {\r\n cloudflare.uniques = {\r\n all: res.uniques || 0\r\n }\r\n }\r\n\r\n result = Cloudflare.request(\'get\', \'zones/\' + encodeURIComponent(Cloudflare.params.zone)\r\n + \'/dns_analytics/report?dimensions=queryName&metrics=queryCount,uncachedCount,staleCount&since=\'\r\n + encodeURIComponent(datetime_start_str) + \'&until=\' + encodeURIComponent(datetime_end_str));\r\n\r\n res = getField(result.response, \'result.totals\');\r\n\r\n if (typeof result.response.result === \'object\') {\r\n cloudflare.dns = {\r\n query: {\r\n all: res.queryCount || 0,\r\n uncached: res.uncachedCount || 0,\r\n stale: res.staleCount || 0\r\n }\r\n }\r\n }\r\n }\r\n\r\n return JSON.stringify(cloudflare);\r\n}\r\ncatch (error) {\r\n error += (String(error).endsWith(\'.\')) ? \'\' : \'.\';\r\n Zabbix.log(3, \'[ Cloudflare ] ERROR: \' + error);\r\n throw \'Requesting failed: \' + error;\r\n}','','0','','','','','0',NULL,'The JSON with result of Cloudflare API request.','0','30d','0','',NULL,'{$CLOUDFLARE.GET_DATA.TIMEOUT}','','','','200','1','0','','0','0','0','0','0','0','0','9450a68208fd4cb8bde009296d722064');
INSERT INTO `items` (`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`,`uuid`) values ('35153','19','','10415','Nginx: Get connections','nginx.connections','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns statistics of client connections.','0','30d','0','',NULL,'3s','{$NGINX.API.ENDPOINT}/6/connections/','','','200,404','1','0','','0','0','0','0','0','0','0','26c121f9c50a4e90b4502e2bd7f42992');
INSERT INTO `items` (`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`,`uuid`) values ('35154','19','','10415','Nginx: Get info','nginx.info','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Return status of nginx running instance.','0','30d','0','',NULL,'3s','{$NGINX.API.ENDPOINT}/6/nginx/','','','200,404','1','0','','0','0','0','0','0','0','0','d6c37400f8e64d89a698896afa6589de');
INSERT INTO `items` (`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`,`uuid`) values ('35155','19','','10415','Nginx: Get Stream server zones','nginx.stream.server_zones','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns status information for each stream server zone.','0','30d','0','',NULL,'3s','{$NGINX.API.ENDPOINT}/6/stream/server_zones/','','','200,404','1','0','','0','0','0','0','0','0','0','148a8612964b445ba37e340c9341f49d');
INSERT INTO `items` (`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`,`uuid`) values ('35156','19','','10415','Nginx: Get SSL','nginx.ssl','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns SSL statistics.','0','30d','0','',NULL,'3s','{$NGINX.API.ENDPOINT}/6/ssl/','','','200,404','1','0','','0','0','0','0','0','0','0','e0798bb2d16c418781e19880fd78832c');
INSERT INTO `items` (`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`,`uuid`) values ('35157','19','','10415','Nginx: Get resolvers','nginx.resolvers','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns status information for each resolver zone.','0','30d','0','',NULL,'3s','{$NGINX.API.ENDPOINT}/6/resolvers/','','','200,404','1','0','','0','0','0','0','0','0','0','9ea35f4f2ca24187896b7f44fb410d24');
INSERT INTO `items` (`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`,`uuid`) values ('35158','19','','10415','Nginx: Get requests','nginx.requests','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns status of client HTTP requests.','0','30d','0','',NULL,'3s','{$NGINX.API.ENDPOINT}/6/http/requests/','','','200,404','1','0','','0','0','0','0','0','0','0','65377fc7308340348199c4c63720a7e1');
INSERT INTO `items` (`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`,`uuid`) values ('35159','19','','10415','Nginx: Get Stream upstreams','nginx.stream.upstreams','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns status of each stream upstream server group and its servers.','0','30d','0','',NULL,'3s','{$NGINX.API.ENDPOINT}/6/stream/upstreams/','','','200,404','1','0','','0','0','0','0','0','0','0','c48ca144a8414b2db1c35d518ca5a24f');
INSERT INTO `items` (`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`,`uuid`) values ('35160','19','','10415','Nginx: Get HTTP upstreams','nginx.http.upstreams','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns status of each HTTP upstream server group and its servers.','0','30d','0','',NULL,'3s','{$NGINX.API.ENDPOINT}/6/http/upstreams/','','','200,404','1','0','','0','0','0','0','0','0','0','4ec5e9b1d17141f49db5d9bf29134a49');
INSERT INTO `items` (`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`,`uuid`) values ('35161','19','','10415','Nginx: Get HTTP location zones','nginx.http.location_zones','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns status information for each HTTP location zone.','0','30d','0','',NULL,'3s','{$NGINX.API.ENDPOINT}/6/http/location_zones/','','','200,404','1','0','','0','0','0','0','0','0','0','51c50d69acdb451395736902733673fe');
INSERT INTO `items` (`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`,`uuid`) values ('35162','19','','10415','Nginx: Get HTTP zones','nginx.http.server_zones','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns status information for each HTTP server zone.','0','30d','0','',NULL,'3s','{$NGINX.API.ENDPOINT}/6/http/server_zones/','','','200,404','1','0','','0','0','0','0','0','0','0','5b337c675bc14d9ab3ac6d2cf5b82dce');
INSERT INTO `items` (`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`,`uuid`) values ('35262','0','','10416','Service units discovery','systemd.unit.discovery[service]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover systemd service units and their details.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0dfbc5994c1e44a6a1a2aa8ecc2f0347');
INSERT INTO `items` (`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`,`uuid`) values ('35263','0','','10416','Socket units discovery','systemd.unit.discovery[socket]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover systemd socket units and their details.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c337762ae7b43a98fcb9dc3102a8467');
INSERT INTO `items` (`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`,`uuid`) values ('35264','0','','10416','{#UNIT.NAME}: Get unit info','systemd.unit.get["{#UNIT.NAME}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns all properties of a systemd service unit.\r\n Unit description: {#UNIT.DESCRIPTION}.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bdb94d1182114985a8734de7d5d92380');
INSERT INTO `items` (`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`,`uuid`) values ('35265','0','','10416','{#UNIT.NAME}: Get unit info','systemd.unit.get["{#UNIT.NAME}",Socket]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns all properties of a systemd socket unit.\r\n Unit description: {#UNIT.DESCRIPTION}.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','83ffad5a484d48e388ac658511d4b803');
INSERT INTO `items` (`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`,`uuid`) values ('35272','5','','10047','Zabbix server: Utilization of trigger housekeeper internal processes, in %','zabbix[process,trigger housekeeper,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time trigger housekeeper processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad2199d0152d4deb8259699ebd1f3da5');
INSERT INTO `items` (`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`,`uuid`) values ('35273','5','','10047','Zabbix server: Version','zabbix[version]','1m','1w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of Zabbix server.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','140cf84640564a60bcd107bebf9ac2e3');
INSERT INTO `items` (`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`,`uuid`) values ('35274','5','','10047','Zabbix server: Utilization of service manager internal processes, in %','zabbix[process,service manager,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time service manager processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4f6c2b59437c4345b348d78b5d2242db');
INSERT INTO `items` (`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`,`uuid`) values ('35280','16','','10417','Data region metrics','jmx.discovery[beans,"org.apache:group=DataRegionMetrics,*"]','10m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','1',NULL,'','0','30d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f8d8a6cd41da496ea6d61793e0ab0d00');
INSERT INTO `items` (`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`,`uuid`) values ('35281','16','','10417','Local node metrics','jmx.discovery[beans,"org.apache:group=Kernal,name=ClusterLocalNodeMetricsMXBeanImpl,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','1',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e7ad3e966ed94b91a88d28b785862b2f');
INSERT INTO `items` (`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`,`uuid`) values ('35282','16','','10417','Cluster metrics','jmx.discovery[beans,"org.apache:group=Kernal,name=ClusterMetricsMXBeanImpl,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','1',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5b7b9e010a274bb5a52784143dd57628');
INSERT INTO `items` (`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`,`uuid`) values ('35283','16','','10417','GridGain kernal metrics','jmx.discovery[beans,"org.apache:group=Kernal,name=IgniteKernal,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','1',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3b81fbcbef204717be1918d3df919174');
INSERT INTO `items` (`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`,`uuid`) values ('35284','16','','10417','TCP Communication SPI metrics','jmx.discovery[beans,"org.apache:group=SPIs,name=TcpCommunicationSpi,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','1',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6265d30cd7494809bc94f929968d3c6f');
INSERT INTO `items` (`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`,`uuid`) values ('35285','16','','10417','TCP discovery SPI','jmx.discovery[beans,"org.apache:group=SPIs,name=TcpDiscoverySpi,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','1',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5fb38d8148d746d6ae19d4f8c5a33ce8');
INSERT INTO `items` (`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`,`uuid`) values ('35286','16','','10417','Transaction metrics','jmx.discovery[beans,"org.apache:group=TransactionMetrics,name=TransactionMetricsMxBeanImpl,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','1',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b0b570121f1646e5baf0b0ff5cc5de2b');
INSERT INTO `items` (`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`,`uuid`) values ('35287','16','','10417','Cache groups','jmx.discovery[beans,"org.apache:group=\\"Cache groups\\",*"]','10m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','1',NULL,'','0','30d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e3825aba1ad47c194162122eb050612');
INSERT INTO `items` (`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`,`uuid`) values ('35288','16','','10417','Thread pool metrics','jmx.discovery[beans,"org.apache:group=\\"Thread Pools\\",*"]','10m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','1',NULL,'','0','30d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3ca6cce698d247daae252430289e7b61');
INSERT INTO `items` (`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`,`uuid`) values ('35289','16','','10417','Cache metrics','jmx.discovery[beans,"org.apache:name=\\"org.apache.gridgain.internal.processors.cache.CacheLocalMetricsMXBeanImpl\\",*"]','10m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','1',NULL,'','0','30d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3f3382c27cc449bd86822c245b798056');
INSERT INTO `items` (`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`,`uuid`) values ('35290','16','','10417','Data region {#JMXNAME}: Allocation, rate','jmx["{#JMXOBJ}",AllocationRate]','1m','7d','365d','0','0','','!pps','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Allocation rate (pages per second) averaged across rateTimeInternal.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c09b0ea002db4c3d9104a7f51b9921cc');
INSERT INTO `items` (`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`,`uuid`) values ('35291','16','','10417','Data region {#JMXNAME}: Checkpoint buffer size','jmx["{#JMXOBJ}",CheckpointBufferSize]','1m','7d','365d','0','0','','B','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Total size in bytes for checkpoint buffer.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3425f6775e9e4a979d876becddec46d2');
INSERT INTO `items` (`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`,`uuid`) values ('35292','16','','10417','Data region {#JMXNAME}: Dirty pages','jmx["{#JMXOBJ}",DirtyPages]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Number of pages in memory not yet synchronized with persistent storage.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6e44ce63725a46b486175e34697776ee');
INSERT INTO `items` (`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`,`uuid`) values ('35293','16','','10417','Data region {#JMXNAME}: Eviction, rate','jmx["{#JMXOBJ}",EvictionRate]','1m','7d','365d','0','0','','!pps','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Eviction rate (pages per second).','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5396db6809ca44c480f123e1e63430b4');
INSERT INTO `items` (`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`,`uuid`) values ('35294','16','','10417','Data region {#JMXNAME}: Size, max','jmx["{#JMXOBJ}",MaxSize]','1m','7d','365d','0','0','','B','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Maximum memory region size defined by its data region.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9f7d683cf3ca47c681eef43e4dd9a471');
INSERT INTO `items` (`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`,`uuid`) values ('35295','16','','10417','Data region {#JMXNAME}: Offheap size','jmx["{#JMXOBJ}",OffHeapSize]','1m','7d','365d','0','0','','B','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Offheap size in bytes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16170e6c8007492984c367892a7393aa');
INSERT INTO `items` (`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`,`uuid`) values ('35296','16','','10417','Data region {#JMXNAME}: Offheap used size','jmx["{#JMXOBJ}",OffheapUsedSize]','1m','7d','365d','0','0','','B','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Total used offheap size in bytes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','982c738bdd4f4802917d3f5d63cc489f');
INSERT INTO `items` (`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`,`uuid`) values ('35297','16','','10417','Data region {#JMXNAME}: Pages fill factor','jmx["{#JMXOBJ}",PagesFillFactor]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The percentage of the used space.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','03c923d00e5a486faece1f37b3a2863d');
INSERT INTO `items` (`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`,`uuid`) values ('35298','16','','10417','Data region {#JMXNAME}: Pages replace, rate','jmx["{#JMXOBJ}",PagesReplaceRate]','1m','7d','365d','0','0','','!pps','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Rate at which pages in memory are replaced with pages from persistent storage (pages per second).','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9094f5992c514be6abaee490b211774e');
INSERT INTO `items` (`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`,`uuid`) values ('35299','16','','10417','Data region {#JMXNAME}: Allocated, bytes','jmx["{#JMXOBJ}",TotalAllocatedSize]','1m','7d','365d','0','0','','B','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Total size of memory allocated in bytes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','390107f411e24581a61043000b42152f');
INSERT INTO `items` (`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`,`uuid`) values ('35300','16','','10417','Data region {#JMXNAME}: Used checkpoint buffer size','jmx["{#JMXOBJ}",UsedCheckpointBufferSize]','1m','7d','365d','0','0','','B','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Used checkpoint buffer size in bytes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8e0e7a96f0a6424b88829fab78cce2ba');
INSERT INTO `items` (`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`,`uuid`) values ('35301','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs active, current','jmx["{#JMXOBJ}",CurrentActiveJobs]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Number of currently active jobs concurrently executing on the node.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f3c7461902934de8a220513a33ad8771');
INSERT INTO `items` (`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`,`uuid`) values ('35302','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, current','jmx["{#JMXOBJ}",CurrentCancelledJobs]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Number of cancelled jobs that are still running.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c254bc19bccb44de821c51b0882b78b4');
INSERT INTO `items` (`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`,`uuid`) values ('35303','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: PME duration, current','jmx["{#JMXOBJ}",CurrentPmeDuration]','1m','7d','365d','0','3','','ms','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Current PME duration in milliseconds.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','63916bbee7604c3e9610f5989bc5bb7a');
INSERT INTO `items` (`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`,`uuid`) values ('35304','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs rejected, current','jmx["{#JMXOBJ}",CurrentRejectedJobs]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Number of jobs rejected after more recent collision resolution operation.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','790e8c300f7c4c82b640fb6025bb9eef');
INSERT INTO `items` (`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`,`uuid`) values ('35305','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Threads count, current','jmx["{#JMXOBJ}",CurrentThreadCount]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Current number of live threads.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a5c1ece74c914620b9ce70c00c7d5377');
INSERT INTO `items` (`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`,`uuid`) values ('35306','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs waiting, current','jmx["{#JMXOBJ}",CurrentWaitingJobs]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Number of queued jobs currently waiting to be executed.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','df386b29e8f74ec9a8f1825cb3094c0e');
INSERT INTO `items` (`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`,`uuid`) values ('35307','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Heap memory used','jmx["{#JMXOBJ}",HeapMemoryUsed]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Current heap size that is used for object allocation.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ec0c25c202ff4b1ea47422b51c24d3b4');
INSERT INTO `items` (`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`,`uuid`) values ('35308','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, rate','jmx["{#JMXOBJ}",TotalCancelledJobs]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Total number of jobs cancelled by the node per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a698da07a1794c479db9948a5ffb4123');
INSERT INTO `items` (`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`,`uuid`) values ('35309','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs executed, rate','jmx["{#JMXOBJ}",TotalExecutedJobs]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Total number of jobs handled by the node per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a60a71ecd2d40af8ca2ca81712c287e');
INSERT INTO `items` (`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`,`uuid`) values ('35310','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs rejects, rate','jmx["{#JMXOBJ}",TotalRejectedJobs]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Total number of jobs this node rejects during collision resolution operations since node startup per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7673741944094af9a6bc05bd630fd055');
INSERT INTO `items` (`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`,`uuid`) values ('35311','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Active baseline','jmx["{#JMXOBJ}",ActiveBaselineNodes]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of nodes that are currently active in the baseline topology.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a7eb47fd5db24c198774beacf52fa965');
INSERT INTO `items` (`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`,`uuid`) values ('35312','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Baseline','jmx["{#JMXOBJ}",TotalBaselineNodes]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Total baseline nodes that are registered in the baseline topology.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16ca4ca8efa04874902a619bce1f0071');
INSERT INTO `items` (`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`,`uuid`) values ('35313','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Client','jmx["{#JMXOBJ}",TotalClientNodes]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of client nodes in the cluster.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cf66620eeb6b4c9d88c2bd69ed05685a');
INSERT INTO `items` (`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`,`uuid`) values ('35314','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, total','jmx["{#JMXOBJ}",TotalNodes]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Total number of nodes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d74b4324fb5a446a92e6fcf89162eff5');
INSERT INTO `items` (`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`,`uuid`) values ('35315','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Server','jmx["{#JMXOBJ}",TotalServerNodes]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of server nodes in the cluster.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b64a4ce1266b4806a554967d2fd24fa5');
INSERT INTO `items` (`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`,`uuid`) values ('35316','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Version','jmx["{#JMXOBJ}",FullVersion]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Version of GridGain instance.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cbe7305a44754576a8084d606710765f');
INSERT INTO `items` (`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`,`uuid`) values ('35317','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Local node ID','jmx["{#JMXOBJ}",LocalNodeId]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Unique identifier for this node within grid.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','18f518b41e804f7cb3eeaaf92fef40e7');
INSERT INTO `items` (`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`,`uuid`) values ('35318','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Uptime','jmx["{#JMXOBJ}",UpTime]','1m','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Uptime of GridGain instance.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4b3c99a88fbf4485a3dbf5efa2723ca7');
INSERT INTO `items` (`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`,`uuid`) values ('35319','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Communication outbound messages queue','jmx["{#JMXOBJ}",OutboundMessagesQueueSize]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Outbound messages queue size.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','904f0c843b1b434986043a63cb0890e7');
INSERT INTO `items` (`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`,`uuid`) values ('35320','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Communication messages received, rate','jmx["{#JMXOBJ}",ReceivedMessagesCount]','1m','7d','365d','0','0','','!msg/s','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of messages received per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2a01c4dc23b34df6801be0901bf10ab0');
INSERT INTO `items` (`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`,`uuid`) values ('35321','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Communication reconnect rate','jmx["{#JMXOBJ}",ReconnectCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Gets maximum number of reconnect attempts used when establishing connection with remote nodes per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','613114b7abb94bd5bbabc2d1d19975b7');
INSERT INTO `items` (`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`,`uuid`) values ('35322','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Communication messages sent, rate','jmx["{#JMXOBJ}",SentMessagesCount]','1m','7d','365d','0','0','','!msg/s','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of messages sent per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e015293ddbb540e4b6b59ba6e28ed91e');
INSERT INTO `items` (`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`,`uuid`) values ('35323','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Coordinator','jmx["{#JMXOBJ}",Coordinator]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Current coordinator UUID.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3e1086638d954e939907fd2009408048');
INSERT INTO `items` (`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`,`uuid`) values ('35324','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Discovery message worker queue','jmx["{#JMXOBJ}",MessageWorkerQueueSize]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Message worker queue current size.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','29d85d09951346c1a7c30acc83f404fc');
INSERT INTO `items` (`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`,`uuid`) values ('35325','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes failed','jmx["{#JMXOBJ}",NodesFailed]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Nodes failed count.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0aed9a4269ff4718aa443d1b053fa31b');
INSERT INTO `items` (`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`,`uuid`) values ('35326','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes joined','jmx["{#JMXOBJ}",NodesJoined]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Nodes join count.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','43ea840b621e4f2a8643ca38479eb73e');
INSERT INTO `items` (`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`,`uuid`) values ('35327','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes left','jmx["{#JMXOBJ}",NodesLeft]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Nodes left count.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0164664362e446209b4399081d807ca7');
INSERT INTO `items` (`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`,`uuid`) values ('35328','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Discovery reconnect, rate','jmx["{#JMXOBJ}",ReconnectCount]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Number of times node tries to (re)establish connection to another node per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e03329689c674ea997d55d11e1a0c2be');
INSERT INTO `items` (`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`,`uuid`) values ('35329','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: TotalProcessedMessages','jmx["{#JMXOBJ}",TotalProcessedMessages]','1m','7d','365d','0','0','','!msg/s','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of messages received per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e344575b799a4f69b79b45ef6590a649');
INSERT INTO `items` (`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`,`uuid`) values ('35330','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Discovery messages received, rate','jmx["{#JMXOBJ}",TotalReceivedMessages]','1m','7d','365d','0','0','','!msg/s','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of messages processed per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','adcf2c5981004c8da658122cc50a6518');
INSERT INTO `items` (`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`,`uuid`) values ('35331','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Locked keys','jmx["{#JMXOBJ}",LockedKeysNumber]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of keys locked on the node.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b03ef7787684ab5abd99af4610adf59');
INSERT INTO `items` (`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`,`uuid`) values ('35332','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions owner, current','jmx["{#JMXOBJ}",OwnerTransactionsNumber]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of active transactions for which this node is the initiator.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','446cbb708d354b2a9282e973d562527f');
INSERT INTO `items` (`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`,`uuid`) values ('35333','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions committed, rate','jmx["{#JMXOBJ}",TransactionsCommittedNumber]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of transactions which were committed per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','21971cbf540c48df93fde079ce917a26');
INSERT INTO `items` (`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`,`uuid`) values ('35334','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions holding lock, current','jmx["{#JMXOBJ}",TransactionsHoldingLockNumber]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of active transactions holding at least one key lock.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d8d3e05c6e7e4874b3149edb74774e6d');
INSERT INTO `items` (`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`,`uuid`) values ('35335','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions rolledback, rate','jmx["{#JMXOBJ}",TransactionsRolledBackNumber]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of transactions which were rollback per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2d1def1d4f414ce992cf5a6ff1bc4204');
INSERT INTO `items` (`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`,`uuid`) values ('35336','16','','10417','Cache group [{#JMXNAME}]: Backups','jmx["{#JMXOBJ}",Backups]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Count of backups configured for cache group.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d46bf088d33946a69a5b625566558994');
INSERT INTO `items` (`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`,`uuid`) values ('35337','16','','10417','Cache group [{#JMXNAME}]: Caches','jmx["{#JMXOBJ}",Caches]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'List of caches.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a535d161527b4821b717f114aaeb8b0b');
INSERT INTO `items` (`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`,`uuid`) values ('35338','16','','10417','Cache group [{#JMXNAME}]: Local node partitions, moving','jmx["{#JMXOBJ}",LocalNodeMovingPartitionsCount]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Count of partitions with state MOVING for this cache group located on this node.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0a09c18adfd5477098684c47927f967b');
INSERT INTO `items` (`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`,`uuid`) values ('35339','16','','10417','Cache group [{#JMXNAME}]: Local node partitions, owning','jmx["{#JMXOBJ}",LocalNodeOwningPartitionsCount]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Count of partitions with state OWNING for this cache group located on this node.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c2a38de3743549e0850e678d1f91e2de');
INSERT INTO `items` (`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`,`uuid`) values ('35340','16','','10417','Cache group [{#JMXNAME}]: Local node entries, renting','jmx["{#JMXOBJ}",LocalNodeRentingEntriesCount]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Count of entries remains to evict in RENTING partitions located on this node for this cache group.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','be9b2cbf210e4e27a5887d77f2dafaad');
INSERT INTO `items` (`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`,`uuid`) values ('35341','16','','10417','Cache group [{#JMXNAME}]: Local node partitions, renting','jmx["{#JMXOBJ}",LocalNodeRentingPartitionsCount]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Count of partitions with state RENTING for this cache group located on this node.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','582acb454ffa4b129f5786e814df234f');
INSERT INTO `items` (`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`,`uuid`) values ('35342','16','','10417','Cache group [{#JMXNAME}]: Partition copies, max','jmx["{#JMXOBJ}",MaximumNumberOfPartitionCopies]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Maximum number of partition copies for all partitions of this cache group.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e026169754954bbe85afcef2534b4d0e');
INSERT INTO `items` (`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`,`uuid`) values ('35343','16','','10417','Cache group [{#JMXNAME}]: Partition copies, min','jmx["{#JMXOBJ}",MinimumNumberOfPartitionCopies]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Minimum number of partition copies for all partitions of this cache group.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b93a9ff86a2048bfbf8743b7a1c5ec06');
INSERT INTO `items` (`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`,`uuid`) values ('35344','16','','10417','Cache group [{#JMXNAME}]: Partitions','jmx["{#JMXOBJ}",Partitions]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Count of partitions for cache group.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8dac4ccaad0f4736b2065e2f1200e3ff');
INSERT INTO `items` (`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`,`uuid`) values ('35345','16','','10417','Thread pool [{#JMXNAME}]: Pool size, core','jmx["{#JMXOBJ}",CorePoolSize]','1m','7d','365d','0','3','','!msg','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The core number of threads.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7d6ab6a7180c44859b933784fb565212');
INSERT INTO `items` (`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`,`uuid`) values ('35346','16','','10417','Thread pool [{#JMXNAME}]: Pool size, max','jmx["{#JMXOBJ}",MaximumPoolSize]','1m','7d','365d','0','3','','!msg','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The maximum allowed number of threads.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3ffebf40ed154a7eb7050e16d30f9f53');
INSERT INTO `items` (`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`,`uuid`) values ('35347','16','','10417','Thread pool [{#JMXNAME}]: Pool size','jmx["{#JMXOBJ}",PoolSize]','1m','7d','365d','0','3','','!msg','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Current number of threads in the pool.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1f7f5e0d19f6400fa8803eba2fb14f85');
INSERT INTO `items` (`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`,`uuid`) values ('35348','16','','10417','Thread pool [{#JMXNAME}]: Queue size','jmx["{#JMXOBJ}",QueueSize]','1m','7d','365d','0','3','','!msg','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Current size of the execution queue.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c4a5e348590341b29af96b57bf92240b');
INSERT INTO `items` (`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`,`uuid`) values ('35349','16','','10417','Cache group [{#JMXGROUP}]: Cache gets, rate','jmx["{#JMXOBJ}",CacheGets]','1m','7d','365d','0','0','','ops','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of gets to the cache per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6fb5dee0c7434b279eb21da7d54edacc');
INSERT INTO `items` (`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`,`uuid`) values ('35350','16','','10417','Cache group [{#JMXGROUP}]: Cache hits, pct','jmx["{#JMXOBJ}",CacheHitPercentage]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Percentage of successful hits.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','632a331fe886428fa7b2c8845a02b57a');
INSERT INTO `items` (`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`,`uuid`) values ('35351','16','','10417','Cache group [{#JMXGROUP}]: Cache misses, pct','jmx["{#JMXOBJ}",CacheMissPercentage]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Percentage of accesses that failed to find anything.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','843b31df2e4d430082731b44e2653f13');
INSERT INTO `items` (`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`,`uuid`) values ('35352','16','','10417','Cache group [{#JMXGROUP}]: Cache puts, rate','jmx["{#JMXOBJ}",CachePuts]','1m','7d','365d','0','0','','ops','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of puts to the cache per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','96616d8c2b9c46b0bbd7350679476c36');
INSERT INTO `items` (`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`,`uuid`) values ('35353','16','','10417','Cache group [{#JMXGROUP}]: Cache removals, rate','jmx["{#JMXOBJ}",CacheRemovals]','1m','7d','365d','0','0','','ops','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of removals from the cache per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','308b3e27d35b439bbb2c1cf96f6d92fe');
INSERT INTO `items` (`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`,`uuid`) values ('35354','16','','10417','Cache group [{#JMXGROUP}]: Cache size','jmx["{#JMXOBJ}",CacheSize]','1m','7d','365d','0','3','','!keys','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of non-null values in the cache as a long value.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e4886d5b699e432c8e6bb47b23b9c314');
INSERT INTO `items` (`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`,`uuid`) values ('35355','16','','10417','Cache group [{#JMXGROUP}]: Cache transaction commits, rate','jmx["{#JMXOBJ}",CacheTxCommits]','1m','7d','365d','0','0','','!tps','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of transaction commits per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','304ff6af92c0473aab8216d16509d28f');
INSERT INTO `items` (`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`,`uuid`) values ('35356','16','','10417','Cache group [{#JMXGROUP}]: Cache transaction rollbacks, rate','jmx["{#JMXOBJ}",CacheTxRollbacks]','1m','7d','365d','0','0','','!tps','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of transaction rollback per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd5b517d5a384c70a070658bc41734bf');
INSERT INTO `items` (`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`,`uuid`) values ('35357','16','','10417','Cache group [{#JMXGROUP}]: Cache heap entries','jmx["{#JMXOBJ}",HeapEntriesCount]','1m','7d','365d','0','3','','!keys','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of entries in heap memory.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a0d3a73939564dc39267ccdca06d524b');
INSERT INTO `items` (`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`,`uuid`) values ('35358','20','.1.3.6.1.2.1.1.4.0','10418','Cisco ASAv: Contact','cisco.asav.contact','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe textual identification of the contact person\r\nfor this managed node, together with information\r\non how to contact this person.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9371a5b8ca3445eaa6516044e60a2ec6');
INSERT INTO `items` (`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`,`uuid`) values ('35359','20','.1.3.6.1.2.1.1.6.0','10418','Cisco ASAv: Location','cisco.asav.location','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe physical location of this node (e.g.,\r\n`telephone closet, 3rd floor\').','24','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2d4a058787a141629a33ab98194055f2');
INSERT INTO `items` (`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`,`uuid`) values ('35360','20','.1.3.6.1.2.1.1.1.0','10418','Cisco ASAv: System description','cisco.asav.model','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nA textual description of the entity. This value\r\nshould include the full name and version\r\nidentification of the system\'s hardware type,\r\nsoftware operating-system, and networking\r\nsoftware. It is mandatory that this only contain\r\nprintable ASCII characters.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c2e63e282bcd4fd09a80f1be95c089d4');
INSERT INTO `items` (`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`,`uuid`) values ('35361','20','.1.3.6.1.2.1.1.5.0','10418','Cisco ASAv: Host name','cisco.asav.name','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nAn administratively-assigned name for this\r\nmanaged node. By convention, this is the node\'s\r\nfully-qualified domain name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d20d56dccd494060a4bc130f2951a610');
INSERT INTO `items` (`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`,`uuid`) values ('35362','20','.1.3.6.1.2.1.1.3.0','10418','Cisco ASAv: Uptime','cisco.asav.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe time (in hundredths of a second) since the\r\nnetwork management portion of the system was last\r\nre-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','526b1a118bab4c948af0935197a659f6');
INSERT INTO `items` (`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`,`uuid`) values ('35363','5','','10418','Cisco ASAv: SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'354','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','33e87e5fe2774f1fabb93553e782aaa0');
INSERT INTO `items` (`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`,`uuid`) values ('35364','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.8]','10418','CPU discovery','cisco.asav.cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of cpmCPUTotalTable, a table of CPU monitoring entries.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0469f5b40a77457f9447512ed2e75f5e');
INSERT INTO `items` (`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`,`uuid`) values ('35365','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2]','10418','Memory discovery','cisco.asav.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','072c0dc4527c492592df91115f1621cb');
INSERT INTO `items` (`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`,`uuid`) values ('35366','20','discovery[{#CISCO.IF.NAME}, .1.3.6.1.2.1.31.1.1.1.1,{#CISCO.IF.STATUS.ADMIN},.1.3.6.1.2.1.2.2.1.7,{#CISCO.IF.STATUS.OPER},.1.3.6.1.2.1.2.2.1.8,{#CISCO.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18]','10418','Interface discovery','cisco.asav.net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Network interfaces discovery','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2ced96f9e3ff40de85530b9ef9e4585c');
INSERT INTO `items` (`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`,`uuid`) values ('35367','20','discovery[{#CISCO.ASAV.PHYS.DESC},.1.3.6.1.2.1.47.1.1.1.1.2,{#CISCO.ASAV.PHYS.CLASS},.1.3.6.1.2.1.47.1.1.1.1.5,{#CISCO.ASAV.PHYS.NAME},.1.3.6.1.2.1.47.1.1.1.1.7]','10418','Physical entry discovery','cisco.asav.physical.entry.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Information about a particular physical entity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','de837df7c2f84cae86a84c773d7a07dc');
INSERT INTO `items` (`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`,`uuid`) values ('35368','20','discovery[{#CISCO.CRAS.USER},.1.3.6.1.4.1.9.9.392.1.3.21.1.1,{#CISCO.CRAS.INDEX},.1.3.6.1.4.1.9.9.392.1.3.21.1.3]','10418','Session discovery','cisco.asav.session.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Remote access session discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b49543c7150a4e258645b4b076b2454a');
INSERT INTO `items` (`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`,`uuid`) values ('35369','20','1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX}','10418','Cisco ASAv: CPU [{#SNMPINDEX}] Utilization','cisco.asav.cpu.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-PROCESS-MIB\r\nThe overall CPU busy percentage in the last 5 minute\r\nperiod. This object deprecates the object cpmCPUTotal5min\r\nand increases the value range to (0..100).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b2a6af9454a34ed3b8fa2e84ae801b69');
INSERT INTO `items` (`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`,`uuid`) values ('35370','20','1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX}','10418','Cisco ASAv: {#SNMPVALUE} Free memory','cisco.asav.memory.free[{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB\r\nIndicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','983f90966701470fb713fdfae62f1146');
INSERT INTO `items` (`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`,`uuid`) values ('35371','20','1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX}','10418','Cisco ASAv: {#SNMPVALUE} Used memory','cisco.asav.memory.used[{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB\r\nIndicates the number of bytes from the memory pool that are currently in use by applications on the managed device.\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a34b4279d8ac40ec8f2d6577ebaa4280');
INSERT INTO `items` (`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`,`uuid`) values ('35372','15','','10418','Cisco ASAv: {#SNMPVALUE} Memory utilization','cisco.asav.memory.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//cisco.asav.memory.used[{#SNMPINDEX}])/(last(//cisco.asav.memory.free[{#SNMPINDEX}])+last(//cisco.asav.memory.used[{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Memory utilization in %','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d67342c8a8124b1b89ef5ec36684b2a7');
INSERT INTO `items` (`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`,`uuid`) values ('35373','20','.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.IF.NAME} Administrative status','cisco.asav.net.if.adminstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'349','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe desired state of the interface. The\r\ntesting(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c4be70b6d6934281ba1c78ef056c7d79');
INSERT INTO `items` (`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`,`uuid`) values ('35374','20','.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.IF.NAME} Interface description','cisco.asav.net.if.descr[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','17f768ffe6604c678e15bb2538cb8cc5');
INSERT INTO `items` (`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`,`uuid`) values ('35375','20','.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.IF.NAME} Link speed','cisco.asav.net.if.highspeed[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in bits per second','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','01c5f157fc6140149dec01f512babadd');
INSERT INTO `items` (`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`,`uuid`) values ('35376','20','.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.IF.NAME} Incoming broadcast packets','cisco.asav.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a broadcast\r\naddress at this sub-layer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','263e253c378f4928ad5c5f6fd0ce1cbe');
INSERT INTO `items` (`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`,`uuid`) values ('35377','20','.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.IF.NAME} Incoming multicast packets','cisco.asav.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a multicast\r\naddress at this sub-layer. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9479f382e7e943e0aa560396d3a4db40');
INSERT INTO `items` (`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`,`uuid`) values ('35378','20','.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.IF.NAME} Incoming traffic','cisco.asav.net.if.in.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,\r\nincluding framing characters.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','443ce01bb9b04e69a936ec8fb9636720');
INSERT INTO `items` (`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`,`uuid`) values ('35379','20','.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.IF.NAME} Incoming unicast packets','cisco.asav.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were not addressed to a multicast\r\nor broadcast address at this sub-layer','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','900bf66a4a7f411f9d9ce231daa8d8a8');
INSERT INTO `items` (`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`,`uuid`) values ('35380','15','','10418','Cisco ASAv: {#CISCO.IF.NAME} Incoming utilization','cisco.asav.net.if.in.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//cisco.asav.net.if.in.traffic[{#SNMPINDEX}]) * (last(//cisco.asav.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//cisco.asav.net.if.highspeed[{#SNMPINDEX}]) + (last(//cisco.asav.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d7564be184564d06abb1f7a718bdf134');
INSERT INTO `items` (`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`,`uuid`) values ('35381','20','.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.IF.NAME} Interface name','cisco.asav.net.if.name[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-PORT-MIB\r\nDescriptive name that identifies this port.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ceb3a35e289043668d0087255de5c79b');
INSERT INTO `items` (`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`,`uuid`) values ('35382','20','.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.IF.NAME} Operational status','cisco.asav.net.if.operstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'350','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\nThe testing(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8d51a019f3634b079c2115ccb063840c');
INSERT INTO `items` (`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`,`uuid`) values ('35383','20','.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.IF.NAME} Outgoing broadcast packets','cisco.asav.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nbroadcast address at this sub-layer, including those that\r\nwere discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8a97ed7804f042c7b6767f72bcf9a504');
INSERT INTO `items` (`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`,`uuid`) values ('35384','20','.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.IF.NAME} Outgoing multicast packets','cisco.asav.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nmulticast address at this sub-layer, including those that\r\nwere discarded or not sent. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c0918a1acaa049e786a356c25c7dd654');
INSERT INTO `items` (`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`,`uuid`) values ('35385','20','.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.IF.NAME} Outgoing traffic','cisco.asav.net.if.out.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the\r\ninterface, including framing characters. This object is a\r\n64-bit version of ifOutOctets.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8e9c4d99c0d649e79e2f7f64d91789bf');
INSERT INTO `items` (`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`,`uuid`) values ('35386','20','.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.IF.NAME} Outgoing unicast packets','cisco.asav.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were not addressed to a\r\nmulticast or broadcast address at this sub-layer, including\r\nthose that were discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1439162918d842ab92f4fca35c32279f');
INSERT INTO `items` (`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`,`uuid`) values ('35387','15','','10418','Cisco ASAv: {#CISCO.IF.NAME} Outgoing utilization','cisco.asav.net.if.out.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//cisco.asav.net.if.out.traffic[{#SNMPINDEX}]) * (last(//cisco.asav.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//cisco.asav.net.if.highspeed[{#SNMPINDEX}]) + (last(//cisco.asav.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','559d5ddae7744b19b32993174ef06918');
INSERT INTO `items` (`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`,`uuid`) values ('35388','20','.1.3.6.1.2.1.47.1.1.1.1.5.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Physical class','cisco.asav.phys.class[{#SNMPINDEX}]','1h','7d','365d','0','3','','','','',NULL,'353','','','0','','','','','2',NULL,'MIB: ENTITY-MIB\r\nAn indication of the general hardware type of the physical\r\nentity.\r\nAn agent should set this object to the standard enumeration\r\nvalue that most accurately indicates the general class of\r\nthe physical entity, or the primary class if there is more\r\nthan one entity.\r\nIf no appropriate standard registration identifier exists\r\nfor this physical entity, then the value \'other(1)\' is\r\nreturned. If the value is unknown by this agent, then the\r\nvalue \'unknown(2)\' is returned.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3ac03ebbab6e4868887715f74443011c');
INSERT INTO `items` (`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`,`uuid`) values ('35389','20','.1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Physical description','cisco.asav.phys.description[{#SNMPINDEX}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB\r\nA textual description of physical entity. This object\r\nshould contain a string that identifies the manufacturer\'s\r\nname for the physical entity, and should be set to a\r\ndistinct value for each version or model of the physical\r\nentity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a63fe0420f2e446ca10094fbf04ee4a8');
INSERT INTO `items` (`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`,`uuid`) values ('35390','20','.1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Hardware revision','cisco.asav.phys.hw[{#SNMPINDEX}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB\r\nThe vendor-specific hardware revision string for the\r\nphysical entity. The preferred value is the hardware\r\nrevision identifier actually printed on the component itself\r\n(if present).\r\nNote that if revision information is stored internally in a\r\nnon-printable (e.g., binary) format, then the agent must\r\nconvert such information to a printable format, in an\r\nimplementation-specific manner.\r\nIf no specific hardware revision string is associated with\r\nthe physical component, or if this information is unknown to\r\nthe agent, then this object will contain a zero-length\r\nstring.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','862f2607838647b3b173d113e531c931');
INSERT INTO `items` (`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`,`uuid`) values ('35391','20','.1.3.6.1.2.1.47.1.1.1.1.12.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Manufacturer name','cisco.asav.phys.mfgname[{#SNMPINDEX}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB\r\nThe name of the manufacturer of this physical component.\r\nThe preferred value is the manufacturer name string actually\r\nprinted on the component itself (if present).\r\nNote that comparisons between instances of the\r\nentPhysicalModelName, entPhysicalFirmwareRev,\r\nentPhysicalSoftwareRev, and the entPhysicalSerialNum\r\nobjects, are only meaningful amongst entPhysicalEntries with\r\nthe same value of entPhysicalMfgName.\r\nIf the manufacturer name string associated with the physical\r\ncomponent is unknown to the agent, then this object will\r\ncontain a zero-length string.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d64c4765f78847cc8071913c5454f433');
INSERT INTO `items` (`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`,`uuid`) values ('35392','20','.1.3.6.1.2.1.47.1.1.1.1.13.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Model name','cisco.asav.phys.model[{#SNMPINDEX}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB\r\nThe vendor-specific model name identifier string associated\r\nwith this physical component. The preferred value is the\r\ncustomer-visible part number, which may be printed on the\r\ncomponent itself.\r\nIf the model name string associated with the physical\r\ncomponent is unknown to the agent, then this object will\r\ncontain a zero-length string.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','73739a08da634cd09b857a7512166d7b');
INSERT INTO `items` (`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`,`uuid`) values ('35393','20','.1.3.6.1.2.1.47.1.1.1.1.7.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Physical name','cisco.asav.phys.name[{#SNMPINDEX}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB\r\nThe textual name of the physical entity. The value of this\r\nobject should be the name of the component as assigned by\r\nthe local device and should be suitable for use in commands\r\nentered at the device\'s `console\'. This might be a text\r\nname (e.g., `console\') or a simple component number (e.g.,\r\nport or module number, such as `1\'), depending on the\r\nphysical component naming syntax of the device.\r\nIf there is no local name, or if this object is otherwise\r\nnot applicable, then this object contains a zero-length\r\nstring.\r\nNote that the value of entPhysicalName for two physical\r\nentities will be the same in the event that the console\r\ninterface does not distinguish between them, e.g., slot-1\r\nand the card in slot-1.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','21da0a63b5344b099ab21932a4a65dc6');
INSERT INTO `items` (`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`,`uuid`) values ('35394','20','.1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Serial number','cisco.asav.phys.sn[{#SNMPINDEX}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB\r\nThe vendor-specific serial number string for the physical\r\nentity. The preferred value is the serial number string\r\nactually printed on the component itself (if present).\r\nOn the first instantiation of an physical entity, the value\r\nof entPhysicalSerialNum associated with that entity is set\r\nto the correct vendor-assigned serial number, if this\r\ninformation is available to the agent. If a serial number\r\nis unknown or non-existent, the entPhysicalSerialNum will be\r\nset to a zero-length string instead.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9962cc7467c14221bee66a2f17aba12b');
INSERT INTO `items` (`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`,`uuid`) values ('35395','20','.1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Software revision','cisco.asav.phys.sw[{#SNMPINDEX}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB\r\nThe vendor-specific software revision string for the\r\nphysical entity.\r\nNote that if revision information is stored internally in a\r\nnon-printable (e.g., binary) format, then the agent must\r\nconvert such information to a printable format, in an\r\nimplementation-specific manner.\r\nIf no specific software programs are associated with the\r\nphysical component, or if this information is unknown to the\r\nagent, then this object will contain a zero-length string.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','698a7613f08048b48d7aad4ad5285562');
INSERT INTO `items` (`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`,`uuid`) values ('35396','20','.1.3.6.1.4.1.9.9.392.1.3.21.1.10.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] ISP address','cisco.asav.session.addr.isp[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB\r\nThe IP address of the peer (client) assigned by the ISP.\r\nThis is the address of the client device in the public\r\nnetwork.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff7de8cbf36643e3888451757b802873');
INSERT INTO `items` (`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`,`uuid`) values ('35397','20','.1.3.6.1.4.1.9.9.392.1.3.21.1.8.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Local address','cisco.asav.session.addr.local[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB\r\nThe IP address assigned to the client of this session\r\nin the private network assigned by the managed entity.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3071310f4f0e4c14bcf47d07a05568cc');
INSERT INTO `items` (`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`,`uuid`) values ('35398','20','.1.3.6.1.4.1.9.9.392.1.3.21.1.14.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Algorithm validate packets','cisco.asav.session.authen.algorithm[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'347','','','0','','','','','2',NULL,'MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB\r\nThe algorithm used by this remote access session to\r\nto validate packets.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','47c84fde7b47415d96d461c28da50526');
INSERT INTO `items` (`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`,`uuid`) values ('35399','20','.1.3.6.1.4.1.9.9.392.1.3.21.1.4.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Authenticate method','cisco.asav.session.authen.method[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'352','','','0','','','','','2',NULL,'MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB\r\nThe method used to authenticate the user prior to\r\nestablishing the session.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','901b8473e8054e929a55dd3e5d507d5d');
INSERT INTO `items` (`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`,`uuid`) values ('35400','20','.1.3.6.1.4.1.9.9.392.1.3.21.1.5.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Authorize method','cisco.asav.session.author.method[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'352','','','0','','','','','2',NULL,'MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB\r\nThe method used to authorize the user prior to\r\nestablishing the session.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','452348005b1c4b7db194afcf3c95473d');
INSERT INTO `items` (`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`,`uuid`) values ('35401','20','.1.3.6.1.4.1.9.9.392.1.3.21.1.6.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Session duration','cisco.asav.session.duration[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB\r\nThe number of seconds elapsed since this session\r\nwas established.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c25050519610453baf3e69042fe77cf0');
INSERT INTO `items` (`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`,`uuid`) values ('35402','20','.1.3.6.1.4.1.9.9.392.1.3.21.1.13.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Encryption algorithm','cisco.asav.session.encryption[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'348','','','0','','','','','2',NULL,'MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB\r\nThe algorithm used by this remote access session to\r\nencrypt its payload.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','63ea7737e7534608b60744ec3b82ffae');
INSERT INTO `items` (`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`,`uuid`) values ('35403','20','.1.3.6.1.4.1.9.9.392.1.3.21.1.35.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Incoming traffic','cisco.asav.session.in.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB\r\nThe rate of octets received by this Remote\r\nAccess Session.\r\nThis value is accumulated BEFORE determining whether\r\nor not the packet should be decompressed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c7a05da2f7d84743851e7d628d1e9838');
INSERT INTO `items` (`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`,`uuid`) values ('35404','20','.1.3.6.1.4.1.9.9.392.1.3.21.1.36.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Outgoing traffic','cisco.asav.session.out.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB\r\nThe rate of octets transmitted by this Remote\r\nAccess Session.\r\nThis value is accumulated AFTER determining whether\r\nor not the packet should be compressed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c71e07de9083472a982a827061496d5a');
INSERT INTO `items` (`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`,`uuid`) values ('35405','20','.1.3.6.1.4.1.9.9.392.1.3.21.1.11.{#SNMPINDEX}','10418','Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Session protocol','cisco.asav.session.protocol[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'351','','','0','','','','','2',NULL,'MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB\r\nThe protocol underlying this remote access session.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','de873aa34ad64f3d91e11d6999950692');
INSERT INTO `items` (`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`,`uuid`) values ('35406','20','.1.3.6.1.2.1.1.4.0','10419','F5 BIG-IP: Contact','bigip.contact','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe textual identification of the contact person\r\nfor this managed node, together with information\r\non how to contact this person.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','907424caaf7c4b11b7a567db84ea1e17');
INSERT INTO `items` (`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`,`uuid`) values ('35407','20','.1.3.6.1.4.1.3375.2.1.1.2.12.3.0','10419','F5 BIG-IP: TCP connections, CLOSE-WAIT/LAST-ACK','bigip.tcp.close_wait','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe number of current TCP connections in CLOSE-WAIT/LAST-ACK.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','78d6c13d575a41a8b160bd4e2c0bea7b');
INSERT INTO `items` (`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`,`uuid`) values ('35408','20','.1.3.6.1.4.1.3375.2.1.6.6.0','10419','F5 BIG-IP: Uptime','bigip.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe system up time in 1/100 seconds since boot.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','efb83b0cb4864b249ecf61b2f81ec468');
INSERT INTO `items` (`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`,`uuid`) values ('35409','20','.1.3.6.1.4.1.3375.2.1.1.2.13.2.0','10419','F5 BIG-IP: Open UDP connections','bigip.udp.open','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe number of current open UDP connections.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','843e855fb10f4cb0be81953dd8dbb87e');
INSERT INTO `items` (`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`,`uuid`) values ('35410','20','.1.3.6.1.4.1.3375.2.1.1.2.12.5.0','10419','F5 BIG-IP: TCP connections, TIME-WAIT','bigip.tcp.time_wait','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe number of current TCP connections in TIME-WAIT.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd3982fd369142878ffb9530656556e3');
INSERT INTO `items` (`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`,`uuid`) values ('35411','20','.1.3.6.1.4.1.3375.2.1.1.2.12.2.0','10419','F5 BIG-IP: Open TCP connections','bigip.tcp.open','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe number of current open TCP connections.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b58bae7e2e4f403ba7bce846ccf5228e');
INSERT INTO `items` (`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`,`uuid`) values ('35412','20','.1.3.6.1.4.1.3375.2.1.1.2.12.20.0','10419','F5 BIG-IP: TCP connections, FIN-WAIT-2','bigip.tcp.fin2_wait','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe number of current TCP connections in FIN-WAIT-2.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','69576083e02c486998512c58ab2a6371');
INSERT INTO `items` (`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`,`uuid`) values ('35413','20','.1.3.6.1.4.1.3375.2.1.1.2.12.4.0','10419','F5 BIG-IP: TCP connections, FIN-WAIT-1/CLOSING','bigip.tcp.fin1_wait','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe number of current TCP connections in FIN-WAIT-1/CLOSING.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e28c1bfcd63e4a5c8394680886395669');
INSERT INTO `items` (`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`,`uuid`) values ('35414','20','.1.3.6.1.4.1.3375.2.1.3.3.3.0','10419','F5 BIG-IP: Chassis serial number','bigip.serialnumber','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nSerial number','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a80409ff52bf4fe183a68ed257279db5');
INSERT INTO `items` (`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`,`uuid`) values ('35415','20','.1.3.6.1.2.1.1.6.0','10419','F5 BIG-IP: Location','bigip.location','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe physical location of this node (e.g.,\r\n`telephone closet, 3rd floor\').','24','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ce387e2d78e42bfa6180b4b22096468');
INSERT INTO `items` (`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`,`uuid`) values ('35416','20','.1.3.6.1.4.1.3375.2.1.4.2.0','10419','F5 BIG-IP: Product version','bigip.product.version','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe product version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b670cf1b43d84b8784acfeaca1f01320');
INSERT INTO `items` (`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`,`uuid`) values ('35417','20','.1.3.6.1.4.1.3375.2.1.4.1.0','10419','F5 BIG-IP: Product name','bigip.product.name','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe product name.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dd91be3044a2465781af744dc45dd06f');
INSERT INTO `items` (`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`,`uuid`) values ('35418','20','.1.3.6.1.4.1.3375.2.1.4.4.0','10419','F5 BIG-IP: Product edition','bigip.product.edition','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe product edition.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5b3c2a650f474a6da05262dc5b3634a9');
INSERT INTO `items` (`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`,`uuid`) values ('35419','20','.1.3.6.1.4.1.3375.2.1.4.5.0','10419','F5 BIG-IP: Product build date','bigip.product.date','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe product build date.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','065a6b42397e40c3874cf4176bd0fa6b');
INSERT INTO `items` (`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`,`uuid`) values ('35420','20','.1.3.6.1.4.1.3375.2.1.4.3.0','10419','F5 BIG-IP: Product build','bigip.product.build','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe product build number.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3d7299dcbfee4b4a8b39bbf8daa4a077');
INSERT INTO `items` (`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`,`uuid`) values ('35421','20','.1.3.6.1.2.1.1.5.0','10419','F5 BIG-IP: Host name','bigip.name','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nAn administratively-assigned name for this\r\nmanaged node. By convention, this is the node\'s\r\nfully-qualified domain name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','97d896e7b8ed422caf9c4ebf053bb8d9');
INSERT INTO `items` (`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`,`uuid`) values ('35422','20','.1.3.6.1.2.1.1.1.0','10419','F5 BIG-IP: Hardware model name','bigip.model','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nA textual description of the entity. This value\r\nshould include the full name and version\r\nidentification of the system\'s hardware type,\r\nsoftware operating-system, and networking\r\nsoftware. It is mandatory that this only contain\r\nprintable ASCII characters.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d9bf23e66ae347eb8f6f58867cdc3ca7');
INSERT INTO `items` (`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`,`uuid`) values ('35423','5','','10419','F5 BIG-IP: SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'358','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c91416602a9c451ca0eb959073f65fb0');
INSERT INTO `items` (`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`,`uuid`) values ('35424','20','discovery[{#TEMP.INDEX},.1.3.6.1.4.1.3375.2.1.3.2.4.2.1.1,{#SLOT.INDEX},.1.3.6.1.4.1.3375.2.1.3.2.4.2.1.4,{#TEMP.LOCATION},.1.3.6.1.4.1.3375.2.1.3.2.4.2.1.3]','10419','Blade temperature discovery','bigip.blade.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Containing information of blade temperature of the system','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9368bf7cbf0742e5af8e0b1200200a15');
INSERT INTO `items` (`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`,`uuid`) values ('35425','20','discovery[{#VOLT.INDEX},.1.3.6.1.4.1.3375.2.1.3.2.5.2.1.1]','10419','Blade voltage discovery','bigip.blade.voltage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing information of blade voltage of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','099e4de8464e49aca8e0d24b4276c804');
INSERT INTO `items` (`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`,`uuid`) values ('35426','20','discovery[{#CERT.NAME},.1.3.6.1.4.1.3375.2.1.15.1.2.1.1]','10419','Certificate discovery','bigip.cert.discovery','1d','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing certificate configuration.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dfdcfd160cfe4e798f29576280bf1627');
INSERT INTO `items` (`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`,`uuid`) values ('35427','20','discovery[{#FAN.INDEX},.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.1]','10419','Chassis fan discovery','bigip.chassis.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing information of chassis fan status of the system','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1bab90f9f015432c817cabebb98453af');
INSERT INTO `items` (`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`,`uuid`) values ('35428','20','discovery[{#POWER.INDEX},.1.3.6.1.4.1.3375.2.1.3.2.2.2.1.1]','10419','Chassis power supply discovery','bigip.chassis.power.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing information of chassis power supply status of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ee07355820ae4281ba5c6b4640a9fcc4');
INSERT INTO `items` (`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`,`uuid`) values ('35429','20','discovery[{#TEMP.INDEX},.1.3.6.1.4.1.3375.2.1.3.2.3.2.1.1]','10419','Chassis temperature discovery','bigip.chassis.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing information of chassis temperature of the system','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','795b91aa746b43fdb8171cd30aa249ee');
INSERT INTO `items` (`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`,`uuid`) values ('35430','20','discovery[{#HOST.ID},.1.3.6.1.4.1.3375.2.1.7.5.2.1.1,{#CPU.ID},.1.3.6.1.4.1.3375.2.1.7.5.2.1.3]','10419','CPU discovery','bigip.cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing entries of system CPU usage information for a system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1f27aaedf30243c2a704bf6350490d8c');
INSERT INTO `items` (`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`,`uuid`) values ('35431','20','discovery[{#CPU.SENSOR.INDEX},.1.3.6.1.4.1.3375.2.1.3.6.2.1.1,{#CPU.SENSOR.SLOT},.1.3.6.1.4.1.3375.2.1.3.6.2.1.5,{#CPU.SENSOR.NAME},.1.3.6.1.4.1.3375.2.1.3.6.2.1.4]','10419','CPU sensor discovery','bigip.cpu.sensor.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing information of CPU sensor status on the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a0bdcabc8c7c4a349a9c4711be33c417');
INSERT INTO `items` (`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`,`uuid`) values ('35432','20','discovery[{#PART.NAME},.1.3.6.1.4.1.3375.2.1.7.3.2.1.1]','10419','File system discovery','bigip.disktable.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing entries of system disk usage information.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','26027ab56e7841d1b73747935a5e6157');
INSERT INTO `items` (`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`,`uuid`) values ('35433','20','discovery[{#HOST.ID},.1.3.6.1.4.1.3375.2.1.7.4.2.1.1]','10419','Memory discovery','bigip.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Containing system statistics information of the memory usage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8aeb7920d1fe4ba4884f92e45e711228');
INSERT INTO `items` (`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`,`uuid`) values ('35434','20','discovery[{#MODULE.NAME},.1.3.6.1.4.1.3375.2.1.11.1.2.1.1]','10419','Module discovery','bigip.module.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Resource allocation information about modules on the system','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6fa254ddaea74df1928e3582b34c292d');
INSERT INTO `items` (`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`,`uuid`) values ('35435','20','discovery[{#IF.NAME},.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.1]','10419','Network interface discovery','bigip.net.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing statistic information of the interfaces on the device.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','053063ca377e4438bfa93d08a07adbe9');
INSERT INTO `items` (`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`,`uuid`) values ('35436','20','discovery[{#NODE.NAME},.1.3.6.1.4.1.3375.2.2.4.2.3.1.20]','10419','Node discovery','bigip.node.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing statistic information of node addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4e93191505d148e98b915ed38a681a03');
INSERT INTO `items` (`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`,`uuid`) values ('35437','20','discovery[{#POOL.NAME},.1.3.6.1.4.1.3375.2.2.5.2.3.1.1]','10419','Pool discovery','bigip.pool.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing statistic information of pools.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','45e61df153b94d4bad42503e9221e44c');
INSERT INTO `items` (`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`,`uuid`) values ('35438','20','discovery[{#VSERVER.NAME},.1.3.6.1.4.1.3375.2.2.10.2.3.1.1]','10419','Virtual server discovery','bigip.virtual_server.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing information of virtual servers.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6bb0a20248ba473b91a9b4a4261229a7');
INSERT INTO `items` (`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`,`uuid`) values ('35439','20','.1.3.6.1.4.1.3375.2.1.3.2.4.2.1.2.{#SNMPINDEX}','10419','F5 BIG-IP: Sensor [{#SLOT.INDEX}:{#TEMP.INDEX}]: Temperature','bigip.blade.temp.value[{#SLOT.INDEX},{#TEMP.INDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nLocation: {#TEMP.LOCATION}\r\nThe blade temperature (in Celsius) of the indexed sensor on the system.,\r\nThis is only supported for the platform where\r\nthe sensor data is available.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6e0239a64c2c43ee94e225efcf970ef1');
INSERT INTO `items` (`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`,`uuid`) values ('35440','20','.1.3.6.1.4.1.3375.2.1.3.2.5.2.1.3.{#SNMPINDEX}','10419','F5 BIG-IP: Voltage [{#VOLT.INDEX}]: Slot','bigip.blade.voltage.slot[{#VOLT.INDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe chassis slot number, if applicable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6f7cf365f10440b18a08d63880356401');
INSERT INTO `items` (`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`,`uuid`) values ('35441','20','.1.3.6.1.4.1.3375.2.1.3.2.4.2.1.2.{#SNMPINDEX}','10419','F5 BIG-IP: Voltage [{#VOLT.INDEX}]: Value','bigip.blade.voltage.value[{#VOLT.INDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe blade voltage (in V) of the indexed sensor on the system.,\r\nThis is only supported for the platform where\r\nthe sensor data is available.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1c0bf38bb0d3473cae285704ccd3ee0b');
INSERT INTO `items` (`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`,`uuid`) values ('35442','20','.1.3.6.1.4.1.3375.2.1.15.1.2.1.5.{#SNMPINDEX}','10419','F5 BIG-IP: Certificate [{#CERT.NAME}]: Expiration date','bigip.cert.expiration.date[{#CERT.NAME}]','12h','7d','0','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe expiration date of the certificate in unix time.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d27c1c13d6984728aebacdcf26777025');
INSERT INTO `items` (`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`,`uuid`) values ('35443','20','.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.3.{#SNMPINDEX}','10419','F5 BIG-IP: FAN [{#FAN.INDEX}]: Speed','bigip.chassis.fan.speed[{#FAN.INDEX}]','5m','7d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe actual speed of the indexed chassis fan on the system.\r\nThis is only supported for the platform where the actual\r\nfan speed data is available.\r\n\'0\' means fan speed is unavailable while the associated chassis status is good.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','973e0443ecc84630afc327d1917d9e57');
INSERT INTO `items` (`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`,`uuid`) values ('35444','20','.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.2.{#SNMPINDEX}','10419','F5 BIG-IP: FAN [{#FAN.INDEX}]: Status','bigip.chassis.fan.status[{#FAN.INDEX}]','5m','7d','365d','0','3','','','','',NULL,'355','','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe status of the indexed chassis fan on the system.,\r\nThis is only supported for the platform where\r\nthe sensor data is available.\r\nPossible values: 0 - bad, 1 - good, 2 - notpresent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','13b1890ae83547d482c9130ea0ccf876');
INSERT INTO `items` (`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`,`uuid`) values ('35445','20','.1.3.6.1.4.1.3375.2.1.3.2.2.2.1.2.{#SNMPINDEX}','10419','F5 BIG-IP: Power supply [{#POWER.INDEX}]: Status','bigip.chassis.power.status[{#POWER.INDEX}]','5m','7d','365d','0','3','','','','',NULL,'355','','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe status of the indexed power supply on the system.,\r\nThis is only supported for the platform where\r\nthe sensor data is available.\r\nPossible values: 0 - bad, 1 - good, 2 - notpresent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d72e501362eb4e70bb324d42d304b7a8');
INSERT INTO `items` (`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`,`uuid`) values ('35446','20','.1.3.6.1.4.1.3375.2.1.3.2.3.2.1.2.{#SNMPINDEX}','10419','F5 BIG-IP: Sensor [{#TEMP.INDEX}]: Temperature','bigip.chassis.temp.value[{#TEMP.INDEX}]','5m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe chassis temperature (in Celsius) of the indexed sensor on the system.,\r\nThis is only supported for the platform where\r\nthe sensor data is available.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e49355bacceb473eb9f548d044a9742b');
INSERT INTO `items` (`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`,`uuid`) values ('35447','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 1m','bigip.cpu.idle.1m[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time spent by the specified processor doing nothing for the associated host in the last one minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7cf45a392cd7465988eb527de7b3ad63');
INSERT INTO `items` (`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`,`uuid`) values ('35448','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 5s','bigip.cpu.spftirq.5s[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time spent by the specified processor servicing soft interrupts for the associated host in the last five seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8a6c086c524c4f5c93e66f9f453ed767');
INSERT INTO `items` (`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`,`uuid`) values ('35449','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 5m','bigip.cpu.user.5m[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time spent by the specified processor in user context for the associated host in the last five minutes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7344ae137ef94f80a99865057c105d96');
INSERT INTO `items` (`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`,`uuid`) values ('35450','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 1m','bigip.cpu.user.1m[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time spent by the specified processor in user context for the associated host in the last one minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','beaece1c9eaa41768e7c05993d2f4b3b');
INSERT INTO `items` (`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`,`uuid`) values ('35451','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 5s','bigip.cpu.usageratio.5s[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThis is average usage ratio of CPU for the associated host in the last five seconds. It is calculated by\r\n(sum of deltas for user, niced, system)/(sum of deltas of user, niced, system, idle, irq, softirq, and iowait),\r\nwhere each delta is the difference for each stat over the last 5-second interval;\r\nuser:sysMultiHostCpuUser5s;\r\nniced:sysMultiHostCpuNiced5s;\r\nstolen:sysMultiHostCpuStolen5s;\r\nsystem:sysMultiHostCpuSystem5s;\r\nidle:sysMultiHostCpuIdle5s;\r\nirq:sysMultiHostCpuIrq5s;\r\niowait:sysMultiHostCpuIowait5s','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e0e3bbd21d3e434c80e7bb1969388b27');
INSERT INTO `items` (`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`,`uuid`) values ('35452','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 5m','bigip.cpu.usageratio.5m[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThis is average usage ratio of CPU for the associated host in the last five minutes. It is calculated by\r\n(sum of deltas for user, niced, system)/(sum of deltas of user, niced, system, idle, irq, softirq, and iowait),\r\nwhere each delta is the difference for each stat over the last 5-second interval;\r\nuser:sysMultiHostCpuUser5m;\r\nniced:sysMultiHostCpuNiced5m;\r\nstolen:sysMultiHostCpuStolen5m;\r\nsystem:sysMultiHostCpuSystem5m;\r\nidle:sysMultiHostCpuIdle5m;\r\nirq:sysMultiHostCpuIrq5m;\r\niowait:sysMultiHostCpuIowait5m','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','46e78b7f00904778abf5160fff93670a');
INSERT INTO `items` (`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`,`uuid`) values ('35453','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 1m','bigip.cpu.usageratio.1m[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThis is average usage ratio of CPU for the associated host in the last one minute. It is calculated by\r\n(sum of deltas for user, niced, system)/(sum of deltas of user, niced, system, idle, irq, softirq, and iowait),\r\nwhere each delta is the difference for each stat over the last 5-second interval;\r\nuser:sysMultiHostCpuUser1m;\r\nniced:sysMultiHostCpuNiced1m;\r\nstolen:sysMultiHostCpuStolen1m;\r\nsystem:sysMultiHostCpuSystem1m;\r\nidle:sysMultiHostCpuIdle1m;\r\nirq:sysMultiHostCpuIrq1m;\r\niowait:sysMultiHostCpuIowait1m','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e8f3b63e951d4de0b845647bcdd1524f');
INSERT INTO `items` (`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`,`uuid`) values ('35454','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 5s','bigip.cpu.system.5s[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time spent by the specified processor servicing system calls for the associated host in the last five seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8b1bd4e936c149cfa44d8cf5d88bee4b');
INSERT INTO `items` (`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`,`uuid`) values ('35455','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 5m','bigip.cpu.system.5m[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time spent by the specified processor servicing system calls for the associated host in the last five minutes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9dc919dcc789473db23f989943f9a759');
INSERT INTO `items` (`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`,`uuid`) values ('35456','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 1m','bigip.cpu.system.1m[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time spent by the specified processor servicing system calls for the associated host in the last one minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','20a60cec7a50457a9c6c5a5e318b53e2');
INSERT INTO `items` (`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`,`uuid`) values ('35457','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 5m','bigip.cpu.stolen.5m[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time \'stolen\' from the specified processor for the associated host in the last five minutes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c229331551284955befbed59fedae445');
INSERT INTO `items` (`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`,`uuid`) values ('35458','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 1s)','bigip.cpu.stolen.1s[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time \'stolen\' from the specified processor for the associated host in the last five seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','757178b5d85041959609de5d38d93f20');
INSERT INTO `items` (`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`,`uuid`) values ('35459','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 1m','bigip.cpu.stolen.1m[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time \'stolen\' from the specified processor for the associated host in the last one minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','62e59d3a63014976a6c052ef259dbbc1');
INSERT INTO `items` (`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`,`uuid`) values ('35460','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 5m','bigip.cpu.spftirq.5m[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time spent by the specified processor servicing soft interrupts for the associated host in the last five minutes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','56f459510e444326bba84ab12c4c232c');
INSERT INTO `items` (`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`,`uuid`) values ('35461','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 5m','bigip.cpu.idle.5m[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time spent by the specified processor doing nothing for the associated host in the last five minutes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','12acd2da83b04353aca2bd3cff842c97');
INSERT INTO `items` (`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`,`uuid`) values ('35462','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 1m','bigip.cpu.spftirq.1m[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time spent by the specified processor servicing soft interrupts for the associated host in the last one minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f2b1962e10b04dc28a124b91b7e9a235');
INSERT INTO `items` (`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`,`uuid`) values ('35463','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 5s','bigip.cpu.nice.5s[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time spent by the specified processor running niced processes for the associated host in the last five seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0046e43000b7477ea410970884829e5c');
INSERT INTO `items` (`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`,`uuid`) values ('35464','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 5m','bigip.cpu.nice.5m[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time spent by the specified processor running niced processes for the associated host in the last five minutes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bf51a4638db443a083ec19b934a6a915');
INSERT INTO `items` (`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`,`uuid`) values ('35465','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 1m','bigip.cpu.nice.1m[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time spent by the specified processor running niced processes for the associated host in the last one minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b74f502d97f54041a4c129f5993e0967');
INSERT INTO `items` (`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`,`uuid`) values ('35466','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 5s','bigip.cpu.irq.5s[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time spent by the specified processor servicing hardware interrupts for the associated host in the last five seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7bc53c5f9a7148759d426e8e5fd7f358');
INSERT INTO `items` (`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`,`uuid`) values ('35467','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 5m','bigip.cpu.irq.5m[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time spent by the specified processor servicing hardware interrupts for the associated host in the last five minutes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f3d8ac2412ee4f0b88f264e590e278cb');
INSERT INTO `items` (`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`,`uuid`) values ('35468','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 1m','bigip.cpu.irq.1m[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time spent by the specified processor servicing hardware interrupts for the associated host in the last one minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9f0f6dabac314744809a60161592a89f');
INSERT INTO `items` (`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`,`uuid`) values ('35469','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 5s','bigip.cpu.iowait.5s[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time spent by the specified processor waiting for external I/O to complete for the associated host in the last five seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b4715714c727483fb3ca6004a829ac46');
INSERT INTO `items` (`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`,`uuid`) values ('35470','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 5m','bigip.cpu.iowait.5m[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time spent by the specified processor waiting for external I/O to complete for the associated host in the last five minutes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6144e3ca25ac4f998559b860d059c385');
INSERT INTO `items` (`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`,`uuid`) values ('35471','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 1m','bigip.cpu.iowait.1m[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time spent by the specified processor waiting for external I/O to complete for the associated host in the last one minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','808a6933a1834291b80d0cb072dded09');
INSERT INTO `items` (`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`,`uuid`) values ('35472','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 5s','bigip.cpu.idle.5s[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time spent by the specified processor doing nothing for the associated host in the last five seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dd169e972fe041cca93020b8a942a4d2');
INSERT INTO `items` (`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`,`uuid`) values ('35473','20','.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 5s','bigip.cpu.user.5s[{#HOST.ID},{#CPU.ID}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe average time spent by the specified processor in user context for the associated host in the last five seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','61176fa2de794fcf90f1eef2ead10df6');
INSERT INTO `items` (`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`,`uuid`) values ('35474','20','.1.3.6.1.4.1.3375.2.1.3.6.2.1.3.{#SNMPINDEX}','10419','F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: FAN speed','bigip.cpu.sensor.fan[{#CPU.SENSOR.SLOT},{#CPU.SENSOR.INDEX}]','5m','7d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nCPU: {#CPU.SENSOR.NAME}\r\nThe fan speed (in RPM) of the indexed CPU on the system.,\r\nThis is only supported for the platform where\r\nthe sensor data is available.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','065993688a2e4b0e8e88998d24193a85');
INSERT INTO `items` (`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`,`uuid`) values ('35475','20','.1.3.6.1.4.1.3375.2.1.3.6.2.1.4.{#SNMPINDEX}','10419','F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: Name','bigip.cpu.sensor.name[{#CPU.SENSOR.SLOT},{#CPU.SENSOR.INDEX}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nIdentifier for the CPU.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','03bd45f8a7004fd3a3d8b361a37547d3');
INSERT INTO `items` (`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`,`uuid`) values ('35476','20','.1.3.6.1.4.1.3375.2.1.3.6.2.1.2.{#SNMPINDEX}','10419','F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: Temperature','bigip.cpu.sensor.temperature[{#CPU.SENSOR.SLOT},{#CPU.SENSOR.INDEX}]','5m','7d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nCPU: {#CPU.SENSOR.NAME}\r\nThe temperature of the indexed CPU on the system.\r\nThis is only supported for the platform where\r\nthe sensor data is available.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1ffd09c7d99843b88e259de3614d003a');
INSERT INTO `items` (`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`,`uuid`) values ('35477','20','.1.3.6.1.4.1.3375.2.1.7.3.2.1.2.{#SNMPINDEX}','10419','F5 BIG-IP: Mount point [{#PART.NAME}]: Block size','bigip.disktable.blocksize[{#PART.NAME}]','1h','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe number of bytes in the specified partition.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4c86e62a1a1a4f3eb990b2f17f6191fd');
INSERT INTO `items` (`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`,`uuid`) values ('35478','20','.1.3.6.1.4.1.3375.2.1.7.3.2.1.4.{#SNMPINDEX}','10419','F5 BIG-IP: Mount point [{#PART.NAME}]: Free blocks','bigip.disktable.freeblocks[{#PART.NAME}]','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe number of free blocks in the specified partition.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8fd4ee3dc199419189daf478ff2dc01d');
INSERT INTO `items` (`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`,`uuid`) values ('35479','20','.1.3.6.1.4.1.3375.2.1.7.3.2.1.6.{#SNMPINDEX}','10419','F5 BIG-IP: Mount point [{#PART.NAME}]: Free nodes','bigip.disktable.freenodes[{#PART.NAME}]','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe number of free file nodes in the specified partition.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c0724be667946f192a46cc2a0584971');
INSERT INTO `items` (`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`,`uuid`) values ('35480','20','.1.3.6.1.4.1.3375.2.1.7.3.2.1.3.{#SNMPINDEX}','10419','F5 BIG-IP: Mount point [{#PART.NAME}]: Total blocks','bigip.disktable.totalblocks[{#PART.NAME}]','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe number of total blocks in the specified partition.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','50d267f74f9c476fac23884828f5275f');
INSERT INTO `items` (`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`,`uuid`) values ('35481','20','.1.3.6.1.4.1.3375.2.1.7.3.2.1.5.{#SNMPINDEX}','10419','F5 BIG-IP: Mount point [{#PART.NAME}]: Total nodes','bigip.disktable.totalnodes[{#PART.NAME}]','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe number of total file nodes in the specified partition.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','49cd22a896d941a2b55f3ba6e95698b4');
INSERT INTO `items` (`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`,`uuid`) values ('35482','20','.1.3.6.1.4.1.3375.2.1.7.4.2.1.7.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}]: Total other non-TMM memory','bigip.memory.total.other[{#HOST.ID}]','5m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe total other non-TMM memory in bytes for the specified host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','39b39f06ae574927b90dfe9235301788');
INSERT INTO `items` (`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`,`uuid`) values ('35483','20','.1.3.6.1.4.1.3375.2.1.7.4.2.1.9.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}]: Total swap','bigip.memory.total.swap[{#HOST.ID}]','1d','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe total swap in bytes for the specified host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e01e3283d37a4ae09d62fbc679cc4dee');
INSERT INTO `items` (`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`,`uuid`) values ('35484','20','.1.3.6.1.4.1.3375.2.1.7.4.2.1.2.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}]: Total memory','bigip.memory.total[{#HOST.ID}]','1d','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe total host memory in bytes for the specified host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d1ebd77bd2bc4d24b45b32eb6cda6722');
INSERT INTO `items` (`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`,`uuid`) values ('35485','20','.1.3.6.1.4.1.3375.2.1.7.4.2.1.8.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}]: Used other non-TMM memory','bigip.memory.used.other[{#HOST.ID}]','5m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe other non-TMM memory in bytes currently in use for the specified host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6c73ea2e54594a1ab6edbdc6de30f711');
INSERT INTO `items` (`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`,`uuid`) values ('35486','20','.1.3.6.1.4.1.3375.2.1.7.4.2.1.10.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}]: Used swap','bigip.memory.used.swap[{#HOST.ID}]','5m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe swap in bytes currently in use for the specified host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3a9d6f2815644a4f93e008ccacbdb290');
INSERT INTO `items` (`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`,`uuid`) values ('35487','20','.1.3.6.1.4.1.3375.2.1.7.4.2.1.3.{#SNMPINDEX}','10419','F5 BIG-IP: Host [{#HOST.ID}]: Used memory','bigip.memory.used[{#HOST.ID}]','5m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe host memory in bytes currently in use for the specified host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d5af8fa1079b4c0aa47b98e25a184af3');
INSERT INTO `items` (`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`,`uuid`) values ('35488','20','.1.3.6.1.4.1.3375.2.1.11.1.2.1.4.{#SNMPINDEX}','10419','F5 BIG-IP: Module [{#MODULE.NAME}]: CPU ratio','bigip.module.cpu.ratio[{#MODULE.NAME}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe ratio of CPU to allocate to this module. Only valid if level is \'custom\'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','36a1032bb74145c8ae51dbb54ec988a2');
INSERT INTO `items` (`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`,`uuid`) values ('35489','20','.1.3.6.1.4.1.3375.2.1.11.1.2.1.5.{#SNMPINDEX}','10419','F5 BIG-IP: Module [{#MODULE.NAME}]: Disk ratio','bigip.module.disk.ratio[{#MODULE.NAME}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe ratio of available disk space to allocate to this module. Only valid if level is \'custom\'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eaeb7bc1225b48689124c373b04fc56f');
INSERT INTO `items` (`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`,`uuid`) values ('35490','20','.1.3.6.1.4.1.3375.2.1.11.1.2.1.3.{#SNMPINDEX}','10419','F5 BIG-IP: Module [{#MODULE.NAME}]: Memory ratio','bigip.module.memory.ratio[{#MODULE.NAME}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe ratio of available memory to allocate. Only valid if level is \'custom\'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b384a7e297f844c89cc40c486e0c69db');
INSERT INTO `items` (`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`,`uuid`) values ('35491','20','.1.3.6.1.4.1.3375.2.1.11.1.2.1.2.{#SNMPINDEX}','10419','F5 BIG-IP: Module [{#MODULE.NAME}]: Provision level','bigip.module.provision.level[{#MODULE.NAME}]','1m','7d','365d','0','3','','','','',NULL,'356','','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe provisioning level indicates how the systems resources\r\nare distributed amongst the modules\r\nPossible values: 1 - none, 2 - minimum, 3 - nominal, 4 - dedicated, 5 - custom.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','36dbc22d430e477ab2105323ad8b0850');
INSERT INTO `items` (`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`,`uuid`) values ('35492','20','.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.12.{#SNMPINDEX}','10419','F5 BIG-IP: Interface [{#IF.NAME}]: Collisions','bigip.net.collisions[{#IF.NAME}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe number of collisions on the specified interface, incremented by the\r\nnumber of collisions experienced during transmissions of a frame','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','87fd58c620c142a99dc810f13b3d109e');
INSERT INTO `items` (`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`,`uuid`) values ('35493','20','.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.3.{#SNMPINDEX}','10419','F5 BIG-IP: Interface [{#IF.NAME}]: Incoming traffic, rate','bigip.net.in.bytes.rate[{#IF.NAME}]','1m','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe rate of bytes received on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1ddb57921289497fb2c2e4f047f58c02');
INSERT INTO `items` (`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`,`uuid`) values ('35494','20','.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.10.{#SNMPINDEX}','10419','F5 BIG-IP: Interface [{#IF.NAME}]: Incoming packet drops','bigip.net.in.drops[{#IF.NAME}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe number of packets dropped on ingress for various reasons on the specified interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','45342d637fa440f8b73968a14bf39374');
INSERT INTO `items` (`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`,`uuid`) values ('35495','20','.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.8.{#SNMPINDEX}','10419','F5 BIG-IP: Interface [{#IF.NAME}]: Incoming packet error','bigip.net.in.error[{#IF.NAME}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe number of received packets that are either undersized,\r\noversized, or have FCS errors by the specified interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5bc37dde99024866a2a5f97fbce15c2f');
INSERT INTO `items` (`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`,`uuid`) values ('35496','20','.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.6.{#SNMPINDEX}','10419','F5 BIG-IP: Interface [{#IF.NAME}]: Incoming multicast packet, rate','bigip.net.in.multicast.rate[{#IF.NAME}]','1m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe rate of multicast packets received on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8aaff266f1b74a81a3eba46d321eb524');
INSERT INTO `items` (`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`,`uuid`) values ('35497','20','.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.2.{#SNMPINDEX}','10419','F5 BIG-IP: Interface [{#IF.NAME}]: Incoming packet, rate','bigip.net.in.pkts.rate[{#IF.NAME}]','1m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe rate of packets received on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','40e811829adc4715af4e10d223be3bc5');
INSERT INTO `items` (`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`,`uuid`) values ('35498','20','.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.13.{#SNMPINDEX}','10419','F5 BIG-IP: Interface [{#IF.NAME}]: Incoming QnQ packet, rate','bigip.net.in.qq.rate[{#IF.NAME}]','1m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe rate of double tagged packets received on the specified interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','202717aa54194cf882c86640e73b17af');
INSERT INTO `items` (`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`,`uuid`) values ('35499','20','.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.5.{#SNMPINDEX}','10419','F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing traffic, rate','bigip.net.out.bytes.rate[{#IF.NAME}]','1m','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe rate of bytes transmitted out of the specified interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c98f48ddf6bc46f39ab9aec6cc249fa4');
INSERT INTO `items` (`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`,`uuid`) values ('35500','20','.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.11.{#SNMPINDEX}','10419','F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing packet drops','bigip.net.out.drops[{#IF.NAME}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe number of packets aged out or with excessive transmission\r\ndelays due to multiple deferrals on the specified interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b19203459ac842e2b96eee75b6754eac');
INSERT INTO `items` (`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`,`uuid`) values ('35501','20','.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.9.{#SNMPINDEX}','10419','F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing packet error','bigip.net.out.error[{#IF.NAME}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe number of excessive collisions, incremented for each\r\nframe that experienced 16 collisions during transmission and\r\nwas aborted on the specified interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1496879429724a6daee4b97fa162419b');
INSERT INTO `items` (`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`,`uuid`) values ('35502','20','.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.7.{#SNMPINDEX}','10419','F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing multicast packet, rate','bigip.net.out.multicast.rate[{#IF.NAME}]','1m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe rate of multicast packets transmitted out of the specified interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ecd6a8dd5fa43c8b87a94119aac90b9');
INSERT INTO `items` (`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`,`uuid`) values ('35503','20','.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.4.{#SNMPINDEX}','10419','F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing packet, rate','bigip.net.out.pkts.rate[{#IF.NAME}]','1m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe rate of packets transmitted out of the specified interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fd4416466734469b85eec03c8e69185c');
INSERT INTO `items` (`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`,`uuid`) values ('35504','20','.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.14.{#SNMPINDEX}','10419','F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing QnQ packet, rate','bigip.net.out.qq.rate[{#IF.NAME}]','1m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe rate of double tagged packets transmitted out of the specified interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a4cb060cc3854aab9715c85174cc4933');
INSERT INTO `items` (`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`,`uuid`) values ('35505','20','.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.15.{#SNMPINDEX}','10419','F5 BIG-IP: Interface [{#IF.NAME}]: Pause state','bigip.net.pause[{#IF.NAME}]','1m','7d','365d','0','3','','','','',NULL,'357','','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe pause state of the specified interface.\r\nnone - no pause;\r\ntxrx - pause all data flow;\r\ntx - pause outgoing data flow;\r\nrx - pause incoming data flow.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','93a1107cb0ea44078f2ac04a7dc9e941');
INSERT INTO `items` (`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`,`uuid`) values ('35506','20','.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.{#SNMPINDEX}','10419','F5 BIG-IP: Node [{#NODE.NAME}]: Current connections','bigip.node.net.conn[{#NODE.NAME}]','5m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nThe current connections from server-side to the specified node address.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6292623c4482485f9f866be8b7d39367');
INSERT INTO `items` (`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`,`uuid`) values ('35507','20','.1.3.6.1.4.1.3375.2.2.4.2.3.1.4.{#SNMPINDEX}','10419','F5 BIG-IP: Node [{#NODE.NAME}]: Incoming traffic, rate','bigip.node.net.in.bytes.rate[{#NODE.NAME}]','5m','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nThe rate of bytes received by the specified node address from server-side.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9530c81b45c24ddda2440e2589964d28');
INSERT INTO `items` (`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`,`uuid`) values ('35508','20','.1.3.6.1.4.1.3375.2.2.4.2.3.1.3.{#SNMPINDEX}','10419','F5 BIG-IP: Node [{#NODE.NAME}]: Incoming packet, rate','bigip.node.net.in.pkts.rate[{#NODE.NAME}]','5m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nThe rate of packets received by the specified node address from server-side.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8e7ae014ea73489b81de960acad301b8');
INSERT INTO `items` (`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`,`uuid`) values ('35509','20','.1.3.6.1.4.1.3375.2.2.4.2.3.1.6.{#SNMPINDEX}','10419','F5 BIG-IP: Node [{#NODE.NAME}]: Outgoing traffic, rate','bigip.node.net.out.bytes.rate[{#NODE.NAME}]','5m','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nThe rate of bytes sent to server-side from the specified node address.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','88ec665ad6eb43e88a3625b50e130e82');
INSERT INTO `items` (`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`,`uuid`) values ('35510','20','.1.3.6.1.4.1.3375.2.2.4.2.3.1.5.{#SNMPINDEX}','10419','F5 BIG-IP: Node [{#NODE.NAME}]: Outgoing packet, rate','bigip.node.net.out.pkts.rate[{#NODE.NAME}]','5m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nThe rate of packets sent to server-side from the specified node address.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','077bb28cd8a1429fb564786e7d150dbc');
INSERT INTO `items` (`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`,`uuid`) values ('35511','20','.1.3.6.1.4.1.3375.2.2.4.2.3.1.21.{#SNMPINDEX}','10419','F5 BIG-IP: Node [{#NODE.NAME}]: Current sessions','bigip.node.net.sessions[{#NODE.NAME}]','5m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nThe number of current sessions going through the specified node address.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a0278f4cfd04611895207d9b7f3b13c');
INSERT INTO `items` (`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`,`uuid`) values ('35512','20','.1.3.6.1.4.1.3375.2.2.4.2.3.1.22.{#SNMPINDEX}','10419','F5 BIG-IP: Node [{#NODE.NAME}]: Connections hit a rate limit','bigip.node.overlimit[{#NODE.NAME}]','5m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nThe last recorded value for the number of connections to the node address when connections hit a rate limit;\r\nthis calculation is only maintained if rate limiting is configured for the node.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','15129cb2af84466d8c58641854ad0b54');
INSERT INTO `items` (`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`,`uuid`) values ('35513','20','.1.3.6.1.4.1.3375.2.2.4.2.3.1.23.{#SNMPINDEX}','10419','F5 BIG-IP: Node [{#NODE.NAME}]: Duration of exceeding rate limit','bigip.node.overtime[{#NODE.NAME}]','5m','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nDuration of time in seconds the specified node address has exceeded the\r\nconfigured connection rate limit.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6be4c0fd41d6459db5acd6c33461c7f9');
INSERT INTO `items` (`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`,`uuid`) values ('35514','20','.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.{#SNMPINDEX}','10419','F5 BIG-IP: Pool [{#POOL.NAME}]: Current connections','bigip.pool.net.conn[{#POOL.NAME}]','5m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nThe current connections from server-side to the specified pool.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0c53c6f3ab9e49b688a8e97252471ded');
INSERT INTO `items` (`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`,`uuid`) values ('35515','20','.1.3.6.1.4.1.3375.2.2.5.2.3.1.3.{#SNMPINDEX}','10419','F5 BIG-IP: Pool [{#POOL.NAME}]: Incoming traffic, rate','bigip.pool.net.in.bytes.rate[{#POOL.NAME}]','5m','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nThe rate of bytes received by the specified pool from server-side.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e6daed4f364c463dba542948b2272296');
INSERT INTO `items` (`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`,`uuid`) values ('35516','20','.1.3.6.1.4.1.3375.2.2.5.2.3.1.2.{#SNMPINDEX}','10419','F5 BIG-IP: Pool [{#POOL.NAME}]: Incoming packet, rate','bigip.pool.net.in.pkts.rate[{#POOL.NAME}]','5m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nThe rate of packets received by the specified pool from server-side.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b65e8d23fa3b4129936f0f3d7034c8a4');
INSERT INTO `items` (`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`,`uuid`) values ('35517','20','.1.3.6.1.4.1.3375.2.2.5.2.3.1.5.{#SNMPINDEX}','10419','F5 BIG-IP: Pool [{#POOL.NAME}]: Outgoing traffic, rate','bigip.pool.net.out.bytes.rate[{#POOL.NAME}]','5m','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nThe rate of bytes sent to server-side from the specified pool.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6c58f56d63e34166b02ad7c31271e2bb');
INSERT INTO `items` (`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`,`uuid`) values ('35518','20','.1.3.6.1.4.1.3375.2.2.5.2.3.1.4.{#SNMPINDEX}','10419','F5 BIG-IP: Pool [{#POOL.NAME}]: Outgoing packet, rate','bigip.pool.net.out.pkts.rate[{#POOL.NAME}]','5m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nThe rate of packets sent to server-side from the specified pool.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e432732fc4dd478892c6d4bab3fbd11c');
INSERT INTO `items` (`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`,`uuid`) values ('35519','20','.1.3.6.1.4.1.3375.2.2.5.2.3.1.31.{#SNMPINDEX}','10419','F5 BIG-IP: Pool [{#POOL.NAME}]: Current sessions','bigip.pool.net.sessions[{#POOL.NAME}]','5m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nThe number of current sessions going through the specified pool.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','068028e704f049b4b3daae524fe16d27');
INSERT INTO `items` (`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`,`uuid`) values ('35520','20','.1.3.6.1.4.1.3375.2.2.5.2.3.1.19.{#SNMPINDEX}','10419','F5 BIG-IP: Pool [{#POOL.NAME}]: Age of the oldest queue entry','bigip.pool.queue.age[{#POOL.NAME}]','5m','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nAge of the oldest queue entry, max.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6bacc7e284f14aa7804f69c8b2f744d4');
INSERT INTO `items` (`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`,`uuid`) values ('35521','20','.1.3.6.1.4.1.3375.2.2.5.2.3.1.18.{#SNMPINDEX}','10419','F5 BIG-IP: Pool [{#POOL.NAME}]: Queue','bigip.pool.queue[{#POOL.NAME}]','5m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nNumber of connections currently in queue, sum.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','44ad195489cd46be87ae8cc029bcb480');
INSERT INTO `items` (`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`,`uuid`) values ('35522','20','.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.{#SNMPINDEX}','10419','F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Current connections','bigip.vserver.net.conn[{#VSERVER.NAME}]','5m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nThe current connections from client-side to the specified virtual server.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','28ecf3f03cad44bda0e6243bb02e2ae4');
INSERT INTO `items` (`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`,`uuid`) values ('35523','20','.1.3.6.1.4.1.3375.2.2.10.2.3.1.7.{#SNMPINDEX}','10419','F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Incoming traffic, rate','bigip.vserver.net.in.bytes.rate[{#VSERVER.NAME}]','5m','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nThe rate of bytes received by the specified virtual server from client-side.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','206503cc777a4156a29f0687d8fb5a7c');
INSERT INTO `items` (`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`,`uuid`) values ('35524','20','.1.3.6.1.4.1.3375.2.2.10.2.3.1.6.{#SNMPINDEX}','10419','F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Incoming packet, rate','bigip.vserver.net.in.pkts.rate[{#VSERVER.NAME}]','5m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nThe rate of packets received by the specified virtual server from client-side.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d8a36a30d99c44ca9b7172a5b66e74d6');
INSERT INTO `items` (`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`,`uuid`) values ('35525','20','.1.3.6.1.4.1.3375.2.2.10.2.3.1.9.{#SNMPINDEX}','10419','F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Outgoing traffic, rate','bigip.vserver.net.out.bytes.rate[{#VSERVER.NAME}]','5m','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nThe rate of bytes sent to client-side from the specified virtual server.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','efeb720fb7e44d068572d59eff947bc6');
INSERT INTO `items` (`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`,`uuid`) values ('35526','20','.1.3.6.1.4.1.3375.2.2.10.2.3.1.8.{#SNMPINDEX}','10419','F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Outgoing packet, rate','bigip.vserver.net.out.pkts.rate[{#VSERVER.NAME}]','5m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nThe rate of packets sent to client-side from the specified virtual server.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd588ea58eb4420085691046fa0a1e3b');
INSERT INTO `items` (`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`,`uuid`) values ('35527','20','.1.3.6.1.4.1.3375.2.2.10.2.3.1.34.{#SNMPINDEX}','10419','F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Connections hit a rate limit','bigip.vserver.overlimit[{#VSERVER.NAME}]','5m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nThe last recorded value for the number of connections to the virtual server when connections hit a rate limit;\r\nthis calculation is only maintained if rate limiting is configured for the service.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','01352ac9b6c24f13a6ceebac666026cb');
INSERT INTO `items` (`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`,`uuid`) values ('35528','20','.1.3.6.1.4.1.3375.2.2.10.2.3.1.35.{#SNMPINDEX}','10419','F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Duration of exceeding rate limit','bigip.vserver.overtime[{#VSERVER.NAME}]','5m','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nDuration of time in seconds the specified virtual server has exceeded the configured connection rate limit.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','baa7718513a54ae4a7bd669f9b652521');
INSERT INTO `items` (`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`,`uuid`) values ('35529','20','.1.3.6.1.4.1.3375.2.2.10.2.3.1.32.{#SNMPINDEX}','10419','F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 1m','bigip.vserver.usage.1m[{#VSERVER.NAME}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nThe percentage of time Virtual Server was busy over the last 1 minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3e97e22368b84674a9720c3f076503c5');
INSERT INTO `items` (`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`,`uuid`) values ('35530','20','.1.3.6.1.4.1.3375.2.2.10.2.3.1.33.{#SNMPINDEX}','10419','F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 5m','bigip.vserver.usage.5m[{#VSERVER.NAME}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nThe percentage of time Virtual Server was busy over the last 5 minutes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c8c5e0e53e34e4ebc84ed9e5a8c4bd9');
INSERT INTO `items` (`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`,`uuid`) values ('35531','20','.1.3.6.1.4.1.3375.2.2.10.2.3.1.31.{#SNMPINDEX}','10419','F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 5s','bigip.vserver.usage.5s[{#VSERVER.NAME}]','5m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nThe percentage of time Virtual Server was busy over the last 5 seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d6079ebaebbb40d09386e2b1abcbe987');
INSERT INTO `items` (`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`,`uuid`) values ('35532','5','','10420','ZYXEL AAM1212-51 / IES-612: SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'359','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5b6932995b634a5792d3948ba79312e5');
INSERT INTO `items` (`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`,`uuid`) values ('35533','20','.1.3.6.1.2.1.1.4.0','10420','ZYXEL AAM1212-51 / IES-612: Contact','zyxel.aam1212.contact','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe textual identification of the contact person\r\nfor this managed node, together with information\r\non how to contact this person.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9b04315c5e9a41eea5f50623c83f21d0');
INSERT INTO `items` (`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`,`uuid`) values ('35534','20','.1.3.6.1.4.1.890.1.5.13.1.1.3.1.4.0.0','10420','ZYXEL AAM1212-51 / IES-612: ZyNOS F/W Version','zyxel.aam1212.fwversion','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-IESCOMMON-MIB','17','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6b29fd2b27fe4788bef1e4072430d5bd');
INSERT INTO `items` (`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`,`uuid`) values ('35535','20','.1.3.6.1.2.1.1.6.0','10420','ZYXEL AAM1212-51 / IES-612: Location','zyxel.aam1212.location','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe physical location of this node (e.g.,\r\n`telephone closet, 3rd floor\').','24','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ea699e392c154a79927a056ff050c59d');
INSERT INTO `items` (`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`,`uuid`) values ('35536','20','.1.3.6.1.2.1.2.2.1.6.1','10420','ZYXEL AAM1212-51 / IES-612: MAC address','zyxel.aam1212.mac','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB\r\nThe interface\'s address at the protocol layer\r\nimmediately `below\' the network layer in the\r\nprotocol stack. For interfaces which do not have\r\nsuch an address (e.g., a serial line), this object\r\nshould contain an octet string of zero length.','12','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d2cabaa6e083489b8b11e6a349ba1bc9');
INSERT INTO `items` (`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`,`uuid`) values ('35537','20','.1.3.6.1.2.1.1.1.0','10420','ZYXEL AAM1212-51 / IES-612: Hardware model name','zyxel.aam1212.model','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nA textual description of the entity. This value\r\nshould include the full name and version\r\nidentification of the system\'s hardware type,\r\nsoftware operating-system, and networking\r\nsoftware. It is mandatory that this only contain\r\nprintable ASCII characters.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','31840a6849f7437bbb77334128c9e90b');
INSERT INTO `items` (`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`,`uuid`) values ('35538','20','.1.3.6.1.2.1.1.5.0','10420','ZYXEL AAM1212-51 / IES-612: Host name','zyxel.aam1212.name','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nAn administratively-assigned name for this\r\nmanaged node. By convention, this is the node\'s\r\nfully-qualified domain name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','59628c9211c444228b6d8d9ddb30af54');
INSERT INTO `items` (`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`,`uuid`) values ('35539','20','.1.3.6.1.4.1.890.1.5.13.1.1.2.1.3.0','10420','ZYXEL AAM1212-51 / IES-612: Hardware serial number','zyxel.aam1212.serialnumber','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-IESCOMMON-MIB\r\nSerial number','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','33df8d594d7f4e4aa148927b117f30df');
INSERT INTO `items` (`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`,`uuid`) values ('35540','20','.1.3.6.1.4.1.890.1.5.13.1.1.3.1.8.0.0','10420','ZYXEL AAM1212-51 / IES-612: Alarm status','zyxel.aam1212.slot.alarm','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-IESCOMMON-MIB\r\nThis variable indicates the alarm status of the module.\r\nIt is a bit map represented a sum, therefore, it can represent\r\nmultiple defects simultaneously. The moduleNoDefect should be set\r\nif and only if no other flag is set.\r\nThe various bit positions are:\r\n1 moduleNoDefect\r\n2 moduleOverHeat\r\n3 moduleFanRpmLow\r\n4 moduleVoltageLow\r\n5 moduleThermalSensorFailure\r\n6 modulePullOut\r\n7 powerDC48VAFailure\r\n8 powerDC48VBFailure\r\n9 extAlarmInputTrigger\r\n10 moduleDown\r\n11 mscSwitchOverOK\r\n12 networkTopologyChange\r\n13 macSpoof\r\n14 cpuHigh\r\n15 memoryUsageHigh\r\n16 packetBufferUsageHigh\r\n17 loopguardOccurence','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4efb46536e8a43e78cd26ae90bd2ab83');
INSERT INTO `items` (`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`,`uuid`) values ('35541','20','.1.3.6.1.2.1.1.3.0','10420','ZYXEL AAM1212-51 / IES-612: Uptime (network)','zyxel.aam1212.net.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe time (in hundredths of a second) since the\r\nnetwork management portion of the system was last\r\nre-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6fe78b9b065243b8bcebf8f6c234f868');
INSERT INTO `items` (`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`,`uuid`) values ('35542','20','discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8]','10420','ADSL interface discovery','zyxel.aam1212.net.adsl.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','c0fa2c901419420eaaa2a64e59fbad29');
INSERT INTO `items` (`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`,`uuid`) values ('35543','20','discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8]','10420','Ethernet interface discovery','zyxel.aam1212.net.if.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','8e327f4a888b417db390148e7a894d10');
INSERT INTO `items` (`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`,`uuid`) values ('35544','20','discovery[{#ZYXEL.TEMP.ID}, .1.3.6.1.4.1.890.1.5.13.1.2.3.1.1,{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.1.2.3.1.5]','10420','Temperature discovery','zyxel.aam1212.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4bc61b4441a840a79bbd118a1d3cf66e');
INSERT INTO `items` (`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`,`uuid`) values ('35545','20','discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.1.2.2.1.6,{#ZYXEL.VOLT.NOMINAL}, .1.3.6.1.4.1.890.1.5.13.1.2.2.1.5]','10420','Voltage discovery','zyxel.aam1212.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fbb48a267b7646a98246da0357a1ee95');
INSERT INTO `items` (`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`,`uuid`) values ('35546','20','.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}','10420','ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Administrative status','zyxel.aam1212.net.adsl.adminstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'360','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe desired state of the interface. The\r\ntesting(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8b8e4d329490481983d2a1b0209e18a1');
INSERT INTO `items` (`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`,`uuid`) values ('35547','20','.1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX}','10420','ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUC attenuation','zyxel.aam1212.net.adsl.atuc.atn[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nMeasured difference in the total power transmitted by\r\nthe peer ATU and the total power received by this ATU.\r\nThe Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL AAM1212-51 / IES-612, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','010b15528a8d498bb8f77db9c548bc8e');
INSERT INTO `items` (`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`,`uuid`) values ('35548','20','.1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX}','10420','ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUC output power','zyxel.aam1212.net.adsl.atuc.outpwr[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nMeasured total output power transmitted by this ATU.\r\nThe Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL AAM1212-51 / IES-612, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','382d9f2f9458423eb887b6fd28697c3a');
INSERT INTO `items` (`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`,`uuid`) values ('35549','20','.1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX}','10420','ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUC noise margin','zyxel.aam1212.net.adsl.atuc.snrmgn[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nNoise Margin as seen by this ATU with respect to its\r\nreceived signal in tenth dB.\r\nThe Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL AAM1212-51 / IES-612, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a273e455881948a895eb60b453ce8f61');
INSERT INTO `items` (`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`,`uuid`) values ('35550','20','.1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX}','10420','ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUR attenuation','zyxel.aam1212.net.adsl.atur.atn[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nMeasured difference in the total power transmitted by\r\nthe peer ATU and the total power received by this ATU.\r\nThe Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber\'s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3bfa258832dd49cca9ced6d5d78252d1');
INSERT INTO `items` (`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`,`uuid`) values ('35551','20','.1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX}','10420','ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUR output power','zyxel.aam1212.net.adsl.atur.outpwr[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nMeasured total output power transmitted by this ATU.\r\nThe Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber\'s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da2105dce83d4f619b69a9c8e5875bac');
INSERT INTO `items` (`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`,`uuid`) values ('35552','20','.1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX}','10420','ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUR noise margin','zyxel.aam1212.net.adsl.atur.snrmgn[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nNoise Margin as seen by this ATU with respect to its\r\nreceived signal in tenth dB.\r\nThe Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber\'s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e59b98a685874f888557eb3d1c41a828');
INSERT INTO `items` (`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`,`uuid`) values ('35553','20','.1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX}','10420','ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Incoming traffic','zyxel.aam1212.net.adsl.in.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,\r\nincluding framing characters.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','70fa53318d354503b44b70696cb8ccd2');
INSERT INTO `items` (`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`,`uuid`) values ('35554','20','.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}','10420','ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Interface name','zyxel.aam1212.net.adsl.name[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','53241d402d0f4b4ca826f9712ad1af69');
INSERT INTO `items` (`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`,`uuid`) values ('35555','20','.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10420','ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Operational status','zyxel.aam1212.net.adsl.operstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'361','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\nThe testing(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','53ff6ee2132a4503890c35919baa2fd8');
INSERT INTO `items` (`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`,`uuid`) values ('35556','20','.1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX}','10420','ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Outgoing traffic','zyxel.aam1212.net.adsl.out.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the\r\ninterface, including framing characters. This object is a\r\n64-bit version of ifOutOctets.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','021b85f4efea4be9834e7959ed2471f5');
INSERT INTO `items` (`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`,`uuid`) values ('35557','20','.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}','10420','ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Administrative status','zyxel.aam1212.net.if.adminstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'360','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe desired state of the interface. The\r\ntesting(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d68dd1f83f5f41f4b372cc0a2261f30e');
INSERT INTO `items` (`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`,`uuid`) values ('35558','20','.1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX}','10420','ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Incoming traffic','zyxel.aam1212.net.if.in.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,\r\nincluding framing characters.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f5dd08da51664f1d82a16b0826cdb9ce');
INSERT INTO `items` (`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`,`uuid`) values ('35559','20','.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}','10420','ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Interface name','zyxel.aam1212.net.if.name[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e2a630669e924f069b98d11a32737411');
INSERT INTO `items` (`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`,`uuid`) values ('35560','20','.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10420','ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Operational status','zyxel.aam1212.net.if.operstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'361','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\nThe testing(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6232538bf48a4f12a1f85164dc95bcf8');
INSERT INTO `items` (`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`,`uuid`) values ('35561','20','.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10420','ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Outgoing traffic','zyxel.aam1212.net.if.out.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the\r\ninterface, including framing characters. This object is a\r\n64-bit version of ifOutOctets.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d69676fc00e64c97afd7da416891b0ef');
INSERT INTO `items` (`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`,`uuid`) values ('35562','20','.1.3.6.1.4.1.890.1.5.13.1.2.3.1.2.{#SNMPINDEX}','10420','ZYXEL AAM1212-51 / IES-612: Temperature "{#ZYXEL.TEMP.ID}"','zyxel.aam1212.temp[{#SNMPINDEX}]','1m','7d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IESCOMMON-MIB\r\nThe current temperature measured at this sensor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','82045c5b71b04c62b7525db28f292ad2');
INSERT INTO `items` (`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`,`uuid`) values ('35563','20','.1.3.6.1.4.1.890.1.5.13.1.2.2.1.2.{#SNMPINDEX}','10420','ZYXEL AAM1212-51 / IES-612: Nominal "{#ZYXEL.VOLT.NOMINAL}"','zyxel.aam1212.volt[{#SNMPINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IESCOMMON-MIB\r\nThe current voltage reading.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9e73d63d1af2473599e17ab214f03b32');
INSERT INTO `items` (`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`,`uuid`) values ('35564','5','','10421','ZYXEL ES3500-8PD: SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'362','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','294a49fc36e848cc9f9959624c9a5ab3');
INSERT INTO `items` (`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`,`uuid`) values ('35565','20','.1.3.6.1.2.1.1.4.0','10421','ZYXEL ES3500-8PD: Contact','zyxel.3500_8pd.contact','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe textual identification of the contact person\r\nfor this managed node, together with information\r\non how to contact this person.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d513a036f8547219b1120fc4fffff1d');
INSERT INTO `items` (`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`,`uuid`) values ('35566','20','.1.3.6.1.4.1.890.1.5.8.72.12.7.0','10421','ZYXEL ES3500-8PD: CPU utilization','zyxel.3500_8pd.cpuusage','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-ES3500-8PD-MIB\r\nShow device CPU load in %, it\'s the snapshot of CPU load when\r\ngetting the values.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e7fd0f225802477aabbbcbfe5ac4a7f6');
INSERT INTO `items` (`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`,`uuid`) values ('35567','20','discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.72.1]','10421','ZYXEL ES3500-8PD: ZyNOS F/W Version','zyxel.3500_8pd.fwversion','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-ES3500-8PD-MIB','17','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8749f59cbfeb4c43b7753901f3219716');
INSERT INTO `items` (`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`,`uuid`) values ('35568','20','.1.3.6.1.2.1.1.6.0','10421','ZYXEL ES3500-8PD: Location','zyxel.3500_8pd.location','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe physical location of this node (e.g.,\r\n`telephone closet, 3rd floor\').','24','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cbccb45e9d1d4b529cce2d43e6c96a24');
INSERT INTO `items` (`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`,`uuid`) values ('35569','20','.1.3.6.1.2.1.2.2.1.6.1','10421','ZYXEL ES3500-8PD: MAC address','zyxel.3500_8pd.mac','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB\r\nThe interface\'s address at the protocol layer\r\nimmediately `below\' the network layer in the\r\nprotocol stack. For interfaces which do not have\r\nsuch an address (e.g., a serial line), this object\r\nshould contain an octet string of zero length.','12','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1479a543105a4cf2b524bf8d042afd00');
INSERT INTO `items` (`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`,`uuid`) values ('35570','20','.1.3.6.1.2.1.1.1.0','10421','ZYXEL ES3500-8PD: Hardware model name','zyxel.3500_8pd.model','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nA textual description of the entity. This value\r\nshould include the full name and version\r\nidentification of the system\'s hardware type,\r\nsoftware operating-system, and networking\r\nsoftware. It is mandatory that this only contain\r\nprintable ASCII characters.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c753caf7686e49968931df18076a5d4f');
INSERT INTO `items` (`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`,`uuid`) values ('35571','20','.1.3.6.1.2.1.1.5.0','10421','ZYXEL ES3500-8PD: Host name','zyxel.3500_8pd.name','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nAn administratively-assigned name for this\r\nmanaged node. By convention, this is the node\'s\r\nfully-qualified domain name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2072ac4b4437425a9ef1496b90c64990');
INSERT INTO `items` (`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`,`uuid`) values ('35572','20','.1.3.6.1.4.1.890.1.5.8.72.1.10.0','10421','ZYXEL ES3500-8PD: Hardware serial number','zyxel.3500_8pd.serialnumber','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-ES3500-8PD-MIB\r\nSerial number','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','93a3b8ef959e41fe822abb959f090939');
INSERT INTO `items` (`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`,`uuid`) values ('35573','20','.1.3.6.1.2.1.1.3.0','10421','ZYXEL ES3500-8PD: Uptime (network)','zyxel.3500_8pd.net.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe time (in hundredths of a second) since the\r\nnetwork management portion of the system was last\r\nre-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bbd24719955740e0acc2316a945dac38');
INSERT INTO `items` (`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`,`uuid`) values ('35574','20','discovery[{#ZYXEL.MEMORY.NAME},.1.3.6.1.4.1.890.1.5.8.72.124.1.1.2]','10421','Memory pool discovery','zyxel.3500_8pd.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dfc515bfe86642e784735637bdb6c0a7');
INSERT INTO `items` (`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`,`uuid`) values ('35575','20','discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.72.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.72.24.1.1.5]','10421','Interface discovery','zyxel.3500_8pd.net.if.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','c71d57f8ed0b470faae1bfd7033fbcf0');
INSERT INTO `items` (`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`,`uuid`) values ('35576','20','discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.72.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.72.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.72.117.2.1.8]','10421','SFP with DDM discovery','zyxel.3500_8pd.sfp.ddm.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP DDM module discovery.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','21d6664eb56c41b388b4f4709a81d33d');
INSERT INTO `items` (`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`,`uuid`) values ('35577','20','discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.72.117.1.1.2]','10421','SFP without DDM discovery','zyxel.3500_8pd.sfp.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP module discovery.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a003b7fdc07b4ac6a063379b892943fa');
INSERT INTO `items` (`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`,`uuid`) values ('35578','20','discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.72.9.2.1.5]','10421','Temperature discovery','zyxel.3500_8pd.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable.\r\nIndex of temperature unit. 1:MAC, 2:CPU, 3:PHY','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9c8f5212222a42bcbd42f8d848476804');
INSERT INTO `items` (`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`,`uuid`) values ('35579','20','discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.72.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.72.9.3.1.5]','10421','Voltage discovery','zyxel.3500_8pd.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5cd3ac86665c459cbbee3178fca6560f');
INSERT INTO `items` (`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`,`uuid`) values ('35580','20','.1.3.6.1.4.1.890.1.5.8.72.124.1.1.5.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: Memory "{#ZYXEL.MEMORY.NAME}" utilization','zyxel.3500_8pd.memory[{#SNMPINDEX}]','1m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB\r\nUtilization of memory pool in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ae5a9303d10a49fba04064bb77b40b61');
INSERT INTO `items` (`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`,`uuid`) values ('35581','20','.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Administrative status','zyxel.3500_8pd.net.if.adminstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'365','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe desired state of the interface. The\r\ntesting(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','91a0a38a0f60464cb97c65f375e8fbb7');
INSERT INTO `items` (`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`,`uuid`) values ('35582','20','.1.3.6.1.4.1.890.1.5.8.72.24.1.1.3.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Interface description','zyxel.3500_8pd.net.if.name[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','018c1028b7904fbea8b1bb0d2fac1621');
INSERT INTO `items` (`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`,`uuid`) values ('35583','15','','10421','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing utilization','zyxel.3500_8pd.net.if.out.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3500_8pd.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cabb6da9aa3e4ae0ae6938b3f3d47138');
INSERT INTO `items` (`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`,`uuid`) values ('35584','20','.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.3500_8pd.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were not addressed to a\r\nmulticast or broadcast address at this sub-layer, including\r\nthose that were discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','df030eba0fd548d5be224e2fe120373c');
INSERT INTO `items` (`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`,`uuid`) values ('35585','20','.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing traffic','zyxel.3500_8pd.net.if.out.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the\r\ninterface, including framing characters. This object is a\r\n64-bit version of ifOutOctets.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','08cd8a42816040d582d3192a9d8c2fb7');
INSERT INTO `items` (`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`,`uuid`) values ('35586','20','.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.3500_8pd.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nmulticast address at this sub-layer, including those that\r\nwere discarded or not sent. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','103385b00f6442beab10712ca42d5719');
INSERT INTO `items` (`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`,`uuid`) values ('35587','20','.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.3500_8pd.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nbroadcast address at this sub-layer, including those that\r\nwere discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bb4c00143a4f4cc2b445daeffdcf6b57');
INSERT INTO `items` (`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`,`uuid`) values ('35588','20','.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Operational status','zyxel.3500_8pd.net.if.operstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'366','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\nThe testing(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4f75b84c02b4496db2cbedca8df00c04');
INSERT INTO `items` (`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`,`uuid`) values ('35589','20','.1.3.6.1.4.1.890.1.5.8.72.24.1.1.5.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Link type','zyxel.3500_8pd.net.if.link_type[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'363','','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB\r\nPhysical connection type','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8c141ab269eb4a8891937a1847312890');
INSERT INTO `items` (`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`,`uuid`) values ('35590','20','.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Interface name','zyxel.3500_8pd.net.if.descr[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1daef38185b14a96b8f0fce757c48677');
INSERT INTO `items` (`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`,`uuid`) values ('35591','15','','10421','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming utilization','zyxel.3500_8pd.net.if.in.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3500_8pd.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f24ad30d48ca427eb3b19d4459cab733');
INSERT INTO `items` (`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`,`uuid`) values ('35592','20','.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming unicast packages','zyxel.3500_8pd.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were not addressed to a multicast\r\nor broadcast address at this sub-layer','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b1c630d6f06748b88d695dfdb734cd19');
INSERT INTO `items` (`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`,`uuid`) values ('35593','20','.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming traffic','zyxel.3500_8pd.net.if.in.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,\r\nincluding framing characters.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','34a86d17de7e4725aa6e5893c1e52526');
INSERT INTO `items` (`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`,`uuid`) values ('35594','20','.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming multicast packages','zyxel.3500_8pd.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a multicast\r\naddress at this sub-layer. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0ce5c7ae49284615a41aba4cdd0f565b');
INSERT INTO `items` (`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`,`uuid`) values ('35595','20','.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.3500_8pd.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a broadcast\r\naddress at this sub-layer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','55cf0d86b8bc4a6fa6806c9f8bce7ee9');
INSERT INTO `items` (`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`,`uuid`) values ('35596','20','.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Link speed','zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in bits per second','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4de0488610054ed9bd869dc48a07174e');
INSERT INTO `items` (`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`,`uuid`) values ('35597','20','.1.3.6.1.4.1.890.1.5.8.72.24.1.1.1.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Speed Duplex','zyxel.3500_8pd.net.if.speed_duplex[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'364','','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB\r\nTransmission mode','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5200e032f5f6438e8326799208072845');
INSERT INTO `items` (`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`,`uuid`) values ('35598','20','.1.3.6.1.4.1.890.1.5.8.72.117.2.1.7.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','zyxel.3500_8pd.sfp.ddm[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','365d','0','0','','!{#ZYXEL.SFP.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB\r\nTransceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3a93aa9a9e2e44318f08c3eff86ce7bb');
INSERT INTO `items` (`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`,`uuid`) values ('35599','20','.1.3.6.1.4.1.890.1.5.8.72.117.1.1.7.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Date code','zyxel.3500_8pd.sfp.datecode[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB\r\nTransceiver module vendor\'s manufacturing date code.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','12345032490f4d24aeb7bfb07eae59fb');
INSERT INTO `items` (`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`,`uuid`) values ('35600','20','.1.3.6.1.4.1.890.1.5.8.72.117.1.1.4.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Part number','zyxel.3500_8pd.sfp.part[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB\r\nPart number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2b30a4497cbd497886c52ae79ad03a01');
INSERT INTO `items` (`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`,`uuid`) values ('35601','20','.1.3.6.1.4.1.890.1.5.8.72.117.1.1.6.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Revision','zyxel.3500_8pd.sfp.revision[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB\r\nRevision level for part number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','25aa375ed4a345e6b975bcb238cf530d');
INSERT INTO `items` (`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`,`uuid`) values ('35602','20','.1.3.6.1.4.1.890.1.5.8.72.117.1.1.5.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Serial number','zyxel.3500_8pd.sfp.serialnumber[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB\r\nSerial number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3f24d3aa58624ed0ad7a137fc9b1611a');
INSERT INTO `items` (`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`,`uuid`) values ('35603','20','.1.3.6.1.4.1.890.1.5.8.72.117.1.1.2.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Status','zyxel.3500_8pd.sfp.status[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','365d','0','3','','','','',NULL,'367','','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB\r\nTransceiver module status.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','054942c20bca4459b26e41aca8657e4c');
INSERT INTO `items` (`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`,`uuid`) values ('35604','20','.1.3.6.1.4.1.890.1.5.8.72.117.1.1.8.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Transceiver','zyxel.3500_8pd.sfp.transceiver[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB\r\nTransceiver module type names.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7621973ef61b47c9bc034eec3d008957');
INSERT INTO `items` (`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`,`uuid`) values ('35605','20','.1.3.6.1.4.1.890.1.5.8.72.117.1.1.3.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Vendor','zyxel.3500_8pd.sfp.vendor[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB\r\nTransceiver module vendor name.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','715feecd140b4e9ca350b41490f7c7f9');
INSERT INTO `items` (`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`,`uuid`) values ('35606','20','.1.3.6.1.4.1.890.1.5.8.72.9.2.1.2.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: Temperature "{#ZYXEL.TEMP.ID}"','zyxel.3500_8pd.temp[{#SNMPINDEX}]','1m','7d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB\r\nThe current temperature measured at this sensor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f884edb984ab42ce8abffed0f66a2347');
INSERT INTO `items` (`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`,`uuid`) values ('35607','20','.1.3.6.1.4.1.890.1.5.8.72.9.3.1.2.{#SNMPINDEX}','10421','ZYXEL ES3500-8PD: Nominal "{#ZYXEL.VOLT.NOMINAL}"','zyxel.3500_8pd.volt[{#SNMPINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB\r\nThe current voltage reading.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','01838a79d7304d838798bd2d6b427936');
INSERT INTO `items` (`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`,`uuid`) values ('35608','5','','10422','ZYXEL GS-4012F: SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'368','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2839fec9602a4162bb0acfb1be89fd57');
INSERT INTO `items` (`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`,`uuid`) values ('35609','20','.1.3.6.1.2.1.1.4.0','10422','ZYXEL GS-4012F: Contact','zyxel.4012f.contact','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe textual identification of the contact person\r\nfor this managed node, together with information\r\non how to contact this person.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','831444715edf4a12baf6a5727ba9276c');
INSERT INTO `items` (`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`,`uuid`) values ('35610','20','.1.3.6.1.4.1.890.1.5.8.20.12.7.0','10422','ZYXEL GS-4012F: CPU utilization','zyxel.4012f.cpuusage','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-GS4012F-MIB\r\nShow device CPU load in %, it\'s the snapshot of CPU load when\r\ngetting the values.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e2a6ce044f6d40bebb50927cc70bd593');
INSERT INTO `items` (`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`,`uuid`) values ('35611','20','discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.20.1]','10422','ZYXEL GS-4012F: ZyNOS F/W Version','zyxel.4012f.fwversion','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-GS4012F-MIB','17','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','adb85140eb8c4b6489078dc79bd61a87');
INSERT INTO `items` (`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`,`uuid`) values ('35612','20','.1.3.6.1.2.1.1.6.0','10422','ZYXEL GS-4012F: Location','zyxel.4012f.location','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe physical location of this node (e.g.,\r\n`telephone closet, 3rd floor\').','24','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f55214647bab4544adb7d9a63e8be69d');
INSERT INTO `items` (`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`,`uuid`) values ('35613','20','.1.3.6.1.2.1.2.2.1.6.1','10422','ZYXEL GS-4012F: MAC address','zyxel.4012f.mac','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB\r\nThe interface\'s address at the protocol layer\r\nimmediately `below\' the network layer in the\r\nprotocol stack. For interfaces which do not have\r\nsuch an address (e.g., a serial line), this object\r\nshould contain an octet string of zero length.','12','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','770d70d2ebcb4978b6c6fae0692ab77f');
INSERT INTO `items` (`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`,`uuid`) values ('35614','20','.1.3.6.1.2.1.1.1.0','10422','ZYXEL GS-4012F: Hardware model name','zyxel.4012f.model','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nA textual description of the entity. This value\r\nshould include the full name and version\r\nidentification of the system\'s hardware type,\r\nsoftware operating-system, and networking\r\nsoftware. It is mandatory that this only contain\r\nprintable ASCII characters.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','25c5e9b3d34f4bb8805e2a6c43934f51');
INSERT INTO `items` (`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`,`uuid`) values ('35615','20','.1.3.6.1.2.1.1.5.0','10422','ZYXEL GS-4012F: Host name','zyxel.4012f.name','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nAn administratively-assigned name for this\r\nmanaged node. By convention, this is the node\'s\r\nfully-qualified domain name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','38fb81dca1db49bc83343ba197bfe980');
INSERT INTO `items` (`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`,`uuid`) values ('35616','20','.1.3.6.1.4.1.890.1.5.8.20.1.10.0','10422','ZYXEL GS-4012F: Hardware serial number','zyxel.4012f.serialnumber','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-GS4012F-MIB\r\nSerial number','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0080e896f1384245887a191d87496fa9');
INSERT INTO `items` (`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`,`uuid`) values ('35617','20','.1.3.6.1.2.1.1.3.0','10422','ZYXEL GS-4012F: Uptime (network)','zyxel.4012f.net.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe time (in hundredths of a second) since the\r\nnetwork management portion of the system was last\r\nre-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1c14e77679fe4ee6b167036d8888867e');
INSERT INTO `items` (`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`,`uuid`) values ('35618','20','discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.20.9.1.1.5]','10422','Fan discovery','zyxel.4012f.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in fanRpmTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','344cd89247db49ba854ab6edb504086d');
INSERT INTO `items` (`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`,`uuid`) values ('35619','20','discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.20.23.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.20.23.1.1.5]','10422','Interface discovery','zyxel.4012f.net.if.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','2f731cdb2e2943fbae17b6858859eb7a');
INSERT INTO `items` (`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`,`uuid`) values ('35620','20','discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.20.9.2.1.5]','10422','Temperature discovery','zyxel.4012f.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable.\r\nIndex of temperature unit. 1:MAC, 2:CPU, 3:PHY','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','de7fbcbcaa8a460d8048e7816ccc1a87');
INSERT INTO `items` (`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`,`uuid`) values ('35621','20','discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.20.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.20.9.3.1.5]','10422','Voltage discovery','zyxel.4012f.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','88047112669f4d7eae81c8bb514ddecb');
INSERT INTO `items` (`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`,`uuid`) values ('35622','20','.1.3.6.1.4.1.890.1.5.8.20.9.1.1.2.{#SNMPINDEX}','10422','ZYXEL GS-4012F: Fan #{#SNMPINDEX}','zyxel.4012f.fan[{#SNMPINDEX}]','1m','7d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-GS4012F-MIB\r\nCurrent speed in Revolutions Per Minute (RPM) on the fan.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0f7fb278c896436c96fb1b5006ee4e06');
INSERT INTO `items` (`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`,`uuid`) values ('35623','20','.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}','10422','ZYXEL GS-4012F: Port {#SNMPINDEX}: Administrative status','zyxel.4012f.net.if.adminstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'371','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe desired state of the interface. The\r\ntesting(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2b87dc4104704d3891ac061aaa81c629');
INSERT INTO `items` (`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`,`uuid`) values ('35624','20','.1.3.6.1.4.1.890.1.5.8.20.23.1.1.3.{#SNMPINDEX}','10422','ZYXEL GS-4012F: Port {#SNMPINDEX}: Interface description','zyxel.4012f.net.if.name[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-GS4012F-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c439eae60184abd8ec9b209cda19f8b');
INSERT INTO `items` (`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`,`uuid`) values ('35625','15','','10422','ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing utilization','zyxel.4012f.net.if.out.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.4012f.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','98fffdb492a149b7b684e3867b113d37');
INSERT INTO `items` (`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`,`uuid`) values ('35626','20','.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}','10422','ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.4012f.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were not addressed to a\r\nmulticast or broadcast address at this sub-layer, including\r\nthose that were discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','870c54f85d57473c8b48ed896d5e2b2b');
INSERT INTO `items` (`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`,`uuid`) values ('35627','20','.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10422','ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing traffic','zyxel.4012f.net.if.out.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the\r\ninterface, including framing characters. This object is a\r\n64-bit version of ifOutOctets.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','69ab1d86cd0347b49e2500a1d8e7e6a8');
INSERT INTO `items` (`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`,`uuid`) values ('35628','20','.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}','10422','ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.4012f.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nmulticast address at this sub-layer, including those that\r\nwere discarded or not sent. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5ac33c29b537409cb6347548290e5ecc');
INSERT INTO `items` (`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`,`uuid`) values ('35629','20','.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}','10422','ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.4012f.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nbroadcast address at this sub-layer, including those that\r\nwere discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0f3decaec17a4812aac826056cce9e8a');
INSERT INTO `items` (`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`,`uuid`) values ('35630','20','.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10422','ZYXEL GS-4012F: Port {#SNMPINDEX}: Operational status','zyxel.4012f.net.if.operstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'372','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\nThe testing(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','033b0e5b141b437c805b845f2e3f54a0');
INSERT INTO `items` (`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`,`uuid`) values ('35631','20','.1.3.6.1.4.1.890.1.5.8.20.23.1.1.5.{#SNMPINDEX}','10422','ZYXEL GS-4012F: Port {#SNMPINDEX}: Link type','zyxel.4012f.net.if.link_type[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'369','','','0','','','','','2',NULL,'MIB: ZYXEL-GS4012F-MIB\r\nPhysical connection type','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a63165d407e740c38cab55aefeccbca8');
INSERT INTO `items` (`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`,`uuid`) values ('35632','20','.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}','10422','ZYXEL GS-4012F: Port {#SNMPINDEX}: Interface name','zyxel.4012f.net.if.descr[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','32abe2903d1c4652a74a44c5154f1451');
INSERT INTO `items` (`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`,`uuid`) values ('35633','15','','10422','ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming utilization','zyxel.4012f.net.if.in.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.4012f.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8c0eca407f47404a86d26c5fb1885f87');
INSERT INTO `items` (`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`,`uuid`) values ('35634','20','.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}','10422','ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming unicast packages','zyxel.4012f.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were not addressed to a multicast\r\nor broadcast address at this sub-layer','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4b7a80cf38d44dd9b270dcbc5c44ecfc');
INSERT INTO `items` (`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`,`uuid`) values ('35635','20','.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10422','ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming traffic','zyxel.4012f.net.if.in.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,\r\nincluding framing characters.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7240d04927a742dd93844c1fcc68dba0');
INSERT INTO `items` (`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`,`uuid`) values ('35636','20','.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}','10422','ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming multicast packages','zyxel.4012f.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a multicast\r\naddress at this sub-layer. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8dda9a8e70bc44c5acca08284eb94bac');
INSERT INTO `items` (`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`,`uuid`) values ('35637','20','.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}','10422','ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.4012f.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a broadcast\r\naddress at this sub-layer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a71a364726524a6e9d00eb4098fa5faa');
INSERT INTO `items` (`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`,`uuid`) values ('35638','20','.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10422','ZYXEL GS-4012F: Port {#SNMPINDEX}: Link speed','zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in bits per second','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','42040f2ca85e4f80bdc4bdc9d0ef5966');
INSERT INTO `items` (`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`,`uuid`) values ('35639','20','.1.3.6.1.4.1.890.1.5.8.20.23.1.1.1.{#SNMPINDEX}','10422','ZYXEL GS-4012F: Port {#SNMPINDEX}: Speed Duplex','zyxel.4012f.net.if.speed_duplex[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'370','','','0','','','','','2',NULL,'MIB: ZYXEL-GS4012F-MIB\r\nTransmission mode','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','64037c50f0344d02ae06690e91c7ead8');
INSERT INTO `items` (`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`,`uuid`) values ('35640','20','.1.3.6.1.4.1.890.1.5.8.20.9.2.1.2.{#SNMPINDEX}','10422','ZYXEL GS-4012F: Temperature "{#ZYXEL.TEMP.ID}"','zyxel.4012f.temp[{#SNMPINDEX}]','1m','7d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-GS4012F-MIB\r\nThe current temperature measured at this sensor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ee82e6f1916a4ce7b5cd77f0249cc2af');
INSERT INTO `items` (`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`,`uuid`) values ('35641','20','.1.3.6.1.4.1.890.1.5.8.20.9.3.1.2.{#SNMPINDEX}','10422','ZYXEL GS-4012F: Nominal "{#ZYXEL.VOLT.NOMINAL}"','zyxel.4012f.volt[{#SNMPINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-GS4012F-MIB\r\nThe current voltage reading.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b5cb92c8d63a41158e7072b8ebf33ca1');
INSERT INTO `items` (`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`,`uuid`) values ('35642','5','','10423','ZYXEL IES-500x: SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'373','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dbaf039727f542a6935223c944fab95d');
INSERT INTO `items` (`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`,`uuid`) values ('35643','20','.1.3.6.1.2.1.1.4.0','10423','ZYXEL IES-500x: Contact','zyxel.ies500x.contact','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe textual identification of the contact person\r\nfor this managed node, together with information\r\non how to contact this person.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5bc150cfc9b147e68b5d15a750546a3f');
INSERT INTO `items` (`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`,`uuid`) values ('35644','20','.1.3.6.1.2.1.1.6.0','10423','ZYXEL IES-500x: Location','zyxel.ies500x.location','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe physical location of this node (e.g.,\r\n`telephone closet, 3rd floor\').','24','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cd669772d4454a359f1c372dce4a01de');
INSERT INTO `items` (`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`,`uuid`) values ('35645','20','.1.3.6.1.2.1.2.2.1.6.1','10423','ZYXEL IES-500x: MAC address','zyxel.ies500x.mac','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB\r\nThe interface\'s address at the protocol layer\r\nimmediately `below\' the network layer in the\r\nprotocol stack. For interfaces which do not have\r\nsuch an address (e.g., a serial line), this object\r\nshould contain an octet string of zero length.','12','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','591148b198854413aed834874bf8f137');
INSERT INTO `items` (`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`,`uuid`) values ('35646','20','.1.3.6.1.2.1.1.1.0','10423','ZYXEL IES-500x: Hardware model name','zyxel.ies500x.model','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nA textual description of the entity. This value\r\nshould include the full name and version\r\nidentification of the system\'s hardware type,\r\nsoftware operating-system, and networking\r\nsoftware. It is mandatory that this only contain\r\nprintable ASCII characters.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa26dcc1d8c54feaaa70d42c6ff4d1c7');
INSERT INTO `items` (`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`,`uuid`) values ('35647','20','.1.3.6.1.2.1.1.5.0','10423','ZYXEL IES-500x: Host name','zyxel.ies500x.name','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nAn administratively-assigned name for this\r\nmanaged node. By convention, this is the node\'s\r\nfully-qualified domain name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ee9da829778e4da69fde78f72b5b0783');
INSERT INTO `items` (`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`,`uuid`) values ('35648','20','.1.3.6.1.2.1.1.3.0','10423','ZYXEL IES-500x: Uptime (network)','zyxel.ies500x.net.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe time (in hundredths of a second) since the\r\nnetwork management portion of the system was last\r\nre-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','28df2d29a94d429d811dd40ceb510fcf');
INSERT INTO `items` (`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`,`uuid`) values ('35649','20','discovery[{#ZYXEL.BUFFERHIGHTHRESH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.4]','10423','Packet buffer discovery','zyxel.ies500x.buffer.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table that contains packet buffer usage information.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2ddba614e41f4014abef703418439e2a');
INSERT INTO `items` (`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`,`uuid`) values ('35650','20','discovery[{#ZYXEL.CPU.THRESH.HIGH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.4]','10423','CPU discovery','zyxel.ies500x.cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table that contains CPU utilization information.\r\nThis table is supported by R1.03 and later versions.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','72237ffed25148bea512b9a977e0bbde');
INSERT INTO `items` (`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`,`uuid`) values ('35651','20','discovery[{#ZYXEL.FANRPM.THRESH.HIGH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.7,{#ZYXEL.FANRPM.THRESH.LOW}, .1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.5]','10423','Fan discovery','zyxel.ies500x.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in fanRpmTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6b75915015194d40b043d69754b0e8e9');
INSERT INTO `items` (`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`,`uuid`) values ('35652','20','discovery[{#ZYXEL.MEMORYHIGHTHRESH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.4]','10423','Memory discovery','zyxel.ies500x.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table that contains memory usage information.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3b33b6eb85b14bfba025b0cd4909fa3e');
INSERT INTO `items` (`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`,`uuid`) values ('35653','20','discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18]','10423','ADSL interface discovery','zyxel.ies500x.net.adsl.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','f3cb59dc48924203bc34da090f084665');
INSERT INTO `items` (`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`,`uuid`) values ('35654','20','discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18]','10423','Ethernet interface discovery','zyxel.ies500x.net.if.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','5121e130194244869e45f9f7bda7cd01');
INSERT INTO `items` (`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`,`uuid`) values ('35655','20','discovery[{#ZYXEL.SLOTSTATUS},.1.3.6.1.4.1.890.1.5.13.5.6.3.1.7,{#ZYXEL.SLOT.ID},.1.3.6.1.4.1.890.1.5.13.5.6.3.1.1]','10423','Slot discovery','zyxel.ies500x.slot.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table which contains the slot information in a chassis.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3edd9015b1794d39819acf0a2fdc35ba');
INSERT INTO `items` (`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`,`uuid`) values ('35656','20','discovery[{#ZYXEL.TEMP.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.7,{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.5]','10423','Temperature discovery','zyxel.ies500x.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c2d924fbfe3b44a58454e6a4392aa6a8');
INSERT INTO `items` (`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`,`uuid`) values ('35657','20','discovery[{#ZYXEL.VOLT.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.8,{#ZYXEL.VOLT.THRESH.LOW}, .1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.5]','10423','Voltage discovery','zyxel.ies500x.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dbc4a230a0bd408b9847b1507c248062');
INSERT INTO `items` (`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`,`uuid`) values ('35658','20','.1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.2.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Packet buffer utilization','zyxel.ies500x.buffer[{#SNMPINDEX}]','1m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe packet buffer usage in the past 60 seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac3d27ace5b54f80ad1dd9182d01c0fa');
INSERT INTO `items` (`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`,`uuid`) values ('35659','20','.1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.2.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: CPU utilization','zyxel.ies500x.cpu[{#SNMPINDEX}]','1m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe CPU utilization in the past 60 seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','570e8cb266cd4b38819f2091d3981f24');
INSERT INTO `items` (`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`,`uuid`) values ('35660','20','.1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.2.{#SNMPINDEX}','10423','ZYXEL IES-500x: Fan #{#SNMPINDEX}','zyxel.ies500x.fan[{#SNMPINDEX}]','1m','7d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nCurrent speed in Revolutions Per Minute (RPM) on the fan.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5edaea71cd9e4190912a9d4a916436b3');
INSERT INTO `items` (`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`,`uuid`) values ('35661','20','.1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.2.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Memory utilization','zyxel.ies500x.memory[{#SNMPINDEX}]','1m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe memory usage in the past 60 seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','61d07cbd85734ea6933182cbcb77b6a8');
INSERT INTO `items` (`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`,`uuid`) values ('35662','20','.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Administrative status','zyxel.ies500x.net.adsl.adminstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'376','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe desired state of the interface. The\r\ntesting(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','be9de0c5e397414bbef8edd74d0f6500');
INSERT INTO `items` (`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`,`uuid`) values ('35663','20','.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming traffic','zyxel.ies500x.net.adsl.in.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,\r\nincluding framing characters.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fff4c400f6774b9ba5e47fbeb214e5ec');
INSERT INTO `items` (`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`,`uuid`) values ('35664','20','.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing traffic','zyxel.ies500x.net.adsl.out.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the\r\ninterface, including framing characters. This object is a\r\n64-bit version of ifOutOctets.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','70a1342e17634500ac9c896c66177de6');
INSERT INTO `items` (`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`,`uuid`) values ('35665','20','.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing multicast packages','zyxel.ies500x.net.adsl.out.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nmulticast address at this sub-layer, including those that\r\nwere discarded or not sent. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','420fa08f36bf487cb0af6dc64f335e7b');
INSERT INTO `items` (`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`,`uuid`) values ('35666','20','.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing broadcast packages','zyxel.ies500x.net.adsl.out.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nbroadcast address at this sub-layer, including those that\r\nwere discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7eec054602cb4f988999d80b29f25a32');
INSERT INTO `items` (`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`,`uuid`) values ('35667','20','.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Operational status','zyxel.ies500x.net.adsl.operstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'377','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\nThe testing(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','216ad17a0c3348d7a250697f768a6481');
INSERT INTO `items` (`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`,`uuid`) values ('35668','20','.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface name','zyxel.ies500x.net.adsl.name[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','514910a945e34befa0ecc22ea0b89783');
INSERT INTO `items` (`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`,`uuid`) values ('35669','20','.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming unicast packages','zyxel.ies500x.net.adsl.in.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were not addressed to a multicast\r\nor broadcast address at this sub-layer','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ffe4823f03b4c738b305f03ae4f1d55');
INSERT INTO `items` (`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`,`uuid`) values ('35670','20','.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming multicast packages','zyxel.ies500x.net.adsl.in.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a multicast\r\naddress at this sub-layer. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','05799441c906425d8f584ead3e9b909b');
INSERT INTO `items` (`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`,`uuid`) values ('35671','20','.1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC attenuation','zyxel.ies500x.net.adsl.atuc.atn[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nMeasured difference in the total power transmitted by\r\nthe peer ATU and the total power received by this ATU.\r\nThe Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-500x, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3a97021a210442c3bdc461060fbe700b');
INSERT INTO `items` (`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`,`uuid`) values ('35672','20','.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming broadcast packages','zyxel.ies500x.net.adsl.in.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a broadcast\r\naddress at this sub-layer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3df0ee0298c2445f81e1aca8ee748a50');
INSERT INTO `items` (`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`,`uuid`) values ('35673','20','.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface description','zyxel.ies500x.net.adsl.descr[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c00cf2ee74c0476f9118594d04e6640d');
INSERT INTO `items` (`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`,`uuid`) values ('35674','20','.1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR noise margin','zyxel.ies500x.net.adsl.atur.snrmgn[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nNoise Margin as seen by this ATU with respect to its\r\nreceived signal in tenth dB.\r\nThe Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber\'s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','691ffcf882c54ebe8d0dfa305d8497e0');
INSERT INTO `items` (`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`,`uuid`) values ('35675','20','.1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR output power','zyxel.ies500x.net.adsl.atur.outpwr[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nMeasured total output power transmitted by this ATU.\r\nThe Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber\'s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','91a4b40293d54fe8bc8894303055cba3');
INSERT INTO `items` (`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`,`uuid`) values ('35676','20','.1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR attenuation','zyxel.ies500x.net.adsl.atur.atn[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nMeasured difference in the total power transmitted by\r\nthe peer ATU and the total power received by this ATU.\r\nThe Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber\'s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a664c452a98d4478b4663aa7cca9c19c');
INSERT INTO `items` (`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`,`uuid`) values ('35677','20','.1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC noise margin','zyxel.ies500x.net.adsl.atuc.snrmgn[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nNoise Margin as seen by this ATU with respect to its\r\nreceived signal in tenth dB.\r\nThe Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-500x, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','540251c3a4024e4289194130853be305');
INSERT INTO `items` (`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`,`uuid`) values ('35678','20','.1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC output power','zyxel.ies500x.net.adsl.atuc.outpwr[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nMeasured total output power transmitted by this ATU.\r\nThe Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-500x, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','62f3eb71d01946a68d799aa6ed1d29a3');
INSERT INTO `items` (`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`,`uuid`) values ('35679','20','.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing unicast packages','zyxel.ies500x.net.adsl.out.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were not addressed to a\r\nmulticast or broadcast address at this sub-layer, including\r\nthose that were discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c2f168d421e4b81a3d62e415ec8218a');
INSERT INTO `items` (`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`,`uuid`) values ('35680','20','.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}','10423','ZYXEL IES-500x: Port {#SNMPINDEX}: Administrative status','zyxel.ies500x.net.if.adminstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'376','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe desired state of the interface. The\r\ntesting(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bc53c15035a94ed4a7537f0ab119d738');
INSERT INTO `items` (`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`,`uuid`) values ('35681','20','.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX}','10423','ZYXEL IES-500x: Port {#SNMPINDEX}: Interface description','zyxel.ies500x.net.if.descr[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7bd13f8dd37c417dbbc92abbcbefbdde');
INSERT INTO `items` (`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`,`uuid`) values ('35682','20','.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10423','ZYXEL IES-500x: Port {#SNMPINDEX}: Link speed','zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in bits per second','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7ab66a4640ee4852ad0e587eb1076f9d');
INSERT INTO `items` (`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`,`uuid`) values ('35683','20','.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}','10423','ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.ies500x.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a broadcast\r\naddress at this sub-layer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b1508bec31642c381b4bab5b1c394fb');
INSERT INTO `items` (`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`,`uuid`) values ('35684','20','.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}','10423','ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming multicast packages','zyxel.ies500x.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a multicast\r\naddress at this sub-layer. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a77fb99febd45feaadbb4f1c6f58ead');
INSERT INTO `items` (`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`,`uuid`) values ('35685','20','.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10423','ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming traffic','zyxel.ies500x.net.if.in.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,\r\nincluding framing characters.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a4375745658546598b786c43bafb629f');
INSERT INTO `items` (`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`,`uuid`) values ('35686','20','.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}','10423','ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming unicast packages','zyxel.ies500x.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were not addressed to a multicast\r\nor broadcast address at this sub-layer','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eb00c7f533b24a06b3b9b926dc8aff2d');
INSERT INTO `items` (`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`,`uuid`) values ('35687','15','','10423','ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming utilization','zyxel.ies500x.net.if.in.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.ies500x.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) <> 0) /( last(//zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c90cfe865d7a4fdd89970e086b04a9a7');
INSERT INTO `items` (`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`,`uuid`) values ('35688','20','.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX}','10423','ZYXEL IES-500x: Port {#SNMPINDEX}: Interface name','zyxel.ies500x.net.if.name[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bbbd8624e0e24db8b062625a2de1785b');
INSERT INTO `items` (`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`,`uuid`) values ('35689','20','.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10423','ZYXEL IES-500x: Port {#SNMPINDEX}: Operational status','zyxel.ies500x.net.if.operstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'377','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\nThe testing(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d3e519c9648c4c58a7e55a9c90d8a3c0');
INSERT INTO `items` (`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`,`uuid`) values ('35690','20','.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}','10423','ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.ies500x.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nbroadcast address at this sub-layer, including those that\r\nwere discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7816c8845baa498a96cc6d0a4049357c');
INSERT INTO `items` (`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`,`uuid`) values ('35691','20','.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}','10423','ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.ies500x.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nmulticast address at this sub-layer, including those that\r\nwere discarded or not sent. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bbd80eaceee848019cfef5e20f0c356a');
INSERT INTO `items` (`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`,`uuid`) values ('35692','20','.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10423','ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing traffic','zyxel.ies500x.net.if.out.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the\r\ninterface, including framing characters. This object is a\r\n64-bit version of ifOutOctets.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c9f694268c334213a39c09dbadcdd067');
INSERT INTO `items` (`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`,`uuid`) values ('35693','20','.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}','10423','ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.ies500x.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were not addressed to a\r\nmulticast or broadcast address at this sub-layer, including\r\nthose that were discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f929a7e5d0b741c4b557715fbc5a7e1f');
INSERT INTO `items` (`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`,`uuid`) values ('35694','15','','10423','ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing utilization','zyxel.ies500x.net.if.out.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.ies500x.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) <> 0) /( last(//zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','74beae2dcc424702a906aa736e9f9d0f');
INSERT INTO `items` (`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`,`uuid`) values ('35695','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.8.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Alarm status','zyxel.ies500x.slot.alarm[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThis variable indicates the alarm status of the module.\r\nIt is a bit map represented a sum, therefore, it can represent\r\nmultiple defects simultaneously. The moduleNoDefect should be set\r\nif and only if no other flag is set.\r\nThe various bit positions are:\r\n1 moduleNoDefect\r\n2 moduleOverHeat\r\n3 moduleFanRpmLow\r\n4 moduleVoltageLow\r\n5 moduleThermalSensorFailure\r\n6 modulePullOut\r\n7 powerDC48VAFailure\r\n8 powerDC48VBFailure\r\n9 extAlarmInputTrigger\r\n10 moduleDown\r\n11 mscSwitchOverOK\r\n12 networkTopologyChange\r\n13 macSpoof\r\n14 cpuHigh\r\n15 memoryUsageHigh\r\n16 packetBufferUsageHigh\r\n17 loopguardOccurence','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e3a25e0a2532495291446bd1a6641926');
INSERT INTO `items` (`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`,`uuid`) values ('35696','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.6.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: DSL modem code version','zyxel.ies500x.slot.cv.ver[{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe DSL modem code version of the plug-in card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a58ef41b02d94d16abe294bc26fc0874');
INSERT INTO `items` (`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`,`uuid`) values ('35697','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.3.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Description','zyxel.ies500x.slot.desc[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe descriptions of the plug-in card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bf65cd99df724b64a4cad64c0681ab27');
INSERT INTO `items` (`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`,`uuid`) values ('35698','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.5.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Driver version','zyxel.ies500x.slot.dv.ver[{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe DSL driver of the plug-in card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','081fb5758fb6412890a54630d737f239');
INSERT INTO `items` (`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`,`uuid`) values ('35699','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.4.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Firmware version','zyxel.ies500x.slot.fw.ver[{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe firmware version of the plug-in card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6b3a925397094b00aa31efee03a226fa');
INSERT INTO `items` (`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`,`uuid`) values ('35700','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.10.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Hardware version','zyxel.ies500x.slot.hw.ver[{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe hardware version of the plug-in card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c16e15224326406ba5f4c58a1c2e3b2c');
INSERT INTO `items` (`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`,`uuid`) values ('35701','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.12.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: MAC address 1','zyxel.ies500x.slot.mac1[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe MAC Address of the plug-in card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eed64c81e4b54ccd9d7f0e5b86ede083');
INSERT INTO `items` (`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`,`uuid`) values ('35702','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.13.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: MAC address 2','zyxel.ies500x.slot.mac2[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe MAC Address of the plug-in card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d0fdd2a7dcb348b58dd3bea0357f84b3');
INSERT INTO `items` (`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`,`uuid`) values ('35703','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.9.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Serial number','zyxel.ies500x.slot.serial[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe serial number of the plug-in card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6f9532e9368344ad8f7d35273e14c358');
INSERT INTO `items` (`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`,`uuid`) values ('35704','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.7.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Status','zyxel.ies500x.slot.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'374','','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe module state of the plug-in card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7b8791b7c91e4c14aa56a29617a6fa81');
INSERT INTO `items` (`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`,`uuid`) values ('35705','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.2.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Type','zyxel.ies500x.slot.type[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'375','','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nCard type of the plug-in card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9387847247134f3296e077713407686e');
INSERT INTO `items` (`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`,`uuid`) values ('35706','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.11.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Uptime','zyxel.ies500x.slot.uptime[{#SNMPINDEX}]','1m','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe time (in seconds) since the plug-in card was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','be141094a1ee4b2391bf8684ddca86e6');
INSERT INTO `items` (`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`,`uuid`) values ('35707','20','.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.2.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Temperature "{#ZYXEL.TEMP.ID}"','zyxel.ies500x.temp[{#SNMPINDEX}]','1m','7d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe current temperature measured at this sensor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c8f98b46dbc3464eaa390c504198f550');
INSERT INTO `items` (`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`,`uuid`) values ('35708','20','.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.2.{#SNMPINDEX}','10423','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Nominal "{#ZYXEL.VOLT.NOMINAL}"','zyxel.ies500x.volt[{#SNMPINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe current voltage reading.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1b3485d6cc6847639d75d4dbcfda99ea');
INSERT INTO `items` (`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`,`uuid`) values ('35709','5','','10424','ZYXEL IES-6000: SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'378','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab61e5047280486885692ba89781c9fd');
INSERT INTO `items` (`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`,`uuid`) values ('35710','20','.1.3.6.1.2.1.1.4.0','10424','ZYXEL IES-6000: Contact','zyxel.ies6000.contact','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe textual identification of the contact person\r\nfor this managed node, together with information\r\non how to contact this person.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c4856aae926047078d33bc760833ec12');
INSERT INTO `items` (`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`,`uuid`) values ('35711','20','.1.3.6.1.2.1.1.6.0','10424','ZYXEL IES-6000: Location','zyxel.ies6000.location','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe physical location of this node (e.g.,\r\n`telephone closet, 3rd floor\').','24','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','631f2bc2963c4abb8d01b5cca6179d77');
INSERT INTO `items` (`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`,`uuid`) values ('35712','20','.1.3.6.1.2.1.2.2.1.6.1','10424','ZYXEL IES-6000: MAC address','zyxel.ies6000.mac','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB\r\nThe interface\'s address at the protocol layer\r\nimmediately `below\' the network layer in the\r\nprotocol stack. For interfaces which do not have\r\nsuch an address (e.g., a serial line), this object\r\nshould contain an octet string of zero length.','12','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','663131027cc84bd188fb4e5bd240777c');
INSERT INTO `items` (`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`,`uuid`) values ('35713','20','.1.3.6.1.2.1.1.1.0','10424','ZYXEL IES-6000: Hardware model name','zyxel.ies6000.model','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nA textual description of the entity. This value\r\nshould include the full name and version\r\nidentification of the system\'s hardware type,\r\nsoftware operating-system, and networking\r\nsoftware. It is mandatory that this only contain\r\nprintable ASCII characters.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a91730326e1c4479bb330110a15ee689');
INSERT INTO `items` (`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`,`uuid`) values ('35714','20','.1.3.6.1.2.1.1.5.0','10424','ZYXEL IES-6000: Host name','zyxel.ies6000.name','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nAn administratively-assigned name for this\r\nmanaged node. By convention, this is the node\'s\r\nfully-qualified domain name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2062eb7816e242668936c020e6e1d532');
INSERT INTO `items` (`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`,`uuid`) values ('35715','20','.1.3.6.1.2.1.1.3.0','10424','ZYXEL IES-6000: Uptime (network)','zyxel.ies6000.net.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe time (in hundredths of a second) since the\r\nnetwork management portion of the system was last\r\nre-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e79a790f3ca54943997f1d0b3e74943d');
INSERT INTO `items` (`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`,`uuid`) values ('35716','20','discovery[{#ZYXEL.BUFFERHIGHTHRESH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.4]','10424','Packet buffer discovery','zyxel.ies6000.buffer.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table that contains packet buffer usage information.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6023c8a68b5547dcab838414cbf544ea');
INSERT INTO `items` (`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`,`uuid`) values ('35717','20','discovery[{#ZYXEL.CPU.THRESH.HIGH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.4]','10424','CPU discovery','zyxel.ies6000.cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table that contains CPU utilization information.\r\nThis table is supported by R1.03 and later versions.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1aace4fa8bdc49d28d8785aeadcdc8d4');
INSERT INTO `items` (`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`,`uuid`) values ('35718','20','discovery[{#ZYXEL.FANRPM.THRESH.HIGH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.7,{#ZYXEL.FANRPM.THRESH.LOW}, .1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.5]','10424','Fan discovery','zyxel.ies6000.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in fanRpmTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','abd64129536e4b43b5718adde7979c18');
INSERT INTO `items` (`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`,`uuid`) values ('35719','20','discovery[{#ZYXEL.MEMORYHIGHTHRESH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.4]','10424','Memory discovery','zyxel.ies6000.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table that contains memory usage information.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','691c50d10ae342e0b9825c9d72a4cff9');
INSERT INTO `items` (`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`,`uuid`) values ('35720','20','discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18]','10424','ADSL interface discovery','zyxel.ies6000.net.adsl.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','cc124fe17126405f82fd61f248fe1abe');
INSERT INTO `items` (`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`,`uuid`) values ('35721','20','discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18]','10424','Ethernet interface discovery','zyxel.ies6000.net.if.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','8f9073a53cee4e6fb8c36feda5185900');
INSERT INTO `items` (`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`,`uuid`) values ('35722','20','discovery[{#ZYXEL.SLOTSTATUS},.1.3.6.1.4.1.890.1.5.13.5.6.3.1.7,{#ZYXEL.SLOT.ID},.1.3.6.1.4.1.890.1.5.13.5.6.3.1.1]','10424','Slot discovery','zyxel.ies6000.slot.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table which contains the slot information in a chassis.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','10a176c3da924a95939cd35c0d0be862');
INSERT INTO `items` (`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`,`uuid`) values ('35723','20','discovery[{#ZYXEL.TEMP.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.7,{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.5]','10424','Temperature discovery','zyxel.ies6000.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','65972390ff734a088e984ac6531833c6');
INSERT INTO `items` (`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`,`uuid`) values ('35724','20','discovery[{#ZYXEL.VOLT.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.8,{#ZYXEL.VOLT.THRESH.LOW}, .1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.5]','10424','Voltage discovery','zyxel.ies6000.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','86ee5ab94e9a49dca526ce6e3d9c95fa');
INSERT INTO `items` (`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`,`uuid`) values ('35725','20','.1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.2.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Packet buffer utilization','zyxel.ies6000.buffer[{#SNMPINDEX}]','1m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe packet buffer usage in the past 60 seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5de9037f3a1444adbcf5bcfbe4618ad6');
INSERT INTO `items` (`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`,`uuid`) values ('35726','20','.1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.2.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: CPU utilization','zyxel.ies6000.cpu[{#SNMPINDEX}]','1m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe CPU utilization in the past 60 seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','209b18dabcaa4d6a8870864eec2fc898');
INSERT INTO `items` (`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`,`uuid`) values ('35727','20','.1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.2.{#SNMPINDEX}','10424','ZYXEL IES-6000: Fan #{#SNMPINDEX}','zyxel.ies6000.fan[{#SNMPINDEX}]','1m','7d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nCurrent speed in Revolutions Per Minute (RPM) on the fan.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cfb5021170ca4365a72e76fca74efd9c');
INSERT INTO `items` (`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`,`uuid`) values ('35728','20','.1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.2.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Memory utilization','zyxel.ies6000.memory[{#SNMPINDEX}]','1m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe memory usage in the past 60 seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','41168b2146274e8d8d93d49e89b0f018');
INSERT INTO `items` (`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`,`uuid`) values ('35729','20','.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Administrative status','zyxel.ies6000.net.adsl.adminstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'381','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe desired state of the interface. The\r\ntesting(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d8a6e995233245cd8ac684232add71f0');
INSERT INTO `items` (`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`,`uuid`) values ('35730','20','.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming traffic','zyxel.ies6000.net.adsl.in.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,\r\nincluding framing characters.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f689c73f2aae4b4aa1688c584c88a562');
INSERT INTO `items` (`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`,`uuid`) values ('35731','20','.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing traffic','zyxel.ies6000.net.adsl.out.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the\r\ninterface, including framing characters. This object is a\r\n64-bit version of ifOutOctets.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','982554d0208a422d94b53a55ca566239');
INSERT INTO `items` (`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`,`uuid`) values ('35732','20','.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing multicast packages','zyxel.ies6000.net.adsl.out.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nmulticast address at this sub-layer, including those that\r\nwere discarded or not sent. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d2d5d679e4974b3099111cb79506cbab');
INSERT INTO `items` (`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`,`uuid`) values ('35733','20','.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing broadcast packages','zyxel.ies6000.net.adsl.out.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nbroadcast address at this sub-layer, including those that\r\nwere discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d4911b93b2084ca5b4e1c5a91bbb50af');
INSERT INTO `items` (`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`,`uuid`) values ('35734','20','.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Operational status','zyxel.ies6000.net.adsl.operstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'382','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\nThe testing(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ba66aeea219840929dfbc7b8cb61b2ab');
INSERT INTO `items` (`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`,`uuid`) values ('35735','20','.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface name','zyxel.ies6000.net.adsl.name[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8d0583741866478cb77f21e4e8e982ec');
INSERT INTO `items` (`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`,`uuid`) values ('35736','20','.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming unicast packages','zyxel.ies6000.net.adsl.in.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were not addressed to a multicast\r\nor broadcast address at this sub-layer','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','26a0ded897e745208787710bca306658');
INSERT INTO `items` (`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`,`uuid`) values ('35737','20','.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming multicast packages','zyxel.ies6000.net.adsl.in.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a multicast\r\naddress at this sub-layer. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eff728cc8d824bb98a840e07c0c370ed');
INSERT INTO `items` (`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`,`uuid`) values ('35738','20','.1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC attenuation','zyxel.ies6000.net.adsl.atuc.atn[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nMeasured difference in the total power transmitted by\r\nthe peer ATU and the total power received by this ATU.\r\nThe Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-6000, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dfd46b4bf39140b391bb2a8ab21db668');
INSERT INTO `items` (`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`,`uuid`) values ('35739','20','.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming broadcast packages','zyxel.ies6000.net.adsl.in.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a broadcast\r\naddress at this sub-layer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fd6e0cff15834d9ea5d5f5f570608abb');
INSERT INTO `items` (`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`,`uuid`) values ('35740','20','.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface description','zyxel.ies6000.net.adsl.descr[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2349bae6bb864a4f8c6c8d9b0087503f');
INSERT INTO `items` (`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`,`uuid`) values ('35741','20','.1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR noise margin','zyxel.ies6000.net.adsl.atur.snrmgn[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nNoise Margin as seen by this ATU with respect to its\r\nreceived signal in tenth dB.\r\nThe Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber\'s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad834d61ca834dd987784180211320f7');
INSERT INTO `items` (`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`,`uuid`) values ('35742','20','.1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR output power','zyxel.ies6000.net.adsl.atur.outpwr[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nMeasured total output power transmitted by this ATU.\r\nThe Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber\'s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c4d523e2ef9c4d7d901383e19876af80');
INSERT INTO `items` (`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`,`uuid`) values ('35743','20','.1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR attenuation','zyxel.ies6000.net.adsl.atur.atn[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nMeasured difference in the total power transmitted by\r\nthe peer ATU and the total power received by this ATU.\r\nThe Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber\'s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f6d71feb40954a88a2fa5ebe35af25cb');
INSERT INTO `items` (`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`,`uuid`) values ('35744','20','.1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC noise margin','zyxel.ies6000.net.adsl.atuc.snrmgn[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nNoise Margin as seen by this ATU with respect to its\r\nreceived signal in tenth dB.\r\nThe Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-6000, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','292d33986274498b819ab0b6b3ac3c21');
INSERT INTO `items` (`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`,`uuid`) values ('35745','20','.1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC output power','zyxel.ies6000.net.adsl.atuc.outpwr[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nMeasured total output power transmitted by this ATU.\r\nThe Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-6000, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b77f799291548de84478dff54742afe');
INSERT INTO `items` (`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`,`uuid`) values ('35746','20','.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing unicast packages','zyxel.ies6000.net.adsl.out.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were not addressed to a\r\nmulticast or broadcast address at this sub-layer, including\r\nthose that were discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','49c3f935e21248b69ea351e1210cc62d');
INSERT INTO `items` (`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`,`uuid`) values ('35747','20','.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}','10424','ZYXEL IES-6000: Port {#SNMPINDEX}: Administrative status','zyxel.ies6000.net.if.adminstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'381','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe desired state of the interface. The\r\ntesting(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c96f6a48c03f4a92a5a75a6e6d603079');
INSERT INTO `items` (`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`,`uuid`) values ('35748','20','.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX}','10424','ZYXEL IES-6000: Port {#SNMPINDEX}: Interface description','zyxel.ies6000.net.if.descr[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a70d2041768945a6906ab0cbe0f518ae');
INSERT INTO `items` (`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`,`uuid`) values ('35749','20','.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10424','ZYXEL IES-6000: Port {#SNMPINDEX}: Link speed','zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in bits per second','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cee8836a0e00466fbe72a5de85007a49');
INSERT INTO `items` (`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`,`uuid`) values ('35750','20','.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}','10424','ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.ies6000.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a broadcast\r\naddress at this sub-layer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a37e15f8480e47bf8b8f542e65df0a80');
INSERT INTO `items` (`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`,`uuid`) values ('35751','20','.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}','10424','ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming multicast packages','zyxel.ies6000.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a multicast\r\naddress at this sub-layer. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c3c7164096c845b599267186f66aa8ee');
INSERT INTO `items` (`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`,`uuid`) values ('35752','20','.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10424','ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming traffic','zyxel.ies6000.net.if.in.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,\r\nincluding framing characters.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','03aeeb2bb9c9454ebd91714fff1eb713');
INSERT INTO `items` (`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`,`uuid`) values ('35753','20','.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}','10424','ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming unicast packages','zyxel.ies6000.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were not addressed to a multicast\r\nor broadcast address at this sub-layer','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c2b9296b58bf4617b86348c82f88b1c2');
INSERT INTO `items` (`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`,`uuid`) values ('35754','15','','10424','ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming utilization','zyxel.ies6000.net.if.in.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.ies6000.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) <> 0) /( last(//zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2dc6ed1aacb84706bccd26c9c4e1e944');
INSERT INTO `items` (`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`,`uuid`) values ('35755','20','.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX}','10424','ZYXEL IES-6000: Port {#SNMPINDEX}: Interface name','zyxel.ies6000.net.if.name[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c4a8c8d0b51d496cbae4089ffee1e531');
INSERT INTO `items` (`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`,`uuid`) values ('35756','20','.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10424','ZYXEL IES-6000: Port {#SNMPINDEX}: Operational status','zyxel.ies6000.net.if.operstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'382','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\nThe testing(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','00c015d42840420c9878ef84177c8d42');
INSERT INTO `items` (`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`,`uuid`) values ('35757','20','.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}','10424','ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.ies6000.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nbroadcast address at this sub-layer, including those that\r\nwere discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff5b7d95366d47c68589c65b4b0dcb15');
INSERT INTO `items` (`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`,`uuid`) values ('35758','20','.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}','10424','ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.ies6000.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nmulticast address at this sub-layer, including those that\r\nwere discarded or not sent. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e88787c50f654d5295d03b55d94810bf');
INSERT INTO `items` (`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`,`uuid`) values ('35759','20','.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10424','ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing traffic','zyxel.ies6000.net.if.out.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the\r\ninterface, including framing characters. This object is a\r\n64-bit version of ifOutOctets.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac2959db86d44152b4a87294ee817dd7');
INSERT INTO `items` (`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`,`uuid`) values ('35760','20','.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}','10424','ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.ies6000.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were not addressed to a\r\nmulticast or broadcast address at this sub-layer, including\r\nthose that were discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c11fc8f0eacc42e5a6ca2443bdca60ce');
INSERT INTO `items` (`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`,`uuid`) values ('35761','15','','10424','ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing utilization','zyxel.ies6000.net.if.out.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.ies6000.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) <> 0) /( last(//zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6ef41c7cc0074674b43d583a8fa36868');
INSERT INTO `items` (`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`,`uuid`) values ('35762','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.8.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Alarm status','zyxel.ies6000.slot.alarm[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThis variable indicates the alarm status of the module.\r\nIt is a bit map represented a sum, therefore, it can represent\r\nmultiple defects simultaneously. The moduleNoDefect should be set\r\nif and only if no other flag is set.\r\nThe various bit positions are:\r\n1 moduleNoDefect\r\n2 moduleOverHeat\r\n3 moduleFanRpmLow\r\n4 moduleVoltageLow\r\n5 moduleThermalSensorFailure\r\n6 modulePullOut\r\n7 powerDC48VAFailure\r\n8 powerDC48VBFailure\r\n9 extAlarmInputTrigger\r\n10 moduleDown\r\n11 mscSwitchOverOK\r\n12 networkTopologyChange\r\n13 macSpoof\r\n14 cpuHigh\r\n15 memoryUsageHigh\r\n16 packetBufferUsageHigh\r\n17 loopguardOccurence','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7be6d40418f94284902c742fef1ada43');
INSERT INTO `items` (`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`,`uuid`) values ('35763','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.6.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: DSL modem code version','zyxel.ies6000.slot.cv.ver[{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe DSL modem code version of the plug-in card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6ce4b55490ed425b8fbc1ad337071730');
INSERT INTO `items` (`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`,`uuid`) values ('35764','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.3.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Description','zyxel.ies6000.slot.desc[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe descriptions of the plug-in card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','780fdca5ba10495d8ae1dfec6a655d4a');
INSERT INTO `items` (`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`,`uuid`) values ('35765','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.5.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Driver version','zyxel.ies6000.slot.dv.ver[{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe DSL driver of the plug-in card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a0dc5b9a8968401a832dfd76cda474f1');
INSERT INTO `items` (`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`,`uuid`) values ('35766','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.4.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Firmware version','zyxel.ies6000.slot.fw.ver[{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe firmware version of the plug-in card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e74a7678743c4739b98160a9cf3d516b');
INSERT INTO `items` (`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`,`uuid`) values ('35767','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.10.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Hardware version','zyxel.ies6000.slot.hw.ver[{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe hardware version of the plug-in card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','96ee73d987be4576b6b40f21d43ebbac');
INSERT INTO `items` (`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`,`uuid`) values ('35768','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.12.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: MAC address 1','zyxel.ies6000.slot.mac1[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe MAC Address of the plug-in card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa0c1799930a46d9a658f26bf3549a18');
INSERT INTO `items` (`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`,`uuid`) values ('35769','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.13.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: MAC address 2','zyxel.ies6000.slot.mac2[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe MAC Address of the plug-in card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6fdbc67b2612400c9e8372b310ca496e');
INSERT INTO `items` (`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`,`uuid`) values ('35770','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.9.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Serial number','zyxel.ies6000.slot.serial[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe serial number of the plug-in card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5edbf1b21ca5436a9522f5dcfe80b61d');
INSERT INTO `items` (`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`,`uuid`) values ('35771','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.7.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Status','zyxel.ies6000.slot.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'379','','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe module state of the plug-in card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5eeedb8e70764975872bd6dc6bc10821');
INSERT INTO `items` (`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`,`uuid`) values ('35772','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.2.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Type','zyxel.ies6000.slot.type[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'380','','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nCard type of the plug-in card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ea78751ce7954aa5b84caf9bdfcfeefd');
INSERT INTO `items` (`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`,`uuid`) values ('35773','20','.1.3.6.1.4.1.890.1.5.13.5.6.3.1.11.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Uptime','zyxel.ies6000.slot.uptime[{#SNMPINDEX}]','1m','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe time (in seconds) since the plug-in card was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','37de3e96e8d8420192e6aae7a56ff9ef');
INSERT INTO `items` (`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`,`uuid`) values ('35774','20','.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.2.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Temperature "{#ZYXEL.TEMP.ID}"','zyxel.ies6000.temp[{#SNMPINDEX}]','1m','7d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe current temperature measured at this sensor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','352f409f553f4805854690b51d83b061');
INSERT INTO `items` (`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`,`uuid`) values ('35775','20','.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.2.{#SNMPINDEX}','10424','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Nominal "{#ZYXEL.VOLT.NOMINAL}"','zyxel.ies6000.volt[{#SNMPINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB\r\nThe current voltage reading.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','36940f27f78248d48ed8caf34fc15721');
INSERT INTO `items` (`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`,`uuid`) values ('35776','5','','10425','ZYXEL IES1248-51: SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'383','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','03cf90df51e0466c8b31744ce820276f');
INSERT INTO `items` (`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`,`uuid`) values ('35777','20','.1.3.6.1.2.1.1.4.0','10425','ZYXEL IES1248-51: Contact','zyxel.ies1248.contact','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe textual identification of the contact person\r\nfor this managed node, together with information\r\non how to contact this person.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a01b8490f3b94ac5ab500d67171cfe1a');
INSERT INTO `items` (`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`,`uuid`) values ('35778','20','.1.3.6.1.4.1.890.1.5.13.1.1.3.1.4.0.0','10425','ZYXEL IES1248-51: ZyNOS F/W Version','zyxel.ies1248.fwversion','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-IESCOMMON-MIB','17','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','56974ccbede04e9eb966951ac3c88250');
INSERT INTO `items` (`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`,`uuid`) values ('35779','20','.1.3.6.1.2.1.1.6.0','10425','ZYXEL IES1248-51: Location','zyxel.ies1248.location','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe physical location of this node (e.g.,\r\n`telephone closet, 3rd floor\').','24','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','600e6a8b9dd549b69f64f1a536bce7de');
INSERT INTO `items` (`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`,`uuid`) values ('35780','20','.1.3.6.1.2.1.2.2.1.6.1','10425','ZYXEL IES1248-51: MAC address','zyxel.ies1248.mac','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB\r\nThe interface\'s address at the protocol layer\r\nimmediately `below\' the network layer in the\r\nprotocol stack. For interfaces which do not have\r\nsuch an address (e.g., a serial line), this object\r\nshould contain an octet string of zero length.','12','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad09c90a951a4c41b935a70f58f5c26a');
INSERT INTO `items` (`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`,`uuid`) values ('35781','20','.1.3.6.1.2.1.1.1.0','10425','ZYXEL IES1248-51: Hardware model name','zyxel.ies1248.model','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nA textual description of the entity. This value\r\nshould include the full name and version\r\nidentification of the system\'s hardware type,\r\nsoftware operating-system, and networking\r\nsoftware. It is mandatory that this only contain\r\nprintable ASCII characters.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','427ef42e55ca498db16d078ed41e7ad9');
INSERT INTO `items` (`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`,`uuid`) values ('35782','20','.1.3.6.1.2.1.1.5.0','10425','ZYXEL IES1248-51: Host name','zyxel.ies1248.name','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nAn administratively-assigned name for this\r\nmanaged node. By convention, this is the node\'s\r\nfully-qualified domain name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8c6546b670d4455aa1234c35bb033ac7');
INSERT INTO `items` (`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`,`uuid`) values ('35783','20','.1.3.6.1.4.1.890.1.5.13.1.1.2.1.3.0','10425','ZYXEL IES1248-51: Hardware serial number','zyxel.ies1248.serialnumber','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-IESCOMMON-MIB\r\nSerial number','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0d30380bb9a24bd1939d16287d5d0711');
INSERT INTO `items` (`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`,`uuid`) values ('35784','20','.1.3.6.1.4.1.890.1.5.13.1.1.3.1.8.0.0','10425','ZYXEL IES1248-51: Alarm status','zyxel.ies1248.slot.alarm','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-IESCOMMON-MIB\r\nThis variable indicates the alarm status of the module.\r\nIt is a bit map represented a sum, therefore, it can represent\r\nmultiple defects simultaneously. The moduleNoDefect should be set\r\nif and only if no other flag is set.\r\nThe various bit positions are:\r\n1 moduleNoDefect\r\n2 moduleOverHeat\r\n3 moduleFanRpmLow\r\n4 moduleVoltageLow\r\n5 moduleThermalSensorFailure\r\n6 modulePullOut\r\n7 powerDC48VAFailure\r\n8 powerDC48VBFailure\r\n9 extAlarmInputTrigger\r\n10 moduleDown\r\n11 mscSwitchOverOK\r\n12 networkTopologyChange\r\n13 macSpoof\r\n14 cpuHigh\r\n15 memoryUsageHigh\r\n16 packetBufferUsageHigh\r\n17 loopguardOccurence','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bafdca2040ba44be911fd1e5a09f3298');
INSERT INTO `items` (`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`,`uuid`) values ('35785','20','.1.3.6.1.2.1.1.3.0','10425','ZYXEL IES1248-51: Uptime (network)','zyxel.ies1248.net.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe time (in hundredths of a second) since the\r\nnetwork management portion of the system was last\r\nre-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ba41848140394ac29fe9b77e77627f20');
INSERT INTO `items` (`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`,`uuid`) values ('35786','20','discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.1.2.1.1.5]','10425','Fan discovery','zyxel.ies1248.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in fanRpmTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ffacb42c2fe4abd9e8d10e4b8803fc2');
INSERT INTO `items` (`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`,`uuid`) values ('35787','20','discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8]','10425','ADSL interface discovery','zyxel.ies1248.net.adsl.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','47dc5ba65f25444c961b7684d65bbc07');
INSERT INTO `items` (`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`,`uuid`) values ('35788','20','discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8]','10425','Ethernet interface discovery','zyxel.ies1248.net.if.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','4b32903336ad4c9e826cfd65a89a8960');
INSERT INTO `items` (`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`,`uuid`) values ('35789','20','discovery[{#ZYXEL.TEMP.ID}, .1.3.6.1.4.1.890.1.5.13.1.2.3.1.1,{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.1.2.3.1.5]','10425','Temperature discovery','zyxel.ies1248.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f8e1575174f9414e9ddf1459a420b2d6');
INSERT INTO `items` (`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`,`uuid`) values ('35790','20','discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.1.2.2.1.6,{#ZYXEL.VOLT.NOMINAL}, .1.3.6.1.4.1.890.1.5.13.1.2.2.1.5]','10425','Voltage discovery','zyxel.ies1248.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a2df63bd07f24277acf36e7a3854bd81');
INSERT INTO `items` (`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`,`uuid`) values ('35791','20','.1.3.6.1.4.1.890.1.5.13.1.2.1.1.2.{#SNMPINDEX}','10425','ZYXEL IES1248-51: Fan #{#SNMPINDEX}','zyxel.ies1248.fan[{#SNMPINDEX}]','1m','7d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IESCOMMON-MIB\r\nCurrent speed in Revolutions Per Minute (RPM) on the fan.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d420958f89f04467b5aa4d41c565160b');
INSERT INTO `items` (`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`,`uuid`) values ('35792','20','.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}','10425','ZYXEL IES1248-51: Port {#SNMPINDEX}: Administrative status','zyxel.ies1248.net.adsl.adminstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'384','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe desired state of the interface. The\r\ntesting(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ca789e47cbfc4ee080a25e7003e92fad');
INSERT INTO `items` (`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`,`uuid`) values ('35793','20','.1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX}','10425','ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUC attenuation','zyxel.ies1248.net.adsl.atuc.atn[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nMeasured difference in the total power transmitted by\r\nthe peer ATU and the total power received by this ATU.\r\nThe Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES1248-51, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7c13234155f343bc90bf1584a7f0fb3f');
INSERT INTO `items` (`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`,`uuid`) values ('35794','20','.1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX}','10425','ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUC output power','zyxel.ies1248.net.adsl.atuc.outpwr[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nMeasured total output power transmitted by this ATU.\r\nThe Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES1248-51, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','524bf397c9a640c48716fa20e4c45034');
INSERT INTO `items` (`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`,`uuid`) values ('35795','20','.1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX}','10425','ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUC noise margin','zyxel.ies1248.net.adsl.atuc.snrmgn[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nNoise Margin as seen by this ATU with respect to its\r\nreceived signal in tenth dB.\r\nThe Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES1248-51, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ed1768b17f0f434392c5cbc91ddd5222');
INSERT INTO `items` (`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`,`uuid`) values ('35796','20','.1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX}','10425','ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUR attenuation','zyxel.ies1248.net.adsl.atur.atn[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nMeasured difference in the total power transmitted by\r\nthe peer ATU and the total power received by this ATU.\r\nThe Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber\'s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0dd3a9f10abb4a8a92f627228c9fbb52');
INSERT INTO `items` (`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`,`uuid`) values ('35797','20','.1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX}','10425','ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUR output power','zyxel.ies1248.net.adsl.atur.outpwr[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nMeasured total output power transmitted by this ATU.\r\nThe Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber\'s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','54c5b104d96945eca7cf402a2e910f90');
INSERT INTO `items` (`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`,`uuid`) values ('35798','20','.1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX}','10425','ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUR noise margin','zyxel.ies1248.net.adsl.atur.snrmgn[{#SNMPINDEX}]','1m','7d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB\r\nNoise Margin as seen by this ATU with respect to its\r\nreceived signal in tenth dB.\r\nThe Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber\'s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9744b18d3eec4bd2954ec7ea29e341fd');
INSERT INTO `items` (`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`,`uuid`) values ('35799','20','.1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX}','10425','ZYXEL IES1248-51: Port {#SNMPINDEX}: Incoming traffic','zyxel.ies1248.net.adsl.in.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,\r\nincluding framing characters.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b7f622f72f98417cab3954717d311080');
INSERT INTO `items` (`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`,`uuid`) values ('35800','20','.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}','10425','ZYXEL IES1248-51: Port {#SNMPINDEX}: Interface name','zyxel.ies1248.net.adsl.name[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bff933861d744ee5a3229c2c6b1dc4c0');
INSERT INTO `items` (`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`,`uuid`) values ('35801','20','.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10425','ZYXEL IES1248-51: Port {#SNMPINDEX}: Operational status','zyxel.ies1248.net.adsl.operstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'385','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\nThe testing(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','25c07c59e30e42b191162fa40066c8b8');
INSERT INTO `items` (`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`,`uuid`) values ('35802','20','.1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX}','10425','ZYXEL IES1248-51: Port {#SNMPINDEX}: Outgoing traffic','zyxel.ies1248.net.adsl.out.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the\r\ninterface, including framing characters. This object is a\r\n64-bit version of ifOutOctets.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6df1c990c9dc49caa151dfc989d055b9');
INSERT INTO `items` (`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`,`uuid`) values ('35803','20','.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}','10425','ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Administrative status','zyxel.ies1248.net.if.adminstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'384','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe desired state of the interface. The\r\ntesting(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8d402a2674084fdb9d26bc5caeafc34f');
INSERT INTO `items` (`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`,`uuid`) values ('35804','20','.1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX}','10425','ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Incoming traffic','zyxel.ies1248.net.if.in.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,\r\nincluding framing characters.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','de5cf230831840cc985b63ba58d05059');
INSERT INTO `items` (`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`,`uuid`) values ('35805','20','.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}','10425','ZYXEL IES1248-51: Port {#SNMPINDEX}: Interface name','zyxel.ies1248.net.if.name[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eeb4236d4ebe4cb396413f13d1fa669b');
INSERT INTO `items` (`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`,`uuid`) values ('35806','20','.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10425','ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Operational status','zyxel.ies1248.net.if.operstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'385','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\nThe testing(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cd0bbc3c587a47e6a2a2307343a377b7');
INSERT INTO `items` (`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`,`uuid`) values ('35807','20','.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10425','ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Outgoing traffic','zyxel.ies1248.net.if.out.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the\r\ninterface, including framing characters. This object is a\r\n64-bit version of ifOutOctets.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2e39a01f6315444cb3ae47836945b514');
INSERT INTO `items` (`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`,`uuid`) values ('35808','20','.1.3.6.1.4.1.890.1.5.13.1.2.3.1.2.{#SNMPINDEX}','10425','ZYXEL IES1248-51: Temperature "{#ZYXEL.TEMP.ID}"','zyxel.ies1248.temp[{#SNMPINDEX}]','1m','7d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IESCOMMON-MIB\r\nThe current temperature measured at this sensor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3049c6b2d6024949bbb240c9104418e6');
INSERT INTO `items` (`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`,`uuid`) values ('35809','20','.1.3.6.1.4.1.890.1.5.13.1.2.2.1.2.{#SNMPINDEX}','10425','ZYXEL IES1248-51: Nominal "{#ZYXEL.VOLT.NOMINAL}"','zyxel.ies1248.volt[{#SNMPINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IESCOMMON-MIB\r\nThe current voltage reading.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','747034dc53c34554ad141a70dd5905f0');
INSERT INTO `items` (`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`,`uuid`) values ('35810','5','','10426','ZYXEL MES-3528: SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'386','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','836a8ccc430a4ede87906b9f9eef8471');
INSERT INTO `items` (`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`,`uuid`) values ('35811','20','.1.3.6.1.2.1.1.4.0','10426','ZYXEL MES-3528: Contact','zyxel.3528.contact','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe textual identification of the contact person\r\nfor this managed node, together with information\r\non how to contact this person.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7f947ff733314b23be2cea634a1fba75');
INSERT INTO `items` (`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`,`uuid`) values ('35812','20','.1.3.6.1.4.1.890.1.5.8.51.12.7.0','10426','ZYXEL MES-3528: CPU utilization','zyxel.3528.cpuusage','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MES3528-MIB\r\nShow device CPU load in %, it\'s the snapshot of CPU load when\r\ngetting the values.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c7bd32a8835842d7b469f2323cc8a308');
INSERT INTO `items` (`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`,`uuid`) values ('35813','20','discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.51.1]','10426','ZYXEL MES-3528: ZyNOS F/W Version','zyxel.3528.fwversion','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MES3528-MIB','17','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c650e217f92c4e2ca1ec94f391dfe706');
INSERT INTO `items` (`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`,`uuid`) values ('35814','20','.1.3.6.1.2.1.1.6.0','10426','ZYXEL MES-3528: Location','zyxel.3528.location','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe physical location of this node (e.g.,\r\n`telephone closet, 3rd floor\').','24','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','679445d352f14db4b5401efa5661447d');
INSERT INTO `items` (`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`,`uuid`) values ('35815','20','.1.3.6.1.2.1.2.2.1.6.1','10426','ZYXEL MES-3528: MAC address','zyxel.3528.mac','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB\r\nThe interface\'s address at the protocol layer\r\nimmediately `below\' the network layer in the\r\nprotocol stack. For interfaces which do not have\r\nsuch an address (e.g., a serial line), this object\r\nshould contain an octet string of zero length.','12','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1b4f56edba2a486a9c48ccafaa10eb09');
INSERT INTO `items` (`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`,`uuid`) values ('35816','20','.1.3.6.1.2.1.1.1.0','10426','ZYXEL MES-3528: Hardware model name','zyxel.3528.model','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nA textual description of the entity. This value\r\nshould include the full name and version\r\nidentification of the system\'s hardware type,\r\nsoftware operating-system, and networking\r\nsoftware. It is mandatory that this only contain\r\nprintable ASCII characters.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','050fbf9b7c544678b79b37572984f698');
INSERT INTO `items` (`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`,`uuid`) values ('35817','20','.1.3.6.1.2.1.1.5.0','10426','ZYXEL MES-3528: Host name','zyxel.3528.name','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nAn administratively-assigned name for this\r\nmanaged node. By convention, this is the node\'s\r\nfully-qualified domain name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2411ebd40ee94b6285f4a6abf6127e04');
INSERT INTO `items` (`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`,`uuid`) values ('35818','20','.1.3.6.1.4.1.890.1.5.8.51.1.10.0','10426','ZYXEL MES-3528: Hardware serial number','zyxel.3528.serialnumber','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MES3528-MIB\r\nSerial number','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ea25cf79e45f40398580afd48e0bb9c8');
INSERT INTO `items` (`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`,`uuid`) values ('35819','20','.1.3.6.1.2.1.1.3.0','10426','ZYXEL MES-3528: Uptime (network)','zyxel.3528.net.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe time (in hundredths of a second) since the\r\nnetwork management portion of the system was last\r\nre-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','351295fe155543c18930541c20ccac58');
INSERT INTO `items` (`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`,`uuid`) values ('35820','20','discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.51.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.51.24.1.1.5]','10426','Interface discovery','zyxel.3528.net.if.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','ebe2a413217c4239805f3f592f551b7c');
INSERT INTO `items` (`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`,`uuid`) values ('35821','20','discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.51.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.51.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.51.117.2.1.8]','10426','SFP with DDM discovery','zyxel.3528.sfp.ddm.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP DDM module discovery.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a4850c41f31a4bdfa3506c2ef3077d88');
INSERT INTO `items` (`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`,`uuid`) values ('35822','20','discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.51.117.1.1.2]','10426','SFP without DDM discovery','zyxel.3528.sfp.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP module discovery.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0c1fabd98e134f9dab698bb0794afa93');
INSERT INTO `items` (`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`,`uuid`) values ('35823','20','.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}','10426','ZYXEL MES-3528: Port {#SNMPINDEX}: Administrative status','zyxel.3528.net.if.adminstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'389','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe desired state of the interface. The\r\ntesting(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6dc0efb31738415a884d15020d9e30a9');
INSERT INTO `items` (`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`,`uuid`) values ('35824','20','.1.3.6.1.4.1.890.1.5.8.51.24.1.1.3.{#SNMPINDEX}','10426','ZYXEL MES-3528: Port {#SNMPINDEX}: Interface description','zyxel.3528.net.if.name[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3528-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a30094c57b54d89b1d61a73616e186e');
INSERT INTO `items` (`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`,`uuid`) values ('35825','15','','10426','ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing utilization','zyxel.3528.net.if.out.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3528.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3dd1d62e9cdb402b888b7ccbe3cbb182');
INSERT INTO `items` (`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`,`uuid`) values ('35826','20','.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}','10426','ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.3528.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were not addressed to a\r\nmulticast or broadcast address at this sub-layer, including\r\nthose that were discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d7b17c5521a94b13b3ef6528fedcf5e0');
INSERT INTO `items` (`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`,`uuid`) values ('35827','20','.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10426','ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing traffic','zyxel.3528.net.if.out.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the\r\ninterface, including framing characters. This object is a\r\n64-bit version of ifOutOctets.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','63f92516450d4dbcbea481231caf89f6');
INSERT INTO `items` (`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`,`uuid`) values ('35828','20','.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}','10426','ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.3528.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nmulticast address at this sub-layer, including those that\r\nwere discarded or not sent. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9dae4fa8d9c2494aa01478dc9605b066');
INSERT INTO `items` (`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`,`uuid`) values ('35829','20','.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}','10426','ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.3528.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nbroadcast address at this sub-layer, including those that\r\nwere discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','873ba4c47c1c4525b52d53e6d98e8b6e');
INSERT INTO `items` (`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`,`uuid`) values ('35830','20','.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10426','ZYXEL MES-3528: Port {#SNMPINDEX}: Operational status','zyxel.3528.net.if.operstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'390','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\nThe testing(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1ed72a56523b48e89b964f6c4afc8800');
INSERT INTO `items` (`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`,`uuid`) values ('35831','20','.1.3.6.1.4.1.890.1.5.8.51.24.1.1.5.{#SNMPINDEX}','10426','ZYXEL MES-3528: Port {#SNMPINDEX}: Link type','zyxel.3528.net.if.link_type[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'387','','','0','','','','','2',NULL,'MIB: ZYXEL-MES3528-MIB\r\nPhysical connection type','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9a45866adc3043ad81c7778b4334b317');
INSERT INTO `items` (`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`,`uuid`) values ('35832','20','.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}','10426','ZYXEL MES-3528: Port {#SNMPINDEX}: Interface name','zyxel.3528.net.if.descr[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e719364c125048e8a1fb6712e507863b');
INSERT INTO `items` (`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`,`uuid`) values ('35833','15','','10426','ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming utilization','zyxel.3528.net.if.in.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3528.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c2792996d52045c9ad4c955f6330264e');
INSERT INTO `items` (`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`,`uuid`) values ('35834','20','.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}','10426','ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming unicast packages','zyxel.3528.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were not addressed to a multicast\r\nor broadcast address at this sub-layer','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','681460dffc9242fba072eacd503fd190');
INSERT INTO `items` (`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`,`uuid`) values ('35835','20','.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10426','ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming traffic','zyxel.3528.net.if.in.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,\r\nincluding framing characters.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','41f4b8bb9e1c461e8ef834348589e468');
INSERT INTO `items` (`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`,`uuid`) values ('35836','20','.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}','10426','ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming multicast packages','zyxel.3528.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a multicast\r\naddress at this sub-layer. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','184f7cfcfe964ea9b2b310a666c77420');
INSERT INTO `items` (`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`,`uuid`) values ('35837','20','.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}','10426','ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.3528.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a broadcast\r\naddress at this sub-layer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9f1720f6286a4b038724563a32f97844');
INSERT INTO `items` (`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`,`uuid`) values ('35838','20','.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10426','ZYXEL MES-3528: Port {#SNMPINDEX}: Link speed','zyxel.3528.net.if.highspeed[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in bits per second','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b2225fa57c0d468b9b0a40b220d50639');
INSERT INTO `items` (`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`,`uuid`) values ('35839','20','.1.3.6.1.4.1.890.1.5.8.51.24.1.1.1.{#SNMPINDEX}','10426','ZYXEL MES-3528: Port {#SNMPINDEX}: Speed Duplex','zyxel.3528.net.if.speed_duplex[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'388','','','0','','','','','2',NULL,'MIB: ZYXEL-MES3528-MIB\r\nTransmission mode','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','284e41a49397492590bbcf34e1881553');
INSERT INTO `items` (`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`,`uuid`) values ('35840','20','.1.3.6.1.4.1.890.1.5.8.51.117.2.1.7.{#SNMPINDEX}','10426','ZYXEL MES-3528: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','zyxel.3528.sfp.ddm[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','365d','0','0','','!{#ZYXEL.SFP.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3528-MIB\r\nTransceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','732084ce0daf4e8085c43e16982e4aba');
INSERT INTO `items` (`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`,`uuid`) values ('35841','20','.1.3.6.1.4.1.890.1.5.8.51.117.1.1.7.{#SNMPINDEX}','10426','ZYXEL MES-3528: SFP {#SNMPINDEX}: Date code','zyxel.3528.sfp.datecode[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3528-MIB\r\nTransceiver module vendor\'s manufacturing date code.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2d09724ecd8147d298ae2a2486921ccb');
INSERT INTO `items` (`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`,`uuid`) values ('35842','20','.1.3.6.1.4.1.890.1.5.8.51.117.1.1.4.{#SNMPINDEX}','10426','ZYXEL MES-3528: SFP {#SNMPINDEX}: Part number','zyxel.3528.sfp.part[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3528-MIB\r\nPart number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9d9e08755fa444efb408d3db30843098');
INSERT INTO `items` (`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`,`uuid`) values ('35843','20','.1.3.6.1.4.1.890.1.5.8.51.117.1.1.6.{#SNMPINDEX}','10426','ZYXEL MES-3528: SFP {#SNMPINDEX}: Revision','zyxel.3528.sfp.revision[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3528-MIB\r\nRevision level for part number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','90952405b1504eabb6e5436eaa179f5a');
INSERT INTO `items` (`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`,`uuid`) values ('35844','20','.1.3.6.1.4.1.890.1.5.8.51.117.1.1.5.{#SNMPINDEX}','10426','ZYXEL MES-3528: SFP {#SNMPINDEX}: Serial number','zyxel.3528.sfp.serialnumber[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3528-MIB\r\nSerial number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','83d084e9a0554e8eae31b0bd38aefe72');
INSERT INTO `items` (`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`,`uuid`) values ('35845','20','.1.3.6.1.4.1.890.1.5.8.51.117.1.1.2.{#SNMPINDEX}','10426','ZYXEL MES-3528: SFP {#SNMPINDEX}: Status','zyxel.3528.sfp.status[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','365d','0','3','','','','',NULL,'391','','','0','','','','','2',NULL,'MIB: ZYXEL-MES3528-MIB\r\nTransceiver module status.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ecbd3db41592408d8e9fe0d1d6078a3f');
INSERT INTO `items` (`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`,`uuid`) values ('35846','20','.1.3.6.1.4.1.890.1.5.8.51.117.1.1.8.{#SNMPINDEX}','10426','ZYXEL MES-3528: SFP {#SNMPINDEX}: Transceiver','zyxel.3528.sfp.transceiver[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3528-MIB\r\nTransceiver module type names.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','049cbbcea720493f9638d08f928710cb');
INSERT INTO `items` (`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`,`uuid`) values ('35847','20','.1.3.6.1.4.1.890.1.5.8.51.117.1.1.3.{#SNMPINDEX}','10426','ZYXEL MES-3528: SFP {#SNMPINDEX}: Vendor','zyxel.3528.sfp.vendor[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3528-MIB\r\nTransceiver module vendor name.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5ece25cae49f47169a335be40dee744a');
INSERT INTO `items` (`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`,`uuid`) values ('35848','5','','10427','ZYXEL MES3500-10: SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'392','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1ec18d9656654a9e9114ba2b5ff965b1');
INSERT INTO `items` (`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`,`uuid`) values ('35849','20','.1.3.6.1.2.1.1.4.0','10427','ZYXEL MES3500-10: Contact','zyxel.3500_10.contact','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe textual identification of the contact person\r\nfor this managed node, together with information\r\non how to contact this person.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84a1eb118ad2453ca5a5ccca6111516b');
INSERT INTO `items` (`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`,`uuid`) values ('35850','20','.1.3.6.1.4.1.890.1.5.8.80.12.7.0','10427','ZYXEL MES3500-10: CPU utilization','zyxel.3500_10.cpuusage','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MES3500-10-MIB\r\nShow device CPU load in %, it\'s the snapshot of CPU load when\r\ngetting the values.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dd6585221297476885e900c54a820ae7');
INSERT INTO `items` (`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`,`uuid`) values ('35851','20','discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.80.1]','10427','ZYXEL MES3500-10: ZyNOS F/W Version','zyxel.3500_10.fwversion','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MES3500-10-MIB','17','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','144931a31b2a4a52978679a6a029fc8e');
INSERT INTO `items` (`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`,`uuid`) values ('35852','20','.1.3.6.1.2.1.1.6.0','10427','ZYXEL MES3500-10: Location','zyxel.3500_10.location','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe physical location of this node (e.g.,\r\n`telephone closet, 3rd floor\').','24','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0005f568cd384734b9f21e846648cd5f');
INSERT INTO `items` (`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`,`uuid`) values ('35853','20','.1.3.6.1.2.1.2.2.1.6.1','10427','ZYXEL MES3500-10: MAC address','zyxel.3500_10.mac','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB\r\nThe interface\'s address at the protocol layer\r\nimmediately `below\' the network layer in the\r\nprotocol stack. For interfaces which do not have\r\nsuch an address (e.g., a serial line), this object\r\nshould contain an octet string of zero length.','12','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3bc8285eebad410996c4697022038345');
INSERT INTO `items` (`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`,`uuid`) values ('35854','20','.1.3.6.1.2.1.1.1.0','10427','ZYXEL MES3500-10: Hardware model name','zyxel.3500_10.model','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nA textual description of the entity. This value\r\nshould include the full name and version\r\nidentification of the system\'s hardware type,\r\nsoftware operating-system, and networking\r\nsoftware. It is mandatory that this only contain\r\nprintable ASCII characters.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b270937507f345f88421cf1825c29917');
INSERT INTO `items` (`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`,`uuid`) values ('35855','20','.1.3.6.1.2.1.1.5.0','10427','ZYXEL MES3500-10: Host name','zyxel.3500_10.name','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nAn administratively-assigned name for this\r\nmanaged node. By convention, this is the node\'s\r\nfully-qualified domain name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','831783fc67ab49b1be0ae5132fb2d8df');
INSERT INTO `items` (`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`,`uuid`) values ('35856','20','.1.3.6.1.4.1.890.1.5.8.80.1.10.0','10427','ZYXEL MES3500-10: Hardware serial number','zyxel.3500_10.serialnumber','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MES3500-10-MIB\r\nSerial number','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a0d17f11a5624f4e8520ee5e583ad322');
INSERT INTO `items` (`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`,`uuid`) values ('35857','20','.1.3.6.1.2.1.1.3.0','10427','ZYXEL MES3500-10: Uptime (network)','zyxel.3500_10.net.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe time (in hundredths of a second) since the\r\nnetwork management portion of the system was last\r\nre-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d581384242074b07a4c5cd03a562827c');
INSERT INTO `items` (`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`,`uuid`) values ('35858','20','discovery[{#ZYXEL.MEMORY.NAME},.1.3.6.1.4.1.890.1.5.8.80.124.1.1.2]','10427','Memory pool discovery','zyxel.3500_10.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ae66d16a5531489580d394e040950ecb');
INSERT INTO `items` (`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`,`uuid`) values ('35859','20','discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.80.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.80.24.1.1.5]','10427','Interface discovery','zyxel.3500_10.net.if.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','b8cd74eeb2b94ceeba49157ccb617bb8');
INSERT INTO `items` (`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`,`uuid`) values ('35860','20','discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.80.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.80.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.80.117.2.1.8]','10427','SFP with DDM discovery','zyxel.3500_10.sfp.ddm.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP DDM module discovery.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1c6952a276fa454bb83f64a11424b7ec');
INSERT INTO `items` (`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`,`uuid`) values ('35861','20','discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.80.117.1.1.2]','10427','SFP without DDM discovery','zyxel.3500_10.sfp.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP module discovery.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb3dea0bae0e45b0a9ca4969a7b33843');
INSERT INTO `items` (`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`,`uuid`) values ('35862','20','discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.80.9.2.1.5]','10427','Temperature discovery','zyxel.3500_10.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable.\r\nIndex of temperature unit. 1:MAC, 2:CPU, 3:PHY','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','39ef9d256f8847fca6077524f01270c1');
INSERT INTO `items` (`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`,`uuid`) values ('35863','20','discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.80.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.80.9.3.1.5]','10427','Voltage discovery','zyxel.3500_10.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c78ffbc1aa2547a2a5c387ecc68cac1f');
INSERT INTO `items` (`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`,`uuid`) values ('35864','20','.1.3.6.1.4.1.890.1.5.8.80.124.1.1.5.{#SNMPINDEX}','10427','ZYXEL MES3500-10: Memory "{#ZYXEL.MEMORY.NAME}" utilization','zyxel.3500_10.memory[{#SNMPINDEX}]','1m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB\r\nUtilization of memory pool in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','20c3127430534c049073c43a039fd29d');
INSERT INTO `items` (`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`,`uuid`) values ('35865','20','.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}','10427','ZYXEL MES3500-10: Port {#SNMPINDEX}: Administrative status','zyxel.3500_10.net.if.adminstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'395','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe desired state of the interface. The\r\ntesting(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d300b380e4bc44f89ac7a40083d424ed');
INSERT INTO `items` (`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`,`uuid`) values ('35866','20','.1.3.6.1.4.1.890.1.5.8.80.24.1.1.3.{#SNMPINDEX}','10427','ZYXEL MES3500-10: Port {#SNMPINDEX}: Interface description','zyxel.3500_10.net.if.name[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4c45f11441f4450e9f310ffb1d999a68');
INSERT INTO `items` (`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`,`uuid`) values ('35867','15','','10427','ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing utilization','zyxel.3500_10.net.if.out.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3500_10.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dffcc1796e8b4a3c84f9d925b3644215');
INSERT INTO `items` (`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`,`uuid`) values ('35868','20','.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}','10427','ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.3500_10.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were not addressed to a\r\nmulticast or broadcast address at this sub-layer, including\r\nthose that were discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8888c9da5191443facfec4c865181d18');
INSERT INTO `items` (`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`,`uuid`) values ('35869','20','.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10427','ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing traffic','zyxel.3500_10.net.if.out.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the\r\ninterface, including framing characters. This object is a\r\n64-bit version of ifOutOctets.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f563a76ec9ae4f62ad1601f1d91549d2');
INSERT INTO `items` (`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`,`uuid`) values ('35870','20','.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}','10427','ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.3500_10.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nmulticast address at this sub-layer, including those that\r\nwere discarded or not sent. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7638a07162bd4668b086f0d07d4a6513');
INSERT INTO `items` (`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`,`uuid`) values ('35871','20','.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}','10427','ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.3500_10.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nbroadcast address at this sub-layer, including those that\r\nwere discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','521a2ac2ff0c42c282380c45bd12706f');
INSERT INTO `items` (`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`,`uuid`) values ('35872','20','.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10427','ZYXEL MES3500-10: Port {#SNMPINDEX}: Operational status','zyxel.3500_10.net.if.operstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'396','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\nThe testing(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a2269b48020a46c193830f8cc1ef3595');
INSERT INTO `items` (`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`,`uuid`) values ('35873','20','.1.3.6.1.4.1.890.1.5.8.80.24.1.1.5.{#SNMPINDEX}','10427','ZYXEL MES3500-10: Port {#SNMPINDEX}: Link type','zyxel.3500_10.net.if.link_type[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'393','','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB\r\nPhysical connection type','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','66572368d798449baa945b3985156e07');
INSERT INTO `items` (`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`,`uuid`) values ('35874','20','.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}','10427','ZYXEL MES3500-10: Port {#SNMPINDEX}: Interface name','zyxel.3500_10.net.if.descr[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a4b1c62b5834ecea8a90b71cb7c5f2e');
INSERT INTO `items` (`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`,`uuid`) values ('35875','15','','10427','ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming utilization','zyxel.3500_10.net.if.in.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3500_10.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e4963aa170554edebb356515c04aaafb');
INSERT INTO `items` (`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`,`uuid`) values ('35876','20','.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}','10427','ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming unicast packages','zyxel.3500_10.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were not addressed to a multicast\r\nor broadcast address at this sub-layer','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','31e8e47755804816882d2070ecfca130');
INSERT INTO `items` (`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`,`uuid`) values ('35877','20','.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10427','ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming traffic','zyxel.3500_10.net.if.in.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,\r\nincluding framing characters.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b1843c913e6d4f638e43da1c92807a4f');
INSERT INTO `items` (`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`,`uuid`) values ('35878','20','.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}','10427','ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming multicast packages','zyxel.3500_10.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a multicast\r\naddress at this sub-layer. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','846dfcfcdd974d1e9f8ec71f54f8933b');
INSERT INTO `items` (`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`,`uuid`) values ('35879','20','.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}','10427','ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.3500_10.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a broadcast\r\naddress at this sub-layer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7c6f62ebe1ec48e080c0edb36cf2304c');
INSERT INTO `items` (`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`,`uuid`) values ('35880','20','.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10427','ZYXEL MES3500-10: Port {#SNMPINDEX}: Link speed','zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in bits per second','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bba418acc01d4732891c775c68bad518');
INSERT INTO `items` (`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`,`uuid`) values ('35881','20','.1.3.6.1.4.1.890.1.5.8.80.24.1.1.1.{#SNMPINDEX}','10427','ZYXEL MES3500-10: Port {#SNMPINDEX}: Speed Duplex','zyxel.3500_10.net.if.speed_duplex[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'394','','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB\r\nTransmission mode','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a54d1c46a1c842b88854be651c4e4caa');
INSERT INTO `items` (`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`,`uuid`) values ('35882','20','.1.3.6.1.4.1.890.1.5.8.80.117.2.1.7.{#SNMPINDEX}','10427','ZYXEL MES3500-10: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','zyxel.3500_10.sfp.ddm[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','365d','0','0','','!{#ZYXEL.SFP.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB\r\nTransceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','13ddb64324c4401da5e742a93698e2f6');
INSERT INTO `items` (`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`,`uuid`) values ('35883','20','.1.3.6.1.4.1.890.1.5.8.80.117.1.1.7.{#SNMPINDEX}','10427','ZYXEL MES3500-10: SFP {#SNMPINDEX}: Date code','zyxel.3500_10.sfp.datecode[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB\r\nTransceiver module vendor\'s manufacturing date code.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aab3e0e09bc64de0a2e7322cfb4da68e');
INSERT INTO `items` (`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`,`uuid`) values ('35884','20','.1.3.6.1.4.1.890.1.5.8.80.117.1.1.4.{#SNMPINDEX}','10427','ZYXEL MES3500-10: SFP {#SNMPINDEX}: Part number','zyxel.3500_10.sfp.part[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB\r\nPart number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2f338f7f29464e0b88ebe7d3ec69050a');
INSERT INTO `items` (`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`,`uuid`) values ('35885','20','.1.3.6.1.4.1.890.1.5.8.80.117.1.1.6.{#SNMPINDEX}','10427','ZYXEL MES3500-10: SFP {#SNMPINDEX}: Revision','zyxel.3500_10.sfp.revision[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB\r\nRevision level for part number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','53582950f20e474ba4b6f46c42bc3216');
INSERT INTO `items` (`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`,`uuid`) values ('35886','20','.1.3.6.1.4.1.890.1.5.8.80.117.1.1.5.{#SNMPINDEX}','10427','ZYXEL MES3500-10: SFP {#SNMPINDEX}: Serial number','zyxel.3500_10.sfp.serialnumber[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB\r\nSerial number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cecd4ba3b9014400a2d5d5b1b98f5463');
INSERT INTO `items` (`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`,`uuid`) values ('35887','20','.1.3.6.1.4.1.890.1.5.8.80.117.1.1.2.{#SNMPINDEX}','10427','ZYXEL MES3500-10: SFP {#SNMPINDEX}: Status','zyxel.3500_10.sfp.status[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','365d','0','3','','','','',NULL,'397','','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB\r\nTransceiver module status.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b09aad7939cb4897bff413ef956bebfe');
INSERT INTO `items` (`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`,`uuid`) values ('35888','20','.1.3.6.1.4.1.890.1.5.8.80.117.1.1.8.{#SNMPINDEX}','10427','ZYXEL MES3500-10: SFP {#SNMPINDEX}: Transceiver','zyxel.3500_10.sfp.transceiver[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB\r\nTransceiver module type names.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3878fecf990d4cb6aba13225b2bbfa59');
INSERT INTO `items` (`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`,`uuid`) values ('35889','20','.1.3.6.1.4.1.890.1.5.8.80.117.1.1.3.{#SNMPINDEX}','10427','ZYXEL MES3500-10: SFP {#SNMPINDEX}: Vendor','zyxel.3500_10.sfp.vendor[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB\r\nTransceiver module vendor name.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c8dfe57cab242c2ade6139e8666e621');
INSERT INTO `items` (`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`,`uuid`) values ('35890','20','.1.3.6.1.4.1.890.1.5.8.80.9.2.1.2.{#SNMPINDEX}','10427','ZYXEL MES3500-10: Temperature "{#ZYXEL.TEMP.ID}"','zyxel.3500_10.temp[{#SNMPINDEX}]','1m','7d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB\r\nThe current temperature measured at this sensor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','60f580a757814d2a9b320b6810a8f65d');
INSERT INTO `items` (`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`,`uuid`) values ('35891','20','.1.3.6.1.4.1.890.1.5.8.80.9.3.1.2.{#SNMPINDEX}','10427','ZYXEL MES3500-10: Nominal "{#ZYXEL.VOLT.NOMINAL}"','zyxel.3500_10.volt[{#SNMPINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB\r\nThe current voltage reading.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2f842775bf27436ab28278754594e5b9');
INSERT INTO `items` (`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`,`uuid`) values ('35892','5','','10428','ZYXEL MES3500-24: SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'398','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7d30d099448e408bb7be13881e4149ed');
INSERT INTO `items` (`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`,`uuid`) values ('35893','20','.1.3.6.1.2.1.1.4.0','10428','ZYXEL MES3500-24: Contact','zyxel.3500_24.contact','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe textual identification of the contact person\r\nfor this managed node, together with information\r\non how to contact this person.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e1745e5130f4b7cb2b31814fecd6792');
INSERT INTO `items` (`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`,`uuid`) values ('35894','20','.1.3.6.1.4.1.890.1.5.8.68.12.7.0','10428','ZYXEL MES3500-24: CPU utilization','zyxel.3500_24.cpuusage','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MES3500-24-MIB\r\nShow device CPU load in %, it\'s the snapshot of CPU load when\r\ngetting the values.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','31029f8a8cc541908b8f765b27254ecd');
INSERT INTO `items` (`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`,`uuid`) values ('35895','20','discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.68.1]','10428','ZYXEL MES3500-24: ZyNOS F/W Version','zyxel.3500_24.fwversion','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MES3500-24-MIB','17','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','53e694b360254f2896301e78cf982650');
INSERT INTO `items` (`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`,`uuid`) values ('35896','20','.1.3.6.1.2.1.1.6.0','10428','ZYXEL MES3500-24: Location','zyxel.3500_24.location','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe physical location of this node (e.g.,\r\n`telephone closet, 3rd floor\').','24','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5aa2128d8530415f855a0d33b7fb9c7f');
INSERT INTO `items` (`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`,`uuid`) values ('35897','20','.1.3.6.1.2.1.2.2.1.6.1','10428','ZYXEL MES3500-24: MAC address','zyxel.3500_24.mac','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB\r\nThe interface\'s address at the protocol layer\r\nimmediately `below\' the network layer in the\r\nprotocol stack. For interfaces which do not have\r\nsuch an address (e.g., a serial line), this object\r\nshould contain an octet string of zero length.','12','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a8209492e29040a3896abf35019e6cdd');
INSERT INTO `items` (`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`,`uuid`) values ('35898','20','.1.3.6.1.2.1.1.1.0','10428','ZYXEL MES3500-24: Hardware model name','zyxel.3500_24.model','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nA textual description of the entity. This value\r\nshould include the full name and version\r\nidentification of the system\'s hardware type,\r\nsoftware operating-system, and networking\r\nsoftware. It is mandatory that this only contain\r\nprintable ASCII characters.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1820c7b7d903402dab0d7c8fb251f9bc');
INSERT INTO `items` (`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`,`uuid`) values ('35899','20','.1.3.6.1.2.1.1.5.0','10428','ZYXEL MES3500-24: Host name','zyxel.3500_24.name','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nAn administratively-assigned name for this\r\nmanaged node. By convention, this is the node\'s\r\nfully-qualified domain name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b5fc886ab5b94f929e866d4a2e9c5648');
INSERT INTO `items` (`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`,`uuid`) values ('35900','20','.1.3.6.1.4.1.890.1.5.8.68.1.10.0','10428','ZYXEL MES3500-24: Hardware serial number','zyxel.3500_24.serialnumber','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MES3500-24-MIB\r\nSerial number','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b5243eb2c7664203acb4f5e6bc8da296');
INSERT INTO `items` (`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`,`uuid`) values ('35901','20','.1.3.6.1.2.1.1.3.0','10428','ZYXEL MES3500-24: Uptime (network)','zyxel.3500_24.net.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe time (in hundredths of a second) since the\r\nnetwork management portion of the system was last\r\nre-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','00c831c6cc9d415e91319b6bec15423d');
INSERT INTO `items` (`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`,`uuid`) values ('35902','20','discovery[{#ZYXEL.MEMORY.NAME},.1.3.6.1.4.1.890.1.5.8.68.124.1.1.2]','10428','Memory pool discovery','zyxel.3500_24.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','263079e9c77c4539b248a5b62b5f1b0f');
INSERT INTO `items` (`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`,`uuid`) values ('35903','20','discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.68.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.68.24.1.1.5]','10428','Interface discovery','zyxel.3500_24.net.if.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','0f57f2a82f764b908fbc8f4d828203c6');
INSERT INTO `items` (`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`,`uuid`) values ('35904','20','discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.68.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.68.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.68.117.2.1.8]','10428','SFP with DDM discovery','zyxel.3500_24.sfp.ddm.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP DDM module discovery.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','302fdabe174e425d9f32d36694453331');
INSERT INTO `items` (`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`,`uuid`) values ('35905','20','discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.68.117.1.1.2]','10428','SFP without DDM discovery','zyxel.3500_24.sfp.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP module discovery.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','998d08685c72456b959b47adabf48f3f');
INSERT INTO `items` (`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`,`uuid`) values ('35906','20','discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.68.9.2.1.5]','10428','Temperature discovery','zyxel.3500_24.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable.\r\nIndex of temperature unit. 1:MAC, 2:CPU, 3:PHY','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','034f5965d39940d29ac58641f3b01183');
INSERT INTO `items` (`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`,`uuid`) values ('35907','20','discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.68.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.68.9.3.1.5]','10428','Voltage discovery','zyxel.3500_24.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2197368f67d548b7a7c6b0fe5edb5a2d');
INSERT INTO `items` (`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`,`uuid`) values ('35908','20','.1.3.6.1.4.1.890.1.5.8.68.124.1.1.5.{#SNMPINDEX}','10428','ZYXEL MES3500-24: Memory "{#ZYXEL.MEMORY.NAME}" utilization','zyxel.3500_24.memory[{#SNMPINDEX}]','1m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB\r\nUtilization of memory pool in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b41542121d724e1a82e72687ecce6cf2');
INSERT INTO `items` (`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`,`uuid`) values ('35909','20','.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}','10428','ZYXEL MES3500-24: Port {#SNMPINDEX}: Administrative status','zyxel.3500_24.net.if.adminstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'401','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe desired state of the interface. The\r\ntesting(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8320028ac1ca4ef8b0dce4817281887a');
INSERT INTO `items` (`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`,`uuid`) values ('35910','20','.1.3.6.1.4.1.890.1.5.8.68.24.1.1.3.{#SNMPINDEX}','10428','ZYXEL MES3500-24: Port {#SNMPINDEX}: Interface description','zyxel.3500_24.net.if.name[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d860666d83b4886b04bb1ff2ecb19d9');
INSERT INTO `items` (`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`,`uuid`) values ('35911','15','','10428','ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing utilization','zyxel.3500_24.net.if.out.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3500_24.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','40b0f81094014f6cb667c143b5345795');
INSERT INTO `items` (`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`,`uuid`) values ('35912','20','.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}','10428','ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.3500_24.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were not addressed to a\r\nmulticast or broadcast address at this sub-layer, including\r\nthose that were discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','08e0d078c5224b0885ea8c03af9328e4');
INSERT INTO `items` (`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`,`uuid`) values ('35913','20','.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10428','ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing traffic','zyxel.3500_24.net.if.out.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the\r\ninterface, including framing characters. This object is a\r\n64-bit version of ifOutOctets.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d15d6b6ab8af4d5d8501784bb590af08');
INSERT INTO `items` (`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`,`uuid`) values ('35914','20','.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}','10428','ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.3500_24.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nmulticast address at this sub-layer, including those that\r\nwere discarded or not sent. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b13b8fecada34eed8f40ee79e2a12295');
INSERT INTO `items` (`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`,`uuid`) values ('35915','20','.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}','10428','ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.3500_24.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nbroadcast address at this sub-layer, including those that\r\nwere discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9119a0ba755e426580310376d6a70b5f');
INSERT INTO `items` (`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`,`uuid`) values ('35916','20','.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10428','ZYXEL MES3500-24: Port {#SNMPINDEX}: Operational status','zyxel.3500_24.net.if.operstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'402','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\nThe testing(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','adf6ce16961240a9a7775de2e41df3d1');
INSERT INTO `items` (`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`,`uuid`) values ('35917','20','.1.3.6.1.4.1.890.1.5.8.68.24.1.1.5.{#SNMPINDEX}','10428','ZYXEL MES3500-24: Port {#SNMPINDEX}: Link type','zyxel.3500_24.net.if.link_type[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'399','','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB\r\nPhysical connection type','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','25f6b400af8a40b29bf83ac988bc3cd8');
INSERT INTO `items` (`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`,`uuid`) values ('35918','20','.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}','10428','ZYXEL MES3500-24: Port {#SNMPINDEX}: Interface name','zyxel.3500_24.net.if.descr[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7309a7b73c2848088c282096c334d541');
INSERT INTO `items` (`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`,`uuid`) values ('35919','15','','10428','ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming utilization','zyxel.3500_24.net.if.in.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3500_24.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5051b4a19bad47a8b546fbfb6d5ea85e');
INSERT INTO `items` (`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`,`uuid`) values ('35920','20','.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}','10428','ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming unicast packages','zyxel.3500_24.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were not addressed to a multicast\r\nor broadcast address at this sub-layer','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16df754a1ac94c0588e1b6be5e175ed7');
INSERT INTO `items` (`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`,`uuid`) values ('35921','20','.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10428','ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming traffic','zyxel.3500_24.net.if.in.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,\r\nincluding framing characters.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e759a09d0f504567bd2fc0dd9c0d8395');
INSERT INTO `items` (`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`,`uuid`) values ('35922','20','.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}','10428','ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming multicast packages','zyxel.3500_24.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a multicast\r\naddress at this sub-layer. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','22a65221bc194c03909956179180808a');
INSERT INTO `items` (`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`,`uuid`) values ('35923','20','.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}','10428','ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.3500_24.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a broadcast\r\naddress at this sub-layer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f11f5928218a4b619b31b597895a13b2');
INSERT INTO `items` (`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`,`uuid`) values ('35924','20','.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10428','ZYXEL MES3500-24: Port {#SNMPINDEX}: Link speed','zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in bits per second','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','72efe5b4f1584d438739298561b3c8ab');
INSERT INTO `items` (`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`,`uuid`) values ('35925','20','.1.3.6.1.4.1.890.1.5.8.68.24.1.1.1.{#SNMPINDEX}','10428','ZYXEL MES3500-24: Port {#SNMPINDEX}: Speed Duplex','zyxel.3500_24.net.if.speed_duplex[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'400','','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB\r\nTransmission mode','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a814c27268e648f18ac9c82d5a5f78cb');
INSERT INTO `items` (`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`,`uuid`) values ('35926','20','.1.3.6.1.4.1.890.1.5.8.68.117.2.1.7.{#SNMPINDEX}','10428','ZYXEL MES3500-24: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','zyxel.3500_24.sfp.ddm[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','365d','0','0','','!{#ZYXEL.SFP.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB\r\nTransceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','096d50d830f144079fe0231bae2528e5');
INSERT INTO `items` (`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`,`uuid`) values ('35927','20','.1.3.6.1.4.1.890.1.5.8.68.117.1.1.7.{#SNMPINDEX}','10428','ZYXEL MES3500-24: SFP {#SNMPINDEX}: Date code','zyxel.3500_24.sfp.datecode[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB\r\nTransceiver module vendor\'s manufacturing date code.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f17e1f42abda43c7974afb415fa1544d');
INSERT INTO `items` (`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`,`uuid`) values ('35928','20','.1.3.6.1.4.1.890.1.5.8.68.117.1.1.4.{#SNMPINDEX}','10428','ZYXEL MES3500-24: SFP {#SNMPINDEX}: Part number','zyxel.3500_24.sfp.part[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB\r\nPart number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b8b4d20515d748ac9bc77f8223294861');
INSERT INTO `items` (`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`,`uuid`) values ('35929','20','.1.3.6.1.4.1.890.1.5.8.68.117.1.1.6.{#SNMPINDEX}','10428','ZYXEL MES3500-24: SFP {#SNMPINDEX}: Revision','zyxel.3500_24.sfp.revision[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB\r\nRevision level for part number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','380d4a1f3aa041fea4108c08d7108344');
INSERT INTO `items` (`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`,`uuid`) values ('35930','20','.1.3.6.1.4.1.890.1.5.8.68.117.1.1.5.{#SNMPINDEX}','10428','ZYXEL MES3500-24: SFP {#SNMPINDEX}: Serial number','zyxel.3500_24.sfp.serialnumber[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB\r\nSerial number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','24dc72b317284f568e962b461bbb33de');
INSERT INTO `items` (`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`,`uuid`) values ('35931','20','.1.3.6.1.4.1.890.1.5.8.68.117.1.1.2.{#SNMPINDEX}','10428','ZYXEL MES3500-24: SFP {#SNMPINDEX}: Status','zyxel.3500_24.sfp.status[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','365d','0','3','','','','',NULL,'403','','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB\r\nTransceiver module status.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b8041b750ed4734b70cce707c4782ad');
INSERT INTO `items` (`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`,`uuid`) values ('35932','20','.1.3.6.1.4.1.890.1.5.8.68.117.1.1.8.{#SNMPINDEX}','10428','ZYXEL MES3500-24: SFP {#SNMPINDEX}: Transceiver','zyxel.3500_24.sfp.transceiver[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB\r\nTransceiver module type names.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cf254d7b5d0d4525b8f871863a1ced2d');
INSERT INTO `items` (`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`,`uuid`) values ('35933','20','.1.3.6.1.4.1.890.1.5.8.68.117.1.1.3.{#SNMPINDEX}','10428','ZYXEL MES3500-24: SFP {#SNMPINDEX}: Vendor','zyxel.3500_24.sfp.vendor[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB\r\nTransceiver module vendor name.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cda45fc5cf1d44779e1a5eda3f120df2');
INSERT INTO `items` (`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`,`uuid`) values ('35934','20','.1.3.6.1.4.1.890.1.5.8.68.9.2.1.2.{#SNMPINDEX}','10428','ZYXEL MES3500-24: Temperature "{#ZYXEL.TEMP.ID}"','zyxel.3500_24.temp[{#SNMPINDEX}]','1m','7d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB\r\nThe current temperature measured at this sensor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0ab57df406f64806a6ad93660258f08c');
INSERT INTO `items` (`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`,`uuid`) values ('35935','20','.1.3.6.1.4.1.890.1.5.8.68.9.3.1.2.{#SNMPINDEX}','10428','ZYXEL MES3500-24: Nominal "{#ZYXEL.VOLT.NOMINAL}"','zyxel.3500_24.volt[{#SNMPINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB\r\nThe current voltage reading.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fc5ca0139747408aa65d960577bd4dbc');
INSERT INTO `items` (`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`,`uuid`) values ('35936','5','','10429','ZYXEL MGS-3712: SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'404','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8777bb95a4b64fd293e96b25febf3915');
INSERT INTO `items` (`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`,`uuid`) values ('35937','20','.1.3.6.1.2.1.1.4.0','10429','ZYXEL MGS-3712: Contact','zyxel.3712.contact','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe textual identification of the contact person\r\nfor this managed node, together with information\r\non how to contact this person.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b93b020818034096a973d8e171a099b2');
INSERT INTO `items` (`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`,`uuid`) values ('35938','20','.1.3.6.1.4.1.890.1.5.8.47.11.7.0','10429','ZYXEL MGS-3712: CPU utilization','zyxel.3712.cpuusage','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nShow device CPU load in %, it\'s the snapshot of CPU load when\r\ngetting the values.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4d13bad4f29f41b1890fa9e2709dd461');
INSERT INTO `items` (`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`,`uuid`) values ('35939','20','discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.47.1]','10429','ZYXEL MGS-3712: ZyNOS F/W Version','zyxel.3712.fwversion','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MGS3712F-MIB','17','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','efc31527c7af48729c1d5a229b115c55');
INSERT INTO `items` (`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`,`uuid`) values ('35940','20','.1.3.6.1.2.1.1.6.0','10429','ZYXEL MGS-3712: Location','zyxel.3712.location','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe physical location of this node (e.g.,\r\n`telephone closet, 3rd floor\').','24','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a52f578cc57448f0a43641c75be89ce9');
INSERT INTO `items` (`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`,`uuid`) values ('35941','20','.1.3.6.1.2.1.2.2.1.6.1','10429','ZYXEL MGS-3712: MAC address','zyxel.3712.mac','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB\r\nThe interface\'s address at the protocol layer\r\nimmediately `below\' the network layer in the\r\nprotocol stack. For interfaces which do not have\r\nsuch an address (e.g., a serial line), this object\r\nshould contain an octet string of zero length.','12','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','26236c6667c9411393fb45af2324e318');
INSERT INTO `items` (`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`,`uuid`) values ('35942','20','.1.3.6.1.2.1.1.1.0','10429','ZYXEL MGS-3712: Hardware model name','zyxel.3712.model','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nA textual description of the entity. This value\r\nshould include the full name and version\r\nidentification of the system\'s hardware type,\r\nsoftware operating-system, and networking\r\nsoftware. It is mandatory that this only contain\r\nprintable ASCII characters.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fc5d5cfb35a14ed597623db67433dcac');
INSERT INTO `items` (`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`,`uuid`) values ('35943','20','.1.3.6.1.2.1.1.5.0','10429','ZYXEL MGS-3712: Host name','zyxel.3712.name','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nAn administratively-assigned name for this\r\nmanaged node. By convention, this is the node\'s\r\nfully-qualified domain name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','409fb8c9b315474db7602fba18702a1d');
INSERT INTO `items` (`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`,`uuid`) values ('35944','20','.1.3.6.1.4.1.890.1.5.8.47.1.10.0','10429','ZYXEL MGS-3712: Hardware serial number','zyxel.3712.serialnumber','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nSerial number','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','91afb18daedc403a866302ef943beef7');
INSERT INTO `items` (`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`,`uuid`) values ('35945','20','.1.3.6.1.2.1.1.3.0','10429','ZYXEL MGS-3712: Uptime (network)','zyxel.3712.net.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe time (in hundredths of a second) since the\r\nnetwork management portion of the system was last\r\nre-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','692e0384fcf44ec1ac6df0d8925358e3');
INSERT INTO `items` (`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`,`uuid`) values ('35946','20','discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.47.8.1.1.5]','10429','Fan discovery','zyxel.3712.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in fanRpmTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8402d05803ff481497a5e6f95874e983');
INSERT INTO `items` (`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`,`uuid`) values ('35947','20','discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.47.22.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.47.22.1.1.5]','10429','Interface discovery','zyxel.3712.net.if.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','1568af5125ee4005abc1860e0610f7c4');
INSERT INTO `items` (`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`,`uuid`) values ('35948','20','discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.47.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.47.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.47.117.2.1.8]','10429','SFP with DDM discovery','zyxel.3712.sfp.ddm.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP DDM module discovery.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','65477e8c3f8948aea5f6101b08e307cc');
INSERT INTO `items` (`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`,`uuid`) values ('35949','20','discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.47.117.1.1.2]','10429','SFP without DDM discovery','zyxel.3712.sfp.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP module discovery.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e780a6c3b3db45d9b539bba14ca89ef9');
INSERT INTO `items` (`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`,`uuid`) values ('35950','20','discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.47.8.2.1.5]','10429','Temperature discovery','zyxel.3712.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable.\r\nIndex of temperature unit. 1:MAC, 2:CPU, 3:PHY','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6a39668b647f49f19591451cc977cc92');
INSERT INTO `items` (`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`,`uuid`) values ('35951','20','discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.47.8.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.47.8.3.1.5]','10429','Voltage discovery','zyxel.3712.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fdaa0461127c489fac83161e9d388e8f');
INSERT INTO `items` (`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`,`uuid`) values ('35952','20','.1.3.6.1.4.1.890.1.5.8.47.8.1.1.2.{#SNMPINDEX}','10429','ZYXEL MGS-3712: Fan #{#SNMPINDEX}','zyxel.3712.fan[{#SNMPINDEX}]','1m','7d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nCurrent speed in Revolutions Per Minute (RPM) on the fan.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','568dd120eb8b409dbc8c19d5869c6978');
INSERT INTO `items` (`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`,`uuid`) values ('35953','20','.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}','10429','ZYXEL MGS-3712: Port {#SNMPINDEX}: Administrative status','zyxel.3712.net.if.adminstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'407','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe desired state of the interface. The\r\ntesting(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9a97d9e95dba4ba88e08ccbd48acce07');
INSERT INTO `items` (`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`,`uuid`) values ('35954','20','.1.3.6.1.4.1.890.1.5.8.47.22.1.1.3.{#SNMPINDEX}','10429','ZYXEL MGS-3712: Port {#SNMPINDEX}: Interface description','zyxel.3712.net.if.name[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2b4c245972454f24b703d4cb29581dfc');
INSERT INTO `items` (`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`,`uuid`) values ('35955','15','','10429','ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing utilization','zyxel.3712.net.if.out.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3712.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d8b945fc71534a00ba35867d62bc8703');
INSERT INTO `items` (`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`,`uuid`) values ('35956','20','.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}','10429','ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.3712.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were not addressed to a\r\nmulticast or broadcast address at this sub-layer, including\r\nthose that were discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8580f10654ea4020ae08d2917fdb8b17');
INSERT INTO `items` (`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`,`uuid`) values ('35957','20','.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10429','ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing traffic','zyxel.3712.net.if.out.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the\r\ninterface, including framing characters. This object is a\r\n64-bit version of ifOutOctets.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2e5d50c95f4942e08f54feb989058cd0');
INSERT INTO `items` (`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`,`uuid`) values ('35958','20','.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}','10429','ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.3712.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nmulticast address at this sub-layer, including those that\r\nwere discarded or not sent. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1f6f7e4f23ee4208a5288dd6eaf0aed8');
INSERT INTO `items` (`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`,`uuid`) values ('35959','20','.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}','10429','ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.3712.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nbroadcast address at this sub-layer, including those that\r\nwere discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a28bbd54c2e54e90b7280f84e964c681');
INSERT INTO `items` (`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`,`uuid`) values ('35960','20','.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10429','ZYXEL MGS-3712: Port {#SNMPINDEX}: Operational status','zyxel.3712.net.if.operstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'408','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\nThe testing(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e12e5d4b36db44c38968652a048f1a26');
INSERT INTO `items` (`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`,`uuid`) values ('35961','20','.1.3.6.1.4.1.890.1.5.8.47.22.1.1.5.{#SNMPINDEX}','10429','ZYXEL MGS-3712: Port {#SNMPINDEX}: Link type','zyxel.3712.net.if.link_type[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'405','','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nPhysical connection type','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4a4c54e3736246e1a534afa93303b481');
INSERT INTO `items` (`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`,`uuid`) values ('35962','20','.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}','10429','ZYXEL MGS-3712: Port {#SNMPINDEX}: Interface name','zyxel.3712.net.if.descr[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f6e2db1bdfd0451a9ca896ade8df790f');
INSERT INTO `items` (`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`,`uuid`) values ('35963','15','','10429','ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming utilization','zyxel.3712.net.if.in.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3712.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ca42c0b40bf74f03b544b9d0dd678223');
INSERT INTO `items` (`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`,`uuid`) values ('35964','20','.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}','10429','ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming unicast packages','zyxel.3712.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were not addressed to a multicast\r\nor broadcast address at this sub-layer','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2555e749de034c2db2c7a800a8785695');
INSERT INTO `items` (`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`,`uuid`) values ('35965','20','.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10429','ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming traffic','zyxel.3712.net.if.in.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,\r\nincluding framing characters.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a9880181229d44e0a60f173820eb5d67');
INSERT INTO `items` (`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`,`uuid`) values ('35966','20','.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}','10429','ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming multicast packages','zyxel.3712.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a multicast\r\naddress at this sub-layer. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','83b692f16c7f40899fb802686dccffb5');
INSERT INTO `items` (`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`,`uuid`) values ('35967','20','.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}','10429','ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.3712.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a broadcast\r\naddress at this sub-layer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c48f1894ae449528d0ef9844c22dee2');
INSERT INTO `items` (`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`,`uuid`) values ('35968','20','.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10429','ZYXEL MGS-3712: Port {#SNMPINDEX}: Link speed','zyxel.3712.net.if.highspeed[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in bits per second','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ae4776dea7aa44e7a403aa8bab391a30');
INSERT INTO `items` (`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`,`uuid`) values ('35969','20','.1.3.6.1.4.1.890.1.5.8.47.22.1.1.1.{#SNMPINDEX}','10429','ZYXEL MGS-3712: Port {#SNMPINDEX}: Speed Duplex','zyxel.3712.net.if.speed_duplex[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'406','','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nTransmission mode','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b8c053a89b32400595d4a0673cfa1e81');
INSERT INTO `items` (`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`,`uuid`) values ('35970','20','.1.3.6.1.4.1.890.1.5.8.47.117.2.1.7.{#SNMPINDEX}','10429','ZYXEL MGS-3712: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','zyxel.3712.sfp.ddm[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','365d','0','0','','!{#ZYXEL.SFP.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nTransceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cd2434237f264fd0aa57a9816eb9cdb1');
INSERT INTO `items` (`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`,`uuid`) values ('35971','20','.1.3.6.1.4.1.890.1.5.8.47.117.1.1.7.{#SNMPINDEX}','10429','ZYXEL MGS-3712: SFP {#SNMPINDEX}: Date code','zyxel.3712.sfp.datecode[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nTransceiver module vendor\'s manufacturing date code.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','434d614d231d41c49810342cb3d09797');
INSERT INTO `items` (`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`,`uuid`) values ('35972','20','.1.3.6.1.4.1.890.1.5.8.47.117.1.1.4.{#SNMPINDEX}','10429','ZYXEL MGS-3712: SFP {#SNMPINDEX}: Part number','zyxel.3712.sfp.part[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nPart number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','184be2048cf64e7abf703cb16e1e128b');
INSERT INTO `items` (`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`,`uuid`) values ('35973','20','.1.3.6.1.4.1.890.1.5.8.47.117.1.1.6.{#SNMPINDEX}','10429','ZYXEL MGS-3712: SFP {#SNMPINDEX}: Revision','zyxel.3712.sfp.revision[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nRevision level for part number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','80d2606b4d644993b13f7efd001ed096');
INSERT INTO `items` (`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`,`uuid`) values ('35974','20','.1.3.6.1.4.1.890.1.5.8.47.117.1.1.5.{#SNMPINDEX}','10429','ZYXEL MGS-3712: SFP {#SNMPINDEX}: Serial number','zyxel.3712.sfp.serialnumber[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nSerial number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2d974479665844ae86511d471e190d51');
INSERT INTO `items` (`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`,`uuid`) values ('35975','20','.1.3.6.1.4.1.890.1.5.8.47.117.1.1.2.{#SNMPINDEX}','10429','ZYXEL MGS-3712: SFP {#SNMPINDEX}: Status','zyxel.3712.sfp.status[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','365d','0','3','','','','',NULL,'409','','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nTransceiver module status.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','46e11863a74f481aaea204148fe8b5b7');
INSERT INTO `items` (`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`,`uuid`) values ('35976','20','.1.3.6.1.4.1.890.1.5.8.47.117.1.1.8.{#SNMPINDEX}','10429','ZYXEL MGS-3712: SFP {#SNMPINDEX}: Transceiver','zyxel.3712.sfp.transceiver[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nTransceiver module type names.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e2e07835d3ef431ea6c5559151dee258');
INSERT INTO `items` (`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`,`uuid`) values ('35977','20','.1.3.6.1.4.1.890.1.5.8.47.117.1.1.3.{#SNMPINDEX}','10429','ZYXEL MGS-3712: SFP {#SNMPINDEX}: Vendor','zyxel.3712.sfp.vendor[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nTransceiver module vendor name.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','18f798a7ca0d4ea4a24a58c3bcdb9edd');
INSERT INTO `items` (`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`,`uuid`) values ('35978','20','.1.3.6.1.4.1.890.1.5.8.47.8.2.1.2.{#SNMPINDEX}','10429','ZYXEL MGS-3712: Temperature "{#ZYXEL.TEMP.ID}"','zyxel.3712.temp[{#SNMPINDEX}]','1m','7d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nThe current temperature measured at this sensor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e1703024fdee4c6c812e9c0204510705');
INSERT INTO `items` (`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`,`uuid`) values ('35979','20','.1.3.6.1.4.1.890.1.5.8.47.8.3.1.2.{#SNMPINDEX}','10429','ZYXEL MGS-3712: Nominal "{#ZYXEL.VOLT.NOMINAL}"','zyxel.3712.volt[{#SNMPINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nThe current voltage reading.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5ef499ecbada4691a5598d99c2a362eb');
INSERT INTO `items` (`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`,`uuid`) values ('35980','5','','10430','ZYXEL MGS-3712F: SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'410','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2bd320c5d71d471e8b68a5f30e1aa5d9');
INSERT INTO `items` (`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`,`uuid`) values ('35981','20','.1.3.6.1.2.1.1.4.0','10430','ZYXEL MGS-3712F: Contact','zyxel.3712f.contact','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe textual identification of the contact person\r\nfor this managed node, together with information\r\non how to contact this person.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','71ba1c991114432c9dca4f39b30e7872');
INSERT INTO `items` (`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`,`uuid`) values ('35982','20','.1.3.6.1.4.1.890.1.5.8.48.11.7.0','10430','ZYXEL MGS-3712F: CPU utilization','zyxel.3712f.cpuusage','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nShow device CPU load in %, it\'s the snapshot of CPU load when\r\ngetting the values.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','69432e1306ae46eab178082cb5ed7bc3');
INSERT INTO `items` (`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`,`uuid`) values ('35983','20','discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.48.1]','10430','ZYXEL MGS-3712F: ZyNOS F/W Version','zyxel.3712f.fwversion','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MGS3712F-MIB','17','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ced5f4185284f32b767036ffe41302c');
INSERT INTO `items` (`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`,`uuid`) values ('35984','20','.1.3.6.1.2.1.1.6.0','10430','ZYXEL MGS-3712F: Location','zyxel.3712f.location','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe physical location of this node (e.g.,\r\n`telephone closet, 3rd floor\').','24','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','98c18ebb978448098922d7930e2ed00b');
INSERT INTO `items` (`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`,`uuid`) values ('35985','20','.1.3.6.1.2.1.2.2.1.6.1','10430','ZYXEL MGS-3712F: MAC address','zyxel.3712f.mac','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB\r\nThe interface\'s address at the protocol layer\r\nimmediately `below\' the network layer in the\r\nprotocol stack. For interfaces which do not have\r\nsuch an address (e.g., a serial line), this object\r\nshould contain an octet string of zero length.','12','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bfd1233a36e94dfe93cd02ac95a7218e');
INSERT INTO `items` (`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`,`uuid`) values ('35986','20','.1.3.6.1.2.1.1.1.0','10430','ZYXEL MGS-3712F: Hardware model name','zyxel.3712f.model','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nA textual description of the entity. This value\r\nshould include the full name and version\r\nidentification of the system\'s hardware type,\r\nsoftware operating-system, and networking\r\nsoftware. It is mandatory that this only contain\r\nprintable ASCII characters.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e734e8fe661043ac84d55a2497a50cf5');
INSERT INTO `items` (`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`,`uuid`) values ('35987','20','.1.3.6.1.2.1.1.5.0','10430','ZYXEL MGS-3712F: Host name','zyxel.3712f.name','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nAn administratively-assigned name for this\r\nmanaged node. By convention, this is the node\'s\r\nfully-qualified domain name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','026c51d2e28943e98056a934355a0161');
INSERT INTO `items` (`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`,`uuid`) values ('35988','20','.1.3.6.1.4.1.890.1.5.8.48.1.10.0','10430','ZYXEL MGS-3712F: Hardware serial number','zyxel.3712f.serialnumber','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nSerial number','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','97eaf488887c42b89a4e6f6103ceeef6');
INSERT INTO `items` (`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`,`uuid`) values ('35989','20','.1.3.6.1.2.1.1.3.0','10430','ZYXEL MGS-3712F: Uptime (network)','zyxel.3712f.net.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe time (in hundredths of a second) since the\r\nnetwork management portion of the system was last\r\nre-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e5e21fdb6dae4dc49038f0801c87a5c6');
INSERT INTO `items` (`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`,`uuid`) values ('35990','20','discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.48.8.1.1.5]','10430','Fan discovery','zyxel.3712f.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in fanRpmTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0f15b0a5b34d4849800ea65b1f5e0916');
INSERT INTO `items` (`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`,`uuid`) values ('35991','20','discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.48.22.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.48.22.1.1.5]','10430','Interface discovery','zyxel.3712f.net.if.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','4e39a7b918fd44a1bd3986380d116e9f');
INSERT INTO `items` (`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`,`uuid`) values ('35992','20','discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.48.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.48.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.48.117.2.1.8]','10430','SFP with DDM discovery','zyxel.3712f.sfp.ddm.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP DDM module discovery.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d48eedbbb8ad448da866d11d6f40ce91');
INSERT INTO `items` (`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`,`uuid`) values ('35993','20','discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.48.117.1.1.2]','10430','SFP without DDM discovery','zyxel.3712f.sfp.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP module discovery.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b3d39eb65ab547de92862c93ca9ea2b0');
INSERT INTO `items` (`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`,`uuid`) values ('35994','20','discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.48.8.2.1.5]','10430','Temperature discovery','zyxel.3712f.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable.\r\nIndex of temperature unit. 1:MAC, 2:CPU, 3:PHY','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a6e733335bb24801bf006586185ffaff');
INSERT INTO `items` (`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`,`uuid`) values ('35995','20','discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.48.8.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.48.8.3.1.5]','10430','Voltage discovery','zyxel.3712f.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ccedd9f504346eda12af79b21362322');
INSERT INTO `items` (`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`,`uuid`) values ('35996','20','.1.3.6.1.4.1.890.1.5.8.48.8.1.1.2.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: Fan #{#SNMPINDEX}','zyxel.3712f.fan[{#SNMPINDEX}]','1m','7d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nCurrent speed in Revolutions Per Minute (RPM) on the fan.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','12073ba0a2894561bfa130aeca7c8aba');
INSERT INTO `items` (`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`,`uuid`) values ('35997','20','.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Administrative status','zyxel.3712f.net.if.adminstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'413','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe desired state of the interface. The\r\ntesting(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84b7463fd2ff40f4b854ad5331fbf0da');
INSERT INTO `items` (`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`,`uuid`) values ('35998','20','.1.3.6.1.4.1.890.1.5.8.48.22.1.1.3.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Interface description','zyxel.3712f.net.if.name[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b0dc3f51f7f544e6ac7c14d4aaf5b7a6');
INSERT INTO `items` (`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`,`uuid`) values ('35999','15','','10430','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing utilization','zyxel.3712f.net.if.out.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3712f.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ae2370776ea425095a8856ac4a51868');
INSERT INTO `items` (`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`,`uuid`) values ('36000','20','.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.3712f.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were not addressed to a\r\nmulticast or broadcast address at this sub-layer, including\r\nthose that were discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d618cdab510147dba8781669b62535d5');
INSERT INTO `items` (`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`,`uuid`) values ('36001','20','.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing traffic','zyxel.3712f.net.if.out.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the\r\ninterface, including framing characters. This object is a\r\n64-bit version of ifOutOctets.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','44c57404960045998f6b11129c5c9e74');
INSERT INTO `items` (`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`,`uuid`) values ('36002','20','.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.3712f.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nmulticast address at this sub-layer, including those that\r\nwere discarded or not sent. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9cfa5cdeb08c403ea487107303fb52c9');
INSERT INTO `items` (`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`,`uuid`) values ('36003','20','.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.3712f.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nbroadcast address at this sub-layer, including those that\r\nwere discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','759ec75f1155444187f970e3141e219b');
INSERT INTO `items` (`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`,`uuid`) values ('36004','20','.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Operational status','zyxel.3712f.net.if.operstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'414','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\nThe testing(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0c940b9948f043b5a58e59cfd1e3f585');
INSERT INTO `items` (`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`,`uuid`) values ('36005','20','.1.3.6.1.4.1.890.1.5.8.48.22.1.1.5.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Link type','zyxel.3712f.net.if.link_type[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'411','','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nPhysical connection type','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c173d9fb0e4645f8b1b5cdd70881ea0a');
INSERT INTO `items` (`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`,`uuid`) values ('36006','20','.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Interface name','zyxel.3712f.net.if.descr[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ba54ef4ceafd4445bab7f2365c6c4404');
INSERT INTO `items` (`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`,`uuid`) values ('36007','15','','10430','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming utilization','zyxel.3712f.net.if.in.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3712f.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','13f394481ad045ed8db3693be14ed2f1');
INSERT INTO `items` (`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`,`uuid`) values ('36008','20','.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming unicast packages','zyxel.3712f.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were not addressed to a multicast\r\nor broadcast address at this sub-layer','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a1b595cd244340aea0dd9343a36619b6');
INSERT INTO `items` (`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`,`uuid`) values ('36009','20','.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming traffic','zyxel.3712f.net.if.in.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,\r\nincluding framing characters.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a4a13a2309d94ea7a6f935796c1f4623');
INSERT INTO `items` (`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`,`uuid`) values ('36010','20','.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming multicast packages','zyxel.3712f.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a multicast\r\naddress at this sub-layer. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b3f54f3b51474b608ae5f4cec6990b1a');
INSERT INTO `items` (`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`,`uuid`) values ('36011','20','.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.3712f.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a broadcast\r\naddress at this sub-layer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8971f0814f9f4a90a9163b83804665f1');
INSERT INTO `items` (`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`,`uuid`) values ('36012','20','.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Link speed','zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in bits per second','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1955d72ae95a4c53922a4a209c48af45');
INSERT INTO `items` (`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`,`uuid`) values ('36013','20','.1.3.6.1.4.1.890.1.5.8.48.22.1.1.1.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Speed Duplex','zyxel.3712f.net.if.speed_duplex[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'412','','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nTransmission mode','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9dabada8160e47138c2416002346fc2d');
INSERT INTO `items` (`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`,`uuid`) values ('36014','20','.1.3.6.1.4.1.890.1.5.8.48.117.2.1.7.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','zyxel.3712f.sfp.ddm[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','365d','0','0','','!{#ZYXEL.SFP.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nTransceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d9accdfbf4e44ef28a191f6c9fd864b1');
INSERT INTO `items` (`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`,`uuid`) values ('36015','20','.1.3.6.1.4.1.890.1.5.8.48.117.1.1.7.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Date code','zyxel.3712f.sfp.datecode[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nTransceiver module vendor\'s manufacturing date code.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','430c8c876a974a0f8df8d79222bb7dcd');
INSERT INTO `items` (`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`,`uuid`) values ('36016','20','.1.3.6.1.4.1.890.1.5.8.48.117.1.1.4.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Part number','zyxel.3712f.sfp.part[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nPart number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','519c8737de814a6aabce25ea8ef52c1a');
INSERT INTO `items` (`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`,`uuid`) values ('36017','20','.1.3.6.1.4.1.890.1.5.8.48.117.1.1.6.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Revision','zyxel.3712f.sfp.revision[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nRevision level for part number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ea54a5a49aa4447ba77a28b4b110a77a');
INSERT INTO `items` (`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`,`uuid`) values ('36018','20','.1.3.6.1.4.1.890.1.5.8.48.117.1.1.5.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Serial number','zyxel.3712f.sfp.serialnumber[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nSerial number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bb97e6edd8574888b6892a0d49849406');
INSERT INTO `items` (`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`,`uuid`) values ('36019','20','.1.3.6.1.4.1.890.1.5.8.48.117.1.1.2.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Status','zyxel.3712f.sfp.status[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','365d','0','3','','','','',NULL,'415','','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nTransceiver module status.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b0a81abdecad42788715ad879c2d03fa');
INSERT INTO `items` (`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`,`uuid`) values ('36020','20','.1.3.6.1.4.1.890.1.5.8.48.117.1.1.8.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Transceiver','zyxel.3712f.sfp.transceiver[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nTransceiver module type names.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','db78a10438534c53bc0bc7ce09d784cd');
INSERT INTO `items` (`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`,`uuid`) values ('36021','20','.1.3.6.1.4.1.890.1.5.8.48.117.1.1.3.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Vendor','zyxel.3712f.sfp.vendor[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nTransceiver module vendor name.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','536d22ea7a654bf99b26eeaa8e6761f7');
INSERT INTO `items` (`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`,`uuid`) values ('36022','20','.1.3.6.1.4.1.890.1.5.8.48.8.2.1.2.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: Temperature "{#ZYXEL.TEMP.ID}"','zyxel.3712f.temp[{#SNMPINDEX}]','1m','7d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nThe current temperature measured at this sensor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','02ba756962cf4ab3b3c90817e4c5f053');
INSERT INTO `items` (`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`,`uuid`) values ('36023','20','.1.3.6.1.4.1.890.1.5.8.48.8.3.1.2.{#SNMPINDEX}','10430','ZYXEL MGS-3712F: Nominal "{#ZYXEL.VOLT.NOMINAL}"','zyxel.3712f.volt[{#SNMPINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB\r\nThe current voltage reading.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d1f0e62a6fad4d578c0d524278c7ad3d');
INSERT INTO `items` (`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`,`uuid`) values ('36024','5','','10431','ZYXEL MES3500-24S: SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'416','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4b5994ccefe5492b8ee81c88f4871efe');
INSERT INTO `items` (`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`,`uuid`) values ('36025','20','.1.3.6.1.2.1.1.4.0','10431','ZYXEL MES3500-24S: Contact','zyxel.3500_24s.contact','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe textual identification of the contact person\r\nfor this managed node, together with information\r\non how to contact this person.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa2cb34bb8a24ea883d13039175e7955');
INSERT INTO `items` (`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`,`uuid`) values ('36026','20','.1.3.6.1.4.1.890.1.15.3.2.4.0','10431','ZYXEL MES3500-24S: CPU utilization','zyxel.3500_24s.cpuusage','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-ES-COMMON\r\nShow device CPU load in %, it\'s the snapshot of CPU load when\r\ngetting the values.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6fccaef6a6f84d97b825d46b62955b76');
INSERT INTO `items` (`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`,`uuid`) values ('36027','20','.1.3.6.1.4.1.890.1.15.3.1.6.0','10431','ZYXEL MES3500-24S: ZyNOS F/W Version','zyxel.3500_24s.fwversion','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-ES-COMMON','17','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','37410c60fd224987920640313a0b229b');
INSERT INTO `items` (`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`,`uuid`) values ('36028','20','.1.3.6.1.2.1.1.6.0','10431','ZYXEL MES3500-24S: Location','zyxel.3500_24s.location','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe physical location of this node (e.g.,\r\n`telephone closet, 3rd floor\').','24','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a2ee7e4d0dbc463aa9fc997f14740d0b');
INSERT INTO `items` (`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`,`uuid`) values ('36029','20','.1.3.6.1.2.1.2.2.1.6.1','10431','ZYXEL MES3500-24S: MAC address','zyxel.3500_24s.mac','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB\r\nThe interface\'s address at the protocol layer\r\nimmediately `below\' the network layer in the\r\nprotocol stack. For interfaces which do not have\r\nsuch an address (e.g., a serial line), this object\r\nshould contain an octet string of zero length.','12','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','082f2005c90d4edebdddedd1ee946793');
INSERT INTO `items` (`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`,`uuid`) values ('36030','20','.1.3.6.1.4.1.890.1.15.3.2.5.0','10431','ZYXEL MES3500-24S: Memory utilization','zyxel.3500_24s.memusage','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-ES-COMMON\r\nShow device memory usage in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1e8654e4f9ba487f971f5dc4c1fd5c9d');
INSERT INTO `items` (`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`,`uuid`) values ('36031','20','.1.3.6.1.2.1.1.1.0','10431','ZYXEL MES3500-24S: Hardware model name','zyxel.3500_24s.model','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nA textual description of the entity. This value\r\nshould include the full name and version\r\nidentification of the system\'s hardware type,\r\nsoftware operating-system, and networking\r\nsoftware. It is mandatory that this only contain\r\nprintable ASCII characters.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a7d255bd093744ef853335e1b961bef7');
INSERT INTO `items` (`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`,`uuid`) values ('36032','20','.1.3.6.1.2.1.1.5.0','10431','ZYXEL MES3500-24S: Host name','zyxel.3500_24s.name','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nAn administratively-assigned name for this\r\nmanaged node. By convention, this is the node\'s\r\nfully-qualified domain name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9225792a06444aabb120c390c68c2a06');
INSERT INTO `items` (`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`,`uuid`) values ('36033','20','.1.3.6.1.4.1.890.1.15.3.1.12.0','10431','ZYXEL MES3500-24S: Hardware serial number','zyxel.3500_24s.serialnumber','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-ES-COMMON\r\nSerial number','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a9e8c7ae033b4f7e95aadd663f3656d9');
INSERT INTO `items` (`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`,`uuid`) values ('36034','20','.1.3.6.1.2.1.1.3.0','10431','ZYXEL ES3500-8PD: Uptime (network)','zyxel.3500_24s.net.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe time (in hundredths of a second) since the\r\nnetwork management portion of the system was last\r\nre-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b3f7ffa22b174e2c8ed8bf0deeb62b42');
INSERT INTO `items` (`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`,`uuid`) values ('36035','20','discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.15.3.26.1.1.1.6,{#ZYXEL.FAN.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.1.1.2]','10431','Fan discovery','zyxel.3500_24s.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in fanRpmTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a76d8952c6424abe926a5b9453bbc75d');
INSERT INTO `items` (`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`,`uuid`) values ('36036','20','discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.15.3.61.1.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.15.3.61.2.1.1.2]','10431','Interface discovery','zyxel.3500_24s.net.if.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','75336fa715834ade8a5434520543bf1c');
INSERT INTO `items` (`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`,`uuid`) values ('36037','20','discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.4,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.5,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.7]','10431','SFP with DDM discovery','zyxel.3500_24s.sfp.ddm.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP DDM module discovery.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f90783a6170c4802a1833ae25008b618');
INSERT INTO `items` (`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`,`uuid`) values ('36038','20','discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.15.3.84.1.1.1.1]','10431','SFP without DDM discovery','zyxel.3500_24s.sfp.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP module discovery.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','98536d7e95c145e6ba5d3a5531c570ce');
INSERT INTO `items` (`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`,`uuid`) values ('36039','20','discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.15.3.26.1.2.1.6,{#ZYXEL.TEMPDESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.2.1.2]','10431','Temperature discovery','zyxel.3500_24s.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','774dd069aeb948569d21396dd8dceea1');
INSERT INTO `items` (`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`,`uuid`) values ('36040','20','discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.15.3.26.1.3.1.7,{#ZYXEL.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.3.1.2]','10431','Voltage discovery','zyxel.3500_24s.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e8a886916c37490f9ba6b29c57d7331e');
INSERT INTO `items` (`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`,`uuid`) values ('36041','20','.1.3.6.1.4.1.890.1.15.3.26.1.1.1.3.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: {#ZYXEL.FAN.DESCRIPTION}','zyxel.3500_24s.fan[{#SNMPINDEX}]','1m','7d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-HW-MONITOR-MIB\r\nCurrent speed in Revolutions Per Minute (RPM) on the fan.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4f8bcd1fc9b54f3e94009c5a098ca4e0');
INSERT INTO `items` (`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`,`uuid`) values ('36042','20','.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Administrative status','zyxel.3500_24s.net.if.adminstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'419','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe desired state of the interface. The\r\ntesting(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','40967a08563e4f62b56d0f3983a5b76a');
INSERT INTO `items` (`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`,`uuid`) values ('36043','20','.1.3.6.1.4.1.890.1.15.3.61.1.1.1.3.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Interface description','zyxel.3500_24s.net.if.name[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-PORT-MIB\r\nDescriptive name that identifies this port.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a6debce6aa6420e8c76f50c24fb541e');
INSERT INTO `items` (`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`,`uuid`) values ('36044','15','','10431','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing utilization','zyxel.3500_24s.net.if.out.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3500_24s.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','43b466a87757484dae36abe07e946bff');
INSERT INTO `items` (`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`,`uuid`) values ('36045','20','.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.3500_24s.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were not addressed to a\r\nmulticast or broadcast address at this sub-layer, including\r\nthose that were discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8f080d3c0bd045e59d22585878bccbff');
INSERT INTO `items` (`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`,`uuid`) values ('36046','20','.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing traffic','zyxel.3500_24s.net.if.out.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the\r\ninterface, including framing characters. This object is a\r\n64-bit version of ifOutOctets.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','445163f587b24339adc9155bff798f7d');
INSERT INTO `items` (`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`,`uuid`) values ('36047','20','.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.3500_24s.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nmulticast address at this sub-layer, including those that\r\nwere discarded or not sent. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b229348293cd47b39e826f5be1285928');
INSERT INTO `items` (`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`,`uuid`) values ('36048','20','.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.3500_24s.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nbroadcast address at this sub-layer, including those that\r\nwere discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2ca954bd5d90447288da9ac4d75ec976');
INSERT INTO `items` (`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`,`uuid`) values ('36049','20','.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Operational status','zyxel.3500_24s.net.if.operstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'420','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\nThe testing(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','419b897845244642a84a1bd224ec72a6');
INSERT INTO `items` (`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`,`uuid`) values ('36050','20','.1.3.6.1.4.1.890.1.15.3.61.2.1.1.2.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Link type','zyxel.3500_24s.net.if.link_type[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'417','','','0','','','','','2',NULL,'MIB: ZYXEL-PORT-MIB\r\nThe entry shows the linkUp cable type (copper, fiber, xfp or cx4) for the combo ports.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f357ac3f816d4232a2ba6ff571d95773');
INSERT INTO `items` (`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`,`uuid`) values ('36051','20','.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Interface name','zyxel.3500_24s.net.if.descr[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d4f846a781f543539e05bc139e01a462');
INSERT INTO `items` (`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`,`uuid`) values ('36052','15','','10431','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming utilization','zyxel.3500_24s.net.if.in.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3500_24s.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','197cf5fd63d541439b282e154bcd4ef1');
INSERT INTO `items` (`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`,`uuid`) values ('36053','20','.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming unicast packages','zyxel.3500_24s.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were not addressed to a multicast\r\nor broadcast address at this sub-layer','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6e04ed7c0b154deeb1a32150aff18b26');
INSERT INTO `items` (`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`,`uuid`) values ('36054','20','.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming traffic','zyxel.3500_24s.net.if.in.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,\r\nincluding framing characters.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6b87de872fa84ec8bc9c1058716617ff');
INSERT INTO `items` (`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`,`uuid`) values ('36055','20','.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming multicast packages','zyxel.3500_24s.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a multicast\r\naddress at this sub-layer. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','18a759f3be5247b282fe7f685ae4d18b');
INSERT INTO `items` (`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`,`uuid`) values ('36056','20','.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.3500_24s.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a broadcast\r\naddress at this sub-layer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e406bba0c87a4607bc36d4be74ac5abb');
INSERT INTO `items` (`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`,`uuid`) values ('36057','20','.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Link speed','zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in bits per second','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','27ac6ebffd2e47ecb9ebbece3ef3bb68');
INSERT INTO `items` (`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`,`uuid`) values ('36058','20','.1.3.6.1.4.1.890.1.15.3.61.1.1.1.1.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Speed Duplex','zyxel.3500_24s.net.if.speed_duplex[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'418','','','0','','','','','2',NULL,'MIB: ZYXEL-PORT-MIB\r\nSelect The speed and the duplex mode of the Ethernet connection on this port. Selecting Auto\r\n(auto-negotiation) allows one port to negotiate with a peer port automatically to obtain the\r\nconnection speed and duplex mode that both ends support. When auto-negotiation is turned on,\r\na port on the Switch negotiates with the peer automatically to determine the connection speed\r\nand duplex mode. If the peer port does not support auto-negotiation or turns off this feature,\r\nthe Switch determines the connection speed by detecting the signal on the cable and using half\r\nduplex mode. Thus requiring you to make sure that the settings of the peer port are the same in\r\norder to connect.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff93002a2b5341a8a287fdc78c7e9c6d');
INSERT INTO `items` (`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`,`uuid`) values ('36059','20','.1.3.6.1.4.1.890.1.15.3.84.1.2.1.6.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','zyxel.3500_24s.sfp.ddm[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','365d','0','0','','!{#ZYXEL.SFP.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB\r\nTransceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','69d7fcbc7e3242c99737ef98efbac0a7');
INSERT INTO `items` (`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`,`uuid`) values ('36060','20','.1.3.6.1.4.1.890.1.15.3.84.1.1.1.6.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Date code','zyxel.3500_24s.sfp.datecode[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB\r\nTransceiver module vendor\'s manufacturing date code.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7232bba1aed34b5aaeb2d4ce3ad8250f');
INSERT INTO `items` (`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`,`uuid`) values ('36061','20','.1.3.6.1.4.1.890.1.15.3.84.1.1.1.3.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Part number','zyxel.3500_24s.sfp.part[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB\r\nPart number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','745310ab6da449aa8150956c076a2223');
INSERT INTO `items` (`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`,`uuid`) values ('36062','20','.1.3.6.1.4.1.890.1.15.3.84.1.1.1.5.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Revision','zyxel.3500_24s.sfp.revision[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB\r\nRevision level for part number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4565c91a0641405ba4e3d853b5db86e5');
INSERT INTO `items` (`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`,`uuid`) values ('36063','20','.1.3.6.1.4.1.890.1.15.3.84.1.1.1.4.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Serial number','zyxel.3500_24s.sfp.serialnumber[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB\r\nSerial number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b0fa1b76a33041bcab473b17b7b74eef');
INSERT INTO `items` (`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`,`uuid`) values ('36064','20','.1.3.6.1.4.1.890.1.15.3.84.1.1.1.1.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Status','zyxel.3500_24s.sfp.status[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','365d','0','3','','','','',NULL,'421','','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB\r\nTransceiver module type.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','80aa0e87f7b24dfe9b525be735aa1ec3');
INSERT INTO `items` (`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`,`uuid`) values ('36065','20','.1.3.6.1.4.1.890.1.15.3.84.1.1.1.7.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Transceiver','zyxel.3500_24s.sfp.transceiver[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB\r\nTransceiver module type names.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5175fe53ba2d4bb6a3ad1aa673b67777');
INSERT INTO `items` (`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`,`uuid`) values ('36066','20','.1.3.6.1.4.1.890.1.15.3.84.1.1.1.2.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Vendor','zyxel.3500_24s.sfp.vendor[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB\r\nTransceiver module vendor name.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','17c99b32a9674426807fdf5d469b324a');
INSERT INTO `items` (`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`,`uuid`) values ('36067','20','.1.3.6.1.4.1.890.1.15.3.26.1.2.1.3.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: Temperature "{#ZYXEL.TEMPDESCRIPTION}"','zyxel.3500_24s.temp[{#SNMPINDEX}]','1m','7d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-HW-MONITOR-MIB\r\nThe current temperature measured at this sensor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','64975a8449d7457c84715f27eb5018fc');
INSERT INTO `items` (`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`,`uuid`) values ('36068','20','.1.3.6.1.4.1.890.1.15.3.26.1.3.1.3.{#SNMPINDEX}','10431','ZYXEL MES3500-24S: Nominal "{#ZYXEL.DESCRIPTION}"','zyxel.3500_24s.volt[{#SNMPINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-HW-MONITOR-MIB\r\nThe current voltage reading.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6134a567c193489aa1ca32d03c0c2c42');
INSERT INTO `items` (`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`,`uuid`) values ('36069','5','','10432','ZYXEL MGS3520-28x: SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'422','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dd305c07637b49c985aef490fb237359');
INSERT INTO `items` (`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`,`uuid`) values ('36070','20','.1.3.6.1.2.1.1.4.0','10432','ZYXEL MGS3520-28x: Contact','zyxel.3520_28.contact','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe textual identification of the contact person\r\nfor this managed node, together with information\r\non how to contact this person.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','be1d951beb564638a6102fe4b35fede0');
INSERT INTO `items` (`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`,`uuid`) values ('36071','20','.1.3.6.1.4.1.890.1.15.3.2.4.0','10432','ZYXEL MGS3520-28x: CPU utilization','zyxel.3520_28.cpuusage','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-ES-COMMON\r\nShow device CPU load in %, it\'s the snapshot of CPU load when\r\ngetting the values.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','abdb31aeb0034998b91ab8f9b475409f');
INSERT INTO `items` (`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`,`uuid`) values ('36072','20','.1.3.6.1.4.1.890.1.15.3.1.6.0','10432','ZYXEL MGS3520-28x: ZyNOS F/W Version','zyxel.3520_28.fwversion','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-ES-COMMON','17','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dd0ab3fa502b43969eec05ffd687450e');
INSERT INTO `items` (`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`,`uuid`) values ('36073','20','.1.3.6.1.2.1.1.6.0','10432','ZYXEL MGS3520-28x: Location','zyxel.3520_28.location','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe physical location of this node (e.g.,\r\n`telephone closet, 3rd floor\').','24','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d9923ed59ef14cbebfe2f6d24c0d8414');
INSERT INTO `items` (`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`,`uuid`) values ('36074','20','.1.3.6.1.2.1.2.2.1.6.1','10432','ZYXEL MGS3520-28x: MAC address','zyxel.3520_28.mac','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB\r\nThe interface\'s address at the protocol layer\r\nimmediately `below\' the network layer in the\r\nprotocol stack. For interfaces which do not have\r\nsuch an address (e.g., a serial line), this object\r\nshould contain an octet string of zero length.','12','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','65116a646d734290926de9444a58ff2d');
INSERT INTO `items` (`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`,`uuid`) values ('36075','20','.1.3.6.1.4.1.890.1.15.3.2.5.0','10432','ZYXEL MGS3520-28x: Memory utilization','zyxel.3520_28.memusage','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-ES-COMMON\r\nShow device memory usage in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','89d6942524f84e6d80d02a80be25ce57');
INSERT INTO `items` (`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`,`uuid`) values ('36076','20','.1.3.6.1.2.1.1.1.0','10432','ZYXEL MGS3520-28x: Hardware model name','zyxel.3520_28.model','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nA textual description of the entity. This value\r\nshould include the full name and version\r\nidentification of the system\'s hardware type,\r\nsoftware operating-system, and networking\r\nsoftware. It is mandatory that this only contain\r\nprintable ASCII characters.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2dced10921704f8a9ccaabb2f951af15');
INSERT INTO `items` (`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`,`uuid`) values ('36077','20','.1.3.6.1.2.1.1.5.0','10432','ZYXEL MGS3520-28x: Host name','zyxel.3520_28.name','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nAn administratively-assigned name for this\r\nmanaged node. By convention, this is the node\'s\r\nfully-qualified domain name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bccc98beb7ea45d6a7463de339e8877e');
INSERT INTO `items` (`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`,`uuid`) values ('36078','20','.1.3.6.1.4.1.890.1.15.3.1.12.0','10432','ZYXEL MGS3520-28x: Hardware serial number','zyxel.3520_28.serialnumber','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-ES-COMMON\r\nSerial number','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','095d82b3c92340debb324844a6c7f8a8');
INSERT INTO `items` (`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`,`uuid`) values ('36079','20','.1.3.6.1.2.1.1.3.0','10432','ZYXEL MGS3520-28x: Uptime (network)','zyxel.3520_28.net.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe time (in hundredths of a second) since the\r\nnetwork management portion of the system was last\r\nre-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','78959009721a453c8b8a2c49eb26c90c');
INSERT INTO `items` (`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`,`uuid`) values ('36080','20','discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.15.3.26.1.1.1.6,{#ZYXEL.FAN.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.1.1.2]','10432','Fan discovery','zyxel.3520_28.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in fanRpmTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e56b6958ca184f549d86502ad9aa10bc');
INSERT INTO `items` (`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`,`uuid`) values ('36081','20','discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.15.3.61.1.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.15.3.61.2.1.1.2]','10432','Interface discovery','zyxel.3520_28.net.if.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','800ea9596e6f4fa0b59966f9e9e7cf74');
INSERT INTO `items` (`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`,`uuid`) values ('36082','20','discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.4,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.5,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.7]','10432','SFP with DDM discovery','zyxel.3520_28.sfp.ddm.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP DDM module discovery.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c313274b317c42cab5b7dd3c88d0c14b');
INSERT INTO `items` (`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`,`uuid`) values ('36083','20','discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.15.3.84.1.1.1.1]','10432','SFP without DDM discovery','zyxel.3520_28.sfp.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP module discovery.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f7ab574d01c848f3a46eed870c5099a4');
INSERT INTO `items` (`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`,`uuid`) values ('36084','20','discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.15.3.26.1.2.1.6,{#ZYXEL.TEMPDESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.2.1.2]','10432','Temperature discovery','zyxel.3520_28.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0fa2bd401cc14847a8fd366b895a6a51');
INSERT INTO `items` (`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`,`uuid`) values ('36085','20','discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.15.3.26.1.3.1.7,{#ZYXEL.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.3.1.2]','10432','Voltage discovery','zyxel.3520_28.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b390ed15aca64c49b654734ef35a9d60');
INSERT INTO `items` (`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`,`uuid`) values ('36086','20','.1.3.6.1.4.1.890.1.15.3.26.1.1.1.3.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: {#ZYXEL.FAN.DESCRIPTION}','zyxel.3520_28.fan[{#SNMPINDEX}]','1m','7d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-HW-MONITOR-MIB\r\nCurrent speed in Revolutions Per Minute (RPM) on the fan.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dd26e2542d174248af94102230e3b590');
INSERT INTO `items` (`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`,`uuid`) values ('36087','20','.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Administrative status','zyxel.3520_28.net.if.adminstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'425','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe desired state of the interface. The\r\ntesting(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','43cf7ba65c39475b9614ed4b95e9b398');
INSERT INTO `items` (`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`,`uuid`) values ('36088','20','.1.3.6.1.4.1.890.1.15.3.61.1.1.1.3.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Interface description','zyxel.3520_28.net.if.name[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-PORT-MIB\r\nDescriptive name that identifies this port.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f42c5604726d4d21a840418e5668287c');
INSERT INTO `items` (`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`,`uuid`) values ('36089','15','','10432','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing utilization','zyxel.3520_28.net.if.out.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3520_28.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e2b22f4c39974628a4476120b310a6fb');
INSERT INTO `items` (`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`,`uuid`) values ('36090','20','.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.3520_28.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were not addressed to a\r\nmulticast or broadcast address at this sub-layer, including\r\nthose that were discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','768be526caa345b2b23996016a19e217');
INSERT INTO `items` (`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`,`uuid`) values ('36091','20','.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing traffic','zyxel.3520_28.net.if.out.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the\r\ninterface, including framing characters. This object is a\r\n64-bit version of ifOutOctets.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9a7eb0b7569d4111a33d84d03b5018e4');
INSERT INTO `items` (`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`,`uuid`) values ('36092','20','.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.3520_28.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nmulticast address at this sub-layer, including those that\r\nwere discarded or not sent. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4227a6eb8cce4dd8ab582ffce2788e6e');
INSERT INTO `items` (`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`,`uuid`) values ('36093','20','.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.3520_28.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nbroadcast address at this sub-layer, including those that\r\nwere discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','26f87786719c4192949536c74c146b4d');
INSERT INTO `items` (`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`,`uuid`) values ('36094','20','.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Operational status','zyxel.3520_28.net.if.operstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'426','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\nThe testing(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cfd32eee855647b79c95d6f151f13407');
INSERT INTO `items` (`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`,`uuid`) values ('36095','20','.1.3.6.1.4.1.890.1.15.3.61.2.1.1.2.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Link type','zyxel.3520_28.net.if.link_type[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'423','','','0','','','','','2',NULL,'MIB: ZYXEL-PORT-MIB\r\nThe entry shows the linkUp cable type (copper, fiber, xfp or cx4) for the combo ports.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','15a2c17e0bba4f0d824790c3caa9840f');
INSERT INTO `items` (`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`,`uuid`) values ('36096','20','.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Interface name','zyxel.3520_28.net.if.descr[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','de6bab43bf544489976261919ae52e98');
INSERT INTO `items` (`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`,`uuid`) values ('36097','15','','10432','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming utilization','zyxel.3520_28.net.if.in.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3520_28.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8e060cde0fae44d792080fbc7da5a2a1');
INSERT INTO `items` (`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`,`uuid`) values ('36098','20','.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming unicast packages','zyxel.3520_28.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were not addressed to a multicast\r\nor broadcast address at this sub-layer','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','003eb52b5fe44f509b3c04eef9cc2aa7');
INSERT INTO `items` (`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`,`uuid`) values ('36099','20','.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming traffic','zyxel.3520_28.net.if.in.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,\r\nincluding framing characters.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e8c2a3a8ba654311bc90901502983b7a');
INSERT INTO `items` (`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`,`uuid`) values ('36100','20','.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming multicast packages','zyxel.3520_28.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a multicast\r\naddress at this sub-layer. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ddcef9809ee34de5bec1acbdc8abc162');
INSERT INTO `items` (`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`,`uuid`) values ('36101','20','.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.3520_28.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a broadcast\r\naddress at this sub-layer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','68b987f900c0467ea77a8c8eb661f6d0');
INSERT INTO `items` (`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`,`uuid`) values ('36102','20','.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Link speed','zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in bits per second','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','01f3cc6551bb4703b199e6c996ad48ce');
INSERT INTO `items` (`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`,`uuid`) values ('36103','20','.1.3.6.1.4.1.890.1.15.3.61.1.1.1.1.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Speed Duplex','zyxel.3520_28.net.if.speed_duplex[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'424','','','0','','','','','2',NULL,'MIB: ZYXEL-PORT-MIB\r\nSelect The speed and the duplex mode of the Ethernet connection on this port. Selecting Auto\r\n(auto-negotiation) allows one port to negotiate with a peer port automatically to obtain the\r\nconnection speed and duplex mode that both ends support. When auto-negotiation is turned on,\r\na port on the Switch negotiates with the peer automatically to determine the connection speed\r\nand duplex mode. If the peer port does not support auto-negotiation or turns off this feature,\r\nthe Switch determines the connection speed by detecting the signal on the cable and using half\r\nduplex mode. Thus requiring you to make sure that the settings of the peer port are the same in\r\norder to connect.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','285f30d057f8438ab0d94367bcd6bdfc');
INSERT INTO `items` (`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`,`uuid`) values ('36104','20','.1.3.6.1.4.1.890.1.15.3.84.1.2.1.6.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','zyxel.3520_28.sfp.ddm[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','365d','0','0','','!{#ZYXEL.SFP.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB\r\nTransceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f3f9077d771544bfa666f58b6ae59e9c');
INSERT INTO `items` (`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`,`uuid`) values ('36105','20','.1.3.6.1.4.1.890.1.15.3.84.1.1.1.6.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Date code','zyxel.3520_28.sfp.datecode[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB\r\nTransceiver module vendor\'s manufacturing date code.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da89b981488d4a71b1a4c70032669ddc');
INSERT INTO `items` (`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`,`uuid`) values ('36106','20','.1.3.6.1.4.1.890.1.15.3.84.1.1.1.3.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Part number','zyxel.3520_28.sfp.part[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB\r\nPart number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','743a5eaf2c1049d4bf517c7e6f1f350d');
INSERT INTO `items` (`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`,`uuid`) values ('36107','20','.1.3.6.1.4.1.890.1.15.3.84.1.1.1.5.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Revision','zyxel.3520_28.sfp.revision[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB\r\nRevision level for part number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e40f07be73ca4e15acc109f8565f491b');
INSERT INTO `items` (`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`,`uuid`) values ('36108','20','.1.3.6.1.4.1.890.1.15.3.84.1.1.1.4.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Serial number','zyxel.3520_28.sfp.serialnumber[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB\r\nSerial number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','42db7a2affe54f059015adeae188efea');
INSERT INTO `items` (`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`,`uuid`) values ('36109','20','.1.3.6.1.4.1.890.1.15.3.84.1.1.1.1.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Status','zyxel.3520_28.sfp.status[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','365d','0','3','','','','',NULL,'427','','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB\r\nTransceiver module type.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ff52d1298f74fa0a211c80373c25f9b');
INSERT INTO `items` (`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`,`uuid`) values ('36110','20','.1.3.6.1.4.1.890.1.15.3.84.1.1.1.7.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Transceiver','zyxel.3520_28.sfp.transceiver[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB\r\nTransceiver module type names.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b11f1d31e3a04b39b6e9ec40a800a7d5');
INSERT INTO `items` (`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`,`uuid`) values ('36111','20','.1.3.6.1.4.1.890.1.15.3.84.1.1.1.2.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Vendor','zyxel.3520_28.sfp.vendor[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB\r\nTransceiver module vendor name.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2656c166a30d4ee19465c8e9b2986a10');
INSERT INTO `items` (`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`,`uuid`) values ('36112','20','.1.3.6.1.4.1.890.1.15.3.26.1.2.1.3.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: Temperature "{#ZYXEL.TEMPDESCRIPTION}"','zyxel.3520_28.temp[{#SNMPINDEX}]','1m','7d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-HW-MONITOR-MIB\r\nThe current temperature measured at this sensor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bbdae35cdac341ce8f092b693ced4210');
INSERT INTO `items` (`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`,`uuid`) values ('36113','20','.1.3.6.1.4.1.890.1.15.3.26.1.3.1.3.{#SNMPINDEX}','10432','ZYXEL MGS3520-28x: Nominal "{#ZYXEL.DESCRIPTION}"','zyxel.3520_28.volt[{#SNMPINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-HW-MONITOR-MIB\r\nThe current voltage reading.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2b00ed37531f4dfc81aa2669cf227854');
INSERT INTO `items` (`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`,`uuid`) values ('36114','5','','10433','ZYXEL XGS-4728F: SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'428','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8b2b855bc92447dda391d251db268dc9');
INSERT INTO `items` (`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`,`uuid`) values ('36115','20','.1.3.6.1.2.1.1.4.0','10433','ZYXEL XGS-4728F: Contact','zyxel.4728f.contact','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe textual identification of the contact person\r\nfor this managed node, together with information\r\non how to contact this person.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','23ae05ce4d5c4022a716ed9e8e701ae9');
INSERT INTO `items` (`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`,`uuid`) values ('36116','20','.1.3.6.1.4.1.890.1.5.8.46.12.7.0','10433','ZYXEL XGS-4728F: CPU utilization','zyxel.4728f.cpuusage','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-XGS4728F-MIB\r\nShow device CPU load in %, it\'s the snapshot of CPU load when\r\ngetting the values.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1cccb7e7616944aa8747508e96f54968');
INSERT INTO `items` (`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`,`uuid`) values ('36117','20','discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.46.1]','10433','ZYXEL XGS-4728F: ZyNOS F/W Version','zyxel.4728f.fwversion','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-XGS4728F-MIB','17','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','222a051f0b84433faa6f29237b6d1552');
INSERT INTO `items` (`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`,`uuid`) values ('36118','20','.1.3.6.1.2.1.1.6.0','10433','ZYXEL XGS-4728F: Location','zyxel.4728f.location','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe physical location of this node (e.g.,\r\n`telephone closet, 3rd floor\').','24','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc5065f635bc486cb90898f842fa8a61');
INSERT INTO `items` (`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`,`uuid`) values ('36119','20','.1.3.6.1.2.1.2.2.1.6.1','10433','ZYXEL XGS-4728F: MAC address','zyxel.4728f.mac','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB\r\nThe interface\'s address at the protocol layer\r\nimmediately `below\' the network layer in the\r\nprotocol stack. For interfaces which do not have\r\nsuch an address (e.g., a serial line), this object\r\nshould contain an octet string of zero length.','12','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9a646e8e82c844c08754c7e72e161712');
INSERT INTO `items` (`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`,`uuid`) values ('36120','20','.1.3.6.1.2.1.1.1.0','10433','ZYXEL XGS-4728F: Hardware model name','zyxel.4728f.model','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nA textual description of the entity. This value\r\nshould include the full name and version\r\nidentification of the system\'s hardware type,\r\nsoftware operating-system, and networking\r\nsoftware. It is mandatory that this only contain\r\nprintable ASCII characters.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a152c262c465441da0f1924bc7614a23');
INSERT INTO `items` (`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`,`uuid`) values ('36121','20','.1.3.6.1.2.1.1.5.0','10433','ZYXEL XGS-4728F: Host name','zyxel.4728f.name','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nAn administratively-assigned name for this\r\nmanaged node. By convention, this is the node\'s\r\nfully-qualified domain name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','49e365a43809409f8d4636f88e4d64a9');
INSERT INTO `items` (`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`,`uuid`) values ('36122','20','.1.3.6.1.4.1.890.1.5.8.46.1.10.0','10433','ZYXEL XGS-4728F: Hardware serial number','zyxel.4728f.serialnumber','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-XGS4728F-MIB\r\nSerial number','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','79c80ac11d854edea93a598c4b28ffc0');
INSERT INTO `items` (`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`,`uuid`) values ('36123','20','.1.3.6.1.2.1.1.3.0','10433','ZYXEL XGS-4728F: Uptime (network)','zyxel.4728f.net.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB\r\nThe time (in hundredths of a second) since the\r\nnetwork management portion of the system was last\r\nre-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b3302cbfbae64d55a638240ffb368b9c');
INSERT INTO `items` (`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`,`uuid`) values ('36124','20','discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.46.9.1.1.5]','10433','Fan discovery','zyxel.4728f.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in fanRpmTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bc0d797343b240bdbd5765dc2e7821fd');
INSERT INTO `items` (`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`,`uuid`) values ('36125','20','discovery[{#ZYXEL.MEMORY.NAME},.1.3.6.1.4.1.890.1.5.8.46.124.1.1.2]','10433','Memory pool discovery','zyxel.4728f.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','06f0e151e2a146028f80e60031d49b48');
INSERT INTO `items` (`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`,`uuid`) values ('36126','20','discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.46.23.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.46.23.1.1.5]','10433','Interface discovery','zyxel.4728f.net.if.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','75a0f2676e134b6e8ab9e8c11ac17d57');
INSERT INTO `items` (`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`,`uuid`) values ('36127','20','discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.46.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.46.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.46.117.2.1.8]','10433','SFP with DDM discovery','zyxel.4728f.sfp.ddm.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP DDM module discovery.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6e0b5b991865448780e042d98168d72c');
INSERT INTO `items` (`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`,`uuid`) values ('36128','20','discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.46.117.1.1.2]','10433','SFP without DDM discovery','zyxel.4728f.sfp.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP module discovery.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f8112c4b07ed4bb1b918f58dbb9ec294');
INSERT INTO `items` (`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`,`uuid`) values ('36129','20','discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.46.9.2.1.5]','10433','Temperature discovery','zyxel.4728f.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable.\r\nIndex of temperature unit. 1:MAC, 2:CPU, 3:PHY','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fa0881c21d834db1b421ae727254bff9');
INSERT INTO `items` (`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`,`uuid`) values ('36130','20','discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.46.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.46.9.3.1.5]','10433','Voltage discovery','zyxel.4728f.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1fa3870c99d6408dbf78c7f2ad87341d');
INSERT INTO `items` (`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`,`uuid`) values ('36131','20','.1.3.6.1.4.1.890.1.5.8.46.9.1.1.2.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: Fan #{#SNMPINDEX}','zyxel.4728f.fan[{#SNMPINDEX}]','1m','7d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB\r\nCurrent speed in Revolutions Per Minute (RPM) on the fan.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6ac1481e18bd419d884a556306e57f18');
INSERT INTO `items` (`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`,`uuid`) values ('36132','20','.1.3.6.1.4.1.890.1.5.8.46.124.1.1.5.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: Memory "{#ZYXEL.MEMORY.NAME}" utilization','zyxel.4728f.memory[{#SNMPINDEX}]','1m','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB\r\nUtilization of memory pool in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ead18ee81f074ab68e4104345e5b4b2b');
INSERT INTO `items` (`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`,`uuid`) values ('36133','20','.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Administrative status','zyxel.4728f.net.if.adminstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'431','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe desired state of the interface. The\r\ntesting(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','36f7fdbfa4164677ad91351be394f050');
INSERT INTO `items` (`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`,`uuid`) values ('36134','20','.1.3.6.1.4.1.890.1.5.8.46.23.1.1.3.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Interface description','zyxel.4728f.net.if.name[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8877747043f94216b92ef7f097925d8e');
INSERT INTO `items` (`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`,`uuid`) values ('36135','15','','10433','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing utilization','zyxel.4728f.net.if.out.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.4728f.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7941df5f5b884b33bcda9951e4b0158d');
INSERT INTO `items` (`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`,`uuid`) values ('36136','20','.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.4728f.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were not addressed to a\r\nmulticast or broadcast address at this sub-layer, including\r\nthose that were discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ba1b314aacd0449fa0c9730fdb8ee3f9');
INSERT INTO `items` (`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`,`uuid`) values ('36137','20','.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing traffic','zyxel.4728f.net.if.out.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the\r\ninterface, including framing characters. This object is a\r\n64-bit version of ifOutOctets.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4afef8d3601646f1bfc81090b090c11c');
INSERT INTO `items` (`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`,`uuid`) values ('36138','20','.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.4728f.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nmulticast address at this sub-layer, including those that\r\nwere discarded or not sent. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','67b776b7f51e4b24bad3b616979d7f98');
INSERT INTO `items` (`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`,`uuid`) values ('36139','20','.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.4728f.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nbroadcast address at this sub-layer, including those that\r\nwere discarded or not sent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad7378144b254962aad0a73fb151e097');
INSERT INTO `items` (`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`,`uuid`) values ('36140','20','.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Operational status','zyxel.4728f.net.if.operstatus[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'432','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\nThe testing(3) state indicates that no operational\r\npackets can be passed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b091be1b0a8f415b82d73b3537cf6187');
INSERT INTO `items` (`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`,`uuid`) values ('36141','20','.1.3.6.1.4.1.890.1.5.8.46.23.1.1.5.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Link type','zyxel.4728f.net.if.link_type[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'429','','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB\r\nPhysical connection type','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','db488317d10e43eea21ecaa74d7a58dc');
INSERT INTO `items` (`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`,`uuid`) values ('36142','20','.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Interface name','zyxel.4728f.net.if.descr[{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the interface','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dbc94a6eabd64eefbe97f57f8831e834');
INSERT INTO `items` (`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`,`uuid`) values ('36143','15','','10433','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming utilization','zyxel.4728f.net.if.in.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.4728f.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','72f7ee1e5099452aa4804d988adfb7a5');
INSERT INTO `items` (`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`,`uuid`) values ('36144','20','.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming unicast packages','zyxel.4728f.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were not addressed to a multicast\r\nor broadcast address at this sub-layer','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c2a8e3985ed1414789b1bfe226de6d37');
INSERT INTO `items` (`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`,`uuid`) values ('36145','20','.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming traffic','zyxel.4728f.net.if.in.traffic[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,\r\nincluding framing characters.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','075b04bdaff54a2cafc1b177e59df3be');
INSERT INTO `items` (`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`,`uuid`) values ('36146','20','.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming multicast packages','zyxel.4728f.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a multicast\r\naddress at this sub-layer. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','de7b202e7240422dbdbc40e78689e6fe');
INSERT INTO `items` (`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`,`uuid`) values ('36147','20','.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.4728f.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','7d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a broadcast\r\naddress at this sub-layer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0105dea3226d46f8868aa07aa3f416a2');
INSERT INTO `items` (`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`,`uuid`) values ('36148','20','.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Link speed','zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in bits per second','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','840096d5a418425c851ea7d236b7e34e');
INSERT INTO `items` (`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`,`uuid`) values ('36149','20','.1.3.6.1.4.1.890.1.5.8.46.23.1.1.1.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Speed Duplex','zyxel.4728f.net.if.speed_duplex[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'430','','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB\r\nTransmission mode','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f56f1c0cf5d34435895ea489eb71b84a');
INSERT INTO `items` (`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`,`uuid`) values ('36150','20','.1.3.6.1.4.1.890.1.5.8.46.117.2.1.7.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','zyxel.4728f.sfp.ddm[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','365d','0','0','','!{#ZYXEL.SFP.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB\r\nTransceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0071554e36064f7ea40d680a0c310b27');
INSERT INTO `items` (`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`,`uuid`) values ('36151','20','.1.3.6.1.4.1.890.1.5.8.46.117.1.1.7.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Date code','zyxel.4728f.sfp.datecode[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB\r\nTransceiver module vendor\'s manufacturing date code.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','59c000d4324d4e8ca07203843bbea7b5');
INSERT INTO `items` (`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`,`uuid`) values ('36152','20','.1.3.6.1.4.1.890.1.5.8.46.117.1.1.4.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Part number','zyxel.4728f.sfp.part[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB\r\nPart number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c585762763604f83a9d14b7df21188ee');
INSERT INTO `items` (`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`,`uuid`) values ('36153','20','.1.3.6.1.4.1.890.1.5.8.46.117.1.1.6.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Revision','zyxel.4728f.sfp.revision[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB\r\nRevision level for part number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','33395170c38043828cedbfbedea959cc');
INSERT INTO `items` (`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`,`uuid`) values ('36154','20','.1.3.6.1.4.1.890.1.5.8.46.117.1.1.5.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Serial number','zyxel.4728f.sfp.serialnumber[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB\r\nSerial number provided by transceiver module vendor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','175f4200563549a0ae1ebaed18eeb636');
INSERT INTO `items` (`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`,`uuid`) values ('36155','20','.1.3.6.1.4.1.890.1.5.8.46.117.1.1.2.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Status','zyxel.4728f.sfp.status[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','365d','0','3','','','','',NULL,'433','','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB\r\nTransceiver module status.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5d3d0c6135924b2088b2f97d30a743cb');
INSERT INTO `items` (`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`,`uuid`) values ('36156','20','.1.3.6.1.4.1.890.1.5.8.46.117.1.1.8.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Transceiver','zyxel.4728f.sfp.transceiver[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB\r\nTransceiver module type names.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b16f7fe769a74ea99aafaa60a97d286c');
INSERT INTO `items` (`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`,`uuid`) values ('36157','20','.1.3.6.1.4.1.890.1.5.8.46.117.1.1.3.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Vendor','zyxel.4728f.sfp.vendor[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB\r\nTransceiver module vendor name.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5abb9b467e934873808b4b49bdd74f5f');
INSERT INTO `items` (`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`,`uuid`) values ('36158','20','.1.3.6.1.4.1.890.1.5.8.46.9.2.1.2.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: Temperature "{#ZYXEL.TEMP.ID}"','zyxel.4728f.temp[{#SNMPINDEX}]','1m','7d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB\r\nThe current temperature measured at this sensor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','db030cd64cdc471cb5298ceb9973155a');
INSERT INTO `items` (`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`,`uuid`) values ('36159','20','.1.3.6.1.4.1.890.1.5.8.46.9.3.1.2.{#SNMPINDEX}','10433','ZYXEL XGS-4728F: Nominal "{#ZYXEL.VOLT.NOMINAL}"','zyxel.4728f.volt[{#SNMPINDEX}]','1m','7d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB\r\nThe current voltage reading.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2999674cc176471887c1878b881b8422');
INSERT INTO `items` (`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`,`uuid`) values ('36160','20','1.3.6.1.2.1.1.4.0','10434','System contact details','cisco.ucs.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed\r\nnode, together with information on how to contact this person. If no contact\r\ninformation is known, the value is the zero-length string.','23','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad342e11ce9f4f79bf9b0182c3f83488');
INSERT INTO `items` (`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`,`uuid`) values ('36161','20','1.3.6.1.2.1.1.1.0','10434','System description','cisco.ucs.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','286fdb0fa49a4b378a6219a5ed76aac4');
INSERT INTO `items` (`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`,`uuid`) values ('36162','20','1.3.6.1.2.1.1.6.0','10434','System location','cisco.ucs.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet,\r\n3rd 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','88bd32f8520144858a8ddb03dd200638');
INSERT INTO `items` (`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`,`uuid`) values ('36163','20','1.3.6.1.2.1.1.5.0','10434','System name','cisco.ucs.name[sysName.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By\r\nconvention, this is the node\'s fully-qualified domain name. If the name is unknown,\r\nthe value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8bd3a60e4c70450492432c6abfa7b5f9');
INSERT INTO `items` (`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`,`uuid`) values ('36164','20','1.3.6.1.2.1.1.2.0','10434','System object ID','cisco.ucs.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management\r\nsubsystem contained in the entity. This value is allocated within the SMI enterprises\r\nsubtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining \'what\r\nkind of box\' is being managed. For example, if vendor \'Flintstones, Inc.\' was\r\nassigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1\r\nto its \'Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','10d22e53318347658b2418ff33c26e0d');
INSERT INTO `items` (`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`,`uuid`) values ('36165','20','1.3.6.1.2.1.1.3.0','10434','Uptime (network)','cisco.ucs.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time in seconds since the network management\r\nportion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b87e425f1bdf404a8e53ff277c0ff0c0');
INSERT INTO `items` (`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`,`uuid`) values ('36166','17','','10434','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','5d839f68b6534dc8bd1fb5db7a757f02');
INSERT INTO `items` (`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`,`uuid`) values ('36167','5','','10434','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'442','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0926417e279a4e52a7f12587e9422e92');
INSERT INTO `items` (`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`,`uuid`) values ('36168','20','discovery[{#DISKARRAY_CACHE_LOCATION},1.3.6.1.4.1.9.9.719.1.45.11.1.2]','10434','Array controller cache discovery','cisco.ucs.array.cache.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f44bb3e5a8ad4d0c98df56267700b171');
INSERT INTO `items` (`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`,`uuid`) values ('36169','20','discovery[{#DISKARRAY_LOCATION},1.3.6.1.4.1.9.9.719.1.45.1.1.2]','10434','Array controller discovery','cisco.ucs.array.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd1cf5ecd41f4dc49c6e31f32119787b');
INSERT INTO `items` (`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`,`uuid`) values ('36170','20','discovery[{#FAN_LOCATION},1.3.6.1.4.1.9.9.719.1.15.12.1.2]','10434','FAN discovery','cisco.ucs.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c799941bb99a4ce0af2ab50253c40259');
INSERT INTO `items` (`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`,`uuid`) values ('36171','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10434','Network interface discovery','cisco.ucs.net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','20b43c2620114a9da4ff4d97b409f53e');
INSERT INTO `items` (`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`,`uuid`) values ('36172','20','discovery[{#DISK_LOCATION},1.3.6.1.4.1.9.9.719.1.45.4.1.2]','10434','Physical disk discovery','cisco.ucs.physicalDisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of physical drive entries CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageLocalDiskTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a8794333ae2c4104ac52c6ce421161fd');
INSERT INTO `items` (`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`,`uuid`) values ('36173','20','discovery[{#PSU_LOCATION},1.3.6.1.4.1.9.9.719.1.15.56.1.2]','10434','PSU discovery','cisco.ucs.psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ac363db6f2346bba13b63f75cdabd22');
INSERT INTO `items` (`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`,`uuid`) values ('36174','20','discovery[{#SENSOR_LOCATION},1.3.6.1.4.1.9.9.719.1.41.2.1.2]','10434','Temperature CPU discovery','cisco.ucs.temp.cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','90b24337c3304ff6a30428c7d46c26fd');
INSERT INTO `items` (`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`,`uuid`) values ('36175','20','discovery[{#SENSOR_LOCATION},1.3.6.1.4.1.9.9.719.1.9.44.1.2]','10434','Temperature discovery','cisco.ucs.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b99a5c977c32418ea9efded6d507e3b5');
INSERT INTO `items` (`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`,`uuid`) values ('36176','20','discovery[{#UNIT_LOCATION},1.3.6.1.4.1.9.9.719.1.9.35.1.2]','10434','Unit discovery','cisco.ucs.unit.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9c5d5ce2f672487db83cf91f22c1a413');
INSERT INTO `items` (`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`,`uuid`) values ('36177','20','discovery[{#VDISK_LOCATION},1.3.6.1.4.1.9.9.719.1.45.8.1.2]','10434','Virtual disk discovery','cisco.ucs.virtualDisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageLocalLunTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d0760c4d29d4113b179b0e5c18f7e3b');
INSERT INTO `items` (`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`,`uuid`) values ('36178','20','1.3.6.1.4.1.9.9.719.1.45.11.1.9.{#SNMPINDEX}','10434','{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery status','cisco.ucs.hw.diskarray.cache.battery.status[cucsStorageRaidBatteryOperability.{#SNMPINDEX}]','1m','1w','0d','0','3','','','','',NULL,'434','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4e5214066fbb4c719c7e6abfba47e5f6');
INSERT INTO `items` (`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`,`uuid`) values ('36179','20','1.3.6.1.4.1.9.9.719.1.45.1.1.5.{#SNMPINDEX}','10434','{#DISKARRAY_LOCATION}: Disk array controller model','cisco.ucs.hw.diskarray.model[cucsStorageControllerModel.{#SNMPINDEX}]','1d','90d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5285422113b84c2e8cb00899e0b29493');
INSERT INTO `items` (`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`,`uuid`) values ('36180','20','1.3.6.1.4.1.9.9.719.1.45.1.1.6.{#SNMPINDEX}','10434','{#DISKARRAY_LOCATION}: Disk array controller status','cisco.ucs.hw.diskarray.status[cucsStorageControllerOperState.{#SNMPINDEX}]','1m','1w','0d','0','3','','','','',NULL,'434','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB\r\nCisco UCS storage:RaidBattery:operability managed object property.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a732688d6fa347b597854078dd084935');
INSERT INTO `items` (`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`,`uuid`) values ('36181','20','1.3.6.1.4.1.9.9.719.1.15.12.1.9.{#SNMPINDEX}','10434','{#FAN_LOCATION}: Fan status','cisco.ucs.sensor.fan.status[cucsEquipmentFanOperState.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'434','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB\r\nCisco UCS equipment:Fan:operState managed object property','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e4aa59c4ec44fc7b97b9659c0d7a5c5');
INSERT INTO `items` (`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`,`uuid`) values ('36182','20','1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}','10434','Interface {#IFNAME}({#IFALIAS}): Interface description','cisco.ucs.if.descr[ifDescr.{#SNMPINDEX}]','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nA textual string containing information about the\r\ninterface. This string should include the name of the\r\nmanufacturer, the product name and the version of the\r\ninterface hardware/software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','361a4c5a4b04432b84f4e6bfcd7775c6');
INSERT INTO `items` (`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`,`uuid`) values ('36183','20','1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}','10434','Interface {#IFNAME}({#IFALIAS}): Broadcast packets received','cisco.ucs.if.in.broadcast[ifHCInBroadcastPkts.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a broadcast\r\naddress at this sub-layer. This object is a 64-bit version\r\nof ifInBroadcastPkts.\r\n\r\nDiscontinuities in the value of this counter can occur at\r\nre-initialization of the management system, and at other\r\ntimes as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','009aeec02b3b46dc93bd52c2f1a4de0a');
INSERT INTO `items` (`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`,`uuid`) values ('36184','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10434','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','cisco.ucs.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','533b7352983e4adfbd9ca1c0e2e5e4b1');
INSERT INTO `items` (`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`,`uuid`) values ('36185','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10434','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','cisco.ucs.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84e21f59350248c185a79dd916587140');
INSERT INTO `items` (`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`,`uuid`) values ('36186','20','1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}','10434','Interface {#IFNAME}({#IFALIAS}): Multicast packets received','cisco.ucs.if.in.multicast[ifHCInMulticastPkts.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of packets, delivered by this sub-layer to a\r\nhigher (sub-)layer, which were addressed to a multicast\r\naddress at this sub-layer. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses. This object\r\nis a 64-bit version of ifInMulticastPkts.\r\n\r\nDiscontinuities in the value of this counter can occur at\r\nre-initialization of the management system, and at other\r\ntimes as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d72b570e01f5479db47628e399932988');
INSERT INTO `items` (`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`,`uuid`) values ('36187','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10434','Interface {#IFNAME}({#IFALIAS}): Bits received','cisco.ucs.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eef7c3f6945a48e886de08a842c08f72');
INSERT INTO `items` (`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`,`uuid`) values ('36188','20','1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}','10434','Interface {#IFNAME}({#IFALIAS}): Broadcast packets sent','cisco.ucs.if.out.broadcast[ifHCOutBroadcastPkts.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nbroadcast address at this sub-layer, including those that\r\nwere discarded or not sent. This object is a 64-bit version\r\nof ifOutBroadcastPkts.\r\n\r\nDiscontinuities in the value of this counter can occur at\r\nre-initialization of the management system, and at other\r\ntimes as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f682fdf3144145f3998066a77353c4e2');
INSERT INTO `items` (`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`,`uuid`) values ('36189','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10434','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','cisco.ucs.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b61c1b8a08aa40d696d03ae584230e8e');
INSERT INTO `items` (`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`,`uuid`) values ('36190','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10434','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','cisco.ucs.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b9d7feb75674225ac8e6ad0952380ac');
INSERT INTO `items` (`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`,`uuid`) values ('36191','20','1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}','10434','Interface {#IFNAME}({#IFALIAS}): Multicast packets sent','cisco.ucs.if.out.multicast[ifHCOutMulticastPkts.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of packets that higher-level protocols\r\nrequested be transmitted, and which were addressed to a\r\nmulticast address at this sub-layer, including those that\r\nwere discarded or not sent. For a MAC layer protocol, this\r\nincludes both Group and Functional addresses. This object\r\nis a 64-bit version of ifOutMulticastPkts.\r\n\r\nDiscontinuities in the value of this counter can occur at\r\nre-initialization of the management system, and at other\r\ntimes as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3ddc4cca78f14dfc8e6d51efae831ba2');
INSERT INTO `items` (`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`,`uuid`) values ('36192','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10434','Interface {#IFNAME}({#IFALIAS}): Bits sent','cisco.ucs.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e48a1926828645c49afec898d01fa81a');
INSERT INTO `items` (`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`,`uuid`) values ('36193','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10434','Interface {#IFNAME}({#IFALIAS}): Speed','cisco.ucs.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','56aa529b14b14f6f8f9a9b5f1a2ba0d8');
INSERT INTO `items` (`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`,`uuid`) values ('36194','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10434','Interface {#IFNAME}({#IFALIAS}): Operational status','cisco.ucs.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'440','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16a4394c6b824bacbc7f074d487fcdfb');
INSERT INTO `items` (`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`,`uuid`) values ('36195','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10434','Interface {#IFNAME}({#IFALIAS}): Interface type','cisco.ucs.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'441','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','00b0f0fb6c0b4026b438627edab908fb');
INSERT INTO `items` (`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`,`uuid`) values ('36196','20','1.3.6.1.4.1.9.9.719.1.45.4.1.17.{#SNMPINDEX}','10434','{#DISK_LOCATION}: Physical disk media type','cisco.ucs.hw.physicaldisk.media_type[cucsStorageLocalDiskDeviceType.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,'439','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB\r\nCisco UCS storage:LocalDisk:deviceType managed object property. Actually returns \'HDD\' or \'SSD\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3a1f21ccf92f43df869f66911ab5c0ea');
INSERT INTO `items` (`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`,`uuid`) values ('36197','20','1.3.6.1.4.1.9.9.719.1.45.4.1.7.{#SNMPINDEX}','10434','{#DISK_LOCATION}: Physical disk model name','cisco.ucs.hw.physicaldisk.model[cucsStorageLocalDiskModel.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB\r\nCisco UCS storage:LocalDisk:model managed object property.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','317d489e9bf94467a228f5bbccb03436');
INSERT INTO `items` (`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`,`uuid`) values ('36198','20','1.3.6.1.4.1.9.9.719.1.45.4.1.12.{#SNMPINDEX}','10434','{#DISK_LOCATION}: Physical disk serial number','cisco.ucs.hw.physicaldisk.serialnumber[cucsStorageLocalDiskSerial.{#SNMPINDEX}]','1h','90d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB\r\nCisco UCS storage:LocalDisk:serial managed object property. Actually returns part number code.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d768239496f2457fbec3a1103e84914d');
INSERT INTO `items` (`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`,`uuid`) values ('36199','20','1.3.6.1.4.1.9.9.719.1.45.4.1.13.{#SNMPINDEX}','10434','{#DISK_LOCATION}: Disk size','cisco.ucs.hw.physicaldisk.size[cucsStorageLocalDiskSize.{#SNMPINDEX}]','1h','2w','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB\r\nCisco UCS storage:LocalDisk:size managed object property. In MB.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c3c38ffc10fb4d139099c551b3c21728');
INSERT INTO `items` (`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`,`uuid`) values ('36200','20','1.3.6.1.4.1.9.9.719.1.45.4.1.18.{#SNMPINDEX}','10434','{#DISK_LOCATION}: Physical disk status','cisco.ucs.hw.physicaldisk.status[cucsStorageLocalDiskDiskState.{#SNMPINDEX}]','3m','90d','0d','0','3','','','','',NULL,'438','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB\r\nCisco UCS storage:LocalDisk:diskState managed object property.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad4616916d6644f480a2687dbc56a4a3');
INSERT INTO `items` (`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`,`uuid`) values ('36201','20','1.3.6.1.4.1.9.9.719.1.15.56.1.7.{#SNMPINDEX}','10434','{#PSU_LOCATION}: Power supply status','cisco.ucs.sensor.psu.status[cucsEquipmentPsuOperState.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'434','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB\r\nCisco UCS equipment:Psu:operState managed object property','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','88a07d360c42431ba4ef31cbe825dc72');
INSERT INTO `items` (`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`,`uuid`) values ('36202','20','1.3.6.1.4.1.9.9.719.1.41.2.1.10.{#SNMPINDEX}','10434','{#SENSOR_LOCATION}: Temperature','cisco.ucs.sensor.temp.value[cucsProcessorEnvStatsTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-PROCESSOR-MIB\r\nCisco UCS processor:EnvStats:temperature managed object property','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7b822aeed3e24358aace9693e7f03385');
INSERT INTO `items` (`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`,`uuid`) values ('36203','20','1.3.6.1.4.1.9.9.719.1.9.44.1.13.{#SNMPINDEX}','10434','{#SENSOR_LOCATION}.IOH: Temperature','cisco.ucs.sensor.temp.value[cucsComputeRackUnitMbTempSltatsIoh1Temp.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB\r\nCisco UCS compute:RackUnitMbTempStats:ioh1Temp managed object property','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d57481cb764a429f928aa6de6837c4ae');
INSERT INTO `items` (`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`,`uuid`) values ('36204','20','1.3.6.1.4.1.9.9.719.1.9.44.1.4.{#SNMPINDEX}','10434','{#SENSOR_LOCATION}.Ambient: Temperature','cisco.ucs.sensor.temp.value[cucsComputeRackUnitMbTempStatsAmbientTemp.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB\r\nTemperature readings of testpoint: {#SENSOR_LOCATION}.Ambient','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d5e4b5b7e18c4545853c48db018dc127');
INSERT INTO `items` (`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`,`uuid`) values ('36205','20','1.3.6.1.4.1.9.9.719.1.9.44.1.8.{#SNMPINDEX}','10434','{#SENSOR_LOCATION}.Front: Temperature','cisco.ucs.sensor.temp.value[cucsComputeRackUnitMbTempStatsFrontTemp.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB\r\nCisco UCS compute:RackUnitMbTempStats:frontTemp managed object property','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9980042de8d74353bf4a386bb0f28d30');
INSERT INTO `items` (`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`,`uuid`) values ('36206','20','1.3.6.1.4.1.9.9.719.1.9.44.1.21.{#SNMPINDEX}','10434','{#SENSOR_LOCATION}.Rear: Temperature','cisco.ucs.sensor.temp.value[cucsComputeRackUnitMbTempStatsRearTemp.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB\r\nCisco UCS compute:RackUnitMbTempStats:rearTemp managed object property','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e20bfa52f31f4a1a9f08ba02fe27f90c');
INSERT INTO `items` (`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`,`uuid`) values ('36207','20','1.3.6.1.4.1.9.9.719.1.9.35.1.32.{#SNMPINDEX}','10434','{#UNIT_LOCATION}: Hardware model name','cisco.ucs.hw.model[cucsComputeRackUnitModel.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB\r\nCisco UCS compute:RackUnit:model managed object property','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','41ecc1caac444d2587d51e33057e6d39');
INSERT INTO `items` (`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`,`uuid`) values ('36208','20','1.3.6.1.4.1.9.9.719.1.9.35.1.47.{#SNMPINDEX}','10434','{#UNIT_LOCATION}: Hardware serial number','cisco.ucs.hw.serialnumber[cucsComputeRackUnitSerial.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB\r\nCisco UCS compute:RackUnit:serial managed object property','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac3217187db3453eb8b9932fce7c79c4');
INSERT INTO `items` (`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`,`uuid`) values ('36209','20','1.3.6.1.4.1.9.9.719.1.9.35.1.42.{#SNMPINDEX}','10434','{#UNIT_LOCATION}: Overall system health status','cisco.ucs.status[cucsComputeRackUnitOperState.{#SNMPINDEX}]','30s','2w','0d','0','3','','','','',NULL,'436','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB\r\nCisco UCS compute:RackUnit:operState managed object property','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c6ebb7db809f4c62aae795a8b1c4b740');
INSERT INTO `items` (`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`,`uuid`) values ('36210','20','1.3.6.1.4.1.9.9.719.1.45.8.1.14.{#SNMPINDEX}','10434','{#VDISK_LOCATION}: Layout type','cisco.ucs.hw.virtualdisk.layout[cucsStorageLocalLunType.{#SNMPINDEX}]','1h','2w','365d','0','3','','','','',NULL,'437','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB\r\nCisco UCS storage:LocalLun:type managed object property','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c80f07f350bc472fb73282f5c80e16e3');
INSERT INTO `items` (`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`,`uuid`) values ('36211','20','1.3.6.1.4.1.9.9.719.1.45.8.1.13.{#SNMPINDEX}','10434','{#VDISK_LOCATION}: Disk size','cisco.ucs.hw.virtualdisk.size[cucsStorageLocalLunSize.{#SNMPINDEX}]','1h','2w','0d','0','3','','B','','',NULL,'437','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB\r\nCisco UCS storage:LocalLun:size managed object property in MB.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','59a403629e8b40d981c2926ead601966');
INSERT INTO `items` (`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`,`uuid`) values ('36212','20','1.3.6.1.4.1.9.9.719.1.45.8.1.10.{#SNMPINDEX}','10434','{#VDISK_LOCATION}: Status','cisco.ucs.hw.virtualdisk.status[cucsStorageLocalLunPresence.{#SNMPINDEX}]','3m','2w','365d','0','3','','','','',NULL,'435','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB\r\nCisco UCS storage:LocalLun:presence managed object property','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','39504e417781414081e1198adef562d4');
INSERT INTO `items` (`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`,`uuid`) values ('36213','19','','10435','Dell R720: Get system','dell.server.system.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','0',NULL,'Returns the metrics of a system.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Systems/System.Embedded.1','','','200','1','0','','0','0','0','0','0','0','0','05403c3757624072be7919dbd8864871');
INSERT INTO `items` (`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`,`uuid`) values ('36214','3','','10435','Dell R720: Redfish API','net.tcp.service[https]','1m','7d','365d','0','3','','','','',NULL,'443','','','0','','','','','0',NULL,'The availability of Redfish API on the server.\r\nPossible values:\r\n 0 unavailable\r\n 1 available','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f71cb6b0b93945ccbb20dc660c73e15c');
INSERT INTO `items` (`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`,`uuid`) values ('36219','19','','10435','Array controller cache discovery','array.cache.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of a cache of disk array controllers.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Systems/System.Embedded.1/Storage','','','200','1','0','','0','0','0','0','0','0','0','acf63330ee40478aa81fa73c156ee6c8');
INSERT INTO `items` (`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`,`uuid`) values ('36220','19','','10435','Array controller discovery','array.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of disk array controllers.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Systems/System.Embedded.1/Storage','','','200','1','0','','0','0','0','0','0','0','0','3ef57728fdca4c2791f57a993474cd98');
INSERT INTO `items` (`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`,`uuid`) values ('36221','19','','10435','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of FAN sensors.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Chassis/System.Embedded.1/Sensors','','','200','1','0','','0','0','0','0','0','0','0','38908736806c44bdbd519f770e6dc91e');
INSERT INTO `items` (`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`,`uuid`) values ('36222','19','','10435','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'The NetworkInterface schema describes links to the NetworkAdapter and represents the functionality available to the containing system.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Chassis/System.Embedded.1/NetworkAdapters','','','200','1','0','','0','0','0','0','0','0','0','677239d906704f1ca4be041b209e7aa3');
INSERT INTO `items` (`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`,`uuid`) values ('36223','19','','10435','Physical disk discovery','physicaldisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of physical disks.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Systems/System.Embedded.1/Storage','','','200','1','0','','0','0','0','0','0','0','0','f40fb375a0ba441ea9942822471be1cf');
INSERT INTO `items` (`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`,`uuid`) values ('36224','19','','10435','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of PSU sensors.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Chassis/System.Embedded.1/Sensors','','','200','1','0','','0','0','0','0','0','0','0','1ae5712a1b75459e9f6fe7b3c9334ee9');
INSERT INTO `items` (`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`,`uuid`) values ('36225','19','','10435','Temperature discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of temperature sensors.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Chassis/System.Embedded.1/Sensors','','','200','1','0','','0','0','0','0','0','0','0','0c8eea294f9041ca9cb8b27fd32bea80');
INSERT INTO `items` (`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`,`uuid`) values ('36226','19','','10435','Virtual disk discovery','virtualdisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of virtual disks.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Systems/System.Embedded.1/Storage','','','200','1','0','','0','0','0','0','0','0','0','0b5735d173a04cf69422118ac8990ff4');
INSERT INTO `items` (`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`,`uuid`) values ('36227','19','','10435','Dell R720: {#BATTERY_NAME} Status','dell.server.hw.diskarray.cache.battery.status[{#BATTERY_NAME}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','a13e5b801b034e0eab55bee72afe2c06');
INSERT INTO `items` (`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`,`uuid`) values ('36228','19','','10435','Dell R720: {#CNTLR_NAME} in slot {#SLOT} Status','dell.server.hw.diskarray.status[{#CNTLR_NAME}{#SLOT}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','3d61cc1d4b044428b17ad9af11f90652');
INSERT INTO `items` (`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`,`uuid`) values ('36229','19','','10435','Dell R720: {#SENSOR_NAME} Get sensor','dell.server.sensor.fan.get[{#SENSOR_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a sensor.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','2112e99b197044258693bd7c23376a08');
INSERT INTO `items` (`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`,`uuid`) values ('36230','19','','10435','Dell R720: {#IFNAME} Get interface','dell.server.net.if.get[{#IFNAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a network interface.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','13f09a8a9ffd4724b783f6f6ffca4237');
INSERT INTO `items` (`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`,`uuid`) values ('36231','19','','10435','Dell R720: {#DISK_NAME} Get disk','dell.server.hw.physicaldisk.get[{#DISK_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a physical disk.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','f4b115b9975e44e388b077eb884d92f4');
INSERT INTO `items` (`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`,`uuid`) values ('36232','19','','10435','Dell R720: {#SENSOR_NAME} Get sensor','dell.server.sensor.psu.get[{#SENSOR_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a sensor.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','ff702455da7748de995238ebe6bd7fbd');
INSERT INTO `items` (`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`,`uuid`) values ('36233','19','','10435','Dell R720: {#SENSOR_NAME} Get sensor','dell.server.sensor.temp.get[{#SENSOR_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a sensor.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','13eb046f17ae44e3b56a911fa29462b3');
INSERT INTO `items` (`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`,`uuid`) values ('36234','19','','10435','Dell R720: {#DISK_NAME} Get disk','dell.server.hw.virtualdisk.get[{#DISK_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a virtual disk.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','a5a3da9fd1824fa89d41514deac80619');
INSERT INTO `items` (`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`,`uuid`) values ('36255','20','1.3.6.1.2.1.1.4.0','10436','Dell R720: System contact details','dell.server.contact[sysContact]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','f14d8e90f1cd4728a33ce6c9d42be4f9');
INSERT INTO `items` (`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`,`uuid`) values ('36256','20','1.3.6.1.2.1.1.1.0','10436','Dell R720: System description','dell.server.descr[sysDescr]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a91ac1f87e1542059109d7da8584423d');
INSERT INTO `items` (`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`,`uuid`) values ('36257','20','1.3.6.1.4.1.674.10892.5.1.1.8.0','10436','Dell R720: Firmware version','dell.server.hw.firmware[racFirmwareVersion]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the firmware version of a remote access card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6aa71cd35e9d44ad95b620b8822694e0');
INSERT INTO `items` (`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`,`uuid`) values ('36258','20','1.3.6.1.4.1.674.10892.5.1.3.12.0','10436','Dell R720: Hardware model name','dell.server.hw.model[systemModelName]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the model name of the system.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','937187c26f7e4d4a8132d513a5830ed1');
INSERT INTO `items` (`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`,`uuid`) values ('36259','20','1.3.6.1.4.1.674.10892.5.1.3.2.0','10436','Dell R720: Hardware serial number','dell.server.hw.serialnumber[systemServiceTag]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the service tag of the system.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eae1e8f2b47242769cb1fdc9343accc9');
INSERT INTO `items` (`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`,`uuid`) values ('36260','20','1.3.6.1.2.1.1.6.0','10436','Dell R720: System location','dell.server.location[sysLocation]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., \'telephone closet, 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','835ac73990c842ec8d2f9aa9777f85cb');
INSERT INTO `items` (`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`,`uuid`) values ('36261','20','1.3.6.1.2.1.1.5.0','10436','Dell R720: System name','dell.server.name[sysName]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node. By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a7cdf4b9d5c4f75bcbd3a0de38d88a8');
INSERT INTO `items` (`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`,`uuid`) values ('36262','20','1.3.6.1.2.1.1.2.0','10436','Dell R720: System object ID','dell.server.objectid[sysObjectID]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining \'what kind of box\' is being managed. For example, if vendor \'Flintstones, Inc.\' was assigned the subtree 1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its \'Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','810d426af24f4646b3abee04071c3d37');
INSERT INTO `items` (`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`,`uuid`) values ('36263','20','1.3.6.1.4.1.674.10892.5.2.1.0','10436','Dell R720: Overall system health status','dell.server.status[globalSystemStatus]','1m','7d','0d','0','3','','','','',NULL,'446','','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the overall rollup status of all components in the system being monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1f5c2f25cbf84113854c521a6dd1e1ba');
INSERT INTO `items` (`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`,`uuid`) values ('36264','20','1.3.6.1.4.1.674.10892.5.1.3.6.0','10436','Dell R720: Operating system','dell.server.sw.os[systemOSName]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the name of the operating system that the host is running.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1bf8b000a1644bdca928b96208e975bd');
INSERT INTO `items` (`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`,`uuid`) values ('36265','20','1.3.6.1.2.1.1.3.0','10436','Dell R720: Uptime (network)','dell.server.net.uptime[sysUpTime]','1m','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b55a66a029c34e33b68ba0c542347fb3');
INSERT INTO `items` (`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`,`uuid`) values ('36266','17','','10436','Dell R720: SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','fd84e96399ef4ceb8a6c922f63fc9997');
INSERT INTO `items` (`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`,`uuid`) values ('36267','5','','10436','Dell R720: SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'455','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1f6a6419f36045b6a139f0af2fb55c01');
INSERT INTO `items` (`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`,`uuid`) values ('36268','20','discovery[{#BATTERY_NUM},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1,{#BATTERY_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21]','10436','Array controller cache discovery','array.cache.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: IDRAC-MIB-SMIv2::batteryTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e4ef7e2e0a7c443185f61c71fa2e9c73');
INSERT INTO `items` (`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`,`uuid`) values ('36269','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38,{#CNTLR_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79]','10436','Array controller discovery','array.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: IDRAC-MIB-SMIv2::controllerTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f0ece8764a4443319da625257eebd2c7');
INSERT INTO `items` (`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`,`uuid`) values ('36270','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.12.1.5,{#FAN_DESCR},1.3.6.1.4.1.674.10892.5.4.700.12.1.8,{#TYPE},1.3.6.1.4.1.674.10892.5.4.700.12.1.7]','10436','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'IDRAC-MIB-SMIv2::coolingDeviceTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','110ba42b9a114a879ecc4afaad7d4dc4');
INSERT INTO `items` (`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`,`uuid`) values ('36271','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2]','10436','Physical disk discovery','physicaldisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of physical drive entries IDRAC-MIB-SMIv2::physicalDiskTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','faf7d088fb0f43ae9617ff3251000c28');
INSERT INTO `items` (`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`,`uuid`) values ('36272','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.600.12.1.5,{#PSU_DESCR},1.3.6.1.4.1.674.10892.5.4.600.12.1.8]','10436','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'IDRAC-MIB-SMIv2::powerSupplyTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2566e537876d40f98dac264f4b4c095c');
INSERT INTO `items` (`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`,`uuid`) values ('36273','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.20.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.674.10892.5.4.700.20.1.8]','10436','Temperature discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Probe Table IDRAC-MIB-SMIv2::temperatureProbeTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7dce235289e54370a24e50ae81eeb8f8');
INSERT INTO `items` (`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`,`uuid`) values ('36274','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2]','10436','Virtual disk discovery','virtualdisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'IDRAC-MIB-SMIv2::virtualDiskTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','046e6319be984d9a9436e319c30dd512');
INSERT INTO `items` (`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`,`uuid`) values ('36275','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX}','10436','Dell R720: {#BATTERY_NAME} Status','dell.server.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'444','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nCurrent state of battery.\r\nPossible values:\r\n1: The current state could not be determined.\r\n2: The battery is operating normally.\r\n3: The battery has failed and needs to be replaced.\r\n4: The battery temperature is high or charge level is depleting.\r\n5: The battery is missing or not detected.\r\n6: The battery is undergoing the re-charge phase.\r\n7: The battery voltage or charge level is below the threshold.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c84a33abe34d4eecb9160d5682986422');
INSERT INTO `items` (`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`,`uuid`) values ('36276','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX}','10436','Dell R720: {#CNTLR_NAME} Model','dell.server.hw.diskarray.model[controllerName.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe controller\'s name as represented in Storage Management.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3946776d85a3444c9da83a3cc123cb7f');
INSERT INTO `items` (`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`,`uuid`) values ('36277','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX}','10436','Dell R720: {#CNTLR_NAME} Status','dell.server.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'446','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe status of the controller itself without the propagation of any contained component status.\r\nPossible values:\r\n1: Other\r\n2: Unknown\r\n3: OK\r\n4: Non-critical\r\n5: Critical\r\n6: Non-recoverable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16cff0e125484ca38ca901e6fd8cedcc');
INSERT INTO `items` (`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`,`uuid`) values ('36278','20','1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX}','10436','Dell R720: {#FAN_DESCR} Speed','dell.server.sensor.fan.speed[coolingDeviceReading.{#SNMPINDEX}]','1m','7d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the reading for a cooling device\r\nof subtype other than coolingDeviceSubTypeIsDiscrete. When the value\r\nfor coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, the\r\nvalue returned for this attribute is the speed in RPM or the OFF/ON value\r\nof the cooling device. When the value for coolingDeviceSubType is\r\ncoolingDeviceSubTypeIsDiscrete, a value is not returned for this attribute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9f2be3b0fc2f496dbdfcf5d6dbb4df7f');
INSERT INTO `items` (`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`,`uuid`) values ('36279','20','1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX}','10436','Dell R720: {#FAN_DESCR} Status','dell.server.sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'449','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the probe status of the cooling device.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','90e15bb8c3d24a8b80f4c23893eb0c4b');
INSERT INTO `items` (`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`,`uuid`) values ('36280','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX}','10436','Dell R720: {#DISK_NAME} Media type','dell.server.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'448','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe media type of the physical disk. Possible Values:\r\n1: The media type could not be determined.\r\n2: Hard Disk Drive (HDD).\r\n3: Solid State Drive (SSD).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2f9573255c124323b2798a983acb5724');
INSERT INTO `items` (`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`,`uuid`) values ('36281','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX}','10436','Dell R720: {#DISK_NAME} Model name','dell.server.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe model number of the physical disk.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff3c89e56e914bb4a673609f5b820e5b');
INSERT INTO `items` (`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`,`uuid`) values ('36282','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX}','10436','Dell R720: {#DISK_NAME} Serial number','dell.server.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe physical disk\'s unique identification number from the manufacturer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cd29b1a0f2414d32a09a5750203b1015');
INSERT INTO `items` (`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`,`uuid`) values ('36283','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX}','10436','Dell R720: {#DISK_NAME} Size','dell.server.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}]','1m','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe size of the physical disk in megabytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f0416dd5af4f4f83b6e9fc7d3ba7fb25');
INSERT INTO `items` (`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`,`uuid`) values ('36284','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX}','10436','Dell R720: {#DISK_NAME} S.M.A.R.T. Status','dell.server.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'445','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nIndicates whether the physical disk has received a predictive failure alert.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6224bb49492a41bcbe20403b3d2af84e');
INSERT INTO `items` (`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`,`uuid`) values ('36285','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX}','10436','Dell R720: {#DISK_NAME} Status','dell.server.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'447','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe status of the physical disk itself without the propagation of any contained component status.\r\nPossible values:\r\n1: Other\r\n2: Unknown\r\n3: OK\r\n4: Non-critical\r\n5: Critical\r\n6: Non-recoverable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da48f12f812d4ac6a8c63464cd6fb316');
INSERT INTO `items` (`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`,`uuid`) values ('36286','20','1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX}','10436','Dell R720: {#PSU_DESCR}','dell.server.sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'446','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\n0600.0012.0001.0005 This attribute defines the status of the power supply.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','465f843523794ceb90dedd8bb2fc3436');
INSERT INTO `items` (`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`,`uuid`) values ('36287','20','1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX}','10436','Dell R720: {#SENSOR_LOCALE} Status','dell.server.sensor.temp.status[temperatureProbeStatus.{#SNMPINDEX}]','1m','7d','0d','0','0','','','','',NULL,'449','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the probe status of the temperature probe.\r\nPossible values:\r\nother(1), -- probe status is not one of the following:\r\nunknown(2), -- probe status is unknown (not known or monitored)\r\nok(3), -- probe is reporting a value within the thresholds\r\nnonCriticalUpper(4), -- probe has crossed the upper noncritical threshold\r\ncriticalUpper(5), -- probe has crossed the upper critical threshold\r\nnonRecoverableUpper(6), -- probe has crossed the upper non-recoverable threshold\r\nnonCriticalLower(7), -- probe has crossed the lower noncritical threshold\r\ncriticalLower(8), -- probe has crossed the lower critical threshold\r\nnonRecoverableLower(9), -- probe has crossed the lower non-recoverable threshold\r\nfailed(10) -- probe is not functional','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7d05a88487ae4cb1ae0834cdd617c68d');
INSERT INTO `items` (`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`,`uuid`) values ('36288','20','1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX}','10436','Dell R720: {#SENSOR_LOCALE} Value','dell.server.sensor.temp.value[temperatureProbeReading.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete, the value returned for this attribute is the temperature that the probe is reading in Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','95fc15b305fb429abcd1d1a1b44f401d');
INSERT INTO `items` (`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`,`uuid`) values ('36289','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX}','10436','Dell R720: {#DISK_NAME} Layout type','dell.server.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'450','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe virtual disk\'s RAID type.\r\nPossible values:\r\n1: Not one of the following\r\n2: RAID-0\r\n3: RAID-1\r\n4: RAID-5\r\n5: RAID-6\r\n6: RAID-10\r\n7: RAID-50\r\n8: RAID-60\r\n9: Concatenated RAID 1\r\n10: Concatenated RAID 5','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e7179f83b1f3491fb57fea3d3d24752f');
INSERT INTO `items` (`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`,`uuid`) values ('36290','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX}','10436','Dell R720: {#DISK_NAME} Read policy','dell.server.hw.virtualdisk.readpolicy[virtualDiskReadPolicy.{#SNMPINDEX}]','1h','2w','365d','0','3','','','','',NULL,'452','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe read policy used by the controller for read operations on this virtual disk.\r\nPossible values:\r\n1: No Read Ahead.\r\n2: Read Ahead.\r\n3: Adaptive Read Ahead.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a815b67fc1f840b7b805ebd406effa0a');
INSERT INTO `items` (`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`,`uuid`) values ('36291','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX}','10436','Dell R720: {#DISK_NAME} Size','dell.server.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}]','1m','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe size of the virtual disk in megabytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','72b8b0d3470d45e79a8fbc806400182e');
INSERT INTO `items` (`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`,`uuid`) values ('36292','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX}','10436','Dell R720: {#DISK_NAME} Current state','dell.server.hw.virtualdisk.state[virtualDiskOperationalState.{#SNMPINDEX}]','3m','2w','365d','0','3','','','','',NULL,'451','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe state of the virtual disk when there are progressive operations ongoing.\r\nPossible values:\r\n1: There is no active operation running.\r\n2: The virtual disk configuration has changed. The physical disks included in the virtual disk are being modified to support the new configuration.\r\n3: A Consistency Check (CC) is being performed on the virtual disk.\r\n4: The virtual disk is being initialized.\r\n5: BackGround Initialization (BGI) is being performed on the virtual disk.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b37a4f8be7894bbd910e2fa7e938285a');
INSERT INTO `items` (`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`,`uuid`) values ('36293','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX}','10436','Dell R720: {#DISK_NAME} Status','dell.server.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'453','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe current state of this virtual disk (which includes any member physical disks.)\r\nPossible states:\r\n1: The current state could not be determined.\r\n2: The virtual disk is operating normally or optimally.\r\n3: The virtual disk has encountered a failure. Data on the disk is lost or is about to be lost.\r\n4: The virtual disk encountered a failure with one or all of the constituent redundant physical disks.\r\nThe data on the virtual disk might no longer be fault tolerant.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f396d0643fda4971b420785a3cf33af1');
INSERT INTO `items` (`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`,`uuid`) values ('36294','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX}','10436','Dell R720: {#DISK_NAME} Write policy','dell.server.hw.virtualdisk.writepolicy[virtualDiskWritePolicy.{#SNMPINDEX}]','1h','2w','365d','0','3','','','','',NULL,'454','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe write policy used by the controller for write operations on this virtual disk.\r\nPossible values:\r\n1: Write Through.\r\n2: Write Back.\r\n3: Force Write Back.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0acfd1b6e15b43778ca1c8bb5f61b2fa');
INSERT INTO `items` (`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`,`uuid`) values ('36295','19','','10437','Dell R740: Get system','dell.server.system.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','0',NULL,'Returns the metrics of a system.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Systems/System.Embedded.1','','','200','1','0','','0','0','0','0','0','0','0','cac6e14aa5d34d4e90747ab19da6a53f');
INSERT INTO `items` (`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`,`uuid`) values ('36296','3','','10437','Dell R740: Redfish API','net.tcp.service[https]','1m','7d','365d','0','3','','','','',NULL,'456','','','0','','','','','0',NULL,'The availability of Redfish API on the server.\r\nPossible values:\r\n 0 unavailable\r\n 1 available','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b622113d9f1d4fd5a7ce594831c7ef79');
INSERT INTO `items` (`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`,`uuid`) values ('36301','19','','10437','Array controller cache discovery','array.cache.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of a cache of disk array controllers.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Systems/System.Embedded.1/Storage','','','200','1','0','','0','0','0','0','0','0','0','c302f1ed021e4b64b76b947d805dcd9b');
INSERT INTO `items` (`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`,`uuid`) values ('36302','19','','10437','Array controller discovery','array.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of disk array controllers.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Systems/System.Embedded.1/Storage','','','200','1','0','','0','0','0','0','0','0','0','fd788d5909de4e7f95f81b03e74bdc67');
INSERT INTO `items` (`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`,`uuid`) values ('36303','19','','10437','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of FAN sensors.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Chassis/System.Embedded.1/Sensors','','','200','1','0','','0','0','0','0','0','0','0','4d153e64d8d2438aa646003b82d969ea');
INSERT INTO `items` (`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`,`uuid`) values ('36304','19','','10437','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'The NetworkInterface schema describes links to the NetworkAdapter and represents the functionality available to the containing system.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Chassis/System.Embedded.1/NetworkAdapters','','','200','1','0','','0','0','0','0','0','0','0','d89dfd284b8b45e488ec923ab1a14c9b');
INSERT INTO `items` (`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`,`uuid`) values ('36305','19','','10437','Physical disk discovery','physicaldisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of physical disks.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Systems/System.Embedded.1/Storage','','','200','1','0','','0','0','0','0','0','0','0','54c404636c9c4ed1897dbc1d17e6814c');
INSERT INTO `items` (`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`,`uuid`) values ('36306','19','','10437','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of PSU sensors.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Chassis/System.Embedded.1/Sensors','','','200','1','0','','0','0','0','0','0','0','0','3e036732b2a342bc87c618d0d00524e5');
INSERT INTO `items` (`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`,`uuid`) values ('36307','19','','10437','Temperature discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of temperature sensors.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Chassis/System.Embedded.1/Sensors','','','200','1','0','','0','0','0','0','0','0','0','ecc5f7d61f5c437dab3fd3ebd6b54065');
INSERT INTO `items` (`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`,`uuid`) values ('36308','19','','10437','Virtual disk discovery','virtualdisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of virtual disks.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Systems/System.Embedded.1/Storage','','','200','1','0','','0','0','0','0','0','0','0','75fbb5acaca1471a95e81a2d4317e2f8');
INSERT INTO `items` (`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`,`uuid`) values ('36309','19','','10437','Dell R740: {#BATTERY_NAME} Status','dell.server.hw.diskarray.cache.battery.status[{#BATTERY_NAME}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','ae0ea3e4743e4606b1df4b966523d21d');
INSERT INTO `items` (`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`,`uuid`) values ('36310','19','','10437','Dell R740: {#CNTLR_NAME} in slot {#SLOT} Status','dell.server.hw.diskarray.status[{#CNTLR_NAME}{#SLOT}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','0a7ddd247a1942f3b5d192e324566fa4');
INSERT INTO `items` (`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`,`uuid`) values ('36311','19','','10437','Dell R740: {#SENSOR_NAME} Get sensor','dell.server.sensor.fan.get[{#SENSOR_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a sensor.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','64cbab04c8794c70a576e09cc1765281');
INSERT INTO `items` (`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`,`uuid`) values ('36312','19','','10437','Dell R740: {#IFNAME} Get interface','dell.server.net.if.get[{#IFNAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a network interface.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','4de0b436cb05479b9cb06c6fd3c80c30');
INSERT INTO `items` (`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`,`uuid`) values ('36313','19','','10437','Dell R740: {#DISK_NAME} Get disk','dell.server.hw.physicaldisk.get[{#DISK_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a physical disk.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','467f52946fd940c798c2008b31233d12');
INSERT INTO `items` (`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`,`uuid`) values ('36314','19','','10437','Dell R740: {#SENSOR_NAME} Get sensor','dell.server.sensor.psu.get[{#SENSOR_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a sensor.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','da11f4b9a14044ba9e4d498582f8424f');
INSERT INTO `items` (`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`,`uuid`) values ('36315','19','','10437','Dell R740: {#SENSOR_NAME} Get sensor','dell.server.sensor.temp.get[{#SENSOR_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a sensor.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','c987c12f67234b08809c7316adc087d6');
INSERT INTO `items` (`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`,`uuid`) values ('36316','19','','10437','Dell R740: {#DISK_NAME} Get disk','dell.server.hw.virtualdisk.get[{#DISK_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a virtual disk.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','d56b76fd767a4d71a279711f0a9ff6ae');
INSERT INTO `items` (`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`,`uuid`) values ('36337','20','1.3.6.1.2.1.1.4.0','10438','Dell R740: System contact details','dell.server.contact[sysContact]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','a0886c2161f04d2d9c0611c03cb9f2b3');
INSERT INTO `items` (`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`,`uuid`) values ('36338','20','1.3.6.1.2.1.1.1.0','10438','Dell R740: System description','dell.server.descr[sysDescr]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','48db6854d25c40f2bcbe736cd0d07b38');
INSERT INTO `items` (`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`,`uuid`) values ('36339','20','1.3.6.1.4.1.674.10892.5.1.1.8.0','10438','Dell R740: Firmware version','dell.server.hw.firmware[racFirmwareVersion]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the firmware version of a remote access card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c32ef141053241cfa8874f9f6b87f2a9');
INSERT INTO `items` (`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`,`uuid`) values ('36340','20','1.3.6.1.4.1.674.10892.5.1.3.12.0','10438','Dell R740: Hardware model name','dell.server.hw.model[systemModelName]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the model name of the system.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e786d1813aff4098b8b9f75c57e767a0');
INSERT INTO `items` (`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`,`uuid`) values ('36341','20','1.3.6.1.4.1.674.10892.5.1.3.2.0','10438','Dell R740: Hardware serial number','dell.server.hw.serialnumber[systemServiceTag]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the service tag of the system.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','07581939572b47c9b1752899e100aefb');
INSERT INTO `items` (`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`,`uuid`) values ('36342','20','1.3.6.1.2.1.1.6.0','10438','Dell R740: System location','dell.server.location[sysLocation]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., \'telephone closet, 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','774878145ad344408e2cc2c8d7f1eb3b');
INSERT INTO `items` (`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`,`uuid`) values ('36343','20','1.3.6.1.2.1.1.5.0','10438','Dell R740: System name','dell.server.name[sysName]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node. By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3794e08f1f404a18b834e1134ab4b036');
INSERT INTO `items` (`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`,`uuid`) values ('36344','20','1.3.6.1.2.1.1.2.0','10438','Dell R740: System object ID','dell.server.objectid[sysObjectID]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining \'what kind of box\' is being managed. For example, if vendor \'Flintstones, Inc.\' was assigned the subtree 1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its \'Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4d696ff91efc40dd9df759276cfa239e');
INSERT INTO `items` (`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`,`uuid`) values ('36345','20','1.3.6.1.4.1.674.10892.5.2.1.0','10438','Dell R740: Overall system health status','dell.server.status[globalSystemStatus]','1m','7d','0d','0','3','','','','',NULL,'459','','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the overall rollup status of all components in the system being monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0e55ea34eb984e3d8b0ec22f5a8086d2');
INSERT INTO `items` (`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`,`uuid`) values ('36346','20','1.3.6.1.4.1.674.10892.5.1.3.6.0','10438','Dell R740: Operating system','dell.server.sw.os[systemOSName]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the name of the operating system that the host is running.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','869eb1dae24e44c1acdfb128d6080ecd');
INSERT INTO `items` (`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`,`uuid`) values ('36347','20','1.3.6.1.2.1.1.3.0','10438','Dell R740: Uptime (network)','dell.server.net.uptime[sysUpTime]','1m','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eea538aa7a344a548b713de22c36beaf');
INSERT INTO `items` (`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`,`uuid`) values ('36348','17','','10438','Dell R740: SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','d829666064144c05b45982114d4b62fe');
INSERT INTO `items` (`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`,`uuid`) values ('36349','5','','10438','Dell R740: SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'468','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3d357c53b0774e01b286062d9aa4acbe');
INSERT INTO `items` (`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`,`uuid`) values ('36350','20','discovery[{#BATTERY_NUM},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1,{#BATTERY_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21]','10438','Array controller cache discovery','array.cache.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: IDRAC-MIB-SMIv2::batteryTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f857333511534d31ba074025893d9cc2');
INSERT INTO `items` (`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`,`uuid`) values ('36351','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38,{#CNTLR_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79]','10438','Array controller discovery','array.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: IDRAC-MIB-SMIv2::controllerTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4be96c48d54649f193b9bc561c03c11e');
INSERT INTO `items` (`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`,`uuid`) values ('36352','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.12.1.5,{#FAN_DESCR},1.3.6.1.4.1.674.10892.5.4.700.12.1.8,{#TYPE},1.3.6.1.4.1.674.10892.5.4.700.12.1.7]','10438','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'IDRAC-MIB-SMIv2::coolingDeviceTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','65b22817caf3430795f98dd137660936');
INSERT INTO `items` (`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`,`uuid`) values ('36353','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2]','10438','Physical disk discovery','physicaldisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of physical drive entries IDRAC-MIB-SMIv2::physicalDiskTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fea760333bef4fbdb8162692fdcc5941');
INSERT INTO `items` (`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`,`uuid`) values ('36354','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.600.12.1.5,{#PSU_DESCR},1.3.6.1.4.1.674.10892.5.4.600.12.1.8]','10438','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'IDRAC-MIB-SMIv2::powerSupplyTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2d12dc932f974895a55c16d511487fbb');
INSERT INTO `items` (`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`,`uuid`) values ('36355','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.20.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.674.10892.5.4.700.20.1.8]','10438','Temperature discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Probe Table IDRAC-MIB-SMIv2::temperatureProbeTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','69f433d988ac4cb2ad702d972d640896');
INSERT INTO `items` (`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`,`uuid`) values ('36356','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2]','10438','Virtual disk discovery','virtualdisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'IDRAC-MIB-SMIv2::virtualDiskTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b991939e3f2249e08833bb1c61c036ba');
INSERT INTO `items` (`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`,`uuid`) values ('36357','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX}','10438','Dell R740: {#BATTERY_NAME} Status','dell.server.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'457','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nCurrent state of battery.\r\nPossible values:\r\n1: The current state could not be determined.\r\n2: The battery is operating normally.\r\n3: The battery has failed and needs to be replaced.\r\n4: The battery temperature is high or charge level is depleting.\r\n5: The battery is missing or not detected.\r\n6: The battery is undergoing the re-charge phase.\r\n7: The battery voltage or charge level is below the threshold.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','be4a3804b89640248fdc06dcfaf497db');
INSERT INTO `items` (`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`,`uuid`) values ('36358','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX}','10438','Dell R740: {#CNTLR_NAME} Model','dell.server.hw.diskarray.model[controllerName.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe controller\'s name as represented in Storage Management.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0890ad92aa0543a2b88ab54d87ab2b8d');
INSERT INTO `items` (`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`,`uuid`) values ('36359','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX}','10438','Dell R740: {#CNTLR_NAME} Status','dell.server.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'459','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe status of the controller itself without the propagation of any contained component status.\r\nPossible values:\r\n1: Other\r\n2: Unknown\r\n3: OK\r\n4: Non-critical\r\n5: Critical\r\n6: Non-recoverable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','28e9ac765bc04849bdbbbda006415f9d');
INSERT INTO `items` (`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`,`uuid`) values ('36360','20','1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX}','10438','Dell R740: {#FAN_DESCR} Speed','dell.server.sensor.fan.speed[coolingDeviceReading.{#SNMPINDEX}]','1m','7d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the reading for a cooling device\r\nof subtype other than coolingDeviceSubTypeIsDiscrete. When the value\r\nfor coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, the\r\nvalue returned for this attribute is the speed in RPM or the OFF/ON value\r\nof the cooling device. When the value for coolingDeviceSubType is\r\ncoolingDeviceSubTypeIsDiscrete, a value is not returned for this attribute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bf2405914d064eafb6ee07f143ed8872');
INSERT INTO `items` (`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`,`uuid`) values ('36361','20','1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX}','10438','Dell R740: {#FAN_DESCR} Status','dell.server.sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'462','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the probe status of the cooling device.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f7e5afd5c5d04fa482a1a3b6c55c1fe4');
INSERT INTO `items` (`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`,`uuid`) values ('36362','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX}','10438','Dell R740: {#DISK_NAME} Media type','dell.server.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'461','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe media type of the physical disk. Possible Values:\r\n1: The media type could not be determined.\r\n2: Hard Disk Drive (HDD).\r\n3: Solid State Drive (SSD).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7074a7eee90a405eafdc9cd88f1f013b');
INSERT INTO `items` (`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`,`uuid`) values ('36363','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX}','10438','Dell R740: {#DISK_NAME} Model name','dell.server.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe model number of the physical disk.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','380aaeeabbbd44b59d1afffdfedb0452');
INSERT INTO `items` (`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`,`uuid`) values ('36364','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX}','10438','Dell R740: {#DISK_NAME} Serial number','dell.server.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe physical disk\'s unique identification number from the manufacturer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f76c78de6bde438f8764165f5bae69ed');
INSERT INTO `items` (`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`,`uuid`) values ('36365','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX}','10438','Dell R740: {#DISK_NAME} Size','dell.server.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}]','1m','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe size of the physical disk in megabytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7c425c1e8ce44e649afeef826c40fcf7');
INSERT INTO `items` (`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`,`uuid`) values ('36366','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX}','10438','Dell R740: {#DISK_NAME} S.M.A.R.T. Status','dell.server.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'458','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nIndicates whether the physical disk has received a predictive failure alert.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cac85f9f55a64fe79f393b5b738e2ec8');
INSERT INTO `items` (`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`,`uuid`) values ('36367','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX}','10438','Dell R740: {#DISK_NAME} Status','dell.server.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'460','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe status of the physical disk itself without the propagation of any contained component status.\r\nPossible values:\r\n1: Other\r\n2: Unknown\r\n3: OK\r\n4: Non-critical\r\n5: Critical\r\n6: Non-recoverable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','72672e6e76c24b469dbf296389d7a285');
INSERT INTO `items` (`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`,`uuid`) values ('36368','20','1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX}','10438','Dell R740: {#PSU_DESCR}','dell.server.sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'459','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\n0600.0012.0001.0005 This attribute defines the status of the power supply.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e15cbbcf34d43a2bb55a46705fa44a1');
INSERT INTO `items` (`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`,`uuid`) values ('36369','20','1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX}','10438','Dell R740: {#SENSOR_LOCALE} Status','dell.server.sensor.temp.status[temperatureProbeStatus.{#SNMPINDEX}]','1m','7d','0d','0','0','','','','',NULL,'462','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the probe status of the temperature probe.\r\nPossible values:\r\nother(1), -- probe status is not one of the following:\r\nunknown(2), -- probe status is unknown (not known or monitored)\r\nok(3), -- probe is reporting a value within the thresholds\r\nnonCriticalUpper(4), -- probe has crossed the upper noncritical threshold\r\ncriticalUpper(5), -- probe has crossed the upper critical threshold\r\nnonRecoverableUpper(6), -- probe has crossed the upper non-recoverable threshold\r\nnonCriticalLower(7), -- probe has crossed the lower noncritical threshold\r\ncriticalLower(8), -- probe has crossed the lower critical threshold\r\nnonRecoverableLower(9), -- probe has crossed the lower non-recoverable threshold\r\nfailed(10) -- probe is not functional','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1630c8d0f27446a485eb317005dd391f');
INSERT INTO `items` (`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`,`uuid`) values ('36370','20','1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX}','10438','Dell R740: {#SENSOR_LOCALE} Value','dell.server.sensor.temp.value[temperatureProbeReading.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete, the value returned for this attribute is the temperature that the probe is reading in Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a87195afc4704b1db8b32bcbf5e6c8a9');
INSERT INTO `items` (`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`,`uuid`) values ('36371','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX}','10438','Dell R740: {#DISK_NAME} Layout type','dell.server.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'463','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe virtual disk\'s RAID type.\r\nPossible values:\r\n1: Not one of the following\r\n2: RAID-0\r\n3: RAID-1\r\n4: RAID-5\r\n5: RAID-6\r\n6: RAID-10\r\n7: RAID-50\r\n8: RAID-60\r\n9: Concatenated RAID 1\r\n10: Concatenated RAID 5','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e55b1c2d1b7d498b9a46e483a16fc6dc');
INSERT INTO `items` (`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`,`uuid`) values ('36372','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX}','10438','Dell R740: {#DISK_NAME} Read policy','dell.server.hw.virtualdisk.readpolicy[virtualDiskReadPolicy.{#SNMPINDEX}]','1h','2w','365d','0','3','','','','',NULL,'465','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe read policy used by the controller for read operations on this virtual disk.\r\nPossible values:\r\n1: No Read Ahead.\r\n2: Read Ahead.\r\n3: Adaptive Read Ahead.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4c7c8f0890cd40a9a86afd50dc1f4cd8');
INSERT INTO `items` (`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`,`uuid`) values ('36373','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX}','10438','Dell R740: {#DISK_NAME} Size','dell.server.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}]','1m','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe size of the virtual disk in megabytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ccd5cfbb6e7e419c9169e6ef28c722f8');
INSERT INTO `items` (`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`,`uuid`) values ('36374','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX}','10438','Dell R740: {#DISK_NAME} Current state','dell.server.hw.virtualdisk.state[virtualDiskOperationalState.{#SNMPINDEX}]','3m','2w','365d','0','3','','','','',NULL,'464','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe state of the virtual disk when there are progressive operations ongoing.\r\nPossible values:\r\n1: There is no active operation running.\r\n2: The virtual disk configuration has changed. The physical disks included in the virtual disk are being modified to support the new configuration.\r\n3: A Consistency Check (CC) is being performed on the virtual disk.\r\n4: The virtual disk is being initialized.\r\n5: BackGround Initialization (BGI) is being performed on the virtual disk.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6fa2291e865246e7ae786ed666f442b8');
INSERT INTO `items` (`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`,`uuid`) values ('36375','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX}','10438','Dell R740: {#DISK_NAME} Status','dell.server.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'466','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe current state of this virtual disk (which includes any member physical disks.)\r\nPossible states:\r\n1: The current state could not be determined.\r\n2: The virtual disk is operating normally or optimally.\r\n3: The virtual disk has encountered a failure. Data on the disk is lost or is about to be lost.\r\n4: The virtual disk encountered a failure with one or all of the constituent redundant physical disks.\r\nThe data on the virtual disk might no longer be fault tolerant.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9b9d9e1d8999455ea8d70834164ecff0');
INSERT INTO `items` (`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`,`uuid`) values ('36376','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX}','10438','Dell R740: {#DISK_NAME} Write policy','dell.server.hw.virtualdisk.writepolicy[virtualDiskWritePolicy.{#SNMPINDEX}]','1h','2w','365d','0','3','','','','',NULL,'467','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe write policy used by the controller for write operations on this virtual disk.\r\nPossible values:\r\n1: Write Through.\r\n2: Write Back.\r\n3: Force Write Back.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8dc6e7a46374409a9f614b854d2ee503');
INSERT INTO `items` (`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`,`uuid`) values ('36377','19','','10439','Dell R820: Get system','dell.server.system.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','0',NULL,'Returns the metrics of a system.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Systems/System.Embedded.1','','','200','1','0','','0','0','0','0','0','0','0','5c200cb93c0a4238b375820504e4fc29');
INSERT INTO `items` (`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`,`uuid`) values ('36378','3','','10439','Dell R820: Redfish API','net.tcp.service[https]','1m','7d','365d','0','3','','','','',NULL,'478','','','0','','','','','0',NULL,'The availability of Redfish API on the server.\r\nPossible values:\r\n 0 unavailable\r\n 1 available','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','07916f12a1804caf885a2495849a7227');
INSERT INTO `items` (`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`,`uuid`) values ('36383','19','','10439','Array controller cache discovery','array.cache.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of a cache of disk array controllers.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Systems/System.Embedded.1/Storage','','','200','1','0','','0','0','0','0','0','0','0','ae4a1140e51042e2b674a6d838c780fc');
INSERT INTO `items` (`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`,`uuid`) values ('36384','19','','10439','Array controller discovery','array.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of disk array controllers.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Systems/System.Embedded.1/Storage','','','200','1','0','','0','0','0','0','0','0','0','a03014b9b6564ffcb217fb9e98569478');
INSERT INTO `items` (`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`,`uuid`) values ('36385','19','','10439','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of FAN sensors.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Chassis/System.Embedded.1/Sensors','','','200','1','0','','0','0','0','0','0','0','0','6d760df8524144dba56d089a839830db');
INSERT INTO `items` (`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`,`uuid`) values ('36386','19','','10439','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'The NetworkInterface schema describes links to the NetworkAdapter and represents the functionality available to the containing system.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Chassis/System.Embedded.1/NetworkAdapters','','','200','1','0','','0','0','0','0','0','0','0','b092dbcff40541ac9f045add1f9e60e7');
INSERT INTO `items` (`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`,`uuid`) values ('36387','19','','10439','Physical disk discovery','physicaldisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of physical disks.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Systems/System.Embedded.1/Storage','','','200','1','0','','0','0','0','0','0','0','0','1ae2577ac234414587818746c1cd2f32');
INSERT INTO `items` (`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`,`uuid`) values ('36388','19','','10439','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of PSU sensors.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Chassis/System.Embedded.1/Sensors','','','200','1','0','','0','0','0','0','0','0','0','d751a8f649dc48a0a7d29e7d85f73c28');
INSERT INTO `items` (`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`,`uuid`) values ('36389','19','','10439','Temperature discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of temperature sensors.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Chassis/System.Embedded.1/Sensors','','','200','1','0','','0','0','0','0','0','0','0','f6644b3f5898447ea2d776becef3d179');
INSERT INTO `items` (`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`,`uuid`) values ('36390','19','','10439','Virtual disk discovery','virtualdisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of virtual disks.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Systems/System.Embedded.1/Storage','','','200','1','0','','0','0','0','0','0','0','0','be1c1a6443db4d128702c438e729478a');
INSERT INTO `items` (`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`,`uuid`) values ('36391','19','','10439','Dell R820: {#BATTERY_NAME} Status','dell.server.hw.diskarray.cache.battery.status[{#BATTERY_NAME}]','1m','7d','0','0','1','','','','',NULL,'469','','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','6a87494361334ea68af0eef51a758bcd');
INSERT INTO `items` (`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`,`uuid`) values ('36392','19','','10439','Dell R820: {#CNTLR_NAME} in slot {#SLOT} Status','dell.server.hw.diskarray.status[{#CNTLR_NAME}{#SLOT}]','1m','7d','0','0','1','','','','',NULL,'470','','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','340811b98be349c0ac3b37a7641c91ba');
INSERT INTO `items` (`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`,`uuid`) values ('36393','19','','10439','Dell R820: {#SENSOR_NAME} Get sensor','dell.server.sensor.fan.get[{#SENSOR_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a sensor.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','ea02aba84d344ffdb1f8e4d2ef8835a9');
INSERT INTO `items` (`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`,`uuid`) values ('36394','19','','10439','Dell R820: {#IFNAME} Get interface','dell.server.net.if.get[{#IFNAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a network interface.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','e752dd8f1f9f471fa6d00652d29e97d3');
INSERT INTO `items` (`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`,`uuid`) values ('36395','19','','10439','Dell R820: {#DISK_NAME} Get disk','dell.server.hw.physicaldisk.get[{#DISK_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a physical disk.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','beefa604f78340519af8a1bb5785f2f8');
INSERT INTO `items` (`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`,`uuid`) values ('36396','19','','10439','Dell R820: {#SENSOR_NAME} Get sensor','dell.server.sensor.psu.get[{#SENSOR_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a sensor.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','fdd22fe0769f488cbbeb8f8020f4b6d5');
INSERT INTO `items` (`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`,`uuid`) values ('36397','19','','10439','Dell R820: {#SENSOR_NAME} Get sensor','dell.server.sensor.temp.get[{#SENSOR_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a sensor.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','7d9d889540bf4db2bb75720e1e485a48');
INSERT INTO `items` (`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`,`uuid`) values ('36398','19','','10439','Dell R820: {#DISK_NAME} Get disk','dell.server.hw.virtualdisk.get[{#DISK_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a virtual disk.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','1b779678ce274792b860e89d825a75d8');
INSERT INTO `items` (`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`,`uuid`) values ('36419','20','1.3.6.1.2.1.1.4.0','10440','Dell R820: System contact details','dell.server.contact[sysContact]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','0c1af8afd1614bc3b8800a82d0a6284c');
INSERT INTO `items` (`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`,`uuid`) values ('36420','20','1.3.6.1.2.1.1.1.0','10440','Dell R820: System description','dell.server.descr[sysDescr]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','683f8893691545e196fe29271c1891a8');
INSERT INTO `items` (`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`,`uuid`) values ('36421','20','1.3.6.1.4.1.674.10892.5.1.1.8.0','10440','Dell R820: Firmware version','dell.server.hw.firmware[racFirmwareVersion]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the firmware version of a remote access card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','13dd8f4372454b37a20944930ce6576b');
INSERT INTO `items` (`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`,`uuid`) values ('36422','20','1.3.6.1.4.1.674.10892.5.1.3.12.0','10440','Dell R820: Hardware model name','dell.server.hw.model[systemModelName]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the model name of the system.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5d5c17d601b844bdb15cbc416f2ef51f');
INSERT INTO `items` (`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`,`uuid`) values ('36423','20','1.3.6.1.4.1.674.10892.5.1.3.2.0','10440','Dell R820: Hardware serial number','dell.server.hw.serialnumber[systemServiceTag]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the service tag of the system.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16a277126bd743b4927ab1ffec1eba49');
INSERT INTO `items` (`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`,`uuid`) values ('36424','20','1.3.6.1.2.1.1.6.0','10440','Dell R820: System location','dell.server.location[sysLocation]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., \'telephone closet, 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','6f4584e8a6c844c8aeae104acd7bd183');
INSERT INTO `items` (`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`,`uuid`) values ('36425','20','1.3.6.1.2.1.1.5.0','10440','Dell R820: System name','dell.server.name[sysName]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node. By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','55f5f0b14f0946a38675576e432b8b9a');
INSERT INTO `items` (`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`,`uuid`) values ('36426','20','1.3.6.1.2.1.1.2.0','10440','Dell R820: System object ID','dell.server.objectid[sysObjectID]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining \'what kind of box\' is being managed. For example, if vendor \'Flintstones, Inc.\' was assigned the subtree 1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its \'Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0261571f73a04d9497414e5f0426cf40');
INSERT INTO `items` (`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`,`uuid`) values ('36427','20','1.3.6.1.4.1.674.10892.5.2.1.0','10440','Dell R820: Overall system health status','dell.server.status[globalSystemStatus]','1m','7d','0d','0','3','','','','',NULL,'481','','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the overall rollup status of all components in the system being monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','25d3060aadfd471f8b7f41ad5a9e32de');
INSERT INTO `items` (`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`,`uuid`) values ('36428','20','1.3.6.1.4.1.674.10892.5.1.3.6.0','10440','Dell R820: Operating system','dell.server.sw.os[systemOSName]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the name of the operating system that the host is running.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4b628614ee35470caec5847c027d859a');
INSERT INTO `items` (`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`,`uuid`) values ('36429','20','1.3.6.1.2.1.1.3.0','10440','Dell R820: Uptime (network)','dell.server.net.uptime[sysUpTime]','1m','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','090f33ba9d0740f9a2c1709d6a4c2a75');
INSERT INTO `items` (`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`,`uuid`) values ('36430','17','','10440','Dell R820: SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','d8d796228d244407b9863ee4304b029a');
INSERT INTO `items` (`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`,`uuid`) values ('36431','5','','10440','Dell R820: SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'490','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c783af10c24e415b84774f74af6da797');
INSERT INTO `items` (`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`,`uuid`) values ('36432','20','discovery[{#BATTERY_NUM},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1,{#BATTERY_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21]','10440','Array controller cache discovery','array.cache.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: IDRAC-MIB-SMIv2::batteryTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','73377d2d3eb2404799dc1b0f9e749404');
INSERT INTO `items` (`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`,`uuid`) values ('36433','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38,{#CNTLR_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79]','10440','Array controller discovery','array.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: IDRAC-MIB-SMIv2::controllerTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2e9bcfcead13476988199706245b8a9d');
INSERT INTO `items` (`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`,`uuid`) values ('36434','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.12.1.5,{#FAN_DESCR},1.3.6.1.4.1.674.10892.5.4.700.12.1.8,{#TYPE},1.3.6.1.4.1.674.10892.5.4.700.12.1.7]','10440','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'IDRAC-MIB-SMIv2::coolingDeviceTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','48e74d0a9b5f4462b64995d17f23fe59');
INSERT INTO `items` (`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`,`uuid`) values ('36435','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2]','10440','Physical disk discovery','physicaldisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of physical drive entries IDRAC-MIB-SMIv2::physicalDiskTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','887eeb6cf32049268ad707197094b55c');
INSERT INTO `items` (`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`,`uuid`) values ('36436','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.600.12.1.5,{#PSU_DESCR},1.3.6.1.4.1.674.10892.5.4.600.12.1.8]','10440','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'IDRAC-MIB-SMIv2::powerSupplyTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','852e7a5cd38e4e57b95d224399f46dfc');
INSERT INTO `items` (`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`,`uuid`) values ('36437','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.20.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.674.10892.5.4.700.20.1.8]','10440','Temperature discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Probe Table IDRAC-MIB-SMIv2::temperatureProbeTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','20bbe037e9a74cd0a19b38e4032c4842');
INSERT INTO `items` (`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`,`uuid`) values ('36438','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2]','10440','Virtual disk discovery','virtualdisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'IDRAC-MIB-SMIv2::virtualDiskTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','04686c5d20454e0a9751a8432135c399');
INSERT INTO `items` (`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`,`uuid`) values ('36439','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX}','10440','Dell R820: {#BATTERY_NAME} Status','dell.server.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'479','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nCurrent state of battery.\r\nPossible values:\r\n1: The current state could not be determined.\r\n2: The battery is operating normally.\r\n3: The battery has failed and needs to be replaced.\r\n4: The battery temperature is high or charge level is depleting.\r\n5: The battery is missing or not detected.\r\n6: The battery is undergoing the re-charge phase.\r\n7: The battery voltage or charge level is below the threshold.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b142e451fead4672ba0d2b455a102416');
INSERT INTO `items` (`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`,`uuid`) values ('36440','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX}','10440','Dell R820: {#CNTLR_NAME} Model','dell.server.hw.diskarray.model[controllerName.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe controller\'s name as represented in Storage Management.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e50a32f54b6a4d54becf7c9939a6007e');
INSERT INTO `items` (`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`,`uuid`) values ('36441','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX}','10440','Dell R820: {#CNTLR_NAME} Status','dell.server.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'481','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe status of the controller itself without the propagation of any contained component status.\r\nPossible values:\r\n1: Other\r\n2: Unknown\r\n3: OK\r\n4: Non-critical\r\n5: Critical\r\n6: Non-recoverable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f79dda7db0e547b8997c79c336d9d02e');
INSERT INTO `items` (`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`,`uuid`) values ('36442','20','1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX}','10440','Dell R820: {#FAN_DESCR} Speed','dell.server.sensor.fan.speed[coolingDeviceReading.{#SNMPINDEX}]','1m','7d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the reading for a cooling device\r\nof subtype other than coolingDeviceSubTypeIsDiscrete. When the value\r\nfor coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, the\r\nvalue returned for this attribute is the speed in RPM or the OFF/ON value\r\nof the cooling device. When the value for coolingDeviceSubType is\r\ncoolingDeviceSubTypeIsDiscrete, a value is not returned for this attribute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b53b770508749dcaac7ef348dc09f00');
INSERT INTO `items` (`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`,`uuid`) values ('36443','20','1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX}','10440','Dell R820: {#FAN_DESCR} Status','dell.server.sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'484','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the probe status of the cooling device.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f93dd5111b2048cca8e6e8f56de08bdb');
INSERT INTO `items` (`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`,`uuid`) values ('36444','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX}','10440','Dell R820: {#DISK_NAME} Media type','dell.server.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'483','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe media type of the physical disk. Possible Values:\r\n1: The media type could not be determined.\r\n2: Hard Disk Drive (HDD).\r\n3: Solid State Drive (SSD).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da742cf6e1484ff9a8413875804d7526');
INSERT INTO `items` (`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`,`uuid`) values ('36445','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX}','10440','Dell R820: {#DISK_NAME} Model name','dell.server.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe model number of the physical disk.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4835203bcd3c4593b5ea7eeb305d5113');
INSERT INTO `items` (`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`,`uuid`) values ('36446','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX}','10440','Dell R820: {#DISK_NAME} Serial number','dell.server.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe physical disk\'s unique identification number from the manufacturer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1e9bdf7d87154337bee56afdc90f8bb8');
INSERT INTO `items` (`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`,`uuid`) values ('36447','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX}','10440','Dell R820: {#DISK_NAME} Size','dell.server.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}]','1m','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe size of the physical disk in megabytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ce1d44085834444b9626aa4a2860f6ba');
INSERT INTO `items` (`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`,`uuid`) values ('36448','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX}','10440','Dell R820: {#DISK_NAME} S.M.A.R.T. Status','dell.server.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'480','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nIndicates whether the physical disk has received a predictive failure alert.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','03a477755abd4e7d953ecd73c7aded5d');
INSERT INTO `items` (`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`,`uuid`) values ('36449','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX}','10440','Dell R820: {#DISK_NAME} Status','dell.server.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'482','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe status of the physical disk itself without the propagation of any contained component status.\r\nPossible values:\r\n1: Other\r\n2: Unknown\r\n3: OK\r\n4: Non-critical\r\n5: Critical\r\n6: Non-recoverable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','558251231b9d45d692d12cea9a29f56a');
INSERT INTO `items` (`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`,`uuid`) values ('36450','20','1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX}','10440','Dell R820: {#PSU_DESCR}','dell.server.sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'481','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\n0600.0012.0001.0005 This attribute defines the status of the power supply.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4b19b4fee82644e6a0540aae1590c965');
INSERT INTO `items` (`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`,`uuid`) values ('36451','20','1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX}','10440','Dell R820: {#SENSOR_LOCALE} Status','dell.server.sensor.temp.status[temperatureProbeStatus.{#SNMPINDEX}]','1m','7d','0d','0','0','','','','',NULL,'484','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the probe status of the temperature probe.\r\nPossible values:\r\nother(1), -- probe status is not one of the following:\r\nunknown(2), -- probe status is unknown (not known or monitored)\r\nok(3), -- probe is reporting a value within the thresholds\r\nnonCriticalUpper(4), -- probe has crossed the upper noncritical threshold\r\ncriticalUpper(5), -- probe has crossed the upper critical threshold\r\nnonRecoverableUpper(6), -- probe has crossed the upper non-recoverable threshold\r\nnonCriticalLower(7), -- probe has crossed the lower noncritical threshold\r\ncriticalLower(8), -- probe has crossed the lower critical threshold\r\nnonRecoverableLower(9), -- probe has crossed the lower non-recoverable threshold\r\nfailed(10) -- probe is not functional','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','88eb37d3574c4c2195301cdbbf9c100c');
INSERT INTO `items` (`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`,`uuid`) values ('36452','20','1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX}','10440','Dell R820: {#SENSOR_LOCALE} Value','dell.server.sensor.temp.value[temperatureProbeReading.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete, the value returned for this attribute is the temperature that the probe is reading in Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3b9e0ab38ca04a0fb398b1b8d1b8ea1f');
INSERT INTO `items` (`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`,`uuid`) values ('36453','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX}','10440','Dell R820: {#DISK_NAME} Layout type','dell.server.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'485','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe virtual disk\'s RAID type.\r\nPossible values:\r\n1: Not one of the following\r\n2: RAID-0\r\n3: RAID-1\r\n4: RAID-5\r\n5: RAID-6\r\n6: RAID-10\r\n7: RAID-50\r\n8: RAID-60\r\n9: Concatenated RAID 1\r\n10: Concatenated RAID 5','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','154fcb823eee4091a1dfd9b722865f17');
INSERT INTO `items` (`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`,`uuid`) values ('36454','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX}','10440','Dell R820: {#DISK_NAME} Read policy','dell.server.hw.virtualdisk.readpolicy[virtualDiskReadPolicy.{#SNMPINDEX}]','1h','2w','365d','0','3','','','','',NULL,'487','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe read policy used by the controller for read operations on this virtual disk.\r\nPossible values:\r\n1: No Read Ahead.\r\n2: Read Ahead.\r\n3: Adaptive Read Ahead.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','66a948daf88b4df990062176b47a158b');
INSERT INTO `items` (`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`,`uuid`) values ('36455','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX}','10440','Dell R820: {#DISK_NAME} Size','dell.server.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}]','1m','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe size of the virtual disk in megabytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c0c4bb68166544af806b7658902f63c9');
INSERT INTO `items` (`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`,`uuid`) values ('36456','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX}','10440','Dell R820: {#DISK_NAME} Current state','dell.server.hw.virtualdisk.state[virtualDiskOperationalState.{#SNMPINDEX}]','3m','2w','365d','0','3','','','','',NULL,'486','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe state of the virtual disk when there are progressive operations ongoing.\r\nPossible values:\r\n1: There is no active operation running.\r\n2: The virtual disk configuration has changed. The physical disks included in the virtual disk are being modified to support the new configuration.\r\n3: A Consistency Check (CC) is being performed on the virtual disk.\r\n4: The virtual disk is being initialized.\r\n5: BackGround Initialization (BGI) is being performed on the virtual disk.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','30695b02e4454b30933f12819180a9b0');
INSERT INTO `items` (`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`,`uuid`) values ('36457','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX}','10440','Dell R820: {#DISK_NAME} Status','dell.server.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'488','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe current state of this virtual disk (which includes any member physical disks.)\r\nPossible states:\r\n1: The current state could not be determined.\r\n2: The virtual disk is operating normally or optimally.\r\n3: The virtual disk has encountered a failure. Data on the disk is lost or is about to be lost.\r\n4: The virtual disk encountered a failure with one or all of the constituent redundant physical disks.\r\nThe data on the virtual disk might no longer be fault tolerant.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dc25467bcd3c43bb93ccab52d51f5dee');
INSERT INTO `items` (`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`,`uuid`) values ('36458','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX}','10440','Dell R820: {#DISK_NAME} Write policy','dell.server.hw.virtualdisk.writepolicy[virtualDiskWritePolicy.{#SNMPINDEX}]','1h','2w','365d','0','3','','','','',NULL,'489','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe write policy used by the controller for write operations on this virtual disk.\r\nPossible values:\r\n1: Write Through.\r\n2: Write Back.\r\n3: Force Write Back.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fba006c757214d84ac9efedeecadf302');
INSERT INTO `items` (`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`,`uuid`) values ('36459','19','','10441','Dell R840: Get system','dell.server.system.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','0',NULL,'Returns the metrics of a system.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Systems/System.Embedded.1','','','200','1','0','','0','0','0','0','0','0','0','b7f3a7fba3924e7ab12d692b62dccda5');
INSERT INTO `items` (`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`,`uuid`) values ('36460','3','','10441','Dell R840: Redfish API','net.tcp.service[https]','1m','7d','365d','0','3','','','','',NULL,'491','','','0','','','','','0',NULL,'The availability of Redfish API on the server.\r\nPossible values:\r\n 0 unavailable\r\n 1 available','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c98a5cd525ea4a93a9c48ba4a817a434');
INSERT INTO `items` (`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`,`uuid`) values ('36465','19','','10441','Array controller cache discovery','array.cache.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of a cache of disk array controllers.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Systems/System.Embedded.1/Storage','','','200','1','0','','0','0','0','0','0','0','0','c77e51cd40324a9f98f6c42127fb0503');
INSERT INTO `items` (`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`,`uuid`) values ('36466','19','','10441','Array controller discovery','array.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of disk array controllers.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Systems/System.Embedded.1/Storage','','','200','1','0','','0','0','0','0','0','0','0','8932e168a4344c2fa3af9bc936d88af8');
INSERT INTO `items` (`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`,`uuid`) values ('36467','19','','10441','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of FAN sensors.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Chassis/System.Embedded.1/Sensors','','','200','1','0','','0','0','0','0','0','0','0','1056b450faa84dc0ae8fda6d4e073e7c');
INSERT INTO `items` (`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`,`uuid`) values ('36468','19','','10441','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'The NetworkInterface schema describes links to the NetworkAdapter and represents the functionality available to the containing system.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Chassis/System.Embedded.1/NetworkAdapters','','','200','1','0','','0','0','0','0','0','0','0','1bf642f354a347c5b8a3d9f305d878ed');
INSERT INTO `items` (`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`,`uuid`) values ('36469','19','','10441','Physical disk discovery','physicaldisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of physical disks.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Systems/System.Embedded.1/Storage','','','200','1','0','','0','0','0','0','0','0','0','0fa27e14a8714ec089100bec0d91a64a');
INSERT INTO `items` (`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`,`uuid`) values ('36470','19','','10441','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of PSU sensors.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Chassis/System.Embedded.1/Sensors','','','200','1','0','','0','0','0','0','0','0','0','c1d96429dee84a9b940c08f93e91bae9');
INSERT INTO `items` (`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`,`uuid`) values ('36471','19','','10441','Temperature discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of temperature sensors.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Chassis/System.Embedded.1/Sensors','','','200','1','0','','0','0','0','0','0','0','0','bc09dfd3ae534562ab9dc85fb55ebc66');
INSERT INTO `items` (`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`,`uuid`) values ('36472','19','','10441','Virtual disk discovery','virtualdisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','1',NULL,'Discovery of virtual disks.','0','30d','0','',NULL,'3s','{$API.URL}/redfish/v1/Systems/System.Embedded.1/Storage','','','200','1','0','','0','0','0','0','0','0','0','9b38e31e898d49e783e8684bcdddcd3e');
INSERT INTO `items` (`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`,`uuid`) values ('36473','19','','10441','Dell R840: {#BATTERY_NAME} Status','dell.server.hw.diskarray.cache.battery.status[{#BATTERY_NAME}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','12b53eaff1194969addf13ae2d47fbdf');
INSERT INTO `items` (`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`,`uuid`) values ('36474','19','','10441','Dell R840: {#CNTLR_NAME} in slot {#SLOT} Status','dell.server.hw.diskarray.status[{#CNTLR_NAME}{#SLOT}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','e679f6d481ac411fa6d5ffd7d8293e14');
INSERT INTO `items` (`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`,`uuid`) values ('36475','19','','10441','Dell R840: {#SENSOR_NAME} Get sensor','dell.server.sensor.fan.get[{#SENSOR_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a sensor.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','2099dd04605646ecacaba58e1defa4f2');
INSERT INTO `items` (`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`,`uuid`) values ('36476','19','','10441','Dell R840: {#IFNAME} Get interface','dell.server.net.if.get[{#IFNAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a network interface.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','412f27eb6d014433a98c0b1eeb5dacb7');
INSERT INTO `items` (`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`,`uuid`) values ('36477','19','','10441','Dell R840: {#DISK_NAME} Get disk','dell.server.hw.physicaldisk.get[{#DISK_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a physical disk.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','429273af827045d1b4914ab41bcefcf1');
INSERT INTO `items` (`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`,`uuid`) values ('36478','19','','10441','Dell R840: {#SENSOR_NAME} Get sensor','dell.server.sensor.psu.get[{#SENSOR_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a sensor.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','74024c4d58b64da18551a96c9bcf8b0b');
INSERT INTO `items` (`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`,`uuid`) values ('36479','19','','10441','Dell R840: {#SENSOR_NAME} Get sensor','dell.server.sensor.temp.get[{#SENSOR_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a sensor.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','a6dec856a1394b62b31897d697e9c0ed');
INSERT INTO `items` (`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`,`uuid`) values ('36480','19','','10441','Dell R840: {#DISK_NAME} Get disk','dell.server.hw.virtualdisk.get[{#DISK_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$API.USER}','{$API.PASSWORD}','','','2',NULL,'Returns the metrics of a virtual disk.','0','30d','0','',NULL,'3s','{$API.URL}{#ODATA}','','','200','1','0','','0','0','0','0','0','0','0','ef158ff3dd4644c3b00ead75590d4a22');
INSERT INTO `items` (`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`,`uuid`) values ('36501','20','1.3.6.1.2.1.1.4.0','10442','Dell R840: System contact details','dell.server.contact[sysContact]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','ec1d2a94f64a4efe9970eab633714fc3');
INSERT INTO `items` (`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`,`uuid`) values ('36502','20','1.3.6.1.2.1.1.1.0','10442','Dell R840: System description','dell.server.descr[sysDescr]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc2480186fee4b81b2c6f2094b772642');
INSERT INTO `items` (`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`,`uuid`) values ('36503','20','1.3.6.1.4.1.674.10892.5.1.1.8.0','10442','Dell R840: Firmware version','dell.server.hw.firmware[racFirmwareVersion]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the firmware version of a remote access card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','090e35f3537244fb92ddc85d1afc757f');
INSERT INTO `items` (`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`,`uuid`) values ('36504','20','1.3.6.1.4.1.674.10892.5.1.3.12.0','10442','Dell R840: Hardware model name','dell.server.hw.model[systemModelName]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the model name of the system.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6ddb21512bc84a0698b0b52c6b43a670');
INSERT INTO `items` (`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`,`uuid`) values ('36505','20','1.3.6.1.4.1.674.10892.5.1.3.2.0','10442','Dell R840: Hardware serial number','dell.server.hw.serialnumber[systemServiceTag]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the service tag of the system.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ecbbcab2c41e4ce7aeafb08229102365');
INSERT INTO `items` (`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`,`uuid`) values ('36506','20','1.3.6.1.2.1.1.6.0','10442','Dell R840: System location','dell.server.location[sysLocation]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., \'telephone closet, 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','500dc5a80d934ae78d4f088d8120b7cc');
INSERT INTO `items` (`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`,`uuid`) values ('36507','20','1.3.6.1.2.1.1.5.0','10442','Dell R840: System name','dell.server.name[sysName]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node. By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4c32406c2d1046d9bb33c3c0844198d7');
INSERT INTO `items` (`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`,`uuid`) values ('36508','20','1.3.6.1.2.1.1.2.0','10442','Dell R840: System object ID','dell.server.objectid[sysObjectID]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining \'what kind of box\' is being managed. For example, if vendor \'Flintstones, Inc.\' was assigned the subtree 1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its \'Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','761781c399a14befb3eeed3af4039b77');
INSERT INTO `items` (`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`,`uuid`) values ('36509','20','1.3.6.1.4.1.674.10892.5.2.1.0','10442','Dell R840: Overall system health status','dell.server.status[globalSystemStatus]','1m','7d','0d','0','3','','','','',NULL,'494','','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the overall rollup status of all components in the system being monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eba6c6f1e7c44ed8a85288ed5ea9f193');
INSERT INTO `items` (`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`,`uuid`) values ('36510','20','1.3.6.1.4.1.674.10892.5.1.3.6.0','10442','Dell R840: Operating system','dell.server.sw.os[systemOSName]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the name of the operating system that the host is running.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a33de4af38042f3bd27066a519f9996');
INSERT INTO `items` (`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`,`uuid`) values ('36511','20','1.3.6.1.2.1.1.3.0','10442','Dell R840: Uptime (network)','dell.server.net.uptime[sysUpTime]','1m','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','afb22553880b4e85a3cdc910413cc26d');
INSERT INTO `items` (`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`,`uuid`) values ('36512','17','','10442','Dell R840: SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','1b1f301b2c5f4e5d8fc5e8dcfad63be0');
INSERT INTO `items` (`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`,`uuid`) values ('36513','5','','10442','Dell R840: SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'503','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a988dcd503a54238815cb57aac22a991');
INSERT INTO `items` (`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`,`uuid`) values ('36514','20','discovery[{#BATTERY_NUM},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1,{#BATTERY_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21]','10442','Array controller cache discovery','array.cache.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: IDRAC-MIB-SMIv2::batteryTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2e089f4c080945289f60bdc814ef743b');
INSERT INTO `items` (`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`,`uuid`) values ('36515','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38,{#CNTLR_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79]','10442','Array controller discovery','array.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: IDRAC-MIB-SMIv2::controllerTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff1cee07cb854136929b15e7084e5cfe');
INSERT INTO `items` (`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`,`uuid`) values ('36516','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.12.1.5,{#FAN_DESCR},1.3.6.1.4.1.674.10892.5.4.700.12.1.8,{#TYPE},1.3.6.1.4.1.674.10892.5.4.700.12.1.7]','10442','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'IDRAC-MIB-SMIv2::coolingDeviceTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b1f1c88993844c0c8e90a08a7e8aff9b');
INSERT INTO `items` (`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`,`uuid`) values ('36517','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2]','10442','Physical disk discovery','physicaldisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of physical drive entries IDRAC-MIB-SMIv2::physicalDiskTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a444b673d69d4ea7892e6aa28bc2ec9d');
INSERT INTO `items` (`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`,`uuid`) values ('36518','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.600.12.1.5,{#PSU_DESCR},1.3.6.1.4.1.674.10892.5.4.600.12.1.8]','10442','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'IDRAC-MIB-SMIv2::powerSupplyTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9021b849eb1240d2bf78e9aa5b72793b');
INSERT INTO `items` (`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`,`uuid`) values ('36519','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.20.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.674.10892.5.4.700.20.1.8]','10442','Temperature discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Probe Table IDRAC-MIB-SMIv2::temperatureProbeTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eea494f12aea4e39ae4337c8119af079');
INSERT INTO `items` (`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`,`uuid`) values ('36520','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2]','10442','Virtual disk discovery','virtualdisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'IDRAC-MIB-SMIv2::virtualDiskTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7db9cdc32ed841b5aac7cdc456be8732');
INSERT INTO `items` (`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`,`uuid`) values ('36521','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX}','10442','Dell R840: {#BATTERY_NAME} Status','dell.server.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'492','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nCurrent state of battery.\r\nPossible values:\r\n1: The current state could not be determined.\r\n2: The battery is operating normally.\r\n3: The battery has failed and needs to be replaced.\r\n4: The battery temperature is high or charge level is depleting.\r\n5: The battery is missing or not detected.\r\n6: The battery is undergoing the re-charge phase.\r\n7: The battery voltage or charge level is below the threshold.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','378e8705311b451a902ffa6fd874d3db');
INSERT INTO `items` (`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`,`uuid`) values ('36522','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX}','10442','Dell R840: {#CNTLR_NAME} Model','dell.server.hw.diskarray.model[controllerName.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe controller\'s name as represented in Storage Management.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','30bd55f2bad04fb6892e9be8a2003897');
INSERT INTO `items` (`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`,`uuid`) values ('36523','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX}','10442','Dell R840: {#CNTLR_NAME} Status','dell.server.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'494','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe status of the controller itself without the propagation of any contained component status.\r\nPossible values:\r\n1: Other\r\n2: Unknown\r\n3: OK\r\n4: Non-critical\r\n5: Critical\r\n6: Non-recoverable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ac7263337f74fdbad25f33d2ab1bcb4');
INSERT INTO `items` (`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`,`uuid`) values ('36524','20','1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX}','10442','Dell R840: {#FAN_DESCR} Speed','dell.server.sensor.fan.speed[coolingDeviceReading.{#SNMPINDEX}]','1m','7d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the reading for a cooling device\r\nof subtype other than coolingDeviceSubTypeIsDiscrete. When the value\r\nfor coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, the\r\nvalue returned for this attribute is the speed in RPM or the OFF/ON value\r\nof the cooling device. When the value for coolingDeviceSubType is\r\ncoolingDeviceSubTypeIsDiscrete, a value is not returned for this attribute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d2efe32f5c614dca883e433c2f887e1a');
INSERT INTO `items` (`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`,`uuid`) values ('36525','20','1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX}','10442','Dell R840: {#FAN_DESCR} Status','dell.server.sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'497','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the probe status of the cooling device.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c0e76019b144272b9321f8c4978dfa5');
INSERT INTO `items` (`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`,`uuid`) values ('36526','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX}','10442','Dell R840: {#DISK_NAME} Media type','dell.server.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'496','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe media type of the physical disk. Possible Values:\r\n1: The media type could not be determined.\r\n2: Hard Disk Drive (HDD).\r\n3: Solid State Drive (SSD).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7a8f30970e4c43aeac4d9c6a391109d5');
INSERT INTO `items` (`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`,`uuid`) values ('36527','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX}','10442','Dell R840: {#DISK_NAME} Model name','dell.server.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe model number of the physical disk.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','18bca784665445d38bd8feb95cca2bf8');
INSERT INTO `items` (`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`,`uuid`) values ('36528','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX}','10442','Dell R840: {#DISK_NAME} Serial number','dell.server.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe physical disk\'s unique identification number from the manufacturer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d4a5a97a7b134f3aa4e52e7512428efb');
INSERT INTO `items` (`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`,`uuid`) values ('36529','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX}','10442','Dell R840: {#DISK_NAME} Size','dell.server.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}]','1m','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe size of the physical disk in megabytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ce34bb1a25364543aeefc8728fddab26');
INSERT INTO `items` (`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`,`uuid`) values ('36530','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX}','10442','Dell R840: {#DISK_NAME} S.M.A.R.T. Status','dell.server.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'493','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nIndicates whether the physical disk has received a predictive failure alert.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','783739113d0a46e4ab3b77aed900500e');
INSERT INTO `items` (`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`,`uuid`) values ('36531','20','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX}','10442','Dell R840: {#DISK_NAME} Status','dell.server.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'495','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe status of the physical disk itself without the propagation of any contained component status.\r\nPossible values:\r\n1: Other\r\n2: Unknown\r\n3: OK\r\n4: Non-critical\r\n5: Critical\r\n6: Non-recoverable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d55a705be2df4770bdcab2c8691d8db1');
INSERT INTO `items` (`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`,`uuid`) values ('36532','20','1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX}','10442','Dell R840: {#PSU_DESCR}','dell.server.sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'494','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\n0600.0012.0001.0005 This attribute defines the status of the power supply.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','61749b25d08e4912a59f56571a9774d6');
INSERT INTO `items` (`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`,`uuid`) values ('36533','20','1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX}','10442','Dell R840: {#SENSOR_LOCALE} Status','dell.server.sensor.temp.status[temperatureProbeStatus.{#SNMPINDEX}]','1m','7d','0d','0','0','','','','',NULL,'497','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the probe status of the temperature probe.\r\nPossible values:\r\nother(1), -- probe status is not one of the following:\r\nunknown(2), -- probe status is unknown (not known or monitored)\r\nok(3), -- probe is reporting a value within the thresholds\r\nnonCriticalUpper(4), -- probe has crossed the upper noncritical threshold\r\ncriticalUpper(5), -- probe has crossed the upper critical threshold\r\nnonRecoverableUpper(6), -- probe has crossed the upper non-recoverable threshold\r\nnonCriticalLower(7), -- probe has crossed the lower noncritical threshold\r\ncriticalLower(8), -- probe has crossed the lower critical threshold\r\nnonRecoverableLower(9), -- probe has crossed the lower non-recoverable threshold\r\nfailed(10) -- probe is not functional','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16831b8b067544b180f2fde23894ee51');
INSERT INTO `items` (`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`,`uuid`) values ('36534','20','1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX}','10442','Dell R840: {#SENSOR_LOCALE} Value','dell.server.sensor.temp.value[temperatureProbeReading.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThis attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete, the value returned for this attribute is the temperature that the probe is reading in Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bc5758288a7f4cdc802f01d6a0041c95');
INSERT INTO `items` (`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`,`uuid`) values ('36535','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX}','10442','Dell R840: {#DISK_NAME} Layout type','dell.server.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'498','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe virtual disk\'s RAID type.\r\nPossible values:\r\n1: Not one of the following\r\n2: RAID-0\r\n3: RAID-1\r\n4: RAID-5\r\n5: RAID-6\r\n6: RAID-10\r\n7: RAID-50\r\n8: RAID-60\r\n9: Concatenated RAID 1\r\n10: Concatenated RAID 5','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1d6d0817bf914664be165d9478aa0514');
INSERT INTO `items` (`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`,`uuid`) values ('36536','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX}','10442','Dell R840: {#DISK_NAME} Read policy','dell.server.hw.virtualdisk.readpolicy[virtualDiskReadPolicy.{#SNMPINDEX}]','1h','2w','365d','0','3','','','','',NULL,'500','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe read policy used by the controller for read operations on this virtual disk.\r\nPossible values:\r\n1: No Read Ahead.\r\n2: Read Ahead.\r\n3: Adaptive Read Ahead.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a26ef2f0b1364a4fb3372f9038b377b7');
INSERT INTO `items` (`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`,`uuid`) values ('36537','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX}','10442','Dell R840: {#DISK_NAME} Size','dell.server.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}]','1m','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe size of the virtual disk in megabytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','23fddb41194f4497b140f210d3a91450');
INSERT INTO `items` (`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`,`uuid`) values ('36538','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX}','10442','Dell R840: {#DISK_NAME} Current state','dell.server.hw.virtualdisk.state[virtualDiskOperationalState.{#SNMPINDEX}]','3m','2w','365d','0','3','','','','',NULL,'499','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe state of the virtual disk when there are progressive operations ongoing.\r\nPossible values:\r\n1: There is no active operation running.\r\n2: The virtual disk configuration has changed. The physical disks included in the virtual disk are being modified to support the new configuration.\r\n3: A Consistency Check (CC) is being performed on the virtual disk.\r\n4: The virtual disk is being initialized.\r\n5: BackGround Initialization (BGI) is being performed on the virtual disk.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','602c22ba4876450aacde99e08205c5d8');
INSERT INTO `items` (`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`,`uuid`) values ('36539','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX}','10442','Dell R840: {#DISK_NAME} Status','dell.server.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'501','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe current state of this virtual disk (which includes any member physical disks.)\r\nPossible states:\r\n1: The current state could not be determined.\r\n2: The virtual disk is operating normally or optimally.\r\n3: The virtual disk has encountered a failure. Data on the disk is lost or is about to be lost.\r\n4: The virtual disk encountered a failure with one or all of the constituent redundant physical disks.\r\nThe data on the virtual disk might no longer be fault tolerant.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','14c253cbc8174d1584bcb30f13c63050');
INSERT INTO `items` (`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`,`uuid`) values ('36540','20','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX}','10442','Dell R840: {#DISK_NAME} Write policy','dell.server.hw.virtualdisk.writepolicy[virtualDiskWritePolicy.{#SNMPINDEX}]','1h','2w','365d','0','3','','','','',NULL,'502','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2\r\nThe write policy used by the controller for write operations on this virtual disk.\r\nPossible values:\r\n1: Write Through.\r\n2: Write Back.\r\n3: Force Write Back.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1e6bb77e2d114879b86c0afa07161079');
INSERT INTO `items` (`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`,`uuid`) values ('36541','20','1.3.6.1.2.1.1.4.0','10443','System contact details','hp.server.contact[sysContact]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','0747f8f3cc624f469324c127577aa9f9');
INSERT INTO `items` (`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`,`uuid`) values ('36542','20','1.3.6.1.2.1.1.1.0','10443','System description','hp.server.descr[sysDescr]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc714f5445be431192dbeb553f0aa5c5');
INSERT INTO `items` (`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`,`uuid`) values ('36543','20','1.3.6.1.4.1.232.2.2.4.2.0','10443','Hardware model name','hp.server.hw.model[cpqSiProductName]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CPQSINFO-MIB\r\nThe machine product name. The name of the machine used in this system.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bf4baaaa76dc4f39bd39c62742f03e26');
INSERT INTO `items` (`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`,`uuid`) values ('36544','20','1.3.6.1.4.1.232.2.2.2.1.0','10443','Hardware serial number','hp.server.hw.serialnumber[cpqSiSysSerialNum]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CPQSINFO-MIB\r\nThe serial number of the physical system unit. The string will be empty if the system does not report the serial number function.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d5e2b9ae30b4c43a91cada24c4cc240');
INSERT INTO `items` (`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`,`uuid`) values ('36545','20','1.3.6.1.2.1.1.6.0','10443','System location','hp.server.location[sysLocation]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','b85a86fa36bd484cbd36cd25d2a605f9');
INSERT INTO `items` (`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`,`uuid`) values ('36546','20','1.3.6.1.2.1.1.5.0','10443','System name','hp.server.name[sysName]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3df8b71c3f14432e8cd43fbc24f12447');
INSERT INTO `items` (`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`,`uuid`) values ('36547','20','1.3.6.1.2.1.1.2.0','10443','System object ID','hp.server.objectid[sysObjectID]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8573488eb0114109bc3c94f2edf00792');
INSERT INTO `items` (`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`,`uuid`) values ('36548','20','1.3.6.1.4.1.232.6.2.6.1.0','10443','System temperature status','hp.server.sensor.temp.status[cpqHeThermalCondition]','1m','7d','0d','0','3','','','','',NULL,'515','','','0','','','','','0',NULL,'MIB: CPQHLTH-MIB\r\nThis value specifies the overall condition of the system\'s thermal environment.\r\nThis value will be one of the following:\r\nother(1) Temperature could not be determined.\r\nok(2) The temperature sensor is within normal operating range.\r\ndegraded(3) The temperature sensor is outside of normal operating range.\r\nfailed(4) The temperature sensor detects a condition that could permanently damage the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3891df22d63d4be5a62c8a27ac9d8965');
INSERT INTO `items` (`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`,`uuid`) values ('36549','20','1.3.6.1.4.1.232.6.1.3.0','10443','Overall system health status','hp.server.status[cpqHeMibCondition]','1m','7d','0d','0','3','','','','',NULL,'515','','','0','','','','','0',NULL,'MIB: CPQHLTH-MIB\r\nThe overall condition. This object represents the overall status of the server information represented by this MIB.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a8ea3fc6a5914a868be12f21342a9678');
INSERT INTO `items` (`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`,`uuid`) values ('36550','20','1.3.6.1.2.1.1.3.0','10443','Uptime (network)','hp.server.net.uptime[sysUpTime]','1m','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','65ec5672f1de4852b1ee52ce57e4f58f');
INSERT INTO `items` (`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`,`uuid`) values ('36551','17','','10443','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','37dc9b6453184fe58435d12d422582d9');
INSERT INTO `items` (`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`,`uuid`) values ('36552','5','','10443','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'516','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d2e80ecf16bb49af99eb52a45b8c11cf');
INSERT INTO `items` (`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`,`uuid`) values ('36553','20','discovery[{#CACHE_STATUS},1.3.6.1.4.1.232.3.2.2.2.1.2,{#CACHE_CNTRL_INDEX},1.3.6.1.4.1.232.3.2.2.2.1.1]','10443','Array controller cache discovery','array.cache.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CPQIDA-MIB::cpqDaAccelTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','79cb6edf94f441eea4b429e8474fa0c9');
INSERT INTO `items` (`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`,`uuid`) values ('36554','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.2.1.1.1,{#CNTLR_SLOT},1.3.6.1.4.1.232.3.2.2.1.1.5,{#CNTLR_LOCATION},1.3.6.1.4.1.232.3.2.2.1.1.20]','10443','Array controller discovery','array.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CPQIDA-MIB::cpqDaCntlrTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3e72130010414c7dbc3b7b050df9e577');
INSERT INTO `items` (`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`,`uuid`) values ('36555','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.7.1.9]','10443','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQHLTH-MIB::cpqHeFltTolFanCondition','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cbcd697782e34a5e87cef72d65229a87');
INSERT INTO `items` (`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`,`uuid`) values ('36556','20','discovery[{#ADAPTER_INDEX},1.3.6.1.4.1.232.18.2.3.1.1.1,{#ADAPTER_NAME},1.3.6.1.4.1.232.18.2.3.1.1.39]','10443','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQIDA-MIB::cpqNicIfPhysAdapterTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dbe83d07252743f2bc889ce320730d78');
INSERT INTO `items` (`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`,`uuid`) values ('36557','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.5.1.1.5,{#DISK_LOCATION},1.3.6.1.4.1.232.3.2.5.1.1.64]','10443','Physical disk discovery','physicaldisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of physical drive entries CPQIDA-MIB::cpqDaPhyDrvTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ec2950e764249dc9c091e92dbba4137');
INSERT INTO `items` (`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`,`uuid`) values ('36558','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.9.3.1.5,{#CHASSIS_NUM},1.3.6.1.4.1.232.6.2.9.3.1.1,{#BAY_NUM},1.3.6.1.4.1.232.6.2.9.3.1.2]','10443','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQHLTH-MIB::cpqHeFltTolPowerSupplyStatus','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5b9a240a6b864513b2b0ac8a4f0a0c07');
INSERT INTO `items` (`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`,`uuid`) values ('36559','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10443','Temperature ambient discovery','temp.ambient.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with ambient(11) and 0.1 index filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','641f9eebbb134b34960f92037c694802');
INSERT INTO `items` (`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`,`uuid`) values ('36560','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10443','Temperature CPU discovery','temp.cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with cpu(6) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa4918f21cf14e2c94ac155ac3a0b0b4');
INSERT INTO `items` (`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`,`uuid`) values ('36561','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10443','Temperature discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c3b3cfe6aa4c47d0ab66b9a969df85bd');
INSERT INTO `items` (`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`,`uuid`) values ('36562','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10443','Temperature I/O discovery','temp.io.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with ioBoard(5) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','be33f30661ba4c3e88ace96906b0a74c');
INSERT INTO `items` (`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`,`uuid`) values ('36563','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10443','Temperature memory discovery','temp.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with memory(7) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d4dc4e4e6fab415baae36e98877205c5');
INSERT INTO `items` (`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`,`uuid`) values ('36564','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10443','Temperature PSU discovery','temp.psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with powerSupply(10) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6df0ad42b4c74a19b9bdfc240db626bb');
INSERT INTO `items` (`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`,`uuid`) values ('36565','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10443','Temperature system discovery','temp.system.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dfa25ab78aab4cf081e3857f2a40dee4');
INSERT INTO `items` (`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`,`uuid`) values ('36566','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.3.1.1.2,{#DISK_NAME},1.3.6.1.4.1.232.3.2.3.1.1.14]','10443','Virtual disk discovery','virtualdisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQIDA-MIB::cpqDaLogDrvTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','92ab660734234833adfe7108df529c24');
INSERT INTO `items` (`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`,`uuid`) values ('36567','20','1.3.6.1.4.1.232.3.2.2.2.1.6.{#SNMPINDEX}','10443','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status','hp.server.hw.diskarray.cache.battery.status[cpqDaAccelBattery.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'506','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nCache Module Board Backup Power Status. This monitors the status of each backup power source on the board.\r\nThe backup power source can only recharge when the system has power applied. The type of backup power source used is indicated by cpqDaAccelBackupPowerSource.\r\nThe following values are valid:\r\nOther (1) Indicates that the instrument agent does not recognize backup power status. You may need to update your software.\r\n\r\nOk (2) The backup power source is fully charged.\r\n\r\nRecharging (3) The array controller has one or more cache module backup power sources that are recharging.\r\nCache module operations such as Battery/Flash Backed Write Cache, Expansion, Extension and Migration are temporarily suspended until the backup power source is fully charged.\r\nCache module operations will automatically resume when charging is complete.\r\n\r\nFailed (4) The battery pack is below the sufficient voltage level and has not recharged in 36 hours.\r\nYour Cache Module board needs to be serviced.\r\n\r\nDegraded (5) The battery is still operating, however, one of the batteries in the pack has failed to recharge properly.\r\nYour Cache Module board should be serviced as soon as possible.\r\n\r\nNotPresent (6) A backup power source is not present on the cache module board. Some controllers do not have backup power sources.\r\n\r\nCapacitor Failed (7) The flash backed cache module capacitor is below the sufficient voltage level and has not recharged in 10 minutes. Your Cache Module board needs to be serviced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0cf60fc04cc243df95145b5e3128b598');
INSERT INTO `items` (`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`,`uuid`) values ('36568','20','1.3.6.1.4.1.232.3.2.2.2.1.2.{#SNMPINDEX}','10443','#{#CACHE_CNTRL_INDEX}: Disk array cache controller status','hp.server.hw.diskarray.cache.status[cpqDaAccelStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'507','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nCache Module/Operations Status. This describes the status of the cache module and/or cache operations.\r\nNote that for some controller models, a cache module board that physically attaches to the controller or chipset may not be an available option.\r\n\r\nThe status can be:\r\nOther (1)\r\n Indicates that the instrument agent does not recognize the status of the cache module. You may need to upgrade the instrument agent.\r\n\r\nInvalid (2)\r\n Indicates that a cache module board has not been installed in this system or is present but not configured.\r\n\r\nEnabled (3)\r\n Indicates that cache operations are currently configured and enabled for at least one logical drive.\r\n\r\nTemporarily Disabled (4)\r\n Indicates that cache operations have been temporarily disabled. View the cache module board error code object to determine why the write cache operations have been temporarily disabled.\r\n\r\nPermanently Disabled (5)\r\n Indicates that cache operations have been permanently disabled. View the cache module board error code object to determine why the write cache operations have been disabled.\r\n\r\nCache Module Flash Memory Not Attached (6)\r\n Indicates that the flash memory component of the flash backed cache module is not attached. This status will be set when the flash memory is not attached and the Supercap is attached. This value is only used on flash backed cache modules that support removable flash memory.\r\n\r\nCache Module Degraded Failsafe Speed (7)\r\n Indicates that the cache module board is currently degraded and operating at a failsafe speed. View variables cpqDaCacheMemoryDataWidth and cpqDaCacheMemoryTransferRate to obtain the cache module board`s current memory data width and memory transfer rate.\r\n\r\nCache Module Critical Failure (8)\r\n Indicates that the cache module board has encountered a critical failure. The controller is currently operating in Zero Memory Raid mode.\r\n\r\nRead Cache Could Not Be Mapped (9)\r\n Indicates that the read cache memory in a split cache configuration could not be mapped by the operating system and as a result is not available. This status may be caused by virtual space limitations in certain operating systems and is only applicable to B-Series controllers.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','10e011c0c8cf4571bfdd2ab414c1853b');
INSERT INTO `items` (`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`,`uuid`) values ('36569','20','1.3.6.1.4.1.232.3.2.2.1.1.2.{#SNMPINDEX}','10443','{#CNTLR_LOCATION}: Disk array controller model','hp.server.hw.diskarray.model[cpqDaCntlrModel.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'508','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nArray Controller Model. The type of controller card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','be46bc977cdd4a85a364628a21df099d');
INSERT INTO `items` (`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`,`uuid`) values ('36570','20','1.3.6.1.4.1.232.3.2.2.1.1.6.{#SNMPINDEX}','10443','{#CNTLR_LOCATION}: Disk array controller status','hp.server.hw.diskarray.status[cpqDaCntlrCondition.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'515','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nThis value represents the overall condition of this controller,\r\nand any associated logical drives, physical drives, and array accelerators.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d89a3b9bab6c4439a9797ee9208fec26');
INSERT INTO `items` (`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`,`uuid`) values ('36571','20','1.3.6.1.4.1.232.6.2.6.7.1.9.{#SNMPINDEX}','10443','Fan {#SNMPINDEX}: Fan status','hp.server.sensor.fan.status[cpqHeFltTolFanCondition.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'515','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe condition of the fan.\r\nThis value will be one of the following:\r\nother(1) Fan status detection is not supported by this system or driver.\r\nok(2) The fan is operating properly.\r\ndegraded(2) A redundant fan is not operating properly.\r\nfailed(4) A non-redundant fan is not operating properly.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','02b11840d01245cfbac4e3a5264c713e');
INSERT INTO `items` (`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`,`uuid`) values ('36572','20','1.3.6.1.4.1.232.18.2.3.1.1.14.{#SNMPINDEX}','10443','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status','hp.server.net.if.status[cpqNicIfPhysAdapterStatus.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'514','','','0','','','','','2',NULL,'MIB: CPQNIC-MIB\r\nThe physical adapter status. The following values are valid:\r\nunknown(1)\r\n The instrument agent was not able to determine the status of the adapter. The instrument agent may need to be upgraded.\r\nok(2)\r\n The physical adapter is operating properly.\r\ngeneralFailure(3)\r\n The physical adapter has failed.\r\nlinkFailure(4)\r\n The physical adapter has lost link. Check the cable connections to this adapter.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1b446f4de8be4eeab2410756739eae6c');
INSERT INTO `items` (`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`,`uuid`) values ('36573','20','1.3.6.1.4.1.232.3.2.5.1.1.69.{#SNMPINDEX}','10443','{#DISK_LOCATION}: Physical disk media type','hp.server.hw.physicaldisk.media_type[cpqDaPhyDrvMediaType.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'511','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nDrive Array Physical Drive Media Type. The following values are defined:\r\nother(1) The instrument agent is unable to determine the physical drive\'s media type.\r\nrotatingPlatters(2) The physical drive media is composed of rotating platters.\r\nsolidState(3) The physical drive media is composed of solid state electronics.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6ebfcb4a2bd44407920c47f060ec6307');
INSERT INTO `items` (`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`,`uuid`) values ('36574','20','1.3.6.1.4.1.232.3.2.5.1.1.3.{#SNMPINDEX}','10443','{#DISK_LOCATION}: Physical disk model name','hp.server.hw.physicaldisk.model[cpqDaPhyDrvModel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive Model. This is a text description of the physical drive.\r\nThe text that appears depends upon who manufactured the drive and the drive type.\r\nIf a drive fails, note the model to identify the type of drive necessary for replacement.\r\nIf a model number is not present, you may not have properly initialized the drive array to which the physical drive is attached for monitoring.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6c59eaa90b964ad4b9f5a0511d620e9d');
INSERT INTO `items` (`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`,`uuid`) values ('36575','20','1.3.6.1.4.1.232.3.2.5.1.1.51.{#SNMPINDEX}','10443','{#DISK_LOCATION}: Physical disk serial number','hp.server.hw.physicaldisk.serialnumber[cpqDaPhyDrvSerialNum.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive Serial Number.\r\nThis is the serial number assigned to the physical drive.\r\nThis value is based upon the serial number as returned by the SCSI inquiry command\r\nbut may have been modified due to space limitations. This can be used for identification purposes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f4f6e63dd1714c2ca721baebb478f5ab');
INSERT INTO `items` (`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`,`uuid`) values ('36576','20','1.3.6.1.4.1.232.3.2.5.1.1.45.{#SNMPINDEX}','10443','{#DISK_LOCATION}: Disk size','hp.server.hw.physicaldisk.size[cpqDaPhyDrvMediaType.{#SNMPINDEX}]','1m','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive Size in MB.\r\nThis is the size of the physical drive in megabytes.\r\nThis value is calculated using the value 1,048,576 (2^20) as a megabyte.\r\nDrive manufacturers sometimes use the number 1,000,000 as a megabyte when giving drive capacities so this value may differ\r\nfrom the advertised size of a drive. This field is only applicable for controllers which support SCSI drives,\r\nand therefore is not supported by the IDA or IDA-2 controllers. The field will contain 0xFFFFFFFF if the drive capacity cannot be calculated\r\nor if the controller does not support SCSI drives.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dee3a8bb94184bad80d058cb9ac3d324');
INSERT INTO `items` (`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`,`uuid`) values ('36577','20','1.3.6.1.4.1.232.3.2.5.1.1.57.{#SNMPINDEX}','10443','{#DISK_LOCATION}: Physical disk S.M.A.R.T. status','hp.server.hw.physicaldisk.smart_status[cpqDaPhyDrvSmartStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'512','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive S.M.A.R.T Status. The following values are defined:\r\nother(1) The agent is unable to determine if the status of S.M.A.R.T predictive failure monitoring for this drive.\r\nok(2) Indicates the drive is functioning properly.\r\nreplaceDrive(3) Indicates that the drive has a S.M.A.R.T predictive failure error and should be replaced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e08b144330824b9f8a9df61f4e4016b4');
INSERT INTO `items` (`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`,`uuid`) values ('36578','20','1.3.6.1.4.1.232.3.2.5.1.1.6.{#SNMPINDEX}','10443','{#DISK_LOCATION}: Physical disk status','hp.server.hw.physicaldisk.status[cpqDaPhyDrvStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'513','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive Status. This shows the status of the physical drive. The following values are valid for the physical drive status:\r\nother (1) Indicates that the instrument agent does not recognize the drive.\r\nYou may need to upgrade your instrument agent and/or driver software.\r\nok (2) Indicates the drive is functioning properly.\r\nfailed (3) Indicates that the drive is no longer operating and should be replaced.\r\npredictiveFailure(4) Indicates that the drive has a predictive failure error and should be replaced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d0449cc58efb4258ba71e8d6837cab20');
INSERT INTO `items` (`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`,`uuid`) values ('36579','20','1.3.6.1.4.1.232.6.2.9.3.1.4.{#SNMPINDEX}','10443','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status','hp.server.sensor.psu.status[cpqHeFltTolPowerSupplyCondition.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'515','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe condition of the power supply. This value will be one of the following:\r\nother(1) The status could not be determined or not present.\r\nok(2) The power supply is operating normally.\r\ndegraded(3) A temperature sensor, fan or other power supply component is outside of normal operating range.\r\nfailed(4) A power supply component detects a condition that could permanently damage the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c49420a345664c719d9eb02f0ee866c1');
INSERT INTO `items` (`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`,`uuid`) values ('36580','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10443','Ambient: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Ambient.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'504','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d81b9d2bfff4312810a50d340f8ba17');
INSERT INTO `items` (`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`,`uuid`) values ('36581','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10443','Ambient: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Ambient.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: Ambient','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1cfee00e1b4d49528589520036b4bf8d');
INSERT INTO `items` (`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`,`uuid`) values ('36582','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10443','CPU-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.CPU.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'504','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0fa15e127d03487cb4fbfaaaacf4fe96');
INSERT INTO `items` (`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`,`uuid`) values ('36583','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10443','CPU-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.CPU.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: CPU-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4f67a2ca1b9d4b179770558df5b8edb7');
INSERT INTO `items` (`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`,`uuid`) values ('36584','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10443','{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'504','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4f13e0a5d45e4847931829f9abd30795');
INSERT INTO `items` (`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`,`uuid`) values ('36585','20','1.3.6.1.4.1.232.6.2.6.8.1.3.{#SNMPINDEX}','10443','{#SNMPINDEX}: Temperature sensor location','hp.server.sensor.temp.locale[cpqHeTemperatureLocale.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'505','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThis specifies the location of the temperature sensor present in the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c21a7b49d03f4b2e9c532777d4931236');
INSERT INTO `items` (`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`,`uuid`) values ('36586','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10443','{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: {#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ac8567f26884cab9d175d9f9934d575');
INSERT INTO `items` (`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`,`uuid`) values ('36587','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10443','I/O-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition."I/O.{#SNMPINDEX}"]','1m','7d','365d','0','3','','','','',NULL,'504','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0addee41af6e489fbf2a9747d9cab50e');
INSERT INTO `items` (`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`,`uuid`) values ('36588','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10443','I/O-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius."I/O.{#SNMPINDEX}"]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: I/O-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2fa250ea6f1e472d9e90984d0918c50d');
INSERT INTO `items` (`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`,`uuid`) values ('36589','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10443','Memory-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Memory.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'504','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8468b9ca183e44569f6d467f7d103b11');
INSERT INTO `items` (`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`,`uuid`) values ('36590','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10443','Memory-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Memory.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: Memory-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7441c5de35fd4ff2b6a20c1896525bd4');
INSERT INTO `items` (`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`,`uuid`) values ('36591','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10443','PSU-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.PSU.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'504','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','222d768e05d442ecb12a4cc83100438d');
INSERT INTO `items` (`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`,`uuid`) values ('36592','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10443','PSU-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.PSU.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: PSU-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ca1e5c260caa48368fa299a9dc007512');
INSERT INTO `items` (`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`,`uuid`) values ('36593','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10443','System-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.System.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'504','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','10f22e6ea868460c98cc97f24a6c83e4');
INSERT INTO `items` (`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`,`uuid`) values ('36594','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10443','System-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.System.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: System-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e25f6cbbb1d444ff851895b37dfcde5d');
INSERT INTO `items` (`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`,`uuid`) values ('36595','20','1.3.6.1.4.1.232.3.2.3.1.1.3.{#SNMPINDEX}','10443','Disk {#SNMPINDEX}({#DISK_NAME}): Layout type','hp.server.hw.virtualdisk.layout[cpqDaLogDrvFaultTol.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'509','','','0','','','','','2',NULL,'Logical Drive Fault Tolerance.\r\nThis shows the fault tolerance mode of the logical drive.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a468686d8de44b958b26a69b4c8d11ed');
INSERT INTO `items` (`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`,`uuid`) values ('36596','20','1.3.6.1.4.1.232.3.2.3.1.1.9.{#SNMPINDEX}','10443','Disk {#SNMPINDEX}({#DISK_NAME}): Disk size','hp.server.hw.virtualdisk.size[cpqDaLogDrvSize.{#SNMPINDEX}]','1m','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Logical Drive Size.\r\nThis is the size of the logical drive in megabytes. This value\r\nis calculated using the value 1,048,576 (2^20) as a megabyte.\r\nDrive manufacturers sometimes use the number 1,000,000 as a\r\nmegabyte when giving drive capacities so this value may\r\ndiffer from the advertised size of a drive.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1e890df502e04b5ba34b3ddc8d9aea57');
INSERT INTO `items` (`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`,`uuid`) values ('36597','20','1.3.6.1.4.1.232.3.2.3.1.1.4.{#SNMPINDEX}','10443','Disk {#SNMPINDEX}({#DISK_NAME}): Status','hp.server.hw.virtualdisk.status[cpqDaLogDrvStatus.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'510','','','0','','','','','2',NULL,'Logical Drive Status.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3702a04cf01a4390805535af4f0b8172');
INSERT INTO `items` (`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`,`uuid`) values ('36598','20','1.3.6.1.2.1.1.4.0','10444','System contact details','hp.server.contact[sysContact]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','1831d0a9399d4e41a0fd1dc392241640');
INSERT INTO `items` (`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`,`uuid`) values ('36599','20','1.3.6.1.2.1.1.1.0','10444','System description','hp.server.descr[sysDescr]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','342a1fb4781d4f4fbafa7728f0c54d44');
INSERT INTO `items` (`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`,`uuid`) values ('36600','20','1.3.6.1.4.1.232.2.2.4.2.0','10444','Hardware model name','hp.server.hw.model[cpqSiProductName]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CPQSINFO-MIB\r\nThe machine product name. The name of the machine used in this system.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1b4a890c4d244ce7920193f2fcd34cd0');
INSERT INTO `items` (`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`,`uuid`) values ('36601','20','1.3.6.1.4.1.232.2.2.2.1.0','10444','Hardware serial number','hp.server.hw.serialnumber[cpqSiSysSerialNum]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CPQSINFO-MIB\r\nThe serial number of the physical system unit. The string will be empty if the system does not report the serial number function.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e0da21845f8b49fd8c4471db20cf7a31');
INSERT INTO `items` (`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`,`uuid`) values ('36602','20','1.3.6.1.2.1.1.6.0','10444','System location','hp.server.location[sysLocation]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','fa3cec21b4a64ba9990bb2adaaba8a00');
INSERT INTO `items` (`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`,`uuid`) values ('36603','20','1.3.6.1.2.1.1.5.0','10444','System name','hp.server.name[sysName]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','01bf2613057541b082320fa81b07636f');
INSERT INTO `items` (`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`,`uuid`) values ('36604','20','1.3.6.1.2.1.1.2.0','10444','System object ID','hp.server.objectid[sysObjectID]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','abb51a946f5d4ee09895bef2e1df0fa6');
INSERT INTO `items` (`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`,`uuid`) values ('36605','20','1.3.6.1.4.1.232.6.2.6.1.0','10444','System temperature status','hp.server.sensor.temp.status[cpqHeThermalCondition]','1m','7d','0d','0','3','','','','',NULL,'528','','','0','','','','','0',NULL,'MIB: CPQHLTH-MIB\r\nThis value specifies the overall condition of the system\'s thermal environment.\r\nThis value will be one of the following:\r\nother(1) Temperature could not be determined.\r\nok(2) The temperature sensor is within normal operating range.\r\ndegraded(3) The temperature sensor is outside of normal operating range.\r\nfailed(4) The temperature sensor detects a condition that could permanently damage the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2a1af5ba5ee643c7b63e5eae10703e9c');
INSERT INTO `items` (`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`,`uuid`) values ('36606','20','1.3.6.1.4.1.232.6.1.3.0','10444','Overall system health status','hp.server.status[cpqHeMibCondition]','1m','7d','0d','0','3','','','','',NULL,'528','','','0','','','','','0',NULL,'MIB: CPQHLTH-MIB\r\nThe overall condition. This object represents the overall status of the server information represented by this MIB.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4b05f7e3700440ee81cb38851c561a09');
INSERT INTO `items` (`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`,`uuid`) values ('36607','20','1.3.6.1.2.1.1.3.0','10444','Uptime (network)','hp.server.net.uptime[sysUpTime]','1m','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','244691064ba54bf186a44219077fc804');
INSERT INTO `items` (`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`,`uuid`) values ('36608','17','','10444','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','356100e223784f398701839a2e74b6ff');
INSERT INTO `items` (`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`,`uuid`) values ('36609','5','','10444','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'529','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1924b196b0af4b0ba91519187bf22c78');
INSERT INTO `items` (`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`,`uuid`) values ('36610','20','discovery[{#CACHE_STATUS},1.3.6.1.4.1.232.3.2.2.2.1.2,{#CACHE_CNTRL_INDEX},1.3.6.1.4.1.232.3.2.2.2.1.1]','10444','Array controller cache discovery','array.cache.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CPQIDA-MIB::cpqDaAccelTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','89fa0f7fbaf0442dae2994c94cc9ec01');
INSERT INTO `items` (`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`,`uuid`) values ('36611','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.2.1.1.1,{#CNTLR_SLOT},1.3.6.1.4.1.232.3.2.2.1.1.5,{#CNTLR_LOCATION},1.3.6.1.4.1.232.3.2.2.1.1.20]','10444','Array controller discovery','array.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CPQIDA-MIB::cpqDaCntlrTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b0ef0784a3e6410c965d421e21cb8570');
INSERT INTO `items` (`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`,`uuid`) values ('36612','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.7.1.9]','10444','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQHLTH-MIB::cpqHeFltTolFanCondition','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','af4174c63f3d4bf2b0ca523c195b56d8');
INSERT INTO `items` (`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`,`uuid`) values ('36613','20','discovery[{#ADAPTER_INDEX},1.3.6.1.4.1.232.18.2.3.1.1.1,{#ADAPTER_NAME},1.3.6.1.4.1.232.18.2.3.1.1.39]','10444','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQIDA-MIB::cpqNicIfPhysAdapterTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','32f1d3333d314ac28bd85b6d5d2a97d0');
INSERT INTO `items` (`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`,`uuid`) values ('36614','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.5.1.1.5,{#DISK_LOCATION},1.3.6.1.4.1.232.3.2.5.1.1.64]','10444','Physical disk discovery','physicaldisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of physical drive entries CPQIDA-MIB::cpqDaPhyDrvTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','174f8fc9db6e4484a3f2c5f27def0b13');
INSERT INTO `items` (`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`,`uuid`) values ('36615','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.9.3.1.5,{#CHASSIS_NUM},1.3.6.1.4.1.232.6.2.9.3.1.1,{#BAY_NUM},1.3.6.1.4.1.232.6.2.9.3.1.2]','10444','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQHLTH-MIB::cpqHeFltTolPowerSupplyStatus','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','569998dd6c56424494154225b295a069');
INSERT INTO `items` (`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`,`uuid`) values ('36616','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10444','Temperature ambient discovery','temp.ambient.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with ambient(11) and 0.1 index filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5442309de7164104b132c29ab74eeb96');
INSERT INTO `items` (`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`,`uuid`) values ('36617','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10444','Temperature CPU discovery','temp.cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with cpu(6) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2478800b0f934fe99ae1f8a3306dec75');
INSERT INTO `items` (`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`,`uuid`) values ('36618','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10444','Temperature discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3112cda4ca9c4e1cb51f9b02d0c08bf8');
INSERT INTO `items` (`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`,`uuid`) values ('36619','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10444','Temperature I/O discovery','temp.io.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with ioBoard(5) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d4a7f83a79c54b43b0e862d253893d14');
INSERT INTO `items` (`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`,`uuid`) values ('36620','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10444','Temperature memory discovery','temp.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with memory(7) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3753e9accb0147a5a5a0c85b381c156a');
INSERT INTO `items` (`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`,`uuid`) values ('36621','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10444','Temperature PSU discovery','temp.psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with powerSupply(10) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4badf00f164b4490820c1ad090000cf2');
INSERT INTO `items` (`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`,`uuid`) values ('36622','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10444','Temperature system discovery','temp.system.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa477ce470d842e28481360fd01984f8');
INSERT INTO `items` (`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`,`uuid`) values ('36623','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.3.1.1.2,{#DISK_NAME},1.3.6.1.4.1.232.3.2.3.1.1.14]','10444','Virtual disk discovery','virtualdisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQIDA-MIB::cpqDaLogDrvTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d9385990317b4bf6a973fd463697f172');
INSERT INTO `items` (`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`,`uuid`) values ('36624','20','1.3.6.1.4.1.232.3.2.2.2.1.6.{#SNMPINDEX}','10444','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status','hp.server.hw.diskarray.cache.battery.status[cpqDaAccelBattery.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'519','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nCache Module Board Backup Power Status. This monitors the status of each backup power source on the board.\r\nThe backup power source can only recharge when the system has power applied. The type of backup power source used is indicated by cpqDaAccelBackupPowerSource.\r\nThe following values are valid:\r\nOther (1) Indicates that the instrument agent does not recognize backup power status. You may need to update your software.\r\n\r\nOk (2) The backup power source is fully charged.\r\n\r\nRecharging (3) The array controller has one or more cache module backup power sources that are recharging.\r\nCache module operations such as Battery/Flash Backed Write Cache, Expansion, Extension and Migration are temporarily suspended until the backup power source is fully charged.\r\nCache module operations will automatically resume when charging is complete.\r\n\r\nFailed (4) The battery pack is below the sufficient voltage level and has not recharged in 36 hours.\r\nYour Cache Module board needs to be serviced.\r\n\r\nDegraded (5) The battery is still operating, however, one of the batteries in the pack has failed to recharge properly.\r\nYour Cache Module board should be serviced as soon as possible.\r\n\r\nNotPresent (6) A backup power source is not present on the cache module board. Some controllers do not have backup power sources.\r\n\r\nCapacitor Failed (7) The flash backed cache module capacitor is below the sufficient voltage level and has not recharged in 10 minutes. Your Cache Module board needs to be serviced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8217a74bab1c4d31bc504d772ec3d98e');
INSERT INTO `items` (`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`,`uuid`) values ('36625','20','1.3.6.1.4.1.232.3.2.2.2.1.2.{#SNMPINDEX}','10444','#{#CACHE_CNTRL_INDEX}: Disk array cache controller status','hp.server.hw.diskarray.cache.status[cpqDaAccelStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'520','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nCache Module/Operations Status. This describes the status of the cache module and/or cache operations.\r\nNote that for some controller models, a cache module board that physically attaches to the controller or chipset may not be an available option.\r\n\r\nThe status can be:\r\nOther (1)\r\n Indicates that the instrument agent does not recognize the status of the cache module. You may need to upgrade the instrument agent.\r\n\r\nInvalid (2)\r\n Indicates that a cache module board has not been installed in this system or is present but not configured.\r\n\r\nEnabled (3)\r\n Indicates that cache operations are currently configured and enabled for at least one logical drive.\r\n\r\nTemporarily Disabled (4)\r\n Indicates that cache operations have been temporarily disabled. View the cache module board error code object to determine why the write cache operations have been temporarily disabled.\r\n\r\nPermanently Disabled (5)\r\n Indicates that cache operations have been permanently disabled. View the cache module board error code object to determine why the write cache operations have been disabled.\r\n\r\nCache Module Flash Memory Not Attached (6)\r\n Indicates that the flash memory component of the flash backed cache module is not attached. This status will be set when the flash memory is not attached and the Supercap is attached. This value is only used on flash backed cache modules that support removable flash memory.\r\n\r\nCache Module Degraded Failsafe Speed (7)\r\n Indicates that the cache module board is currently degraded and operating at a failsafe speed. View variables cpqDaCacheMemoryDataWidth and cpqDaCacheMemoryTransferRate to obtain the cache module board`s current memory data width and memory transfer rate.\r\n\r\nCache Module Critical Failure (8)\r\n Indicates that the cache module board has encountered a critical failure. The controller is currently operating in Zero Memory Raid mode.\r\n\r\nRead Cache Could Not Be Mapped (9)\r\n Indicates that the read cache memory in a split cache configuration could not be mapped by the operating system and as a result is not available. This status may be caused by virtual space limitations in certain operating systems and is only applicable to B-Series controllers.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f96da82cf6da49a7a7d0d5240096f4f4');
INSERT INTO `items` (`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`,`uuid`) values ('36626','20','1.3.6.1.4.1.232.3.2.2.1.1.2.{#SNMPINDEX}','10444','{#CNTLR_LOCATION}: Disk array controller model','hp.server.hw.diskarray.model[cpqDaCntlrModel.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'521','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nArray Controller Model. The type of controller card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4da3c6124f044cb18ee51874f385309f');
INSERT INTO `items` (`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`,`uuid`) values ('36627','20','1.3.6.1.4.1.232.3.2.2.1.1.6.{#SNMPINDEX}','10444','{#CNTLR_LOCATION}: Disk array controller status','hp.server.hw.diskarray.status[cpqDaCntlrCondition.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'528','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nThis value represents the overall condition of this controller,\r\nand any associated logical drives, physical drives, and array accelerators.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','acf2b673f18f40e292301402994c1f99');
INSERT INTO `items` (`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`,`uuid`) values ('36628','20','1.3.6.1.4.1.232.6.2.6.7.1.9.{#SNMPINDEX}','10444','Fan {#SNMPINDEX}: Fan status','hp.server.sensor.fan.status[cpqHeFltTolFanCondition.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'528','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe condition of the fan.\r\nThis value will be one of the following:\r\nother(1) Fan status detection is not supported by this system or driver.\r\nok(2) The fan is operating properly.\r\ndegraded(2) A redundant fan is not operating properly.\r\nfailed(4) A non-redundant fan is not operating properly.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c92f5ccc44b3466ea824cef2371e5226');
INSERT INTO `items` (`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`,`uuid`) values ('36629','20','1.3.6.1.4.1.232.18.2.3.1.1.14.{#SNMPINDEX}','10444','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status','hp.server.net.if.status[cpqNicIfPhysAdapterStatus.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'527','','','0','','','','','2',NULL,'MIB: CPQNIC-MIB\r\nThe physical adapter status. The following values are valid:\r\nunknown(1)\r\n The instrument agent was not able to determine the status of the adapter. The instrument agent may need to be upgraded.\r\nok(2)\r\n The physical adapter is operating properly.\r\ngeneralFailure(3)\r\n The physical adapter has failed.\r\nlinkFailure(4)\r\n The physical adapter has lost link. Check the cable connections to this adapter.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','30d1913dc3484b8596a0a600e68f2e6f');
INSERT INTO `items` (`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`,`uuid`) values ('36630','20','1.3.6.1.4.1.232.3.2.5.1.1.69.{#SNMPINDEX}','10444','{#DISK_LOCATION}: Physical disk media type','hp.server.hw.physicaldisk.media_type[cpqDaPhyDrvMediaType.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'524','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nDrive Array Physical Drive Media Type. The following values are defined:\r\nother(1) The instrument agent is unable to determine the physical drive\'s media type.\r\nrotatingPlatters(2) The physical drive media is composed of rotating platters.\r\nsolidState(3) The physical drive media is composed of solid state electronics.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1e7dcaf5ef404bcbadaa2042895fc23c');
INSERT INTO `items` (`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`,`uuid`) values ('36631','20','1.3.6.1.4.1.232.3.2.5.1.1.3.{#SNMPINDEX}','10444','{#DISK_LOCATION}: Physical disk model name','hp.server.hw.physicaldisk.model[cpqDaPhyDrvModel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive Model. This is a text description of the physical drive.\r\nThe text that appears depends upon who manufactured the drive and the drive type.\r\nIf a drive fails, note the model to identify the type of drive necessary for replacement.\r\nIf a model number is not present, you may not have properly initialized the drive array to which the physical drive is attached for monitoring.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8a1551e94dca47d5b90b31d474e01d0f');
INSERT INTO `items` (`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`,`uuid`) values ('36632','20','1.3.6.1.4.1.232.3.2.5.1.1.51.{#SNMPINDEX}','10444','{#DISK_LOCATION}: Physical disk serial number','hp.server.hw.physicaldisk.serialnumber[cpqDaPhyDrvSerialNum.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive Serial Number.\r\nThis is the serial number assigned to the physical drive.\r\nThis value is based upon the serial number as returned by the SCSI inquiry command\r\nbut may have been modified due to space limitations. This can be used for identification purposes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4c1f6a97a6314ca4ab1bb6b7210b963c');
INSERT INTO `items` (`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`,`uuid`) values ('36633','20','1.3.6.1.4.1.232.3.2.5.1.1.45.{#SNMPINDEX}','10444','{#DISK_LOCATION}: Disk size','hp.server.hw.physicaldisk.size[cpqDaPhyDrvMediaType.{#SNMPINDEX}]','1m','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive Size in MB.\r\nThis is the size of the physical drive in megabytes.\r\nThis value is calculated using the value 1,048,576 (2^20) as a megabyte.\r\nDrive manufacturers sometimes use the number 1,000,000 as a megabyte when giving drive capacities so this value may differ\r\nfrom the advertised size of a drive. This field is only applicable for controllers which support SCSI drives,\r\nand therefore is not supported by the IDA or IDA-2 controllers. The field will contain 0xFFFFFFFF if the drive capacity cannot be calculated\r\nor if the controller does not support SCSI drives.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e54d9d7984974d28aa7a0ba52aec9362');
INSERT INTO `items` (`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`,`uuid`) values ('36634','20','1.3.6.1.4.1.232.3.2.5.1.1.57.{#SNMPINDEX}','10444','{#DISK_LOCATION}: Physical disk S.M.A.R.T. status','hp.server.hw.physicaldisk.smart_status[cpqDaPhyDrvSmartStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'525','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive S.M.A.R.T Status. The following values are defined:\r\nother(1) The agent is unable to determine if the status of S.M.A.R.T predictive failure monitoring for this drive.\r\nok(2) Indicates the drive is functioning properly.\r\nreplaceDrive(3) Indicates that the drive has a S.M.A.R.T predictive failure error and should be replaced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','293938d45e7a4022ac8ae31aaa4ec462');
INSERT INTO `items` (`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`,`uuid`) values ('36635','20','1.3.6.1.4.1.232.3.2.5.1.1.6.{#SNMPINDEX}','10444','{#DISK_LOCATION}: Physical disk status','hp.server.hw.physicaldisk.status[cpqDaPhyDrvStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'526','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive Status. This shows the status of the physical drive. The following values are valid for the physical drive status:\r\nother (1) Indicates that the instrument agent does not recognize the drive.\r\nYou may need to upgrade your instrument agent and/or driver software.\r\nok (2) Indicates the drive is functioning properly.\r\nfailed (3) Indicates that the drive is no longer operating and should be replaced.\r\npredictiveFailure(4) Indicates that the drive has a predictive failure error and should be replaced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b566ca9b2df4a20a053b49a26f7be9a');
INSERT INTO `items` (`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`,`uuid`) values ('36636','20','1.3.6.1.4.1.232.6.2.9.3.1.4.{#SNMPINDEX}','10444','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status','hp.server.sensor.psu.status[cpqHeFltTolPowerSupplyCondition.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'528','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe condition of the power supply. This value will be one of the following:\r\nother(1) The status could not be determined or not present.\r\nok(2) The power supply is operating normally.\r\ndegraded(3) A temperature sensor, fan or other power supply component is outside of normal operating range.\r\nfailed(4) A power supply component detects a condition that could permanently damage the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff3fc376d95c49e1aba66f253d1a12be');
INSERT INTO `items` (`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`,`uuid`) values ('36637','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10444','Ambient: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Ambient.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'517','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','30ed5199c6d24757962c807d8c28cfa5');
INSERT INTO `items` (`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`,`uuid`) values ('36638','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10444','Ambient: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Ambient.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: Ambient','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5d5b689724804879b40cc60dc31502b0');
INSERT INTO `items` (`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`,`uuid`) values ('36639','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10444','CPU-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.CPU.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'517','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1c8d32dcd5a34b51bf56adb150f84619');
INSERT INTO `items` (`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`,`uuid`) values ('36640','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10444','CPU-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.CPU.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: CPU-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9c764d85eefb4693a8eb0e0a7ee14b44');
INSERT INTO `items` (`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`,`uuid`) values ('36641','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10444','{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'517','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9496137d5d614b63a5eee07316c653b2');
INSERT INTO `items` (`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`,`uuid`) values ('36642','20','1.3.6.1.4.1.232.6.2.6.8.1.3.{#SNMPINDEX}','10444','{#SNMPINDEX}: Temperature sensor location','hp.server.sensor.temp.locale[cpqHeTemperatureLocale.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'518','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThis specifies the location of the temperature sensor present in the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f9e29891384a4691b3350478720a6035');
INSERT INTO `items` (`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`,`uuid`) values ('36643','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10444','{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: {#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0958391cde3a43c9a9ad581f61b1dba4');
INSERT INTO `items` (`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`,`uuid`) values ('36644','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10444','I/O-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition."I/O.{#SNMPINDEX}"]','1m','7d','365d','0','3','','','','',NULL,'517','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5d432d216c664b35b1ac61ce4161d786');
INSERT INTO `items` (`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`,`uuid`) values ('36645','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10444','I/O-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius."I/O.{#SNMPINDEX}"]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: I/O-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb07d42fb35f474687e3c294f1766acf');
INSERT INTO `items` (`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`,`uuid`) values ('36646','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10444','Memory-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Memory.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'517','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','01300fcd5a3743a89abebc8995f02b08');
INSERT INTO `items` (`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`,`uuid`) values ('36647','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10444','Memory-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Memory.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: Memory-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','74f92cc323d74e90b03779f216b69d33');
INSERT INTO `items` (`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`,`uuid`) values ('36648','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10444','PSU-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.PSU.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'517','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ece285778c0465ab222ea6e9a88c694');
INSERT INTO `items` (`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`,`uuid`) values ('36649','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10444','PSU-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.PSU.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: PSU-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','00be792e728e48128eedcb3e1aa1a239');
INSERT INTO `items` (`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`,`uuid`) values ('36650','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10444','System-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.System.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'517','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f62552cf4ca64a6e801b127e956205fe');
INSERT INTO `items` (`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`,`uuid`) values ('36651','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10444','System-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.System.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: System-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','468c378de2674fa2b68286f57d5795f2');
INSERT INTO `items` (`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`,`uuid`) values ('36652','20','1.3.6.1.4.1.232.3.2.3.1.1.3.{#SNMPINDEX}','10444','Disk {#SNMPINDEX}({#DISK_NAME}): Layout type','hp.server.hw.virtualdisk.layout[cpqDaLogDrvFaultTol.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'522','','','0','','','','','2',NULL,'Logical Drive Fault Tolerance.\r\nThis shows the fault tolerance mode of the logical drive.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0f455a7e24494f2cba362479f4b27959');
INSERT INTO `items` (`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`,`uuid`) values ('36653','20','1.3.6.1.4.1.232.3.2.3.1.1.9.{#SNMPINDEX}','10444','Disk {#SNMPINDEX}({#DISK_NAME}): Disk size','hp.server.hw.virtualdisk.size[cpqDaLogDrvSize.{#SNMPINDEX}]','1m','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Logical Drive Size.\r\nThis is the size of the logical drive in megabytes. This value\r\nis calculated using the value 1,048,576 (2^20) as a megabyte.\r\nDrive manufacturers sometimes use the number 1,000,000 as a\r\nmegabyte when giving drive capacities so this value may\r\ndiffer from the advertised size of a drive.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1c2377f711424a5e9cfb038e136192c9');
INSERT INTO `items` (`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`,`uuid`) values ('36654','20','1.3.6.1.4.1.232.3.2.3.1.1.4.{#SNMPINDEX}','10444','Disk {#SNMPINDEX}({#DISK_NAME}): Status','hp.server.hw.virtualdisk.status[cpqDaLogDrvStatus.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'523','','','0','','','','','2',NULL,'Logical Drive Status.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dd28f993fc6c42a6b600246b9714a179');
INSERT INTO `items` (`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`,`uuid`) values ('36655','20','1.3.6.1.2.1.1.4.0','10445','System contact details','hp.server.contact[sysContact]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','5f90d6150d544b13b659a4023ced96fc');
INSERT INTO `items` (`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`,`uuid`) values ('36656','20','1.3.6.1.2.1.1.1.0','10445','System description','hp.server.descr[sysDescr]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2594044e5b6046c3944cc54744f7f133');
INSERT INTO `items` (`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`,`uuid`) values ('36657','20','1.3.6.1.4.1.232.2.2.4.2.0','10445','Hardware model name','hp.server.hw.model[cpqSiProductName]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CPQSINFO-MIB\r\nThe machine product name. The name of the machine used in this system.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2a807f6dd73e41418df98e294470ed67');
INSERT INTO `items` (`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`,`uuid`) values ('36658','20','1.3.6.1.4.1.232.2.2.2.1.0','10445','Hardware serial number','hp.server.hw.serialnumber[cpqSiSysSerialNum]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CPQSINFO-MIB\r\nThe serial number of the physical system unit. The string will be empty if the system does not report the serial number function.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0aab370a165b42208ddc7e0ae693dabf');
INSERT INTO `items` (`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`,`uuid`) values ('36659','20','1.3.6.1.2.1.1.6.0','10445','System location','hp.server.location[sysLocation]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','71486d7865174980a004d566e0a9e885');
INSERT INTO `items` (`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`,`uuid`) values ('36660','20','1.3.6.1.2.1.1.5.0','10445','System name','hp.server.name[sysName]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2b0f62e1317c4900a7daee824cb360a3');
INSERT INTO `items` (`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`,`uuid`) values ('36661','20','1.3.6.1.2.1.1.2.0','10445','System object ID','hp.server.objectid[sysObjectID]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b554640957a04d1fa2fc4bf91a0b81a2');
INSERT INTO `items` (`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`,`uuid`) values ('36662','20','1.3.6.1.4.1.232.6.2.6.1.0','10445','System temperature status','hp.server.sensor.temp.status[cpqHeThermalCondition]','1m','7d','0d','0','3','','','','',NULL,'541','','','0','','','','','0',NULL,'MIB: CPQHLTH-MIB\r\nThis value specifies the overall condition of the system\'s thermal environment.\r\nThis value will be one of the following:\r\nother(1) Temperature could not be determined.\r\nok(2) The temperature sensor is within normal operating range.\r\ndegraded(3) The temperature sensor is outside of normal operating range.\r\nfailed(4) The temperature sensor detects a condition that could permanently damage the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c9f9d96d50442bd99d6c46db6970d3d');
INSERT INTO `items` (`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`,`uuid`) values ('36663','20','1.3.6.1.4.1.232.6.1.3.0','10445','Overall system health status','hp.server.status[cpqHeMibCondition]','1m','7d','0d','0','3','','','','',NULL,'541','','','0','','','','','0',NULL,'MIB: CPQHLTH-MIB\r\nThe overall condition. This object represents the overall status of the server information represented by this MIB.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f61796d773b94de6b5177102cfb72005');
INSERT INTO `items` (`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`,`uuid`) values ('36664','20','1.3.6.1.2.1.1.3.0','10445','Uptime (network)','hp.server.net.uptime[sysUpTime]','1m','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','361fa26e08284bbd822e17efde9a7856');
INSERT INTO `items` (`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`,`uuid`) values ('36665','17','','10445','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','730b5262f94c4643bbcc4feb59b614da');
INSERT INTO `items` (`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`,`uuid`) values ('36666','5','','10445','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'542','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cb8fe041c0344b8f807a61a0d53344de');
INSERT INTO `items` (`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`,`uuid`) values ('36667','20','discovery[{#CACHE_STATUS},1.3.6.1.4.1.232.3.2.2.2.1.2,{#CACHE_CNTRL_INDEX},1.3.6.1.4.1.232.3.2.2.2.1.1]','10445','Array controller cache discovery','array.cache.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CPQIDA-MIB::cpqDaAccelTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','81158a1ef55449568a453214435d9332');
INSERT INTO `items` (`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`,`uuid`) values ('36668','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.2.1.1.1,{#CNTLR_SLOT},1.3.6.1.4.1.232.3.2.2.1.1.5,{#CNTLR_LOCATION},1.3.6.1.4.1.232.3.2.2.1.1.20]','10445','Array controller discovery','array.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CPQIDA-MIB::cpqDaCntlrTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4bcefb33e0f545e0bcdc8fb92c8376c9');
INSERT INTO `items` (`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`,`uuid`) values ('36669','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.7.1.9]','10445','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQHLTH-MIB::cpqHeFltTolFanCondition','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','42b03d399c8c420ab540fc2736e58a44');
INSERT INTO `items` (`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`,`uuid`) values ('36670','20','discovery[{#ADAPTER_INDEX},1.3.6.1.4.1.232.18.2.3.1.1.1,{#ADAPTER_NAME},1.3.6.1.4.1.232.18.2.3.1.1.39]','10445','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQIDA-MIB::cpqNicIfPhysAdapterTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f8ab5448b85f44f09263de1e173760ea');
INSERT INTO `items` (`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`,`uuid`) values ('36671','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.5.1.1.5,{#DISK_LOCATION},1.3.6.1.4.1.232.3.2.5.1.1.64]','10445','Physical disk discovery','physicaldisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of physical drive entries CPQIDA-MIB::cpqDaPhyDrvTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','51066791fd384fc49518f507ec925ade');
INSERT INTO `items` (`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`,`uuid`) values ('36672','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.9.3.1.5,{#CHASSIS_NUM},1.3.6.1.4.1.232.6.2.9.3.1.1,{#BAY_NUM},1.3.6.1.4.1.232.6.2.9.3.1.2]','10445','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQHLTH-MIB::cpqHeFltTolPowerSupplyStatus','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9f4e53ed613049e1a4c23b13e666c849');
INSERT INTO `items` (`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`,`uuid`) values ('36673','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10445','Temperature ambient discovery','temp.ambient.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with ambient(11) and 0.1 index filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','413a7167b1864ee69250096459e7eac9');
INSERT INTO `items` (`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`,`uuid`) values ('36674','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10445','Temperature CPU discovery','temp.cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with cpu(6) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','efad502d9a304457a55b73fc51007b0d');
INSERT INTO `items` (`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`,`uuid`) values ('36675','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10445','Temperature discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','28c47461dfd64df995e72212d6798479');
INSERT INTO `items` (`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`,`uuid`) values ('36676','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10445','Temperature I/O discovery','temp.io.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with ioBoard(5) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','37ceae2e5635456695e3c8ed6d91ea60');
INSERT INTO `items` (`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`,`uuid`) values ('36677','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10445','Temperature memory discovery','temp.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with memory(7) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a668aae03dfd4012a71dd70c43e20eb0');
INSERT INTO `items` (`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`,`uuid`) values ('36678','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10445','Temperature PSU discovery','temp.psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with powerSupply(10) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b9cda4cedd5f4e43a65126d5a5cef67d');
INSERT INTO `items` (`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`,`uuid`) values ('36679','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10445','Temperature system discovery','temp.system.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8402ab901d3744508f46713034ae26fb');
INSERT INTO `items` (`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`,`uuid`) values ('36680','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.3.1.1.2,{#DISK_NAME},1.3.6.1.4.1.232.3.2.3.1.1.14]','10445','Virtual disk discovery','virtualdisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQIDA-MIB::cpqDaLogDrvTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1bd919cfcd3a4225b81997e3d75a0d32');
INSERT INTO `items` (`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`,`uuid`) values ('36681','20','1.3.6.1.4.1.232.3.2.2.2.1.6.{#SNMPINDEX}','10445','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status','hp.server.hw.diskarray.cache.battery.status[cpqDaAccelBattery.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'532','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nCache Module Board Backup Power Status. This monitors the status of each backup power source on the board.\r\nThe backup power source can only recharge when the system has power applied. The type of backup power source used is indicated by cpqDaAccelBackupPowerSource.\r\nThe following values are valid:\r\nOther (1) Indicates that the instrument agent does not recognize backup power status. You may need to update your software.\r\n\r\nOk (2) The backup power source is fully charged.\r\n\r\nRecharging (3) The array controller has one or more cache module backup power sources that are recharging.\r\nCache module operations such as Battery/Flash Backed Write Cache, Expansion, Extension and Migration are temporarily suspended until the backup power source is fully charged.\r\nCache module operations will automatically resume when charging is complete.\r\n\r\nFailed (4) The battery pack is below the sufficient voltage level and has not recharged in 36 hours.\r\nYour Cache Module board needs to be serviced.\r\n\r\nDegraded (5) The battery is still operating, however, one of the batteries in the pack has failed to recharge properly.\r\nYour Cache Module board should be serviced as soon as possible.\r\n\r\nNotPresent (6) A backup power source is not present on the cache module board. Some controllers do not have backup power sources.\r\n\r\nCapacitor Failed (7) The flash backed cache module capacitor is below the sufficient voltage level and has not recharged in 10 minutes. Your Cache Module board needs to be serviced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5fd8817af6b24ced8ce04ea092bda5ee');
INSERT INTO `items` (`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`,`uuid`) values ('36682','20','1.3.6.1.4.1.232.3.2.2.2.1.2.{#SNMPINDEX}','10445','#{#CACHE_CNTRL_INDEX}: Disk array cache controller status','hp.server.hw.diskarray.cache.status[cpqDaAccelStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'533','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nCache Module/Operations Status. This describes the status of the cache module and/or cache operations.\r\nNote that for some controller models, a cache module board that physically attaches to the controller or chipset may not be an available option.\r\n\r\nThe status can be:\r\nOther (1)\r\n Indicates that the instrument agent does not recognize the status of the cache module. You may need to upgrade the instrument agent.\r\n\r\nInvalid (2)\r\n Indicates that a cache module board has not been installed in this system or is present but not configured.\r\n\r\nEnabled (3)\r\n Indicates that cache operations are currently configured and enabled for at least one logical drive.\r\n\r\nTemporarily Disabled (4)\r\n Indicates that cache operations have been temporarily disabled. View the cache module board error code object to determine why the write cache operations have been temporarily disabled.\r\n\r\nPermanently Disabled (5)\r\n Indicates that cache operations have been permanently disabled. View the cache module board error code object to determine why the write cache operations have been disabled.\r\n\r\nCache Module Flash Memory Not Attached (6)\r\n Indicates that the flash memory component of the flash backed cache module is not attached. This status will be set when the flash memory is not attached and the Supercap is attached. This value is only used on flash backed cache modules that support removable flash memory.\r\n\r\nCache Module Degraded Failsafe Speed (7)\r\n Indicates that the cache module board is currently degraded and operating at a failsafe speed. View variables cpqDaCacheMemoryDataWidth and cpqDaCacheMemoryTransferRate to obtain the cache module board`s current memory data width and memory transfer rate.\r\n\r\nCache Module Critical Failure (8)\r\n Indicates that the cache module board has encountered a critical failure. The controller is currently operating in Zero Memory Raid mode.\r\n\r\nRead Cache Could Not Be Mapped (9)\r\n Indicates that the read cache memory in a split cache configuration could not be mapped by the operating system and as a result is not available. This status may be caused by virtual space limitations in certain operating systems and is only applicable to B-Series controllers.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','28dc0b13c364443c8026e03ad00a33cb');
INSERT INTO `items` (`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`,`uuid`) values ('36683','20','1.3.6.1.4.1.232.3.2.2.1.1.2.{#SNMPINDEX}','10445','{#CNTLR_LOCATION}: Disk array controller model','hp.server.hw.diskarray.model[cpqDaCntlrModel.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'534','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nArray Controller Model. The type of controller card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3bf1b9b2574440d88b4c1fde09a89810');
INSERT INTO `items` (`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`,`uuid`) values ('36684','20','1.3.6.1.4.1.232.3.2.2.1.1.6.{#SNMPINDEX}','10445','{#CNTLR_LOCATION}: Disk array controller status','hp.server.hw.diskarray.status[cpqDaCntlrCondition.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'541','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nThis value represents the overall condition of this controller,\r\nand any associated logical drives, physical drives, and array accelerators.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ef99c5df575646f3a4f29b6e1b4761c1');
INSERT INTO `items` (`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`,`uuid`) values ('36685','20','1.3.6.1.4.1.232.6.2.6.7.1.9.{#SNMPINDEX}','10445','Fan {#SNMPINDEX}: Fan status','hp.server.sensor.fan.status[cpqHeFltTolFanCondition.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'541','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe condition of the fan.\r\nThis value will be one of the following:\r\nother(1) Fan status detection is not supported by this system or driver.\r\nok(2) The fan is operating properly.\r\ndegraded(2) A redundant fan is not operating properly.\r\nfailed(4) A non-redundant fan is not operating properly.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d153662e4a16479a806c8b6b0d247823');
INSERT INTO `items` (`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`,`uuid`) values ('36686','20','1.3.6.1.4.1.232.18.2.3.1.1.14.{#SNMPINDEX}','10445','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status','hp.server.net.if.status[cpqNicIfPhysAdapterStatus.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'540','','','0','','','','','2',NULL,'MIB: CPQNIC-MIB\r\nThe physical adapter status. The following values are valid:\r\nunknown(1)\r\n The instrument agent was not able to determine the status of the adapter. The instrument agent may need to be upgraded.\r\nok(2)\r\n The physical adapter is operating properly.\r\ngeneralFailure(3)\r\n The physical adapter has failed.\r\nlinkFailure(4)\r\n The physical adapter has lost link. Check the cable connections to this adapter.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3d0b8a8038c848e69559fb3273da7546');
INSERT INTO `items` (`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`,`uuid`) values ('36687','20','1.3.6.1.4.1.232.3.2.5.1.1.69.{#SNMPINDEX}','10445','{#DISK_LOCATION}: Physical disk media type','hp.server.hw.physicaldisk.media_type[cpqDaPhyDrvMediaType.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'537','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nDrive Array Physical Drive Media Type. The following values are defined:\r\nother(1) The instrument agent is unable to determine the physical drive\'s media type.\r\nrotatingPlatters(2) The physical drive media is composed of rotating platters.\r\nsolidState(3) The physical drive media is composed of solid state electronics.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0444a75b820a4fa18baa8a846d51202f');
INSERT INTO `items` (`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`,`uuid`) values ('36688','20','1.3.6.1.4.1.232.3.2.5.1.1.3.{#SNMPINDEX}','10445','{#DISK_LOCATION}: Physical disk model name','hp.server.hw.physicaldisk.model[cpqDaPhyDrvModel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive Model. This is a text description of the physical drive.\r\nThe text that appears depends upon who manufactured the drive and the drive type.\r\nIf a drive fails, note the model to identify the type of drive necessary for replacement.\r\nIf a model number is not present, you may not have properly initialized the drive array to which the physical drive is attached for monitoring.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','440f9a6fab244970bd1a9cb8691c6871');
INSERT INTO `items` (`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`,`uuid`) values ('36689','20','1.3.6.1.4.1.232.3.2.5.1.1.51.{#SNMPINDEX}','10445','{#DISK_LOCATION}: Physical disk serial number','hp.server.hw.physicaldisk.serialnumber[cpqDaPhyDrvSerialNum.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive Serial Number.\r\nThis is the serial number assigned to the physical drive.\r\nThis value is based upon the serial number as returned by the SCSI inquiry command\r\nbut may have been modified due to space limitations. This can be used for identification purposes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6ec3e18ffc214abaa35bd8d82f8a9bf3');
INSERT INTO `items` (`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`,`uuid`) values ('36690','20','1.3.6.1.4.1.232.3.2.5.1.1.45.{#SNMPINDEX}','10445','{#DISK_LOCATION}: Disk size','hp.server.hw.physicaldisk.size[cpqDaPhyDrvMediaType.{#SNMPINDEX}]','1m','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive Size in MB.\r\nThis is the size of the physical drive in megabytes.\r\nThis value is calculated using the value 1,048,576 (2^20) as a megabyte.\r\nDrive manufacturers sometimes use the number 1,000,000 as a megabyte when giving drive capacities so this value may differ\r\nfrom the advertised size of a drive. This field is only applicable for controllers which support SCSI drives,\r\nand therefore is not supported by the IDA or IDA-2 controllers. The field will contain 0xFFFFFFFF if the drive capacity cannot be calculated\r\nor if the controller does not support SCSI drives.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','96fdb84f875243a0904f5ad4b9f0fc65');
INSERT INTO `items` (`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`,`uuid`) values ('36691','20','1.3.6.1.4.1.232.3.2.5.1.1.57.{#SNMPINDEX}','10445','{#DISK_LOCATION}: Physical disk S.M.A.R.T. status','hp.server.hw.physicaldisk.smart_status[cpqDaPhyDrvSmartStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'538','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive S.M.A.R.T Status. The following values are defined:\r\nother(1) The agent is unable to determine if the status of S.M.A.R.T predictive failure monitoring for this drive.\r\nok(2) Indicates the drive is functioning properly.\r\nreplaceDrive(3) Indicates that the drive has a S.M.A.R.T predictive failure error and should be replaced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac29b3b9ec8d4edca37eaba2207c5585');
INSERT INTO `items` (`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`,`uuid`) values ('36692','20','1.3.6.1.4.1.232.3.2.5.1.1.6.{#SNMPINDEX}','10445','{#DISK_LOCATION}: Physical disk status','hp.server.hw.physicaldisk.status[cpqDaPhyDrvStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'539','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive Status. This shows the status of the physical drive. The following values are valid for the physical drive status:\r\nother (1) Indicates that the instrument agent does not recognize the drive.\r\nYou may need to upgrade your instrument agent and/or driver software.\r\nok (2) Indicates the drive is functioning properly.\r\nfailed (3) Indicates that the drive is no longer operating and should be replaced.\r\npredictiveFailure(4) Indicates that the drive has a predictive failure error and should be replaced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cfd49d624f1b4980ac71a115df1cdfdf');
INSERT INTO `items` (`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`,`uuid`) values ('36693','20','1.3.6.1.4.1.232.6.2.9.3.1.4.{#SNMPINDEX}','10445','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status','hp.server.sensor.psu.status[cpqHeFltTolPowerSupplyCondition.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'541','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe condition of the power supply. This value will be one of the following:\r\nother(1) The status could not be determined or not present.\r\nok(2) The power supply is operating normally.\r\ndegraded(3) A temperature sensor, fan or other power supply component is outside of normal operating range.\r\nfailed(4) A power supply component detects a condition that could permanently damage the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a9911ac100104b578860a29e8fbed521');
INSERT INTO `items` (`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`,`uuid`) values ('36694','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10445','Ambient: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Ambient.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'530','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6cc334e5558749a2ad78985a3a11bb29');
INSERT INTO `items` (`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`,`uuid`) values ('36695','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10445','Ambient: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Ambient.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: Ambient','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6fa0ecd1551f469ba61b9efe1120a164');
INSERT INTO `items` (`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`,`uuid`) values ('36696','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10445','CPU-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.CPU.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'530','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c7dccb9af4a4364924452edba91f6ca');
INSERT INTO `items` (`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`,`uuid`) values ('36697','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10445','CPU-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.CPU.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: CPU-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b137b39eccc24e49a775234076816f17');
INSERT INTO `items` (`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`,`uuid`) values ('36698','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10445','{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'530','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','62e9ac33b79c48988946dd79f701aa45');
INSERT INTO `items` (`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`,`uuid`) values ('36699','20','1.3.6.1.4.1.232.6.2.6.8.1.3.{#SNMPINDEX}','10445','{#SNMPINDEX}: Temperature sensor location','hp.server.sensor.temp.locale[cpqHeTemperatureLocale.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'531','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThis specifies the location of the temperature sensor present in the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cf6090b148534fd38fd6f9d769a4ac0f');
INSERT INTO `items` (`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`,`uuid`) values ('36700','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10445','{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: {#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cad2c5d64bf84f18ab1e0037579c1d1c');
INSERT INTO `items` (`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`,`uuid`) values ('36701','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10445','I/O-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition."I/O.{#SNMPINDEX}"]','1m','7d','365d','0','3','','','','',NULL,'530','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e0e31534c41a4bf69eea5bab3f5831fd');
INSERT INTO `items` (`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`,`uuid`) values ('36702','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10445','I/O-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius."I/O.{#SNMPINDEX}"]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: I/O-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d6403c935b8e44a2baa2805898b85696');
INSERT INTO `items` (`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`,`uuid`) values ('36703','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10445','Memory-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Memory.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'530','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','09dc4ba365a64b5d8585e7c00380dd53');
INSERT INTO `items` (`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`,`uuid`) values ('36704','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10445','Memory-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Memory.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: Memory-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','01dd0a5b92fe4071b43d20f52d4f4b52');
INSERT INTO `items` (`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`,`uuid`) values ('36705','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10445','PSU-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.PSU.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'530','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cf425ae8caed4061960b71daec7ba273');
INSERT INTO `items` (`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`,`uuid`) values ('36706','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10445','PSU-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.PSU.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: PSU-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','96b82f3f3ff8415ca613a87edc83c34b');
INSERT INTO `items` (`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`,`uuid`) values ('36707','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10445','System-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.System.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'530','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ce80892fad4497aadff5c2adc9c44b2');
INSERT INTO `items` (`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`,`uuid`) values ('36708','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10445','System-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.System.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: System-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','477b63282a034574b3e395fcd54b02c0');
INSERT INTO `items` (`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`,`uuid`) values ('36709','20','1.3.6.1.4.1.232.3.2.3.1.1.3.{#SNMPINDEX}','10445','Disk {#SNMPINDEX}({#DISK_NAME}): Layout type','hp.server.hw.virtualdisk.layout[cpqDaLogDrvFaultTol.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'535','','','0','','','','','2',NULL,'Logical Drive Fault Tolerance.\r\nThis shows the fault tolerance mode of the logical drive.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1635da24ff484926900f086afde33448');
INSERT INTO `items` (`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`,`uuid`) values ('36710','20','1.3.6.1.4.1.232.3.2.3.1.1.9.{#SNMPINDEX}','10445','Disk {#SNMPINDEX}({#DISK_NAME}): Disk size','hp.server.hw.virtualdisk.size[cpqDaLogDrvSize.{#SNMPINDEX}]','1m','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Logical Drive Size.\r\nThis is the size of the logical drive in megabytes. This value\r\nis calculated using the value 1,048,576 (2^20) as a megabyte.\r\nDrive manufacturers sometimes use the number 1,000,000 as a\r\nmegabyte when giving drive capacities so this value may\r\ndiffer from the advertised size of a drive.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','91f0d0cacf1b4dc7a25168be320c5281');
INSERT INTO `items` (`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`,`uuid`) values ('36711','20','1.3.6.1.4.1.232.3.2.3.1.1.4.{#SNMPINDEX}','10445','Disk {#SNMPINDEX}({#DISK_NAME}): Status','hp.server.hw.virtualdisk.status[cpqDaLogDrvStatus.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'536','','','0','','','','','2',NULL,'Logical Drive Status.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3e7826d4fb834aa9853955d348ece29b');
INSERT INTO `items` (`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`,`uuid`) values ('36712','20','1.3.6.1.2.1.1.4.0','10446','System contact details','hp.server.contact[sysContact]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','19ed955aeefa493883a151ddb550b8ff');
INSERT INTO `items` (`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`,`uuid`) values ('36713','20','1.3.6.1.2.1.1.1.0','10446','System description','hp.server.descr[sysDescr]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7b9fc7a143c74d1b812d14413c1f53b0');
INSERT INTO `items` (`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`,`uuid`) values ('36714','20','1.3.6.1.4.1.232.2.2.4.2.0','10446','Hardware model name','hp.server.hw.model[cpqSiProductName]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CPQSINFO-MIB\r\nThe machine product name. The name of the machine used in this system.','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d2cad986747643658bee67492d90d106');
INSERT INTO `items` (`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`,`uuid`) values ('36715','20','1.3.6.1.4.1.232.2.2.2.1.0','10446','Hardware serial number','hp.server.hw.serialnumber[cpqSiSysSerialNum]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CPQSINFO-MIB\r\nThe serial number of the physical system unit. The string will be empty if the system does not report the serial number function.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6cdacf190c584227b822fee9c112b849');
INSERT INTO `items` (`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`,`uuid`) values ('36716','20','1.3.6.1.2.1.1.6.0','10446','System location','hp.server.location[sysLocation]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','622dd9bef33b4db7bf5899a6f6ccb7b3');
INSERT INTO `items` (`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`,`uuid`) values ('36717','20','1.3.6.1.2.1.1.5.0','10446','System name','hp.server.name[sysName]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2726dcd682d340b681f5dfa8d1e3ef07');
INSERT INTO `items` (`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`,`uuid`) values ('36718','20','1.3.6.1.2.1.1.2.0','10446','System object ID','hp.server.objectid[sysObjectID]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1394f5cfccb64c53abd8cff0f095906f');
INSERT INTO `items` (`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`,`uuid`) values ('36719','20','1.3.6.1.4.1.232.6.2.6.1.0','10446','System temperature status','hp.server.sensor.temp.status[cpqHeThermalCondition]','1m','7d','0d','0','3','','','','',NULL,'554','','','0','','','','','0',NULL,'MIB: CPQHLTH-MIB\r\nThis value specifies the overall condition of the system\'s thermal environment.\r\nThis value will be one of the following:\r\nother(1) Temperature could not be determined.\r\nok(2) The temperature sensor is within normal operating range.\r\ndegraded(3) The temperature sensor is outside of normal operating range.\r\nfailed(4) The temperature sensor detects a condition that could permanently damage the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','09930c5b67d44de49bedfe7465697d40');
INSERT INTO `items` (`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`,`uuid`) values ('36720','20','1.3.6.1.4.1.232.6.1.3.0','10446','Overall system health status','hp.server.status[cpqHeMibCondition]','1m','7d','0d','0','3','','','','',NULL,'554','','','0','','','','','0',NULL,'MIB: CPQHLTH-MIB\r\nThe overall condition. This object represents the overall status of the server information represented by this MIB.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e980a83b24bd4bdb9d2b7369d41c9aea');
INSERT INTO `items` (`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`,`uuid`) values ('36721','20','1.3.6.1.2.1.1.3.0','10446','Uptime (network)','hp.server.net.uptime[sysUpTime]','1m','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5576766f3a004fd3894ff22da515aedc');
INSERT INTO `items` (`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`,`uuid`) values ('36722','17','','10446','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','1170728f4f534d19acfa001d1b00dcc4');
INSERT INTO `items` (`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`,`uuid`) values ('36723','5','','10446','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'555','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','53bf83d6a797436da2d1d8498410a113');
INSERT INTO `items` (`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`,`uuid`) values ('36724','20','discovery[{#CACHE_STATUS},1.3.6.1.4.1.232.3.2.2.2.1.2,{#CACHE_CNTRL_INDEX},1.3.6.1.4.1.232.3.2.2.2.1.1]','10446','Array controller cache discovery','array.cache.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CPQIDA-MIB::cpqDaAccelTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','43aa549fc1584a68a9d86375aa491b41');
INSERT INTO `items` (`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`,`uuid`) values ('36725','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.2.1.1.1,{#CNTLR_SLOT},1.3.6.1.4.1.232.3.2.2.1.1.5,{#CNTLR_LOCATION},1.3.6.1.4.1.232.3.2.2.1.1.20]','10446','Array controller discovery','array.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CPQIDA-MIB::cpqDaCntlrTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b35b69931e57486dbb40116512fd1242');
INSERT INTO `items` (`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`,`uuid`) values ('36726','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.7.1.9]','10446','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQHLTH-MIB::cpqHeFltTolFanCondition','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','850b34fb782e463a9a0fe75336c166f7');
INSERT INTO `items` (`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`,`uuid`) values ('36727','20','discovery[{#ADAPTER_INDEX},1.3.6.1.4.1.232.18.2.3.1.1.1,{#ADAPTER_NAME},1.3.6.1.4.1.232.18.2.3.1.1.39]','10446','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQIDA-MIB::cpqNicIfPhysAdapterTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','647156a1894340a88bd6eb08c9ee60b6');
INSERT INTO `items` (`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`,`uuid`) values ('36728','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.5.1.1.5,{#DISK_LOCATION},1.3.6.1.4.1.232.3.2.5.1.1.64]','10446','Physical disk discovery','physicaldisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of physical drive entries CPQIDA-MIB::cpqDaPhyDrvTable.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b4c4a7f18ef44003acbccfc274f76a2d');
INSERT INTO `items` (`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`,`uuid`) values ('36729','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.9.3.1.5,{#CHASSIS_NUM},1.3.6.1.4.1.232.6.2.9.3.1.1,{#BAY_NUM},1.3.6.1.4.1.232.6.2.9.3.1.2]','10446','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQHLTH-MIB::cpqHeFltTolPowerSupplyStatus','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8e0a11054b46479c9124d03c89967618');
INSERT INTO `items` (`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`,`uuid`) values ('36730','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10446','Temperature ambient discovery','temp.ambient.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with ambient(11) and 0.1 index filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','718aebe90d154170b6d05d5fc97ac024');
INSERT INTO `items` (`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`,`uuid`) values ('36731','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10446','Temperature CPU discovery','temp.cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with cpu(6) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','79e388de30c64430ac9f15f94cf8fec2');
INSERT INTO `items` (`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`,`uuid`) values ('36732','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10446','Temperature discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ee9de30ee97842fe801118cb42b92ab9');
INSERT INTO `items` (`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`,`uuid`) values ('36733','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10446','Temperature I/O discovery','temp.io.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with ioBoard(5) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','725c3cf3a398494faf3f330fb25a146c');
INSERT INTO `items` (`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`,`uuid`) values ('36734','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10446','Temperature memory discovery','temp.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with memory(7) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','353c1660698744608f0e67b4cd27f0b3');
INSERT INTO `items` (`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`,`uuid`) values ('36735','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10446','Temperature PSU discovery','temp.psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with powerSupply(10) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e34420d2583145feafb4d89d010e067f');
INSERT INTO `items` (`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`,`uuid`) values ('36736','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10446','Temperature system discovery','temp.system.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries:\r\nCPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','043c4fa05fcb4bf7917cf56c2513fbdd');
INSERT INTO `items` (`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`,`uuid`) values ('36737','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.3.1.1.2,{#DISK_NAME},1.3.6.1.4.1.232.3.2.3.1.1.14]','10446','Virtual disk discovery','virtualdisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQIDA-MIB::cpqDaLogDrvTable','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2fa5e2604e5649cca3f04c759dfe2321');
INSERT INTO `items` (`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`,`uuid`) values ('36738','20','1.3.6.1.4.1.232.3.2.2.2.1.6.{#SNMPINDEX}','10446','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status','hp.server.hw.diskarray.cache.battery.status[cpqDaAccelBattery.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'545','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nCache Module Board Backup Power Status. This monitors the status of each backup power source on the board.\r\nThe backup power source can only recharge when the system has power applied. The type of backup power source used is indicated by cpqDaAccelBackupPowerSource.\r\nThe following values are valid:\r\nOther (1) Indicates that the instrument agent does not recognize backup power status. You may need to update your software.\r\n\r\nOk (2) The backup power source is fully charged.\r\n\r\nRecharging (3) The array controller has one or more cache module backup power sources that are recharging.\r\nCache module operations such as Battery/Flash Backed Write Cache, Expansion, Extension and Migration are temporarily suspended until the backup power source is fully charged.\r\nCache module operations will automatically resume when charging is complete.\r\n\r\nFailed (4) The battery pack is below the sufficient voltage level and has not recharged in 36 hours.\r\nYour Cache Module board needs to be serviced.\r\n\r\nDegraded (5) The battery is still operating, however, one of the batteries in the pack has failed to recharge properly.\r\nYour Cache Module board should be serviced as soon as possible.\r\n\r\nNotPresent (6) A backup power source is not present on the cache module board. Some controllers do not have backup power sources.\r\n\r\nCapacitor Failed (7) The flash backed cache module capacitor is below the sufficient voltage level and has not recharged in 10 minutes. Your Cache Module board needs to be serviced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','11c4de648fe041c288ca7bcf062df6e4');
INSERT INTO `items` (`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`,`uuid`) values ('36739','20','1.3.6.1.4.1.232.3.2.2.2.1.2.{#SNMPINDEX}','10446','#{#CACHE_CNTRL_INDEX}: Disk array cache controller status','hp.server.hw.diskarray.cache.status[cpqDaAccelStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'546','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nCache Module/Operations Status. This describes the status of the cache module and/or cache operations.\r\nNote that for some controller models, a cache module board that physically attaches to the controller or chipset may not be an available option.\r\n\r\nThe status can be:\r\nOther (1)\r\n Indicates that the instrument agent does not recognize the status of the cache module. You may need to upgrade the instrument agent.\r\n\r\nInvalid (2)\r\n Indicates that a cache module board has not been installed in this system or is present but not configured.\r\n\r\nEnabled (3)\r\n Indicates that cache operations are currently configured and enabled for at least one logical drive.\r\n\r\nTemporarily Disabled (4)\r\n Indicates that cache operations have been temporarily disabled. View the cache module board error code object to determine why the write cache operations have been temporarily disabled.\r\n\r\nPermanently Disabled (5)\r\n Indicates that cache operations have been permanently disabled. View the cache module board error code object to determine why the write cache operations have been disabled.\r\n\r\nCache Module Flash Memory Not Attached (6)\r\n Indicates that the flash memory component of the flash backed cache module is not attached. This status will be set when the flash memory is not attached and the Supercap is attached. This value is only used on flash backed cache modules that support removable flash memory.\r\n\r\nCache Module Degraded Failsafe Speed (7)\r\n Indicates that the cache module board is currently degraded and operating at a failsafe speed. View variables cpqDaCacheMemoryDataWidth and cpqDaCacheMemoryTransferRate to obtain the cache module board`s current memory data width and memory transfer rate.\r\n\r\nCache Module Critical Failure (8)\r\n Indicates that the cache module board has encountered a critical failure. The controller is currently operating in Zero Memory Raid mode.\r\n\r\nRead Cache Could Not Be Mapped (9)\r\n Indicates that the read cache memory in a split cache configuration could not be mapped by the operating system and as a result is not available. This status may be caused by virtual space limitations in certain operating systems and is only applicable to B-Series controllers.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','941ef3a8d3994186b16a1a82aed3649b');
INSERT INTO `items` (`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`,`uuid`) values ('36740','20','1.3.6.1.4.1.232.3.2.2.1.1.2.{#SNMPINDEX}','10446','{#CNTLR_LOCATION}: Disk array controller model','hp.server.hw.diskarray.model[cpqDaCntlrModel.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'547','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nArray Controller Model. The type of controller card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','db28dbd324304d07b20de5055d158c82');
INSERT INTO `items` (`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`,`uuid`) values ('36741','20','1.3.6.1.4.1.232.3.2.2.1.1.6.{#SNMPINDEX}','10446','{#CNTLR_LOCATION}: Disk array controller status','hp.server.hw.diskarray.status[cpqDaCntlrCondition.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'554','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nThis value represents the overall condition of this controller,\r\nand any associated logical drives, physical drives, and array accelerators.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','114e43daf33d4842aa435031aca2bf22');
INSERT INTO `items` (`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`,`uuid`) values ('36742','20','1.3.6.1.4.1.232.6.2.6.7.1.9.{#SNMPINDEX}','10446','Fan {#SNMPINDEX}: Fan status','hp.server.sensor.fan.status[cpqHeFltTolFanCondition.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'554','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe condition of the fan.\r\nThis value will be one of the following:\r\nother(1) Fan status detection is not supported by this system or driver.\r\nok(2) The fan is operating properly.\r\ndegraded(2) A redundant fan is not operating properly.\r\nfailed(4) A non-redundant fan is not operating properly.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f33c7ee5675f4f35ae6e781c693e03c4');
INSERT INTO `items` (`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`,`uuid`) values ('36743','20','1.3.6.1.4.1.232.18.2.3.1.1.14.{#SNMPINDEX}','10446','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status','hp.server.net.if.status[cpqNicIfPhysAdapterStatus.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'553','','','0','','','','','2',NULL,'MIB: CPQNIC-MIB\r\nThe physical adapter status. The following values are valid:\r\nunknown(1)\r\n The instrument agent was not able to determine the status of the adapter. The instrument agent may need to be upgraded.\r\nok(2)\r\n The physical adapter is operating properly.\r\ngeneralFailure(3)\r\n The physical adapter has failed.\r\nlinkFailure(4)\r\n The physical adapter has lost link. Check the cable connections to this adapter.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2b3d5fc665744319b247261f301ec5e9');
INSERT INTO `items` (`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`,`uuid`) values ('36744','20','1.3.6.1.4.1.232.3.2.5.1.1.69.{#SNMPINDEX}','10446','{#DISK_LOCATION}: Physical disk media type','hp.server.hw.physicaldisk.media_type[cpqDaPhyDrvMediaType.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'550','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nDrive Array Physical Drive Media Type. The following values are defined:\r\nother(1) The instrument agent is unable to determine the physical drive\'s media type.\r\nrotatingPlatters(2) The physical drive media is composed of rotating platters.\r\nsolidState(3) The physical drive media is composed of solid state electronics.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d5b6315a3faf471baa20b7a0a0d6691b');
INSERT INTO `items` (`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`,`uuid`) values ('36745','20','1.3.6.1.4.1.232.3.2.5.1.1.3.{#SNMPINDEX}','10446','{#DISK_LOCATION}: Physical disk model name','hp.server.hw.physicaldisk.model[cpqDaPhyDrvModel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive Model. This is a text description of the physical drive.\r\nThe text that appears depends upon who manufactured the drive and the drive type.\r\nIf a drive fails, note the model to identify the type of drive necessary for replacement.\r\nIf a model number is not present, you may not have properly initialized the drive array to which the physical drive is attached for monitoring.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8d04fc4ffec947c5ad53d037c038ed1d');
INSERT INTO `items` (`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`,`uuid`) values ('36746','20','1.3.6.1.4.1.232.3.2.5.1.1.51.{#SNMPINDEX}','10446','{#DISK_LOCATION}: Physical disk serial number','hp.server.hw.physicaldisk.serialnumber[cpqDaPhyDrvSerialNum.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive Serial Number.\r\nThis is the serial number assigned to the physical drive.\r\nThis value is based upon the serial number as returned by the SCSI inquiry command\r\nbut may have been modified due to space limitations. This can be used for identification purposes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa090bf031f444508eae9c853cac1109');
INSERT INTO `items` (`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`,`uuid`) values ('36747','20','1.3.6.1.4.1.232.3.2.5.1.1.45.{#SNMPINDEX}','10446','{#DISK_LOCATION}: Disk size','hp.server.hw.physicaldisk.size[cpqDaPhyDrvMediaType.{#SNMPINDEX}]','1m','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive Size in MB.\r\nThis is the size of the physical drive in megabytes.\r\nThis value is calculated using the value 1,048,576 (2^20) as a megabyte.\r\nDrive manufacturers sometimes use the number 1,000,000 as a megabyte when giving drive capacities so this value may differ\r\nfrom the advertised size of a drive. This field is only applicable for controllers which support SCSI drives,\r\nand therefore is not supported by the IDA or IDA-2 controllers. The field will contain 0xFFFFFFFF if the drive capacity cannot be calculated\r\nor if the controller does not support SCSI drives.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c4c4e680bb943c3a172e0e3e049aa8b');
INSERT INTO `items` (`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`,`uuid`) values ('36748','20','1.3.6.1.4.1.232.3.2.5.1.1.57.{#SNMPINDEX}','10446','{#DISK_LOCATION}: Physical disk S.M.A.R.T. status','hp.server.hw.physicaldisk.smart_status[cpqDaPhyDrvSmartStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'551','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive S.M.A.R.T Status. The following values are defined:\r\nother(1) The agent is unable to determine if the status of S.M.A.R.T predictive failure monitoring for this drive.\r\nok(2) Indicates the drive is functioning properly.\r\nreplaceDrive(3) Indicates that the drive has a S.M.A.R.T predictive failure error and should be replaced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d4b7c6cb7c3d4c46a92028e80b564bf5');
INSERT INTO `items` (`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`,`uuid`) values ('36749','20','1.3.6.1.4.1.232.3.2.5.1.1.6.{#SNMPINDEX}','10446','{#DISK_LOCATION}: Physical disk status','hp.server.hw.physicaldisk.status[cpqDaPhyDrvStatus.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'552','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB\r\nPhysical Drive Status. This shows the status of the physical drive. The following values are valid for the physical drive status:\r\nother (1) Indicates that the instrument agent does not recognize the drive.\r\nYou may need to upgrade your instrument agent and/or driver software.\r\nok (2) Indicates the drive is functioning properly.\r\nfailed (3) Indicates that the drive is no longer operating and should be replaced.\r\npredictiveFailure(4) Indicates that the drive has a predictive failure error and should be replaced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','609c79d9a89e46778bc7c419a31db26b');
INSERT INTO `items` (`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`,`uuid`) values ('36750','20','1.3.6.1.4.1.232.6.2.9.3.1.4.{#SNMPINDEX}','10446','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status','hp.server.sensor.psu.status[cpqHeFltTolPowerSupplyCondition.{#SNMPINDEX}]','1m','7d','0d','0','3','','','','',NULL,'554','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe condition of the power supply. This value will be one of the following:\r\nother(1) The status could not be determined or not present.\r\nok(2) The power supply is operating normally.\r\ndegraded(3) A temperature sensor, fan or other power supply component is outside of normal operating range.\r\nfailed(4) A power supply component detects a condition that could permanently damage the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a86478d1584640f784e984ff90768cfa');
INSERT INTO `items` (`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`,`uuid`) values ('36751','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10446','Ambient: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Ambient.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'543','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8d413e8e6aa54c2a94c3c59fd5190ced');
INSERT INTO `items` (`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`,`uuid`) values ('36752','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10446','Ambient: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Ambient.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: Ambient','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','29afae6dceac4eadbd7a0d67029e602c');
INSERT INTO `items` (`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`,`uuid`) values ('36753','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10446','CPU-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.CPU.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'543','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9d6e722dc01649199a8891d663b37f00');
INSERT INTO `items` (`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`,`uuid`) values ('36754','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10446','CPU-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.CPU.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: CPU-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5bafde0dc89d483786cff3b1121fca55');
INSERT INTO `items` (`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`,`uuid`) values ('36755','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10446','{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'543','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d3a32885e1c24b3688d768236d930dab');
INSERT INTO `items` (`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`,`uuid`) values ('36756','20','1.3.6.1.4.1.232.6.2.6.8.1.3.{#SNMPINDEX}','10446','{#SNMPINDEX}: Temperature sensor location','hp.server.sensor.temp.locale[cpqHeTemperatureLocale.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'544','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThis specifies the location of the temperature sensor present in the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cd6b1ba3a2174a879a00507ce843acaa');
INSERT INTO `items` (`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`,`uuid`) values ('36757','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10446','{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: {#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1a9d8b9409e243c9b25ff434271d0049');
INSERT INTO `items` (`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`,`uuid`) values ('36758','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10446','I/O-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition."I/O.{#SNMPINDEX}"]','1m','7d','365d','0','3','','','','',NULL,'543','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','893efbae4cfa49dbae9fb6707e142cc1');
INSERT INTO `items` (`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`,`uuid`) values ('36759','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10446','I/O-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius."I/O.{#SNMPINDEX}"]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: I/O-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','155afcc02e0443539683c193792c1770');
INSERT INTO `items` (`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`,`uuid`) values ('36760','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10446','Memory-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Memory.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'543','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','af4c1659d5ca4c07978baea386694989');
INSERT INTO `items` (`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`,`uuid`) values ('36761','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10446','Memory-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Memory.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: Memory-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','400b357139a945c38cf222c5c1ce25cd');
INSERT INTO `items` (`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`,`uuid`) values ('36762','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10446','PSU-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.PSU.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'543','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d1552a2c2238453aa1d376482aaf2d1b');
INSERT INTO `items` (`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`,`uuid`) values ('36763','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10446','PSU-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.PSU.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: PSU-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','146bf385738444bfb7faa60b073865f5');
INSERT INTO `items` (`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`,`uuid`) values ('36764','20','1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}','10446','System-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.System.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'543','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nThe Temperature sensor condition.\r\nThis value will be one of the following:\r\nother(1)\r\n Temperature could not be determined.\r\nok(2)\r\n The temperature sensor is within normal operating range.\r\ndegraded(3)\r\n The temperature sensor is outside of normal operating range.\r\nfailed(4)\r\n The temperature sensor detects a condition that could\r\n permanently damage the system.\r\nThe system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7b7b07d52c144d23901ad9f636fca521');
INSERT INTO `items` (`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`,`uuid`) values ('36765','20','1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}','10446','System-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.System.{#SNMPINDEX}]','1m','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB\r\nTemperature readings of testpoint: System-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','33793b349df841c1aa46fada307e4427');
INSERT INTO `items` (`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`,`uuid`) values ('36766','20','1.3.6.1.4.1.232.3.2.3.1.1.3.{#SNMPINDEX}','10446','Disk {#SNMPINDEX}({#DISK_NAME}): Layout type','hp.server.hw.virtualdisk.layout[cpqDaLogDrvFaultTol.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'548','','','0','','','','','2',NULL,'Logical Drive Fault Tolerance.\r\nThis shows the fault tolerance mode of the logical drive.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a77031074aed4314b5b825c565f0ed67');
INSERT INTO `items` (`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`,`uuid`) values ('36767','20','1.3.6.1.4.1.232.3.2.3.1.1.9.{#SNMPINDEX}','10446','Disk {#SNMPINDEX}({#DISK_NAME}): Disk size','hp.server.hw.virtualdisk.size[cpqDaLogDrvSize.{#SNMPINDEX}]','1m','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Logical Drive Size.\r\nThis is the size of the logical drive in megabytes. This value\r\nis calculated using the value 1,048,576 (2^20) as a megabyte.\r\nDrive manufacturers sometimes use the number 1,000,000 as a\r\nmegabyte when giving drive capacities so this value may\r\ndiffer from the advertised size of a drive.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','33e1ea62016846b5ab97263605c4dcc5');
INSERT INTO `items` (`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`,`uuid`) values ('36768','20','1.3.6.1.4.1.232.3.2.3.1.1.4.{#SNMPINDEX}','10446','Disk {#SNMPINDEX}({#DISK_NAME}): Status','hp.server.hw.virtualdisk.status[cpqDaLogDrvStatus.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'549','','','0','','','','','2',NULL,'Logical Drive Status.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','783532d2de814096ac0ce9b36c5d2552');
INSERT INTO `items` (`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`,`uuid`) values ('36772','19','','10447','Travis: Get builds','travis.get_builds','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Getting builds using Travis API.','0','30d','0','',NULL,'3s','https://{$TRAVIS.API.URL}/builds','[{"limit":"0"}]','','200','1','0','Travis-API-Version: 3\r\nAuthorization: token {$TRAVIS.API.TOKEN}','0','0','0','0','0','0','0','08466cd6902441299856cba3ce601510');
INSERT INTO `items` (`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`,`uuid`) values ('36773','19','','10447','Travis: Get health','travis.get_health','1m','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Getting home JSON using Travis API.','0','30d','0','',NULL,'3s','https://{$TRAVIS.API.URL}/','','','200','1','0','Travis-API-Version: 3\r\nAuthorization: token {$TRAVIS.API.TOKEN}','0','0','0','0','0','0','0','997172d503c54798800d01c613aca92a');
INSERT INTO `items` (`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`,`uuid`) values ('36774','19','','10447','Travis: Get jobs','travis.get_jobs','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Getting jobs using Travis API.','0','30d','0','',NULL,'3s','https://{$TRAVIS.API.URL}/jobs','','','200','1','0','Travis-API-Version: 3\r\nAuthorization: token {$TRAVIS.API.TOKEN}','0','0','0','0','0','0','0','5a01061d1f3d48f8ad0beb4d32e2168d');
INSERT INTO `items` (`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`,`uuid`) values ('36775','19','','10447','Travis: Get repos','travis.get_repos','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Getting repos using Travis API.','0','30d','0','',NULL,'3s','https://{$TRAVIS.API.URL}/repos','[{"limit":"0"}]','','200','1','0','Travis-API-Version: 3\r\nAuthorization: token {$TRAVIS.API.TOKEN}','0','0','0','0','0','0','0','5212bfa6de6c4a17b98a80012f617eea');
INSERT INTO `items` (`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`,`uuid`) values ('36782','15','','10447','Travis: Repo [{#SLUG}]: Builds passed, %','travis.repo.builds.passed.pct[{#SLUG}]','1m','7d','365d','0','3','','%','','',NULL,NULL,'last(//travis.repo.builds.passed[{#SLUG}])/last(//travis.repo.builds.total[{#SLUG}])*100','','0','','','','','2',NULL,'Percent of passed builds in {#SLUG} repo.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0d2f2c7b23284836ad52b4ddc98dcfc8');
INSERT INTO `items` (`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`,`uuid`) values ('36783','19','','10447','Travis: Repo [{#SLUG}]: Get builds','travis.repo.get_builds[{#SLUG}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Getting builds of {#SLUG} using Travis API.','0','30d','0','',NULL,'3s','https://{$TRAVIS.API.URL}/repo/{#ID}/builds','[{"limit":"50"}]','','200','1','0','Travis-API-Version: 3\r\nAuthorization: token {$TRAVIS.API.TOKEN}','0','0','0','0','0','0','0','ed33292bc0924b9c85cb54443d5aa999');
INSERT INTO `items` (`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`,`uuid`) values ('36784','19','','10447','Travis: Repo [{#SLUG}]: Get caches','travis.repo.get_caches[{#SLUG}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Getting caches of {#SLUG} using Travis API.','0','30d','0','',NULL,'3s','https://{$TRAVIS.API.URL}/repo/{#ID}/caches','[{"limit":"50"}]','','200','1','0','Travis-API-Version: 3\r\nAuthorization: token {$TRAVIS.API.TOKEN}','0','0','0','0','0','0','0','2e0c047997624373a50001b8399b3d7c');
INSERT INTO `items` (`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`,`uuid`) values ('36795','19','','10448','InfluxDB: Get instance metrics','influx.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','{$INFLUXDB.URL}/metrics','','','200','1','0','','0','0','0','0','0','0','0','286bb866060e47948c02408ebc841f1f');
INSERT INTO `items` (`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`,`uuid`) values ('36796','19','','10448','InfluxDB: Instance status','influx.healthcheck','1m','7d','365d','0','3','','','','',NULL,'556','','','0','','','','','0',NULL,'Get the health of an instance.','0','30d','0','',NULL,'3s','{$INFLUXDB.URL}/health','','','200','1','0','','0','0','0','0','0','0','0','f8f514943c9040d7b41f14db92ca6c91');
INSERT INTO `items` (`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`,`uuid`) values ('36813','19','','10448','Organizations discovery','influxdb.orgs.discovery','10m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of organizations metrics.','0','30d','1','',NULL,'3s','{$INFLUXDB.URL}/api/v2/orgs','','','200','1','0','Content-type: application/json\r\nAuthorization: Token {$INFLUXDB.API.TOKEN}','0','0','0','0','0','0','0','41766fd081804c399c3a7e70dd1fbf03');
INSERT INTO `items` (`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`,`uuid`) values ('36822','20','1.3.6.1.4.1.3375.2.1.14.1.1.0','10419','F5 BIG-IP: Sync Status','bigip.syncstatus','1m','7d','365d','0','3','','','','',NULL,'560','','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe sync status ID on the system.\r\nunknown - the device is disconnected from the device group;\r\nsyncing - the device is joining the device group or has requested changes from device group or inconsistent with the group;\r\nneedManualSync - changes have been made on the device not syncd to the device group;\r\ninSync - the device is consistent with the device group;\r\nsyncFailed - the device is inconsistent with the device group, requires user intervention;\r\nsyncDisconnected - the device is not connected to any peers;\r\nstandalone - the device is in a standalone configuration;\r\nawaitingInitialSync - the device is waiting for initial sync;\r\nincompatibleVersion - the device\'s version is incompatible with rest of the devices in the device group;\r\npartialSync - some but not all devices successfully received the last sync.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','46bf5611d32340fdb9129966cca2c5da');
INSERT INTO `items` (`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`,`uuid`) values ('36823','20','1.3.6.1.4.1.3375.2.1.14.3.1.0','10419','F5 BIG-IP: Failover status','bigip.failover','1m','7d','365d','0','3','','','','',NULL,'559','','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB\r\nThe failover status ID on the system.\r\nunknown - the failover status of the device is unknown;\r\noffline - the device is offline;\r\nforcedOffline - the device is forced offline;\r\nstandby - the device is standby;\r\nactive - the device is active.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0f7ecc11f860443582eb6dbe64b2bbb6');
INSERT INTO `items` (`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`,`uuid`) values ('36824','20','1.3.6.1.4.1.3375.2.2.5.5.2.1.2.{#SNMPINDEX}','10419','F5 BIG-IP: Pool [{#POOL.NAME}]: Status available','bigip.pool.available[{#POOL.NAME}]','5m','7d','365d','0','3','','','','',NULL,'558','','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nnone(0),\r\ngreen(1),\r\ntyellow(2),\r\ntred(3),\r\ntblue(4),\r\ntgrey(5)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a2668f5ffc604a61953cb87f0afe4e6f');
INSERT INTO `items` (`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`,`uuid`) values ('36825','20','1.3.6.1.4.1.3375.2.2.5.5.2.1.3.{#SNMPINDEX}','10419','F5 BIG-IP: Pool [{#POOL.NAME}]: Status enabled','bigip.pool.enabled[{#POOL.NAME}]','5m','7d','365d','0','3','','','','',NULL,'557','','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB\r\nThe activity status of the specified pool, as specified by the user.\r\nnone(0),\r\nenabled(1),\r\ndisabled(2),\r\ndisabledbyparent(3)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','391d21a1a44d49d4beb219b726e0f55e');
INSERT INTO `items` (`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`,`uuid`) values ('36847','20','1.3.6.1.4.1.14988.1.1.7.4.0','10449','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4367659d4f49400aa0a4674c74ad00b8');
INSERT INTO `items` (`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`,`uuid`) values ('36848','20','1.3.6.1.2.1.1.1.0','10449','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3d375341d2a140679973c46fe7281dd5');
INSERT INTO `items` (`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`,`uuid`) values ('36849','20','1.3.6.1.4.1.14988.1.1.7.3.0','10449','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b1233463a69346b68d538f1c43aa467d');
INSERT INTO `items` (`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`,`uuid`) values ('36850','20','1.3.6.1.4.1.14988.1.1.4.4.0','10449','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f9d30c789f16452d89ee417a2aee11f1');
INSERT INTO `items` (`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`,`uuid`) values ('36851','20','1.3.6.1.2.1.25.2.3.1.5.65536','10449','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5546cedfd50648d2a893b6ea59fd7453');
INSERT INTO `items` (`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`,`uuid`) values ('36852','20','1.3.6.1.2.1.25.2.3.1.6.65536','10449','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a78d97bd5f14a6b97873a3abe41db20');
INSERT INTO `items` (`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`,`uuid`) values ('36853','15','','10449','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dc5f8ec0557c4e9980f2224e150e89e7');
INSERT INTO `items` (`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`,`uuid`) values ('36854','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10449','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b5d7f793a40449af9342a0751d606c04');
INSERT INTO `items` (`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`,`uuid`) values ('36855','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10449','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f3b3f73ab8ad4138b4acb0f3ff7aa732');
INSERT INTO `items` (`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`,`uuid`) values ('36856','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10449','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bea5c8de3a354405a60f417e7c3f9852');
INSERT INTO `items` (`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`,`uuid`) values ('36857','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10449','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d7d28fbb900742f58ba741a7b2810656');
INSERT INTO `items` (`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`,`uuid`) values ('36858','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10449','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2f9915f91c984f56af4f9505c52aea9a');
INSERT INTO `items` (`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`,`uuid`) values ('36859','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10449','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8bb2e43eaeae433381360f436151ca96');
INSERT INTO `items` (`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`,`uuid`) values ('36860','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10449','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d8ff7af06d6d4fe39d7ab93eb803978a');
INSERT INTO `items` (`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`,`uuid`) values ('36861','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10449','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','39223b273e314bf88eccfa23d2bdf520');
INSERT INTO `items` (`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`,`uuid`) values ('36862','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10449','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f52a2b2e6f6045119473176e6680fb67');
INSERT INTO `items` (`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`,`uuid`) values ('36863','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10449','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b2ac80947a314b8590500aed1ba15b34');
INSERT INTO `items` (`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`,`uuid`) values ('36864','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10449','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','89139aaa90244af89be5b13e31e568db');
INSERT INTO `items` (`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`,`uuid`) values ('36865','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10449','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5f60c2de483e4aae8fbedc50798f3bb9');
INSERT INTO `items` (`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`,`uuid`) values ('36866','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10449','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','df09bd33847c4cf9931b68c49fa0cc2e');
INSERT INTO `items` (`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`,`uuid`) values ('36867','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10449','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','10459f3a756e48f991bbddf9e466f5bb');
INSERT INTO `items` (`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`,`uuid`) values ('36868','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10449','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0bfd56d26ed04702904b7846f9d27d89');
INSERT INTO `items` (`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`,`uuid`) values ('36869','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10449','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e9b16dbe554948ffac6a124c2545e8ed');
INSERT INTO `items` (`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`,`uuid`) values ('36870','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10449','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ec6db43c1009423db17a9db20c193801');
INSERT INTO `items` (`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`,`uuid`) values ('36871','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10449','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f6b5c40031a9451d93e0c1a53c60d90e');
INSERT INTO `items` (`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`,`uuid`) values ('36872','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10449','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4fe579127b3249b08c210c8b3f767f7a');
INSERT INTO `items` (`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`,`uuid`) values ('36873','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10449','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2ae0d22024c74c80ba6be1549fa4f17e');
INSERT INTO `items` (`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`,`uuid`) values ('36874','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10449','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9e85e8cd51f0489d8aaefdc31ccbffd4');
INSERT INTO `items` (`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`,`uuid`) values ('36875','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10449','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2844bdd0d5094a38a88f756e1fed71ad');
INSERT INTO `items` (`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`,`uuid`) values ('36876','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10449','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16791055befb41f3b12dabf4aa0c6540');
INSERT INTO `items` (`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`,`uuid`) values ('36877','15','','10449','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','30dd1b502cac45538f16b4d985966d55');
INSERT INTO `items` (`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`,`uuid`) values ('36878','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10449','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','565b745c23864f1797a2cb3a11eedf7f');
INSERT INTO `items` (`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`,`uuid`) values ('36879','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10449','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8cfa6b214639494fa8db1cb673f45e1d');
INSERT INTO `items` (`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`,`uuid`) values ('36901','20','1.3.6.1.4.1.14988.1.1.7.4.0','10450','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cdf7d11d3d47482ca5dad14596256025');
INSERT INTO `items` (`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`,`uuid`) values ('36902','20','1.3.6.1.2.1.1.1.0','10450','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad2df2ad5b4d4bac8da4a24e2c082ad1');
INSERT INTO `items` (`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`,`uuid`) values ('36903','20','1.3.6.1.4.1.14988.1.1.7.3.0','10450','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d55015e95d2e4eebb72168b5311f7512');
INSERT INTO `items` (`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`,`uuid`) values ('36904','20','1.3.6.1.4.1.14988.1.1.4.4.0','10450','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6004aeb9600c42b5a74155f06cdf8af0');
INSERT INTO `items` (`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`,`uuid`) values ('36905','20','1.3.6.1.2.1.25.2.3.1.5.65536','10450','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cef294e9c4874526a093935ac3f093b6');
INSERT INTO `items` (`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`,`uuid`) values ('36906','20','1.3.6.1.2.1.25.2.3.1.6.65536','10450','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3b3a0def1cf740f496bbd345de5ed605');
INSERT INTO `items` (`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`,`uuid`) values ('36907','15','','10450','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d7dadc80881a4d3c9be8f1b660232c03');
INSERT INTO `items` (`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`,`uuid`) values ('36908','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10450','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3d3038d06ddb4fc282940f4a76e4ec85');
INSERT INTO `items` (`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`,`uuid`) values ('36909','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10450','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','12abe276614d445d9e958122c5608f9c');
INSERT INTO `items` (`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`,`uuid`) values ('36910','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10450','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','28fc52f85b454d24bf7e99f971f0bac4');
INSERT INTO `items` (`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`,`uuid`) values ('36911','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10450','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','873a002d903f440b8861dfae848d9bc9');
INSERT INTO `items` (`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`,`uuid`) values ('36912','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10450','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','805d0b67d5e14d1abf2e1d3426c98691');
INSERT INTO `items` (`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`,`uuid`) values ('36913','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10450','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','43f128e426044f5b82419ad75ca6e17c');
INSERT INTO `items` (`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`,`uuid`) values ('36914','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10450','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','11edf7c91daf4377ae12c38f16066d3a');
INSERT INTO `items` (`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`,`uuid`) values ('36915','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10450','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','58dbd69b7c9446169824fd5ef009cb89');
INSERT INTO `items` (`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`,`uuid`) values ('36916','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10450','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d1d55d21b8ca40d88221086d66b919e7');
INSERT INTO `items` (`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`,`uuid`) values ('36917','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10450','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d1b24e94e8840c884c1cac3e8842eea');
INSERT INTO `items` (`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`,`uuid`) values ('36918','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10450','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9cd95e5678be442b8e7377f513c97888');
INSERT INTO `items` (`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`,`uuid`) values ('36919','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10450','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bb6f2eb38a2c4aee968332eefcca5f7a');
INSERT INTO `items` (`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`,`uuid`) values ('36920','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10450','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','59124b030d4f498094eb01952c42b1da');
INSERT INTO `items` (`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`,`uuid`) values ('36921','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10450','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','79f14b61c0044e7a92745288c7cf0159');
INSERT INTO `items` (`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`,`uuid`) values ('36922','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10450','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab6c29dc1dc6416a95480dd0114283e4');
INSERT INTO `items` (`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`,`uuid`) values ('36923','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10450','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','06452635ff154445b04377dd42ea3f0d');
INSERT INTO `items` (`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`,`uuid`) values ('36924','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10450','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ee7e17722ffa4a71ba337b9cb2b8d05e');
INSERT INTO `items` (`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`,`uuid`) values ('36925','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10450','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','06295e345bb948d196a22baa485ecedd');
INSERT INTO `items` (`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`,`uuid`) values ('36926','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10450','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7d9df48a9bd74cbc8be35a78dded0701');
INSERT INTO `items` (`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`,`uuid`) values ('36927','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10450','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4f7a3606547d46ad86820784f2c59d64');
INSERT INTO `items` (`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`,`uuid`) values ('36928','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10450','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a3d138d7663b43ddbf11b71377f33e19');
INSERT INTO `items` (`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`,`uuid`) values ('36929','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10450','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0939fc0eddef42698e6bb505159c5a4e');
INSERT INTO `items` (`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`,`uuid`) values ('36930','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10450','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6aa454cc8cac42b79045c71393b88130');
INSERT INTO `items` (`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`,`uuid`) values ('36931','15','','10450','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','43f8b0a75131483cb6dd5e800fb400b4');
INSERT INTO `items` (`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`,`uuid`) values ('36932','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10450','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9fc01e7f1027439cbf1d0e35e0c7d353');
INSERT INTO `items` (`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`,`uuid`) values ('36933','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10450','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','58593e0ecf5c42f79340a7da5f1c1e86');
INSERT INTO `items` (`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`,`uuid`) values ('36955','20','1.3.6.1.4.1.14988.1.1.7.4.0','10451','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','701b0e5e1b0d4f6199836c12bbeb23fb');
INSERT INTO `items` (`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`,`uuid`) values ('36956','20','1.3.6.1.2.1.1.1.0','10451','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3172eba914574fd894cd4ab3c1295ed7');
INSERT INTO `items` (`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`,`uuid`) values ('36957','20','1.3.6.1.4.1.14988.1.1.7.3.0','10451','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c5ade5b11ba84948ba84c0f975c6cbbe');
INSERT INTO `items` (`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`,`uuid`) values ('36958','20','1.3.6.1.4.1.14988.1.1.4.4.0','10451','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6f1cabbfe9b84535b77ba2d7b32706fc');
INSERT INTO `items` (`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`,`uuid`) values ('36959','20','1.3.6.1.2.1.25.2.3.1.5.65536','10451','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aef1126fc6354f5083ce2b35d03aaa3c');
INSERT INTO `items` (`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`,`uuid`) values ('36960','20','1.3.6.1.2.1.25.2.3.1.6.65536','10451','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f3f71753cbe14516929027f5f7c39380');
INSERT INTO `items` (`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`,`uuid`) values ('36961','15','','10451','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bde1da2443a3415296281c5259bc0b10');
INSERT INTO `items` (`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`,`uuid`) values ('36962','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10451','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e6521ab9c51647ccaac14af8d146eb7f');
INSERT INTO `items` (`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`,`uuid`) values ('36963','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10451','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c53b0d6476944defadfb0746ccae7ae6');
INSERT INTO `items` (`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`,`uuid`) values ('36964','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10451','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b6389e2689eb439183ad1a25590f421d');
INSERT INTO `items` (`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`,`uuid`) values ('36965','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10451','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','182d09c6f9764ffc9481f0930039dd95');
INSERT INTO `items` (`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`,`uuid`) values ('36966','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10451','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a244eb79522f47a6983a9a346fbc947a');
INSERT INTO `items` (`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`,`uuid`) values ('36967','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10451','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ed8c46d319f742cb90cf948822cff340');
INSERT INTO `items` (`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`,`uuid`) values ('36968','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10451','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2dd57c81d5e645a2a321d0519522310b');
INSERT INTO `items` (`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`,`uuid`) values ('36969','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10451','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','97a47249871c4977bb68762cbc0c7b7d');
INSERT INTO `items` (`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`,`uuid`) values ('36970','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10451','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','494a81d5b48047e0bce42dd126f573cb');
INSERT INTO `items` (`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`,`uuid`) values ('36971','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10451','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','311bd2dea3ea4db896d92ba8a82429bf');
INSERT INTO `items` (`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`,`uuid`) values ('36972','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10451','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a330dd93ef5b478480de6ab2be32e887');
INSERT INTO `items` (`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`,`uuid`) values ('36973','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10451','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f99cdf9843ab4b67a2160e29ed5ab333');
INSERT INTO `items` (`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`,`uuid`) values ('36974','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10451','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','055aeb31cf1e4964b5e55e5caf090acd');
INSERT INTO `items` (`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`,`uuid`) values ('36975','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10451','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac8523f8566a43a5afd01dd074f24a6d');
INSERT INTO `items` (`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`,`uuid`) values ('36976','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10451','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e359ae7be7f4c56bf8495c9fca6f4d2');
INSERT INTO `items` (`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`,`uuid`) values ('36977','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10451','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9b04a4945910475c945ac92a1558ee41');
INSERT INTO `items` (`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`,`uuid`) values ('36978','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10451','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1c06ee28e2b242f1b6449340b9250c4c');
INSERT INTO `items` (`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`,`uuid`) values ('36979','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10451','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','67d9b1ca3e80411691981c86dc571373');
INSERT INTO `items` (`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`,`uuid`) values ('36980','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10451','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ce995698b4ec4af18a3687eb9212c6ee');
INSERT INTO `items` (`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`,`uuid`) values ('36981','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10451','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc2e1021e5b34fd59ad7c4f83f765d44');
INSERT INTO `items` (`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`,`uuid`) values ('36982','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10451','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8980ce3faa3f4c45963255029ced713d');
INSERT INTO `items` (`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`,`uuid`) values ('36983','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10451','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','49f612f570814c809330e4d940a85ddf');
INSERT INTO `items` (`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`,`uuid`) values ('36984','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10451','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','64617cafa0e74284ba3662e6ee4cee0b');
INSERT INTO `items` (`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`,`uuid`) values ('36985','15','','10451','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0e374b652a644f1f8db14960e0bd9457');
INSERT INTO `items` (`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`,`uuid`) values ('36986','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10451','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4d9c4d471c7e4919b9a8d801e514a7db');
INSERT INTO `items` (`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`,`uuid`) values ('36987','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10451','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1471eee2cfc8486da6b20358954a512e');
INSERT INTO `items` (`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`,`uuid`) values ('37009','20','1.3.6.1.4.1.14988.1.1.7.4.0','10452','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','929df02b3b7a462f949c948d655d2f77');
INSERT INTO `items` (`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`,`uuid`) values ('37010','20','1.3.6.1.2.1.1.1.0','10452','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9e85d395c80b4db8868d5bccf64edfaa');
INSERT INTO `items` (`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`,`uuid`) values ('37011','20','1.3.6.1.4.1.14988.1.1.7.3.0','10452','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','14b7fb61e1e64fbd900fd376ee087a40');
INSERT INTO `items` (`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`,`uuid`) values ('37012','20','1.3.6.1.4.1.14988.1.1.4.4.0','10452','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6cd07fdee09249c092abbee25f526c9a');
INSERT INTO `items` (`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`,`uuid`) values ('37013','20','1.3.6.1.2.1.25.2.3.1.5.65536','10452','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e6db19f9ea46407dac1744adc4caa945');
INSERT INTO `items` (`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`,`uuid`) values ('37014','20','1.3.6.1.2.1.25.2.3.1.6.65536','10452','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d05360006eb148a6a66f157513bfe26f');
INSERT INTO `items` (`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`,`uuid`) values ('37015','15','','10452','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1ccd49102df74a0da7bc068ef3e6c81c');
INSERT INTO `items` (`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`,`uuid`) values ('37016','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10452','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9edfde07815b4a03895c24f7703fbe9e');
INSERT INTO `items` (`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`,`uuid`) values ('37017','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10452','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','902597a2a07e40e59035f62cf623fd9b');
INSERT INTO `items` (`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`,`uuid`) values ('37018','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10452','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aeb7b829ab72424f96c53ac8d5788dfe');
INSERT INTO `items` (`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`,`uuid`) values ('37019','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10452','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e4dddf65df514c03993ef70372bbdb78');
INSERT INTO `items` (`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`,`uuid`) values ('37020','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10452','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','adb864eee4b744328d91e8f9339bc79c');
INSERT INTO `items` (`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`,`uuid`) values ('37021','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10452','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7a5ef1da8c6d4d569a6d01bb76d4700e');
INSERT INTO `items` (`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`,`uuid`) values ('37022','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10452','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ed6a12f9caca4aa2875e2dfd28ae73e2');
INSERT INTO `items` (`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`,`uuid`) values ('37023','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10452','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8fa7a6a3038e4dbfaa9d82a83e8e990e');
INSERT INTO `items` (`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`,`uuid`) values ('37024','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10452','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f0e80b87c6874ed8acea53ff369c9f61');
INSERT INTO `items` (`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`,`uuid`) values ('37025','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10452','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c6d9685ed59d4d719205cea9e750cae3');
INSERT INTO `items` (`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`,`uuid`) values ('37026','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10452','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','13ed66b5078249179ebbb076461e4358');
INSERT INTO `items` (`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`,`uuid`) values ('37027','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10452','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8d84ea1e90a0441ca84c4d0922a6489b');
INSERT INTO `items` (`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`,`uuid`) values ('37028','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10452','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a5e73872ef424a6082f408e3217502eb');
INSERT INTO `items` (`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`,`uuid`) values ('37029','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10452','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eaaceff4c42949ff86c7557ba5f994dc');
INSERT INTO `items` (`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`,`uuid`) values ('37030','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10452','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a715384f98d44f609be86fccb780a6e4');
INSERT INTO `items` (`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`,`uuid`) values ('37031','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10452','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b3ae9d00db964983a878382f52b3a171');
INSERT INTO `items` (`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`,`uuid`) values ('37032','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10452','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','85e91fc9812543228e069b97f1fcce30');
INSERT INTO `items` (`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`,`uuid`) values ('37033','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10452','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','78d7ad1a885e46a3a94a7d9014addf60');
INSERT INTO `items` (`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`,`uuid`) values ('37034','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10452','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7cc3ec557e144b4e83038c29a9d3bddd');
INSERT INTO `items` (`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`,`uuid`) values ('37035','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10452','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','76a32e833625423eb441305aacbfe13b');
INSERT INTO `items` (`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`,`uuid`) values ('37036','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10452','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5803d60c0a96463f9768627847b306aa');
INSERT INTO `items` (`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`,`uuid`) values ('37037','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10452','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4697cee2b20944d49e31c3727c67db66');
INSERT INTO `items` (`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`,`uuid`) values ('37038','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10452','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a504100b84894c01890a70c6fbbecb97');
INSERT INTO `items` (`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`,`uuid`) values ('37039','15','','10452','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fa8acc788ee34826ab8f593c40aa4129');
INSERT INTO `items` (`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`,`uuid`) values ('37040','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10452','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','99dbbdae777d4910939c2993a70f6892');
INSERT INTO `items` (`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`,`uuid`) values ('37041','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10452','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7ce857423f0b4eb188bf07434449e600');
INSERT INTO `items` (`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`,`uuid`) values ('37063','20','1.3.6.1.4.1.14988.1.1.7.4.0','10453','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9bb0cd6e869b4e00800c2893b4cf43bf');
INSERT INTO `items` (`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`,`uuid`) values ('37064','20','1.3.6.1.2.1.1.1.0','10453','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d2bed107e30443ea44f3c3cd61f7cf5');
INSERT INTO `items` (`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`,`uuid`) values ('37065','20','1.3.6.1.4.1.14988.1.1.7.3.0','10453','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','460078d3884e4927818a3015dc36ec17');
INSERT INTO `items` (`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`,`uuid`) values ('37066','20','1.3.6.1.4.1.14988.1.1.4.4.0','10453','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c71d909522214671afd2b636aa54a06d');
INSERT INTO `items` (`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`,`uuid`) values ('37067','20','1.3.6.1.2.1.25.2.3.1.5.65536','10453','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1077bedb2f1b48509ec5a4f299aac7cf');
INSERT INTO `items` (`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`,`uuid`) values ('37068','20','1.3.6.1.2.1.25.2.3.1.6.65536','10453','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b24d15e975cd4423a4ef27008ee5fda1');
INSERT INTO `items` (`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`,`uuid`) values ('37069','15','','10453','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3ea0ffecf896435284e268758203272d');
INSERT INTO `items` (`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`,`uuid`) values ('37070','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10453','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','574e87197ce64d3ba47b7f99ee1bf45d');
INSERT INTO `items` (`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`,`uuid`) values ('37071','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10453','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','53f14b1963614f2e8061c840c384f401');
INSERT INTO `items` (`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`,`uuid`) values ('37072','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10453','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7d321af0e12c4149a2c61e22326d4074');
INSERT INTO `items` (`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`,`uuid`) values ('37073','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10453','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6c3a1517e3ab441db0bb102f9efe3aed');
INSERT INTO `items` (`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`,`uuid`) values ('37074','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10453','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','274527cab9a440f4b7ec6b65998338ec');
INSERT INTO `items` (`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`,`uuid`) values ('37075','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10453','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3d3ffa19c93e4d6aaaf63178cf2c3728');
INSERT INTO `items` (`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`,`uuid`) values ('37076','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10453','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8c4d698df0b044018e22d6ae97e3ffeb');
INSERT INTO `items` (`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`,`uuid`) values ('37077','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10453','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','363e697a888342a2974be7d51728b144');
INSERT INTO `items` (`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`,`uuid`) values ('37078','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10453','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','107afb2b34884a5d968d820be0ad4ceb');
INSERT INTO `items` (`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`,`uuid`) values ('37079','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10453','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','48385fb97a77406bbf7f6da6f76c02fc');
INSERT INTO `items` (`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`,`uuid`) values ('37080','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10453','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9aec7b05f5be4b03b5627b38eac0a8e1');
INSERT INTO `items` (`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`,`uuid`) values ('37081','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10453','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f752e73907bb485391661bde8301c894');
INSERT INTO `items` (`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`,`uuid`) values ('37082','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10453','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7a0c2eafe0e0464788dea620cdb16cb0');
INSERT INTO `items` (`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`,`uuid`) values ('37083','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10453','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9b02e4b2f89349ec9b364f023d0f999a');
INSERT INTO `items` (`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`,`uuid`) values ('37084','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10453','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','53b3902bab07498f9db3fb888a023392');
INSERT INTO `items` (`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`,`uuid`) values ('37085','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10453','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','045edf92e0084089961529eb7d5b1baf');
INSERT INTO `items` (`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`,`uuid`) values ('37086','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10453','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a351cfdfce4a474fa08282338accc213');
INSERT INTO `items` (`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`,`uuid`) values ('37087','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10453','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d0447954c1214428841537404b2ca7fd');
INSERT INTO `items` (`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`,`uuid`) values ('37088','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10453','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0fe201eb562b4080bdef34e6fe43ae30');
INSERT INTO `items` (`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`,`uuid`) values ('37089','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10453','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','51f998a0c59846178819f51a3ee1b72b');
INSERT INTO `items` (`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`,`uuid`) values ('37090','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10453','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ed7d527871e428282ac08c5c4b94ad4');
INSERT INTO `items` (`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`,`uuid`) values ('37091','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10453','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7cdfe024544f494f9cc241ace013be76');
INSERT INTO `items` (`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`,`uuid`) values ('37092','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10453','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f7655d3d40d742f5abec39dfc753dbc2');
INSERT INTO `items` (`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`,`uuid`) values ('37093','15','','10453','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9976d1dea8234a8c9baccac8cde90796');
INSERT INTO `items` (`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`,`uuid`) values ('37094','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10453','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','31b78c198bf54971b7d523341538ac55');
INSERT INTO `items` (`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`,`uuid`) values ('37095','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10453','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0774ba4162ca42e68b7ad37e76e9ef7b');
INSERT INTO `items` (`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`,`uuid`) values ('37117','20','1.3.6.1.4.1.14988.1.1.7.4.0','10454','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3b45bf2cd74b496e8882ef8421f3075f');
INSERT INTO `items` (`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`,`uuid`) values ('37118','20','1.3.6.1.2.1.1.1.0','10454','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','11cf922dd6534e9faad83972f43021f0');
INSERT INTO `items` (`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`,`uuid`) values ('37119','20','1.3.6.1.4.1.14988.1.1.7.3.0','10454','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','87694d7f0a6742c5922fc3f1d3c4c950');
INSERT INTO `items` (`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`,`uuid`) values ('37120','20','1.3.6.1.4.1.14988.1.1.4.4.0','10454','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4118b55b18df44798e3593e7c4ab1dd7');
INSERT INTO `items` (`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`,`uuid`) values ('37121','20','1.3.6.1.2.1.25.2.3.1.5.65536','10454','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9c918b9f51a14b5aabe9bf662d459a45');
INSERT INTO `items` (`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`,`uuid`) values ('37122','20','1.3.6.1.2.1.25.2.3.1.6.65536','10454','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4664580c7f80415a8813dfac83c3f616');
INSERT INTO `items` (`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`,`uuid`) values ('37123','15','','10454','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','635ee2092ff64314910c0612fc33ee6c');
INSERT INTO `items` (`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`,`uuid`) values ('37124','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10454','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d00d9cce234d4d75ac0035da246aad00');
INSERT INTO `items` (`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`,`uuid`) values ('37125','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10454','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','657a8813b0784c7b9034b320f9d90a7f');
INSERT INTO `items` (`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`,`uuid`) values ('37126','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10454','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fa20d2b065454093b058086c5936dff3');
INSERT INTO `items` (`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`,`uuid`) values ('37127','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10454','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1022bfe65683409f92d390a005250d35');
INSERT INTO `items` (`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`,`uuid`) values ('37128','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10454','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7b29429668f84059956e617b64d58373');
INSERT INTO `items` (`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`,`uuid`) values ('37129','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10454','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','04c6bcdd1e634c129707b0b39c86cc8c');
INSERT INTO `items` (`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`,`uuid`) values ('37130','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10454','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da85811fdfe24a82b4d7a13a243893ba');
INSERT INTO `items` (`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`,`uuid`) values ('37131','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10454','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b1099ed1cd3742ffaaa1a5aae3cd27aa');
INSERT INTO `items` (`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`,`uuid`) values ('37132','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10454','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','814160afbb4f4a5e9b3c8c2add8aeddb');
INSERT INTO `items` (`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`,`uuid`) values ('37133','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10454','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c392ed2b8194b9ebdc88a3865f3c03f');
INSERT INTO `items` (`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`,`uuid`) values ('37134','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10454','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1c4f1f6d7a374db0a15411a7ba8b300c');
INSERT INTO `items` (`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`,`uuid`) values ('37135','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10454','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','060e1a17f8244cf48f55605e9977bf36');
INSERT INTO `items` (`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`,`uuid`) values ('37136','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10454','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','66389bb0e1a846f8a26567d0d9e182fe');
INSERT INTO `items` (`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`,`uuid`) values ('37137','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10454','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b6f955df3ab04d85baf81d60ad41eb4c');
INSERT INTO `items` (`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`,`uuid`) values ('37138','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10454','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','77422704136d4a80908a28fe79c7242f');
INSERT INTO `items` (`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`,`uuid`) values ('37139','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10454','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a026d85a54c04205833a36b39d5f0b73');
INSERT INTO `items` (`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`,`uuid`) values ('37140','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10454','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b5e956501870483fb045df1655751b69');
INSERT INTO `items` (`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`,`uuid`) values ('37141','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10454','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e2a923c0d22e4872acc473e3783ccdb6');
INSERT INTO `items` (`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`,`uuid`) values ('37142','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10454','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8017849385a648df8f45e35a8a1a080a');
INSERT INTO `items` (`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`,`uuid`) values ('37143','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10454','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','88aa7fca3e0b4e778674da7ece8cf4dc');
INSERT INTO `items` (`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`,`uuid`) values ('37144','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10454','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5edccab248474bf6beb3132626be1675');
INSERT INTO `items` (`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`,`uuid`) values ('37145','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10454','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','13f3f91149694ed8bd33067fa82979d8');
INSERT INTO `items` (`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`,`uuid`) values ('37146','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10454','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b244af1db2374fbb865c735e81a56ae8');
INSERT INTO `items` (`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`,`uuid`) values ('37147','15','','10454','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1eb7fcbc95d34a108cf8deb3dce47784');
INSERT INTO `items` (`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`,`uuid`) values ('37148','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10454','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','24a12296bd844160b4d34988be84f368');
INSERT INTO `items` (`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`,`uuid`) values ('37149','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10454','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','159cecb702d2450e9e868c108903e360');
INSERT INTO `items` (`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`,`uuid`) values ('37171','20','1.3.6.1.4.1.14988.1.1.7.4.0','10455','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9316b737e8174862b0ce60ad10dca68b');
INSERT INTO `items` (`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`,`uuid`) values ('37172','20','1.3.6.1.2.1.1.1.0','10455','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c758cdb68e854cedbb9fc53d361c878b');
INSERT INTO `items` (`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`,`uuid`) values ('37173','20','1.3.6.1.4.1.14988.1.1.7.3.0','10455','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b04e3b3b91294e3b9a5968e475166473');
INSERT INTO `items` (`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`,`uuid`) values ('37174','20','1.3.6.1.4.1.14988.1.1.4.4.0','10455','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d0d399bd9e7e4aca86de1b4aa23cfa0c');
INSERT INTO `items` (`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`,`uuid`) values ('37175','20','1.3.6.1.2.1.25.2.3.1.5.65536','10455','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8be77fd4f4704108aedd5ab35a212172');
INSERT INTO `items` (`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`,`uuid`) values ('37176','20','1.3.6.1.2.1.25.2.3.1.6.65536','10455','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b8102bbf381c4a6e9d759e3ae3902616');
INSERT INTO `items` (`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`,`uuid`) values ('37177','15','','10455','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','383e2e5544ef439199784bcf81cced10');
INSERT INTO `items` (`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`,`uuid`) values ('37178','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10455','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e3e28fe259aa4a43b30e5b919d44afcd');
INSERT INTO `items` (`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`,`uuid`) values ('37179','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10455','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f2726d5b184f49b38b7911c4357a7a13');
INSERT INTO `items` (`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`,`uuid`) values ('37180','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10455','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','99d9e2e9d49241158e7e6a4b582be953');
INSERT INTO `items` (`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`,`uuid`) values ('37181','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10455','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','be0f695c529c4eb299ec52cf35894748');
INSERT INTO `items` (`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`,`uuid`) values ('37182','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10455','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1a244ce7f50e465bbea8774ce17a334c');
INSERT INTO `items` (`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`,`uuid`) values ('37183','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10455','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','12c3d78774c74147a6117369b96b4256');
INSERT INTO `items` (`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`,`uuid`) values ('37184','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10455','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a32b1f9c2e3049e7bcd3af65c4b107f6');
INSERT INTO `items` (`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`,`uuid`) values ('37185','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10455','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e2e23eecdb64096bd797eec839e8c3d');
INSERT INTO `items` (`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`,`uuid`) values ('37186','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10455','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6edefebb1b15445f80742f9d3d3e7f02');
INSERT INTO `items` (`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`,`uuid`) values ('37187','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10455','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','651743f22cbb4fb58233a5af65bb66f3');
INSERT INTO `items` (`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`,`uuid`) values ('37188','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10455','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4356a26c242f4a3a9f4d8f6db98d21f8');
INSERT INTO `items` (`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`,`uuid`) values ('37189','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10455','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','34bf54ed6a5f4e53986f359d544c30cb');
INSERT INTO `items` (`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`,`uuid`) values ('37190','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10455','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3823c35804ca433c8bcb5911f72bcea1');
INSERT INTO `items` (`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`,`uuid`) values ('37191','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10455','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b978cd0e8ea54e76ac2306550880c3bb');
INSERT INTO `items` (`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`,`uuid`) values ('37192','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10455','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','df991a11507f4a29ae4b9d49ff210a25');
INSERT INTO `items` (`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`,`uuid`) values ('37193','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10455','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','50e5ff8d2fcd40969e84bfeb4337a3f3');
INSERT INTO `items` (`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`,`uuid`) values ('37194','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10455','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e618a4a331f744a4b3803197d49560af');
INSERT INTO `items` (`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`,`uuid`) values ('37195','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10455','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16cdd7e0531a4e589f6a80516afa05f4');
INSERT INTO `items` (`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`,`uuid`) values ('37196','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10455','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b8c258ea4d8d43e2a76563cd67e310ae');
INSERT INTO `items` (`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`,`uuid`) values ('37197','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10455','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','529e53e857584a1b9f9baa4ffbe711b4');
INSERT INTO `items` (`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`,`uuid`) values ('37198','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10455','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f9436b34ccd54749adcf2ce4250306fa');
INSERT INTO `items` (`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`,`uuid`) values ('37199','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10455','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e230eabed9c346ea953cfd1d74e7539d');
INSERT INTO `items` (`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`,`uuid`) values ('37200','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10455','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c38689dacdb426b93a933693e6aa400');
INSERT INTO `items` (`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`,`uuid`) values ('37201','15','','10455','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ea30a631843d404c8eac9fe189ef0d74');
INSERT INTO `items` (`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`,`uuid`) values ('37202','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10455','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9186466c7a374a9d9a243bec3e00efdc');
INSERT INTO `items` (`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`,`uuid`) values ('37203','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10455','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9bdbfc448dcb4d3fbfff2fc1a78b938d');
INSERT INTO `items` (`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`,`uuid`) values ('37225','20','1.3.6.1.4.1.14988.1.1.7.4.0','10456','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a808f02d217e4b338fbd5d8f52474d7d');
INSERT INTO `items` (`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`,`uuid`) values ('37226','20','1.3.6.1.2.1.1.1.0','10456','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','721918724f3f47189db3d73a51eed73e');
INSERT INTO `items` (`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`,`uuid`) values ('37227','20','1.3.6.1.4.1.14988.1.1.7.3.0','10456','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','028dcc2c59f34754b646c0a07e6e4709');
INSERT INTO `items` (`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`,`uuid`) values ('37228','20','1.3.6.1.4.1.14988.1.1.4.4.0','10456','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5f186d66075841689596629ffecd1d45');
INSERT INTO `items` (`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`,`uuid`) values ('37229','20','1.3.6.1.2.1.25.2.3.1.5.65536','10456','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','19a2d0e30b0c4123899147a6230863cf');
INSERT INTO `items` (`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`,`uuid`) values ('37230','20','1.3.6.1.2.1.25.2.3.1.6.65536','10456','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8b64d82e4b7b46a28cc88b1fc6c772d8');
INSERT INTO `items` (`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`,`uuid`) values ('37231','15','','10456','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a1a1e9109bb24cefb67b397dc94d3ed9');
INSERT INTO `items` (`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`,`uuid`) values ('37232','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10456','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c10d4bba94a54260853ce18bb4a1dbac');
INSERT INTO `items` (`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`,`uuid`) values ('37233','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10456','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','43bfef9ab73c4111a6781bc0a6ed4831');
INSERT INTO `items` (`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`,`uuid`) values ('37234','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10456','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a5a949d4fee442ffa2feb45f703396dd');
INSERT INTO `items` (`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`,`uuid`) values ('37235','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10456','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','abc09b388f484f10aa5d7e7203bdbbcf');
INSERT INTO `items` (`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`,`uuid`) values ('37236','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10456','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','474fc7c380b74f11b366fc548b4e2fbf');
INSERT INTO `items` (`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`,`uuid`) values ('37237','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10456','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','543247e3c8a74ebcb21aec300625eceb');
INSERT INTO `items` (`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`,`uuid`) values ('37238','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10456','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f6f52142e7464eaa829cab9823eff606');
INSERT INTO `items` (`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`,`uuid`) values ('37239','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10456','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d7d582f52ddd4c14ad45bbcf98e7cce3');
INSERT INTO `items` (`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`,`uuid`) values ('37240','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10456','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a085632c4b54eb5a6ce87d2634f722c');
INSERT INTO `items` (`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`,`uuid`) values ('37241','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10456','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','efe26a08e5244aba9529e2a19512b022');
INSERT INTO `items` (`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`,`uuid`) values ('37242','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10456','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2923109d73144954a1da93508c2ae589');
INSERT INTO `items` (`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`,`uuid`) values ('37243','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10456','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0d85d562ee204270becddfe118253dcd');
INSERT INTO `items` (`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`,`uuid`) values ('37244','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10456','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','67ef3c61b30048fda4139fbc29cb7abc');
INSERT INTO `items` (`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`,`uuid`) values ('37245','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10456','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','afc1517dbedf49c089eacf2467392963');
INSERT INTO `items` (`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`,`uuid`) values ('37246','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10456','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f86eddbb80e04ed594c87c16bd4d0bba');
INSERT INTO `items` (`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`,`uuid`) values ('37247','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10456','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','105399b0d5d84b9094b7eb75603d75b3');
INSERT INTO `items` (`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`,`uuid`) values ('37248','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10456','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8d0b0fca17b343dab54abe2b3f4b49f9');
INSERT INTO `items` (`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`,`uuid`) values ('37249','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10456','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e17ac687194544698dee18404081a7d9');
INSERT INTO `items` (`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`,`uuid`) values ('37250','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10456','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7d942107cdaf4ff58c9ad7a1a21f260d');
INSERT INTO `items` (`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`,`uuid`) values ('37251','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10456','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','54047484e062468ebbca526199a823ac');
INSERT INTO `items` (`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`,`uuid`) values ('37252','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10456','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7ffae69ac5c644efa17ba9db8e3d16bd');
INSERT INTO `items` (`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`,`uuid`) values ('37253','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10456','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','03fdd1fb023d4e109e1a69bd01e1b588');
INSERT INTO `items` (`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`,`uuid`) values ('37254','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10456','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','139d2b1d8a0946f5b3febab4e9fd0587');
INSERT INTO `items` (`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`,`uuid`) values ('37255','15','','10456','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','95b91a8569934b29b89d500cd3673d03');
INSERT INTO `items` (`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`,`uuid`) values ('37256','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10456','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','79e5b2ee35d648d3b3a5f4988f3e7592');
INSERT INTO `items` (`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`,`uuid`) values ('37257','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10456','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6bce04e7abea4d16bb901d81e618f186');
INSERT INTO `items` (`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`,`uuid`) values ('37279','20','1.3.6.1.4.1.14988.1.1.7.4.0','10457','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e565515e2bfe469db344bd78bdfcba74');
INSERT INTO `items` (`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`,`uuid`) values ('37280','20','1.3.6.1.2.1.1.1.0','10457','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2ef71aac4f8b462cb4103327331c359c');
INSERT INTO `items` (`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`,`uuid`) values ('37281','20','1.3.6.1.4.1.14988.1.1.7.3.0','10457','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5d766873d7ee41ddad6d90199c1e8a38');
INSERT INTO `items` (`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`,`uuid`) values ('37282','20','1.3.6.1.4.1.14988.1.1.4.4.0','10457','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','56f7e706b7f84fdf827f5a14fb3bdc7c');
INSERT INTO `items` (`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`,`uuid`) values ('37283','20','1.3.6.1.2.1.25.2.3.1.5.65536','10457','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','818712f7986b40e8a3ce3994f43199ea');
INSERT INTO `items` (`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`,`uuid`) values ('37284','20','1.3.6.1.2.1.25.2.3.1.6.65536','10457','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b3849a88cf9436284dea73e86f70405');
INSERT INTO `items` (`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`,`uuid`) values ('37285','15','','10457','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','deb60e7c19b74431aed7b6c26fb7616b');
INSERT INTO `items` (`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`,`uuid`) values ('37286','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10457','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c58edbe489db4e26a93a75c58c88a1f3');
INSERT INTO `items` (`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`,`uuid`) values ('37287','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10457','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d86c3660acfb4595946453fce47eb8df');
INSERT INTO `items` (`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`,`uuid`) values ('37288','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10457','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','db9785c59e4b4b1e922fd5a6ded18ae6');
INSERT INTO `items` (`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`,`uuid`) values ('37289','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10457','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ccebe51b33a6459b99847e6a379f6037');
INSERT INTO `items` (`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`,`uuid`) values ('37290','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10457','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','364c87891bd34038a38c3339e6367c60');
INSERT INTO `items` (`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`,`uuid`) values ('37291','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10457','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6130a63b523a4d5780cc7c6187e25092');
INSERT INTO `items` (`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`,`uuid`) values ('37292','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10457','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','df12abb1cede4e059dd54454550f2501');
INSERT INTO `items` (`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`,`uuid`) values ('37293','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10457','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','76610d269fa74931b5942475c179e840');
INSERT INTO `items` (`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`,`uuid`) values ('37294','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10457','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d46e25089d8144d1b56062cc2d3e9059');
INSERT INTO `items` (`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`,`uuid`) values ('37295','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10457','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1798378de4a34ef39db1c9b22a1131e8');
INSERT INTO `items` (`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`,`uuid`) values ('37296','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10457','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','774a4dd9c60a441b8bcac9a771f89a3d');
INSERT INTO `items` (`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`,`uuid`) values ('37297','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10457','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1ee273ffb87749a897d5de628694eef2');
INSERT INTO `items` (`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`,`uuid`) values ('37298','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10457','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c35c822a0f3f4dd3bd80beb1d9bbdd05');
INSERT INTO `items` (`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`,`uuid`) values ('37299','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10457','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','676b0104a7d94496a139ddd470bf7b2a');
INSERT INTO `items` (`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`,`uuid`) values ('37300','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10457','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','98d33e0d19a7401293471c0c26f8657e');
INSERT INTO `items` (`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`,`uuid`) values ('37301','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10457','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','acf03c7db037477c99bfa298ff11c976');
INSERT INTO `items` (`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`,`uuid`) values ('37302','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10457','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','37c8c5e1dfaf4b7c841a21c2519bc699');
INSERT INTO `items` (`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`,`uuid`) values ('37303','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10457','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ca04a3369ba347ffaf2c67825bd2d200');
INSERT INTO `items` (`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`,`uuid`) values ('37304','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10457','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e7de2ae51d5463e835eb73b9f07186e');
INSERT INTO `items` (`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`,`uuid`) values ('37305','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10457','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','220f9e350c134b59bbaa38142996274b');
INSERT INTO `items` (`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`,`uuid`) values ('37306','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10457','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4d2b9aaebdb1460dba179e2139802b66');
INSERT INTO `items` (`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`,`uuid`) values ('37307','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10457','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0447138203d9420287fe3317148ffdd7');
INSERT INTO `items` (`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`,`uuid`) values ('37308','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10457','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c00fb1e73f1b495c8994bbaf3d6d4d50');
INSERT INTO `items` (`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`,`uuid`) values ('37309','15','','10457','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dbb260b0d9334f60a27e59536c05873c');
INSERT INTO `items` (`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`,`uuid`) values ('37310','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10457','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','175c5f77af65445fb21d0d876fcb3983');
INSERT INTO `items` (`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`,`uuid`) values ('37311','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10457','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','827812e4bfef4bc5aa61630a8965d56f');
INSERT INTO `items` (`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`,`uuid`) values ('37333','20','1.3.6.1.4.1.14988.1.1.7.4.0','10458','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e06462712e7c45f296fa8dc0c53871d0');
INSERT INTO `items` (`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`,`uuid`) values ('37334','20','1.3.6.1.2.1.1.1.0','10458','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b1a6e11a8ba64f9e9270db35847b3421');
INSERT INTO `items` (`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`,`uuid`) values ('37335','20','1.3.6.1.4.1.14988.1.1.7.3.0','10458','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0fa99ad0d0744f24ab49ad9be423b3d4');
INSERT INTO `items` (`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`,`uuid`) values ('37336','20','1.3.6.1.4.1.14988.1.1.4.4.0','10458','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','00ed6d0e4cd84395a74a5015e3440877');
INSERT INTO `items` (`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`,`uuid`) values ('37337','20','1.3.6.1.2.1.25.2.3.1.5.65536','10458','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f7c0ee962f1c4fab9262181dd9dee211');
INSERT INTO `items` (`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`,`uuid`) values ('37338','20','1.3.6.1.2.1.25.2.3.1.6.65536','10458','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d3c3ff16e7dd4d2e811e72cb0279a827');
INSERT INTO `items` (`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`,`uuid`) values ('37339','15','','10458','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ee81aaa76f1d40a898ba48e0dde79d13');
INSERT INTO `items` (`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`,`uuid`) values ('37340','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10458','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1abbf37ece7c40ca93bb925c7bd27d89');
INSERT INTO `items` (`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`,`uuid`) values ('37341','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10458','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4a85e5aaa45a4a289323e0438e6f5f09');
INSERT INTO `items` (`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`,`uuid`) values ('37342','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10458','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4cc4ce99e8c2450aa6a74075306f1b13');
INSERT INTO `items` (`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`,`uuid`) values ('37343','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10458','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','750de67c2b6043a3a317ece3f2d182a5');
INSERT INTO `items` (`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`,`uuid`) values ('37344','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10458','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','81214dcd098f44d4aa3c3e33a8f23e0b');
INSERT INTO `items` (`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`,`uuid`) values ('37345','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10458','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ded0e3b9a1c84f84aa7fb6e05f0afded');
INSERT INTO `items` (`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`,`uuid`) values ('37346','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10458','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','036680a2cc2e4c568a221b6456821b47');
INSERT INTO `items` (`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`,`uuid`) values ('37347','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10458','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','df4993b4508b4f4bba6a328323e8cc0a');
INSERT INTO `items` (`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`,`uuid`) values ('37348','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10458','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d4687d0ffe8d4ac39d027fc8e9647c0d');
INSERT INTO `items` (`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`,`uuid`) values ('37349','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10458','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7765ee205fe64485a341109b2173e85f');
INSERT INTO `items` (`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`,`uuid`) values ('37350','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10458','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f4ba5f4c17d2408b80f6962782d3527b');
INSERT INTO `items` (`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`,`uuid`) values ('37351','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10458','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','676d18905c9b43c4ad36b45c90bc6248');
INSERT INTO `items` (`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`,`uuid`) values ('37352','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10458','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','af72ce8fb6344e6ebb946ea81453b276');
INSERT INTO `items` (`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`,`uuid`) values ('37353','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10458','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a78be7de743d49d8b9fa9070d32e4db9');
INSERT INTO `items` (`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`,`uuid`) values ('37354','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10458','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d9b11f3313d24adcbe7146ec9df681fe');
INSERT INTO `items` (`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`,`uuid`) values ('37355','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10458','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e24b5bc03d74b1aa2ee0c9e4c56ac89');
INSERT INTO `items` (`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`,`uuid`) values ('37356','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10458','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','80fa9dbbb386432d9c534cbc86de36f7');
INSERT INTO `items` (`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`,`uuid`) values ('37357','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10458','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d258ab237f1f4e79a31778d42ef14447');
INSERT INTO `items` (`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`,`uuid`) values ('37358','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10458','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b7cd68c901d46fea18594cb7b1df015');
INSERT INTO `items` (`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`,`uuid`) values ('37359','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10458','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','572e7a2adba6465986872543912bc2b8');
INSERT INTO `items` (`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`,`uuid`) values ('37360','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10458','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','29efa5a1a2fe4076a2a178374a52ada1');
INSERT INTO `items` (`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`,`uuid`) values ('37361','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10458','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c5a823ac8d684b8fb386090e3f48eaeb');
INSERT INTO `items` (`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`,`uuid`) values ('37362','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10458','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f8d680f85dae470296e8c25e692a3a0f');
INSERT INTO `items` (`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`,`uuid`) values ('37363','15','','10458','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b5ebfdb1d72421dbaf381bf1dd609ca');
INSERT INTO `items` (`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`,`uuid`) values ('37364','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10458','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','47623ca42a2c4b80b9140d4672329d26');
INSERT INTO `items` (`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`,`uuid`) values ('37365','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10458','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cf424ebd271a4cda9ce1f69a3c735dfb');
INSERT INTO `items` (`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`,`uuid`) values ('37387','20','1.3.6.1.4.1.14988.1.1.7.4.0','10459','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b74cbfd6dbc84c0c916402c81fb11fe9');
INSERT INTO `items` (`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`,`uuid`) values ('37388','20','1.3.6.1.2.1.1.1.0','10459','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c8159ac8de24685be689387f69e0e20');
INSERT INTO `items` (`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`,`uuid`) values ('37389','20','1.3.6.1.4.1.14988.1.1.7.3.0','10459','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc917e510e004211be5fc624b071fc95');
INSERT INTO `items` (`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`,`uuid`) values ('37390','20','1.3.6.1.4.1.14988.1.1.4.4.0','10459','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4776598588384d30ac472ec39df3ef25');
INSERT INTO `items` (`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`,`uuid`) values ('37391','20','1.3.6.1.2.1.25.2.3.1.5.65536','10459','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0260f825e71e419da953e2f6285318bc');
INSERT INTO `items` (`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`,`uuid`) values ('37392','20','1.3.6.1.2.1.25.2.3.1.6.65536','10459','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','49b860cd17af4bed904651fbe620d533');
INSERT INTO `items` (`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`,`uuid`) values ('37393','15','','10459','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4a339ee32bc047a790562e1d17c4f733');
INSERT INTO `items` (`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`,`uuid`) values ('37394','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10459','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fac0b2a001034a888731ce9ff4d0a0b1');
INSERT INTO `items` (`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`,`uuid`) values ('37395','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10459','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b1f40fbc259f44db830072b49a5825ad');
INSERT INTO `items` (`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`,`uuid`) values ('37396','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10459','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f65e9753464a4521bb8a537daab08a5b');
INSERT INTO `items` (`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`,`uuid`) values ('37397','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10459','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','33669092f8b542fea3911e23337feb2f');
INSERT INTO `items` (`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`,`uuid`) values ('37398','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10459','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac44d8d2afa445aa9684549d0d951a3a');
INSERT INTO `items` (`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`,`uuid`) values ('37399','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10459','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f072c431d2e24b84bfd3eba28cebd3fc');
INSERT INTO `items` (`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`,`uuid`) values ('37400','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10459','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a03cd6a56cd540dea337b63f8ca5a1a1');
INSERT INTO `items` (`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`,`uuid`) values ('37401','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10459','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','76c25cbcbd7a415e821917887b552440');
INSERT INTO `items` (`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`,`uuid`) values ('37402','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10459','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','69c3af5ff75f4a6296f6cecd8c8259ba');
INSERT INTO `items` (`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`,`uuid`) values ('37403','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10459','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','44c8106b4f174854962a97a5fe3fc3c8');
INSERT INTO `items` (`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`,`uuid`) values ('37404','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10459','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','338524bc1bdf414686576671882b5f68');
INSERT INTO `items` (`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`,`uuid`) values ('37405','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10459','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2fd85f6131924caeb2e73a630c7970e5');
INSERT INTO `items` (`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`,`uuid`) values ('37406','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10459','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e2133a97d7c4406e9b708c31b1ad691f');
INSERT INTO `items` (`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`,`uuid`) values ('37407','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10459','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f52a4a4442894479bfd0f9acf9b92945');
INSERT INTO `items` (`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`,`uuid`) values ('37408','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10459','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','deed4c15fd03467ba270ef2476dbdd44');
INSERT INTO `items` (`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`,`uuid`) values ('37409','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10459','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','85cdb71f2f184c73baef88358c86fc27');
INSERT INTO `items` (`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`,`uuid`) values ('37410','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10459','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e77874f460dc4a8580c63076388af10c');
INSERT INTO `items` (`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`,`uuid`) values ('37411','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10459','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7d033a3bf8644f3aa7f66dddd6d45f44');
INSERT INTO `items` (`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`,`uuid`) values ('37412','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10459','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1f70e9c256b64e698affb2216d124d24');
INSERT INTO `items` (`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`,`uuid`) values ('37413','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10459','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cac2679f249c41cab8047a266b63f685');
INSERT INTO `items` (`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`,`uuid`) values ('37414','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10459','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ef0f673527f4462e9728ef06b73d9e99');
INSERT INTO `items` (`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`,`uuid`) values ('37415','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10459','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','455d7ff186ae4990a1d60a8c3c165344');
INSERT INTO `items` (`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`,`uuid`) values ('37416','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10459','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2e9d6f80bfa445beb64b4d5b17125800');
INSERT INTO `items` (`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`,`uuid`) values ('37417','15','','10459','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6a9a5fa133dd4b1c9e4fb2f21a5ec905');
INSERT INTO `items` (`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`,`uuid`) values ('37418','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10459','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8b2f31738f90436b984801b4cef65b66');
INSERT INTO `items` (`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`,`uuid`) values ('37419','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10459','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dbc682e6a824455db742449efb76b4cf');
INSERT INTO `items` (`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`,`uuid`) values ('37441','20','1.3.6.1.4.1.14988.1.1.7.4.0','10460','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9f94a0e5d26b401d84ca8a58b8121f2e');
INSERT INTO `items` (`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`,`uuid`) values ('37442','20','1.3.6.1.2.1.1.1.0','10460','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','be05eb6603df4b2b974319c0b90dd543');
INSERT INTO `items` (`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`,`uuid`) values ('37443','20','1.3.6.1.4.1.14988.1.1.7.3.0','10460','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c147284d49cb43b3950a28de281cf4a0');
INSERT INTO `items` (`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`,`uuid`) values ('37444','20','1.3.6.1.4.1.14988.1.1.4.4.0','10460','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1da1f71f2dfd4c9ca450217a07068872');
INSERT INTO `items` (`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`,`uuid`) values ('37445','20','1.3.6.1.2.1.25.2.3.1.5.65536','10460','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4b1df0f8bebc443398bdb240a7a30db5');
INSERT INTO `items` (`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`,`uuid`) values ('37446','20','1.3.6.1.2.1.25.2.3.1.6.65536','10460','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','370e2a4ed66f4cc8ba31abdcff08598f');
INSERT INTO `items` (`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`,`uuid`) values ('37447','15','','10460','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8fef22e8a7e0484b8e4ca48b66b322a1');
INSERT INTO `items` (`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`,`uuid`) values ('37448','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10460','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d006aef2136542aab3e97092fff6ba09');
INSERT INTO `items` (`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`,`uuid`) values ('37449','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10460','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d135fc6382b74d1dac9287de6140adda');
INSERT INTO `items` (`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`,`uuid`) values ('37450','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10460','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','db3d7ea3f60f4e4fa53156f9ae87b651');
INSERT INTO `items` (`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`,`uuid`) values ('37451','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10460','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d7d673db00e445b98ed9109f51f4a16e');
INSERT INTO `items` (`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`,`uuid`) values ('37452','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10460','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','99450e2d4e3c4dfb8e1b7c28430cdebf');
INSERT INTO `items` (`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`,`uuid`) values ('37453','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10460','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f69f464b8b59471f808b43772e1f5f4e');
INSERT INTO `items` (`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`,`uuid`) values ('37454','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10460','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2d71376139af4ae9a723edde527f5373');
INSERT INTO `items` (`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`,`uuid`) values ('37455','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10460','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','76e284355196457393427df6475672c4');
INSERT INTO `items` (`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`,`uuid`) values ('37456','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10460','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0da61f3ed2b64dd0b261e56e55e52e29');
INSERT INTO `items` (`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`,`uuid`) values ('37457','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10460','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6e122ae0407044ad9359fd2ce74b5897');
INSERT INTO `items` (`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`,`uuid`) values ('37458','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10460','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','93cb7e4e0fd2443d9c1c3ae472200980');
INSERT INTO `items` (`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`,`uuid`) values ('37459','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10460','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','32087595f17c44d9b94d7762ef427ba5');
INSERT INTO `items` (`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`,`uuid`) values ('37460','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10460','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a65177ee82a417f924cffbc6a92b593');
INSERT INTO `items` (`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`,`uuid`) values ('37461','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10460','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c42347e1e0e046b68f557ce011be1886');
INSERT INTO `items` (`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`,`uuid`) values ('37462','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10460','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7be1291f79874e29aee64798671a6c80');
INSERT INTO `items` (`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`,`uuid`) values ('37463','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10460','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7ed23e95f7144fddb4f7c5797ea462b9');
INSERT INTO `items` (`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`,`uuid`) values ('37464','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10460','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7d94a281ff544e5bbabd0d41f3672174');
INSERT INTO `items` (`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`,`uuid`) values ('37465','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10460','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e184a832057f43b6bdacd2b6f3cb0c0a');
INSERT INTO `items` (`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`,`uuid`) values ('37466','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10460','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8c7307d75f5345dfb389cfad66cb88aa');
INSERT INTO `items` (`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`,`uuid`) values ('37467','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10460','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8012ad63d0e24bf0bfddc428389384de');
INSERT INTO `items` (`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`,`uuid`) values ('37468','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10460','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e6e8db7c216d41fcbfd28845c541255d');
INSERT INTO `items` (`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`,`uuid`) values ('37469','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10460','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e272eecff3f343eab7b6641e6429c47a');
INSERT INTO `items` (`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`,`uuid`) values ('37470','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10460','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','024d36a1f48f4976848bdfff2ee18fba');
INSERT INTO `items` (`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`,`uuid`) values ('37471','15','','10460','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c84b3754fea94a91972a12d024a7ea34');
INSERT INTO `items` (`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`,`uuid`) values ('37472','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10460','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2b54aec93faf4db280732db48075ff49');
INSERT INTO `items` (`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`,`uuid`) values ('37473','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10460','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d02b3ec6c2d3489da7c29e85996d1a7c');
INSERT INTO `items` (`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`,`uuid`) values ('37495','20','1.3.6.1.4.1.14988.1.1.7.4.0','10461','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1a2326a0d3884a679d05e4430f24f9cd');
INSERT INTO `items` (`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`,`uuid`) values ('37496','20','1.3.6.1.2.1.1.1.0','10461','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c11a09561a447949a86bbb75b9b7b08');
INSERT INTO `items` (`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`,`uuid`) values ('37497','20','1.3.6.1.4.1.14988.1.1.7.3.0','10461','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8d750b95502a462dbca47ff6aacd24da');
INSERT INTO `items` (`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`,`uuid`) values ('37498','20','1.3.6.1.4.1.14988.1.1.4.4.0','10461','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4f4d1445451a41758afc06ba2a287805');
INSERT INTO `items` (`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`,`uuid`) values ('37499','20','1.3.6.1.2.1.25.2.3.1.5.65536','10461','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','af7785e1221c4c458a333189d70208a2');
INSERT INTO `items` (`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`,`uuid`) values ('37500','20','1.3.6.1.2.1.25.2.3.1.6.65536','10461','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ecb4ad0744b04ad9a9e650012e394e6b');
INSERT INTO `items` (`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`,`uuid`) values ('37501','15','','10461','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2a8f4c7d1c52496093779c4a70e01668');
INSERT INTO `items` (`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`,`uuid`) values ('37502','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10461','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6ac6410ae08249bf9c726821804aa003');
INSERT INTO `items` (`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`,`uuid`) values ('37503','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10461','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a3099e04128b4ff7abbd6ac772306bc5');
INSERT INTO `items` (`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`,`uuid`) values ('37504','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10461','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','255e1f84524643ea8d827ad0492d5a73');
INSERT INTO `items` (`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`,`uuid`) values ('37505','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10461','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd83bc1bdaf54b2595e8199219a6fa48');
INSERT INTO `items` (`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`,`uuid`) values ('37506','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10461','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2319b534a79449108a419e8c866e66bd');
INSERT INTO `items` (`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`,`uuid`) values ('37507','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10461','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','032c67a20a064ca180eb0f23a43a67ea');
INSERT INTO `items` (`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`,`uuid`) values ('37508','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10461','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6378383173b54dd4add56b5b8b3a6e49');
INSERT INTO `items` (`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`,`uuid`) values ('37509','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10461','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bb72b4f6a895437a9eaf0d36a3ad5b68');
INSERT INTO `items` (`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`,`uuid`) values ('37510','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10461','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4dcd1df8ddf147c7b6dfd406ab6b6a6d');
INSERT INTO `items` (`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`,`uuid`) values ('37511','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10461','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','461a7262a99f43cf99856fec3482dab7');
INSERT INTO `items` (`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`,`uuid`) values ('37512','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10461','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','018eedc3f8c1435e9fad6581baaf6870');
INSERT INTO `items` (`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`,`uuid`) values ('37513','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10461','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9bb9bc5e259d40c0aca83914d08385d9');
INSERT INTO `items` (`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`,`uuid`) values ('37514','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10461','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ef5ed92e2e84b309dd05b862646970e');
INSERT INTO `items` (`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`,`uuid`) values ('37515','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10461','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','44f45954c01d4aa4bec812cb70bdedc4');
INSERT INTO `items` (`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`,`uuid`) values ('37516','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10461','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5f92245ccdad4191980caa0b44b24a56');
INSERT INTO `items` (`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`,`uuid`) values ('37517','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10461','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','71fbf20e2ec8495c920df331edd59f11');
INSERT INTO `items` (`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`,`uuid`) values ('37518','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10461','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','59b84a7a0419432fb0651a86e437c88a');
INSERT INTO `items` (`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`,`uuid`) values ('37519','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10461','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','62208faa28fa42bb8444408f054b1a90');
INSERT INTO `items` (`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`,`uuid`) values ('37520','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10461','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f1966c50faf640539d3c3bbad1202b4a');
INSERT INTO `items` (`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`,`uuid`) values ('37521','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10461','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8af73d5a781a4bcea86ef627eecc90b6');
INSERT INTO `items` (`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`,`uuid`) values ('37522','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10461','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7c86d11f26724fbc820aefb5c8a5f036');
INSERT INTO `items` (`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`,`uuid`) values ('37523','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10461','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e8bc0e639cc342eda083157fe6a0e187');
INSERT INTO `items` (`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`,`uuid`) values ('37524','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10461','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ae5b708b4a044e81ac6f5be93762fed9');
INSERT INTO `items` (`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`,`uuid`) values ('37525','15','','10461','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c958dc4fb8b54d6c809b69478f92a991');
INSERT INTO `items` (`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`,`uuid`) values ('37526','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10461','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','341aa7a1559c4af48c2a8b5446930f2f');
INSERT INTO `items` (`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`,`uuid`) values ('37527','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10461','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d0e6479c9b004f8b95fe47f197779b82');
INSERT INTO `items` (`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`,`uuid`) values ('37549','20','1.3.6.1.4.1.14988.1.1.7.4.0','10462','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','af43dfeeeb7c4f2ea7636e3409e70f1f');
INSERT INTO `items` (`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`,`uuid`) values ('37550','20','1.3.6.1.2.1.1.1.0','10462','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','74bfb7d4834a499a8946c8275012ee76');
INSERT INTO `items` (`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`,`uuid`) values ('37551','20','1.3.6.1.4.1.14988.1.1.7.3.0','10462','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','13fa6f235afa4f968f9de61b0727dced');
INSERT INTO `items` (`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`,`uuid`) values ('37552','20','1.3.6.1.4.1.14988.1.1.4.4.0','10462','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b6e1b6013d3b41c68b4a0cc85bb539d6');
INSERT INTO `items` (`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`,`uuid`) values ('37553','20','1.3.6.1.2.1.25.2.3.1.5.65536','10462','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','53c2b19776d14395832025f398d613eb');
INSERT INTO `items` (`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`,`uuid`) values ('37554','20','1.3.6.1.2.1.25.2.3.1.6.65536','10462','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','644de67163d14fe384128d7a89780d09');
INSERT INTO `items` (`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`,`uuid`) values ('37555','15','','10462','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9b69a0a71c2a410783d8275a732b800a');
INSERT INTO `items` (`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`,`uuid`) values ('37556','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10462','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b65b318fff444191b92f52c023bdee21');
INSERT INTO `items` (`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`,`uuid`) values ('37557','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10462','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0c527e54de0f40d28c01d597cee2b37c');
INSERT INTO `items` (`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`,`uuid`) values ('37558','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10462','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5afeb3e22aa4479ba0f2cfde3e39155a');
INSERT INTO `items` (`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`,`uuid`) values ('37559','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10462','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1040b8ec32f947d4bfce2fba18d7caae');
INSERT INTO `items` (`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`,`uuid`) values ('37560','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10462','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','64ab5419005745f68eb2d06b0e48c6ac');
INSERT INTO `items` (`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`,`uuid`) values ('37561','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10462','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f02ad98b3cb94232b322c4b66683e4b7');
INSERT INTO `items` (`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`,`uuid`) values ('37562','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10462','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8c2a6cde808244e3b99408f942095c5b');
INSERT INTO `items` (`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`,`uuid`) values ('37563','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10462','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','abec452fb1d54a13819afa0449a6c91d');
INSERT INTO `items` (`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`,`uuid`) values ('37564','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10462','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e65a3b598bd64bbfaf434ec1549d0ef6');
INSERT INTO `items` (`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`,`uuid`) values ('37565','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10462','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ca23bb18b5df4e9f9f447b27ff453c1a');
INSERT INTO `items` (`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`,`uuid`) values ('37566','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10462','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ced1ce9c4d494243810034ddad5cb1bd');
INSERT INTO `items` (`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`,`uuid`) values ('37567','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10462','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b6cf57437c7043a584ebb8376d658ef4');
INSERT INTO `items` (`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`,`uuid`) values ('37568','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10462','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a68c39fc6e4248d9b6b073a67f58f4ac');
INSERT INTO `items` (`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`,`uuid`) values ('37569','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10462','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','46d0b195b09e4def9ecce5f0d306add9');
INSERT INTO `items` (`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`,`uuid`) values ('37570','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10462','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c0a00ab0bfa543988d32114409df5dc5');
INSERT INTO `items` (`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`,`uuid`) values ('37571','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10462','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5d4556364513438399429334cc12f3d6');
INSERT INTO `items` (`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`,`uuid`) values ('37572','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10462','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','689e40655841450b9b8c91595a26774a');
INSERT INTO `items` (`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`,`uuid`) values ('37573','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10462','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bac9f6f2692348348abdc29cc4ead952');
INSERT INTO `items` (`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`,`uuid`) values ('37574','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10462','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eb067e2b305642599ad39cacac524902');
INSERT INTO `items` (`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`,`uuid`) values ('37575','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10462','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3ee889778c50431ead46cafe033b6945');
INSERT INTO `items` (`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`,`uuid`) values ('37576','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10462','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7666985eaeca4e78b03e8097acb39ca5');
INSERT INTO `items` (`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`,`uuid`) values ('37577','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10462','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6717ff0736644482be60d2dc2a6b6f1a');
INSERT INTO `items` (`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`,`uuid`) values ('37578','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10462','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','175056db73b443acbc16e9943cb83660');
INSERT INTO `items` (`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`,`uuid`) values ('37579','15','','10462','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e12df58e65b94ae7b63f56f745d85857');
INSERT INTO `items` (`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`,`uuid`) values ('37580','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10462','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e1fe51aa353d4808bce466924ccfc280');
INSERT INTO `items` (`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`,`uuid`) values ('37581','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10462','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6169a9872cde47b7888e6e2c3b8f90cd');
INSERT INTO `items` (`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`,`uuid`) values ('37603','20','1.3.6.1.4.1.14988.1.1.7.4.0','10463','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c3719bbbd424403b78d73824fdb45aa');
INSERT INTO `items` (`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`,`uuid`) values ('37604','20','1.3.6.1.2.1.1.1.0','10463','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','35142b0597a348838f0f77cf7c11266f');
INSERT INTO `items` (`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`,`uuid`) values ('37605','20','1.3.6.1.4.1.14988.1.1.7.3.0','10463','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0a2b5f7921d74498bb1761e5bb773dec');
INSERT INTO `items` (`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`,`uuid`) values ('37606','20','1.3.6.1.4.1.14988.1.1.4.4.0','10463','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c98293d0ebe844d390474d48a937d0fc');
INSERT INTO `items` (`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`,`uuid`) values ('37607','20','1.3.6.1.2.1.25.2.3.1.5.65536','10463','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','545eb326fcd94bbcafd561824f1759db');
INSERT INTO `items` (`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`,`uuid`) values ('37608','20','1.3.6.1.2.1.25.2.3.1.6.65536','10463','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8a6c7605ff3d45c092dff46fdc9fa1f8');
INSERT INTO `items` (`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`,`uuid`) values ('37609','15','','10463','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8b8c952075db4ac6884cb0b352a75496');
INSERT INTO `items` (`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`,`uuid`) values ('37610','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10463','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','58462afd23c44a788d49469d4ba5f5b4');
INSERT INTO `items` (`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`,`uuid`) values ('37611','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10463','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b3042bcb96014348a57d25cd12829795');
INSERT INTO `items` (`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`,`uuid`) values ('37612','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10463','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fc23fc78ca3145798b76216070acb4d5');
INSERT INTO `items` (`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`,`uuid`) values ('37613','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10463','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2b33d07e9e4049feb9344a226d019e5c');
INSERT INTO `items` (`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`,`uuid`) values ('37614','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10463','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','813fcc3573204df59efc2f4c83a14402');
INSERT INTO `items` (`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`,`uuid`) values ('37615','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10463','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3e5cfaec61a145a3b6dd2236da486408');
INSERT INTO `items` (`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`,`uuid`) values ('37616','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10463','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b14bb3471344128b65c76460c69edcb');
INSERT INTO `items` (`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`,`uuid`) values ('37617','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10463','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d44241dbf0384aaa85346f42720497a4');
INSERT INTO `items` (`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`,`uuid`) values ('37618','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10463','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f720cbe0adb243c5b66f303bda66dc5c');
INSERT INTO `items` (`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`,`uuid`) values ('37619','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10463','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e78b76cc8a864070b275f1e82d5a0cd0');
INSERT INTO `items` (`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`,`uuid`) values ('37620','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10463','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','678ca89bd7f7423e8e2d8d6dd21f7992');
INSERT INTO `items` (`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`,`uuid`) values ('37621','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10463','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aae34986ae5f4641891454a28570a71c');
INSERT INTO `items` (`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`,`uuid`) values ('37622','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10463','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6b3e94493e3d4e2fa5a02850646131f2');
INSERT INTO `items` (`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`,`uuid`) values ('37623','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10463','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e0266ca1918400abb2acfb74cb1208f');
INSERT INTO `items` (`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`,`uuid`) values ('37624','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10463','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5062d6176d4c4ede829fb7679e093e56');
INSERT INTO `items` (`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`,`uuid`) values ('37625','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10463','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','57f9dfd940c84045a71a0d3032ec408b');
INSERT INTO `items` (`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`,`uuid`) values ('37626','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10463','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7219178010374790b7d121431223a50c');
INSERT INTO `items` (`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`,`uuid`) values ('37627','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10463','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','423a6fa257f14693b5669a663fbaa184');
INSERT INTO `items` (`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`,`uuid`) values ('37628','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10463','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5deabb9273f74a60bc5d869c8a744060');
INSERT INTO `items` (`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`,`uuid`) values ('37629','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10463','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8685d4c133e146d19389698719a19d6e');
INSERT INTO `items` (`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`,`uuid`) values ('37630','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10463','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','54a475089c49498ea96d0e063b37f678');
INSERT INTO `items` (`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`,`uuid`) values ('37631','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10463','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e69f18d991704f349e551e0f4024e685');
INSERT INTO `items` (`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`,`uuid`) values ('37632','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10463','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','787f088f58794997b39d55864ffcf25a');
INSERT INTO `items` (`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`,`uuid`) values ('37633','15','','10463','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b40d1fecfb4d45318642012a60debe15');
INSERT INTO `items` (`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`,`uuid`) values ('37634','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10463','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a659baef4d94473caa9cfe962d04ffd9');
INSERT INTO `items` (`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`,`uuid`) values ('37635','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10463','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f0584dd985664955b7513c97cce54f83');
INSERT INTO `items` (`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`,`uuid`) values ('37657','20','1.3.6.1.4.1.14988.1.1.7.4.0','10464','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','23de7a030b324ae2bee4fa96d6a724da');
INSERT INTO `items` (`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`,`uuid`) values ('37658','20','1.3.6.1.2.1.1.1.0','10464','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c41bb4d7171b44aca3656092aa2b12b8');
INSERT INTO `items` (`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`,`uuid`) values ('37659','20','1.3.6.1.4.1.14988.1.1.7.3.0','10464','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','de134343b324455c9e17396c75aac869');
INSERT INTO `items` (`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`,`uuid`) values ('37660','20','1.3.6.1.4.1.14988.1.1.4.4.0','10464','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','709a68530d314d448fbf9f9339af594f');
INSERT INTO `items` (`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`,`uuid`) values ('37661','20','1.3.6.1.2.1.25.2.3.1.5.65536','10464','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d80810c2936846d9b037f5e9d00eb6f6');
INSERT INTO `items` (`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`,`uuid`) values ('37662','20','1.3.6.1.2.1.25.2.3.1.6.65536','10464','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','82807a05026644379df67c28026b9696');
INSERT INTO `items` (`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`,`uuid`) values ('37663','15','','10464','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7bfd8141f2d34548a16f73ff7bb665eb');
INSERT INTO `items` (`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`,`uuid`) values ('37664','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10464','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1a85ac0568c2458f90a90cb7a0642370');
INSERT INTO `items` (`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`,`uuid`) values ('37665','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10464','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','50423572f0824002b674a005262086bb');
INSERT INTO `items` (`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`,`uuid`) values ('37666','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10464','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','715783a411ee47bb9cca13c7ef7b5938');
INSERT INTO `items` (`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`,`uuid`) values ('37667','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10464','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ec79e9f9a65495eae664a3b8a503978');
INSERT INTO `items` (`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`,`uuid`) values ('37668','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10464','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','67a4605912ca4fc0a37325b87e637600');
INSERT INTO `items` (`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`,`uuid`) values ('37669','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10464','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5ace2ebfb2734287abf9d361fedfb4f3');
INSERT INTO `items` (`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`,`uuid`) values ('37670','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10464','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1c4b3868273546bb8d2a95f30cc9d1ed');
INSERT INTO `items` (`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`,`uuid`) values ('37671','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10464','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','768094b0e66b42beb95b8f67003b1650');
INSERT INTO `items` (`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`,`uuid`) values ('37672','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10464','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0e27fff5b5264b7dbaf9b3bd6babebeb');
INSERT INTO `items` (`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`,`uuid`) values ('37673','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10464','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','078f3735ac0d4403b539c27a77284658');
INSERT INTO `items` (`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`,`uuid`) values ('37674','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10464','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5993db957ee9482d8145eb73f9e47d4f');
INSERT INTO `items` (`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`,`uuid`) values ('37675','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10464','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ccfcd108155b4d359388311b7d74c988');
INSERT INTO `items` (`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`,`uuid`) values ('37676','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10464','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9e9296bb427c42828eede79f5ec62c1a');
INSERT INTO `items` (`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`,`uuid`) values ('37677','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10464','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','53fd3660ee2b45eeadb7300962bb1ac4');
INSERT INTO `items` (`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`,`uuid`) values ('37678','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10464','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1cd0e51853ff4209a21912f6ea9bd1b6');
INSERT INTO `items` (`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`,`uuid`) values ('37679','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10464','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','73bcd9521b2e4a13898d1dab0632e76e');
INSERT INTO `items` (`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`,`uuid`) values ('37680','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10464','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','332f17f8800145088ea65fbd56bcc355');
INSERT INTO `items` (`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`,`uuid`) values ('37681','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10464','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5d3d6f97506b4fc3a5cef2c6a03cdbaf');
INSERT INTO `items` (`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`,`uuid`) values ('37682','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10464','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f74d9c3ed71c45bb910f08bcb0fb3eda');
INSERT INTO `items` (`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`,`uuid`) values ('37683','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10464','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','22afbe0ad8394eb4a37788884df98278');
INSERT INTO `items` (`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`,`uuid`) values ('37684','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10464','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d171d2cc8f774581ac7bb39ec8749bcd');
INSERT INTO `items` (`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`,`uuid`) values ('37685','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10464','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2527a7e7306640dc83a0c810a9ff248c');
INSERT INTO `items` (`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`,`uuid`) values ('37686','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10464','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a1f9dec23d75439b9d47670c93881360');
INSERT INTO `items` (`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`,`uuid`) values ('37687','15','','10464','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','edc44941d5e449b4ba5400e3c614861d');
INSERT INTO `items` (`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`,`uuid`) values ('37688','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10464','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1fe1c3ed7e1d413e9c5717f7bc511845');
INSERT INTO `items` (`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`,`uuid`) values ('37689','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10464','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bffab5765d194dd6a8f74b5b40f2ec8f');
INSERT INTO `items` (`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`,`uuid`) values ('37711','20','1.3.6.1.4.1.14988.1.1.7.4.0','10465','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2fc0c608418046d0bbfc371f5f8d8c22');
INSERT INTO `items` (`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`,`uuid`) values ('37712','20','1.3.6.1.2.1.1.1.0','10465','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6a3ca4bce4da4e8eb6a15a2dcf51bce1');
INSERT INTO `items` (`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`,`uuid`) values ('37713','20','1.3.6.1.4.1.14988.1.1.7.3.0','10465','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','589cacbe509547bf944f7c8e3a518c7d');
INSERT INTO `items` (`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`,`uuid`) values ('37714','20','1.3.6.1.4.1.14988.1.1.4.4.0','10465','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','31fb56c30de1477bbe69306c2b9e3d69');
INSERT INTO `items` (`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`,`uuid`) values ('37715','20','1.3.6.1.2.1.25.2.3.1.5.65536','10465','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cb66968d87fe41a2ad4c5cb769849be4');
INSERT INTO `items` (`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`,`uuid`) values ('37716','20','1.3.6.1.2.1.25.2.3.1.6.65536','10465','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','62b4597135824686b5de3cd51fcd46f4');
INSERT INTO `items` (`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`,`uuid`) values ('37717','15','','10465','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','414bec3767eb49c39bd67a135f60ba02');
INSERT INTO `items` (`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`,`uuid`) values ('37718','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10465','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d574937fd7e47c8ba7da4fc7df2b812');
INSERT INTO `items` (`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`,`uuid`) values ('37719','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10465','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4001b2da26774319b5e8754eccb9ace6');
INSERT INTO `items` (`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`,`uuid`) values ('37720','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10465','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fd1e16940eef4715906c2f8241df141e');
INSERT INTO `items` (`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`,`uuid`) values ('37721','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10465','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6da207d2ffa84756a676fa7e7bd19e40');
INSERT INTO `items` (`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`,`uuid`) values ('37722','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10465','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e6a361bc321a401dbcc3a362799d450a');
INSERT INTO `items` (`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`,`uuid`) values ('37723','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10465','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a2e92faea0da45b59a9dd254440c875b');
INSERT INTO `items` (`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`,`uuid`) values ('37724','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10465','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6b80e43f0d004ab4baeb51a772d91457');
INSERT INTO `items` (`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`,`uuid`) values ('37725','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10465','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bbf74ce8d13f4b3eb6e3a949f9fc95fc');
INSERT INTO `items` (`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`,`uuid`) values ('37726','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10465','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e998ed1fcfc7498a873448c59d912f48');
INSERT INTO `items` (`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`,`uuid`) values ('37727','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10465','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b9b599a6f7d746959af746bf348c3c45');
INSERT INTO `items` (`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`,`uuid`) values ('37728','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10465','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','28a57925dbcf410287cc33e680208531');
INSERT INTO `items` (`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`,`uuid`) values ('37729','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10465','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bf05683ec6bd4882af965c5671bca4c8');
INSERT INTO `items` (`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`,`uuid`) values ('37730','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10465','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','39b0a1c4d5134fb7a2a6bd114278a773');
INSERT INTO `items` (`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`,`uuid`) values ('37731','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10465','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','250f123915b94618b4af6aa4166f6e9a');
INSERT INTO `items` (`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`,`uuid`) values ('37732','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10465','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cbaec92328d34e08a4c168961cfc8833');
INSERT INTO `items` (`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`,`uuid`) values ('37733','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10465','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ede61f7e21cc41e2abe7e8931aef6b95');
INSERT INTO `items` (`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`,`uuid`) values ('37734','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10465','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3ce1884489f4482a887756abf92248e5');
INSERT INTO `items` (`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`,`uuid`) values ('37735','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10465','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','56bdd3739b874e8db259ac6e4736affb');
INSERT INTO `items` (`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`,`uuid`) values ('37736','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10465','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f952b47d2a4e4f2991db17dd89e79f24');
INSERT INTO `items` (`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`,`uuid`) values ('37737','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10465','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dfcc5d5ab4584fd48ea22b5f5e00e8c6');
INSERT INTO `items` (`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`,`uuid`) values ('37738','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10465','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6509bb0c5e044c0580398ca99b768b75');
INSERT INTO `items` (`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`,`uuid`) values ('37739','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10465','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8661f6e91dbf4d9a93785f07157eec93');
INSERT INTO `items` (`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`,`uuid`) values ('37740','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10465','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ec83a91a8b284f3a9137c8c4cf36a9c3');
INSERT INTO `items` (`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`,`uuid`) values ('37741','15','','10465','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','929ef695efdf4e60a2e47cc0be74e69c');
INSERT INTO `items` (`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`,`uuid`) values ('37742','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10465','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1c12733c14eb45a8bb36b3fcb8ef7ce7');
INSERT INTO `items` (`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`,`uuid`) values ('37743','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10465','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6202b55760514c64832b9df48828c344');
INSERT INTO `items` (`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`,`uuid`) values ('37765','20','1.3.6.1.4.1.14988.1.1.7.4.0','10466','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','86226852333f4573b461e7283ae93c8a');
INSERT INTO `items` (`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`,`uuid`) values ('37766','20','1.3.6.1.2.1.1.1.0','10466','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cf0cd44044154f0097685ac4da1e0f6b');
INSERT INTO `items` (`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`,`uuid`) values ('37767','20','1.3.6.1.4.1.14988.1.1.7.3.0','10466','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3ec9f238ffa643c28011036ece349c2e');
INSERT INTO `items` (`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`,`uuid`) values ('37768','20','1.3.6.1.4.1.14988.1.1.4.4.0','10466','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ebce52c1fe045ef9e774aefb3359667');
INSERT INTO `items` (`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`,`uuid`) values ('37769','20','1.3.6.1.2.1.25.2.3.1.5.65536','10466','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1ca1d02815cb46dba0b2b27de86cd1d4');
INSERT INTO `items` (`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`,`uuid`) values ('37770','20','1.3.6.1.2.1.25.2.3.1.6.65536','10466','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','891105963e744b8283682a5e4520347b');
INSERT INTO `items` (`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`,`uuid`) values ('37771','15','','10466','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b78b6b52884148f6b925e99b418f1838');
INSERT INTO `items` (`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`,`uuid`) values ('37772','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10466','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','17aca6820fbf4ae3b7c0bbd36ae191a5');
INSERT INTO `items` (`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`,`uuid`) values ('37773','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10466','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dde29665f66f4a74bda66ffe6896b8e8');
INSERT INTO `items` (`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`,`uuid`) values ('37774','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10466','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1b64317c196f4a31b8c7dfd614b285a7');
INSERT INTO `items` (`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`,`uuid`) values ('37775','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10466','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','708e4d3595004248a8acece9641eb4d6');
INSERT INTO `items` (`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`,`uuid`) values ('37776','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10466','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','05c6b3cfcb15488d801fcfbd2df1d68c');
INSERT INTO `items` (`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`,`uuid`) values ('37777','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10466','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9e73e76f915e447191c77ffa452d3a38');
INSERT INTO `items` (`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`,`uuid`) values ('37778','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10466','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2d496a1a38a14321bf35adf43537dce4');
INSERT INTO `items` (`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`,`uuid`) values ('37779','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10466','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0617289aa301456381283c8d42ca6edb');
INSERT INTO `items` (`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`,`uuid`) values ('37780','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10466','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f3302ebef61b469898e0f37ac3607723');
INSERT INTO `items` (`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`,`uuid`) values ('37781','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10466','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','412e6077aaed46bebb182343f1b97023');
INSERT INTO `items` (`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`,`uuid`) values ('37782','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10466','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e39549bb6e34cefbd03c9f789ff5f83');
INSERT INTO `items` (`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`,`uuid`) values ('37783','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10466','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7486c89623e34e8a84d51df4ea38347a');
INSERT INTO `items` (`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`,`uuid`) values ('37784','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10466','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8b1a41af48da46e5a0c37e78a68127df');
INSERT INTO `items` (`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`,`uuid`) values ('37785','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10466','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0c18873c93914367a7aa54156964e0f8');
INSERT INTO `items` (`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`,`uuid`) values ('37786','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10466','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b306260935274f8b93476cce0f740da6');
INSERT INTO `items` (`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`,`uuid`) values ('37787','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10466','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb5bb87dd9ec4ffd8ac9745dd7e5e698');
INSERT INTO `items` (`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`,`uuid`) values ('37788','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10466','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a0576fd0cfbc47d3a48d651dfed2cf7f');
INSERT INTO `items` (`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`,`uuid`) values ('37789','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10466','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','29464ad001e944e2a007e9b6aedf07ca');
INSERT INTO `items` (`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`,`uuid`) values ('37790','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10466','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9f93a69ba465474b8ff554e9017de788');
INSERT INTO `items` (`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`,`uuid`) values ('37791','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10466','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa139caf38304d84b98a905b2d1f246a');
INSERT INTO `items` (`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`,`uuid`) values ('37792','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10466','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e5b5cdbce91946e38b4d194c3bc645c1');
INSERT INTO `items` (`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`,`uuid`) values ('37793','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10466','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','847ad6413af94fe89bf6d4f78a1fc449');
INSERT INTO `items` (`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`,`uuid`) values ('37794','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10466','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3cc43df83ca24a50b44e8b6d899d29ff');
INSERT INTO `items` (`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`,`uuid`) values ('37795','15','','10466','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','be9283a19af84ddb9cb2c9475d4a7170');
INSERT INTO `items` (`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`,`uuid`) values ('37796','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10466','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad99f629e6e94c8abad0215c9a914907');
INSERT INTO `items` (`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`,`uuid`) values ('37797','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10466','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9c2accea5a7a488ab6ebc3dd31f3e797');
INSERT INTO `items` (`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`,`uuid`) values ('37819','20','1.3.6.1.4.1.14988.1.1.7.4.0','10467','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a90c400056634a4b8e1befa2b5868e1c');
INSERT INTO `items` (`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`,`uuid`) values ('37820','20','1.3.6.1.2.1.1.1.0','10467','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d1a55ccf0dd640439c149672d9f86c11');
INSERT INTO `items` (`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`,`uuid`) values ('37821','20','1.3.6.1.4.1.14988.1.1.7.3.0','10467','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ab55ba9cf82449a8b683ded8c691a11');
INSERT INTO `items` (`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`,`uuid`) values ('37822','20','1.3.6.1.4.1.14988.1.1.4.4.0','10467','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dcb3f5f1561543959e170e62e61f1457');
INSERT INTO `items` (`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`,`uuid`) values ('37823','20','1.3.6.1.2.1.25.2.3.1.5.65536','10467','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4cf79d752ffe4eeeb80db78bd1f39813');
INSERT INTO `items` (`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`,`uuid`) values ('37824','20','1.3.6.1.2.1.25.2.3.1.6.65536','10467','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4682ebaf961d4782b7447de52646dfd4');
INSERT INTO `items` (`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`,`uuid`) values ('37825','15','','10467','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','805237bf56894386acfc37c7f38ad907');
INSERT INTO `items` (`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`,`uuid`) values ('37826','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10467','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dcc0b3e7e4304c27b9156deb1fb56781');
INSERT INTO `items` (`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`,`uuid`) values ('37827','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10467','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1805474bc45841be9203aa4431c6e5f6');
INSERT INTO `items` (`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`,`uuid`) values ('37828','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10467','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','13c315f3af5747deb5590a52d979f2df');
INSERT INTO `items` (`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`,`uuid`) values ('37829','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10467','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','87ca6cf207f147bc926d521530449c81');
INSERT INTO `items` (`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`,`uuid`) values ('37830','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10467','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5db9feb9d197453aaafd348c3d525f3c');
INSERT INTO `items` (`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`,`uuid`) values ('37831','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10467','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','26e3b6942ca64f0ca17080a7149d695c');
INSERT INTO `items` (`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`,`uuid`) values ('37832','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10467','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','94d8fa584eef4573acc2861060902fc1');
INSERT INTO `items` (`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`,`uuid`) values ('37833','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10467','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d6a562ef91ef4c608232e2d0f98dfcd9');
INSERT INTO `items` (`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`,`uuid`) values ('37834','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10467','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c1d7c3be659d46b79a6122a3b07053d1');
INSERT INTO `items` (`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`,`uuid`) values ('37835','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10467','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6915ae48936a4ce084412df12c92b80f');
INSERT INTO `items` (`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`,`uuid`) values ('37836','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10467','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ae2ffeed2a7749dba00ab3a2b65d4091');
INSERT INTO `items` (`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`,`uuid`) values ('37837','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10467','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9e1d91dcc55b43b9a9a33a50e08f7037');
INSERT INTO `items` (`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`,`uuid`) values ('37838','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10467','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','45cb37b6dcb64115b7fc021359f5e2e1');
INSERT INTO `items` (`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`,`uuid`) values ('37839','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10467','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da44c19b868a41058a5c91792e4153b0');
INSERT INTO `items` (`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`,`uuid`) values ('37840','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10467','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f07162a9b65f4b8ba99e9ad37ea78141');
INSERT INTO `items` (`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`,`uuid`) values ('37841','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10467','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c57390f8e3764add926431b9b6351ea0');
INSERT INTO `items` (`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`,`uuid`) values ('37842','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10467','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4723a555cf1e4c179e9af54cd8c7ca10');
INSERT INTO `items` (`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`,`uuid`) values ('37843','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10467','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0004683dd9e84d3b92bb5f6b5304bb9b');
INSERT INTO `items` (`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`,`uuid`) values ('37844','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10467','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b4e81fbbecf2479798c604c3514b25d9');
INSERT INTO `items` (`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`,`uuid`) values ('37845','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10467','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bc35de18a55042b2a090d3bdaa87029c');
INSERT INTO `items` (`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`,`uuid`) values ('37846','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10467','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b06f561f915f43c198d4fd011ea676f0');
INSERT INTO `items` (`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`,`uuid`) values ('37847','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10467','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f14009a9bae64d0ba293f710149ca764');
INSERT INTO `items` (`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`,`uuid`) values ('37848','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10467','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','62ae5c6fc3504346b37b997798bd635e');
INSERT INTO `items` (`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`,`uuid`) values ('37849','15','','10467','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','32902345efc2483d86aa7dfd2d02d6c0');
INSERT INTO `items` (`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`,`uuid`) values ('37850','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10467','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','afec00d5d90c4386b2d32c03f22a6374');
INSERT INTO `items` (`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`,`uuid`) values ('37851','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10467','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b3bb874134804e9f8370a774867715bd');
INSERT INTO `items` (`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`,`uuid`) values ('37873','20','1.3.6.1.4.1.14988.1.1.7.4.0','10468','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a66560b690d544ef8fc657812a602157');
INSERT INTO `items` (`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`,`uuid`) values ('37874','20','1.3.6.1.2.1.1.1.0','10468','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c8239bb961ee453da2885a8abef9be34');
INSERT INTO `items` (`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`,`uuid`) values ('37875','20','1.3.6.1.4.1.14988.1.1.7.3.0','10468','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','df405f764813407eb03d6f7a6308c5cc');
INSERT INTO `items` (`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`,`uuid`) values ('37876','20','1.3.6.1.4.1.14988.1.1.4.4.0','10468','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','55775fa17c604dddb86c7644556830e6');
INSERT INTO `items` (`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`,`uuid`) values ('37877','20','1.3.6.1.2.1.25.2.3.1.5.65536','10468','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','14aff8f369f9440aac2110a4a52e7eb5');
INSERT INTO `items` (`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`,`uuid`) values ('37878','20','1.3.6.1.2.1.25.2.3.1.6.65536','10468','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cbe45fbc0f9e4b1a94966ccb859463ae');
INSERT INTO `items` (`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`,`uuid`) values ('37879','15','','10468','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','03626c0f7cf24394b47f24a1af36dcd0');
INSERT INTO `items` (`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`,`uuid`) values ('37880','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10468','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c978b9c2e4c4c01b7ec7ce7af02f27a');
INSERT INTO `items` (`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`,`uuid`) values ('37881','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10468','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8afd22083a1343cf81d947e42516583e');
INSERT INTO `items` (`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`,`uuid`) values ('37882','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10468','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','24e13986d6224173bec425a3ca2562fa');
INSERT INTO `items` (`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`,`uuid`) values ('37883','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10468','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9acd8e04d272467c8c1cd0452068bf93');
INSERT INTO `items` (`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`,`uuid`) values ('37884','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10468','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fe6101d8772d482e999e0351c40ccbd1');
INSERT INTO `items` (`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`,`uuid`) values ('37885','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10468','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2b6a52cd5f1b4786a6176b4ea11887fb');
INSERT INTO `items` (`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`,`uuid`) values ('37886','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10468','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fc051342ffd646fd86702f89ad9da14b');
INSERT INTO `items` (`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`,`uuid`) values ('37887','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10468','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','521d764377654b93816ee70e8c80fc0a');
INSERT INTO `items` (`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`,`uuid`) values ('37888','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10468','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','165ef578bc8144c79e3bb23cf9aece72');
INSERT INTO `items` (`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`,`uuid`) values ('37889','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10468','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9909cd00a6a24e7693bcee846e806bd2');
INSERT INTO `items` (`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`,`uuid`) values ('37890','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10468','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f07ac80125fe425bb87aeb409ae198db');
INSERT INTO `items` (`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`,`uuid`) values ('37891','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10468','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a418c6b3e88f45a398daf2c0fc529d13');
INSERT INTO `items` (`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`,`uuid`) values ('37892','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10468','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e0659a14e4c14779a02bc4bd5fa2b8cf');
INSERT INTO `items` (`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`,`uuid`) values ('37893','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10468','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2fe3fa0e2ec84a098add91a09ff9332d');
INSERT INTO `items` (`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`,`uuid`) values ('37894','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10468','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','918507201ca94b3284d3ea0790e5dfcb');
INSERT INTO `items` (`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`,`uuid`) values ('37895','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10468','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2cac58114b934cd4bf6738db973f04e7');
INSERT INTO `items` (`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`,`uuid`) values ('37896','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10468','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eb1304a13add439b8a0eba33f0be85bd');
INSERT INTO `items` (`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`,`uuid`) values ('37897','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10468','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9135865a5f6341449f661b2effe38c19');
INSERT INTO `items` (`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`,`uuid`) values ('37898','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10468','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','10ca39f536ec49e081e0edc5c0b2972f');
INSERT INTO `items` (`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`,`uuid`) values ('37899','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10468','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a736f4197c594f10b144ca1775111d1d');
INSERT INTO `items` (`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`,`uuid`) values ('37900','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10468','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','17646c7e68fa4733a8ecccd3321513c5');
INSERT INTO `items` (`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`,`uuid`) values ('37901','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10468','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c0beda9dfe0447f953a3be51fba7e48');
INSERT INTO `items` (`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`,`uuid`) values ('37902','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10468','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d327bafe453345468ed568b30c3c0ca5');
INSERT INTO `items` (`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`,`uuid`) values ('37903','15','','10468','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e7e62890c210420882a04af7dd07cde9');
INSERT INTO `items` (`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`,`uuid`) values ('37904','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10468','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9bcda8136943432eaedfa8ed80dd48e7');
INSERT INTO `items` (`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`,`uuid`) values ('37905','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10468','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','19b70b4990ca4813a0237a5bd6b8915b');
INSERT INTO `items` (`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`,`uuid`) values ('37927','20','1.3.6.1.4.1.14988.1.1.7.4.0','10469','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7befae11c37c415c821465a2b923d901');
INSERT INTO `items` (`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`,`uuid`) values ('37928','20','1.3.6.1.2.1.1.1.0','10469','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f533de2af2824b30a43995499f5ec467');
INSERT INTO `items` (`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`,`uuid`) values ('37929','20','1.3.6.1.4.1.14988.1.1.7.3.0','10469','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4cb71c3fa0aa4ca8aa4c2c03a017a28a');
INSERT INTO `items` (`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`,`uuid`) values ('37930','20','1.3.6.1.4.1.14988.1.1.4.4.0','10469','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1e0024446d5f4696919f3a246dda3868');
INSERT INTO `items` (`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`,`uuid`) values ('37931','20','1.3.6.1.2.1.25.2.3.1.5.65536','10469','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','06bdef85cb3849819a6fa43dfcdf7ba1');
INSERT INTO `items` (`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`,`uuid`) values ('37932','20','1.3.6.1.2.1.25.2.3.1.6.65536','10469','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','05b7592dca7744e39bbea87e73b6062c');
INSERT INTO `items` (`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`,`uuid`) values ('37933','15','','10469','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f39b87bfab3347b1bc016a35aa58f1be');
INSERT INTO `items` (`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`,`uuid`) values ('37934','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10469','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9f244f13f1c346feb1852908e347a9ce');
INSERT INTO `items` (`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`,`uuid`) values ('37935','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10469','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0ea5fe1af3f14c258407cdcf5c8492cd');
INSERT INTO `items` (`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`,`uuid`) values ('37936','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10469','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b6e7345eb5d48ce88d577f1023a7479');
INSERT INTO `items` (`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`,`uuid`) values ('37937','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10469','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e3d529ed5a1b4d89b156e1a2bdd73905');
INSERT INTO `items` (`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`,`uuid`) values ('37938','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10469','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','174a070e450a4b6a851e6f774cea0496');
INSERT INTO `items` (`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`,`uuid`) values ('37939','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10469','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','009b58f603c74f66a5341db132e489ba');
INSERT INTO `items` (`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`,`uuid`) values ('37940','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10469','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a52c622d98b643dfb67459f5b6b63e3d');
INSERT INTO `items` (`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`,`uuid`) values ('37941','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10469','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','67bd6121ef4946ac9e73fc3974eb72ed');
INSERT INTO `items` (`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`,`uuid`) values ('37942','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10469','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','99d748b7c76e4ea493784fd62348cc55');
INSERT INTO `items` (`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`,`uuid`) values ('37943','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10469','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1e429d1a498044d3b95d2a73db924f77');
INSERT INTO `items` (`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`,`uuid`) values ('37944','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10469','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','41ac19f7e4d2423e8211517127be3e4e');
INSERT INTO `items` (`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`,`uuid`) values ('37945','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10469','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fdffd7bb090b4acc85692c0fa113aed6');
INSERT INTO `items` (`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`,`uuid`) values ('37946','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10469','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c8b7cde011cf45efbfbdb54a99f7afb9');
INSERT INTO `items` (`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`,`uuid`) values ('37947','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10469','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ce8dc75d99944f88afc937e1025f4bcc');
INSERT INTO `items` (`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`,`uuid`) values ('37948','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10469','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b0aa41ec369423ba346cf6c9f7c9075');
INSERT INTO `items` (`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`,`uuid`) values ('37949','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10469','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','40aa76b4a7e74961a20a6891e5084fa6');
INSERT INTO `items` (`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`,`uuid`) values ('37950','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10469','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','34e0b4d61e954c5598df74624eec7de4');
INSERT INTO `items` (`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`,`uuid`) values ('37951','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10469','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4484896071184e62992201bf6590ed4f');
INSERT INTO `items` (`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`,`uuid`) values ('37952','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10469','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2fadfc227fbb418f9d0bccf1af2a871c');
INSERT INTO `items` (`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`,`uuid`) values ('37953','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10469','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ad3feaeee5f4663b598e95e18fd81e2');
INSERT INTO `items` (`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`,`uuid`) values ('37954','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10469','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2938eec3c8dd4dcf931d52d64191a68d');
INSERT INTO `items` (`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`,`uuid`) values ('37955','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10469','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','43db9c3fcc074d4d8c9d041ed0d40ade');
INSERT INTO `items` (`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`,`uuid`) values ('37956','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10469','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','231504212d1a4f688a35b77014e9ef20');
INSERT INTO `items` (`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`,`uuid`) values ('37957','15','','10469','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac51787aeada4d6596deee43a66818e8');
INSERT INTO `items` (`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`,`uuid`) values ('37958','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10469','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8b12975b2d1f4c03adce5fd9aaacd8e2');
INSERT INTO `items` (`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`,`uuid`) values ('37959','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10469','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4445602fc420442db98c58cd28d68b46');
INSERT INTO `items` (`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`,`uuid`) values ('37981','20','1.3.6.1.4.1.14988.1.1.7.4.0','10470','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d2ae97a860254ce8935a939ad715d583');
INSERT INTO `items` (`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`,`uuid`) values ('37982','20','1.3.6.1.2.1.1.1.0','10470','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bad88a688384478b841c24f935d5c3a1');
INSERT INTO `items` (`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`,`uuid`) values ('37983','20','1.3.6.1.4.1.14988.1.1.7.3.0','10470','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dd694bbf5faf4c7a8a30d5ffd817b678');
INSERT INTO `items` (`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`,`uuid`) values ('37984','20','1.3.6.1.4.1.14988.1.1.4.4.0','10470','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2906c09ebcc34c908a6ab8530804b67f');
INSERT INTO `items` (`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`,`uuid`) values ('37985','20','1.3.6.1.2.1.25.2.3.1.5.65536','10470','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6417f5bc08084fa29f2dab421c5093fd');
INSERT INTO `items` (`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`,`uuid`) values ('37986','20','1.3.6.1.2.1.25.2.3.1.6.65536','10470','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','01618781ca974f5e8b1bf58b65092038');
INSERT INTO `items` (`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`,`uuid`) values ('37987','15','','10470','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ffee597574084c638b668fb11a735962');
INSERT INTO `items` (`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`,`uuid`) values ('37988','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10470','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','43a205f5dd7d4874a68c1a9930f43260');
INSERT INTO `items` (`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`,`uuid`) values ('37989','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10470','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d7dee0d21034492e80cd52070f242131');
INSERT INTO `items` (`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`,`uuid`) values ('37990','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10470','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','33b7e69a7e3b44548c14b5d290518d23');
INSERT INTO `items` (`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`,`uuid`) values ('37991','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10470','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3824e4d95d2d47ea858f7885d3fadbb8');
INSERT INTO `items` (`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`,`uuid`) values ('37992','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10470','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d4d7077e3d1c45de8320982d2d2757f7');
INSERT INTO `items` (`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`,`uuid`) values ('37993','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10470','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ca977ba6126442d2b4fe511ccf78c021');
INSERT INTO `items` (`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`,`uuid`) values ('37994','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10470','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9164b9995cf2443189314c8177353070');
INSERT INTO `items` (`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`,`uuid`) values ('37995','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10470','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c510805ee348445b851bc93e95daf8f6');
INSERT INTO `items` (`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`,`uuid`) values ('37996','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10470','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','48068386e2fa47afbac7f41fd8c36a72');
INSERT INTO `items` (`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`,`uuid`) values ('37997','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10470','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2ba207937e5146adaa5e02903ae70b8b');
INSERT INTO `items` (`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`,`uuid`) values ('37998','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10470','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','161f4066cd2d4cc393afad6bac50dcc5');
INSERT INTO `items` (`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`,`uuid`) values ('37999','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10470','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3728775b43bb4fd9927cc83b31441e73');
INSERT INTO `items` (`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`,`uuid`) values ('38000','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10470','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','25aeaf59b6a446428d81743da8fad36f');
INSERT INTO `items` (`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`,`uuid`) values ('38001','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10470','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5696d89760ef4e168e79a68c9503a752');
INSERT INTO `items` (`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`,`uuid`) values ('38002','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10470','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a5b2a6adc309482f8f4ae0ac696b6188');
INSERT INTO `items` (`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`,`uuid`) values ('38003','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10470','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1f5889a3511e423eba944249026cade2');
INSERT INTO `items` (`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`,`uuid`) values ('38004','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10470','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','116c9e2164244af7ac233192cc2c0fa8');
INSERT INTO `items` (`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`,`uuid`) values ('38005','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10470','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7f66614630514280a2e4694f601527e1');
INSERT INTO `items` (`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`,`uuid`) values ('38006','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10470','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6a1710f2a57546bbb825fa30dff7dfc6');
INSERT INTO `items` (`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`,`uuid`) values ('38007','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10470','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fa5d5e176fd540299ef75d4a9693ed09');
INSERT INTO `items` (`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`,`uuid`) values ('38008','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10470','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1bdcdd568543421e8e5cbd953698bbd2');
INSERT INTO `items` (`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`,`uuid`) values ('38009','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10470','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ea83d2c84144a209c0ed5592207027c');
INSERT INTO `items` (`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`,`uuid`) values ('38010','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10470','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8525fbb691d4494b8e03eb7b1b4a7ecd');
INSERT INTO `items` (`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`,`uuid`) values ('38011','15','','10470','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d710a862bf0043aca18a6c961320ecba');
INSERT INTO `items` (`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`,`uuid`) values ('38012','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10470','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','20ca55174f764308933c395b1f8c25b6');
INSERT INTO `items` (`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`,`uuid`) values ('38013','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10470','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b1293070b58b4859b3cc730a08e24f1c');
INSERT INTO `items` (`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`,`uuid`) values ('38035','20','1.3.6.1.4.1.14988.1.1.7.4.0','10471','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8da4bc75729549f8ba60c5edd47f1419');
INSERT INTO `items` (`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`,`uuid`) values ('38036','20','1.3.6.1.2.1.1.1.0','10471','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','05352d9bfb6d48b682c4d5e23ff28daf');
INSERT INTO `items` (`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`,`uuid`) values ('38037','20','1.3.6.1.4.1.14988.1.1.7.3.0','10471','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','19bfda7a644b462880226d790eebd154');
INSERT INTO `items` (`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`,`uuid`) values ('38038','20','1.3.6.1.4.1.14988.1.1.4.4.0','10471','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aca36fae2c2f4856a8cacf7348a31b54');
INSERT INTO `items` (`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`,`uuid`) values ('38039','20','1.3.6.1.2.1.25.2.3.1.5.65536','10471','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2ee29a6f60eb45fdb1193283ed54e7bc');
INSERT INTO `items` (`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`,`uuid`) values ('38040','20','1.3.6.1.2.1.25.2.3.1.6.65536','10471','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aef42cabe6cb4c8dbb0c6cea532c6a3f');
INSERT INTO `items` (`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`,`uuid`) values ('38041','15','','10471','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0012d55c993c43f4b620e282a9799cd8');
INSERT INTO `items` (`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`,`uuid`) values ('38042','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10471','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','55e1dad7a38743f2ba0ba1546a55638d');
INSERT INTO `items` (`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`,`uuid`) values ('38043','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10471','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','69bb93aca6c140959ad2ddd484a774e7');
INSERT INTO `items` (`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`,`uuid`) values ('38044','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10471','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2298f69eb20647468f92dfee2740d653');
INSERT INTO `items` (`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`,`uuid`) values ('38045','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10471','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','94742faea5cb4922af607bcf66494c75');
INSERT INTO `items` (`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`,`uuid`) values ('38046','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10471','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4c8b8a486e7348c383f28ffcb4db6182');
INSERT INTO `items` (`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`,`uuid`) values ('38047','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10471','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c256b93e9a9d4c25a4c347ebd4ce87a0');
INSERT INTO `items` (`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`,`uuid`) values ('38048','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10471','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d4eb86620709480a93c863cc4080ceef');
INSERT INTO `items` (`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`,`uuid`) values ('38049','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10471','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','602f38f90f3545adbc070d035539ec8d');
INSERT INTO `items` (`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`,`uuid`) values ('38050','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10471','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','987908255779438fa44009e8cc021daf');
INSERT INTO `items` (`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`,`uuid`) values ('38051','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10471','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b22c36030deb4143a6843bfeb3ea1ebe');
INSERT INTO `items` (`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`,`uuid`) values ('38052','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10471','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fda8316e54e2457492d19ad3f0fdefba');
INSERT INTO `items` (`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`,`uuid`) values ('38053','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10471','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9b636bb8baa54fec808391d5387affb1');
INSERT INTO `items` (`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`,`uuid`) values ('38054','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10471','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ce63b34ac4ed4e98af2e9cf165fd4edd');
INSERT INTO `items` (`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`,`uuid`) values ('38055','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10471','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2879b1fddfa3422d81f3d54bf10eeba9');
INSERT INTO `items` (`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`,`uuid`) values ('38056','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10471','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc0acc56261542178aef0227e886a582');
INSERT INTO `items` (`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`,`uuid`) values ('38057','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10471','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a29816c787c3404f8e2c2492b3c97fc3');
INSERT INTO `items` (`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`,`uuid`) values ('38058','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10471','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da4acf2e97e44415951f9a22042e7722');
INSERT INTO `items` (`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`,`uuid`) values ('38059','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10471','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b6a61875bfbb47ad9e1ffc93f11f533a');
INSERT INTO `items` (`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`,`uuid`) values ('38060','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10471','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7c62e6580f44467e9d1ceaef77394a5e');
INSERT INTO `items` (`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`,`uuid`) values ('38061','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10471','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da4b16ed30de474dac4a260b8d813f69');
INSERT INTO `items` (`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`,`uuid`) values ('38062','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10471','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ae5c0adc6b05408ca1cf362d4c01eafe');
INSERT INTO `items` (`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`,`uuid`) values ('38063','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10471','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','321b92fdbbde4c5c91ca04c28861fe11');
INSERT INTO `items` (`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`,`uuid`) values ('38064','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10471','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da85b9260e374c58946d337686158519');
INSERT INTO `items` (`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`,`uuid`) values ('38065','15','','10471','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ea8ea45343ad4b86bc67c631326b2b9d');
INSERT INTO `items` (`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`,`uuid`) values ('38066','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10471','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bf9374d0427c4e5493752ee648ee5bb1');
INSERT INTO `items` (`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`,`uuid`) values ('38067','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10471','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b8a263e710ad4864bd7406e637b44c21');
INSERT INTO `items` (`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`,`uuid`) values ('38089','20','1.3.6.1.4.1.14988.1.1.7.4.0','10472','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b6b5e17543b54d32a6efac05a346717b');
INSERT INTO `items` (`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`,`uuid`) values ('38090','20','1.3.6.1.2.1.1.1.0','10472','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da7d1bace5b84ec59f2a669c090c3b1f');
INSERT INTO `items` (`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`,`uuid`) values ('38091','20','1.3.6.1.4.1.14988.1.1.7.3.0','10472','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','903370300c154ba09796eaca48f5e54f');
INSERT INTO `items` (`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`,`uuid`) values ('38092','20','1.3.6.1.4.1.14988.1.1.4.4.0','10472','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','823e2b2060f64bed86d2a99d5e1487c5');
INSERT INTO `items` (`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`,`uuid`) values ('38093','20','1.3.6.1.2.1.25.2.3.1.5.65536','10472','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ef5f00c33dea46b59b756eda8bb62f26');
INSERT INTO `items` (`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`,`uuid`) values ('38094','20','1.3.6.1.2.1.25.2.3.1.6.65536','10472','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da09619f39da49d59cf0125b45d567a6');
INSERT INTO `items` (`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`,`uuid`) values ('38095','15','','10472','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ec6c40e7c02c49efbb7116bc6917b42b');
INSERT INTO `items` (`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`,`uuid`) values ('38096','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10472','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4f4f6561dbaa4b89a77461a91339d552');
INSERT INTO `items` (`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`,`uuid`) values ('38097','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10472','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9c0018fd8715414887115820c3094146');
INSERT INTO `items` (`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`,`uuid`) values ('38098','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10472','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','732470e573084fd6b7d27d99189004ba');
INSERT INTO `items` (`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`,`uuid`) values ('38099','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10472','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','846190a30b804bfda47b31796819f8fb');
INSERT INTO `items` (`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`,`uuid`) values ('38100','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10472','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','18f56223df0a415fb99869ba8a8ee514');
INSERT INTO `items` (`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`,`uuid`) values ('38101','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10472','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c475a511980841b49b7615b93c873eae');
INSERT INTO `items` (`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`,`uuid`) values ('38102','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10472','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','77cfcc80cb8d407ca178ba7b9e50f182');
INSERT INTO `items` (`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`,`uuid`) values ('38103','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10472','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d2396df3e96d472289886c54bbb6fca2');
INSERT INTO `items` (`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`,`uuid`) values ('38104','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10472','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f3670784a4e34fb6b9ed84c4c43998ed');
INSERT INTO `items` (`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`,`uuid`) values ('38105','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10472','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ce36e933fd9146c29d9d46ebfef95489');
INSERT INTO `items` (`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`,`uuid`) values ('38106','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10472','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','222211769ab340509fba69d8f354029b');
INSERT INTO `items` (`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`,`uuid`) values ('38107','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10472','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f6c1350d1a694bae98bf59d862ac8f59');
INSERT INTO `items` (`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`,`uuid`) values ('38108','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10472','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7242abcbe9314f23ac5512edbf4c39a1');
INSERT INTO `items` (`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`,`uuid`) values ('38109','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10472','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fc2d8f9f26da4e4abb625394e66b194a');
INSERT INTO `items` (`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`,`uuid`) values ('38110','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10472','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','36b565d6f34a47b29a859ca50a0b557e');
INSERT INTO `items` (`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`,`uuid`) values ('38111','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10472','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f4c638ed14314c8790e34b9e32ee6f17');
INSERT INTO `items` (`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`,`uuid`) values ('38112','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10472','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2986ecfb1d7641289cd1aca79e1f206f');
INSERT INTO `items` (`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`,`uuid`) values ('38113','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10472','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f2ceea0e555440808c983d61d4cd620e');
INSERT INTO `items` (`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`,`uuid`) values ('38114','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10472','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3f8622b3bd154ec5b2bf8fc75e35183f');
INSERT INTO `items` (`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`,`uuid`) values ('38115','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10472','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8337fdf60e9b45c2b4c1a155d5b2603d');
INSERT INTO `items` (`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`,`uuid`) values ('38116','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10472','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6ecceab4ba1345708fa806542ce85051');
INSERT INTO `items` (`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`,`uuid`) values ('38117','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10472','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9da88d1a5d3649f0ac023319f529026d');
INSERT INTO `items` (`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`,`uuid`) values ('38118','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10472','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c0ffadf84784e20af33236fbe6aa763');
INSERT INTO `items` (`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`,`uuid`) values ('38119','15','','10472','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','48fa37490d794fafaa3585510b4ebda9');
INSERT INTO `items` (`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`,`uuid`) values ('38120','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10472','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','306d4dbbacd949b58631f178937c667e');
INSERT INTO `items` (`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`,`uuid`) values ('38121','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10472','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','29c812f5a94f49a5a28690af05553bbf');
INSERT INTO `items` (`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`,`uuid`) values ('38143','20','1.3.6.1.4.1.14988.1.1.7.4.0','10473','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ac79dd0cff146c9ae018a8ba626f9e7');
INSERT INTO `items` (`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`,`uuid`) values ('38144','20','1.3.6.1.2.1.1.1.0','10473','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8b6f433b2de14edcb0efb036c562b090');
INSERT INTO `items` (`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`,`uuid`) values ('38145','20','1.3.6.1.4.1.14988.1.1.7.3.0','10473','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','484e12b0d4a24d19b9edfd300cfef958');
INSERT INTO `items` (`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`,`uuid`) values ('38146','20','1.3.6.1.4.1.14988.1.1.4.4.0','10473','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9c810b41d48243668158812fdfdea4f7');
INSERT INTO `items` (`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`,`uuid`) values ('38147','20','1.3.6.1.2.1.25.2.3.1.5.65536','10473','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b34dda68e02640f88df173b7eeab267f');
INSERT INTO `items` (`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`,`uuid`) values ('38148','20','1.3.6.1.2.1.25.2.3.1.6.65536','10473','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','561afbad2b3d4d20a3fbe9753abd8623');
INSERT INTO `items` (`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`,`uuid`) values ('38149','15','','10473','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f605ea1480d947b3bad4d1592c215643');
INSERT INTO `items` (`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`,`uuid`) values ('38150','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10473','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','315ea6f2b17e4bb5a019394e8cd50a59');
INSERT INTO `items` (`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`,`uuid`) values ('38151','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10473','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3b40ad0d38434b10a190ed2563b7ebee');
INSERT INTO `items` (`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`,`uuid`) values ('38152','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10473','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b606e130e79e4664892e94f25bbdb7ee');
INSERT INTO `items` (`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`,`uuid`) values ('38153','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10473','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d7a8644f9af749afa7194b9bda688f74');
INSERT INTO `items` (`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`,`uuid`) values ('38154','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10473','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5039dfabeb7c493c8f8fdc0e448f921d');
INSERT INTO `items` (`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`,`uuid`) values ('38155','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10473','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc00fd051776439cb2267611af6d9b9b');
INSERT INTO `items` (`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`,`uuid`) values ('38156','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10473','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2117133adbd14de6beb78907eec23c77');
INSERT INTO `items` (`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`,`uuid`) values ('38157','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10473','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa3298d983b8462b86d3dde1e34130a5');
INSERT INTO `items` (`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`,`uuid`) values ('38158','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10473','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','50d3a1b778cc4981b069dffe98a21ba2');
INSERT INTO `items` (`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`,`uuid`) values ('38159','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10473','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','32fa64de0bb44217907a3f8ca6683036');
INSERT INTO `items` (`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`,`uuid`) values ('38160','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10473','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','85213524f70d47a98dd3067ad69bef9f');
INSERT INTO `items` (`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`,`uuid`) values ('38161','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10473','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b51fb106f4724770b841a0f604655d2e');
INSERT INTO `items` (`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`,`uuid`) values ('38162','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10473','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b7520a6b109a421b8d2c051751c62aae');
INSERT INTO `items` (`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`,`uuid`) values ('38163','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10473','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eb86d792431b41b0ad214e5ddf37cafe');
INSERT INTO `items` (`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`,`uuid`) values ('38164','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10473','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ba279749a9a34c31b54c21c2ece7a277');
INSERT INTO `items` (`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`,`uuid`) values ('38165','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10473','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','96176e87857f422fae7e82eb10b75037');
INSERT INTO `items` (`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`,`uuid`) values ('38166','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10473','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6dc6a1f0f3254cd89cc643796480e820');
INSERT INTO `items` (`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`,`uuid`) values ('38167','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10473','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ef96b8baa8b4e1187479213a46aca29');
INSERT INTO `items` (`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`,`uuid`) values ('38168','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10473','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8dd35e2eedf545399834152eba4ac03a');
INSERT INTO `items` (`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`,`uuid`) values ('38169','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10473','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','23dd58dbfcc841fd893869ecc3d8af41');
INSERT INTO `items` (`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`,`uuid`) values ('38170','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10473','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b73c3270404e4dd3a25bf128a6cc0ef2');
INSERT INTO `items` (`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`,`uuid`) values ('38171','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10473','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fe0b8b2c15ef45b7b61a97e2624d40f8');
INSERT INTO `items` (`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`,`uuid`) values ('38172','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10473','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f5080d802e114edea1a74513cad65043');
INSERT INTO `items` (`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`,`uuid`) values ('38173','15','','10473','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','418e091863284108b3db341b7d897430');
INSERT INTO `items` (`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`,`uuid`) values ('38174','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10473','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0fde6656cbcb41839171e972e6fea8ac');
INSERT INTO `items` (`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`,`uuid`) values ('38175','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10473','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a73e8eeae6044e6098e55abc93010a29');
INSERT INTO `items` (`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`,`uuid`) values ('38197','20','1.3.6.1.4.1.14988.1.1.7.4.0','10474','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a4b55762b7ad446fa5c213883b8eebd2');
INSERT INTO `items` (`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`,`uuid`) values ('38198','20','1.3.6.1.2.1.1.1.0','10474','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f5c605a329274039883a04e6993d1e22');
INSERT INTO `items` (`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`,`uuid`) values ('38199','20','1.3.6.1.4.1.14988.1.1.7.3.0','10474','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1d0da69b54a24b938cc1e9b37163dca3');
INSERT INTO `items` (`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`,`uuid`) values ('38200','20','1.3.6.1.4.1.14988.1.1.4.4.0','10474','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8fe83ecd500341999fc23e74d61dcf6b');
INSERT INTO `items` (`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`,`uuid`) values ('38201','20','1.3.6.1.2.1.25.2.3.1.5.65536','10474','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f79fd8f841404f88aa130513c8264e27');
INSERT INTO `items` (`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`,`uuid`) values ('38202','20','1.3.6.1.2.1.25.2.3.1.6.65536','10474','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','05cfdd5f009843a3a2b80939fb6f773d');
INSERT INTO `items` (`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`,`uuid`) values ('38203','15','','10474','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','26765cfd258e46d18c3d085c170c1004');
INSERT INTO `items` (`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`,`uuid`) values ('38204','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10474','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','06ffa927f56746138f8bb938b1875c51');
INSERT INTO `items` (`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`,`uuid`) values ('38205','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10474','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','318eae7c977a44f9b24891376cefc129');
INSERT INTO `items` (`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`,`uuid`) values ('38206','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10474','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4376a8c9a1d94d9da621d66f41546644');
INSERT INTO `items` (`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`,`uuid`) values ('38207','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10474','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bcf3a43092af4746bd6260c0fbc0961e');
INSERT INTO `items` (`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`,`uuid`) values ('38208','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10474','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e9ac830b1f3a41c19739f09a1d89e2e7');
INSERT INTO `items` (`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`,`uuid`) values ('38209','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10474','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','054261dc7c2141c3b176c8692f1d9709');
INSERT INTO `items` (`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`,`uuid`) values ('38210','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10474','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8f1b9e4dcc914aaf945ca40f78f48d87');
INSERT INTO `items` (`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`,`uuid`) values ('38211','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10474','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f9f2d060eebe444f893916e756f10d41');
INSERT INTO `items` (`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`,`uuid`) values ('38212','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10474','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ee1b96c22a8d4d87bbd8cdd28ff75859');
INSERT INTO `items` (`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`,`uuid`) values ('38213','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10474','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ee4e5b2384e48bd86df5e6f26d37e84');
INSERT INTO `items` (`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`,`uuid`) values ('38214','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10474','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','98abf29563eb46bfabe324973333e806');
INSERT INTO `items` (`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`,`uuid`) values ('38215','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10474','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c9ffc4c45804499aa820715d6d939448');
INSERT INTO `items` (`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`,`uuid`) values ('38216','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10474','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','26a591c37a114fd8bdcc16a7144aa92c');
INSERT INTO `items` (`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`,`uuid`) values ('38217','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10474','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc7ca6b56a1f46ce9ed350511a8b2f17');
INSERT INTO `items` (`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`,`uuid`) values ('38218','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10474','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5258a6d10fc14c66b721df917aaf13b0');
INSERT INTO `items` (`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`,`uuid`) values ('38219','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10474','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d41f53d1a100475699f3afa9ec75eb14');
INSERT INTO `items` (`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`,`uuid`) values ('38220','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10474','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab3b88358f934afb9f9f3d9be2d32ded');
INSERT INTO `items` (`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`,`uuid`) values ('38221','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10474','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','02bd9f30327d4061809dc2a6ec76d152');
INSERT INTO `items` (`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`,`uuid`) values ('38222','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10474','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d4b928ebdc964a86a6e10b054d73bf1b');
INSERT INTO `items` (`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`,`uuid`) values ('38223','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10474','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','65a5879884a944e9925c54f312c61dc5');
INSERT INTO `items` (`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`,`uuid`) values ('38224','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10474','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0807ecb116b24ff09018962be0d0e457');
INSERT INTO `items` (`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`,`uuid`) values ('38225','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10474','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','27e9f662777645aa902981947c954800');
INSERT INTO `items` (`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`,`uuid`) values ('38226','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10474','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','679353503cb74edc85886f48b34d1f7d');
INSERT INTO `items` (`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`,`uuid`) values ('38227','15','','10474','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b069c0bfdd034fa39baf37234ca93052');
INSERT INTO `items` (`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`,`uuid`) values ('38228','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10474','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f2329eab56e1412b89b33f7e4a39fe29');
INSERT INTO `items` (`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`,`uuid`) values ('38229','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10474','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ffd4528f23d14c55ad0cc37e96c0037d');
INSERT INTO `items` (`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`,`uuid`) values ('38251','20','1.3.6.1.4.1.14988.1.1.7.4.0','10475','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1b876d8c8ea3422a82e4b571853bee64');
INSERT INTO `items` (`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`,`uuid`) values ('38252','20','1.3.6.1.2.1.1.1.0','10475','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ecb890a4585f47989973617ca4fcce42');
INSERT INTO `items` (`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`,`uuid`) values ('38253','20','1.3.6.1.4.1.14988.1.1.7.3.0','10475','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c283b3b41d074d9596145d97f33d132b');
INSERT INTO `items` (`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`,`uuid`) values ('38254','20','1.3.6.1.4.1.14988.1.1.4.4.0','10475','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f2e20d27ca50462c88220e91f24b11c8');
INSERT INTO `items` (`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`,`uuid`) values ('38255','20','1.3.6.1.2.1.25.2.3.1.5.65536','10475','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9c917c649b6e4a849283c5cd8c9f3c93');
INSERT INTO `items` (`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`,`uuid`) values ('38256','20','1.3.6.1.2.1.25.2.3.1.6.65536','10475','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','357a2467154c4dd283f76b9cdbdff62e');
INSERT INTO `items` (`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`,`uuid`) values ('38257','15','','10475','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e5e85e7c2e0440cb90dcff96deffd559');
INSERT INTO `items` (`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`,`uuid`) values ('38258','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10475','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','06aae70f34df4409af34ca144482a0eb');
INSERT INTO `items` (`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`,`uuid`) values ('38259','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10475','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b3f51cd4147748e197e79c4497a26d3b');
INSERT INTO `items` (`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`,`uuid`) values ('38260','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10475','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3d3d5ab7c4d54019bdf8030ed47bad6a');
INSERT INTO `items` (`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`,`uuid`) values ('38261','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10475','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b50ab71d8aea456cb6f9c9248d4f7dbf');
INSERT INTO `items` (`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`,`uuid`) values ('38262','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10475','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8a86e70394b14aca90cbd379f6aba7a3');
INSERT INTO `items` (`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`,`uuid`) values ('38263','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10475','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2ea30a7ef6064f93967dc2c6e33eeb3a');
INSERT INTO `items` (`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`,`uuid`) values ('38264','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10475','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','840e6b4e7d664308b2ce4912effc36f7');
INSERT INTO `items` (`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`,`uuid`) values ('38265','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10475','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','400249b05da24140970579ae8d488406');
INSERT INTO `items` (`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`,`uuid`) values ('38266','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10475','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ef785b02dd6742b797ec65468c385499');
INSERT INTO `items` (`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`,`uuid`) values ('38267','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10475','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4b18f19aca9e44d6bad22909cb335657');
INSERT INTO `items` (`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`,`uuid`) values ('38268','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10475','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5630a05024904a749c7b01d6ae94d783');
INSERT INTO `items` (`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`,`uuid`) values ('38269','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10475','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4c8305bf9bdf40a8bade711fe408f825');
INSERT INTO `items` (`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`,`uuid`) values ('38270','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10475','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bdca12c838c045d487053f390a6d8722');
INSERT INTO `items` (`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`,`uuid`) values ('38271','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10475','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9d3604bde08943debef2b5e7c794c902');
INSERT INTO `items` (`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`,`uuid`) values ('38272','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10475','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e600d097e8b42c283fac75c41b4f032');
INSERT INTO `items` (`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`,`uuid`) values ('38273','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10475','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1ba331166f2443f1940863a41904f241');
INSERT INTO `items` (`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`,`uuid`) values ('38274','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10475','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c5dd9be7abc0465c8fbacf67f1ad5267');
INSERT INTO `items` (`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`,`uuid`) values ('38275','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10475','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','02aa0fbddbd34a9db73896ea41e35045');
INSERT INTO `items` (`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`,`uuid`) values ('38276','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10475','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a3e0dbe67f74cad870becbb1363a577');
INSERT INTO `items` (`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`,`uuid`) values ('38277','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10475','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','89bafc75794a491f87f97f7eb5a5c499');
INSERT INTO `items` (`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`,`uuid`) values ('38278','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10475','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ab55cb0548f41c0ad2a98bd409be417');
INSERT INTO `items` (`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`,`uuid`) values ('38279','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10475','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f95630ccf4364ac995854d22918a0dbf');
INSERT INTO `items` (`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`,`uuid`) values ('38280','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10475','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5f9ad684c36e4050beb3e6fd5851ec30');
INSERT INTO `items` (`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`,`uuid`) values ('38281','15','','10475','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e2ce3e31898447259ad7631d70f8f192');
INSERT INTO `items` (`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`,`uuid`) values ('38282','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10475','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fec4bc35fb504363b8dac0473735b1d9');
INSERT INTO `items` (`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`,`uuid`) values ('38283','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10475','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d4cc931928874bed96935faa743aaff2');
INSERT INTO `items` (`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`,`uuid`) values ('38305','20','1.3.6.1.4.1.14988.1.1.7.4.0','10476','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e24fe19f052f4901aeb9feab8199e461');
INSERT INTO `items` (`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`,`uuid`) values ('38306','20','1.3.6.1.2.1.1.1.0','10476','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f054bfb710c14307ade4081fb441e840');
INSERT INTO `items` (`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`,`uuid`) values ('38307','20','1.3.6.1.4.1.14988.1.1.7.3.0','10476','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','941a740a1dcc40cf88dd56039f26cf92');
INSERT INTO `items` (`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`,`uuid`) values ('38308','20','1.3.6.1.4.1.14988.1.1.4.4.0','10476','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','73fd8a7f00b2442c8d5bfab913d8eff9');
INSERT INTO `items` (`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`,`uuid`) values ('38309','20','1.3.6.1.2.1.25.2.3.1.5.65536','10476','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','011ea07e21a24cd1a4b42149ffe128db');
INSERT INTO `items` (`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`,`uuid`) values ('38310','20','1.3.6.1.2.1.25.2.3.1.6.65536','10476','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','902a71cc5c094a62a2a7f735d07643cf');
INSERT INTO `items` (`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`,`uuid`) values ('38311','15','','10476','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ae4d4e6fe0d4bf290f96e1d430f2655');
INSERT INTO `items` (`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`,`uuid`) values ('38312','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10476','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','506fab7cb3c045f890437a7e959f2171');
INSERT INTO `items` (`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`,`uuid`) values ('38313','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10476','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ddf965753be54765afd2ce23a0895ba7');
INSERT INTO `items` (`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`,`uuid`) values ('38314','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10476','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa5a9445830441ee9795763529df49ae');
INSERT INTO `items` (`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`,`uuid`) values ('38315','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10476','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','714fc311cc2a46659cb42859cb196902');
INSERT INTO `items` (`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`,`uuid`) values ('38316','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10476','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e35084133a5e4693aea5f84b96a6480a');
INSERT INTO `items` (`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`,`uuid`) values ('38317','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10476','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1512667e82b743f09392103d73374861');
INSERT INTO `items` (`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`,`uuid`) values ('38318','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10476','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5222de6258624467a0b0245312047307');
INSERT INTO `items` (`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`,`uuid`) values ('38319','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10476','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f5b155d37a2148e694ab5815b3738894');
INSERT INTO `items` (`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`,`uuid`) values ('38320','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10476','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5235b45eb9be42748cd9740626734961');
INSERT INTO `items` (`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`,`uuid`) values ('38321','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10476','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','454aab3736a24babaa379f7526a41e5d');
INSERT INTO `items` (`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`,`uuid`) values ('38322','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10476','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','69c1e3a5f4694ee59207ea3c56d3f643');
INSERT INTO `items` (`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`,`uuid`) values ('38323','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10476','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bfceb2b2627a467ba9a3916b3c34d27f');
INSERT INTO `items` (`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`,`uuid`) values ('38324','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10476','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7284e5a86c6e43c485e8c7b9ec633cad');
INSERT INTO `items` (`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`,`uuid`) values ('38325','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10476','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8309561fc4f14ccdb69da3728c4fb0eb');
INSERT INTO `items` (`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`,`uuid`) values ('38326','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10476','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','56f594fa8595463886e857977c172eb3');
INSERT INTO `items` (`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`,`uuid`) values ('38327','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10476','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','48bba64f95304974819ef7a15bbbce85');
INSERT INTO `items` (`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`,`uuid`) values ('38328','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10476','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','401390a283de4ec29bfb1c0c99820a7e');
INSERT INTO `items` (`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`,`uuid`) values ('38329','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10476','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b67454e3882d4c16bb51094017775630');
INSERT INTO `items` (`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`,`uuid`) values ('38330','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10476','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','db3274433926415b97f8e34a9f04a9ac');
INSERT INTO `items` (`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`,`uuid`) values ('38331','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10476','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','92e6fbfd1cf843fbb26a62aed1360214');
INSERT INTO `items` (`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`,`uuid`) values ('38332','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10476','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c1d0e3150e5a4ad39f39cebe0a381aaa');
INSERT INTO `items` (`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`,`uuid`) values ('38333','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10476','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c176e70d536e42c9aa62f4952e166c9b');
INSERT INTO `items` (`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`,`uuid`) values ('38334','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10476','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','df1e4f1603d14e07b5308d5fd5eb55b0');
INSERT INTO `items` (`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`,`uuid`) values ('38335','15','','10476','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b2f996b4a5e842d3b3b3ec3813faf82f');
INSERT INTO `items` (`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`,`uuid`) values ('38336','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10476','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8303806786424c7499d013d4a55d4b6a');
INSERT INTO `items` (`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`,`uuid`) values ('38337','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10476','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f9361907c6b944a0b282fc8ecabe050f');
INSERT INTO `items` (`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`,`uuid`) values ('38359','20','1.3.6.1.4.1.14988.1.1.7.4.0','10477','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','397dce267b79414fb563dc2f184d2930');
INSERT INTO `items` (`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`,`uuid`) values ('38360','20','1.3.6.1.2.1.1.1.0','10477','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc3d781f3ba64faa9914d34a4d450fd6');
INSERT INTO `items` (`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`,`uuid`) values ('38361','20','1.3.6.1.4.1.14988.1.1.7.3.0','10477','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d611ea9fbcff489e9175dcb6f0ffe2d1');
INSERT INTO `items` (`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`,`uuid`) values ('38362','20','1.3.6.1.4.1.14988.1.1.4.4.0','10477','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4257226c6b90413baaa7a2b8beeb3c01');
INSERT INTO `items` (`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`,`uuid`) values ('38363','20','1.3.6.1.2.1.25.2.3.1.5.65536','10477','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b319b01c532f453aa0b39c6cac9c06e8');
INSERT INTO `items` (`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`,`uuid`) values ('38364','20','1.3.6.1.2.1.25.2.3.1.6.65536','10477','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7522d72e76254a60b59fc2c67590701a');
INSERT INTO `items` (`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`,`uuid`) values ('38365','15','','10477','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4b9d180956ca4f17abc9c232856f1a78');
INSERT INTO `items` (`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`,`uuid`) values ('38366','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10477','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','95a34c80dcd848e3b5ccad0f57a06532');
INSERT INTO `items` (`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`,`uuid`) values ('38367','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10477','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84b79932cea04e7fa9dc64fe119a2825');
INSERT INTO `items` (`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`,`uuid`) values ('38368','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10477','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2ed1bdac264e4d05b1873e69c17cc288');
INSERT INTO `items` (`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`,`uuid`) values ('38369','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10477','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1250fe89b2b645adb6d8a444e286c34a');
INSERT INTO `items` (`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`,`uuid`) values ('38370','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10477','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e8d513955f9b4f819c408cf3aac35ec1');
INSERT INTO `items` (`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`,`uuid`) values ('38371','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10477','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','829a233a44aa4cd2880732ad863d2d27');
INSERT INTO `items` (`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`,`uuid`) values ('38372','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10477','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0cad2cd6715f44d6a912a63cdc15926b');
INSERT INTO `items` (`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`,`uuid`) values ('38373','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10477','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a1d0f17280d543bb825830f808dad88a');
INSERT INTO `items` (`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`,`uuid`) values ('38374','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10477','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','13f73255283f4f6b923edae51f98f5f6');
INSERT INTO `items` (`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`,`uuid`) values ('38375','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10477','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1d1fbc3838c341cc9b874721a824deef');
INSERT INTO `items` (`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`,`uuid`) values ('38376','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10477','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','65bd1f9096914fa5952a842f869376e3');
INSERT INTO `items` (`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`,`uuid`) values ('38377','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10477','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da6ebd895cb7465d964de43bb1f97125');
INSERT INTO `items` (`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`,`uuid`) values ('38378','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10477','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','817d4b9c195c4b74a986dee3f509d56f');
INSERT INTO `items` (`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`,`uuid`) values ('38379','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10477','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3031a59f08914941ae9f7fc8f494b132');
INSERT INTO `items` (`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`,`uuid`) values ('38380','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10477','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','22665dbacc9d48d985d7ca4e463319b5');
INSERT INTO `items` (`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`,`uuid`) values ('38381','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10477','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','18664eb3c8dd4e768f9de382ee8bba85');
INSERT INTO `items` (`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`,`uuid`) values ('38382','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10477','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a6badb125d8d412a8d9142882ab4b956');
INSERT INTO `items` (`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`,`uuid`) values ('38383','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10477','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bb2ad51473f04db188bd4e335591b94b');
INSERT INTO `items` (`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`,`uuid`) values ('38384','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10477','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8afb3efbe69e4541bc74760ab4ba3130');
INSERT INTO `items` (`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`,`uuid`) values ('38385','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10477','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b2a8832875e14a0f9639de640f260e92');
INSERT INTO `items` (`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`,`uuid`) values ('38386','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10477','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e4ba0da31a24287b12f07940f449131');
INSERT INTO `items` (`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`,`uuid`) values ('38387','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10477','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','30511ea997e740d2a6313005e7f56a71');
INSERT INTO `items` (`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`,`uuid`) values ('38388','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10477','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','01e691a3d2fb401484af4e768cab09b7');
INSERT INTO `items` (`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`,`uuid`) values ('38389','15','','10477','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','00bc5ff9329240978654621ee37af739');
INSERT INTO `items` (`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`,`uuid`) values ('38390','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10477','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','435c8ca87deb4fbfad0df451c9b3dc57');
INSERT INTO `items` (`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`,`uuid`) values ('38391','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10477','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c7b4cf01d2d4b8f9cb5022a54b4593d');
INSERT INTO `items` (`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`,`uuid`) values ('38413','20','1.3.6.1.4.1.14988.1.1.7.4.0','10478','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac47dac361224d288e4455e9a689d690');
INSERT INTO `items` (`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`,`uuid`) values ('38414','20','1.3.6.1.2.1.1.1.0','10478','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','01ef36b50b394e4bb9670abd48a05369');
INSERT INTO `items` (`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`,`uuid`) values ('38415','20','1.3.6.1.4.1.14988.1.1.7.3.0','10478','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2321d2d106f6432a9de5b5a633315e5e');
INSERT INTO `items` (`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`,`uuid`) values ('38416','20','1.3.6.1.4.1.14988.1.1.4.4.0','10478','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ae9626b78f3e4e89842fb82592e2f520');
INSERT INTO `items` (`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`,`uuid`) values ('38417','20','1.3.6.1.2.1.25.2.3.1.5.65536','10478','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4972cad8ac8f44d8a3d01278d602b21d');
INSERT INTO `items` (`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`,`uuid`) values ('38418','20','1.3.6.1.2.1.25.2.3.1.6.65536','10478','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a66e0f5458094b13bbdb7c9193b334e5');
INSERT INTO `items` (`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`,`uuid`) values ('38419','15','','10478','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c095d3737054b68a32f491e34f4ab32');
INSERT INTO `items` (`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`,`uuid`) values ('38420','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10478','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a67f85c892114c60bf0daac055b2a8b4');
INSERT INTO `items` (`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`,`uuid`) values ('38421','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10478','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8fa3b36e1d7943c7b1d7b9a75c65d087');
INSERT INTO `items` (`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`,`uuid`) values ('38422','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10478','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','be5b2f204fa545d4b581201dfbf57335');
INSERT INTO `items` (`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`,`uuid`) values ('38423','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10478','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','92d612ae6ba74d01a369713b27732da4');
INSERT INTO `items` (`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`,`uuid`) values ('38424','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10478','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','479f5860d57c4a89869b03c98cb17e0d');
INSERT INTO `items` (`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`,`uuid`) values ('38425','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10478','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6177e332ddf1464a843560c8aaef03f8');
INSERT INTO `items` (`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`,`uuid`) values ('38426','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10478','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9d5a922b41df4c9ba2e6c806aaa86ea5');
INSERT INTO `items` (`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`,`uuid`) values ('38427','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10478','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4869b0ebcc9a4b7aa230dea7fecdc772');
INSERT INTO `items` (`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`,`uuid`) values ('38428','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10478','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','39a398bdbb564bb7b9b120b36e01115c');
INSERT INTO `items` (`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`,`uuid`) values ('38429','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10478','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a3c4ebcac6134235a5f51ad0a825acae');
INSERT INTO `items` (`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`,`uuid`) values ('38430','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10478','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2461a98399364aabb2774f0330a09f38');
INSERT INTO `items` (`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`,`uuid`) values ('38431','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10478','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','932b36d99dea4cc6b41daef5b452adb2');
INSERT INTO `items` (`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`,`uuid`) values ('38432','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10478','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e2d2db403dce4b8e980dce441399c31c');
INSERT INTO `items` (`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`,`uuid`) values ('38433','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10478','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','18d7874870c74f9e93bafba284a038d2');
INSERT INTO `items` (`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`,`uuid`) values ('38434','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10478','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd884aa372ad4c29bc0431068a6d665b');
INSERT INTO `items` (`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`,`uuid`) values ('38435','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10478','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','57f41aedeaf947c7b2b99e11a8f5f6a9');
INSERT INTO `items` (`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`,`uuid`) values ('38436','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10478','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','46026e2ec35649f181707026f49055a3');
INSERT INTO `items` (`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`,`uuid`) values ('38437','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10478','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','885b452398fd4131a80ae84b484018ac');
INSERT INTO `items` (`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`,`uuid`) values ('38438','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10478','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b685866be093464f96fc8731e6cb24a6');
INSERT INTO `items` (`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`,`uuid`) values ('38439','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10478','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','39cd37fd8f5b49d0ada87b665a3af974');
INSERT INTO `items` (`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`,`uuid`) values ('38440','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10478','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4249cd712d244445a4d69affa771b387');
INSERT INTO `items` (`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`,`uuid`) values ('38441','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10478','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','78346d4d85e045bdb151fb51108d81ed');
INSERT INTO `items` (`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`,`uuid`) values ('38442','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10478','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f836d1e069cc40fa9e31fd12456a9155');
INSERT INTO `items` (`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`,`uuid`) values ('38443','15','','10478','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4844d14f11a24be48f31ae5084e803d9');
INSERT INTO `items` (`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`,`uuid`) values ('38444','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10478','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0496f8a356b14caa8a06ec4be8b04e65');
INSERT INTO `items` (`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`,`uuid`) values ('38445','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10478','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7805deb172f0405ca211e47bb49eb557');
INSERT INTO `items` (`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`,`uuid`) values ('38467','20','1.3.6.1.4.1.14988.1.1.7.4.0','10479','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c7582351ce394433b50aef17cc01b5b2');
INSERT INTO `items` (`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`,`uuid`) values ('38468','20','1.3.6.1.2.1.1.1.0','10479','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9e5fac593cf94a9d973ba8b604e1dfd2');
INSERT INTO `items` (`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`,`uuid`) values ('38469','20','1.3.6.1.4.1.14988.1.1.7.3.0','10479','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f5531013912c4ed68e6b0b4d89165803');
INSERT INTO `items` (`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`,`uuid`) values ('38470','20','1.3.6.1.4.1.14988.1.1.4.4.0','10479','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','86323c3d935642f980f158e5868f35e0');
INSERT INTO `items` (`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`,`uuid`) values ('38471','20','1.3.6.1.2.1.25.2.3.1.5.65536','10479','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3ab4fc5c9fba4e098977500051a8ac98');
INSERT INTO `items` (`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`,`uuid`) values ('38472','20','1.3.6.1.2.1.25.2.3.1.6.65536','10479','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','df10ebd3cfa44fe6838889ff81e8cab0');
INSERT INTO `items` (`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`,`uuid`) values ('38473','15','','10479','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','132ff52c4648491c9743bcf11b680236');
INSERT INTO `items` (`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`,`uuid`) values ('38474','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10479','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fc9d85ea9e364ae58f4bd34dc702bd29');
INSERT INTO `items` (`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`,`uuid`) values ('38475','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10479','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b2e8ea00836544f78a33586ba8b92b45');
INSERT INTO `items` (`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`,`uuid`) values ('38476','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10479','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4b3d7a1cf06e4fa184403f3796c3ed13');
INSERT INTO `items` (`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`,`uuid`) values ('38477','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10479','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7040fb77df5b4300bc9084b76b901940');
INSERT INTO `items` (`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`,`uuid`) values ('38478','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10479','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','740cd4e70898478caef811525702e0eb');
INSERT INTO `items` (`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`,`uuid`) values ('38479','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10479','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6059d2ecbecd480b85d1c4e94eb65059');
INSERT INTO `items` (`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`,`uuid`) values ('38480','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10479','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9eb6e527f56c445f8ca77717742472a7');
INSERT INTO `items` (`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`,`uuid`) values ('38481','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10479','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','afc355f3e1ed467ea0103f8bbcd426e0');
INSERT INTO `items` (`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`,`uuid`) values ('38482','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10479','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f77d01ca88eb4851951df2a481208bca');
INSERT INTO `items` (`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`,`uuid`) values ('38483','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10479','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0cb6b32ae5a84259ab847d0cc802f16c');
INSERT INTO `items` (`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`,`uuid`) values ('38484','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10479','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','12c180e262234293a6f1546424797d21');
INSERT INTO `items` (`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`,`uuid`) values ('38485','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10479','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cfb4d7bc97054f2fa76d9b945f65f151');
INSERT INTO `items` (`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`,`uuid`) values ('38486','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10479','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8d134db6ad6342308926fa1de66a1f42');
INSERT INTO `items` (`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`,`uuid`) values ('38487','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10479','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','de1b466fd287481cacebcbea3339d984');
INSERT INTO `items` (`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`,`uuid`) values ('38488','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10479','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da1b743f2888401394de67c74e54aa72');
INSERT INTO `items` (`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`,`uuid`) values ('38489','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10479','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9132dd54ff2f44cc8ddcb152c892ee06');
INSERT INTO `items` (`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`,`uuid`) values ('38490','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10479','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','867d40ce9bf44892b0f70f8465f727b0');
INSERT INTO `items` (`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`,`uuid`) values ('38491','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10479','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f16dcddcb1344f3db732c7e794bd5bad');
INSERT INTO `items` (`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`,`uuid`) values ('38492','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10479','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cfe19d4825d14a91975023848a7464d8');
INSERT INTO `items` (`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`,`uuid`) values ('38493','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10479','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b9d03050f7234ec48d380fc686ea35c7');
INSERT INTO `items` (`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`,`uuid`) values ('38494','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10479','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','71332c155c18442ab89d0f3bf49a11e3');
INSERT INTO `items` (`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`,`uuid`) values ('38495','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10479','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','706ba145d130418995b4e61b19df3a6d');
INSERT INTO `items` (`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`,`uuid`) values ('38496','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10479','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a852223b28574abc9d76dc0053699209');
INSERT INTO `items` (`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`,`uuid`) values ('38497','15','','10479','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c5b9a5819b1f4c34acb71d9cc12b7ef1');
INSERT INTO `items` (`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`,`uuid`) values ('38498','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10479','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','acd377f6db0f4a7eab0c1289309b69ad');
INSERT INTO `items` (`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`,`uuid`) values ('38499','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10479','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7a66d6925e3d48c6aae02daaf1051860');
INSERT INTO `items` (`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`,`uuid`) values ('38521','20','1.3.6.1.4.1.14988.1.1.7.4.0','10480','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','079bddb94e6d427b9b4232ba4da15b53');
INSERT INTO `items` (`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`,`uuid`) values ('38522','20','1.3.6.1.2.1.1.1.0','10480','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c787c308e66348c2a2041c612ef70513');
INSERT INTO `items` (`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`,`uuid`) values ('38523','20','1.3.6.1.4.1.14988.1.1.7.3.0','10480','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','87b44381d4154c34bb1de1d8e56bc0f9');
INSERT INTO `items` (`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`,`uuid`) values ('38524','20','1.3.6.1.4.1.14988.1.1.4.4.0','10480','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3a8bf0dd575f4718a87c007408f98a80');
INSERT INTO `items` (`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`,`uuid`) values ('38525','20','1.3.6.1.2.1.25.2.3.1.5.65536','10480','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f5291559b3da497ba0cb9d7d36f531aa');
INSERT INTO `items` (`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`,`uuid`) values ('38526','20','1.3.6.1.2.1.25.2.3.1.6.65536','10480','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','40578c7f19bd4d2b9045abb2ccdd247f');
INSERT INTO `items` (`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`,`uuid`) values ('38527','15','','10480','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f076a1ed65f340579771f6f9c6f5d724');
INSERT INTO `items` (`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`,`uuid`) values ('38528','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10480','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','169cb8a2290645ef8b19b1fb559471cd');
INSERT INTO `items` (`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`,`uuid`) values ('38529','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10480','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ba436d334f7648db8a7b792418232fde');
INSERT INTO `items` (`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`,`uuid`) values ('38530','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10480','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd5ed76fb50d44e0925cf59b9f7b33b2');
INSERT INTO `items` (`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`,`uuid`) values ('38531','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10480','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7ff8e43421a3408d99e3cf038cd1d32c');
INSERT INTO `items` (`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`,`uuid`) values ('38532','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10480','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8dccf29262d64d02aa9ec070a113e9c5');
INSERT INTO `items` (`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`,`uuid`) values ('38533','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10480','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','03b7a6369c624c169416d85d6bdd8bd3');
INSERT INTO `items` (`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`,`uuid`) values ('38534','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10480','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4f9aab06d404429095f58719a45169df');
INSERT INTO `items` (`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`,`uuid`) values ('38535','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10480','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9056ec8b1cf84e4c972b77897908e8af');
INSERT INTO `items` (`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`,`uuid`) values ('38536','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10480','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8c341838dcb7463caa565c5b50b131bd');
INSERT INTO `items` (`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`,`uuid`) values ('38537','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10480','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3bcaff90977a4c68812498d86efdb0c4');
INSERT INTO `items` (`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`,`uuid`) values ('38538','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10480','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','74dbe99ea3f84e25b5c9b675615d6234');
INSERT INTO `items` (`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`,`uuid`) values ('38539','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10480','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6044310bd6814fcea1bfc496fdb4e1cd');
INSERT INTO `items` (`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`,`uuid`) values ('38540','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10480','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a34aaedb745d46c3b60a53ba3f4619fd');
INSERT INTO `items` (`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`,`uuid`) values ('38541','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10480','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','777ea9e79ab24c9b9cc524317c5d7a3e');
INSERT INTO `items` (`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`,`uuid`) values ('38542','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10480','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7da2dfc825894d23830e461da773d2a8');
INSERT INTO `items` (`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`,`uuid`) values ('38543','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10480','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','02f7b1b3fb6f4a66bc4b02dedc2e08dd');
INSERT INTO `items` (`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`,`uuid`) values ('38544','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10480','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','59a008e602744b87a435d43ffcbd7270');
INSERT INTO `items` (`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`,`uuid`) values ('38545','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10480','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','41d0a02df0d6474895eb69c559da7d86');
INSERT INTO `items` (`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`,`uuid`) values ('38546','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10480','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','479ac2c04b3144ababdeddb75a0437f8');
INSERT INTO `items` (`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`,`uuid`) values ('38547','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10480','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e7fabf081a154b6bb345bdf08bb655ca');
INSERT INTO `items` (`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`,`uuid`) values ('38548','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10480','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','54de59401d8b40f3b6446780d13a89f8');
INSERT INTO `items` (`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`,`uuid`) values ('38549','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10480','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d32f654355f64421aeae49b6fbedd976');
INSERT INTO `items` (`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`,`uuid`) values ('38550','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10480','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b5341b9ed36045ce951f455232b74983');
INSERT INTO `items` (`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`,`uuid`) values ('38551','15','','10480','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','42dca57a2239444484284cb7cd999af2');
INSERT INTO `items` (`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`,`uuid`) values ('38552','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10480','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1065889d15ad41cea31648c789a72035');
INSERT INTO `items` (`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`,`uuid`) values ('38553','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10480','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8eb65066ede74a32968a87485801775a');
INSERT INTO `items` (`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`,`uuid`) values ('38575','20','1.3.6.1.4.1.14988.1.1.7.4.0','10481','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0647d4e175d8467ca7f7579f92c56b82');
INSERT INTO `items` (`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`,`uuid`) values ('38576','20','1.3.6.1.2.1.1.1.0','10481','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1237d193c49a4110bce86971e3c142f1');
INSERT INTO `items` (`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`,`uuid`) values ('38577','20','1.3.6.1.4.1.14988.1.1.7.3.0','10481','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2e56609d113d4e7ab304ac20c4debb97');
INSERT INTO `items` (`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`,`uuid`) values ('38578','20','1.3.6.1.4.1.14988.1.1.4.4.0','10481','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3013805399d449c9ac4469b1310504db');
INSERT INTO `items` (`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`,`uuid`) values ('38579','20','1.3.6.1.2.1.25.2.3.1.5.65536','10481','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2d7199ec103340b280154f08de8699f6');
INSERT INTO `items` (`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`,`uuid`) values ('38580','20','1.3.6.1.2.1.25.2.3.1.6.65536','10481','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','54c72d743ada42dcaa0c39e9493517f8');
INSERT INTO `items` (`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`,`uuid`) values ('38581','15','','10481','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9aa6bb105738415e8971772cdb9273cc');
INSERT INTO `items` (`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`,`uuid`) values ('38582','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10481','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','25d6d157fcd943fb9f0c56077cd77c9b');
INSERT INTO `items` (`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`,`uuid`) values ('38583','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10481','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','19ae76cf5af647a4ab5e3dd32f9e4509');
INSERT INTO `items` (`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`,`uuid`) values ('38584','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10481','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','46b03489e77c4100b49aa05c9e860879');
INSERT INTO `items` (`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`,`uuid`) values ('38585','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10481','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','11214845bb78433d85ffbc220a53384a');
INSERT INTO `items` (`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`,`uuid`) values ('38586','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10481','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','132311b3514a496b9668605a9b37e22a');
INSERT INTO `items` (`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`,`uuid`) values ('38587','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10481','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','54e807c66d9e42089ace3bae82bce367');
INSERT INTO `items` (`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`,`uuid`) values ('38588','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10481','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','708837461f69453cac8eeddac2ed95ff');
INSERT INTO `items` (`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`,`uuid`) values ('38589','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10481','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bca98eb13b794c299f72820136883671');
INSERT INTO `items` (`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`,`uuid`) values ('38590','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10481','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b91e83c420b14d32a65bb19bca8ec5fe');
INSERT INTO `items` (`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`,`uuid`) values ('38591','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10481','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','02b57d8b31cf4a618daa8021b8c926b6');
INSERT INTO `items` (`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`,`uuid`) values ('38592','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10481','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2ff135f602264e0199f6cc0e622a9cf3');
INSERT INTO `items` (`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`,`uuid`) values ('38593','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10481','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','668dc62196eb4aae90a39ca3dc039b07');
INSERT INTO `items` (`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`,`uuid`) values ('38594','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10481','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2d38d81dfcf24505962a0f6b03c7734d');
INSERT INTO `items` (`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`,`uuid`) values ('38595','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10481','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','191ddb89d1bb47a3bed0dc8b22eb2234');
INSERT INTO `items` (`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`,`uuid`) values ('38596','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10481','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7caf1b16bfb34b83ad1883f5270bea00');
INSERT INTO `items` (`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`,`uuid`) values ('38597','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10481','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1bd56573eac644f7b76ec3dd1099e6ea');
INSERT INTO `items` (`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`,`uuid`) values ('38598','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10481','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','729b8bf1472c4ddda72ccb601740ccbb');
INSERT INTO `items` (`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`,`uuid`) values ('38599','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10481','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fcd60ae4386a4eb2bac72c7544d915df');
INSERT INTO `items` (`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`,`uuid`) values ('38600','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10481','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9089bdc9a64a41f9b4b69b241ae27b5b');
INSERT INTO `items` (`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`,`uuid`) values ('38601','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10481','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','de6f8a579d4e4ccd858e5f017c787653');
INSERT INTO `items` (`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`,`uuid`) values ('38602','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10481','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','790cae75cd274f279c221854015e2ba0');
INSERT INTO `items` (`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`,`uuid`) values ('38603','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10481','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab549ccfcdb7413a913ed6fe33430cc8');
INSERT INTO `items` (`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`,`uuid`) values ('38604','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10481','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e773a8468b604062b7838b19039a21c4');
INSERT INTO `items` (`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`,`uuid`) values ('38605','15','','10481','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0ec6cd6ed5d142d6a17a3637f2884a0f');
INSERT INTO `items` (`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`,`uuid`) values ('38606','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10481','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d581f883c370430ba37c89a43a7ffab6');
INSERT INTO `items` (`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`,`uuid`) values ('38607','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10481','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e36052b8960b4107a1222cda719dfb35');
INSERT INTO `items` (`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`,`uuid`) values ('38629','20','1.3.6.1.4.1.14988.1.1.7.4.0','10482','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f44c0f3952034baab2a7051ef835ad6a');
INSERT INTO `items` (`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`,`uuid`) values ('38630','20','1.3.6.1.2.1.1.1.0','10482','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d1826b39b0004104bb5e81b3c6a5e944');
INSERT INTO `items` (`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`,`uuid`) values ('38631','20','1.3.6.1.4.1.14988.1.1.7.3.0','10482','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ddd2fc89869f4feca6141ed16d6cfe1c');
INSERT INTO `items` (`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`,`uuid`) values ('38632','20','1.3.6.1.4.1.14988.1.1.4.4.0','10482','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2e106a43efd24438adb62bec628e2176');
INSERT INTO `items` (`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`,`uuid`) values ('38633','20','1.3.6.1.2.1.25.2.3.1.5.65536','10482','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3067b57e3dd841959b11a972903b8f35');
INSERT INTO `items` (`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`,`uuid`) values ('38634','20','1.3.6.1.2.1.25.2.3.1.6.65536','10482','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','981a289b960f4df19cc0e2728618bb3e');
INSERT INTO `items` (`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`,`uuid`) values ('38635','15','','10482','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','477247613d5546bc95b4d2b7e1695743');
INSERT INTO `items` (`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`,`uuid`) values ('38636','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10482','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c3b780f997184c4582d1f78ab246ee5b');
INSERT INTO `items` (`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`,`uuid`) values ('38637','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10482','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2376b53a6f4045fcacbd6d6c0d78d0bc');
INSERT INTO `items` (`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`,`uuid`) values ('38638','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10482','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a221763ac5874a0ab8b9c76aa10809e6');
INSERT INTO `items` (`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`,`uuid`) values ('38639','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10482','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4fede59bf19241c6a0b730ca22a41a95');
INSERT INTO `items` (`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`,`uuid`) values ('38640','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10482','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ce069decd92a49b1b9e119214db8b454');
INSERT INTO `items` (`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`,`uuid`) values ('38641','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10482','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','53309eb8dfcb4772a0adb0c81cb4f155');
INSERT INTO `items` (`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`,`uuid`) values ('38642','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10482','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','008a264a38134966870cf3834e5843c0');
INSERT INTO `items` (`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`,`uuid`) values ('38643','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10482','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f97d176c12434b40acf7c78ba16281c3');
INSERT INTO `items` (`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`,`uuid`) values ('38644','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10482','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c602a12c83ca48ff84c875d818528a87');
INSERT INTO `items` (`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`,`uuid`) values ('38645','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10482','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','02fed23773644b0ea25f5363cf732b45');
INSERT INTO `items` (`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`,`uuid`) values ('38646','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10482','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e29ee4177ba844ad81f1a806c6fe6249');
INSERT INTO `items` (`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`,`uuid`) values ('38647','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10482','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c091457e6f3c40afa1ccc9bf925d3051');
INSERT INTO `items` (`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`,`uuid`) values ('38648','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10482','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9e7ace2975934b8ba3e30af079be073d');
INSERT INTO `items` (`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`,`uuid`) values ('38649','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10482','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6b58214098e54179b47c797dc6ef24d9');
INSERT INTO `items` (`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`,`uuid`) values ('38650','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10482','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d11505d36324428ab52aaeebdd745e3b');
INSERT INTO `items` (`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`,`uuid`) values ('38651','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10482','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','04eae1230e61488d8dff502aa879182d');
INSERT INTO `items` (`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`,`uuid`) values ('38652','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10482','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4eb4222707b14888b9385a8d39711a52');
INSERT INTO `items` (`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`,`uuid`) values ('38653','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10482','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0cfca6cd2419475d94a3f6ca8dfdfe90');
INSERT INTO `items` (`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`,`uuid`) values ('38654','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10482','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','956eb6d3e03143edb7b1c23e5a081842');
INSERT INTO `items` (`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`,`uuid`) values ('38655','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10482','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','37fc95a13ea043b7ada13a147e2ab280');
INSERT INTO `items` (`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`,`uuid`) values ('38656','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10482','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c0821c1de9d43e58780de3729fb27c4');
INSERT INTO `items` (`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`,`uuid`) values ('38657','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10482','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6fd532b46b944a7d8b8f188f9d0b11d1');
INSERT INTO `items` (`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`,`uuid`) values ('38658','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10482','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','38a6aba4e8df4833926424670f198be4');
INSERT INTO `items` (`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`,`uuid`) values ('38659','15','','10482','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ec15b56d865b4ce8a2f09a6358c88f84');
INSERT INTO `items` (`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`,`uuid`) values ('38660','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10482','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1107dc2e53fa47d6ab9678e50b824d7f');
INSERT INTO `items` (`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`,`uuid`) values ('38661','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10482','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da751c6f6d0d4c1ea7615f96f0213113');
INSERT INTO `items` (`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`,`uuid`) values ('38683','20','1.3.6.1.4.1.14988.1.1.7.4.0','10483','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fea2d45d484c40d5bbd0a63bbcf32f38');
INSERT INTO `items` (`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`,`uuid`) values ('38684','20','1.3.6.1.2.1.1.1.0','10483','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','21aa5025c29a45d4ac5961d07f03f5ca');
INSERT INTO `items` (`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`,`uuid`) values ('38685','20','1.3.6.1.4.1.14988.1.1.7.3.0','10483','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e2160944535143e5a9768b9dc1041bb9');
INSERT INTO `items` (`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`,`uuid`) values ('38686','20','1.3.6.1.4.1.14988.1.1.4.4.0','10483','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c1b8a435332a4608a833703409c3844e');
INSERT INTO `items` (`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`,`uuid`) values ('38687','20','1.3.6.1.2.1.25.2.3.1.5.65536','10483','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0f96c2050b2d407d9355406ff3ba57da');
INSERT INTO `items` (`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`,`uuid`) values ('38688','20','1.3.6.1.2.1.25.2.3.1.6.65536','10483','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a4ba4c5b3c2e48b08231bd8f1ca9acf1');
INSERT INTO `items` (`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`,`uuid`) values ('38689','15','','10483','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b6a0a9ba8c5454594c7b6dff8b32963');
INSERT INTO `items` (`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`,`uuid`) values ('38690','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10483','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','430a8cab45af4c24b72972d6373fccd9');
INSERT INTO `items` (`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`,`uuid`) values ('38691','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10483','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3bcc104afb9a4ca29c0fe55a88484b08');
INSERT INTO `items` (`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`,`uuid`) values ('38692','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10483','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7add1dd4dfd84661b86fcf3f932e3ffb');
INSERT INTO `items` (`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`,`uuid`) values ('38693','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10483','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fe42e32d477d4718bf37ff36ff630bb7');
INSERT INTO `items` (`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`,`uuid`) values ('38694','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10483','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9dab50003a824e0faddea18cf89e88b2');
INSERT INTO `items` (`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`,`uuid`) values ('38695','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10483','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1d8f0b4f75a044a0a5d8547471514346');
INSERT INTO `items` (`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`,`uuid`) values ('38696','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10483','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8a9272779331436896db3a69fac40bb7');
INSERT INTO `items` (`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`,`uuid`) values ('38697','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10483','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c11b3e4201f24576bd2947f464af430d');
INSERT INTO `items` (`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`,`uuid`) values ('38698','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10483','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f8fe2949e8b247289e731d52c57abf4d');
INSERT INTO `items` (`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`,`uuid`) values ('38699','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10483','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ce006f12a6d342539ee9f2f20ff987aa');
INSERT INTO `items` (`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`,`uuid`) values ('38700','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10483','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a56f2452a3a4404a8fad38827100fce4');
INSERT INTO `items` (`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`,`uuid`) values ('38701','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10483','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4d1753721a72454f8681ca87affad3a9');
INSERT INTO `items` (`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`,`uuid`) values ('38702','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10483','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ea0e06c8297147bc9afb9c878f757efe');
INSERT INTO `items` (`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`,`uuid`) values ('38703','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10483','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6c9e70511a6c400a968eee3119cb32a3');
INSERT INTO `items` (`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`,`uuid`) values ('38704','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10483','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0cd27b4eb0ac4eed88c3804848186016');
INSERT INTO `items` (`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`,`uuid`) values ('38705','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10483','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1d48037aa1f844d49029ed722defe80e');
INSERT INTO `items` (`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`,`uuid`) values ('38706','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10483','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','554c6d88b86641a1a9fc6d1bde08eeb9');
INSERT INTO `items` (`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`,`uuid`) values ('38707','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10483','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','44f03138eed845a693b071a9d7171c68');
INSERT INTO `items` (`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`,`uuid`) values ('38708','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10483','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','41192738c7564ca0ad454ab525046438');
INSERT INTO `items` (`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`,`uuid`) values ('38709','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10483','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ed53c72c98940a79c5eb8c840c884f3');
INSERT INTO `items` (`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`,`uuid`) values ('38710','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10483','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a23cdf72497c47769a089496d4b06773');
INSERT INTO `items` (`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`,`uuid`) values ('38711','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10483','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','94a9518972d041a4b82e9237311c6ff4');
INSERT INTO `items` (`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`,`uuid`) values ('38712','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10483','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c88218013c5242dc934d0d92775f27e3');
INSERT INTO `items` (`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`,`uuid`) values ('38713','15','','10483','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fbca4c6a7a9e4dbbb44319976eaccbbc');
INSERT INTO `items` (`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`,`uuid`) values ('38714','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10483','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b10047762544ca4b56a3fa543257cfd');
INSERT INTO `items` (`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`,`uuid`) values ('38715','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10483','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','149563c5cf7e42a18f3aaed2cc32c6bd');
INSERT INTO `items` (`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`,`uuid`) values ('38737','20','1.3.6.1.4.1.14988.1.1.7.4.0','10484','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3442b390250b480f887e1311b369c54e');
INSERT INTO `items` (`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`,`uuid`) values ('38738','20','1.3.6.1.2.1.1.1.0','10484','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3f580252fdf44bd4a1172a73ea1b681f');
INSERT INTO `items` (`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`,`uuid`) values ('38739','20','1.3.6.1.4.1.14988.1.1.7.3.0','10484','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','737a739207f142e292cbce0d6f7208d5');
INSERT INTO `items` (`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`,`uuid`) values ('38740','20','1.3.6.1.4.1.14988.1.1.4.4.0','10484','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b9fc7b36a3394404be56c55176b20e39');
INSERT INTO `items` (`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`,`uuid`) values ('38741','20','1.3.6.1.2.1.25.2.3.1.5.65536','10484','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','73ce1c102e3a4d4885438c16eff34ddf');
INSERT INTO `items` (`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`,`uuid`) values ('38742','20','1.3.6.1.2.1.25.2.3.1.6.65536','10484','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9e2ee7cca26b49d3990b832eda44ee2a');
INSERT INTO `items` (`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`,`uuid`) values ('38743','15','','10484','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7b1572625e04447eb308be35061921f2');
INSERT INTO `items` (`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`,`uuid`) values ('38744','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10484','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4d7e84f0ed08471d8ec0717c93d410dc');
INSERT INTO `items` (`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`,`uuid`) values ('38745','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10484','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','978810fe8ed54f719c1b3816f539d0c9');
INSERT INTO `items` (`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`,`uuid`) values ('38746','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10484','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7d8c3e389a3d44c1999028b92464a607');
INSERT INTO `items` (`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`,`uuid`) values ('38747','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10484','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','95cfcb66e6fb440d99b960637adfca93');
INSERT INTO `items` (`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`,`uuid`) values ('38748','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10484','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cd991f115dfa4aed82ca363bea78c951');
INSERT INTO `items` (`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`,`uuid`) values ('38749','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10484','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cbd4c9b8a0f64ea394f9d2d542aa25ef');
INSERT INTO `items` (`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`,`uuid`) values ('38750','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10484','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','731d669f787c45609df243f28ba610a3');
INSERT INTO `items` (`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`,`uuid`) values ('38751','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10484','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd42dc92c6b3407a909e979aff0e70a5');
INSERT INTO `items` (`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`,`uuid`) values ('38752','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10484','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fe90df42e8654cbdb521ecec3d428444');
INSERT INTO `items` (`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`,`uuid`) values ('38753','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10484','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5674848e4bc44f81942d8fd5a1d08397');
INSERT INTO `items` (`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`,`uuid`) values ('38754','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10484','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c69a7cf907b940bda9881ffc4a13c6f9');
INSERT INTO `items` (`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`,`uuid`) values ('38755','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10484','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9f0442c4c061485080d0f8ff5f7c831f');
INSERT INTO `items` (`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`,`uuid`) values ('38756','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10484','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7eda5e5f336a4366801c4cf98cf13520');
INSERT INTO `items` (`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`,`uuid`) values ('38757','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10484','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','79d3b5dad8af46c7972b28b208a439f6');
INSERT INTO `items` (`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`,`uuid`) values ('38758','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10484','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c8379a61cf50439ca8fcf6e7bd9e1882');
INSERT INTO `items` (`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`,`uuid`) values ('38759','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10484','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f1f871ee559e4cebb1fd1f535a38e01d');
INSERT INTO `items` (`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`,`uuid`) values ('38760','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10484','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0d04c1ee59454dc2a6207ef39dfbcc1b');
INSERT INTO `items` (`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`,`uuid`) values ('38761','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10484','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e0f09269707249ff95ccf4024c907f2f');
INSERT INTO `items` (`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`,`uuid`) values ('38762','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10484','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3df5076b23ef4e05aa6bf24be663f6f0');
INSERT INTO `items` (`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`,`uuid`) values ('38763','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10484','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0e75174bf57445c3852ef11b342b2892');
INSERT INTO `items` (`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`,`uuid`) values ('38764','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10484','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','774b0b02798a40fd95127ad17e182a03');
INSERT INTO `items` (`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`,`uuid`) values ('38765','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10484','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fffdd563250347e4b489c9fa4d61bc87');
INSERT INTO `items` (`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`,`uuid`) values ('38766','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10484','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c94839027f64bddbc6b3d5abd0cc0bf');
INSERT INTO `items` (`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`,`uuid`) values ('38767','15','','10484','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5b2a71ca1ecc4b24a42415100fcfe2fd');
INSERT INTO `items` (`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`,`uuid`) values ('38768','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10484','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','89ebfc327e5b4b63ae6571bd671489d9');
INSERT INTO `items` (`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`,`uuid`) values ('38769','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10484','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','94c3ff07a2aa4e1f9e7a5fcd35ae0d33');
INSERT INTO `items` (`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`,`uuid`) values ('38791','20','1.3.6.1.4.1.14988.1.1.7.4.0','10485','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1dfd38ddc91a4e70980734a4cfcc38e0');
INSERT INTO `items` (`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`,`uuid`) values ('38792','20','1.3.6.1.2.1.1.1.0','10485','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e85420056601495aa0b7da67042a941a');
INSERT INTO `items` (`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`,`uuid`) values ('38793','20','1.3.6.1.4.1.14988.1.1.7.3.0','10485','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4b177e4109404eebaa6674b8fc36953b');
INSERT INTO `items` (`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`,`uuid`) values ('38794','20','1.3.6.1.4.1.14988.1.1.4.4.0','10485','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','54cf84706fad45a2af8d42f928108c4d');
INSERT INTO `items` (`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`,`uuid`) values ('38795','20','1.3.6.1.2.1.25.2.3.1.5.65536','10485','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','21c6ba2b92674bec82e2d438bcfc9bc0');
INSERT INTO `items` (`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`,`uuid`) values ('38796','20','1.3.6.1.2.1.25.2.3.1.6.65536','10485','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','23d7f8ca24e44c41a92fefa63b41e176');
INSERT INTO `items` (`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`,`uuid`) values ('38797','15','','10485','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3008075b5b134c3db792e591ae7ca316');
INSERT INTO `items` (`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`,`uuid`) values ('38798','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10485','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b8d5bf8f5a274ef68254b5ba1bf2e06e');
INSERT INTO `items` (`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`,`uuid`) values ('38799','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10485','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9274cb0e9be74c7fa259dd5575fb3c96');
INSERT INTO `items` (`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`,`uuid`) values ('38800','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10485','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d1f11d8c8a4e42a9b77fe3c263c43d00');
INSERT INTO `items` (`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`,`uuid`) values ('38801','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10485','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f2ae9156eac7461183251fe44606a804');
INSERT INTO `items` (`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`,`uuid`) values ('38802','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10485','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e3027e0691a94961bd3955fdaeb10344');
INSERT INTO `items` (`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`,`uuid`) values ('38803','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10485','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ed8e11b608b84f5a803e37c11d22253c');
INSERT INTO `items` (`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`,`uuid`) values ('38804','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10485','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','18663281a59f4b2190affab16310ce72');
INSERT INTO `items` (`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`,`uuid`) values ('38805','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10485','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e8f42ba36969459bae7a4fbbbf9acd17');
INSERT INTO `items` (`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`,`uuid`) values ('38806','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10485','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3a8df6e05ca442c0888c58afe63cae06');
INSERT INTO `items` (`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`,`uuid`) values ('38807','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10485','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b6d115a3a9d84dfbbf6800b35a8988d5');
INSERT INTO `items` (`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`,`uuid`) values ('38808','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10485','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84c75bb385dc4a3fb17713eb169ef8e1');
INSERT INTO `items` (`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`,`uuid`) values ('38809','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10485','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','575cdf6fe364405d8f5815d6f511f551');
INSERT INTO `items` (`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`,`uuid`) values ('38810','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10485','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','91fd8a8ecde749a8a689da2014049c76');
INSERT INTO `items` (`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`,`uuid`) values ('38811','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10485','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','46641f0183c24377a291635a57fb5b15');
INSERT INTO `items` (`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`,`uuid`) values ('38812','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10485','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d1424ea6d6bb405dbcc828a7cd331fc2');
INSERT INTO `items` (`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`,`uuid`) values ('38813','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10485','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7a0f50f929db4a38985261b221885ea2');
INSERT INTO `items` (`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`,`uuid`) values ('38814','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10485','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e2113b513f02404c81ae0a924d51596d');
INSERT INTO `items` (`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`,`uuid`) values ('38815','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10485','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','18cb28a2ab264dc1acbb998f94a505ec');
INSERT INTO `items` (`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`,`uuid`) values ('38816','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10485','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff5d2e77f98e444690506781950f0421');
INSERT INTO `items` (`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`,`uuid`) values ('38817','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10485','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','85baf735bf374522aa03368ef023bd31');
INSERT INTO `items` (`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`,`uuid`) values ('38818','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10485','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b931d7192a004ec9bd0986617bf7d61e');
INSERT INTO `items` (`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`,`uuid`) values ('38819','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10485','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d09039bc2f7f4f8b8ba5263c5e44bde1');
INSERT INTO `items` (`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`,`uuid`) values ('38820','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10485','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6939f8f2f12342ca8ef18c87ed5e78d0');
INSERT INTO `items` (`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`,`uuid`) values ('38821','15','','10485','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a365ef0ba0d42f390d0810dc0165187');
INSERT INTO `items` (`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`,`uuid`) values ('38822','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10485','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ca68df704e444123a01895d9256b1f97');
INSERT INTO `items` (`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`,`uuid`) values ('38823','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10485','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','32c7e5e885304b859f223bc0575c92e1');
INSERT INTO `items` (`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`,`uuid`) values ('38845','20','1.3.6.1.4.1.14988.1.1.7.4.0','10486','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','df95ed3cd37c4460bf643d9c1ec30cae');
INSERT INTO `items` (`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`,`uuid`) values ('38846','20','1.3.6.1.2.1.1.1.0','10486','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e688e8e57d84ec79f78cad69914ea96');
INSERT INTO `items` (`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`,`uuid`) values ('38847','20','1.3.6.1.4.1.14988.1.1.7.3.0','10486','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a4028eb828784fef80489e16e3d78659');
INSERT INTO `items` (`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`,`uuid`) values ('38848','20','1.3.6.1.4.1.14988.1.1.4.4.0','10486','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7c089e6fa1464c92ae25265351e46c61');
INSERT INTO `items` (`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`,`uuid`) values ('38849','20','1.3.6.1.2.1.25.2.3.1.5.65536','10486','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','796e3dc988dd43ff8a7ea11a8eeac257');
INSERT INTO `items` (`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`,`uuid`) values ('38850','20','1.3.6.1.2.1.25.2.3.1.6.65536','10486','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','456b72f5cd6d4a64871345d150068244');
INSERT INTO `items` (`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`,`uuid`) values ('38851','15','','10486','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e68cf8cdbed4517a7b6828be1cc4aab');
INSERT INTO `items` (`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`,`uuid`) values ('38852','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10486','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','670bb575294046a48f794a2dc778a5da');
INSERT INTO `items` (`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`,`uuid`) values ('38853','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10486','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3872a0f5d79e4e8a97af4e82d1221407');
INSERT INTO `items` (`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`,`uuid`) values ('38854','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10486','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5ac26b1da21e436fa20f5234304acc75');
INSERT INTO `items` (`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`,`uuid`) values ('38855','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10486','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','70b4d26ec96d45e781afeebe746ba1e7');
INSERT INTO `items` (`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`,`uuid`) values ('38856','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10486','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b3809e90799748f5ba6f8215b17c80df');
INSERT INTO `items` (`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`,`uuid`) values ('38857','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10486','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bae34f809a49486193684d22232e315a');
INSERT INTO `items` (`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`,`uuid`) values ('38858','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10486','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6c508160b0494f7da7b44c6952db5042');
INSERT INTO `items` (`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`,`uuid`) values ('38859','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10486','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9d2d64319d2d42d1be4381adce895a62');
INSERT INTO `items` (`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`,`uuid`) values ('38860','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10486','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f053aa3feb9047cc9c50da0e861ce16a');
INSERT INTO `items` (`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`,`uuid`) values ('38861','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10486','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ae93311998d34ec9bd1ce91b895d758d');
INSERT INTO `items` (`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`,`uuid`) values ('38862','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10486','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cb24ba6daff44ede865706f777e49558');
INSERT INTO `items` (`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`,`uuid`) values ('38863','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10486','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b93fca52bea34a168af7374f8d2c04ee');
INSERT INTO `items` (`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`,`uuid`) values ('38864','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10486','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','67cae98893f642d2b0c4bdf11db1a30b');
INSERT INTO `items` (`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`,`uuid`) values ('38865','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10486','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6c149338df7843e6bd195558d9d12ee8');
INSERT INTO `items` (`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`,`uuid`) values ('38866','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10486','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','20ddae019a2c469ea1ae211e09d87b5d');
INSERT INTO `items` (`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`,`uuid`) values ('38867','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10486','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e6fdab57c4ac4d7db29e020ca2be465a');
INSERT INTO `items` (`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`,`uuid`) values ('38868','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10486','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9a9a7b48404b47b1bca12b6aace8a025');
INSERT INTO `items` (`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`,`uuid`) values ('38869','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10486','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','70d5dd712b5b4993bf050410fccd1794');
INSERT INTO `items` (`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`,`uuid`) values ('38870','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10486','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','99ae41fb9ba84763884d3eb02f70de96');
INSERT INTO `items` (`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`,`uuid`) values ('38871','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10486','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2ee6fbfd5e584b1485a9e2aa23e41945');
INSERT INTO `items` (`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`,`uuid`) values ('38872','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10486','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ed5ba3fc1d4142f5a42dd75e57bf5583');
INSERT INTO `items` (`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`,`uuid`) values ('38873','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10486','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fbb5e46eab824ff894528a54702ac824');
INSERT INTO `items` (`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`,`uuid`) values ('38874','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10486','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c0b897b0fee1406fa0fe6a5d50debd27');
INSERT INTO `items` (`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`,`uuid`) values ('38875','15','','10486','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','56ed6da227c44c3399700f2bb4eb936a');
INSERT INTO `items` (`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`,`uuid`) values ('38876','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10486','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','40724614055e428db71f41bd19d4924a');
INSERT INTO `items` (`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`,`uuid`) values ('38877','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10486','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','350d841e1f99454283606a8af07f20d8');
INSERT INTO `items` (`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`,`uuid`) values ('38899','20','1.3.6.1.4.1.14988.1.1.7.4.0','10487','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fce13abb920940cdb20cdf70f2e94d90');
INSERT INTO `items` (`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`,`uuid`) values ('38900','20','1.3.6.1.2.1.1.1.0','10487','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','45bdf887a0a3433cbb77a9ce792f2fec');
INSERT INTO `items` (`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`,`uuid`) values ('38901','20','1.3.6.1.4.1.14988.1.1.7.3.0','10487','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2f862ca4d6854c9bb56c46303cb5fd0a');
INSERT INTO `items` (`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`,`uuid`) values ('38902','20','1.3.6.1.4.1.14988.1.1.4.4.0','10487','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','71a6d0a5cfd94c14b97af236ce4fc1c9');
INSERT INTO `items` (`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`,`uuid`) values ('38903','20','1.3.6.1.2.1.25.2.3.1.5.65536','10487','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','54b4475f0bfb4c02b1f4fc68d4288bb7');
INSERT INTO `items` (`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`,`uuid`) values ('38904','20','1.3.6.1.2.1.25.2.3.1.6.65536','10487','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2e60d597dcc94824bea105b5e51e5d06');
INSERT INTO `items` (`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`,`uuid`) values ('38905','15','','10487','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','700227d0426b44ee87a5f33ef5b5b29e');
INSERT INTO `items` (`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`,`uuid`) values ('38906','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10487','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e909a37161a04c1794f5f27f817ef870');
INSERT INTO `items` (`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`,`uuid`) values ('38907','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10487','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','09873df4de564b1395b88c417a923b11');
INSERT INTO `items` (`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`,`uuid`) values ('38908','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10487','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','65646365a9fe475fa4aaa70dfd653fb9');
INSERT INTO `items` (`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`,`uuid`) values ('38909','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10487','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','057ce43acaf24b6a970d0a6368c16092');
INSERT INTO `items` (`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`,`uuid`) values ('38910','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10487','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0f19e3b4d64c4ae6acedd0fbd2094942');
INSERT INTO `items` (`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`,`uuid`) values ('38911','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10487','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e8d6873c8ba344398cefa2b7cf0510ba');
INSERT INTO `items` (`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`,`uuid`) values ('38912','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10487','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','983c946b09b9488690b43ccdaf3969b5');
INSERT INTO `items` (`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`,`uuid`) values ('38913','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10487','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bb419ac3a71446909b89fea0503fe8b8');
INSERT INTO `items` (`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`,`uuid`) values ('38914','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10487','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5b12bb4397794b308985b4a866b0f517');
INSERT INTO `items` (`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`,`uuid`) values ('38915','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10487','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','69a55949c8df47d0894f6bdd2247c728');
INSERT INTO `items` (`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`,`uuid`) values ('38916','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10487','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7c28d5b873c241d598e84dead4674d62');
INSERT INTO `items` (`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`,`uuid`) values ('38917','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10487','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b638cb8d9d014947ae1937b3fae245c8');
INSERT INTO `items` (`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`,`uuid`) values ('38918','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10487','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e7e5263b25a34b2fa176101cbb3d79c6');
INSERT INTO `items` (`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`,`uuid`) values ('38919','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10487','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1b3914c1eb1d4e53b38dc9d16670b61f');
INSERT INTO `items` (`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`,`uuid`) values ('38920','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10487','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd7e6ea3407e4f798b978589ea6b8613');
INSERT INTO `items` (`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`,`uuid`) values ('38921','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10487','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','589dcc0883b94ab59cd9d549242aa01d');
INSERT INTO `items` (`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`,`uuid`) values ('38922','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10487','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b7013da0523b4257ad6cf10919d2e446');
INSERT INTO `items` (`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`,`uuid`) values ('38923','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10487','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1cfeb4f0b1c84205b20c007d52a20fdb');
INSERT INTO `items` (`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`,`uuid`) values ('38924','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10487','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d79f7c775cdb48f39909b6ca7e4ef9d3');
INSERT INTO `items` (`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`,`uuid`) values ('38925','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10487','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b0ec2ef595354dabadd0d8d4936ab73c');
INSERT INTO `items` (`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`,`uuid`) values ('38926','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10487','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c24334458fd446c9b9b72f10c10df63b');
INSERT INTO `items` (`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`,`uuid`) values ('38927','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10487','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9d1fa283c578496b8dc757b277af72a4');
INSERT INTO `items` (`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`,`uuid`) values ('38928','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10487','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2f13b2d5685640fc8290692c26261144');
INSERT INTO `items` (`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`,`uuid`) values ('38929','15','','10487','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ce053243825b43e1818962addf49751c');
INSERT INTO `items` (`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`,`uuid`) values ('38930','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10487','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c999deba04d846b38c31642447806540');
INSERT INTO `items` (`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`,`uuid`) values ('38931','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10487','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b64d80a23f57425385d5fb8e36c015ad');
INSERT INTO `items` (`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`,`uuid`) values ('38953','20','1.3.6.1.4.1.14988.1.1.7.4.0','10488','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cb60ed419a0e4d43bd63fda86f86c12a');
INSERT INTO `items` (`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`,`uuid`) values ('38954','20','1.3.6.1.2.1.1.1.0','10488','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ba01d10fe2254462b4c2eabaa6cf9d6c');
INSERT INTO `items` (`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`,`uuid`) values ('38955','20','1.3.6.1.4.1.14988.1.1.7.3.0','10488','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fc5c04dc408f47708d69d04e51f25d7c');
INSERT INTO `items` (`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`,`uuid`) values ('38956','20','1.3.6.1.4.1.14988.1.1.4.4.0','10488','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6bc59bf95f73427eaea0c59598d0deb3');
INSERT INTO `items` (`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`,`uuid`) values ('38957','20','1.3.6.1.2.1.25.2.3.1.5.65536','10488','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4b0e4a132da94cd4b20e1f4ab4428405');
INSERT INTO `items` (`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`,`uuid`) values ('38958','20','1.3.6.1.2.1.25.2.3.1.6.65536','10488','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','501e0023828440498faed0e1214efe1c');
INSERT INTO `items` (`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`,`uuid`) values ('38959','15','','10488','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3ddbf0f659724782a930dd42154eb64a');
INSERT INTO `items` (`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`,`uuid`) values ('38960','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10488','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','822fd977341648b0a79966a714e58257');
INSERT INTO `items` (`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`,`uuid`) values ('38961','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10488','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0f5f2641521c4f4094bfc3d113df6232');
INSERT INTO `items` (`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`,`uuid`) values ('38962','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10488','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','05b63a97b9f248098a9ab7c586f8a866');
INSERT INTO `items` (`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`,`uuid`) values ('38963','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10488','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c08a3dd904394cf29846630497e87d5a');
INSERT INTO `items` (`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`,`uuid`) values ('38964','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10488','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','41277234ea344cb5b42cbb9b4862e1f5');
INSERT INTO `items` (`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`,`uuid`) values ('38965','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10488','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8b4de033e601487eb8a97e5cdbb3ac88');
INSERT INTO `items` (`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`,`uuid`) values ('38966','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10488','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d1f10311b85e4bf3b2c146cdbf888df2');
INSERT INTO `items` (`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`,`uuid`) values ('38967','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10488','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','070b9699eebe4938b06a464f33bd3154');
INSERT INTO `items` (`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`,`uuid`) values ('38968','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10488','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','45f9905f21b34ac88e8a707b2280171a');
INSERT INTO `items` (`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`,`uuid`) values ('38969','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10488','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','249a48a839cc4961a8949ee8323a6202');
INSERT INTO `items` (`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`,`uuid`) values ('38970','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10488','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','886f5cb0ec0544519ab2c3e69cea369a');
INSERT INTO `items` (`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`,`uuid`) values ('38971','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10488','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4e4ca30922404b0ea9dd78e47b26385a');
INSERT INTO `items` (`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`,`uuid`) values ('38972','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10488','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b006482c393f4f0790f25497b5da6c31');
INSERT INTO `items` (`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`,`uuid`) values ('38973','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10488','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','55bb3ead60744b758a12b42c021d0e85');
INSERT INTO `items` (`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`,`uuid`) values ('38974','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10488','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','138416a8fbbb450b86ab031adb8dcf00');
INSERT INTO `items` (`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`,`uuid`) values ('38975','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10488','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e70a0e3c001f47bf93fa7458d8a30bf8');
INSERT INTO `items` (`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`,`uuid`) values ('38976','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10488','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3555a29c614e4927b577349e0ba3efc5');
INSERT INTO `items` (`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`,`uuid`) values ('38977','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10488','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1f07e24ab5e446cabd93af0936878ca6');
INSERT INTO `items` (`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`,`uuid`) values ('38978','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10488','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c48101c768414fb09a948bd237086107');
INSERT INTO `items` (`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`,`uuid`) values ('38979','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10488','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','243a3f623bba44c88f1ba3223a6de970');
INSERT INTO `items` (`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`,`uuid`) values ('38980','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10488','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b1af2acef4104aa5bff253add659c027');
INSERT INTO `items` (`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`,`uuid`) values ('38981','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10488','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','09b1511e2cd34810a2468ac47e36560e');
INSERT INTO `items` (`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`,`uuid`) values ('38982','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10488','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','846f7fb0449542b8b4081a98eebe3dd1');
INSERT INTO `items` (`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`,`uuid`) values ('38983','15','','10488','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e6dd665216134d83aca954fd64d5446b');
INSERT INTO `items` (`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`,`uuid`) values ('38984','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10488','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a71336fb643e4c85b67e3fb18244df4b');
INSERT INTO `items` (`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`,`uuid`) values ('38985','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10488','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','669704d6f48f429eb4a872d8937dd00a');
INSERT INTO `items` (`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`,`uuid`) values ('39007','20','1.3.6.1.4.1.14988.1.1.7.4.0','10489','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ed51e55b8fa64c5599399fc93d81d329');
INSERT INTO `items` (`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`,`uuid`) values ('39008','20','1.3.6.1.2.1.1.1.0','10489','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','692ccc1f29fe4f15ae7ca0bee54bf6b6');
INSERT INTO `items` (`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`,`uuid`) values ('39009','20','1.3.6.1.4.1.14988.1.1.7.3.0','10489','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0645ecb1a28040d9b89af280ca3093ea');
INSERT INTO `items` (`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`,`uuid`) values ('39010','20','1.3.6.1.4.1.14988.1.1.4.4.0','10489','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','551f25631a13497b924c1b285b93ee5f');
INSERT INTO `items` (`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`,`uuid`) values ('39011','20','1.3.6.1.2.1.25.2.3.1.5.65536','10489','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c077abb2ecc84c88b2173bff8e9ab9aa');
INSERT INTO `items` (`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`,`uuid`) values ('39012','20','1.3.6.1.2.1.25.2.3.1.6.65536','10489','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4029907022564beeb405c065ae4febff');
INSERT INTO `items` (`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`,`uuid`) values ('39013','15','','10489','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5521e149584846118dcb280496b3aca4');
INSERT INTO `items` (`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`,`uuid`) values ('39014','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10489','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4de6b86871874118b83ed7cfd31f3113');
INSERT INTO `items` (`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`,`uuid`) values ('39015','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10489','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e738626cc9af4c9ba47f18ede6d6ffa3');
INSERT INTO `items` (`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`,`uuid`) values ('39016','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10489','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6a9998434d8b4a93a7fba87eaf642600');
INSERT INTO `items` (`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`,`uuid`) values ('39017','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10489','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','53adc733f3c34ddd943e5ccb41d1b536');
INSERT INTO `items` (`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`,`uuid`) values ('39018','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10489','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','65ce926cc8bb4e55859204eb287c640b');
INSERT INTO `items` (`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`,`uuid`) values ('39019','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10489','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ab6be8cd3f44b7ba6df32589b844e77');
INSERT INTO `items` (`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`,`uuid`) values ('39020','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10489','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','162e5f08fbcc4ad88fdb633731bd942a');
INSERT INTO `items` (`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`,`uuid`) values ('39021','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10489','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4dcba527c8de49eb90a9cc58e881202e');
INSERT INTO `items` (`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`,`uuid`) values ('39022','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10489','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0f06d2c64a2f4b6690736e3f74ea8e59');
INSERT INTO `items` (`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`,`uuid`) values ('39023','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10489','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','53d76ef4e9224a63bd30e3d1fc89542f');
INSERT INTO `items` (`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`,`uuid`) values ('39024','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10489','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','23c7a946500a420a87ead3d7c923f176');
INSERT INTO `items` (`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`,`uuid`) values ('39025','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10489','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','93254f62b3e74acaa3c5839b9f844363');
INSERT INTO `items` (`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`,`uuid`) values ('39026','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10489','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','67eb22e623174b06a24460985521d3d4');
INSERT INTO `items` (`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`,`uuid`) values ('39027','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10489','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dda3ef44c9204c46a8affb68aeeec803');
INSERT INTO `items` (`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`,`uuid`) values ('39028','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10489','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bb7c28ff27104b0a8aa8f7052f71dd32');
INSERT INTO `items` (`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`,`uuid`) values ('39029','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10489','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','437edde63aa74619a3f4531039c1e73d');
INSERT INTO `items` (`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`,`uuid`) values ('39030','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10489','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','091618c93d8a405a94d4147d18d985d7');
INSERT INTO `items` (`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`,`uuid`) values ('39031','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10489','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','af82a882030b45ca90805a13bf4390f5');
INSERT INTO `items` (`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`,`uuid`) values ('39032','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10489','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','616f6787b7e8427aa727711c115afbed');
INSERT INTO `items` (`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`,`uuid`) values ('39033','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10489','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','29efb756bbc44a2bbd772633279cd754');
INSERT INTO `items` (`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`,`uuid`) values ('39034','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10489','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0921eb633d6d44f2add1031cbc5ae2fa');
INSERT INTO `items` (`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`,`uuid`) values ('39035','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10489','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a7a9c42aa3054035b9190a38f3456e44');
INSERT INTO `items` (`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`,`uuid`) values ('39036','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10489','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','23b17acfff4246208f744864e5af2108');
INSERT INTO `items` (`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`,`uuid`) values ('39037','15','','10489','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fbeab8db403d458b96fcd8084bd98f60');
INSERT INTO `items` (`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`,`uuid`) values ('39038','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10489','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad4d9e4a1a5341fa841eecdd84acf8b8');
INSERT INTO `items` (`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`,`uuid`) values ('39039','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10489','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fa6b2e7962e84b53ad0f7909984e6bca');
INSERT INTO `items` (`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`,`uuid`) values ('39061','20','1.3.6.1.4.1.14988.1.1.7.4.0','10490','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','df5bf48843cd4981bf719769b3194a3d');
INSERT INTO `items` (`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`,`uuid`) values ('39062','20','1.3.6.1.2.1.1.1.0','10490','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','50100a89b236431d9ba7e4f2352fa2b9');
INSERT INTO `items` (`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`,`uuid`) values ('39063','20','1.3.6.1.4.1.14988.1.1.7.3.0','10490','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','65a753ce87934f75aa719e3e59f76dbd');
INSERT INTO `items` (`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`,`uuid`) values ('39064','20','1.3.6.1.4.1.14988.1.1.4.4.0','10490','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b5a74fe98a7948a9b189953b457b2975');
INSERT INTO `items` (`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`,`uuid`) values ('39065','20','1.3.6.1.2.1.25.2.3.1.5.65536','10490','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','806938d083e848b4b84b2c222c4f4d2e');
INSERT INTO `items` (`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`,`uuid`) values ('39066','20','1.3.6.1.2.1.25.2.3.1.6.65536','10490','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0d4cc61a9f8c44f385606bc8394eaeb4');
INSERT INTO `items` (`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`,`uuid`) values ('39067','15','','10490','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','836ba120a51d4c659c034e3a94003c0f');
INSERT INTO `items` (`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`,`uuid`) values ('39068','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10490','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f83ea9e9a0e646f5a9b8c7e1e0290512');
INSERT INTO `items` (`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`,`uuid`) values ('39069','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10490','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6ccb140a18804e2a955f89063f3d1fba');
INSERT INTO `items` (`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`,`uuid`) values ('39070','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10490','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e0d8cd7456724c0690548859ea217994');
INSERT INTO `items` (`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`,`uuid`) values ('39071','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10490','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4176400783ec41aca75e6edb5a2e7950');
INSERT INTO `items` (`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`,`uuid`) values ('39072','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10490','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5d0bb62dda9747f4bf10059b0b318088');
INSERT INTO `items` (`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`,`uuid`) values ('39073','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10490','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','faa2bf517e6e46aaa8aebdc4571007b7');
INSERT INTO `items` (`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`,`uuid`) values ('39074','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10490','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16ccb0c6d72f49e991f2034b06e7ad26');
INSERT INTO `items` (`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`,`uuid`) values ('39075','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10490','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','11a2162c7c734d0d935ca5b5e03b0b1f');
INSERT INTO `items` (`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`,`uuid`) values ('39076','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10490','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cff4aeb5cf4b4349858983fca3deb508');
INSERT INTO `items` (`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`,`uuid`) values ('39077','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10490','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','77bba6eb9e9f4c7dafd8ecb0d895aa4d');
INSERT INTO `items` (`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`,`uuid`) values ('39078','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10490','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a9d05b694288494c8a67065fae149b7e');
INSERT INTO `items` (`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`,`uuid`) values ('39079','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10490','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0da46f1b48e34e8d866bdcee4c4f318e');
INSERT INTO `items` (`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`,`uuid`) values ('39080','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10490','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9960c89e7efd40ea8df4da693350156b');
INSERT INTO `items` (`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`,`uuid`) values ('39081','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10490','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8c703fdcb8fa4ce8978034d004c723fa');
INSERT INTO `items` (`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`,`uuid`) values ('39082','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10490','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','82b095474acf43708ed38960e819bac1');
INSERT INTO `items` (`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`,`uuid`) values ('39083','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10490','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e493d9b31000454ab5322d128fc017dd');
INSERT INTO `items` (`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`,`uuid`) values ('39084','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10490','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','78e165faa8e84eb5a5b5e33de95667fb');
INSERT INTO `items` (`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`,`uuid`) values ('39085','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10490','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3091e881221f4ac79337ee723e18bdae');
INSERT INTO `items` (`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`,`uuid`) values ('39086','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10490','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','00ffa0a22f24402ca0b28fcd8deb539a');
INSERT INTO `items` (`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`,`uuid`) values ('39087','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10490','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','895e3f8cb6774b13a2e51cbc10f2ddbb');
INSERT INTO `items` (`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`,`uuid`) values ('39088','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10490','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dfe08b76e5794a918047afdeecd30244');
INSERT INTO `items` (`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`,`uuid`) values ('39089','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10490','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fa59c976b98c4074a04183d569cc9c19');
INSERT INTO `items` (`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`,`uuid`) values ('39090','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10490','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','22ec1aa3f660417e9b99f341553ff158');
INSERT INTO `items` (`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`,`uuid`) values ('39091','15','','10490','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4616b7a26c5d4646abe4d8d87f988ae9');
INSERT INTO `items` (`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`,`uuid`) values ('39092','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10490','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c227791696414ebf9167558b1e2933f5');
INSERT INTO `items` (`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`,`uuid`) values ('39093','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10490','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dd45e3173ac148caa583f5e39aa12889');
INSERT INTO `items` (`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`,`uuid`) values ('39115','20','1.3.6.1.4.1.14988.1.1.7.4.0','10491','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1f05547dfa4146bd837288c6cfb0b0e4');
INSERT INTO `items` (`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`,`uuid`) values ('39116','20','1.3.6.1.2.1.1.1.0','10491','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','286376d7fb9e4fa9a608d7494b500f4f');
INSERT INTO `items` (`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`,`uuid`) values ('39117','20','1.3.6.1.4.1.14988.1.1.7.3.0','10491','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad481c4efe304683ac539107a121b10a');
INSERT INTO `items` (`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`,`uuid`) values ('39118','20','1.3.6.1.4.1.14988.1.1.4.4.0','10491','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','111bd5c32550427682bb0e683754fda9');
INSERT INTO `items` (`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`,`uuid`) values ('39119','20','1.3.6.1.2.1.25.2.3.1.5.65536','10491','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1b352f84778349c78422b9d4c648d05b');
INSERT INTO `items` (`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`,`uuid`) values ('39120','20','1.3.6.1.2.1.25.2.3.1.6.65536','10491','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f3f37d9595244448ab98704c49678800');
INSERT INTO `items` (`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`,`uuid`) values ('39121','15','','10491','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','10858c87568841f688e9b0b7e43811dd');
INSERT INTO `items` (`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`,`uuid`) values ('39122','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10491','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c377424bbb24740bebe49250a6770f5');
INSERT INTO `items` (`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`,`uuid`) values ('39123','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10491','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16f1d8ca6a654816ae56e2cd00016ba1');
INSERT INTO `items` (`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`,`uuid`) values ('39124','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10491','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','12053fcb928a4b788734ea4010de08fd');
INSERT INTO `items` (`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`,`uuid`) values ('39125','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10491','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','407a0b73cfc041e3a338d9e8fe637fe9');
INSERT INTO `items` (`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`,`uuid`) values ('39126','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10491','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ce0b88fb735494aa3854a64f2c84f4d');
INSERT INTO `items` (`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`,`uuid`) values ('39127','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10491','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cb2ad2c7ab5c4399b70031fd7c31f772');
INSERT INTO `items` (`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`,`uuid`) values ('39128','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10491','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','49c4ca48be2543ec9aab27b52c4a4f8b');
INSERT INTO `items` (`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`,`uuid`) values ('39129','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10491','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3285f355316a4c1d9171f8cacd8f4928');
INSERT INTO `items` (`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`,`uuid`) values ('39130','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10491','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','57e73f67141a42ec92a04c3d9d394907');
INSERT INTO `items` (`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`,`uuid`) values ('39131','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10491','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6fcfd9b1a6324b23a5705a7118874be2');
INSERT INTO `items` (`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`,`uuid`) values ('39132','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10491','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','166695395ca44bfab7cdacb6737a2c29');
INSERT INTO `items` (`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`,`uuid`) values ('39133','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10491','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8f6aea26ce3744298233fa751137b0b0');
INSERT INTO `items` (`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`,`uuid`) values ('39134','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10491','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','37c41907076142bfb5a8884f959960f0');
INSERT INTO `items` (`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`,`uuid`) values ('39135','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10491','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e019cd1da3644f5592ccdb904f8eda47');
INSERT INTO `items` (`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`,`uuid`) values ('39136','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10491','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6cae369274a844128a5e524c2e453416');
INSERT INTO `items` (`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`,`uuid`) values ('39137','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10491','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3e08aa7a5e9743b8bcc416a0e94c0310');
INSERT INTO `items` (`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`,`uuid`) values ('39138','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10491','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb4354c77ff94515954a4a4b537ac235');
INSERT INTO `items` (`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`,`uuid`) values ('39139','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10491','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c90dc649ab14bbfb174af66aa5cfb2b');
INSERT INTO `items` (`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`,`uuid`) values ('39140','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10491','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5eae6da3d4684988abad5add9da275fd');
INSERT INTO `items` (`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`,`uuid`) values ('39141','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10491','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2dd6648a8d9941b587b5fd248562c6e7');
INSERT INTO `items` (`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`,`uuid`) values ('39142','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10491','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','88092d9350254ce1ac44524b33f502b8');
INSERT INTO `items` (`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`,`uuid`) values ('39143','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10491','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5cd10bfcae974f26865be0847bd481b1');
INSERT INTO `items` (`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`,`uuid`) values ('39144','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10491','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','05bba59e89ff4812a11393bc88e357ae');
INSERT INTO `items` (`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`,`uuid`) values ('39145','15','','10491','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ed6f9d957ccc4a85a638b239082d0013');
INSERT INTO `items` (`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`,`uuid`) values ('39146','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10491','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7d835648f2f64bf1a1615e9e70822ccd');
INSERT INTO `items` (`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`,`uuid`) values ('39147','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10491','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f078344e85614978973618685d022859');
INSERT INTO `items` (`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`,`uuid`) values ('39169','20','1.3.6.1.4.1.14988.1.1.7.4.0','10492','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','354b56e7cce646c8b143434af11ebd1a');
INSERT INTO `items` (`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`,`uuid`) values ('39170','20','1.3.6.1.2.1.1.1.0','10492','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3da25a0046ac4f2c9ec35d3ac9db9ae7');
INSERT INTO `items` (`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`,`uuid`) values ('39171','20','1.3.6.1.4.1.14988.1.1.7.3.0','10492','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a935a058a7644773b40d0cfbaae218e2');
INSERT INTO `items` (`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`,`uuid`) values ('39172','20','1.3.6.1.4.1.14988.1.1.4.4.0','10492','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','14e1297549d74f48be28bdfe70746600');
INSERT INTO `items` (`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`,`uuid`) values ('39173','20','1.3.6.1.2.1.25.2.3.1.5.65536','10492','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b0a11ac957ff4b91b2d032ca2e97fd86');
INSERT INTO `items` (`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`,`uuid`) values ('39174','20','1.3.6.1.2.1.25.2.3.1.6.65536','10492','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3702de756584423b93730807b797a1db');
INSERT INTO `items` (`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`,`uuid`) values ('39175','15','','10492','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e58d0e859a94279b4e52aa4b16d3702');
INSERT INTO `items` (`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`,`uuid`) values ('39176','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10492','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','261714f543bc43bbbbc2784aee405593');
INSERT INTO `items` (`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`,`uuid`) values ('39177','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10492','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b63bd0e852a7431cbff672703f5fa68f');
INSERT INTO `items` (`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`,`uuid`) values ('39178','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10492','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9d802db2738d4e0cb7bac8cd574b4283');
INSERT INTO `items` (`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`,`uuid`) values ('39179','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10492','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2f495a17418a47bfb48d7df1128eddd2');
INSERT INTO `items` (`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`,`uuid`) values ('39180','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10492','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab13751dc03e482db3d9f98c74fb1e40');
INSERT INTO `items` (`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`,`uuid`) values ('39181','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10492','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4a884bea9c754839befbf0faf07e39a8');
INSERT INTO `items` (`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`,`uuid`) values ('39182','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10492','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16d488e47b614bcca12af8f2493f8a0b');
INSERT INTO `items` (`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`,`uuid`) values ('39183','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10492','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','051141b1443a4312bade08bfa68d97c8');
INSERT INTO `items` (`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`,`uuid`) values ('39184','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10492','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fd85963c79484ab2964e7cbce4cd666e');
INSERT INTO `items` (`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`,`uuid`) values ('39185','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10492','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','00ec9a3110f54225b1cf7ef17119b63f');
INSERT INTO `items` (`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`,`uuid`) values ('39186','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10492','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9e1b7a12b16a4e0a868a34e81b37187e');
INSERT INTO `items` (`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`,`uuid`) values ('39187','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10492','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','20c47d65290648a49f68a723111b6d20');
INSERT INTO `items` (`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`,`uuid`) values ('39188','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10492','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4f03ff31d0654285828e4a78c960bc5e');
INSERT INTO `items` (`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`,`uuid`) values ('39189','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10492','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5cc7f564912c4827aedb940f59e574dd');
INSERT INTO `items` (`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`,`uuid`) values ('39190','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10492','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','97f2d5c9a53b425fb490305bbdecb1d8');
INSERT INTO `items` (`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`,`uuid`) values ('39191','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10492','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','935ca7fa58e94bc2b4783676f57f1788');
INSERT INTO `items` (`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`,`uuid`) values ('39192','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10492','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b0c6132fffb04ab3a4d392f35d2d418d');
INSERT INTO `items` (`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`,`uuid`) values ('39193','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10492','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c7e6451019bd4780bb2ffa717c98ddfd');
INSERT INTO `items` (`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`,`uuid`) values ('39194','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10492','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4783ff6618d74aabab4a998467091b59');
INSERT INTO `items` (`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`,`uuid`) values ('39195','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10492','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bae785059d8b4d5ca3c29a0c64e52858');
INSERT INTO `items` (`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`,`uuid`) values ('39196','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10492','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a01aec216aff475ab47c0d1ca9ebb6ac');
INSERT INTO `items` (`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`,`uuid`) values ('39197','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10492','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a6c2c39fd3e444eae67e221721463c0');
INSERT INTO `items` (`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`,`uuid`) values ('39198','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10492','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','859f9073a0b94928816ad037283b5e0b');
INSERT INTO `items` (`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`,`uuid`) values ('39199','15','','10492','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','164b2f394aa3470faa18ba70e42b458f');
INSERT INTO `items` (`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`,`uuid`) values ('39200','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10492','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4f634d0afb6542e0b27347ba8555d92b');
INSERT INTO `items` (`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`,`uuid`) values ('39201','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10492','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5f55ba87f4084a4693c3c7f8818b5d6b');
INSERT INTO `items` (`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`,`uuid`) values ('39223','20','1.3.6.1.4.1.14988.1.1.7.4.0','10493','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e98ee47f44a24acab59bf6d10a1f6612');
INSERT INTO `items` (`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`,`uuid`) values ('39224','20','1.3.6.1.2.1.1.1.0','10493','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','176f7b3c6e4848c79f0f0f99021c644f');
INSERT INTO `items` (`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`,`uuid`) values ('39225','20','1.3.6.1.4.1.14988.1.1.7.3.0','10493','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fffcae15a44d4165af9f293a4dfc3134');
INSERT INTO `items` (`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`,`uuid`) values ('39226','20','1.3.6.1.4.1.14988.1.1.4.4.0','10493','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a46b0c33e93840e182208a099e6206df');
INSERT INTO `items` (`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`,`uuid`) values ('39227','20','1.3.6.1.2.1.25.2.3.1.5.65536','10493','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4255253ed78749d597385af02b95c8fe');
INSERT INTO `items` (`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`,`uuid`) values ('39228','20','1.3.6.1.2.1.25.2.3.1.6.65536','10493','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb1cd4666b1d4ee48141c77a7b9f07db');
INSERT INTO `items` (`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`,`uuid`) values ('39229','15','','10493','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','430682c60e8644baa65bcfa66dcd1b37');
INSERT INTO `items` (`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`,`uuid`) values ('39230','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10493','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','70b02231b6874b13a6f4f32808c7d7a9');
INSERT INTO `items` (`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`,`uuid`) values ('39231','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10493','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f31ffac30e7e40b7bd113a17862810ef');
INSERT INTO `items` (`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`,`uuid`) values ('39232','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10493','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a273bbb0f2744f229f08f83002f9ef09');
INSERT INTO `items` (`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`,`uuid`) values ('39233','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10493','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3de8323ff508430eac61e3f1104d72d5');
INSERT INTO `items` (`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`,`uuid`) values ('39234','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10493','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cb00ced4d3d04160a4074cf74455e7ca');
INSERT INTO `items` (`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`,`uuid`) values ('39235','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10493','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9cbb1cad26b745ad9d18f4666a6380f7');
INSERT INTO `items` (`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`,`uuid`) values ('39236','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10493','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dd1c96b4ca6a4dffb18c17227ccbe0f6');
INSERT INTO `items` (`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`,`uuid`) values ('39237','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10493','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','54c47bf1d9d64e9c8f45f8d9cfc135a6');
INSERT INTO `items` (`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`,`uuid`) values ('39238','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10493','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d84a0c0f8904b4db46a4f185c4438d6');
INSERT INTO `items` (`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`,`uuid`) values ('39239','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10493','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b0106d75e8484aea9c4431ff319a35c3');
INSERT INTO `items` (`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`,`uuid`) values ('39240','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10493','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5d3a719d567647c0914c7f5a742282c9');
INSERT INTO `items` (`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`,`uuid`) values ('39241','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10493','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5d1bd43223bf41a699abb04ec1f6bf66');
INSERT INTO `items` (`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`,`uuid`) values ('39242','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10493','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','840ffc4306d843e6ba23b57fe736de14');
INSERT INTO `items` (`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`,`uuid`) values ('39243','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10493','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab9d6abcd72b46dc9fadd9bd638084a8');
INSERT INTO `items` (`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`,`uuid`) values ('39244','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10493','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e88ae445d283419da86347c21756ac8d');
INSERT INTO `items` (`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`,`uuid`) values ('39245','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10493','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','389996b0d06b403da09ea7ad26d2058b');
INSERT INTO `items` (`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`,`uuid`) values ('39246','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10493','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4126c7d4e1bc442ab3d64decbaf5bc2b');
INSERT INTO `items` (`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`,`uuid`) values ('39247','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10493','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8b46ce31662e4784901bb62d8d427db6');
INSERT INTO `items` (`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`,`uuid`) values ('39248','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10493','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da476e57bb0545ea9c5586dd359a8016');
INSERT INTO `items` (`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`,`uuid`) values ('39249','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10493','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ca4f60a9add646869fbed2d3a9c669e4');
INSERT INTO `items` (`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`,`uuid`) values ('39250','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10493','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','47ad66f9b9be48a2b28bc1c294bc088e');
INSERT INTO `items` (`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`,`uuid`) values ('39251','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10493','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3dd8fd21a42f493e81d42799c395f25b');
INSERT INTO `items` (`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`,`uuid`) values ('39252','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10493','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1fe7cef52ef1453a97a7f23292cf7f6c');
INSERT INTO `items` (`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`,`uuid`) values ('39253','15','','10493','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4f25df9f57b443e5acd933712e07c480');
INSERT INTO `items` (`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`,`uuid`) values ('39254','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10493','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2fd43d9ea33a480286e331118e10bc11');
INSERT INTO `items` (`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`,`uuid`) values ('39255','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10493','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c3d7e0d1fed74855897397a27938b090');
INSERT INTO `items` (`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`,`uuid`) values ('39277','20','1.3.6.1.4.1.14988.1.1.7.4.0','10494','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2031dfc697c244c59e036a0b166772e2');
INSERT INTO `items` (`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`,`uuid`) values ('39278','20','1.3.6.1.2.1.1.1.0','10494','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6b8b9d12f8d449a5be35d89d8c68719d');
INSERT INTO `items` (`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`,`uuid`) values ('39279','20','1.3.6.1.4.1.14988.1.1.7.3.0','10494','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','20e6d99fff5943ff85c2beedb0b292f3');
INSERT INTO `items` (`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`,`uuid`) values ('39280','20','1.3.6.1.4.1.14988.1.1.4.4.0','10494','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2b704d1b595b4fe5aec1f855ff6574ea');
INSERT INTO `items` (`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`,`uuid`) values ('39281','20','1.3.6.1.2.1.25.2.3.1.5.65536','10494','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa54b9f3cf6746b897c07e7f3eac3c1f');
INSERT INTO `items` (`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`,`uuid`) values ('39282','20','1.3.6.1.2.1.25.2.3.1.6.65536','10494','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b5a826e18b2941aeb1f3e091928225e0');
INSERT INTO `items` (`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`,`uuid`) values ('39283','15','','10494','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','767414861593473896fb39004ea488d4');
INSERT INTO `items` (`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`,`uuid`) values ('39284','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10494','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b68414c0aaaf439cbf0c1c48bbd7203a');
INSERT INTO `items` (`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`,`uuid`) values ('39285','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10494','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c2630a4fef56441895dde6e8dbf415b6');
INSERT INTO `items` (`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`,`uuid`) values ('39286','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10494','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8e19febc9ea54bdfbe8dd05538f03d41');
INSERT INTO `items` (`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`,`uuid`) values ('39287','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10494','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1fe627df6dea431593ca811a29049908');
INSERT INTO `items` (`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`,`uuid`) values ('39288','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10494','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','568c8d68683744a091aa4c40ea902e5d');
INSERT INTO `items` (`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`,`uuid`) values ('39289','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10494','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f6efd53d717a49dc9b9e96cc6a670181');
INSERT INTO `items` (`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`,`uuid`) values ('39290','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10494','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','110e21a587044f2486479bd583cb21e1');
INSERT INTO `items` (`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`,`uuid`) values ('39291','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10494','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e8aa4a6608c64edba3aa8a5dd4008350');
INSERT INTO `items` (`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`,`uuid`) values ('39292','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10494','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d84c08e7bfde4fff825120e5e2431575');
INSERT INTO `items` (`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`,`uuid`) values ('39293','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10494','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','63a9a283529a47c1921b9e91925783f5');
INSERT INTO `items` (`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`,`uuid`) values ('39294','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10494','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7eec5f18909443408ac504689dd3035b');
INSERT INTO `items` (`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`,`uuid`) values ('39295','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10494','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cad3593fb06346f7b8e5d293c570dc32');
INSERT INTO `items` (`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`,`uuid`) values ('39296','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10494','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bbd99dc8983d44e2956f81592def392c');
INSERT INTO `items` (`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`,`uuid`) values ('39297','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10494','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a7b2478c97854e1b8eab67bb0da603f1');
INSERT INTO `items` (`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`,`uuid`) values ('39298','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10494','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab249acfd6fd4e4384b08caa78975a27');
INSERT INTO `items` (`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`,`uuid`) values ('39299','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10494','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6a4a5b09f98c48aca9f95166549411cd');
INSERT INTO `items` (`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`,`uuid`) values ('39300','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10494','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','803e24bc996e4ad69242c12b62040f19');
INSERT INTO `items` (`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`,`uuid`) values ('39301','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10494','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4c6a4b99a41248a28779e5c3ed5f195f');
INSERT INTO `items` (`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`,`uuid`) values ('39302','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10494','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1442e5f206ed4fa99f9a0b711da2e40d');
INSERT INTO `items` (`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`,`uuid`) values ('39303','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10494','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4cfce086b7904dbf859af6049c31e1bf');
INSERT INTO `items` (`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`,`uuid`) values ('39304','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10494','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b0f8d38a88534138a571429d09d2a728');
INSERT INTO `items` (`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`,`uuid`) values ('39305','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10494','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da3f58e212c44b5aa39475a65038595c');
INSERT INTO `items` (`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`,`uuid`) values ('39306','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10494','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aaf43960f1554a9986d09de5d19238b7');
INSERT INTO `items` (`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`,`uuid`) values ('39307','15','','10494','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d268756d1e3b4557ace5aac8491e1fc8');
INSERT INTO `items` (`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`,`uuid`) values ('39308','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10494','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','303a899d2a19448dab031c6265a5ebdd');
INSERT INTO `items` (`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`,`uuid`) values ('39309','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10494','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cd0f312fa6044c639abb345c6297ab6b');
INSERT INTO `items` (`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`,`uuid`) values ('39331','20','1.3.6.1.4.1.14988.1.1.7.4.0','10495','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f9085ebffffa4e2abca0aa7c0e50599f');
INSERT INTO `items` (`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`,`uuid`) values ('39332','20','1.3.6.1.2.1.1.1.0','10495','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3d8a9da605f74a9089b49def0f6a4bff');
INSERT INTO `items` (`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`,`uuid`) values ('39333','20','1.3.6.1.4.1.14988.1.1.7.3.0','10495','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e35a6c46c241466a9d96f1017bf3b467');
INSERT INTO `items` (`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`,`uuid`) values ('39334','20','1.3.6.1.4.1.14988.1.1.4.4.0','10495','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c25789ed5a2e40b090016c759c5a96cc');
INSERT INTO `items` (`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`,`uuid`) values ('39335','20','1.3.6.1.2.1.25.2.3.1.5.65536','10495','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c45124bc11da4ebebf0dc1a9cd7c261e');
INSERT INTO `items` (`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`,`uuid`) values ('39336','20','1.3.6.1.2.1.25.2.3.1.6.65536','10495','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','45ec9416e047428b8c535f95985bb61d');
INSERT INTO `items` (`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`,`uuid`) values ('39337','15','','10495','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d7aa64e64e534b1e9dbd65dd2bdda819');
INSERT INTO `items` (`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`,`uuid`) values ('39338','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10495','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2a630c50c8bc4b5d895accbe43af54f8');
INSERT INTO `items` (`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`,`uuid`) values ('39339','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10495','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9abd143a230545b5912e56ebdeff5fad');
INSERT INTO `items` (`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`,`uuid`) values ('39340','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10495','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','399c977682b54f21a2de66c620e30f13');
INSERT INTO `items` (`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`,`uuid`) values ('39341','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10495','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','76bb411f762949169d70dc5f69ce43f7');
INSERT INTO `items` (`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`,`uuid`) values ('39342','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10495','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','814d31895b51492db101ebb5c184ce03');
INSERT INTO `items` (`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`,`uuid`) values ('39343','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10495','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','63b0a6b344984f679f06c11089b6bedc');
INSERT INTO `items` (`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`,`uuid`) values ('39344','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10495','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','567a3273ef3e464c8f5d995c3af5ff21');
INSERT INTO `items` (`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`,`uuid`) values ('39345','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10495','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3cc001fddd7848d29d829479fbb74279');
INSERT INTO `items` (`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`,`uuid`) values ('39346','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10495','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','69b35a7a4e60483c9bf69367b6151d06');
INSERT INTO `items` (`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`,`uuid`) values ('39347','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10495','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bbd42a0a59854a0cb8e8661a43308585');
INSERT INTO `items` (`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`,`uuid`) values ('39348','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10495','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad25c7037c8246558c996ebca60f97ad');
INSERT INTO `items` (`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`,`uuid`) values ('39349','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10495','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7424d9ceb77b4a06a935b44f7c1ba568');
INSERT INTO `items` (`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`,`uuid`) values ('39350','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10495','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f3a86df3351f4dd080031a9c821f5252');
INSERT INTO `items` (`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`,`uuid`) values ('39351','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10495','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e551b72d1cd04297a9c9ea0e64e29255');
INSERT INTO `items` (`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`,`uuid`) values ('39352','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10495','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','21ca9e298c2b4e469eac9de27d00f3e1');
INSERT INTO `items` (`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`,`uuid`) values ('39353','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10495','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4bf8c167c8f743bc8a5f0adf32d546fb');
INSERT INTO `items` (`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`,`uuid`) values ('39354','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10495','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f9953f3ff399439eb71e80f410ebb4a2');
INSERT INTO `items` (`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`,`uuid`) values ('39355','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10495','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','be0690e2061e46709c35b4d1645eb4f6');
INSERT INTO `items` (`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`,`uuid`) values ('39356','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10495','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','27f4310379d14bf7bb6b30eebfabf2cc');
INSERT INTO `items` (`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`,`uuid`) values ('39357','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10495','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a75ecbdb067e4b8e89fca2c467689822');
INSERT INTO `items` (`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`,`uuid`) values ('39358','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10495','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dfa45dda12b448109f9cc04003c63812');
INSERT INTO `items` (`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`,`uuid`) values ('39359','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10495','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','65fdd09f484a4923bf5a379a9e5d5a8f');
INSERT INTO `items` (`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`,`uuid`) values ('39360','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10495','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f49f8079f71948858ae1b158b6aa186f');
INSERT INTO `items` (`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`,`uuid`) values ('39361','15','','10495','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','97ddda9d5c8542f8b5f905e4bb9d7479');
INSERT INTO `items` (`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`,`uuid`) values ('39362','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10495','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','868c3c9fe3c54e3193f3e0b6329828db');
INSERT INTO `items` (`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`,`uuid`) values ('39363','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10495','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e75b2f65357c40e487b9b9f3387fcb0a');
INSERT INTO `items` (`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`,`uuid`) values ('39385','20','1.3.6.1.4.1.14988.1.1.7.4.0','10496','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3521c975bbb443b1b66ec32ea561745f');
INSERT INTO `items` (`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`,`uuid`) values ('39386','20','1.3.6.1.2.1.1.1.0','10496','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6178d9f5c5e947fe8e3fb774cc5a373a');
INSERT INTO `items` (`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`,`uuid`) values ('39387','20','1.3.6.1.4.1.14988.1.1.7.3.0','10496','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c449cc37420643ee8493419bde54aac6');
INSERT INTO `items` (`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`,`uuid`) values ('39388','20','1.3.6.1.4.1.14988.1.1.4.4.0','10496','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','65da6e280942476e842effb8a08e2c6f');
INSERT INTO `items` (`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`,`uuid`) values ('39389','20','1.3.6.1.2.1.25.2.3.1.5.65536','10496','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b4ce328c64a2471e98a1f608028797d5');
INSERT INTO `items` (`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`,`uuid`) values ('39390','20','1.3.6.1.2.1.25.2.3.1.6.65536','10496','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9a7746065ea84c8da33740d3552c7073');
INSERT INTO `items` (`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`,`uuid`) values ('39391','15','','10496','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d294f3fa005b4c90a82fbc3fd5037fb7');
INSERT INTO `items` (`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`,`uuid`) values ('39392','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10496','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9311078329d04ea5a752806a0ee89918');
INSERT INTO `items` (`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`,`uuid`) values ('39393','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10496','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9a9de341ab9042ba93a59bc755a67d07');
INSERT INTO `items` (`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`,`uuid`) values ('39394','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10496','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','361b9a2d66864d14806c8ef41ddf958a');
INSERT INTO `items` (`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`,`uuid`) values ('39395','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10496','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2dd64ba5c59643f78d472e2281870390');
INSERT INTO `items` (`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`,`uuid`) values ('39396','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10496','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','63dc090d3529456e9e9a2eb19c288165');
INSERT INTO `items` (`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`,`uuid`) values ('39397','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10496','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ba0e7757c7b645c98b67fda025e7c1d6');
INSERT INTO `items` (`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`,`uuid`) values ('39398','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10496','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e626b00e480f4ff8a059be7e85934bf8');
INSERT INTO `items` (`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`,`uuid`) values ('39399','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10496','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','81d1874fd7d14f04b5c8511f34156869');
INSERT INTO `items` (`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`,`uuid`) values ('39400','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10496','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','544db32c591a4ed1ab8113212de6e920');
INSERT INTO `items` (`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`,`uuid`) values ('39401','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10496','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','edd3813705ad49cf84ee609e51c0b04e');
INSERT INTO `items` (`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`,`uuid`) values ('39402','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10496','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eaeb2ee093644c169dffd897c7563704');
INSERT INTO `items` (`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`,`uuid`) values ('39403','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10496','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0a022c73ee604112a46dac1d80312b35');
INSERT INTO `items` (`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`,`uuid`) values ('39404','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10496','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d51b890123044db4bbbbbb2bf8255f11');
INSERT INTO `items` (`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`,`uuid`) values ('39405','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10496','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6a60892c64f44ba39ac4db3ea3b06a76');
INSERT INTO `items` (`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`,`uuid`) values ('39406','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10496','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4c2272fcee0445d9bc1214c1ba3816bf');
INSERT INTO `items` (`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`,`uuid`) values ('39407','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10496','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','38db6983c1044493ba02a2ca204ed981');
INSERT INTO `items` (`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`,`uuid`) values ('39408','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10496','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','58ba2fb7ac314593924d11dfddf96dcc');
INSERT INTO `items` (`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`,`uuid`) values ('39409','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10496','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e6b23b9175eb4a97bce37e07d33891d0');
INSERT INTO `items` (`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`,`uuid`) values ('39410','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10496','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b80ecc7de8714f48831cf1c6bb1870b9');
INSERT INTO `items` (`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`,`uuid`) values ('39411','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10496','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8c1c9f22250c470caa565a55c70bf108');
INSERT INTO `items` (`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`,`uuid`) values ('39412','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10496','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6be247ddc3a94489b25bee5595e7efea');
INSERT INTO `items` (`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`,`uuid`) values ('39413','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10496','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1ea73c7d20834a168ebb4a5afca21e32');
INSERT INTO `items` (`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`,`uuid`) values ('39414','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10496','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','767c4c5614ff4802b8447079b31bbd42');
INSERT INTO `items` (`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`,`uuid`) values ('39415','15','','10496','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a6bdcbcf646d4735a4698ce3636ea7a1');
INSERT INTO `items` (`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`,`uuid`) values ('39416','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10496','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','05023f80d98c4234830e56c2c42059f7');
INSERT INTO `items` (`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`,`uuid`) values ('39417','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10496','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f6dd161551a0414ca51e4f7c5b1de616');
INSERT INTO `items` (`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`,`uuid`) values ('39439','20','1.3.6.1.4.1.14988.1.1.7.4.0','10497','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dd3b07cbd6d74fec88e1d371846b48a4');
INSERT INTO `items` (`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`,`uuid`) values ('39440','20','1.3.6.1.2.1.1.1.0','10497','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ea51e70e43e24056b25309ce0fa8f9d8');
INSERT INTO `items` (`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`,`uuid`) values ('39441','20','1.3.6.1.4.1.14988.1.1.7.3.0','10497','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a577dbe3cfde4294ab93e0ab114c24c7');
INSERT INTO `items` (`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`,`uuid`) values ('39442','20','1.3.6.1.4.1.14988.1.1.4.4.0','10497','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','34a57dc1a4f54f7ea156fa5c7b5f61de');
INSERT INTO `items` (`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`,`uuid`) values ('39443','20','1.3.6.1.2.1.25.2.3.1.5.65536','10497','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4d8039dcceb344dcb4de5c4895a4e199');
INSERT INTO `items` (`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`,`uuid`) values ('39444','20','1.3.6.1.2.1.25.2.3.1.6.65536','10497','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','664555ffcf5e48039bdcf98bf79247ef');
INSERT INTO `items` (`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`,`uuid`) values ('39445','15','','10497','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8aa0e7e65d12468e9fdf4e2faebd3450');
INSERT INTO `items` (`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`,`uuid`) values ('39446','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10497','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','455bfeb9d0b14c77a43129d489e3140b');
INSERT INTO `items` (`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`,`uuid`) values ('39447','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10497','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f328cfadd7c149c98d8e6694ff8a1d16');
INSERT INTO `items` (`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`,`uuid`) values ('39448','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10497','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7f462b2b67494acc8e968a38ae2949e7');
INSERT INTO `items` (`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`,`uuid`) values ('39449','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10497','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9bab04f1de2b4bb59ee2f5116b67829e');
INSERT INTO `items` (`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`,`uuid`) values ('39450','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10497','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0e917c0aa21343248fe29278d61b961a');
INSERT INTO `items` (`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`,`uuid`) values ('39451','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10497','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','edb9c0ee0f4e4de2819919ddb2a88a99');
INSERT INTO `items` (`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`,`uuid`) values ('39452','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10497','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','63c54ef0b1a54c2a9cce978a5923d83f');
INSERT INTO `items` (`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`,`uuid`) values ('39453','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10497','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e0fd55cedc7340f2a453865f02f3a668');
INSERT INTO `items` (`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`,`uuid`) values ('39454','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10497','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7c007188eb6b465c8b56f415ac1a8efc');
INSERT INTO `items` (`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`,`uuid`) values ('39455','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10497','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','219015883daa4871be424d46c4af4126');
INSERT INTO `items` (`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`,`uuid`) values ('39456','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10497','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','88a280a7905449e793add1d1217f92f9');
INSERT INTO `items` (`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`,`uuid`) values ('39457','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10497','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b04b0c8358f84225bd33ba0a4494bc91');
INSERT INTO `items` (`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`,`uuid`) values ('39458','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10497','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9600e46ee74e48b48d169399b2dda431');
INSERT INTO `items` (`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`,`uuid`) values ('39459','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10497','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','67466da7befe41a9a0a6d84b6c2508d2');
INSERT INTO `items` (`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`,`uuid`) values ('39460','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10497','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6e320401044041cda2c048b4af73fb8e');
INSERT INTO `items` (`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`,`uuid`) values ('39461','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10497','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad811b6b140844e59dd6ac2618e1b9bb');
INSERT INTO `items` (`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`,`uuid`) values ('39462','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10497','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9e3847a985c14de59faf61670478b6bf');
INSERT INTO `items` (`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`,`uuid`) values ('39463','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10497','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','51174e5e7d41479fab6b9077ef5d40d9');
INSERT INTO `items` (`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`,`uuid`) values ('39464','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10497','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd2ece0be43f48b1a390d6f44c796f4a');
INSERT INTO `items` (`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`,`uuid`) values ('39465','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10497','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b867fd906472452ba9c503fe7f82f680');
INSERT INTO `items` (`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`,`uuid`) values ('39466','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10497','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e96e64d9fe5944b4b5bb1324fb2845b0');
INSERT INTO `items` (`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`,`uuid`) values ('39467','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10497','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','720d95d0ef294d019fc91b2ed2debb14');
INSERT INTO `items` (`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`,`uuid`) values ('39468','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10497','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4d8828d7d008441fa7497dbc88d6d065');
INSERT INTO `items` (`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`,`uuid`) values ('39469','15','','10497','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6cddae4271784cc5bb19102f2f8f44a0');
INSERT INTO `items` (`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`,`uuid`) values ('39470','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10497','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','abea1d8e522a48fcb35d3b05b41cd576');
INSERT INTO `items` (`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`,`uuid`) values ('39471','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10497','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ed5fce36f7904eb7bf5929b90fd5b535');
INSERT INTO `items` (`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`,`uuid`) values ('39493','20','1.3.6.1.4.1.14988.1.1.7.4.0','10498','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c15fe701615f41809cdb9440e308339c');
INSERT INTO `items` (`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`,`uuid`) values ('39494','20','1.3.6.1.2.1.1.1.0','10498','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','10cecca7315d4732badc194787d6e58f');
INSERT INTO `items` (`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`,`uuid`) values ('39495','20','1.3.6.1.4.1.14988.1.1.7.3.0','10498','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab2590092f894a1c97787d5edb470b65');
INSERT INTO `items` (`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`,`uuid`) values ('39496','20','1.3.6.1.4.1.14988.1.1.4.4.0','10498','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0c40e8e1ccca4418b9bfc22a84c08b4e');
INSERT INTO `items` (`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`,`uuid`) values ('39497','20','1.3.6.1.2.1.25.2.3.1.5.65536','10498','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','93743e909ba5414294005084cb83fc93');
INSERT INTO `items` (`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`,`uuid`) values ('39498','20','1.3.6.1.2.1.25.2.3.1.6.65536','10498','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','039d0c2fe2224a57b77def7dd4dd2cfd');
INSERT INTO `items` (`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`,`uuid`) values ('39499','15','','10498','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bdb11b0d08184bd188276b7559286e65');
INSERT INTO `items` (`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`,`uuid`) values ('39500','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10498','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9c7a81a8e2654d58acf463a00cce14f5');
INSERT INTO `items` (`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`,`uuid`) values ('39501','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10498','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','89af9490b6c74ab8ae81630c171e4326');
INSERT INTO `items` (`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`,`uuid`) values ('39502','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10498','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','132954d3fced48d9a272be2f748c915d');
INSERT INTO `items` (`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`,`uuid`) values ('39503','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10498','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','78120670dc214ff5833e8b65c830b9bf');
INSERT INTO `items` (`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`,`uuid`) values ('39504','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10498','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','39954b6664a74494a1af7de587704e43');
INSERT INTO `items` (`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`,`uuid`) values ('39505','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10498','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c2d5d79d5dc14876ae9951c8813804cb');
INSERT INTO `items` (`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`,`uuid`) values ('39506','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10498','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e89f36e5fdfd4ff0a22370dd45a900be');
INSERT INTO `items` (`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`,`uuid`) values ('39507','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10498','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a9c3336d847a44e6b6e652e6acc6844b');
INSERT INTO `items` (`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`,`uuid`) values ('39508','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10498','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e7b3d6ee055c4aad8697c7fe6b46321f');
INSERT INTO `items` (`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`,`uuid`) values ('39509','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10498','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','caff962e717e4d2f93d2c67a59316aa6');
INSERT INTO `items` (`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`,`uuid`) values ('39510','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10498','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','53d319fb092540c490a945a1918b04a8');
INSERT INTO `items` (`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`,`uuid`) values ('39511','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10498','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1da2986f9f9542b58781f141c95a268b');
INSERT INTO `items` (`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`,`uuid`) values ('39512','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10498','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','889d3fa6f6fb416bb66be28fbe59ea1e');
INSERT INTO `items` (`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`,`uuid`) values ('39513','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10498','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4291982f94354c16812ffa4522e74a9b');
INSERT INTO `items` (`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`,`uuid`) values ('39514','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10498','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','522e6177173542d7b83e109447765c7a');
INSERT INTO `items` (`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`,`uuid`) values ('39515','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10498','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','01984514830c48d7a8b716700181bd19');
INSERT INTO `items` (`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`,`uuid`) values ('39516','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10498','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','40ba0370ec1b4432814c654bc65558fb');
INSERT INTO `items` (`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`,`uuid`) values ('39517','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10498','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9984f8a346b1452d8ccac4e471ff6a18');
INSERT INTO `items` (`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`,`uuid`) values ('39518','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10498','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','21f387d4d01d47bc98852aee0cbc3e03');
INSERT INTO `items` (`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`,`uuid`) values ('39519','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10498','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84066dd7587748e1908b38eae4029121');
INSERT INTO `items` (`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`,`uuid`) values ('39520','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10498','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7dd11163c97f4d31b46b7fade589b135');
INSERT INTO `items` (`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`,`uuid`) values ('39521','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10498','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84248b4499ec4b3399905bbb2a7d9e76');
INSERT INTO `items` (`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`,`uuid`) values ('39522','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10498','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8a7f54f2f8b747bba0de16dd53750679');
INSERT INTO `items` (`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`,`uuid`) values ('39523','15','','10498','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','836926c431cb48a9ab94ad752243a60a');
INSERT INTO `items` (`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`,`uuid`) values ('39524','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10498','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4e63d5682c0147f3a314ab6def8043b7');
INSERT INTO `items` (`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`,`uuid`) values ('39525','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10498','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c8d3e482b6a453e8f46ea59ea75445f');
INSERT INTO `items` (`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`,`uuid`) values ('39547','20','1.3.6.1.4.1.14988.1.1.7.4.0','10499','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7154ef6b0f0b4d4a99fdf1d7ec8b2262');
INSERT INTO `items` (`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`,`uuid`) values ('39548','20','1.3.6.1.2.1.1.1.0','10499','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0e326a00dadf46928949a2270a4e7619');
INSERT INTO `items` (`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`,`uuid`) values ('39549','20','1.3.6.1.4.1.14988.1.1.7.3.0','10499','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','17dd769754ca4559b53b191baa8ac571');
INSERT INTO `items` (`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`,`uuid`) values ('39550','20','1.3.6.1.4.1.14988.1.1.4.4.0','10499','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7df965b410944b07a5effd80fc3e5514');
INSERT INTO `items` (`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`,`uuid`) values ('39551','20','1.3.6.1.2.1.25.2.3.1.5.65536','10499','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3698fb3739a8435da6e40f4c2245b78e');
INSERT INTO `items` (`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`,`uuid`) values ('39552','20','1.3.6.1.2.1.25.2.3.1.6.65536','10499','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b15a14a08a06417a9ca3586754a3c968');
INSERT INTO `items` (`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`,`uuid`) values ('39553','15','','10499','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac044f3cfc33483db97ef1daecaafd6e');
INSERT INTO `items` (`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`,`uuid`) values ('39554','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10499','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8bdd4763b58b4bb5ae2cd68f28a7d5aa');
INSERT INTO `items` (`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`,`uuid`) values ('39555','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10499','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ce444de5ad9944b3bfb8dffb26e0314a');
INSERT INTO `items` (`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`,`uuid`) values ('39556','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10499','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6da7e4227e054a3ca41950f208cd8c01');
INSERT INTO `items` (`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`,`uuid`) values ('39557','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10499','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','485845b1ea494e12a042e6e55f8758bb');
INSERT INTO `items` (`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`,`uuid`) values ('39558','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10499','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e6c42eb8ef5b4827852b41e577924d82');
INSERT INTO `items` (`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`,`uuid`) values ('39559','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10499','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f26774cbab2949f69b634eb8b5821e58');
INSERT INTO `items` (`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`,`uuid`) values ('39560','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10499','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6bac0ef3a12748a5b63a7bbe39dc0a13');
INSERT INTO `items` (`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`,`uuid`) values ('39561','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10499','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cf88e868bd54481e8992495620b76886');
INSERT INTO `items` (`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`,`uuid`) values ('39562','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10499','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','401bd6a8a97643d5888157488dd9a4b6');
INSERT INTO `items` (`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`,`uuid`) values ('39563','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10499','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','82aeb0418e3445bd92a6626e75d25b7a');
INSERT INTO `items` (`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`,`uuid`) values ('39564','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10499','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','156f0fb44c0d43dba742edfd66ad7144');
INSERT INTO `items` (`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`,`uuid`) values ('39565','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10499','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','379ec65a6b9f4136950b21a9d90cc547');
INSERT INTO `items` (`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`,`uuid`) values ('39566','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10499','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f4de2c971a664990a8c6bafc42c089fd');
INSERT INTO `items` (`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`,`uuid`) values ('39567','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10499','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','de256c8eb72a457d81fb33f192320037');
INSERT INTO `items` (`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`,`uuid`) values ('39568','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10499','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dd0be192693f476e97455b7e05f85aee');
INSERT INTO `items` (`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`,`uuid`) values ('39569','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10499','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','85ae5fc4ef5e404ebd0ffcb14a14d8b7');
INSERT INTO `items` (`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`,`uuid`) values ('39570','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10499','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2412519dbd114cb3b8a16dcb8c11d087');
INSERT INTO `items` (`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`,`uuid`) values ('39571','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10499','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','01abec24a89f4112991dfb272512a716');
INSERT INTO `items` (`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`,`uuid`) values ('39572','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10499','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','de7416fa19824a9abf3223dc2dc77c26');
INSERT INTO `items` (`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`,`uuid`) values ('39573','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10499','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ead6f31f7dd74d019223d242513eaef9');
INSERT INTO `items` (`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`,`uuid`) values ('39574','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10499','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e704ea4180ed4e33ba1aee5402e01101');
INSERT INTO `items` (`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`,`uuid`) values ('39575','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10499','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aba46c2b5c614cc7873d2edaeb1d3493');
INSERT INTO `items` (`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`,`uuid`) values ('39576','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10499','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','17a2738e73924bb9928eedd098f3ba7c');
INSERT INTO `items` (`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`,`uuid`) values ('39577','15','','10499','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4110589dc6ee47bdaf23dade490edffb');
INSERT INTO `items` (`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`,`uuid`) values ('39578','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10499','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8e9bb2413bd142d194d0563590441797');
INSERT INTO `items` (`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`,`uuid`) values ('39579','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10499','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5021e0a0f78b4d6f80965efb0975fe04');
INSERT INTO `items` (`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`,`uuid`) values ('39601','20','1.3.6.1.4.1.14988.1.1.7.4.0','10500','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c3a06a34c55c42c89d9158ac8e735564');
INSERT INTO `items` (`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`,`uuid`) values ('39602','20','1.3.6.1.2.1.1.1.0','10500','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','350020213bbd4ca59fad42e8347abd67');
INSERT INTO `items` (`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`,`uuid`) values ('39603','20','1.3.6.1.4.1.14988.1.1.7.3.0','10500','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3540413716f141329c4ffadb402a051d');
INSERT INTO `items` (`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`,`uuid`) values ('39604','20','1.3.6.1.4.1.14988.1.1.4.4.0','10500','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d8413ee1e46846fabbc3f7239d74df02');
INSERT INTO `items` (`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`,`uuid`) values ('39605','20','1.3.6.1.2.1.25.2.3.1.5.65536','10500','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d80ed64a5916414091a72caf33d650ee');
INSERT INTO `items` (`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`,`uuid`) values ('39606','20','1.3.6.1.2.1.25.2.3.1.6.65536','10500','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd680110f05848aaa2754da8d00f60e4');
INSERT INTO `items` (`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`,`uuid`) values ('39607','15','','10500','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1a8c279dc19c4944804d27e0e6f7b5b3');
INSERT INTO `items` (`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`,`uuid`) values ('39608','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10500','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','41c63da374c3490ca27e7bc3298f269d');
INSERT INTO `items` (`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`,`uuid`) values ('39609','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10500','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8575e3af9dc841c489d0d72cf3880da1');
INSERT INTO `items` (`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`,`uuid`) values ('39610','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10500','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fe69d484c5734fc88eb7cb9d8e79288e');
INSERT INTO `items` (`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`,`uuid`) values ('39611','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10500','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','325f04ecd27949d6a5c486850e7d189c');
INSERT INTO `items` (`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`,`uuid`) values ('39612','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10500','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aef802a72bea446781b9456246984457');
INSERT INTO `items` (`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`,`uuid`) values ('39613','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10500','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','802b868d392d4f65bb47178566fc113c');
INSERT INTO `items` (`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`,`uuid`) values ('39614','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10500','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f72f57ef12e84957aea8cd402b3061c2');
INSERT INTO `items` (`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`,`uuid`) values ('39615','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10500','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d28ec3c6c00741eda325a53cb7e45e4d');
INSERT INTO `items` (`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`,`uuid`) values ('39616','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10500','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8fc500e6a2b743cf9c948b099839dc8a');
INSERT INTO `items` (`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`,`uuid`) values ('39617','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10500','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','511cdf90845747b5bfc43c46c245aec5');
INSERT INTO `items` (`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`,`uuid`) values ('39618','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10500','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b615320ad07f48ecbf8cae0fed33a492');
INSERT INTO `items` (`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`,`uuid`) values ('39619','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10500','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f4f48561aad24599886457011a6a4995');
INSERT INTO `items` (`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`,`uuid`) values ('39620','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10500','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f492fe605f56443d98b136a4d6d81d70');
INSERT INTO `items` (`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`,`uuid`) values ('39621','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10500','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','32b98a463dc74c11b4e1695970fca8fc');
INSERT INTO `items` (`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`,`uuid`) values ('39622','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10500','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c501d4366af34a3a8e30b6e224c3fafa');
INSERT INTO `items` (`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`,`uuid`) values ('39623','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10500','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b723d3bf59c047039fc23568f445aa98');
INSERT INTO `items` (`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`,`uuid`) values ('39624','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10500','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ba87c338496445dbc1fb2019a07941e');
INSERT INTO `items` (`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`,`uuid`) values ('39625','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10500','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3d1256ace78141cc94a8b36ddcd5578c');
INSERT INTO `items` (`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`,`uuid`) values ('39626','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10500','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c9c7f1e0788845398a415a6e649e3818');
INSERT INTO `items` (`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`,`uuid`) values ('39627','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10500','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ccaff01089e04fad846522db993649db');
INSERT INTO `items` (`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`,`uuid`) values ('39628','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10500','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','26b0c07f668e43718e6fea333f68fc63');
INSERT INTO `items` (`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`,`uuid`) values ('39629','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10500','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ea5913e43c740b19c28647eef54c3ae');
INSERT INTO `items` (`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`,`uuid`) values ('39630','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10500','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3ddfb23ff23c44ee9d9690374f82d028');
INSERT INTO `items` (`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`,`uuid`) values ('39631','15','','10500','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e97a95f91dc24615ac510da4e1e13c60');
INSERT INTO `items` (`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`,`uuid`) values ('39632','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10500','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a1838a262c5446d798d1ca6f5b9237c1');
INSERT INTO `items` (`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`,`uuid`) values ('39633','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10500','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','517b5e46327f48e9b3db685167a77d13');
INSERT INTO `items` (`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`,`uuid`) values ('39655','20','1.3.6.1.4.1.14988.1.1.7.4.0','10501','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','166760a906dd4377a9b548a4809da3fd');
INSERT INTO `items` (`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`,`uuid`) values ('39656','20','1.3.6.1.2.1.1.1.0','10501','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fd26be143fce4e5bb10c61899b518eb2');
INSERT INTO `items` (`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`,`uuid`) values ('39657','20','1.3.6.1.4.1.14988.1.1.7.3.0','10501','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','17f7aa01b647470382387fa9698bb80d');
INSERT INTO `items` (`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`,`uuid`) values ('39658','20','1.3.6.1.4.1.14988.1.1.4.4.0','10501','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6f2ceb1729884e39a364207defb39b96');
INSERT INTO `items` (`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`,`uuid`) values ('39659','20','1.3.6.1.2.1.25.2.3.1.5.65536','10501','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','efdb24ce66d8410cae4a932160c12bf2');
INSERT INTO `items` (`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`,`uuid`) values ('39660','20','1.3.6.1.2.1.25.2.3.1.6.65536','10501','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3d359d909fef46ec96fd6f66a7be6d3b');
INSERT INTO `items` (`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`,`uuid`) values ('39661','15','','10501','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ca6584d0bc71410bb93a7c295e6993b3');
INSERT INTO `items` (`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`,`uuid`) values ('39662','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10501','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c8e3efbae6ae49a19192b5df2ee9fea8');
INSERT INTO `items` (`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`,`uuid`) values ('39663','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10501','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bbef794582294a2ea1321ac233a4af43');
INSERT INTO `items` (`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`,`uuid`) values ('39664','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10501','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6db4d343f263423aa2429e64efbef34b');
INSERT INTO `items` (`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`,`uuid`) values ('39665','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10501','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b26cd292bf634d3e9c7cbf96fae9a9c1');
INSERT INTO `items` (`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`,`uuid`) values ('39666','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10501','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ddb15a63887e4581b375f8462a645c14');
INSERT INTO `items` (`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`,`uuid`) values ('39667','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10501','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a0b2f2d19eda41f78501d076da56be98');
INSERT INTO `items` (`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`,`uuid`) values ('39668','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10501','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','af98fd7de06d4f48920cbdb96f0b6165');
INSERT INTO `items` (`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`,`uuid`) values ('39669','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10501','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','53ba83109bb34b21a689cba89cd80ee2');
INSERT INTO `items` (`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`,`uuid`) values ('39670','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10501','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','351f9998f3a24e21a18570d9aa782734');
INSERT INTO `items` (`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`,`uuid`) values ('39671','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10501','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ea80b6d187a4117aea55f07c782f336');
INSERT INTO `items` (`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`,`uuid`) values ('39672','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10501','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a204035a215842089680883e013f6162');
INSERT INTO `items` (`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`,`uuid`) values ('39673','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10501','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c6fb1da5c6d642579285caf0712e870c');
INSERT INTO `items` (`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`,`uuid`) values ('39674','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10501','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','766550d88a2b46ee905b611dd2b740f8');
INSERT INTO `items` (`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`,`uuid`) values ('39675','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10501','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a5af3f3c24fa4804b7ce63e7fb377f64');
INSERT INTO `items` (`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`,`uuid`) values ('39676','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10501','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b7a7dab289b04d1baada39071b8dfeed');
INSERT INTO `items` (`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`,`uuid`) values ('39677','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10501','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7b987144335b4ba58231327e9686bfef');
INSERT INTO `items` (`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`,`uuid`) values ('39678','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10501','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fa450c03ad6f4628915bfe5148d3f159');
INSERT INTO `items` (`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`,`uuid`) values ('39679','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10501','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bba6280d021147ae98ba429ad2c58f80');
INSERT INTO `items` (`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`,`uuid`) values ('39680','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10501','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c46c846e04784177b8cfb1efb8678391');
INSERT INTO `items` (`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`,`uuid`) values ('39681','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10501','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','624a0f31d0214e968545a64d7bf14184');
INSERT INTO `items` (`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`,`uuid`) values ('39682','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10501','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','493ac987474b4d59969765d1ac7e9053');
INSERT INTO `items` (`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`,`uuid`) values ('39683','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10501','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d16e8308541043209d509d8c7f1d502c');
INSERT INTO `items` (`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`,`uuid`) values ('39684','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10501','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f8da5dbe8a684455b7e384372ede531b');
INSERT INTO `items` (`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`,`uuid`) values ('39685','15','','10501','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8a5e4dbb9a194daa918c30f2a12d8b95');
INSERT INTO `items` (`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`,`uuid`) values ('39686','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10501','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','45a98099bb5443f192d997c0207503b7');
INSERT INTO `items` (`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`,`uuid`) values ('39687','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10501','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c823bfe0913b4316b28079aecac9c5f1');
INSERT INTO `items` (`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`,`uuid`) values ('39709','20','1.3.6.1.4.1.14988.1.1.7.4.0','10502','Firmware version','system.hw.firmware','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nCurrent firmware version.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bece431938dc48d79221aae1c14bb118');
INSERT INTO `items` (`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`,`uuid`) values ('39710','20','1.3.6.1.2.1.1.1.0','10502','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d25a80f7bc97479690fcb07d44462606');
INSERT INTO `items` (`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`,`uuid`) values ('39711','20','1.3.6.1.4.1.14988.1.1.7.3.0','10502','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nRouterBOARD serial number.','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e9b1a9ee39334a7e986ca5fa85baea41');
INSERT INTO `items` (`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`,`uuid`) values ('39712','20','1.3.6.1.4.1.14988.1.1.4.4.0','10502','Operating system','system.sw.os[mtxrLicVersion.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB\r\nSoftware version.','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8a2568f84b394419b6f8ede2872dc3f1');
INSERT INTO `items` (`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`,`uuid`) values ('39713','20','1.3.6.1.2.1.25.2.3.1.5.65536','10502','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2a897066661b413fb7d0f6ae795a8b78');
INSERT INTO `items` (`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`,`uuid`) values ('39714','20','1.3.6.1.2.1.25.2.3.1.6.65536','10502','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','194e39cf188e40ba88b4c1f41b01b0c9');
INSERT INTO `items` (`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`,`uuid`) values ('39715','15','','10502','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0d8527333e0a4f509b9fe0699577b081');
INSERT INTO `items` (`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`,`uuid`) values ('39716','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10502','CPU discovery','hrProcessorLoad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','583f23a35ad84a808a6029b7a46b24fc');
INSERT INTO `items` (`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`,`uuid`) values ('39717','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]','10502','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature\r\nSince temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d37741d8f523452381e8400eb0ac11cb');
INSERT INTO `items` (`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`,`uuid`) values ('39718','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10]','10502','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature\r\nSince temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ebc661ab6f4d48da8294d4199172dc1a');
INSERT INTO `items` (`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`,`uuid`) values ('39719','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10502','LTE modem discovery','mtxrLTEModem.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e161530a74ca473993b1be2cd03a45a8');
INSERT INTO `items` (`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`,`uuid`) values ('39720','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7]','10502','AP channel discovery','mtxrWlAp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','01c811631d98499d83c296f34ce36aee');
INSERT INTO `items` (`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`,`uuid`) values ('39721','20','discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10502','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','de8845213cb14554aa0306b19c997e47');
INSERT INTO `items` (`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`,`uuid`) values ('39722','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2]','10502','Storage discovery','storage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','2','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ffe565a9cbb24c5ba7112a5db9d43231');
INSERT INTO `items` (`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`,`uuid`) values ('39723','20','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX}','10502','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a0fdf4fa043461dabd6d581ce58a8a4');
INSERT INTO `items` (`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`,`uuid`) values ('39724','20','1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}','10502','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e6290dc78db8453c94c22eee0940fc01');
INSERT INTO `items` (`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`,`uuid`) values ('39725','20','1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}','10502','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrHlTemperature Device temperature in Celsius (degrees C).\r\nMight be missing in entry models (RB750, RB450G..).\r\n\r\nReference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f1f656e272c8469b98bda73e0cc6a861');
INSERT INTO `items` (`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`,`uuid`) values ('39726','20','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX}','10502','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','534301e9868e4cd0b71d6556164b3d70');
INSERT INTO `items` (`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`,`uuid`) values ('39727','20','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX}','10502','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6b7494b2ddac49d9b72e31a1c18fc9e1');
INSERT INTO `items` (`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`,`uuid`) values ('39728','20','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX}','10502','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','1m','7d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ce8f8d1d78bd451f962cb25130f829ce');
INSERT INTO `items` (`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`,`uuid`) values ('39729','20','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX}','10502','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','1m','7d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac1f673cad3d4e45a870b09a4d33a1fa');
INSERT INTO `items` (`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`,`uuid`) values ('39730','20','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX}','10502','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c046aa8719a44d598328182e56d3162c');
INSERT INTO `items` (`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`,`uuid`) values ('39731','20','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX}','10502','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApBand','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fe51564fb48a4434875eb376ec52fd60');
INSERT INTO `items` (`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`,`uuid`) values ('39732','20','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX}','10502','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApSsid Service Set Identifier.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a8688972d13f4757b027c4f257193ff8');
INSERT INTO `items` (`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`,`uuid`) values ('39733','20','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX}','10502','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApNoiseFloor','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','10dd0b3680c04bde89d521fd8c705887');
INSERT INTO `items` (`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`,`uuid`) values ('39734','20','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX}','10502','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlApClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1a6dd112444a4c64a556dda3833fd6d2');
INSERT INTO `items` (`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`,`uuid`) values ('39735','20','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX}','10502','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c130a29f18a146d483cde32122880e23');
INSERT INTO `items` (`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`,`uuid`) values ('39736','20','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX}','10502','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMChannel','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b80079f3815c438bb45a76febc53d531');
INSERT INTO `items` (`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`,`uuid`) values ('39737','20','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX}','10502','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMRegClientCount Client established connection to AP, but didn\'t finish all authentication procedures for full connection.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1dc8656481a2470c92e97bef53f17d41');
INSERT INTO `items` (`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`,`uuid`) values ('39738','20','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}','10502','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','1m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB\r\nmtxrWlCMState Wireless interface state.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','489322ce283c434684d4f59829c257d2');
INSERT INTO `items` (`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`,`uuid`) values ('39739','15','','10502','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for Disk-{#SNMPINDEX}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','926e106ebed847cb8179f1672be567b9');
INSERT INTO `items` (`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`,`uuid`) values ('39740','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10502','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in\r\nunits of hrStorageAllocationUnits. This object is\r\nwritable to allow remote configuration of the size of\r\nthe storage area in those cases where such an\r\noperation makes sense and is possible on the\r\nunderlying system. For example, the amount of main\r\nmemory allocated to a buffer pool might be modified or\r\nthe amount of disk space allocated to virtual memory\r\nmight be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e308837cc63741b7af3175521c7a66ec');
INSERT INTO `items` (`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`,`uuid`) values ('39741','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10502','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','36d4268675794bfcba1ca0b2a586770d');
INSERT INTO `items` (`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`,`uuid`) values ('39742','19','','10503','Velocloud: System properties','velocloud.system.properties','6h','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System properties of VMware SD-WAN.','0','30d','0','',NULL,'3s','https://{$VELOCLOUD.URL}/portal/rest/systemProperty/getSystemProperties','','{ "normalize": true }','200','1','0','Content-Type: application/json\r\nAuthorization: Token {$VELOCLOUD.TOKEN}','0','1','0','0','0','0','0','1206789df5b44af7ba1c5416662344dd');
INSERT INTO `items` (`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`,`uuid`) values ('39743','21','','10503','Velocloud: Get data','velocloud.get','1m','0','0','0','4','','','','',NULL,NULL,'var params = JSON.parse(value);\r\n\r\nvar request = new HttpRequest();\r\n\r\nrequest.addHeader(\'Content-Type: application/json\');\r\nrequest.addHeader(\'Authorization: Token \' + params.token);\r\n\r\nvar response,\r\n output,\r\n error_msg = \'\',\r\n enterprises = [],\r\n edges = [],\r\n links = [],\r\n gateways = [],\r\n version = [],\r\n apps = [],\r\n appsLinks = [],\r\n edgeSDWan = [],\r\n edgeSDWanPath = [];\r\n\r\nfunction getHttpData(url, body) {\r\n response = request.post(url, body);\r\n Zabbix.log(4, \'[ SD-WAN API ] [ \' + url + \' ] Received response with status code \' + request.getStatus() + \': \' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n throw \'Failed to parse response received from SD-WAN API. Check debug log for more information.\';\r\n }\r\n }\r\n\r\n if (request.getStatus() !== 200) {\r\n if (response.error && response.error.message) {\r\n throw response.error.message;\r\n } else {\r\n throw \'Failed to receive data: invalid response status code.\';\r\n }\r\n }\r\n\r\n if (typeof (response) !== \'object\' || response === null) {\r\n throw \'Cannot process response data: received data is not an object.\';\r\n }\r\n\r\n return response;\r\n};\r\n\r\ntry {\r\n\r\n if (params.token === \'{\' + \'$VELOCLOUD.TOKEN}\') {\r\n throw \'Please change {\' + \'$VELOCLOUD.TOKEN} macro with the proper value.\';\r\n }\r\n\r\n if (params.url.indexOf(\'http://\') === -1 && params.url.indexOf(\'https://\') === -1) {\r\n params.url = \'https://\' + params.url;\r\n }\r\n\r\n if (!params.url.endsWith(\'/\')) {\r\n params.url += \'/\';\r\n }\r\n\r\n enterprises = getHttpData(params.url + \'portal/rest/monitoring/getAggregates\', \'{}\').enterprises;\r\n\r\n if (!Array.isArray(enterprises)) {\r\n throw \'Cannot process edges: enterprises is not an array.\';\r\n }\r\n\r\n links = getHttpData(params.url + \'portal/rest/monitoring/getAggregateEdgeLinkMetrics\', \'{}\');\r\n gateways = getHttpData(params.url + \'portal/rest/network/getNetworkGateways\', JSON.stringify({ with: [\'site\'] }));\r\n version = getHttpData(params.url + \'portal/rest/system/getVersionInfo\', \'{}\');\r\n\r\n for (var i in enterprises) {\r\n responseEdges = getHttpData(params.url + \'portal/rest/enterprise/getEnterpriseEdges\', JSON.stringify({ enterpriseId: enterprises[i].id, with: [\'site\'] }));\r\n edges = edges.concat(responseEdges);\r\n }\r\n\r\n if (!Array.isArray(edges)) {\r\n throw \'Cannot process edges SDWans: edges is not an array.\';\r\n }\r\n\r\n for (var i in edges) {\r\n responseEdgeSDWan = getHttpData(params.url + \'portal/rest/edge/getEdgeSDWANPeers\', JSON.stringify({ enterpriseId: edges[i].enterpriseId, edgeId: edges[i].id }));\r\n\r\n if (!Array.isArray(responseEdgeSDWan)) {\r\n throw \'Cannot process edges SDWan Path: edges SDWans is not an array.\';\r\n }\r\n\r\n for (var e in responseEdgeSDWan) {\r\n data = {\r\n \'enterpriseId\': edges[i].enterpriseId,\r\n \'edgeId\': edges[i].id,\r\n \'peerLogicalId\': responseEdgeSDWan[e].deviceLogicalId\r\n };\r\n responseEdgeSDWanPath = getHttpData(params.url + \'portal/rest/metrics/getEdgeSDWANPeerPathMetrics\', JSON.stringify(data));\r\n edgeSDWanPath = edgeSDWanPath.concat(responseEdgeSDWanPath);\r\n\r\n responseEdgeSDWan[e].edgeId = edges[i].id;\r\n responseEdgeSDWan[e].edgeName = edges[i].name;\r\n responseEdgeSDWan[e].enterpriseId = edges[i].enterpriseId;\r\n }\r\n\r\n edgeSDWan = edgeSDWan.concat(responseEdgeSDWan);\r\n }\r\n\r\n} catch (error) {\r\n error_msg = error;\r\n};\r\n\r\nreturn JSON.stringify({\r\n \'enterprises\': enterprises,\r\n \'edges\': edges,\r\n \'links\': links,\r\n \'gateways\': gateways,\r\n \'edgeSDWan\': edgeSDWan,\r\n \'edgeSDWanPath\': edgeSDWanPath,\r\n \'info\': version,\r\n \'error\': error_msg.toString()\r\n});','','0','','','','','0',NULL,'The JSON with result of Velocloud API requests.','0','30d','0','',NULL,'10s','','','','200','1','0','','0','0','0','0','0','0','0','3d96f6e755934bc8a4ee7300a165adae');
INSERT INTO `items` (`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`,`uuid`) values ('39804','5','','10047','Zabbix stats cluster','zabbix[cluster,discovery,nodes]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Zabbix cluster statistics master item.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f9d60d6dcbe14cd4aaec08aec6ca1856');
INSERT INTO `items` (`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`,`uuid`) values ('39822','5','','10047','Zabbix server: Utilization of ODBC poller data collector processes, in %','zabbix[process,odbc poller,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time ODBC poller processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f8d593ff5690419f8679a5b8303f3a66');
INSERT INTO `items` (`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`,`uuid`) values ('39826','5','','10048','Zabbix proxy: Utilization of ODBC poller data collector processes, in %','zabbix[process,odbc poller,avg,busy]','1m','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time ODBC poller processes have been busy in the last minute.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','06bdbdcfdbc04c24ad387b256e430801');
INSERT INTO `items` (`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`,`uuid`) values ('39827','19','','10504','Kubernetes API: Get API instance metrics','kubernetes.api.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get raw metrics from API instance /metrics endpoint.','0','30d','0','',NULL,'15s','{$KUBE.API.SERVER.URL}','','','200','1','0','Authorization: Bearer {$KUBE.API.TOKEN}','0','0','0','0','0','0','0','e4e3c570a55a48689c145c4a2310c597');
INSERT INTO `items` (`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`,`uuid`) values ('39861','15','','10504','Kubernetes API: ["{#VERB}"] Requests, p90','kubernetes.api.request_duration_seconds_p90["{#VERB}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.api.request_duration_seconds_bucket[*,"{#VERB}"],5m,90)','','0','','','','','2',NULL,'90 percentile of response latency distribution in seconds for each verb.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','12d65aff584e459586284967e570fc0a');
INSERT INTO `items` (`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`,`uuid`) values ('39862','15','','10504','Kubernetes API: ["{#VERB}"] Requests, p50','kubernetes.api.request_duration_seconds_p50["{#VERB}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.api.request_duration_seconds_bucket[*,"{#VERB}"],5m,50)','','0','','','','','2',NULL,'50 percentile of response latency distribution in seconds for each verb.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','a4f39bb87ef248edbb578c0c89baba46');
INSERT INTO `items` (`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`,`uuid`) values ('39863','15','','10504','Kubernetes API: ["{#VERB}"] Requests, p95','kubernetes.api.request_duration_seconds_p95["{#VERB}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.api.request_duration_seconds_bucket[*,"{#VERB}"],5m,95)','','0','','','','','2',NULL,'95 percentile of response latency distribution in seconds for each verb.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','3e900f1e4cab4edba4d068f1b6759428');
INSERT INTO `items` (`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`,`uuid`) values ('39864','15','','10504','Kubernetes API: ["{#VERB}"] Requests, p99','kubernetes.api.request_duration_seconds_p99["{#VERB}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.api.request_duration_seconds_bucket[*,"{#VERB}"],5m,99)','','0','','','','','2',NULL,'99 percentile of response latency distribution in seconds for each verb.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','a34c3c5f5f844c46a4d3f148cacd3fd3');
INSERT INTO `items` (`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`,`uuid`) values ('39876','19','','10505','Kubernetes Controller: Get Controller metrics','kubernetes.controller.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get raw metrics from Controller instance /metrics endpoint.','0','30d','0','',NULL,'15s','{$KUBE.CONTROLLER.SERVER.URL}','','','200','1','0','Authorization: Bearer {$KUBE.API.TOKEN}','0','0','0','0','0','0','0','c684929ea8444a6aa24f1fb80812a6eb');
INSERT INTO `items` (`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`,`uuid`) values ('39890','15','','10505','Kubernetes Controller Manager: ["{#NAME}"]: Workqueue queue duration, p90','kubernetes.controller.workqueue_queue_duration_seconds_p90["{#NAME}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.controller.queue_duration_seconds_bucket[*,"{#NAME}"],5m,90)','','0','','','','','2',NULL,'90 percentile of how long in seconds an item stays in workqueue before being requested, by queue.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','9f976d181b7f4776a271e683d9efd396');
INSERT INTO `items` (`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`,`uuid`) values ('39891','15','','10505','Kubernetes Controller Manager: ["{#NAME}"]: Workqueue queue duration, 50p','kubernetes.controller.workqueue_queue_duration_seconds_p50["{#NAME}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.controller.queue_duration_seconds_bucket[*,"{#NAME}"],5m,50)','','0','','','','','2',NULL,'50 percentile of how long in seconds an item stays in workqueue before being requested. If there are no requests for 5 minute, item value will be discarded.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','0657d0741d5649a2b0ad87c2f39dc243');
INSERT INTO `items` (`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`,`uuid`) values ('39892','15','','10505','Kubernetes Controller Manager: ["{#NAME}"]: Workqueue queue duration, p95','kubernetes.controller.workqueue_queue_duration_seconds_p95["{#NAME}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.controller.queue_duration_seconds_bucket[*,"{#NAME}"],5m,95)','','0','','','','','2',NULL,'95 percentile of how long in seconds an item stays in workqueue before being requested, by queue.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','ce4b9daa161742ffb6fec0790c1dc689');
INSERT INTO `items` (`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`,`uuid`) values ('39893','15','','10505','Kubernetes Controller Manager: ["{#NAME}"]: Workqueue queue duration, p99','kubernetes.controller.workqueue_queue_duration_seconds_p99["{#NAME}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.controller.queue_duration_seconds_bucket[*,"{#NAME}"],5m,99)','','0','','','','','2',NULL,'99 percentile of how long in seconds an item stays in workqueue before being requested, by queue.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','61d5f616cc474ae3adfcbd1a15fdd607');
INSERT INTO `items` (`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`,`uuid`) values ('39894','15','','10505','Kubernetes Controller Manager: ["{#NAME}"]: Workqueue work duration, 50p','kubernetes.controller.workqueue_work_duration_seconds_p50["{#NAME}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.controller.duration_seconds_bucket[*,"{#NAME}"],5m,50)','','0','','','','','2',NULL,'50 percentiles of how long in seconds processing an item from workqueue takes, by queue.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','68efc8bc4fec458384e21b7b19db696c');
INSERT INTO `items` (`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`,`uuid`) values ('39895','15','','10505','Kubernetes Controller Manager: ["{#NAME}"]: Workqueue work duration, p90','kubernetes.controller.workqueue_work_duration_seconds_p90["{#NAME}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.controller.duration_seconds_bucket[*,"{#NAME}"],5m,90)','','0','','','','','2',NULL,'90 percentile of how long in seconds processing an item from workqueue takes, by queue.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','ff4f4b222dfd47f69b96513fed4393f5');
INSERT INTO `items` (`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`,`uuid`) values ('39896','15','','10505','Kubernetes Controller Manager: ["{#NAME}"]: Workqueue work duration, p95','kubernetes.controller.workqueue_work_duration_seconds_p95["{#NAME}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.controller.duration_seconds_bucket[*,"{#NAME}"],5m,95)','','0','','','','','2',NULL,'95 percentile of how long in seconds processing an item from workqueue takes, by queue.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','34a688601a404d63aea3a774a9f5970a');
INSERT INTO `items` (`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`,`uuid`) values ('39897','15','','10505','Kubernetes Controller Manager: ["{#NAME}"]: Workqueue work duration, p99','kubernetes.controller.workqueue_work_duration_seconds_p99["{#NAME}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.controller.duration_seconds_bucket[*,"{#NAME}"],5m,99)','','0','','','','','2',NULL,'99 percentile of how long in seconds processing an item from workqueue takes, by queue.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','e5b4ea49906e4a12b01757854a5766a4');
INSERT INTO `items` (`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`,`uuid`) values ('39905','19','','10506','Kubernetes: Get cadvisor metrics','kube.cadvisor.metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collecting raw Kubelet metrics from /metrics/cadvisor endpoint.','0','30d','0','',NULL,'10s','{$KUBE.KUBELET.URL}{$KUBE.KUBELET.CADVISOR.ENDPOINT}','','','200, 403','1','0','Authorization: Bearer {$KUBE.API.TOKEN}','0','0','0','0','0','0','0','1f94bbb521cb41dfa093e1408efbb15a');
INSERT INTO `items` (`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`,`uuid`) values ('39906','19','','10506','Kubernetes: Get kubelet metrics','kube.kubelet.metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collecting raw Kubelet metrics from /metrics endpoint.','0','30d','0','',NULL,'10s','{$KUBE.KUBELET.URL}{$KUBE.KUBELET.METRIC.ENDPOINT}','','','200, 403','1','0','Authorization: Bearer {$KUBE.API.TOKEN}','0','0','0','0','0','0','0','c71fc79a77104ef4a0d6b89d5f7b7bad');
INSERT INTO `items` (`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`,`uuid`) values ('39907','19','','10506','Kubernetes: Get pods','kube.pods','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collecting raw Kubelet metrics from /pods endpoint.','0','30d','0','',NULL,'10s','{$KUBE.KUBELET.URL}{$KUBE.KUBELET.PODS.ENDPOINT}','','','200, 403','1','0','Authorization: Bearer {$KUBE.API.TOKEN}','0','0','0','0','0','0','0','7c8cc6c3ed8e412eb69e7ab8e2fe7e12');
INSERT INTO `items` (`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`,`uuid`) values ('39921','15','','10506','Kubernetes: [{#OP_TYPE}] Operations, p50','kube.kublet.runtime_ops_duration_seconds_p50["{#OP_TYPE}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kube.kublet.runtime_ops_duration_seconds_bucket[*,"{#OP_TYPE}"],5m,50)','','0','','','','','2',NULL,'50 percentile of operation latency distribution in seconds for each verb.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','3d9545d396b24ef6b87eb730ad93cda7');
INSERT INTO `items` (`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`,`uuid`) values ('39922','15','','10506','Kubernetes: [{#OP_TYPE}] Operations, p90','kube.kublet.runtime_ops_duration_seconds_p90["{#OP_TYPE}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kube.kublet.runtime_ops_duration_seconds_bucket[*,"{#OP_TYPE}"],5m,90)','','0','','','','','2',NULL,'90 percentile of operation latency distribution in seconds for each verb.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','039a47a0b20741e79701fecb924e6a08');
INSERT INTO `items` (`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`,`uuid`) values ('39923','15','','10506','Kubernetes: [{#OP_TYPE}] Operations, p95','kube.kublet.runtime_ops_duration_seconds_p95["{#OP_TYPE}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kube.kublet.runtime_ops_duration_seconds_bucket[*,"{#OP_TYPE}"],5m,95)','','0','','','','','2',NULL,'95 percentile of operation latency distribution in seconds for each verb.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','e846265636ac433ba2bce034aca1e394');
INSERT INTO `items` (`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`,`uuid`) values ('39924','15','','10506','Kubernetes: [{#OP_TYPE}] Operations, p99','kube.kublet.runtime_ops_duration_seconds_p99["{#OP_TYPE}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kube.kublet.runtime_ops_duration_seconds_bucket[*,"{#OP_TYPE}"],5m,99)','','0','','','','','2',NULL,'99 percentile of operation latency distribution in seconds for each verb.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','68f17a6132dd48deb3825efd2b83b6ce');
INSERT INTO `items` (`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`,`uuid`) values ('39937','21','','10507','Kubernetes: Get nodes','kube.nodes','0;s00','0','0','0','4','','','','',NULL,NULL,'var Kube = {\r\n params: {},\r\n pods_limit: 1000,\r\n\r\n setParams: function (params) {\r\n [\'api_endpoint\', \'token\', \'endpoint_name\'].forEach(function (field) {\r\n if (typeof params !== \'object\' || typeof params[field] === \'undefined\'\r\n || params[field] === \'\') {\r\n throw \'Required param is not set: "\' + field + \'".\';\r\n }\r\n });\r\n\r\n Kube.params = params;\r\n if (typeof Kube.params.api_endpoint === \'string\' && !Kube.params.api_endpoint.endsWith(\'/\')) {\r\n Kube.params.api_endpoint += \'/\';\r\n }\r\n },\r\n\r\n request: function (query) {\r\n var response,\r\n request = new HttpRequest(),\r\n url = Kube.params.api_endpoint + query;\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Authorization: Bearer \' + Kube.params.token);\r\n\r\n Zabbix.log(4, \'[ Kubernetes ] Sending request: \' + url);\r\n\r\n response = request.get(url);\r\n\r\n Zabbix.log(4, \'[ Kubernetes ] Received response with status code \' + request.getStatus() + \': \' + response);\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n throw \'Request failed with status code \' + request.getStatus() + \': \' + response;\r\n }\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n throw \'Failed to parse response received from Kubernetes API. Check debug log for more information.\';\r\n }\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n getNodes: function () {\r\n var result = Kube.request(\'v1/nodes\');\r\n\r\n if (typeof result.response !== \'object\'\r\n || typeof result.response.items === \'undefined\'\r\n || result.status != 200) {\r\n throw \'Cannot get nodes from Kubernetes API. Check debug log for more information.\';\r\n };\r\n\r\n return result.response;\r\n },\r\n\r\n getPods: function () {\r\n var result = [],\r\n continue_token;\r\n\r\n while (continue_token !== \'\') {\r\n var data = Kube.request(\'v1/pods?limit=\' + Kube.pods_limit\r\n + ((typeof continue_token !== \'undefined\') ? \'&continue=\' + continue_token : \'\'));\r\n\r\n if (typeof data.response !== \'object\'\r\n || typeof data.response.items === \'undefined\'\r\n || data.status != 200) {\r\n throw \'Cannot get pods from Kubernetes API. Check debug log for more information.\';\r\n };\r\n\r\n result.push.apply(result, data.response.items);\r\n continue_token = data.response.metadata.continue || \'\';\r\n }\r\n\r\n return result;\r\n },\r\n\r\n getEndpointIPs: function () {\r\n var result = Kube.request(\'v1/endpoints\'),\r\n epIPs = {};\r\n\r\n if (typeof result.response !== \'object\'\r\n || typeof result.response.items === \'undefined\'\r\n || result.status != 200) {\r\n throw \'Cannot get endpoints from Kubernetes API. Check debug log for more information.\';\r\n };\r\n\r\n result.response.items.forEach(function (ep) {\r\n if (ep.metadata.name === Kube.params.endpoint_name && Array.isArray(ep.subsets)) {\r\n ep.subsets.forEach(function (subset) {\r\n if (Array.isArray(subset.addresses)) {\r\n subset.addresses.forEach(function (addr) {\r\n epIPs[addr.ip] = \'\';\r\n });\r\n }\r\n });\r\n }\r\n });\r\n\r\n return epIPs;\r\n }\r\n },\r\n\r\n Fmt = {\r\n factors: {\r\n Ki: 1024, K: 1000,\r\n Mi: 1024 ** 2, M: 1000 ** 2,\r\n Gi: 1024 ** 3, G: 1000 ** 3,\r\n Ti: 1024 ** 4, T: 1000 ** 4,\r\n },\r\n\r\n cpuFormat: function (cpu) {\r\n if (typeof cpu === \'undefined\') {\r\n return 0;\r\n }\r\n\r\n if (cpu.indexOf(\'m\') > -1) {\r\n return parseInt(cpu) / 1000;\r\n }\r\n\r\n return parseInt(cpu);\r\n },\r\n\r\n memoryFormat: function (mem) {\r\n if (typeof mem === \'undefined\') {\r\n return 0;\r\n }\r\n\r\n var pair,\r\n factor;\r\n\r\n if (pair = mem.match(/(\\d+)(\\w*)/)) {\r\n if (factor = Fmt.factors[pair[2]]) {\r\n return parseInt(pair[1]) * factor;\r\n }\r\n\r\n return mem;\r\n }\r\n\r\n return parseInt(mem);\r\n }\r\n\r\n }\r\n\r\n try {\r\n Kube.setParams(JSON.parse(value));\r\n\r\n var nodes = Kube.getNodes(),\r\n pods = Kube.getPods(),\r\n epIPs = Kube.getEndpointIPs();\r\n\r\n for (idx in nodes.items) {\r\n var internalIP,\r\n nodePodsCount = 0,\r\n nodePods = [],\r\n roles = [];\r\n\r\n Object.keys(nodes.items[idx].metadata.labels).forEach(function (label) {\r\n var splitLabel = label.match(/^node-role.kubernetes.io\\/([\\w\\.-]+)/);\r\n\r\n if (splitLabel) {\r\n roles.push(splitLabel[1]);\r\n }\r\n });\r\n\r\n var internalIPs = nodes.items[idx].status.addresses.filter(function (addr) {\r\n return addr.type === \'InternalIP\';\r\n });\r\n\r\n var internalIP = internalIPs.length && internalIPs[0].address;\r\n\r\n pods.forEach(function (pod) {\r\n var containers = {\r\n limits: { cpu: 0, memory: 0 },\r\n requests: { cpu: 0, memory: 0 },\r\n restartCount: 0\r\n }\r\n\r\n if (pod.status.hostIP === internalIP) {\r\n pod.spec.containers.forEach(function (container) {\r\n var limits = container.resources.limits,\r\n requests = container.resources.requests;\r\n\r\n nodePodsCount++;\r\n\r\n if (typeof limits !== \'undefined\') {\r\n containers.limits.cpu += Fmt.cpuFormat(limits.cpu);\r\n containers.limits.memory += Fmt.memoryFormat(limits.memory);\r\n }\r\n\r\n if (typeof requests !== \'undefined\') {\r\n containers.requests.cpu += Fmt.cpuFormat(requests.cpu);\r\n containers.requests.memory += Fmt.memoryFormat(requests.memory);\r\n }\r\n });\r\n\r\n pod.status.containerStatuses.forEach(function (container) {\r\n containers.restartCount += container.restartCount;\r\n });\r\n\r\n nodePods.push({\r\n name: pod.metadata.name,\r\n namespace: pod.metadata.namespace,\r\n labels: pod.metadata.labels,\r\n annotations: pod.metadata.annotations,\r\n phase: pod.status.phase,\r\n conditions: pod.status.conditions,\r\n startTime: pod.status.startTime,\r\n containers: containers\r\n })\r\n }\r\n })\r\n delete nodes.items[idx].metadata.managedFields;\r\n delete nodes.items[idx].status.images;\r\n\r\n nodes.items[idx].status.capacity.cpu = Fmt.cpuFormat(nodes.items[idx].status.capacity.cpu);\r\n nodes.items[idx].status.capacity.memory = Fmt.memoryFormat(nodes.items[idx].status.capacity.memory);\r\n nodes.items[idx].status.allocatable.cpu = Fmt.cpuFormat(nodes.items[idx].status.allocatable.cpu);\r\n nodes.items[idx].status.allocatable.memory = Fmt.memoryFormat(nodes.items[idx].status.allocatable.memory);\r\n\r\n nodes.items[idx].status.podsCount = nodePodsCount;\r\n nodes.items[idx].status.roles = roles.join(\', \');\r\n nodes.items[idx].pods = nodePods;\r\n }\r\n\r\n nodes.endpointIPs = epIPs;\r\n\r\n return JSON.stringify(nodes);\r\n }\r\n catch (error) {\r\n error += (String(error).endsWith(\'.\')) ? \'\' : \'.\';\r\n Zabbix.log(3, \'[ Kubernetes ] ERROR: \' + error);\r\n return JSON.stringify({ error: error });\r\n }','','0','','','','','0',NULL,'Collecting and processing cluster nodes data via Kubernetes API.','0','30d','0','',NULL,'10s','','','','200','1','0','','0','0','0','0','0','0','0','70dab03a327a4dc0ab9fe8031052584d');
INSERT INTO `items` (`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`,`uuid`) values ('39978','19','','10509','Kubernetes Scheduler: Get Scheduler metrics','kubernetes.scheduler.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get raw metrics from Scheduler instance /metrics endpoint.','0','30d','0','',NULL,'15s','{$KUBE.SCHEDULER.SERVER.URL}','','','200','1','0','Authorization: Bearer {$KUBE.API.TOKEN}','0','0','0','0','0','0','0','2534eacdaf9b44d68388b366da40af59');
INSERT INTO `items` (`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`,`uuid`) values ('40003','15','','10509','Kubernetes Scheduler: ["{#RESULT}"]: e2e scheduling, p90','kubernetes.scheduler.e2e_scheduling_p90["{#RESULT}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.e2e_scheduling_bucket[*,"{#RESULT}"],5m,90)','','0','','','','','2',NULL,'90 percentile of e2e scheduling latency.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','01edd56cd1c94d4b80589d91349e4be5');
INSERT INTO `items` (`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`,`uuid`) values ('40004','15','','10509','Kubernetes Scheduler: ["{#RESULT}"]: e2e scheduling, p50','kubernetes.scheduler.e2e_scheduling_p50["{#RESULT}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.e2e_scheduling_bucket[*,"{#RESULT}"],5m,50)','','0','','','','','2',NULL,'50 percentile of e2e scheduling latency.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','b8fd5b4454484f4298e2c2b1e5c832c5');
INSERT INTO `items` (`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`,`uuid`) values ('40005','15','','10509','Kubernetes Scheduler: ["{#RESULT}"]: e2e scheduling, p95','kubernetes.scheduler.e2e_scheduling_p95["{#RESULT}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.e2e_scheduling_bucket[*,"{#RESULT}"],5m,95)','','0','','','','','2',NULL,'95 percentile of e2e scheduling latency.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','706fc27da4d34a4e9189c566c7aa96ff');
INSERT INTO `items` (`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`,`uuid`) values ('40006','15','','10509','Kubernetes Scheduler: ["{#RESULT}"]: e2e scheduling, p99','kubernetes.scheduler.e2e_scheduling_p99["{#RESULT}"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.e2e_scheduling_bucket[*,"{#RESULT}"],5m,99)','','0','','','','','2',NULL,'95 percentile of e2e scheduling latency.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','829627aeab764590b3a17e6b10c56709');
INSERT INTO `items` (`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`,`uuid`) values ('40010','19','','10510','Kubernetes: Get component statuses','kube.componentstatuses','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'10s','{$KUBE.API.URL}{$KUBE.API.COMPONENTSTATUSES.ENDPOINT}','','','200, 403','1','0','Authorization: Bearer {$KUBE.API.TOKEN}','0','0','0','0','0','0','0','41c79d9286734cc3b0e3aa5ef729e5fe');
INSERT INTO `items` (`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`,`uuid`) values ('40011','21','','10510','Kubernetes: Control plane LLD','kube.control_plane.lld','1m','0','0','0','4','','','','',NULL,NULL,'var Kube = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n [\'api_endpoint\', \'token\'].forEach(function (field) {\r\n if (typeof params !== \'object\' || typeof params[field] === \'undefined\'\r\n || params[field] === \'\') {\r\n throw \'Required param is not set: "\' + field + \'".\';\r\n }\r\n });\r\n\r\n Kube.params = params;\r\n if (typeof Kube.params.api_endpoint === \'string\' && !Kube.params.api_endpoint.endsWith(\'/\')) {\r\n Kube.params.api_endpoint += \'/\';\r\n }\r\n },\r\n\r\n request: function (query) {\r\n var response,\r\n request = new HttpRequest(),\r\n url = Kube.params.api_endpoint + query;\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Authorization: Bearer \' + Kube.params.token);\r\n\r\n Zabbix.log(4, \'[ Kubernetes ] Sending request: \' + url);\r\n\r\n response = request.get(url);\r\n\r\n Zabbix.log(4, \'[ Kubernetes ] Received response with status code \' + request.getStatus() + \': \' + response);\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n throw \'Request failed with status code \' + request.getStatus() + \': \' + response;\r\n }\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n throw \'Failed to parse response received from Kubernetes API. Check debug log for more information.\';\r\n }\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n getNodes: function () {\r\n var result = Kube.request(\'v1/nodes\');\r\n\r\n if (typeof result.response !== \'object\'\r\n || typeof result.response.items === \'undefined\'\r\n || result.status != 200) {\r\n throw \'Cannot get nodes from Kubernetes API. Check debug log for more information.\';\r\n };\r\n\r\n return result.response;\r\n },\r\n};\r\n\r\ntry {\r\n Kube.setParams(JSON.parse(value));\r\n\r\n var nodes = Kube.getNodes(),\r\n controlPlaneNodes = [],\r\n api_url = \'{$KUBE.API.URL}\',\r\n hostname = api_url.match(/\\/\\/(.+):/);\r\n\r\n if (typeof hostname[1] === \'undefined\') {\r\n Zabbix.log(4, \'[ Kubernetes ] Received incorrect Kubernetes API url: \' + api_url + \'. Expected format: ://:\');\r\n throw \'Cannot get hostname from Kubernetes API url. Check debug log for more information.\';\r\n };\r\n\r\n for (idx in nodes.items) {\r\n for (label in nodes.items[idx].metadata.labels) {\r\n if (label === \'node-role.kubernetes.io/control-plane\') { \r\n var internalIPs = nodes.items[idx].status.addresses.filter(function (addr) {\r\n return addr.type === \'InternalIP\';\r\n });\r\n\r\n var internalIP = internalIPs.length && internalIPs[0].address;\r\n controlPlaneNodes.push({\r\n \'{#NAME}\': nodes.items[idx].metadata.name,\r\n \'{#IP}\': internalIP,\r\n \'{#KUBE.API.SERVER.URL}\': Kube.params.api_server_scheme + \'://\' + ((/(\\d+.){3}\\d+/.test(internalIP)) ? internalIP : \'[\'+internalIP+\']\') + \':\' + Kube.params.api_server_port + \'/metrics\',\r\n \'{#KUBE.CONTROLLER.SERVER.URL}\': Kube.params.controller_scheme + \'://\' + ((/(\\d+.){3}\\d+/.test(internalIP)) ? internalIP : \'[\'+internalIP+\']\') + \':\' + Kube.params.controller_port + \'/metrics\',\r\n \'{#KUBE.SCHEDULER.SERVER.URL}\': Kube.params.scheduler_scheme + \'://\' + ((/(\\d+.){3}\\d+/.test(internalIP)) ? internalIP : \'[\'+internalIP+\']\') + \':\' + Kube.params.scheduler_port + \'/metrics\',\r\n \'{#COMPONENT.API}\' : \'API\',\r\n \'{#COMPONENT.CONTROLLER}\' : \'Controller manager\',\r\n \'{#COMPONENT.SCHEDULER}\' : \'Scheduler\',\r\n \'{#CLUSTER_HOSTNAME}\': hostname[1]\r\n });\r\n\r\n break;\r\n }\r\n }\r\n }\r\n\r\n return JSON.stringify(controlPlaneNodes);\r\n}\r\ncatch (error) {\r\n error += (String(error).endsWith(\'.\')) ? \'\' : \'.\';\r\n Zabbix.log(3, \'[ Kubernetes ] ERROR: \' + error);\r\n return JSON.stringify({ error: error });\r\n}','','0','','','','','0',NULL,'Generation of data for Control plane discovery rules.','0','30d','0','',NULL,'10s','','','','200','1','0','','0','0','0','0','0','0','0','e40b126a0cf64ce6bfed3b3de1d4dfa8');
INSERT INTO `items` (`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`,`uuid`) values ('40012','19','','10510','Kubernetes: Get livez','kube.livez','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'10s','{$KUBE.API.URL}{$KUBE.API.LIVEZ.ENDPOINT}?verbose','','','200, 403','1','0','Authorization: Bearer {$KUBE.API.TOKEN}','0','0','0','0','0','0','0','d731fb05f0284921ab3548ba631f019c');
INSERT INTO `items` (`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`,`uuid`) values ('40013','19','','10510','Kubernetes: Get readyz','kube.readyz','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'10s','{$KUBE.API.URL}{$KUBE.API.READYZ.ENDPOINT}?verbose','','','200, 403','1','0','Authorization: Bearer {$KUBE.API.TOKEN}','0','0','0','0','0','0','0','3a5eaef4e8134dfb9f2935f98a8b88f7');
INSERT INTO `items` (`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`,`uuid`) values ('40014','21','','10510','Kubernetes: Get state metrics','kube.state.metrics','1m','0','0','0','4','','','','',NULL,NULL,'var Kube = {\r\n params: {},\r\n metrics_endpoint: undefined,\r\n\r\n setParams: function (params) {\r\n [\'api_endpoint\', \'token\', \'state_endpoint_name\'].forEach(function (field) {\r\n if (typeof params !== \'object\' || typeof params[field] === \'undefined\'\r\n || params[field] === \'\') {\r\n throw \'Required param is not set: "\' + field + \'".\';\r\n }\r\n });\r\n\r\n Kube.params = params;\r\n if (typeof Kube.params.api_endpoint === \'string\' && !Kube.params.api_endpoint.endsWith(\'/\')) {\r\n Kube.params.api_endpoint += \'/\';\r\n }\r\n },\r\n\r\n apiRequest: function (query) {\r\n var response,\r\n request = new HttpRequest(),\r\n url = Kube.params.api_endpoint + query;\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Authorization: Bearer \' + Kube.params.token);\r\n\r\n Zabbix.log(4, \'[ Kubernetes ] Sending request: \' + url);\r\n\r\n response = request.get(url);\r\n\r\n Zabbix.log(4, \'[ Kubernetes ] Received response with status code \' + request.getStatus() + \': \' + response);\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n throw \'Request failed with status code \' + request.getStatus() + \': \' + response;\r\n }\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n throw \'Failed to parse response received from Kubernetes API. Check debug log for more information.\';\r\n }\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n getMetricsEndpoint: function () {\r\n var result = Kube.apiRequest(\'v1/endpoints\'),\r\n endpoint = undefined;\r\n\r\n if (typeof result.response !== \'object\'\r\n || typeof result.response.items === \'undefined\'\r\n || result.status != 200) {\r\n throw \'Cannot get endpoints from Kubernetes API. Check debug log for more information.\';\r\n };\r\n\r\n result.response.items.forEach(function (ep) {\r\n if (ep.metadata.name === Kube.params.state_endpoint_name && Array.isArray(ep.subsets)) {\r\n if (typeof ep.subsets[0].addresses !== \'undefined\') {\r\n var subset = ep.subsets[0];\r\n\r\n endpoint = {\r\n address: subset.addresses[0].ip,\r\n port: port = subset.ports.filter(function (port) {\r\n return port.name === \'http\';\r\n })[0].port || 8080\r\n }\r\n }\r\n }\r\n });\r\n\r\n Kube.metrics_endpoint = endpoint;\r\n return endpoint;\r\n },\r\n\r\n getStateMetrics: function () {\r\n if (typeof Kube.metrics_endpoint === \'undefined\') {\r\n throw \'Cannot get kube-state-metrics endpoints from Kubernetes API. Check debug log for more information.\';\r\n }\r\n\r\n var response,\r\n request = new HttpRequest(),\r\n url = \'http://\' + Kube.metrics_endpoint.address + \':\' + Kube.metrics_endpoint.port + \'/metrics\';\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Authorization: Bearer \' + Kube.params.token);\r\n\r\n Zabbix.log(4, \'[ Kubernetes ] Sending request: \' + url);\r\n\r\n response = request.get(url);\r\n\r\n Zabbix.log(4, \'[ Kubernetes ] Received response with status code \' + request.getStatus() + \': \' + response);\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n throw \'Request failed with status code \' + request.getStatus() + \': \' + response;\r\n }\r\n\r\n if (response === null) {\r\n throw \'failed to get Kubernetes state metrics. Check debug log for more information.\';\r\n }\r\n\r\n return response;\r\n\r\n }\r\n};\r\n\r\ntry {\r\n Kube.setParams(JSON.parse(value));\r\n\r\n var metricsEndpoint = Kube.getMetricsEndpoint(),\r\n stateMetrics = Kube.getStateMetrics();\r\n\r\n return stateMetrics;\r\n}\r\ncatch (error) {\r\n error += (String(error).endsWith(\'.\')) ? \'\' : \'.\';\r\n Zabbix.log(3, \'[ Kubernetes ] ERROR: \' + error);\r\n return JSON.stringify({ error: error });\r\n}','','0','','','','','0',NULL,'Collecting Kubernetes metrics from kube-state-metrics.','0','30d','0','',NULL,'10s','','','','200','1','0','','0','0','0','0','0','0','0','66e69f9970ce478f8f0ff13f26b248e3');
INSERT INTO `items` (`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`,`uuid`) values ('40015','21','','10510','Kubernetes: Node LLD','kube.node.lld','1m','0','0','0','4','','','','',NULL,NULL,'var Kube = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n [\'api_endpoint\', \'token\'].forEach(function (field) {\r\n if (typeof params !== \'object\' || typeof params[field] === \'undefined\'\r\n || params[field] === \'\') {\r\n throw \'Required param is not set: "\' + field + \'".\';\r\n }\r\n });\r\n\r\n Kube.params = params;\r\n if (typeof Kube.params.api_endpoint === \'string\' && !Kube.params.api_endpoint.endsWith(\'/\')) {\r\n Kube.params.api_endpoint += \'/\';\r\n }\r\n },\r\n\r\n request: function (query) {\r\n var response,\r\n request = new HttpRequest(),\r\n url = Kube.params.api_endpoint + query;\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Authorization: Bearer \' + Kube.params.token);\r\n\r\n Zabbix.log(4, \'[ Kubernetes ] Sending request: \' + url);\r\n\r\n response = request.get(url);\r\n\r\n Zabbix.log(4, \'[ Kubernetes ] Received response with status code \' + request.getStatus() + \': \' + response);\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n throw \'Request failed with status code \' + request.getStatus() + \': \' + response;\r\n }\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n throw \'Failed to parse response received from Kubernetes API. Check debug log for more information.\';\r\n }\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n getNodes: function () {\r\n var result = Kube.request(\'v1/nodes\');\r\n\r\n if (typeof result.response !== \'object\'\r\n || typeof result.response.items === \'undefined\'\r\n || result.status != 200) {\r\n throw \'Cannot get nodes from Kubernetes API. Check debug log for more information.\';\r\n };\r\n\r\n return result.response;\r\n },\r\n};\r\n\r\ntry {\r\n Kube.setParams(JSON.parse(value));\r\n\r\n var nodes = Kube.getNodes(),\r\n kubeNodes = [];\r\n api_url = \'{$KUBE.API.URL}\',\r\n hostname = api_url.match(/\\/\\/(.+):/);\r\n\r\n if (typeof hostname[1] === \'undefined\') {\r\n Zabbix.log(4, \'[ Kubernetes ] Received incorrect Kubernetes API url: \' + api_url + \'. Expected format: ://:\');\r\n throw \'Cannot get hostname from Kubernetes API url. Check debug log for more information.\';\r\n };\r\n for (idx in nodes.items) {\r\n var internalIPs = nodes.items[idx].status.addresses.filter(function (addr) {\r\n return addr.type === \'InternalIP\';\r\n });\r\n\r\n var internalIP = internalIPs.length && internalIPs[0].address;\r\n\r\n kubeNodes.push({\r\n \'{#NAME}\': nodes.items[idx].metadata.name,\r\n \'{#IP}\': internalIP,\r\n \'{#KUBE.KUBELET.URL}\': Kube.params.kubelet_scheme + \'://\' + ((/(\\d+.){3}\\d+/.test(internalIP)) ? internalIP : \'[\'+internalIP+\']\') + \':\' + Kube.params.kubelet_port,\r\n \'{#COMPONENT}\': \'Kubelet\',\r\n \'{#CLUSTER_HOSTNAME}\': hostname[1]\r\n });\r\n }\r\n\r\n return JSON.stringify(kubeNodes);\r\n}\r\ncatch (error) {\r\n error += (String(error).endsWith(\'.\')) ? \'\' : \'.\';\r\n Zabbix.log(3, \'[ Kubernetes ] ERROR: \' + error);\r\n return JSON.stringify({ error: error });\r\n}','','0','','','','','0',NULL,'Generation of data for Kubelet discovery rules.','0','30d','0','',NULL,'10s','','','','200','1','0','','0','0','0','0','0','0','0','aae78585c668466da5d0ab8d8b899828');
INSERT INTO `items` (`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`,`uuid`) values ('40117','20','1.3.6.1.4.1.12325.1.200.1.2.5.0','10515','PFSense: Normalized packets','pfsense.packets.normalize','1m','7d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nTrue if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','82360caa98ca4f209499db3c55b0c330');
INSERT INTO `items` (`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`,`uuid`) values ('40119','20','.1.3.6.1.2.1.25.4.2.1.7["index",".1.3.6.1.2.1.25.4.2.1.2","dhcpd"]','10515','PFSense: DHCP server status','pfsense.dhcpd.status','1m','7d','365d','0','3','','','','',NULL,'573','','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe status of DHCP server process.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a2a331bc385344a1877a45f3887b7d91');
INSERT INTO `items` (`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`,`uuid`) values ('40120','20','.1.3.6.1.2.1.25.4.2.1.7["index",".1.3.6.1.2.1.25.4.2.1.2","unbound"]','10515','PFSense: DNS server status','pfsense.dns.status','1m','7d','365d','0','3','','','','',NULL,'573','','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe status of DNS server process.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6a03330a20354f76b8496b9a8eac0c0a');
INSERT INTO `items` (`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`,`uuid`) values ('40121','20','.1.3.6.1.2.1.25.4.2.1.7["index",".1.3.6.1.2.1.25.4.2.1.2","nginx"]','10515','PFSense: State of nginx process','pfsense.nginx.status','1m','7d','365d','0','3','','','','',NULL,'573','','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe status of nginx process.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','18a8140ca46a47e0b4a3612be5338ada');
INSERT INTO `items` (`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`,`uuid`) values ('40122','20','1.3.6.1.4.1.12325.1.200.1.2.2.0','10515','PFSense: Packets with bad offset','pfsense.packets.bad.offset','1m','7d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nTrue if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3739cb57166343e3955d00fa31d55bd3');
INSERT INTO `items` (`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`,`uuid`) values ('40123','20','1.3.6.1.4.1.12325.1.200.1.2.3.0','10515','PFSense: Fragmented packets','pfsense.packets.fragment','1m','7d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nTrue if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','519dbf4fa71b48e8b70c1260caffea14');
INSERT INTO `items` (`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`,`uuid`) values ('40124','20','1.3.6.1.4.1.12325.1.200.1.2.1.0','10515','PFSense: Packets matched a filter rule','pfsense.packets.match','1m','7d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nTrue if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d4a0686adfa7421ea472e64d94bee70b');
INSERT INTO `items` (`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`,`uuid`) values ('40125','20','1.3.6.1.4.1.12325.1.200.1.2.6.0','10515','PFSense: Packets dropped due to memory limitation','pfsense.packets.mem.drop','1m','7d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nTrue if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ca30df62467645b6a04f791bf22d7b91');
INSERT INTO `items` (`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`,`uuid`) values ('40126','20','1.3.6.1.4.1.12325.1.200.1.2.4.0','10515','PFSense: Short packets','pfsense.packets.short','1m','7d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nTrue if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cf4fbeeb1a6a4d9dbb69adf90b54de3a');
INSERT INTO `items` (`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`,`uuid`) values ('40128','20','1.3.6.1.4.1.12325.1.200.1.1.1.0','10515','PFSense: Packet filter running status','pfsense.pf.status','1m','7d','365d','0','3','','','','',NULL,'575','','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nTrue if packet filter is currently enabled.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','600896282920468baf2e47ab75ee9b31');
INSERT INTO `items` (`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`,`uuid`) values ('40129','20','.1.3.6.1.4.1.12325.1.200.1.11.1.0','10515','PFSense: Firewall rules count','pfsense.rules.count','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nThe number of labeled filter rules on this system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d0cf4a1a284453991e12daf921fed9a');
INSERT INTO `items` (`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`,`uuid`) values ('40130','20','1.3.6.1.4.1.12325.1.200.1.4.1.0','10515','PFSense: Source tracking table current','pfsense.source.tracking.table.count','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nNumber of entries in the source tracking table.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c13b50c508e04851baf09c1c865241fc');
INSERT INTO `items` (`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`,`uuid`) values ('40131','20','1.3.6.1.4.1.12325.1.200.1.5.2.0','10515','PFSense: Source tracking table limit','pfsense.source.tracking.table.limit','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nMaximum number of \'sticky-address\' or \'source-track\' rules in the ruleset.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','58e12f73fd4243a89d62bbdc7e307cf9');
INSERT INTO `items` (`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`,`uuid`) values ('40132','15','','10515','PFSense: Source tracking table utilization in %','pfsense.source.tracking.table.pused','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//pfsense.source.tracking.table.count) * 100 / last(//pfsense.source.tracking.table.limit)','','0','','','','','0',NULL,'Utilization of source tracking table in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8fb3a344b39241bbb3bf78092fa17ec8');
INSERT INTO `items` (`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`,`uuid`) values ('40133','20','1.3.6.1.4.1.12325.1.200.1.3.1.0','10515','PFSense: States table current','pfsense.state.table.count','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nNumber of entries in the state table.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f0eab94d244b46c29363b630850ed709');
INSERT INTO `items` (`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`,`uuid`) values ('40134','20','1.3.6.1.4.1.12325.1.200.1.5.1.0','10515','PFSense: States table limit','pfsense.state.table.limit','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nMaximum number of \'keep state\' rules in the ruleset.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8500a1db240b48d7bca514371a89c641');
INSERT INTO `items` (`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`,`uuid`) values ('40135','15','','10515','PFSense: States table utilization in %','pfsense.state.table.pused','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//pfsense.state.table.count) * 100 / last(//pfsense.state.table.limit)','','0','','','','','0',NULL,'Utilization of state table in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e96cadaafca4e51ad62dba4fec5220a');
INSERT INTO `items` (`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`,`uuid`) values ('40136','5','','10515','PFSense: SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'576','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','585c88310a704e119aa5fc7f7f9c3804');
INSERT INTO `items` (`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`,`uuid`) values ('40138','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10515','Network interfaces discovery','pfsense.net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','441ad463ea5544f89cb56b0b8f7763f9');
INSERT INTO `items` (`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`,`uuid`) values ('40147','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.8["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 traffic blocked','net.if.in.block.v4.bps[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nIPv4 bits per second blocked coming in on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b20cd75f9b8543c894862003121893c1');
INSERT INTO `items` (`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`,`uuid`) values ('40148','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.22["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 packets blocked','net.if.out.block.v6.pps[{#SNMPINDEX}]','1m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nThe number of IPv6 packets blocked going out on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','41a658c922614223b5473eb4e01a3336');
INSERT INTO `items` (`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`,`uuid`) values ('40149','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Operational status','net.if.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'571','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2af41422c46141fba0432818b076bca3');
INSERT INTO `items` (`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`,`uuid`) values ('40150','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Speed','net.if.speed[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eb2f06d673094e10bab8e1d774b26997');
INSERT INTO `items` (`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`,`uuid`) values ('40151','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.6["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Rules references count','net.if.rules.refs[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nThe number of rules referencing this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ecde40c612da452599e2e7b2f1979e83');
INSERT INTO `items` (`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`,`uuid`) values ('40152','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Bits sent','net.if.out[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','afd513d29ecc4360ab0baf0a7ae3bb53');
INSERT INTO `items` (`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`,`uuid`) values ('40153','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.21["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 packets passed','net.if.out.pass.v6.pps[{#SNMPINDEX}]','1m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nThe number of IPv6 packets passed going out on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a5ba6a1a6dbf4788b77eee825f85eed1');
INSERT INTO `items` (`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`,`uuid`) values ('40154','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.17["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 traffic passed','net.if.out.pass.v6.bps[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nIPv6 bits per second passed going out on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3b472db1999640c3a0ef0c75ddae7940');
INSERT INTO `items` (`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`,`uuid`) values ('40155','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.13["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 packets passed','net.if.out.pass.v4.pps[{#SNMPINDEX}]','1m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nThe number of IPv4 packets passed going out on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e073f3fd38ed4aeaba85dfa5b74cc066');
INSERT INTO `items` (`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`,`uuid`) values ('40156','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.9["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 traffic passed','net.if.out.pass.v4.bps[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nIPv4 bits per second passed going out on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','29e2a5d7299b4419bbb29a98c068d46f');
INSERT INTO `items` (`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`,`uuid`) values ('40157','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound packets with errors','net.if.out.errors[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','72d053e5bf3b4330a99382b8a2efcdf7');
INSERT INTO `items` (`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`,`uuid`) values ('40158','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound packets discarded','net.if.out.discards[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','feb327e6f99e41c3a0194d1578a46e50');
INSERT INTO `items` (`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`,`uuid`) values ('40159','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.18["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 traffic blocked','net.if.out.block.v6.bps[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nIPv6 bits per second blocked going out on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c81392868fe04ba5bd82dcffa3065e73');
INSERT INTO `items` (`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`,`uuid`) values ('40160','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.12["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 packets blocked','net.if.in.block.v4.pps[{#SNMPINDEX}]','1m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nThe number of IPv4 packets blocked coming in on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','850a471b36de4bcebf9d8831f52953de');
INSERT INTO `items` (`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`,`uuid`) values ('40161','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.14["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 packets blocked','net.if.out.block.v4.pps[{#SNMPINDEX}]','1m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nThe number of IPv4 packets blocked going out on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','03c616505a6746ffa8027efd95aad00d');
INSERT INTO `items` (`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`,`uuid`) values ('40162','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.10["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 traffic blocked','net.if.out.block.v4.bps[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nIPv4 bits per second blocked going out on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b9c94af7fae9462a9659261366c03e4f');
INSERT INTO `items` (`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`,`uuid`) values ('40163','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Bits received','net.if.in[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4fefa40765144566a5c507ef19f884d6');
INSERT INTO `items` (`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`,`uuid`) values ('40164','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.19["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 packets passed','net.if.in.pass.v6.pps[{#SNMPINDEX}]','1m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nThe number of IPv6 packets passed coming in on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5eb85cf165424dde93e028468c310593');
INSERT INTO `items` (`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`,`uuid`) values ('40165','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.15["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 traffic passed','net.if.in.pass.v6.bps[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nIPv6 bits per second passed coming in on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1ed0a16478074997a3254fd1025a438d');
INSERT INTO `items` (`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`,`uuid`) values ('40166','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.11["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 packets passed','net.if.in.pass.v4.pps[{#SNMPINDEX}]','1m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nThe number of IPv4 packets passed coming in on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a895016cc42341729beb3ec41e30e1dc');
INSERT INTO `items` (`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`,`uuid`) values ('40167','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.7["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 traffic passed','net.if.in.pass.v4.bps[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nIPv4 bits per second passed coming in on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fcda9fb8fff14106940543836177e3e3');
INSERT INTO `items` (`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`,`uuid`) values ('40168','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound packets with errors','net.if.in.errors[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4915f853f848404988ce7ae3a22e7991');
INSERT INTO `items` (`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`,`uuid`) values ('40169','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound packets discarded','net.if.in.discards[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eea8bd3342824bed8b4e3768c069e8b3');
INSERT INTO `items` (`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`,`uuid`) values ('40170','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.20["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 packets blocked','net.if.in.block.v6.pps[{#SNMPINDEX}]','1m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nThe number of IPv6 packets blocked coming in on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2582b09afee14e658c9c9c8b845818b9');
INSERT INTO `items` (`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`,`uuid`) values ('40171','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.16["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 traffic blocked','net.if.in.block.v6.bps[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nIPv6 bits per second blocked coming in on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','96de779174c8486d97269a43f0d4a8f4');
INSERT INTO `items` (`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`,`uuid`) values ('40172','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10515','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Interface type','net.if.type[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'572','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','86f6e925d8a64e31a44b5338c92b31ec');
INSERT INTO `items` (`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`,`uuid`) values ('40181','5','','10048','Zabbix proxy: Version','zabbix[version]','1m','1w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of Zabbix proxy.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4d38d6d107714c96ae2ed2af44fddb60');
INSERT INTO `items` (`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`,`uuid`) values ('40182','5','','10048','Zabbix proxy: Values waiting to be sent','zabbix[proxy_history]','1m','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of values in the proxy history table waiting to be sent to the server.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3b66d42ec1fa4dc7a41750aacf6e68f3');
INSERT INTO `items` (`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`,`uuid`) values ('40183','5','','10048','Zabbix proxy: Required performance','zabbix[requiredperformance]','1m','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Required performance of Zabbix proxy, in new values per second expected.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ef820395239d4a108980fe53017a89fc');
INSERT INTO `items` (`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`,`uuid`) values ('40184','5','','10048','Zabbix proxy: Uptime','zabbix[uptime]','1m','1w','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'Uptime of Zabbix proxy process in seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ef920914bc00432ea4d4007d09e081df');
INSERT INTO `items` (`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`,`uuid`) values ('40190','3','','10204','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'577','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0db3c804c6174c018071e15cbc8c56ae');
INSERT INTO `items` (`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`,`uuid`) values ('40191','3','','10204','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','5d306c51188e496ba19b75b99e28cc7b');
INSERT INTO `items` (`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`,`uuid`) values ('40192','3','','10204','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','9ad39c8c6ede46e6953aa6f9466eaf69');
INSERT INTO `items` (`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`,`uuid`) values ('40451','20','discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2]','10185','CPU utilization','system.cpu.util','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that processors was not idle.\r\nImplementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a7e177fc60344bb59206102c14db6e65');
INSERT INTO `items` (`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`,`uuid`) values ('40454','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4]','10185','Storage discovery','vfs.fs.discovery[snmp]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','083012fc49c248cc8869484266c5bc35');
INSERT INTO `items` (`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`,`uuid`) values ('40455','20','discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4]','10185','Memory discovery','vm.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with memory filter','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16739aff044f4479a33e9157759e2980');
INSERT INTO `items` (`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`,`uuid`) values ('40460','15','','10185','{#FSNAME}: Space utilization','vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageUsed.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for {#FSNAME}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a9b4d7a5ea274c17b75cbc18a42734f5');
INSERT INTO `items` (`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`,`uuid`) values ('40461','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10185','{#FSNAME}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in units of hrStorageAllocationUnits.\r\nThis object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.\r\nFor example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fe61fddd59e34574b4cde449a4a1bd0e');
INSERT INTO `items` (`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`,`uuid`) values ('40462','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10185','{#FSNAME}: Used space','vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e5e0fae3cd24a8fb0a526d726599915');
INSERT INTO `items` (`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`,`uuid`) values ('40463','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10185','{#MEMNAME}: Total memory','vm.memory.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in units of hrStorageAllocationUnits.\r\nThis object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.\r\nFor example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3eadb443e39d41ac9f332cc7dce986be');
INSERT INTO `items` (`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`,`uuid`) values ('40464','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10185','{#MEMNAME}: Used memory','vm.memory.used[hrStorageUsed.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c555b61dfac744c3abb77d014efc8e0d');
INSERT INTO `items` (`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`,`uuid`) values ('40465','15','','10185','{#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','01e2f5515f2145a68d93a4637abfe4e9');
INSERT INTO `items` (`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`,`uuid`) values ('40478','3','','10207','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'581','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','832b1a2e21904591bc42d5cda9f3df14');
INSERT INTO `items` (`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`,`uuid`) values ('40479','20','1.3.6.1.2.1.1.2.0','10207','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f0df5a577f5c46689578302df065a3d6');
INSERT INTO `items` (`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`,`uuid`) values ('40480','20','1.3.6.1.2.1.1.3.0','10207','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e80e3dfbf1a447be87f1b6853c66555b');
INSERT INTO `items` (`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`,`uuid`) values ('40481','20','1.3.6.1.2.1.1.5.0','10207','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b1d37d4950d40c79433f47dea9677d4');
INSERT INTO `items` (`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`,`uuid`) values ('40482','3','','10207','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','959946f1885c4e7fbde7ab7200c60858');
INSERT INTO `items` (`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`,`uuid`) values ('40483','20','1.3.6.1.2.1.1.6.0','10207','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','597b68e7ddb8482280122de489424041');
INSERT INTO `items` (`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`,`uuid`) values ('40484','20','1.3.6.1.2.1.1.1.0','10207','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','757c85110dc34eb88265832aba8e7fbf');
INSERT INTO `items` (`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`,`uuid`) values ('40485','20','1.3.6.1.2.1.1.4.0','10207','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','0471357a58ff437e835e02175d6e6ca1');
INSERT INTO `items` (`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`,`uuid`) values ('40486','17','','10207','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','8f5bdb3fde9142a9892db396c040f8dd');
INSERT INTO `items` (`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`,`uuid`) values ('40487','3','','10207','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','7f858a8bc36746be89b2e36608cbb643');
INSERT INTO `items` (`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`,`uuid`) values ('40488','5','','10207','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'582','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cbcc156906774a109dd3d0cf09c512e9');
INSERT INTO `items` (`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`,`uuid`) values ('40489','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10207','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0caa510db5f54ee5a57c9a40c9d20140');
INSERT INTO `items` (`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`,`uuid`) values ('40490','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10207','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','078d4ad71e014260aa173288492e7f5d');
INSERT INTO `items` (`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`,`uuid`) values ('40491','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10207','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc997c10a3a94fb183bc793367d8da43');
INSERT INTO `items` (`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`,`uuid`) values ('40492','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10207','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ddabc629599f43f494b67225ccaef4cd');
INSERT INTO `items` (`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`,`uuid`) values ('40493','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10207','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc041e8f15eb48c098871bfa91c9edef');
INSERT INTO `items` (`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`,`uuid`) values ('40494','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10207','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','abdd315e75154954a8d8323a35d42029');
INSERT INTO `items` (`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`,`uuid`) values ('40495','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10207','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','91b4d7e0133049049efa24835e00b061');
INSERT INTO `items` (`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`,`uuid`) values ('40496','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10207','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','be432b00cdc044c0a1190e31aecc2b2c');
INSERT INTO `items` (`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`,`uuid`) values ('40497','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10207','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','67971f7787444822b9ee370a3cc2d3ec');
INSERT INTO `items` (`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`,`uuid`) values ('40498','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10207','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'579','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','92ac574cd0354d9fa886cfcf0f2f048d');
INSERT INTO `items` (`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`,`uuid`) values ('40499','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10207','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'580','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','201dd2baef0647f58fbcec0205cce318');
INSERT INTO `items` (`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`,`uuid`) values ('40500','20','1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}','10207','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'578','','','0','','','','','2',NULL,'MIB: EtherLike-MIB\r\nThe current mode of operation of the MAC\r\nentity. \'unknown\' indicates that the current\r\nduplex mode could not be determined.\r\n\r\nManagement control of the duplex mode is\r\naccomplished through the MAU MIB. When\r\nan interface does not support autonegotiation,\r\nor when autonegotiation is not enabled, the\r\nduplex mode is controlled using\r\nifMauDefaultType. When autonegotiation is\r\nsupported and enabled, duplex mode is controlled\r\nusing ifMauAutoNegAdvertisedBits. In either\r\ncase, the currently operating duplex mode is\r\nreflected both in this object and in ifMauType.\r\n\r\nNote that this object provides redundant\r\ninformation with ifMauType. Normally, redundant\r\nobjects are discouraged. However, in this\r\ninstance, it allows a management application to\r\ndetermine the duplex status of an interface\r\nwithout having to know every possible value of\r\nifMauType. This was felt to be sufficiently\r\nvaluable to justify the redundancy.\r\nReference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f4d62611a75244c29766118b8856d976');
INSERT INTO `items` (`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`,`uuid`) values ('40501','3','','10254','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'586','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ace97814969841e9a3e2d8ac6b83aae7');
INSERT INTO `items` (`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`,`uuid`) values ('40502','3','','10254','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','643a2c6f8d724bd392dd97bada7d24c2');
INSERT INTO `items` (`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`,`uuid`) values ('40503','3','','10254','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','e731e59672be40fa8ae7aced60ed3efc');
INSERT INTO `items` (`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`,`uuid`) values ('40504','17','','10254','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','e2d2516fb77f4e4faf13a69705d6af77');
INSERT INTO `items` (`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`,`uuid`) values ('40505','20','1.3.6.1.2.1.1.4.0','10254','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','48446cefda57477eb19dfc6db23a5ee1');
INSERT INTO `items` (`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`,`uuid`) values ('40506','20','discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2]','10254','CPU utilization','system.cpu.util','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that processors was not idle.\r\nImplementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fde390cc8671441194fb274209a8c190');
INSERT INTO `items` (`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`,`uuid`) values ('40507','20','1.3.6.1.2.1.1.1.0','10254','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','861f3aef96e64cf0a68e0fc81693f118');
INSERT INTO `items` (`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`,`uuid`) values ('40508','20','1.3.6.1.2.1.1.6.0','10254','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','55418095abea4f109476530af23e2829');
INSERT INTO `items` (`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`,`uuid`) values ('40509','20','1.3.6.1.2.1.1.5.0','10254','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d4538fc49f554fb6a1514cd9487a7291');
INSERT INTO `items` (`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`,`uuid`) values ('40510','20','1.3.6.1.2.1.1.2.0','10254','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8f2e8b5fa0464e4d964253f361d1e033');
INSERT INTO `items` (`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`,`uuid`) values ('40511','20','1.3.6.1.2.1.1.3.0','10254','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ed9ad1ae7fba4073bb80307dbd6849cd');
INSERT INTO `items` (`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`,`uuid`) values ('40512','5','','10254','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'587','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f57ed8cec3144effa6ffb2a4f604ab0b');
INSERT INTO `items` (`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`,`uuid`) values ('40513','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10254','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9b75135925654cedbd5a270b67e68d51');
INSERT INTO `items` (`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`,`uuid`) values ('40514','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10254','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4906974da5ab45cd9f7996d6d295165a');
INSERT INTO `items` (`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`,`uuid`) values ('40515','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4]','10254','Storage discovery','vfs.fs.discovery[snmp]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','77e7bb250b714e8ea3fff7ec1f3ac2c3');
INSERT INTO `items` (`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`,`uuid`) values ('40516','20','discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4]','10254','Memory discovery','vm.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with memory filter','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','58bc77f12c17410bbba1cefb5e5fac3d');
INSERT INTO `items` (`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`,`uuid`) values ('40517','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10254','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5be3410cbb6e4c439198aa8f532c7d4f');
INSERT INTO `items` (`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`,`uuid`) values ('40518','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10254','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','32217efa18d74fef8d467eb1ffdffe77');
INSERT INTO `items` (`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`,`uuid`) values ('40519','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10254','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bb496495e10d4ba9b4e111df5f4c212c');
INSERT INTO `items` (`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`,`uuid`) values ('40520','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10254','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84763d17b876499d9a7a67f93b21a2a7');
INSERT INTO `items` (`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`,`uuid`) values ('40521','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10254','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','825e8d8d1528498ba11caa0152daa3f9');
INSERT INTO `items` (`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`,`uuid`) values ('40522','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10254','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9f54178529434f248bbba6eed46df8ac');
INSERT INTO `items` (`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`,`uuid`) values ('40523','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10254','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','77a0e72b17bf4f04a813b224fba88156');
INSERT INTO `items` (`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`,`uuid`) values ('40524','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10254','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'584','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','57006254d61a411296021ee32924cce7');
INSERT INTO `items` (`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`,`uuid`) values ('40525','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10254','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'585','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ccd7ecb83bf4ff387b8541d807e6a69');
INSERT INTO `items` (`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`,`uuid`) values ('40526','20','1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}','10254','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'583','','','0','','','','','2',NULL,'MIB: EtherLike-MIB\r\nThe current mode of operation of the MAC\r\nentity. \'unknown\' indicates that the current\r\nduplex mode could not be determined.\r\n\r\nManagement control of the duplex mode is\r\naccomplished through the MAU MIB. When\r\nan interface does not support autonegotiation,\r\nor when autonegotiation is not enabled, the\r\nduplex mode is controlled using\r\nifMauDefaultType. When autonegotiation is\r\nsupported and enabled, duplex mode is controlled\r\nusing ifMauAutoNegAdvertisedBits. In either\r\ncase, the currently operating duplex mode is\r\nreflected both in this object and in ifMauType.\r\n\r\nNote that this object provides redundant\r\ninformation with ifMauType. Normally, redundant\r\nobjects are discouraged. However, in this\r\ninstance, it allows a management application to\r\ndetermine the duplex status of an interface\r\nwithout having to know every possible value of\r\nifMauType. This was felt to be sufficiently\r\nvaluable to justify the redundancy.\r\nReference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','065e407dcf1248d2827d0b199b271921');
INSERT INTO `items` (`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`,`uuid`) values ('40527','15','','10254','{#FSNAME}: Space utilization','vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageUsed.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for {#FSNAME}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','676989796c6847ecb76732acce13126a');
INSERT INTO `items` (`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`,`uuid`) values ('40528','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10254','{#FSNAME}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in units of hrStorageAllocationUnits.\r\nThis object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.\r\nFor example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','22bf8f2fc376489a9b3f65414fb10f47');
INSERT INTO `items` (`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`,`uuid`) values ('40529','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10254','{#FSNAME}: Used space','vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','967fce12f9b34723a5984d2f4c2a74f3');
INSERT INTO `items` (`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`,`uuid`) values ('40530','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10254','{#MEMNAME}: Total memory','vm.memory.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in units of hrStorageAllocationUnits.\r\nThis object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.\r\nFor example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','321107495a2d4f4cb2b9aea7bd62a238');
INSERT INTO `items` (`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`,`uuid`) values ('40531','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10254','{#MEMNAME}: Used memory','vm.memory.used[hrStorageUsed.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','520fa8a8954e4992ba18d6d2c1f18259');
INSERT INTO `items` (`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`,`uuid`) values ('40532','15','','10254','{#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','d85df76fd2b7409c84f77459bf037f0e');
INSERT INTO `items` (`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`,`uuid`) values ('40533','3','','10208','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'590','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','79adbe7d5d8f4dd6a172bfc3e2d8b23d');
INSERT INTO `items` (`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`,`uuid`) values ('40534','3','','10208','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','4ae37446cb1e4a2d95f55a41dd295bdf');
INSERT INTO `items` (`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`,`uuid`) values ('40535','3','','10208','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','4c8f61f10759487087d5942756f478b2');
INSERT INTO `items` (`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`,`uuid`) values ('40536','17','','10208','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','c7e6790a311c4b4582093cd28341306a');
INSERT INTO `items` (`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`,`uuid`) values ('40537','20','1.3.6.1.2.1.1.4.0','10208','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','62ae879ca6ab46aebc8655534acbba06');
INSERT INTO `items` (`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`,`uuid`) values ('40538','20','1.3.6.1.2.1.1.1.0','10208','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8340ccd92ba940b497375aba810394a4');
INSERT INTO `items` (`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`,`uuid`) values ('40539','20','1.3.6.1.2.1.1.6.0','10208','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','88c5304ddeca47779b76d9806b1edc68');
INSERT INTO `items` (`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`,`uuid`) values ('40540','20','1.3.6.1.2.1.1.5.0','10208','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d8d912cb5c924f6587c83f08aa0c8ae1');
INSERT INTO `items` (`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`,`uuid`) values ('40541','20','1.3.6.1.2.1.1.2.0','10208','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','939c63320b8e4199b87cc4759011da3c');
INSERT INTO `items` (`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`,`uuid`) values ('40542','20','1.3.6.1.2.1.1.3.0','10208','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','237a5614cb634773853f6d5f42096773');
INSERT INTO `items` (`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`,`uuid`) values ('40543','5','','10208','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'591','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','00b66dbea9464b55bbab004e0eb57c7b');
INSERT INTO `items` (`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`,`uuid`) values ('40544','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10208','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','58ece372fefb4881ace97a40c5fb09c2');
INSERT INTO `items` (`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`,`uuid`) values ('40545','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10208','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a780105f84584ba48acef58f573b5728');
INSERT INTO `items` (`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`,`uuid`) values ('40546','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10208','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','04b7026dd1704074b9a18e154d10ef7f');
INSERT INTO `items` (`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`,`uuid`) values ('40547','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10208','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','efe5a3957efd4d989809db22ad9cff9d');
INSERT INTO `items` (`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`,`uuid`) values ('40548','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10208','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a087793253314286a0bfab36a27898bd');
INSERT INTO `items` (`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`,`uuid`) values ('40549','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10208','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','67d8b40449a24ad28e31ef0363d8b76d');
INSERT INTO `items` (`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`,`uuid`) values ('40550','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10208','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c557f4086bc455eb6185878e50b72d9');
INSERT INTO `items` (`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`,`uuid`) values ('40551','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10208','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','de0920aa56b740ab89118016cdacbc5e');
INSERT INTO `items` (`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`,`uuid`) values ('40552','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10208','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'588','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1e9a9d3ea4d24922b8c4b7acc20a3c4f');
INSERT INTO `items` (`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`,`uuid`) values ('40553','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10208','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'589','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','391fe664d0e44ed99b2b966c647e1e55');
INSERT INTO `items` (`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`,`uuid`) values ('40554','3','','10210','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'594','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b77f1a0ffd4c4b6d870eda4b573b4d13');
INSERT INTO `items` (`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`,`uuid`) values ('40555','3','','10210','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','6e20f516917f40bca4a53ed015e065d2');
INSERT INTO `items` (`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`,`uuid`) values ('40556','3','','10210','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','c2888004f9e84640a088f891f8b0703d');
INSERT INTO `items` (`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`,`uuid`) values ('40557','17','','10210','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','2d0b064b0fd74361ac1c32cdea2c1123');
INSERT INTO `items` (`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`,`uuid`) values ('40558','20','1.3.6.1.2.1.1.4.0','10210','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','d0561cc5be67434088c1e591a577d7e3');
INSERT INTO `items` (`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`,`uuid`) values ('40559','20','1.3.6.1.4.1.1991.1.1.2.1.52.0','10210','CPU utilization','system.cpu.util[snAgGblCpuUtil1MinAvg.0]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FOUNDRY-SN-AGENT-MIB\r\nThe statistics collection of 1 minute CPU utilization.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2083ecbada4344b4b26dba0145694d7e');
INSERT INTO `items` (`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`,`uuid`) values ('40560','20','1.3.6.1.2.1.1.1.0','10210','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9f49220f80c04e2e98ecf3ec5fa53c2e');
INSERT INTO `items` (`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`,`uuid`) values ('40561','20','1.3.6.1.2.1.1.6.0','10210','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','3accd01dca984406990051338ce3f269');
INSERT INTO `items` (`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`,`uuid`) values ('40562','20','1.3.6.1.2.1.1.5.0','10210','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0d27ffcf928949188fbe1994b6b4dcbb');
INSERT INTO `items` (`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`,`uuid`) values ('40563','20','1.3.6.1.2.1.1.2.0','10210','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','702517f6c1024b3c8860a63c9cd57367');
INSERT INTO `items` (`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`,`uuid`) values ('40564','20','1.3.6.1.2.1.1.3.0','10210','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3a534079085747b0916da05afdfafba0');
INSERT INTO `items` (`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`,`uuid`) values ('40565','20','1.3.6.1.4.1.1991.1.1.2.1.53.0','10210','Memory utilization','vm.memory.util[snAgGblDynMemUtil.0]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FOUNDRY-SN-AGENT-MIB\r\nThe system dynamic memory utilization, in unit of percentage.\r\nDeprecated: Refer to snAgSystemDRAMUtil.\r\nFor NI platforms, refer to snAgentBrdMemoryUtil100thPercent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1e1b82a4271d4e159315e74547bea34e');
INSERT INTO `items` (`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`,`uuid`) values ('40566','5','','10210','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'595','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b782df60263e4302b83f66e920ac217f');
INSERT INTO `items` (`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`,`uuid`) values ('40567','3','','10211','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'598','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','df3428a8cf5a449e9ffec28d846a3062');
INSERT INTO `items` (`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`,`uuid`) values ('40568','3','','10211','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','3e97bfa40e1547b5be3f72f9675dfc62');
INSERT INTO `items` (`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`,`uuid`) values ('40569','3','','10211','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','79ca1e3ac22742d28e08c722dad1e254');
INSERT INTO `items` (`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`,`uuid`) values ('40570','17','','10211','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','584f0625be1c40e69294dce25fc9ead6');
INSERT INTO `items` (`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`,`uuid`) values ('40571','20','1.3.6.1.2.1.1.4.0','10211','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','b973c42ae6da4707893b21f20d09ecd3');
INSERT INTO `items` (`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`,`uuid`) values ('40572','20','1.3.6.1.4.1.1991.1.1.2.1.52.0','10211','CPU utilization','system.cpu.util[snAgGblCpuUtil1MinAvg.0]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FOUNDRY-SN-AGENT-MIB\r\nThe statistics collection of 1 minute CPU utilization.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bfb60806299f4388bb5bfafd2c0329be');
INSERT INTO `items` (`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`,`uuid`) values ('40573','20','1.3.6.1.2.1.1.1.0','10211','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','11f6230e5f2945aab338c958f38ce9d3');
INSERT INTO `items` (`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`,`uuid`) values ('40574','20','1.3.6.1.2.1.1.6.0','10211','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','99be144849104b3cad296b2f21355e93');
INSERT INTO `items` (`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`,`uuid`) values ('40575','20','1.3.6.1.2.1.1.5.0','10211','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7af427adf5ad451894ae1e6af72c1890');
INSERT INTO `items` (`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`,`uuid`) values ('40576','20','1.3.6.1.2.1.1.2.0','10211','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','886dd0ed732c49118f012a402b4a5f45');
INSERT INTO `items` (`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`,`uuid`) values ('40577','20','1.3.6.1.2.1.1.3.0','10211','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c32cf75496ce40e5b3d06a049fa3205d');
INSERT INTO `items` (`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`,`uuid`) values ('40578','20','1.3.6.1.4.1.1991.1.1.2.1.53.0','10211','Memory utilization','vm.memory.util[snAgGblDynMemUtil.0]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FOUNDRY-SN-AGENT-MIB\r\nThe system dynamic memory utilization, in unit of percentage.\r\nDeprecated: Refer to snAgSystemDRAMUtil.\r\nFor NI platforms, refer to snAgentBrdMemoryUtil100thPercent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','631268898edf40908c9d1dd75ed4eef8');
INSERT INTO `items` (`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`,`uuid`) values ('40579','5','','10211','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'599','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a25878004da548e9824321fe0f55955e');
INSERT INTO `items` (`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`,`uuid`) values ('40580','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10210','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1b7d06dba8fb4869812e95417c05ec25');
INSERT INTO `items` (`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`,`uuid`) values ('40581','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10211','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3a38811553e5456f9d3cc842c5bd3809');
INSERT INTO `items` (`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`,`uuid`) values ('40582','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10210','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c01ebcc6ef2a4af3bc1a541a8e7ea348');
INSERT INTO `items` (`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`,`uuid`) values ('40583','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10210','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','de91b80675624e889349e90fef603e9f');
INSERT INTO `items` (`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`,`uuid`) values ('40584','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10210','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2b169ba2d5a44d85ae78b32261cd6852');
INSERT INTO `items` (`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`,`uuid`) values ('40585','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10210','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eb286f99f6f1495bbff1f888dfdbfad6');
INSERT INTO `items` (`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`,`uuid`) values ('40586','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10210','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1e16a6f28fe3455b9c37c8d842102ace');
INSERT INTO `items` (`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`,`uuid`) values ('40587','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10210','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','24fb27f79bfc4cde8081ffe55cf945c5');
INSERT INTO `items` (`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`,`uuid`) values ('40588','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10210','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2cff6fcf8aaa486aa0b7d26d71a928f1');
INSERT INTO `items` (`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`,`uuid`) values ('40589','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10210','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'592','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','23402859e08647d8bdb39ca8f39daf3b');
INSERT INTO `items` (`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`,`uuid`) values ('40590','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10210','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'593','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9657eee8f64d4bbe934cfb03f047caa7');
INSERT INTO `items` (`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`,`uuid`) values ('40591','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10211','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d8691667a3b641b68de53ad50928216e');
INSERT INTO `items` (`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`,`uuid`) values ('40592','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10211','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c73aaba921794ec3bd0b8783047dca07');
INSERT INTO `items` (`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`,`uuid`) values ('40593','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10211','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3cc7e079ba25461c887fc976664311ba');
INSERT INTO `items` (`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`,`uuid`) values ('40594','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10211','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d310f098ff6f4704b974028707c0350b');
INSERT INTO `items` (`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`,`uuid`) values ('40595','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10211','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3628163a8ecc43e98b81b91e9f6b51a0');
INSERT INTO `items` (`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`,`uuid`) values ('40596','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10211','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','05eab5a457df403d89e76f7fc20689e4');
INSERT INTO `items` (`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`,`uuid`) values ('40597','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10211','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','65b44b69e0524cec94c36469987e2fec');
INSERT INTO `items` (`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`,`uuid`) values ('40598','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10211','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'596','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cdba234cfd6f475d8a67528a677b79a0');
INSERT INTO `items` (`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`,`uuid`) values ('40599','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10211','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'597','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4c8df33c9eb748bd90ea7053c5aa11ce');
INSERT INTO `items` (`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`,`uuid`) values ('40600','3','','10220','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'601','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bf6d81068770410a929c127d8e7d76c1');
INSERT INTO `items` (`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`,`uuid`) values ('40601','3','','10220','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','2af7b5f79fc44d7d992b0bf6277c12bb');
INSERT INTO `items` (`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`,`uuid`) values ('40602','3','','10220','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','1afa1e8ca21c430598845806bbf0e7a2');
INSERT INTO `items` (`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`,`uuid`) values ('40603','17','','10220','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','53eb0288c9e54490942cedd4ce5f376e');
INSERT INTO `items` (`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`,`uuid`) values ('40604','20','1.3.6.1.2.1.1.4.0','10220','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','bba5be8b3fa54bfbb354b7a2c20fd353');
INSERT INTO `items` (`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`,`uuid`) values ('40605','20','1.3.6.1.4.1.9.2.1.58','10220','CPU utilization','system.cpu.util[avgBusy5]','5m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: OLD-CISCO-CPU-MIB\r\n5 minute exponentially-decayed moving average of the CPU busy percentage.\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','693b0c779f574d869f47b44c4b3ecd58');
INSERT INTO `items` (`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`,`uuid`) values ('40606','20','1.3.6.1.2.1.1.1.0','10220','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','495b26e876a04819a02cf22eaba04e0b');
INSERT INTO `items` (`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`,`uuid`) values ('40607','20','1.3.6.1.2.1.47.1.1.1.1.13.1','10220','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b5121a382d0245f0906bba4530a82ac4');
INSERT INTO `items` (`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`,`uuid`) values ('40608','20','1.3.6.1.2.1.47.1.1.1.1.11.1','10220','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5934a35b54464f66ab19152ca393b882');
INSERT INTO `items` (`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`,`uuid`) values ('40609','20','1.3.6.1.2.1.1.6.0','10220','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','30df666e80bd4875ac761306781061da');
INSERT INTO `items` (`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`,`uuid`) values ('40610','20','1.3.6.1.2.1.1.5.0','10220','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2e55e75a7baa4195b012e750bac90dcb');
INSERT INTO `items` (`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`,`uuid`) values ('40611','20','1.3.6.1.2.1.1.2.0','10220','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc6e5a6e4f604b639815d9397264c6af');
INSERT INTO `items` (`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`,`uuid`) values ('40612','20','1.3.6.1.2.1.1.1.0','10220','Operating system','system.sw.os[sysDescr.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','70ef7ce7561640b7bc6b5d30235c0ecc');
INSERT INTO `items` (`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`,`uuid`) values ('40613','20','1.3.6.1.2.1.1.3.0','10220','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7ecd28b73c0f43a98c3a58467b1cbdc7');
INSERT INTO `items` (`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`,`uuid`) values ('40614','5','','10220','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'602','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a156e9ca10c49bbb87cf3de1b686cff');
INSERT INTO `items` (`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`,`uuid`) values ('40615','3','','10218','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'607','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f0a3f0b82e32488aa22929fe035825cb');
INSERT INTO `items` (`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`,`uuid`) values ('40616','3','','10218','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','0c081f94e6094ad29e1fbc2a3424bedb');
INSERT INTO `items` (`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`,`uuid`) values ('40617','3','','10218','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','dab9ef1df04d403faa4910bf51559035');
INSERT INTO `items` (`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`,`uuid`) values ('40618','17','','10218','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','8684622dc8d446f0b17ba7687d47b09d');
INSERT INTO `items` (`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`,`uuid`) values ('40619','20','1.3.6.1.2.1.1.4.0','10218','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','622767f4dbab49039c63990e4fc58eaa');
INSERT INTO `items` (`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`,`uuid`) values ('40620','20','1.3.6.1.2.1.1.1.0','10218','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ae8e0ecf937c4a9492fe67cc5cd07d6f');
INSERT INTO `items` (`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`,`uuid`) values ('40621','20','1.3.6.1.2.1.47.1.1.1.1.13.1','10218','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a8062a554b8d447f81f7b9ef3229c7e9');
INSERT INTO `items` (`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`,`uuid`) values ('40622','20','1.3.6.1.2.1.47.1.1.1.1.11.1','10218','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','223fd2fe9699419c824ae310f1c8a631');
INSERT INTO `items` (`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`,`uuid`) values ('40623','20','1.3.6.1.2.1.1.6.0','10218','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','361ca9979352405a9dfb9bc13e542a2f');
INSERT INTO `items` (`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`,`uuid`) values ('40624','20','1.3.6.1.2.1.1.5.0','10218','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2ddace242ffe487a8641e035cf04dcdd');
INSERT INTO `items` (`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`,`uuid`) values ('40625','20','1.3.6.1.2.1.1.2.0','10218','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','290d095f8fbc4cd1aa5ed3d304434f4b');
INSERT INTO `items` (`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`,`uuid`) values ('40626','20','1.3.6.1.2.1.1.1.0','10218','Operating system','system.sw.os[sysDescr.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5fe7bc2d46a748d3ace7d1dd0de8127b');
INSERT INTO `items` (`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`,`uuid`) values ('40627','20','1.3.6.1.2.1.1.3.0','10218','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fe1dbb23a8794ce9ae3f6c37e63082f8');
INSERT INTO `items` (`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`,`uuid`) values ('40628','5','','10218','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'608','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cf9bd75166704b2f93446ece0c2d0fab');
INSERT INTO `items` (`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`,`uuid`) values ('40629','3','','10253','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'612','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a94e2b40f0e14bdfb70e66127f8d946b');
INSERT INTO `items` (`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`,`uuid`) values ('40630','3','','10253','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','39baf182f6724813a951b25f6ff5aab4');
INSERT INTO `items` (`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`,`uuid`) values ('40631','3','','10253','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','85748657f67e45189256e7704c6e7a9c');
INSERT INTO `items` (`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`,`uuid`) values ('40632','17','','10253','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','0f50837172ad475d9d5a27c95be19ab2');
INSERT INTO `items` (`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`,`uuid`) values ('40633','20','1.3.6.1.2.1.1.4.0','10253','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','22406c415a0a4f6bbd9d44707631f42c');
INSERT INTO `items` (`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`,`uuid`) values ('40634','20','1.3.6.1.2.1.1.1.0','10253','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a37d2e4f308475c932a6bb856d0ffb4');
INSERT INTO `items` (`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`,`uuid`) values ('40635','20','1.3.6.1.2.1.47.1.1.1.1.13.1','10253','Hardware model name','system.hw.model','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','29','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','12b69d0a3b844906a950bcedcbb8b9b8');
INSERT INTO `items` (`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`,`uuid`) values ('40636','20','1.3.6.1.2.1.47.1.1.1.1.11.1','10253','Hardware serial number','system.hw.serialnumber','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','8','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','991021da67c84f96a76154078c45f3be');
INSERT INTO `items` (`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`,`uuid`) values ('40637','20','1.3.6.1.2.1.1.6.0','10253','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','d8ed796e88f3478ea72d95ddcc68f9ed');
INSERT INTO `items` (`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`,`uuid`) values ('40638','20','1.3.6.1.2.1.1.5.0','10253','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a26d3babf5674a5e9d9afff94518e6c6');
INSERT INTO `items` (`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`,`uuid`) values ('40639','20','1.3.6.1.2.1.1.2.0','10253','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da41d408448d4b1aa323e0046ff97598');
INSERT INTO `items` (`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`,`uuid`) values ('40640','20','1.3.6.1.2.1.1.1.0','10253','Operating system','system.sw.os[sysDescr.0]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cf4af497970a415aa45aa66b2ba48115');
INSERT INTO `items` (`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`,`uuid`) values ('40641','20','1.3.6.1.2.1.1.3.0','10253','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','182fd7bfd7b74331b9f3cf8f4a7646cb');
INSERT INTO `items` (`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`,`uuid`) values ('40642','5','','10253','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'613','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','92fa54c5c28b4244b0d22c9041064d15');
INSERT INTO `items` (`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`,`uuid`) values ('40643','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11]','10220','Entity Serial Numbers Discovery','entity_sn.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','fbeef9c16d9d45b7a5c50f530a697f76');
INSERT INTO `items` (`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`,`uuid`) values ('40644','20','discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2]','10220','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of fan status maintained by the environmental monitor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','109cd000cd044e4096bf98dbf57b72d1');
INSERT INTO `items` (`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`,`uuid`) values ('40645','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2]','10220','Memory Discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.\r\nhttp://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','727adcf658d141ff9e45744107a58c38');
INSERT INTO `items` (`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`,`uuid`) values ('40646','20','discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2]','10220','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of power supply status maintained by the environmental monitor card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e67e9c84ac54dea866893207a42d3e3');
INSERT INTO `items` (`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`,`uuid`) values ('40647','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2]','10220','Temperature Discovery','temperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status\r\nmaintained by the environmental monitor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','73d10f48886443248f7d2d9167fcfee5');
INSERT INTO `items` (`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`,`uuid`) values ('40648','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5]','10218','CPU Discovery','cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable,\r\nindexed with cpmCPUTotalIndex.\r\nThis table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,\r\nlike different CPU chips, group of CPUs, or CPUs in different modules/cards.\r\nIn case of a single CPU, cpmCPUTotalTable has only one entry.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f7404c15a9dc497b8e67ab014ca43890');
INSERT INTO `items` (`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`,`uuid`) values ('40649','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11]','10218','Entity Serial Numbers Discovery','entity_sn.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','e8c57e436eed4958a0a83c7afd6a07e3');
INSERT INTO `items` (`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`,`uuid`) values ('40650','20','discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2]','10218','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of fan status maintained by the environmental monitor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','98eebfb8ed28460c8e5982af61f18931');
INSERT INTO `items` (`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`,`uuid`) values ('40651','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2]','10218','Memory Discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.\r\nhttp://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d7144482448b4bb5b4f59f18365ecb04');
INSERT INTO `items` (`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`,`uuid`) values ('40652','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10218','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b416fb001e46464f847578a50451164b');
INSERT INTO `items` (`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`,`uuid`) values ('40653','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10218','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d79d3a6026bd4d1f877fc164a3eb7f84');
INSERT INTO `items` (`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`,`uuid`) values ('40654','20','discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2]','10218','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of power supply status maintained by the environmental monitor card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ffaea3ee50c424baa1080586d92ba2f');
INSERT INTO `items` (`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`,`uuid`) values ('40655','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2]','10218','Temperature Discovery','temperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status\r\nmaintained by the environmental monitor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2751c1ff3f334145971aa400440631fe');
INSERT INTO `items` (`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`,`uuid`) values ('40656','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5]','10253','CPU Discovery','cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable,\r\nindexed with cpmCPUTotalIndex.\r\nThis table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,\r\nlike different CPU chips, group of CPUs, or CPUs in different modules/cards.\r\nIn case of a single CPU, cpmCPUTotalTable has only one entry.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1d8d76707b1049cabfda668257c257b6');
INSERT INTO `items` (`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`,`uuid`) values ('40657','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11]','10253','Entity Serial Numbers Discovery','entity_sn.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','afafbf551dc242e8a85dbb12ba1aa067');
INSERT INTO `items` (`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`,`uuid`) values ('40658','20','discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2]','10253','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of fan status maintained by the environmental monitor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0906581023f54a0b95102288e8ed4714');
INSERT INTO `items` (`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`,`uuid`) values ('40659','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2]','10253','Memory Discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.\r\nhttp://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4831ae0d8acc47e7bb9c3a4a94678472');
INSERT INTO `items` (`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`,`uuid`) values ('40660','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10253','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','328da4bee6ea49aa8809cdbb74744263');
INSERT INTO `items` (`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`,`uuid`) values ('40661','20','discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2]','10253','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of power supply status maintained by the environmental monitor card.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','09264b1af69a4a4595ba2e4539106d6f');
INSERT INTO `items` (`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`,`uuid`) values ('40662','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2]','10253','Temperature Discovery','temperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status\r\nmaintained by the environmental monitor.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eb482b3a03b74dc494632be0728f953b');
INSERT INTO `items` (`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`,`uuid`) values ('40663','20','1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}','10220','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1993495d289d407e85c24f4986819ab8');
INSERT INTO `items` (`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`,`uuid`) values ('40664','20','1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX}','10220','{#SENSOR_INFO}: Fan status','sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'600','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7008cccccf2647918bce95bb0a6193df');
INSERT INTO `items` (`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`,`uuid`) values ('40665','20','1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX}','10220','{#SNMPVALUE}: Free memory','vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB\r\nIndicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e0df9d6e31384da4af18ab191e467814');
INSERT INTO `items` (`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`,`uuid`) values ('40666','20','1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX}','10220','{#SNMPVALUE}: Used memory','vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB\r\nIndicates the number of bytes from the memory pool that are currently in use by applications on the managed device.\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','25471f4acc4348bf978792fcfaff6acc');
INSERT INTO `items` (`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`,`uuid`) values ('40667','15','','10220','{#SNMPVALUE}: Memory utilization','vm.memory.util[vm.memory.util.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}])/(last(//vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}])+last(//vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9a03c1b1c6ae42e5ab1886c172b2e3ac');
INSERT INTO `items` (`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`,`uuid`) values ('40668','20','1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX}','10220','{#SENSOR_INFO}: Power supply status','sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'600','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d05d99a68e3540d09d64b8bab5d63004');
INSERT INTO `items` (`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`,`uuid`) values ('40669','20','1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX}','10220','{#SNMPVALUE}: Temperature status','sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'600','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nThe current state of the test point being instrumented.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a12075ae5b834eeeb742fed6f7afc39d');
INSERT INTO `items` (`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`,`uuid`) values ('40670','20','1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX}','10220','{#SNMPVALUE}: Temperature','sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nThe current measurement of the test point being instrumented.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ea0d56dd49104257ba6c14ce3bdb753a');
INSERT INTO `items` (`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`,`uuid`) values ('40671','20','1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX}','10218','#{#SNMPINDEX}: CPU utilization','system.cpu.util[cpmCPUTotal5minRev.{#SNMPINDEX}]','5m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-PROCESS-MIB\r\nThe cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b124144899bd4149a6257440574d4341');
INSERT INTO `items` (`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`,`uuid`) values ('40672','20','1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}','10218','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e86b198ba7b7451482dfb8ab07553abf');
INSERT INTO `items` (`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`,`uuid`) values ('40673','20','1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX}','10218','{#SENSOR_INFO}: Fan status','sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'603','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d7188ce8f18442d882c585ef044de2cf');
INSERT INTO `items` (`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`,`uuid`) values ('40674','20','1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX}','10218','{#SNMPVALUE}: Free memory','vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB\r\nIndicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b05c256436e14f72a3dea21d48b98a9c');
INSERT INTO `items` (`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`,`uuid`) values ('40675','20','1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX}','10218','{#SNMPVALUE}: Used memory','vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB\r\nIndicates the number of bytes from the memory pool that are currently in use by applications on the managed device.\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','58e8eeb2ddf74c6e86e02845f0d38784');
INSERT INTO `items` (`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`,`uuid`) values ('40676','15','','10218','{#SNMPVALUE}: Memory utilization','vm.memory.util[vm.memory.util.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}])/(last(//vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}])+last(//vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5407d019461f45b895663de105d75298');
INSERT INTO `items` (`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`,`uuid`) values ('40677','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10218','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d4b70db5618436f8d5096098d94ad39');
INSERT INTO `items` (`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`,`uuid`) values ('40678','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10218','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1cdd9e77a6f9420da700b903e2fc0966');
INSERT INTO `items` (`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`,`uuid`) values ('40679','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10218','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','22cb1c9d188c4274a4f9ac815832fc21');
INSERT INTO `items` (`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`,`uuid`) values ('40680','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10218','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','75182ac83419420194cf34c4e5f92a62');
INSERT INTO `items` (`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`,`uuid`) values ('40681','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10218','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c31a98b3b9784cd699b5d0dadbc3dc4a');
INSERT INTO `items` (`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`,`uuid`) values ('40682','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10218','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','973dbf88a72d4f5897bb199b5d41941a');
INSERT INTO `items` (`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`,`uuid`) values ('40683','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10218','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e24cccb1e89446268b30830ac01d59f8');
INSERT INTO `items` (`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`,`uuid`) values ('40684','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10218','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'605','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6ecd6a8ec5fa487c836adb69e72915e7');
INSERT INTO `items` (`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`,`uuid`) values ('40685','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10218','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'606','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','51e3b46e009944d594fd4bdadeac83aa');
INSERT INTO `items` (`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`,`uuid`) values ('40686','20','1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}','10218','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'604','','','0','','','','','2',NULL,'MIB: EtherLike-MIB\r\nThe current mode of operation of the MAC\r\nentity. \'unknown\' indicates that the current\r\nduplex mode could not be determined.\r\n\r\nManagement control of the duplex mode is\r\naccomplished through the MAU MIB. When\r\nan interface does not support autonegotiation,\r\nor when autonegotiation is not enabled, the\r\nduplex mode is controlled using\r\nifMauDefaultType. When autonegotiation is\r\nsupported and enabled, duplex mode is controlled\r\nusing ifMauAutoNegAdvertisedBits. In either\r\ncase, the currently operating duplex mode is\r\nreflected both in this object and in ifMauType.\r\n\r\nNote that this object provides redundant\r\ninformation with ifMauType. Normally, redundant\r\nobjects are discouraged. However, in this\r\ninstance, it allows a management application to\r\ndetermine the duplex status of an interface\r\nwithout having to know every possible value of\r\nifMauType. This was felt to be sufficiently\r\nvaluable to justify the redundancy.\r\nReference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','338e81aa226b41dd956bc1f9d10c0a87');
INSERT INTO `items` (`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`,`uuid`) values ('40687','20','1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX}','10218','{#SENSOR_INFO}: Power supply status','sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'603','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','22ac9f6f30eb4f4b9d009db4adba7f29');
INSERT INTO `items` (`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`,`uuid`) values ('40688','20','1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX}','10218','{#SNMPVALUE}: Temperature status','sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'603','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nThe current state of the test point being instrumented.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7985d9ceeaeb4a4f8e39e02730e91d29');
INSERT INTO `items` (`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`,`uuid`) values ('40689','20','1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX}','10218','{#SNMPVALUE}: Temperature','sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nThe current measurement of the test point being instrumented.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c1fb8e8099ed496a9af8d3e36d6d3c8b');
INSERT INTO `items` (`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`,`uuid`) values ('40690','20','1.3.6.1.4.1.9.9.109.1.1.1.1.5.{#SNMPINDEX}','10253','{#SNMPVALUE}: CPU utilization','system.cpu.util[cpmCPUTotal5min.{#SNMPINDEX}]','5m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-PROCESS-MIB\r\nThe overall CPU busy percentage in the last 5 minute\r\nperiod. This object deprecates the avgBusy5 object from\r\nthe OLD-CISCO-SYSTEM-MIB. This object is deprecated\r\nby cpmCPUTotal5minRev which has the changed range\r\nof value (0..100).\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2f6285386ed54cd99d7aaf41e6f3e891');
INSERT INTO `items` (`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`,`uuid`) values ('40691','20','1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}','10253','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}]','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','88f4929957f5485f974bdc1bafde68d7');
INSERT INTO `items` (`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`,`uuid`) values ('40692','20','1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX}','10253','{#SENSOR_INFO}: Fan status','sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'609','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b1e82af988c14dce81fcbd549fe4ece6');
INSERT INTO `items` (`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`,`uuid`) values ('40693','20','1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX}','10253','{#SNMPVALUE}: Free memory','vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB\r\nIndicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e9876af72ead4cc7814f8c54801de7ee');
INSERT INTO `items` (`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`,`uuid`) values ('40694','20','1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX}','10253','{#SNMPVALUE}: Used memory','vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB\r\nIndicates the number of bytes from the memory pool that are currently in use by applications on the managed device.\r\nReference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','260d3d59256040fd808d5d4c6a549d07');
INSERT INTO `items` (`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`,`uuid`) values ('40695','15','','10253','{#SNMPVALUE}: Memory utilization','vm.memory.util[vm.memory.util.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}])/(last(//vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}])+last(//vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb17d61634254c108d98ea28f5c5fb54');
INSERT INTO `items` (`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`,`uuid`) values ('40696','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10253','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','db98684d85c644f28190544d534c1b09');
INSERT INTO `items` (`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`,`uuid`) values ('40697','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10253','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a2c7793712e549cbad6e37da30754b58');
INSERT INTO `items` (`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`,`uuid`) values ('40698','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10253','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a77450c8292a483b86e72156af6e7ec7');
INSERT INTO `items` (`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`,`uuid`) values ('40699','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10253','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','33e86cf0c2374d0d932a8e3c9b6ebf1a');
INSERT INTO `items` (`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`,`uuid`) values ('40700','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10253','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6960110871dd40f89f344ab90cdb03f9');
INSERT INTO `items` (`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`,`uuid`) values ('40701','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10253','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fe427d3bbef7420880906cc52c07c706');
INSERT INTO `items` (`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`,`uuid`) values ('40702','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10253','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c03404b9c68749b3bef5de34a8815cce');
INSERT INTO `items` (`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`,`uuid`) values ('40703','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10253','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'610','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ec072a91a34244d5ba434f592e9cb72d');
INSERT INTO `items` (`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`,`uuid`) values ('40704','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10253','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'611','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6dec04a0c0fc453ebc103e28daea731d');
INSERT INTO `items` (`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`,`uuid`) values ('40705','20','1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX}','10253','{#SENSOR_INFO}: Power supply status','sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'609','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','86973dc8030e463fb51b075e161ae8a3');
INSERT INTO `items` (`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`,`uuid`) values ('40706','20','1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX}','10253','{#SNMPVALUE}: Temperature status','sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}]','3m','2w','0d','0','3','','','','',NULL,'609','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nThe current state of the test point being instrumented.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','14f46d8210164b6596dc6bf0c343db3b');
INSERT INTO `items` (`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`,`uuid`) values ('40707','20','1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX}','10253','{#SNMPVALUE}: Temperature','sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}]','3m','90d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB\r\nThe current measurement of the test point being instrumented.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7c68ab13b881467e863b28776c0da571');
INSERT INTO `items` (`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`,`uuid`) values ('40708','3','','10221','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'617','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3853e6ef8cbf4e59a64422659f66bbb7');
INSERT INTO `items` (`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`,`uuid`) values ('40709','3','','10221','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','ef0432ffcf0546bf82177193866861cf');
INSERT INTO `items` (`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`,`uuid`) values ('40710','3','','10221','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','9b56a2a725bf4632bc28c6a5d0c3d64b');
INSERT INTO `items` (`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`,`uuid`) values ('40711','17','','10221','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','ba8178338b0e41ac97b0265f98b90770');
INSERT INTO `items` (`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`,`uuid`) values ('40712','20','1.3.6.1.2.1.1.4.0','10221','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','d4df70f2c5f04ad2b7f1b4e8ab9a9993');
INSERT INTO `items` (`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`,`uuid`) values ('40713','20','1.3.6.1.2.1.1.1.0','10221','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','804476e771374e22b8767f90f271654a');
INSERT INTO `items` (`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`,`uuid`) values ('40714','20','1.3.6.1.2.1.1.6.0','10221','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','f3d1970fc4404b4fa50a855433681105');
INSERT INTO `items` (`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`,`uuid`) values ('40715','20','1.3.6.1.2.1.1.5.0','10221','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a36cccdaf24c4e82801ebb44eaa5e25a');
INSERT INTO `items` (`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`,`uuid`) values ('40716','20','1.3.6.1.2.1.1.2.0','10221','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','651059497914431f827ad82a982e139b');
INSERT INTO `items` (`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`,`uuid`) values ('40717','20','1.3.6.1.2.1.1.3.0','10221','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','26a0a117545f4b17986f0b48996fec47');
INSERT INTO `items` (`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`,`uuid`) values ('40718','5','','10221','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'618','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7ce4f98cdc6741bbb03f6e2ea03432c4');
INSERT INTO `items` (`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`,`uuid`) values ('40719','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10221','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','620805730ede4c7281a1c736fcfeb130');
INSERT INTO `items` (`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`,`uuid`) values ('40720','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10221','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6782ece35ded46b08a4f45a9743b1ff5');
INSERT INTO `items` (`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`,`uuid`) values ('40721','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10221','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2130b9e384b14fd7909d421c7756284a');
INSERT INTO `items` (`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`,`uuid`) values ('40722','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10221','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a61f0168e034e8baf6794cf5cc5ce70');
INSERT INTO `items` (`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`,`uuid`) values ('40723','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10221','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','19e183dbf814471e885f2fef4b84e759');
INSERT INTO `items` (`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`,`uuid`) values ('40724','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10221','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','26135962ebd246ce82b3d101e7eb92a4');
INSERT INTO `items` (`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`,`uuid`) values ('40725','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10221','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e3b1efbafa204424b0a61cf877ad168b');
INSERT INTO `items` (`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`,`uuid`) values ('40726','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10221','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6994853a31054989b1e0fc25420f88b1');
INSERT INTO `items` (`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`,`uuid`) values ('40727','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10221','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cd36f7b9176349d1a5b69c7eef672986');
INSERT INTO `items` (`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`,`uuid`) values ('40728','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10221','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'615','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cf571531ada84121a94e1084070560c0');
INSERT INTO `items` (`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`,`uuid`) values ('40729','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10221','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'616','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ec1b53ae24ff443083ab691e1826734f');
INSERT INTO `items` (`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`,`uuid`) values ('40730','20','1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}','10221','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'614','','','0','','','','','2',NULL,'MIB: EtherLike-MIB\r\nThe current mode of operation of the MAC\r\nentity. \'unknown\' indicates that the current\r\nduplex mode could not be determined.\r\n\r\nManagement control of the duplex mode is\r\naccomplished through the MAU MIB. When\r\nan interface does not support autonegotiation,\r\nor when autonegotiation is not enabled, the\r\nduplex mode is controlled using\r\nifMauDefaultType. When autonegotiation is\r\nsupported and enabled, duplex mode is controlled\r\nusing ifMauAutoNegAdvertisedBits. In either\r\ncase, the currently operating duplex mode is\r\nreflected both in this object and in ifMauType.\r\n\r\nNote that this object provides redundant\r\ninformation with ifMauType. Normally, redundant\r\nobjects are discouraged. However, in this\r\ninstance, it allows a management application to\r\ndetermine the duplex status of an interface\r\nwithout having to know every possible value of\r\nifMauType. This was felt to be sufficiently\r\nvaluable to justify the redundancy.\r\nReference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','200797ecab6f416191d2ef0c836da4f5');
INSERT INTO `items` (`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`,`uuid`) values ('40731','3','','10222','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'621','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','caa6811dace14784abd7136ddfbcec8b');
INSERT INTO `items` (`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`,`uuid`) values ('40732','3','','10222','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','d18c1a0dbab64f238e82025d2c27b392');
INSERT INTO `items` (`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`,`uuid`) values ('40733','3','','10222','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','117fec4f68ad4782a0b0407bc465a31b');
INSERT INTO `items` (`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`,`uuid`) values ('40734','17','','10222','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','2a3acf94555d457d8837c6e75abbbf34');
INSERT INTO `items` (`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`,`uuid`) values ('40735','20','1.3.6.1.2.1.1.4.0','10222','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','aba1f89a56504dde9d0d6a60bafa9552');
INSERT INTO `items` (`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`,`uuid`) values ('40736','20','1.3.6.1.2.1.1.1.0','10222','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','26752257ad0f4bc58f678c247524c4cc');
INSERT INTO `items` (`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`,`uuid`) values ('40737','20','1.3.6.1.2.1.1.6.0','10222','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','64e931125c274e788b2f68dcb21725d8');
INSERT INTO `items` (`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`,`uuid`) values ('40738','20','1.3.6.1.2.1.1.5.0','10222','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fcf0be13144245568817543cfc47c006');
INSERT INTO `items` (`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`,`uuid`) values ('40739','20','1.3.6.1.2.1.1.2.0','10222','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f50184058d4549a1be9bae19c0743a84');
INSERT INTO `items` (`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`,`uuid`) values ('40740','20','1.3.6.1.2.1.1.3.0','10222','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb250daeb7e643f4b2f78ede9e26b8ec');
INSERT INTO `items` (`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`,`uuid`) values ('40741','5','','10222','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'622','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ca2130529464dc9ba9355a915c7e539');
INSERT INTO `items` (`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`,`uuid`) values ('40742','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10222','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dfac422a3258458da066517e1e52588b');
INSERT INTO `items` (`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`,`uuid`) values ('40743','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10222','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7a62806cac634abcae4e62077eff9dfe');
INSERT INTO `items` (`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`,`uuid`) values ('40744','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10222','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','afc0471bfc314108b01544fac5acd62e');
INSERT INTO `items` (`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`,`uuid`) values ('40745','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10222','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad7d24d91cb94c44849ecb6452f8015d');
INSERT INTO `items` (`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`,`uuid`) values ('40746','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10222','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','42fd86abfb7542ef98d1aa38a2b2296a');
INSERT INTO `items` (`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`,`uuid`) values ('40747','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10222','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','85c4804fcef04f8d8dc5d85c0e304144');
INSERT INTO `items` (`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`,`uuid`) values ('40748','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10222','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','663d3019261746c8893449dbc68facca');
INSERT INTO `items` (`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`,`uuid`) values ('40749','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10222','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa85e35f21e2466798b15f98ac95837c');
INSERT INTO `items` (`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`,`uuid`) values ('40750','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10222','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'619','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bca43e91bec842b6b0c29b9ce55eb1a2');
INSERT INTO `items` (`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`,`uuid`) values ('40751','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10222','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'620','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb1305c657c34021adbc6e260d880495');
INSERT INTO `items` (`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`,`uuid`) values ('40752','3','','10223','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'626','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','09fada9334444d18b149b2fa0e39ac76');
INSERT INTO `items` (`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`,`uuid`) values ('40753','3','','10223','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','1c2d54095100404c8e03b179f5df1761');
INSERT INTO `items` (`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`,`uuid`) values ('40754','3','','10223','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','3f66e84f94254655add99a1152225df7');
INSERT INTO `items` (`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`,`uuid`) values ('40755','17','','10223','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','c7c836a53c134dcda931ef9dba401f35');
INSERT INTO `items` (`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`,`uuid`) values ('40756','20','1.3.6.1.2.1.1.4.0','10223','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','29ee9181892b49a081299688f8c47798');
INSERT INTO `items` (`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`,`uuid`) values ('40757','20','1.3.6.1.2.1.1.1.0','10223','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','188e1d65459f40a48c3bc0f444024a00');
INSERT INTO `items` (`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`,`uuid`) values ('40758','20','1.3.6.1.2.1.1.6.0','10223','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','22473cfba211477ab8fbbb52c814de0d');
INSERT INTO `items` (`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`,`uuid`) values ('40759','20','1.3.6.1.2.1.1.5.0','10223','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','38d68b0f6cd4445b966ead7e7301ae86');
INSERT INTO `items` (`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`,`uuid`) values ('40760','20','1.3.6.1.2.1.1.2.0','10223','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5697ce18530b44f5a7e342344ecfe89a');
INSERT INTO `items` (`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`,`uuid`) values ('40761','20','1.3.6.1.2.1.1.3.0','10223','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5ca0653d792d42d1aebba51b36d5cf31');
INSERT INTO `items` (`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`,`uuid`) values ('40762','5','','10223','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'627','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','459f95874d194c7da40752f0336034be');
INSERT INTO `items` (`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`,`uuid`) values ('40763','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10223','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','86c7d09fe6bc4a93b634230290bcf851');
INSERT INTO `items` (`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`,`uuid`) values ('40764','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10223','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eb78fe16041440cb95d98ae01d53007d');
INSERT INTO `items` (`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`,`uuid`) values ('40765','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10223','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c0ce842d655a4bbba3759c557d8fba27');
INSERT INTO `items` (`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`,`uuid`) values ('40766','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10223','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','05ac64b0b74e4e048bbf86c077f23d40');
INSERT INTO `items` (`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`,`uuid`) values ('40767','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10223','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b80ca5f6547b42cba3b873fe58448988');
INSERT INTO `items` (`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`,`uuid`) values ('40768','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10223','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b2eafe0414924c82879bf9f389e7936f');
INSERT INTO `items` (`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`,`uuid`) values ('40769','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10223','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','151f1946a56d4ce7b7fe30d2e92f97ef');
INSERT INTO `items` (`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`,`uuid`) values ('40770','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10223','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e9ff8b57e89c4dc787f35ea8dd9c3040');
INSERT INTO `items` (`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`,`uuid`) values ('40771','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10223','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fd5324614a554b20bead9a9300c3b800');
INSERT INTO `items` (`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`,`uuid`) values ('40772','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10223','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'624','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b3f4568fbaed497aaf2ebcbfc1a385a6');
INSERT INTO `items` (`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`,`uuid`) values ('40773','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10223','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'625','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c8eadb9d69f4adb833f01bed8e18531');
INSERT INTO `items` (`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`,`uuid`) values ('40774','20','1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}','10223','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'623','','','0','','','','','2',NULL,'MIB: EtherLike-MIB\r\nThe current mode of operation of the MAC\r\nentity. \'unknown\' indicates that the current\r\nduplex mode could not be determined.\r\n\r\nManagement control of the duplex mode is\r\naccomplished through the MAU MIB. When\r\nan interface does not support autonegotiation,\r\nor when autonegotiation is not enabled, the\r\nduplex mode is controlled using\r\nifMauDefaultType. When autonegotiation is\r\nsupported and enabled, duplex mode is controlled\r\nusing ifMauAutoNegAdvertisedBits. In either\r\ncase, the currently operating duplex mode is\r\nreflected both in this object and in ifMauType.\r\n\r\nNote that this object provides redundant\r\ninformation with ifMauType. Normally, redundant\r\nobjects are discouraged. However, in this\r\ninstance, it allows a management application to\r\ndetermine the duplex status of an interface\r\nwithout having to know every possible value of\r\nifMauType. This was felt to be sufficiently\r\nvaluable to justify the redundancy.\r\nReference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','986a658678e2465997ad152317f6cf34');
INSERT INTO `items` (`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`,`uuid`) values ('40775','3','','10224','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'631','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ba27dc4ef9bf4c639b224b4e4881073e');
INSERT INTO `items` (`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`,`uuid`) values ('40776','20','1.3.6.1.2.1.1.3.0','10224','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','92f8e91c4d2c423984cb14440bc83328');
INSERT INTO `items` (`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`,`uuid`) values ('40777','20','1.3.6.1.2.1.1.2.0','10224','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','041115a5c3f44c8c9a9e1e0c7bc7203e');
INSERT INTO `items` (`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`,`uuid`) values ('40778','20','1.3.6.1.2.1.1.5.0','10224','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7345ee5a5db545a9a5bb90ab5626a2aa');
INSERT INTO `items` (`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`,`uuid`) values ('40779','20','1.3.6.1.2.1.1.6.0','10224','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','d8c7f5611f544299a95eedc0c80cedb5');
INSERT INTO `items` (`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`,`uuid`) values ('40780','3','','10224','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','bd39116401f249008d21e4109a34c6c7');
INSERT INTO `items` (`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`,`uuid`) values ('40781','20','1.3.6.1.2.1.1.1.0','10224','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e23764de0cda451d959e73ca0ea211ae');
INSERT INTO `items` (`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`,`uuid`) values ('40782','20','1.3.6.1.2.1.1.4.0','10224','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','aa2eb0947ea34b2bbb739d6025d914ea');
INSERT INTO `items` (`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`,`uuid`) values ('40783','17','','10224','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','da2bc25bb40642feaaff04b1cd5f85a0');
INSERT INTO `items` (`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`,`uuid`) values ('40784','3','','10224','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','c59f57d99c7045b6920e26c8c1b58e52');
INSERT INTO `items` (`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`,`uuid`) values ('40785','5','','10224','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'632','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','62a022d402c24da29c1aa7cb0eb64244');
INSERT INTO `items` (`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`,`uuid`) values ('40786','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10224','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ddc38e480b404039807079963eb247f9');
INSERT INTO `items` (`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`,`uuid`) values ('40787','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10224','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','63835abf440b4d6b879bfe0ba5cfa576');
INSERT INTO `items` (`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`,`uuid`) values ('40788','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10224','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f3a186e0c65e43139a7934a0536fe288');
INSERT INTO `items` (`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`,`uuid`) values ('40789','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10224','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','26f5e3bec06048c598d76c47b3260813');
INSERT INTO `items` (`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`,`uuid`) values ('40790','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10224','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2ec7bfa7073e471bb2f7941bff97f2fd');
INSERT INTO `items` (`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`,`uuid`) values ('40791','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10224','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4dac28ac2be748d5a2bba7bf92550c2b');
INSERT INTO `items` (`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`,`uuid`) values ('40792','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10224','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2ed84c7b80eb4c94b02c91154f1f9736');
INSERT INTO `items` (`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`,`uuid`) values ('40793','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10224','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e40f4821891c45318a732b1aae222382');
INSERT INTO `items` (`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`,`uuid`) values ('40794','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10224','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5014332a57b8479fa0638f275e2e0992');
INSERT INTO `items` (`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`,`uuid`) values ('40795','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10224','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'629','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','058b94a177e646829c37a96c83829aa1');
INSERT INTO `items` (`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`,`uuid`) values ('40796','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10224','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'630','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e6e5a562e7ce418aaecff58b4aef7b3e');
INSERT INTO `items` (`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`,`uuid`) values ('40797','20','1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}','10224','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'628','','','0','','','','','2',NULL,'MIB: EtherLike-MIB\r\nThe current mode of operation of the MAC\r\nentity. \'unknown\' indicates that the current\r\nduplex mode could not be determined.\r\n\r\nManagement control of the duplex mode is\r\naccomplished through the MAU MIB. When\r\nan interface does not support autonegotiation,\r\nor when autonegotiation is not enabled, the\r\nduplex mode is controlled using\r\nifMauDefaultType. When autonegotiation is\r\nsupported and enabled, duplex mode is controlled\r\nusing ifMauAutoNegAdvertisedBits. In either\r\ncase, the currently operating duplex mode is\r\nreflected both in this object and in ifMauType.\r\n\r\nNote that this object provides redundant\r\ninformation with ifMauType. Normally, redundant\r\nobjects are discouraged. However, in this\r\ninstance, it allows a management application to\r\ndetermine the duplex status of an interface\r\nwithout having to know every possible value of\r\nifMauType. This was felt to be sufficiently\r\nvaluable to justify the redundancy.\r\nReference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b2ca0759c8b1406aa2b664d2716026b9');
INSERT INTO `items` (`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`,`uuid`) values ('40798','3','','10226','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'636','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8818ba559e364390a8f5881a9b3ab5c7');
INSERT INTO `items` (`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`,`uuid`) values ('40799','3','','10226','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','06c6f4c60f9b4db0afa2886ad70507af');
INSERT INTO `items` (`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`,`uuid`) values ('40800','3','','10226','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','29f84e5b82b748a5b08475dd45ade97a');
INSERT INTO `items` (`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`,`uuid`) values ('40801','17','','10226','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','4dad4c7dc007426ebb4b36439b64a55b');
INSERT INTO `items` (`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`,`uuid`) values ('40802','20','1.3.6.1.2.1.1.4.0','10226','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','300812c78b9d4aeb82940d97ccee1d9e');
INSERT INTO `items` (`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`,`uuid`) values ('40803','20','1.3.6.1.2.1.1.1.0','10226','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c4996515da9e41728fb94c5134489e7b');
INSERT INTO `items` (`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`,`uuid`) values ('40804','20','1.3.6.1.2.1.1.6.0','10226','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','9bf103c35b284fc7ba9f7b4968006cd9');
INSERT INTO `items` (`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`,`uuid`) values ('40805','20','1.3.6.1.2.1.1.5.0','10226','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','adb55c04903d4c37a9ccecc78ac877d5');
INSERT INTO `items` (`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`,`uuid`) values ('40806','20','1.3.6.1.2.1.1.2.0','10226','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9d2e3e58dc4543d3b5df8ded3c2a4d90');
INSERT INTO `items` (`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`,`uuid`) values ('40807','20','1.3.6.1.2.1.1.3.0','10226','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9b2549a4c09a4b0d9112aed011b03583');
INSERT INTO `items` (`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`,`uuid`) values ('40808','5','','10226','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'637','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','28e7a457abdf42c3a647642b3c4964e0');
INSERT INTO `items` (`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`,`uuid`) values ('40809','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10226','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','12e011a176284ab4807c2285768b0470');
INSERT INTO `items` (`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`,`uuid`) values ('40810','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10226','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f6784e45dac14c91bea4ffb14d4793e9');
INSERT INTO `items` (`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`,`uuid`) values ('40811','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10226','Interface {#IFDESCR}: Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7f259420bb944d5397ffee61c72629d1');
INSERT INTO `items` (`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`,`uuid`) values ('40812','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10226','Interface {#IFDESCR}: Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bf2f604e912f4d15999a7931eea58d93');
INSERT INTO `items` (`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`,`uuid`) values ('40813','20','1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX}','10226','Interface {#IFDESCR}: Bits received','net.if.in[ifInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','34a3f71da7fb4896be8bda4b8840577d');
INSERT INTO `items` (`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`,`uuid`) values ('40814','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10226','Interface {#IFDESCR}: Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b7cb1f80962a46fe97ce1af186530eb3');
INSERT INTO `items` (`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`,`uuid`) values ('40815','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10226','Interface {#IFDESCR}: Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f51311b11b53440f9256ef01ed14ddf0');
INSERT INTO `items` (`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`,`uuid`) values ('40816','20','1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX}','10226','Interface {#IFDESCR}: Bits sent','net.if.out[ifOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2097ef34441343f291ce2bf160ba280f');
INSERT INTO `items` (`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`,`uuid`) values ('40817','20','1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX}','10226','Interface {#IFDESCR}: Speed','net.if.speed[ifSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in bits per second.\r\nFor interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,\r\nthis object should contain the nominal bandwidth.\r\nIf the bandwidth of the interface is greater than the maximum value reportable by this object then\r\nthis object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interface\'s speed.\r\nFor a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a9cd6719c794d16bb53ab5c422cc619');
INSERT INTO `items` (`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`,`uuid`) values ('40818','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10226','Interface {#IFDESCR}: Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'634','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6808335d9cbf44f0ba21fc6a1f146ae7');
INSERT INTO `items` (`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`,`uuid`) values ('40819','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10226','Interface {#IFDESCR}: Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'635','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','251413125851440a81acaeab7b1632d5');
INSERT INTO `items` (`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`,`uuid`) values ('40820','20','1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}','10226','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'633','','','0','','','','','2',NULL,'MIB: EtherLike-MIB\r\nThe current mode of operation of the MAC\r\nentity. \'unknown\' indicates that the current\r\nduplex mode could not be determined.\r\n\r\nManagement control of the duplex mode is\r\naccomplished through the MAU MIB. When\r\nan interface does not support autonegotiation,\r\nor when autonegotiation is not enabled, the\r\nduplex mode is controlled using\r\nifMauDefaultType. When autonegotiation is\r\nsupported and enabled, duplex mode is controlled\r\nusing ifMauAutoNegAdvertisedBits. In either\r\ncase, the currently operating duplex mode is\r\nreflected both in this object and in ifMauType.\r\n\r\nNote that this object provides redundant\r\ninformation with ifMauType. Normally, redundant\r\nobjects are discouraged. However, in this\r\ninstance, it allows a management application to\r\ndetermine the duplex status of an interface\r\nwithout having to know every possible value of\r\nifMauType. This was felt to be sufficiently\r\nvaluable to justify the redundancy.\r\nReference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a61d1e3f2aec496b81e1d6769995a633');
INSERT INTO `items` (`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`,`uuid`) values ('40821','3','','10227','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'641','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fbefc108101b48e298a01037d5b3db50');
INSERT INTO `items` (`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`,`uuid`) values ('40822','3','','10227','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','49b86b6d17394b859b02ea79c6d28b30');
INSERT INTO `items` (`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`,`uuid`) values ('40823','3','','10227','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','1560f8f1509040a783e4149845ce38a3');
INSERT INTO `items` (`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`,`uuid`) values ('40824','17','','10227','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','fa164b01a218494dab454126b4f561a9');
INSERT INTO `items` (`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`,`uuid`) values ('40825','20','1.3.6.1.2.1.1.4.0','10227','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','6f340c49d4364b8096a49c3fa52e2745');
INSERT INTO `items` (`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`,`uuid`) values ('40826','20','1.3.6.1.2.1.1.1.0','10227','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','85e404c0181143f28b1187acb08cfa04');
INSERT INTO `items` (`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`,`uuid`) values ('40827','20','1.3.6.1.2.1.1.6.0','10227','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','3e4feed03de941c98e88e17b3e81b5e4');
INSERT INTO `items` (`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`,`uuid`) values ('40828','20','1.3.6.1.2.1.1.5.0','10227','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b57179ad3e5f41f5805e93ff9e68d631');
INSERT INTO `items` (`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`,`uuid`) values ('40829','20','1.3.6.1.2.1.1.2.0','10227','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','72139a34e0cf4357b86a52cf8430ee8c');
INSERT INTO `items` (`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`,`uuid`) values ('40830','20','1.3.6.1.2.1.1.3.0','10227','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac039d3041cc439eb1c3184ed78554d0');
INSERT INTO `items` (`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`,`uuid`) values ('40831','5','','10227','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'642','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c407deea6e0f41b18d84ccbe7fcbca63');
INSERT INTO `items` (`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`,`uuid`) values ('40832','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10227','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ef05164a28be4a37950e7edc17dd389b');
INSERT INTO `items` (`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`,`uuid`) values ('40833','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10227','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','21d413e388294d288edc95d98eb27980');
INSERT INTO `items` (`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`,`uuid`) values ('40834','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10227','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','22cd0f5dd18b4d68ba2695a681819c45');
INSERT INTO `items` (`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`,`uuid`) values ('40835','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10227','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','442bc76f9f4441f6b3c7ff60b9359e2b');
INSERT INTO `items` (`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`,`uuid`) values ('40836','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10227','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac12b0e85f3b49239838c6625d62d8a9');
INSERT INTO `items` (`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`,`uuid`) values ('40837','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10227','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ed6e19e8821349f380a3c0d4fdd2f4e0');
INSERT INTO `items` (`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`,`uuid`) values ('40838','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10227','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d077353aafbb43678bed7dba795923ce');
INSERT INTO `items` (`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`,`uuid`) values ('40839','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10227','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e76bb270115240d8b0fdb17b1b010418');
INSERT INTO `items` (`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`,`uuid`) values ('40840','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10227','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','61b52d6ce511476a8baeaf302476e831');
INSERT INTO `items` (`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`,`uuid`) values ('40841','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10227','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'639','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4391767dc38e4f4fbc1cd2dc186beb82');
INSERT INTO `items` (`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`,`uuid`) values ('40842','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10227','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'640','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2733e5694b544bb98ff981b2ed8371ec');
INSERT INTO `items` (`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`,`uuid`) values ('40843','20','1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}','10227','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'638','','','0','','','','','2',NULL,'MIB: EtherLike-MIB\r\nThe current mode of operation of the MAC\r\nentity. \'unknown\' indicates that the current\r\nduplex mode could not be determined.\r\n\r\nManagement control of the duplex mode is\r\naccomplished through the MAU MIB. When\r\nan interface does not support autonegotiation,\r\nor when autonegotiation is not enabled, the\r\nduplex mode is controlled using\r\nifMauDefaultType. When autonegotiation is\r\nsupported and enabled, duplex mode is controlled\r\nusing ifMauAutoNegAdvertisedBits. In either\r\ncase, the currently operating duplex mode is\r\nreflected both in this object and in ifMauType.\r\n\r\nNote that this object provides redundant\r\ninformation with ifMauType. Normally, redundant\r\nobjects are discouraged. However, in this\r\ninstance, it allows a management application to\r\ndetermine the duplex status of an interface\r\nwithout having to know every possible value of\r\nifMauType. This was felt to be sufficiently\r\nvaluable to justify the redundancy.\r\nReference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ee270fb1f0c54a5c91c581ee28c7a066');
INSERT INTO `items` (`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`,`uuid`) values ('40844','3','','10250','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'646','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eb35864dcdc142d1a136e47fabe5f017');
INSERT INTO `items` (`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`,`uuid`) values ('40845','3','','10250','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','722e38d7a1bd433192616664cc2824f8');
INSERT INTO `items` (`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`,`uuid`) values ('40846','3','','10250','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','93f693245d3848afb6c89881cede42c1');
INSERT INTO `items` (`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`,`uuid`) values ('40847','17','','10250','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','b7530ee6104342319b0cad986a3a4daf');
INSERT INTO `items` (`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`,`uuid`) values ('40848','20','1.3.6.1.2.1.1.4.0','10250','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','1397f0fc832e47daa39308585f260152');
INSERT INTO `items` (`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`,`uuid`) values ('40849','20','1.3.6.1.2.1.1.1.0','10250','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','31211351783648bc9c727205c0273a4b');
INSERT INTO `items` (`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`,`uuid`) values ('40850','20','1.3.6.1.2.1.1.6.0','10250','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','ad2dc1149eb546309657928b944c49fb');
INSERT INTO `items` (`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`,`uuid`) values ('40851','20','1.3.6.1.2.1.1.5.0','10250','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ba7fd7afad3f4b76bdfedc8c6c3a24ac');
INSERT INTO `items` (`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`,`uuid`) values ('40852','20','1.3.6.1.2.1.1.2.0','10250','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','74fd9c1bd546497aa20b9af09b951e98');
INSERT INTO `items` (`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`,`uuid`) values ('40853','20','1.3.6.1.2.1.1.3.0','10250','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','02e67b092ccf478ba13537ba6471f3fd');
INSERT INTO `items` (`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`,`uuid`) values ('40854','5','','10250','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'647','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','af855c1e75304c26b11a86c2a86f08f2');
INSERT INTO `items` (`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`,`uuid`) values ('40855','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10250','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dd018320e4b2466786840efdcd4a9fd9');
INSERT INTO `items` (`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`,`uuid`) values ('40856','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10250','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','92a9d50fd9894af486dfcee142db1d61');
INSERT INTO `items` (`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`,`uuid`) values ('40857','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10250','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a8a1540bbbe74cb2a268ec9e9ca4ce05');
INSERT INTO `items` (`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`,`uuid`) values ('40858','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10250','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','93e0dfe819ba4e7593a55fb3e25493da');
INSERT INTO `items` (`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`,`uuid`) values ('40859','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10250','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','97b4ae057fcb43eebc64cea1830354b5');
INSERT INTO `items` (`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`,`uuid`) values ('40860','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10250','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1cc76ff8008c443a8c6f65fd7f44c465');
INSERT INTO `items` (`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`,`uuid`) values ('40861','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10250','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5cd2334dd4c544f9b0a506a143cfb79a');
INSERT INTO `items` (`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`,`uuid`) values ('40862','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10250','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','59f3f55d93024c02b234561bb0cfe5a6');
INSERT INTO `items` (`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`,`uuid`) values ('40863','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10250','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','46b37fed488f4028ad8937ddb9edacad');
INSERT INTO `items` (`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`,`uuid`) values ('40864','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10250','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'644','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6b0829277ef74410aa8d39a07d4336a5');
INSERT INTO `items` (`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`,`uuid`) values ('40865','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10250','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'645','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','60791f5d3f864b5ca4f08de9540b8fca');
INSERT INTO `items` (`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`,`uuid`) values ('40866','20','1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}','10250','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'643','','','0','','','','','2',NULL,'MIB: EtherLike-MIB\r\nThe current mode of operation of the MAC\r\nentity. \'unknown\' indicates that the current\r\nduplex mode could not be determined.\r\n\r\nManagement control of the duplex mode is\r\naccomplished through the MAU MIB. When\r\nan interface does not support autonegotiation,\r\nor when autonegotiation is not enabled, the\r\nduplex mode is controlled using\r\nifMauDefaultType. When autonegotiation is\r\nsupported and enabled, duplex mode is controlled\r\nusing ifMauAutoNegAdvertisedBits. In either\r\ncase, the currently operating duplex mode is\r\nreflected both in this object and in ifMauType.\r\n\r\nNote that this object provides redundant\r\ninformation with ifMauType. Normally, redundant\r\nobjects are discouraged. However, in this\r\ninstance, it allows a management application to\r\ndetermine the duplex status of an interface\r\nwithout having to know every possible value of\r\nifMauType. This was felt to be sufficiently\r\nvaluable to justify the redundancy.\r\nReference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','837e3fa435894249ad3fb599e3afdb1e');
INSERT INTO `items` (`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`,`uuid`) values ('40867','3','','10229','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'651','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1cd98c8030f14fbca6abee35eb87e45b');
INSERT INTO `items` (`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`,`uuid`) values ('40868','3','','10229','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','ee1ee4ce3b3a4545bd407ecc3e428049');
INSERT INTO `items` (`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`,`uuid`) values ('40869','3','','10229','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','4f3bda2c7ab84a418bde7602cf0d608d');
INSERT INTO `items` (`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`,`uuid`) values ('40870','17','','10229','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','023b4403df464029a1493c53a0122d6f');
INSERT INTO `items` (`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`,`uuid`) values ('40871','20','1.3.6.1.2.1.1.4.0','10229','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','9aba5f7df03b4904869e0043dc73b9ae');
INSERT INTO `items` (`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`,`uuid`) values ('40872','20','1.3.6.1.2.1.1.1.0','10229','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','034cdbc177c346e0b49791250b8bf66d');
INSERT INTO `items` (`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`,`uuid`) values ('40873','20','1.3.6.1.2.1.1.6.0','10229','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','78041d1a10ed4cb6b89a77bc1478b009');
INSERT INTO `items` (`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`,`uuid`) values ('40874','20','1.3.6.1.2.1.1.5.0','10229','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3fad2aa468c2492a89b28bdbffd00c6c');
INSERT INTO `items` (`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`,`uuid`) values ('40875','20','1.3.6.1.2.1.1.2.0','10229','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a5e66466550f44a4b1d2137c751e9009');
INSERT INTO `items` (`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`,`uuid`) values ('40876','20','1.3.6.1.2.1.1.3.0','10229','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e9dd0d849aaa499da9e2ef9e21ccd50e');
INSERT INTO `items` (`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`,`uuid`) values ('40877','5','','10229','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'652','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','291fbe54d7c845bb9ec5b080be084612');
INSERT INTO `items` (`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`,`uuid`) values ('40878','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10229','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','840dc40761294dc294cdd909318a7053');
INSERT INTO `items` (`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`,`uuid`) values ('40879','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10229','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3d5bfd91c42b4656bf5843484ca2e016');
INSERT INTO `items` (`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`,`uuid`) values ('40880','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10229','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e5972a8dce67488cb6119c4f49d59a12');
INSERT INTO `items` (`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`,`uuid`) values ('40881','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10229','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d21e9fec64c54fd19605f8a8ba230211');
INSERT INTO `items` (`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`,`uuid`) values ('40882','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10229','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e5323fadbfbe4773ab450312a2c29164');
INSERT INTO `items` (`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`,`uuid`) values ('40883','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10229','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c5bc13495caf4a208b21bcd0a515a19d');
INSERT INTO `items` (`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`,`uuid`) values ('40884','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10229','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9291e8cfc58a4c029ff339bae4892faf');
INSERT INTO `items` (`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`,`uuid`) values ('40885','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10229','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','998389bdf381441e92ddd597272002fa');
INSERT INTO `items` (`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`,`uuid`) values ('40886','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10229','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c45208952a8f43e7a4ac90dbc9bf2eac');
INSERT INTO `items` (`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`,`uuid`) values ('40887','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10229','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'649','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1659d815112945478585fceef9318e68');
INSERT INTO `items` (`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`,`uuid`) values ('40888','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10229','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'650','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f6135b96b3584060b3a605312748edf4');
INSERT INTO `items` (`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`,`uuid`) values ('40889','20','1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}','10229','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'648','','','0','','','','','2',NULL,'MIB: EtherLike-MIB\r\nThe current mode of operation of the MAC\r\nentity. \'unknown\' indicates that the current\r\nduplex mode could not be determined.\r\n\r\nManagement control of the duplex mode is\r\naccomplished through the MAU MIB. When\r\nan interface does not support autonegotiation,\r\nor when autonegotiation is not enabled, the\r\nduplex mode is controlled using\r\nifMauDefaultType. When autonegotiation is\r\nsupported and enabled, duplex mode is controlled\r\nusing ifMauAutoNegAdvertisedBits. In either\r\ncase, the currently operating duplex mode is\r\nreflected both in this object and in ifMauType.\r\n\r\nNote that this object provides redundant\r\ninformation with ifMauType. Normally, redundant\r\nobjects are discouraged. However, in this\r\ninstance, it allows a management application to\r\ndetermine the duplex status of an interface\r\nwithout having to know every possible value of\r\nifMauType. This was felt to be sufficiently\r\nvaluable to justify the redundancy.\r\nReference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','75c0d230a0ff43c2b0d40a071d058c72');
INSERT INTO `items` (`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`,`uuid`) values ('40890','3','','10230','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'655','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','45c9681958504f3b8b161a2c7c728dbb');
INSERT INTO `items` (`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`,`uuid`) values ('40891','3','','10230','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','81af3843a1e44469affca02640f22b77');
INSERT INTO `items` (`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`,`uuid`) values ('40892','3','','10230','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','771d21b9c40b426d97eff54c6ac5227e');
INSERT INTO `items` (`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`,`uuid`) values ('40893','17','','10230','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','5bb2ef0f72244294bcc469710a0a1225');
INSERT INTO `items` (`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`,`uuid`) values ('40894','20','1.3.6.1.2.1.1.4.0','10230','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','8570bf70c217434cb40b9efa74d7e070');
INSERT INTO `items` (`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`,`uuid`) values ('40895','20','1.3.6.1.2.1.1.1.0','10230','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1c17fbf4b11b45f087668eefa9438341');
INSERT INTO `items` (`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`,`uuid`) values ('40896','20','1.3.6.1.2.1.1.6.0','10230','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','d1ee46aa709d43919ae3727e4d55af42');
INSERT INTO `items` (`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`,`uuid`) values ('40897','20','1.3.6.1.2.1.1.5.0','10230','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7f06f097558d4ef3801207031e660756');
INSERT INTO `items` (`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`,`uuid`) values ('40898','20','1.3.6.1.2.1.1.2.0','10230','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c4c4e044967a432a829ca88d8dcd8c2e');
INSERT INTO `items` (`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`,`uuid`) values ('40899','20','1.3.6.1.2.1.1.3.0','10230','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','db4c4bc058b147a293b12f8737e42a53');
INSERT INTO `items` (`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`,`uuid`) values ('40900','5','','10230','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'656','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a182c41cf58b465895ff677ca96e5b65');
INSERT INTO `items` (`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`,`uuid`) values ('40901','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10230','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','10fcb5ff857448bf88ebfb02d1bea505');
INSERT INTO `items` (`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`,`uuid`) values ('40902','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10230','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f099609537764e45bf023b07f983c6cc');
INSERT INTO `items` (`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`,`uuid`) values ('40903','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10230','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8a6b75dab396460b85b2b0a5c545a163');
INSERT INTO `items` (`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`,`uuid`) values ('40904','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10230','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab73df14ab8d4d00994d0fad4abe0cf2');
INSERT INTO `items` (`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`,`uuid`) values ('40905','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10230','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7edbc6d440c94857818fed946ee74ef0');
INSERT INTO `items` (`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`,`uuid`) values ('40906','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10230','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ae4ac83054d344d6be098d4c70c9cbf7');
INSERT INTO `items` (`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`,`uuid`) values ('40907','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10230','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','88f432e3c475431c8295497d68ec904b');
INSERT INTO `items` (`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`,`uuid`) values ('40908','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10230','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ae55937ae3084131b58263805ba6d3ad');
INSERT INTO `items` (`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`,`uuid`) values ('40909','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10230','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'653','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a0818a565e9e4ac69312a04b69de9c95');
INSERT INTO `items` (`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`,`uuid`) values ('40910','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10230','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'654','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f979174f556c4906825d9373f60f22ab');
INSERT INTO `items` (`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`,`uuid`) values ('40911','3','','10231','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'660','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e5cf73357ca349818155522325a7c6bc');
INSERT INTO `items` (`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`,`uuid`) values ('40912','3','','10231','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','3a1c4412bb9340169827209df2554a50');
INSERT INTO `items` (`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`,`uuid`) values ('40913','3','','10231','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','ad350f912d2f4ead90aacdefa245cdf3');
INSERT INTO `items` (`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`,`uuid`) values ('40914','17','','10231','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','e5470bc511a5499e9b8dc8bf4de8f054');
INSERT INTO `items` (`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`,`uuid`) values ('40915','20','1.3.6.1.2.1.1.4.0','10231','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','b8583eaf0353493ba18e751c9355dfa7');
INSERT INTO `items` (`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`,`uuid`) values ('40916','20','1.3.6.1.2.1.1.1.0','10231','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ca8d30d561184ff4bf1b4ef07feb7302');
INSERT INTO `items` (`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`,`uuid`) values ('40917','20','1.3.6.1.2.1.1.6.0','10231','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','7a0062fa788c4abdbeb83df30276a0fd');
INSERT INTO `items` (`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`,`uuid`) values ('40918','20','1.3.6.1.2.1.1.5.0','10231','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','87d8d5844b044be1a2a3261f98116fb0');
INSERT INTO `items` (`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`,`uuid`) values ('40919','20','1.3.6.1.2.1.1.2.0','10231','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ebfd8c6f87d3401197bb8d9835206878');
INSERT INTO `items` (`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`,`uuid`) values ('40920','20','1.3.6.1.2.1.1.3.0','10231','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd29b0df96ac4b93bbd0746257d3601d');
INSERT INTO `items` (`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`,`uuid`) values ('40921','5','','10231','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'661','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','80ff69518e07493aac6059e1009d9a9f');
INSERT INTO `items` (`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`,`uuid`) values ('40922','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10231','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ec2a60b8bfe43e7b9227042da1cf2ac');
INSERT INTO `items` (`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`,`uuid`) values ('40923','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10231','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f4446053584f49fcb1375a3a4ba537e9');
INSERT INTO `items` (`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`,`uuid`) values ('40924','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10231','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3ccc2d240a264ac59388dfcabbd0d794');
INSERT INTO `items` (`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`,`uuid`) values ('40925','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10231','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3d94079eddb141ceac3b6a134168e422');
INSERT INTO `items` (`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`,`uuid`) values ('40926','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10231','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0cde648550284243a078965f165a069a');
INSERT INTO `items` (`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`,`uuid`) values ('40927','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10231','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d440b154c6194043a657fca8c4ed3179');
INSERT INTO `items` (`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`,`uuid`) values ('40928','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10231','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e9ed9d3d6b8b4340b7f1e22ca066a61d');
INSERT INTO `items` (`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`,`uuid`) values ('40929','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10231','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9c2bd3364f984af498b7bedbccc23c77');
INSERT INTO `items` (`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`,`uuid`) values ('40930','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10231','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','339529dba51f4ae5abe508a2461e0e71');
INSERT INTO `items` (`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`,`uuid`) values ('40931','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10231','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'658','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','51cda26d008e458790fd722a95072814');
INSERT INTO `items` (`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`,`uuid`) values ('40932','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10231','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'659','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','68dd9241092f4f2994d6e5d53cec96b7');
INSERT INTO `items` (`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`,`uuid`) values ('40933','20','1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}','10231','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'657','','','0','','','','','2',NULL,'MIB: EtherLike-MIB\r\nThe current mode of operation of the MAC\r\nentity. \'unknown\' indicates that the current\r\nduplex mode could not be determined.\r\n\r\nManagement control of the duplex mode is\r\naccomplished through the MAU MIB. When\r\nan interface does not support autonegotiation,\r\nor when autonegotiation is not enabled, the\r\nduplex mode is controlled using\r\nifMauDefaultType. When autonegotiation is\r\nsupported and enabled, duplex mode is controlled\r\nusing ifMauAutoNegAdvertisedBits. In either\r\ncase, the currently operating duplex mode is\r\nreflected both in this object and in ifMauType.\r\n\r\nNote that this object provides redundant\r\ninformation with ifMauType. Normally, redundant\r\nobjects are discouraged. However, in this\r\ninstance, it allows a management application to\r\ndetermine the duplex status of an interface\r\nwithout having to know every possible value of\r\nifMauType. This was felt to be sufficiently\r\nvaluable to justify the redundancy.\r\nReference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bbe031a739e9406bb89c028a24535dc5');
INSERT INTO `items` (`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`,`uuid`) values ('40934','3','','10449','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'664','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3614c3929ad5439f9829fd07e83d2d04');
INSERT INTO `items` (`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`,`uuid`) values ('40935','20','1.3.6.1.2.1.1.5.0','10449','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a72a6424b8a24277a952d0d2e3974ad3');
INSERT INTO `items` (`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`,`uuid`) values ('40936','20','1.3.6.1.2.1.1.3.0','10449','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','04b76355c37041569f60b8d36d279f31');
INSERT INTO `items` (`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`,`uuid`) values ('40937','20','1.3.6.1.2.1.1.2.0','10449','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','79d95aec65934350b59a52e4af4b0fd7');
INSERT INTO `items` (`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`,`uuid`) values ('40938','20','1.3.6.1.2.1.1.6.0','10449','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','8d35083324f245fda442d6c2183a2007');
INSERT INTO `items` (`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`,`uuid`) values ('40939','3','','10449','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','7d018eef194b4734a67537b410d083d1');
INSERT INTO `items` (`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`,`uuid`) values ('40940','20','1.3.6.1.2.1.1.1.0','10449','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','42f88903cca745a8a54fed6355d72a86');
INSERT INTO `items` (`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`,`uuid`) values ('40941','20','1.3.6.1.2.1.1.4.0','10449','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','45de6d3b762042f1beba38b42a5ce271');
INSERT INTO `items` (`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`,`uuid`) values ('40942','17','','10449','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','f5aa15bcdd8a41449014241122f42ed5');
INSERT INTO `items` (`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`,`uuid`) values ('40943','3','','10449','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','55b40d51d6694cf5b2da626587afe20e');
INSERT INTO `items` (`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`,`uuid`) values ('40944','5','','10449','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'665','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7bbae2f760b2437a92e27abc5f0c4c7a');
INSERT INTO `items` (`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`,`uuid`) values ('40945','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10449','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','afd7c5604cbc4142903dcc6dce8d5653');
INSERT INTO `items` (`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`,`uuid`) values ('40946','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10449','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','088e163cea204bdf81c29b7dd9aa6cce');
INSERT INTO `items` (`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`,`uuid`) values ('40947','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10449','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff3b483497b84ff081d5ab28104e4579');
INSERT INTO `items` (`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`,`uuid`) values ('40948','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10449','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','33618d8ffb5c4d07a2b290e4c75073c9');
INSERT INTO `items` (`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`,`uuid`) values ('40949','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10449','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','17633027e7b84b1bbbeae76d53167713');
INSERT INTO `items` (`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`,`uuid`) values ('40950','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10449','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c532fd7877a413eaa528137b67d6857');
INSERT INTO `items` (`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`,`uuid`) values ('40951','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10449','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','524fc8bdd17e4eb99184829300e5c056');
INSERT INTO `items` (`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`,`uuid`) values ('40952','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10449','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','534bf0300941479d9e468d418014d098');
INSERT INTO `items` (`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`,`uuid`) values ('40953','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10449','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'662','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f1d0b7bbd5824ab7959be1230a4c0beb');
INSERT INTO `items` (`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`,`uuid`) values ('40954','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10449','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'663','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','71d2a42612124a3eaa61a3baee1d4691');
INSERT INTO `items` (`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`,`uuid`) values ('40955','3','','10450','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'668','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','41881ff47c664642a6e9e9776eb17295');
INSERT INTO `items` (`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`,`uuid`) values ('40956','20','1.3.6.1.2.1.1.5.0','10450','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8a59a79c33ce484888308a171b5dd507');
INSERT INTO `items` (`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`,`uuid`) values ('40957','20','1.3.6.1.2.1.1.3.0','10450','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd0d3629dc4445968d42642640cee4ef');
INSERT INTO `items` (`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`,`uuid`) values ('40958','20','1.3.6.1.2.1.1.2.0','10450','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','66afc3c4f48e4e008c323c46afd38b21');
INSERT INTO `items` (`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`,`uuid`) values ('40959','20','1.3.6.1.2.1.1.6.0','10450','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','0fc01029ea6c491690c76be5b4a1a10f');
INSERT INTO `items` (`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`,`uuid`) values ('40960','3','','10450','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','17ef5c841e254cf399f05b4a1ebfbddd');
INSERT INTO `items` (`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`,`uuid`) values ('40961','20','1.3.6.1.2.1.1.1.0','10450','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0bba1b52c87d47119974e30e373423c6');
INSERT INTO `items` (`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`,`uuid`) values ('40962','20','1.3.6.1.2.1.1.4.0','10450','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','2c510a601eb34626bdcc105dc6e88083');
INSERT INTO `items` (`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`,`uuid`) values ('40963','17','','10450','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','ad29673a93724660bbf7f34cc8b9b103');
INSERT INTO `items` (`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`,`uuid`) values ('40964','3','','10450','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','b85868ac7f9646f9b8a672ca0a047dd9');
INSERT INTO `items` (`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`,`uuid`) values ('40965','5','','10450','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'669','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d2a7924b19e14fb5a0adea4664cddb52');
INSERT INTO `items` (`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`,`uuid`) values ('40966','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10450','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f4df6cb6afce4d0298e1f97f8d0a7ad5');
INSERT INTO `items` (`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`,`uuid`) values ('40967','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10450','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','083ce77f9fcf4e4e8cd32ba1fcb97c37');
INSERT INTO `items` (`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`,`uuid`) values ('40968','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10450','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0e6b356f0adf473bbaf9dd06c5841a4f');
INSERT INTO `items` (`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`,`uuid`) values ('40969','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10450','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c09bbd51b8e4831918ae3af18d3afff');
INSERT INTO `items` (`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`,`uuid`) values ('40970','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10450','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9f02418a4efd4b8984b5a8077f66a90a');
INSERT INTO `items` (`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`,`uuid`) values ('40971','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10450','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2dbfd918f1e84062a20551658c7c334a');
INSERT INTO `items` (`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`,`uuid`) values ('40972','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10450','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','18048b87397d48c5bd49bed17255cff4');
INSERT INTO `items` (`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`,`uuid`) values ('40973','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10450','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','844a0876ea2f435dbf9f0642659102b2');
INSERT INTO `items` (`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`,`uuid`) values ('40974','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10450','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'666','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6665aecef4f844b68f71ef27fd5011dc');
INSERT INTO `items` (`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`,`uuid`) values ('40975','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10450','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'667','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff6673977cc44e7f9aa883baaf9186cc');
INSERT INTO `items` (`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`,`uuid`) values ('40976','3','','10451','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'672','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','70022c25c1ed4af49c878af7f2c5b73c');
INSERT INTO `items` (`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`,`uuid`) values ('40977','20','1.3.6.1.2.1.1.5.0','10451','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','651753ff590d41a7b7478ca98ec9b0d9');
INSERT INTO `items` (`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`,`uuid`) values ('40978','20','1.3.6.1.2.1.1.3.0','10451','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8fd10918d51640619279d5874e06e20b');
INSERT INTO `items` (`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`,`uuid`) values ('40979','20','1.3.6.1.2.1.1.2.0','10451','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','744a4d413ff74ffea13e0d6a0813eeee');
INSERT INTO `items` (`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`,`uuid`) values ('40980','20','1.3.6.1.2.1.1.6.0','10451','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','bb4e80a9dfaf4165abac4fa360e77bf3');
INSERT INTO `items` (`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`,`uuid`) values ('40981','3','','10451','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','f22e586a94424cb18483170ffa9f8b33');
INSERT INTO `items` (`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`,`uuid`) values ('40982','20','1.3.6.1.2.1.1.1.0','10451','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4d011e0751664b31b216329a1963afc2');
INSERT INTO `items` (`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`,`uuid`) values ('40983','20','1.3.6.1.2.1.1.4.0','10451','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','4f5b003c74924567972b75b3c240c16c');
INSERT INTO `items` (`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`,`uuid`) values ('40984','17','','10451','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','7b02fde229c24c99a5ce8f9073717855');
INSERT INTO `items` (`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`,`uuid`) values ('40985','3','','10451','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','cf38efbab9c84551bb15f0544fb57838');
INSERT INTO `items` (`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`,`uuid`) values ('40986','5','','10451','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'673','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','22fd5ba91f1d4297b07e4be7f420735a');
INSERT INTO `items` (`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`,`uuid`) values ('40987','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10451','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4a6d05e315d3402989b53df2ce59ab8c');
INSERT INTO `items` (`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`,`uuid`) values ('40988','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10451','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','512bdfa8d1344722b8b1d08c12e1383e');
INSERT INTO `items` (`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`,`uuid`) values ('40989','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10451','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e00497ab2965474e9c5d3ab7ea6589f9');
INSERT INTO `items` (`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`,`uuid`) values ('40990','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10451','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8624f7dd1e2742b1a721d0c62d005afe');
INSERT INTO `items` (`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`,`uuid`) values ('40991','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10451','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','530649dcb53f4069b1ab1d0cca8e26a1');
INSERT INTO `items` (`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`,`uuid`) values ('40992','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10451','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2dfd48d9417c4bf8b9ec6b272a245b9e');
INSERT INTO `items` (`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`,`uuid`) values ('40993','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10451','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cef1258beb714f1c9d81e48de7c5deed');
INSERT INTO `items` (`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`,`uuid`) values ('40994','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10451','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','567ebfed5b574f7a93949373e03ecfa9');
INSERT INTO `items` (`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`,`uuid`) values ('40995','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10451','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'670','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8086dade1d974203ad8e4dcfccc48014');
INSERT INTO `items` (`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`,`uuid`) values ('40996','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10451','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'671','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','24ae5851f6d84bc0aeeac124e8a3b35f');
INSERT INTO `items` (`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`,`uuid`) values ('40997','3','','10452','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'676','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fa447fdbf6e7440381f73a55e244405c');
INSERT INTO `items` (`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`,`uuid`) values ('40998','20','1.3.6.1.2.1.1.5.0','10452','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8891f56528a34481838f9a8303412b0d');
INSERT INTO `items` (`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`,`uuid`) values ('40999','20','1.3.6.1.2.1.1.3.0','10452','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4d42c5c9972445889de6e09abfdbc847');
INSERT INTO `items` (`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`,`uuid`) values ('41000','20','1.3.6.1.2.1.1.2.0','10452','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f91f4184edee42bbbd45dc23668946f2');
INSERT INTO `items` (`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`,`uuid`) values ('41001','20','1.3.6.1.2.1.1.6.0','10452','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','252fc6ffddbf403a91e0bf1f558526d6');
INSERT INTO `items` (`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`,`uuid`) values ('41002','3','','10452','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','7d502a4b55224f3b8b4323c568d34535');
INSERT INTO `items` (`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`,`uuid`) values ('41003','20','1.3.6.1.2.1.1.1.0','10452','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dfc51b19b72544d998a5c5ef6ca1c21e');
INSERT INTO `items` (`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`,`uuid`) values ('41004','20','1.3.6.1.2.1.1.4.0','10452','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','4f4699712b2547c68ce6f5cc0523c0d5');
INSERT INTO `items` (`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`,`uuid`) values ('41005','17','','10452','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','3b3bc4be23664c91b61f835f5eb601ac');
INSERT INTO `items` (`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`,`uuid`) values ('41006','3','','10452','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','5631c72ae88f4755822b993d42dd2c02');
INSERT INTO `items` (`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`,`uuid`) values ('41007','5','','10452','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'677','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7ddd377d90e34afe92e33df8be63b759');
INSERT INTO `items` (`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`,`uuid`) values ('41008','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10452','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d93cca84ed0f4fbb9209d4d9880e9945');
INSERT INTO `items` (`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`,`uuid`) values ('41009','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10452','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b8bbf89906084f53998d9785d6c0cd95');
INSERT INTO `items` (`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`,`uuid`) values ('41010','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10452','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','94ce6be8cec6430490a50a19fdabb154');
INSERT INTO `items` (`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`,`uuid`) values ('41011','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10452','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d16cbebb823e4ed9a55f0c3a9be66f84');
INSERT INTO `items` (`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`,`uuid`) values ('41012','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10452','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','984ed6174e284d87a4fad9a73c6c9b7c');
INSERT INTO `items` (`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`,`uuid`) values ('41013','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10452','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c5d4c6d3b6ce41a4911315e774ba8395');
INSERT INTO `items` (`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`,`uuid`) values ('41014','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10452','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab7fe09d3aa6427ebaae6b6c0de1d47f');
INSERT INTO `items` (`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`,`uuid`) values ('41015','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10452','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','573c2c167a554e6c9be9616e3a041732');
INSERT INTO `items` (`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`,`uuid`) values ('41016','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10452','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'674','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','872a74bdeab845d8829d7adfeab9ceb5');
INSERT INTO `items` (`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`,`uuid`) values ('41017','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10452','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'675','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c5adf6b317794b3da1227d20410ecdd3');
INSERT INTO `items` (`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`,`uuid`) values ('41018','3','','10453','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'680','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','452c7c9d9aa64d71a41f74949ab0a233');
INSERT INTO `items` (`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`,`uuid`) values ('41019','20','1.3.6.1.2.1.1.5.0','10453','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','05d02e7166c74b87ab67e2c76e9fa6dc');
INSERT INTO `items` (`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`,`uuid`) values ('41020','20','1.3.6.1.2.1.1.3.0','10453','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab98bfc1746743feb6ab0d4a21c1a3bf');
INSERT INTO `items` (`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`,`uuid`) values ('41021','20','1.3.6.1.2.1.1.2.0','10453','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7fb0ffa57e5446e5912350700638e7a5');
INSERT INTO `items` (`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`,`uuid`) values ('41022','20','1.3.6.1.2.1.1.6.0','10453','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','87a5ef8c320c46f2a8936e64e53b2c2e');
INSERT INTO `items` (`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`,`uuid`) values ('41023','3','','10453','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','84123d3f0fac4b178b3bb1cb878553e8');
INSERT INTO `items` (`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`,`uuid`) values ('41024','20','1.3.6.1.2.1.1.1.0','10453','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','03977b99f6fd4723bc29ce6790deca0b');
INSERT INTO `items` (`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`,`uuid`) values ('41025','20','1.3.6.1.2.1.1.4.0','10453','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','601f9df762134a84aa5e2509a58f0309');
INSERT INTO `items` (`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`,`uuid`) values ('41026','17','','10453','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','dcace506d88d437893b1b9fce0eaee89');
INSERT INTO `items` (`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`,`uuid`) values ('41027','3','','10453','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','be0dd1d97e0b4f14b0283899821795a3');
INSERT INTO `items` (`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`,`uuid`) values ('41028','5','','10453','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'681','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3fe54510eaa1418aba59a833bf93b5dd');
INSERT INTO `items` (`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`,`uuid`) values ('41029','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10453','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3833c90d67194b87b5c914a3a6164be2');
INSERT INTO `items` (`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`,`uuid`) values ('41030','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10453','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ec2329aab27946d48b49cef91e28303f');
INSERT INTO `items` (`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`,`uuid`) values ('41031','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10453','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd4691f3e0774477b33708bfdb35a4c3');
INSERT INTO `items` (`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`,`uuid`) values ('41032','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10453','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3f2f73c8d6824027802fead0f090fdbb');
INSERT INTO `items` (`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`,`uuid`) values ('41033','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10453','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0164020946ce4198aed52d97fa39cf80');
INSERT INTO `items` (`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`,`uuid`) values ('41034','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10453','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0482022b45794bc590837d3b4f8ed757');
INSERT INTO `items` (`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`,`uuid`) values ('41035','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10453','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2be5cdf9d1674b8c871ae93c6315b29b');
INSERT INTO `items` (`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`,`uuid`) values ('41036','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10453','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6aca8bc6ff7c45cea816f076aa70f9ba');
INSERT INTO `items` (`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`,`uuid`) values ('41037','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10453','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'678','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f86b184949024d6d89b8425fe706259b');
INSERT INTO `items` (`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`,`uuid`) values ('41038','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10453','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'679','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a0e4472622824516a9c176f99015d55f');
INSERT INTO `items` (`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`,`uuid`) values ('41039','3','','10454','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'684','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','42a75eedbb7e41209bdf0b77b410981e');
INSERT INTO `items` (`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`,`uuid`) values ('41040','20','1.3.6.1.2.1.1.5.0','10454','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0f635b37975e45a88116436b46f76486');
INSERT INTO `items` (`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`,`uuid`) values ('41041','20','1.3.6.1.2.1.1.3.0','10454','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c9d27f7a8a2a40699e0b013c5badcbc0');
INSERT INTO `items` (`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`,`uuid`) values ('41042','20','1.3.6.1.2.1.1.2.0','10454','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a55661d0520a4a3686938402b9a39ecf');
INSERT INTO `items` (`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`,`uuid`) values ('41043','20','1.3.6.1.2.1.1.6.0','10454','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','34303c8ce03c4b59bca308055c7d3506');
INSERT INTO `items` (`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`,`uuid`) values ('41044','3','','10454','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','29036393918345269f36aa4daba59823');
INSERT INTO `items` (`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`,`uuid`) values ('41045','20','1.3.6.1.2.1.1.1.0','10454','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','267ee9321d50436f8c5a3ab6c1bbbfec');
INSERT INTO `items` (`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`,`uuid`) values ('41046','20','1.3.6.1.2.1.1.4.0','10454','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','b6a9d9049fef46c69ae2508892060a43');
INSERT INTO `items` (`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`,`uuid`) values ('41047','17','','10454','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','7e58aff2b1704d99a73ecc607fbf286d');
INSERT INTO `items` (`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`,`uuid`) values ('41048','3','','10454','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','ac362f04138e40b0b2611a66101cb6d7');
INSERT INTO `items` (`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`,`uuid`) values ('41049','5','','10454','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'685','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','048e394bc01149b4976b0bde0e5cfa62');
INSERT INTO `items` (`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`,`uuid`) values ('41050','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10454','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b788130afb324d5c9f034d67b40c68f9');
INSERT INTO `items` (`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`,`uuid`) values ('41051','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10454','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4657c8bb29004084aa03a4e612aa4167');
INSERT INTO `items` (`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`,`uuid`) values ('41052','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10454','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8bf7bea2c4504ac688a8b340a015bfa9');
INSERT INTO `items` (`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`,`uuid`) values ('41053','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10454','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','96c5ae0259c8477699a793e2bfa4989c');
INSERT INTO `items` (`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`,`uuid`) values ('41054','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10454','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7abf14afbffe4398ad0c61509cac0524');
INSERT INTO `items` (`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`,`uuid`) values ('41055','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10454','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ed5d74e331f14e44b96ec39a25f9c975');
INSERT INTO `items` (`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`,`uuid`) values ('41056','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10454','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cf89dbbd5501476d98a5aae1bab4f2d7');
INSERT INTO `items` (`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`,`uuid`) values ('41057','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10454','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a0d069ef6c7449d79c1d1629ba507ddf');
INSERT INTO `items` (`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`,`uuid`) values ('41058','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10454','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'682','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','111f84c9c695410eb1a5296ff2309cb7');
INSERT INTO `items` (`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`,`uuid`) values ('41059','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10454','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'683','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','069253500b244569b6c20bcd9b436873');
INSERT INTO `items` (`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`,`uuid`) values ('41060','3','','10455','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'688','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','32e1e322b3b34c7d9dc1cf7cac89f223');
INSERT INTO `items` (`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`,`uuid`) values ('41061','20','1.3.6.1.2.1.1.5.0','10455','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9e21e99f85ec464cba6473f4c0d15e96');
INSERT INTO `items` (`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`,`uuid`) values ('41062','20','1.3.6.1.2.1.1.3.0','10455','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cbb288d0de7c4732b74ff812698cccbc');
INSERT INTO `items` (`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`,`uuid`) values ('41063','20','1.3.6.1.2.1.1.2.0','10455','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f48f704473374e1991267a007809ec00');
INSERT INTO `items` (`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`,`uuid`) values ('41064','20','1.3.6.1.2.1.1.6.0','10455','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','b5fbca72e7724e689c5563877e3beef1');
INSERT INTO `items` (`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`,`uuid`) values ('41065','3','','10455','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','c0abc057afc84b459e0b5cfe43abbd03');
INSERT INTO `items` (`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`,`uuid`) values ('41066','20','1.3.6.1.2.1.1.1.0','10455','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b9348f8739fc4296a19a92de49f261fc');
INSERT INTO `items` (`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`,`uuid`) values ('41067','20','1.3.6.1.2.1.1.4.0','10455','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','ffb768eca167467b910da993f38f3ca7');
INSERT INTO `items` (`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`,`uuid`) values ('41068','17','','10455','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','9a30d3659344407ab31a3997e75e2c8a');
INSERT INTO `items` (`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`,`uuid`) values ('41069','3','','10455','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','5302099600ae4973810fe71d21ab4533');
INSERT INTO `items` (`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`,`uuid`) values ('41070','5','','10455','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'689','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4c0d4bc7872847248c4659bf7f29dee1');
INSERT INTO `items` (`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`,`uuid`) values ('41071','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10455','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','60bd54d856ff48cebdcc36cae159f05e');
INSERT INTO `items` (`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`,`uuid`) values ('41072','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10455','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e974d85fe4124c52b24d9ff8b8d30e1f');
INSERT INTO `items` (`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`,`uuid`) values ('41073','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10455','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8193ad4c190f465da3cca3f5bc0ca2d9');
INSERT INTO `items` (`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`,`uuid`) values ('41074','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10455','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2957eff649ec42d98e9426242a7ea875');
INSERT INTO `items` (`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`,`uuid`) values ('41075','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10455','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','123f16658e504451add404e15acefc47');
INSERT INTO `items` (`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`,`uuid`) values ('41076','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10455','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8306c1a20a964b90b145160a246ff8a6');
INSERT INTO `items` (`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`,`uuid`) values ('41077','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10455','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ce76a9441b314208b097c132894cebd7');
INSERT INTO `items` (`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`,`uuid`) values ('41078','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10455','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','13b5a00bc3a747df9c21bf123b78362f');
INSERT INTO `items` (`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`,`uuid`) values ('41079','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10455','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'686','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','87f30fec9a0c43bd9f96712448c585b3');
INSERT INTO `items` (`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`,`uuid`) values ('41080','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10455','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'687','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9c36325c00124757a18cb91d5860e7b6');
INSERT INTO `items` (`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`,`uuid`) values ('41081','3','','10456','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'692','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ee528734341c4cf8815442ca2762ad56');
INSERT INTO `items` (`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`,`uuid`) values ('41082','20','1.3.6.1.2.1.1.5.0','10456','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','18bbaa17cf224712944aa4ccfd3c56f8');
INSERT INTO `items` (`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`,`uuid`) values ('41083','20','1.3.6.1.2.1.1.3.0','10456','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','34d40f56c17541ddb276e773d0e39737');
INSERT INTO `items` (`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`,`uuid`) values ('41084','20','1.3.6.1.2.1.1.2.0','10456','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a21804a0cb5549ea8f8b447802600aaa');
INSERT INTO `items` (`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`,`uuid`) values ('41085','20','1.3.6.1.2.1.1.6.0','10456','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','966c104811674f4cbae586a8b5356247');
INSERT INTO `items` (`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`,`uuid`) values ('41086','3','','10456','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','20177d9560fd41518274117a8573fcbf');
INSERT INTO `items` (`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`,`uuid`) values ('41087','20','1.3.6.1.2.1.1.1.0','10456','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1e0feae3c04e4736bf7a4485e36be60e');
INSERT INTO `items` (`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`,`uuid`) values ('41088','20','1.3.6.1.2.1.1.4.0','10456','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','1e20df1ba4f740768c5d167928b52a91');
INSERT INTO `items` (`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`,`uuid`) values ('41089','17','','10456','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','5fc1581406334366ba038c350335c7af');
INSERT INTO `items` (`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`,`uuid`) values ('41090','3','','10456','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','47ded308c77c4cbba98051665f09a378');
INSERT INTO `items` (`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`,`uuid`) values ('41091','5','','10456','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'693','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f77c57fb2dca4391ba2d741ef636b0cd');
INSERT INTO `items` (`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`,`uuid`) values ('41092','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10456','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f684ba95e12942a28e9c152670ea1a4c');
INSERT INTO `items` (`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`,`uuid`) values ('41093','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10456','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','00901669a3b34b90bbc7df4fb135b998');
INSERT INTO `items` (`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`,`uuid`) values ('41094','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10456','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','08d326dcf526411c948211b415f67992');
INSERT INTO `items` (`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`,`uuid`) values ('41095','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10456','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f5ec52a22acb4156aae1d804bbae2668');
INSERT INTO `items` (`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`,`uuid`) values ('41096','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10456','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','af396e21711f419ba854d78ea6dc5244');
INSERT INTO `items` (`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`,`uuid`) values ('41097','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10456','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1a961ca305f748a99e807efeacbef3be');
INSERT INTO `items` (`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`,`uuid`) values ('41098','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10456','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9a9671c5bc574aff993c898453496781');
INSERT INTO `items` (`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`,`uuid`) values ('41099','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10456','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d313a2ecd18d4230bd5b0e77c230be85');
INSERT INTO `items` (`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`,`uuid`) values ('41100','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10456','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'690','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f24cb71bbf454cd492149aae3ce492b9');
INSERT INTO `items` (`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`,`uuid`) values ('41101','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10456','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'691','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b41c85b4504a4a5e9ef546096ac45c11');
INSERT INTO `items` (`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`,`uuid`) values ('41102','3','','10457','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'696','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d7b2d9c7f8dc4b7a8ff57b129af585b2');
INSERT INTO `items` (`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`,`uuid`) values ('41103','20','1.3.6.1.2.1.1.5.0','10457','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','74e4c3fb1719453faa539e5c4c03e725');
INSERT INTO `items` (`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`,`uuid`) values ('41104','20','1.3.6.1.2.1.1.3.0','10457','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','95869b7593644ccebab3fc2bb81f493c');
INSERT INTO `items` (`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`,`uuid`) values ('41105','20','1.3.6.1.2.1.1.2.0','10457','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9a33a5e56bcf422fa357fdb664a93d03');
INSERT INTO `items` (`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`,`uuid`) values ('41106','20','1.3.6.1.2.1.1.6.0','10457','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','b4c93df60aca48ffa7b7f67b58918b5f');
INSERT INTO `items` (`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`,`uuid`) values ('41107','3','','10457','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','d6a55e92ef1f49669df5641093aefbdd');
INSERT INTO `items` (`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`,`uuid`) values ('41108','20','1.3.6.1.2.1.1.1.0','10457','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9264b3ce82d648fbb209fd11a0d7069c');
INSERT INTO `items` (`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`,`uuid`) values ('41109','20','1.3.6.1.2.1.1.4.0','10457','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','451ed0953b82410797051f377fda6e5b');
INSERT INTO `items` (`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`,`uuid`) values ('41110','17','','10457','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','972afbe794124caa8fd35b44856c4b73');
INSERT INTO `items` (`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`,`uuid`) values ('41111','3','','10457','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','b784087e681644f68b96f4d7a041e57e');
INSERT INTO `items` (`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`,`uuid`) values ('41112','5','','10457','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'697','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6fe6e7afa7bd42269e6b7e49661d1c3f');
INSERT INTO `items` (`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`,`uuid`) values ('41113','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10457','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','943ddeb0de9f457cac2a0f4eccc7a3d3');
INSERT INTO `items` (`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`,`uuid`) values ('41114','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10457','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f499f2a08c364fe6b7ba7c2edbeaa25a');
INSERT INTO `items` (`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`,`uuid`) values ('41115','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10457','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1468bc68752741b2b58f1d26ec4957d5');
INSERT INTO `items` (`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`,`uuid`) values ('41116','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10457','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4fdb243ad3714135bb1a04ca12ec42ef');
INSERT INTO `items` (`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`,`uuid`) values ('41117','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10457','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d5e1c2875beb42d9a1b5b876ee4e1d7b');
INSERT INTO `items` (`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`,`uuid`) values ('41118','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10457','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','23e1145639f54a509fc4b629af9bfe9a');
INSERT INTO `items` (`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`,`uuid`) values ('41119','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10457','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c41739be871e4044b8218ff1cc289ea4');
INSERT INTO `items` (`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`,`uuid`) values ('41120','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10457','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f9db52be572643c3ac04ef113aa84262');
INSERT INTO `items` (`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`,`uuid`) values ('41121','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10457','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'694','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0f8614d6d02840e1868ffd4540048daf');
INSERT INTO `items` (`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`,`uuid`) values ('41122','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10457','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'695','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','934e91a1cbee404fb99411147351230b');
INSERT INTO `items` (`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`,`uuid`) values ('41123','3','','10458','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'700','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','244e7111eefb48c98b1410eb53690989');
INSERT INTO `items` (`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`,`uuid`) values ('41124','20','1.3.6.1.2.1.1.5.0','10458','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','09fdf7b507614abe811670bb36c20aec');
INSERT INTO `items` (`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`,`uuid`) values ('41125','20','1.3.6.1.2.1.1.3.0','10458','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f57e6a6b360b4844be4c125c44f4b799');
INSERT INTO `items` (`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`,`uuid`) values ('41126','20','1.3.6.1.2.1.1.2.0','10458','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','241278e60289451ba100834fcb41b04b');
INSERT INTO `items` (`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`,`uuid`) values ('41127','20','1.3.6.1.2.1.1.6.0','10458','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','4d85307924e84fe8ab5cecb8ee8afead');
INSERT INTO `items` (`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`,`uuid`) values ('41128','3','','10458','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','30907fe670ce46ad957b199bc58534bf');
INSERT INTO `items` (`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`,`uuid`) values ('41129','20','1.3.6.1.2.1.1.1.0','10458','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b022eea34d6d4e46b403e3e6eb1df42e');
INSERT INTO `items` (`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`,`uuid`) values ('41130','20','1.3.6.1.2.1.1.4.0','10458','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','8bd0bba343264b6fa43c1c99d39f4bdc');
INSERT INTO `items` (`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`,`uuid`) values ('41131','17','','10458','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','7215e2ee187f45439e367c0ee9b78fd8');
INSERT INTO `items` (`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`,`uuid`) values ('41132','3','','10458','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','20d51d89f4604f6f8f56f1de7dcbb5cf');
INSERT INTO `items` (`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`,`uuid`) values ('41133','5','','10458','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'701','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7a54976f73f14c0cacff759a406806a9');
INSERT INTO `items` (`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`,`uuid`) values ('41134','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10458','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f8ba0c9d18ef405bbf1619f98028ee80');
INSERT INTO `items` (`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`,`uuid`) values ('41135','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10458','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','149ca6424d7241db8153ddb52ef1426c');
INSERT INTO `items` (`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`,`uuid`) values ('41136','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10458','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fd1cebcc629b4b559603b9520a97f30a');
INSERT INTO `items` (`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`,`uuid`) values ('41137','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10458','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8d07a2c675194a8c84c854a5717f2ab0');
INSERT INTO `items` (`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`,`uuid`) values ('41138','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10458','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','209f0a2d63174582bc660dc4d9c4410d');
INSERT INTO `items` (`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`,`uuid`) values ('41139','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10458','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d1cd8ebe0db54c26af2f4d1695b74144');
INSERT INTO `items` (`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`,`uuid`) values ('41140','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10458','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c56972bb674c448496cdd99039a75480');
INSERT INTO `items` (`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`,`uuid`) values ('41141','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10458','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a1526abe61a3440cbdda84ae6bbf0dc5');
INSERT INTO `items` (`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`,`uuid`) values ('41142','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10458','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'698','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','335473458efe48e1b5a93e2f365d489b');
INSERT INTO `items` (`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`,`uuid`) values ('41143','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10458','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'699','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','192cfe0188a045f8ac9e903bc605f80f');
INSERT INTO `items` (`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`,`uuid`) values ('41144','3','','10459','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'704','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fe29736edd494d61ac4339ed5234bbdf');
INSERT INTO `items` (`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`,`uuid`) values ('41145','20','1.3.6.1.2.1.1.5.0','10459','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','234bbf0b94ae4efe9e0708ef7748a592');
INSERT INTO `items` (`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`,`uuid`) values ('41146','20','1.3.6.1.2.1.1.3.0','10459','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','15665fae5ef043d2b39863ae3148f5da');
INSERT INTO `items` (`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`,`uuid`) values ('41147','20','1.3.6.1.2.1.1.2.0','10459','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a947ad3c3e634a4185ed7e4d80ac2b11');
INSERT INTO `items` (`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`,`uuid`) values ('41148','20','1.3.6.1.2.1.1.6.0','10459','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','cfbb37cb51c94191a8812b4fc18846c9');
INSERT INTO `items` (`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`,`uuid`) values ('41149','3','','10459','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','dcda1847f1324215ace997f21e2c9136');
INSERT INTO `items` (`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`,`uuid`) values ('41150','20','1.3.6.1.2.1.1.1.0','10459','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e2610c67fd0546d0a4f6d44515c38bfa');
INSERT INTO `items` (`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`,`uuid`) values ('41151','20','1.3.6.1.2.1.1.4.0','10459','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','77a875ad0d3348618ad166e13df8859c');
INSERT INTO `items` (`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`,`uuid`) values ('41152','17','','10459','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','bd102e739e6d4ec183d94d8965f9c0da');
INSERT INTO `items` (`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`,`uuid`) values ('41153','3','','10459','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','5505dcdce64f4d4bafc65250fdc44d55');
INSERT INTO `items` (`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`,`uuid`) values ('41154','5','','10459','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'705','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b7d3a7a170bc417190109ee6316f14e2');
INSERT INTO `items` (`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`,`uuid`) values ('41155','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10459','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','69a5667ce42d4c33a358f85ef695fae4');
INSERT INTO `items` (`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`,`uuid`) values ('41156','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10459','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c830e4e275b64bbcadcdcfdc299ea555');
INSERT INTO `items` (`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`,`uuid`) values ('41157','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10459','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6ceda965a17f40f48cab26b697b66f13');
INSERT INTO `items` (`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`,`uuid`) values ('41158','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10459','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','24b6d9edd4f14d75954581c5f9396c4f');
INSERT INTO `items` (`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`,`uuid`) values ('41159','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10459','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','36a4bc21b0ed46bcb025388dad56ac51');
INSERT INTO `items` (`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`,`uuid`) values ('41160','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10459','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','655955f36c4849a796bb01f7a9a305f1');
INSERT INTO `items` (`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`,`uuid`) values ('41161','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10459','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d85d1c9656fc4f54ad77d127b0d544d3');
INSERT INTO `items` (`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`,`uuid`) values ('41162','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10459','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','85e2e5686cd24b7a9d32a2718609493b');
INSERT INTO `items` (`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`,`uuid`) values ('41163','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10459','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'702','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d0c19009d4c748a68122136f942b33b2');
INSERT INTO `items` (`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`,`uuid`) values ('41164','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10459','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'703','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','31d0a94b3f284ea699ce740276c5174c');
INSERT INTO `items` (`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`,`uuid`) values ('41165','3','','10460','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'708','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9d1eadf8cb614f7db24af010754ecea5');
INSERT INTO `items` (`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`,`uuid`) values ('41166','20','1.3.6.1.2.1.1.5.0','10460','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a1cfc4a89a29405790c8004648397c16');
INSERT INTO `items` (`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`,`uuid`) values ('41167','20','1.3.6.1.2.1.1.3.0','10460','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','acec0fba9acb475298c23815478e1232');
INSERT INTO `items` (`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`,`uuid`) values ('41168','20','1.3.6.1.2.1.1.2.0','10460','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','68aaafe3efc449c1b718af4da8675d76');
INSERT INTO `items` (`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`,`uuid`) values ('41169','20','1.3.6.1.2.1.1.6.0','10460','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','fc1ac08bab0c482f85f7666c9f932863');
INSERT INTO `items` (`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`,`uuid`) values ('41170','3','','10460','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','747a11088cdb4336acde1a3db6b6fb0a');
INSERT INTO `items` (`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`,`uuid`) values ('41171','20','1.3.6.1.2.1.1.1.0','10460','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','14a7067e6be141af97af075439c741a0');
INSERT INTO `items` (`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`,`uuid`) values ('41172','20','1.3.6.1.2.1.1.4.0','10460','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','07ed423ecd90404da796326fdf88d59f');
INSERT INTO `items` (`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`,`uuid`) values ('41173','17','','10460','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','03477df2c6a54edbb33043e0ad372aca');
INSERT INTO `items` (`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`,`uuid`) values ('41174','3','','10460','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','5511b24404044a999a4e63b5742fba69');
INSERT INTO `items` (`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`,`uuid`) values ('41175','5','','10460','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'709','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','37dad400826443b9a70df99c46cadb7b');
INSERT INTO `items` (`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`,`uuid`) values ('41176','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10460','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','975657e824c94bf3a8360291daa1ee16');
INSERT INTO `items` (`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`,`uuid`) values ('41177','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10460','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','44c508b767ae44ea8257326f7d6077da');
INSERT INTO `items` (`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`,`uuid`) values ('41178','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10460','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','410f18fab2a34f30b9bde48c53b0758c');
INSERT INTO `items` (`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`,`uuid`) values ('41179','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10460','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d813c68f3b974dae80d2bb8060b4916a');
INSERT INTO `items` (`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`,`uuid`) values ('41180','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10460','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f0b88262b4ea40cc86b98dab09a0c8e5');
INSERT INTO `items` (`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`,`uuid`) values ('41181','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10460','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4bf81a1abe324c48b907e9f3f67152f2');
INSERT INTO `items` (`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`,`uuid`) values ('41182','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10460','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cd35bca00aaf4e4bbb577c4945dfb4cf');
INSERT INTO `items` (`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`,`uuid`) values ('41183','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10460','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b5642292e0064832b40a09cbec0027c5');
INSERT INTO `items` (`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`,`uuid`) values ('41184','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10460','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'706','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','274f221a50894d67ae7c8fa8f969811a');
INSERT INTO `items` (`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`,`uuid`) values ('41185','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10460','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'707','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','50a691ac0639468ca1fadf2223da3319');
INSERT INTO `items` (`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`,`uuid`) values ('41186','3','','10461','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'712','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','805fba01bb75425d98471a62dfe2aec2');
INSERT INTO `items` (`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`,`uuid`) values ('41187','20','1.3.6.1.2.1.1.5.0','10461','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b8600abc5e0a47ab821b656b2b781654');
INSERT INTO `items` (`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`,`uuid`) values ('41188','20','1.3.6.1.2.1.1.3.0','10461','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d23ba015bfa40a180851bd0a8e4ead7');
INSERT INTO `items` (`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`,`uuid`) values ('41189','20','1.3.6.1.2.1.1.2.0','10461','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eb2be7f070704027a3bc190da2937f5a');
INSERT INTO `items` (`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`,`uuid`) values ('41190','20','1.3.6.1.2.1.1.6.0','10461','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','4578904cc2cd43af9f537ceef6307403');
INSERT INTO `items` (`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`,`uuid`) values ('41191','3','','10461','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','0855d5a498274c078e8d2725b613f491');
INSERT INTO `items` (`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`,`uuid`) values ('41192','20','1.3.6.1.2.1.1.1.0','10461','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a4366a2506b64e07984fe3a3e1f1ecb6');
INSERT INTO `items` (`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`,`uuid`) values ('41193','20','1.3.6.1.2.1.1.4.0','10461','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','47b25b5beacc4890b8e3218ec26482a9');
INSERT INTO `items` (`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`,`uuid`) values ('41194','17','','10461','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','ceb8ab85069b4c7ca7c6517cf0c5b9d5');
INSERT INTO `items` (`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`,`uuid`) values ('41195','3','','10461','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','58c2d3109593425ca65b1da7b93de738');
INSERT INTO `items` (`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`,`uuid`) values ('41196','5','','10461','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'713','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','506984ef2c14483cbfa7ab7e126cd258');
INSERT INTO `items` (`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`,`uuid`) values ('41197','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10461','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','845b1efc219e45f0a5b5cc9da4cd4473');
INSERT INTO `items` (`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`,`uuid`) values ('41198','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10461','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','37f61cae4f334011a5bb3e71a0d7e9cc');
INSERT INTO `items` (`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`,`uuid`) values ('41199','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10461','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a6dea41689604e7f9b3c0415b255da53');
INSERT INTO `items` (`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`,`uuid`) values ('41200','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10461','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f7da909ba9a24f4fbfead2636b0a15c5');
INSERT INTO `items` (`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`,`uuid`) values ('41201','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10461','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9b5bf23911b747e39229d905dd6e6fe8');
INSERT INTO `items` (`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`,`uuid`) values ('41202','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10461','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d2257baa2950456daf6c75cfaf7529c2');
INSERT INTO `items` (`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`,`uuid`) values ('41203','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10461','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','81e957d3ac6f40d78d17541ae25664e0');
INSERT INTO `items` (`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`,`uuid`) values ('41204','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10461','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bbb3fc3e3b7f401db406767070b02ee6');
INSERT INTO `items` (`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`,`uuid`) values ('41205','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10461','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'710','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6b4baafc654841238c65f6d08742a441');
INSERT INTO `items` (`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`,`uuid`) values ('41206','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10461','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'711','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9d878d01c9b94756b778524b1792bfb6');
INSERT INTO `items` (`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`,`uuid`) values ('41207','3','','10462','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'716','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9cb91d0e91ad4ea0980915a55042a92c');
INSERT INTO `items` (`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`,`uuid`) values ('41208','20','1.3.6.1.2.1.1.5.0','10462','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c549da27ab6741619d96c0473b6e5e81');
INSERT INTO `items` (`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`,`uuid`) values ('41209','20','1.3.6.1.2.1.1.3.0','10462','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dd1816fc79704e6687bb841d729695c7');
INSERT INTO `items` (`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`,`uuid`) values ('41210','20','1.3.6.1.2.1.1.2.0','10462','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8204bf9e17794dc1994d657baaafa62d');
INSERT INTO `items` (`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`,`uuid`) values ('41211','20','1.3.6.1.2.1.1.6.0','10462','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','8d7d12e82d0141e7919135d93e955d02');
INSERT INTO `items` (`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`,`uuid`) values ('41212','3','','10462','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','7871185930284f9eb03c359baf2cd703');
INSERT INTO `items` (`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`,`uuid`) values ('41213','20','1.3.6.1.2.1.1.1.0','10462','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d2c1cba3782e48e8a416e6bf5126de26');
INSERT INTO `items` (`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`,`uuid`) values ('41214','20','1.3.6.1.2.1.1.4.0','10462','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','787629e255a043ec89a9235792af48e8');
INSERT INTO `items` (`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`,`uuid`) values ('41215','17','','10462','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','3d716d3580c24e49834f8b7927a62f18');
INSERT INTO `items` (`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`,`uuid`) values ('41216','3','','10462','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','701c51a923e940b288bc486df8bcb896');
INSERT INTO `items` (`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`,`uuid`) values ('41217','5','','10462','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'717','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','62a7b8240f65452db1b62ebd3e608328');
INSERT INTO `items` (`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`,`uuid`) values ('41218','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10462','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc608b1f528d4098b8393eba8dd997d7');
INSERT INTO `items` (`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`,`uuid`) values ('41219','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10462','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eb8ba9ef1cd842abafac43e6878edebf');
INSERT INTO `items` (`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`,`uuid`) values ('41220','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10462','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2af6f068b36a4a4dbaef7a545ea9ef87');
INSERT INTO `items` (`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`,`uuid`) values ('41221','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10462','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','82e97f30fe794772873c93e45fa93e3c');
INSERT INTO `items` (`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`,`uuid`) values ('41222','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10462','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','49e742f27d8c43eba3bdaf661a2af64a');
INSERT INTO `items` (`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`,`uuid`) values ('41223','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10462','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2aeed3cfe655422289358c5baede343a');
INSERT INTO `items` (`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`,`uuid`) values ('41224','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10462','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9447ff7e4baa430f8447ebaf910e5714');
INSERT INTO `items` (`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`,`uuid`) values ('41225','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10462','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f85bd6cedc754e45ba653247a94dae89');
INSERT INTO `items` (`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`,`uuid`) values ('41226','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10462','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'714','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','71eaf25c58ed46b8bbe72b7b6e41510d');
INSERT INTO `items` (`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`,`uuid`) values ('41227','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10462','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'715','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0f12f613a5a648ef8309af58cb69805e');
INSERT INTO `items` (`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`,`uuid`) values ('41228','3','','10463','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'720','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','850f48b6cbe44d419363a581abb968f8');
INSERT INTO `items` (`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`,`uuid`) values ('41229','20','1.3.6.1.2.1.1.5.0','10463','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd417ca6edeb4e7bbf446b8a3d003e7a');
INSERT INTO `items` (`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`,`uuid`) values ('41230','20','1.3.6.1.2.1.1.3.0','10463','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','479d3825a16b4060a06b3bba21515a9c');
INSERT INTO `items` (`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`,`uuid`) values ('41231','20','1.3.6.1.2.1.1.2.0','10463','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3fadb391f77d44d099b0f1f7b51f8062');
INSERT INTO `items` (`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`,`uuid`) values ('41232','20','1.3.6.1.2.1.1.6.0','10463','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','dee2119103e640eab76243f6ff769c77');
INSERT INTO `items` (`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`,`uuid`) values ('41233','3','','10463','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','6ab02f2204e94d9fa90e905c70312544');
INSERT INTO `items` (`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`,`uuid`) values ('41234','20','1.3.6.1.2.1.1.1.0','10463','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7f69a36c9c86495bb84eb1e4768520bb');
INSERT INTO `items` (`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`,`uuid`) values ('41235','20','1.3.6.1.2.1.1.4.0','10463','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','a0396c448a24457583dcb11a7847731c');
INSERT INTO `items` (`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`,`uuid`) values ('41236','17','','10463','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','9bad59edc7f9432988cf286b5497a7e4');
INSERT INTO `items` (`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`,`uuid`) values ('41237','3','','10463','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','fb7fad1847eb4df9a2c26f60f61afa5c');
INSERT INTO `items` (`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`,`uuid`) values ('41238','5','','10463','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'721','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','769ce4d237c043a2a86af0a66ff06a1a');
INSERT INTO `items` (`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`,`uuid`) values ('41239','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10463','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a667d9273ccf46a5a9fafb58c10adf6c');
INSERT INTO `items` (`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`,`uuid`) values ('41240','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10463','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9811386d3e94401c95520c93fde75b46');
INSERT INTO `items` (`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`,`uuid`) values ('41241','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10463','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8845d896a14f4db68cee5c8d4b9e612a');
INSERT INTO `items` (`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`,`uuid`) values ('41242','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10463','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','421c2c5345114a2686e880fb995c159d');
INSERT INTO `items` (`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`,`uuid`) values ('41243','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10463','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7b0e671970444dca8e1386ec7f0ca0eb');
INSERT INTO `items` (`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`,`uuid`) values ('41244','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10463','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','65118ff16f3649c1bab06b5620b278ea');
INSERT INTO `items` (`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`,`uuid`) values ('41245','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10463','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','92a754f7ae904787ae8f2fcd4bd0112b');
INSERT INTO `items` (`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`,`uuid`) values ('41246','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10463','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3426adc2f7224e9ea037be081146df32');
INSERT INTO `items` (`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`,`uuid`) values ('41247','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10463','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'718','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','37a01e7bb0e24177961220d810df16a2');
INSERT INTO `items` (`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`,`uuid`) values ('41248','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10463','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'719','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','90e74ae087de40efb7fe19e06b70a5d0');
INSERT INTO `items` (`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`,`uuid`) values ('41249','3','','10464','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'724','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8a3ff0b65daf4c47999b0f9877339b47');
INSERT INTO `items` (`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`,`uuid`) values ('41250','20','1.3.6.1.2.1.1.5.0','10464','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c1bebf0a8a444b84a94f2edf0a631a4f');
INSERT INTO `items` (`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`,`uuid`) values ('41251','20','1.3.6.1.2.1.1.3.0','10464','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','66bffe7a0b8041b1aca4609cfebaa924');
INSERT INTO `items` (`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`,`uuid`) values ('41252','20','1.3.6.1.2.1.1.2.0','10464','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ccdb09d16244ab990eb187ed7c06248');
INSERT INTO `items` (`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`,`uuid`) values ('41253','20','1.3.6.1.2.1.1.6.0','10464','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','c911a3f7ceb740719933b255aa78a86e');
INSERT INTO `items` (`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`,`uuid`) values ('41254','3','','10464','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','710be8da30564d90816b724c4aa409f4');
INSERT INTO `items` (`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`,`uuid`) values ('41255','20','1.3.6.1.2.1.1.1.0','10464','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','419bf63514994b58abba6586d4241c72');
INSERT INTO `items` (`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`,`uuid`) values ('41256','20','1.3.6.1.2.1.1.4.0','10464','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','52453d3272f04c1b90334407a44ed110');
INSERT INTO `items` (`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`,`uuid`) values ('41257','17','','10464','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','fd5785cc745a4c23b36e7b88920cb677');
INSERT INTO `items` (`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`,`uuid`) values ('41258','3','','10464','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','9a37178d9a534fbca0c71e7f6387b718');
INSERT INTO `items` (`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`,`uuid`) values ('41259','5','','10464','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'725','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3d39d94dbe8b42f9a2dd6d726f04e6fb');
INSERT INTO `items` (`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`,`uuid`) values ('41260','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10464','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c2479dd8eab044e3b5f141a0f993a24c');
INSERT INTO `items` (`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`,`uuid`) values ('41261','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10464','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5cefc809031745debdad7316afafb304');
INSERT INTO `items` (`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`,`uuid`) values ('41262','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10464','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3b0097d2131f4081a6f80d5d91c5db71');
INSERT INTO `items` (`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`,`uuid`) values ('41263','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10464','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ec9f44208eae4baf84b8efeac18d4218');
INSERT INTO `items` (`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`,`uuid`) values ('41264','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10464','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b1c8a69233b94c898b8f5af80a29b182');
INSERT INTO `items` (`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`,`uuid`) values ('41265','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10464','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da9968a76a9c43d3bbf6ecbe786797e2');
INSERT INTO `items` (`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`,`uuid`) values ('41266','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10464','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e356fde53c964f17a4b0794102bf76e6');
INSERT INTO `items` (`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`,`uuid`) values ('41267','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10464','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d32f4d57b4f34b1696480ba583812e69');
INSERT INTO `items` (`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`,`uuid`) values ('41268','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10464','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'722','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','68e8bd9d8a56444a95cb7215518e4c2c');
INSERT INTO `items` (`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`,`uuid`) values ('41269','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10464','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'723','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','835bd6ca78b143af833d267e408f9862');
INSERT INTO `items` (`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`,`uuid`) values ('41270','3','','10465','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'728','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','743501d05f1540d681f8112a805f1a0d');
INSERT INTO `items` (`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`,`uuid`) values ('41271','20','1.3.6.1.2.1.1.5.0','10465','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6edc651f2acd4a718b1802aec08cad0f');
INSERT INTO `items` (`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`,`uuid`) values ('41272','20','1.3.6.1.2.1.1.3.0','10465','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3afb18b2452e45778ce5cdaa20bf58b8');
INSERT INTO `items` (`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`,`uuid`) values ('41273','20','1.3.6.1.2.1.1.2.0','10465','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','590c0449f2fe40999ac2d758bfa60058');
INSERT INTO `items` (`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`,`uuid`) values ('41274','20','1.3.6.1.2.1.1.6.0','10465','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','e0e2d52ad8cd41dd92a97669e89c5fc6');
INSERT INTO `items` (`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`,`uuid`) values ('41275','3','','10465','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','21ee91bb65fc4b6bbb83c1e35558b7d1');
INSERT INTO `items` (`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`,`uuid`) values ('41276','20','1.3.6.1.2.1.1.1.0','10465','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c6403a32598e400db8084d77083d1621');
INSERT INTO `items` (`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`,`uuid`) values ('41277','20','1.3.6.1.2.1.1.4.0','10465','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','adabeec14fdb405495907ef6771a11a1');
INSERT INTO `items` (`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`,`uuid`) values ('41278','17','','10465','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','2dff60db5ff640839ebfddbc68c72243');
INSERT INTO `items` (`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`,`uuid`) values ('41279','3','','10465','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','f13323a6a0e84d2c865f4bf2d5e59f79');
INSERT INTO `items` (`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`,`uuid`) values ('41280','5','','10465','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'729','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','752fd8bdeaed449484add53bf1cfbcd7');
INSERT INTO `items` (`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`,`uuid`) values ('41281','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10465','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0f943d18ef9148798fe783d3aadb9047');
INSERT INTO `items` (`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`,`uuid`) values ('41282','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10465','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d300fabf1494f4a8f454eba95dfecf9');
INSERT INTO `items` (`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`,`uuid`) values ('41283','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10465','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d14d2c8908d64ce0b3adb45fc8c4a210');
INSERT INTO `items` (`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`,`uuid`) values ('41284','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10465','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0621b5bff79843ea9579eac665a352bc');
INSERT INTO `items` (`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`,`uuid`) values ('41285','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10465','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d4d79ba39825445b8cb59e76bb67250e');
INSERT INTO `items` (`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`,`uuid`) values ('41286','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10465','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0558424847e9412889bf0d009e0002c7');
INSERT INTO `items` (`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`,`uuid`) values ('41287','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10465','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','56ba20c1f5ba4ea58dca9dafd83c8352');
INSERT INTO `items` (`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`,`uuid`) values ('41288','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10465','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','906c4b98ecff4caf874d44d362a62a07');
INSERT INTO `items` (`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`,`uuid`) values ('41289','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10465','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'726','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e2d06c66e8574b5ca0083ecdb8e5b050');
INSERT INTO `items` (`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`,`uuid`) values ('41290','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10465','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'727','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff460a89977d4935a59a193d08d31f4a');
INSERT INTO `items` (`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`,`uuid`) values ('41291','3','','10466','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'732','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f32e2f3c5177420098c4d49d41efff73');
INSERT INTO `items` (`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`,`uuid`) values ('41292','20','1.3.6.1.2.1.1.5.0','10466','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1a852e5ecb4745e4aaf6d819c8614c0c');
INSERT INTO `items` (`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`,`uuid`) values ('41293','20','1.3.6.1.2.1.1.3.0','10466','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a8f78c05de534873a8cb2250c528387b');
INSERT INTO `items` (`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`,`uuid`) values ('41294','20','1.3.6.1.2.1.1.2.0','10466','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1f4839491fae42fd96d63f960486dc02');
INSERT INTO `items` (`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`,`uuid`) values ('41295','20','1.3.6.1.2.1.1.6.0','10466','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','c8656758df544bccae950414c2adb969');
INSERT INTO `items` (`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`,`uuid`) values ('41296','3','','10466','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','e23f070baecf4e85bfd4b919a313363f');
INSERT INTO `items` (`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`,`uuid`) values ('41297','20','1.3.6.1.2.1.1.1.0','10466','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','87adae25334a4965a6d03f5c611d8359');
INSERT INTO `items` (`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`,`uuid`) values ('41298','20','1.3.6.1.2.1.1.4.0','10466','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','2fed3da1b4d646cfab6e0249e2cb9c6c');
INSERT INTO `items` (`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`,`uuid`) values ('41299','17','','10466','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','ddc1215a46464ed6b5e379d243816bc4');
INSERT INTO `items` (`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`,`uuid`) values ('41300','3','','10466','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','19cb2bfb6b5a4aa48f38a6346ad1832f');
INSERT INTO `items` (`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`,`uuid`) values ('41301','5','','10466','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'733','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6ff75377e11348e7be6e65301ba29aaa');
INSERT INTO `items` (`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`,`uuid`) values ('41302','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10466','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','162858d4c89c44008f4c8c4226cf598d');
INSERT INTO `items` (`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`,`uuid`) values ('41303','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10466','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b0142c0f46e04546be8383863c1255ba');
INSERT INTO `items` (`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`,`uuid`) values ('41304','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10466','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','01791b11bba547abb88d2d607c88903d');
INSERT INTO `items` (`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`,`uuid`) values ('41305','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10466','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8e9f42386005498ba508ba72570a6b26');
INSERT INTO `items` (`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`,`uuid`) values ('41306','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10466','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e3e1bd9a9c3c43fcba1e8177ad653682');
INSERT INTO `items` (`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`,`uuid`) values ('41307','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10466','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','653e8d4bfcb147989e5a5a5d49b3bca8');
INSERT INTO `items` (`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`,`uuid`) values ('41308','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10466','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d516f24cbc24bd48656a3a7713c2c0a');
INSERT INTO `items` (`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`,`uuid`) values ('41309','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10466','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff25d8ade4ef44b6888a26aac9d54344');
INSERT INTO `items` (`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`,`uuid`) values ('41310','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10466','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'730','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','15679b8403054515af9c4ad21081cf2e');
INSERT INTO `items` (`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`,`uuid`) values ('41311','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10466','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'731','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','08ff8dd9165b43519b633c4d276fc2e8');
INSERT INTO `items` (`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`,`uuid`) values ('41312','3','','10467','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'736','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84648b17d61b4faebfd5861a0fd1afe6');
INSERT INTO `items` (`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`,`uuid`) values ('41313','20','1.3.6.1.2.1.1.5.0','10467','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','83cb30ef232d46f79f01c47ae7477270');
INSERT INTO `items` (`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`,`uuid`) values ('41314','20','1.3.6.1.2.1.1.3.0','10467','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2b284f4d96704b71920bc8b3beac050c');
INSERT INTO `items` (`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`,`uuid`) values ('41315','20','1.3.6.1.2.1.1.2.0','10467','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1c220049b4b94d08b35e03fde9111ded');
INSERT INTO `items` (`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`,`uuid`) values ('41316','20','1.3.6.1.2.1.1.6.0','10467','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','1e385c4c4f7145d1a7973fe1f7dcc1ed');
INSERT INTO `items` (`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`,`uuid`) values ('41317','3','','10467','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','896f08cd051e41a8bbb0f63fd1a23bb8');
INSERT INTO `items` (`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`,`uuid`) values ('41318','20','1.3.6.1.2.1.1.1.0','10467','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','14055a3a922f43c083ec97dcb8899085');
INSERT INTO `items` (`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`,`uuid`) values ('41319','20','1.3.6.1.2.1.1.4.0','10467','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','44e64e9c36ce40d7b2a2138dab8030ee');
INSERT INTO `items` (`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`,`uuid`) values ('41320','17','','10467','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','035cd00faa4b48d69b8ba9d93d5adb1a');
INSERT INTO `items` (`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`,`uuid`) values ('41321','3','','10467','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','209d4503520a4a61a183f7f1c303a801');
INSERT INTO `items` (`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`,`uuid`) values ('41322','5','','10467','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'737','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3616f93a2ed449e38d95722f4e318497');
INSERT INTO `items` (`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`,`uuid`) values ('41323','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10467','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','341d0f810f7b47e4ac81a7bf25716179');
INSERT INTO `items` (`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`,`uuid`) values ('41324','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10467','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f00173a7cd3546a68064f348b99dbb78');
INSERT INTO `items` (`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`,`uuid`) values ('41325','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10467','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d758573510064110bdd2b4319476d909');
INSERT INTO `items` (`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`,`uuid`) values ('41326','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10467','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','405b8cbc415a4d63a9ce1d925d89c233');
INSERT INTO `items` (`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`,`uuid`) values ('41327','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10467','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0afa40c2bcd24f09b4ab9943cf383198');
INSERT INTO `items` (`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`,`uuid`) values ('41328','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10467','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dac4dcac3a8244448aa9c41a369dac2f');
INSERT INTO `items` (`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`,`uuid`) values ('41329','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10467','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7063424dec694e81900014d9e0281d13');
INSERT INTO `items` (`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`,`uuid`) values ('41330','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10467','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7b50701968654f54815b9952a224ae5b');
INSERT INTO `items` (`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`,`uuid`) values ('41331','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10467','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'734','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f7ea1a7b96cd4095b1bb71b023a55a5d');
INSERT INTO `items` (`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`,`uuid`) values ('41332','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10467','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'735','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c45e431a237d44ad9942c388d8399016');
INSERT INTO `items` (`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`,`uuid`) values ('41333','3','','10468','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'740','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1b8d0df3c9a2401488a12c5d051de0a4');
INSERT INTO `items` (`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`,`uuid`) values ('41334','20','1.3.6.1.2.1.1.5.0','10468','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0a4d7bb40fbb49c48d210e763b3f2426');
INSERT INTO `items` (`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`,`uuid`) values ('41335','20','1.3.6.1.2.1.1.3.0','10468','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0c36805ca5cd40d099060ee447cb85db');
INSERT INTO `items` (`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`,`uuid`) values ('41336','20','1.3.6.1.2.1.1.2.0','10468','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a307185251ec4bb7a2fafc41fabf7eee');
INSERT INTO `items` (`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`,`uuid`) values ('41337','20','1.3.6.1.2.1.1.6.0','10468','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','0f0dfeaaac954d2fbc3a6b20dc756c59');
INSERT INTO `items` (`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`,`uuid`) values ('41338','3','','10468','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','3b909ebca73b4baa9364db355d5e59d7');
INSERT INTO `items` (`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`,`uuid`) values ('41339','20','1.3.6.1.2.1.1.1.0','10468','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6b823352365a4b4da3437839445f7373');
INSERT INTO `items` (`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`,`uuid`) values ('41340','20','1.3.6.1.2.1.1.4.0','10468','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','46ec5face2a247c68467116594f4ed53');
INSERT INTO `items` (`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`,`uuid`) values ('41341','17','','10468','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','2c3c5ede40d241669525c556c59faa95');
INSERT INTO `items` (`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`,`uuid`) values ('41342','3','','10468','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','29d7a47ae93d4911991c092032c1ee9b');
INSERT INTO `items` (`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`,`uuid`) values ('41343','5','','10468','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'741','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1620fd9982ed4e27a2e4bfcff915765e');
INSERT INTO `items` (`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`,`uuid`) values ('41344','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10468','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b761c3efd08042499f1a87cd73ee0cd1');
INSERT INTO `items` (`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`,`uuid`) values ('41345','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10468','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc86ba34ec6c42f486c4146cc37ea63d');
INSERT INTO `items` (`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`,`uuid`) values ('41346','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10468','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','81c3d7ef1c7f414e8f19d8f4f8937e1b');
INSERT INTO `items` (`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`,`uuid`) values ('41347','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10468','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5f99d418a9d94f2d97656fa59604404c');
INSERT INTO `items` (`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`,`uuid`) values ('41348','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10468','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6a99973eda6a4005b28ff986e800b123');
INSERT INTO `items` (`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`,`uuid`) values ('41349','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10468','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e7f43353462e418188c3c00379138466');
INSERT INTO `items` (`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`,`uuid`) values ('41350','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10468','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fa23f5e5fbf847c2b1d6b5eb38e05a59');
INSERT INTO `items` (`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`,`uuid`) values ('41351','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10468','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5cfd077fd3484986a6888b6e2be6e5fa');
INSERT INTO `items` (`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`,`uuid`) values ('41352','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10468','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'738','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fef3726d05b346db9adb9f0b8e1f65e2');
INSERT INTO `items` (`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`,`uuid`) values ('41353','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10468','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'739','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','12cba2c25cab458f8792bcb7226cf714');
INSERT INTO `items` (`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`,`uuid`) values ('41354','3','','10469','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'744','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ba6ae11c71a94ea6858663030b8ce445');
INSERT INTO `items` (`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`,`uuid`) values ('41355','20','1.3.6.1.2.1.1.5.0','10469','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4c1fbb2ffa0246f7be58fd4d82f6009e');
INSERT INTO `items` (`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`,`uuid`) values ('41356','20','1.3.6.1.2.1.1.3.0','10469','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7bd86e80b5154212bc883dc5bd15cad7');
INSERT INTO `items` (`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`,`uuid`) values ('41357','20','1.3.6.1.2.1.1.2.0','10469','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2d1e9c027c0e40faa7ba792de117eafb');
INSERT INTO `items` (`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`,`uuid`) values ('41358','20','1.3.6.1.2.1.1.6.0','10469','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','50d138e88427408a858322b2a3d31d78');
INSERT INTO `items` (`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`,`uuid`) values ('41359','3','','10469','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','cf937bb3e6524714a037c79e3fd09982');
INSERT INTO `items` (`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`,`uuid`) values ('41360','20','1.3.6.1.2.1.1.1.0','10469','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c0f09ce0c4d7454dab1474a606de48a0');
INSERT INTO `items` (`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`,`uuid`) values ('41361','20','1.3.6.1.2.1.1.4.0','10469','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','03af1591f3af444781a6a3e058de7dd6');
INSERT INTO `items` (`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`,`uuid`) values ('41362','17','','10469','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','a018cf2626764f17853a526f5b6d574e');
INSERT INTO `items` (`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`,`uuid`) values ('41363','3','','10469','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','f5b621e08b5e41949dde460f61ef5458');
INSERT INTO `items` (`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`,`uuid`) values ('41364','5','','10469','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'745','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3687b61660ab43ba9abd8be56f5de6aa');
INSERT INTO `items` (`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`,`uuid`) values ('41365','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10469','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fde8e6bf22cd489c8f0b0fb2ae359e98');
INSERT INTO `items` (`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`,`uuid`) values ('41366','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10469','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e8a27d5081342b5b925d45db77a7bc1');
INSERT INTO `items` (`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`,`uuid`) values ('41367','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10469','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','70a39d1297ea4264be096468bbd41d64');
INSERT INTO `items` (`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`,`uuid`) values ('41368','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10469','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b2e76644e59e40f79ef1c93922d5e8d1');
INSERT INTO `items` (`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`,`uuid`) values ('41369','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10469','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','35321b8973694e488f903eb9e4168939');
INSERT INTO `items` (`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`,`uuid`) values ('41370','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10469','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3f7ded53a81d4dcc81250c8bc9a1da97');
INSERT INTO `items` (`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`,`uuid`) values ('41371','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10469','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','17dc051e60bc41839e255b38353ef49f');
INSERT INTO `items` (`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`,`uuid`) values ('41372','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10469','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9cbf512a2f0e4bfa86f2df14393c10de');
INSERT INTO `items` (`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`,`uuid`) values ('41373','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10469','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'742','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','291a3c4e906040d782ccdd15058a8fa1');
INSERT INTO `items` (`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`,`uuid`) values ('41374','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10469','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'743','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f422f3fce9fb4413b3f1e6d2885959f6');
INSERT INTO `items` (`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`,`uuid`) values ('41375','3','','10470','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'748','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','41e58aa91bc74509aad190e0c07a7afe');
INSERT INTO `items` (`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`,`uuid`) values ('41376','20','1.3.6.1.2.1.1.5.0','10470','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','50e9e01258084593a5c0e55d5c3ea50b');
INSERT INTO `items` (`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`,`uuid`) values ('41377','20','1.3.6.1.2.1.1.3.0','10470','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','61ada578e2654f2b9773e86ac7f9f5a7');
INSERT INTO `items` (`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`,`uuid`) values ('41378','20','1.3.6.1.2.1.1.2.0','10470','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a20282446cc4ec797860f33e6767712');
INSERT INTO `items` (`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`,`uuid`) values ('41379','20','1.3.6.1.2.1.1.6.0','10470','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','10d7ca748c1c4363a7d0ea997de8bbb7');
INSERT INTO `items` (`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`,`uuid`) values ('41380','3','','10470','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','97c6159702a5412c87ee2d42602a4ead');
INSERT INTO `items` (`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`,`uuid`) values ('41381','20','1.3.6.1.2.1.1.1.0','10470','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','23d51bb62dd24ddbb8d8332ddd62aac7');
INSERT INTO `items` (`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`,`uuid`) values ('41382','20','1.3.6.1.2.1.1.4.0','10470','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','8e0533aa1f3e48ce8b5a6a2ad388cf32');
INSERT INTO `items` (`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`,`uuid`) values ('41383','17','','10470','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','18144ae33c344636a8c8f496f9d31769');
INSERT INTO `items` (`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`,`uuid`) values ('41384','3','','10470','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','fd7a6cdbb0b94c7d9d9584873427027d');
INSERT INTO `items` (`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`,`uuid`) values ('41385','5','','10470','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'749','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2dc35ca9c25146eb9d5955bdb338fbf4');
INSERT INTO `items` (`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`,`uuid`) values ('41386','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10470','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fd942651e7e0407682c5d092280413fb');
INSERT INTO `items` (`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`,`uuid`) values ('41387','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10470','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e8d09a331534bb8b18aba0d846b4b92');
INSERT INTO `items` (`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`,`uuid`) values ('41388','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10470','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f18e8d58775a476a9e267ea510046b3b');
INSERT INTO `items` (`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`,`uuid`) values ('41389','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10470','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7c9a00d1ccc64ac2bbb299a2ef3f9f7b');
INSERT INTO `items` (`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`,`uuid`) values ('41390','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10470','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e7e15324c7884bafa830004c30c398ad');
INSERT INTO `items` (`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`,`uuid`) values ('41391','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10470','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7f752c82bf234f30b70a7ce19879963f');
INSERT INTO `items` (`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`,`uuid`) values ('41392','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10470','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d49de2ae77484870876f463f208ff1bb');
INSERT INTO `items` (`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`,`uuid`) values ('41393','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10470','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bb086f35ade448f5938f169ad6eaba94');
INSERT INTO `items` (`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`,`uuid`) values ('41394','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10470','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'746','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7a270cb32f7541678c6a6b3e32f6fba9');
INSERT INTO `items` (`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`,`uuid`) values ('41395','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10470','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'747','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dc8c468874464b2cad3435bc59b7f3e2');
INSERT INTO `items` (`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`,`uuid`) values ('41396','3','','10471','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'752','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e700116048d4392a71946764268fce8');
INSERT INTO `items` (`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`,`uuid`) values ('41397','20','1.3.6.1.2.1.1.5.0','10471','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','72e38e1011654a3eb413f133169b3811');
INSERT INTO `items` (`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`,`uuid`) values ('41398','20','1.3.6.1.2.1.1.3.0','10471','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','edbcea616a6d459898cae926963e9ee4');
INSERT INTO `items` (`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`,`uuid`) values ('41399','20','1.3.6.1.2.1.1.2.0','10471','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b5c8153787384711ae6fde2c1d9cd45c');
INSERT INTO `items` (`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`,`uuid`) values ('41400','20','1.3.6.1.2.1.1.6.0','10471','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','0e41c468f5db44bcab6f8e1a078e5309');
INSERT INTO `items` (`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`,`uuid`) values ('41401','3','','10471','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','5408eda422114912937f6810b5746f71');
INSERT INTO `items` (`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`,`uuid`) values ('41402','20','1.3.6.1.2.1.1.1.0','10471','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aff391166f0d4e13b3d047143446c9ff');
INSERT INTO `items` (`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`,`uuid`) values ('41403','20','1.3.6.1.2.1.1.4.0','10471','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','417db3f4da664196a5cd40b3f7d65caa');
INSERT INTO `items` (`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`,`uuid`) values ('41404','17','','10471','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','75bbba08fdf14ff190d0ea4f9e23d3bd');
INSERT INTO `items` (`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`,`uuid`) values ('41405','3','','10471','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','5ec629ad1b1a44ceb3b138d84eb2d99d');
INSERT INTO `items` (`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`,`uuid`) values ('41406','5','','10471','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'753','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ea1305a4dbf94c848271814a5c3d08c4');
INSERT INTO `items` (`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`,`uuid`) values ('41407','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10471','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b14afecca0b944cf9c8e6330ae80c530');
INSERT INTO `items` (`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`,`uuid`) values ('41408','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10471','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','55617d4e8b80468d89a4e187419a7952');
INSERT INTO `items` (`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`,`uuid`) values ('41409','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10471','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','47237970af2d45208906b87fbc1f9339');
INSERT INTO `items` (`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`,`uuid`) values ('41410','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10471','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','50caf27cd8ff4a349a888741a301e776');
INSERT INTO `items` (`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`,`uuid`) values ('41411','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10471','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','22c2413e4100432ea8dc0e8816b31ba4');
INSERT INTO `items` (`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`,`uuid`) values ('41412','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10471','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6859685be5784fe3a3adc209d4b69b6e');
INSERT INTO `items` (`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`,`uuid`) values ('41413','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10471','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e3836dded4c84b218af72d2358e9c228');
INSERT INTO `items` (`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`,`uuid`) values ('41414','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10471','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','25815a4b39e147e6be4cc7db9f79090d');
INSERT INTO `items` (`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`,`uuid`) values ('41415','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10471','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'750','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5193b82dafc14ef6905af63cc99ee7cf');
INSERT INTO `items` (`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`,`uuid`) values ('41416','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10471','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'751','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','17651e8aa6134c77868ee1c74a626209');
INSERT INTO `items` (`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`,`uuid`) values ('41417','3','','10472','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'756','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cb5c19012cfd413fb280ccf6f2754f65');
INSERT INTO `items` (`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`,`uuid`) values ('41418','20','1.3.6.1.2.1.1.5.0','10472','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1db5d107bd1f4395b1e746ee9a345f21');
INSERT INTO `items` (`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`,`uuid`) values ('41419','20','1.3.6.1.2.1.1.3.0','10472','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','83a1109159ca4513ba278a3c290d10b9');
INSERT INTO `items` (`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`,`uuid`) values ('41420','20','1.3.6.1.2.1.1.2.0','10472','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b1b6c41064924674b43851832fbb7b10');
INSERT INTO `items` (`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`,`uuid`) values ('41421','20','1.3.6.1.2.1.1.6.0','10472','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','a8e5af6ef52d457098ff5a9cd10a30da');
INSERT INTO `items` (`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`,`uuid`) values ('41422','3','','10472','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','877d543f8a0040a7bf6b48c734f9622f');
INSERT INTO `items` (`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`,`uuid`) values ('41423','20','1.3.6.1.2.1.1.1.0','10472','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','743f06984d5549d2832c55914d3cbc5e');
INSERT INTO `items` (`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`,`uuid`) values ('41424','20','1.3.6.1.2.1.1.4.0','10472','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','ee5e1ba0c8d94747a0da617ba01fd998');
INSERT INTO `items` (`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`,`uuid`) values ('41425','17','','10472','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','237fc861aa3b4a33ac6b1b4aee3f05b0');
INSERT INTO `items` (`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`,`uuid`) values ('41426','3','','10472','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','689a05d4bdec404abea16439908b9b22');
INSERT INTO `items` (`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`,`uuid`) values ('41427','5','','10472','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'757','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8161db2e10c84693961e742fda8a7fa2');
INSERT INTO `items` (`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`,`uuid`) values ('41428','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10472','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a7da0c4a802f426293c53be9de92c2bd');
INSERT INTO `items` (`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`,`uuid`) values ('41429','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10472','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e95e0022cb4842158e13bbbe639c897d');
INSERT INTO `items` (`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`,`uuid`) values ('41430','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10472','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','70d09c8adda84e20a2f88543d061bae1');
INSERT INTO `items` (`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`,`uuid`) values ('41431','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10472','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4dfaf66c7f4e4120a74f0c7732dc4607');
INSERT INTO `items` (`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`,`uuid`) values ('41432','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10472','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9de9d790a7b7413d9d5c846105f08e9c');
INSERT INTO `items` (`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`,`uuid`) values ('41433','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10472','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c99856d2f78e4de893717c70b4a5d71d');
INSERT INTO `items` (`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`,`uuid`) values ('41434','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10472','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','658a5d7e0c9d49af99c8c1851d79660b');
INSERT INTO `items` (`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`,`uuid`) values ('41435','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10472','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','30a84a0c28f84167aa4d59d456571071');
INSERT INTO `items` (`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`,`uuid`) values ('41436','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10472','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'754','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','affe22bbc74b43ff8dc58e83d6a79f9c');
INSERT INTO `items` (`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`,`uuid`) values ('41437','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10472','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'755','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ebcc896ec938477b830def5aceb7f211');
INSERT INTO `items` (`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`,`uuid`) values ('41438','3','','10473','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'760','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','794bf23a9839416bae6c2d04489eeaf3');
INSERT INTO `items` (`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`,`uuid`) values ('41439','20','1.3.6.1.2.1.1.5.0','10473','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','37b571d2c80e484d826ab688768d2036');
INSERT INTO `items` (`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`,`uuid`) values ('41440','20','1.3.6.1.2.1.1.3.0','10473','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d2fbbaae58704270b5fc8d04bca76209');
INSERT INTO `items` (`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`,`uuid`) values ('41441','20','1.3.6.1.2.1.1.2.0','10473','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b2c67ce1f337481e9ffe6a1f3c467c8c');
INSERT INTO `items` (`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`,`uuid`) values ('41442','20','1.3.6.1.2.1.1.6.0','10473','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','8a856d5811924020a98ce56910cb52af');
INSERT INTO `items` (`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`,`uuid`) values ('41443','3','','10473','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','e563c3cb4a254b70a6f034fc81c2f672');
INSERT INTO `items` (`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`,`uuid`) values ('41444','20','1.3.6.1.2.1.1.1.0','10473','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d668a2c3ee2b49629f4520b3627e5cc1');
INSERT INTO `items` (`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`,`uuid`) values ('41445','20','1.3.6.1.2.1.1.4.0','10473','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','e170bed368914833917c81d70fea7e1c');
INSERT INTO `items` (`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`,`uuid`) values ('41446','17','','10473','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','88f1d48a273f4400930efd1086b61b64');
INSERT INTO `items` (`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`,`uuid`) values ('41447','3','','10473','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','a3a45a21356644f7bccced62a2d8ce3b');
INSERT INTO `items` (`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`,`uuid`) values ('41448','5','','10473','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'761','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','641ccd0e5ec8454bb0bc62d3e8362cc2');
INSERT INTO `items` (`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`,`uuid`) values ('41449','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10473','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','83044efa2ab24bec9b9cba167429c1fe');
INSERT INTO `items` (`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`,`uuid`) values ('41450','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10473','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7f6edc44bbc94228befed84190c70fdb');
INSERT INTO `items` (`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`,`uuid`) values ('41451','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10473','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4080212fd8264ec99caa6559f69d4a81');
INSERT INTO `items` (`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`,`uuid`) values ('41452','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10473','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','68b31566f60a4336a03893e01f72f32c');
INSERT INTO `items` (`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`,`uuid`) values ('41453','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10473','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','17cadd22893c4266abe046e89925c570');
INSERT INTO `items` (`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`,`uuid`) values ('41454','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10473','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ac86d8e79a74ec6ba6223e379a409cc');
INSERT INTO `items` (`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`,`uuid`) values ('41455','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10473','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4cae0453843645d4bc52f613f1622d28');
INSERT INTO `items` (`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`,`uuid`) values ('41456','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10473','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e84f616abb4e4e9ca5a278bf6f446508');
INSERT INTO `items` (`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`,`uuid`) values ('41457','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10473','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'758','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f3537d0d3dfd4cb1aff00930115f927d');
INSERT INTO `items` (`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`,`uuid`) values ('41458','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10473','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'759','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a0c424489d3640d68027bd4e0f1a6a5f');
INSERT INTO `items` (`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`,`uuid`) values ('41459','3','','10474','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'764','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9afb4d3954164976aad193e27dcc08b7');
INSERT INTO `items` (`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`,`uuid`) values ('41460','20','1.3.6.1.2.1.1.5.0','10474','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','53e45ee656db47afabc6ad18d3f61c37');
INSERT INTO `items` (`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`,`uuid`) values ('41461','20','1.3.6.1.2.1.1.3.0','10474','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','54d630b4d80e4ac0a9942630a80b14d8');
INSERT INTO `items` (`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`,`uuid`) values ('41462','20','1.3.6.1.2.1.1.2.0','10474','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b6aacb1fd6b8413f837f2cb3b1977a22');
INSERT INTO `items` (`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`,`uuid`) values ('41463','20','1.3.6.1.2.1.1.6.0','10474','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','4445d982dc354baf8c7649ab9250b3f9');
INSERT INTO `items` (`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`,`uuid`) values ('41464','3','','10474','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','ead664e6adfc4911854075c0c173ea88');
INSERT INTO `items` (`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`,`uuid`) values ('41465','20','1.3.6.1.2.1.1.1.0','10474','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1a35e1108dbd47b4bd818668e5523aec');
INSERT INTO `items` (`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`,`uuid`) values ('41466','20','1.3.6.1.2.1.1.4.0','10474','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','714588b12797482192a786a131dab9f6');
INSERT INTO `items` (`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`,`uuid`) values ('41467','17','','10474','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','a3e60d1ff0444f0485f3b41100f21c15');
INSERT INTO `items` (`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`,`uuid`) values ('41468','3','','10474','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','95ca4a96e93d4d8cb4d1d9d97b711231');
INSERT INTO `items` (`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`,`uuid`) values ('41469','5','','10474','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'765','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd170bcf34104168884e123da7ed93da');
INSERT INTO `items` (`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`,`uuid`) values ('41470','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10474','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','402036489b6644478c97aee607bbbad2');
INSERT INTO `items` (`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`,`uuid`) values ('41471','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10474','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f76b6bc13f1b4473b763ee08ae88f124');
INSERT INTO `items` (`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`,`uuid`) values ('41472','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10474','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c3765b5414de494bbbe33e866896540b');
INSERT INTO `items` (`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`,`uuid`) values ('41473','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10474','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2beecb8e00e847ca8c9362c8a46d1d45');
INSERT INTO `items` (`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`,`uuid`) values ('41474','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10474','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b76bd53b81f14ca2805bc5e602c31a3d');
INSERT INTO `items` (`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`,`uuid`) values ('41475','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10474','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','adcc570a20814513b751b714f78e9671');
INSERT INTO `items` (`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`,`uuid`) values ('41476','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10474','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3eaffea1148549a8bea62b833b973af7');
INSERT INTO `items` (`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`,`uuid`) values ('41477','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10474','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a794f88cabf1479e99322684a617814a');
INSERT INTO `items` (`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`,`uuid`) values ('41478','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10474','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'762','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e85098b6a7f94975afb3c5089eff9018');
INSERT INTO `items` (`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`,`uuid`) values ('41479','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10474','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'763','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d82342898fec45c69092e1cc925292cf');
INSERT INTO `items` (`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`,`uuid`) values ('41480','3','','10475','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'768','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1d202d0a1c0d45d09a995ef741176869');
INSERT INTO `items` (`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`,`uuid`) values ('41481','20','1.3.6.1.2.1.1.5.0','10475','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7731343e3a584e4cba4241f6114f1b12');
INSERT INTO `items` (`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`,`uuid`) values ('41482','20','1.3.6.1.2.1.1.3.0','10475','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','38d674115439443a848b43c72e71a345');
INSERT INTO `items` (`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`,`uuid`) values ('41483','20','1.3.6.1.2.1.1.2.0','10475','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fa9788e34ffe4107bf7b1d72008af5e6');
INSERT INTO `items` (`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`,`uuid`) values ('41484','20','1.3.6.1.2.1.1.6.0','10475','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','8539d2a032e741b1845d6423772600ec');
INSERT INTO `items` (`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`,`uuid`) values ('41485','3','','10475','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','ec3285050dd44b47b648f9c61ab8c9e4');
INSERT INTO `items` (`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`,`uuid`) values ('41486','20','1.3.6.1.2.1.1.1.0','10475','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1caa3bcecbf441d4bdea4e1adcfd399d');
INSERT INTO `items` (`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`,`uuid`) values ('41487','20','1.3.6.1.2.1.1.4.0','10475','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','bb4b0528c6c946b49f5b7a8da8cbabe0');
INSERT INTO `items` (`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`,`uuid`) values ('41488','17','','10475','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','6460447c65a6427cafd53e618d5d7bc1');
INSERT INTO `items` (`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`,`uuid`) values ('41489','3','','10475','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','b71903a18c4246238d7e9a8e99904794');
INSERT INTO `items` (`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`,`uuid`) values ('41490','5','','10475','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'769','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4087946c74884ef085a79fe174495646');
INSERT INTO `items` (`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`,`uuid`) values ('41491','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10475','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a7df21169dd443bcae6bb4c346303978');
INSERT INTO `items` (`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`,`uuid`) values ('41492','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10475','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3cc53291a325471892d06fa2b36dd272');
INSERT INTO `items` (`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`,`uuid`) values ('41493','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10475','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3bd86398a02c4356ad9067fcd1c1c730');
INSERT INTO `items` (`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`,`uuid`) values ('41494','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10475','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a4f73343bffa45baa82d1b6d8dfaf831');
INSERT INTO `items` (`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`,`uuid`) values ('41495','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10475','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e44d0375cae641418ccda6e57a932035');
INSERT INTO `items` (`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`,`uuid`) values ('41496','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10475','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7503b03c728f4f1e804e7af9eda7b040');
INSERT INTO `items` (`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`,`uuid`) values ('41497','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10475','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','171c12b008354e6aab1ec60320a8425a');
INSERT INTO `items` (`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`,`uuid`) values ('41498','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10475','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d2dc748e268d42ffbe47775201a26e8c');
INSERT INTO `items` (`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`,`uuid`) values ('41499','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10475','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'766','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e4c53dcbfd34740af71944828ca7450');
INSERT INTO `items` (`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`,`uuid`) values ('41500','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10475','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'767','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ec088a3b0bac441294cb5cefffb87818');
INSERT INTO `items` (`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`,`uuid`) values ('41501','3','','10476','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'772','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','24ab31dd7fd44ed5a5fd22e02fca0a11');
INSERT INTO `items` (`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`,`uuid`) values ('41502','20','1.3.6.1.2.1.1.5.0','10476','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','139496c157af4e12b28ca337ca60c7fa');
INSERT INTO `items` (`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`,`uuid`) values ('41503','20','1.3.6.1.2.1.1.3.0','10476','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3137916543634345a5688f631657fa30');
INSERT INTO `items` (`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`,`uuid`) values ('41504','20','1.3.6.1.2.1.1.2.0','10476','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','78f353c258764fa69637afe7f8ab440b');
INSERT INTO `items` (`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`,`uuid`) values ('41505','20','1.3.6.1.2.1.1.6.0','10476','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','cd48a08f2b4a4dd3961488a00424fcce');
INSERT INTO `items` (`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`,`uuid`) values ('41506','3','','10476','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','80ab3090289a481da72c0d93764eb18a');
INSERT INTO `items` (`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`,`uuid`) values ('41507','20','1.3.6.1.2.1.1.1.0','10476','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d0db3ce8a567414a96bbe5b02b1967dd');
INSERT INTO `items` (`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`,`uuid`) values ('41508','20','1.3.6.1.2.1.1.4.0','10476','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','9ad920cf294a4fcbaa78ea4f01385588');
INSERT INTO `items` (`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`,`uuid`) values ('41509','17','','10476','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','197098286a9b4b6bac5bd79a4f0eb522');
INSERT INTO `items` (`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`,`uuid`) values ('41510','3','','10476','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','15552636da9a40b6b2bec461798f3c0d');
INSERT INTO `items` (`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`,`uuid`) values ('41511','5','','10476','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'773','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e01e3b3a9db44d2db55ae6d289d963c4');
INSERT INTO `items` (`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`,`uuid`) values ('41512','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10476','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','71ccfba5cc2d432e9414023d0f75b8db');
INSERT INTO `items` (`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`,`uuid`) values ('41513','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10476','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c5601b788d6f4671a40185e744fb6bb1');
INSERT INTO `items` (`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`,`uuid`) values ('41514','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10476','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5b408d3188a04d30a5897746bd27feb8');
INSERT INTO `items` (`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`,`uuid`) values ('41515','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10476','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','28c8d1007d794e2c90f3303ed05bfba9');
INSERT INTO `items` (`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`,`uuid`) values ('41516','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10476','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2529b37765ea41d8a780f20e37e49add');
INSERT INTO `items` (`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`,`uuid`) values ('41517','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10476','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','95533937102b46f4bc862f326b555913');
INSERT INTO `items` (`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`,`uuid`) values ('41518','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10476','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7cf5ce8e6ade4a0dbbe5491cbc50797a');
INSERT INTO `items` (`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`,`uuid`) values ('41519','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10476','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','484b2b4b18724db8a2e718a24546686a');
INSERT INTO `items` (`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`,`uuid`) values ('41520','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10476','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'770','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ba7998aa6ff34a4d828aa37aba12f55a');
INSERT INTO `items` (`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`,`uuid`) values ('41521','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10476','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'771','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5f0fc074d5144155a8bc67208bdb24ea');
INSERT INTO `items` (`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`,`uuid`) values ('41522','3','','10477','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'776','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','394f2cd81cc747009c16e0fa7c7febc1');
INSERT INTO `items` (`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`,`uuid`) values ('41523','20','1.3.6.1.2.1.1.5.0','10477','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2f54cf3f5bfd41d29b46887c8de02df3');
INSERT INTO `items` (`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`,`uuid`) values ('41524','20','1.3.6.1.2.1.1.3.0','10477','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bce151f2eece481ab9ff10bd492ec514');
INSERT INTO `items` (`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`,`uuid`) values ('41525','20','1.3.6.1.2.1.1.2.0','10477','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','45d0902fc8764108983d75f51a7c13ca');
INSERT INTO `items` (`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`,`uuid`) values ('41526','20','1.3.6.1.2.1.1.6.0','10477','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','49a731f14f3b4bae8f16eb6a7a5d3b7a');
INSERT INTO `items` (`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`,`uuid`) values ('41527','3','','10477','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','513874d2dce848fca9d5be0f8a698a27');
INSERT INTO `items` (`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`,`uuid`) values ('41528','20','1.3.6.1.2.1.1.1.0','10477','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','38a1523e8ce54611842e76fd4f614c15');
INSERT INTO `items` (`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`,`uuid`) values ('41529','20','1.3.6.1.2.1.1.4.0','10477','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','d83e355ae790441594a2ca6d5ec37de0');
INSERT INTO `items` (`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`,`uuid`) values ('41530','17','','10477','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','93d399db31b64d36bfe87a1f99195663');
INSERT INTO `items` (`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`,`uuid`) values ('41531','3','','10477','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','5261e46912184a41a32c3d309cd8554c');
INSERT INTO `items` (`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`,`uuid`) values ('41532','5','','10477','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'777','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7c119d5bedb542f288fe4a04dc629b94');
INSERT INTO `items` (`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`,`uuid`) values ('41533','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10477','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','71bd3db236e245299334bf7b03e3b7da');
INSERT INTO `items` (`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`,`uuid`) values ('41534','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10477','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ef7919acd4a45ed93214a6a940c8f39');
INSERT INTO `items` (`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`,`uuid`) values ('41535','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10477','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f28824308896450f8e9b2842dd103db6');
INSERT INTO `items` (`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`,`uuid`) values ('41536','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10477','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ae10194c5e7f465b902f0cb20f7b8776');
INSERT INTO `items` (`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`,`uuid`) values ('41537','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10477','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b07c109994db4a5eaa065589c54edcc1');
INSERT INTO `items` (`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`,`uuid`) values ('41538','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10477','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','90b82a51bd104a79804213b1b566fb5a');
INSERT INTO `items` (`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`,`uuid`) values ('41539','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10477','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','65dfa7a917a24279823f3c5bac76c1d9');
INSERT INTO `items` (`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`,`uuid`) values ('41540','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10477','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b19861fbf90c474c99f644c6880cf813');
INSERT INTO `items` (`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`,`uuid`) values ('41541','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10477','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'774','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cf3c4275cfe1466ab07d672031bac4af');
INSERT INTO `items` (`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`,`uuid`) values ('41542','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10477','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'775','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','91c1bbf2dd264ee3a0f741d4398cf02a');
INSERT INTO `items` (`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`,`uuid`) values ('41543','3','','10478','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'780','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8075b9b02fb14be1888ed2a64775f7eb');
INSERT INTO `items` (`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`,`uuid`) values ('41544','20','1.3.6.1.2.1.1.5.0','10478','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','52a05ea08b8640f784861b5b2b75dfa8');
INSERT INTO `items` (`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`,`uuid`) values ('41545','20','1.3.6.1.2.1.1.3.0','10478','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','848026e8f903413d8faecf0233d69a8e');
INSERT INTO `items` (`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`,`uuid`) values ('41546','20','1.3.6.1.2.1.1.2.0','10478','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','06a2d329ae384c8fb773719c34593d0f');
INSERT INTO `items` (`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`,`uuid`) values ('41547','20','1.3.6.1.2.1.1.6.0','10478','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','dd009a8b6f2d409c89cd5f5c60bea1b8');
INSERT INTO `items` (`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`,`uuid`) values ('41548','3','','10478','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','581804928209426ab53c232419f0d201');
INSERT INTO `items` (`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`,`uuid`) values ('41549','20','1.3.6.1.2.1.1.1.0','10478','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4d3eab41a8c845a7bfbe5dbb3b6fd45b');
INSERT INTO `items` (`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`,`uuid`) values ('41550','20','1.3.6.1.2.1.1.4.0','10478','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','a79df3796e4b4f5183a8ee38d554843f');
INSERT INTO `items` (`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`,`uuid`) values ('41551','17','','10478','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','0f21accc1a4247e9951b6c0d8b9a49af');
INSERT INTO `items` (`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`,`uuid`) values ('41552','3','','10478','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','919171c77ef34d96b071d04c279d467f');
INSERT INTO `items` (`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`,`uuid`) values ('41553','5','','10478','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'781','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e77993cb5e6f4b71a7fb71cd85ea548a');
INSERT INTO `items` (`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`,`uuid`) values ('41554','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10478','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','127a96854d2b41e98054deefcb4ae611');
INSERT INTO `items` (`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`,`uuid`) values ('41555','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10478','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9f1f78e4cd2649fcbfb579019b899cac');
INSERT INTO `items` (`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`,`uuid`) values ('41556','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10478','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e460dc068df843b186d0deb849b6dcc3');
INSERT INTO `items` (`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`,`uuid`) values ('41557','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10478','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c1a647eb08494764b278d2d37c2ff95b');
INSERT INTO `items` (`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`,`uuid`) values ('41558','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10478','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ec3b763a78cd4fe2bd32270d8d6dd13f');
INSERT INTO `items` (`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`,`uuid`) values ('41559','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10478','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c51489ce84b74371bea2a5c366a2dc5d');
INSERT INTO `items` (`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`,`uuid`) values ('41560','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10478','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','397ab9b47b9c47b19238e468f5258c1d');
INSERT INTO `items` (`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`,`uuid`) values ('41561','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10478','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9f6c72493ee74c208834fedd93e4b593');
INSERT INTO `items` (`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`,`uuid`) values ('41562','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10478','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'778','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','30a4494efd164dad8df7975cf4f67d0a');
INSERT INTO `items` (`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`,`uuid`) values ('41563','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10478','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'779','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f6163d52349d48938752e4a46595026b');
INSERT INTO `items` (`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`,`uuid`) values ('41564','3','','10479','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'784','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b919a35c522a4e578e4141f3c418d516');
INSERT INTO `items` (`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`,`uuid`) values ('41565','20','1.3.6.1.2.1.1.5.0','10479','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','05efe5444887488cad6e765f29c8872a');
INSERT INTO `items` (`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`,`uuid`) values ('41566','20','1.3.6.1.2.1.1.3.0','10479','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bc75baec3ea248e5a287b00906e18775');
INSERT INTO `items` (`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`,`uuid`) values ('41567','20','1.3.6.1.2.1.1.2.0','10479','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2cdbeb7f0c09494996884bcfd5d97df0');
INSERT INTO `items` (`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`,`uuid`) values ('41568','20','1.3.6.1.2.1.1.6.0','10479','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','6ee460010096474e9a574efba9f5a321');
INSERT INTO `items` (`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`,`uuid`) values ('41569','3','','10479','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','8173ce900a384eb6be5941be7ab89b15');
INSERT INTO `items` (`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`,`uuid`) values ('41570','20','1.3.6.1.2.1.1.1.0','10479','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b8f058b9f1cb493798fb971c1d06f0d8');
INSERT INTO `items` (`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`,`uuid`) values ('41571','20','1.3.6.1.2.1.1.4.0','10479','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','44ae86def1564418a90f4c4a4c0b9e85');
INSERT INTO `items` (`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`,`uuid`) values ('41572','17','','10479','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','b5d724ef958b4716b09dcbda5ae0ced7');
INSERT INTO `items` (`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`,`uuid`) values ('41573','3','','10479','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','ad7aa85d14834683b63b43cf48222259');
INSERT INTO `items` (`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`,`uuid`) values ('41574','5','','10479','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'785','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5534d6b602624c7a99c70c3b75e4478b');
INSERT INTO `items` (`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`,`uuid`) values ('41575','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10479','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','32198eb34e2c4b0583718f70453c07af');
INSERT INTO `items` (`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`,`uuid`) values ('41576','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10479','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da796620bb934064a801a476bdb6f12f');
INSERT INTO `items` (`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`,`uuid`) values ('41577','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10479','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','df4b1fb0cd1c496f899f72a71912a0e8');
INSERT INTO `items` (`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`,`uuid`) values ('41578','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10479','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9c94e7fea09a4564a8badee716956faf');
INSERT INTO `items` (`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`,`uuid`) values ('41579','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10479','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','20f2f1af873a4a669cb3a26c04dc9ffb');
INSERT INTO `items` (`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`,`uuid`) values ('41580','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10479','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','951aabf89c3f40fab81974e3b7f05a3f');
INSERT INTO `items` (`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`,`uuid`) values ('41581','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10479','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','240c2875c51a4ed9b417e86a2d00ef58');
INSERT INTO `items` (`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`,`uuid`) values ('41582','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10479','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9a5ce33805674092ab3040890f753ca6');
INSERT INTO `items` (`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`,`uuid`) values ('41583','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10479','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'782','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d13d7eaba7314f4a8b387b373cca5c6f');
INSERT INTO `items` (`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`,`uuid`) values ('41584','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10479','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'783','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','66553455009c4044bbd0cd4c259bd3b4');
INSERT INTO `items` (`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`,`uuid`) values ('41585','3','','10480','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'788','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c5cc6ac52ea14002b65acbddf9f48045');
INSERT INTO `items` (`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`,`uuid`) values ('41586','20','1.3.6.1.2.1.1.5.0','10480','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','59b1e8b64a30407b9e503f94c4b13b8a');
INSERT INTO `items` (`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`,`uuid`) values ('41587','20','1.3.6.1.2.1.1.3.0','10480','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c952f3c5768d4bdfa671ffb047968fd6');
INSERT INTO `items` (`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`,`uuid`) values ('41588','20','1.3.6.1.2.1.1.2.0','10480','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6f192955e5c64c958f6c7a0564a51d0a');
INSERT INTO `items` (`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`,`uuid`) values ('41589','20','1.3.6.1.2.1.1.6.0','10480','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','2e0fbbb7dc1d42a199b04261af201a07');
INSERT INTO `items` (`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`,`uuid`) values ('41590','3','','10480','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','99b96d870f9e473f82d753e73e5a0662');
INSERT INTO `items` (`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`,`uuid`) values ('41591','20','1.3.6.1.2.1.1.1.0','10480','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','98e095b208874cadb7de6380a0b28166');
INSERT INTO `items` (`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`,`uuid`) values ('41592','20','1.3.6.1.2.1.1.4.0','10480','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','6e1f3e5e1fd2426eb057cd3e6d857826');
INSERT INTO `items` (`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`,`uuid`) values ('41593','17','','10480','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','d933122252654a9f9f9c6eb8a62f2de0');
INSERT INTO `items` (`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`,`uuid`) values ('41594','3','','10480','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','02d39b670ab94ee2a915c2b33aae5b47');
INSERT INTO `items` (`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`,`uuid`) values ('41595','5','','10480','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'789','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ac42b3af7d964b16a44b8553e09b5e4e');
INSERT INTO `items` (`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`,`uuid`) values ('41596','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10480','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2f7a46aee66e4dbf997ac51362f2bb55');
INSERT INTO `items` (`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`,`uuid`) values ('41597','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10480','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','23ea1788a4334a2b8ec9b4980bbccc9d');
INSERT INTO `items` (`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`,`uuid`) values ('41598','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10480','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c802ca6e2ecc4d149b877eca9a01190e');
INSERT INTO `items` (`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`,`uuid`) values ('41599','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10480','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dfcec8edd17a4865b75df11c0929ce68');
INSERT INTO `items` (`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`,`uuid`) values ('41600','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10480','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','01c46647d3e34f04bef49464f3ecee7a');
INSERT INTO `items` (`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`,`uuid`) values ('41601','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10480','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','89b2e0e05b51489881bd3999cff7460e');
INSERT INTO `items` (`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`,`uuid`) values ('41602','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10480','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0e299540733d41f7a31fca8c834d4a64');
INSERT INTO `items` (`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`,`uuid`) values ('41603','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10480','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','031c50df657944dd86e736d2747a3d6e');
INSERT INTO `items` (`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`,`uuid`) values ('41604','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10480','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'786','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3d0785af532942398bbc7c71f1c902ad');
INSERT INTO `items` (`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`,`uuid`) values ('41605','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10480','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'787','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d3f08b8e8b5f440a9ce30440b96ee2cc');
INSERT INTO `items` (`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`,`uuid`) values ('41606','3','','10481','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'792','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bbdbcca7ead1408f93dda57b8dfab21e');
INSERT INTO `items` (`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`,`uuid`) values ('41607','20','1.3.6.1.2.1.1.5.0','10481','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','967b9b8b943d4fb79ff7075d6bb1e31a');
INSERT INTO `items` (`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`,`uuid`) values ('41608','20','1.3.6.1.2.1.1.3.0','10481','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','35e0a5603e7c43609c0405135dbaa957');
INSERT INTO `items` (`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`,`uuid`) values ('41609','20','1.3.6.1.2.1.1.2.0','10481','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','277a7aa61ce241c089dc5367e9a5e0c3');
INSERT INTO `items` (`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`,`uuid`) values ('41610','20','1.3.6.1.2.1.1.6.0','10481','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','72ed8c2083474e38823957e17ca41971');
INSERT INTO `items` (`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`,`uuid`) values ('41611','3','','10481','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','4d2850a0021b47f581630fdfbba20ea2');
INSERT INTO `items` (`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`,`uuid`) values ('41612','20','1.3.6.1.2.1.1.1.0','10481','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bc3fea02652d4c5d82c2179313cc8987');
INSERT INTO `items` (`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`,`uuid`) values ('41613','20','1.3.6.1.2.1.1.4.0','10481','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','6c3eb8d3da7d437eb04be7c3782c9322');
INSERT INTO `items` (`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`,`uuid`) values ('41614','17','','10481','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','c9683aa4310744b7889c2e5f8ca7d967');
INSERT INTO `items` (`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`,`uuid`) values ('41615','3','','10481','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','8c4bc8d2cbcc4433bb59db4137f9ae9d');
INSERT INTO `items` (`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`,`uuid`) values ('41616','5','','10481','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'793','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0604fe933a364f40bf3f964f2ba7f6d7');
INSERT INTO `items` (`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`,`uuid`) values ('41617','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10481','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','066b2690d6234e2cb2bffd715f4ec4b9');
INSERT INTO `items` (`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`,`uuid`) values ('41618','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10481','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ee0d3007bb9d4f8b8d83a052f98620a1');
INSERT INTO `items` (`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`,`uuid`) values ('41619','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10481','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f3d75b29bee14d779c94707322dd682a');
INSERT INTO `items` (`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`,`uuid`) values ('41620','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10481','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a4e9ed82f52043378d6304178c3e3f78');
INSERT INTO `items` (`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`,`uuid`) values ('41621','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10481','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','37cc5408843b4a35b3817b099fd1e420');
INSERT INTO `items` (`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`,`uuid`) values ('41622','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10481','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e8f7113e11d34e7bb15ba4ab5e2691f6');
INSERT INTO `items` (`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`,`uuid`) values ('41623','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10481','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','97827ffc7fae4320a9c1553d4c0490b8');
INSERT INTO `items` (`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`,`uuid`) values ('41624','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10481','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c8c2482534994abaa5d0cf23ad5cb62f');
INSERT INTO `items` (`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`,`uuid`) values ('41625','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10481','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'790','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','17bc03edd5fd42a0844e9105109c14e4');
INSERT INTO `items` (`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`,`uuid`) values ('41626','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10481','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'791','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6246d2dd236d4ebe820cf85d690e847d');
INSERT INTO `items` (`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`,`uuid`) values ('41627','3','','10482','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'796','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3034f0f82fb140fa944491b4627e8187');
INSERT INTO `items` (`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`,`uuid`) values ('41628','20','1.3.6.1.2.1.1.5.0','10482','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84a2ef84a1614afba525253263fcdea4');
INSERT INTO `items` (`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`,`uuid`) values ('41629','20','1.3.6.1.2.1.1.3.0','10482','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fea0f7388a314d939626739b0ddf5186');
INSERT INTO `items` (`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`,`uuid`) values ('41630','20','1.3.6.1.2.1.1.2.0','10482','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','58d2b5fae1fa41149eed29d761d7e3f7');
INSERT INTO `items` (`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`,`uuid`) values ('41631','20','1.3.6.1.2.1.1.6.0','10482','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','85358d92f1ce45c6adb0eb8fa269f8c6');
INSERT INTO `items` (`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`,`uuid`) values ('41632','3','','10482','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','7b58dc12021b466a9d4d66eb12cfa15d');
INSERT INTO `items` (`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`,`uuid`) values ('41633','20','1.3.6.1.2.1.1.1.0','10482','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9dcc1a8373424d52be6e79ec2e1d2ce5');
INSERT INTO `items` (`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`,`uuid`) values ('41634','20','1.3.6.1.2.1.1.4.0','10482','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','369c73ea224941c7acc8519bb4a561f1');
INSERT INTO `items` (`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`,`uuid`) values ('41635','17','','10482','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','d2a55d810c9e484fa230d90b7a5d78a2');
INSERT INTO `items` (`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`,`uuid`) values ('41636','3','','10482','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','e6054de71dfe487f81f652af7105b63c');
INSERT INTO `items` (`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`,`uuid`) values ('41637','5','','10482','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'797','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','642ca5d699a248cb9a354c1a4b0aaed7');
INSERT INTO `items` (`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`,`uuid`) values ('41638','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10482','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e637baa779224aca9006590a39346f00');
INSERT INTO `items` (`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`,`uuid`) values ('41639','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10482','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7332bcbd5eca49f3a5365d86264f1028');
INSERT INTO `items` (`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`,`uuid`) values ('41640','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10482','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cb7b2f212cba40ad80cca243b05c3bc0');
INSERT INTO `items` (`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`,`uuid`) values ('41641','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10482','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8b0d5ae995c546779eedfe926e2063ad');
INSERT INTO `items` (`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`,`uuid`) values ('41642','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10482','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b47a007b7bff429b91347a937cbefa45');
INSERT INTO `items` (`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`,`uuid`) values ('41643','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10482','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5358ca10aa794e298fd4e8571abe654d');
INSERT INTO `items` (`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`,`uuid`) values ('41644','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10482','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6e9189d7a23d4b5eb08e6b9a36a6a740');
INSERT INTO `items` (`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`,`uuid`) values ('41645','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10482','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0faeb4dc5e144f9794519f37a1ca26e6');
INSERT INTO `items` (`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`,`uuid`) values ('41646','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10482','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'794','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','10a37f86af134370838f58c09edd4e58');
INSERT INTO `items` (`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`,`uuid`) values ('41647','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10482','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'795','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','908cd9a188eb480fa50e90bb17e99575');
INSERT INTO `items` (`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`,`uuid`) values ('41648','3','','10483','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'800','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a370113cc46d4415bea51cefdeb21891');
INSERT INTO `items` (`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`,`uuid`) values ('41649','20','1.3.6.1.2.1.1.5.0','10483','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','85d210e692744fbb94d8a794bbc2034a');
INSERT INTO `items` (`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`,`uuid`) values ('41650','20','1.3.6.1.2.1.1.3.0','10483','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e01891bd9194635931778fba9b45fd0');
INSERT INTO `items` (`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`,`uuid`) values ('41651','20','1.3.6.1.2.1.1.2.0','10483','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b95e62bdc53a40a9b4bfc4b023a34067');
INSERT INTO `items` (`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`,`uuid`) values ('41652','20','1.3.6.1.2.1.1.6.0','10483','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','a7ceef9763e24dd890f5d4bc0a4074d3');
INSERT INTO `items` (`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`,`uuid`) values ('41653','3','','10483','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','6573dd2d23f4490f85d5fffe19e388da');
INSERT INTO `items` (`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`,`uuid`) values ('41654','20','1.3.6.1.2.1.1.1.0','10483','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0bee0b14582d47b091304be4fb9b8ba1');
INSERT INTO `items` (`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`,`uuid`) values ('41655','20','1.3.6.1.2.1.1.4.0','10483','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','45e9507c2cf1476784a4797dd380e048');
INSERT INTO `items` (`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`,`uuid`) values ('41656','17','','10483','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','9578f10764514cd68325646e82d44697');
INSERT INTO `items` (`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`,`uuid`) values ('41657','3','','10483','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','09e3d93e5dd542ab8436b5b712f77e48');
INSERT INTO `items` (`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`,`uuid`) values ('41658','5','','10483','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'801','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e0d82664c024f0fbeefb38cd4f91bec');
INSERT INTO `items` (`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`,`uuid`) values ('41659','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10483','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ee778a5b20f6482d87d473212b740cf5');
INSERT INTO `items` (`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`,`uuid`) values ('41660','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10483','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6dedda7d9d7e4debb9fbd1dbf3249e8e');
INSERT INTO `items` (`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`,`uuid`) values ('41661','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10483','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ee2f3a994dc4cbdb733a0c949775b2b');
INSERT INTO `items` (`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`,`uuid`) values ('41662','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10483','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f6498742503a431e94f84271b58d5dcf');
INSERT INTO `items` (`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`,`uuid`) values ('41663','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10483','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6e7823dd59b84368afc4cfa354c740a0');
INSERT INTO `items` (`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`,`uuid`) values ('41664','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10483','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e2c2d9926c384963b950578e6cc11b8f');
INSERT INTO `items` (`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`,`uuid`) values ('41665','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10483','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','87badc6ee6b74dc5807a6879d0803754');
INSERT INTO `items` (`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`,`uuid`) values ('41666','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10483','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fe56f8b25da34c9da8b0506357f4f3d8');
INSERT INTO `items` (`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`,`uuid`) values ('41667','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10483','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'798','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d9ef7b596d2c4b02a0b499deef12ded9');
INSERT INTO `items` (`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`,`uuid`) values ('41668','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10483','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'799','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','85384a663bdb4dabb33a941c52e90843');
INSERT INTO `items` (`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`,`uuid`) values ('41669','3','','10484','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'804','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5300868a14bb4d54a2699577337da83a');
INSERT INTO `items` (`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`,`uuid`) values ('41670','20','1.3.6.1.2.1.1.5.0','10484','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb2143870ae849f38d6349bf97678506');
INSERT INTO `items` (`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`,`uuid`) values ('41671','20','1.3.6.1.2.1.1.3.0','10484','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f16dcd469ae44e0bb1a3bf5cd7745172');
INSERT INTO `items` (`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`,`uuid`) values ('41672','20','1.3.6.1.2.1.1.2.0','10484','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6521da361f8c4d1383256b2297cbf637');
INSERT INTO `items` (`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`,`uuid`) values ('41673','20','1.3.6.1.2.1.1.6.0','10484','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','245703e1e1ec43fd9a4cd2aa687e8062');
INSERT INTO `items` (`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`,`uuid`) values ('41674','3','','10484','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','e2e270cb27ab438da77094dbeed276c5');
INSERT INTO `items` (`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`,`uuid`) values ('41675','20','1.3.6.1.2.1.1.1.0','10484','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','915a3a0b5beb4b04b9cf2cf452625e4b');
INSERT INTO `items` (`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`,`uuid`) values ('41676','20','1.3.6.1.2.1.1.4.0','10484','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','628cf911c63948b3acc96071099ee33a');
INSERT INTO `items` (`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`,`uuid`) values ('41677','17','','10484','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','82a936c79d154070a261078bff07cd50');
INSERT INTO `items` (`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`,`uuid`) values ('41678','3','','10484','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','e0d6d460bcd34360a627851069e354ef');
INSERT INTO `items` (`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`,`uuid`) values ('41679','5','','10484','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'805','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d8be2555490b4eb68a8b8c7ea20eacb8');
INSERT INTO `items` (`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`,`uuid`) values ('41680','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10484','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','60b595ded1d14e9885d8d34fcf3efa6f');
INSERT INTO `items` (`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`,`uuid`) values ('41681','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10484','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d80f7f3e0752494f95ef13381433e687');
INSERT INTO `items` (`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`,`uuid`) values ('41682','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10484','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','25c32c5de7be49f6a2f3144ed8e17122');
INSERT INTO `items` (`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`,`uuid`) values ('41683','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10484','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','21369947f18c4f019cde51713440cddf');
INSERT INTO `items` (`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`,`uuid`) values ('41684','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10484','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','79b84574a2b04137aad734b482ac5847');
INSERT INTO `items` (`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`,`uuid`) values ('41685','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10484','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c4dc8fc4c8aa41a288b3b5335f9ff546');
INSERT INTO `items` (`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`,`uuid`) values ('41686','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10484','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6c578490506b46a8b801d6fe294ce194');
INSERT INTO `items` (`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`,`uuid`) values ('41687','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10484','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','395fd1b9e5834ffb93594140f5a0ef09');
INSERT INTO `items` (`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`,`uuid`) values ('41688','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10484','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'802','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','04c3ebee2ed24e64b3b8c3f347908913');
INSERT INTO `items` (`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`,`uuid`) values ('41689','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10484','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'803','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ebdbf3ee4cdd4e7c84d5aeb2cfeba519');
INSERT INTO `items` (`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`,`uuid`) values ('41690','3','','10485','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'808','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','62d449bc199943da94effce92d24e522');
INSERT INTO `items` (`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`,`uuid`) values ('41691','20','1.3.6.1.2.1.1.5.0','10485','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','02354807e4ca4a049866fe8f793007ff');
INSERT INTO `items` (`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`,`uuid`) values ('41692','20','1.3.6.1.2.1.1.3.0','10485','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','72507c577f1748078be97e4e9080b6c9');
INSERT INTO `items` (`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`,`uuid`) values ('41693','20','1.3.6.1.2.1.1.2.0','10485','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7eb0b2b9722f4f2c8d0ce0adc189b2f9');
INSERT INTO `items` (`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`,`uuid`) values ('41694','20','1.3.6.1.2.1.1.6.0','10485','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','50bcd5f286db4540a6070fb7815b47f5');
INSERT INTO `items` (`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`,`uuid`) values ('41695','3','','10485','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','71dc309a3c174cac8d4e5d97fb385252');
INSERT INTO `items` (`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`,`uuid`) values ('41696','20','1.3.6.1.2.1.1.1.0','10485','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cd5897cf9ef2423fbcc9ef483e556677');
INSERT INTO `items` (`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`,`uuid`) values ('41697','20','1.3.6.1.2.1.1.4.0','10485','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','d843cbacd73648d79c3f002ad7d2510b');
INSERT INTO `items` (`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`,`uuid`) values ('41698','17','','10485','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','fa9062eeb9eb4ea5878c8da04bf728fe');
INSERT INTO `items` (`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`,`uuid`) values ('41699','3','','10485','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','8084778076a444728f47b436237aa265');
INSERT INTO `items` (`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`,`uuid`) values ('41700','5','','10485','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'809','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7a7f3e558ca84e6ebd3279ec7ddaf6ab');
INSERT INTO `items` (`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`,`uuid`) values ('41701','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10485','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','611b4a16aeea48fdb0aac0a14f390f00');
INSERT INTO `items` (`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`,`uuid`) values ('41702','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10485','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a723cc7880ab4c25b83379ef569fb939');
INSERT INTO `items` (`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`,`uuid`) values ('41703','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10485','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b341e196860b4b388bfb2ee5c10d6494');
INSERT INTO `items` (`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`,`uuid`) values ('41704','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10485','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','27eca86b5b7b43cdb5363a5d93939922');
INSERT INTO `items` (`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`,`uuid`) values ('41705','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10485','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','976a674793c640448cf897084b641b0a');
INSERT INTO `items` (`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`,`uuid`) values ('41706','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10485','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','78e7ff29409042a0b792c8eca8d18aea');
INSERT INTO `items` (`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`,`uuid`) values ('41707','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10485','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5a6b30537bf34d249ed55b477414172e');
INSERT INTO `items` (`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`,`uuid`) values ('41708','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10485','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','45c1a8fd813d4341bf2c0346aa6af0cf');
INSERT INTO `items` (`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`,`uuid`) values ('41709','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10485','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'806','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','090b099f4b894d91bd12a8ea9cdf92a2');
INSERT INTO `items` (`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`,`uuid`) values ('41710','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10485','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'807','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9613cbdf5e204ea98955cc0f63edd137');
INSERT INTO `items` (`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`,`uuid`) values ('41711','3','','10486','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'812','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','213f42d5e99e42a8a75dffbc4116e152');
INSERT INTO `items` (`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`,`uuid`) values ('41712','20','1.3.6.1.2.1.1.5.0','10486','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','788f52304f4c480c9e32b7f089279f66');
INSERT INTO `items` (`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`,`uuid`) values ('41713','20','1.3.6.1.2.1.1.3.0','10486','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b7517cd5156c4693865edc871df8f7c5');
INSERT INTO `items` (`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`,`uuid`) values ('41714','20','1.3.6.1.2.1.1.2.0','10486','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','61c2671ecc0b4fbcb40866ebc30f5ffe');
INSERT INTO `items` (`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`,`uuid`) values ('41715','20','1.3.6.1.2.1.1.6.0','10486','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','1f119c891ad74776b71c6858adcb67e3');
INSERT INTO `items` (`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`,`uuid`) values ('41716','3','','10486','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','bc20ba68642a441c90bac530b8847386');
INSERT INTO `items` (`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`,`uuid`) values ('41717','20','1.3.6.1.2.1.1.1.0','10486','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ae03f4d4bcf424e936430198f0762f3');
INSERT INTO `items` (`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`,`uuid`) values ('41718','20','1.3.6.1.2.1.1.4.0','10486','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','38753c1261dd42fd8500e843985fdea3');
INSERT INTO `items` (`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`,`uuid`) values ('41719','17','','10486','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','92854c9aff57441b9754ba9aabb4ade7');
INSERT INTO `items` (`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`,`uuid`) values ('41720','3','','10486','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','5c929e46faef4f0c8ee90fe5a34e9092');
INSERT INTO `items` (`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`,`uuid`) values ('41721','5','','10486','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'813','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e4f4e0c0df9343a483a186f54d59caaf');
INSERT INTO `items` (`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`,`uuid`) values ('41722','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10486','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','65c99a07936d4b19a2dbd2694b116184');
INSERT INTO `items` (`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`,`uuid`) values ('41723','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10486','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c2df69bb6ae143d78b11a5ab58b0aab9');
INSERT INTO `items` (`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`,`uuid`) values ('41724','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10486','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bf32bcb3bdc74f14a1764799cf8e0d8d');
INSERT INTO `items` (`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`,`uuid`) values ('41725','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10486','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cabd4bf8a6194e7382099e3ea9b5ec9e');
INSERT INTO `items` (`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`,`uuid`) values ('41726','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10486','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','06c282bad0f548ad8d0f9d574ded79f0');
INSERT INTO `items` (`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`,`uuid`) values ('41727','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10486','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1b4edb82855a423c88ba3d15da04fb73');
INSERT INTO `items` (`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`,`uuid`) values ('41728','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10486','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','59208d42b7bf44889d415d7faee1f1e0');
INSERT INTO `items` (`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`,`uuid`) values ('41729','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10486','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c85ca41d6bb4f5e8f2b7ee576aa7d45');
INSERT INTO `items` (`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`,`uuid`) values ('41730','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10486','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'810','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f9f0e97c0ad446c2ae7839352993c51c');
INSERT INTO `items` (`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`,`uuid`) values ('41731','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10486','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'811','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9666b77845214d02af4fd8a9561e51dc');
INSERT INTO `items` (`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`,`uuid`) values ('41732','3','','10487','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'816','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d232978e9c9649e89d9a18bfac551b9b');
INSERT INTO `items` (`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`,`uuid`) values ('41733','20','1.3.6.1.2.1.1.5.0','10487','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','96a7343422ae4c16a0dc8636965209b7');
INSERT INTO `items` (`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`,`uuid`) values ('41734','20','1.3.6.1.2.1.1.3.0','10487','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a86251203418473f805f71c7661bcd5b');
INSERT INTO `items` (`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`,`uuid`) values ('41735','20','1.3.6.1.2.1.1.2.0','10487','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c806691d31554b558ce6b940725269ba');
INSERT INTO `items` (`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`,`uuid`) values ('41736','20','1.3.6.1.2.1.1.6.0','10487','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','cb46cc279c9d4622931cc4dd4536d076');
INSERT INTO `items` (`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`,`uuid`) values ('41737','3','','10487','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','74855f44b9ab4d008bcef0c81a1bf9b2');
INSERT INTO `items` (`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`,`uuid`) values ('41738','20','1.3.6.1.2.1.1.1.0','10487','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bcda47c141cc4b71a80ba54ad8e195df');
INSERT INTO `items` (`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`,`uuid`) values ('41739','20','1.3.6.1.2.1.1.4.0','10487','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','70ead6c2139a4ac1a9a52d127920bfda');
INSERT INTO `items` (`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`,`uuid`) values ('41740','17','','10487','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','ca7ea780520d42788007c25b181ecf6e');
INSERT INTO `items` (`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`,`uuid`) values ('41741','3','','10487','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','8ff37956cfc544029ac3cbe2c2076156');
INSERT INTO `items` (`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`,`uuid`) values ('41742','5','','10487','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'817','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','011c6ec5f5df442890da5b669efbe5dc');
INSERT INTO `items` (`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`,`uuid`) values ('41743','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10487','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b115d18980cb4523a6d9a1541a279588');
INSERT INTO `items` (`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`,`uuid`) values ('41744','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10487','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','49750186b18247479dd05ba4ac45d406');
INSERT INTO `items` (`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`,`uuid`) values ('41745','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10487','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bb2665aff8fa4f709dd619c759a6d854');
INSERT INTO `items` (`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`,`uuid`) values ('41746','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10487','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5d456ea5d19840f395e0daffe4eab09d');
INSERT INTO `items` (`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`,`uuid`) values ('41747','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10487','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9daf559ebf0d4156b5668c71b796c0f0');
INSERT INTO `items` (`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`,`uuid`) values ('41748','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10487','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','18f9e0bd4d614ac09ccef19d220352bd');
INSERT INTO `items` (`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`,`uuid`) values ('41749','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10487','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b3425f3b387047d09641cceb422677bb');
INSERT INTO `items` (`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`,`uuid`) values ('41750','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10487','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4b7aa43124084e32a7af56128a6b7969');
INSERT INTO `items` (`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`,`uuid`) values ('41751','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10487','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'814','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','950a0a505f0748098d67fd9408728508');
INSERT INTO `items` (`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`,`uuid`) values ('41752','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10487','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'815','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','311017c930b940a38ce0959f5c145916');
INSERT INTO `items` (`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`,`uuid`) values ('41753','3','','10488','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'820','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2bdbc3203fcb4db1a5473c4afedaa619');
INSERT INTO `items` (`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`,`uuid`) values ('41754','20','1.3.6.1.2.1.1.5.0','10488','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f5f63d603edf48febfbde03d7d223f1e');
INSERT INTO `items` (`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`,`uuid`) values ('41755','20','1.3.6.1.2.1.1.3.0','10488','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f97078f111d54ab7b091f59870baa4a5');
INSERT INTO `items` (`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`,`uuid`) values ('41756','20','1.3.6.1.2.1.1.2.0','10488','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff6a6d61e4f24bc5a0832562ea3b13e0');
INSERT INTO `items` (`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`,`uuid`) values ('41757','20','1.3.6.1.2.1.1.6.0','10488','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','cdca0920185f4aaf95ee88b13982ba50');
INSERT INTO `items` (`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`,`uuid`) values ('41758','3','','10488','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','7a77bc7a86684b7e965c0ec344435336');
INSERT INTO `items` (`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`,`uuid`) values ('41759','20','1.3.6.1.2.1.1.1.0','10488','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','23382e5a72fa4769832c7fa5ee357153');
INSERT INTO `items` (`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`,`uuid`) values ('41760','20','1.3.6.1.2.1.1.4.0','10488','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','de67cf0e735944ba9380730d88b86d06');
INSERT INTO `items` (`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`,`uuid`) values ('41761','17','','10488','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','c5f15688308f44528a7ed495fce07a94');
INSERT INTO `items` (`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`,`uuid`) values ('41762','3','','10488','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','17bd0b5a70754d7eba3c4428ac9b58db');
INSERT INTO `items` (`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`,`uuid`) values ('41763','5','','10488','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'821','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c0f53dbcfa447aea2e9550d502cb111');
INSERT INTO `items` (`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`,`uuid`) values ('41764','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10488','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f984abdb831647d4aff155d0b24ae954');
INSERT INTO `items` (`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`,`uuid`) values ('41765','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10488','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','944e76b770c84d7791cbcca1a679ee3a');
INSERT INTO `items` (`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`,`uuid`) values ('41766','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10488','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','04bbdf422aa04d68a9ee43add64517d2');
INSERT INTO `items` (`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`,`uuid`) values ('41767','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10488','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c87ca86d3af453db42ab47399e4e578');
INSERT INTO `items` (`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`,`uuid`) values ('41768','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10488','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c3ce7b6ff39b4e2da36a180b1012ede2');
INSERT INTO `items` (`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`,`uuid`) values ('41769','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10488','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0afe36d6d0a348cab7e370b9d3692ef8');
INSERT INTO `items` (`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`,`uuid`) values ('41770','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10488','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2beebac52d2042868aeac37131890501');
INSERT INTO `items` (`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`,`uuid`) values ('41771','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10488','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e2033425d53e4448947f0f89a751520e');
INSERT INTO `items` (`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`,`uuid`) values ('41772','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10488','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'818','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','33498ba5cdb2475dadc64a13bfdda78f');
INSERT INTO `items` (`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`,`uuid`) values ('41773','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10488','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'819','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0e7454246fda4867b3dab1c7151ea085');
INSERT INTO `items` (`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`,`uuid`) values ('41774','3','','10489','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'824','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a7fc5ad5ffb14a6185e288617294aa98');
INSERT INTO `items` (`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`,`uuid`) values ('41775','20','1.3.6.1.2.1.1.5.0','10489','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e68119b9b48e4a49a4ff3ce41b8bf613');
INSERT INTO `items` (`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`,`uuid`) values ('41776','20','1.3.6.1.2.1.1.3.0','10489','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','56f939dcf88843fda2fe4b062cca2d6a');
INSERT INTO `items` (`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`,`uuid`) values ('41777','20','1.3.6.1.2.1.1.2.0','10489','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','08476c93ef374c8baba1e6f80c5544cf');
INSERT INTO `items` (`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`,`uuid`) values ('41778','20','1.3.6.1.2.1.1.6.0','10489','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','59b84e78871849fd8e2da3608c4fd45f');
INSERT INTO `items` (`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`,`uuid`) values ('41779','3','','10489','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','783ce77b38434492a9944dc5b3531a35');
INSERT INTO `items` (`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`,`uuid`) values ('41780','20','1.3.6.1.2.1.1.1.0','10489','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','042947145fd142f3a1f6ae86826480eb');
INSERT INTO `items` (`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`,`uuid`) values ('41781','20','1.3.6.1.2.1.1.4.0','10489','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','30bc4fcfe70a45ceb6b3a8b945779e31');
INSERT INTO `items` (`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`,`uuid`) values ('41782','17','','10489','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','397dd775fe6d4046aa91dfca36d3be96');
INSERT INTO `items` (`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`,`uuid`) values ('41783','3','','10489','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','bc7299499e2847eeb8d4e9ebcbc2519a');
INSERT INTO `items` (`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`,`uuid`) values ('41784','5','','10489','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'825','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','33e8ea0575174bc69002753a5e5d90bd');
INSERT INTO `items` (`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`,`uuid`) values ('41785','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10489','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fee6ff9551144a1c9888afccc73cddc2');
INSERT INTO `items` (`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`,`uuid`) values ('41786','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10489','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','296295e0f95c4302a6b96216f8a3011e');
INSERT INTO `items` (`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`,`uuid`) values ('41787','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10489','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','59ec7c3ac8304d2885623ab64bad205e');
INSERT INTO `items` (`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`,`uuid`) values ('41788','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10489','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6590c395369244baa3a145197fb929b7');
INSERT INTO `items` (`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`,`uuid`) values ('41789','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10489','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','49ca22d9508740af9de2712bed15d185');
INSERT INTO `items` (`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`,`uuid`) values ('41790','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10489','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dd61dfacc7dd4fd8afaf6825aedb699a');
INSERT INTO `items` (`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`,`uuid`) values ('41791','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10489','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','976e391051da4a33a1ff3b85b9ff3639');
INSERT INTO `items` (`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`,`uuid`) values ('41792','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10489','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eaf35c9b8212444ca1736f6fd4e36b0d');
INSERT INTO `items` (`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`,`uuid`) values ('41793','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10489','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'822','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f91919c8c9d049b0ae2d6a4d459f7d98');
INSERT INTO `items` (`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`,`uuid`) values ('41794','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10489','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'823','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dcfbfcdc02664c59b73711a01eb00e35');
INSERT INTO `items` (`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`,`uuid`) values ('41795','3','','10490','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'828','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','deea3cfb1f7442edbc4e715ca73395e8');
INSERT INTO `items` (`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`,`uuid`) values ('41796','20','1.3.6.1.2.1.1.5.0','10490','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d3e819d5e0dc403fb4b9dafd1ddc59d5');
INSERT INTO `items` (`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`,`uuid`) values ('41797','20','1.3.6.1.2.1.1.3.0','10490','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f0b0b111aac440189f71bb1b2830ded3');
INSERT INTO `items` (`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`,`uuid`) values ('41798','20','1.3.6.1.2.1.1.2.0','10490','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','530490cf5862413b8e7896aa8c0cb627');
INSERT INTO `items` (`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`,`uuid`) values ('41799','20','1.3.6.1.2.1.1.6.0','10490','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','d5c52de296b04ceab2cfd1a87ccffc6b');
INSERT INTO `items` (`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`,`uuid`) values ('41800','3','','10490','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','468b063753fd4bca861646312909abf7');
INSERT INTO `items` (`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`,`uuid`) values ('41801','20','1.3.6.1.2.1.1.1.0','10490','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e35b5c62cfa241fdad672ee8b7303044');
INSERT INTO `items` (`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`,`uuid`) values ('41802','20','1.3.6.1.2.1.1.4.0','10490','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','e8656127772b4835b2b102d972b29de8');
INSERT INTO `items` (`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`,`uuid`) values ('41803','17','','10490','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','cc100edb014b4ff8b119ffe683403396');
INSERT INTO `items` (`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`,`uuid`) values ('41804','3','','10490','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','fe030b0a6cb447a1b1c2fe5f96b2bffa');
INSERT INTO `items` (`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`,`uuid`) values ('41805','5','','10490','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'829','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9a70b1387ea14502aadcf05f636e7a5c');
INSERT INTO `items` (`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`,`uuid`) values ('41806','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10490','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5450b5a9f856449ba52b6185e4e005cd');
INSERT INTO `items` (`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`,`uuid`) values ('41807','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10490','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b0690345e9d643669eab19da5436c1e9');
INSERT INTO `items` (`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`,`uuid`) values ('41808','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10490','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','be752ed58d3e4bcbb575f5aa77bc573f');
INSERT INTO `items` (`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`,`uuid`) values ('41809','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10490','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','de703efe12a147ccab5ed87dca174293');
INSERT INTO `items` (`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`,`uuid`) values ('41810','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10490','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','15a9c5f7e9b3403986182e9f63a557f6');
INSERT INTO `items` (`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`,`uuid`) values ('41811','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10490','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fc09d50cbadb46c499fe153bd9f4b4aa');
INSERT INTO `items` (`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`,`uuid`) values ('41812','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10490','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fd545abd5b7146dd823d2bd2f1339054');
INSERT INTO `items` (`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`,`uuid`) values ('41813','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10490','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8beaa10b22194fcda348ae031d0e2284');
INSERT INTO `items` (`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`,`uuid`) values ('41814','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10490','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'826','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bac4bcf127634d06b90c6d2b7c0469a1');
INSERT INTO `items` (`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`,`uuid`) values ('41815','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10490','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'827','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','96fe507b89234141ad615998fbf581d2');
INSERT INTO `items` (`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`,`uuid`) values ('41816','3','','10491','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'832','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7915232f946d4a9ea2c441899d063f8d');
INSERT INTO `items` (`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`,`uuid`) values ('41817','20','1.3.6.1.2.1.1.5.0','10491','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','73459a4cdf8a45a1a480102cfe5119c1');
INSERT INTO `items` (`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`,`uuid`) values ('41818','20','1.3.6.1.2.1.1.3.0','10491','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d379b98f901444368311a7c22c51cbcd');
INSERT INTO `items` (`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`,`uuid`) values ('41819','20','1.3.6.1.2.1.1.2.0','10491','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c2a7d5ecda21446bbd55cec32ab3f50e');
INSERT INTO `items` (`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`,`uuid`) values ('41820','20','1.3.6.1.2.1.1.6.0','10491','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','37b6610ae0bf4989b1431182dcd239c1');
INSERT INTO `items` (`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`,`uuid`) values ('41821','3','','10491','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','e2ad26afb3674a63a5ffb68ccfa84ccc');
INSERT INTO `items` (`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`,`uuid`) values ('41822','20','1.3.6.1.2.1.1.1.0','10491','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6b3f14b033914ef58797c15a751fe086');
INSERT INTO `items` (`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`,`uuid`) values ('41823','20','1.3.6.1.2.1.1.4.0','10491','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','9b93b930cf354451b2613f410db63b55');
INSERT INTO `items` (`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`,`uuid`) values ('41824','17','','10491','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','4b22a7465109474db7a86274de0b519e');
INSERT INTO `items` (`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`,`uuid`) values ('41825','3','','10491','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','0338080fdaee47d09df04fd70a56889b');
INSERT INTO `items` (`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`,`uuid`) values ('41826','5','','10491','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'833','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6814429f90bb417a9af42b7be081b777');
INSERT INTO `items` (`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`,`uuid`) values ('41827','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10491','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','442498a0dc4a407caa7fc547d9f4b83c');
INSERT INTO `items` (`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`,`uuid`) values ('41828','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10491','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9c1a70e71c0a4004b287185e65525f23');
INSERT INTO `items` (`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`,`uuid`) values ('41829','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10491','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a7d6baba939c4d659e040dbc1684a282');
INSERT INTO `items` (`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`,`uuid`) values ('41830','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10491','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8aa1645a0e904d67b7ad817b2da6bfa0');
INSERT INTO `items` (`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`,`uuid`) values ('41831','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10491','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c51737e07a6c4a1cb54bba98fc411e03');
INSERT INTO `items` (`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`,`uuid`) values ('41832','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10491','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7d3ab5988cba43c69df4f64542aca0ec');
INSERT INTO `items` (`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`,`uuid`) values ('41833','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10491','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d6e87ac1ef4d4d4cbba229c420dfd5d6');
INSERT INTO `items` (`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`,`uuid`) values ('41834','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10491','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bb37147d244f4d548da1aa607c7f4396');
INSERT INTO `items` (`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`,`uuid`) values ('41835','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10491','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'830','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','78b80a419eba483bbf6f6ad12095f53b');
INSERT INTO `items` (`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`,`uuid`) values ('41836','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10491','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'831','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a8cc24b0c22a4cddbc05524288bb8862');
INSERT INTO `items` (`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`,`uuid`) values ('41837','3','','10492','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'836','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8b3077a1ea304d48acee2089f8dab717');
INSERT INTO `items` (`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`,`uuid`) values ('41838','20','1.3.6.1.2.1.1.5.0','10492','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cd0923c4fed2454f9ba10ae12a237c4a');
INSERT INTO `items` (`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`,`uuid`) values ('41839','20','1.3.6.1.2.1.1.3.0','10492','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','473bcbf0aece42b5bf03ac5d9655060f');
INSERT INTO `items` (`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`,`uuid`) values ('41840','20','1.3.6.1.2.1.1.2.0','10492','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9dbc5959f5c94484ad27fff82ff1e4a2');
INSERT INTO `items` (`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`,`uuid`) values ('41841','20','1.3.6.1.2.1.1.6.0','10492','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','8ad2b0e46d544272a2a2a79251830ecd');
INSERT INTO `items` (`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`,`uuid`) values ('41842','3','','10492','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','cd14c56b398f4e51bc250dbb266d8792');
INSERT INTO `items` (`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`,`uuid`) values ('41843','20','1.3.6.1.2.1.1.1.0','10492','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6323e16160534164a046730cb95f8dd4');
INSERT INTO `items` (`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`,`uuid`) values ('41844','20','1.3.6.1.2.1.1.4.0','10492','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','69517cfdea8e4602bc7b56f5975e8d64');
INSERT INTO `items` (`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`,`uuid`) values ('41845','17','','10492','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','b820cdaeb0724fb3b5eb635e7705ee5c');
INSERT INTO `items` (`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`,`uuid`) values ('41846','3','','10492','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','183a44fa82d74603a4673f8a213e221f');
INSERT INTO `items` (`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`,`uuid`) values ('41847','5','','10492','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'837','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','471ac0649f454c6ab2d386ef593486a9');
INSERT INTO `items` (`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`,`uuid`) values ('41848','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10492','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','439bb27734ca4edd91edeca7d97271f6');
INSERT INTO `items` (`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`,`uuid`) values ('41849','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10492','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b0e6bc0f708942feaa910179e25a61a9');
INSERT INTO `items` (`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`,`uuid`) values ('41850','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10492','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0a874ea342fc4339b03eb852558d7fb7');
INSERT INTO `items` (`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`,`uuid`) values ('41851','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10492','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b846f52186964673ab6addfd6cb89d77');
INSERT INTO `items` (`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`,`uuid`) values ('41852','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10492','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a0ef0375118b4c6d930041c049949f10');
INSERT INTO `items` (`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`,`uuid`) values ('41853','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10492','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6c8d6d0caa5a48fba3f6896b69c39688');
INSERT INTO `items` (`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`,`uuid`) values ('41854','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10492','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','52322d25a33542f9bdaab07df875c610');
INSERT INTO `items` (`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`,`uuid`) values ('41855','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10492','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','60577a786d9c4ffab235e9d9dca2b443');
INSERT INTO `items` (`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`,`uuid`) values ('41856','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10492','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'834','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fa2bc982f1384ea7af181876f61ab031');
INSERT INTO `items` (`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`,`uuid`) values ('41857','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10492','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'835','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c2a7039babd34c22a123b7d6473cd6e3');
INSERT INTO `items` (`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`,`uuid`) values ('41858','3','','10493','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'840','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','27bc040d774a492f9ea7661b11931756');
INSERT INTO `items` (`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`,`uuid`) values ('41859','20','1.3.6.1.2.1.1.5.0','10493','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5ee60303a3f44dccb8e2636c61ea882b');
INSERT INTO `items` (`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`,`uuid`) values ('41860','20','1.3.6.1.2.1.1.3.0','10493','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','349e048d1dc04ae49c6e616a4f4499c7');
INSERT INTO `items` (`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`,`uuid`) values ('41861','20','1.3.6.1.2.1.1.2.0','10493','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9757a0d30651457a97860d475e1ce892');
INSERT INTO `items` (`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`,`uuid`) values ('41862','20','1.3.6.1.2.1.1.6.0','10493','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','7045e4f4ab0244969d7ab6ada0f2d3cc');
INSERT INTO `items` (`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`,`uuid`) values ('41863','3','','10493','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','a77a1ed1ff254715bc2b3aa4774add63');
INSERT INTO `items` (`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`,`uuid`) values ('41864','20','1.3.6.1.2.1.1.1.0','10493','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1aa8ba6aacfd4c358600c68c5b22455e');
INSERT INTO `items` (`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`,`uuid`) values ('41865','20','1.3.6.1.2.1.1.4.0','10493','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','db3e28ce72d5488c9d81b4daeaabe9f9');
INSERT INTO `items` (`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`,`uuid`) values ('41866','17','','10493','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','ad62b571c1c4444881787a040cf03b2b');
INSERT INTO `items` (`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`,`uuid`) values ('41867','3','','10493','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','02eacfbcc4c14ac48aba36c142974c46');
INSERT INTO `items` (`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`,`uuid`) values ('41868','5','','10493','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'841','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6fc9f1fc908241ff9484e15802f1e4ae');
INSERT INTO `items` (`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`,`uuid`) values ('41869','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10493','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a75de8a9798243ee8f0b8629f54e3259');
INSERT INTO `items` (`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`,`uuid`) values ('41870','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10493','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7fd32545717c44d7b4b117e53b64acc1');
INSERT INTO `items` (`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`,`uuid`) values ('41871','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10493','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9a2c81dbd79e46bbb3c48d070420a99f');
INSERT INTO `items` (`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`,`uuid`) values ('41872','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10493','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4e6f08a3ea114a6292ac778f3e85891d');
INSERT INTO `items` (`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`,`uuid`) values ('41873','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10493','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4f918f4895f74e17bc60ce81e922a41d');
INSERT INTO `items` (`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`,`uuid`) values ('41874','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10493','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aab55962d3c34894a1803e4c8fbf54b2');
INSERT INTO `items` (`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`,`uuid`) values ('41875','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10493','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','838819ed65ce4b38a5f5a603aceac7a5');
INSERT INTO `items` (`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`,`uuid`) values ('41876','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10493','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4550a521700f4184a1abb5c56680d745');
INSERT INTO `items` (`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`,`uuid`) values ('41877','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10493','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'838','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bc1f11185a9740799bf47205d918e90c');
INSERT INTO `items` (`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`,`uuid`) values ('41878','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10493','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'839','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','322bbc3e779041f9a2c1d776168c44e4');
INSERT INTO `items` (`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`,`uuid`) values ('41879','3','','10494','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'844','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ef5bb0f6f7794a899e9158375a100eac');
INSERT INTO `items` (`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`,`uuid`) values ('41880','20','1.3.6.1.2.1.1.5.0','10494','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f592e2f6cdde465a85c89944de669418');
INSERT INTO `items` (`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`,`uuid`) values ('41881','20','1.3.6.1.2.1.1.3.0','10494','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fadb61328389434c888cb8bfd6e964ed');
INSERT INTO `items` (`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`,`uuid`) values ('41882','20','1.3.6.1.2.1.1.2.0','10494','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9977da08f1374d1c82e92332bbcc199e');
INSERT INTO `items` (`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`,`uuid`) values ('41883','20','1.3.6.1.2.1.1.6.0','10494','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','ba4d97d2010f4d3498fc71e4b10a0941');
INSERT INTO `items` (`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`,`uuid`) values ('41884','3','','10494','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','3341d9f675074db882fac927d722eaa1');
INSERT INTO `items` (`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`,`uuid`) values ('41885','20','1.3.6.1.2.1.1.1.0','10494','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','27c30b2dbe0048ecbd5b1236ac04b542');
INSERT INTO `items` (`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`,`uuid`) values ('41886','20','1.3.6.1.2.1.1.4.0','10494','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','3d3a73fd1c05477ab6a8bc5bd4a451d9');
INSERT INTO `items` (`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`,`uuid`) values ('41887','17','','10494','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','01d49dbd697343eb95913424eb783ca2');
INSERT INTO `items` (`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`,`uuid`) values ('41888','3','','10494','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','dfaf20182fa7415d84a70157ef7d3a63');
INSERT INTO `items` (`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`,`uuid`) values ('41889','5','','10494','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'845','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f6a6763b5b344669ab6b605d3d4707f7');
INSERT INTO `items` (`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`,`uuid`) values ('41890','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10494','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e91f8259895343b7924c4d44f71aad82');
INSERT INTO `items` (`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`,`uuid`) values ('41891','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10494','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fe34a8167761431598cb66871b8ccc0d');
INSERT INTO `items` (`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`,`uuid`) values ('41892','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10494','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4d23dbb885804af4b402edb00fa2b853');
INSERT INTO `items` (`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`,`uuid`) values ('41893','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10494','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','197ab3671e5b4b8f804627691a331d85');
INSERT INTO `items` (`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`,`uuid`) values ('41894','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10494','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4c0104ac14af4ebca549b82e59dbf135');
INSERT INTO `items` (`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`,`uuid`) values ('41895','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10494','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dfc294dd052d49a0ba964294ded0f433');
INSERT INTO `items` (`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`,`uuid`) values ('41896','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10494','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b051145f6cff4725a3e2a1f90414261b');
INSERT INTO `items` (`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`,`uuid`) values ('41897','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10494','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff597532ec2b4a81a0344c3bc16214f1');
INSERT INTO `items` (`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`,`uuid`) values ('41898','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10494','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'842','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eaa27aca2b754db99c80b0a5c9f92227');
INSERT INTO `items` (`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`,`uuid`) values ('41899','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10494','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'843','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ae74d12983d42b7bff4dd5c72e9502a');
INSERT INTO `items` (`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`,`uuid`) values ('41900','3','','10495','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'848','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab72f64db4304a2db7c6c2d1ec8eebb4');
INSERT INTO `items` (`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`,`uuid`) values ('41901','20','1.3.6.1.2.1.1.5.0','10495','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5577c25fe0ab4decb44fdf31ffd6b345');
INSERT INTO `items` (`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`,`uuid`) values ('41902','20','1.3.6.1.2.1.1.3.0','10495','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','44cb15bcd76e4bdba7a5c8f91211226c');
INSERT INTO `items` (`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`,`uuid`) values ('41903','20','1.3.6.1.2.1.1.2.0','10495','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','645d1046c0f64a079e97f57f5bb03aad');
INSERT INTO `items` (`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`,`uuid`) values ('41904','20','1.3.6.1.2.1.1.6.0','10495','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','ece69e2a6d174678a770c6cc05d20b45');
INSERT INTO `items` (`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`,`uuid`) values ('41905','3','','10495','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','dc2b92f5ee3148828d66f17679873755');
INSERT INTO `items` (`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`,`uuid`) values ('41906','20','1.3.6.1.2.1.1.1.0','10495','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eba52f0801c74394afce9b85132f4a0a');
INSERT INTO `items` (`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`,`uuid`) values ('41907','20','1.3.6.1.2.1.1.4.0','10495','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','02174f3b849a4fe490d79273ad9b4d1d');
INSERT INTO `items` (`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`,`uuid`) values ('41908','17','','10495','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','d661c8c6e6b847d49d722ce1938efee8');
INSERT INTO `items` (`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`,`uuid`) values ('41909','3','','10495','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','b0933870b3424664ab150192ca5e790f');
INSERT INTO `items` (`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`,`uuid`) values ('41910','5','','10495','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'849','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','58e51b1aac7f4433b8f7160d044bc8c4');
INSERT INTO `items` (`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`,`uuid`) values ('41911','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10495','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','477f5879c64a43f58a3a769781cdc5bf');
INSERT INTO `items` (`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`,`uuid`) values ('41912','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10495','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ea5abf52a338464aa4c73f18ea4ebe23');
INSERT INTO `items` (`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`,`uuid`) values ('41913','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10495','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bdf2c149889b48b9a1837d2e9d3d9fee');
INSERT INTO `items` (`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`,`uuid`) values ('41914','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10495','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ca60ce8dcd674a608e0517d2e647f273');
INSERT INTO `items` (`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`,`uuid`) values ('41915','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10495','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9cb988645c5d49eb9b598904907d0ab3');
INSERT INTO `items` (`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`,`uuid`) values ('41916','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10495','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','99b8a1cf6c36400b849aa84f4a71f098');
INSERT INTO `items` (`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`,`uuid`) values ('41917','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10495','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','94bd65da101541eb87cf17c49b3fdd88');
INSERT INTO `items` (`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`,`uuid`) values ('41918','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10495','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b8584ff473de4f20b4ab1e1b0c435251');
INSERT INTO `items` (`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`,`uuid`) values ('41919','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10495','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'846','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','55435c135d5341eb89d37185c894c557');
INSERT INTO `items` (`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`,`uuid`) values ('41920','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10495','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'847','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','caede69c454b46db9a46c7a42b994cf1');
INSERT INTO `items` (`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`,`uuid`) values ('41921','3','','10496','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'852','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','517295fd0fa14eac945a1f999e25d306');
INSERT INTO `items` (`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`,`uuid`) values ('41922','20','1.3.6.1.2.1.1.5.0','10496','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','47326c2cd58242e18397d522df49ad76');
INSERT INTO `items` (`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`,`uuid`) values ('41923','20','1.3.6.1.2.1.1.3.0','10496','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','88c412ccc0944b96be165b4de91e5ee9');
INSERT INTO `items` (`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`,`uuid`) values ('41924','20','1.3.6.1.2.1.1.2.0','10496','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e4807c61ed6841eb8b96a0e058343b42');
INSERT INTO `items` (`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`,`uuid`) values ('41925','20','1.3.6.1.2.1.1.6.0','10496','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','433dfca6d6fd4b4b903c48a3cf862052');
INSERT INTO `items` (`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`,`uuid`) values ('41926','3','','10496','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','71383adcc92c44d3866c0c8592c3e99c');
INSERT INTO `items` (`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`,`uuid`) values ('41927','20','1.3.6.1.2.1.1.1.0','10496','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','27f4de9554c44842a118ed22da40897f');
INSERT INTO `items` (`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`,`uuid`) values ('41928','20','1.3.6.1.2.1.1.4.0','10496','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','a1f09e41ce824318be6b2852c82d5ea2');
INSERT INTO `items` (`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`,`uuid`) values ('41929','17','','10496','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','977608b526c843f2aca7dcd9a18d9334');
INSERT INTO `items` (`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`,`uuid`) values ('41930','3','','10496','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','ed501823d99341b88d17ecd8b0b83fc4');
INSERT INTO `items` (`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`,`uuid`) values ('41931','5','','10496','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'853','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','18941d2b2b45432f9114b7ff69844ec1');
INSERT INTO `items` (`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`,`uuid`) values ('41932','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10496','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','69471c3749694f3083a04ff02e396f34');
INSERT INTO `items` (`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`,`uuid`) values ('41933','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10496','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','530ea86406af41409432376096f66287');
INSERT INTO `items` (`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`,`uuid`) values ('41934','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10496','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','369c88f8e6fc48498f42feb7480a51b3');
INSERT INTO `items` (`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`,`uuid`) values ('41935','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10496','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d646ae15a461418aa8e8da230c5782eb');
INSERT INTO `items` (`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`,`uuid`) values ('41936','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10496','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3e6a5520bc15470da4ac5a4c8a294728');
INSERT INTO `items` (`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`,`uuid`) values ('41937','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10496','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','340ea8c167bf44479c564e46a515fad0');
INSERT INTO `items` (`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`,`uuid`) values ('41938','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10496','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a63fbf01f29b46c19f6c8af8711e18f4');
INSERT INTO `items` (`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`,`uuid`) values ('41939','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10496','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a4bf8af96225494886df5fe116af2ada');
INSERT INTO `items` (`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`,`uuid`) values ('41940','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10496','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'850','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','31f8c6c9170b490586ff13e88d33ef53');
INSERT INTO `items` (`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`,`uuid`) values ('41941','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10496','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'851','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','76233c986f8e4e0d9c7262e5a20f3576');
INSERT INTO `items` (`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`,`uuid`) values ('41942','3','','10497','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'856','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','085e72fc9fde405faaeaf097b29e12a8');
INSERT INTO `items` (`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`,`uuid`) values ('41943','20','1.3.6.1.2.1.1.5.0','10497','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','819e7be322cb41728e01c9c91ae925f5');
INSERT INTO `items` (`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`,`uuid`) values ('41944','20','1.3.6.1.2.1.1.3.0','10497','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','25aaf430db3d4a19a9b0f7c082e904bc');
INSERT INTO `items` (`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`,`uuid`) values ('41945','20','1.3.6.1.2.1.1.2.0','10497','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1bde09547e21422ab7e17cdc0503aa53');
INSERT INTO `items` (`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`,`uuid`) values ('41946','20','1.3.6.1.2.1.1.6.0','10497','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','db89a699f89f45648f7e10476fbb1ba7');
INSERT INTO `items` (`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`,`uuid`) values ('41947','3','','10497','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','c0bffcb2d515415db279b20fcdf3c2ad');
INSERT INTO `items` (`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`,`uuid`) values ('41948','20','1.3.6.1.2.1.1.1.0','10497','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3f9b8a4a60074fd7b08f15db63e95447');
INSERT INTO `items` (`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`,`uuid`) values ('41949','20','1.3.6.1.2.1.1.4.0','10497','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','6185cb0ed5824d55ab7a3115e34fcd3e');
INSERT INTO `items` (`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`,`uuid`) values ('41950','17','','10497','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','7c5a4f5306ae4fa6bb4f428c68eccc5c');
INSERT INTO `items` (`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`,`uuid`) values ('41951','3','','10497','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','9b58686f36c6431f8c5d7f990403a823');
INSERT INTO `items` (`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`,`uuid`) values ('41952','5','','10497','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'857','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','57f802d3cb784200bb047ccd947d34b0');
INSERT INTO `items` (`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`,`uuid`) values ('41953','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10497','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d9f19a854ae14b56a35f87eca75b3b9e');
INSERT INTO `items` (`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`,`uuid`) values ('41954','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10497','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f68ea90e6b774e0db583fa311f66c91f');
INSERT INTO `items` (`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`,`uuid`) values ('41955','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10497','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8e30986c6563461ab42925fe30db21ab');
INSERT INTO `items` (`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`,`uuid`) values ('41956','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10497','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c38dc98405b14309b3c81df08cccfdea');
INSERT INTO `items` (`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`,`uuid`) values ('41957','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10497','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','396930e89bcc4a1c94df333b75e43799');
INSERT INTO `items` (`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`,`uuid`) values ('41958','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10497','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8a08acc839f94e22ba0f24d6c469e137');
INSERT INTO `items` (`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`,`uuid`) values ('41959','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10497','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0a85e89b937842659b588a51b1593e09');
INSERT INTO `items` (`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`,`uuid`) values ('41960','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10497','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','141fc60bd89646a1a3d4dbdff9689037');
INSERT INTO `items` (`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`,`uuid`) values ('41961','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10497','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'854','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c21517a23e5f4042b55a9b9171357525');
INSERT INTO `items` (`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`,`uuid`) values ('41962','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10497','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'855','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2117c921d1b747c1953ee0e54619b338');
INSERT INTO `items` (`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`,`uuid`) values ('41963','3','','10498','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'860','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8a48b3331df141bda0f3d9cca2b678f2');
INSERT INTO `items` (`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`,`uuid`) values ('41964','20','1.3.6.1.2.1.1.5.0','10498','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e6f61d8243514cdebac021b5124fce8c');
INSERT INTO `items` (`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`,`uuid`) values ('41965','20','1.3.6.1.2.1.1.3.0','10498','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f7bd0ce4612c46c8a07239b5fe19231a');
INSERT INTO `items` (`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`,`uuid`) values ('41966','20','1.3.6.1.2.1.1.2.0','10498','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2736a10a1fc446eb8b9f448e894b14fe');
INSERT INTO `items` (`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`,`uuid`) values ('41967','20','1.3.6.1.2.1.1.6.0','10498','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','3812d629520d45c58ec3603a4eeca72e');
INSERT INTO `items` (`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`,`uuid`) values ('41968','3','','10498','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','b781c132adc34334b27b9e7762c4b7d6');
INSERT INTO `items` (`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`,`uuid`) values ('41969','20','1.3.6.1.2.1.1.1.0','10498','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8cb003746f8a47a09a21eadb327de4f9');
INSERT INTO `items` (`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`,`uuid`) values ('41970','20','1.3.6.1.2.1.1.4.0','10498','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','81a3cea5e62e41ecbecbfa1c3bd821e2');
INSERT INTO `items` (`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`,`uuid`) values ('41971','17','','10498','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','324dbec2e7bf49f999411dfb25372701');
INSERT INTO `items` (`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`,`uuid`) values ('41972','3','','10498','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','f1fb3fc2def948559f1db70e4581bbdd');
INSERT INTO `items` (`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`,`uuid`) values ('41973','5','','10498','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'861','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1d892561e2ca48a3a6d8e2aec6ff7505');
INSERT INTO `items` (`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`,`uuid`) values ('41974','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10498','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1eede533e5224a8d92c3a2a3d069a00c');
INSERT INTO `items` (`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`,`uuid`) values ('41975','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10498','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','292b067b92524af1b183b9d26455d092');
INSERT INTO `items` (`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`,`uuid`) values ('41976','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10498','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','67a0721ca54d47b2b1971fb81ab6a195');
INSERT INTO `items` (`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`,`uuid`) values ('41977','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10498','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','330bc494646c49a1acc43f134e9dea59');
INSERT INTO `items` (`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`,`uuid`) values ('41978','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10498','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b2bc232de2be40e9b18322bbfe9bd339');
INSERT INTO `items` (`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`,`uuid`) values ('41979','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10498','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','419eb76aa4bd4e6dbf47cbaee0e3b6a5');
INSERT INTO `items` (`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`,`uuid`) values ('41980','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10498','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d599db57d24745aba77ae60faef325c8');
INSERT INTO `items` (`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`,`uuid`) values ('41981','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10498','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84970927eb194b00ab4b5aa8093b5709');
INSERT INTO `items` (`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`,`uuid`) values ('41982','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10498','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'858','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cd76e4940cbf4582b3e6f1c7a0ec28fc');
INSERT INTO `items` (`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`,`uuid`) values ('41983','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10498','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'859','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c0b9f206c9744d381903da1877e207f');
INSERT INTO `items` (`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`,`uuid`) values ('41984','3','','10499','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'864','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c481552e81c040cc902c5a02e8971ba5');
INSERT INTO `items` (`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`,`uuid`) values ('41985','20','1.3.6.1.2.1.1.5.0','10499','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','860ffeeac47c434c8890fef9c13f5105');
INSERT INTO `items` (`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`,`uuid`) values ('41986','20','1.3.6.1.2.1.1.3.0','10499','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2d1af72cb5174acfaaf50992b2aeb25e');
INSERT INTO `items` (`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`,`uuid`) values ('41987','20','1.3.6.1.2.1.1.2.0','10499','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6d82211969d74fb7b33f1e9d90c83902');
INSERT INTO `items` (`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`,`uuid`) values ('41988','20','1.3.6.1.2.1.1.6.0','10499','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','a6d38cac0dcc4bb085e6d7dc9536407d');
INSERT INTO `items` (`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`,`uuid`) values ('41989','3','','10499','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','0b2a45e80039439ca76648ff3eff0515');
INSERT INTO `items` (`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`,`uuid`) values ('41990','20','1.3.6.1.2.1.1.1.0','10499','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cd8bd2a11d164a9eafc6771bb80eb449');
INSERT INTO `items` (`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`,`uuid`) values ('41991','20','1.3.6.1.2.1.1.4.0','10499','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','65095df07cf849789fe6d78cbc9e2712');
INSERT INTO `items` (`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`,`uuid`) values ('41992','17','','10499','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','d44db2b3812246e09860a63d42512382');
INSERT INTO `items` (`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`,`uuid`) values ('41993','3','','10499','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','bee8dc9f001443c38134e692b933aa89');
INSERT INTO `items` (`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`,`uuid`) values ('41994','5','','10499','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'865','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c814df3020694764834105ce89cb5232');
INSERT INTO `items` (`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`,`uuid`) values ('41995','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10499','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4c29001a422d4c93829f613674c760ab');
INSERT INTO `items` (`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`,`uuid`) values ('41996','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10499','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0dbfe46640fc42a9abaabd7272404cec');
INSERT INTO `items` (`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`,`uuid`) values ('41997','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10499','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','32e0d3493c2142389f5dffecb9720551');
INSERT INTO `items` (`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`,`uuid`) values ('41998','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10499','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','45ebaba72cb643c98340640f40129113');
INSERT INTO `items` (`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`,`uuid`) values ('41999','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10499','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','13c44a7c91ed4781aa390cf0fe45224a');
INSERT INTO `items` (`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`,`uuid`) values ('42000','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10499','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b20fe4196472445e9cbb73152e819f5b');
INSERT INTO `items` (`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`,`uuid`) values ('42001','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10499','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e55c393989a1461e8a3e05733164a273');
INSERT INTO `items` (`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`,`uuid`) values ('42002','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10499','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0e5816801ead429688acc6c4e6387c9d');
INSERT INTO `items` (`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`,`uuid`) values ('42003','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10499','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'862','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f8c119662e5a460588e15558e83be9d3');
INSERT INTO `items` (`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`,`uuid`) values ('42004','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10499','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'863','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c08335ca5dae457b8d0139df59e96057');
INSERT INTO `items` (`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`,`uuid`) values ('42005','3','','10500','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'868','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cd22f3bc12c642e1b8bcd708b7ae68a2');
INSERT INTO `items` (`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`,`uuid`) values ('42006','20','1.3.6.1.2.1.1.5.0','10500','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8fa41471e9b44d138848ab7ecfb7d354');
INSERT INTO `items` (`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`,`uuid`) values ('42007','20','1.3.6.1.2.1.1.3.0','10500','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3ad913927c424bc9b2ab09365921f41a');
INSERT INTO `items` (`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`,`uuid`) values ('42008','20','1.3.6.1.2.1.1.2.0','10500','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6320b2b82e3c42f993a053be2ed60a5d');
INSERT INTO `items` (`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`,`uuid`) values ('42009','20','1.3.6.1.2.1.1.6.0','10500','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','225a0364e38845b489a9dc94055790ac');
INSERT INTO `items` (`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`,`uuid`) values ('42010','3','','10500','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','4f918b392de8452b943c71ef69f17fad');
INSERT INTO `items` (`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`,`uuid`) values ('42011','20','1.3.6.1.2.1.1.1.0','10500','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2d7c4a734e3b4980b02166caa994d939');
INSERT INTO `items` (`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`,`uuid`) values ('42012','20','1.3.6.1.2.1.1.4.0','10500','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','84a4224286024f56a09301195b6efa72');
INSERT INTO `items` (`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`,`uuid`) values ('42013','17','','10500','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','ba5410ba09354d87a3f3941d3b45b013');
INSERT INTO `items` (`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`,`uuid`) values ('42014','3','','10500','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','7deb2be6b623485fb0e6bbf88a02dbf7');
INSERT INTO `items` (`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`,`uuid`) values ('42015','5','','10500','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'869','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6ee24adf573947e29e23436f45a47e08');
INSERT INTO `items` (`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`,`uuid`) values ('42016','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10500','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','62392f64c22b47d8bb2cf4fcb1c24682');
INSERT INTO `items` (`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`,`uuid`) values ('42017','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10500','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8b99bd7b719940428af4af9f3a43ae72');
INSERT INTO `items` (`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`,`uuid`) values ('42018','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10500','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','67bbe49205f6440398bfc5f28df04c3f');
INSERT INTO `items` (`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`,`uuid`) values ('42019','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10500','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9df47891dc1540f98068c1734a2bab0e');
INSERT INTO `items` (`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`,`uuid`) values ('42020','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10500','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e8e937775f794e7ca7e78e8e5cc1e555');
INSERT INTO `items` (`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`,`uuid`) values ('42021','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10500','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','88e9b94950084ffcbae95936b9af3c66');
INSERT INTO `items` (`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`,`uuid`) values ('42022','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10500','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5b3a4925f5c54ae78c46eee45e81588e');
INSERT INTO `items` (`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`,`uuid`) values ('42023','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10500','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','faca9de83a1c4309972af08848b0480d');
INSERT INTO `items` (`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`,`uuid`) values ('42024','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10500','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'866','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9e73b53e463f479fbdaaf17433530cf2');
INSERT INTO `items` (`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`,`uuid`) values ('42025','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10500','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'867','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b1e65d5043c84e7b9a9185cd0ea36074');
INSERT INTO `items` (`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`,`uuid`) values ('42026','3','','10501','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'872','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1456a122964042f48b033f5c31dd8376');
INSERT INTO `items` (`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`,`uuid`) values ('42027','20','1.3.6.1.2.1.1.5.0','10501','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3b9de782051549bea9f39dd6ceb6b946');
INSERT INTO `items` (`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`,`uuid`) values ('42028','20','1.3.6.1.2.1.1.3.0','10501','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ddbd6f5ee0094e5ca2f62aa07fe71fd5');
INSERT INTO `items` (`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`,`uuid`) values ('42029','20','1.3.6.1.2.1.1.2.0','10501','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6455af8d14904fcf892a03989a0b8a37');
INSERT INTO `items` (`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`,`uuid`) values ('42030','20','1.3.6.1.2.1.1.6.0','10501','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','c92d6baa96784a30a17e785e6214e3e3');
INSERT INTO `items` (`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`,`uuid`) values ('42031','3','','10501','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','5571d787631e48e782de334341fabb8f');
INSERT INTO `items` (`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`,`uuid`) values ('42032','20','1.3.6.1.2.1.1.1.0','10501','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4d6158d361f943af9dd63ef425e5cf28');
INSERT INTO `items` (`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`,`uuid`) values ('42033','20','1.3.6.1.2.1.1.4.0','10501','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','64eb10d744834f2697951abf073d5149');
INSERT INTO `items` (`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`,`uuid`) values ('42034','17','','10501','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','c18df4381e984a599904b4fcf19d2f70');
INSERT INTO `items` (`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`,`uuid`) values ('42035','3','','10501','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','d39e275bb89745caa0a6b27ac88c58fe');
INSERT INTO `items` (`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`,`uuid`) values ('42036','5','','10501','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'873','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84fc11c2d18449cb8b903b6a8ac05959');
INSERT INTO `items` (`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`,`uuid`) values ('42037','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10501','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7296321823c4439ba324965a820221a6');
INSERT INTO `items` (`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`,`uuid`) values ('42038','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10501','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3cd3522e656b49ee890bb5b89a9cd36c');
INSERT INTO `items` (`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`,`uuid`) values ('42039','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10501','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b5a661b631e94afcbe6f1e7e941bd089');
INSERT INTO `items` (`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`,`uuid`) values ('42040','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10501','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','10bedeb24a414598984a8c83730ae718');
INSERT INTO `items` (`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`,`uuid`) values ('42041','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10501','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b8fd82530c854f54b87e8263dc7be4d8');
INSERT INTO `items` (`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`,`uuid`) values ('42042','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10501','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8368e3d0f297470f9948681ad83c4a77');
INSERT INTO `items` (`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`,`uuid`) values ('42043','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10501','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2fb86f95aaf04867b219646000a5b851');
INSERT INTO `items` (`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`,`uuid`) values ('42044','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10501','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a8d1a185804a49e68c2584373770b33e');
INSERT INTO `items` (`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`,`uuid`) values ('42045','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10501','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'870','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','112b5660056246e58af76fef04b44c7f');
INSERT INTO `items` (`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`,`uuid`) values ('42046','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10501','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'871','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','577f83588c44447c9c6e79ec334b29f3');
INSERT INTO `items` (`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`,`uuid`) values ('42047','3','','10502','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'876','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9a6ed6ec60a74ffd9142d21489ac8470');
INSERT INTO `items` (`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`,`uuid`) values ('42048','20','1.3.6.1.2.1.1.5.0','10502','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2258348183a64037bdad1af1a0af29b3');
INSERT INTO `items` (`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`,`uuid`) values ('42049','20','1.3.6.1.2.1.1.3.0','10502','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4116de1f7bcb4902adcc14a449d58b80');
INSERT INTO `items` (`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`,`uuid`) values ('42050','20','1.3.6.1.2.1.1.2.0','10502','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','90919bb372954e0eb87fae49ed98ca70');
INSERT INTO `items` (`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`,`uuid`) values ('42051','20','1.3.6.1.2.1.1.6.0','10502','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','f3af39a93b684b99880bfbd50b146ec5');
INSERT INTO `items` (`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`,`uuid`) values ('42052','3','','10502','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','9ad8e2e7b1ee488f9470836f8cd8f4b6');
INSERT INTO `items` (`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`,`uuid`) values ('42053','20','1.3.6.1.2.1.1.1.0','10502','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','449b88f9f0bb423d89def3227b1d9e38');
INSERT INTO `items` (`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`,`uuid`) values ('42054','20','1.3.6.1.2.1.1.4.0','10502','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','e9f5b25afb7e44918e19df044c71d238');
INSERT INTO `items` (`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`,`uuid`) values ('42055','17','','10502','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','886163a11a0d4dd4922fc4fda700ddcf');
INSERT INTO `items` (`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`,`uuid`) values ('42056','3','','10502','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','9a3155664a4d4f5797733f66939bc506');
INSERT INTO `items` (`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`,`uuid`) values ('42057','5','','10502','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'877','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8aa3e5e4cb8440998922015c32994cd2');
INSERT INTO `items` (`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`,`uuid`) values ('42058','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10502','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0e526afef3484016aaf73752c4931fa9');
INSERT INTO `items` (`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`,`uuid`) values ('42059','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10502','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','86c29ff24d8a48ac9006749e37a8da67');
INSERT INTO `items` (`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`,`uuid`) values ('42060','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10502','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','03412734b2614e8a92a9e8b45c6422bd');
INSERT INTO `items` (`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`,`uuid`) values ('42061','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10502','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','48c2f9a47a074a40b20db214de37d830');
INSERT INTO `items` (`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`,`uuid`) values ('42062','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10502','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ca3d79c0bc594979bbc44fe5c729afd0');
INSERT INTO `items` (`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`,`uuid`) values ('42063','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10502','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','abea3c44fdc2424db5ccf5d388e492f6');
INSERT INTO `items` (`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`,`uuid`) values ('42064','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10502','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ff32d3dcc7b4edbbc5f5603fbd4272d');
INSERT INTO `items` (`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`,`uuid`) values ('42065','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10502','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6ad90d1c5e15433599a516dd88c85ff7');
INSERT INTO `items` (`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`,`uuid`) values ('42066','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10502','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'874','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e9d5d234876e47e9a36779c2e1e247e4');
INSERT INTO `items` (`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`,`uuid`) values ('42067','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10502','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'875','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','63912ec5f0be48ad966c2a0b0605a9fc');
INSERT INTO `items` (`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`,`uuid`) values ('42068','3','','10233','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'880','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cba2e98b8ea14ff0a03dee515337ac7d');
INSERT INTO `items` (`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`,`uuid`) values ('42069','20','1.3.6.1.2.1.1.5.0','10233','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2d99a01f7c0d4ca38f3bc9a5f8db3ab7');
INSERT INTO `items` (`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`,`uuid`) values ('42070','20','1.3.6.1.2.1.1.3.0','10233','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff6fea946fb143e3b8b151eafb403952');
INSERT INTO `items` (`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`,`uuid`) values ('42071','20','1.3.6.1.2.1.1.2.0','10233','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9d8a27d216f146ae88479e8e6bcbd301');
INSERT INTO `items` (`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`,`uuid`) values ('42072','20','1.3.6.1.2.1.1.6.0','10233','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','9766fcd2e7b64865a6ef60f3ab27002f');
INSERT INTO `items` (`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`,`uuid`) values ('42073','3','','10233','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','81b47dcd39864dd6812344bd0dc34963');
INSERT INTO `items` (`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`,`uuid`) values ('42074','20','1.3.6.1.2.1.1.1.0','10233','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','763d10f3cf344cd488db9c156c893d18');
INSERT INTO `items` (`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`,`uuid`) values ('42075','20','1.3.6.1.2.1.1.4.0','10233','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','9d2b98385edb49979abcde5481560253');
INSERT INTO `items` (`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`,`uuid`) values ('42076','17','','10233','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','540698a8c58d4a659e2c2ecdd5cb76e0');
INSERT INTO `items` (`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`,`uuid`) values ('42077','3','','10233','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','3bb0c6c8aad64f21a11dc58c6be2eeaf');
INSERT INTO `items` (`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`,`uuid`) values ('42078','5','','10233','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'881','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','754f890d63c042f6976a1ad25c317574');
INSERT INTO `items` (`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`,`uuid`) values ('42079','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10233','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','39f9ac305fe2497498916dc709b9a097');
INSERT INTO `items` (`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`,`uuid`) values ('42080','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10233','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2048a885fd67433786f6c3f650962a71');
INSERT INTO `items` (`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`,`uuid`) values ('42081','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10233','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','32e41ced890a4b349a5167269450efa6');
INSERT INTO `items` (`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`,`uuid`) values ('42082','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10233','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','10806818bfa34f2c94ab9a42720e7e41');
INSERT INTO `items` (`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`,`uuid`) values ('42083','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10233','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e899752523044d2c830e9cd48ba2cb72');
INSERT INTO `items` (`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`,`uuid`) values ('42084','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10233','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d3fd9bb2202e441282a6008dbf27cc5b');
INSERT INTO `items` (`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`,`uuid`) values ('42085','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10233','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','af78d9ecefd445c5840bf09e1b3ef438');
INSERT INTO `items` (`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`,`uuid`) values ('42086','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10233','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16c880544cb741fb90c5ba2823225bb0');
INSERT INTO `items` (`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`,`uuid`) values ('42087','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10233','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'878','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3fd63f1049924a5491b9080702bc5fdb');
INSERT INTO `items` (`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`,`uuid`) values ('42088','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10233','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'879','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5fb27bdadc9848118bc64a720ff6dea0');
INSERT INTO `items` (`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`,`uuid`) values ('42089','3','','10234','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'884','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a3d05c4b2b2e40ba8cd29255012f5582');
INSERT INTO `items` (`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`,`uuid`) values ('42090','20','1.3.6.1.2.1.1.5.0','10234','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','53b0dbb74854494eb834804a1f0afbe7');
INSERT INTO `items` (`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`,`uuid`) values ('42091','20','1.3.6.1.2.1.1.3.0','10234','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6538a853fd47460585dbc2b4853ea65b');
INSERT INTO `items` (`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`,`uuid`) values ('42092','20','1.3.6.1.2.1.1.2.0','10234','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8d5bfc785de5459c967659306d66b7e5');
INSERT INTO `items` (`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`,`uuid`) values ('42093','20','1.3.6.1.2.1.1.6.0','10234','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','eeeceba5d9dd43de856ada8b5460f3d5');
INSERT INTO `items` (`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`,`uuid`) values ('42094','3','','10234','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','4c2b7fe079ba45f6b150d9aeda4b8ab1');
INSERT INTO `items` (`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`,`uuid`) values ('42095','20','1.3.6.1.2.1.1.1.0','10234','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','59c81fd37e334a0ba60b1256d3730624');
INSERT INTO `items` (`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`,`uuid`) values ('42096','20','1.3.6.1.2.1.1.4.0','10234','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','44a19d5435e8476dafa2e52b481b9c75');
INSERT INTO `items` (`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`,`uuid`) values ('42097','17','','10234','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','6f2e3553d7874f81b184b1b25a3d9ac6');
INSERT INTO `items` (`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`,`uuid`) values ('42098','3','','10234','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','f6d11b8498e04df9bcf392aee2aacde3');
INSERT INTO `items` (`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`,`uuid`) values ('42099','5','','10234','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'885','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','755ae00add264d2ba735b45f7dc5ca23');
INSERT INTO `items` (`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`,`uuid`) values ('42100','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10234','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d37bcb60aa354c55b363e33c5ec3af9d');
INSERT INTO `items` (`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`,`uuid`) values ('42101','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10234','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','832ec51626724ebdb03b8d6134b6f786');
INSERT INTO `items` (`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`,`uuid`) values ('42102','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10234','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','50f169f55fb949aebf4233b702f2edb9');
INSERT INTO `items` (`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`,`uuid`) values ('42103','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10234','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','055c64e171144b119b2e0b2c427e1c77');
INSERT INTO `items` (`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`,`uuid`) values ('42104','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10234','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','036b6e8533044a0a8c5101f0dbc38c2f');
INSERT INTO `items` (`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`,`uuid`) values ('42105','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10234','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6ec1a97308a74aea8b68a1854d6692eb');
INSERT INTO `items` (`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`,`uuid`) values ('42106','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10234','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','36d9193337164198a0fcb76bc3d9adcf');
INSERT INTO `items` (`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`,`uuid`) values ('42107','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10234','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f5f25ce6e6604f0b9b2d685d664c7469');
INSERT INTO `items` (`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`,`uuid`) values ('42108','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10234','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'882','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','96d56a8cb6024d5d9841b7ac817e5aab');
INSERT INTO `items` (`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`,`uuid`) values ('42109','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10234','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'883','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2baed21110ca4e50af898442668bdd8b');
INSERT INTO `items` (`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`,`uuid`) values ('42110','3','','10235','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'889','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','89d60f525bd04be28cc4267d0224cdb6');
INSERT INTO `items` (`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`,`uuid`) values ('42111','20','1.3.6.1.2.1.1.3.0','10235','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0123f7f4eab541a786130af4fbb2a534');
INSERT INTO `items` (`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`,`uuid`) values ('42112','20','1.3.6.1.2.1.1.2.0','10235','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','237a5f0537a549b3a63ed7f81d0b6122');
INSERT INTO `items` (`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`,`uuid`) values ('42113','20','1.3.6.1.2.1.1.5.0','10235','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa2a90f772154d0e9354d496afae9939');
INSERT INTO `items` (`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`,`uuid`) values ('42114','20','1.3.6.1.2.1.1.6.0','10235','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','de9a507ae83247398a4708fff2889862');
INSERT INTO `items` (`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`,`uuid`) values ('42115','3','','10235','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','8f355d66881c47b5be8097dbd1f950d1');
INSERT INTO `items` (`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`,`uuid`) values ('42116','20','1.3.6.1.2.1.1.1.0','10235','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3701b10845d449a3b1a5d67a7d743ca4');
INSERT INTO `items` (`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`,`uuid`) values ('42117','20','1.3.6.1.2.1.1.4.0','10235','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','b821576134ff4185a3e11b35763b7d1d');
INSERT INTO `items` (`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`,`uuid`) values ('42118','17','','10235','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','568c2b550b944dd084ec4e4486e7ec72');
INSERT INTO `items` (`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`,`uuid`) values ('42119','3','','10235','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','6138402da32a40259bb26f217be2df59');
INSERT INTO `items` (`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`,`uuid`) values ('42120','5','','10235','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'890','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3e44eea15b2a4b2c994fb3372c538466');
INSERT INTO `items` (`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`,`uuid`) values ('42121','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10235','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','868afe31f18b401f9af17050f7b4f797');
INSERT INTO `items` (`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`,`uuid`) values ('42122','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10235','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c646f18c6ab34ff285f5de376fbe3dd3');
INSERT INTO `items` (`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`,`uuid`) values ('42123','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10235','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','468b2fe6bbdc4e7e8c41b3c1eff79c50');
INSERT INTO `items` (`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`,`uuid`) values ('42124','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10235','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7834edab485241e1bf065c0b314fcfc7');
INSERT INTO `items` (`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`,`uuid`) values ('42125','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10235','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f6d6b81658db4ba1b4edc2bf245816ce');
INSERT INTO `items` (`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`,`uuid`) values ('42126','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10235','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1d1e8f319cf84bc4813e07b4d1637e83');
INSERT INTO `items` (`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`,`uuid`) values ('42127','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10235','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','69fddbf678284814ba8ec7f68314be5c');
INSERT INTO `items` (`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`,`uuid`) values ('42128','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10235','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dfc2d7184bd84c6592072857fc2abc48');
INSERT INTO `items` (`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`,`uuid`) values ('42129','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10235','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1aade0dd9063467e9fd1841b84e710f5');
INSERT INTO `items` (`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`,`uuid`) values ('42130','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10235','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'887','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','37fffae80d9243d0863909fdae8683a2');
INSERT INTO `items` (`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`,`uuid`) values ('42131','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10235','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'888','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','950d69eedab445a09d53f002a499d25c');
INSERT INTO `items` (`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`,`uuid`) values ('42132','20','1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}','10235','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'886','','','0','','','','','2',NULL,'MIB: EtherLike-MIB\r\nThe current mode of operation of the MAC\r\nentity. \'unknown\' indicates that the current\r\nduplex mode could not be determined.\r\n\r\nManagement control of the duplex mode is\r\naccomplished through the MAU MIB. When\r\nan interface does not support autonegotiation,\r\nor when autonegotiation is not enabled, the\r\nduplex mode is controlled using\r\nifMauDefaultType. When autonegotiation is\r\nsupported and enabled, duplex mode is controlled\r\nusing ifMauAutoNegAdvertisedBits. In either\r\ncase, the currently operating duplex mode is\r\nreflected both in this object and in ifMauType.\r\n\r\nNote that this object provides redundant\r\ninformation with ifMauType. Normally, redundant\r\nobjects are discouraged. However, in this\r\ninstance, it allows a management application to\r\ndetermine the duplex status of an interface\r\nwithout having to know every possible value of\r\nifMauType. This was felt to be sufficiently\r\nvaluable to justify the redundancy.\r\nReference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a1fa545a0ca74492b635d37e94785d39');
INSERT INTO `items` (`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`,`uuid`) values ('42133','3','','10236','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'893','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e9f5ba061b7e41e7bac26aeec105f4da');
INSERT INTO `items` (`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`,`uuid`) values ('42134','3','','10236','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','71567de591174a64aafd48aebae0b4f4');
INSERT INTO `items` (`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`,`uuid`) values ('42135','3','','10236','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','dde3ad74c18847f4a91bee29b20a6364');
INSERT INTO `items` (`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`,`uuid`) values ('42136','17','','10236','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','707bcd801726449d9a7d3de0fa650c0a');
INSERT INTO `items` (`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`,`uuid`) values ('42137','20','1.3.6.1.2.1.1.4.0','10236','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','2b293fd8a3e346f9be437ae539dca3c3');
INSERT INTO `items` (`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`,`uuid`) values ('42138','20','1.3.6.1.2.1.1.1.0','10236','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4727c07daa0c413aa4bbc293198f9cde');
INSERT INTO `items` (`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`,`uuid`) values ('42139','20','1.3.6.1.2.1.1.6.0','10236','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','3cfe39b7d7f9401190de46aa86a04686');
INSERT INTO `items` (`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`,`uuid`) values ('42140','20','1.3.6.1.2.1.1.5.0','10236','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','72bc86c14222404cad76bc04836d11eb');
INSERT INTO `items` (`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`,`uuid`) values ('42141','20','1.3.6.1.2.1.1.2.0','10236','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','78034b7a1d964b199f6a12c43821c27e');
INSERT INTO `items` (`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`,`uuid`) values ('42142','20','1.3.6.1.2.1.1.3.0','10236','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cb63d68e6d0143049534225d1d69da12');
INSERT INTO `items` (`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`,`uuid`) values ('42143','5','','10236','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'894','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b6cd5b22d8014aa18fdb7735d77cc84c');
INSERT INTO `items` (`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`,`uuid`) values ('42144','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10236','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eec7aaed43e14fbca8c07cdc68d8b683');
INSERT INTO `items` (`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`,`uuid`) values ('42145','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10236','Interface {#IFDESCR}: Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','27f1c9ccfc744b5eb215d032fbbe2ff8');
INSERT INTO `items` (`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`,`uuid`) values ('42146','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10236','Interface {#IFDESCR}: Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','738de59c4df9435d8076751a33098685');
INSERT INTO `items` (`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`,`uuid`) values ('42147','20','1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX}','10236','Interface {#IFDESCR}: Bits received','net.if.in[ifInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a9393bc9e68c4c27b01320f776c037cb');
INSERT INTO `items` (`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`,`uuid`) values ('42148','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10236','Interface {#IFDESCR}: Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','86798974d9f143bf81e5fa40ac792835');
INSERT INTO `items` (`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`,`uuid`) values ('42149','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10236','Interface {#IFDESCR}: Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','aa20e57e43bd4252b232e9f18ab73391');
INSERT INTO `items` (`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`,`uuid`) values ('42150','20','1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX}','10236','Interface {#IFDESCR}: Bits sent','net.if.out[ifOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','694efd29271f4109a3008cd3404c2d54');
INSERT INTO `items` (`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`,`uuid`) values ('42151','20','1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX}','10236','Interface {#IFDESCR}: Speed','net.if.speed[ifSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in bits per second.\r\nFor interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,\r\nthis object should contain the nominal bandwidth.\r\nIf the bandwidth of the interface is greater than the maximum value reportable by this object then\r\nthis object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interface\'s speed.\r\nFor a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b06b4597959c44d6b998b506257e0f7f');
INSERT INTO `items` (`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`,`uuid`) values ('42152','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10236','Interface {#IFDESCR}: Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'891','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','25c78dd4d9ff466980d06912c8ca79db');
INSERT INTO `items` (`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`,`uuid`) values ('42153','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10236','Interface {#IFDESCR}: Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'892','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7d5f2f31ef3f49809e1011fed5347942');
INSERT INTO `items` (`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`,`uuid`) values ('42154','3','','10237','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'897','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','473f39f191164f578539e842f18bfe65');
INSERT INTO `items` (`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`,`uuid`) values ('42155','20','1.3.6.1.2.1.1.5.0','10237','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5994fe565b1d437f8e9f1d0d8ec83104');
INSERT INTO `items` (`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`,`uuid`) values ('42156','20','1.3.6.1.2.1.1.3.0','10237','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','de270e3ac6874ca59a236a040d82c099');
INSERT INTO `items` (`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`,`uuid`) values ('42157','20','1.3.6.1.2.1.1.2.0','10237','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2fbfe02459724f089b5bcd31ff6245d9');
INSERT INTO `items` (`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`,`uuid`) values ('42158','20','1.3.6.1.2.1.1.6.0','10237','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','eabbdf5343fb42bfa3e5f13bc51ad66d');
INSERT INTO `items` (`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`,`uuid`) values ('42159','3','','10237','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','11297d0102734139aa4fa81eefad9839');
INSERT INTO `items` (`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`,`uuid`) values ('42160','20','1.3.6.1.2.1.1.1.0','10237','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a05d416bcdde44929f091c4cde2e6537');
INSERT INTO `items` (`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`,`uuid`) values ('42161','20','1.3.6.1.2.1.1.4.0','10237','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','362b533375e544d9804eba534e5f4935');
INSERT INTO `items` (`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`,`uuid`) values ('42162','17','','10237','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','11edabc72e4a4d69a0dc9c36458fbfbc');
INSERT INTO `items` (`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`,`uuid`) values ('42163','3','','10237','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','d8416e68bab94a568b8fbc67927ae739');
INSERT INTO `items` (`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`,`uuid`) values ('42164','5','','10237','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'898','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0aad82f9addd45efa20253da000ec699');
INSERT INTO `items` (`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`,`uuid`) values ('42165','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10237','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','441118e6712e4f6bae4c9cab7be8d0a2');
INSERT INTO `items` (`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`,`uuid`) values ('42166','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10237','Interface {#IFDESCR}: Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e97fb75ee1254ea092a9fb51b1bac108');
INSERT INTO `items` (`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`,`uuid`) values ('42167','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10237','Interface {#IFDESCR}: Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cec2d0f88b494cb8b49a8e234108cbbb');
INSERT INTO `items` (`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`,`uuid`) values ('42168','20','1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX}','10237','Interface {#IFDESCR}: Bits received','net.if.in[ifInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0610c78c5be54df29ef6833758331896');
INSERT INTO `items` (`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`,`uuid`) values ('42169','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10237','Interface {#IFDESCR}: Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9a129fa67db34b4fa6af29e4c0936f09');
INSERT INTO `items` (`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`,`uuid`) values ('42170','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10237','Interface {#IFDESCR}: Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','016c8fc0a0524df3b5fa9a7d6a28fb94');
INSERT INTO `items` (`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`,`uuid`) values ('42171','20','1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX}','10237','Interface {#IFDESCR}: Bits sent','net.if.out[ifOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','84be5259caec44cfb5963e8d31c27e71');
INSERT INTO `items` (`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`,`uuid`) values ('42172','20','1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX}','10237','Interface {#IFDESCR}: Speed','net.if.speed[ifSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in bits per second.\r\nFor interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,\r\nthis object should contain the nominal bandwidth.\r\nIf the bandwidth of the interface is greater than the maximum value reportable by this object then\r\nthis object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interface\'s speed.\r\nFor a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','570b2d64c79748ac9c8350fa68933de5');
INSERT INTO `items` (`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`,`uuid`) values ('42173','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10237','Interface {#IFDESCR}: Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'895','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ec9624acd1d940e49f6cb996551ec66b');
INSERT INTO `items` (`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`,`uuid`) values ('42174','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10237','Interface {#IFDESCR}: Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'896','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','435d93d378d646c388ddccb22bb43dc9');
INSERT INTO `items` (`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`,`uuid`) values ('42175','0','','10076','Host name of Zabbix agent running','agent.hostname','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4c80c15f5741464882aa238f27bec1bd');
INSERT INTO `items` (`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`,`uuid`) values ('42176','0','','10076','Zabbix agent ping','agent.ping','1m','7d','365d','0','3','','','','',NULL,'900','','','0','','','','','0',NULL,'The agent always returns 1 for this item. It could be used in combination with nodata() for availability check.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','05849e0fb6504d339f2aebe159427bec');
INSERT INTO `items` (`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`,`uuid`) values ('42177','0','','10076','Version of Zabbix agent running','agent.version','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fe4731720ba64eebbf125929e499209b');
INSERT INTO `items` (`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`,`uuid`) values ('42178','5','','10076','Zabbix agent availability','zabbix[host,agent,available]','1m','7d','365d','0','3','','','','',NULL,'899','','','0','','','','','0',NULL,'Monitoring agent availability status','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','304a3e9bb7594c83b027a32c34aeab28');
INSERT INTO `items` (`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`,`uuid`) values ('42179','0','','10075','Host name of Zabbix agent running','agent.hostname','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','74bc1a15ef314d5f9b26332531885c0d');
INSERT INTO `items` (`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`,`uuid`) values ('42180','0','','10075','Zabbix agent ping','agent.ping','1m','7d','365d','0','3','','','','',NULL,'902','','','0','','','','','0',NULL,'The agent always returns 1 for this item. It could be used in combination with nodata() for availability check.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da59d099f7614653b37b8eaaa518ebd2');
INSERT INTO `items` (`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`,`uuid`) values ('42181','0','','10075','Version of Zabbix agent running','agent.version','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e2b84269401e41acb973bc29666b9e7a');
INSERT INTO `items` (`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`,`uuid`) values ('42182','5','','10075','Zabbix agent availability','zabbix[host,agent,available]','1m','7d','365d','0','3','','','','',NULL,'901','','','0','','','','','0',NULL,'Monitoring agent availability status','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cbfaa94dc7bc4606a792aaf357054075');
INSERT INTO `items` (`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`,`uuid`) values ('42183','0','','10077','Host name of Zabbix agent running','agent.hostname','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','27949a6910304d39b3d2a68c90525581');
INSERT INTO `items` (`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`,`uuid`) values ('42184','0','','10077','Zabbix agent ping','agent.ping','1m','7d','365d','0','3','','','','',NULL,'904','','','0','','','','','0',NULL,'The agent always returns 1 for this item. It could be used in combination with nodata() for availability check.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','98507eac4f70420698dc234c2a6e3198');
INSERT INTO `items` (`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`,`uuid`) values ('42185','0','','10077','Version of Zabbix agent running','agent.version','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3f456ce86b284b089f545d8c72c64405');
INSERT INTO `items` (`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`,`uuid`) values ('42186','5','','10077','Zabbix agent availability','zabbix[host,agent,available]','1m','7d','365d','0','3','','','','',NULL,'903','','','0','','','','','0',NULL,'Monitoring agent availability status','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5b0a1ce4ca4a441484eea38724eaf24d');
INSERT INTO `items` (`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`,`uuid`) values ('42187','0','','10001','Host name of Zabbix agent running','agent.hostname','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','df561a0cece94760a78704edf7da7326');
INSERT INTO `items` (`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`,`uuid`) values ('42188','0','','10001','Free swap space','system.swap.size[,free]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of swap volume/file in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','160b82c121b147cbbf18c34dbb01d3ce');
INSERT INTO `items` (`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`,`uuid`) values ('42189','0','','10001','CPU system time','system.cpu.util[,system]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running the kernel and its processes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d93097ed5ce74d35b6041ef2b5ba18e8');
INSERT INTO `items` (`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`,`uuid`) values ('42190','0','','10001','CPU user time','system.cpu.util[,user]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running users\' processes that are not niced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','57f9e2e34fab41e18e2bc93e786c92c6');
INSERT INTO `items` (`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`,`uuid`) values ('42191','0','','10001','System name','system.hostname','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System host name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','207341f390134e37ad431e2823666eb9');
INSERT INTO `items` (`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`,`uuid`) values ('42192','0','','10001','System local time','system.localtime','1m','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'System local time of the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6072902361404672a444841c786875e6');
INSERT INTO `items` (`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`,`uuid`) values ('42193','0','','10001','Operating system architecture','system.sw.arch','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Operating system architecture of the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fd21580a151246b0a340bf924c326aa8');
INSERT INTO `items` (`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`,`uuid`) values ('42194','0','','10001','Operating system','system.sw.os','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e4c3d14634843e9b7b182e8fc08efbe');
INSERT INTO `items` (`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`,`uuid`) values ('42195','0','','10001','Software installed','system.sw.packages','1h','2w','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','58818005e76d46dda14d6592f601ab00');
INSERT INTO `items` (`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`,`uuid`) values ('42196','0','','10001','Free swap space in %','system.swap.size[,pfree]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of swap volume/file in percent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ca423242172f4b20ba47c26f4a61aee7');
INSERT INTO `items` (`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`,`uuid`) values ('42197','0','','10001','Zabbix agent ping','agent.ping','1m','7d','365d','0','3','','','','',NULL,'908','','','0','','','','','0',NULL,'The agent always returns 1 for this item. It could be used in combination with nodata() for availability check.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f94f9f4699e94c369e6c98b2a2f485ce');
INSERT INTO `items` (`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`,`uuid`) values ('42198','0','','10001','Total swap space','system.swap.size[,total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total space of swap volume/file in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','102c81b5523c4be0b4beae3cb88ebde1');
INSERT INTO `items` (`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`,`uuid`) values ('42199','0','','10001','System description','system.uname','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The information as normally returned by \'uname -a\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fc6898682f904c57ba28bcb3748b237f');
INSERT INTO `items` (`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`,`uuid`) values ('42200','0','','10001','System uptime','system.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'System uptime in \'N days, hh:mm:ss\' format.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8537f6c6ac6b438c80caf227946df891');
INSERT INTO `items` (`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`,`uuid`) values ('42201','0','','10001','Number of logged in users','system.users.num','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of users who are currently logged in.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','88056b3d2e424d5aba7cabcd4b043c9e');
INSERT INTO `items` (`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`,`uuid`) values ('42202','0','','10001','Checksum of /etc/passwd','vfs.file.cksum[/etc/passwd,sha256]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3b93d3590df24a46b29f6eb06f5e2446');
INSERT INTO `items` (`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`,`uuid`) values ('42203','0','','10001','Available memory','vm.memory.size[available]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e811e6e2ae84461294e121f12e767b40');
INSERT INTO `items` (`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`,`uuid`) values ('42204','0','','10001','Available memory in %','vm.memory.size[pavailable]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Available memory as percentage of total. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','20779a4c43374e5f9bea2584e93b85ef');
INSERT INTO `items` (`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`,`uuid`) values ('42205','0','','10001','Total memory','vm.memory.size[total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total memory in Bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d5c3541a7c0949ce812df1beb0732941');
INSERT INTO `items` (`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`,`uuid`) values ('42206','0','','10001','CPU steal time','system.cpu.util[,steal]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of CPU \'stolen\' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3161dbd18e874e69b729c8e903cf7390');
INSERT INTO `items` (`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`,`uuid`) values ('42207','0','','10001','CPU softirq time','system.cpu.util[,softirq]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time the CPU has been servicing software interrupts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a949a36004a449c58bef0cdc9d3fafd6');
INSERT INTO `items` (`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`,`uuid`) values ('42208','0','','10001','CPU nice time','system.cpu.util[,nice]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running users\' processes that have been niced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8ee6e54c86ba44ab88bb9e83c632c1ed');
INSERT INTO `items` (`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`,`uuid`) values ('42209','0','','10001','Load average (1m avg)','system.cpu.load[all,avg1]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','48528aa936a04c8189375a6eae4033da');
INSERT INTO `items` (`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`,`uuid`) values ('42210','0','','10001','Version of Zabbix agent running','agent.version','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','27c42cf180b44632b5d9b8b5788165b3');
INSERT INTO `items` (`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`,`uuid`) values ('42211','0','','10001','Maximum number of open file descriptors','kernel.maxfiles','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'It could be increased by using sysctl utility or modifying file /etc/sysctl.conf.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ef386d03ff2c42ffa236acd5215ad547');
INSERT INTO `items` (`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`,`uuid`) values ('42212','0','','10001','Maximum number of processes','kernel.maxproc','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'It could be increased by using sysctl utility or modifying file /etc/sysctl.conf.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','678d70c041954ac8982fb5118b49f6e7');
INSERT INTO `items` (`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`,`uuid`) values ('42213','0','','10001','Number of processes','proc.num','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab7d0471092544a6a950184d1bac906d');
INSERT INTO `items` (`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`,`uuid`) values ('42214','0','','10001','Number of running processes','proc.num[,,run]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b2637293884d40108f41b11767dd5be0');
INSERT INTO `items` (`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`,`uuid`) values ('42215','0','','10001','System boot time','system.boottime','15m','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','27cb0f66bb624146acfdd81b58f108a3');
INSERT INTO `items` (`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`,`uuid`) values ('42216','0','','10001','Interrupts per second','system.cpu.intr','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5d186a46867b4eaaafd6396d3239dd3b');
INSERT INTO `items` (`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`,`uuid`) values ('42217','0','','10001','Load average (5m avg)','system.cpu.load[all,avg5]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','953beb580df8418cb88b667b9dd37259');
INSERT INTO `items` (`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`,`uuid`) values ('42218','0','','10001','CPU iowait time','system.cpu.util[,iowait]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of time the CPU has been waiting for I/O to complete.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5df67d9162cc437585990cc8708be894');
INSERT INTO `items` (`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`,`uuid`) values ('42219','0','','10001','Load average (15m avg)','system.cpu.load[all,avg15]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5716000e38e24dae8ead4ed98ede024b');
INSERT INTO `items` (`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`,`uuid`) values ('42220','0','','10001','Number of CPUs','system.cpu.num','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f72e115544eb4079b09fec8c3539241c');
INSERT INTO `items` (`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`,`uuid`) values ('42221','0','','10001','Context switches per second','system.cpu.switches','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','73e85aa10a704fc7950d2d077f0c54ee');
INSERT INTO `items` (`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`,`uuid`) values ('42222','0','','10001','CPU guest time','system.cpu.util[,guest]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Guest time (time spent running a virtual CPU for a guest operating system).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','69b187838fb74f319e47c2ff4f99ef54');
INSERT INTO `items` (`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`,`uuid`) values ('42223','0','','10001','CPU guest nice time','system.cpu.util[,guest_nice]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a2b07497f2f343a99d26ad77e65bb54f');
INSERT INTO `items` (`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`,`uuid`) values ('42224','0','','10001','CPU idle time','system.cpu.util[,idle]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent doing nothing.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7aad6d159baa4a24901847144f0d231b');
INSERT INTO `items` (`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`,`uuid`) values ('42225','0','','10001','CPU interrupt time','system.cpu.util[,interrupt]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time the CPU has been servicing hardware interrupts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc4bc7693ae84f9bb18cee38d0814195');
INSERT INTO `items` (`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`,`uuid`) values ('42226','5','','10001','Zabbix agent availability','zabbix[host,agent,available]','1m','7d','365d','0','3','','','','',NULL,'907','','','0','','','','','0',NULL,'Monitoring agent availability status','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ca48c53be1bf46ae9dd2707158a55139');
INSERT INTO `items` (`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`,`uuid`) values ('42271','0','','10001','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','acfdea9c46ef48c68e6636f43b8f96a2');
INSERT INTO `items` (`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`,`uuid`) values ('42272','0','','10001','Block devices discovery','vfs.dev.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','2bbdc79f082d4c618e01bec625e9c90a');
INSERT INTO `items` (`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`,`uuid`) values ('42273','0','','10001','Mounted filesystem discovery','vfs.fs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of file systems of different types.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7d090603037e4defb34ef74021d3adcd');
INSERT INTO `items` (`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`,`uuid`) values ('42277','0','','10001','Interface {#IFNAME}: Inbound packets discarded','net.if.in["{#IFNAME}",dropped]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4d66608e190e4be7a438ea5d0d26e353');
INSERT INTO `items` (`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`,`uuid`) values ('42278','0','','10001','Interface {#IFNAME}: Inbound packets with errors','net.if.in["{#IFNAME}",errors]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ed79960ca91f4e2ca45fed014a02c50b');
INSERT INTO `items` (`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`,`uuid`) values ('42279','0','','10001','Interface {#IFNAME}: Bits received','net.if.in["{#IFNAME}"]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c9941a1f8d904309b581cae5ccc1660c');
INSERT INTO `items` (`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`,`uuid`) values ('42280','0','','10001','Interface {#IFNAME}: Outbound packets discarded','net.if.out["{#IFNAME}",dropped]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0795a375a41d46a2b5c89547061cec8e');
INSERT INTO `items` (`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`,`uuid`) values ('42281','0','','10001','Interface {#IFNAME}: Outbound packets with errors','net.if.out["{#IFNAME}",errors]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f8e8bbc069414e928a5da9817f4599a5');
INSERT INTO `items` (`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`,`uuid`) values ('42282','0','','10001','Interface {#IFNAME}: Bits sent','net.if.out["{#IFNAME}"]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','82897d99b0114c67b0f5b449c768c8e7');
INSERT INTO `items` (`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`,`uuid`) values ('42283','0','','10001','Interface {#IFNAME}: Operational status','vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"]','1m','7d','0','0','3','','','','',NULL,'905','','','0','','','','','2',NULL,'Reference: https://www.kernel.org/doc/Documentation/networking/operstates.txt','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3efd24ad36b04eb995cfeab82721c2fe');
INSERT INTO `items` (`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`,`uuid`) values ('42284','0','','10001','Interface {#IFNAME}: Interface type','vfs.file.contents["/sys/class/net/{#IFNAME}/type"]','1h','7d','0d','0','3','','','','',NULL,'906','','','0','','','','','2',NULL,'Indicates the interface protocol type as a decimal value.\r\nSee include/uapi/linux/if_arp.h for all possible values.\r\nReference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d537e74070c74e4385ad241e8514dd3a');
INSERT INTO `items` (`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`,`uuid`) values ('42285','15','','10001','{#DEVNAME}: Disk read request avg waiting time (r_await)','vfs.dev.read.await[{#DEVNAME}]','1m','7d','365d','0','0','','!ms','','',NULL,NULL,'(last(//vfs.dev.read.time.rate[{#DEVNAME}])/(last(//vfs.dev.read.rate[{#DEVNAME}])+(last(//vfs.dev.read.rate[{#DEVNAME}])=0)))*1000*(last(//vfs.dev.read.rate[{#DEVNAME}]) > 0)','','0','','','','','2',NULL,'This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9600208af80e4a6abe55bb5a2240ea8e');
INSERT INTO `items` (`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`,`uuid`) values ('42286','15','','10001','{#DEVNAME}: Disk write request avg waiting time (w_await)','vfs.dev.write.await[{#DEVNAME}]','1m','7d','365d','0','0','','!ms','','',NULL,NULL,'(last(//vfs.dev.write.time.rate[{#DEVNAME}])/(last(//vfs.dev.write.rate[{#DEVNAME}])+(last(//vfs.dev.write.rate[{#DEVNAME}])=0)))*1000*(last(//vfs.dev.write.rate[{#DEVNAME}]) > 0)','','0','','','','','2',NULL,'This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5907708cf4854d48ae3ebf8f0bc41eef');
INSERT INTO `items` (`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`,`uuid`) values ('42287','0','','10001','{#DEVNAME}: Get stats','vfs.file.contents[/sys/block/{#DEVNAME}/stat]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get contents of /sys/block/{#DEVNAME}/stat for disk stats.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8309fd01a5864ad68866717d0fe67080');
INSERT INTO `items` (`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`,`uuid`) values ('42288','0','','10001','{#FSNAME}: Free inodes in %','vfs.fs.inode[{#FSNAME},pfree]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4da7f08a979a46df8b8aeebb42a46207');
INSERT INTO `items` (`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`,`uuid`) values ('42289','0','','10001','{#FSNAME}: Space utilization','vfs.fs.size[{#FSNAME},pused]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Space utilization in % for {#FSNAME}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','61ffe6fcb9d94199aaeb5d568ab74a27');
INSERT INTO `items` (`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`,`uuid`) values ('42290','0','','10001','{#FSNAME}: Total space','vfs.fs.size[{#FSNAME},total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space in Bytes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a6d90e0bc5ef4fb7acee8682687c485f');
INSERT INTO `items` (`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`,`uuid`) values ('42291','0','','10001','{#FSNAME}: Used space','vfs.fs.size[{#FSNAME},used]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used storage in Bytes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','efee06a191aa4e5c8faa2762988b6955');
INSERT INTO `items` (`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`,`uuid`) values ('42319','7','','10343','Host name of Zabbix agent running','agent.hostname','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a31cfdf92de04535adb957e0c72f54bd');
INSERT INTO `items` (`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`,`uuid`) values ('42320','7','','10343','Free swap space','system.swap.size[,free]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of swap volume/file in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f08e1de57cbd4b08b9fd3294d0d95906');
INSERT INTO `items` (`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`,`uuid`) values ('42321','7','','10343','CPU system time','system.cpu.util[,system]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running the kernel and its processes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','75622323ae4447e8a21a04ef191fdc2d');
INSERT INTO `items` (`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`,`uuid`) values ('42322','7','','10343','CPU user time','system.cpu.util[,user]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running users\' processes that are not niced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c74b64926aae4a8e8c2299d8bfe2e188');
INSERT INTO `items` (`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`,`uuid`) values ('42323','7','','10343','System name','system.hostname','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System host name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fdf4eb1b98d04b229a1c9a3c0b5837ba');
INSERT INTO `items` (`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`,`uuid`) values ('42324','7','','10343','System local time','system.localtime','1m','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'System local time of the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c8fa467600ab48ce8cec353bab6c3a54');
INSERT INTO `items` (`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`,`uuid`) values ('42325','7','','10343','Operating system architecture','system.sw.arch','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Operating system architecture of the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','627cbcb2432a4aeda6e90363d9b0c1db');
INSERT INTO `items` (`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`,`uuid`) values ('42326','7','','10343','Operating system','system.sw.os','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d8c633f2fd1947028079a5939835dcd8');
INSERT INTO `items` (`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`,`uuid`) values ('42327','7','','10343','Software installed','system.sw.packages','1h','2w','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16b1e5ab950040ef8c29139e0649d622');
INSERT INTO `items` (`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`,`uuid`) values ('42328','7','','10343','Free swap space in %','system.swap.size[,pfree]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of swap volume/file in percent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','56b8f84d22264b92b70a6ab0c3c70f19');
INSERT INTO `items` (`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`,`uuid`) values ('42329','7','','10343','CPU softirq time','system.cpu.util[,softirq]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time the CPU has been servicing software interrupts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2ff77e25f0fe45238c64a6532735cdd5');
INSERT INTO `items` (`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`,`uuid`) values ('42330','7','','10343','Total swap space','system.swap.size[,total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total space of swap volume/file in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3a9fb924ab1d47168ffcab9d237d808a');
INSERT INTO `items` (`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`,`uuid`) values ('42331','7','','10343','System description','system.uname','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The information as normally returned by \'uname -a\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d3d73dcc92b34511971eddf956dc4c0f');
INSERT INTO `items` (`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`,`uuid`) values ('42332','7','','10343','System uptime','system.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'System uptime in \'N days, hh:mm:ss\' format.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','51bdea745e0547ad92a74fefaea54e39');
INSERT INTO `items` (`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`,`uuid`) values ('42333','7','','10343','Number of logged in users','system.users.num','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of users who are currently logged in.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ea1cfb5813a422b98caebcd870959ef');
INSERT INTO `items` (`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`,`uuid`) values ('42334','7','','10343','Checksum of /etc/passwd','vfs.file.cksum[/etc/passwd,sha256]','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','87f35de24ba74a8d8f70430c8da85261');
INSERT INTO `items` (`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`,`uuid`) values ('42335','7','','10343','Available memory','vm.memory.size[available]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5bf94ec3debc459fa3e13449199052ee');
INSERT INTO `items` (`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`,`uuid`) values ('42336','7','','10343','Available memory in %','vm.memory.size[pavailable]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Available memory as percentage of total. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','99efd95a41b34457a2ec0d8c96324e7c');
INSERT INTO `items` (`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`,`uuid`) values ('42337','7','','10343','Total memory','vm.memory.size[total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total memory in Bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','013fe8b15c86442eadc10763706ec594');
INSERT INTO `items` (`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`,`uuid`) values ('42338','7','','10343','CPU steal time','system.cpu.util[,steal]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of CPU \'stolen\' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','434c154ba392476f9ad8a94968840e19');
INSERT INTO `items` (`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`,`uuid`) values ('42339','7','','10343','CPU nice time','system.cpu.util[,nice]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running users\' processes that have been niced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d965fa68eea3454e83179116c5483322');
INSERT INTO `items` (`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`,`uuid`) values ('42340','7','','10343','Zabbix agent ping','agent.ping','1m','7d','365d','0','3','','','','',NULL,'912','','','0','','','','','0',NULL,'The agent always returns 1 for this item. It could be used in combination with nodata() for availability check.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7c266646bfa843dabfe4ba5a3fd9026e');
INSERT INTO `items` (`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`,`uuid`) values ('42341','7','','10343','Load average (1m avg)','system.cpu.load[all,avg1]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c692df07acc44b4ea1f4f88cd4ee64eb');
INSERT INTO `items` (`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`,`uuid`) values ('42342','7','','10343','Version of Zabbix agent running','agent.version','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','91dbe302bd8e4954b91e9ce3a795b4eb');
INSERT INTO `items` (`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`,`uuid`) values ('42343','7','','10343','Maximum number of open file descriptors','kernel.maxfiles','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'It could be increased by using sysctl utility or modifying file /etc/sysctl.conf.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','66ed2ffc888c40c6b80dcc259c087d08');
INSERT INTO `items` (`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`,`uuid`) values ('42344','7','','10343','Maximum number of processes','kernel.maxproc','1h','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'It could be increased by using sysctl utility or modifying file /etc/sysctl.conf.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d60cc4367893424d9671b1f05ba83599');
INSERT INTO `items` (`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`,`uuid`) values ('42345','7','','10343','Number of processes','proc.num','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ccb6fdbe1267475780e978c0c5de986c');
INSERT INTO `items` (`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`,`uuid`) values ('42346','7','','10343','Number of running processes','proc.num[,,run]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','436bf5615731425a97fdcdbaac5f4000');
INSERT INTO `items` (`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`,`uuid`) values ('42347','7','','10343','System boot time','system.boottime','15m','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','42bb6cbed08a4884a99328b38e4c1654');
INSERT INTO `items` (`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`,`uuid`) values ('42348','7','','10343','Interrupts per second','system.cpu.intr','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0a2218b9d9124c7284962f84bdefaab8');
INSERT INTO `items` (`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`,`uuid`) values ('42349','7','','10343','Load average (5m avg)','system.cpu.load[all,avg5]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','18862acd219e4259a9b9665c32550fa5');
INSERT INTO `items` (`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`,`uuid`) values ('42350','7','','10343','CPU iowait time','system.cpu.util[,iowait]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of time the CPU has been waiting for I/O to complete.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4859bb1b6e21469a917aa56fbfbe1698');
INSERT INTO `items` (`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`,`uuid`) values ('42351','7','','10343','Load average (15m avg)','system.cpu.load[all,avg15]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','61040b6d85df4a2087e562f0216e723d');
INSERT INTO `items` (`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`,`uuid`) values ('42352','7','','10343','Number of CPUs','system.cpu.num','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6e98a6a53c1a44c09b5e3c19971b834c');
INSERT INTO `items` (`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`,`uuid`) values ('42353','7','','10343','Context switches per second','system.cpu.switches','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','47e3a1d3955d4bccb07a0e32f768273d');
INSERT INTO `items` (`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`,`uuid`) values ('42354','7','','10343','CPU guest time','system.cpu.util[,guest]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Guest time (time spent running a virtual CPU for a guest operating system).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4ef463cc12da45e6b5a97cee93fd5ba0');
INSERT INTO `items` (`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`,`uuid`) values ('42355','7','','10343','CPU guest nice time','system.cpu.util[,guest_nice]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0cb7f1c9774241968208724ab56f4d86');
INSERT INTO `items` (`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`,`uuid`) values ('42356','7','','10343','CPU idle time','system.cpu.util[,idle]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent doing nothing.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8a20c7edef6d449e8771ff57cebb87d8');
INSERT INTO `items` (`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`,`uuid`) values ('42357','7','','10343','CPU interrupt time','system.cpu.util[,interrupt]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time the CPU has been servicing hardware interrupts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9329b55874bb4de7a52f941f382ba9ce');
INSERT INTO `items` (`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`,`uuid`) values ('42360','7','','10343','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0b47631fb1334f78a7fe5207194a5476');
INSERT INTO `items` (`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`,`uuid`) values ('42361','7','','10343','Block devices discovery','vfs.dev.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','ff825e7028c24138a7ea6625353a1790');
INSERT INTO `items` (`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`,`uuid`) values ('42362','7','','10343','Mounted filesystem discovery','vfs.fs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of file systems of different types.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5c9b5dbed44c4af0957ff9316f8fb761');
INSERT INTO `items` (`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`,`uuid`) values ('42363','7','','10343','Interface {#IFNAME}: Inbound packets discarded','net.if.in["{#IFNAME}",dropped]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f1a4f18b78754e669d1ddc593765f2e4');
INSERT INTO `items` (`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`,`uuid`) values ('42364','7','','10343','Interface {#IFNAME}: Inbound packets with errors','net.if.in["{#IFNAME}",errors]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f0eb218780ce44128117d73d65d412a9');
INSERT INTO `items` (`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`,`uuid`) values ('42365','7','','10343','Interface {#IFNAME}: Bits received','net.if.in["{#IFNAME}"]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','37dd13afa2b84b0e906a80016b9b2bf5');
INSERT INTO `items` (`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`,`uuid`) values ('42366','7','','10343','Interface {#IFNAME}: Outbound packets discarded','net.if.out["{#IFNAME}",dropped]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','12a56bb72eef43648293ce1d6c8f9c42');
INSERT INTO `items` (`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`,`uuid`) values ('42367','7','','10343','Interface {#IFNAME}: Outbound packets with errors','net.if.out["{#IFNAME}",errors]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','90362d020e82429d87b0b1688355831d');
INSERT INTO `items` (`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`,`uuid`) values ('42368','7','','10343','Interface {#IFNAME}: Bits sent','net.if.out["{#IFNAME}"]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','63616a66fb5e4fd7a725c5186b47e516');
INSERT INTO `items` (`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`,`uuid`) values ('42369','7','','10343','Interface {#IFNAME}: Operational status','vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"]','1m','7d','0','0','3','','','','',NULL,'909','','','0','','','','','2',NULL,'Reference: https://www.kernel.org/doc/Documentation/networking/operstates.txt','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','83b33479fd774915b100b69c527519c8');
INSERT INTO `items` (`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`,`uuid`) values ('42370','7','','10343','Interface {#IFNAME}: Interface type','vfs.file.contents["/sys/class/net/{#IFNAME}/type"]','1h','7d','0d','0','3','','','','',NULL,'910','','','0','','','','','2',NULL,'Indicates the interface protocol type as a decimal value.\r\nSee include/uapi/linux/if_arp.h for all possible values.\r\nReference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e675114e23414b9dbc2d19d00f32bc70');
INSERT INTO `items` (`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`,`uuid`) values ('42371','15','','10343','{#DEVNAME}: Disk read request avg waiting time (r_await)','vfs.dev.read.await[{#DEVNAME}]','1m','7d','365d','0','0','','!ms','','',NULL,NULL,'(last(//vfs.dev.read.time.rate[{#DEVNAME}])/(last(//vfs.dev.read.rate[{#DEVNAME}])+(last(//vfs.dev.read.rate[{#DEVNAME}])=0)))*1000*(last(//vfs.dev.read.rate[{#DEVNAME}]) > 0)','','0','','','','','2',NULL,'This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1b3559f0d90948f0a72c2fdfdc80930b');
INSERT INTO `items` (`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`,`uuid`) values ('42372','15','','10343','{#DEVNAME}: Disk write request avg waiting time (w_await)','vfs.dev.write.await[{#DEVNAME}]','1m','7d','365d','0','0','','!ms','','',NULL,NULL,'(last(//vfs.dev.write.time.rate[{#DEVNAME}])/(last(//vfs.dev.write.rate[{#DEVNAME}])+(last(//vfs.dev.write.rate[{#DEVNAME}])=0)))*1000*(last(//vfs.dev.write.rate[{#DEVNAME}]) > 0)','','0','','','','','2',NULL,'This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8422c37735774134996be62580e7bf0f');
INSERT INTO `items` (`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`,`uuid`) values ('42373','7','','10343','{#DEVNAME}: Get stats','vfs.file.contents[/sys/block/{#DEVNAME}/stat]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get contents of /sys/block/{#DEVNAME}/stat for disk stats.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','39877664726f4886aa88f3d1592bbcb1');
INSERT INTO `items` (`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`,`uuid`) values ('42374','7','','10343','{#FSNAME}: Free inodes in %','vfs.fs.inode[{#FSNAME},pfree]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5cc9099851ee4f4498fd74ec2c377eb4');
INSERT INTO `items` (`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`,`uuid`) values ('42375','7','','10343','{#FSNAME}: Space utilization','vfs.fs.size[{#FSNAME},pused]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Space utilization in % for {#FSNAME}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b33989051217493cb9124302297e409f');
INSERT INTO `items` (`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`,`uuid`) values ('42376','7','','10343','{#FSNAME}: Total space','vfs.fs.size[{#FSNAME},total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space in Bytes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5cee504041e347719b35ee2c5a6056b8');
INSERT INTO `items` (`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`,`uuid`) values ('42377','7','','10343','{#FSNAME}: Used space','vfs.fs.size[{#FSNAME},used]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used storage in Bytes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f23970d301be4085ab9038d3078b3871');
INSERT INTO `items` (`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`,`uuid`) values ('42384','3','','10248','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'916','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','28f98683b9af4558813287cfa151719b');
INSERT INTO `items` (`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`,`uuid`) values ('42385','20','1.3.6.1.2.1.1.2.0','10248','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5b17833c4646423d8fd4115fa19d2ffe');
INSERT INTO `items` (`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`,`uuid`) values ('42386','15','','10248','Memory utilization','vm.memory.util[snmp]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vm.memory.total[memTotalReal.0])-(last(//vm.memory.free[memAvailReal.0])+last(//vm.memory.buffers[memBuffer.0])+last(//vm.memory.cached[memCached.0])))/last(//vm.memory.total[memTotalReal.0])*100','','0','','','','','0',NULL,'Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','640d893d48d44f2ebe2c9e9bb0158f76');
INSERT INTO `items` (`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`,`uuid`) values ('42387','20','1.3.6.1.4.1.2021.4.5.0','10248','Total memory','vm.memory.total[memTotalReal.0]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB\r\nTotal memory in Bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','de35484e53b24894aa050f15e1941106');
INSERT INTO `items` (`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`,`uuid`) values ('42388','20','1.3.6.1.4.1.2021.4.6.0','10248','Free memory','vm.memory.free[memAvailReal.0]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fc3fb5310e8f4af7a093b9df9eede403');
INSERT INTO `items` (`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`,`uuid`) values ('42389','20','1.3.6.1.4.1.2021.4.15.0','10248','Memory (cached)','vm.memory.cached[memCached.0]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB\r\nMemory used by the page cache and slabs (Cached and Slab in /proc/meminfo).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d5e0a99bfd9844108c3d26d53d1a3d0c');
INSERT INTO `items` (`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`,`uuid`) values ('42390','20','1.3.6.1.4.1.2021.4.14.0','10248','Memory (buffers)','vm.memory.buffers[memBuffer.0]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB\r\nMemory used by kernel buffers (Buffers in /proc/meminfo).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c071dae605b64cce886df7d2865e77e0');
INSERT INTO `items` (`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`,`uuid`) values ('42391','15','','10248','Available memory','vm.memory.available[snmp]','1m','7d','365d','0','3','','B','','',NULL,NULL,'last(//vm.memory.free[memAvailReal.0])+last(//vm.memory.buffers[memBuffer.0])+last(//vm.memory.cached[memCached.0])','','0','','','','','0',NULL,'Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad8a3857e8b04dffbc0c052a0d36fe08');
INSERT INTO `items` (`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`,`uuid`) values ('42392','20','1.3.6.1.2.1.1.3.0','10248','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d3fba18851db4be08df04ab85536bb14');
INSERT INTO `items` (`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`,`uuid`) values ('42393','20','1.3.6.1.4.1.2021.4.3.0','10248','Total swap space','system.swap.total[memTotalSwap.0]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB\r\nThe total amount of swap space configured for this host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7db5193027794961840c228c6280fe5b');
INSERT INTO `items` (`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`,`uuid`) values ('42394','15','','10248','Free swap space in %','system.swap.pfree[snmp]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//system.swap.free[memAvailSwap.0])/last(//system.swap.total[memTotalSwap.0])*100','','0','','','','','0',NULL,'The free space of swap volume/file in percent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','52ae3f1d7b3d4b669b40f0fddbb0e326');
INSERT INTO `items` (`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`,`uuid`) values ('42395','20','1.3.6.1.4.1.2021.4.4.0','10248','Free swap space','system.swap.free[memAvailSwap.0]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB\r\nThe amount of swap space currently unused or available.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a8ad10709a6e457187f58695de20b027');
INSERT INTO `items` (`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`,`uuid`) values ('42396','20','1.3.6.1.2.1.1.5.0','10248','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3ee68ecd1edc4f5d9cddefa78f8d502e');
INSERT INTO `items` (`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`,`uuid`) values ('42397','3','','10248','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','bc5a3fbab2834f8bb012325071c5b2e0');
INSERT INTO `items` (`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`,`uuid`) values ('42398','20','1.3.6.1.2.1.1.6.0','10248','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','9f2b3de3245e4ffea5aefc636e0f3da1');
INSERT INTO `items` (`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`,`uuid`) values ('42399','20','1.3.6.1.2.1.1.1.0','10248','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','abd4d4b7097644478329b578dfa7bf09');
INSERT INTO `items` (`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`,`uuid`) values ('42400','20','1.3.6.1.4.1.2021.11.60.0','10248','Context switches per second','system.cpu.switches[ssRawContexts.0]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e10a890dc6724cbda96f7c40c49cd730');
INSERT INTO `items` (`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`,`uuid`) values ('42401','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10248','Number of CPUs','system.cpu.num[snmp]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nCount the number of CPU cores by counting number of cores discovered in hrProcessorTable using LLD','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f835f2d2e65c4efc8934a61870d907ca');
INSERT INTO `items` (`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`,`uuid`) values ('42402','20','1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-15"]','10248','Load average (15m avg)','system.cpu.load.avg15[laLoad.3]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0a5c406d4e434dbba248a18318f6a869');
INSERT INTO `items` (`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`,`uuid`) values ('42403','20','1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-5"]','10248','Load average (5m avg)','system.cpu.load.avg5[laLoad.2]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e0c8a351d59f42b78e6db4a0c50aa5d2');
INSERT INTO `items` (`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`,`uuid`) values ('42404','20','1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-1"]','10248','Load average (1m avg)','system.cpu.load.avg1[laLoad.1]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eeaba506dee342518660c03d422faa2a');
INSERT INTO `items` (`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`,`uuid`) values ('42405','20','1.3.6.1.4.1.2021.11.59.0','10248','Interrupts per second','system.cpu.intr[ssRawInterrupts.0]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fdb0807c4a9a452f8a3cbab01a4ddb2e');
INSERT INTO `items` (`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`,`uuid`) values ('42406','20','1.3.6.1.2.1.1.4.0','10248','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','e45c4b2df4a640a1a36154cb2b717e9d');
INSERT INTO `items` (`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`,`uuid`) values ('42407','17','','10248','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','85a597b741bb4e6e8fa9806e8737caf4');
INSERT INTO `items` (`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`,`uuid`) values ('42408','3','','10248','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','b1e02fd733c14d71935e24fbe8786d40');
INSERT INTO `items` (`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`,`uuid`) values ('42409','5','','10248','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'917','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','03491bb9b98f4267bf1ff56cc226d819');
INSERT INTO `items` (`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`,`uuid`) values ('42411','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10248','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c29a7bbfba3441b1b155e68cbe44a685');
INSERT INTO `items` (`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`,`uuid`) values ('42412','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10248','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3943b515dcfc4321be0e15eb99eb0077');
INSERT INTO `items` (`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`,`uuid`) values ('42413','20','discovery[{#DEVNAME},1.3.6.1.4.1.2021.13.15.1.1.2]','10248','Block devices discovery','vfs.dev.discovery[snmp]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Block devices are discovered from UCD-DISKIO-MIB::diskIOTable (http://net-snmp.sourceforge.net/docs/mibs/ucdDiskIOMIB.html#diskIOTable)','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','57792d6e2b4e40a8a285848525bec38d');
INSERT INTO `items` (`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`,`uuid`) values ('42414','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4]','10248','Mounted filesystem discovery','vfs.fs.discovery[snmp]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0ba976a284574157b2b51f103a324d43');
INSERT INTO `items` (`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`,`uuid`) values ('42415','20','1.3.6.1.4.1.2021.11.65.0','10248','CPU guest time','system.cpu.guest[ssCpuRawGuest.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nGuest time (time spent running a virtual CPU for a guest operating system).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','528c02f7e0414cb5a97def6702fceb2a');
INSERT INTO `items` (`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`,`uuid`) values ('42416','20','1.3.6.1.4.1.2021.11.66.0','10248','CPU guest nice time','system.cpu.guest_nice[ssCpuRawGuestNice.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nTime spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ce514c83afb345b2b0f3b85d6ec89dc3');
INSERT INTO `items` (`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`,`uuid`) values ('42417','20','1.3.6.1.4.1.2021.11.53.0','10248','CPU idle time','system.cpu.idle[ssCpuRawIdle.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nThe time the CPU has spent doing nothing.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','394bffd2086545af806f4ad990f853a1');
INSERT INTO `items` (`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`,`uuid`) values ('42418','20','1.3.6.1.4.1.2021.11.56.0','10248','CPU interrupt time','system.cpu.interrupt[ssCpuRawInterrupt.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nThe amount of time the CPU has been servicing hardware interrupts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','88e9044abe71483a8670b572517ff4ad');
INSERT INTO `items` (`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`,`uuid`) values ('42419','20','1.3.6.1.4.1.2021.11.54.0','10248','CPU iowait time','system.cpu.iowait[ssCpuRawWait.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nAmount of time the CPU has been waiting for I/O to complete.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','87d1467c79cc4a3d8e5caf3b35de7e17');
INSERT INTO `items` (`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`,`uuid`) values ('42420','20','1.3.6.1.4.1.2021.11.51.0','10248','CPU nice time','system.cpu.nice[ssCpuRawNice.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nThe time the CPU has spent running users\' processes that have been niced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d35896698d2a459fb682eb170e7005de');
INSERT INTO `items` (`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`,`uuid`) values ('42421','20','1.3.6.1.4.1.2021.11.61.0','10248','CPU softirq time','system.cpu.softirq[ssCpuRawSoftIRQ.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nThe amount of time the CPU has been servicing software interrupts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b48b79d7c2464bd996776477e55ce724');
INSERT INTO `items` (`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`,`uuid`) values ('42422','20','1.3.6.1.4.1.2021.11.64.0','10248','CPU steal time','system.cpu.steal[ssCpuRawSteal.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nThe amount of CPU \'stolen\' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f0e15f783b434cc49c97681e15def25c');
INSERT INTO `items` (`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`,`uuid`) values ('42423','20','1.3.6.1.4.1.2021.11.52.0','10248','CPU system time','system.cpu.system[ssCpuRawSystem.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nThe time the CPU has spent running the kernel and its processes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9f063ab6a217459e9e1ae95cc77071ff');
INSERT INTO `items` (`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`,`uuid`) values ('42424','20','1.3.6.1.4.1.2021.11.50.0','10248','CPU user time','system.cpu.user[ssCpuRawUser.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nThe time the CPU has spent running users\' processes that are not niced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e07c1afe5f8c4db0bae364933df3e571');
INSERT INTO `items` (`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`,`uuid`) values ('42425','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10248','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','772ca56d1df84c33847fb3de9a2fa048');
INSERT INTO `items` (`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`,`uuid`) values ('42426','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10248','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','23d5c37a8a66495c81babc76085dd0d0');
INSERT INTO `items` (`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`,`uuid`) values ('42427','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10248','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','229e36fe673e43c0a69f942c086fea97');
INSERT INTO `items` (`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`,`uuid`) values ('42428','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10248','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bbaad86407a349ed81b3b329e0754cdb');
INSERT INTO `items` (`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`,`uuid`) values ('42429','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10248','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','184b63fa8f184915a8bd365afebae00f');
INSERT INTO `items` (`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`,`uuid`) values ('42430','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10248','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad64f09ccd88467f811499ef17096c0a');
INSERT INTO `items` (`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`,`uuid`) values ('42431','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10248','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','54b1b171187b44c2a0b8dfadf06f9b00');
INSERT INTO `items` (`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`,`uuid`) values ('42432','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10248','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'914','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4aaabfdfeeac4c779255fd8b5a4550f4');
INSERT INTO `items` (`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`,`uuid`) values ('42433','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10248','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'915','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ce0a2b8f62ff4591b5e3bc8b348bf946');
INSERT INTO `items` (`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`,`uuid`) values ('42434','20','1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}','10248','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'913','','','0','','','','','2',NULL,'MIB: EtherLike-MIB\r\nThe current mode of operation of the MAC\r\nentity. \'unknown\' indicates that the current\r\nduplex mode could not be determined.\r\n\r\nManagement control of the duplex mode is\r\naccomplished through the MAU MIB. When\r\nan interface does not support autonegotiation,\r\nor when autonegotiation is not enabled, the\r\nduplex mode is controlled using\r\nifMauDefaultType. When autonegotiation is\r\nsupported and enabled, duplex mode is controlled\r\nusing ifMauAutoNegAdvertisedBits. In either\r\ncase, the currently operating duplex mode is\r\nreflected both in this object and in ifMauType.\r\n\r\nNote that this object provides redundant\r\ninformation with ifMauType. Normally, redundant\r\nobjects are discouraged. However, in this\r\ninstance, it allows a management application to\r\ndetermine the duplex status of an interface\r\nwithout having to know every possible value of\r\nifMauType. This was felt to be sufficiently\r\nvaluable to justify the redundancy.\r\nReference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc55ecff67a044b3a6cd17136757fc32');
INSERT INTO `items` (`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`,`uuid`) values ('42435','20','1.3.6.1.4.1.2021.13.15.1.1.5.{#SNMPINDEX}','10248','{#DEVNAME}: Disk read rate','vfs.dev.read.rate[diskIOReads.{#SNMPINDEX}]','1m','7d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-DISKIO-MIB\r\nThe number of read accesses from this device since boot.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b136adad88154c31a123b46522b41191');
INSERT INTO `items` (`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`,`uuid`) values ('42436','20','1.3.6.1.4.1.2021.13.15.1.1.9.{#SNMPINDEX}','10248','{#DEVNAME}: Disk utilization','vfs.dev.util[diskIOLA1.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-DISKIO-MIB\r\nThe 1 minute average load of disk (%)','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b1fb6665c96b4c9f999b3803d45eea3e');
INSERT INTO `items` (`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`,`uuid`) values ('42437','20','1.3.6.1.4.1.2021.13.15.1.1.6.{#SNMPINDEX}','10248','{#DEVNAME}: Disk write rate','vfs.dev.write.rate[diskIOWrites.{#SNMPINDEX}]','1m','7d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-DISKIO-MIB\r\nThe number of write accesses from this device since boot.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','147ad615fd544ab39494ce829da0bb14');
INSERT INTO `items` (`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`,`uuid`) values ('42438','20','1.3.6.1.4.1.2021.9.1.10["index","1.3.6.1.4.1.2021.9.1.2", "{#FSNAME}"]','10248','{#FSNAME}: Free inodes in %','vfs.fs.inode.pfree[dskPercentNode.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nIf having problems collecting this item make sure access to UCD-SNMP-MIB is allowed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','96d3b16a29c44dacbf57127395d4f760');
INSERT INTO `items` (`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`,`uuid`) values ('42439','15','','10248','{#FSNAME}: Space utilization','vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageUsed.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for {#FSNAME}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0cb84e1611e944e68caf677492d169e5');
INSERT INTO `items` (`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`,`uuid`) values ('42440','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10248','{#FSNAME}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in units of hrStorageAllocationUnits.\r\nThis object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.\r\nFor example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9117a148b85c4593a3df470a1e023573');
INSERT INTO `items` (`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`,`uuid`) values ('42441','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10248','{#FSNAME}: Used space','vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','04168e44dd0f4d3c96496c3fadd13fde');
INSERT INTO `items` (`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`,`uuid`) values ('42443','0','','10079','Host name of Zabbix agent running','agent.hostname','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','96c93b959e884934808b4d3c3b2f93d6');
INSERT INTO `items` (`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`,`uuid`) values ('42444','0','','10079','Zabbix agent ping','agent.ping','1m','7d','365d','0','3','','','','',NULL,'919','','','0','','','','','0',NULL,'The agent always returns 1 for this item. It could be used in combination with nodata() for availability check','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3e70e8cc76bb4099a3a6b96f5669f059');
INSERT INTO `items` (`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`,`uuid`) values ('42445','0','','10079','Version of Zabbix agent running','agent.version','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','32e67f37a30c4fb28db9119d9e26a996');
INSERT INTO `items` (`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`,`uuid`) values ('42446','5','','10079','Zabbix agent availability','zabbix[host,agent,available]','1m','7d','365d','0','3','','','','',NULL,'918','','','0','','','','','0',NULL,'Monitoring agent availability status','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d00cf9691f6c446fa35dab03b2201aa4');
INSERT INTO `items` (`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`,`uuid`) values ('42447','0','','10074','Host name of Zabbix agent running','agent.hostname','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','390a1b2080e842f3985b0076509cc550');
INSERT INTO `items` (`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`,`uuid`) values ('42448','0','','10074','Zabbix agent ping','agent.ping','1m','7d','365d','0','3','','','','',NULL,'921','','','0','','','','','0',NULL,'The agent always returns 1 for this item. It could be used in combination with nodata() for availability check.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','99dbf8825c0d4e1f9ae433bcb786d7c7');
INSERT INTO `items` (`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`,`uuid`) values ('42449','0','','10074','Version of Zabbix agent running','agent.version','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c65db5a2b42c46dc90cf4891ad1ecc83');
INSERT INTO `items` (`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`,`uuid`) values ('42450','5','','10074','Zabbix agent availability','zabbix[host,agent,available]','1m','7d','365d','0','3','','','','',NULL,'920','','','0','','','','','0',NULL,'Monitoring agent availability status','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7ab36f1fcf0244229effa26f16889a36');
INSERT INTO `items` (`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`,`uuid`) values ('42451','0','','10078','Host name of Zabbix agent running','agent.hostname','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0a64ce48b94b4886af4bd97beab5f93d');
INSERT INTO `items` (`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`,`uuid`) values ('42452','0','','10078','Zabbix agent ping','agent.ping','1m','7d','365d','0','3','','','','',NULL,'923','','','0','','','','','0',NULL,'The agent always returns 1 for this item. It could be used in combination with nodata() for availability check','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d708ce58ad214d19a740824512e8be6a');
INSERT INTO `items` (`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`,`uuid`) values ('42453','0','','10078','Version of Zabbix agent running','agent.version','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','633a1d74569f4f61892dabf7e0acf6c1');
INSERT INTO `items` (`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`,`uuid`) values ('42454','5','','10078','Zabbix agent availability','zabbix[host,agent,available]','1m','7d','365d','0','3','','','','',NULL,'922','','','0','','','','','0',NULL,'Monitoring agent availability status','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','46dc8d0138314f41962dc357d1e4af20');
INSERT INTO `items` (`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`,`uuid`) values ('42455','0','','10081','Host name of Zabbix agent running','agent.hostname','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','af550a1bfe74428eb24492d8af3b405e');
INSERT INTO `items` (`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`,`uuid`) values ('42456','0','','10081','Zabbix agent ping','agent.ping','1m','7d','365d','0','3','','','','',NULL,'928','','','0','','','','','0',NULL,'The agent always returns 1 for this item. It could be used in combination with nodata() for availability check.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f81e2ce0d1104f9aaf1fc49284ed0ed4');
INSERT INTO `items` (`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`,`uuid`) values ('42457','0','','10081','Number of cores','wmi.get[root/cimv2,"Select NumberOfLogicalProcessors from Win32_ComputerSystem"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of logical processors available on the computer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','83c8c6f15b524a2fb04fc90d04d3e8a2');
INSERT INTO `items` (`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`,`uuid`) values ('42458','0','','10081','Network interfaces WMI get','wmi.getall[root\\cimv2,"select Name,Description,NetConnectionID,Speed,AdapterTypeId,NetConnectionStatus,GUID from win32_networkadapter where PhysicalAdapter=True and NetConnectionStatus>0"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Raw data of win32_networkadapter.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','08b70a5b80fd435ba393e3deb3ca5adb');
INSERT INTO `items` (`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`,`uuid`) values ('42459','15','','10081','Memory utilization','vm.memory.util','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.size[used]) / last(//vm.memory.size[total]) * 100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3b1e4ecaa04a46e9b0aee956918f0713');
INSERT INTO `items` (`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`,`uuid`) values ('42460','0','','10081','Used memory','vm.memory.size[used]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Used memory in Bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1cbf45e11dab453797fe291639aa0c01');
INSERT INTO `items` (`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`,`uuid`) values ('42461','0','','10081','Total memory','vm.memory.size[total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total memory in Bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','09e9a345a0f445b1a65685911f5eb9b0');
INSERT INTO `items` (`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`,`uuid`) values ('42462','0','','10081','Uptime','system.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'System uptime in \'N days, hh:mm:ss\' format.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','12503fbf4400488e9b5ff0488f164cb6');
INSERT INTO `items` (`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`,`uuid`) values ('42463','0','','10081','System description','system.uname','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System description of the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b103a2c22fe344f886e9dc9f4e4a65ec');
INSERT INTO `items` (`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`,`uuid`) values ('42464','0','','10081','Total swap space','system.swap.size[,total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total space of swap volume/file in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f981835baf04494eaff2f33f159e0ab5');
INSERT INTO `items` (`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`,`uuid`) values ('42465','15','','10081','Free swap space','system.swap.free','1m','7d','365d','0','3','','B','','',NULL,NULL,'last(//system.swap.size[,total]) - last(//system.swap.size[,total]) / 100 * last(//perf_counter_en["\\Paging file(_Total)\\% Usage"])','','0','','','','','0',NULL,'The free space of swap volume/file in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','11cac38334544e5cbb028cfd473cb39e');
INSERT INTO `items` (`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`,`uuid`) values ('42466','0','','10081','Operating system architecture','system.sw.arch','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Operating system architecture of the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e8b3476db6d4322a10cd1a28cbdb7ea');
INSERT INTO `items` (`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`,`uuid`) values ('42467','0','','10081','System local time','system.localtime','1m','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'System local time of the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','94c4dfe23e2e4c6e995a3a715941a8eb');
INSERT INTO `items` (`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`,`uuid`) values ('42468','0','','10081','System name','system.hostname','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System host name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cb056886ce72426e833a0445f9263906');
INSERT INTO `items` (`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`,`uuid`) values ('42469','0','','10081','CPU utilization','system.cpu.util','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c2ed8e2efab04564b6c70ee8ad14730f');
INSERT INTO `items` (`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`,`uuid`) values ('42470','0','','10081','Number of processes','proc.num[]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of processes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b305029532f84daf93c8da2d181ac3a1');
INSERT INTO `items` (`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`,`uuid`) values ('42471','0','','10081','Number of threads','perf_counter_en["\\System\\Threads"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of threads used by all running processes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','630b7b2af6274936ab80b1dd774113e5');
INSERT INTO `items` (`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`,`uuid`) values ('42472','0','','10081','CPU queue length','perf_counter_en["\\System\\Processor Queue Length"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Processor Queue Length shows the number of threads that are observed as delayed in the processor Ready Queue\r\nand are waiting to be executed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','002af28df72f4a788c88bc022d88c6dd');
INSERT INTO `items` (`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`,`uuid`) values ('42473','0','','10081','Context switches per second','perf_counter_en["\\System\\Context Switches/sec"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Context Switches/sec is the combined rate at which all processors on the computer are switched from one thread to another.\r\nContext switches occur when a running thread voluntarily relinquishes the processor, is preempted by a higher priority ready thread, or switches between user-mode and privileged (kernel) mode to use an Executive or subsystem service.\r\nIt is the sum of Thread\\\\Context Switches/sec for all threads running on all processors in the computer and is measured in numbers of switches.\r\nThere are context switch counters on the System and Thread objects. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2322a85bfc1049a3b5c892d83b5d5054');
INSERT INTO `items` (`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`,`uuid`) values ('42474','0','','10081','CPU user time','perf_counter_en["\\Processor Information(_total)\\% User Time"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The Processor Information\\% User Time counter shows the percent of time that the processor(s) is spent executing\r\nin User mode.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','575912d512624143b564ca0fbfd0bb8f');
INSERT INTO `items` (`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`,`uuid`) values ('42475','0','','10081','CPU privileged time','perf_counter_en["\\Processor Information(_total)\\% Privileged Time"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The Processor Information\\% Privileged Time counter shows the percent of time that the processor is spent\r\nexecuting in Kernel (or Privileged) mode. Privileged mode includes services interrupts inside Interrupt\r\nService Routines (ISRs), executing Deferred Procedure Calls (DPCs), Device Driver calls and other kernel-mode\r\nfunctions of the Windows® Operating System.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','37448f05afe340a3891d05528c9d1adc');
INSERT INTO `items` (`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`,`uuid`) values ('42476','0','','10081','CPU interrupt time','perf_counter_en["\\Processor Information(_total)\\% Interrupt Time"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The Processor Information\\% Interrupt Time is the time the processor spends receiving and servicing\r\nhardware interrupts during sample intervals. This value is an indirect indicator of the activity of\r\ndevices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication\r\nlines, network interface cards and other peripheral devices. This is an easy way to identify a potential\r\nhardware failure. This should never be higher than 20%.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e403552481b04ebdba2e8a019f114f20');
INSERT INTO `items` (`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`,`uuid`) values ('42477','0','','10081','CPU DPC time','perf_counter_en["\\Processor Information(_total)\\% DPC Time"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Processor DPC time is the time that a single processor spent receiving and servicing deferred procedure\r\ncalls (DPCs). DPCs are interrupts that run at a lower priority than standard interrupts. % DPC Time is a\r\ncomponent of % Privileged Time because DPCs are executed in privileged mode. If a high % DPC Time is\r\nsustained, there may be a processor bottleneck or an application or hardware related issue that can\r\nsignificantly diminish overall system performance.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ee1f116fdab34969a6e6f5e1c25fc3d2');
INSERT INTO `items` (`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`,`uuid`) values ('42478','0','','10081','Used swap space in %','perf_counter_en["\\Paging file(_Total)\\% Usage"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The used space of swap volume/file in percent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b99a722d267d455fad3c07c53302b20f');
INSERT INTO `items` (`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`,`uuid`) values ('42479','0','','10081','Memory pool non-paged','perf_counter_en["\\Memory\\Pool Nonpaged Bytes"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'This measures the size, in bytes, of the non-paged pool. This is an area of system memory for objects\r\nthat cannot be written to disk but instead must remain in physical memory as long as they are allocated.\r\nThere is a possible memory leak if the value is greater than 175MB (or 100MB with the /3GB switch).\r\nA typical Event ID 2019 is recorded in the system event log.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb822cb2a17948208a61bd6661c496df');
INSERT INTO `items` (`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`,`uuid`) values ('42480','0','','10081','Memory pages per second','perf_counter_en["\\Memory\\Pages/sec"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This measures the rate at which pages are read from or written to disk to resolve hard page faults.\r\nIf the value is greater than 1,000, as a result of excessive paging, there may be a memory leak.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','287163bc5b0441c4bf51489432a278eb');
INSERT INTO `items` (`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`,`uuid`) values ('42481','0','','10081','Memory page faults per second','perf_counter_en["\\Memory\\Page Faults/sec"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Page Faults/sec is the average number of pages faulted per second. It is measured in number of pages\r\nfaulted per second because only one page is faulted in each fault operation, hence this is also equal\r\nto the number of page fault operations. This counter includes both hard faults (those that require\r\ndisk access) and soft faults (where the faulted page is found elsewhere in physical memory.) Most\r\nprocessors can handle large numbers of soft faults without significant consequence. However, hard faults,\r\nwhich require disk access, can cause significant delays.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6c41d254585a4d7b81a0c5766a8913c1');
INSERT INTO `items` (`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`,`uuid`) values ('42482','0','','10081','Free system page table entries','perf_counter_en["\\Memory\\Free System Page Table Entries"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This indicates the number of page table entries not currently in use by the system. If the number is less\r\nthan 5,000, there may well be a memory leak or you running out of memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2ea74fafb9334de095adcb47cced578d');
INSERT INTO `items` (`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`,`uuid`) values ('42483','0','','10081','Cache bytes','perf_counter_en["\\Memory\\Cache Bytes"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Cache Bytes is the sum of the Memory\\\\System Cache Resident Bytes, Memory\\\\System Driver Resident Bytes,\r\nMemory\\\\System Code Resident Bytes, and Memory\\\\Pool Paged Resident Bytes counters. This counter displays\r\nthe last observed value only; it is not an average.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5219a246de0641a89685a961cdd08c0b');
INSERT INTO `items` (`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`,`uuid`) values ('42484','0','','10081','Version of Zabbix agent running','agent.version','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5707443d739d4689bde192e75ff4bd0f');
INSERT INTO `items` (`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`,`uuid`) values ('42485','5','','10081','Zabbix agent availability','zabbix[host,agent,available]','1m','7d','365d','0','3','','','','',NULL,'927','','','0','','','','','0',NULL,'Monitoring agent availability status','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3dcb0f79342b4ded97cdec0794472266');
INSERT INTO `items` (`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`,`uuid`) values ('42488','0','','10081','Physical disks discovery','perf_instance_en.discovery[PhysicalDisk]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of installed physical disks.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8f155ebc6fd045b3b7548010af1a73c7');
INSERT INTO `items` (`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`,`uuid`) values ('42489','0','','10081','Windows services discovery','service.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of Windows services of different types as defined in template\'s macros.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cabcad5c3520448f8e1bf222be348b81');
INSERT INTO `items` (`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`,`uuid`) values ('42490','0','','10081','Mounted filesystem discovery','vfs.fs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of file systems of different types.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c22b79b52f9148728095bda2796a753e');
INSERT INTO `items` (`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`,`uuid`) values ('42491','0','','10081','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in["{#IFGUID}",dropped]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of incoming packets dropped on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8a7bb1e8afd24d32a65fa2116ba439ce');
INSERT INTO `items` (`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`,`uuid`) values ('42492','0','','10081','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in["{#IFGUID}",errors]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of incoming packets with errors on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6e1f3dfb91024095a20870ee94d01822');
INSERT INTO `items` (`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`,`uuid`) values ('42493','0','','10081','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in["{#IFGUID}"]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Incoming traffic on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','82accc942f5747a2b399484466625051');
INSERT INTO `items` (`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`,`uuid`) values ('42494','0','','10081','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out["{#IFGUID}",dropped]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of outgoing packets dropped on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9ddb9aaf863a45c0affbd90e4a6fa393');
INSERT INTO `items` (`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`,`uuid`) values ('42495','0','','10081','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out["{#IFGUID}",errors]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of outgoing packets with errors on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','38c8a1aa95b343e39e23e7b508521dad');
INSERT INTO `items` (`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`,`uuid`) values ('42496','0','','10081','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out["{#IFGUID}"]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Outgoing traffic on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3b090da19af842189bb6fa56d49ceec3');
INSERT INTO `items` (`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`,`uuid`) values ('42497','0','','10081','{#DEVNAME}: Disk utilization by idle time','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\% Idle Time",60]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests based on idle time.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','821f46bbf9d7432e9ea0d5f93a868269');
INSERT INTO `items` (`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`,`uuid`) values ('42498','0','','10081','{#DEVNAME}: Average disk read queue length','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk Read Queue Length",60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Average disk read queue, the number of requests outstanding on the disk at the time the performance data is collected.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','77e33448596a498ba211d23a1977e9ca');
INSERT INTO `items` (`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`,`uuid`) values ('42499','0','','10081','{#DEVNAME}: Disk read request avg waiting time','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk sec/Read",60]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time for read requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7d91ed70bc3b4ef2a7991b3a5ba3bde4');
INSERT INTO `items` (`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`,`uuid`) values ('42500','0','','10081','{#DEVNAME}: Disk write request avg waiting time','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk sec/Write",60]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time for write requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','898784d050664f8eaf197ebebc16077e');
INSERT INTO `items` (`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`,`uuid`) values ('42501','0','','10081','{#DEVNAME}: Average disk write queue length','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk Write Queue Length",60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Average disk write queue, the number of requests outstanding on the disk at the time the performance data is collected.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','71a2c065efaa437fb7296972f516bd82');
INSERT INTO `items` (`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`,`uuid`) values ('42502','0','','10081','{#DEVNAME}: Disk average queue size (avgqu-sz)','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Current Disk Queue Length",60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b49884669dbf43cc95ea3d27fb23698c');
INSERT INTO `items` (`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`,`uuid`) values ('42503','0','','10081','{#DEVNAME}: Disk read rate','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Disk Reads/sec",60]','1m','7d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of read operations on the disk.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','390c6e4f2c134ae2939810892eefd6f7');
INSERT INTO `items` (`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`,`uuid`) values ('42504','0','','10081','{#DEVNAME}: Disk write rate','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Disk Writes/sec",60]','1m','7d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of write operations on the disk.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6353d621a9c4415c94247208fc996075');
INSERT INTO `items` (`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`,`uuid`) values ('42505','0','','10081','State of service "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME})','service.info["{#SERVICE.NAME}",state]','1m','7d','365d','0','3','','','','',NULL,'926','','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dd5a027d75fc4ff1a3bb6e69c0d8d592');
INSERT INTO `items` (`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`,`uuid`) values ('42506','0','','10081','{#FSLABEL}({#FSNAME}): Space utilization','vfs.fs.size[{#FSNAME},pused]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Space utilization in % for {#FSNAME}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7bf3bd42cdf444389e6953090900c620');
INSERT INTO `items` (`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`,`uuid`) values ('42507','0','','10081','{#FSLABEL}({#FSNAME}): Total space','vfs.fs.size[{#FSNAME},total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space in Bytes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','69378521b7e844ec89afe753a7cba30e');
INSERT INTO `items` (`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`,`uuid`) values ('42508','0','','10081','{#FSLABEL}({#FSNAME}): Used space','vfs.fs.size[{#FSNAME},used]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used storage in Bytes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a29509b4b7f24c25a768e88e0c23c154');
INSERT INTO `items` (`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`,`uuid`) values ('42512','7','','10351','Host name of Zabbix agent running','agent.hostname','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','042ce35b908748c8bdd322f818c52c85');
INSERT INTO `items` (`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`,`uuid`) values ('42513','7','','10351','Number of processes','proc.num[]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of processes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5229689338ae4a559d3c94a98032131e');
INSERT INTO `items` (`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`,`uuid`) values ('42514','7','','10351','Network interfaces WMI get','wmi.getall[root\\cimv2,"select Name,Description,NetConnectionID,Speed,AdapterTypeId,NetConnectionStatus,GUID from win32_networkadapter where PhysicalAdapter=True and NetConnectionStatus>0"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Raw data of win32_networkadapter.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c35940d1a12e4b96b7114ac8dbbfcec4');
INSERT INTO `items` (`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`,`uuid`) values ('42515','15','','10351','Memory utilization','vm.memory.util','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.size[used]) / last(//vm.memory.size[total]) * 100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9b62965a4670472b8c672dc1021bb8fd');
INSERT INTO `items` (`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`,`uuid`) values ('42516','7','','10351','Used memory','vm.memory.size[used]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Used memory in Bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f85ec8917f084c7d9b6bc36e186d74d6');
INSERT INTO `items` (`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`,`uuid`) values ('42517','7','','10351','Total memory','vm.memory.size[total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total memory in Bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','83185781999742268a7742695c5d3ee3');
INSERT INTO `items` (`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`,`uuid`) values ('42518','7','','10351','Uptime','system.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'System uptime in \'N days, hh:mm:ss\' format.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','695053710ea14cc48692b5cb260d0dfb');
INSERT INTO `items` (`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`,`uuid`) values ('42519','7','','10351','System description','system.uname','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System description of the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8fa1259420ad486ab6e2520c9b047073');
INSERT INTO `items` (`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`,`uuid`) values ('42520','7','','10351','Total swap space','system.swap.size[,total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total space of swap volume/file in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b5af29f7b8ee451895b49c0444e929f4');
INSERT INTO `items` (`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`,`uuid`) values ('42521','15','','10351','Free swap space','system.swap.free','1m','7d','365d','0','3','','B','','',NULL,NULL,'last(//system.swap.size[,total]) - last(//system.swap.size[,total]) / 100 * last(//perf_counter_en["\\Paging file(_Total)\\% Usage"])','','0','','','','','0',NULL,'The free space of swap volume/file in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9d6f14cc540846ab98052bf741a4247b');
INSERT INTO `items` (`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`,`uuid`) values ('42522','7','','10351','Operating system architecture','system.sw.arch','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Operating system architecture of the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16a7ae509f0c4f9d8631efae88fe6324');
INSERT INTO `items` (`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`,`uuid`) values ('42523','7','','10351','System local time','system.localtime','1m','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'System local time of the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','89f928affba54c4a8dc7abead09cac68');
INSERT INTO `items` (`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`,`uuid`) values ('42524','7','','10351','System name','system.hostname','1h','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System host name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5d99b356e30444a0b99e597506f35a69');
INSERT INTO `items` (`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`,`uuid`) values ('42525','7','','10351','CPU utilization','system.cpu.util','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0f3ffe45092d461a91a1296cd6cfb19f');
INSERT INTO `items` (`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`,`uuid`) values ('42526','7','','10351','Number of threads','perf_counter_en["\\System\\Threads"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of threads used by all running processes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c738b97ec0dc49f380ed0e4a27ae9bb6');
INSERT INTO `items` (`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`,`uuid`) values ('42527','7','','10351','Zabbix agent ping','agent.ping','1m','7d','365d','0','3','','','','',NULL,'933','','','0','','','','','0',NULL,'The agent always returns 1 for this item. It could be used in combination with nodata() for availability check.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd8864ac5450401b9ad479c1ee455805');
INSERT INTO `items` (`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`,`uuid`) values ('42528','7','','10351','CPU queue length','perf_counter_en["\\System\\Processor Queue Length"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Processor Queue Length shows the number of threads that are observed as delayed in the processor Ready Queue\r\nand are waiting to be executed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c1da358e5c8f40279c703d93896aa571');
INSERT INTO `items` (`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`,`uuid`) values ('42529','7','','10351','Context switches per second','perf_counter_en["\\System\\Context Switches/sec"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Context Switches/sec is the combined rate at which all processors on the computer are switched from one thread to another.\r\nContext switches occur when a running thread voluntarily relinquishes the processor, is preempted by a higher priority ready thread, or switches between user-mode and privileged (kernel) mode to use an Executive or subsystem service.\r\nIt is the sum of Thread\\\\Context Switches/sec for all threads running on all processors in the computer and is measured in numbers of switches.\r\nThere are context switch counters on the System and Thread objects. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f23957a6fb9a44a3a7010b19b16e77b5');
INSERT INTO `items` (`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`,`uuid`) values ('42530','7','','10351','CPU user time','perf_counter_en["\\Processor Information(_total)\\% User Time"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The Processor Information\\% User Time counter shows the percent of time that the processor(s) is spent executing\r\nin User mode.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','954a81efad4c4791bee052194b900268');
INSERT INTO `items` (`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`,`uuid`) values ('42531','7','','10351','CPU privileged time','perf_counter_en["\\Processor Information(_total)\\% Privileged Time"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The Processor Information\\% Privileged Time counter shows the percent of time that the processor is spent\r\nexecuting in Kernel (or Privileged) mode. Privileged mode includes services interrupts inside Interrupt\r\nService Routines (ISRs), executing Deferred Procedure Calls (DPCs), Device Driver calls and other kernel-mode\r\nfunctions of the Windows® Operating System.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0747e92e52cc4a6a9b83c6f94889bff1');
INSERT INTO `items` (`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`,`uuid`) values ('42532','7','','10351','CPU interrupt time','perf_counter_en["\\Processor Information(_total)\\% Interrupt Time"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The Processor Information\\% Interrupt Time is the time the processor spends receiving and servicing\r\nhardware interrupts during sample intervals. This value is an indirect indicator of the activity of\r\ndevices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication\r\nlines, network interface cards and other peripheral devices. This is an easy way to identify a potential\r\nhardware failure. This should never be higher than 20%.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','32a32b9fea5d49989668a96bc52db87b');
INSERT INTO `items` (`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`,`uuid`) values ('42533','7','','10351','CPU DPC time','perf_counter_en["\\Processor Information(_total)\\% DPC Time"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Processor DPC time is the time that a single processor spent receiving and servicing deferred procedure\r\ncalls (DPCs). DPCs are interrupts that run at a lower priority than standard interrupts. % DPC Time is a\r\ncomponent of % Privileged Time because DPCs are executed in privileged mode. If a high % DPC Time is\r\nsustained, there may be a processor bottleneck or an application or hardware related issue that can\r\nsignificantly diminish overall system performance.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','553249b52ca7492c87386d051ec53db9');
INSERT INTO `items` (`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`,`uuid`) values ('42534','7','','10351','Used swap space in %','perf_counter_en["\\Paging file(_Total)\\% Usage"]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The used space of swap volume/file in percent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4f7b86eff6c84193a2f9187fff578416');
INSERT INTO `items` (`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`,`uuid`) values ('42535','7','','10351','Memory pool non-paged','perf_counter_en["\\Memory\\Pool Nonpaged Bytes"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'This measures the size, in bytes, of the non-paged pool. This is an area of system memory for objects\r\nthat cannot be written to disk but instead must remain in physical memory as long as they are allocated.\r\nThere is a possible memory leak if the value is greater than 175MB (or 100MB with the /3GB switch).\r\nA typical Event ID 2019 is recorded in the system event log.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3af0a0717da747849c2b5a2ebfa61a2c');
INSERT INTO `items` (`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`,`uuid`) values ('42536','7','','10351','Memory pages per second','perf_counter_en["\\Memory\\Pages/sec"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This measures the rate at which pages are read from or written to disk to resolve hard page faults.\r\nIf the value is greater than 1,000, as a result of excessive paging, there may be a memory leak.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','920faa3a434d46d48f99395e16ef04ec');
INSERT INTO `items` (`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`,`uuid`) values ('42537','7','','10351','Memory page faults per second','perf_counter_en["\\Memory\\Page Faults/sec"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Page Faults/sec is the average number of pages faulted per second. It is measured in number of pages\r\nfaulted per second because only one page is faulted in each fault operation, hence this is also equal\r\nto the number of page fault operations. This counter includes both hard faults (those that require\r\ndisk access) and soft faults (where the faulted page is found elsewhere in physical memory.) Most\r\nprocessors can handle large numbers of soft faults without significant consequence. However, hard faults,\r\nwhich require disk access, can cause significant delays.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','19ec57305ba34ed890e2e4c8a500a214');
INSERT INTO `items` (`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`,`uuid`) values ('42538','7','','10351','Free system page table entries','perf_counter_en["\\Memory\\Free System Page Table Entries"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This indicates the number of page table entries not currently in use by the system. If the number is less\r\nthan 5,000, there may well be a memory leak or you running out of memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','71bb18af403248c7818d16444a2eec06');
INSERT INTO `items` (`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`,`uuid`) values ('42539','7','','10351','Cache bytes','perf_counter_en["\\Memory\\Cache Bytes"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Cache Bytes is the sum of the Memory\\\\System Cache Resident Bytes, Memory\\\\System Driver Resident Bytes,\r\nMemory\\\\System Code Resident Bytes, and Memory\\\\Pool Paged Resident Bytes counters. This counter displays\r\nthe last observed value only; it is not an average.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','20dceb831b1a4d63af7635656239c495');
INSERT INTO `items` (`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`,`uuid`) values ('42540','7','','10351','Version of Zabbix agent running','agent.version','1h','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','41cec8b443a94efc9ebca6f66c46ad8a');
INSERT INTO `items` (`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`,`uuid`) values ('42541','7','','10351','Number of cores','wmi.get[root/cimv2,"Select NumberOfLogicalProcessors from Win32_ComputerSystem"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of logical processors available on the computer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3dcf69f6637f496ca0406e0ed403f03c');
INSERT INTO `items` (`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`,`uuid`) values ('42544','7','','10351','Physical disks discovery','perf_instance_en.discovery[PhysicalDisk]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of installed physical disks.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b2a9c04e3e0846ab89d5dbc39d273567');
INSERT INTO `items` (`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`,`uuid`) values ('42545','7','','10351','Windows services discovery','service.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of Windows services of different types as defined in template\'s macros.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dbde6e6c7c13436b9bd20230f1d309ed');
INSERT INTO `items` (`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`,`uuid`) values ('42546','7','','10351','Mounted filesystem discovery','vfs.fs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of file systems of different types.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4fbbdf83609e48e68011f6c394c652f9');
INSERT INTO `items` (`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`,`uuid`) values ('42547','7','','10351','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in["{#IFGUID}",dropped]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of incoming packets dropped on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','344f0ce5ba5244cb90cc08db556e6f9c');
INSERT INTO `items` (`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`,`uuid`) values ('42548','7','','10351','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in["{#IFGUID}",errors]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of incoming packets with errors on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a2461163f9b44b678008e3d5fd96a168');
INSERT INTO `items` (`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`,`uuid`) values ('42549','7','','10351','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in["{#IFGUID}"]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Incoming traffic on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a8f69dac86d646b194f9b204f22aeb3b');
INSERT INTO `items` (`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`,`uuid`) values ('42550','7','','10351','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out["{#IFGUID}",dropped]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of outgoing packets dropped on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','46d947876b844223bb500f29cbf82273');
INSERT INTO `items` (`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`,`uuid`) values ('42551','7','','10351','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out["{#IFGUID}",errors]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of outgoing packets with errors on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1f5854d4ad5d4b65b63e5ca9ffa5007c');
INSERT INTO `items` (`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`,`uuid`) values ('42552','7','','10351','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out["{#IFGUID}"]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Outgoing traffic on the network interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1adceed263804e089108bb2cc1aa51e1');
INSERT INTO `items` (`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`,`uuid`) values ('42553','7','','10351','{#DEVNAME}: Disk utilization by idle time','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\% Idle Time",60]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests based on idle time.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','714bbd069d34400895df413fe4627543');
INSERT INTO `items` (`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`,`uuid`) values ('42554','7','','10351','{#DEVNAME}: Average disk read queue length','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk Read Queue Length",60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Average disk read queue, the number of requests outstanding on the disk at the time the performance data is collected.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','abdcdffc92114fda93d4893c772cf14a');
INSERT INTO `items` (`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`,`uuid`) values ('42555','7','','10351','{#DEVNAME}: Disk read request avg waiting time','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk sec/Read",60]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time for read requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','208b3a3868844e85a7e3e5f3940d744d');
INSERT INTO `items` (`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`,`uuid`) values ('42556','7','','10351','{#DEVNAME}: Disk write request avg waiting time','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk sec/Write",60]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time for write requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6a162aca790c48a7bd726d54494d67e9');
INSERT INTO `items` (`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`,`uuid`) values ('42557','7','','10351','{#DEVNAME}: Average disk write queue length','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk Write Queue Length",60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Average disk write queue, the number of requests outstanding on the disk at the time the performance data is collected.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ba3a369741544f6c88a476a4f2d30ab2');
INSERT INTO `items` (`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`,`uuid`) values ('42558','7','','10351','{#DEVNAME}: Disk average queue size (avgqu-sz)','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Current Disk Queue Length",60]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','24d15f53439148919e11d5811f25adf1');
INSERT INTO `items` (`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`,`uuid`) values ('42559','7','','10351','{#DEVNAME}: Disk read rate','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Disk Reads/sec",60]','1m','7d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of read operations on the disk.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c1424c1c2fe647a8baf3357c34ae261e');
INSERT INTO `items` (`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`,`uuid`) values ('42560','7','','10351','{#DEVNAME}: Disk write rate','perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Disk Writes/sec",60]','1m','7d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of write operations on the disk.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4d10e563bbd1402daa1c9c8516095aa8');
INSERT INTO `items` (`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`,`uuid`) values ('42561','7','','10351','State of service "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME})','service.info["{#SERVICE.NAME}",state]','1m','7d','365d','0','3','','','','',NULL,'931','','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d6379e85f1974734abbe60fef1a6ca1d');
INSERT INTO `items` (`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`,`uuid`) values ('42562','7','','10351','{#FSLABEL}({#FSNAME}): Space utilization','vfs.fs.size[{#FSNAME},pused]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Space utilization in % for {#FSNAME}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8949201f93ab46f0a0ad95ca6ce6124c');
INSERT INTO `items` (`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`,`uuid`) values ('42563','7','','10351','{#FSLABEL}({#FSNAME}): Total space','vfs.fs.size[{#FSNAME},total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space in Bytes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d45f2c3469dd424486bdee586e4a61eb');
INSERT INTO `items` (`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`,`uuid`) values ('42564','7','','10351','{#FSLABEL}({#FSNAME}): Used space','vfs.fs.size[{#FSNAME},used]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used storage in Bytes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ddd24d7eaa5742ac9d6cbae42bcfa1ae');
INSERT INTO `items` (`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`,`uuid`) values ('42568','3','','10249','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'936','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d751b3ead8cd4509a3f87c9bb4c89f00');
INSERT INTO `items` (`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`,`uuid`) values ('42569','3','','10249','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','9e311b1e5e8841da85c5ec6145d9c75f');
INSERT INTO `items` (`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`,`uuid`) values ('42570','3','','10249','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','fba6328e6e6240f28c1b901a9c2fc376');
INSERT INTO `items` (`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`,`uuid`) values ('42571','17','','10249','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','b75c480b7ec648a5b2762b20fc5c2ed8');
INSERT INTO `items` (`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`,`uuid`) values ('42572','20','1.3.6.1.2.1.1.4.0','10249','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','dd26c7a0a46240279bb907b8a1253029');
INSERT INTO `items` (`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`,`uuid`) values ('42573','20','discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2]','10249','CPU utilization','system.cpu.util','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe average, over the last minute, of the percentage of time that processors was not idle.\r\nImplementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','16a592f6b9f64403999f92d677f1cd2e');
INSERT INTO `items` (`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`,`uuid`) values ('42574','20','1.3.6.1.2.1.1.1.0','10249','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e95e030765e84abfa5a51194e81ac719');
INSERT INTO `items` (`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`,`uuid`) values ('42575','20','1.3.6.1.2.1.1.6.0','10249','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','d19b9bfdfe7344a28eaf69a1b7961adb');
INSERT INTO `items` (`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`,`uuid`) values ('42576','20','1.3.6.1.2.1.1.5.0','10249','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9feb2f561b3d4356bc6ef2cac955a495');
INSERT INTO `items` (`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`,`uuid`) values ('42577','20','1.3.6.1.2.1.1.2.0','10249','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c9e67b57c15747e8ab4f67e24837ce49');
INSERT INTO `items` (`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`,`uuid`) values ('42578','20','1.3.6.1.2.1.1.3.0','10249','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','af7f47f4cf884282bbd9d296ba61b1c2');
INSERT INTO `items` (`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`,`uuid`) values ('42579','5','','10249','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'937','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4863042ade2143a0b34e1fc9403742b0');
INSERT INTO `items` (`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`,`uuid`) values ('42580','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10249','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c6bc0ce8a4c4452a3bd0c0c67a6995c');
INSERT INTO `items` (`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`,`uuid`) values ('42581','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4]','10249','Storage discovery','vfs.fs.discovery[snmp]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b2c0a897e22d438f8b1bbff44e493b13');
INSERT INTO `items` (`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`,`uuid`) values ('42582','20','discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4]','10249','Memory discovery','vm.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with memory filter','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','23bb0567e4194546a09da96ded5182dd');
INSERT INTO `items` (`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`,`uuid`) values ('42583','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10249','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9208bd833e4044f395ac14c8213885de');
INSERT INTO `items` (`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`,`uuid`) values ('42584','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10249','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','758aca2642c146ddad89ed9934077533');
INSERT INTO `items` (`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`,`uuid`) values ('42585','20','1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX}','10249','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifInOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','713b5c5067174b90b686737606616664');
INSERT INTO `items` (`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`,`uuid`) values ('42586','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10249','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2d76edd04b2c4d35a15fc04749edfedc');
INSERT INTO `items` (`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`,`uuid`) values ('42587','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10249','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','40fe302325ff452997f34cb05d517c59');
INSERT INTO `items` (`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`,`uuid`) values ('42588','20','1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX}','10249','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifOutOctets.{#SNMPINDEX}]','3m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','48652cf9a87142d39df11617f354df36');
INSERT INTO `items` (`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`,`uuid`) values ('42589','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10249','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','389b55d85fcc49219a055d0db005c715');
INSERT INTO `items` (`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`,`uuid`) values ('42590','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10249','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','7d','0','0','3','','','','',NULL,'934','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','71e55a8fd22c443e8a39a44c4c22433b');
INSERT INTO `items` (`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`,`uuid`) values ('42591','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10249','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','7d','0d','0','3','','','','',NULL,'935','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad62c98e35b24d0082c07ea4543963ad');
INSERT INTO `items` (`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`,`uuid`) values ('42592','15','','10249','{#FSNAME}: Space utilization','vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageUsed.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Space utilization in % for {#FSNAME}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1524fab7760340b1a6eb8f5368d11edd');
INSERT INTO `items` (`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`,`uuid`) values ('42593','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10249','{#FSNAME}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in units of hrStorageAllocationUnits.\r\nThis object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.\r\nFor example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','19d244950a414faa86cbcaf0d2859cbd');
INSERT INTO `items` (`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`,`uuid`) values ('42594','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10249','{#FSNAME}: Used space','vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2d00ecfcea564fef8b94d293d023b709');
INSERT INTO `items` (`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`,`uuid`) values ('42595','20','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}','10249','{#MEMNAME}: Total memory','vm.memory.total[hrStorageSize.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe size of the storage represented by this entry, in units of hrStorageAllocationUnits.\r\nThis object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.\r\nFor example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ea1c8d22d38042f7ac824d59b9d6a720');
INSERT INTO `items` (`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`,`uuid`) values ('42596','20','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}','10249','{#MEMNAME}: Used memory','vm.memory.used[hrStorageUsed.{#SNMPINDEX}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','71453175f6f54027a8e428b7438af99a');
INSERT INTO `items` (`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`,`uuid`) values ('42597','15','','10249','{#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','5ccc66d7a78f4501b794bd46759c738b');
INSERT INTO `items` (`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`,`uuid`) values ('42598','3','','10385','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'938','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','030530f5193246f4b983ec802030e49b');
INSERT INTO `items` (`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`,`uuid`) values ('42599','3','','10385','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','c82fa3f20c7443e4849ea8e8aec1e49d');
INSERT INTO `items` (`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`,`uuid`) values ('42600','3','','10385','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','0a95c43c70e54ad49f073fee69a2452d');
INSERT INTO `items` (`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`,`uuid`) values ('42601','17','','10385','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','2ec396a7adf64637ae453d7f26cd5b20');
INSERT INTO `items` (`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`,`uuid`) values ('42602','20','1.3.6.1.2.1.1.4.0','10385','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','e98719af84414ef5ab3dd788c7d2d72f');
INSERT INTO `items` (`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`,`uuid`) values ('42603','20','1.3.6.1.2.1.1.1.0','10385','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cf59fb53834d4b14bdb0251e66c5143f');
INSERT INTO `items` (`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`,`uuid`) values ('42604','20','1.3.6.1.2.1.1.6.0','10385','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','fed7a954ea614cb086b901b2e6957621');
INSERT INTO `items` (`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`,`uuid`) values ('42605','20','1.3.6.1.2.1.1.5.0','10385','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','354fe7cd2632425b9f937e8714d79798');
INSERT INTO `items` (`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`,`uuid`) values ('42606','20','1.3.6.1.2.1.1.2.0','10385','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bf571c06cc264eca89d68f0b0b7559f7');
INSERT INTO `items` (`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`,`uuid`) values ('42607','20','1.3.6.1.2.1.1.3.0','10385','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f14eaa207ac9480995d2a2a10bea1467');
INSERT INTO `items` (`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`,`uuid`) values ('42608','5','','10385','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'939','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','197767da1b3c4c4f8f3c59ab3c3fc5b8');
INSERT INTO `items` (`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`,`uuid`) values ('42609','3','','10378','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'44','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','62c6bb1b70ee4ece865b562e298cafb0');
INSERT INTO `items` (`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`,`uuid`) values ('42610','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','f7c934ef77d04c00bdec19f8e3950d85');
INSERT INTO `items` (`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`,`uuid`) values ('42611','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','72f8c27991b7440ba186f6eb037605cf');
INSERT INTO `items` (`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`,`uuid`) values ('42612','17','','10378','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','4380826947fc4df6a341fe074f42da6a');
INSERT INTO `items` (`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`,`uuid`) values ('42613','20','1.3.6.1.2.1.1.4.0','10378','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','045800cfeaf6448ab9a9e97f8b5172c1');
INSERT INTO `items` (`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`,`uuid`) values ('42614','20','1.3.6.1.2.1.1.1.0','10378','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c12c6668d9564855b227dee42a9d86f8');
INSERT INTO `items` (`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`,`uuid`) values ('42615','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\r\nThe physical location of this node (e.g., `telephone closet, 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','f46b736cdb7f44fcacf33d272d905db8');
INSERT INTO `items` (`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`,`uuid`) values ('42616','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\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','65c5b2a3742c4c6d8a04c63bb96b46c6');
INSERT INTO `items` (`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`,`uuid`) values ('42617','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\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2d9d7b390c774a188a07dbb5bb4a583e');
INSERT INTO `items` (`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`,`uuid`) values ('42618','20','1.3.6.1.2.1.1.3.0','10378','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','564b458cee7a4a2bb2b4f4777bead32d');
INSERT INTO `items` (`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`,`uuid`) values ('42619','5','','10378','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'940','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fff713712c44477aa081445d9962c002');
INSERT INTO `items` (`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`,`uuid`) values ('42620','3','','10304','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'941','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','250be2514e9246e08058a403bf674cf6');
INSERT INTO `items` (`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`,`uuid`) values ('42621','3','','10304','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','c7eaba8c2b7d4b4aa14081957252e33e');
INSERT INTO `items` (`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`,`uuid`) values ('42622','3','','10304','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','88b4a6cc507748e19f08d0ffc9a15368');
INSERT INTO `items` (`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`,`uuid`) values ('42623','17','','10304','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','00b0172971e34784836d03e76b3480bd');
INSERT INTO `items` (`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`,`uuid`) values ('42624','20','1.3.6.1.2.1.1.4.0','10304','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','50df0ad347d94cffb871256c6340af11');
INSERT INTO `items` (`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`,`uuid`) values ('42625','20','1.3.6.1.2.1.1.1.0','10304','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','235302070dc54f148b92027967a6ff2f');
INSERT INTO `items` (`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`,`uuid`) values ('42626','20','1.3.6.1.2.1.1.6.0','10304','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','7ba9b86064ad432a9e6d1922ca29edda');
INSERT INTO `items` (`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`,`uuid`) values ('42627','20','1.3.6.1.2.1.1.5.0','10304','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4674d8adc39343f7b46d21cae2ec1310');
INSERT INTO `items` (`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`,`uuid`) values ('42628','20','1.3.6.1.2.1.1.2.0','10304','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','05fe3cb6d2004e7ea2d37742fc2549d3');
INSERT INTO `items` (`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`,`uuid`) values ('42629','20','1.3.6.1.2.1.1.3.0','10304','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1b0551aa2d184c8d923788b5d159ed7c');
INSERT INTO `items` (`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`,`uuid`) values ('42630','5','','10304','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'942','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b80f6a30ad124a1ea863f2fdb868ba6f');
INSERT INTO `items` (`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`,`uuid`) values ('42631','3','','10255','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'943','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e06043e05d5a4c1da6b851bd43d66bda');
INSERT INTO `items` (`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`,`uuid`) values ('42632','3','','10255','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','98ab999f96db4eceb4f347baf2df80a9');
INSERT INTO `items` (`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`,`uuid`) values ('42633','3','','10255','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','52b385efc0a54f5590f55716e4a179bf');
INSERT INTO `items` (`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`,`uuid`) values ('42634','17','','10255','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','2f3d32242b0740e7830a4dff872308ac');
INSERT INTO `items` (`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`,`uuid`) values ('42635','20','1.3.6.1.2.1.1.4.0','10255','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','ca82831e78f74372bb9be8f2c97ee9ac');
INSERT INTO `items` (`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`,`uuid`) values ('42636','20','1.3.6.1.2.1.1.1.0','10255','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','13bd109b9a814ba4837eb98b8daf98a5');
INSERT INTO `items` (`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`,`uuid`) values ('42637','20','1.3.6.1.2.1.1.6.0','10255','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','59a77e7fe66f4412bb117f8283216ce3');
INSERT INTO `items` (`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`,`uuid`) values ('42638','20','1.3.6.1.2.1.1.5.0','10255','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2f76314dc3204e898df338f238f7d407');
INSERT INTO `items` (`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`,`uuid`) values ('42639','20','1.3.6.1.2.1.1.2.0','10255','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','737d790ef008450b81a69559ed1ee963');
INSERT INTO `items` (`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`,`uuid`) values ('42640','20','1.3.6.1.2.1.1.3.0','10255','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','522c04c2c624478b8de4287f863ea67a');
INSERT INTO `items` (`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`,`uuid`) values ('42641','5','','10255','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'944','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6bcba0816ea942f6a87078070c82e7c3');
INSERT INTO `items` (`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`,`uuid`) values ('42642','3','','10256','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'945','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5abff4175d1640b9b633c4d9184bd243');
INSERT INTO `items` (`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`,`uuid`) values ('42643','3','','10256','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','1db2fcdd357e4d15a989c0511bbed8bd');
INSERT INTO `items` (`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`,`uuid`) values ('42644','3','','10256','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','8be612f43d1d40ce9efd3c36d18e6a20');
INSERT INTO `items` (`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`,`uuid`) values ('42645','17','','10256','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','0107bcd0d6b840c4a64061ee83e69f11');
INSERT INTO `items` (`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`,`uuid`) values ('42646','20','1.3.6.1.2.1.1.4.0','10256','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','2203e586148a418f9e2f06b38c340b53');
INSERT INTO `items` (`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`,`uuid`) values ('42647','20','1.3.6.1.2.1.1.1.0','10256','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','03ff0b6d9c7a483eaae565d90473d291');
INSERT INTO `items` (`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`,`uuid`) values ('42648','20','1.3.6.1.2.1.1.6.0','10256','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','84ed489ba1be43738be79f8a71b60381');
INSERT INTO `items` (`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`,`uuid`) values ('42649','20','1.3.6.1.2.1.1.5.0','10256','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','88baf9f1da184fc78a49b064f0b4de85');
INSERT INTO `items` (`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`,`uuid`) values ('42650','20','1.3.6.1.2.1.1.2.0','10256','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d02b8e2d5c7a4afabc2fbadc8674288c');
INSERT INTO `items` (`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`,`uuid`) values ('42651','20','1.3.6.1.2.1.1.3.0','10256','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','05166eb015534cae9798f9266d3d0a6b');
INSERT INTO `items` (`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`,`uuid`) values ('42652','5','','10256','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'946','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e5ebd75f34f24502b3cdc2a707fb24c5');
INSERT INTO `items` (`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`,`uuid`) values ('42653','3','','10258','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'947','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','303807b2799f4f7cace3d781e9ed1715');
INSERT INTO `items` (`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`,`uuid`) values ('42654','3','','10258','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','4af423253e1b4960825b49041d9c8feb');
INSERT INTO `items` (`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`,`uuid`) values ('42655','3','','10258','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','b1659e3298fb447f8ee93e8bab98a22d');
INSERT INTO `items` (`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`,`uuid`) values ('42656','17','','10258','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','e0a1cdb1df4d408087a8ed3d473ce1fe');
INSERT INTO `items` (`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`,`uuid`) values ('42657','20','1.3.6.1.2.1.1.4.0','10258','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','6686560b390540b593a2d3bb3289ea41');
INSERT INTO `items` (`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`,`uuid`) values ('42658','20','1.3.6.1.2.1.1.1.0','10258','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','905c91ce799849dfb56b800c93849826');
INSERT INTO `items` (`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`,`uuid`) values ('42659','20','1.3.6.1.2.1.1.6.0','10258','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','589def06a1b74a7f8ada7cc4576aa9eb');
INSERT INTO `items` (`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`,`uuid`) values ('42660','20','1.3.6.1.2.1.1.5.0','10258','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','596ce9f7e6b848e4869cd195996c7114');
INSERT INTO `items` (`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`,`uuid`) values ('42661','20','1.3.6.1.2.1.1.2.0','10258','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad8eada79b464821a14759f32f6d7f2a');
INSERT INTO `items` (`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`,`uuid`) values ('42662','20','1.3.6.1.2.1.1.3.0','10258','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','97cd7cf6a9a545788a2f709bacb925ed');
INSERT INTO `items` (`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`,`uuid`) values ('42663','5','','10258','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'948','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','59d2bec423a84ca186d5785ddea5270b');
INSERT INTO `items` (`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`,`uuid`) values ('42664','3','','10259','ICMP ping','icmpping','1m','1w','365d','0','3','','','','',NULL,'949','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7c60cd8613094b95bfd0ad45d04bc0e8');
INSERT INTO `items` (`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`,`uuid`) values ('42665','3','','10259','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','4a8bd0d13bab4666aaf4c53b7722ec74');
INSERT INTO `items` (`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`,`uuid`) values ('42666','3','','10259','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','feb1b9189b904b42b17ac4e1db49806e');
INSERT INTO `items` (`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`,`uuid`) values ('42667','17','','10259','SNMP traps (fallback)','snmptrap.fallback','1m','2w','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The 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','cadc501d69624baa8ad292c2c8f6fd52');
INSERT INTO `items` (`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`,`uuid`) values ('42668','20','1.3.6.1.2.1.1.4.0','10259','System contact details','system.contact[sysContact.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','ccba865de57a41718b53ff1f82b2ca87');
INSERT INTO `items` (`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`,`uuid`) values ('42669','20','1.3.6.1.2.1.1.1.0','10259','System description','system.descr[sysDescr.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nA textual description of the entity. This value should\r\ninclude the full name and version identification of the system\'s hardware type, software operating-system, and\r\nnetworking software.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','70f51b4370c64c2bab2c811359ef690b');
INSERT INTO `items` (`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`,`uuid`) values ('42670','20','1.3.6.1.2.1.1.6.0','10259','System location','system.location[sysLocation.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node (e.g., `telephone closet, 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','52169be1d3924c638476a290590066f3');
INSERT INTO `items` (`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`,`uuid`) values ('42671','20','1.3.6.1.2.1.1.5.0','10259','System name','system.name','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nAn administratively-assigned name for this managed node.By convention, this is the node\'s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','afa2acff36034dccb96a1946e7039f39');
INSERT INTO `items` (`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`,`uuid`) values ('42672','20','1.3.6.1.2.1.1.2.0','10259','System object ID','system.objectid[sysObjectID.0]','15m','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor\'s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box\' is being managed. For example, if vendor`Flintstones, Inc.\' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a0c0d3ee729b4a159719271232024b45');
INSERT INTO `items` (`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`,`uuid`) values ('42673','20','1.3.6.1.2.1.1.3.0','10259','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc33c0e22893432280d642c75020a222');
INSERT INTO `items` (`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`,`uuid`) values ('42674','5','','10259','SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'950','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e205f1aa96a448a2955e988fa8528600');
INSERT INTO `items` (`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`,`uuid`) values ('42675','3','','10094','HTTP service is running','net.tcp.service[http]','1m','1w','365d','0','3','','','','',NULL,'2','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5cf1d86051e34f47aec2bb0d97cf6b44');
INSERT INTO `items` (`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`,`uuid`) values ('42679','0','','10001','Interface {#IFNAME}: Speed','vfs.file.contents["/sys/class/net/{#IFNAME}/speed"]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the interface latest or current speed value. Value is an integer representing the link speed in bits/sec.\r\nThis attribute is only valid for interfaces that implement the ethtool get_link_ksettings method (mostly Ethernet).\r\nReference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f4c456e1f9ef4adbbd11f1ee17fa4d76');
INSERT INTO `items` (`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`,`uuid`) values ('42680','0','','10276','Interface {#IFNAME}: Speed','vfs.file.contents["/sys/class/net/{#IFNAME}/speed"]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the interface latest or current speed value. Value is an integer representing the link speed in bits/sec.\r\nThis attribute is only valid for interfaces that implement the ethtool get_link_ksettings method (mostly Ethernet).\r\nReference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4644f15077474647bc7104431cf1bb74');
INSERT INTO `items` (`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`,`uuid`) values ('42682','7','','10343','Interface {#IFNAME}: Speed','vfs.file.contents["/sys/class/net/{#IFNAME}/speed"]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the interface latest or current speed value. Value is an integer representing the link speed in bits/sec.\r\nThis attribute is only valid for interfaces that implement the ethtool get_link_ksettings method (mostly Ethernet).\r\n\r\nReference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','86dd61015ecc43428803b309bdfa9691');
INSERT INTO `items` (`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`,`uuid`) values ('42683','7','','10342','Interface {#IFNAME}: Speed','vfs.file.contents["/sys/class/net/{#IFNAME}/speed"]','5m','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the interface latest or current speed value. Value is an integer representing the link speed in bits/sec.\r\nThis attribute is only valid for interfaces that implement the ethtool get_link_ksettings method (mostly Ethernet).\r\n\r\nReference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7b3413b3321a4756b8f369a9633a393e');
INSERT INTO `items` (`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`,`uuid`) values ('42684','3','','10175','VMware: Get sensors','vmware.hv.sensors.get[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Master item for sensors data.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c9d6ffb53624758ad888bf70f69218c');
INSERT INTO `items` (`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`,`uuid`) values ('42689','16','','10169','Garbage collector discovery','jmx.discovery["beans","java.lang:name=*,type=GarbageCollector"]','4h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','1',NULL,'Garbage collectors metrics discovery.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7e0c60c6b1b34b5c99fa446076f35c28');
INSERT INTO `items` (`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`,`uuid`) values ('42690','16','','10169','Memory pool discovery','jmx.discovery["beans","java.lang:name=*,type=MemoryPool"]','4h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','1',NULL,'Memory pools metrics discovery.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b5dfe8bb0a754289a716092ad305ceed');
INSERT INTO `items` (`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`,`uuid`) values ('42691','16','','10169','GarbageCollector: {#JMXNAME} number of collections per second','jmx["java.lang:name={#JMXNAME},type=GarbageCollector","CollectionCount"]','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','2',NULL,'Displays the total number of collections that have occurred per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','61ad48ae9013481184d33222c7660bef');
INSERT INTO `items` (`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`,`uuid`) values ('42692','16','','10169','GarbageCollector: {#JMXNAME} accumulated time spent in collection','jmx["java.lang:name={#JMXNAME},type=GarbageCollector","CollectionTime"]','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','2',NULL,'Displays the approximate accumulated collection elapsed time, in seconds.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8e3db2efbe714f918ece15216fae628b');
INSERT INTO `items` (`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`,`uuid`) values ('42693','16','','10169','Memory pool: {#JMXNAME} committed','jmx["java.lang:name={#JMXNAME},type=MemoryPool","Usage.committed"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','2',NULL,'Current memory allocated.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8b3da0f9b0b64b58b25ffed71a679ed0');
INSERT INTO `items` (`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`,`uuid`) values ('42694','16','','10169','Memory pool: {#JMXNAME} maximum size','jmx["java.lang:name={#JMXNAME},type=MemoryPool","Usage.max"]','1m','7d','365d','0','0','','B','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','2',NULL,'Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f8504be0098b41a6b789c67f88f1c861');
INSERT INTO `items` (`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`,`uuid`) values ('42695','16','','10169','Memory pool: {#JMXNAME} used','jmx["java.lang:name={#JMXNAME},type=MemoryPool","Usage.used"]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','2',NULL,'Current memory usage.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','74f11991286a474b838898036ebb82e5');
INSERT INTO `items` (`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`,`uuid`) values ('42696','15','','10504','Kubernetes API: Client certificate expiration, p1','kubernetes.api.client_certificate_expiration_p1[{#SINGLETON}]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.api.client_certificate_expiration_seconds_bucket[*],5m,1)','','0','','','','','2',NULL,'1 percentile of the remaining lifetime on the certificate used to authenticate a request.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','b69600f22c7b42b48f8601ada06a5a9f');
INSERT INTO `items` (`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`,`uuid`) values ('42697','15','','10509','Kubernetes Scheduler: Binding duration, p90','kubernetes.scheduler.binding_duration_p90[{#SINGLETON}]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.binding_duration[*],5m,90)','','0','','','','','2',NULL,'90 percentile of binding latency in seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','19ba0e215a9f4e13b3079fcdaf124cc5');
INSERT INTO `items` (`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`,`uuid`) values ('42698','15','','10509','Kubernetes Scheduler: Binding duration, p50','kubernetes.scheduler.binding_duration_p50[{#SINGLETON}]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.binding_duration[*],5m,50)','','0','','','','','2',NULL,'50 percentile of binding latency in seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','5f40c030c1964ff7ab7786cee97bee81');
INSERT INTO `items` (`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`,`uuid`) values ('42699','15','','10509','Kubernetes Scheduler: Binding duration, p95','kubernetes.scheduler.binding_duration_p95[{#SINGLETON}]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.binding_duration[*],5m,95)','','0','','','','','2',NULL,'99 percentile of binding latency in seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','b24d657a1568437fac77535a80d63bc3');
INSERT INTO `items` (`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`,`uuid`) values ('42700','15','','10509','Kubernetes Scheduler: Binding duration, p99','kubernetes.scheduler.binding_duration_p99[{#SINGLETON}]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.binding_duration[*],5m,99)','','0','','','','','2',NULL,'95 percentile of binding latency in seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','258d5d4b6534488a92ba29185e3ca56f');
INSERT INTO `items` (`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`,`uuid`) values ('42701','15','','10509','Kubernetes Scheduler: Scheduling algorithm duration, p90','kubernetes.scheduler.scheduling_algorithm_duration_p90[{#SINGLETON}]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.scheduling_algorithm_duration[*],5m,90)','','0','','','','','2',NULL,'90 percentile of scheduling algorithm latency in seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','2368f2c98f3641bdbd030d94ca53a4dd');
INSERT INTO `items` (`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`,`uuid`) values ('42702','15','','10509','Kubernetes Scheduler: Scheduling algorithm duration, p50','kubernetes.scheduler.scheduling_algorithm_duration_p50[{#SINGLETON}]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.scheduling_algorithm_duration[*],5m,50)','','0','','','','','2',NULL,'50 percentile of scheduling algorithm latency in seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','3df35ee6e86a424f89f51bb74cb40b9d');
INSERT INTO `items` (`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`,`uuid`) values ('42703','15','','10509','Kubernetes Scheduler: Scheduling algorithm duration, p95','kubernetes.scheduler.scheduling_algorithm_duration_p95[{#SINGLETON}]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.scheduling_algorithm_duration[*],5m,95)','','0','','','','','2',NULL,'95 percentile of scheduling algorithm latency in seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','6ca6a2480c4343a8b9a4e6598ec86501');
INSERT INTO `items` (`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`,`uuid`) values ('42704','15','','10509','Kubernetes Scheduler: Scheduling algorithm duration, p99','kubernetes.scheduler.scheduling_algorithm_duration_p99[{#SINGLETON}]','1m','7d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.scheduling_algorithm_duration[*],5m,99)','','0','','','','','2',NULL,'99 percentile of scheduling algorithm latency in seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','1','955f0989372c4f9d82ad364b09f5efea');
INSERT INTO `items` (`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`,`uuid`) values ('42729','21','','10516','Openweathermap: Get data','openweathermap.get.data','10m','0d','0','0','4','','','','',NULL,NULL,'var params = JSON.parse(value),\r\n request = new HttpRequest(),\r\n data = [],\r\n error_msg = [],\r\n measurement,\r\n temp_unit,\r\n wind_unit,\r\n errors_only = [],\r\n error_locations = [],\r\n unique_errors,\r\n new_error_msg;\r\n \r\nfunction getHttpData(query) {\r\n url = params.api_endpoint + query + \'&appid=\' + params.apikey + \'&units=\' + params.units + \'&lang=\' + params.lang;\r\n response = request.get(url);\r\n Zabbix.log(4, \'[ Openweathermap ] [ \' + url + \' ] Received response with status code \' + request.getStatus() + \': \' + response);\r\n \r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n throw \'Failed to parse response.\';\r\n }\r\n }\r\n \r\n if (request.getStatus() !== 200) {\r\n if (response.error && response.error.message) {\r\n throw response.error.message;\r\n } \r\n else {\r\n throw \'Failed to receive data. Invalid response status code: \' + request.getStatus();\r\n }\r\n }\r\n return response;\r\n}\r\n \r\nswitch (params.units) {\r\n case \'metric\':\r\n measurement = \'metric\';\r\n temp_unit = \'C\';\r\n wind_unit = \'meter/sec\';\r\n break;\r\n case \'imperial\':\r\n measurement = \'imperial\';\r\n temp_unit = \'F\';\r\n wind_unit = \'miles/hour\';\r\n break;\r\n default:\r\n measurement = \'standard\';\r\n temp_unit = \'K\';\r\n wind_unit = \'meter/sec\';\r\n}\r\n \r\nlocations = params.location.split(\'|\');\r\nfor (var i in locations) {\r\n try {\r\n if (/^[0-9]+$/g.test(locations[i])) {\r\n result = getHttpData(\'id=\' + locations[i]);\r\n } \r\n else if (/^.*,[\\w]+$/g.test(locations[i])) {\r\n result = getHttpData(\'zip=\' + locations[i]);\r\n }\r\n else if (/^(\\-)?[0-9]{1,2}(\\.[0-9]+)?,(\\-)?[0-9]{1,2}(\\.[0-9]+)?/g.test(locations[i])) {\r\n coordinates = locations[i].split(\',\');\r\n result = getHttpData(\'lat=\' + coordinates[0] + \'&lon=\' + coordinates[1]);\r\n }\r\n else {\r\n result = getHttpData(\'q=\' + encodeURIComponent(locations[i]));\r\n }\r\n if (!data.filter(function (location) { return location.id === result.id; }).length) {\r\n result.measurement = measurement;\r\n result.temp_unit = temp_unit;\r\n result.wind_unit = wind_unit;\r\n data.push(result);\r\n }\r\n } catch (error) {\r\n errors = {};\r\n errors.location = locations[i];\r\n errors.error = error.toString();\r\n error_msg.push(errors);\r\n errors_only.push(error.toString());\r\n }\r\n}\r\n\r\nif (error_msg.length === 0) {\r\n return JSON.stringify({\r\n \'data\': data,\r\n \'errors\': error_msg.toString()\r\n });\r\n} else {\r\n unique_errors = errors_only.filter(function (value, index, self) { \r\n return self.indexOf(value) == index; \r\n });\r\n \r\n if (unique_errors.length === 1) {\r\n for (var j in error_msg) {\r\n error_locations.push(error_msg[j].location);\r\n }\r\n new_error_msg = \'Failed to retrieve data for the following locations: \' + error_locations + \'. \' + unique_errors[0];\r\n \r\n return JSON.stringify({\r\n \'data\': data,\r\n \'errors\': new_error_msg\r\n });\r\n } else {\r\n return JSON.stringify({\r\n \'data\': data,\r\n \'errors\': error_msg\r\n });\r\n }\r\n}','','0','','','','','0',NULL,'JSON array with result of OpenWeatherMap API requests.','0','30d','0','',NULL,'{$OPENWEATHERMAP.DATA.TIMEOUT}','','','','200','1','0','','0','0','0','0','0','0','0','7db240f752294b2eb86537d6c06cac5e');
INSERT INTO `items` (`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`,`uuid`) values ('42743','0','','10329','PostgreSQL: Get queries','pgsql.queries["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}","{$PG.QUERY_ETIME.MAX.WARN}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics by query execution time','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','01123126fcd54adc84c3bbfa227d9c0c');
INSERT INTO `items` (`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`,`uuid`) values ('42753','21','','10517','Proxmox: API service status','proxmox.api.available','5m','7d','365d','0','3','','','','',NULL,'954','try {\r\n var params = JSON.parse(value);\r\n var req = new HttpRequest();\r\n req.addHeader(\'Authorization: PVEAPIToken=\' + params.token + \'=\' + params.secret);\r\n req.get(encodeURI(\'https://\' + params.url + \':\' + params.port + \'/api2/json/version\')); \r\n} catch (error) {\r\n Zabbix.log(3, "Proxmox API failed: " + params.url + " Error: " + error);\r\n if (!Number.isInteger(error))\r\n return 520;\r\n}\r\nreturn req.getStatus();','','0','','','','','0',NULL,'Get API service status.','0','30d','0','',NULL,'10s','','','','200','1','0','','0','0','0','0','0','0','0','75f8f8c507774f529ade4bc4255f5fd2');
INSERT INTO `items` (`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`,`uuid`) values ('42754','19','','10517','Proxmox: Get cluster resources','proxmox.cluster.resources','5m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Resources index.','0','30d','0','',NULL,'3s','https://{HOST.CONN}:{$PVE.URL.PORT}/api2/json/cluster/resources','','','200','1','0','Authorization: PVEAPIToken={$PVE.TOKEN.ID}={$PVE.TOKEN.SECRET}','0','0','0','0','0','0','0','4fe4fa1323cd481f8aff3bfb716eeae2');
INSERT INTO `items` (`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`,`uuid`) values ('42755','19','','10517','Proxmox: Get cluster status','proxmox.cluster.status','5m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get cluster status information.','0','30d','0','',NULL,'3s','https://{HOST.CONN}:{$PVE.URL.PORT}/api2/json/cluster/status','','','200','1','0','Authorization: PVEAPIToken={$PVE.TOKEN.ID}={$PVE.TOKEN.SECRET}','0','0','0','0','0','0','0','6e6a5046b8154bafad375813ca210e1f');
INSERT INTO `items` (`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`,`uuid`) values ('42761','19','','10517','Proxmox: LXC [{#LXC.NAME}/{#LXC.NAME}]: Status','proxmox.lxc.status[{#LXC.ID}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Read LXC status.','0','30d','0','',NULL,'3s','https://{HOST.CONN}:{$PVE.URL.PORT}/api2/json/nodes/{#NODE.NAME}/{#LXC.ID}/status/current','','','200','1','0','Authorization: PVEAPIToken={$PVE.TOKEN.ID}={$PVE.TOKEN.SECRET}','0','0','0','0','0','0','0','58efec1a4bb94bfab59d5985d036811e');
INSERT INTO `items` (`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`,`uuid`) values ('42762','19','','10517','Proxmox: Node [{#NODE.NAME}]: Time','proxmox.node.time[{#NODE.NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Read server time and time zone settings.','0','30d','0','',NULL,'3s','https://{HOST.CONN}:{$PVE.URL.PORT}/api2/json/nodes/{#NODE.NAME}/time','','','200','1','0','Authorization: PVEAPIToken={$PVE.TOKEN.ID}={$PVE.TOKEN.SECRET}','0','0','0','0','0','0','0','c0c03653a0af426b8f61c77cabab38a4');
INSERT INTO `items` (`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`,`uuid`) values ('42763','19','','10517','Proxmox: Node [{#NODE.NAME}]: Status','proxmox.node.status[{#NODE.NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Read node status.','0','30d','0','',NULL,'3s','https://{HOST.CONN}:{$PVE.URL.PORT}/api2/json/nodes/{#NODE.NAME}/status','','','200','1','0','Authorization: PVEAPIToken={$PVE.TOKEN.ID}={$PVE.TOKEN.SECRET}','0','0','0','0','0','0','0','c1ea4d4f83114c9b96fe81069602f060');
INSERT INTO `items` (`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`,`uuid`) values ('42764','19','','10517','Proxmox: Node [{#NODE.NAME}]: RRD statistics','proxmox.node.rrd[{#NODE.NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Read node RRD statistics.','0','30d','0','',NULL,'3s','https://{HOST.CONN}:{$PVE.URL.PORT}/api2/json/nodes/{#NODE.NAME}/rrddata','[{"timeframe":"hour"},{"cf":"AVERAGE"}]','','200','1','0','Authorization: PVEAPIToken={$PVE.TOKEN.ID}={$PVE.TOKEN.SECRET}','0','0','0','0','0','0','0','fa2a60a98fd4445eadff4398ae6872bd');
INSERT INTO `items` (`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`,`uuid`) values ('42765','19','','10517','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME}]: Status','proxmox.qemu.status[{#QEMU.ID}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Read VM status.','0','30d','0','',NULL,'3s','https://{HOST.CONN}:{$PVE.URL.PORT}/api2/json/nodes/{#NODE.NAME}/{#QEMU.ID}/status/current','','','200','1','0','Authorization: PVEAPIToken={$PVE.TOKEN.ID}={$PVE.TOKEN.SECRET}','0','0','0','0','0','0','0','a3562f2f48834a88842da612fb6f464c');
INSERT INTO `items` (`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`,`uuid`) values ('42807','3','','10518','TrueNAS: ICMP ping','icmpping','1m','7d','365d','0','3','','','','',NULL,'959','','','0','','','','','0',NULL,'Host accessibility by ICMP.\r\n0 - ICMP ping fails.\r\n1 - ICMP ping successful.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c6e16d985fac4070a076c41be78bc29e');
INSERT INTO `items` (`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`,`uuid`) values ('42808','20','.1.3.6.1.4.1.50536.1.5.4.0','10518','TrueNAS: L2ARC write rate','truenas.zfs.l2arc.write','1m','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB\r\nWrite rate from L2 cache in bytes per second.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1e04b61c5b0242b095c41495f9f28b57');
INSERT INTO `items` (`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`,`uuid`) values ('42809','20','.1.3.6.1.4.1.50536.1.4.5.0','10518','TrueNAS: ARC misses','truenas.zfs.arc.misses','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB\r\nTotal amount of cache misses in the ARC per second.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','51b0901f89ca49f18b5af0c6325190ad');
INSERT INTO `items` (`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`,`uuid`) values ('42810','20','.1.3.6.1.4.1.50536.1.4.7.0','10518','TrueNAS: ARC target size of MRU','truenas.zfs.arc.p','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB\r\nARC target size of MRU in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5b00055c79174a65af5168b47fb4dbd1');
INSERT INTO `items` (`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`,`uuid`) values ('42811','20','.1.3.6.1.4.1.50536.1.4.1.0','10518','TrueNAS: ARC size','truenas.zfs.arc.size','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB\r\nARC size in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a677b4991bc94e5b929bcf9f6a0c08ee');
INSERT INTO `items` (`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`,`uuid`) values ('42812','20','.1.3.6.1.4.1.50536.1.5.1.0','10518','TrueNAS: L2ARC hits','truenas.zfs.l2arc.hits','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB\r\nHits to the L2 cache per second.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2b2ca373849045969f6dbcd411a7e688');
INSERT INTO `items` (`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`,`uuid`) values ('42813','20','.1.3.6.1.4.1.50536.1.5.2.0','10518','TrueNAS: L2ARC misses','truenas.zfs.l2arc.misses','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB\r\nMisses to the L2 cache per second.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ff6827a36cc9451f801dcf5a433378de');
INSERT INTO `items` (`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`,`uuid`) values ('42814','20','.1.3.6.1.4.1.50536.1.5.3.0','10518','TrueNAS: L2ARC read rate','truenas.zfs.l2arc.read','1m','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB\r\nRead rate from L2 cache in bytes per second.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d3408357df26465794eeb6d6706ee05a');
INSERT INTO `items` (`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`,`uuid`) values ('42815','20','.1.3.6.1.4.1.50536.1.5.5.0','10518','TrueNAS: L2ARC size','truenas.zfs.l2arc.size','1m','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB\r\nL2ARC size in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab95d192720b4f5fa897fed6f1aa40e2');
INSERT INTO `items` (`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`,`uuid`) values ('42816','20','.1.3.6.1.4.1.50536.1.6.1.0','10518','TrueNAS: ZIL operations 1 second','truenas.zfs.zil.ops1','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB\r\nThe ops column parsed from the command zilstat 1 1.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a504d960680346ad863c5f2117301200');
INSERT INTO `items` (`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`,`uuid`) values ('42817','20','.1.3.6.1.4.1.50536.1.4.2.0','10518','TrueNAS: ARC metadata size','truenas.zfs.arc.meta','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB\r\nARC metadata size used in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','db3cee6cf685446ca880e3ba0c7a51f1');
INSERT INTO `items` (`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`,`uuid`) values ('42818','20','.1.3.6.1.4.1.50536.1.6.2.0','10518','TrueNAS: ZIL operations 5 seconds','truenas.zfs.zil.ops5','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB\r\nThe ops column parsed from the command zilstat 5 1.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d82112c728704383b873289f0b8bbce6');
INSERT INTO `items` (`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`,`uuid`) values ('42819','20','.1.3.6.1.4.1.50536.1.6.3.0','10518','TrueNAS: ZIL operations 10 seconds','truenas.zfs.zil.ops10','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB\r\nThe ops column parsed from the command zilstat 10 1.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','598dda71f21a410a82ba5b96e1564166');
INSERT INTO `items` (`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`,`uuid`) values ('42820','15','','10518','TrueNAS: Available memory','vm.memory.available','1m','7d','365d','0','3','','B','','',NULL,NULL,'last(//vm.memory.free)+last(//vm.memory.buffers)+last(//vm.memory.cached)','','0','','','','','0',NULL,'Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','43901b6beb7f4f559464775863d19976');
INSERT INTO `items` (`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`,`uuid`) values ('42821','20','1.3.6.1.4.1.2021.4.14.0','10518','TrueNAS: Memory (buffers)','vm.memory.buffers','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB\r\nThe total amount of real or virtual memory currently allocated for use as memory buffers.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3b6007f808e04eefafe236737773ce7f');
INSERT INTO `items` (`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`,`uuid`) values ('42822','20','1.3.6.1.4.1.2021.4.15.0','10518','TrueNAS: Memory (cached)','vm.memory.cached','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB\r\nThe total amount of real or virtual memory currently allocated for use as cached memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ab4c02a4c1fc4ef69a31e9b83a1a9263');
INSERT INTO `items` (`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`,`uuid`) values ('42823','20','1.3.6.1.4.1.2021.4.6.0','10518','TrueNAS: Free memory','vm.memory.free','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB\r\nThe amount of real/physical memory currently unused or available.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d55491912c814481b0931e836838e9b0');
INSERT INTO `items` (`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`,`uuid`) values ('42824','20','1.3.6.1.4.1.2021.4.5.0','10518','TrueNAS: Total memory','vm.memory.total','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB\r\nTotal memory in Bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e3802f02a4364e6bb37fb7fe780c4137');
INSERT INTO `items` (`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`,`uuid`) values ('42825','15','','10518','TrueNAS: Memory utilization','vm.memory.util','1m','7d','365d','0','0','','%','','',NULL,NULL,'(last(//vm.memory.total)-(last(//vm.memory.free)+last(//vm.memory.buffers)+last(//vm.memory.cached)))/last(//vm.memory.total)*100','','0','','','','','0',NULL,'Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c70fad7e758e480fbae726a677a29ead');
INSERT INTO `items` (`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`,`uuid`) values ('42826','20','.1.3.6.1.4.1.50536.1.4.10.0','10518','TrueNAS: ARC cache miss ratio','truenas.zfs.arc.miss.ratio','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB\r\nARC cache miss ration percentage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d39e5b7524054b5c8121a5b67506fc52');
INSERT INTO `items` (`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`,`uuid`) values ('42827','20','.1.3.6.1.4.1.50536.1.4.4.0','10518','TrueNAS: ARC hits','truenas.zfs.arc.hits','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB\r\nTotal amount of cache hits in the ARC per second.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f4c6c12561944975999b59c30744b375');
INSERT INTO `items` (`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`,`uuid`) values ('42828','3','','10518','TrueNAS: ICMP loss','icmppingloss','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of lost packets.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9b420a4b29c6455ab2540a8601c70cb5');
INSERT INTO `items` (`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`,`uuid`) values ('42829','20','1.3.6.1.2.1.1.1.0','10518','TrueNAS: System description','system.descr','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nSystem description of the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','992e99f0114f4f7589de8dacb56c8c28');
INSERT INTO `items` (`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`,`uuid`) values ('42830','3','','10518','TrueNAS: ICMP response time','icmppingsec','1m','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'ICMP ping response time (in seconds).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3788e73db5d64245b9ee3819fdfcf4d5');
INSERT INTO `items` (`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`,`uuid`) values ('42831','20','1.3.6.1.2.1.1.4.0','10518','TrueNAS: System contact details','system.contact','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact 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','0ee6f31c4e49445083a7db5cf9508b17');
INSERT INTO `items` (`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`,`uuid`) values ('42832','20','1.3.6.1.4.1.2021.11.59.0','10518','TrueNAS: Interrupts per second','system.cpu.intr','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB\r\nNumber of interrupts processed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b41b8db2212848db83a6a0d9369fecdd');
INSERT INTO `items` (`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`,`uuid`) values ('42833','20','1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-1"]','10518','TrueNAS: Load average (1m avg)','system.cpu.load.avg1','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB\r\nThe 1 minute load averages.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4283476959894b78956973be95d33e72');
INSERT INTO `items` (`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`,`uuid`) values ('42834','20','1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-5"]','10518','TrueNAS: Load average (5m avg)','system.cpu.load.avg5','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB\r\nThe 5 minutes load averages.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a7885b68d6644a2ab5875e742a7bc06f');
INSERT INTO `items` (`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`,`uuid`) values ('42835','20','1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-15"]','10518','TrueNAS: Load average (15m avg)','system.cpu.load.avg15','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB\r\nThe 15 minutes load averages.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5263b1258bd24219a3f1a7d11012b316');
INSERT INTO `items` (`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`,`uuid`) values ('42836','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1]','10518','TrueNAS: Number of CPUs','system.cpu.num','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nCount the number of CPU cores by counting number of cores discovered in hrProcessorTable using LLD.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','94366f840edc4686a230682d623f1f41');
INSERT INTO `items` (`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`,`uuid`) values ('42837','20','1.3.6.1.4.1.2021.11.60.0','10518','TrueNAS: Context switches per second','system.cpu.switches','1m','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB\r\nNumber of context switches.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c8740f4489c04eedb072869e27f68a60');
INSERT INTO `items` (`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`,`uuid`) values ('42838','20','1.3.6.1.2.1.1.6.0','10518','TrueNAS: System location','system.location','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe physical location of this node. 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','140ebe2bbc744575b0a0776168432666');
INSERT INTO `items` (`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`,`uuid`) values ('42839','20','.1.3.6.1.4.1.50536.1.4.9.0','10518','TrueNAS: ARC cache hit ratio','truenas.zfs.arc.hit.ratio','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB\r\nARC cache hit ration percentage.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e3c72ceecec2478685e4bd5983e48c12');
INSERT INTO `items` (`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`,`uuid`) values ('42840','20','1.3.6.1.2.1.1.5.0','10518','TrueNAS: System name','system.name','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nSystem host name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','213d20b760c3424f9257cc9fa77c40fb');
INSERT INTO `items` (`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`,`uuid`) values ('42841','20','1.3.6.1.2.1.1.2.0','10518','TrueNAS: System object ID','system.objectid','15m','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nThe vendor authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining what kind of box is being managed.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fc6ed50ea4764ee6852ecd45b667f8df');
INSERT INTO `items` (`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`,`uuid`) values ('42842','20','1.3.6.1.4.1.2021.4.4.0','10518','TrueNAS: Free swap space','system.swap.free','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB\r\nThe amount of swap space currently unused or available.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e61f086a8a3942569e6c7f67b24e8f86');
INSERT INTO `items` (`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`,`uuid`) values ('42843','15','','10518','TrueNAS: Free swap space in %','system.swap.pfree','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//system.swap.free)/last(//system.swap.total)*100','','0','','','','','0',NULL,'The free space of swap volume/file in percent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2a075af85eed44c8adba2cb7bc657b40');
INSERT INTO `items` (`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`,`uuid`) values ('42844','20','1.3.6.1.4.1.2021.4.3.0','10518','TrueNAS: Total swap space','system.swap.total','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB\r\nThe total amount of swap space configured for this host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b0fc3cd77ed348bb955fc98d8636ab76');
INSERT INTO `items` (`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`,`uuid`) values ('42845','20','1.3.6.1.2.1.25.1.1.0','10518','TrueNAS: Uptime','system.uptime','30s','7d','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB\r\nSystem uptime in \'N days, hh:mm:ss\' format.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a5f8ef4ba55e450d863d2237e940fad5');
INSERT INTO `items` (`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`,`uuid`) values ('42846','20','.1.3.6.1.4.1.50536.1.4.6.0','10518','TrueNAS: ARC target size of cache','truenas.zfs.arc.c','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB\r\nARC target size of cache in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2eaaabc61df64756a35aec95650abf7c');
INSERT INTO `items` (`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`,`uuid`) values ('42847','20','.1.3.6.1.4.1.50536.1.4.3.0','10518','TrueNAS: ARC data size','truenas.zfs.arc.data','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB\r\nARC data size used in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a4ae886ac205413c85df7c527a9aadb3');
INSERT INTO `items` (`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`,`uuid`) values ('42848','5','','10518','TrueNAS: SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'960','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','76b7f3e3ec0044718bf3a9c254c1f832');
INSERT INTO `items` (`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`,`uuid`) values ('42850','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10518','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ebf01415c97e4cbaa84d39a392af7c37');
INSERT INTO `items` (`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`,`uuid`) values ('42851','20','discovery[{#DISK_NAME},.1.3.6.1.4.1.50536.3.1.2]','10518','Disks temperature discovery','truenas.disk.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Disks temperature discovery from FREENAS-MIB.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b3906a308e4c4631a96a4aa188d22c74');
INSERT INTO `items` (`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`,`uuid`) values ('42852','20','discovery[{#DATASET_NAME},.1.3.6.1.4.1.50536.1.2.1.1.2,{#DATASET_ALLOC_UNITS},.1.3.6.1.4.1.50536.1.2.1.1.3]','10518','ZFS datasets discovery','truenas.zfs.dataset.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'ZFS datasets discovery from FREENAS-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f3d22d302e274b12927afd9453bb787a');
INSERT INTO `items` (`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`,`uuid`) values ('42853','20','discovery[{#POOLNAME},.1.3.6.1.4.1.50536.1.1.1.1.2,{#POOL_ALLOC_UNITS},.1.3.6.1.4.1.50536.1.1.1.1.3]','10518','ZFS pools discovery','truenas.zfs.pools.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'ZFS pools discovery from FREENAS-MIB.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','edde9729f6304a9b83d31a1c62356fdd');
INSERT INTO `items` (`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`,`uuid`) values ('42854','20','discovery[{#ZVOL_NAME},.1.3.6.1.4.1.50536.1.3.1.1.2,{#ZVOL_ALLOC_UNITS},.1.3.6.1.4.1.50536.1.3.1.1.3]','10518','ZFS volumes discovery','truenas.zfs.zvols.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'ZFS volumes discovery from FREENAS-MIB.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dfeb1df58c024b27a0a65206d896975c');
INSERT INTO `items` (`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`,`uuid`) values ('42855','20','discovery[{#DEVNAME},1.3.6.1.4.1.2021.13.15.1.1.2]','10518','Block devices discovery','vfs.dev.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Block devices are discovered from UCD-DISKIO-MIB::diskIOTable (http://net-snmp.sourceforge.net/docs/mibs/ucdDiskIOMIB.html#diskIOTable).','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1f992aa87f9e4074a8cba928b2017a03');
INSERT INTO `items` (`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`,`uuid`) values ('42856','20','1.3.6.1.4.1.2021.11.11.0','10518','TrueNAS: CPU idle time','system.cpu.idle[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nThe time the CPU has spent doing nothing.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','03eaea043f2b4aee9ccc562ae5390656');
INSERT INTO `items` (`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`,`uuid`) values ('42857','20','1.3.6.1.4.1.2021.11.56.0','10518','TrueNAS: CPU interrupt time','system.cpu.interrupt[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nThe amount of time the CPU has been servicing hardware interrupts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','378d399d09bd4197b20f575f023a9423');
INSERT INTO `items` (`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`,`uuid`) values ('42858','20','1.3.6.1.4.1.2021.11.54.0','10518','TrueNAS: CPU iowait time','system.cpu.iowait[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nAmount of time the CPU has been waiting for I/O to complete.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bd17c78973cf482a8916645847a9814f');
INSERT INTO `items` (`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`,`uuid`) values ('42859','20','1.3.6.1.4.1.2021.11.51.0','10518','TrueNAS: CPU nice time','system.cpu.nice[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nThe time the CPU has spent running users\' processes that have been niced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e25d8fe2e3b24fff86fe2d91e9b4f16e');
INSERT INTO `items` (`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`,`uuid`) values ('42860','20','1.3.6.1.4.1.2021.11.52.0','10518','TrueNAS: CPU system time','system.cpu.system[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nThe time the CPU has spent running the kernel and its processes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6782830d2a25423fb0db137d66b2f2dd');
INSERT INTO `items` (`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`,`uuid`) values ('42861','20','1.3.6.1.4.1.2021.11.50.0','10518','TrueNAS: CPU user time','system.cpu.user[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB\r\nThe time the CPU has spent running users\' processes that are not niced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d38eaa9cf17a4778b0b6dfea897e3e6e');
INSERT INTO `items` (`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`,`uuid`) values ('42862','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10518','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Inbound packets discarded','net.if.in.discards[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','71257fe84dde4281854f4f74f0ea1e4c');
INSERT INTO `items` (`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`,`uuid`) values ('42863','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10518','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Inbound packets with errors','net.if.in.errors[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d5d20ce0e2c9429b9b0c5eea23d3dca5');
INSERT INTO `items` (`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`,`uuid`) values ('42864','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10518','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Bits received','net.if.in[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a7f3b11533ac411d8133e6e859f63d61');
INSERT INTO `items` (`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`,`uuid`) values ('42865','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10518','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Outbound packets discarded','net.if.out.discards[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','35c209485ac34a7ebebe7c4785f448b5');
INSERT INTO `items` (`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`,`uuid`) values ('42866','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10518','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Outbound packets with errors','net.if.out.errors[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','07adb0c51d6b4f34ab21e48744cad18d');
INSERT INTO `items` (`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`,`uuid`) values ('42867','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10518','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Bits sent','net.if.out[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4406d8a768ce41c6b383657e22cbf4a1');
INSERT INTO `items` (`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`,`uuid`) values ('42868','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10518','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Speed','net.if.speed[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','94231ecd77da47b49ee2df1afd302e97');
INSERT INTO `items` (`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`,`uuid`) values ('42869','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10518','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Operational status','net.if.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'957','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','50bfa188160747b98c3ee4043cb60a96');
INSERT INTO `items` (`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`,`uuid`) values ('42870','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10518','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Interface type','net.if.type[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'958','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2f37ffca1e2e47ebadef5a4ed316dd90');
INSERT INTO `items` (`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`,`uuid`) values ('42871','20','.1.3.6.1.4.1.50536.3.1.3.{#SNMPINDEX}','10518','TrueNAS: Disk [{#DISK_NAME}]: Temperature','truenas.disk.temp[{#DISK_NAME}]','1m','7d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB\r\nThe temperature of this HDD in mC.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7de2508fff174bd78b4ea0424a67fbf9');
INSERT INTO `items` (`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`,`uuid`) values ('42872','20','.1.3.6.1.4.1.50536.1.2.1.1.6.{#SNMPINDEX}','10518','TrueNAS: Dataset [{#DATASET_NAME}]: Available space','truenas.dataset.avail[{#DATASET_NAME}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB\r\nThe available size of the dataset in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3c3eab95b8e74e608fe3b7abab98c76b');
INSERT INTO `items` (`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`,`uuid`) values ('42873','15','','10518','TrueNAS: Dataset [{#DATASET_NAME}]: Usage in %','truenas.dataset.pused[{#DATASET_NAME}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//truenas.dataset.used[{#DATASET_NAME}]) * 100 / last(//truenas.dataset.size.total[{#DATASET_NAME}])','','0','','','','','2',NULL,'The used size of the dataset in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fd6b3a3ebfb041b3a9026fb1b4370ec7');
INSERT INTO `items` (`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`,`uuid`) values ('42874','20','.1.3.6.1.4.1.50536.1.2.1.1.4.{#SNMPINDEX}','10518','TrueNAS: Dataset [{#DATASET_NAME}]: Total space','truenas.dataset.size.total[{#DATASET_NAME}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB\r\nThe size of the dataset in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5ead1929891a4152b581f9adf35ce4ce');
INSERT INTO `items` (`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`,`uuid`) values ('42875','20','.1.3.6.1.4.1.50536.1.2.1.1.5.{#SNMPINDEX}','10518','TrueNAS: Dataset [{#DATASET_NAME}]: Used space','truenas.dataset.used[{#DATASET_NAME}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB\r\nThe used size of the dataset in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0e24fceacd64430abed01294ffd28104');
INSERT INTO `items` (`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`,`uuid`) values ('42876','20','.1.3.6.1.4.1.50536.1.1.1.1.6.{#SNMPINDEX}','10518','TrueNAS: Pool [{#POOLNAME}]: Available space','truenas.zpool.avail[{#POOLNAME}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB\r\nThe available size of the storage pool in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2727c62d279f46b0938b1ef6c3b70fe5');
INSERT INTO `items` (`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`,`uuid`) values ('42877','20','.1.3.6.1.4.1.50536.1.1.1.1.7.{#SNMPINDEX}','10518','TrueNAS: Pool [{#POOLNAME}]: Health','truenas.zpool.health[{#POOLNAME}]','1m','7d','365d','0','3','','','','',NULL,'956','','','0','','','','','2',NULL,'MIB: FREENAS-MIB\r\nThe current health of the containing pool, as reported by zpool status.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','382c3a50845f4d96a44dc22704768d41');
INSERT INTO `items` (`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`,`uuid`) values ('42878','15','','10518','TrueNAS: Pool [{#POOLNAME}]: Usage in %','truenas.zpool.pused[{#POOLNAME}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//truenas.zpool.used[{#POOLNAME}]) * 100 / last(//truenas.zpool.size.total[{#POOLNAME}])','','0','','','','','2',NULL,'The used size of the storage pool in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5f972063f958463ab132b8d478092bd8');
INSERT INTO `items` (`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`,`uuid`) values ('42879','20','.1.3.6.1.4.1.50536.1.1.1.1.10.{#SNMPINDEX}','10518','TrueNAS: Pool [{#POOLNAME}]: Read rate','truenas.zpool.read.bytes[{#POOLNAME}]','1m','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB\r\nThe bandwidth of all read operations (including metadata), expressed as units per second (averaged since system booted).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b5766173631a47ee8c58e24f5c0523b5');
INSERT INTO `items` (`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`,`uuid`) values ('42880','20','.1.3.6.1.4.1.50536.1.1.1.1.8.{#SNMPINDEX}','10518','TrueNAS: Pool [{#POOLNAME}]: Read operations rate','truenas.zpool.read.ops[{#POOLNAME}]','1m','7d','365d','0','0','','IOPS','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB\r\nThe number of read I/O operations sent to the pool or device, including metadata requests (averaged since system booted).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f32abc8617c6466d8a92219def967bd8');
INSERT INTO `items` (`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`,`uuid`) values ('42881','20','.1.3.6.1.4.1.50536.1.1.1.1.4.{#SNMPINDEX}','10518','TrueNAS: Pool [{#POOLNAME}]: Total space','truenas.zpool.size.total[{#POOLNAME}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB\r\nThe size of the storage pool in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','567422ecdcec49faac94540f64a05e3a');
INSERT INTO `items` (`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`,`uuid`) values ('42882','20','.1.3.6.1.4.1.50536.1.1.1.1.5.{#SNMPINDEX}','10518','TrueNAS: Pool [{#POOLNAME}]: Used space','truenas.zpool.used[{#POOLNAME}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB\r\nThe used size of the storage pool in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fe5cf78cdcdd4386982f5cd204d99283');
INSERT INTO `items` (`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`,`uuid`) values ('42883','20','.1.3.6.1.4.1.50536.1.1.1.1.11.{#SNMPINDEX}','10518','TrueNAS: Pool [{#POOLNAME}]: Write rate','truenas.zpool.write.bytes[{#POOLNAME}]','1m','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB\r\nThe bandwidth of all write operations, expressed as units per second (averaged since system booted).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d11e981ec16c4da0aee6842bdddfe2fd');
INSERT INTO `items` (`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`,`uuid`) values ('42884','20','.1.3.6.1.4.1.50536.1.1.1.1.9.{#SNMPINDEX}','10518','TrueNAS: Pool [{#POOLNAME}]: Write operations rate','truenas.zpool.write.ops[{#POOLNAME}]','1m','7d','365d','0','0','','IOPS','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB\r\nThe number of write I/O operations sent to the pool or device (averaged since system booted).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e4bfc421633a433ca1b895fa4f5cf96e');
INSERT INTO `items` (`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`,`uuid`) values ('42885','20','.1.3.6.1.4.1.50536.1.3.1.1.6.{#SNMPINDEX}','10518','TrueNAS: ZFS volume [{#ZVOL_NAME}]: Available space','truenas.zvol.avail[{#ZVOL_NAME}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB\r\nThe available of the ZFS volume in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','26967102b3a946c997fbbdcc5c2d78bc');
INSERT INTO `items` (`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`,`uuid`) values ('42886','20','.1.3.6.1.4.1.50536.1.3.1.1.4.{#SNMPINDEX}','10518','TrueNAS: ZFS volume [{#ZVOL_NAME}]: Total space','truenas.zvol.size.total[{#ZVOL_NAME}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB\r\nThe size of the ZFS volume in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc01786aff804d6998b039525214ddbd');
INSERT INTO `items` (`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`,`uuid`) values ('42887','20','.1.3.6.1.4.1.50536.1.3.1.1.5.{#SNMPINDEX}','10518','TrueNAS: ZFS volume [{#ZVOL_NAME}]: Used space','truenas.zvol.used[{#ZVOL_NAME}]','1m','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB\r\nThe used size of the ZFS volume in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a722d904125d46729c29ad4283d0b1b0');
INSERT INTO `items` (`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`,`uuid`) values ('42888','20','1.3.6.1.4.1.2021.13.15.1.1.5.{#SNMPINDEX}','10518','TrueNAS: [{#DEVNAME}]: Disk read rate','vfs.dev.read.rate[{#SNMPINDEX}]','1m','7d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-DISKIO-MIB\r\nThe number of read accesses from this device since boot.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ba220c4106cb4bff9dd60c92aee7919a');
INSERT INTO `items` (`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`,`uuid`) values ('42889','20','1.3.6.1.4.1.2021.13.15.1.1.9.{#SNMPINDEX}','10518','TrueNAS: [{#DEVNAME}]: Disk utilization','vfs.dev.util[{#SNMPINDEX}]','1m','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-DISKIO-MIB\r\nThe 1 minute average load of disk (%).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0dd2f25f1d2a45f2ae265d8550fe7d45');
INSERT INTO `items` (`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`,`uuid`) values ('42890','20','1.3.6.1.4.1.2021.13.15.1.1.6.{#SNMPINDEX}','10518','TrueNAS: [{#DEVNAME}]: Disk write rate','vfs.dev.write.rate[{#SNMPINDEX}]','1m','7d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-DISKIO-MIB\r\nThe number of write accesses from this device since boot.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1549def5cf23434b8d0a19ac951eb2ff');
INSERT INTO `items` (`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`,`uuid`) values ('42892','0','','10383','SMART [{#NAME}]: Get disk attributes','smart.disk.get[{#PATH},"{#RAIDTYPE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','805e1d6f91e741ac93e87bd7d62860d5');
INSERT INTO `items` (`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`,`uuid`) values ('42912','7','','10384','SMART [{#NAME}]: Get disk attributes','smart.disk.get[{#PATH},"{#RAIDTYPE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b26489a8ba12495dbb9687ef52ab1396');
INSERT INTO `items` (`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`,`uuid`) values ('42932','21','','10519','Consul: Get local services','consul.get_local_services','1m','0','0','0','4','','','','',NULL,NULL,'var Consul = {\r\n setParams: function (params) {\r\n [\'api_endpoint\', \'token\'].forEach(function (field) {\r\n if (typeof params !== \'object\' || typeof params[field] === \'undefined\' || params[field] === \'\') {\r\n throw \'Required param is not set: "\' + field + \'".\';\r\n }\r\n });\r\n\r\n Consul.params = params;\r\n if (typeof Consul.params.api_endpoint === \'string\' && !Consul.params.api_endpoint.endsWith(\'/\')) {\r\n Consul.params.api_endpoint += \'/\';\r\n }\r\n },\r\n\r\n request: function (query) {\r\n var response,\r\n request = new HttpRequest(),\r\n url = Consul.params.api_endpoint + query;\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'X-Consul-Token: \' + Consul.params.token);\r\n\r\n Zabbix.log(4, \'[ Consul ] Sending request: \' + url);\r\n response = request.get(url);\r\n\r\n Zabbix.log(4, \'[ Consul ] Received response with status code \' + request.getStatus() + \': \' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n throw \'Failed to parse response received from Consul Agent API.\';\r\n }\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n getServices: function () {\r\n var result = Consul.request(\'v1/agent/services\'),\r\n services = [];\r\n\r\n if (typeof result.response !== \'object\' || result.status != 200) {\r\n throw \'Cannot get service list from Consul Agent API.\';\r\n }\r\n\r\n Object.keys(result.response).forEach(function (service) {\r\n services.push(result.response[service][\'ID\']);\r\n });\r\n\r\n return services;\r\n },\r\n\r\n getServiceStats: function (service_id) {\r\n var result = Consul.request(\'v1/agent/health/service/id/\' + service_id);\r\n\r\n if (typeof result.response !== \'object\' || [200, 429, 503].indexOf(result.status) === -1) {\r\n throw \'Cannot get service info from Consul Agent API.\';\r\n }\r\n\r\n return result.response;\r\n }\r\n}\r\n\r\ntry {\r\n Consul.setParams(JSON.parse(value));\r\n\r\n var services = Consul.getServices(),\r\n result = [];\r\n\r\n services.forEach(function (service) {\r\n var service_stats = Consul.getServiceStats(service);\r\n\r\n result.push({\r\n \'id\': service,\r\n \'name\': service_stats[\'Service\'][\'Service\'],\r\n \'status\': service_stats[\'AggregatedStatus\'],\r\n \'checks\': service_stats[\'Checks\'],\r\n \'namespace\': typeof service_stats[\'Service\'][\'Namespace\'] === \'undefined\' ? \'None\' : service_stats[\'Service\'][\'Namespace\']\r\n });\r\n });\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n error += ((String(error).endsWith(\'.\')) ? \'\' : \'.\');\r\n Zabbix.log(3, \'[ Consul ] ERROR: \' + error);\r\n\r\n return JSON.stringify({error: error + \' Check debug log for more information.\'});\r\n}','','0','','','','','0',NULL,'Get all the services that are registered with the local agent and their status.','0','30d','0','',NULL,'15s','','','','200','1','0','','0','0','0','0','0','0','0','2b3cbe778f1c4d858e43320b8c25960d');
INSERT INTO `items` (`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`,`uuid`) values ('42933','19','','10519','Consul: Get node info','consul.get_node_info','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get configuration and member information of the local agent.','0','30d','0','',NULL,'15s','{$CONSUL.NODE.API.URL}/v1/agent/self','','','200','1','0','X-Consul-Token: {$CONSUL.TOKEN}','0','0','0','0','0','0','0','7e2689de8d78499fb52d718989b7ec8b');
INSERT INTO `items` (`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`,`uuid`) values ('42934','19','','10519','Consul: Get instance metrics','consul.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get raw metrics from Consul instance /metrics endpoint.','0','30d','0','',NULL,'15s','{$CONSUL.NODE.API.URL}/v1/agent/metrics?format=prometheus','','','200','1','0','X-Consul-Token: {$CONSUL.TOKEN}','0','0','0','0','0','0','0','c0e199969c19444fb68fd8497fcab047');
INSERT INTO `items` (`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`,`uuid`) values ('43007','19','','10520','Consul cluster: Get services','consul.get_catalog_services','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Catalog of services registered in a given datacenter.','0','30d','0','',NULL,'15s','{$CONSUL.CLUSTER.URL}/v1/catalog/services','','','200','1','0','X-Consul-Token: {$CONSUL.TOKEN}\r\nX-Consul-Namespace: {$CONSUL.NAMESPACE}','0','0','0','0','0','0','0','fd087c72bb7842c6b84b0b70788506b0');
INSERT INTO `items` (`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`,`uuid`) values ('43008','19','','10520','Consul cluster: Get nodes Serf health status','consul.get_cluster_serf','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get Serf Health Status for all agents in cluster.','0','30d','0','',NULL,'15s','{$CONSUL.CLUSTER.URL}/v1/health/state/any?filter=CheckID==serfHealth','','','200','1','0','X-Consul-Token: {$CONSUL.TOKEN}\r\nX-Consul-Namespace: {$CONSUL.NAMESPACE}','0','0','0','0','0','0','0','cad23435cc454f01b47034bd8427931d');
INSERT INTO `items` (`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`,`uuid`) values ('43009','19','','10520','Consul cluster: Cluster leader','consul.get_leader','1m','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Current leader address.','0','30d','0','',NULL,'15s','{$CONSUL.CLUSTER.URL}/v1/status/leader','','','200','1','0','X-Consul-Token: {$CONSUL.TOKEN}','0','0','0','0','0','0','0','e52fcc1af52e4df5b18118355260a8d6');
INSERT INTO `items` (`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`,`uuid`) values ('43010','19','','10520','Consul cluster: Get nodes','consul.get_nodes','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Catalog of nodes registered in a given datacenter.','0','30d','0','',NULL,'15s','{$CONSUL.CLUSTER.URL}/v1/catalog/nodes','','','200','1','0','X-Consul-Token: {$CONSUL.TOKEN}','0','0','0','0','0','0','0','859451004516499e9636d96cde023d21');
INSERT INTO `items` (`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`,`uuid`) values ('43011','19','','10520','Consul cluster: Nodes: peers','consul.get_peers','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of Raft peers for the datacenter in which the agent is running.','0','30d','0','',NULL,'15s','{$CONSUL.CLUSTER.URL}/v1/status/peers','','','200','1','0','X-Consul-Token: {$CONSUL.TOKEN}','0','0','0','0','0','0','0','2400f78a5ada4a59b63fc049b6e3b3bf');
INSERT INTO `items` (`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`,`uuid`) values ('43019','19','','10520','Consul cluster: ["{#SERVICE_NAME}"]: Get raw service state','consul.get_service_stats["{#SERVICE_NAME}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Retrieve service instances providing the service indicated on the path.','0','30d','0','',NULL,'15s','{$CONSUL.CLUSTER.URL}/v1/health/service/{#SERVICE_NAME}','','','200, 429, 503','1','0','X-Consul-Token: {$CONSUL.TOKEN}\r\nX-Consul-Namespace: {$CONSUL.NAMESPACE}','0','0','0','0','0','0','0','38576dd458a94259ab273204ffe9aebd');
INSERT INTO `items` (`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`,`uuid`) values ('43024','19','','10522','Envoy Proxy: Get node metrics','envoy.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get server metrics.','0','30d','0','',NULL,'3s','{$ENVOY.URL}{$ENVOY.METRICS.PATH}','','','200','1','0','','0','0','0','0','0','0','0','c6baf4c4e99f4516a23f87c089252a82');
INSERT INTO `items` (`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`,`uuid`) values ('43056','15','','10522','Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Membership, unhealthy','envoy.cluster.membership_unhealthy["{#CLUSTER_NAME}"]','1m','7d','365d','0','3','','','','',NULL,NULL,'last(//envoy.cluster.membership_total["{#CLUSTER_NAME}"]) - last(//envoy.cluster.membership_healthy["{#CLUSTER_NAME}"])','','0','','','','','2',NULL,'Current cluster unhealthy.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d453ade473ae4beaab06afa117814a1b');
INSERT INTO `items` (`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`,`uuid`) values ('43083','3','','10523','CockroachDB: Service ping','net.tcp.service["{$COCKROACHDB.API.SCHEME}","{HOST.CONN}","{$COCKROACHDB.API.PORT}"]','1m','7d','365d','0','3','','','','',NULL,'970','','','0','','','','','0',NULL,'Check if HTTP/HTTPS service accepts TCP connections.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','00afa7b32af9499c89e939c96e0e29d1');
INSERT INTO `items` (`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`,`uuid`) values ('43084','19','','10523','CockroachDB: Get health','cockroachdb.get_health','1m','7d','365d','0','3','','','','',NULL,'968','','','0','','','','','0',NULL,'Get node /health endpoint','0','30d','0','',NULL,'15s','{$COCKROACHDB.API.SCHEME}://{HOST.CONN}:{$COCKROACHDB.API.PORT}/health','','','200,500','1','0','','1','0','0','0','0','0','0','a8cd030e869b4d788126ee5fa35d3403');
INSERT INTO `items` (`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`,`uuid`) values ('43085','19','','10523','CockroachDB: Get readiness','cockroachdb.get_readiness','1m','7d','365d','0','3','','','','',NULL,'969','','','0','','','','','0',NULL,'Get node /health?ready=1 endpoint','0','30d','0','',NULL,'15s','{$COCKROACHDB.API.SCHEME}://{HOST.CONN}:{$COCKROACHDB.API.PORT}/health?ready=1','','','200,503','1','0','','1','0','0','0','0','0','0','3e5e18e02b1b4f8d8f17c2e7d993169c');
INSERT INTO `items` (`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`,`uuid`) values ('43086','19','','10523','CockroachDB: Get metrics','cockroachdb.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get raw metrics from the Prometheus endpoint.','0','30d','0','',NULL,'15s','{$COCKROACHDB.API.SCHEME}://{HOST.CONN}:{$COCKROACHDB.API.PORT}/_status/vars','','','200','1','0','','0','0','0','0','0','0','0','926415babea74e2f951a0420bbdf1d8d');
INSERT INTO `items` (`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`,`uuid`) values ('43140','15','','10523','CockroachDB: Storage [{#STORE}]: Capacity available in %','cockroachdb.storage.capacity.[{#STORE},available_percent]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//cockroachdb.storage.capacity.[{#STORE},available]) / last(//cockroachdb.storage.capacity.[{#STORE},total]) * 100','','0','','','','','2',NULL,'Available storage capacity in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bb07359b779d4e4080593a02c18dc8c1');
INSERT INTO `items` (`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`,`uuid`) values ('43141','15','','10523','CockroachDB: Storage [{#STORE}]: RocksDB cache hit ratio','cockroachdb.rocksdb.cache.[{#STORE},hit_ratio]','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//cockroachdb.rocksdb.cache.hits.[{#STORE},rate]) / (last(//cockroachdb.rocksdb.cache.hits.[{#STORE},rate]) + last(//cockroachdb.rocksdb.cache.misses.[{#STORE},rate])) * 100','','0','','','','','2',NULL,'Block cache hit ratio in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cafdf6248d114787b2a3f9647a4afea9');
INSERT INTO `items` (`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`,`uuid`) values ('43171','21','','10524','HPE MSA: Get data','hpe.msa.data.get','1m','0','0','0','4','','','','',NULL,NULL,'var params = JSON.parse(value),\r\n fields = [\'username\', \'password\', \'base_url\'],\r\n methods = [\r\n \'system\',\r\n \'controllers\',\r\n \'controller-statistics\',\r\n \'frus\',\r\n \'disk-groups\',\r\n \'disk-group-statistics\',\r\n \'disks\',\r\n \'enclosures\',\r\n \'fans\',\r\n \'pools\',\r\n \'ports\',\r\n \'power-supplies\',\r\n \'volumes\',\r\n \'volume-statistics\'\r\n ],\r\n data_tmp = {},\r\n result_tmp = {},\r\n session_key,\r\n data = {};\r\n\r\nfields.forEach(function (field) {\r\n if (typeof params !== \'object\' || typeof params[field] === \'undefined\' || params[field] === \'\' ) {\r\n throw \'Required param is not set: "\' + field + \'".\';\r\n }\r\n});\r\n\r\nif (!params.base_url.endsWith(\'/\')) {\r\n params.base_url += \'/\';\r\n}\r\n\r\nvar response, request = new HttpRequest();\r\nrequest.addHeader(\'datatype: xml\');\r\n\r\nauth_string = md5(params.username + \'_\' + params.password);\r\nresponse = request.get(params.base_url + \'api/login/\' + auth_string);\r\n\r\nif (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n throw \'Authentication request has failed with status code \' + request.getStatus() + \': \' + response;\r\n}\r\n\r\nif (response !== null) {\r\n try {\r\n session_key = XML.query(response, \'/RESPONSE/OBJECT/PROPERTY[@name="response"]/text()\');\r\n return_code = XML.query(response, \'/RESPONSE/OBJECT/PROPERTY[@name="return-code"]/text()\');\r\n }\r\n catch (error) {\r\n throw \'Failed to parse authentication response received from device API.\';\r\n }\r\n}\r\n\r\nif (return_code != \'1\') {\r\n throw \'Authentication failed.\'\r\n}\r\nelse if (session_key === \'\') {\r\n throw \'Failed to retrieve session key from authentication response.\';\r\n}\r\n\r\nrequest.clearHeader();\r\nrequest.addHeader(\'sessionKey: \' + session_key);\r\nrequest.addHeader(\'datatype: api-embed\');\r\n\r\ndata.errors = [];\r\n\r\nmethods.forEach(function (method) {\r\n response = request.get(params.base_url + \'api/show/\' + method);\r\n method_error = \'\';\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n method_error = \'Method: \' + method + \'. Request has failed with status code \' + request.getStatus() + \': \' + response;\r\n data.errors.push(method_error);\r\n return;\r\n }\r\n\r\n if (response !== null) {\r\n try {\r\n result_tmp = JSON.parse(XML.toJson(response));\r\n data[method] = [];\r\n\r\n result_tmp.RESPONSE.OBJECT.forEach(function (object) {\r\n var data_tmp = {};\r\n\r\n if (object[\'@basetype\'] !== \'status\' && object[\'@basetype\'] !== \'enclosure-sku\') {\r\n object.PROPERTY.forEach(function (property) {\r\n name = property[\'@name\'];\r\n value = property[\'#text\'] || \'\';\r\n data_tmp[name] = value;\r\n });\r\n \r\n if (method == \'controller-statistics\') {\r\n data_tmp[\'durable-id\'] = data_tmp[\'durable-id\'].toLowerCase();\r\n }\r\n\r\n data[method].push(data_tmp);\r\n }\r\n });\r\n }\r\n catch (error) {\r\n method_error = \'Method: \' + method + \'. Failed to parse response received from device API.\';\r\n }\r\n }\r\n else {\r\n method_error = \'Method: \' + method + \'. No data received by request.\';\r\n }\r\n\r\n if (method_error.length > 0) {\r\n data.errors.push(method_error);\r\n }\r\n});\r\n\r\nif (data.errors.length == 0) {\r\n data.errors = \'\';\r\n}\r\n\r\nresponse = request.get(params.base_url + \'api/exit\');\r\n\r\nif (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n throw \'Logout request failed with status code \' + request.getStatus() + \': \' + response;\r\n}\r\n\r\nreturn JSON.stringify(data);','','0','','','','','0',NULL,'The JSON with result of API requests.','0','30d','0','',NULL,'{$HPE.MSA.DATA.TIMEOUT}','','','','200','1','0','','0','0','0','0','0','0','0','e07e09dbcdd44f509a06343c9a53a455');
INSERT INTO `items` (`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`,`uuid`) values ('43172','3','','10524','HPE MSA: Service ping','net.tcp.service["{$HPE.MSA.API.SCHEME}","{HOST.CONN}","{$HPE.MSA.API.PORT}"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Check if HTTP/HTTPS service accepts TCP connections.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d1242f5aede14008ae6896123bb944a5');
INSERT INTO `items` (`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`,`uuid`) values ('43191','15','','10524','Disk group [{#NAME}]: Space utilization','hpe.msa.disks.groups.space["{#NAME}",util]','1m','7d','365d','0','0','','%','','',NULL,NULL,'100-last(//hpe.msa.disks.groups.space["{#NAME}",free])/last(//hpe.msa.disks.groups.space["{#NAME}",total])*100','','0','','','','','2',NULL,'The space utilization percentage in the disk group.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','760b63c8140544dd8af0de8fd873c8cb');
INSERT INTO `items` (`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`,`uuid`) values ('43192','15','','10524','Pool [{#NAME}]: Space utilization','hpe.msa.pools.space["{#NAME}",util]','1m','7d','365d','0','0','','%','','',NULL,NULL,'100-last(//hpe.msa.pools.space["{#NAME}",free])/last(//hpe.msa.pools.space["{#NAME}",total])*100','','0','','','','','2',NULL,'The space utilization percentage in the pool.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cc361d77ac8046fc833db41fbd5d2cd3');
INSERT INTO `items` (`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`,`uuid`) values ('43278','21','','10525','HPE MSA: Get data','hpe.msa.data.get','1m','0','0','0','4','','','','',NULL,NULL,'var params = JSON.parse(value),\r\n fields = [\'username\', \'password\', \'base_url\'],\r\n methods = [\r\n \'system\',\r\n \'controllers\',\r\n \'controller-statistics\',\r\n \'frus\',\r\n \'disk-groups\',\r\n \'disk-group-statistics\',\r\n \'disks\',\r\n \'enclosures\',\r\n \'fans\',\r\n \'pools\',\r\n \'ports\',\r\n \'power-supplies\',\r\n \'volumes\',\r\n \'volume-statistics\'\r\n ],\r\n result = {},\r\n data = {};\r\n\r\nfields.forEach(function (field) {\r\n if (typeof params !== \'object\' || typeof params[field] === \'undefined\' || params[field] === \'\' ) {\r\n throw \'Required param is not set: "\' + field + \'".\';\r\n }\r\n});\r\n\r\nif (!params.base_url.endsWith(\'/\')) {\r\n params.base_url += \'/\';\r\n}\r\n\r\nvar response, request = new HttpRequest();\r\nrequest.addHeader(\'datatype: json\');\r\n\r\nauth_string = sha256(params.username + \'_\' + params.password);\r\n\r\nresponse = request.get(params.base_url + \'api/login/\' + auth_string);\r\n\r\nif (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n throw \'Authentication request has failed with status code \' + request.getStatus() + \': \' + response;\r\n}\r\n\r\nif (response !== null) {\r\n try {\r\n auth_data = JSON.parse(response);\r\n }\r\n catch (error) {\r\n throw \'Failed to parse authentication response received from device API.\';\r\n }\r\n}\r\n\r\nsession_key = auth_data[\'status\'][0][\'response\'];\r\n\r\nrequest.addHeader(\'sessionKey: \' + session_key);\r\n\r\ndata.errors = [];\r\n\r\nmethods.forEach(function (method) {\r\n response = request.get(params.base_url + \'api/show/\' + method);\r\n method_error = \'\';\r\n \r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n method_error = \'Method: \' + method + \'. Request has failed with status code \' + request.getStatus() + \': \' + response;\r\n data.errors.push(method_error);\r\n return;\r\n }\r\n\r\n if (response !== null) {\r\n try {\r\n result = JSON.parse(response);\r\n switch (method) {\r\n case \'controller-statistics\':\r\n var stats_array = result[\'controller-statistics\'] || [];\r\n for (var i = 0; i < stats_array.length; i++) {\r\n result[\'controller-statistics\'][i][\'durable-id\'] = result[\'controller-statistics\'][i][\'durable-id\'].toLowerCase();\r\n }\r\n data[method] = result[method];\r\n break;\r\n case \'frus\':\r\n data[method] = result[\'enclosure-fru\'];\r\n break;\r\n case \'disks\':\r\n data[method] = result[\'drives\'];\r\n break;\r\n case \'fans\':\r\n data[method] = result[\'fan\'];\r\n break;\r\n case \'ports\':\r\n data[method] = result[\'port\'];\r\n break;\r\n default:\r\n data[method] = result[method];\r\n }\r\n }\r\n catch (error) {\r\n method_error = \'Method: \' + method + \'. Failed to parse response received from device API.\';\r\n }\r\n }\r\n else {\r\n method_error = \'Method: \' + method + \'. No data received by request.\';\r\n }\r\n\r\n if (method_error.length > 0) {\r\n data.errors.push(method_error);\r\n }\r\n});\r\n\r\nif (data.errors.length == 0) {\r\n data.errors = \'\';\r\n}\r\n\r\nreturn JSON.stringify(data);','','0','','','','','0',NULL,'The JSON with result of API requests.','0','30d','0','',NULL,'{$HPE.MSA.DATA.TIMEOUT}','','','','200','1','0','','0','0','0','0','0','0','0','bafec666b170480f941fe25cb3cf903d');
INSERT INTO `items` (`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`,`uuid`) values ('43279','3','','10525','HPE MSA: Service ping','net.tcp.service["{$HPE.MSA.API.SCHEME}","{HOST.CONN}","{$HPE.MSA.API.PORT}"]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Check if HTTP/HTTPS service accepts TCP connections.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3831060089ff497993088472e922df38');
INSERT INTO `items` (`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`,`uuid`) values ('43298','15','','10525','Disk [{#DURABLE.ID}]: Space total','hpe.msa.disks.space["{#DURABLE.ID}",total]','1h','7d','365d','0','3','','B','','',NULL,NULL,'last(//hpe.msa.disks.blocks["{#DURABLE.ID}",size])*last(//hpe.msa.disks.blocks["{#DURABLE.ID}",total])','','0','','','','','2',NULL,'Total size of the disk.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6c20cf4e84b0427fbe797fc209d78785');
INSERT INTO `items` (`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`,`uuid`) values ('43299','15','','10525','Disk group [{#NAME}]: Space utilization','hpe.msa.disks.groups.space["{#NAME}",util]','1m','7d','365d','0','0','','%','','',NULL,NULL,'100-last(//hpe.msa.disks.groups.space["{#NAME}",free])/last(//hpe.msa.disks.groups.space["{#NAME}",total])*100','','0','','','','','2',NULL,'The space utilization percentage in the disk group.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2a9c7f901f494b8bb7d2c74cd7c3030c');
INSERT INTO `items` (`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`,`uuid`) values ('43300','15','','10525','Disk group [{#NAME}]: Space total','hpe.msa.disks.groups.space["{#NAME}",total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'last(//hpe.msa.disks.groups.blocks["{#NAME}",size])*last(//hpe.msa.disks.groups.blocks["{#NAME}",total])','','0','','','','','2',NULL,'The capacity of the disk group.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb3dd5308c97446693932206be17ace3');
INSERT INTO `items` (`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`,`uuid`) values ('43301','15','','10525','Disk group [{#NAME}]: Space free','hpe.msa.disks.groups.space["{#NAME}",free]','1m','7d','365d','0','3','','B','','',NULL,NULL,'last(//hpe.msa.disks.groups.blocks["{#NAME}",size])*last(//hpe.msa.disks.groups.blocks["{#NAME}",free])','','0','','','','','2',NULL,'The free space in the disk group.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b0d49d3da6b14b9cb8eeb95a3665a26e');
INSERT INTO `items` (`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`,`uuid`) values ('43302','15','','10525','Pool [{#NAME}]: Space free','hpe.msa.pools.space["{#NAME}",free]','1m','7d','365d','0','3','','B','','',NULL,NULL,'last(//hpe.msa.pools.blocks["{#NAME}",size])*last(//hpe.msa.pools.blocks["{#NAME}",available])','','0','','','','','2',NULL,'The free space in the pool.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d99eeba76b354e73b0118b46402d93bf');
INSERT INTO `items` (`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`,`uuid`) values ('43303','15','','10525','Pool [{#NAME}]: Space total','hpe.msa.pools.space["{#NAME}",total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'last(//hpe.msa.pools.blocks["{#NAME}",size])*last(//hpe.msa.pools.blocks["{#NAME}",total])','','0','','','','','2',NULL,'The capacity of the pool.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9fce545fbe724da28a13b8ca8759c37d');
INSERT INTO `items` (`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`,`uuid`) values ('43304','15','','10525','Pool [{#NAME}]: Space utilization','hpe.msa.pools.space["{#NAME}",util]','1m','7d','365d','0','0','','%','','',NULL,NULL,'100-last(//hpe.msa.pools.space["{#NAME}",free])/last(//hpe.msa.pools.space["{#NAME}",total])*100','','0','','','','','2',NULL,'The space utilization percentage in the pool.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ad9bdb342a494d82a36e42e75a3bbf3e');
INSERT INTO `items` (`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`,`uuid`) values ('43305','15','','10525','Volume [{#NAME}]: Space total','hpe.msa.volumes.space["{#NAME}",total]','1m','7d','365d','0','3','','B','','',NULL,NULL,'last(//hpe.msa.volumes.blocks["{#NAME}",size])*last(//hpe.msa.volumes.blocks["{#NAME}",total])','','0','','','','','2',NULL,'The capacity of the volume.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','eb09d8791bb84c8aadf5cdcac3d76413');
INSERT INTO `items` (`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`,`uuid`) values ('43306','15','','10525','Volume [{#NAME}]: Space allocated','hpe.msa.volumes.space["{#NAME}",allocated]','1m','7d','365d','0','3','','B','','',NULL,NULL,'last(//hpe.msa.volumes.blocks["{#NAME}",size])*last(//hpe.msa.volumes.blocks["{#NAME}",allocated])','','0','','','','','2',NULL,'The amount of space currently allocated to the volume.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','860855a80c554e0685d4d4125342b547');
INSERT INTO `items` (`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`,`uuid`) values ('43395','3','','10526','HPE Primera: Service ping','net.tcp.service["{$HPE.PRIMERA.API.SCHEME}","{HOST.CONN}","{$HPE.PRIMERA.API.PORT}"]','1m','7d','365d','0','3','','','','',NULL,'1000','','','0','','','','','0',NULL,'Checks if the service is running and accepting TCP connections.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a0b4fdee38a64c5f82fd051ea74a7b2d');
INSERT INTO `items` (`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`,`uuid`) values ('43396','21','','10526','HPE Primera: Get data','hpe.primera.data.get','1m','0d','0','0','4','','','','',NULL,NULL,'var Primera = {\r\n params: {},\r\n session_key: null,\r\n\r\n setParams: function (params) {\r\n [\'username\', \'password\', \'base_url\'].forEach(function (field) {\r\n if (typeof params !== \'object\' || typeof params[field] === \'undefined\' || params[field] === \'\') {\r\n throw \'Required param is not set: \' + field + \'.\';\r\n }\r\n });\r\n\r\n Primera.params = params;\r\n if (typeof Primera.params.base_url === \'string\' && !Primera.params.base_url.endsWith(\'/\')) {\r\n Primera.params.base_url += \'/\';\r\n }\r\n },\r\n\r\n login: function () {\r\n if (Primera.session_key !== null) {\r\n return;\r\n }\r\n\r\n var response, request = new HttpRequest();\r\n request.addHeader(\'Content-Type: application/json\');\r\n\r\n response = request.post(Primera.params.base_url + \'api/v1/credentials\', JSON.stringify({\r\n \'user\': Primera.params.username,\r\n \'password\': Primera.params.password\r\n }));\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n throw \'Auth request failed with status code \' + request.getStatus() + \': \' + response;\r\n }\r\n\r\n if (response !== null) {\r\n try {\r\n auth_data = JSON.parse(response);\r\n }\r\n catch (error) {\r\n throw \'Failed to parse auth response received from device API.\';\r\n }\r\n }\r\n else {\r\n throw \'No data received by auth request.\'\r\n }\r\n\r\n if (\'key\' in auth_data) {\r\n Primera.session_key = auth_data[\'key\'];\r\n } else {\r\n throw \'Auth response does not contain session key.\'\r\n }\r\n },\r\n\r\n logout: function () {\r\n if (Primera.session_key !== null) {\r\n (new HttpRequest()).delete(Primera.params.base_url + \'api/v1/credentials/\' + Primera.session_key);\r\n }\r\n },\r\n\r\n requestData: function (method) {\r\n if (Primera.session_key === null) {\r\n return;\r\n }\r\n\r\n request = new HttpRequest();\r\n request.addHeader(\'X-HP3PAR-WSAPI-SessionKey: \' + Primera.session_key);\r\n\r\n raw_data = request.get(Primera.params.base_url + \'api/v1/\' + method);\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n throw \'Request failed with status code \' + request.getStatus() + \': \' + response;\r\n }\r\n\r\n if (raw_data !== null) {\r\n try {\r\n return JSON.parse(raw_data);\r\n }\r\n catch (error) {\r\n throw \'Failed to parse response received from device API.\';\r\n }\r\n else {\r\n throw \'No data received by \' + method + \' request.\';\r\n }\r\n }\r\n};\r\n\r\nvar methods = [\'disks\', \'cpgs\', \'hosts\', \'ports\', \'system\', \'tasks\', \'volumes\'],\r\n data = {};\r\n\r\ndata[\'errors\'] = {};\r\n\r\ntry {\r\n Primera.setParams(JSON.parse(value));\r\n\r\n try {\r\n Primera.login();\r\n }\r\n catch (error) {\r\n data.errors.auth = error.toString();\r\n }\r\n\r\n if (!(\'auth\' in data.errors)) {\r\n for (var i in methods) {\r\n try {\r\n if (methods[i] === \'tasks\') {\r\n var result = [],\r\n tmp_tasks = {};\r\n\r\n tasks = Primera.requestData(methods[i]);\r\n\r\n tasks.members.forEach(function (task) {\r\n tmp_tasks[task.name] = task;\r\n });\r\n\r\n for (var task in tmp_tasks) {\r\n result.push(tmp_tasks[task]);\r\n }\r\n\r\n data[methods[i]] = result;\r\n }\r\n else {\r\n data[methods[i]] = Primera.requestData(methods[i]);\r\n }\r\n }\r\n catch (error) {\r\n data.errors[methods[i]] = error.toString();\r\n }\r\n }\r\n }\r\n}\r\ncatch (error) {\r\n data.errors.params = error.toString();\r\n}\r\n\r\ntry {\r\n Primera.logout();\r\n}\r\ncatch (error) {\r\n}\r\n\r\nif (Object.keys(data.errors).length !== 0) {\r\n errors = \'Failed to receive data:\';\r\n for (var error in data.errors) {\r\n errors += \'\\n\' + error + \' : \' + data.errors[error];\r\n }\r\n data.errors = errors;\r\n}\r\nelse {\r\n data.errors = \'\';\r\n}\r\n\r\nreturn JSON.stringify(data);','','0','','','','','0',NULL,'The JSON with result of WSAPI requests.','0','30d','0','',NULL,'{$HPE.PRIMERA.DATA.TIMEOUT}','','','','200','1','0','','0','0','0','0','0','0','0','530e20083da8423e9d30c8342f1b7da3');
INSERT INTO `items` (`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`,`uuid`) values ('43494','21','','10527','HPE Synergy: Get data','hpe.synergy.data.get','1m','0d','0','0','4','','','','',NULL,NULL,'var Synergy = {\r\n params: {},\r\n session_id: null,\r\n api_version: null,\r\n\r\n setParams: function (params) {\r\n [\'username\', \'password\', \'base_url\'].forEach(function (field) {\r\n if (typeof params !== \'object\' || typeof params[field] === \'undefined\' || params[field] === \'\') {\r\n throw \'Required param is not set: \' + field + \'.\';\r\n }\r\n });\r\n\r\n Synergy.params = params;\r\n if (typeof Synergy.params.base_url === \'string\' && !Synergy.params.base_url.endsWith(\'/\')) {\r\n Synergy.params.base_url += \'/\';\r\n }\r\n },\r\n\r\n checkVersion: function () {\r\n if (Synergy.api_version !== null) {\r\n return;\r\n }\r\n\r\n var response, request = new HttpRequest();\r\n request.addHeader(\'Content-Type: application/json\');\r\n\r\n response = request.post(Synergy.params.base_url + \'rest/version\');\r\n\r\n if (request.getStatus() !== 200) {\r\n throw \'Get version request failed with status code \' + request.getStatus() + \': \' + response;\r\n }\r\n\r\n if (response !== null) {\r\n try {\r\n version_data = JSON.parse(response);\r\n }\r\n catch (error) {\r\n throw \'Failed to parse get version response received from device API.\';\r\n }\r\n }\r\n else {\r\n throw \'No data received by get version request.\';\r\n }\r\n\r\n if (\'currentVersion\' in version_data && \'minimumVersion\' in version_data) {\r\n if (version_data[\'minimumVersion\'] <= 1200 && version_data[\'currentVersion\'] >= 1200) {\r\n Synergy.api_version = 1200;\r\n } else {\r\n throw \'API version is not supported.\';\r\n }\r\n } else {\r\n throw \'Get version response does not contain version.\';\r\n }\r\n },\r\n\r\n login: function () {\r\n if (Synergy.session_id !== null || Synergy.api_version === null) {\r\n return;\r\n }\r\n\r\n var response, request = new HttpRequest();\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'X-API-Version: \' + Synergy.api_version);\r\n\r\n response = request.post(Synergy.params.base_url + \'rest/login-sessions\', JSON.stringify({\r\n \'userName\': Synergy.params.username,\r\n \'password\': Synergy.params.password\r\n }));\r\n\r\n if (request.getStatus() !== 200) {\r\n throw \'Auth request failed with status code \' + request.getStatus() + \': \' + response;\r\n }\r\n\r\n if (response !== null) {\r\n try {\r\n auth_data = JSON.parse(response);\r\n }\r\n catch (error) {\r\n throw \'Failed to parse auth response received from device API.\';\r\n }\r\n }\r\n else {\r\n throw \'No data received by auth request.\';\r\n }\r\n\r\n if (\'sessionID\' in auth_data) {\r\n Synergy.session_id = auth_data[\'sessionID\'];\r\n } else {\r\n throw \'Auth response does not contain session ID.\';\r\n }\r\n },\r\n\r\n logout: function () {\r\n if (Synergy.session_id !== null && Synergy.api_version !== null) {\r\n var response, request = new HttpRequest();\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'X-API-Version: \' + Synergy.api_version);\r\n response = request.delete(Synergy.params.base_url + \'rest/login-sessions\');\r\n }\r\n },\r\n\r\n requestData: function (method) {\r\n if (Synergy.session_id === null || Synergy.api_version === null) {\r\n return;\r\n }\r\n\r\n request = new HttpRequest();\r\n request.addHeader(\'Auth: \' + Synergy.session_id);\r\n request.addHeader(\'X-API-Version: \' + Synergy.api_version);\r\n\r\n raw_data = request.get(Synergy.params.base_url + \'rest/\' + method);\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n throw \'Request failed with status code \' + request.getStatus() + \': \' + raw_data;\r\n }\r\n\r\n if (raw_data !== null) {\r\n try {\r\n return JSON.parse(raw_data);\r\n }\r\n catch (error) {\r\n throw \'Failed to parse response received from device API.\';\r\n }\r\n }\r\n else {\r\n throw \'No data received by \' + method + \' request.\';\r\n }\r\n }\r\n};\r\n\r\nvar methods = [\'datacenters\', \'enclosures\', \'ethernet-networks\', \'fabrics\', \'fc-networks\', \'hypervisor-managers\', \'interconnects\', \'logical-enclosures\', \'racks\', \'server-hardware\', \'storage-pools\', \'storage-systems\', \'storage-volumes\', \'uplink-sets\'],\r\n data = {};\r\n\r\ndata[\'errors\'] = {};\r\n\r\ntry {\r\n Synergy.setParams(JSON.parse(value));\r\n\r\n try {\r\n Synergy.checkVersion();\r\n }\r\n catch (error) {\r\n data.errors.version = error.toString();\r\n }\r\n\r\n try {\r\n Synergy.login();\r\n }\r\n catch (error) {\r\n data.errors.auth = error.toString();\r\n }\r\n\r\n if (!(\'auth\' in data.errors) && !(\'version\' in data.errors)) {\r\n for (var i in methods) {\r\n try {\r\n if (methods[i] === \'enclosures\') {\r\n var bays = [\'applianceBays\', \'crossBars\', \'deviceBays\', \'fanBays\', \'partitions\', \'powerSupplyBays\', \'managerBays\'];\r\n\r\n enclosures = Synergy.requestData(methods[i]);\r\n\r\n enclosures.members.forEach(function (enclosure) {\r\n enclosure_name = enclosure.name;\r\n\r\n for (var j in bays) {\r\n bay = enclosure[bays[j]];\r\n\r\n bay.forEach(function (b) {\r\n b.enclosureName = enclosure_name;\r\n enclosures.members[bays[j[b]]] = b;\r\n });\r\n }\r\n });\r\n\r\n data[methods[i]] = enclosures;\r\n }\r\n else {\r\n data[methods[i]] = Synergy.requestData(methods[i]);\r\n }\r\n }\r\n catch (error) {\r\n data.errors[methods[i]] = error.toString();\r\n }\r\n }\r\n }\r\n}\r\ncatch (error) {\r\n data.errors.params = error.toString();\r\n}\r\n\r\ntry {\r\n Synergy.logout();\r\n}\r\ncatch (error) {\r\n}\r\n\r\nif (Object.keys(data.errors).length !== 0) {\r\n errors = \'Failed to receive data:\';\r\n for (var error in data.errors) {\r\n errors += \'\\n\' + error + \' : \' + data.errors[error];\r\n }\r\n data.errors = errors;\r\n}\r\nelse {\r\n data.errors = \'\';\r\n}\r\n\r\nreturn JSON.stringify(data);','','0','','','','','0',NULL,'The JSON with result of API requests.','0','30d','0','',NULL,'{$HPE.SYNERGY.DATA.TIMEOUT}','','','','200','1','0','','0','0','0','0','0','0','0','2f9816e8a60149f4aafdf7ffb0632224');
INSERT INTO `items` (`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`,`uuid`) values ('43495','3','','10527','HPE Synergy: Service ping','net.tcp.service["{$HPE.SYNERGY.API.SCHEME}","{HOST.CONN}","{$HPE.SYNERGY.API.PORT}"]','1m','7d','365d','0','3','','','','',NULL,'1024','','','0','','','','','0',NULL,'Checks if the service is running and accepting TCP connections.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','86da94cecaa1424e9a22479d556d7b12');
INSERT INTO `items` (`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`,`uuid`) values ('43643','20','.1.3.6.1.2.1.25.4.2.1.7["index",".1.3.6.1.2.1.25.4.2.1.2","dhcpd"]','10528','OPNsense: DHCP server status','opnsense.dhcpd.status','1m','7d','365d','0','3','','','','',NULL,'1029','','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe status of DHCP server process.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1a075e6ed87c4d40b912956e9c02573f');
INSERT INTO `items` (`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`,`uuid`) values ('43644','20','.1.3.6.1.4.1.12325.1.200.1.11.1.0','10528','OPNsense: Firewall rules count','opnsense.rules.count','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nThe number of labeled filter rules on this system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','289cece23b5d4f17ba50d0373db4ed33');
INSERT INTO `items` (`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`,`uuid`) values ('43645','15','','10528','OPNsense: States table utilization in %','opnsense.state.table.pused','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//opnsense.state.table.count) * 100 / last(//opnsense.state.table.limit)','','0','','','','','0',NULL,'Utilization of state table in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','17a0f633e2a14e63b0282b785a66c62a');
INSERT INTO `items` (`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`,`uuid`) values ('43646','20','1.3.6.1.4.1.12325.1.200.1.5.1.0','10528','OPNsense: States table limit','opnsense.state.table.limit','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nMaximum number of \'keep state\' rules in the ruleset.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3bd8ea1e2cb44b4cb0f7d16a9339b9e4');
INSERT INTO `items` (`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`,`uuid`) values ('43647','20','1.3.6.1.4.1.12325.1.200.1.3.1.0','10528','OPNsense: States table current','opnsense.state.table.count','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nNumber of entries in the state table.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1c399a2204bc44d4a9b1a4017840fd75');
INSERT INTO `items` (`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`,`uuid`) values ('43648','15','','10528','OPNsense: Source tracking table utilization in %','opnsense.source.tracking.table.pused','1m','7d','365d','0','0','','%','','',NULL,NULL,'last(//opnsense.source.tracking.table.count) * 100 / last(//opnsense.source.tracking.table.limit)','','0','','','','','0',NULL,'Utilization of source tracking table in %.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1452fc4e67564233b12dc892fde1959a');
INSERT INTO `items` (`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`,`uuid`) values ('43649','20','1.3.6.1.4.1.12325.1.200.1.5.2.0','10528','OPNsense: Source tracking table limit','opnsense.source.tracking.table.limit','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nMaximum number of \'sticky-address\' or \'source-track\' rules in the ruleset.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a9b848d5c2254efdaf74ff48ce4003c4');
INSERT INTO `items` (`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`,`uuid`) values ('43650','20','1.3.6.1.4.1.12325.1.200.1.4.1.0','10528','OPNsense: Source tracking table current','opnsense.source.tracking.table.count','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nNumber of entries in the source tracking table.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6e40ddbf15a54b0e8ae2d1c52d5c2eba');
INSERT INTO `items` (`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`,`uuid`) values ('43651','20','1.3.6.1.4.1.12325.1.200.1.1.1.0','10528','OPNsense: Packet filter running status','opnsense.pf.status','1m','7d','365d','0','3','','','','',NULL,'1030','','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nTrue if packet filter is currently enabled.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f2b82b136ea943909a7b6317bf8b7785');
INSERT INTO `items` (`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`,`uuid`) values ('43652','20','.1.3.6.1.2.1.25.4.2.1.7["index",".1.3.6.1.2.1.25.4.2.1.2","unbound"]','10528','OPNsense: DNS server status','opnsense.dns.status','1m','7d','365d','0','3','','','','',NULL,'1029','','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe status of DNS server process.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c52c2b9a3d4e4446a8af02e5a51e9c55');
INSERT INTO `items` (`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`,`uuid`) values ('43653','20','1.3.6.1.4.1.12325.1.200.1.2.4.0','10528','OPNsense: Short packets','opnsense.packets.short','1m','7d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nTrue if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7b845d8282ee4c1394c71c22ada31da9');
INSERT INTO `items` (`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`,`uuid`) values ('43654','20','1.3.6.1.4.1.12325.1.200.1.2.5.0','10528','OPNsense: Normalized packets','opnsense.packets.normalize','1m','7d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nTrue if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7c8d4623d2fd4b77b0749caa67530bb2');
INSERT INTO `items` (`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`,`uuid`) values ('43655','20','1.3.6.1.4.1.12325.1.200.1.2.6.0','10528','OPNsense: Packets dropped due to memory limitation','opnsense.packets.mem.drop','1m','7d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nTrue if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3983366c271f4e9896d738c58f2d850f');
INSERT INTO `items` (`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`,`uuid`) values ('43656','20','1.3.6.1.4.1.12325.1.200.1.2.1.0','10528','OPNsense: Packets matched a filter rule','opnsense.packets.match','1m','7d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nTrue if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ae0bfb3bd36e4b05ae490c4b70ba1313');
INSERT INTO `items` (`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`,`uuid`) values ('43657','20','1.3.6.1.4.1.12325.1.200.1.2.3.0','10528','OPNsense: Fragmented packets','opnsense.packets.fragment','1m','7d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nTrue if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f8503508e3e646c781d637d1aefaf21a');
INSERT INTO `items` (`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`,`uuid`) values ('43658','20','1.3.6.1.4.1.12325.1.200.1.2.2.0','10528','OPNsense: Packets with bad offset','opnsense.packets.bad.offset','1m','7d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB\r\nTrue if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6a77c077e6bb44439ad766de038f71f1');
INSERT INTO `items` (`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`,`uuid`) values ('43659','20','.1.3.6.1.2.1.25.4.2.1.7["index",".1.3.6.1.2.1.25.4.2.1.2","lighttpd"]','10528','OPNsense: Web server status','opnsense.lighttpd.status','1m','7d','365d','0','3','','','','',NULL,'1029','','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe status of lighttpd process.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4bc80f5cece045cfa103fa9d4e5db9c6');
INSERT INTO `items` (`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`,`uuid`) values ('43660','5','','10528','OPNsense: SNMP agent availability','zabbix[host,snmp,available]','1m','7d','365d','0','3','','','','',NULL,'1031','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.\r\nPossible value:\r\n0 - not available\r\n1 - available\r\n2 - unknown','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','00f2e8aa55754a7b9063afc1d7749d85');
INSERT INTO `items` (`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`,`uuid`) values ('43661','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10528','Network interfaces discovery','opnsense.net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d7830514425f47eda3ac8ec20a1801b9');
INSERT INTO `items` (`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`,`uuid`) values ('43662','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.8["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 traffic blocked','net.if.in.block.v4.bps[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nIPv4 bits per second blocked coming in on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3a687275a219460c92433bda90be8d59');
INSERT INTO `items` (`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`,`uuid`) values ('43663','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.22["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 packets blocked','net.if.out.block.v6.pps[{#SNMPINDEX}]','1m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nThe number of IPv6 packets blocked going out on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a877f2c800874ce9bbf972ef8eb277be');
INSERT INTO `items` (`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`,`uuid`) values ('43664','20','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Operational status','net.if.status[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'1027','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe current operational state of the interface.\r\n- The testing(3) state indicates that no operational packet scan be passed\r\n- If ifAdminStatus is down(2) then ifOperStatus should be down(2)\r\n- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic\r\n- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)\r\n- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state\r\n- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1b352c1f96e84f2fb72c6414c0e15b29');
INSERT INTO `items` (`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`,`uuid`) values ('43665','20','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Speed','net.if.speed[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nAn estimate of the interface\'s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n\' then the speed of the interface is somewhere in the range of `n-500,000\' to`n+499,999\'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','76c91001f4b64ba99c132c3dd476cb88');
INSERT INTO `items` (`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`,`uuid`) values ('43666','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.6["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Rules references count','net.if.rules.refs[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nThe number of rules referencing this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bce50f45634d41b6a4ab8616e3a4d804');
INSERT INTO `items` (`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`,`uuid`) values ('43667','20','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Bits sent','net.if.out[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1f6a8e8f3cc746249001293fba59fcf3');
INSERT INTO `items` (`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`,`uuid`) values ('43668','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.21["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 packets passed','net.if.out.pass.v6.pps[{#SNMPINDEX}]','1m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nThe number of IPv6 packets passed going out on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d4c3d02a4e024d1a881789f9588c05f7');
INSERT INTO `items` (`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`,`uuid`) values ('43669','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.17["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 traffic passed','net.if.out.pass.v6.bps[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nIPv6 bits per second passed going out on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','993af213503d4cf8b921ed630a01e7f9');
INSERT INTO `items` (`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`,`uuid`) values ('43670','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.13["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 packets passed','net.if.out.pass.v4.pps[{#SNMPINDEX}]','1m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nThe number of IPv4 packets passed going out on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ec0b70c2c7d8452aaefefb737f567735');
INSERT INTO `items` (`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`,`uuid`) values ('43671','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.9["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 traffic passed','net.if.out.pass.v4.bps[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nIPv4 bits per second passed going out on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','be3ab46dc43d45da88917689e02b9f70');
INSERT INTO `items` (`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`,`uuid`) values ('43672','20','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound packets with errors','net.if.out.errors[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','357f0ab9a5814f06a04e5e2983226e26');
INSERT INTO `items` (`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`,`uuid`) values ('43673','20','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound packets discarded','net.if.out.discards[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of outbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d80bb6eac4ab43b58c6c785340b77494');
INSERT INTO `items` (`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`,`uuid`) values ('43674','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.18["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 traffic blocked','net.if.out.block.v6.bps[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nIPv6 bits per second blocked going out on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','dae11126c26543a7afd3c169fbc76cd5');
INSERT INTO `items` (`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`,`uuid`) values ('43675','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.12["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 packets blocked','net.if.in.block.v4.pps[{#SNMPINDEX}]','1m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nThe number of IPv4 packets blocked coming in on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d34be70208614a599e8706ede8d28f6d');
INSERT INTO `items` (`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`,`uuid`) values ('43676','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.14["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 packets blocked','net.if.out.block.v4.pps[{#SNMPINDEX}]','1m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nThe number of IPv4 packets blocked going out on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7f335123af85457cb5b8c43279f26b27');
INSERT INTO `items` (`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`,`uuid`) values ('43677','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.10["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 traffic blocked','net.if.out.block.v4.bps[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nIPv4 bits per second blocked going out on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0be1b473b51541c38012847e52ae9e1f');
INSERT INTO `items` (`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`,`uuid`) values ('43678','20','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Bits received','net.if.in[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','df19df9d63604ec294a49478a0963da2');
INSERT INTO `items` (`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`,`uuid`) values ('43679','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.19["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 packets passed','net.if.in.pass.v6.pps[{#SNMPINDEX}]','1m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nThe number of IPv6 packets passed coming in on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','23daac718d7743248b4e9e5dd9d537bf');
INSERT INTO `items` (`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`,`uuid`) values ('43680','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.15["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 traffic passed','net.if.in.pass.v6.bps[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nIPv6 bits per second passed coming in on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a21b0c97af544225971a6d0a2ddeaf2c');
INSERT INTO `items` (`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`,`uuid`) values ('43681','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.11["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 packets passed','net.if.in.pass.v4.pps[{#SNMPINDEX}]','1m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nThe number of IPv4 packets passed coming in on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','367629501e4248e0b6de19e7123b0df6');
INSERT INTO `items` (`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`,`uuid`) values ('43682','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.7["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 traffic passed','net.if.in.pass.v4.bps[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nIPv4 bits per second passed coming in on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da65b40184d84a2a98dd595e17794875');
INSERT INTO `items` (`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`,`uuid`) values ('43683','20','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound packets with errors','net.if.in.errors[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nFor packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c6f650d534c94a1bb0bf1faca829c538');
INSERT INTO `items` (`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`,`uuid`) values ('43684','20','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound packets discarded','net.if.in.discards[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe number of inbound packets which were chosen to be discarded\r\neven though no errors had been detected to prevent their being deliverable to a higher-layer protocol.\r\nOne possible reason for discarding such a packet could be to free up buffer space.\r\nDiscontinuities in the value of this counter can occur at re-initialization of the management system,\r\nand at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','77ad7ea9f85d419a81d99531ba71ef1d');
INSERT INTO `items` (`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`,`uuid`) values ('43685','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.20["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 packets blocked','net.if.in.block.v6.pps[{#SNMPINDEX}]','1m','7d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nThe number of IPv6 packets blocked coming in on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b9335034e4f94bb1b15f5b74a6467f89');
INSERT INTO `items` (`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`,`uuid`) values ('43686','20','.1.3.6.1.4.1.12325.1.200.1.8.2.1.16["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"]','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 traffic blocked','net.if.in.block.v6.bps[{#SNMPINDEX}]','1m','7d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB\r\nIPv6 bits per second blocked coming in on this interface.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e6bc104196ad44f8abf8b7609b464f07');
INSERT INTO `items` (`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`,`uuid`) values ('43687','20','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}','10528','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Interface type','net.if.type[{#SNMPINDEX}]','1m','7d','365d','0','3','','','','',NULL,'1028','','','0','','','','','2',NULL,'MIB: IF-MIB\r\nThe type of interface.\r\nAdditional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA),\r\nthrough updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2874d024da724dc687d0d8fa940fcf87');
INSERT INTO `items` (`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`,`uuid`) values ('43688','20','1.3.6.1.2.1.25.1.1.0','10204','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b12afb0277494024b1638ce620c4f2d4');
INSERT INTO `items` (`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`,`uuid`) values ('43689','20','1.3.6.1.2.1.25.1.1.0','10207','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','3ea3106277c64428950b4a5b6c4aedd0');
INSERT INTO `items` (`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`,`uuid`) values ('43690','20','1.3.6.1.2.1.25.1.1.0','10254','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5bf4c90019ae41688336f83bcbb481bb');
INSERT INTO `items` (`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`,`uuid`) values ('43691','20','1.3.6.1.2.1.25.1.1.0','10208','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a988240abba8442da83fdbcb789d0138');
INSERT INTO `items` (`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`,`uuid`) values ('43692','20','1.3.6.1.2.1.25.1.1.0','10210','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','78b57ca2787948cb8b92604f2a0fdccc');
INSERT INTO `items` (`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`,`uuid`) values ('43693','20','1.3.6.1.2.1.25.1.1.0','10211','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','09265047c03b4c7397d0b526d47e5a8e');
INSERT INTO `items` (`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`,`uuid`) values ('43694','20','1.3.6.1.2.1.25.1.1.0','10390','Uptime (hardware)','system.hw.uptime','1m','7d','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','64e59aaf9a4c4dd28e591c96075c183b');
INSERT INTO `items` (`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`,`uuid`) values ('43695','20','1.3.6.1.2.1.25.1.1.0','10391','Uptime (hardware)','system.hw.uptime','1m','7d','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','24df0110b0d541118d6609c3f3922fe5');
INSERT INTO `items` (`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`,`uuid`) values ('43696','20','1.3.6.1.2.1.25.1.1.0','10392','Uptime (hardware)','system.hw.uptime','1m','7d','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6fd05b29760a4b10bf9b1125e8747cd1');
INSERT INTO `items` (`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`,`uuid`) values ('43697','20','1.3.6.1.2.1.25.1.1.0','10393','Uptime (hardware)','system.hw.uptime','1m','7d','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b81c8fccadb94cd4bd7c798906d881ef');
INSERT INTO `items` (`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`,`uuid`) values ('43698','20','1.3.6.1.2.1.25.1.1.0','10394','Uptime (hardware)','system.hw.uptime','1m','7d','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f00b81685e5d41f49561b62d710e247f');
INSERT INTO `items` (`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`,`uuid`) values ('43699','20','1.3.6.1.2.1.25.1.1.0','10220','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','732ccfd809b44d7fa923c54e6577851d');
INSERT INTO `items` (`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`,`uuid`) values ('43700','20','1.3.6.1.2.1.25.1.1.0','10218','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f2173cd0262d4a60b5e134e00fed78e6');
INSERT INTO `items` (`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`,`uuid`) values ('43701','20','1.3.6.1.2.1.25.1.1.0','10253','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','927d85dbb82f4b9a9edf4fb6194e7427');
INSERT INTO `items` (`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`,`uuid`) values ('43702','20','1.3.6.1.2.1.25.1.1.0','10221','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5297253edb09463e8fdb6f1905e4f494');
INSERT INTO `items` (`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`,`uuid`) values ('43703','20','1.3.6.1.2.1.25.1.1.0','10222','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','68631d04f4a94b83901bad116fe68198');
INSERT INTO `items` (`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`,`uuid`) values ('43704','20','1.3.6.1.2.1.25.1.1.0','10223','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e4706d07b0824ccb8f4ee7ccec10a388');
INSERT INTO `items` (`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`,`uuid`) values ('43705','20','1.3.6.1.2.1.25.1.1.0','10224','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9e9db5d7fe5f4f4e8fc6581813699c1e');
INSERT INTO `items` (`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`,`uuid`) values ('43706','20','1.3.6.1.2.1.25.1.1.0','10226','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','76f954f8d7fd41109919ccbbb6151164');
INSERT INTO `items` (`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`,`uuid`) values ('43707','20','1.3.6.1.2.1.25.1.1.0','10227','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b476c099f8f64aa89cd5f61fc8b47dfa');
INSERT INTO `items` (`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`,`uuid`) values ('43708','20','1.3.6.1.2.1.25.1.1.0','10250','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a0659dadbef14fb1ac9be45d47388aa2');
INSERT INTO `items` (`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`,`uuid`) values ('43709','20','1.3.6.1.2.1.25.1.1.0','10229','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','202c91a61d644285a0d74d88ae1b1a79');
INSERT INTO `items` (`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`,`uuid`) values ('43710','20','1.3.6.1.2.1.25.1.1.0','10230','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f0fece305afd4ef9b7e9e6e9dd297e21');
INSERT INTO `items` (`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`,`uuid`) values ('43711','20','1.3.6.1.2.1.25.1.1.0','10231','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','833dd7b3b4e94dc89b4e7098cec3fce2');
INSERT INTO `items` (`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`,`uuid`) values ('43712','20','1.3.6.1.2.1.25.1.1.0','10251','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f867fb976e0b49a895129865e95096c2');
INSERT INTO `items` (`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`,`uuid`) values ('43713','20','1.3.6.1.2.1.25.1.1.0','10449','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','da2967c30d774681af4b7007bfbd01c5');
INSERT INTO `items` (`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`,`uuid`) values ('43714','20','1.3.6.1.2.1.25.1.1.0','10450','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','87ed039a5c7d4d5f8e6459ad8f5bfa0f');
INSERT INTO `items` (`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`,`uuid`) values ('43715','20','1.3.6.1.2.1.25.1.1.0','10451','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','466b42bafcaf4a9a891a1d554cfd688c');
INSERT INTO `items` (`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`,`uuid`) values ('43716','20','1.3.6.1.2.1.25.1.1.0','10452','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6625f426dcc949559a35ddfb3aed43d3');
INSERT INTO `items` (`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`,`uuid`) values ('43717','20','1.3.6.1.2.1.25.1.1.0','10453','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','094dba661554421087ef6454e6e899f6');
INSERT INTO `items` (`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`,`uuid`) values ('43718','20','1.3.6.1.2.1.25.1.1.0','10454','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7f1bc41c42fc410881b45972129ccf15');
INSERT INTO `items` (`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`,`uuid`) values ('43719','20','1.3.6.1.2.1.25.1.1.0','10455','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e8aeeb3ddfe6405ba5c02cbcf50681f4');
INSERT INTO `items` (`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`,`uuid`) values ('43720','20','1.3.6.1.2.1.25.1.1.0','10456','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6ba9b468dd2143a4a816c4bec1cee079');
INSERT INTO `items` (`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`,`uuid`) values ('43721','20','1.3.6.1.2.1.25.1.1.0','10457','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','af308a3e3ff14620a683f09d935887a7');
INSERT INTO `items` (`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`,`uuid`) values ('43722','20','1.3.6.1.2.1.25.1.1.0','10458','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c86226f9db8e4eda9216c0e5f96bf826');
INSERT INTO `items` (`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`,`uuid`) values ('43723','20','1.3.6.1.2.1.25.1.1.0','10459','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7b849a56812d4ceda43c4c3c96c09911');
INSERT INTO `items` (`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`,`uuid`) values ('43724','20','1.3.6.1.2.1.25.1.1.0','10460','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b4d7b0ae4b874f41afc1d2bb18444f59');
INSERT INTO `items` (`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`,`uuid`) values ('43725','20','1.3.6.1.2.1.25.1.1.0','10461','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cb05d9fcd5f04045b38b2653aa3f054f');
INSERT INTO `items` (`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`,`uuid`) values ('43726','20','1.3.6.1.2.1.25.1.1.0','10462','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d2825ec79526468bae315bcf4271c3bf');
INSERT INTO `items` (`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`,`uuid`) values ('43727','20','1.3.6.1.2.1.25.1.1.0','10463','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','730caedb1aba4e2bb914a9ac5e45bee0');
INSERT INTO `items` (`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`,`uuid`) values ('43728','20','1.3.6.1.2.1.25.1.1.0','10464','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','41c7402ad2354e5e8e5395b3e86d291c');
INSERT INTO `items` (`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`,`uuid`) values ('43729','20','1.3.6.1.2.1.25.1.1.0','10465','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d226673194c84ee7968632b06060d905');
INSERT INTO `items` (`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`,`uuid`) values ('43730','20','1.3.6.1.2.1.25.1.1.0','10466','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','76f9415c139b4c78bb5e77e094ced5e4');
INSERT INTO `items` (`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`,`uuid`) values ('43731','20','1.3.6.1.2.1.25.1.1.0','10467','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','43da9de2e9b949ea9844ac7e8991aa51');
INSERT INTO `items` (`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`,`uuid`) values ('43732','20','1.3.6.1.2.1.25.1.1.0','10468','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6e5f3a092d7f44f98f9f72ec7b65a412');
INSERT INTO `items` (`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`,`uuid`) values ('43733','20','1.3.6.1.2.1.25.1.1.0','10469','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','59bd59afea7c430ab9b87036d6f68d80');
INSERT INTO `items` (`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`,`uuid`) values ('43734','20','1.3.6.1.2.1.25.1.1.0','10470','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c36c9dba589944d4bc4253019663831e');
INSERT INTO `items` (`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`,`uuid`) values ('43735','20','1.3.6.1.2.1.25.1.1.0','10471','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9a3c0d8062f9470faeb350b3f025dc93');
INSERT INTO `items` (`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`,`uuid`) values ('43736','20','1.3.6.1.2.1.25.1.1.0','10472','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','bccedf8a6d434ee19ef03ae4b15db6e6');
INSERT INTO `items` (`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`,`uuid`) values ('43737','20','1.3.6.1.2.1.25.1.1.0','10473','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7052c7bbeffe4dbbbbc08f70c8d2679f');
INSERT INTO `items` (`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`,`uuid`) values ('43738','20','1.3.6.1.2.1.25.1.1.0','10474','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','093f8cdde4514b3cb81233a59eec8277');
INSERT INTO `items` (`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`,`uuid`) values ('43739','20','1.3.6.1.2.1.25.1.1.0','10475','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2521a17fcdb048c3ac5b3e425eb48ad6');
INSERT INTO `items` (`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`,`uuid`) values ('43740','20','1.3.6.1.2.1.25.1.1.0','10476','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b2fa99d8602342358690da734fc553a5');
INSERT INTO `items` (`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`,`uuid`) values ('43741','20','1.3.6.1.2.1.25.1.1.0','10477','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','7b93e987a3e442e39e2f822a0c271678');
INSERT INTO `items` (`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`,`uuid`) values ('43742','20','1.3.6.1.2.1.25.1.1.0','10478','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','90e82de3b7b043269947a13acaf0eae3');
INSERT INTO `items` (`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`,`uuid`) values ('43743','20','1.3.6.1.2.1.25.1.1.0','10479','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','96f11f9c23434a68b82d075f85af3c31');
INSERT INTO `items` (`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`,`uuid`) values ('43744','20','1.3.6.1.2.1.25.1.1.0','10480','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1634bc47137b4de9942b33ca99eb4541');
INSERT INTO `items` (`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`,`uuid`) values ('43745','20','1.3.6.1.2.1.25.1.1.0','10481','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e589fb99827e4e8197f6ecb8872b4f10');
INSERT INTO `items` (`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`,`uuid`) values ('43746','20','1.3.6.1.2.1.25.1.1.0','10482','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','218903c6b9c04999ab58583dfc22d42d');
INSERT INTO `items` (`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`,`uuid`) values ('43747','20','1.3.6.1.2.1.25.1.1.0','10483','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','424081b2ac3f453f84c7c0cf0d6270e5');
INSERT INTO `items` (`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`,`uuid`) values ('43748','20','1.3.6.1.2.1.25.1.1.0','10484','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','31874dc23f0046f98c978300e74ced72');
INSERT INTO `items` (`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`,`uuid`) values ('43749','20','1.3.6.1.2.1.25.1.1.0','10485','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d88eae8b609e42d68219e2b6d68422d1');
INSERT INTO `items` (`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`,`uuid`) values ('43750','20','1.3.6.1.2.1.25.1.1.0','10486','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c8f1e09b30a84047ac6a98bcc70b15a7');
INSERT INTO `items` (`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`,`uuid`) values ('43751','20','1.3.6.1.2.1.25.1.1.0','10487','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','96372468281d4b0e866a3aa4db1839be');
INSERT INTO `items` (`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`,`uuid`) values ('43752','20','1.3.6.1.2.1.25.1.1.0','10488','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','68f23663d1da4e12b259bc6f2689de9b');
INSERT INTO `items` (`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`,`uuid`) values ('43753','20','1.3.6.1.2.1.25.1.1.0','10489','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','806003915aa24c368a822a424f123d45');
INSERT INTO `items` (`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`,`uuid`) values ('43754','20','1.3.6.1.2.1.25.1.1.0','10490','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4cb64b20e3c84697b744db08b605c5b0');
INSERT INTO `items` (`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`,`uuid`) values ('43755','20','1.3.6.1.2.1.25.1.1.0','10491','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','012230315f3548d9948d1ad7ddc8d005');
INSERT INTO `items` (`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`,`uuid`) values ('43756','20','1.3.6.1.2.1.25.1.1.0','10492','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','074b83202e714d7d9bf63bf331f4f284');
INSERT INTO `items` (`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`,`uuid`) values ('43757','20','1.3.6.1.2.1.25.1.1.0','10493','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','437fe5b12b2d478fb69c1047b6421d96');
INSERT INTO `items` (`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`,`uuid`) values ('43758','20','1.3.6.1.2.1.25.1.1.0','10494','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f5f8ed93998a4b5799d1f6b2e1984006');
INSERT INTO `items` (`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`,`uuid`) values ('43759','20','1.3.6.1.2.1.25.1.1.0','10495','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b2fb7a55ee1b4030b4f621e73a730749');
INSERT INTO `items` (`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`,`uuid`) values ('43760','20','1.3.6.1.2.1.25.1.1.0','10496','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','971d14b46bad442499d7aea95c067dc7');
INSERT INTO `items` (`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`,`uuid`) values ('43761','20','1.3.6.1.2.1.25.1.1.0','10497','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','42eee310a68844deb422d5ff3a715efa');
INSERT INTO `items` (`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`,`uuid`) values ('43762','20','1.3.6.1.2.1.25.1.1.0','10498','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','691b2eadbe314570841aafbe2ad2afb1');
INSERT INTO `items` (`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`,`uuid`) values ('43763','20','1.3.6.1.2.1.25.1.1.0','10499','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','32d6b1147607490287da049b08140f0b');
INSERT INTO `items` (`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`,`uuid`) values ('43764','20','1.3.6.1.2.1.25.1.1.0','10500','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c30a010e7f134bc88fc47708d02a0a31');
INSERT INTO `items` (`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`,`uuid`) values ('43765','20','1.3.6.1.2.1.25.1.1.0','10501','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f0ff722acc544222bac0a51456515570');
INSERT INTO `items` (`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`,`uuid`) values ('43766','20','1.3.6.1.2.1.25.1.1.0','10502','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','850f16c89c1a44c585852784dc32bb1b');
INSERT INTO `items` (`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`,`uuid`) values ('43767','20','1.3.6.1.2.1.25.1.1.0','10233','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','94f4af679dba4d3e9047ebcf8c1bc419');
INSERT INTO `items` (`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`,`uuid`) values ('43768','20','1.3.6.1.2.1.25.1.1.0','10371','Status: Uptime (hardware)','status.hw.uptime','1m','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','712a9b442bec4e89acf4ee5d5bf26fb8');
INSERT INTO `items` (`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`,`uuid`) values ('43769','20','1.3.6.1.2.1.25.1.1.0','10372','Status: Uptime (hardware)','status.hw.uptime','1m','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','2c9f864ac33b4c2d992459c6519d045a');
INSERT INTO `items` (`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`,`uuid`) values ('43770','20','1.3.6.1.2.1.25.1.1.0','10373','Status: Uptime (hardware)','status.hw.uptime','1m','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','76a660b88bb74e90971bdaec703d3c17');
INSERT INTO `items` (`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`,`uuid`) values ('43771','20','1.3.6.1.2.1.25.1.1.0','10374','Status: Uptime (hardware)','status.hw.uptime','1m','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d1e50f16fab54a8e97372b52cebae18d');
INSERT INTO `items` (`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`,`uuid`) values ('43772','20','1.3.6.1.2.1.25.1.1.0','10375','Status: Uptime (hardware)','status.hw.uptime','1m','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d61bd2d5717740518867bfbf734914c9');
INSERT INTO `items` (`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`,`uuid`) values ('43773','20','1.3.6.1.2.1.25.1.1.0','10376','Status: Uptime (hardware)','status.hw.uptime','1m','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5e2aebe0ce2044588636be62cde6b6a3');
INSERT INTO `items` (`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`,`uuid`) values ('43774','20','1.3.6.1.2.1.25.1.1.0','10377','Status: Uptime (hardware)','status.hw.uptime','1m','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','6903297e21e14aa8b5eed4eb0f7e1e01');
INSERT INTO `items` (`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`,`uuid`) values ('43775','20','1.3.6.1.2.1.25.1.1.0','10234','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d0e66c64c0b2449a9c5ffbbdaf176963');
INSERT INTO `items` (`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`,`uuid`) values ('43776','20','1.3.6.1.2.1.25.1.1.0','10235','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','94671639676f476f8b7c37a884d32ed0');
INSERT INTO `items` (`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`,`uuid`) values ('43777','20','1.3.6.1.2.1.25.1.1.0','10236','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','964e73aa4e534b50bd1d93e137ca41f1');
INSERT INTO `items` (`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`,`uuid`) values ('43778','20','1.3.6.1.2.1.25.1.1.0','10237','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','0d47c914219e4da0a7d67631d8171244');
INSERT INTO `items` (`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`,`uuid`) values ('43779','20','.1.3.6.1.2.1.25.1.1.0','10420','ZYXEL AAM1212-51 / IES-612: Uptime (hardware)','zyxel.aam1212.hw.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5197238bef51468c80e6a4180babee5b');
INSERT INTO `items` (`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`,`uuid`) values ('43780','20','.1.3.6.1.2.1.25.1.1.0','10421','ZYXEL ES3500-8PD: Uptime (hardware)','zyxel.3500_8pd.hw.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ef45d91672ea43c3aa24cbc21f37d391');
INSERT INTO `items` (`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`,`uuid`) values ('43781','20','.1.3.6.1.2.1.25.1.1.0','10422','ZYXEL GS-4012F: Uptime (hardware)','zyxel.4012f.hw.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','1f979fc1f31c4766949cfc343d3c231a');
INSERT INTO `items` (`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`,`uuid`) values ('43782','20','.1.3.6.1.2.1.25.1.1.0','10423','ZYXEL IES-500x: Uptime (hardware)','zyxel.ies500x.hw.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5fa56229a8854d62bb6c516da873d63b');
INSERT INTO `items` (`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`,`uuid`) values ('43783','20','.1.3.6.1.2.1.25.1.1.0','10424','ZYXEL IES-6000: Uptime (hardware)','zyxel.ies6000.hw.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','006a65489cfc4231acad12cdb501a55c');
INSERT INTO `items` (`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`,`uuid`) values ('43784','20','.1.3.6.1.2.1.25.1.1.0','10425','ZYXEL IES1248-51: Uptime (hardware)','zyxel.ies1248.hw.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4b55d1aaee3b441bab6edaaf738065e4');
INSERT INTO `items` (`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`,`uuid`) values ('43785','20','.1.3.6.1.2.1.25.1.1.0','10426','ZYXEL MES-3528: Uptime (hardware)','zyxel.3528.hw.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9293989c2bd14bc4a12cdd40a9c7f229');
INSERT INTO `items` (`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`,`uuid`) values ('43786','20','.1.3.6.1.2.1.25.1.1.0','10427','ZYXEL MES3500-10: Uptime (hardware)','zyxel.3500_10.hw.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d0d33209ea1249e588f2e81807ae6403');
INSERT INTO `items` (`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`,`uuid`) values ('43787','20','.1.3.6.1.2.1.25.1.1.0','10428','ZYXEL MES3500-24: Uptime (hardware)','zyxel.3500_24.hw.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','fb480642cad3440a8637d871add07b8f');
INSERT INTO `items` (`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`,`uuid`) values ('43788','20','.1.3.6.1.2.1.25.1.1.0','10429','ZYXEL MGS-3712: Uptime (hardware)','zyxel.3712.hw.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','801ba0a2d20f440d822eb042146b8d16');
INSERT INTO `items` (`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`,`uuid`) values ('43789','20','.1.3.6.1.2.1.25.1.1.0','10430','ZYXEL MGS-3712F: Uptime (hardware)','zyxel.3712f.hw.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','29bc66a7a2c949549fc2e4c6fa841ab0');
INSERT INTO `items` (`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`,`uuid`) values ('43790','20','.1.3.6.1.2.1.25.1.1.0','10431','ZYXEL ES3500-8PD: Uptime (hardware)','zyxel.3500_24s.hw.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','feff31efc5b04b14bf19ec256a6660fb');
INSERT INTO `items` (`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`,`uuid`) values ('43791','20','.1.3.6.1.2.1.25.1.1.0','10432','ZYXEL MGS3520-28x: Uptime (hardware)','zyxel.3520_28.hw.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8f050b29d1eb43e4a150383c9edd2467');
INSERT INTO `items` (`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`,`uuid`) values ('43792','20','.1.3.6.1.2.1.25.1.1.0','10433','ZYXEL XGS-4728F: Uptime (hardware)','zyxel.4728f.hw.uptime','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','17bdc70663744ede94d7b94602eb881c');
INSERT INTO `items` (`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`,`uuid`) values ('43793','20','1.3.6.1.2.1.25.1.1.0','10248','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','d1a9af129dbb4fed8e67efcca383aeae');
INSERT INTO `items` (`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`,`uuid`) values ('43794','20','1.3.6.1.2.1.25.1.1.0','10249','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','422d9e4a985347959d5ef07278a6a12c');
INSERT INTO `items` (`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`,`uuid`) values ('43795','20','1.3.6.1.2.1.25.1.1.0','10400','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b73fb48b4da84a53b7a4b7e81d6037aa');
INSERT INTO `items` (`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`,`uuid`) values ('43796','20','1.3.6.1.2.1.25.1.1.0','10401','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4dbad4f0de7f47fd996fd4b8de048d46');
INSERT INTO `items` (`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`,`uuid`) values ('43797','20','1.3.6.1.2.1.25.1.1.0','10402','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','ed6ad4e7036548c09b9a61d875aca9e1');
INSERT INTO `items` (`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`,`uuid`) values ('43798','20','1.3.6.1.2.1.25.1.1.0','10403','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','60bef30ff568425eb5e4c5e6dc861e79');
INSERT INTO `items` (`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`,`uuid`) values ('43799','20','1.3.6.1.2.1.25.1.1.0','10404','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4def354a520e42d78d67b2e8b1cd8eb4');
INSERT INTO `items` (`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`,`uuid`) values ('43800','20','1.3.6.1.2.1.25.1.1.0','10412','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','9d1f4a038ee447639a07f3549ad68840');
INSERT INTO `items` (`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`,`uuid`) values ('43801','20','1.3.6.1.2.1.25.1.1.0','10406','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','4e8b6d6a5aa24159b048d1cf28e9418a');
INSERT INTO `items` (`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`,`uuid`) values ('43802','20','1.3.6.1.2.1.25.1.1.0','10395','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b3d5eea37f934efdac4885bcadc73b9b');
INSERT INTO `items` (`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`,`uuid`) values ('43803','20','1.3.6.1.2.1.25.1.1.0','10407','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','e5a92d45430b4bd6bdef42870141d141');
INSERT INTO `items` (`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`,`uuid`) values ('43804','20','1.3.6.1.2.1.25.1.1.0','10408','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','b3021bc8a0324d4d9683f676131bf136');
INSERT INTO `items` (`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`,`uuid`) values ('43805','20','1.3.6.1.2.1.25.1.1.0','10409','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c7522be948bd4f97a47d59cf1e281c56');
INSERT INTO `items` (`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`,`uuid`) values ('43806','20','1.3.6.1.2.1.25.1.1.0','10385','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','f54aca2b926e4d4d980f980acb0aefac');
INSERT INTO `items` (`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`,`uuid`) values ('43807','20','1.3.6.1.2.1.25.1.1.0','10378','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','76483f37faf8485b922640a6ef8bb672');
INSERT INTO `items` (`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`,`uuid`) values ('43808','20','1.3.6.1.2.1.25.1.1.0','10434','Uptime (hardware)','cisco.ucs.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized.\r\nNote that this is different from sysUpTime in the SNMPv2-MIB\r\n[RFC1907] because sysUpTime is the uptime of the\r\nnetwork management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5af56ed99d09489aafc2d08d4bd4903a');
INSERT INTO `items` (`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`,`uuid`) values ('43809','20','1.3.6.1.2.1.25.1.1.0','10304','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','a6d61b21f9f044a6912759e02787cb3f');
INSERT INTO `items` (`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`,`uuid`) values ('43810','20','1.3.6.1.2.1.25.1.1.0','10436','Dell R720: Uptime (hardware)','dell.server.hw.uptime[hrSystemUptime]','1m','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cd2c68b05b67404c8305e13ebe54e63a');
INSERT INTO `items` (`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`,`uuid`) values ('43811','20','1.3.6.1.2.1.25.1.1.0','10438','Dell R740: Uptime (hardware)','dell.server.hw.uptime[hrSystemUptime]','1m','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','cce427167ddc49499ce415a6da8b9efb');
INSERT INTO `items` (`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`,`uuid`) values ('43812','20','1.3.6.1.2.1.25.1.1.0','10440','Dell R820: Uptime (hardware)','dell.server.hw.uptime[hrSystemUptime]','1m','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','c6bd338df31b428c8994664654ddb384');
INSERT INTO `items` (`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`,`uuid`) values ('43813','20','1.3.6.1.2.1.25.1.1.0','10442','Dell R840: Uptime (hardware)','dell.server.hw.uptime[hrSystemUptime]','1m','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','def89c137aaa489bb7ab44f642248e15');
INSERT INTO `items` (`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`,`uuid`) values ('43814','20','1.3.6.1.2.1.25.1.1.0','10255','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','935e3509834844d38a3a8df4d5f698d8');
INSERT INTO `items` (`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`,`uuid`) values ('43815','20','1.3.6.1.2.1.25.1.1.0','10443','Uptime (hardware)','hp.server.hw.uptime[hrSystemUptime]','1m','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','22f0b65d03d44ae0be7133eb19ecc920');
INSERT INTO `items` (`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`,`uuid`) values ('43816','20','1.3.6.1.2.1.25.1.1.0','10444','Uptime (hardware)','hp.server.hw.uptime[hrSystemUptime]','1m','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','5cd1e01b10f3482e9ec5907bd2e55c26');
INSERT INTO `items` (`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`,`uuid`) values ('43817','20','1.3.6.1.2.1.25.1.1.0','10445','Uptime (hardware)','hp.server.hw.uptime[hrSystemUptime]','1m','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8026a919077f4373adf774a18beb95eb');
INSERT INTO `items` (`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`,`uuid`) values ('43818','20','1.3.6.1.2.1.25.1.1.0','10446','Uptime (hardware)','hp.server.hw.uptime[hrSystemUptime]','1m','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','437a251079a44869ba9b11b2184d85e7');
INSERT INTO `items` (`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`,`uuid`) values ('43819','20','1.3.6.1.2.1.25.1.1.0','10256','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','02e21fa19e814d529ae24f89e3bbf947');
INSERT INTO `items` (`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`,`uuid`) values ('43820','20','1.3.6.1.2.1.25.1.1.0','10258','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','81e5ed7d945d40f780eb9bd872ea1832');
INSERT INTO `items` (`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`,`uuid`) values ('43821','20','1.3.6.1.2.1.25.1.1.0','10259','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB\r\nThe amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','8b0320157a0144a0b2f1d7df7cbbe08a');
INSERT INTO `items` (`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`,`uuid`) values ('28306','18','','10254','Temperature discovery','temp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'ENTITY-SENSORS-MIB::EntitySensorDataType discovery with temperature filter','0','30d','1','','33181','3s','','','','200','1','0','','0','0','0','0','0','0','0','50d834b15d7f4755b1ff89ddba90fa4d');
INSERT INTO `items` (`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`,`uuid`) values ('28307','18','','10254','Fan discovery','fan.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'ENTITY-SENSORS-MIB::EntitySensorDataType discovery with rpm filter','0','30d','2','','33181','3s','','','','200','1','0','','0','0','0','0','0','0','0','c78a9f82601847338d687ed01577e958');
INSERT INTO `items` (`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`,`uuid`) values ('28542','18','','10261','Remote Zabbix server: History index cache, % used','wcache.index.pused','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache. Percentage of used history index buffer.\r\nHistory index cache is used to index values stored in history cache.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','b1add70210a44b668f06cc3e062173ad');
INSERT INTO `items` (`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`,`uuid`) values ('28543','18','','10261','Remote Zabbix server: Configuration cache, % used','rcache.buffer.pused','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Availability statistics of Zabbix configuration cache. Percentage of used buffer.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','750964513e1d44d7b138980d6cac2188');
INSERT INTO `items` (`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`,`uuid`) values ('28544','18','','10261','Remote Zabbix server: Value cache, % used','vcache.buffer.pused','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Availability statistics of Zabbix value cache. Percentage of used buffer.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','9f9d8d1fcd08498698e37b5889502b47');
INSERT INTO `items` (`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`,`uuid`) values ('28545','18','','10261','Remote Zabbix server: Value cache hits','vcache.cache.hits','0','1w','365d','0','0','','vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Effectiveness statistics of Zabbix value cache. Number of cache hits\r\n(history values taken from the cache).','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','9bd0079126974bf2a61f552de2cdf880');
INSERT INTO `items` (`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`,`uuid`) values ('28546','18','','10261','Remote Zabbix server: Value cache misses','vcache.cache.misses','0','1w','365d','0','0','','vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Effectiveness statistics of Zabbix value cache. Number of cache misses\r\n(history values taken from the database).','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','e8c372778d4e434e98d3fba5ea603a50');
INSERT INTO `items` (`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`,`uuid`) values ('28547','18','','10261','Remote Zabbix server: Value cache operating mode','vcache.cache.mode','0','1w','365d','0','3','','','','',NULL,'56','','','0','','','','','0',NULL,'Value cache operating mode.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','1a1daeb7267f4ed4bf75c70699d487b6');
INSERT INTO `items` (`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`,`uuid`) values ('28548','18','','10261','Remote Zabbix server: VMware cache, % used','vmware.buffer.pused','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Availability statistics of Zabbix vmware cache. Percentage of used buffer.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','9e2b2133916e4ce29ed4e9ca07c74123');
INSERT INTO `items` (`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`,`uuid`) values ('28549','18','','10261','Remote Zabbix server: History write cache, % used','wcache.history.pused','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache. Percentage of used history buffer.\r\nHistory cache is used to store item values. A high number indicates performance problems on the database side.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','98f47a07e2ba4294a9eb2aa1df2ba9f3');
INSERT INTO `items` (`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`,`uuid`) values ('28550','18','','10261','Remote Zabbix server: Number of processed values per second','wcache.values','0','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nTotal number of values processed by Zabbix server or Zabbix proxy, except unsupported items.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','34fe014843974248a98a45596ce43e1a');
INSERT INTO `items` (`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`,`uuid`) values ('28551','18','','10261','Remote Zabbix server: Trend write cache, % used','wcache.trend.pused','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache. Percentage of used trend buffer.\r\nTrend cache stores aggregate for the current hour for all items that receive data.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','1f79208bb2ec4e4eb26e6e1b95c3635e');
INSERT INTO `items` (`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`,`uuid`) values ('28552','18','','10261','Remote Zabbix server: Utilization of unreachable poller data collector processes, in %','process.unreachable_poller.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time unreachable poller processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','8d43954f6b9843009353c560a4f84157');
INSERT INTO `items` (`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`,`uuid`) values ('28553','18','','10261','Remote Zabbix server: Number of processed numeric (float) values per second','wcache.values.float','0','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed float values.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','206f4fcb1e6d4e468a172e330f56b8aa');
INSERT INTO `items` (`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`,`uuid`) values ('28554','18','','10261','Remote Zabbix server: Number of processed log values per second','wcache.values.log','0','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed log values.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','e2f3dc320d54446b80862eabe6fa0be5');
INSERT INTO `items` (`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`,`uuid`) values ('28555','18','','10261','Remote Zabbix server: Number of processed not supported values per second','wcache.values.not_supported','0','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of times item processing resulted in item becoming unsupported or keeping that state.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','82e088caf6e14c1cab700ad7fcc96263');
INSERT INTO `items` (`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`,`uuid`) values ('28556','18','','10261','Remote Zabbix server: Number of processed character values per second','wcache.values.str','0','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed character/string values.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','99415cd1920a4e7f8b99f3c71e7eba97');
INSERT INTO `items` (`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`,`uuid`) values ('28557','18','','10261','Remote Zabbix server: Number of processed text values per second','wcache.values.text','0','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed text values.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','7172378f31a44a36a095a2c2afed763b');
INSERT INTO `items` (`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`,`uuid`) values ('28558','18','','10261','Remote Zabbix server: Number of processed numeric (unsigned) values per second','wcache.values.uint','0','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed numeric (unsigned) values.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','7865ba7a928945f4a148acf623b72537');
INSERT INTO `items` (`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`,`uuid`) values ('28559','18','','10261','Remote Zabbix server: Utilization of vmware data collector processes, in %','process.vmware_collector.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time vmware collector processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','9f02a181362b42b882d869353fae93ce');
INSERT INTO `items` (`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`,`uuid`) values ('28560','18','','10261','Remote Zabbix server: Preprocessing queue','preprocessing_queue','0','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of values enqueued in the preprocessing queue.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','9881f258f69d459195b5a19c56c523a8');
INSERT INTO `items` (`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`,`uuid`) values ('28561','18','','10261','Remote Zabbix server: Utilization of alerter internal processes, in %','process.alerter.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time alerter processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','d8071d9c280c468cb70b19be50c756a5');
INSERT INTO `items` (`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`,`uuid`) values ('28562','18','','10261','Remote Zabbix server: Utilization of ipmi manager internal processes, in %','process.ipmi_manager.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time ipmi manager processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','52a05106bc5e4e05b04142827f394662');
INSERT INTO `items` (`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`,`uuid`) values ('28563','18','','10261','Remote Zabbix server: Utilization of alert manager internal processes, in %','process.alert_manager.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time alert manager processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','14347f8309934849a2ac13974e4b66d1');
INSERT INTO `items` (`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`,`uuid`) values ('28564','18','','10261','Remote Zabbix server: Utilization of configuration syncer internal processes, in %','process.configuration_syncer.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time configuration syncer processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','439e81aed41e4fd7ba7f2e4a97ca1a91');
INSERT INTO `items` (`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`,`uuid`) values ('28565','18','','10261','Remote Zabbix server: Utilization of discoverer data collector processes, in %','process.discoverer.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time discoverer processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','396cdd296a3a4ee4a247afaa0f64e41c');
INSERT INTO `items` (`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`,`uuid`) values ('28566','18','','10261','Remote Zabbix server: Utilization of escalator internal processes, in %','process.escalator.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time escalator processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','d8110a23217142b9b10f2eda00a96f39');
INSERT INTO `items` (`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`,`uuid`) values ('28567','18','','10261','Remote Zabbix server: Utilization of history syncer internal processes, in %','process.history_syncer.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time history syncer processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','2b651866c6f04880888a770e9a08a167');
INSERT INTO `items` (`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`,`uuid`) values ('28568','18','','10261','Remote Zabbix server: Utilization of housekeeper internal processes, in %','process.housekeeper.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time housekeeper processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','8eb5b40740a349fbb14ed39dd840fc85');
INSERT INTO `items` (`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`,`uuid`) values ('28569','18','','10261','Remote Zabbix server: Utilization of http poller data collector processes, in %','process.http_poller.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time http poller processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','02371dc53214403dbf34ff9e970408ef');
INSERT INTO `items` (`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`,`uuid`) values ('28570','18','','10261','Remote Zabbix server: Utilization of icmp pinger data collector processes, in %','process.icmp_pinger.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time icmp pinger processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','3a2dfedfac164b69a01105137eefd5e9');
INSERT INTO `items` (`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`,`uuid`) values ('28571','18','','10261','Remote Zabbix server: Utilization of ipmi poller data collector processes, in %','process.ipmi_poller.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time ipmi poller processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','849f8b11cc984c758c4947fe256e3310');
INSERT INTO `items` (`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`,`uuid`) values ('28572','18','','10261','Remote Zabbix server: Utilization of timer internal processes, in %','process.timer.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time timer processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','105eae2d56d34d91b540f93009a575aa');
INSERT INTO `items` (`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`,`uuid`) values ('28573','18','','10261','Remote Zabbix server: Utilization of java poller data collector processes, in %','process.java_poller.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time java poller processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','e55654715f8143c597c858d7eb522e31');
INSERT INTO `items` (`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`,`uuid`) values ('28574','18','','10261','Remote Zabbix server: Utilization of poller data collector processes, in %','process.poller.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time poller processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','61df12fa054b46f4b50596807dbc90c3');
INSERT INTO `items` (`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`,`uuid`) values ('28575','18','','10261','Remote Zabbix server: Utilization of preprocessing manager internal processes, in %','process.preprocessing_manager.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time preprocessing manager processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','42e9efb8e5e54b26b84372dc53e823b3');
INSERT INTO `items` (`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`,`uuid`) values ('28576','18','','10261','Remote Zabbix server: Utilization of preprocessing worker internal processes, in %','process.preprocessing_worker.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time preprocessing worker processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','90bd4b46d63845b98a2c430aac157ea5');
INSERT INTO `items` (`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`,`uuid`) values ('28577','18','','10261','Remote Zabbix server: Utilization of proxy poller data collector processes, in %','process.proxy_poller.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time proxy poller processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','4c5eb5acc8a447afa47d732988dafbd9');
INSERT INTO `items` (`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`,`uuid`) values ('28578','18','','10261','Remote Zabbix server: Utilization of self-monitoring internal processes, in %','process.self-monitoring.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time self-monitoring processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','044bb995bcae42568979fd958383fc60');
INSERT INTO `items` (`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`,`uuid`) values ('28579','18','','10261','Remote Zabbix server: Utilization of snmp trapper data collector processes, in %','process.snmp_trapper.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time snmp trapper processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','643036d74a10414f94dc357efbbd42b2');
INSERT INTO `items` (`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`,`uuid`) values ('28580','18','','10261','Remote Zabbix server: Utilization of task manager internal processes, in %','process.task_manager.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time task manager processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','7fad0515db154228b5baabb51d647a9f');
INSERT INTO `items` (`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`,`uuid`) values ('28581','18','','10261','Remote Zabbix server: Utilization of trapper data collector processes, in %','process.trapper.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time trapper processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','9c90b3a087e1495caa17a00bebb70145');
INSERT INTO `items` (`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`,`uuid`) values ('28582','18','','10261','Remote Zabbix server: Utilization of LLD manager internal processes, in %','process.lld_manager.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time lld manager processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','b8504e03317649399dabfffc2758d77c');
INSERT INTO `items` (`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`,`uuid`) values ('28583','18','','10261','Remote Zabbix server: Utilization of LLD worker internal processes, in %','process.lld_worker.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time lld worker processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','c4d708a59d314de6814f4936ec6b0a99');
INSERT INTO `items` (`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`,`uuid`) values ('28584','18','','10261','Remote Zabbix server: LLD queue','lld_queue','0','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of values enqueued in the low-level discovery processing queue.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','adcf44e5179644b0bee34103d3d3688e');
INSERT INTO `items` (`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`,`uuid`) values ('28588','18','','10262','Remote Zabbix proxy: Utilization of vmware data collector processes, in %','process.vmware_collector.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time vmware collector processes have been busy in the last minute.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','54d7e2578b594022ad406b40c9dd57fe');
INSERT INTO `items` (`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`,`uuid`) values ('28589','18','','10262','Remote Zabbix proxy: Number of processed numeric (unsigned) values per second','wcache.values.uint','0','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed numeric (unsigned) values.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','c53f480b861249c4a1ca12571faa4487');
INSERT INTO `items` (`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`,`uuid`) values ('28590','18','','10262','Remote Zabbix proxy: Number of processed text values per second','wcache.values.text','0','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed text values.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','35b053f8ce89430b989387eb3075b582');
INSERT INTO `items` (`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`,`uuid`) values ('28591','18','','10262','Remote Zabbix proxy: Number of processed character values per second','wcache.values.str','0','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed character/string values.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','334584cfea704011b8ae70436e47e2ff');
INSERT INTO `items` (`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`,`uuid`) values ('28592','18','','10262','Remote Zabbix proxy: Number of processed not supported values per second','wcache.values.not_supported','0','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of times item processing resulted in item becoming unsupported or keeping that state.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','927b1387d969466eba000855837887c7');
INSERT INTO `items` (`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`,`uuid`) values ('28593','18','','10262','Remote Zabbix proxy: Number of processed log values per second','wcache.values.log','0','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed log values.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','b20b00f97a424b8e9c69ebb749a94d65');
INSERT INTO `items` (`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`,`uuid`) values ('28594','18','','10262','Remote Zabbix proxy: Number of processed numeric (float) values per second','wcache.values.float','0','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed float values.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','f20ff449693a479895b7f3b450b93787');
INSERT INTO `items` (`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`,`uuid`) values ('28595','18','','10262','Remote Zabbix proxy: Number of processed values per second','wcache.values','0','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nTotal number of values processed by Zabbix server or Zabbix proxy, except unsupported items.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','0238a93001a3438988b9b5cc4cbcc68e');
INSERT INTO `items` (`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`,`uuid`) values ('28596','18','','10262','Remote Zabbix proxy: History index cache, % used','wcache.index.pused','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache. Percentage of used history index buffer.\r\nHistory index cache is used to index values stored in history cache.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','a907ff2d6d8e4389b116eb3ec01dacfe');
INSERT INTO `items` (`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`,`uuid`) values ('28597','18','','10262','Remote Zabbix proxy: History write cache, % used','wcache.history.pused','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache. Percentage of used history buffer.\r\nHistory cache is used to store item values. A high number indicates performance problems on the database side.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','2abf18f2a9c9412ca81d615f45d4ca5f');
INSERT INTO `items` (`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`,`uuid`) values ('28598','18','','10262','Remote Zabbix proxy: VMware cache, % used','vmware.buffer.pused','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Availability statistics of Zabbix vmware cache. Percentage of used buffer.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','7e6ffd55fe6842219f6e0d3c81ffa309');
INSERT INTO `items` (`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`,`uuid`) values ('28599','18','','10262','Remote Zabbix proxy: Configuration cache, % used','rcache.buffer.pused','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Availability statistics of Zabbix configuration cache. Percentage of used buffer.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','72dd891d7ced4cefb7de988dadf81f3b');
INSERT INTO `items` (`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`,`uuid`) values ('28600','18','','10262','Remote Zabbix proxy: Utilization of configuration syncer internal processes, in %','process.configuration_syncer.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time configuration syncer processes have been busy in the last minute.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','457a086236ab40eda5c9758eabacb73d');
INSERT INTO `items` (`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`,`uuid`) values ('28601','18','','10262','Remote Zabbix proxy: Utilization of data sender internal processes, in %','process.data_sender.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time data sender processes have been busy in the last minute.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','ff9c1cb7fb234ad2b793c4f296b79834');
INSERT INTO `items` (`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`,`uuid`) values ('28602','18','','10262','Remote Zabbix proxy: Utilization of trapper data collector processes, in %','process.trapper.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time trapper processes have been busy in the last minute.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','d37a6ebb128d4221a34c8d78736ea90b');
INSERT INTO `items` (`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`,`uuid`) values ('28603','18','','10262','Remote Zabbix proxy: Utilization of task manager internal processes, in %','process.task_manager.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time task manager processes have been busy in the last minute.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','48ab13daaf0541bdbf317226c753472c');
INSERT INTO `items` (`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`,`uuid`) values ('28604','18','','10262','Remote Zabbix proxy: Utilization of snmp trapper data collector processes, in %','process.snmp_trapper.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time snmp trapper processes have been busy in the last minute.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','3c06aed8f9ca4790b23132498e32701f');
INSERT INTO `items` (`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`,`uuid`) values ('28605','18','','10262','Remote Zabbix proxy: Utilization of self-monitoring internal processes, in %','process.self-monitoring.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time self-monitoring processes have been busy in the last minute.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','fbfe2a05b2914c9d8b1b39aa7320aaf3');
INSERT INTO `items` (`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`,`uuid`) values ('28606','18','','10262','Remote Zabbix proxy: Utilization of poller data collector processes, in %','process.poller.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time poller processes have been busy in the last minute.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','e44b8cc43d5c49c5a81ed33c5cc44c82');
INSERT INTO `items` (`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`,`uuid`) values ('28607','18','','10262','Remote Zabbix proxy: Utilization of java poller data collector processes, in %','process.java_poller.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time java poller processes have been busy in the last minute.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','c37b027a671449dca92cfbf1b15e711f');
INSERT INTO `items` (`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`,`uuid`) values ('28608','18','','10262','Remote Zabbix proxy: Utilization of ipmi poller data collector processes, in %','process.ipmi_poller.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time ipmi poller processes have been busy in the last minute.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','c4ff983246e7450f96af03da274df151');
INSERT INTO `items` (`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`,`uuid`) values ('28609','18','','10262','Remote Zabbix proxy: Utilization of ipmi manager internal processes, in %','process.ipmi_manager.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time ipmi manager processes have been busy in the last minute.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','fb560cce51714f9c8b5164f7587930e5');
INSERT INTO `items` (`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`,`uuid`) values ('28610','18','','10262','Remote Zabbix proxy: Utilization of icmp pinger data collector processes, in %','process.icmp_pinger.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time icmp pinger processes have been busy in the last minute.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','f03927fd354a490e95521e5922a19ad3');
INSERT INTO `items` (`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`,`uuid`) values ('28611','18','','10262','Remote Zabbix proxy: Utilization of http poller data collector processes, in %','process.http_poller.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time http poller processes have been busy in the last minute.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','4f335477bd654368a7870dc5cd21e114');
INSERT INTO `items` (`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`,`uuid`) values ('28612','18','','10262','Remote Zabbix proxy: Utilization of housekeeper internal processes, in %','process.housekeeper.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time housekeeper processes have been busy in the last minute.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','50c3587febc14c118ca2868c24e42770');
INSERT INTO `items` (`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`,`uuid`) values ('28613','18','','10262','Remote Zabbix proxy: Utilization of history syncer internal processes, in %','process.history_syncer.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time history syncer processes have been busy in the last minute.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','c710e445710b4d98bd4ebcd5770c7d5a');
INSERT INTO `items` (`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`,`uuid`) values ('28614','18','','10262','Remote Zabbix proxy: Utilization of heartbeat sender internal processes, in %','process.heartbeat_sender.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time heartbeat sender processes have been busy in the last minute.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','9ca58c0a87f54733ae9794d052092944');
INSERT INTO `items` (`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`,`uuid`) values ('28615','18','','10262','Remote Zabbix proxy: Utilization of discoverer data collector processes, in %','process.discoverer.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time discoverer processes have been busy in the last minute.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','504c144b92d5435b91c2c0c120bd9439');
INSERT INTO `items` (`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`,`uuid`) values ('28616','18','','10262','Remote Zabbix proxy: Utilization of unreachable poller data collector processes, in %','process.unreachable_poller.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time unreachable poller processes have been busy in the last minute.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','a0c56d8570eb4cb39e119fc61d7092d1');
INSERT INTO `items` (`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`,`uuid`) values ('28778','18','','10265','Apache: Workers starting up','apache.workers.starting','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of workers in starting state','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','ae21ea113e8840349aff81ab582d92b4');
INSERT INTO `items` (`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`,`uuid`) values ('28779','18','','10265','Apache: Workers slot with no current process','apache.workers.slot','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of slots with no current process','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','1c90055e02a244fc8d18e73b23daa0f1');
INSERT INTO `items` (`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`,`uuid`) values ('28780','18','','10265','Apache: Workers sending reply','apache.workers.sending','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of workers in sending state','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','379ac66397b94463ad17b24fbd20c615');
INSERT INTO `items` (`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`,`uuid`) values ('28781','18','','10265','Apache: Workers reading request','apache.workers.reading','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of workers in reading state','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','78b0bd7d8bec49549fc003d460af9177');
INSERT INTO `items` (`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`,`uuid`) values ('28782','18','','10265','Apache: Workers logging','apache.workers.logging','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of workers in logging state','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','7fc0002a279b4541af569a03c1aca2ac');
INSERT INTO `items` (`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`,`uuid`) values ('28783','18','','10265','Apache: Workers keepalive (read)','apache.workers.keepalive','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of workers in keepalive state','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','cb81a6a77395444283bc5e065fcbfc2e');
INSERT INTO `items` (`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`,`uuid`) values ('28784','18','','10265','Apache: Workers idle cleanup','apache.workers.cleanup','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of workers in cleanup state','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','f74ffb92e30e48958b5b82f7dfbe5147');
INSERT INTO `items` (`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`,`uuid`) values ('28785','18','','10265','Apache: Workers finishing','apache.workers.finishing','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of workers in finishing state','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','fcf771f2a9b64a81a37db679f0494ed3');
INSERT INTO `items` (`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`,`uuid`) values ('28786','18','','10265','Apache: Workers closing connection','apache.workers.closing','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of workers in closing state','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','d664bee9a330480bbaee7273b871a8d3');
INSERT INTO `items` (`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`,`uuid`) values ('28787','18','','10265','Apache: Workers DNS lookup','apache.workers.dnslookup','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of workers in dnslookup state','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','a6fb3444585749be998ec840cd8e4511');
INSERT INTO `items` (`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`,`uuid`) values ('28788','18','','10265','Apache: Total workers idle','apache.workers_total.idle','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of idle worker threads/processes','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','b1b1c86a12964ae2813c63481e464ec7');
INSERT INTO `items` (`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`,`uuid`) values ('28789','18','','10265','Apache: Total workers busy','apache.workers_total.busy','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of busy worker threads/processes','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','1752b9bcf7b34abbaf105f5261638271');
INSERT INTO `items` (`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`,`uuid`) values ('28790','18','','10265','Apache: Version','apache.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Service version','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','fe0de2eb1478482f99b38c13bd20564c');
INSERT INTO `items` (`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`,`uuid`) values ('28791','18','','10265','Apache: Uptime','apache.uptime','0','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'Service uptime in seconds','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','3dd8ba505d584b028c7ac08d8b959eb3');
INSERT INTO `items` (`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`,`uuid`) values ('28792','18','','10265','Apache: Total requests','apache.requests','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A total number of accesses','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','5fb5101de70a43fab50d55f418462255');
INSERT INTO `items` (`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`,`uuid`) values ('28793','18','','10265','Apache: Requests per second','apache.requests.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as change rate for \'Total requests\' stat.\r\nReqPerSec is not used, as it counts average since last Apache server start.','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','ee15f4958040459da53251cc3561ed39');
INSERT INTO `items` (`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`,`uuid`) values ('28794','18','','10265','Apache: Bytes per second','apache.bytes.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as change rate for \'Total bytes\' stat.\r\nBytesPerSec is not used, as it counts average since last Apache server start.','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','b36010be10874cf188eeacc81f2c366f');
INSERT INTO `items` (`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`,`uuid`) values ('28795','18','','10265','Apache: Total bytes','apache.bytes','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total bytes served','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','b9fe6f0bbe174e9f81af84a3bc0b0e7c');
INSERT INTO `items` (`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`,`uuid`) values ('28796','18','','10265','Apache: Workers waiting for connection','apache.workers.waiting','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of workers in waiting state','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','be1a05a6eab84b64ac4d51c966ea91e8');
INSERT INTO `items` (`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`,`uuid`) values ('28797','18','','10265','Event MPM discovery','apache.mpm.event.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Additional metrics if event MPM is used\r\nhttps://httpd.apache.org/docs/current/mod/event.html','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','eee8abd3174d426092e8bca9b3ba982e');
INSERT INTO `items` (`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`,`uuid`) values ('28798','18','','10265','Apache: Connections async closing','apache.connections[async_closing{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of async connections in closing state (only applicable to event MPM)','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','062d7c941f0c468d8b63fa76ae0610f6');
INSERT INTO `items` (`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`,`uuid`) values ('28799','18','','10265','Apache: Connections async keep alive','apache.connections[async_keep_alive{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of async connections in keep-alive state (only applicable to event MPM)','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','6cb8b255ad8343a48e622912bc298366');
INSERT INTO `items` (`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`,`uuid`) values ('28800','18','','10265','Apache: Connections async writing','apache.connections[async_writing{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of async connections in writing state (only applicable to event MPM)','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','997b3452aac24ad6afbad775d649c727');
INSERT INTO `items` (`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`,`uuid`) values ('28801','18','','10265','Apache: Connections total','apache.connections[total{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of total connections','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','31cb044eed904ca19150921fe36f3285');
INSERT INTO `items` (`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`,`uuid`) values ('28802','18','','10265','Apache: Bytes per request','apache.bytes[per_request{#SINGLETON}]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Average number of client requests per second','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','f52700379f9a4ee8b378a2eb9caea070');
INSERT INTO `items` (`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`,`uuid`) values ('28803','18','','10265','Apache: Number of async processes','apache.process[num{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of async processes','0','30d','0','','28775','3s','','','','200','1','0','','0','0','0','0','0','0','0','34555340f3ad4b878504df188f54a9c9');
INSERT INTO `items` (`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`,`uuid`) values ('28811','18','','10266','Nginx: Connections waiting','nginx.connections.waiting','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of idle client connections waiting for a request.','0','30d','0','','28804','3s','','','','200','1','0','','0','0','0','0','0','0','0','d6cfa828ba344ffe948d8d985b849316');
INSERT INTO `items` (`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`,`uuid`) values ('28812','18','','10266','Nginx: Connections writing','nginx.connections.writing','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of connections where nginx is writing the response back to the client.','0','30d','0','','28804','3s','','','','200','1','0','','0','0','0','0','0','0','0','c038a572f73f4a418ddcc5aeb8b0a547');
INSERT INTO `items` (`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`,`uuid`) values ('28813','18','','10266','Nginx: Connections active','nginx.connections.active','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of active client connections including Waiting connections.','0','30d','0','','28804','3s','','','','200','1','0','','0','0','0','0','0','0','0','436f2dc87cda418eb8f19ed6910c7bd0');
INSERT INTO `items` (`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`,`uuid`) values ('28814','18','','10266','Nginx: Connections reading','nginx.connections.reading','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of connections where nginx is reading the request header.','0','30d','0','','28804','3s','','','','200','1','0','','0','0','0','0','0','0','0','f5925c78389143c7924432483a5c716c');
INSERT INTO `items` (`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`,`uuid`) values ('28815','18','','10266','Nginx: Connections handled per second','nginx.connections.handled.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of handled connections. Generally, the parameter value is the same as accepts unless some resource limits have been reached (for example, the worker_connections limit).','0','30d','0','','28804','3s','','','','200','1','0','','0','0','0','0','0','0','0','06191636a7104e1bb40d197493b80958');
INSERT INTO `items` (`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`,`uuid`) values ('28816','18','','10266','Nginx: Connections dropped per second','nginx.connections.dropped.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of dropped client connections.','0','30d','0','','28804','3s','','','','200','1','0','','0','0','0','0','0','0','0','4027e6db5e024aff98056faa2d4b43cd');
INSERT INTO `items` (`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`,`uuid`) values ('28817','18','','10266','Nginx: Connections accepted per second','nginx.connections.accepted.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of accepted client connections.','0','30d','0','','28804','3s','','','','200','1','0','','0','0','0','0','0','0','0','9e2be446ac79491c8be1bcd789392066');
INSERT INTO `items` (`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`,`uuid`) values ('28818','18','','10266','Nginx: Requests per second','nginx.requests.total.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of client requests.','0','30d','0','','28804','3s','','','','200','1','0','','0','0','0','0','0','0','0','2600a696278f490f86cadd8c8836f269');
INSERT INTO `items` (`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`,`uuid`) values ('28819','18','','10266','Nginx: Requests total','nginx.requests.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of client requests.','0','30d','0','','28804','3s','','','','200','1','0','','0','0','0','0','0','0','0','b28444fb9b834d03a72036882c80b921');
INSERT INTO `items` (`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`,`uuid`) values ('28820','18','','10266','Nginx: Version','nginx.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','28804','3s','','','','200','1','0','','0','0','0','0','0','0','0','3dcc81006977478f92be6dd040d66eb5');
INSERT INTO `items` (`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`,`uuid`) values ('28824','18','','10267','Nginx: Requests total','nginx.requests.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of client requests.','0','30d','0','','28821','3s','','','','200','1','0','','0','0','0','0','0','0','0','071b3d77324740a59045be19da231d76');
INSERT INTO `items` (`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`,`uuid`) values ('28825','18','','10267','Nginx: Requests per second','nginx.requests.total.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of client requests.','0','30d','0','','28821','3s','','','','200','1','0','','0','0','0','0','0','0','0','81b17056ec664f9f926a74ee390ab9c1');
INSERT INTO `items` (`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`,`uuid`) values ('28826','18','','10267','Nginx: Connections accepted per second','nginx.connections.accepted.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of accepted client connections.','0','30d','0','','28821','3s','','','','200','1','0','','0','0','0','0','0','0','0','e054b58ebbbe4b45961ba697b468ab9e');
INSERT INTO `items` (`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`,`uuid`) values ('28827','18','','10267','Nginx: Connections dropped per second','nginx.connections.dropped.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of dropped client connections.','0','30d','0','','28821','3s','','','','200','1','0','','0','0','0','0','0','0','0','eecc0e887a744627be7f3b01cec6d46e');
INSERT INTO `items` (`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`,`uuid`) values ('28828','18','','10267','Nginx: Connections handled per second','nginx.connections.handled.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of handled connections. Generally, the parameter value is the same as accepts unless some resource limits have been reached (for example, the worker_connections limit).','0','30d','0','','28821','3s','','','','200','1','0','','0','0','0','0','0','0','0','a53cf4f2d2ad4a84a70ff57df6299adc');
INSERT INTO `items` (`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`,`uuid`) values ('28829','18','','10267','Nginx: Connections active','nginx.connections.active','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of active client connections including Waiting connections.','0','30d','0','','28821','3s','','','','200','1','0','','0','0','0','0','0','0','0','2e4b049ab60947d9a05165f67388e531');
INSERT INTO `items` (`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`,`uuid`) values ('28830','18','','10267','Nginx: Connections reading','nginx.connections.reading','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of connections where nginx is reading the request header.','0','30d','0','','28821','3s','','','','200','1','0','','0','0','0','0','0','0','0','73493cbf8508419a8fed3abff8cc5851');
INSERT INTO `items` (`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`,`uuid`) values ('28831','18','','10267','Nginx: Connections waiting','nginx.connections.waiting','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of idle client connections waiting for a request.','0','30d','0','','28821','3s','','','','200','1','0','','0','0','0','0','0','0','0','cf393814511a48b498da8aab94d7ca00');
INSERT INTO `items` (`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`,`uuid`) values ('28832','18','','10267','Nginx: Connections writing','nginx.connections.writing','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of connections where nginx is writing the response back to the client.','0','30d','0','','28821','3s','','','','200','1','0','','0','0','0','0','0','0','0','b0d63efb16984042945fe42e192f7d4e');
INSERT INTO `items` (`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`,`uuid`) values ('28833','18','','10267','Nginx: Version','nginx.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','28821','3s','','','','200','1','0','','0','0','0','0','0','0','0','716b627d6d894ac2af3ae8c4aeaa8c0c');
INSERT INTO `items` (`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`,`uuid`) values ('29009','18','','10270','CPU discovery','cpu.discovery[snmp]','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'This discovery will create set of per core CPU metrics from UCD-SNMP-MIB, using {#CPU.COUNT} in preprocessing. That\'s the only reason why LLD is used.','0','30d','0','','28990','3s','','','','200','1','0','','0','0','0','0','0','0','0','bb04cfa331214963b311d7b397cb3c12');
INSERT INTO `items` (`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`,`uuid`) values ('29048','18','','10270','CPU utilization','system.cpu.util[snmp,{#SNMPINDEX}]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'CPU utilization in %.','0','30d','0','','29017','3s','','','','200','1','0','','0','0','0','0','0','0','0','aa01918c9d864f498cc211772103ba27');
INSERT INTO `items` (`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`,`uuid`) values ('29198','18','','10272','CPU utilization','system.cpu.util','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization in %.','0','30d','0','','29099','3s','','','','200','1','0','','0','0','0','0','0','0','0','57074f87ab8e410ea6b0cb4708ab627e');
INSERT INTO `items` (`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`,`uuid`) values ('29398','18','','10285','System local time','system.localtime[node_exporter]','0','7d','365d','0','0','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'System local time of the host.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','9fcb3dd70dc244f2b2ff86560b37ec7e');
INSERT INTO `items` (`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`,`uuid`) values ('29399','18','','10285','CPU steal time','system.cpu.steal[node_exporter]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of CPU \'stolen\' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine).','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','2ee5885c4de646c0926f0c1a48890e68');
INSERT INTO `items` (`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`,`uuid`) values ('29400','18','','10285','Free swap space','system.swap.free[node_exporter]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of swap volume/file in bytes.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','ccc3c4d69fef412aa53c6a7320ef44fb');
INSERT INTO `items` (`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`,`uuid`) values ('29401','18','','10285','Total swap space','system.swap.total[node_exporter]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total space of swap volume/file in bytes.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','d0c1ef0a679546d780df30a02a27df44');
INSERT INTO `items` (`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`,`uuid`) values ('29402','18','','10285','Available memory','vm.memory.available[node_exporter]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','70a75efafbc84cbebd1bb262ec797523');
INSERT INTO `items` (`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`,`uuid`) values ('29403','18','','10285','Total memory','vm.memory.total[node_exporter]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total memory in Bytes.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','e3ad296f16084e9caa923b449d8c725f');
INSERT INTO `items` (`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`,`uuid`) values ('29404','18','','10285','System boot time','system.boottime[node_exporter]','0','7d','365d','0','0','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','75afcb39d2d7496e9490cd14f1431600');
INSERT INTO `items` (`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`,`uuid`) values ('29405','18','','10285','Context switches per second','system.cpu.switches[node_exporter]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','b873e0d178d144fca3597d617fc119e7');
INSERT INTO `items` (`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`,`uuid`) values ('29406','18','','10285','Interrupts per second','system.cpu.intr[node_exporter]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','76206cf435fd4a979dbbf74807b532de');
INSERT INTO `items` (`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`,`uuid`) values ('29407','18','','10285','CPU guest nice time','system.cpu.guest_nice[node_exporter]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel).','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','759809ee6c9e43cf8ff44f987221a90e');
INSERT INTO `items` (`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`,`uuid`) values ('29408','18','','10285','CPU guest time','system.cpu.guest[node_exporter]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Guest time (time spent running a virtual CPU for a guest operating system).','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','a732c4df8af047fbb874e1fb363b5e9e');
INSERT INTO `items` (`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`,`uuid`) values ('29409','18','','10285','CPU interrupt time','system.cpu.interrupt[node_exporter]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time the CPU has been servicing hardware interrupts.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','4d3f64c79c684d55bcde14ca5bf3022a');
INSERT INTO `items` (`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`,`uuid`) values ('29410','18','','10285','CPU iowait time','system.cpu.iowait[node_exporter]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of time the CPU has been waiting for I/O to complete.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','6a727e148a2c4956bcfb6de0a3486c2d');
INSERT INTO `items` (`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`,`uuid`) values ('29411','18','','10285','CPU nice time','system.cpu.nice[node_exporter]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running users\' processes that have been niced.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','86de794832794f57ba428cca31031005');
INSERT INTO `items` (`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`,`uuid`) values ('29412','18','','10285','CPU softirq time','system.cpu.softirq[node_exporter]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time the CPU has been servicing software interrupts.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','cf3cd5840b91477d8e9254820896b978');
INSERT INTO `items` (`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`,`uuid`) values ('29413','18','','10285','CPU user time','system.cpu.user[node_exporter]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running users\' processes that are not niced.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','832698e707d14bad8171ca71a2533350');
INSERT INTO `items` (`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`,`uuid`) values ('29414','18','','10285','System name','system.name[node_exporter]','0','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System host name.','3','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','c70cfa2ad5754089935883c5b3172656');
INSERT INTO `items` (`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`,`uuid`) values ('29415','18','','10285','Version of node_exporter running','agent.version[node_exporter]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','9a60d1e53caa4049a33aa52f3f55ad75');
INSERT INTO `items` (`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`,`uuid`) values ('29416','18','','10285','CPU idle time','system.cpu.idle[node_exporter]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent doing nothing.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','7bb99c606c6b497aaef279663b60829b');
INSERT INTO `items` (`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`,`uuid`) values ('29417','18','','10285','Number of CPUs','system.cpu.num[node_exporter]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','d7db65cfeaac4541bd98d06dc35f89e2');
INSERT INTO `items` (`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`,`uuid`) values ('29418','18','','10285','Load average (15m avg)','system.cpu.load.avg15[node_exporter]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','35fb0319c599403bbea0e616c9066e27');
INSERT INTO `items` (`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`,`uuid`) values ('29419','18','','10285','Load average (5m avg)','system.cpu.load.avg5[node_exporter]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','7fc62b26b9ff43429632f1985dc07851');
INSERT INTO `items` (`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`,`uuid`) values ('29420','18','','10285','Load average (1m avg)','system.cpu.load.avg1[node_exporter]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','78fb393fe3d64cd7bf79be5427715add');
INSERT INTO `items` (`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`,`uuid`) values ('29421','18','','10285','System uptime','system.uptime[node_exporter]','0','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'System uptime in \'N days, hh:mm:ss\' format.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','7eeabdb6bf44483bab91faaab8bb24d5');
INSERT INTO `items` (`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`,`uuid`) values ('29422','18','','10285','Operating system architecture','system.sw.arch[node_exporter]','0','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Operating system architecture of the host.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','ce4bb6c485cc4b739dce31b631634790');
INSERT INTO `items` (`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`,`uuid`) values ('29423','18','','10285','Number of open file descriptors','fd.open[node_exporter]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','d3631bd7effc4cd1bc45c991b3c3038f');
INSERT INTO `items` (`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`,`uuid`) values ('29424','18','','10285','Maximum number of open file descriptors','kernel.maxfiles[node_exporter]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'It could be increased by using sysctl utility or modifying file /etc/sysctl.conf.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','a8b78e776e1d4011bbcb6dd54e32b40b');
INSERT INTO `items` (`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`,`uuid`) values ('29425','18','','10285','System description','system.descr[node_exporter]','0','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Labeled system information as provided by the uname system call.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','c47995760ef3458eb6237e434ef4eef8');
INSERT INTO `items` (`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`,`uuid`) values ('29426','18','','10285','CPU system time','system.cpu.system[node_exporter]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running the kernel and its processes.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','e296be976c5944b19a7178304ed6140c');
INSERT INTO `items` (`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`,`uuid`) values ('29429','18','','10285','Network interface discovery','net.if.discovery[node_exporter]','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces. Requires node_exporter v0.18 and up.','0','30d','1','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','91531a7a68564860976096df6899fe88');
INSERT INTO `items` (`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`,`uuid`) values ('29430','18','','10285','Mounted filesystem discovery','vfs.fs.discovery[node_exporter]','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of file systems of different types.','0','30d','1','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','85d047920c1342b992fa1905eb489a44');
INSERT INTO `items` (`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`,`uuid`) values ('29431','18','','10285','Block devices discovery','vfs.dev.discovery[node_exporter]','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','1','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','920f367e232945b8992d0f32e6f9324d');
INSERT INTO `items` (`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`,`uuid`) values ('29436','18','','10285','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[node_exporter,"{#IFNAME}"]','0','7d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','eea37c3779994ac5b35bb3b125429340');
INSERT INTO `items` (`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`,`uuid`) values ('29437','18','','10285','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[node_exporter,"{#IFNAME}"]','0','7d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','ddc4111fefec473e8d8b079f6eb50c05');
INSERT INTO `items` (`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`,`uuid`) values ('29438','18','','10285','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[node_exporter"{#IFNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','4ffe74b94eb14a4ea61c0df790d0920f');
INSERT INTO `items` (`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`,`uuid`) values ('29439','18','','10285','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[node_exporter,"{#IFNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','f6b39f743bb6438d876236ae651f68ee');
INSERT INTO `items` (`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`,`uuid`) values ('29440','18','','10285','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[node_exporter,"{#IFNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','ee28aff27b4f40eaa8e903ce3fab8555');
INSERT INTO `items` (`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`,`uuid`) values ('29441','18','','10285','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[node_exporter,"{#IFNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','aec995b7fe724823bdb41f134594b648');
INSERT INTO `items` (`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`,`uuid`) values ('29442','18','','10285','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[node_exporter,"{#IFNAME}"]','0','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Sets value to 0 if metric is missing in node_exporter output.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','51f9a39ad6d940ae914cd0a350d83dab');
INSERT INTO `items` (`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`,`uuid`) values ('29443','18','','10285','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[node_exporter,"{#IFNAME}"]','0','7d','0d','0','3','','','','',NULL,'128','','','0','','','','','2',NULL,'node_network_protocol_type protocol_type value of /sys/class/net/.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','ce9cfd9880c44aaea18cfa2ab2fdf0e1');
INSERT INTO `items` (`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`,`uuid`) values ('29444','18','','10285','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[node_exporter,"{#IFNAME}"]','0','7d','0','0','3','','','','',NULL,'64','','','0','','','','','2',NULL,'Reference: https://www.kernel.org/doc/Documentation/networking/operstates.txt','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','4097f76d86cd417db586c5973e1da90b');
INSERT INTO `items` (`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`,`uuid`) values ('29445','18','','10285','{#FSNAME}: Free space','vfs.fs.free[node_exporter,"{#FSNAME}"]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','3a3edb8bf5a74a63baa27c64d1a44493');
INSERT INTO `items` (`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`,`uuid`) values ('29446','18','','10285','{#FSNAME}: Total space','vfs.fs.total[node_exporter,"{#FSNAME}"]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space in Bytes','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','acb3d42ae23b48cbacd0e99c27697798');
INSERT INTO `items` (`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`,`uuid`) values ('29447','18','','10285','{#FSNAME}: Free inodes in %','vfs.fs.inode.pfree[node_exporter,"{#FSNAME}"]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','ee1dad3677214561baafa6d930358ee0');
INSERT INTO `items` (`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`,`uuid`) values ('29448','18','','10285','{#DEVNAME}: Disk read rate','vfs.dev.read.rate[node_exporter,"{#DEVNAME}"]','0','7d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'r/s. The number (after merges) of read requests completed per second for the device.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','dcd6f61ffb2f491ba78845514654a8cf');
INSERT INTO `items` (`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`,`uuid`) values ('29449','18','','10285','{#DEVNAME}: Disk write rate','vfs.dev.write.rate[node_exporter,"{#DEVNAME}"]','0','7d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'w/s. The number (after merges) of write requests completed per second for the device.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','806ba0a56fab4b5094008c98bb817e2b');
INSERT INTO `items` (`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`,`uuid`) values ('29450','18','','10285','{#DEVNAME}: Disk read time (rate)','vfs.dev.read.time.rate[node_exporter,"{#DEVNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of total read time counter. Used in r_await calculation.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','73940f30ea2b4b88b0047e54b773b747');
INSERT INTO `items` (`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`,`uuid`) values ('29451','18','','10285','{#DEVNAME}: Disk write time (rate)','vfs.dev.write.time.rate[node_exporter,"{#DEVNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of total write time counter. Used in w_await calculation.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','601cc30457934b7f8f050b2cea13ccea');
INSERT INTO `items` (`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`,`uuid`) values ('29452','18','','10285','{#DEVNAME}: Disk average queue size (avgqu-sz)','vfs.dev.queue_size[node_exporter,"{#DEVNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','0a0949bcdf754fbe82e772ffbd69b5ba');
INSERT INTO `items` (`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`,`uuid`) values ('29453','18','','10285','{#DEVNAME}: Disk utilization','vfs.dev.util[node_exporter,"{#DEVNAME}"]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests.','0','30d','0','','29395','3s','','','','200','1','0','','0','0','0','0','0','0','0','d087a0525500450c9a307ff21f58482a');
INSERT INTO `items` (`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`,`uuid`) values ('29687','18','','10301','RabbitMQ: Memory used','rabbitmq.node.mem_used','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory used in bytes','0','30d','0','','29654','3s','','','','200','1','0','','0','0','0','0','0','0','0','d6a01ec409a6449986c5c0a81ffaf914');
INSERT INTO `items` (`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`,`uuid`) values ('29688','18','','10301','RabbitMQ: Disk free alarm','rabbitmq.node.disk_free_alarm','0','7d','365d','0','3','','','','',NULL,'136','','','0','','','','','0',NULL,'Does the node have disk alarm','0','30d','0','','29654','3s','','','','200','1','0','','0','0','0','0','0','0','0','d8de1eb13f024ce99388fc4bb68d6ad0');
INSERT INTO `items` (`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`,`uuid`) values ('29691','18','','10301','RabbitMQ: Used file descriptors','rabbitmq.node.fd_used','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used file descriptors','0','30d','0','','29654','3s','','','','200','1','0','','0','0','0','0','0','0','0','09aeab86c69846eb82d27c2f82f46d2b');
INSERT INTO `items` (`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`,`uuid`) values ('29692','18','','10301','RabbitMQ: Uptime','rabbitmq.node.uptime','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Uptime in milliseconds','0','30d','0','','29654','3s','','','','200','1','0','','0','0','0','0','0','0','0','a28b6c8cca5544b79c2d9946c1978c7e');
INSERT INTO `items` (`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`,`uuid`) values ('29693','18','','10301','RabbitMQ: Memory alarm','rabbitmq.node.mem_alarm','0','7d','365d','0','3','','','','',NULL,'136','','','0','','','','','0',NULL,'Does the host has memory alarm','0','30d','0','','29654','3s','','','','200','1','0','','0','0','0','0','0','0','0','e059b278ba384133a72dc723c2b2c40b');
INSERT INTO `items` (`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`,`uuid`) values ('29694','18','','10301','RabbitMQ: Memory limit','rabbitmq.node.mem_limit','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory usage high watermark in bytes','0','30d','0','','29654','3s','','','','200','1','0','','0','0','0','0','0','0','0','54bd4a47d635444e8e2e955325dbb976');
INSERT INTO `items` (`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`,`uuid`) values ('29695','18','','10301','RabbitMQ: Is running','rabbitmq.node.running','0','7d','365d','0','3','','','','',NULL,'17','','','0','','','','','0',NULL,'Is the node running or not','0','30d','0','','29654','3s','','','','200','1','0','','0','0','0','0','0','0','0','087fcb3992ef4e35bacd4b6e69ef93d3');
INSERT INTO `items` (`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`,`uuid`) values ('29696','18','','10301','RabbitMQ: Number of network partitions','rabbitmq.node.partitions','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of network partitions this node is seeing','0','30d','0','','29654','3s','','','','200','1','0','','0','0','0','0','0','0','0','5e8c1ed0b073461eb14477edac3c756a');
INSERT INTO `items` (`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`,`uuid`) values ('29697','18','','10301','RabbitMQ: Sockets available','rabbitmq.node.sockets_total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'File descriptors available for use as sockets','0','30d','0','','29654','3s','','','','200','1','0','','0','0','0','0','0','0','0','3aa508520f224150a05a7ebb64d22c5e');
INSERT INTO `items` (`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`,`uuid`) values ('29698','18','','10301','RabbitMQ: Free disk space','rabbitmq.node.disk_free','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Current free disk space','0','30d','0','','29654','3s','','','','200','1','0','','0','0','0','0','0','0','0','7dad79be93bd46bba7a2540b38080b06');
INSERT INTO `items` (`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`,`uuid`) values ('29699','18','','10301','RabbitMQ: Runtime run queue','rabbitmq.node.run_queue','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Average number of Erlang processes waiting to run','0','30d','0','','29654','3s','','','','200','1','0','','0','0','0','0','0','0','0','1ae6f429e99d4ddaa54aa6adab6b8100');
INSERT INTO `items` (`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`,`uuid`) values ('29700','18','','10301','RabbitMQ: Disk free limit','rabbitmq.node.disk_free_limit','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Disk free space limit in bytes','0','30d','0','','29654','3s','','','','200','1','0','','0','0','0','0','0','0','0','4e62b476bd11497f9190d1f720f22f75');
INSERT INTO `items` (`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`,`uuid`) values ('29701','18','','10301','RabbitMQ: Sockets used','rabbitmq.node.sockets_used','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of file descriptors used as sockets','0','30d','0','','29654','3s','','','','200','1','0','','0','0','0','0','0','0','0','de2cbe02ff6c47d78b6c7105709f4805');
INSERT INTO `items` (`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`,`uuid`) values ('29703','18','','10301','Queues discovery','rabbitmq.queues.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Individual queue metrics','0','30d','1','','29661','3s','','','','200','1','0','','0','0','0','0','0','0','0','d1d32fc6ae1f445a98144a31214ca825');
INSERT INTO `items` (`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`,`uuid`) values ('29720','18','','10301','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages','rabbitmq.queue.messages["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of the total messages in the queue','0','30d','0','','29661','3s','','','','200','1','0','','0','0','0','0','0','0','0','aabd7d6fe6a047d186504386d3a48ae1');
INSERT INTO `items` (`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`,`uuid`) values ('29721','18','','10301','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages delivered','rabbitmq.queue.messages.deliver["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of messages delivered in acknowledgement mode to consumers','0','30d','0','','29661','3s','','','','200','1','0','','0','0','0','0','0','0','0','2a87988327e1483c84d3f1867bab367f');
INSERT INTO `items` (`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`,`uuid`) values ('29722','18','','10301','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages redelivered','rabbitmq.queue.messages.redeliver["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of subset of messages in deliver_get which had the redelivered flag set','0','30d','0','','29661','3s','','','','200','1','0','','0','0','0','0','0','0','0','3ac1a4b83c9f4d4c8a438d39aca8e82a');
INSERT INTO `items` (`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`,`uuid`) values ('29723','18','','10301','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages published per second','rabbitmq.queue.messages.publish.rate["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate per second of messages published','0','30d','0','','29661','3s','','','','200','1','0','','0','0','0','0','0','0','0','393306b9cb0148038d02ad9c48cf1fbb');
INSERT INTO `items` (`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`,`uuid`) values ('29724','18','','10301','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages published','rabbitmq.queue.messages.publish["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of messages published','0','30d','0','','29661','3s','','','','200','1','0','','0','0','0','0','0','0','0','44814c9f6f154fdcbab66249d0777eae');
INSERT INTO `items` (`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`,`uuid`) values ('29725','18','','10301','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Sum of messages delivered per second','rabbitmq.queue.messages.deliver_get.rate["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get','0','30d','0','','29661','3s','','','','200','1','0','','0','0','0','0','0','0','0','3f3024da744349b59c7810dfd10d11a3');
INSERT INTO `items` (`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`,`uuid`) values ('29726','18','','10301','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Sum of messages delivered','rabbitmq.queue.messages.deliver_get["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get','0','30d','0','','29661','3s','','','','200','1','0','','0','0','0','0','0','0','0','ad5e9fa0260e4170887fb2dfdc508959');
INSERT INTO `items` (`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`,`uuid`) values ('29727','18','','10301','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages delivered per second','rabbitmq.queue.messages.deliver.rate["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of messages delivered in acknowledgement mode to consumers','0','30d','0','','29661','3s','','','','200','1','0','','0','0','0','0','0','0','0','55b774e5aac249edbb8881373060b15b');
INSERT INTO `items` (`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`,`uuid`) values ('29728','18','','10301','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages acknowledged per second','rabbitmq.queue.messages.ack.rate["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number per second of messages delivered to clients and acknowledged','0','30d','0','','29661','3s','','','','200','1','0','','0','0','0','0','0','0','0','223fa7a8372f4e9883d376c9f3e1af2e');
INSERT INTO `items` (`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`,`uuid`) values ('29729','18','','10301','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages per second','rabbitmq.queue.messages.rate["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count per second of the total messages in the queue','0','30d','0','','29661','3s','','','','200','1','0','','0','0','0','0','0','0','0','9096e81341374d2fb7dd58e932783afc');
INSERT INTO `items` (`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`,`uuid`) values ('29730','18','','10301','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages acknowledged','rabbitmq.queue.messages.ack["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of messages delivered to clients and acknowledged','0','30d','0','','29661','3s','','','','200','1','0','','0','0','0','0','0','0','0','335513a34e6a4909acfa1be278dd31b3');
INSERT INTO `items` (`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`,`uuid`) values ('29731','18','','10301','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages unacknowledged per second','rabbitmq.queue.messages_unacknowledged.rate["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number per second of messages delivered to clients but not yet acknowledged','0','30d','0','','29661','3s','','','','200','1','0','','0','0','0','0','0','0','0','d5d88879e3b844d7b03ab956a673daff');
INSERT INTO `items` (`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`,`uuid`) values ('29732','18','','10301','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages unacknowledged','rabbitmq.queue.messages_unacknowledged["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of messages delivered to clients but not yet acknowledged','0','30d','0','','29661','3s','','','','200','1','0','','0','0','0','0','0','0','0','252dcf1262014ce599a2eec81f7223eb');
INSERT INTO `items` (`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`,`uuid`) values ('29733','18','','10301','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages ready per second','rabbitmq.queue.messages_ready.rate["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number per second of messages ready to be delivered to clients','0','30d','0','','29661','3s','','','','200','1','0','','0','0','0','0','0','0','0','d2e1a2857b314ed3818f92312f5d0043');
INSERT INTO `items` (`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`,`uuid`) values ('29734','18','','10301','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages ready','rabbitmq.queue.messages_ready["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of messages ready to be delivered to clients','0','30d','0','','29661','3s','','','','200','1','0','','0','0','0','0','0','0','0','4a75c2d9e0354f47b1c8243bad17bd58');
INSERT INTO `items` (`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`,`uuid`) values ('29735','18','','10301','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Memory','rabbitmq.queue.memory["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Bytes of memory consumed by the Erlang process associated with the queue, including stack, heap and internal structures','0','30d','0','','29661','3s','','','','200','1','0','','0','0','0','0','0','0','0','4b4491d5fb2b41eeae044c3d28de1b18');
INSERT INTO `items` (`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`,`uuid`) values ('29736','18','','10301','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Consumers','rabbitmq.queue.consumers["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of consumers','0','30d','0','','29661','3s','','','','200','1','0','','0','0','0','0','0','0','0','fcbee789f2864010b26ac69894659e77');
INSERT INTO `items` (`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`,`uuid`) values ('29737','18','','10301','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages redelivered per second','rabbitmq.queue.messages.redeliver.rate["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate per second of subset of messages in deliver_get which had the redelivered flag set','0','30d','0','','29661','3s','','','','200','1','0','','0','0','0','0','0','0','0','8902103fd86746d0851b75a1262e36a9');
INSERT INTO `items` (`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`,`uuid`) values ('29746','18','','10302','RabbitMQ: Messages returned redeliver','rabbitmq.overview.messages.redeliver','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of subset of messages in deliver_get which had the redelivered flag set','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','6c0d428069a84443affba5b1a7f886bc');
INSERT INTO `items` (`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`,`uuid`) values ('29747','18','','10302','RabbitMQ: Messages returned unroutable per second','rabbitmq.overview.messages.return_unroutable.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of messages returned to publisher as unroutable per second','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','e2983b5d27294b92b658070e0ef0a2ca');
INSERT INTO `items` (`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`,`uuid`) values ('29748','18','','10302','RabbitMQ: Messages returned unroutable','rabbitmq.overview.messages.return_unroutable','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of messages returned to publisher as unroutable','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','70ab0718b7784a8280c99b6af21d909a');
INSERT INTO `items` (`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`,`uuid`) values ('29749','18','','10302','RabbitMQ: Messages publish_out per second','rabbitmq.overview.messages.publish_out.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of messages published from this overview into queues per second,0,rabbitmq,total msgs pub out rate','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','c1a7ca5a475449b4b4d916693acd515b');
INSERT INTO `items` (`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`,`uuid`) values ('29750','18','','10302','RabbitMQ: Messages publish_out','rabbitmq.overview.messages.publish_out','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of messages published from this overview into queues','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','8d5523cd5120462f903af9b67e2abb10');
INSERT INTO `items` (`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`,`uuid`) values ('29751','18','','10302','RabbitMQ: Messages publish_in per second','rabbitmq.overview.messages.publish_in.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of messages published from channels into this overview per sec','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','8078d1269b0f4650b2a2c8d0f7de8bfd');
INSERT INTO `items` (`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`,`uuid`) values ('29752','18','','10302','RabbitMQ: Messages publish_in','rabbitmq.overview.messages.publish_in','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of messages published from channels into this overview','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','ebe18f0f04fe4c098283cfeab6ebb716');
INSERT INTO `items` (`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`,`uuid`) values ('29753','18','','10302','RabbitMQ: Messages published per second','rabbitmq.overview.messages.publish.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of messages published per second','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','e386d202d87c442c94ea6151af8f1c45');
INSERT INTO `items` (`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`,`uuid`) values ('29754','18','','10302','RabbitMQ: Messages published','rabbitmq.overview.messages.publish','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of messages published','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','af401642e23241f38b453ce65439a3fb');
INSERT INTO `items` (`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`,`uuid`) values ('29755','18','','10302','RabbitMQ: Messages delivered per second','rabbitmq.overview.messages.deliver_get.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','483b3ccd192a4f7a8142da5fc3303d63');
INSERT INTO `items` (`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`,`uuid`) values ('29756','18','','10302','RabbitMQ: Messages delivered','rabbitmq.overview.messages.deliver_get','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','fa4dcdd9a76c47fb8b3e0e238077f591');
INSERT INTO `items` (`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`,`uuid`) values ('29757','18','','10302','RabbitMQ: Messages confirmed per second','rabbitmq.overview.messages.confirm.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of messages confirmed per second','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','302caaded1ec40a984c13c3eab6f7509');
INSERT INTO `items` (`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`,`uuid`) values ('29758','18','','10302','RabbitMQ: Messages confirmed','rabbitmq.overview.messages.confirm','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of messages confirmed','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','5f2ae9a4ca0643c6b3d3e7b1ed36f3e4');
INSERT INTO `items` (`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`,`uuid`) values ('29759','18','','10302','RabbitMQ: Messages acknowledged per second','rabbitmq.overview.messages.ack.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of messages delivered to clients and acknowledged per second','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','b7c9ca566af64e62bc450752d5cd7777');
INSERT INTO `items` (`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`,`uuid`) values ('29760','18','','10302','RabbitMQ: Messages acknowledged','rabbitmq.overview.messages.ack','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of messages delivered to clients and acknowledged','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','94ffc83030e84d93a2bcafc9fc1b307b');
INSERT INTO `items` (`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`,`uuid`) values ('29761','18','','10302','RabbitMQ: Messages unacknowledged','rabbitmq.overview.queue_totals.messages.unacknowledged','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of unacknowledged messages','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','3403648d6b964edd8c390e2c175b068a');
INSERT INTO `items` (`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`,`uuid`) values ('29762','18','','10302','RabbitMQ: Messages ready for delivery','rabbitmq.overview.queue_totals.messages.ready','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of messages ready for deliver','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','7c7e5c4111ff464b913a43b59fcb2e9b');
INSERT INTO `items` (`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`,`uuid`) values ('29763','18','','10302','RabbitMQ: Messages total','rabbitmq.overview.queue_totals.messages','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of messages (ready plus unacknowledged)','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','c9bc0b0a61be4412bfc31cb725bbe837');
INSERT INTO `items` (`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`,`uuid`) values ('29764','18','','10302','RabbitMQ: Exchanges total','rabbitmq.overview.object_totals.exchanges','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of exchanges','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','1b98a03a243c4b698faa93228cb9cfb0');
INSERT INTO `items` (`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`,`uuid`) values ('29765','18','','10302','RabbitMQ: Consumers total','rabbitmq.overview.object_totals.consumers','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of consumers','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','4b02b27b8091430eb80e6451935848d8');
INSERT INTO `items` (`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`,`uuid`) values ('29766','18','','10302','RabbitMQ: Queues total','rabbitmq.overview.object_totals.queues','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of queues','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','011491d6f5954cf3bf37ee45a62a4d86');
INSERT INTO `items` (`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`,`uuid`) values ('29767','18','','10302','RabbitMQ: Channels total','rabbitmq.overview.object_totals.channels','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of channels','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','787ea966afd741b99bbdce665aebf15a');
INSERT INTO `items` (`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`,`uuid`) values ('29768','18','','10302','RabbitMQ: Connections total','rabbitmq.overview.object_totals.connections','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','3b488cdb79ac4b95abe55ddec9f74dd1');
INSERT INTO `items` (`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`,`uuid`) values ('29769','18','','10302','RabbitMQ: Messages returned redeliver per second','rabbitmq.overview.messages.redeliver.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of subset of messages in deliver_get which had the redelivered flag set per second','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','7d239c3cb6604521b1291bce0dbdf10c');
INSERT INTO `items` (`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`,`uuid`) values ('29771','18','','10303','RabbitMQ: Number of network partitions','rabbitmq.node.partitions','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of network partitions this node is seeing','0','30d','0','','29741','3s','','','','200','1','0','','0','0','0','0','0','0','0','ac9282c012bd4249a096a462d21dcf62');
INSERT INTO `items` (`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`,`uuid`) values ('29772','18','','10303','RabbitMQ: Uptime','rabbitmq.node.uptime','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Uptime in milliseconds','0','30d','0','','29741','3s','','','','200','1','0','','0','0','0','0','0','0','0','65a2fd59ddfe413b9259c547338f3351');
INSERT INTO `items` (`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`,`uuid`) values ('29773','18','','10303','RabbitMQ: Disk free alarm','rabbitmq.node.disk_free_alarm','0','7d','365d','0','3','','','','',NULL,'137','','','0','','','','','0',NULL,'Does the node have disk alarm','0','30d','0','','29741','3s','','','','200','1','0','','0','0','0','0','0','0','0','38099990b854421ca39f178b9c9be016');
INSERT INTO `items` (`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`,`uuid`) values ('29774','18','','10303','RabbitMQ: Memory alarm','rabbitmq.node.mem_alarm','0','7d','365d','0','3','','','','',NULL,'137','','','0','','','','','0',NULL,'Does the host has memory alarm','0','30d','0','','29741','3s','','','','200','1','0','','0','0','0','0','0','0','0','70ec112fc828476e96a469e0f94fc415');
INSERT INTO `items` (`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`,`uuid`) values ('29775','18','','10303','RabbitMQ: Is running','rabbitmq.node.running','0','7d','365d','0','3','','','','',NULL,'18','','','0','','','','','0',NULL,'Is the node running or not','0','30d','0','','29741','3s','','','','200','1','0','','0','0','0','0','0','0','0','5f819282c32b49039a2dae56b9be23cd');
INSERT INTO `items` (`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`,`uuid`) values ('29776','18','','10303','RabbitMQ: Sockets used','rabbitmq.node.sockets_used','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of file descriptors used as sockets','0','30d','0','','29741','3s','','','','200','1','0','','0','0','0','0','0','0','0','31455694c0994c9d9eaa8af048e88e95');
INSERT INTO `items` (`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`,`uuid`) values ('29777','18','','10303','RabbitMQ: Sockets available','rabbitmq.node.sockets_total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'File descriptors available for use as sockets','0','30d','0','','29741','3s','','','','200','1','0','','0','0','0','0','0','0','0','16f4f6a6d8f14980a6edcc2d84b0cd8d');
INSERT INTO `items` (`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`,`uuid`) values ('29779','18','','10303','RabbitMQ: Runtime run queue','rabbitmq.node.run_queue','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Average number of Erlang processes waiting to run','0','30d','0','','29741','3s','','','','200','1','0','','0','0','0','0','0','0','0','ddc906d9a969401ebf520490e62f4086');
INSERT INTO `items` (`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`,`uuid`) values ('29780','18','','10303','RabbitMQ: Memory used','rabbitmq.node.mem_used','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory used in bytes','0','30d','0','','29741','3s','','','','200','1','0','','0','0','0','0','0','0','0','9e4f2c0cb6604364ab0a2b4def7466e2');
INSERT INTO `items` (`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`,`uuid`) values ('29781','18','','10303','RabbitMQ: Disk free limit','rabbitmq.node.disk_free_limit','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Disk free space limit in bytes','0','30d','0','','29741','3s','','','','200','1','0','','0','0','0','0','0','0','0','ce9f4b99c77545fb8acd596d72725898');
INSERT INTO `items` (`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`,`uuid`) values ('29782','18','','10303','RabbitMQ: Free disk space','rabbitmq.node.disk_free','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Current free disk space','0','30d','0','','29741','3s','','','','200','1','0','','0','0','0','0','0','0','0','8cb8f380645f4d7f8250b110acd47d1c');
INSERT INTO `items` (`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`,`uuid`) values ('29783','18','','10303','RabbitMQ: Used file descriptors','rabbitmq.node.fd_used','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used file descriptors','0','30d','0','','29741','3s','','','','200','1','0','','0','0','0','0','0','0','0','fae24c176bd34b81b0f578883c5c2760');
INSERT INTO `items` (`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`,`uuid`) values ('29784','18','','10303','RabbitMQ: Memory limit','rabbitmq.node.mem_limit','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory usage high watermark in bytes','0','30d','0','','29741','3s','','','','200','1','0','','0','0','0','0','0','0','0','2445b494bf0648248b333d6f0afd95a2');
INSERT INTO `items` (`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`,`uuid`) values ('29785','18','','10302','Exchanges discovery','rabbitmq.exchanges.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Individual exchange metrics','0','30d','1','','29739','3s','','','','200','1','0','','0','0','0','0','0','0','0','689cf8096c0c49099e2b56c5b639d3c6');
INSERT INTO `items` (`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`,`uuid`) values ('29786','18','','10303','Queues discovery','rabbitmq.queues.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Individual queue metrics','0','30d','1','','29745','3s','','','','200','1','0','','0','0','0','0','0','0','0','cc1d85b6045b44b38f588cd9a4c6c62d');
INSERT INTO `items` (`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`,`uuid`) values ('29787','18','','10302','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages acknowledged','rabbitmq.exchange.messages.ack["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of messages delivered to clients and acknowledged','0','30d','0','','29739','3s','','','','200','1','0','','0','0','0','0','0','0','0','fd3d7de712d84721a09248670a7504f1');
INSERT INTO `items` (`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`,`uuid`) values ('29788','18','','10302','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages acknowledged per second','rabbitmq.exchange.messages.ack.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of messages delivered to clients and acknowledged per second','0','30d','0','','29739','3s','','','','200','1','0','','0','0','0','0','0','0','0','d8cdcef7ad324aebb597e9d2cd32bdf2');
INSERT INTO `items` (`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`,`uuid`) values ('29789','18','','10302','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages confirmed','rabbitmq.exchange.messages.confirm["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of messages confirmed','0','30d','0','','29739','3s','','','','200','1','0','','0','0','0','0','0','0','0','8fac23c225d449b3a01d495b52131f5c');
INSERT INTO `items` (`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`,`uuid`) values ('29790','18','','10302','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages confirmed per second','rabbitmq.exchange.messages.confirm.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of messages confirmed per second','0','30d','0','','29739','3s','','','','200','1','0','','0','0','0','0','0','0','0','bc57ae1a1c1d4e9c96a268906d88dbf8');
INSERT INTO `items` (`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`,`uuid`) values ('29791','18','','10302','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages delivered','rabbitmq.exchange.messages.deliver_get["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get','0','30d','0','','29739','3s','','','','200','1','0','','0','0','0','0','0','0','0','b86cc017bbb247b79e5b0522cf895d33');
INSERT INTO `items` (`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`,`uuid`) values ('29792','18','','10302','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages delivered per second','rabbitmq.exchange.messages.deliver_get.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get','0','30d','0','','29739','3s','','','','200','1','0','','0','0','0','0','0','0','0','18916e7d0fce41d698f57f0f1be5dab1');
INSERT INTO `items` (`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`,`uuid`) values ('29793','18','','10302','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages published','rabbitmq.exchange.messages.publish["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of messages published','0','30d','0','','29739','3s','','','','200','1','0','','0','0','0','0','0','0','0','24515b4712014fbeb857592664624be3');
INSERT INTO `items` (`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`,`uuid`) values ('29794','18','','10302','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages published per second','rabbitmq.exchange.messages.publish.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of messages published per second','0','30d','0','','29739','3s','','','','200','1','0','','0','0','0','0','0','0','0','a4a890d6cbdc40528dee488d8649343d');
INSERT INTO `items` (`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`,`uuid`) values ('29795','18','','10302','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_in','rabbitmq.exchange.messages.publish_in["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of messages published from channels into this overview','0','30d','0','','29739','3s','','','','200','1','0','','0','0','0','0','0','0','0','02ebc8dacc0b44cd81bd9a83394359ff');
INSERT INTO `items` (`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`,`uuid`) values ('29796','18','','10302','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_in per second','rabbitmq.exchange.messages.publish_in.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of messages published from channels into this overview per sec','0','30d','0','','29739','3s','','','','200','1','0','','0','0','0','0','0','0','0','d7ecda9c49ee479481b0b96d92113064');
INSERT INTO `items` (`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`,`uuid`) values ('29797','18','','10302','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_out','rabbitmq.exchange.messages.publish_out["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of messages published from this overview into queues','0','30d','0','','29739','3s','','','','200','1','0','','0','0','0','0','0','0','0','c83921ac67074e169e247dc3392213cf');
INSERT INTO `items` (`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`,`uuid`) values ('29798','18','','10302','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_out per second','rabbitmq.exchange.messages.publish_out.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of messages published from this overview into queues per second,0,rabbitmq,total msgs pub out rate','0','30d','0','','29739','3s','','','','200','1','0','','0','0','0','0','0','0','0','46a5efc69f2e4928b5744b5ea0cd6ae3');
INSERT INTO `items` (`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`,`uuid`) values ('29799','18','','10302','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages returned unroutable','rabbitmq.exchange.messages.return_unroutable["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of messages returned to publisher as unroutable','0','30d','0','','29739','3s','','','','200','1','0','','0','0','0','0','0','0','0','caaaf925f72e42d2b3112098bd05b3d1');
INSERT INTO `items` (`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`,`uuid`) values ('29800','18','','10302','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages returned unroutable per second','rabbitmq.exchange.messages.return_unroutable.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of messages returned to publisher as unroutable per second','0','30d','0','','29739','3s','','','','200','1','0','','0','0','0','0','0','0','0','1aad46c39cc347f59ed953aa6bc23fbe');
INSERT INTO `items` (`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`,`uuid`) values ('29801','18','','10302','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages redelivered','rabbitmq.exchange.messages.redeliver["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of subset of messages in deliver_get which had the redelivered flag set','0','30d','0','','29739','3s','','','','200','1','0','','0','0','0','0','0','0','0','3203320d008d484d917827f93b213725');
INSERT INTO `items` (`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`,`uuid`) values ('29802','18','','10302','RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered per second','rabbitmq.exchange.messages.redeliver.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of subset of messages in deliver_get which had the redelivered flag set per second','0','30d','0','','29739','3s','','','','200','1','0','','0','0','0','0','0','0','0','64bc6c65cc2f46b1841bd9852020bf44');
INSERT INTO `items` (`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`,`uuid`) values ('29803','18','','10303','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages','rabbitmq.queue.messages["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of the total messages in the queue','0','30d','0','','29745','3s','','','','200','1','0','','0','0','0','0','0','0','0','171e5dbff18f47c98da2c1a3b7120622');
INSERT INTO `items` (`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`,`uuid`) values ('29804','18','','10303','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages delivered','rabbitmq.queue.messages.deliver["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of messages delivered in acknowledgement mode to consumers','0','30d','0','','29745','3s','','','','200','1','0','','0','0','0','0','0','0','0','e150c5d35ed144ca87945ef4f7a0998a');
INSERT INTO `items` (`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`,`uuid`) values ('29805','18','','10303','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages redelivered','rabbitmq.queue.messages.redeliver["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of subset of messages in deliver_get which had the redelivered flag set','0','30d','0','','29745','3s','','','','200','1','0','','0','0','0','0','0','0','0','75501a52ffab4972a5988ac4ae0c82d8');
INSERT INTO `items` (`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`,`uuid`) values ('29806','18','','10303','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages published per second','rabbitmq.queue.messages.publish.rate["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate per second of messages published','0','30d','0','','29745','3s','','','','200','1','0','','0','0','0','0','0','0','0','232ee8103a5d4fb6b2b41ca641f19088');
INSERT INTO `items` (`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`,`uuid`) values ('29807','18','','10303','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages published','rabbitmq.queue.messages.publish["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of messages published','0','30d','0','','29745','3s','','','','200','1','0','','0','0','0','0','0','0','0','dfafc461ad8a45ba8f08a12ec9f4e2d3');
INSERT INTO `items` (`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`,`uuid`) values ('29808','18','','10303','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Sum of messages delivered per second','rabbitmq.queue.messages.deliver_get.rate["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get','0','30d','0','','29745','3s','','','','200','1','0','','0','0','0','0','0','0','0','9b74bc2a830e43e28ad6c44037dbd1d7');
INSERT INTO `items` (`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`,`uuid`) values ('29809','18','','10303','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Sum of messages delivered','rabbitmq.queue.messages.deliver_get["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get','0','30d','0','','29745','3s','','','','200','1','0','','0','0','0','0','0','0','0','837c46d0fd7d4ad18669dcbf62ae7025');
INSERT INTO `items` (`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`,`uuid`) values ('29810','18','','10303','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages delivered per second','rabbitmq.queue.messages.deliver.rate["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of messages delivered in acknowledgement mode to consumers','0','30d','0','','29745','3s','','','','200','1','0','','0','0','0','0','0','0','0','b8a9c0ca7fda4756a8b79ac83c4bcd07');
INSERT INTO `items` (`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`,`uuid`) values ('29811','18','','10303','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages acknowledged per second','rabbitmq.queue.messages.ack.rate["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number per second of messages delivered to clients and acknowledged','0','30d','0','','29745','3s','','','','200','1','0','','0','0','0','0','0','0','0','3902227627d84cad8794604bd4f091fd');
INSERT INTO `items` (`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`,`uuid`) values ('29812','18','','10303','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages per second','rabbitmq.queue.messages.rate["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count per second of the total messages in the queue','0','30d','0','','29745','3s','','','','200','1','0','','0','0','0','0','0','0','0','888dbb2c1b13429b9d20034fcc783f14');
INSERT INTO `items` (`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`,`uuid`) values ('29813','18','','10303','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages acknowledged','rabbitmq.queue.messages.ack["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of messages delivered to clients and acknowledged','0','30d','0','','29745','3s','','','','200','1','0','','0','0','0','0','0','0','0','2f2ca541c80b47cba2b5147a1c77aac5');
INSERT INTO `items` (`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`,`uuid`) values ('29814','18','','10303','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages unacknowledged per second','rabbitmq.queue.messages_unacknowledged.rate["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number per second of messages delivered to clients but not yet acknowledged','0','30d','0','','29745','3s','','','','200','1','0','','0','0','0','0','0','0','0','a8cc3296990640a6bf5d7319ba2e8650');
INSERT INTO `items` (`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`,`uuid`) values ('29815','18','','10303','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages unacknowledged','rabbitmq.queue.messages_unacknowledged["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of messages delivered to clients but not yet acknowledged','0','30d','0','','29745','3s','','','','200','1','0','','0','0','0','0','0','0','0','bb6a84983caa486482e241c6bf7e9534');
INSERT INTO `items` (`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`,`uuid`) values ('29816','18','','10303','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages ready per second','rabbitmq.queue.messages_ready.rate["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number per second of messages ready to be delivered to clients','0','30d','0','','29745','3s','','','','200','1','0','','0','0','0','0','0','0','0','f55c5f66ddac46fd95c5379875342284');
INSERT INTO `items` (`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`,`uuid`) values ('29817','18','','10303','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages ready','rabbitmq.queue.messages_ready["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of messages ready to be delivered to clients','0','30d','0','','29745','3s','','','','200','1','0','','0','0','0','0','0','0','0','67c9a8eee9a54eed946ab141927494c4');
INSERT INTO `items` (`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`,`uuid`) values ('29818','18','','10303','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Memory','rabbitmq.queue.memory["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Bytes of memory consumed by the Erlang process associated with the queue, including stack, heap and internal structures','0','30d','0','','29745','3s','','','','200','1','0','','0','0','0','0','0','0','0','5d420017c0f14f37aa7c7ef986b54a77');
INSERT INTO `items` (`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`,`uuid`) values ('29819','18','','10303','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Consumers','rabbitmq.queue.consumers["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of consumers','0','30d','0','','29745','3s','','','','200','1','0','','0','0','0','0','0','0','0','be1c1c6b727a45cca039f0f00f184943');
INSERT INTO `items` (`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`,`uuid`) values ('29820','18','','10303','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages redelivered per second','rabbitmq.queue.messages.redeliver.rate["{#VHOST}/{#QUEUE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate per second of subset of messages in deliver_get which had the redelivered flag set','0','30d','0','','29745','3s','','','','200','1','0','','0','0','0','0','0','0','0','a34e852ddce64d80a88129eef9ba1ab2');
INSERT INTO `items` (`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`,`uuid`) values ('29821','18','','10261','Remote Zabbix server: Utilization of alert syncer internal processes, in %','process.alert_syncer.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time alert syncer processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','236699e6400c4ae3a20868c79fd35027');
INSERT INTO `items` (`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`,`uuid`) values ('30000','18','','10300','RabbitMQ: Messages returned redeliver','rabbitmq.overview.messages.redeliver','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of subset of messages in deliver_get which had the redelivered flag set','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','650d6a94e381477299c62cfb2a2252cf');
INSERT INTO `items` (`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`,`uuid`) values ('30001','18','','10300','RabbitMQ: Messages returned unroutable per second','rabbitmq.overview.messages.return_unroutable.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of messages returned to publisher as unroutable per second','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','72267cce69cf490ea626ff3ae17b6362');
INSERT INTO `items` (`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`,`uuid`) values ('30002','18','','10300','RabbitMQ: Messages returned unroutable','rabbitmq.overview.messages.return_unroutable','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of messages returned to publisher as unroutable','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','e3faec09ae0a4d7aa8aab50d71de7bb3');
INSERT INTO `items` (`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`,`uuid`) values ('30003','18','','10300','RabbitMQ: Messages publish_out per second','rabbitmq.overview.messages.publish_out.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of messages published from this overview into queues per second,0,rabbitmq,total msgs pub out rate','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','05e4c745be95412995749c352ec0f925');
INSERT INTO `items` (`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`,`uuid`) values ('30004','18','','10300','RabbitMQ: Messages publish_out','rabbitmq.overview.messages.publish_out','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of messages published from this overview into queues','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','23dcb85dd9bc4fefb1a9682956181c2e');
INSERT INTO `items` (`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`,`uuid`) values ('30005','18','','10300','RabbitMQ: Messages publish_in per second','rabbitmq.overview.messages.publish_in.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of messages published from channels into this overview per sec','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','db511bf1cd6c465f8fe1ae6b5fa08660');
INSERT INTO `items` (`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`,`uuid`) values ('30006','18','','10300','RabbitMQ: Messages publish_in','rabbitmq.overview.messages.publish_in','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of messages published from channels into this overview','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','bb068ac7c6094fb8a59cd1a003e88c39');
INSERT INTO `items` (`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`,`uuid`) values ('30007','18','','10300','RabbitMQ: Messages published per second','rabbitmq.overview.messages.publish.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of messages published per second','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','cfadadb681474c7eb0512d1f4d223ff6');
INSERT INTO `items` (`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`,`uuid`) values ('30008','18','','10300','RabbitMQ: Messages published','rabbitmq.overview.messages.publish','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of messages published','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','4215bdf87f0e426f85bd79434a0fb0bb');
INSERT INTO `items` (`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`,`uuid`) values ('30009','18','','10300','RabbitMQ: Messages delivered per second','rabbitmq.overview.messages.deliver_get.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','c00a84c8676544dcbdd74fec13881063');
INSERT INTO `items` (`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`,`uuid`) values ('30010','18','','10300','RabbitMQ: Messages delivered','rabbitmq.overview.messages.deliver_get','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','004da545af4a4f61bd2167281bb9a02b');
INSERT INTO `items` (`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`,`uuid`) values ('30011','18','','10300','RabbitMQ: Messages confirmed per second','rabbitmq.overview.messages.confirm.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of messages confirmed per second','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','bc85a070e1e9451b953d85bb519ed63d');
INSERT INTO `items` (`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`,`uuid`) values ('30012','18','','10300','RabbitMQ: Messages confirmed','rabbitmq.overview.messages.confirm','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of messages confirmed','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','45cf9b5cf5cd4b13b0e140383233799f');
INSERT INTO `items` (`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`,`uuid`) values ('30013','18','','10300','RabbitMQ: Messages acknowledged per second','rabbitmq.overview.messages.ack.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of messages delivered to clients and acknowledged per second','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','f78fabbd7e3f44dc81b1cf9c90b26f2e');
INSERT INTO `items` (`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`,`uuid`) values ('30014','18','','10300','RabbitMQ: Messages acknowledged','rabbitmq.overview.messages.ack','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of messages delivered to clients and acknowledged','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','31908a8287be442681a0ded564977ff2');
INSERT INTO `items` (`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`,`uuid`) values ('30015','18','','10300','RabbitMQ: Messages unacknowledged','rabbitmq.overview.queue_totals.messages.unacknowledged','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of unacknowledged messages','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','6cf09ed9d244464288c8050b10622e3a');
INSERT INTO `items` (`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`,`uuid`) values ('30016','18','','10300','RabbitMQ: Messages ready for delivery','rabbitmq.overview.queue_totals.messages.ready','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of messages ready for deliver','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','efaabe175e5f4fffa8a810ea35753475');
INSERT INTO `items` (`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`,`uuid`) values ('30017','18','','10300','RabbitMQ: Messages total','rabbitmq.overview.queue_totals.messages','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of messages (ready plus unacknowledged)','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','c98b2b3dd2bd4fec9e7c571bc631167b');
INSERT INTO `items` (`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`,`uuid`) values ('30018','18','','10300','RabbitMQ: Exchanges total','rabbitmq.overview.object_totals.exchanges','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of exchanges','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','be0b952e5d08409aa2c65fe143a9193c');
INSERT INTO `items` (`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`,`uuid`) values ('30019','18','','10300','RabbitMQ: Consumers total','rabbitmq.overview.object_totals.consumers','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of consumers','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','c39007dbd4374bee943d61b7e90c0f01');
INSERT INTO `items` (`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`,`uuid`) values ('30020','18','','10300','RabbitMQ: Queues total','rabbitmq.overview.object_totals.queues','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of queues','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','d7c86b4921f54924af1b72cd2493da1c');
INSERT INTO `items` (`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`,`uuid`) values ('30021','18','','10300','RabbitMQ: Channels total','rabbitmq.overview.object_totals.channels','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of channels','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','2b03117e863348ee84d94acfe877ef7f');
INSERT INTO `items` (`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`,`uuid`) values ('30022','18','','10300','RabbitMQ: Connections total','rabbitmq.overview.object_totals.connections','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','b3cdd6739a964447b524df4fdd726434');
INSERT INTO `items` (`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`,`uuid`) values ('30023','18','','10300','RabbitMQ: Messages returned redeliver per second','rabbitmq.overview.messages.redeliver.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of subset of messages in deliver_get which had the redelivered flag set per second','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','6d7eb8880bca4c6e92f65f8a32911599');
INSERT INTO `items` (`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`,`uuid`) values ('30024','18','','10301','RabbitMQ: Management plugin version','rabbitmq.node.overview.management_version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the management plugin in use','0','30d','0','','29653','3s','','','','200','1','0','','0','0','0','0','0','0','0','db91f84a5ad7412c959fbfe4e3b6df88');
INSERT INTO `items` (`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`,`uuid`) values ('30025','18','','10301','RabbitMQ: RabbitMQ version','rabbitmq.node.overview.rabbitmq_version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of RabbitMQ on the node which processed this request','0','30d','0','','29653','3s','','','','200','1','0','','0','0','0','0','0','0','0','52a0be5049ee40748761d301a644315b');
INSERT INTO `items` (`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`,`uuid`) values ('30026','18','','10300','Exchanges discovery','rabbitmq.exchanges.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Individual exchange metrics','0','30d','1','','29999','3s','','','','200','1','0','','0','0','0','0','0','0','0','e28b4491721d4dbf8eded86a5caeabc2');
INSERT INTO `items` (`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`,`uuid`) values ('30027','18','','10300','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages acknowledged','rabbitmq.exchange.messages.ack["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of messages delivered to clients and acknowledged','0','30d','0','','29999','3s','','','','200','1','0','','0','0','0','0','0','0','0','fcf7807f096d4cddb8fa2b3671814dfa');
INSERT INTO `items` (`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`,`uuid`) values ('30028','18','','10300','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages acknowledged per second','rabbitmq.exchange.messages.ack.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of messages delivered to clients and acknowledged per second','0','30d','0','','29999','3s','','','','200','1','0','','0','0','0','0','0','0','0','68892e56e0074516b5d052dd7178955f');
INSERT INTO `items` (`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`,`uuid`) values ('30029','18','','10300','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages confirmed','rabbitmq.exchange.messages.confirm["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of messages confirmed','0','30d','0','','29999','3s','','','','200','1','0','','0','0','0','0','0','0','0','38d41b5d815a40ff816f6fad2395b61a');
INSERT INTO `items` (`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`,`uuid`) values ('30030','18','','10300','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages confirmed per second','rabbitmq.exchange.messages.confirm.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of messages confirmed per second','0','30d','0','','29999','3s','','','','200','1','0','','0','0','0','0','0','0','0','858f8ce62fa04a31902569a712e58234');
INSERT INTO `items` (`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`,`uuid`) values ('30031','18','','10300','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages delivered','rabbitmq.exchange.messages.deliver_get["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get','0','30d','0','','29999','3s','','','','200','1','0','','0','0','0','0','0','0','0','412e5003ad2d4e80832ee0551a596791');
INSERT INTO `items` (`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`,`uuid`) values ('30032','18','','10300','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages delivered per second','rabbitmq.exchange.messages.deliver_get.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get','0','30d','0','','29999','3s','','','','200','1','0','','0','0','0','0','0','0','0','ab53a6957ea641fe8b2a7f26c4bcc743');
INSERT INTO `items` (`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`,`uuid`) values ('30033','18','','10300','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages published','rabbitmq.exchange.messages.publish["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of messages published','0','30d','0','','29999','3s','','','','200','1','0','','0','0','0','0','0','0','0','1eccbe4450d74d5f9c5b8f7e6279b214');
INSERT INTO `items` (`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`,`uuid`) values ('30034','18','','10300','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages published per second','rabbitmq.exchange.messages.publish.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of messages published per second','0','30d','0','','29999','3s','','','','200','1','0','','0','0','0','0','0','0','0','32a0c7af8b9940a482a3a1d63ee90940');
INSERT INTO `items` (`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`,`uuid`) values ('30035','18','','10300','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_in','rabbitmq.exchange.messages.publish_in["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of messages published from channels into this overview','0','30d','0','','29999','3s','','','','200','1','0','','0','0','0','0','0','0','0','520d8301e48540679472bf508a6e293b');
INSERT INTO `items` (`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`,`uuid`) values ('30036','18','','10300','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_in per second','rabbitmq.exchange.messages.publish_in.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of messages published from channels into this overview per sec','0','30d','0','','29999','3s','','','','200','1','0','','0','0','0','0','0','0','0','3520a523abd1413f88c1c19978e6d562');
INSERT INTO `items` (`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`,`uuid`) values ('30037','18','','10300','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_out','rabbitmq.exchange.messages.publish_out["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of messages published from this overview into queues','0','30d','0','','29999','3s','','','','200','1','0','','0','0','0','0','0','0','0','beb929ee395e4caba73f3063c24a1d60');
INSERT INTO `items` (`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`,`uuid`) values ('30038','18','','10300','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_out per second','rabbitmq.exchange.messages.publish_out.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of messages published from this overview into queues per second,0,rabbitmq,total msgs pub out rate','0','30d','0','','29999','3s','','','','200','1','0','','0','0','0','0','0','0','0','6beb5e40cb8b416a8722ea77abb7355d');
INSERT INTO `items` (`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`,`uuid`) values ('30039','18','','10300','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages returned unroutable','rabbitmq.exchange.messages.return_unroutable["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of messages returned to publisher as unroutable','0','30d','0','','29999','3s','','','','200','1','0','','0','0','0','0','0','0','0','2901eccbd8ef483ba63c5522755155e7');
INSERT INTO `items` (`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`,`uuid`) values ('30040','18','','10300','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages returned unroutable per second','rabbitmq.exchange.messages.return_unroutable.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of messages returned to publisher as unroutable per second','0','30d','0','','29999','3s','','','','200','1','0','','0','0','0','0','0','0','0','295eeb3bd071400d921efe1f5a924a3e');
INSERT INTO `items` (`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`,`uuid`) values ('30041','18','','10300','RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages redelivered','rabbitmq.exchange.messages.redeliver["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of subset of messages in deliver_get which had the redelivered flag set','0','30d','0','','29999','3s','','','','200','1','0','','0','0','0','0','0','0','0','58a06005659943429122d451acb521e0');
INSERT INTO `items` (`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`,`uuid`) values ('30042','18','','10300','RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered per second','rabbitmq.exchange.messages.redeliver.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of subset of messages in deliver_get which had the redelivered flag set per second','0','30d','0','','29999','3s','','','','200','1','0','','0','0','0','0','0','0','0','7485d5a12fb04a13810ea54b9cc598e1');
INSERT INTO `items` (`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`,`uuid`) values ('30044','18','','10303','RabbitMQ: Management plugin version','rabbitmq.node.overview.management_version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the management plugin in use','0','30d','0','','30043','3s','','','','200','1','0','','0','0','0','0','0','0','0','129026dd49124ff2ba4f0bcc7f1fa9de');
INSERT INTO `items` (`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`,`uuid`) values ('30045','18','','10303','RabbitMQ: RabbitMQ version','rabbitmq.node.overview.rabbitmq_version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of RabbitMQ on the node which processed this request','0','30d','0','','30043','3s','','','','200','1','0','','0','0','0','0','0','0','0','d63d8001d5134e2590d3e7ca8b62958c');
INSERT INTO `items` (`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`,`uuid`) values ('30191','18','','10308','HAProxy: Uptime','haproxy.uptime','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30190','3s','','','','200','1','0','','0','0','0','0','0','0','0','29381f1e0bdc4628a82ef1b7724f2e6f');
INSERT INTO `items` (`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`,`uuid`) values ('30192','18','','10308','HAProxy: Version','haproxy.version','0','90d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30190','3s','','','','200','1','0','','0','0','0','0','0','0','0','e930e70fb1b44d9cbe673f35133c6e77');
INSERT INTO `items` (`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`,`uuid`) values ('30197','18','','10308','HAProxy Backend {#PXNAME}: Responses denied per second','haproxy.backend.dresp.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Responses denied due to security concerns (ACL-restricted).','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','3df452e68f144fc3a8e5ff7644ace606');
INSERT INTO `items` (`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`,`uuid`) values ('30198','18','','10308','HAProxy Backend {#PXNAME}: Errors connection per second','haproxy.backend.econ.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requests that encountered an error attempting to connect to a backend server.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','5e315f24828d45b285e92971d5456234');
INSERT INTO `items` (`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`,`uuid`) values ('30199','18','','10308','HAProxy Backend {#PXNAME}: Response errors per second','haproxy.backend.eresp.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requests whose responses yielded an error','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','f1ca728c571e4cf4ac9ebc36e96df27e');
INSERT INTO `items` (`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`,`uuid`) values ('30200','18','','10308','HAProxy Backend {#PXNAME}: Unassigned requests','haproxy.backend.qcur[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current number of requests unassigned in queue.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','389e5f77b422419386c2fa21db612697');
INSERT INTO `items` (`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`,`uuid`) values ('30201','18','','10308','HAProxy Backend {#PXNAME}: Time in queue','haproxy.backend.qtime[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average time spent in queue (in ms) for the last 1,024 requests','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','a58ff94387824acb81b27cab5cfc680a');
INSERT INTO `items` (`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`,`uuid`) values ('30202','18','','10308','HAProxy Backend {#PXNAME}: Responses time','haproxy.backend.rtime[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average backend response time (in ms) for the last 1,024 requests','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','7e801fd81fed448db7dd6c6eeaa398d5');
INSERT INTO `items` (`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`,`uuid`) values ('30203','18','','10308','HAProxy Backend {#PXNAME}: Status','haproxy.backend.status[{#PXNAME},{#SVNAME}]','0','7d','0','0','1','','','','',NULL,'19','','','0','','','','','2',NULL,'Possible values:\r\nUP - The server is reporting as healthy.\r\nDOWN - The server is reporting as unhealthy and unable to receive requests.\r\nNOLB - You\'ve added http-check disable-on-404 to the backend and the health checked URL has returned an HTTP 404 response.\r\nMAINT - The server has been disabled or put into maintenance mode.\r\nDRAIN - The server has been put into drain mode.\r\nno check - Health checks are not enabled for this server.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','5826a63314314ef297c81749561574d2');
INSERT INTO `items` (`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`,`uuid`) values ('30204','18','','10308','HAProxy Backend {#PXNAME}: Redispatched requests per second','haproxy.backend.wredis.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times a request was redispatched to a different backend.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','bebad9eb0731474db798eacde7771238');
INSERT INTO `items` (`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`,`uuid`) values ('30205','18','','10308','HAProxy Backend {#PXNAME}: Retried connections per second','haproxy.backend.wretr.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times a connection was retried.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','0f09a6b800d747f4beed96a25b5cfa49');
INSERT INTO `items` (`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`,`uuid`) values ('30206','18','','10308','HAProxy Frontend {#PXNAME}: Incoming traffic','haproxy.frontend.bin.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits received by the frontend','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','434f9c1dd63946d3a181c42bcee94e07');
INSERT INTO `items` (`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`,`uuid`) values ('30207','18','','10308','HAProxy Frontend {#PXNAME}: Outgoing traffic','haproxy.frontend.bout.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits sent by the frontend','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','047ec4b444af4bc38f74eb7fabf2fb94');
INSERT INTO `items` (`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`,`uuid`) values ('30208','18','','10308','HAProxy Frontend {#PXNAME}: Denied requests per second','haproxy.frontend.dreq.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Requests denied due to security concerns (ACL-restricted) per second.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','4542ee3da6334468b6a146083bfa1208');
INSERT INTO `items` (`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`,`uuid`) values ('30209','18','','10308','HAProxy Frontend {#PXNAME}: Request errors per second','haproxy.frontend.ereq.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of request errors per second.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','2da48ea7b7fb4432b041b9706017778e');
INSERT INTO `items` (`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`,`uuid`) values ('30210','18','','10308','HAProxy Frontend {#PXNAME}: Number of responses with codes 1xx per second','haproxy.frontend.hrsp_1xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of informational HTTP responses per second.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','d4d6d7092c524a4aa9ac83f9506fcb44');
INSERT INTO `items` (`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`,`uuid`) values ('30211','18','','10308','HAProxy Frontend {#PXNAME}: Number of responses with codes 2xx per second','haproxy.frontend.hrsp_2xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of successful HTTP responses per second.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','34bb4142cb4c48678f1136ed7a582ff7');
INSERT INTO `items` (`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`,`uuid`) values ('30212','18','','10308','HAProxy Frontend {#PXNAME}: Number of responses with codes 3xx per second','haproxy.frontend.hrsp_3xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP redirections per second.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','3d6966759c864b0d94daceead022e421');
INSERT INTO `items` (`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`,`uuid`) values ('30213','18','','10308','HAProxy Frontend {#PXNAME}: Number of responses with codes 4xx per second','haproxy.frontend.hrsp_4xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP client errors per second.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','3fe3871812254cf0a228b6607f02ea12');
INSERT INTO `items` (`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`,`uuid`) values ('30214','18','','10308','HAProxy Frontend {#PXNAME}: Number of responses with codes 5xx per second','haproxy.frontend.hrsp_5xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP server errors per second.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','85d7aa81598b48ee9d40ce3e5b7fc7ea');
INSERT INTO `items` (`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`,`uuid`) values ('30215','18','','10308','HAProxy Frontend {#PXNAME}: Sessions rate','haproxy.frontend.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of sessions created per second','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','24ee024f493e47f4b4405bc469976c8e');
INSERT INTO `items` (`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`,`uuid`) values ('30216','18','','10308','HAProxy Frontend {#PXNAME}: Requests rate','haproxy.frontend.req_rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'HTTP requests per second','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','2290bc0944774d54a89d5b6195f81ad4');
INSERT INTO `items` (`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`,`uuid`) values ('30217','18','','10308','HAProxy Frontend {#PXNAME}: Established sessions','haproxy.frontend.scur[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current number of established sessions.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','b01d1b02b9da4609acaa278cf5f2ebbd');
INSERT INTO `items` (`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`,`uuid`) values ('30218','18','','10308','HAProxy Frontend {#PXNAME}: Session limits','haproxy.frontend.slim[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','4ed338fd24e14aeda1f6058a36371455');
INSERT INTO `items` (`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`,`uuid`) values ('30219','18','','10308','HAProxy {#PXNAME} {#SVNAME}: Responses denied per second','haproxy.server.dresp.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Responses denied due to security concerns (ACL-restricted).','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','537f0b807f784b6cba1032ff77fad499');
INSERT INTO `items` (`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`,`uuid`) values ('30220','18','','10308','HAProxy {#PXNAME} {#SVNAME}: Errors connection per second','haproxy.server.econ.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requests that encountered an error attempting to connect to a backend server.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','f688e1e62fa94d1db1d59735094f0bc4');
INSERT INTO `items` (`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`,`uuid`) values ('30221','18','','10308','HAProxy {#PXNAME} {#SVNAME}: Response errors per second','haproxy.server.eresp.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requests whose responses yielded an error.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','bdcac24a8b1e4dd5a441edb61ca13156');
INSERT INTO `items` (`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`,`uuid`) values ('30222','18','','10308','HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second','haproxy.server.hrsp_4xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP client errors per second.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','3af9ae3041bb4cd588cc6048370d9be7');
INSERT INTO `items` (`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`,`uuid`) values ('30223','18','','10308','HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second','haproxy.server.hrsp_5xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP server errors per second.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','9f2f6e181dca47ab8e1ae9064ab9fe15');
INSERT INTO `items` (`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`,`uuid`) values ('30224','18','','10308','HAProxy {#PXNAME} {#SVNAME}: Unassigned requests','haproxy.server.qcur[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current number of requests unassigned in queue.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','03c6d54204104fa0a320ff76204fc825');
INSERT INTO `items` (`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`,`uuid`) values ('30225','18','','10308','HAProxy {#PXNAME} {#SVNAME}: Time in queue','haproxy.server.qtime[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average time spent in queue (in ms) for the last 1,024 requests.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','58c074ebc26145a6847d425d51f7cbca');
INSERT INTO `items` (`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`,`uuid`) values ('30226','18','','10308','HAProxy {#PXNAME} {#SVNAME}: Responses time','haproxy.server.rtime[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average server response time (in ms) for the last 1,024 requests.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','25c22d3eca2d4eb7b83791d36edcf470');
INSERT INTO `items` (`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`,`uuid`) values ('30227','18','','10308','HAProxy {#PXNAME} {#SVNAME}: Status','haproxy.server.status[{#PXNAME},{#SVNAME}]','0','7d','0','0','1','','','','',NULL,'19','','','0','','','','','2',NULL,'','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','973e886a54374bd4815f71d9f9174e80');
INSERT INTO `items` (`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`,`uuid`) values ('30228','18','','10308','HAProxy {#PXNAME} {#SVNAME}: Redispatched requests per second','haproxy.server.wredis.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times a request was redispatched to a different backend.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','606acc119e0d4d9c934e200e037434fe');
INSERT INTO `items` (`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`,`uuid`) values ('30229','18','','10308','HAProxy {#PXNAME} {#SVNAME}: Retried connections per second','haproxy.server.wretr.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times a connection was retried.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','1e2188320b834562b6b33e96f90a5b44');
INSERT INTO `items` (`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`,`uuid`) values ('30234','18','','10309','HAProxy: Uptime','haproxy.uptime','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30231','3s','','','','200','1','0','','0','0','0','0','0','0','0','06a33ebaed3148889c19eba2de859d70');
INSERT INTO `items` (`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`,`uuid`) values ('30235','18','','10309','HAProxy: Version','haproxy.version','0','90d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30231','3s','','','','200','1','0','','0','0','0','0','0','0','0','a2cd747feaaf4c278972ac7adbd9015a');
INSERT INTO `items` (`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`,`uuid`) values ('30240','18','','10309','HAProxy Backend {#PXNAME}: Responses denied per second','haproxy.backend.dresp.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Responses denied due to security concerns (ACL-restricted).','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','59eeafe66fe34334a81d736f62b88ec0');
INSERT INTO `items` (`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`,`uuid`) values ('30241','18','','10309','HAProxy Backend {#PXNAME}: Errors connection per second','haproxy.backend.econ.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requests that encountered an error attempting to connect to a backend server.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','e885cb2b53a941cd932211c4ccf334f6');
INSERT INTO `items` (`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`,`uuid`) values ('30242','18','','10309','HAProxy Backend {#PXNAME}: Response errors per second','haproxy.backend.eresp.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requests whose responses yielded an error','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','c42f04d1a00c4d4fa96705746cb32631');
INSERT INTO `items` (`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`,`uuid`) values ('30243','18','','10309','HAProxy Backend {#PXNAME}: Unassigned requests','haproxy.backend.qcur[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current number of requests unassigned in queue.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','7985131c621d49419dfe5bcfecb675f2');
INSERT INTO `items` (`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`,`uuid`) values ('30244','18','','10309','HAProxy Backend {#PXNAME}: Time in queue','haproxy.backend.qtime[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average time spent in queue (in ms) for the last 1,024 requests','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','1592ee4ff7b2448a9e044a0ad7904693');
INSERT INTO `items` (`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`,`uuid`) values ('30245','18','','10309','HAProxy Backend {#PXNAME}: Responses time','haproxy.backend.rtime[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average backend response time (in ms) for the last 1,024 requests','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','5ddd3cd8af904faaa69f34df442c9717');
INSERT INTO `items` (`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`,`uuid`) values ('30246','18','','10309','HAProxy Backend {#PXNAME}: Status','haproxy.backend.status[{#PXNAME},{#SVNAME}]','0','7d','0','0','1','','','','',NULL,'20','','','0','','','','','2',NULL,'Possible values:\r\nUP - The server is reporting as healthy.\r\nDOWN - The server is reporting as unhealthy and unable to receive requests.\r\nNOLB - You\'ve added http-check disable-on-404 to the backend and the health checked URL has returned an HTTP 404 response.\r\nMAINT - The server has been disabled or put into maintenance mode.\r\nDRAIN - The server has been put into drain mode.\r\nno check - Health checks are not enabled for this server.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','16bb7ee405a84bb4865c46fdf996511f');
INSERT INTO `items` (`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`,`uuid`) values ('30247','18','','10309','HAProxy Backend {#PXNAME}: Redispatched requests per second','haproxy.backend.wredis.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times a request was redispatched to a different backend.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','00d3038c7df34512ae39ba1051712674');
INSERT INTO `items` (`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`,`uuid`) values ('30248','18','','10309','HAProxy Backend {#PXNAME}: Retried connections per second','haproxy.backend.wretr.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times a connection was retried.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','e0eafe2c4d0d40e492822e43f6cf108e');
INSERT INTO `items` (`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`,`uuid`) values ('30249','18','','10309','HAProxy Frontend {#PXNAME}: Incoming traffic','haproxy.frontend.bin.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits received by the frontend','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','6dac4d4e912b4f8fb7def6bab98d8dc4');
INSERT INTO `items` (`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`,`uuid`) values ('30250','18','','10309','HAProxy Frontend {#PXNAME}: Outgoing traffic','haproxy.frontend.bout.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits sent by the frontend','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','5550e3842d00486999c822b0d514b78e');
INSERT INTO `items` (`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`,`uuid`) values ('30251','18','','10309','HAProxy Frontend {#PXNAME}: Denied requests per second','haproxy.frontend.dreq.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Requests denied due to security concerns (ACL-restricted) per second.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','819b1559cf294958ab03cae8663eb7e3');
INSERT INTO `items` (`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`,`uuid`) values ('30252','18','','10309','HAProxy Frontend {#PXNAME}: Request errors per second','haproxy.frontend.ereq.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of request errors per second.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','0b2a1b9e1c9045519e4ac52d5d83e86b');
INSERT INTO `items` (`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`,`uuid`) values ('30253','18','','10309','HAProxy Frontend {#PXNAME}: Number of responses with codes 1xx per second','haproxy.frontend.hrsp_1xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of informational HTTP responses per second.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','c287463b994c40caaaeb195a4dca5d37');
INSERT INTO `items` (`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`,`uuid`) values ('30254','18','','10309','HAProxy Frontend {#PXNAME}: Number of responses with codes 2xx per second','haproxy.frontend.hrsp_2xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of successful HTTP responses per second.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','41cd2084595d482ea204f9edc62a985a');
INSERT INTO `items` (`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`,`uuid`) values ('30255','18','','10309','HAProxy Frontend {#PXNAME}: Number of responses with codes 3xx per second','haproxy.frontend.hrsp_3xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP redirections per second.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','f1ae1b8f477449c9832e80bfd145211a');
INSERT INTO `items` (`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`,`uuid`) values ('30256','18','','10309','HAProxy Frontend {#PXNAME}: Number of responses with codes 4xx per second','haproxy.frontend.hrsp_4xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP client errors per second.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','f1635a2f379b4542b9c44c9d5224fc4d');
INSERT INTO `items` (`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`,`uuid`) values ('30257','18','','10309','HAProxy Frontend {#PXNAME}: Number of responses with codes 5xx per second','haproxy.frontend.hrsp_5xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP server errors per second.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','cf9ae6b634fd4acc92c180bc10c9b0f5');
INSERT INTO `items` (`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`,`uuid`) values ('30258','18','','10309','HAProxy Frontend {#PXNAME}: Sessions rate','haproxy.frontend.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of sessions created per second','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','6c09de61332c4d56a4b90ee4e9ab6fe2');
INSERT INTO `items` (`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`,`uuid`) values ('30259','18','','10309','HAProxy Frontend {#PXNAME}: Requests rate','haproxy.frontend.req_rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'HTTP requests per second','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','7097695ee69e4b7895c0d885606b8456');
INSERT INTO `items` (`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`,`uuid`) values ('30260','18','','10309','HAProxy Frontend {#PXNAME}: Established sessions','haproxy.frontend.scur[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current number of established sessions.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','7985345dcd274811ac6a2e69940f6cb7');
INSERT INTO `items` (`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`,`uuid`) values ('30261','18','','10309','HAProxy Frontend {#PXNAME}: Session limits','haproxy.frontend.slim[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','8b185b2272244229865315cc0139d43f');
INSERT INTO `items` (`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`,`uuid`) values ('30262','18','','10309','HAProxy {#PXNAME} {#SVNAME}: Responses denied per second','haproxy.server.dresp.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Responses denied due to security concerns (ACL-restricted).','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','6e5824eca488428eb61a17d1d4efd055');
INSERT INTO `items` (`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`,`uuid`) values ('30263','18','','10309','HAProxy {#PXNAME} {#SVNAME}: Errors connection per second','haproxy.server.econ.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requests that encountered an error attempting to connect to a backend server.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','18533da75eb142dbb216acc7af3bde4b');
INSERT INTO `items` (`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`,`uuid`) values ('30264','18','','10309','HAProxy {#PXNAME} {#SVNAME}: Response errors per second','haproxy.server.eresp.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requests whose responses yielded an error.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','3412ca47e4fe4481b434f95dda566c5e');
INSERT INTO `items` (`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`,`uuid`) values ('30265','18','','10309','HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second','haproxy.server.hrsp_4xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP client errors per second.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','66076fc3a6fc401cb1423fb015dfe187');
INSERT INTO `items` (`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`,`uuid`) values ('30266','18','','10309','HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second','haproxy.server.hrsp_5xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP server errors per second.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','631d2471fc7346a5b0ce8379a400f13e');
INSERT INTO `items` (`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`,`uuid`) values ('30267','18','','10309','HAProxy {#PXNAME} {#SVNAME}: Unassigned requests','haproxy.server.qcur[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current number of requests unassigned in queue.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','0bc4c4f25d00423b9dc188c9dbe34db0');
INSERT INTO `items` (`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`,`uuid`) values ('30268','18','','10309','HAProxy {#PXNAME} {#SVNAME}: Time in queue','haproxy.server.qtime[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average time spent in queue (in ms) for the last 1,024 requests.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','aa3b73b8d06a463f84b10621461c1577');
INSERT INTO `items` (`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`,`uuid`) values ('30269','18','','10309','HAProxy {#PXNAME} {#SVNAME}: Responses time','haproxy.server.rtime[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average server response time (in ms) for the last 1,024 requests.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','f790d237b494452a9b77b4f002a7ca46');
INSERT INTO `items` (`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`,`uuid`) values ('30270','18','','10309','HAProxy {#PXNAME} {#SVNAME}: Status','haproxy.server.status[{#PXNAME},{#SVNAME}]','0','7d','0','0','1','','','','',NULL,'20','','','0','','','','','2',NULL,'','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','80ceac1d54e94e50988bf205318392a8');
INSERT INTO `items` (`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`,`uuid`) values ('30271','18','','10309','HAProxy {#PXNAME} {#SVNAME}: Redispatched requests per second','haproxy.server.wredis.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times a request was redispatched to a different backend.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','d7419ca33427455688a08ecff8ad6fb0');
INSERT INTO `items` (`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`,`uuid`) values ('30272','18','','10309','HAProxy {#PXNAME} {#SVNAME}: Retried connections per second','haproxy.server.wretr.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times a connection was retried.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','96cfadc919d8457ebb7519e11ac93d79');
INSERT INTO `items` (`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`,`uuid`) values ('30277','18','','10310','Redis: Blocked clients','redis.clients.blocked','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of connections waiting on a blocking call','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','bc4989f098954259924cbee6717519a7');
INSERT INTO `items` (`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`,`uuid`) values ('30278','18','','10310','Redis: TCP port','redis.server.tcp_port','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'TCP/IP listen port','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','8c28e54f9e5d40d6b69c1f5b39b85054');
INSERT INTO `items` (`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`,`uuid`) values ('30279','18','','10310','Redis: Expired keys','redis.stats.expired_keys','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of key expiration events','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','0a77355cfba348bb8884d2405892ed5d');
INSERT INTO `items` (`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`,`uuid`) values ('30280','18','','10310','Redis: Evicted keys','redis.stats.evicted_keys','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of evicted keys due to maxmemory limit','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','eca69284ac8e4ae3a7e965b6549e9343');
INSERT INTO `items` (`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`,`uuid`) values ('30281','18','','10310','Redis: Uptime','redis.server.uptime','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of seconds since Redis server start','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','af225edd976146f2920bc05afb703f14');
INSERT INTO `items` (`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`,`uuid`) values ('30282','18','','10310','Redis: Redis mode','redis.server.redis_mode','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The server\'s mode ("standalone", "sentinel" or "cluster")','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','b2deab550d984b3e93741c53019e7f89');
INSERT INTO `items` (`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`,`uuid`) values ('30283','18','','10310','Redis: Redis version','redis.server.redis_version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the Redis server','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','9699d6a6563b498ea73f88a4c1dd9cf1');
INSERT INTO `items` (`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`,`uuid`) values ('30284','18','','10310','Redis: Instantaneous operations per sec','redis.stats.instantaneous_ops.rate','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of commands processed per second','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','3552b285d7ca41f796c1838e268a92c1');
INSERT INTO `items` (`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`,`uuid`) values ('30285','18','','10310','Redis: Process id','redis.server.process_id','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'PID of the server process','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','8a08d4f30b78448986b9fd94cafd398c');
INSERT INTO `items` (`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`,`uuid`) values ('30286','18','','10310','Redis: Replication role','redis.replication.role','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Value is "master" if the instance is replica of no one, or "slave" if the instance is a replica of some master instance. Note that a replica can be master of another replica (chained replication).','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','d8371457697744159aabc3bdece4af2e');
INSERT INTO `items` (`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`,`uuid`) values ('30287','18','','10310','Redis: Replication backlog size','redis.replication.repl_backlog_size','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total size in bytes of the replication backlog buffer','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','a437a46aafe3413884975fc480091bb5');
INSERT INTO `items` (`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`,`uuid`) values ('30288','18','','10310','Redis: Replication backlog history length','redis.replication.repl_backlog_histlen','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of data in the backlog sync buffer','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','081cd9df926d48cea7e5c68f7761ddb1');
INSERT INTO `items` (`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`,`uuid`) values ('30289','18','','10310','Redis: Instantaneous input bytes per second','redis.stats.instantaneous_input.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The network\'s read rate per second in KB/sec','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','5841b6f2a76b432080029367e7008cd1');
INSERT INTO `items` (`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`,`uuid`) values ('30290','18','','10310','Redis: Keyspace hits','redis.stats.keyspace_hits','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of successful lookup of keys in the main dictionary','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','66d30a422e704174ae7700e1dd006aa1');
INSERT INTO `items` (`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`,`uuid`) values ('30291','18','','10310','Redis: Instantaneous output bytes per second','redis.stats.instantaneous_output.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The network\'s write rate per second in KB/sec','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','86c05ed58e8448e9b7307a3c82e182af');
INSERT INTO `items` (`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`,`uuid`) values ('30292','18','','10310','Redis: Replication backlog active','redis.replication.repl_backlog_active','0','7d','365d','0','3','','','','',NULL,'144','','','0','','','','','0',NULL,'Flag indicating replication backlog is active','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','cf067374339e44e5a4ba2cd70d4fec3a');
INSERT INTO `items` (`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`,`uuid`) values ('30293','18','','10310','Redis: Keyspace misses','redis.stats.keyspace_misses','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of failed lookup of keys in the main dictionary','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','e24da63a83dc4223bed35cf80fc22300');
INSERT INTO `items` (`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`,`uuid`) values ('30294','18','','10310','Redis: Latest fork usec','redis.stats.latest_fork_usec','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Duration of the latest fork operation in microseconds','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','1f11810f06d44e498a895c516f902f95');
INSERT INTO `items` (`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`,`uuid`) values ('30295','18','','10310','Redis: Migrate cached sockets','redis.stats.migrate_cached_sockets','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of sockets open for MIGRATE purposes','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','2662dfd3524749998306f1d7afe33019');
INSERT INTO `items` (`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`,`uuid`) values ('30296','18','','10310','Redis: Pubsub channels','redis.stats.pubsub_channels','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Global number of pub/sub channels with client subscriptions','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','186e6bda0a0e463bb8218a58f227ff2b');
INSERT INTO `items` (`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`,`uuid`) values ('30297','18','','10310','Redis: Pubsub patterns','redis.stats.pubsub_patterns','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Global number of pub/sub pattern with client subscriptions','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','1e0711a2b40e4fea88c0c57a1f6d2b30');
INSERT INTO `items` (`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`,`uuid`) values ('30298','18','','10310','Redis: Rejected connections','redis.stats.rejected_connections','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections rejected because of maxclients limit','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','65135267c836435d872325a7129e5857');
INSERT INTO `items` (`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`,`uuid`) values ('30299','18','','10310','Redis: Sync full','redis.stats.sync_full','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of full resyncs with replicas','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','37135fd8b7e94c41bc21e802f21baeb4');
INSERT INTO `items` (`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`,`uuid`) values ('30300','18','','10310','Redis: Sync partial err','redis.stats.sync_partial_err','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of denied partial resync requests','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','cb5b6380b164419280fdcd98077c5d8f');
INSERT INTO `items` (`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`,`uuid`) values ('30301','18','','10310','Redis: Sync partial ok','redis.stats.sync_partial_ok','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of accepted partial resync requests','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','231560fd350e4b5096b242dddecd7c8b');
INSERT INTO `items` (`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`,`uuid`) values ('30302','18','','10310','Redis: Total commands processed','redis.stats.total_commands_processed','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of commands processed by the server','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','278ff045f367443380fcd594dba77d53');
INSERT INTO `items` (`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`,`uuid`) values ('30303','18','','10310','Redis: Total connections received','redis.stats.total_connections_received','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections accepted by the server','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','c9afbbbec8a44926887389a590f1df91');
INSERT INTO `items` (`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`,`uuid`) values ('30304','18','','10310','Redis: Total net input bytes','redis.stats.total_net_input_bytes','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of bytes read from the network','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','838cb6cbfd8a42e1b9cfa4a60670324a');
INSERT INTO `items` (`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`,`uuid`) values ('30305','18','','10310','Redis: Replication backlog first byte offset','redis.replication.repl_backlog_first_byte_offset','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The master offset of the replication backlog buffer','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','b4ea8df4d73144f99ffd4f5f6e6359ef');
INSERT INTO `items` (`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`,`uuid`) values ('30306','18','','10310','Redis: Connected slaves','redis.replication.connected_slaves','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connected slaves','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','6680a01fb98c4504bed6458ba6cde146');
INSERT INTO `items` (`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`,`uuid`) values ('30307','18','','10310','Redis: Master replication offset','redis.replication.master_repl_offset','0','7d','365d','0','3','','B','','',NULL,'145','','','0','','','','','0',NULL,'Replication offset reported by the master','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','37fa1595299c4a3ea091039f4db47cf3');
INSERT INTO `items` (`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`,`uuid`) values ('30308','18','','10310','Redis: Memory used RSS','redis.memory.used_memory_rss','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes that Redis allocated as seen by the operating system','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','ef06ae3dd4784702ad0d281da94c294d');
INSERT INTO `items` (`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`,`uuid`) values ('30309','18','','10310','Redis: Max input buffer','redis.clients.max_input_buffer','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The biggest input buffer among current client connections','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','3f5d6532f403436c823e1461e49e54c2');
INSERT INTO `items` (`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`,`uuid`) values ('30310','18','','10310','Redis: Max output buffer','redis.clients.max_output_buffer','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The biggest output buffer among current client connections','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','44788aa774e64fe685fe6496a9bea97d');
INSERT INTO `items` (`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`,`uuid`) values ('30311','18','','10310','Redis: Cluster enabled','redis.cluster.enabled','0','7d','365d','0','3','','','','',NULL,'144','','','0','','','','','0',NULL,'Indicate Redis cluster is enabled','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','74f9fe26bdaf4a7bb86214bd7d500363');
INSERT INTO `items` (`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`,`uuid`) values ('30312','18','','10310','Redis: Max clients','redis.config.maxclients','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Max number of connected clients at the same time.\r\nOnce the limit is reached Redis will close all the new connections sending an error "max number of clients reached".','0','30d','0','','30275','3s','','','','200','1','0','','0','0','0','0','0','0','0','066486e3be25406185e624611eeb167a');
INSERT INTO `items` (`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`,`uuid`) values ('30313','18','','10310','Redis: CPU sys','redis.cpu.sys','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'System CPU consumed by the Redis server','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','99d427f1f76a468c9878225abb8cebbd');
INSERT INTO `items` (`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`,`uuid`) values ('30314','18','','10310','Redis: CPU sys children','redis.cpu.sys_children','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'System CPU consumed by the background processes','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','1bfce9a62c924510a9cac3b04320d838');
INSERT INTO `items` (`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`,`uuid`) values ('30315','18','','10310','Redis: CPU user','redis.cpu.user','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'User CPU consumed by the Redis server','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','83e7c9f5b8a24c949d72125671d6d39a');
INSERT INTO `items` (`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`,`uuid`) values ('30316','18','','10310','Redis: CPU user children','redis.cpu.user_children','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'User CPU consumed by the background processes','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','8bc18ca0c79d4a81811b600cf3fe8ddd');
INSERT INTO `items` (`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`,`uuid`) values ('30317','18','','10310','Redis: Memory fragmentation ratio','redis.memory.fragmentation_ratio','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This ratio is an indication of memory mapping efficiency:\r\n — Value over 1.0 indicate that memory fragmentation is very likely. Consider restarting the Redis server so the operating system can recover fragmented memory, especially with a ratio over 1.5.\r\n — Value under 1.0 indicate that Redis likely has insufficient memory available. Consider optimizing memory usage or adding more RAM.\r\n\r\nNote: If your peak memory usage is much higher than your current memory usage, the memory fragmentation ratio may be unreliable.\r\n\r\nhttps://redis.io/topics/memory-optimization','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','5fe2afa1c8ff434a876822ea0b290659');
INSERT INTO `items` (`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`,`uuid`) values ('30318','18','','10310','Redis: Memory used','redis.memory.used_memory','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of bytes allocated by Redis using its allocator','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','5fef1d341a974cc5aa164e550aff1537');
INSERT INTO `items` (`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`,`uuid`) values ('30319','18','','10310','Redis: Memory used Lua','redis.memory.used_memory_lua','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of memory used by the Lua engine','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','de026d98fd9146b78f9a0be2c0b9de10');
INSERT INTO `items` (`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`,`uuid`) values ('30320','18','','10310','Redis: Memory used peak','redis.memory.used_memory_peak','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Peak memory consumed by Redis (in bytes)','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','d3f05ab1c0404f01875afb964d9820e2');
INSERT INTO `items` (`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`,`uuid`) values ('30321','18','','10310','Redis: AOF current rewrite time sec','redis.persistence.aof_current_rewrite_time_sec','0','7d','365d','0','0','','s','','',NULL,'146','','','0','','','','','0',NULL,'Duration of the on-going AOF rewrite operation if any','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','86501872c68c4e9fa4b55aaacebb3c3c');
INSERT INTO `items` (`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`,`uuid`) values ('30322','18','','10310','Redis: Connected clients','redis.clients.connected','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of connected clients','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','6140e8ff18fe41c6b65165b0f5346c7b');
INSERT INTO `items` (`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`,`uuid`) values ('30323','18','','10310','Redis: AOF enabled','redis.persistence.aof_enabled','0','7d','365d','0','3','','','','',NULL,'144','','','0','','','','','0',NULL,'Flag indicating AOF logging is activated','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','d298e1ce9aa1481391a48754e2a648b0');
INSERT INTO `items` (`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`,`uuid`) values ('30324','18','','10310','Redis: AOF last bgrewrite status','redis.persistence.aof_last_bgrewrite_status','0','7d','365d','0','3','','','','',NULL,'143','','','0','','','','','0',NULL,'Status of the last AOF rewrite operation','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','e2e62cc728c04169afeb051000042e28');
INSERT INTO `items` (`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`,`uuid`) values ('30325','18','','10310','Redis: AOF last rewrite time sec','redis.persistence.aof_last_rewrite_time_sec','0','7d','365d','0','0','','s','','',NULL,'146','','','0','','','','','0',NULL,'Duration of the last AOF rewrite','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','5a14501541c44699b81e3a89cc93d628');
INSERT INTO `items` (`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`,`uuid`) values ('30326','18','','10310','Redis: AOF last write status','redis.persistence.aof_last_write_status','0','7d','365d','0','3','','','','',NULL,'143','','','0','','','','','0',NULL,'Status of the last write operation to the AOF','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','2cfd96e347d341219238bdaf65f1846d');
INSERT INTO `items` (`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`,`uuid`) values ('30327','18','','10310','Redis: AOF rewrite in progress','redis.persistence.aof_rewrite_in_progress','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Flag indicating a AOF rewrite operation is on-going','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','3f4866909425447a828600e9b44ace5b');
INSERT INTO `items` (`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`,`uuid`) values ('30328','18','','10310','Redis: AOF rewrite scheduled','redis.persistence.aof_rewrite_scheduled','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Flag indicating an AOF rewrite operation will be scheduled once the on-going RDB save is complete','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','83d243cc46304694954e08c0b03a3527');
INSERT INTO `items` (`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`,`uuid`) values ('30329','18','','10310','Redis: Dump loading','redis.persistence.loading','0','7d','365d','0','3','','','','',NULL,'144','','','0','','','','','0',NULL,'Flag indicating if the load of a dump file is on-going','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','90df2d442dc049d690044b92e0888c31');
INSERT INTO `items` (`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`,`uuid`) values ('30330','18','','10310','Redis: RDB bgsave in progress','redis.persistence.rdb_bgsave_in_progress','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'"1" if bgsave is in progress and "0" otherwise','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','5b1ecad187764429a22cbeb69afa3a28');
INSERT INTO `items` (`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`,`uuid`) values ('30331','18','','10310','Redis: RDB changes since last save','redis.persistence.rdb_changes_since_last_save','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of changes since the last background save','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','ea673953a3014dc091ec62a20ee53945');
INSERT INTO `items` (`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`,`uuid`) values ('30332','18','','10310','Redis: RDB current bgsave time sec','redis.persistence.rdb_current_bgsave_time_sec','0','7d','365d','0','0','','s','','',NULL,'146','','','0','','','','','0',NULL,'Duration of the on-going RDB save operation if any','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','d8c4d8fceeb5482a951999eedd350f73');
INSERT INTO `items` (`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`,`uuid`) values ('30333','18','','10310','Redis: RDB last bgsave status','redis.persistence.rdb_last_bgsave_status','0','7d','365d','0','3','','','','',NULL,'143','','','0','','','','','0',NULL,'Status of the last RDB save operation','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','e25772b422314949a564f219d6f725bc');
INSERT INTO `items` (`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`,`uuid`) values ('30334','18','','10310','Redis: RDB last bgsave time sec','redis.persistence.rdb_last_bgsave_time_sec','0','7d','365d','0','0','','s','','',NULL,'146','','','0','','','','','0',NULL,'Duration of the last bg_save operation','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','f506941104e34db08c0d8f5a6d9d9710');
INSERT INTO `items` (`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`,`uuid`) values ('30335','18','','10310','Redis: RDB last save time','redis.persistence.rdb_last_save_time','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Epoch-based timestamp of last successful RDB save','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','04e1c21ca49246d7aba062cd001a8c00');
INSERT INTO `items` (`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`,`uuid`) values ('30336','18','','10310','Redis: Total net output bytes','redis.stats.total_net_output_bytes','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of bytes written to the network','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','762f6b06eb094de896d265fcf3f9a603');
INSERT INTO `items` (`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`,`uuid`) values ('30338','18','','10310','Keyspace discovery','redis.keyspace.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Individual keyspace metrics','0','30d','1','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','0f7966f47fda4b41856163ffb438bf27');
INSERT INTO `items` (`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`,`uuid`) values ('30339','18','','10310','Version 4+ metrics discovery','redis.metrics.v4.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Additional metrics for versions 4+','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','a3fb00d4bbc24779b6c7223b867f4d2c');
INSERT INTO `items` (`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`,`uuid`) values ('30340','18','','10310','Version 5+ metrics discovery','redis.metrics.v5.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Additional metrics for versions 5+','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','f7a9f1e26bb54cb6adf74ee9f30d88cd');
INSERT INTO `items` (`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`,`uuid`) values ('30341','18','','10310','AOF metrics discovery','redis.persistence.aof.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If AOF is activated, additional metrics will be added','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','ac3a22522a2c4fa1a256794dd2292480');
INSERT INTO `items` (`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`,`uuid`) values ('30342','18','','10310','Replication metrics discovery','redis.replication.master.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If the instance is the master and the slaves are connected, additional metrics are provided','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','4379bad5624a4a5db0c86c5332cf5cc9');
INSERT INTO `items` (`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`,`uuid`) values ('30343','18','','10310','Slave metrics discovery','redis.replication.slave.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If the instance is a replica, additional metrics are provided','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','ca9296a7acb548789865ac716a54ce10');
INSERT INTO `items` (`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`,`uuid`) values ('30348','18','','10310','DB {#DB}: Average TTL','redis.db.avg_ttl["{#DB}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average TTL','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','38fcb8524f1b4f50a4945333fc6c7536');
INSERT INTO `items` (`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`,`uuid`) values ('30349','18','','10310','DB {#DB}: Expires','redis.db.expires["{#DB}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of keys with an expiration','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','bde12d459b7b4e23a22ed6188b57bb25');
INSERT INTO `items` (`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`,`uuid`) values ('30350','18','','10310','DB {#DB}: Keys','redis.db.keys["{#DB}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of keys','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','2bae0d2f8b8348bcad207b61ef6286c3');
INSERT INTO `items` (`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`,`uuid`) values ('30351','18','','10310','Redis: Active defrag running{#SINGLETON}','redis.memory.active_defrag_running[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Flag indicating if active defragmentation is active','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','b7e8d996335f41158b3c6a8961319db0');
INSERT INTO `items` (`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`,`uuid`) values ('30352','18','','10310','Redis: RDB last CoW size{#SINGLETON}','redis.persistence.rdb_last_cow_size[{#SINGLETON}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size in bytes of copy-on-write allocations during the last RDB save operation','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','768839c72e3f4be89e30dd0d140c9d03');
INSERT INTO `items` (`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`,`uuid`) values ('30353','18','','10310','Redis: Expired time cap reached count{#SINGLETON}','redis.stats.expired_time_cap_reached_count[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','81667ae170b04ac0980e122566c5ed8e');
INSERT INTO `items` (`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`,`uuid`) values ('30354','18','','10310','Redis: Expired stale %{#SINGLETON}','redis.stats.expired_stale_perc[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','a34f4e33a0cb4381b5c3b7a507e90bee');
INSERT INTO `items` (`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`,`uuid`) values ('30355','18','','10310','Redis: Active defrag misses{#SINGLETON}','redis.stats.active_defrag_misses[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of aborted value reallocations started by the active defragmentation process','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','3c20cca8b4a84c619d90d64a34386dfa');
INSERT INTO `items` (`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`,`uuid`) values ('30356','18','','10310','Redis: Active defrag key misses{#SINGLETON}','redis.stats.active_defrag_key_misses[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of keys that were skipped by the active defragmentation process','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','8aba0ad8d7314b6b8cf1e80cb0afb618');
INSERT INTO `items` (`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`,`uuid`) values ('30357','18','','10310','Redis: Active defrag key hits{#SINGLETON}','redis.stats.active_defrag_key_hits[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of keys that were actively defragmented','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','f8b424743dd24691be2bd07d5538b16a');
INSERT INTO `items` (`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`,`uuid`) values ('30358','18','','10310','Redis: Active defrag hits{#SINGLETON}','redis.stats.active_defrag_hits[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of value reallocations performed by active the defragmentation process','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','5458542148954618a6d22df1effffe57');
INSERT INTO `items` (`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`,`uuid`) values ('30359','18','','10310','Redis: Executable path{#SINGLETON}','redis.server.executable[{#SINGLETON}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The path to the server\'s executable','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','14d062351a114e8eafa2b2b889317903');
INSERT INTO `items` (`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`,`uuid`) values ('30360','18','','10310','Redis: Replication second offset{#SINGLETON}','redis.replication.second_repl_offset[{#SINGLETON}]','0','7d','365d','0','0','','B','','',NULL,'145','','','0','','','','','2',NULL,'Offset up to which replication IDs are accepted','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','bead155d26054d0487622f29b86dcd2b');
INSERT INTO `items` (`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`,`uuid`) values ('30361','18','','10310','Redis: AOF last CoW size{#SINGLETON}','redis.persistence.aof_last_cow_size[{#SINGLETON}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size in bytes of copy-on-write allocations during the last AOF rewrite operation','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','9da41967290742cb8daa2f69ac1d6966');
INSERT INTO `items` (`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`,`uuid`) values ('30362','18','','10310','Redis: Lazyfree pending objects{#SINGLETON}','redis.memory.lazyfree_pending_objects[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of objects waiting to be freed (as a result of calling UNLINK, or FLUSHDB and FLUSHALL with the ASYNC option)','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','2065e38cd7e5417abfd0b80116b0d77b');
INSERT INTO `items` (`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`,`uuid`) values ('30363','18','','10310','Redis: Memory used startup{#SINGLETON}','redis.memory.used_memory_startup[{#SINGLETON}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Initial amount of memory consumed by Redis at startup in bytes','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','dabd2918056b4b999f4b30bd8e64e8a1');
INSERT INTO `items` (`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`,`uuid`) values ('30364','18','','10310','Redis: Memory used peak %{#SINGLETON}','redis.memory.used_memory_peak_perc[{#SINGLETON}]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of used_memory_peak out of used_memory','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','5da63141e8b145a38954736806602b4a');
INSERT INTO `items` (`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`,`uuid`) values ('30365','18','','10310','Redis: Memory used overhead{#SINGLETON}','redis.memory.used_memory_overhead[{#SINGLETON}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The sum in bytes of all overheads that the server allocated for managing its internal data structures','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','e085382c18f3473f9d2271024cd61e93');
INSERT INTO `items` (`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`,`uuid`) values ('30366','18','','10310','Redis: Memory used dataset{#SINGLETON}','redis.memory.used_memory_dataset[{#SINGLETON}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size in bytes of the dataset','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','1c0e0355d5cd429f9a914fb67f29e366');
INSERT INTO `items` (`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`,`uuid`) values ('30367','18','','10310','Redis: Memory used dataset %{#SINGLETON}','redis.memory.used_memory_dataset_perc[{#SINGLETON}]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of used_memory_dataset out of the net memory usage (used_memory minus used_memory_startup)','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','4e5937420b3843568d9f36b40c0a3c28');
INSERT INTO `items` (`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`,`uuid`) values ('30368','18','','10310','Redis: Total system memory{#SINGLETON}','redis.memory.total_system_memory[{#SINGLETON}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total amount of memory that the Redis host has','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','bf804c6ee44640168e15ca62803b7f10');
INSERT INTO `items` (`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`,`uuid`) values ('30369','18','','10310','Redis: Max memory{#SINGLETON}','redis.memory.maxmemory[{#SINGLETON}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum amount of memory allocated to the Redisdb system','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','2c5c700b53374dac86d805384b6bc9b0');
INSERT INTO `items` (`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`,`uuid`) values ('30370','18','','10310','Redis: Max memory policy{#SINGLETON}','redis.memory.maxmemory_policy[{#SINGLETON}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The value of the maxmemory-policy configuration directive','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','0f094be6d0fa4afda3aa7916fac4d3a3');
INSERT INTO `items` (`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`,`uuid`) values ('30371','18','','10310','Redis: Slave expires tracked keys{#SINGLETON}','redis.stats.slave_expires_tracked_keys[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of keys tracked for expiry purposes (applicable only to writable replicas)','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','93bf8753d6b242f1b8d2288fb926e01b');
INSERT INTO `items` (`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`,`uuid`) values ('30372','18','','10310','Redis: Allocator active{#SINGLETON}','redis.memory.allocator_active[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','adc25c08108e4fcaa3b41d2897d0a0c6');
INSERT INTO `items` (`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`,`uuid`) values ('30373','18','','10310','Redis: Memory clients normal{#SINGLETON}','redis.memory.mem_clients_normal[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','d64718269f20470e9661ff7c479dc300');
INSERT INTO `items` (`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`,`uuid`) values ('30374','18','','10310','Redis: Memory RSS overhead ratio{#SINGLETON}','redis.memory.rss_overhead_ratio[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','d4d51ae4ce214699ba760fcb62289a51');
INSERT INTO `items` (`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`,`uuid`) values ('30375','18','','10310','Redis: Memory RSS overhead bytes{#SINGLETON}','redis.memory.rss_overhead_bytes[{#SINGLETON}]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','e699ad3b29ca486f91688684ffde6b73');
INSERT INTO `items` (`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`,`uuid`) values ('30376','18','','10310','Redis: Memory replication backlog{#SINGLETON}','redis.memory.replication_backlog[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','a221fd161be641c1a8091d0bfd1d2157');
INSERT INTO `items` (`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`,`uuid`) values ('30377','18','','10310','Redis: Memory number of cached scripts{#SINGLETON}','redis.memory.number_of_cached_scripts[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','eaac8b142fc540ad9c7563e145819643');
INSERT INTO `items` (`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`,`uuid`) values ('30378','18','','10310','Redis: Memory not counted for evict{#SINGLETON}','redis.memory.not_counted_for_evict[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','f6c9bfda015d47d0b34f466e95356a5d');
INSERT INTO `items` (`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`,`uuid`) values ('30379','18','','10310','Redis: Memory clients slaves{#SINGLETON}','redis.memory.mem_clients_slaves[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','e685ab11ab534f8abd1a7e2ee35839e8');
INSERT INTO `items` (`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`,`uuid`) values ('30380','18','','10310','Redis: Memory AOF buffer{#SINGLETON}','redis.memory.mem_aof_buffer[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Size of the AOF buffer','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','70c53f60d020440c8f7cba83b32f58c9');
INSERT INTO `items` (`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`,`uuid`) values ('30381','18','','10310','Redis: Allocator allocated{#SINGLETON}','redis.memory.allocator_allocated[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','81ef89fc751746ac8254a55a2b2e4ea7');
INSERT INTO `items` (`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`,`uuid`) values ('30382','18','','10310','Redis: Memory fragmentation bytes{#SINGLETON}','redis.memory.fragmentation_bytes[{#SINGLETON}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','40a639acab5a415a8fb48b7520b7d198');
INSERT INTO `items` (`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`,`uuid`) values ('30383','18','','10310','Redis: Allocator RSS ratio{#SINGLETON}','redis.memory.allocator_rss_ratio[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','643fe70e1a7f488196b053722a2df9c2');
INSERT INTO `items` (`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`,`uuid`) values ('30384','18','','10310','Redis: Allocator RSS bytes{#SINGLETON}','redis.memory.allocator_rss_bytes[{#SINGLETON}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','b5ecad496c554ccaad495d2f112b5e2f');
INSERT INTO `items` (`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`,`uuid`) values ('30385','18','','10310','Redis: Allocator resident{#SINGLETON}','redis.memory.allocator_resident[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','0abd6a9adb034536b3a389e0af2af732');
INSERT INTO `items` (`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`,`uuid`) values ('30386','18','','10310','Redis: Allocator fragmentation ratio{#SINGLETON}','redis.memory.allocator_frag_ratio[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','690a13b13d134f648b4b8381f6a185f0');
INSERT INTO `items` (`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`,`uuid`) values ('30387','18','','10310','Redis: Allocator fragmentation bytes{#SINGLETON}','redis.memory.allocator_frag_bytes[{#SINGLETON}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','23e034630d7246f7ba993d5c6db2d6bb');
INSERT INTO `items` (`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`,`uuid`) values ('30388','18','','10310','Redis: Memory used scripts{#SINGLETON}','redis.memory.used_memory_scripts[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','e3733b2993cb4199bfac8b0711d4bb72');
INSERT INTO `items` (`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`,`uuid`) values ('30389','18','','10310','Redis: AOF base size{#SINGLETON}','redis.persistence.aof_base_size[{#SINGLETON}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'AOF file size on latest startup or rewrite','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','e68a7b6931324bd79268a5151717505e');
INSERT INTO `items` (`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`,`uuid`) values ('30390','18','','10310','Redis: AOF buffer length{#SINGLETON}','redis.persistence.aof_buffer_length[{#SINGLETON}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Size of the AOF buffer','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','875ace20e5c94044ae63f36d98ac6256');
INSERT INTO `items` (`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`,`uuid`) values ('30391','18','','10310','Redis: AOF current size{#SINGLETON}','redis.persistence.aof_current_size[{#SINGLETON}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'AOF current file size','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','679bd919383a4106916a84fae5be47bb');
INSERT INTO `items` (`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`,`uuid`) values ('30392','18','','10310','Redis: AOF delayed fsync{#SINGLETON}','redis.persistence.aof_delayed_fsync[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Delayed fsync counter','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','ff9955c770aa4e0883cc72bf1d762be7');
INSERT INTO `items` (`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`,`uuid`) values ('30393','18','','10310','Redis: AOF pending background I/O fsync{#SINGLETON}','redis.persistence.aof_pending_bio_fsync[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of fsync pending jobs in background I/O queue','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','0606ef5762b04d91abba95269eb77ae2');
INSERT INTO `items` (`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`,`uuid`) values ('30394','18','','10310','Redis: AOF pending rewrite{#SINGLETON}','redis.persistence.aof_pending_rewrite[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,'144','','','0','','','','','2',NULL,'Flag indicating an AOF rewrite operation will','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','194061b8ad6c484ca8c732d69eeb0f1e');
INSERT INTO `items` (`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`,`uuid`) values ('30395','18','','10310','Redis: AOF rewrite buffer length{#SINGLETON}','redis.persistence.aof_rewrite_buffer_length[{#SINGLETON}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Size of the AOF rewrite buffer','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','1a39f5854ae948759deadac0ae57e9f7');
INSERT INTO `items` (`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`,`uuid`) values ('30396','18','','10310','Redis slave {#SLAVE_IP}:{#SLAVE_PORT}: Replication lag in bytes','redis.replication.lag_bytes["{#SLAVE_IP}:{#SLAVE_PORT}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Replication lag in bytes','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','2d26ebb0a5024378b59b3f0ee8e7fff4');
INSERT INTO `items` (`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`,`uuid`) values ('30397','18','','10310','Redis: Master host{#SINGLETON}','redis.replication.master_host[{#SINGLETON}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Host or IP address of the master','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','92e4b2133a6a4ec28e739bbef94ab992');
INSERT INTO `items` (`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`,`uuid`) values ('30398','18','','10310','Redis: Master last I/O seconds ago{#SINGLETON}','redis.replication.master_last_io_seconds_ago[{#SINGLETON}]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of seconds since the last interaction with master','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','0acbeb8633da41be9bfb56627a946fd9');
INSERT INTO `items` (`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`,`uuid`) values ('30399','18','','10310','Redis: Master link status{#SINGLETON}','redis.replication.master_link_status[{#SINGLETON}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Status of the link (up/down)','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','8024463a9f644e6e91def5a0e88abd4b');
INSERT INTO `items` (`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`,`uuid`) values ('30400','18','','10310','Redis: Master port{#SINGLETON}','redis.replication.master_port[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Master listening TCP port','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','da63a0b31bed47edaba3f802738fa4fd');
INSERT INTO `items` (`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`,`uuid`) values ('30401','18','','10310','Redis: Master sync in progress{#SINGLETON}','redis.replication.master_sync_in_progress[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicate the master is syncing to the replica','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','6835a260e66741159ee10046265a1ea4');
INSERT INTO `items` (`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`,`uuid`) values ('30402','18','','10310','Redis: Slave priority{#SINGLETON}','redis.replication.slave_priority[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The priority of the instance as a candidate for failover','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','3f92dfa07237495ca7696bb4b078eb93');
INSERT INTO `items` (`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`,`uuid`) values ('30403','18','','10310','Redis: Slave priority{#SINGLETON}','redis.replication.slave_read_only[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Flag indicating if the replica is read-only','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','f38492a49f214ec8b71fdc51d243281e');
INSERT INTO `items` (`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`,`uuid`) values ('30404','18','','10310','Redis: Slave replication offset{#SINGLETON}','redis.replication.slave_repl_offset[{#SINGLETON}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The replication offset of the replica instance','0','30d','0','','30276','3s','','','','200','1','0','','0','0','0','0','0','0','0','7eb23d1d96ea489c9e0b39b7839147bd');
INSERT INTO `items` (`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`,`uuid`) values ('30436','18','','10316','MySQL: InnoDB buffer pool reads','mysql.innodb_buffer_pool_reads','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','7738a4480f69427a96d46a9ca5b38d77');
INSERT INTO `items` (`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`,`uuid`) values ('30437','18','','10316','MySQL: InnoDB buffer pool reads per second','mysql.innodb_buffer_pool_reads.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','1704fe0bf8de4882a6a16ebd75c4c3bf');
INSERT INTO `items` (`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`,`uuid`) values ('30438','18','','10316','MySQL: InnoDB row lock time','mysql.innodb_row_lock_time','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The total time spent in acquiring row locks for InnoDB tables, in milliseconds.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','3811018fdfaf4d92a5b8ff5d631d0047');
INSERT INTO `items` (`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`,`uuid`) values ('30439','18','','10316','MySQL: InnoDB row lock time max','mysql.innodb_row_lock_time_max','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum time to acquire a row lock for InnoDB tables, in milliseconds.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','579c1ad7680349a3b6a25dd12322fc14');
INSERT INTO `items` (`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`,`uuid`) values ('30440','18','','10316','MySQL: InnoDB row lock waits','mysql.innodb_row_lock_waits','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times operations on InnoDB tables had to wait for a row lock.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','a4618dd9ed1d4ff19f34bc82f41dbbbb');
INSERT INTO `items` (`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`,`uuid`) values ('30441','18','','10316','MySQL: Max used connections','mysql.max_used_connections','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum number of connections that have been in use simultaneously since the server start.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','e207dc3c0fe84928a36e643594d8cee5');
INSERT INTO `items` (`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`,`uuid`) values ('30442','18','','10316','MySQL: Queries per second','mysql.queries.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','c11b8c8ec3e843cea63f6cc1d8309ccd');
INSERT INTO `items` (`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`,`uuid`) values ('30443','18','','10316','MySQL: InnoDB buffer pool read requests','mysql.innodb_buffer_pool_read_requests','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical read requests.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','598dcdb7eeec42c78484be70c814cd8a');
INSERT INTO `items` (`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`,`uuid`) values ('30444','18','','10316','MySQL: Questions per second','mysql.questions.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','cd7c5c4e262f4a73975d46d06ed903f9');
INSERT INTO `items` (`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`,`uuid`) values ('30445','18','','10316','MySQL: Slow queries per second','mysql.slow_queries.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of queries that have taken more than long_query_time seconds.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','a1cfc616f23648e9946f408c7146df0a');
INSERT INTO `items` (`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`,`uuid`) values ('30446','18','','10316','MySQL: Threads cached','mysql.threads_cached','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads in the thread cache.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','a9ce1d75a97d4740876fad7b5d569211');
INSERT INTO `items` (`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`,`uuid`) values ('30447','18','','10316','MySQL: Threads connected','mysql.threads_connected','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of currently open connections.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','a0079f5ffbdc40cc89b35a8b6170c32b');
INSERT INTO `items` (`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`,`uuid`) values ('30449','18','','10316','MySQL: Threads running','mysql.threads_running','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads which are not sleeping.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','255c00a984ba462e84ba46a7430f21c9');
INSERT INTO `items` (`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`,`uuid`) values ('30450','18','','10316','MySQL: Uptime','mysql.uptime','0','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of seconds that the server has been up.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','6ffa704603014f0f9f765590955fb01c');
INSERT INTO `items` (`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`,`uuid`) values ('30451','18','','10316','MySQL: InnoDB buffer pool read requests per second','mysql.innodb_buffer_pool_read_requests.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical read requests per second.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','3ed432f4e0c949debaed9d60c5d13810');
INSERT INTO `items` (`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`,`uuid`) values ('30452','18','','10316','MySQL: InnoDB buffer pool pages total','mysql.innodb_buffer_pool_pages_total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total size of the InnoDB buffer pool, in pages.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','efb2450fe30c4ec78b954a35595b7ac7');
INSERT INTO `items` (`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`,`uuid`) values ('30453','18','','10316','MySQL: Bytes received','mysql.bytes_received.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes received from all clients.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','56512a1e89d34826ad261ab27119e80d');
INSERT INTO `items` (`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`,`uuid`) values ('30454','18','','10316','MySQL: Connection errors max connections per second','mysql.connection_errors_max_connections.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of refused connections due to the max_connections limit being reached.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','3cbc55fc7b764a61baceb11e98fd454c');
INSERT INTO `items` (`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`,`uuid`) values ('30455','18','','10316','MySQL: Bytes sent','mysql.bytes_sent.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes sent to all clients.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','c4cea16e3dbe4d328d9a50e113f3b904');
INSERT INTO `items` (`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`,`uuid`) values ('30456','18','','10316','MySQL: Command Delete per second','mysql.com_delete.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Com_delete counter variable indicates the number of times the delete statement has been executed.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','24ab8f0bd32a45f591c676ef839876df');
INSERT INTO `items` (`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`,`uuid`) values ('30457','18','','10316','MySQL: Command Insert per second','mysql.com_insert.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Com_insert counter variable indicates the number of times the insert statement has been executed.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','e48c67c893e5494fb00ea31222bd2caf');
INSERT INTO `items` (`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`,`uuid`) values ('30458','18','','10316','MySQL: Command Select per second','mysql.com_select.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Com_select counter variable indicates the number of times the select statement has been executed.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','718c3af61f2645e8ab7d3496d6639c79');
INSERT INTO `items` (`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`,`uuid`) values ('30459','18','','10316','MySQL: Command Update per second','mysql.com_update.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Com_update counter variable indicates the number of times the update statement has been executed.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','e2c3ea26dd34472c9e5f0e48a67da6dd');
INSERT INTO `items` (`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`,`uuid`) values ('30460','18','','10316','MySQL: Connection errors accept per second','mysql.connection_errors_accept.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors that occurred during calls to accept() on the listening port.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','dc963a1250ab453cb090af0154d745c3');
INSERT INTO `items` (`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`,`uuid`) values ('30461','18','','10316','MySQL: Connection errors internal per second','mysql.connection_errors_internal.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of refused connections due to internal server errors, for example, out of memory errors, or failed thread starts.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','4cff4caf382f4f00b534651212132bd2');
INSERT INTO `items` (`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`,`uuid`) values ('30462','18','','10316','MySQL: Connection errors peer address per second','mysql.connection_errors_peer_address.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors while searching for the connecting client IP address.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','e577b4b6c553401bbb831b7278dbbcb7');
INSERT INTO `items` (`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`,`uuid`) values ('30463','18','','10316','MySQL: InnoDB buffer pool pages free','mysql.innodb_buffer_pool_pages_free','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total size of the InnoDB buffer pool, in pages.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','a9b965a07b504fa1b4e90acae0156221');
INSERT INTO `items` (`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`,`uuid`) values ('30464','18','','10316','MySQL: Connection errors select per second','mysql.connection_errors_select.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','228aaf5333ce4958aa3a07e0898add63');
INSERT INTO `items` (`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`,`uuid`) values ('30465','18','','10316','MySQL: Connection errors tcpwrap per second','mysql.connection_errors_tcpwrap.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections the libwrap library has refused.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','a7632124b2b648bfa80a2e8a0381f4d2');
INSERT INTO `items` (`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`,`uuid`) values ('30466','18','','10316','MySQL: Connections per second','mysql.connections.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connection attempts (successful or not) to the MySQL server.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','bcf8a21aacc54a79a958604b278f9617');
INSERT INTO `items` (`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`,`uuid`) values ('30470','18','','10316','MySQL: Aborted connections per second','mysql.aborted_connects.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of failed attempts to connect to the MySQL server.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','d33a03e48f6d45dca04a505bab07a860');
INSERT INTO `items` (`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`,`uuid`) values ('30471','18','','10316','MySQL: Aborted clients per second','mysql.aborted_clients.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections that were aborted because the client died without closing the connection properly.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','b463e01655bf4dec81d5208f7a75766b');
INSERT INTO `items` (`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`,`uuid`) values ('30476','18','','10316','MySQL: Replication Seconds Behind Master {#MASTERHOST}','mysql.seconds_behind_master["{#MASTERHOST}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of seconds that the slave SQL thread is behind processing the master binary log.\r\nA high number (or an increasing one) can indicate that the slave is unable to handle events\r\nfrom the master in a timely fashion.','0','30d','0','','30475','3s','','','','200','1','0','','0','0','0','0','0','0','0','48555d71074f4cd4a61dca6187c8b29a');
INSERT INTO `items` (`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`,`uuid`) values ('30477','18','','10316','MySQL: Replication Slave IO Running {#MASTERHOST}','mysql.slave_io_running["{#MASTERHOST}"]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Whether the I/O thread for reading the master\'s binary log is running.\r\nNormally, you want this to be Yes unless you have not yet started replication or have\r\nexplicitly stopped it with STOP SLAVE.','0','30d','0','','30475','3s','','','','200','1','0','','0','0','0','0','0','0','0','1c075f4785604d92a33a868e213070d8');
INSERT INTO `items` (`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`,`uuid`) values ('30478','18','','10316','MySQL: Replication Slave SQL Running {#MASTERHOST}','mysql.slave_sql_running["{#MASTERHOST}"]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Whether the SQL thread for executing events in the relay log is running.\r\nAs with the I/O thread, this should normally be Yes.','0','30d','0','','30475','3s','','','','200','1','0','','0','0','0','0','0','0','0','967c6fd13cc04562a9fea174bd90b8c4');
INSERT INTO `items` (`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`,`uuid`) values ('30484','18','','10317','MySQL: InnoDB row lock waits','mysql.innodb_row_lock_waits','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times operations on InnoDB tables had to wait for a row lock.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','17c4270927a74d8388da8c25d9065556');
INSERT INTO `items` (`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`,`uuid`) values ('30485','18','','10317','MySQL: InnoDB buffer pool read requests','mysql.innodb_buffer_pool_read_requests','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical read requests.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','0a1775a7de33464e9ce8134950527021');
INSERT INTO `items` (`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`,`uuid`) values ('30486','18','','10317','MySQL: InnoDB buffer pool read requests per second','mysql.innodb_buffer_pool_read_requests.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical read requests per second.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','98684abf32e642bd8784e68e64357dc9');
INSERT INTO `items` (`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`,`uuid`) values ('30487','18','','10317','MySQL: InnoDB buffer pool reads','mysql.innodb_buffer_pool_reads','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','441b718148974e289db93299f869feba');
INSERT INTO `items` (`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`,`uuid`) values ('30488','18','','10317','MySQL: InnoDB buffer pool reads per second','mysql.innodb_buffer_pool_reads.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','22ae5946fc2548cf8eee39a57ce8512b');
INSERT INTO `items` (`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`,`uuid`) values ('30489','18','','10317','MySQL: InnoDB row lock time','mysql.innodb_row_lock_time','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The total time spent in acquiring row locks for InnoDB tables, in milliseconds.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','a62951afcfbd44e595a4d294b24056e5');
INSERT INTO `items` (`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`,`uuid`) values ('30490','18','','10317','MySQL: InnoDB row lock time max','mysql.innodb_row_lock_time_max','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum time to acquire a row lock for InnoDB tables, in milliseconds.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','22277695b7154c019a76ca730e68e833');
INSERT INTO `items` (`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`,`uuid`) values ('30491','18','','10317','MySQL: Queries per second','mysql.queries.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','2f0ced88c4524455bf790b3bc6512d04');
INSERT INTO `items` (`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`,`uuid`) values ('30492','18','','10317','MySQL: Max used connections','mysql.max_used_connections','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum number of connections that have been in use simultaneously since the server start.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','6106ebf4cae842c1a5acc2f13518de4f');
INSERT INTO `items` (`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`,`uuid`) values ('30493','18','','10317','MySQL: InnoDB buffer pool pages free','mysql.innodb_buffer_pool_pages_free','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total size of the InnoDB buffer pool, in pages.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','e31f66bbc32b404c92debc4d9367162d');
INSERT INTO `items` (`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`,`uuid`) values ('30494','18','','10317','MySQL: Questions per second','mysql.questions.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','8d0fc2eb0be94d68966e09fca88e8deb');
INSERT INTO `items` (`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`,`uuid`) values ('30495','18','','10317','MySQL: Slow queries per second','mysql.slow_queries.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of queries that have taken more than long_query_time seconds.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','b0227399437f4219b65ab1511d5e67c6');
INSERT INTO `items` (`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`,`uuid`) values ('30496','18','','10317','MySQL: Threads cached','mysql.threads_cached','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads in the thread cache.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','b675fd71138a4845965309dc5d6428d9');
INSERT INTO `items` (`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`,`uuid`) values ('30497','18','','10317','MySQL: Threads connected','mysql.threads_connected','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of currently open connections.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','af56c636c8b94e4f9976d0d6cf60fcbb');
INSERT INTO `items` (`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`,`uuid`) values ('30499','18','','10317','MySQL: Threads running','mysql.threads_running','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads which are not sleeping.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','c41afa83f6a94efda34d7b41c95c89ac');
INSERT INTO `items` (`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`,`uuid`) values ('30500','18','','10317','MySQL: InnoDB buffer pool pages total','mysql.innodb_buffer_pool_pages_total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total size of the InnoDB buffer pool, in pages.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','41019c084618404db183326c215d71f6');
INSERT INTO `items` (`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`,`uuid`) values ('30503','18','','10317','MySQL: Command Select per second','mysql.com_select.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Com_select counter variable indicates the number of times the select statement has been executed.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','31e6372d1249442ab3ebdd993f397e26');
INSERT INTO `items` (`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`,`uuid`) values ('30504','18','','10317','MySQL: Aborted clients per second','mysql.aborted_clients.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections that were aborted because the client died without closing the connection properly.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','73235748ba4742c0aa3c4f29509a162d');
INSERT INTO `items` (`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`,`uuid`) values ('30505','18','','10317','MySQL: Aborted connections per second','mysql.aborted_connects.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of failed attempts to connect to the MySQL server.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','b6185e79abd744f78ce579a83381ba87');
INSERT INTO `items` (`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`,`uuid`) values ('30506','18','','10317','MySQL: Bytes received','mysql.bytes_received.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes received from all clients.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','f05d592e6ae74e64bc54c649418761a6');
INSERT INTO `items` (`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`,`uuid`) values ('30507','18','','10317','MySQL: Bytes sent','mysql.bytes_sent.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes sent to all clients.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','ce737bc186f24014a70c75da2386986d');
INSERT INTO `items` (`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`,`uuid`) values ('30508','18','','10317','MySQL: Command Delete per second','mysql.com_delete.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Com_delete counter variable indicates the number of times the delete statement has been executed.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','a43ec23dad9345a5a1b0ff8bda12ed77');
INSERT INTO `items` (`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`,`uuid`) values ('30509','18','','10317','MySQL: Command Insert per second','mysql.com_insert.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Com_insert counter variable indicates the number of times the insert statement has been executed.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','cd924e3b51074b3baf642a7aa1eeb474');
INSERT INTO `items` (`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`,`uuid`) values ('30510','18','','10317','MySQL: Command Update per second','mysql.com_update.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Com_update counter variable indicates the number of times the update statement has been executed.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','0f5f638777284093bcdc5f2dacc8e951');
INSERT INTO `items` (`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`,`uuid`) values ('30512','18','','10317','MySQL: Connection errors accept per second','mysql.connection_errors_accept.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors that occurred during calls to accept() on the listening port.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','4b67e0e6291b4e0c841334ac052d7253');
INSERT INTO `items` (`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`,`uuid`) values ('30513','18','','10317','MySQL: Connection errors internal per second','mysql.connection_errors_internal.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of refused connections due to internal server errors, for example, out of memory errors, or failed thread starts.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','76ad3a39e89e44daad08cc00174d4918');
INSERT INTO `items` (`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`,`uuid`) values ('30514','18','','10317','MySQL: Connection errors max connections per second','mysql.connection_errors_max_connections.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of refused connections due to the max_connections limit being reached.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','83dfb916c7674e1fbd300be444241e25');
INSERT INTO `items` (`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`,`uuid`) values ('30515','18','','10317','MySQL: Connection errors peer address per second','mysql.connection_errors_peer_address.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors while searching for the connecting client IP address.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','9be4cb9e209344d0869a56082d16ec53');
INSERT INTO `items` (`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`,`uuid`) values ('30516','18','','10317','MySQL: Connection errors select per second','mysql.connection_errors_select.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','e50b9fea89cc440abc0155dc25346f05');
INSERT INTO `items` (`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`,`uuid`) values ('30517','18','','10317','MySQL: Connection errors tcpwrap per second','mysql.connection_errors_tcpwrap.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections the libwrap library has refused.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','a82a7ada012141c6bdff63bc8d615786');
INSERT INTO `items` (`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`,`uuid`) values ('30518','18','','10317','MySQL: Connections per second','mysql.connections.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connection attempts (successful or not) to the MySQL server.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','fad5f4e1885341d1958f653afb85ff07');
INSERT INTO `items` (`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`,`uuid`) values ('30519','18','','10317','MySQL: Uptime','mysql.uptime','0','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of seconds that the server has been up.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','8fbad224ebdf46e7b25a0be015f21972');
INSERT INTO `items` (`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`,`uuid`) values ('30524','18','','10317','MySQL: Replication Seconds Behind Master {#MASTER_HOST}','mysql.seconds_behind_master["{#MASTER_HOST}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of seconds the slave SQL thread has been behind processing the master binary log.\r\nA high number (or an increasing one) can indicate that the slave is unable to handle events\r\nfrom the master in a timely fashion.','0','30d','0','','30523','3s','','','','200','1','0','','0','0','0','0','0','0','0','15f7b22867f54551afbed139d746e210');
INSERT INTO `items` (`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`,`uuid`) values ('30525','18','','10317','MySQL: Replication Slave IO Running {#MASTER_HOST}','mysql.slave_io_running["{#MASTER_HOST}"]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Whether the I/O thread for reading the master\'s binary log is running.\r\nNormally, you want this to be Yes unless you have not yet started a replication or have\r\nexplicitly stopped it with STOP SLAVE.','0','30d','0','','30523','3s','','','','200','1','0','','0','0','0','0','0','0','0','e063b116753d4124a88443fe4de20d41');
INSERT INTO `items` (`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`,`uuid`) values ('30526','18','','10317','MySQL: Replication Slave SQL Running {#MASTER_HOST}','mysql.slave_sql_running["{#MASTER_HOST}"]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Whether the SQL thread for executing events in the relay log is running.\r\nAs with the I/O thread, this should normally be Yes.','0','30d','0','','30523','3s','','','','200','1','0','','0','0','0','0','0','0','0','113be79554c14c2aad08036febb15d71');
INSERT INTO `items` (`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`,`uuid`) values ('30532','18','','10318','Docker: Architecture','docker.architecture','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','1d77b27beba04822a67bdedac22ec522');
INSERT INTO `items` (`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`,`uuid`) values ('30533','18','','10318','Docker: Live restore enabled','docker.live_restore.enabled','0','7d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','671cd65ddae046f5ba9b0f83241976ac');
INSERT INTO `items` (`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`,`uuid`) values ('30534','18','','10318','Docker: Logging driver','docker.logging_driver','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','be0cb2d07d12497b8b411e094fed6087');
INSERT INTO `items` (`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`,`uuid`) values ('30535','18','','10318','Docker: Memory limit enabled','docker.mem_limit.enabled','0','7d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','b08c91f28e094c4faa3e004d3fb3057d');
INSERT INTO `items` (`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`,`uuid`) values ('30536','18','','10318','Docker: Memory total','docker.mem.total','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','e0da86d370a049e3a2d6a82e49ea1f37');
INSERT INTO `items` (`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`,`uuid`) values ('30537','18','','10318','Docker: Name','docker.name','0','1h','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','812a6b9902a44dd7a803c7218555afe7');
INSERT INTO `items` (`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`,`uuid`) values ('30538','18','','10318','Docker: NCPU','docker.ncpu','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','5e4999067e6948f893dc465f8e5a2b5f');
INSERT INTO `items` (`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`,`uuid`) values ('30539','18','','10318','Docker: Nfd','docker.nfd','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of used File Descriptors','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','ce025599e68d447f9a1f5c076502e2f2');
INSERT INTO `items` (`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`,`uuid`) values ('30540','18','','10318','Docker: NEvents listener','docker.nevents_listener','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','f64919a3a5dc4f429f2992eb7ae5223c');
INSERT INTO `items` (`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`,`uuid`) values ('30541','18','','10318','Docker: Kernel version','docker.kernel_version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','d645713e25c74686a47cf859725e655f');
INSERT INTO `items` (`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`,`uuid`) values ('30542','18','','10318','Docker: OomKill disabled','docker.oomkill.disabled','0','7d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','e164279251ce471abaae599bf1885bbb');
INSERT INTO `items` (`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`,`uuid`) values ('30543','18','','10318','Docker: Operating system','docker.operating_system','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','78a5af9aa6a741d4ac976d0949414b68');
INSERT INTO `items` (`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`,`uuid`) values ('30544','18','','10318','Docker: OS type','docker.os_type','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','3acc93aa0fe64696a5560adcb3dd5acc');
INSERT INTO `items` (`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`,`uuid`) values ('30545','18','','10318','Docker: Pids limit enabled','docker.pids_limit.enabled','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','58ecaf4ae7f04316b6bf019cabadfd3e');
INSERT INTO `items` (`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`,`uuid`) values ('30546','18','','10318','Docker: Docker root dir','docker.root_dir','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','864eae0a62374f729143d6efc4f1655a');
INSERT INTO `items` (`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`,`uuid`) values ('30547','18','','10318','Docker: Server version','docker.server_version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','a7e5441fe4d64848a7c5e374ea99ad54');
INSERT INTO `items` (`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`,`uuid`) values ('30548','18','','10318','Docker: Swap limit enabled','docker.swap_limit.enabled','0','7d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','fcbe64ee979a4787a4b0f06836b258bd');
INSERT INTO `items` (`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`,`uuid`) values ('30549','18','','10318','Docker: Layers size','docker.layers_size','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30527','3s','','','','200','1','0','','0','0','0','0','0','0','0','2f512e64ba414e86806f19c0be803a3e');
INSERT INTO `items` (`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`,`uuid`) values ('30550','18','','10318','Docker: IPv4 Forwarding enabled','docker.ipv4_forwarding.enabled','0','7d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','3545c86b7db9494c94dcda09386ac827');
INSERT INTO `items` (`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`,`uuid`) values ('30551','18','','10318','Docker: Kernel memory enabled','docker.kernel_mem.enabled','0','7d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','cb1e486a170b4d668a77d0918f22e51c');
INSERT INTO `items` (`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`,`uuid`) values ('30552','18','','10318','Docker: CPU Set enabled','docker.cpu_set.enabled','0','7d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','ceddc2b06f4a4cb4acec3dc74c02ce3f');
INSERT INTO `items` (`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`,`uuid`) values ('30553','18','','10318','Docker: Containers size','docker.containers_size','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30527','3s','','','','200','1','0','','0','0','0','0','0','0','0','4d116791a88d4d4e8dd4a9013f9bc39f');
INSERT INTO `items` (`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`,`uuid`) values ('30554','18','','10318','Docker: Containers paused','docker.containers.paused','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of containers paused on this host','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','75f55b1f18c54af6ad0b3045cb230bd3');
INSERT INTO `items` (`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`,`uuid`) values ('30555','18','','10318','Docker: Containers running','docker.containers.running','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of containers running on this host','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','976bf10901404fd290b6628af437e8e4');
INSERT INTO `items` (`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`,`uuid`) values ('30556','18','','10318','Docker: Containers stopped','docker.containers.stopped','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of containers stopped on this host','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','40179a84ffd14742b9df87f48a2eaa90');
INSERT INTO `items` (`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`,`uuid`) values ('30557','18','','10318','Docker: Containers total','docker.containers.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of containers on this host','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','cacbbf17fd0144c79ecdcbf9e3ef9290');
INSERT INTO `items` (`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`,`uuid`) values ('30558','18','','10318','Docker: CPU CFS Period enabled','docker.cpu_cfs_period.enabled','0','7d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','fcf42585b871488f91a92d04b0cc748d');
INSERT INTO `items` (`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`,`uuid`) values ('30559','18','','10318','Docker: CPU CFS Quota enabled','docker.cpu_cfs_quota.enabled','0','7d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','54d3fa0099f24f75a6a414b7caf1b85a');
INSERT INTO `items` (`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`,`uuid`) values ('30560','18','','10318','Docker: CPU Shares enabled','docker.cpu_shares.enabled','0','7d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','2ad923020baf48c5a43f6c875ad45561');
INSERT INTO `items` (`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`,`uuid`) values ('30561','18','','10318','Docker: Kernel memory TCP enabled','docker.kernel_mem_tcp.enabled','0','7d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','77a61a63d6ed4583a0c39ce377b11d4f');
INSERT INTO `items` (`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`,`uuid`) values ('30562','18','','10318','Docker: Debug enabled','docker.debug.enabled','0','7d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','0a258c42f6aa4eeeb355fec491710764');
INSERT INTO `items` (`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`,`uuid`) values ('30563','18','','10318','Docker: Default runtime','docker.default_runtime','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','edb61f5ce3504f57bf32ddf2e50e4e3d');
INSERT INTO `items` (`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`,`uuid`) values ('30564','18','','10318','Docker: Storage driver','docker.driver','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Docker storage driver \r\n https://docs.docker.com/storage/storagedriver/','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','1ce2471ca651487288ad1aef9286da5f');
INSERT INTO `items` (`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`,`uuid`) values ('30565','18','','10318','Docker: Goroutines','docker.goroutines','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of goroutines','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','14a7686d3bd74533aa8406297d419dfd');
INSERT INTO `items` (`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`,`uuid`) values ('30566','18','','10318','Docker: Images size','docker.images_size','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30527','3s','','','','200','1','0','','0','0','0','0','0','0','0','bf4f531b727c47f0aa30de14d4b41b49');
INSERT INTO `items` (`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`,`uuid`) values ('30567','18','','10318','Docker: Images available','docker.images.top_level','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of top-level images','0','30d','0','','30531','3s','','','','200','1','0','','0','0','0','0','0','0','0','ab4a4d92e4c04ff685b687cf14414b06');
INSERT INTO `items` (`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`,`uuid`) values ('30568','18','','10318','Docker: Images total','docker.images.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of images with intermediate image layers','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','d83337b0ea2c4f16be4b5b9c3a48755b');
INSERT INTO `items` (`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`,`uuid`) values ('30569','18','','10318','Docker: Cgroup driver','docker.cgroup_driver','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','3s','','','','200','1','0','','0','0','0','0','0','0','0','32c441b73b90400fa0e6972798ae1f4c');
INSERT INTO `items` (`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`,`uuid`) values ('30570','18','','10318','Docker: Volumes size','docker.volumes_size','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30527','3s','','','','200','1','0','','0','0','0','0','0','0','0','6c81479dba77465ebcd335a5f3d08e19');
INSERT INTO `items` (`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`,`uuid`) values ('30575','18','','10318','Container {#NAME}: Online CPUs','docker.container_stats.online_cpus["{#NAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','3s','','','','200','1','0','','0','0','0','0','0','0','0','a5999dfeccca44ca8679ef71876da773');
INSERT INTO `items` (`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`,`uuid`) values ('30576','18','','10318','Container {#NAME}: Memory commit bytes','docker.container_stats.memory.commit_bytes["{#NAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','3s','','','','200','1','0','','0','0','0','0','0','0','0','bd57aed03daa47e68acc4dc38a1697b7');
INSERT INTO `items` (`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`,`uuid`) values ('30577','18','','10318','Container {#NAME}: Memory commit peak bytes','docker.container_stats.memory.commit_peak_bytes["{#NAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','3s','','','','200','1','0','','0','0','0','0','0','0','0','1e110d4d78e74ca8b12a1923f73543f1');
INSERT INTO `items` (`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`,`uuid`) values ('30578','18','','10318','Container {#NAME}: Memory maximum usage','docker.container_stats.memory.max_usage["{#NAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','3s','','','','200','1','0','','0','0','0','0','0','0','0','b463f79d6c0644a394c3c0ba8f1d29d1');
INSERT INTO `items` (`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`,`uuid`) values ('30579','18','','10318','Container {#NAME}: Memory private working set','docker.container_stats.memory.private_working_set["{#NAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','3s','','','','200','1','0','','0','0','0','0','0','0','0','763c8878d2c74d069567cbcd1d53544c');
INSERT INTO `items` (`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`,`uuid`) values ('30580','18','','10318','Container {#NAME}: Memory usage','docker.container_stats.memory.usage["{#NAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','3s','','','','200','1','0','','0','0','0','0','0','0','0','6f39422b278b4a4398bfbd993f247fd0');
INSERT INTO `items` (`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`,`uuid`) values ('30581','18','','10318','Container {#NAME}: Created','docker.container_info.created["{#NAME}"]','0','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30574','3s','','','','200','1','0','','0','0','0','0','0','0','0','2c5d0902f43343ef85a9067cf3d59cfd');
INSERT INTO `items` (`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`,`uuid`) values ('30582','18','','10318','Container {#NAME}: CPU total usage per second','docker.container_stats.cpu_usage.total.rate["{#NAME}"]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','3s','','','','200','1','0','','0','0','0','0','0','0','0','2c21d9b3968c43e68231ddc5b2d05808');
INSERT INTO `items` (`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`,`uuid`) values ('30583','18','','10318','Container {#NAME}: Networks bytes received per second','docker.networks.rx_bytes["{#NAME}"]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','3s','','','','200','1','0','','0','0','0','0','0','0','0','4ab3f13ab7714367b971eada3f01c611');
INSERT INTO `items` (`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`,`uuid`) values ('30584','18','','10318','Container {#NAME}: Networks incoming packets dropped per second','docker.networks.rx_dropped["{#NAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','3s','','','','200','1','0','','0','0','0','0','0','0','0','cf4517565e3f4fc49e7d6d411302a732');
INSERT INTO `items` (`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`,`uuid`) values ('30585','18','','10318','Container {#NAME}: Networks errors received per second','docker.networks.rx_errors["{#NAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','3s','','','','200','1','0','','0','0','0','0','0','0','0','9d139e59dc1b46d39832ca668d5a6ce1');
INSERT INTO `items` (`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`,`uuid`) values ('30586','18','','10318','Container {#NAME}: Networks packets received per second','docker.networks.rx_packets["{#NAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','3s','','','','200','1','0','','0','0','0','0','0','0','0','13fb8c2c3843481492af82c3308e1257');
INSERT INTO `items` (`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`,`uuid`) values ('30587','18','','10318','Container {#NAME}: Networks bytes sent per second','docker.networks.tx_bytes["{#NAME}"]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','3s','','','','200','1','0','','0','0','0','0','0','0','0','da4bf99b26e540fdafc0ee99d50e1c6c');
INSERT INTO `items` (`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`,`uuid`) values ('30588','18','','10318','Container {#NAME}: Networks outgoing packets dropped per second','docker.networks.tx_dropped["{#NAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','3s','','','','200','1','0','','0','0','0','0','0','0','0','1f4d7848ecfd44ae958cc1bd64d61078');
INSERT INTO `items` (`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`,`uuid`) values ('30589','18','','10318','Container {#NAME}: Networks errors sent per second','docker.networks.tx_errors["{#NAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','3s','','','','200','1','0','','0','0','0','0','0','0','0','bc7273bd3a7d4c9d9d6d6b3a019af947');
INSERT INTO `items` (`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`,`uuid`) values ('30590','18','','10318','Container {#NAME}: CPU usermode usage per second','docker.container_stats.cpu_usage.user.rate["{#NAME}"]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','3s','','','','200','1','0','','0','0','0','0','0','0','0','801467fe7cbe48b8b05c5005680b934a');
INSERT INTO `items` (`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`,`uuid`) values ('30591','18','','10318','Container {#NAME}: Throttling periods','docker.container_stats.cpu_usage.throttling_periods["{#NAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of periods with throttling active','0','30d','0','','30573','3s','','','','200','1','0','','0','0','0','0','0','0','0','151f2f36bfb2429b8c8e500067489694');
INSERT INTO `items` (`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`,`uuid`) values ('30592','18','','10318','Container {#NAME}: Finished at','docker.container_info.finished["{#NAME}"]','0','7d','365d','0','0','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30574','3s','','','','200','1','0','','0','0','0','0','0','0','0','1c481ac2b05e4b53b85b7fd37a39bc4a');
INSERT INTO `items` (`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`,`uuid`) values ('30593','18','','10318','Container {#NAME}: OOMKilled','docker.container_info.state.oomkilled["{#NAME}"]','0','7d','365d','0','3','','','','',NULL,'147','','','0','','','','','2',NULL,'','0','30d','0','','30574','3s','','','','200','1','0','','0','0','0','0','0','0','0','69381dd6116f4b0d9d957dd1e768748b');
INSERT INTO `items` (`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`,`uuid`) values ('30594','18','','10318','Container {#NAME}: Image','docker.container_info.image["{#NAME}"]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30528','3s','','','','200','1','0','','0','0','0','0','0','0','0','ee9da156a6134760af1762236d08e566');
INSERT INTO `items` (`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`,`uuid`) values ('30595','18','','10318','Container {#NAME}: Restart count','docker.container_info.restart_count["{#NAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30574','3s','','','','200','1','0','','0','0','0','0','0','0','0','72de0e4e056a4d3799d61cb3ac19a306');
INSERT INTO `items` (`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`,`uuid`) values ('30596','18','','10318','Container {#NAME}: Started at','docker.container_info.started["{#NAME}"]','0','7d','365d','0','0','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30574','3s','','','','200','1','0','','0','0','0','0','0','0','0','0b6ce9bd73244e79bc9c4e00f56c2465');
INSERT INTO `items` (`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`,`uuid`) values ('30597','18','','10318','Container {#NAME}: Dead','docker.container_info.state.dead["{#NAME}"]','0','7d','365d','0','3','','','','',NULL,'147','','','0','','','','','2',NULL,'','0','30d','0','','30574','3s','','','','200','1','0','','0','0','0','0','0','0','0','fd9d315125fb40738c00bab16c145255');
INSERT INTO `items` (`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`,`uuid`) values ('30598','18','','10318','Container {#NAME}: Error','docker.container_info.state.error["{#NAME}"]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30574','3s','','','','200','1','0','','0','0','0','0','0','0','0','be3eed62681045aaa667a417a7383a58');
INSERT INTO `items` (`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`,`uuid`) values ('30599','18','','10318','Container {#NAME}: Exit code','docker.container_info.state.exitcode["{#NAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30574','3s','','','','200','1','0','','0','0','0','0','0','0','0','65d5ac15043446658cd8e0d326b1bf04');
INSERT INTO `items` (`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`,`uuid`) values ('30600','18','','10318','Container {#NAME}: Paused','docker.container_info.state.paused["{#NAME}"]','0','7d','365d','0','3','','','','',NULL,'147','','','0','','','','','2',NULL,'','0','30d','0','','30574','3s','','','','200','1','0','','0','0','0','0','0','0','0','000375ca6899443cac7e02e1239d879e');
INSERT INTO `items` (`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`,`uuid`) values ('30601','18','','10318','Container {#NAME}: Throttled time','docker.container_stats.cpu_usage.throttled_time["{#NAME}"]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Aggregate time the container was throttled for in nanoseconds','0','30d','0','','30573','3s','','','','200','1','0','','0','0','0','0','0','0','0','ff834b708f764ce6b08fcfbc1dfacb60');
INSERT INTO `items` (`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`,`uuid`) values ('30602','18','','10318','Container {#NAME}: Pid','docker.container_info.state.pid["{#NAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30574','3s','','','','200','1','0','','0','0','0','0','0','0','0','15dffc2d2aeb4a15954b624c7c273155');
INSERT INTO `items` (`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`,`uuid`) values ('30603','18','','10318','Container {#NAME}: Restarting','docker.container_info.state.restarting["{#NAME}"]','0','7d','365d','0','3','','','','',NULL,'147','','','0','','','','','2',NULL,'','0','30d','0','','30574','3s','','','','200','1','0','','0','0','0','0','0','0','0','38829fadf7f246c99c9776945022fac1');
INSERT INTO `items` (`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`,`uuid`) values ('30604','18','','10318','Container {#NAME}: Running','docker.container_info.state.running["{#NAME}"]','0','7d','365d','0','3','','','','',NULL,'147','','','0','','','','','2',NULL,'','0','30d','0','','30574','3s','','','','200','1','0','','0','0','0','0','0','0','0','6d8d5a7523f64968b72f4861e9ae867a');
INSERT INTO `items` (`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`,`uuid`) values ('30605','18','','10318','Container {#NAME}: Status','docker.container_info.state.status["{#NAME}"]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30574','3s','','','','200','1','0','','0','0','0','0','0','0','0','c7f1d81836d54a528184c7d4be60b792');
INSERT INTO `items` (`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`,`uuid`) values ('30606','18','','10318','Container {#NAME}: CPU kernelmode usage per second','docker.container_stats.cpu_usage.kernel.rate["{#NAME}"]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','3s','','','','200','1','0','','0','0','0','0','0','0','0','92510799a44b4b93921d7b4d308ef10d');
INSERT INTO `items` (`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`,`uuid`) values ('30607','18','','10318','Container {#NAME}: Throttled periods','docker.container_stats.cpu_usage.throttled_periods["{#NAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of periods when the container hits its throttling limit','0','30d','0','','30573','3s','','','','200','1','0','','0','0','0','0','0','0','0','4c71c95c86d2433da78b0cd3ba5d56fa');
INSERT INTO `items` (`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`,`uuid`) values ('30608','18','','10318','Container {#NAME}: Networks packets sent per second','docker.networks.tx_packets["{#NAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','3s','','','','200','1','0','','0','0','0','0','0','0','0','9191bd95da9a4ee9a7315d20de23c977');
INSERT INTO `items` (`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`,`uuid`) values ('30609','18','','10318','Image {#NAME}: Created','docker.image.created["{#ID}"]','0','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30531','3s','','','','200','1','0','','0','0','0','0','0','0','0','63b19204b1d0459b9969234a719dab93');
INSERT INTO `items` (`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`,`uuid`) values ('30610','18','','10318','Image {#NAME}: Size','docker.image.size["{#ID}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30531','3s','','','','200','1','0','','0','0','0','0','0','0','0','4eb812ba952e417185f6ac499d6cb85a');
INSERT INTO `items` (`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`,`uuid`) values ('30613','18','','10319','Memcached: Commands: FLUSH per second','memcached.commands.flush.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The flush_all command invalidates all items in the database. This operation incurs a performance penalty and shouldn\'t take place in production, so check your debug scripts.','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','2c9d2fd0c59249c999cb315243ae994e');
INSERT INTO `items` (`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`,`uuid`) values ('30614','18','','10319','Memcached: Bytes used','memcached.stats.bytes','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Current number of bytes used to store items.','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','ce294455f98a4c8c98a4ec70abb2b996');
INSERT INTO `items` (`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`,`uuid`) values ('30615','18','','10319','Memcached: Uptime','memcached.uptime','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of seconds since Memcached server start','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','4e90d731c49447cf9bb6a72cb9675586');
INSERT INTO `items` (`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`,`uuid`) values ('30616','18','','10319','Memcached: New items per second','memcached.stats.total_items.rate','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of new items stored per second.','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','6bbc3deb32f947b2bc966c15f6e76726');
INSERT INTO `items` (`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`,`uuid`) values ('30617','18','','10319','Memcached: Threads','memcached.stats.threads','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of worker threads requested','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','7c28164178fc493c9f202df0c7103bb5');
INSERT INTO `items` (`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`,`uuid`) values ('30618','18','','10319','Memcached: Misses per second','memcached.stats.misses.rate','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of missed GET requests (items requested but not found) per second.','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','3988a6c751814573869ed3533039faac');
INSERT INTO `items` (`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`,`uuid`) values ('30619','18','','10319','Memcached: Hits per second','memcached.stats.hits.rate','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of successful GET requests (items requested and found) per second.','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','07acbb8eb36049258ca414d9e314ed79');
INSERT INTO `items` (`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`,`uuid`) values ('30620','18','','10319','Memcached: Evictions per second','memcached.stats.evictions.rate','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'"An eviction is when an item that still has time to live is removed from the cache because a brand new item needs to be allocated.\r\nThe item is selected with a pseudo-LRU mechanism.\r\nA high number of evictions coupled with a low hit rate means your application is setting a large number of keys that are never used again."','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','ce47a49ce6af46b7bc9757ed1b5cd02e');
INSERT INTO `items` (`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`,`uuid`) values ('30621','18','','10319','Memcached: Current number of items stored','memcached.stats.curr_items','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Current number of items stored by this instance.','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','efc05c70a56d4be4a6ad59fa1c2915a3');
INSERT INTO `items` (`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`,`uuid`) values ('30622','18','','10319','Memcached: Written bytes per second','memcached.stats.bytes_written.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The network\'s read rate per second in B/sec','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','e81a3fa33a124cdfba36e40d1be6edd8');
INSERT INTO `items` (`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`,`uuid`) values ('30623','18','','10319','Memcached: Read bytes per second','memcached.stats.bytes_read.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The network\'s read rate per second in B/sec','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','7977b28169a9411d98549d0c85ffb78b');
INSERT INTO `items` (`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`,`uuid`) values ('30624','18','','10319','Memcached: Process id','memcached.process_id','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'PID of the server process','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','7ecd604d8f1143d6b3cf02c4d0ef22dc');
INSERT INTO `items` (`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`,`uuid`) values ('30625','18','','10319','Memcached: Commands: GET per second','memcached.commands.get.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of GET requests received by server per second.','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','1f636f46889e41cda9abf80df4ae53a7');
INSERT INTO `items` (`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`,`uuid`) values ('30626','18','','10319','Memcached: CPU user','memcached.cpu.user','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'User CPU consumed by the Memcached server','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','d7b2094d846243e59a092dc42bbe30c3');
INSERT INTO `items` (`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`,`uuid`) values ('30627','18','','10319','Memcached: CPU sys','memcached.cpu.sys','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'System CPU consumed by the Memcached server','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','f67cae24aa3d4b56b00ef7a3e3a45432');
INSERT INTO `items` (`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`,`uuid`) values ('30628','18','','10319','Memcached: Throttled connections','memcached.connections.throttled.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times a client connection was throttled. When sending GETs in batch mode and the connection contains too many requests (limited by -R parameter) the connection might be throttled to prevent starvation.','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','891b3347dac6440caef69c9dd7ec0a18');
INSERT INTO `items` (`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`,`uuid`) values ('30629','18','','10319','Memcached: Connection structures','memcached.connections.structures','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connection structures allocated by the server','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','8c224388b06b417fbf89dd25631b10ad');
INSERT INTO `items` (`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`,`uuid`) values ('30630','18','','10319','Memcached: New connections per second','memcached.connections.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections opened per second','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','7ecc849f54be41dcbc6c037d89a6c240');
INSERT INTO `items` (`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`,`uuid`) values ('30631','18','','10319','Memcached: Queued connections per second','memcached.connections.queued.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times that memcached has hit its connections limit and disabled its listener','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','166f2d677f0d4d31bdd5313fa7755d56');
INSERT INTO `items` (`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`,`uuid`) values ('30632','18','','10319','Memcached: Max connections','memcached.connections.max','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Max number of concurrent connections','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','2d9fee94ab6e458b953bf6f4808e9300');
INSERT INTO `items` (`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`,`uuid`) values ('30633','18','','10319','Memcached: Open connections','memcached.connections.current','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of clients presently connected','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','4ac11cc6469346aa88ad804c8af749a8');
INSERT INTO `items` (`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`,`uuid`) values ('30634','18','','10319','Memcached: Maximum number of bytes','memcached.config.limit_maxbytes','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum number of bytes allowed in cache. You can adjust this setting via a config file or the command line while starting your Memcached server.','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','d19885f5dc5b4afaa68ae180c60117ca');
INSERT INTO `items` (`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`,`uuid`) values ('30635','18','','10319','Memcached: Commands: SET per second','memcached.commands.set.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of SET requests received by server per second.','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','82988c3b793841c4b99a7cbf18f9ac5f');
INSERT INTO `items` (`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`,`uuid`) values ('30636','18','','10319','Memcached: Memcached version','memcached.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the Memcached server','0','30d','0','','30612','3s','','','','200','1','0','','0','0','0','0','0','0','0','64986809298145ebbf8f6ded1c41f2df');
INSERT INTO `items` (`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`,`uuid`) values ('30642','18','','10320','MySQL: InnoDB buffer pool reads','mysql.innodb_buffer_pool_reads','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','2b017cf20cb5412fa4e39dc9b4469930');
INSERT INTO `items` (`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`,`uuid`) values ('30643','18','','10320','MySQL: InnoDB buffer pool reads per second','mysql.innodb_buffer_pool_reads.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','0f2b813c8d6740d783504055dcd9a9dc');
INSERT INTO `items` (`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`,`uuid`) values ('30644','18','','10320','MySQL: InnoDB row lock time','mysql.innodb_row_lock_time','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The total time spent in acquiring row locks for InnoDB tables, in milliseconds.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','60cbafe89a294f6fb24e3b9efe241bf5');
INSERT INTO `items` (`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`,`uuid`) values ('30645','18','','10320','MySQL: InnoDB row lock time max','mysql.innodb_row_lock_time_max','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum time to acquire a row lock for InnoDB tables, in milliseconds.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','3827ee01c4434ff09555b4dba63bac47');
INSERT INTO `items` (`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`,`uuid`) values ('30646','18','','10320','MySQL: InnoDB row lock waits','mysql.innodb_row_lock_waits','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times operations on InnoDB tables had to wait for a row lock.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','4a849f57a32847ffb41a0e8a7e7735ce');
INSERT INTO `items` (`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`,`uuid`) values ('30647','18','','10320','MySQL: Max used connections','mysql.max_used_connections','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum number of connections that have been in use simultaneously since the server start.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','afd9c494cc584ddd833298820d7beace');
INSERT INTO `items` (`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`,`uuid`) values ('30648','18','','10320','MySQL: Queries per second','mysql.queries.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','345b2dd64d4041c7849aafc82cc63580');
INSERT INTO `items` (`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`,`uuid`) values ('30649','18','','10320','MySQL: InnoDB buffer pool read requests','mysql.innodb_buffer_pool_read_requests','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical read requests.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','ab450aaa081d4a8d9db5dfd327d3b439');
INSERT INTO `items` (`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`,`uuid`) values ('30650','18','','10320','MySQL: Questions per second','mysql.questions.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','73bc839df32e4d598f589a4a5440925e');
INSERT INTO `items` (`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`,`uuid`) values ('30651','18','','10320','MySQL: Slow queries per second','mysql.slow_queries.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of queries that have taken more than long_query_time seconds.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','0492b7b8c8464d0596c24dc877ba41e0');
INSERT INTO `items` (`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`,`uuid`) values ('30652','18','','10320','MySQL: Threads cached','mysql.threads_cached','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads in the thread cache.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','de0edc0ab52b488681a597ba6bda3e9e');
INSERT INTO `items` (`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`,`uuid`) values ('30653','18','','10320','MySQL: Threads connected','mysql.threads_connected','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of currently open connections.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','6cd93969a80b4f738cd734764011b324');
INSERT INTO `items` (`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`,`uuid`) values ('30655','18','','10320','MySQL: Threads running','mysql.threads_running','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads which are not sleeping.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','c4258eb3d8db4f30bc29dc531c5276a2');
INSERT INTO `items` (`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`,`uuid`) values ('30656','18','','10320','MySQL: Uptime','mysql.uptime','0','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of seconds that the server has been up.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','1f3a71e74d8e42a1b539d67b4fc18531');
INSERT INTO `items` (`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`,`uuid`) values ('30657','18','','10320','MySQL: InnoDB buffer pool read requests per second','mysql.innodb_buffer_pool_read_requests.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical read requests per second.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','dbf5bd4d705744bcb185e5044ff219e9');
INSERT INTO `items` (`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`,`uuid`) values ('30658','18','','10320','MySQL: InnoDB buffer pool pages total','mysql.innodb_buffer_pool_pages_total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total size of the InnoDB buffer pool, in pages.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','14a8ea7cda164240bc7360454b4cd690');
INSERT INTO `items` (`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`,`uuid`) values ('30659','18','','10320','MySQL: Bytes received','mysql.bytes_received.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes received from all clients.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','1501b3b4d2b143378d162bd88ab70504');
INSERT INTO `items` (`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`,`uuid`) values ('30660','18','','10320','MySQL: Connection errors max connections per second','mysql.connection_errors_max_connections.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of refused connections due to the max_connections limit being reached.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','1ad00e1a8a984254bec89c75a2d57ea0');
INSERT INTO `items` (`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`,`uuid`) values ('30661','18','','10320','MySQL: Bytes sent','mysql.bytes_sent.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes sent to all clients.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','0af5a1b506ef4f348a11757cea440a05');
INSERT INTO `items` (`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`,`uuid`) values ('30662','18','','10320','MySQL: Command Delete per second','mysql.com_delete.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Com_delete counter variable indicates the number of times the delete statement has been executed.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','0ebaced7ea3a4d9d9091128a8b0f6c49');
INSERT INTO `items` (`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`,`uuid`) values ('30663','18','','10320','MySQL: Command Insert per second','mysql.com_insert.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Com_insert counter variable indicates the number of times the insert statement has been executed.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','cc5aeff5d46c43259b7a8d0ca3296e8a');
INSERT INTO `items` (`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`,`uuid`) values ('30664','18','','10320','MySQL: Command Select per second','mysql.com_select.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Com_select counter variable indicates the number of times the select statement has been executed.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','e50d21a5d6764626a1eb3eb9f15dbc61');
INSERT INTO `items` (`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`,`uuid`) values ('30665','18','','10320','MySQL: Command Update per second','mysql.com_update.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Com_update counter variable indicates the number of times the update statement has been executed.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','6ce28af307b54a75817536105a14d80b');
INSERT INTO `items` (`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`,`uuid`) values ('30666','18','','10320','MySQL: Connection errors accept per second','mysql.connection_errors_accept.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors that occurred during calls to accept() on the listening port.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','dd9a33e71dd8468a9e4f2e25d3028a88');
INSERT INTO `items` (`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`,`uuid`) values ('30667','18','','10320','MySQL: Connection errors internal per second','mysql.connection_errors_internal.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of refused connections due to internal server errors, for example, out of memory errors, or failed thread starts.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','12627c45088c4ed6a69c743ddf12e42e');
INSERT INTO `items` (`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`,`uuid`) values ('30668','18','','10320','MySQL: Connection errors peer address per second','mysql.connection_errors_peer_address.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors while searching for the connecting client IP address.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','fbabb9b53f754cf6be0f657e90897bd9');
INSERT INTO `items` (`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`,`uuid`) values ('30669','18','','10320','MySQL: InnoDB buffer pool pages free','mysql.innodb_buffer_pool_pages_free','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total size of the InnoDB buffer pool, in pages.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','51ab15a1c63348e48e6a75ed4e0ab5e3');
INSERT INTO `items` (`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`,`uuid`) values ('30670','18','','10320','MySQL: Connection errors select per second','mysql.connection_errors_select.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','48a2a6533ca4412d86e9f85fd748ad3b');
INSERT INTO `items` (`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`,`uuid`) values ('30671','18','','10320','MySQL: Connection errors tcpwrap per second','mysql.connection_errors_tcpwrap.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections the libwrap library has refused.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','6a32e65b2e1a43bbaf718a0962271efe');
INSERT INTO `items` (`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`,`uuid`) values ('30672','18','','10320','MySQL: Connections per second','mysql.connections.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connection attempts (successful or not) to the MySQL server.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','aeb1cc1b7c1d47acb8788e3751bd0e6f');
INSERT INTO `items` (`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`,`uuid`) values ('30676','18','','10320','MySQL: Aborted connections per second','mysql.aborted_connects.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of failed attempts to connect to the MySQL server.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','77a407bb911f4b938c32de289da83383');
INSERT INTO `items` (`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`,`uuid`) values ('30677','18','','10320','MySQL: Aborted clients per second','mysql.aborted_clients.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections that were aborted because the client died without closing the connection properly.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','8a7b77d4e96a4a2d93f63eb8ca3c979b');
INSERT INTO `items` (`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`,`uuid`) values ('30682','18','','10320','MySQL: Replication Seconds Behind Master {#MASTER_HOST}','mysql.replication.seconds_behind_master["{#MASTER_HOST}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of seconds that the slave SQL thread is behind processing the master binary log.\r\nA high number (or an increasing one) can indicate that the slave is unable to handle events\r\nfrom the master in a timely fashion.','0','30d','0','','30681','3s','','','','200','1','0','','0','0','0','0','0','0','0','bdbd657020b24a14a771a29a8a945a2b');
INSERT INTO `items` (`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`,`uuid`) values ('30683','18','','10320','MySQL: Replication Slave IO Running {#MASTER_HOST}','mysql.replication.slave_io_running["{#MASTER_HOST}"]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Whether the I/O thread for reading the master\'s binary log is running.\r\nNormally, you want this to be Yes unless you have not yet started a replication or have\r\nexplicitly stopped it with STOP SLAVE.','0','30d','0','','30681','3s','','','','200','1','0','','0','0','0','0','0','0','0','2a5eb9d62cd046138d7564aa22b9ca33');
INSERT INTO `items` (`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`,`uuid`) values ('30684','18','','10320','MySQL: Replication Slave SQL Running {#MASTER_HOST}','mysql.replication.slave_sql_running["{#MASTER_HOST}"]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Whether the SQL thread for executing events in the relay log is running.\r\nAs with the I/O thread, this should normally be Yes.','0','30d','0','','30681','3s','','','','200','1','0','','0','0','0','0','0','0','0','4fbb3cb164064694b37924dfcbaf2271');
INSERT INTO `items` (`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`,`uuid`) values ('30686','18','','10321','Discrete sensors discovery','ipmi.discrete.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the discrete IPMI sensors.','0','30d','1','','30685','3s','','','','200','1','0','','0','0','0','0','0','0','0','d0a3bd3c62d7438d8acde8ff0a9bb4db');
INSERT INTO `items` (`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`,`uuid`) values ('30687','18','','10321','Threshold sensors discovery','ipmi.sensors.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the threshold IPMI sensors.','0','30d','1','','30685','3s','','','','200','1','0','','0','0','0','0','0','0','0','bd5ceb5412d3462d90fa857b2d214788');
INSERT INTO `items` (`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`,`uuid`) values ('30688','18','','10321','IPMI: {#SENSOR_ID}','ipmi.state_text[{#SENSOR_ID}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'It is a state of the discrete IPMI sensor.','0','30d','0','','30685','3s','','','','200','1','0','','0','0','0','0','0','0','0','6ce86fa51c614f94b2250e14af8d9385');
INSERT INTO `items` (`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`,`uuid`) values ('30689','18','','10321','IPMI: {#SENSOR_ID}, {#SENSOR_UNIT}','ipmi.value[{#SENSOR_ID}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'It is a state of the threshold IPMI sensor.','0','30d','0','','30685','3s','','','','200','1','0','','0','0','0','0','0','0','0','77e8c8c6e2444667b5da698c802dbae0');
INSERT INTO `items` (`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`,`uuid`) values ('30695','18','','10322','ES: Number of non-deleted documents','es.indices.docs.count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of non-deleted documents across all primary shards assigned to the selected nodes.\r\nThis number is based on the documents in Lucene segments and may include the documents from nested fields.','0','30d','0','','30691','3s','','','','200','1','0','','0','0','0','0','0','0','0','25cb1e0203334efd96d3e626f81b4670');
INSERT INTO `items` (`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`,`uuid`) values ('30696','18','','10322','ES: Cluster uptime','es.nodes.jvm.max_uptime','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Uptime duration in seconds since JVM has last started.','0','30d','0','','30691','3s','','','','200','1','0','','0','0','0','0','0','0','0','2dcf54f21cbd4af9a7931e3a2522685c');
INSERT INTO `items` (`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`,`uuid`) values ('30697','18','','10322','ES: Total size of all file stores','es.nodes.fs.total_in_bytes','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total size in bytes of all file stores across all selected nodes.','0','30d','0','','30691','3s','','','','200','1','0','','0','0','0','0','0','0','0','b8c3c5d8866d4a6b9c6847b5c8da0631');
INSERT INTO `items` (`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`,`uuid`) values ('30698','18','','10322','ES: Total available size to JVM in all file stores','es.nodes.fs.available_in_bytes','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of bytes available to JVM in the file stores across all selected nodes.\r\nDepending on OS or process-level restrictions, this number may be less than nodes.fs.free_in_byes.\r\nThis is the actual amount of free disk space the selected Elasticsearch nodes can use.','0','30d','0','','30691','3s','','','','200','1','0','','0','0','0','0','0','0','0','c3ea99e5897b4663a3239d0edd66f1f0');
INSERT INTO `items` (`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`,`uuid`) values ('30699','18','','10322','ES: Nodes with the master role','es.nodes.count.master','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of selected nodes with the master role.','0','30d','0','','30691','3s','','','','200','1','0','','0','0','0','0','0','0','0','e7b36f37b86845339a306dacf874164a');
INSERT INTO `items` (`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`,`uuid`) values ('30700','18','','10322','ES: Nodes with the ingest role','es.nodes.count.ingest','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of selected nodes with the ingest role.','0','30d','0','','30691','3s','','','','200','1','0','','0','0','0','0','0','0','0','613ab3469f234e278af99d61e57b46bd');
INSERT INTO `items` (`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`,`uuid`) values ('30701','18','','10322','ES: Nodes with the data role','es.nodes.count.data','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of selected nodes with the data role.','0','30d','0','','30691','3s','','','','200','1','0','','0','0','0','0','0','0','0','54f51a653e014290aa3f91deaca44e47');
INSERT INTO `items` (`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`,`uuid`) values ('30702','18','','10322','ES: Delayed unassigned shards','es.cluster.delayed_unassigned_shards','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of shards whose allocation has been delayed by the timeout settings.','0','30d','0','','30694','3s','','','','200','1','0','','0','0','0','0','0','0','0','f3531c005c7f477b9916b4bf1ad273c2');
INSERT INTO `items` (`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`,`uuid`) values ('30703','18','','10322','ES: Indices with shards assigned to nodes','es.indices.count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of indices with shards assigned to the selected nodes.','0','30d','0','','30691','3s','','','','200','1','0','','0','0','0','0','0','0','0','db2f3161eaff4eb0b25d4191b423c733');
INSERT INTO `items` (`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`,`uuid`) values ('30704','18','','10322','ES: Task max waiting in queue','es.cluster.task_max_waiting_in_queue','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The time expressed in seconds since the earliest initiated task is waiting for being performed.','0','30d','0','','30694','3s','','','','200','1','0','','0','0','0','0','0','0','0','2295e2ba3d4949feb3519ac85ba6ff86');
INSERT INTO `items` (`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`,`uuid`) values ('30705','18','','10322','ES: Cluster health status','es.cluster.status','0','7d','365d','0','3','','','','',NULL,'148','','','0','','','','','0',NULL,'Health status of the cluster, based on the state of its primary and replica shards. Statuses are:\r\ngreen\r\nAll shards are assigned.\r\nyellow\r\nAll primary shards are assigned, but one or more replica shards are unassigned. If a node in the cluster fails, some data could be unavailable until that node is repaired.\r\nred\r\nOne or more primary shards are unassigned, so some data is unavailable. This can occur briefly during cluster startup as primary shards are assigned.','0','30d','0','','30694','3s','','','','200','1','0','','0','0','0','0','0','0','0','b9568a6370dc40efae45ac1e0b719dd7');
INSERT INTO `items` (`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`,`uuid`) values ('30706','18','','10322','ES: Number of relocating shards','es.cluster.relocating_shards','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of shards that are under relocation.','0','30d','0','','30694','3s','','','','200','1','0','','0','0','0','0','0','0','0','981818f43a3c4b36b36e4b3c4e3468e9');
INSERT INTO `items` (`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`,`uuid`) values ('30707','18','','10322','ES: Number of pending tasks','es.cluster.number_of_pending_tasks','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of cluster-level changes that have not yet been executed.','0','30d','0','','30694','3s','','','','200','1','0','','0','0','0','0','0','0','0','2c84eea7f4a642f8892cb7f50febb562');
INSERT INTO `items` (`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`,`uuid`) values ('30708','18','','10322','ES: Number of nodes','es.cluster.number_of_nodes','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of nodes within the cluster.','0','30d','0','','30694','3s','','','','200','1','0','','0','0','0','0','0','0','0','4ec7496b441643f39df3e25c0225e6ec');
INSERT INTO `items` (`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`,`uuid`) values ('30709','18','','10322','ES: Number of data nodes','es.cluster.number_of_data_nodes','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of nodes that are dedicated to data nodes.','0','30d','0','','30694','3s','','','','200','1','0','','0','0','0','0','0','0','0','7d3c87e2fcae49438a14380f7d5faa81');
INSERT INTO `items` (`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`,`uuid`) values ('30710','18','','10322','ES: Number of initializing shards','es.cluster.initializing_shards','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of shards that are under initialization.','0','30d','0','','30694','3s','','','','200','1','0','','0','0','0','0','0','0','0','e0b684d5992a496981cf6fb9bb85be62');
INSERT INTO `items` (`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`,`uuid`) values ('30711','18','','10322','ES: Inactive shards percentage','es.cluster.inactive_shards_percent_as_number','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of inactive shards in the cluster expressed as a percentage.','0','30d','0','','30694','3s','','','','200','1','0','','0','0','0','0','0','0','0','500a763b9bfd4044b2d3bc95d3a0586c');
INSERT INTO `items` (`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`,`uuid`) values ('30712','18','','10322','ES: Number of unassigned shards','es.cluster.unassigned_shards','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of shards that are not allocated.','0','30d','0','','30694','3s','','','','200','1','0','','0','0','0','0','0','0','0','85e82cba1e5c479caede2a94c58239be');
INSERT INTO `items` (`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`,`uuid`) values ('30718','18','','10322','ES {#ES.NODE}: Refresh thread pool active threads','es.node.thread_pool.refresh.active[{#ES.NODE}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of active threads in the refresh thread pool.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','14ea2732fbfc40ceaafadfff1830ac4d');
INSERT INTO `items` (`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`,`uuid`) values ('30719','18','','10322','ES {#ES.NODE}: Total number of query','es.node.indices.search.query_total[{#ES.NODE}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of query operations.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','7279b682fa3e4661a1600d6da25e0fc7');
INSERT INTO `items` (`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`,`uuid`) values ('30720','18','','10322','ES {#ES.NODE}: Rate of queries','es.node.indices.search.query.rate[{#ES.NODE}]','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of query operations per second.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','d347df9c9eee4aa89ccfb9147143b5d5');
INSERT INTO `items` (`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`,`uuid`) values ('30721','18','','10322','ES {#ES.NODE}: Amount of JVM heap committed','es.node.jvm.mem.heap_committed_in_bytes[{#ES.NODE}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of memory, in bytes, available for use by the heap.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','269cc21be4c94ba58a52b9fca9590632');
INSERT INTO `items` (`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`,`uuid`) values ('30722','18','','10322','ES {#ES.NODE}: Maximum JVM memory available for use','es.node.jvm.mem.heap_max_in_bytes[{#ES.NODE}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The maximum amount of memory, in bytes, available for use by the heap.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','7f205e21644a4f629e4a419c42670158');
INSERT INTO `items` (`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`,`uuid`) values ('30723','18','','10322','ES {#ES.NODE}: Amount of JVM heap currently in use','es.node.jvm.mem.heap_used_in_bytes[{#ES.NODE}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The memory, in bytes, currently in use by the heap.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','bb55c78c2aca49e49f6200e14c25dee8');
INSERT INTO `items` (`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`,`uuid`) values ('30724','18','','10322','ES {#ES.NODE}: Percent of JVM heap currently in use','es.node.jvm.mem.heap_used_percent[{#ES.NODE}]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of memory currently in use by the heap.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','71fca039cad847da9623aaeb722168f1');
INSERT INTO `items` (`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`,`uuid`) values ('30725','18','','10322','ES {#ES.NODE}: Node uptime','es.node.jvm.uptime[{#ES.NODE}]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'JVM uptime in seconds.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','3c2f512ae6ff4221a7de4e5dbff2ed48');
INSERT INTO `items` (`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`,`uuid`) values ('30726','18','','10322','ES {#ES.NODE}: Total available size','es.node.fs.total.available_in_bytes[{#ES.NODE}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of bytes available to this Java virtual machine on all file stores.\r\nDepending on OS or process level restrictions, this might appear less than fs.total.free_in_bytes.\r\nThis is the actual amount of free disk space the Elasticsearch node can utilize.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','b4e87d039e9d4feeb03e0e33f14b2c82');
INSERT INTO `items` (`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`,`uuid`) values ('30727','18','','10322','ES {#ES.NODE}: Refresh thread pool executor tasks completed','es.node.thread_pool.refresh.completed.rate[{#ES.NODE}]','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of tasks completed by the refresh thread pool executor.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','b6496d2878914b06bf6301630b4609a8');
INSERT INTO `items` (`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`,`uuid`) values ('30728','18','','10322','ES {#ES.NODE}: Time spent performing query','es.node.indices.search.query_time[{#ES.NODE}]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time in seconds spent performing query operations for the last measuring span.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','ce807b641b0b4501b6a8e253d8403ce4');
INSERT INTO `items` (`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`,`uuid`) values ('30729','18','','10322','ES {#ES.NODE}: Refresh thread pool executor tasks rejected','es.node.thread_pool.refresh.rejected.rate[{#ES.NODE}]','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of tasks rejected by the refresh thread pool executor.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','593514af005044ce8e6207a5616270f2');
INSERT INTO `items` (`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`,`uuid`) values ('30730','18','','10322','ES {#ES.NODE}: Search thread pool active threads','es.node.thread_pool.search.active[{#ES.NODE}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of active threads in the search thread pool.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','63875f40cf7c4f8f842562be2adfb7c7');
INSERT INTO `items` (`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`,`uuid`) values ('30731','18','','10322','ES {#ES.NODE}: Search thread pool executor tasks completed','es.node.thread_pool.search.completed.rate[{#ES.NODE}]','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of tasks completed by the search thread pool executor.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','dc67ab311d4945aaae3347464785abb1');
INSERT INTO `items` (`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`,`uuid`) values ('30732','18','','10322','ES {#ES.NODE}: Search thread pool tasks in queue','es.node.thread_pool.search.queue[{#ES.NODE}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of tasks in queue for the search thread pool.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','d11933b62131425d83ab09c6d5fd5e85');
INSERT INTO `items` (`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`,`uuid`) values ('30733','18','','10322','ES {#ES.NODE}: Search thread pool executor tasks rejected','es.node.thread_pool.search.rejected.rate[{#ES.NODE}]','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of tasks rejected by the search thread pool executor.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','820ed330abc845919b1dada3cfa81387');
INSERT INTO `items` (`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`,`uuid`) values ('30734','18','','10322','ES {#ES.NODE}: Write thread pool active threads','es.node.thread_pool.write.active[{#ES.NODE}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of active threads in the write thread pool.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','4b7dc34d78a64b24a8fd19af95e0f0bd');
INSERT INTO `items` (`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`,`uuid`) values ('30735','18','','10322','ES {#ES.NODE}: Write thread pool executor tasks completed','es.node.thread_pool.write.completed.rate[{#ES.NODE}]','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of tasks completed by the write thread pool executor.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','5b5ac74702564bd490c7378adcf75c28');
INSERT INTO `items` (`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`,`uuid`) values ('30736','18','','10322','ES {#ES.NODE}: Write thread pool tasks in queue','es.node.thread_pool.write.queue[{#ES.NODE}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of tasks in queue for the write thread pool.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','a0d8f8d896a546d1ade07c355992308d');
INSERT INTO `items` (`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`,`uuid`) values ('30737','18','','10322','ES {#ES.NODE}: Refresh thread pool tasks in queue','es.node.thread_pool.refresh.queue[{#ES.NODE}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of tasks in queue for the refresh thread pool.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','4b748eeb937e45308e58d699b713cf01');
INSERT INTO `items` (`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`,`uuid`) values ('30738','18','','10322','ES {#ES.NODE}: Current query operations','es.node.indices.search.query_current[{#ES.NODE}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of query operations currently running.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','20fb738abf7a4aa1bf3ccb84790a26c9');
INSERT INTO `items` (`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`,`uuid`) values ('30739','18','','10322','ES {#ES.NODE}: Total time spent performing query','es.node.indices.search.query_time_in_millis[{#ES.NODE}]','0','7d','365d','0','3','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'Time in milliseconds spent performing query operations.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','7afc767463c64bbb9290975a8cef3cec');
INSERT INTO `items` (`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`,`uuid`) values ('30740','18','','10322','ES {#ES.NODE}: Time spent throttling operations','es.node.indices.indexing.throttle_time[{#ES.NODE}]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time in seconds spent throttling operations for the last measuring span.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','bb0cb2196b14483f8807a855f2f531a7');
INSERT INTO `items` (`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`,`uuid`) values ('30741','18','','10322','ES {#ES.NODE}: Number of open HTTP connections','es.node.http.current_open[{#ES.NODE}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of currently open HTTP connections for the node.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','2ba1fc7e2dad4d0ab1807221fb1e4fca');
INSERT INTO `items` (`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`,`uuid`) values ('30742','18','','10322','ES {#ES.NODE}: Rate of HTTP connections opened','es.node.http.opened.rate[{#ES.NODE}]','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of HTTP connections opened for the node per second.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','fcf163d5db9b455fa38823e8ad16e578');
INSERT INTO `items` (`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`,`uuid`) values ('30743','18','','10322','ES {#ES.NODE}: Total time spent on flushing indices to disk','es.node.indices.flush.total_time_in_millis[{#ES.NODE}]','0','7d','365d','0','3','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'Total time in milliseconds spent performing flush operations.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','7e18149dcaee47748e4073f4ce814c03');
INSERT INTO `items` (`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`,`uuid`) values ('30744','18','','10322','ES {#ES.NODE}: Total number of index flushes to disk','es.node.indices.flush.total[{#ES.NODE}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of flush operations.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','8e270dfff9c84d2a96a134dd6d86533b');
INSERT INTO `items` (`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`,`uuid`) values ('30745','18','','10322','ES {#ES.NODE}: Current indexing operations','es.node.indices.indexing.index_current[{#ES.NODE}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of indexing operations currently running.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','e91cc33c088a4f56a9176fd6a09f2411');
INSERT INTO `items` (`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`,`uuid`) values ('30746','18','','10322','ES {#ES.NODE}: Total time spent performing indexing','es.node.indices.indexing.index_time_in_millis[{#ES.NODE}]','0','7d','365d','0','3','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'Total time in milliseconds spent performing indexing operations.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','f471dad45ff149b09a479963cb616fc2');
INSERT INTO `items` (`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`,`uuid`) values ('30747','18','','10322','ES {#ES.NODE}: Total number of indexing','es.node.indices.indexing.index_total[{#ES.NODE}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of indexing operations.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','ad36b8495eca49c48e7d8a7877a325c2');
INSERT INTO `items` (`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`,`uuid`) values ('30748','18','','10322','ES {#ES.NODE}: Time spent throttling merge operations','es.node.indices.merges.total_throttled_time[{#ES.NODE}]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time in seconds spent throttling merge operations for the last measuring span.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','5f3b7dca802343cd905d54e66ac0e113');
INSERT INTO `items` (`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`,`uuid`) values ('30749','18','','10322','ES {#ES.NODE}: Total size','es.node.fs.total.total_in_bytes[{#ES.NODE}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total size (in bytes) of all file stores.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','4f315fdf62884b0284bf04f1a85aeb98');
INSERT INTO `items` (`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`,`uuid`) values ('30750','18','','10322','ES {#ES.NODE}: Time spent throttling recovery operations','es.node.indices.recovery.throttle_time[{#ES.NODE}]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time in seconds spent throttling recovery operations for the last measuring span.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','9c82da45a63947dd91a4e19e6f2d121d');
INSERT INTO `items` (`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`,`uuid`) values ('30751','18','','10322','ES {#ES.NODE}: Rate of index refreshes','es.node.indices.refresh.rate[{#ES.NODE}]','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of refresh operations per second.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','e27361fdce5a4635854960066ac050ca');
INSERT INTO `items` (`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`,`uuid`) values ('30752','18','','10322','ES {#ES.NODE}: Time spent performing refresh','es.node.indices.refresh.time[{#ES.NODE}]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time in seconds spent performing refresh operations for the last measuring span.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','fd20bbc5012d4c5693710b321e252193');
INSERT INTO `items` (`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`,`uuid`) values ('30753','18','','10322','ES {#ES.NODE}: Current fetch operations','es.node.indices.search.fetch_current[{#ES.NODE}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of fetch operations currently running.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','36b2ffa3ed9f4c9781ccded273c395d7');
INSERT INTO `items` (`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`,`uuid`) values ('30754','18','','10322','ES {#ES.NODE}: Total time spent performing fetch','es.node.indices.search.fetch_time_in_millis[{#ES.NODE}]','0','7d','365d','0','3','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'Time in milliseconds spent performing fetch operations.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','f35e3e9773394632b422dbc4e4442171');
INSERT INTO `items` (`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`,`uuid`) values ('30755','18','','10322','ES {#ES.NODE}: Time spent performing fetch','es.node.indices.search.fetch_time[{#ES.NODE}]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time in seconds spent performing fetch operations for the last measuring span.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','a10e7dca72c8411a9b7fdcbeb676017e');
INSERT INTO `items` (`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`,`uuid`) values ('30756','18','','10322','ES {#ES.NODE}: Total number of fetch','es.node.indices.search.fetch_total[{#ES.NODE}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of fetch operations.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','b3ac68f3531f478b9ad28fb1988df257');
INSERT INTO `items` (`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`,`uuid`) values ('30757','18','','10322','ES {#ES.NODE}: Rate of fetch','es.node.indices.search.fetch.rate[{#ES.NODE}]','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of fetch operations per second.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','6d3b074aecb44a08a3573aba0ff006f9');
INSERT INTO `items` (`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`,`uuid`) values ('30758','18','','10322','ES {#ES.NODE}: Write thread pool executor tasks rejected','es.node.thread_pool.write.rejected.rate[{#ES.NODE}]','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of tasks rejected by the write thread pool executor.','0','30d','0','','30693','3s','','','','200','1','0','','0','0','0','0','0','0','0','a21213815a30485a88b183e7b40a4e7e');
INSERT INTO `items` (`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`,`uuid`) values ('30831','18','','10323','ClickHouse: Write syscalls in fly','clickhouse.write','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of write (write, pwrite, io_getevents, etc.) syscalls in fly','0','30d','0','','30826','3s','','','','200','1','0','','0','0','0','0','0','0','0','5bac794c8c7e438c924cd16b708dc281');
INSERT INTO `items` (`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`,`uuid`) values ('30832','18','','10323','ClickHouse: Total replication tasks in queue','clickhouse.replicas.sum.queue.size','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30824','3s','','','','200','1','0','','0','0','0','0','0','0','0','5d2a35daf81a49888e3dfab916fab8be');
INSERT INTO `items` (`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`,`uuid`) values ('30833','18','','10323','ClickHouse: New queries per second','clickhouse.query.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries.','0','30d','0','','30825','3s','','','','200','1','0','','0','0','0','0','0','0','0','0fb342f6a494443c8389f79439e94791');
INSERT INTO `items` (`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`,`uuid`) values ('30834','18','','10323','ClickHouse: Read syscalls in fly','clickhouse.read','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of read (read, pread, io_getevents, etc.) syscalls in fly','0','30d','0','','30826','3s','','','','200','1','0','','0','0','0','0','0','0','0','fb671accbbaa4bd58a107dc3661419af');
INSERT INTO `items` (`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`,`uuid`) values ('30835','18','','10323','ClickHouse: Read bytes per second','clickhouse.read_bytes.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'"Number of bytes (the number of bytes before decompression) read from compressed sources (files, network)."','0','30d','0','','30825','3s','','','','200','1','0','','0','0','0','0','0','0','0','eb4c47501d9c4cdf9e55347ccc9a38bd');
INSERT INTO `items` (`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`,`uuid`) values ('30836','18','','10323','ClickHouse: ZooKeeper wait time','clickhouse.zookeeper.wait.time','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time spent in waiting for ZooKeeper operations.','0','30d','0','','30825','3s','','','','200','1','0','','0','0','0','0','0','0','0','b9fbc2f76b9c4de3b196ffc82ec10209');
INSERT INTO `items` (`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`,`uuid`) values ('30837','18','','10323','ClickHouse: Replication lag across all tables','clickhouse.replicas.max.absolute.delay','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum replica queue delay relative to current time','0','30d','0','','30824','3s','','','','200','1','0','','0','0','0','0','0','0','0','78ed9728eb634df1807c64637c862f9a');
INSERT INTO `items` (`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`,`uuid`) values ('30838','18','','10323','ClickHouse: Total number read-only Replicas','clickhouse.replicas.readonly.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Replicated tables that are currently in readonly state\r\ndue to re-initialization after ZooKeeper session loss\r\nor due to startup without ZooKeeper configured.','0','30d','0','','30826','3s','','','','200','1','0','','0','0','0','0','0','0','0','dd61675348374d2ea06cdde144fe4e26');
INSERT INTO `items` (`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`,`uuid`) values ('30839','18','','10323','ClickHouse: Revision','clickhouse.revision','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Revision of the server.','0','30d','0','','30826','3s','','','','200','1','0','','0','0','0','0','0','0','0','572036e5b2c74197bd61afc753f6e759');
INSERT INTO `items` (`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`,`uuid`) values ('30841','18','','10323','ClickHouse: New SELECT queries per second','clickhouse.select_query.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of SELECT queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries.','0','30d','0','','30825','3s','','','','200','1','0','','0','0','0','0','0','0','0','f89f3e27ca4f4e109ae6fe6b74dcc2ca');
INSERT INTO `items` (`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`,`uuid`) values ('30842','18','','10323','ClickHouse: ZooKeeper user exceptions per second','clickhouse.zookeeper.user_exceptions.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of ZooKeeper exceptions caused by no znodes, bad version, node exists, node empty and no children for ephemeral.','0','30d','0','','30825','3s','','','','200','1','0','','0','0','0','0','0','0','0','4931797c1034488fb9a2fc01e22b599c');
INSERT INTO `items` (`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`,`uuid`) values ('30843','18','','10323','ClickHouse: ZooKeeper sessions','clickhouse.zookeeper.session','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of sessions (connections) to ZooKeeper. Should be no more than one.','0','30d','0','','30826','3s','','','','200','1','0','','0','0','0','0','0','0','0','3e344ea728a54bc38b4098e7f6e2d087');
INSERT INTO `items` (`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`,`uuid`) values ('30844','18','','10323','ClickHouse: ZooKeeper requests','clickhouse.zookeeper.request','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of requests to ZooKeeper in progress.','0','30d','0','','30826','3s','','','','200','1','0','','0','0','0','0','0','0','0','071fb0471b8e40c3a5bb79c694cecce0');
INSERT INTO `items` (`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`,`uuid`) values ('30845','18','','10323','ClickHouse: ZooKeeper hardware exceptions per second','clickhouse.zookeeper.hw_exceptions.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of ZooKeeper exceptions caused by session moved/expired, connection loss, marshalling error, operation timed out and invalid zhandle state.','0','30d','0','','30825','3s','','','','200','1','0','','0','0','0','0','0','0','0','f8e6a866d8c745d39ed124f19afe8041');
INSERT INTO `items` (`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`,`uuid`) values ('30846','18','','10323','ClickHouse: Uptime','clickhouse.uptime','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of seconds since ClickHouse server start','0','30d','0','','30824','3s','','','','200','1','0','','0','0','0','0','0','0','0','99b894b181b44a4f8ef10280b881b273');
INSERT INTO `items` (`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`,`uuid`) values ('30847','18','','10323','ClickHouse: Current running queries','clickhouse.query.current','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of executing queries','0','30d','0','','30826','3s','','','','200','1','0','','0','0','0','0','0','0','0','071ae233708b417b97cfeced5021c139');
INSERT INTO `items` (`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`,`uuid`) values ('30848','18','','10323','ClickHouse: Current distribute connections','clickhouse.connections.distribute','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections to remote servers sending data that was INSERTed into Distributed tables.','0','30d','0','','30826','3s','','','','200','1','0','','0','0','0','0','0','0','0','595446e408b844519e8db1ea91543134');
INSERT INTO `items` (`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`,`uuid`) values ('30849','18','','10323','ClickHouse: Current HTTP connections','clickhouse.connections.http','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections to HTTP server.','0','30d','0','','30826','3s','','','','200','1','0','','0','0','0','0','0','0','0','d2d72a607672442b957228f0bea8dcca');
INSERT INTO `items` (`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`,`uuid`) values ('30850','18','','10323','ClickHouse: Allocated bytes','clickhouse.jemalloc.allocated','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'"Total number of bytes allocated by the application."','0','30d','0','','30824','3s','','','','200','1','0','','0','0','0','0','0','0','0','04c970694a6f40c89e4d3b53f27b7530');
INSERT INTO `items` (`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`,`uuid`) values ('30851','18','','10323','ClickHouse: Current Interserver connections','clickhouse.connections.interserver','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections from other replicas to fetch parts.','0','30d','0','','30826','3s','','','','200','1','0','','0','0','0','0','0','0','0','0829591332244c75a219f3b811ebf9ce');
INSERT INTO `items` (`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`,`uuid`) values ('30852','18','','10323','ClickHouse: Current MySQL connections','clickhouse.connections.mysql','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections to MySQL server.','0','30d','0','','30826','3s','','','','200','1','0','','0','0','0','0','0','0','0','88d4855d22604d79927d40c0d3b106c5');
INSERT INTO `items` (`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`,`uuid`) values ('30853','18','','10323','ClickHouse: Current TCP connections','clickhouse.connections.tcp','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections to TCP server (clients with native interface).','0','30d','0','','30826','3s','','','','200','1','0','','0','0','0','0','0','0','0','11786fff830d4d79b914a22c5f85da7f');
INSERT INTO `items` (`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`,`uuid`) values ('30854','18','','10323','ClickHouse: Current distributed files to insert','clickhouse.distributed.files','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of pending files to process for asynchronous insertion into Distributed tables. Number of files for every shard is summed.','0','30d','0','','30826','3s','','','','200','1','0','','0','0','0','0','0','0','0','b7bbca72bbd14b20930e60c3c1cdcb8e');
INSERT INTO `items` (`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`,`uuid`) values ('30855','18','','10323','ClickHouse: Distributed connection fail with retry per second','clickhouse.distributed.files.fail.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'"Connection failures after all retries in replicated DB connection pool"','0','30d','0','','30825','3s','','','','200','1','0','','0','0','0','0','0','0','0','e056f8519dec4c8dace036bf993a6d47');
INSERT INTO `items` (`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`,`uuid`) values ('30856','18','','10323','ClickHouse: Distributed connection fail with retry per second','clickhouse.distributed.files.retry.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Connection retries in replicated DB connection pool','0','30d','0','','30825','3s','','','','200','1','0','','0','0','0','0','0','0','0','3859c5ee6f25419f9da7e7899c9a71af');
INSERT INTO `items` (`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`,`uuid`) values ('30857','18','','10323','ClickHouse: New INSERT queries per second','clickhouse.insert_query.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of INSERT queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries.','0','30d','0','','30825','3s','','','','200','1','0','','0','0','0','0','0','0','0','410f7ee66ee84e3eb27940312ddf23d2');
INSERT INTO `items` (`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`,`uuid`) values ('30858','18','','10323','ClickHouse: Delayed insert queries','clickhouse.insert.delay','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'"Number of INSERT queries that are throttled due to high number of active data parts for partition in a MergeTree table."','0','30d','0','','30826','3s','','','','200','1','0','','0','0','0','0','0','0','0','81130b88e0b04b9ea677a80b6fd6ce22');
INSERT INTO `items` (`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`,`uuid`) values ('30859','18','','10323','ClickHouse: Inserted bytes per second','clickhouse.inserted_bytes.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of uncompressed bytes inserted in all tables.','0','30d','0','','30825','3s','','','','200','1','0','','0','0','0','0','0','0','0','e2477dd38510489c8ea7509e9a37cb50');
INSERT INTO `items` (`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`,`uuid`) values ('30860','18','','10323','ClickHouse: Inserted rows per second','clickhouse.inserted_rows.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of rows inserted in all tables.','0','30d','0','','30825','3s','','','','200','1','0','','0','0','0','0','0','0','0','e09cfd7db8be48a485bda8c5f033d210');
INSERT INTO `items` (`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`,`uuid`) values ('30861','18','','10323','ClickHouse: Mapped memory','clickhouse.jemalloc.mapped','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'"Total number of bytes in active extents mapped by the allocator."','0','30d','0','','30824','3s','','','','200','1','0','','0','0','0','0','0','0','0','7aa71031aec74fbb9a2ec126076705a2');
INSERT INTO `items` (`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`,`uuid`) values ('30862','18','','10323','ClickHouse: Network errors per second','clickhouse.network.error.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Network errors (timeouts and connection failures) during query execution, background pool tasks and DNS cache update.','0','30d','0','','30825','3s','','','','200','1','0','','0','0','0','0','0','0','0','83061f56dce24364906cae761419b148');
INSERT INTO `items` (`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`,`uuid`) values ('30863','18','','10323','ClickHouse: Resident memory','clickhouse.jemalloc.resident','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum number of bytes in physically resident data pages mapped by the allocator,\r\ncomprising all pages dedicated to allocator metadata, pages backing active allocations,\r\nand unused dirty pages.','0','30d','0','','30824','3s','','','','200','1','0','','0','0','0','0','0','0','0','32cc450854e94c6a9adbdde3c76b94d7');
INSERT INTO `items` (`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`,`uuid`) values ('30864','18','','10323','ClickHouse: Max count of parts per partition across all tables','clickhouse.max.part.count.for.partition','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Clickhouse MergeTree table engine split each INSERT query to partitions (PARTITION BY expression) and add one or more PARTS per INSERT inside each partition,\r\nafter that background merge process run.','0','30d','0','','30824','3s','','','','200','1','0','','0','0','0','0','0','0','0','c99265c296f14189aaf65bf68b7d5037');
INSERT INTO `items` (`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`,`uuid`) values ('30865','18','','10323','ClickHouse: Memory used for queries','clickhouse.memory.tracking','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'"Total amount of memory (bytes) allocated in currently executing queries."','0','30d','0','','30826','3s','','','','200','1','0','','0','0','0','0','0','0','0','a4344162643142c9be3b09439b466a5d');
INSERT INTO `items` (`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`,`uuid`) values ('30866','18','','10323','ClickHouse: Memory used for background merges','clickhouse.memory.tracking.background','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'"Total amount of memory (bytes) allocated in background processing pool (that is dedicated for background merges, mutations and fetches).\r\n Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa. This happens naturally due to caches for tables indexes and doesn\'t indicate memory leaks."','0','30d','0','','30826','3s','','','','200','1','0','','0','0','0','0','0','0','0','921670c46d9a4e5b85f2049d64298ab4');
INSERT INTO `items` (`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`,`uuid`) values ('30867','18','','10323','ClickHouse: Memory used for background moves','clickhouse.memory.tracking.background.moves','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'"Total amount of memory (bytes) allocated in background processing pool (that is dedicated for background moves). Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa.\r\n This happens naturally due to caches for tables indexes and doesn\'t indicate memory leaks."','0','30d','0','','30826','3s','','','','200','1','0','','0','0','0','0','0','0','0','f881ea3cb2a2434d9cfac0d0896279f5');
INSERT INTO `items` (`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`,`uuid`) values ('30868','18','','10323','ClickHouse: Memory used for merges','clickhouse.memory.tracking.merges','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of memory (bytes) allocated for background merges. Included in MemoryTrackingInBackgroundProcessingPool. Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa.\r\nThis happens naturally due to caches for tables indexes and doesn\'t indicate memory leaks.','0','30d','0','','30826','3s','','','','200','1','0','','0','0','0','0','0','0','0','3cd23448136c4ea8892483b1fbacec82');
INSERT INTO `items` (`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`,`uuid`) values ('30869','18','','10323','ClickHouse: Memory used for background schedule pool','clickhouse.memory.tracking.schedule.pool','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'"Total amount of memory (bytes) allocated in background schedule pool (that is dedicated for bookkeeping tasks of Replicated tables)."','0','30d','0','','30826','3s','','','','200','1','0','','0','0','0','0','0','0','0','1f4641ef040546e0afcccc818f4d3471');
INSERT INTO `items` (`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`,`uuid`) values ('30870','18','','10323','ClickHouse: Uncompressed bytes merged per second','clickhouse.merge_bytes.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Uncompressed bytes that were read for background merges','0','30d','0','','30825','3s','','','','200','1','0','','0','0','0','0','0','0','0','50e33e8fc1904870bdc6d7f13d16943d');
INSERT INTO `items` (`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`,`uuid`) values ('30871','18','','10323','ClickHouse: Merged rows per second','clickhouse.merge_rows.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rows read for background merges.','0','30d','0','','30825','3s','','','','200','1','0','','0','0','0','0','0','0','0','a2afbf66601344bdb5ab72a7374bbe8b');
INSERT INTO `items` (`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`,`uuid`) values ('30872','18','','10323','ClickHouse: Current running merges','clickhouse.merge.current','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of executing background merges','0','30d','0','','30826','3s','','','','200','1','0','','0','0','0','0','0','0','0','5e98b9c4f1ee42238f363d76354ef537');
INSERT INTO `items` (`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`,`uuid`) values ('30873','18','','10323','ClickHouse: ZooKeeper watches','clickhouse.zookeeper.watch','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of watches (e.g., event subscriptions) in ZooKeeper.','0','30d','0','','30826','3s','','','','200','1','0','','0','0','0','0','0','0','0','696aa071a9b24b29acbce2f1b5c49da3');
INSERT INTO `items` (`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`,`uuid`) values ('30874','18','','10323','Dictionaries','clickhouse.dictionaries.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Info about dictionaries','0','30d','1','','30830','3s','','','','200','1','0','','0','0','0','0','0','0','0','add428c918e34dc9aeb58f946f16cbd2');
INSERT INTO `items` (`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`,`uuid`) values ('30875','18','','10323','Replicas','clickhouse.replicas.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Info about replicas','0','30d','1','','30823','3s','','','','200','1','0','','0','0','0','0','0','0','0','ddb7c8c688264a5a8907fbdd6974d395');
INSERT INTO `items` (`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`,`uuid`) values ('30876','18','','10323','Tables','clickhouse.tables.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Info about tables','0','30d','1','','30828','3s','','','','200','1','0','','0','0','0','0','0','0','0','a82f8d0f0a4b493dab0c2133b90113cc');
INSERT INTO `items` (`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`,`uuid`) values ('30877','18','','10323','ClickHouse: Dictionary {#NAME}: Bytes allocated','clickhouse.dictionary.bytes_allocated["{#NAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of RAM the dictionary uses.','0','30d','0','','30830','3s','','','','200','1','0','','0','0','0','0','0','0','0','18cc050ff9c84d01ab61df1283fcce97');
INSERT INTO `items` (`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`,`uuid`) values ('30878','18','','10323','ClickHouse: Dictionary {#NAME}: Element count','clickhouse.dictionary.element_count["{#NAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of items stored in the dictionary.','0','30d','0','','30830','3s','','','','200','1','0','','0','0','0','0','0','0','0','fa4efa26e3f64fc89c9d7dad39a610ca');
INSERT INTO `items` (`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`,`uuid`) values ('30879','18','','10323','ClickHouse: Dictionary {#NAME}: Load factor','clickhouse.dictionary.load_factor["{#NAME}"]','0','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage filled in the dictionary (for a hashed dictionary, the percentage filled in the hash table).','0','30d','0','','30830','3s','','','','200','1','0','','0','0','0','0','0','0','0','d9e333b7c1694ef482683679275dcd8d');
INSERT INTO `items` (`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`,`uuid`) values ('30880','18','','10323','ClickHouse: {#DB}.{#TABLE}: Active replicas','clickhouse.replica.active_replicas["{#DB}.{#TABLE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of replicas of this table that have a session in ZooKeeper (i.e., the number of functioning replicas). (Have a non-zero value only where there is an active session with ZooKeeper).','0','30d','0','','30823','3s','','','','200','1','0','','0','0','0','0','0','0','0','be577e21420244cb9d47c9fb9e23904a');
INSERT INTO `items` (`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`,`uuid`) values ('30881','18','','10323','ClickHouse: {#DB}.{#TABLE}: Replica future parts','clickhouse.replica.future_parts["{#DB}.{#TABLE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of data parts that will appear as the result of INSERTs or merges that haven\'t been done yet.','0','30d','0','','30823','3s','','','','200','1','0','','0','0','0','0','0','0','0','0a84f6788b3f447d958e031df0e2301c');
INSERT INTO `items` (`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`,`uuid`) values ('30882','18','','10323','ClickHouse: {#DB}.{#TABLE}: Replica queue inserts size','clickhouse.replica.inserts_in_queue["{#DB}.{#TABLE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of inserts of blocks of data that need to be made.','0','30d','0','','30823','3s','','','','200','1','0','','0','0','0','0','0','0','0','6b49a71fcf244b8cb88e21423ac92ae2');
INSERT INTO `items` (`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`,`uuid`) values ('30883','18','','10323','ClickHouse: {#DB}.{#TABLE}: Replica readonly','clickhouse.replica.is_readonly["{#DB}.{#TABLE}"]','0','7d','365d','0','3','','','','',NULL,'149','','','0','','','','','2',NULL,'Whether the replica is in read-only mode.\r\nThis mode is turned on if the config doesn\'t have sections with ZooKeeper, if an unknown error occurred when re-initializing sessions in ZooKeeper, and during session re-initialization in ZooKeeper.','0','30d','0','','30823','3s','','','','200','1','0','','0','0','0','0','0','0','0','29977fdd52c64c4ca0b3565187365a0c');
INSERT INTO `items` (`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`,`uuid`) values ('30884','18','','10323','ClickHouse: {#DB}.{#TABLE}: Replica session expired','clickhouse.replica.is_session_expired["{#DB}.{#TABLE}"]','0','7d','365d','0','3','','','','',NULL,'149','','','0','','','','','2',NULL,'True if the ZooKeeper session expired','0','30d','0','','30823','3s','','','','200','1','0','','0','0','0','0','0','0','0','a889475b8ddf48109af3dd2b7ed58627');
INSERT INTO `items` (`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`,`uuid`) values ('30885','18','','10323','ClickHouse: {#DB}.{#TABLE}: Replica lag','clickhouse.replica.lag["{#DB}.{#TABLE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Difference between log_max_index and log_pointer','0','30d','0','','30823','3s','','','','200','1','0','','0','0','0','0','0','0','0','8acd6e2195064708886d9944af264c32');
INSERT INTO `items` (`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`,`uuid`) values ('30886','18','','10323','ClickHouse: {#DB}.{#TABLE}: Replica log max index','clickhouse.replica.log_max_index["{#DB}.{#TABLE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum entry number in the log of general activity. (Have a non-zero value only where there is an active session with ZooKeeper).','0','30d','0','','30823','3s','','','','200','1','0','','0','0','0','0','0','0','0','267603d761864e4cbf764558520ed83c');
INSERT INTO `items` (`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`,`uuid`) values ('30887','18','','10323','ClickHouse: {#DB}.{#TABLE}: Replica log pointer','clickhouse.replica.log_pointer["{#DB}.{#TABLE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum entry number in the log of general activity that the replica copied to its execution queue, plus one. (Have a non-zero value only where there is an active session with ZooKeeper).','0','30d','0','','30823','3s','','','','200','1','0','','0','0','0','0','0','0','0','93bf89b0befa4c238f2143c1841ef629');
INSERT INTO `items` (`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`,`uuid`) values ('30888','18','','10323','ClickHouse: {#DB}.{#TABLE}: Replica queue merges size','clickhouse.replica.merges_in_queue["{#DB}.{#TABLE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of merges waiting to be made.','0','30d','0','','30823','3s','','','','200','1','0','','0','0','0','0','0','0','0','7b0da84f1e3f4705a209c6be025fc738');
INSERT INTO `items` (`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`,`uuid`) values ('30889','18','','10323','ClickHouse: {#DB}.{#TABLE}: Replica parts to check','clickhouse.replica.parts_to_check["{#DB}.{#TABLE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of data parts in the queue for verification. A part is put in the verification queue if there is suspicion that it might be damaged.','0','30d','0','','30823','3s','','','','200','1','0','','0','0','0','0','0','0','0','51a83465b90e4c82835030fec4f79b6f');
INSERT INTO `items` (`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`,`uuid`) values ('30890','18','','10323','ClickHouse: {#DB}.{#TABLE}: Replica queue size','clickhouse.replica.queue_size["{#DB}.{#TABLE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Size of the queue for operations waiting to be performed.','0','30d','0','','30823','3s','','','','200','1','0','','0','0','0','0','0','0','0','52ef1c26f14842868424f0c5bf81b35b');
INSERT INTO `items` (`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`,`uuid`) values ('30891','18','','10323','ClickHouse: {#DB}.{#TABLE}: Total replicas','clickhouse.replica.total_replicas["{#DB}.{#TABLE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of known replicas of this table. (Have a non-zero value only where there is an active session with ZooKeeper).','0','30d','0','','30823','3s','','','','200','1','0','','0','0','0','0','0','0','0','0fc2781f4be44f0e85176e5ed05dc05e');
INSERT INTO `items` (`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`,`uuid`) values ('30892','18','','10323','ClickHouse: {#DB}: Bytes','clickhouse.db.bytes["{#DB}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Database size in bytes.','0','30d','0','','30828','3s','','','','200','1','0','','0','0','0','0','0','0','0','f7bb82b047a84c0185b5ca040a75e287');
INSERT INTO `items` (`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`,`uuid`) values ('30893','18','','10323','ClickHouse: {#DB}.{#TABLE}: Bytes','clickhouse.table.bytes["{#DB}.{#TABLE}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Table size in bytes. Database: {#DB}, table: {#TABLE}','0','30d','0','','30828','3s','','','','200','1','0','','0','0','0','0','0','0','0','3075954290af4f35b1620a5f15d2947d');
INSERT INTO `items` (`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`,`uuid`) values ('30894','18','','10323','ClickHouse: {#DB}.{#TABLE}: Parts','clickhouse.table.parts["{#DB}.{#TABLE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of parts of the table. Database: {#DB}, table: {#TABLE}','0','30d','0','','30828','3s','','','','200','1','0','','0','0','0','0','0','0','0','e50e12adb7ef47e6ba40db01e7ae01e4');
INSERT INTO `items` (`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`,`uuid`) values ('30895','18','','10323','ClickHouse: {#DB}.{#TABLE}: Rows','clickhouse.table.rows["{#DB}.{#TABLE}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of rows in the table. Database: {#DB}, table: {#TABLE}','0','30d','0','','30828','3s','','','','200','1','0','','0','0','0','0','0','0','0','0ba557c544854f47bcd9cc65d33f14e7');
INSERT INTO `items` (`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`,`uuid`) values ('30897','18','','10264','Apache: Workers reading request','apache.workers.reading','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of workers in reading state','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','6c38147f9f3449a194f36a6e6d828865');
INSERT INTO `items` (`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`,`uuid`) values ('30898','18','','10264','Apache: Workers waiting for connection','apache.workers.waiting','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of workers in waiting state','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','ec87e89ee9304acd8c7a76e863cb4443');
INSERT INTO `items` (`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`,`uuid`) values ('30899','18','','10264','Apache: Workers starting up','apache.workers.starting','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of workers in starting state','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','441c797164bf4c8da8112d78240abc43');
INSERT INTO `items` (`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`,`uuid`) values ('30900','18','','10264','Apache: Workers slot with no current process','apache.workers.slot','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of slots with no current process','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','60cf954a40594cf69afdd1bf0319c031');
INSERT INTO `items` (`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`,`uuid`) values ('30901','18','','10264','Apache: Workers sending reply','apache.workers.sending','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of workers in sending state','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','47856ac3b68644e0861b593d3083d35b');
INSERT INTO `items` (`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`,`uuid`) values ('30902','18','','10264','Apache: Total bytes','apache.bytes','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total bytes served','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','2d3ebb059bd944ee8a7b95e2c60b08f0');
INSERT INTO `items` (`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`,`uuid`) values ('30903','18','','10264','Apache: Bytes per second','apache.bytes.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as change rate for \'Total bytes\' stat.\r\nBytesPerSec is not used, as it counts average since last Apache server start.','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','be97c53d82f846cdbc2d0ec640435b6f');
INSERT INTO `items` (`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`,`uuid`) values ('30904','18','','10264','Apache: Workers keepalive (read)','apache.workers.keepalive','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of workers in keepalive state','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','2a02413c0e9144b4a70b8a5a71d680e0');
INSERT INTO `items` (`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`,`uuid`) values ('30905','18','','10264','Apache: Workers finishing','apache.workers.finishing','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of workers in finishing state','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','fd383c9ace4647deb9d3e3882554b8d0');
INSERT INTO `items` (`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`,`uuid`) values ('30906','18','','10264','Apache: Workers DNS lookup','apache.workers.dnslookup','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of workers in dnslookup state','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','6a961707e7084d8ebc09f572b15ef1fd');
INSERT INTO `items` (`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`,`uuid`) values ('30907','18','','10264','Apache: Workers closing connection','apache.workers.closing','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of workers in closing state','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','ebd391702cbd432ab458578a3cb45361');
INSERT INTO `items` (`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`,`uuid`) values ('30908','18','','10264','Apache: Workers idle cleanup','apache.workers.cleanup','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of workers in cleanup state','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','35f48761ec6d451bbb8b0d80cd0ccd91');
INSERT INTO `items` (`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`,`uuid`) values ('30909','18','','10264','Apache: Total workers idle','apache.workers_total.idle','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of idle worker threads/processes','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','6955f78c203b435987b5ab75a1114867');
INSERT INTO `items` (`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`,`uuid`) values ('30910','18','','10264','Apache: Total workers busy','apache.workers_total.busy','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of busy worker threads/processes','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','b52addb50ccb415fb63eaf67076991c1');
INSERT INTO `items` (`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`,`uuid`) values ('30911','18','','10264','Apache: Version','apache.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Service version','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','78a611c2b15c4ae8949257b6fdf922f1');
INSERT INTO `items` (`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`,`uuid`) values ('30912','18','','10264','Apache: Uptime','apache.uptime','0','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'Service uptime in seconds','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','5a4bd2d6c2874d888ec4c82409e1c711');
INSERT INTO `items` (`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`,`uuid`) values ('30913','18','','10264','Apache: Requests per second','apache.requests.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as change rate for \'Total requests\' stat.\r\nReqPerSec is not used, as it counts average since last Apache server start.','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','7e1e674a23d24fafa31b76a048fe9fd0');
INSERT INTO `items` (`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`,`uuid`) values ('30914','18','','10264','Apache: Total requests','apache.requests','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A total number of accesses','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','5919f29c692b468fb5642e83f408c2e5');
INSERT INTO `items` (`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`,`uuid`) values ('30915','18','','10264','Apache: Workers logging','apache.workers.logging','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of workers in logging state','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','ed71fb2ec75f4537a2937293add75274');
INSERT INTO `items` (`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`,`uuid`) values ('30916','18','','10264','Event MPM discovery','apache.mpm.event.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Additional metrics if event MPM is used\r\nhttps://httpd.apache.org/docs/current/mod/event.html','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','36a82bdda7754c51a05da3bb0b65b83e');
INSERT INTO `items` (`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`,`uuid`) values ('30917','18','','10264','Apache: Bytes per request','apache.bytes[per_request{#SINGLETON}]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Average number of client requests per second','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','99df2ff5970b4497887371bcd16d5ada');
INSERT INTO `items` (`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`,`uuid`) values ('30918','18','','10264','Apache: Connections async closing','apache.connections[async_closing{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of async connections in closing state (only applicable to event MPM)','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','2e0692f36b924b52ab7b2ff7788b641d');
INSERT INTO `items` (`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`,`uuid`) values ('30919','18','','10264','Apache: Connections async keep alive','apache.connections[async_keep_alive{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of async connections in keep-alive state (only applicable to event MPM)','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','33d3fec8f45c493097bab986d5ea1e55');
INSERT INTO `items` (`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`,`uuid`) values ('30920','18','','10264','Apache: Connections async writing','apache.connections[async_writing{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of async connections in writing state (only applicable to event MPM)','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','9ad0e5c49e7c4b939eb7977a5158953f');
INSERT INTO `items` (`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`,`uuid`) values ('30921','18','','10264','Apache: Connections total','apache.connections[total{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of total connections','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','0fbfbfae187040c790bb4d68f9e2fae5');
INSERT INTO `items` (`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`,`uuid`) values ('30922','18','','10264','Apache: Number of async processes','apache.process[num{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of async processes','0','30d','0','','30896','3s','','','','200','1','0','','0','0','0','0','0','0','0','778a1bfeaa1b474ba529e6c0a55a9949');
INSERT INTO `items` (`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`,`uuid`) values ('30927','18','','10324','Etcd: Open file descriptors','etcd.open.fds','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open file descriptors.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','d5099d4cdb3044ba95935c2aea2b6352');
INSERT INTO `items` (`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`,`uuid`) values ('30928','18','','10324','Etcd: Proposals applied per second','etcd.proposals.applied.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of consensus proposals applied.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','a2927b1e85af41cab9c28b1b79c229ea');
INSERT INTO `items` (`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`,`uuid`) values ('30929','18','','10324','Etcd: Proposals committed per second','etcd.proposals.committed.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of consensus proposals committed.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','e829f3df055e42dfbce5f27eb7ca487c');
INSERT INTO `items` (`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`,`uuid`) values ('30930','18','','10324','Etcd: Proposals failed per second','etcd.proposals.failed.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of failed proposals seen.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','6b45b99526394a219d31b5c22cb98c85');
INSERT INTO `items` (`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`,`uuid`) values ('30931','18','','10324','Etcd: Proposals pending','etcd.proposals.pending','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of pending proposals to commit.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','1c506ff69e7b4564a6d95fd35b1a11fd');
INSERT INTO `items` (`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`,`uuid`) values ('30932','18','','10324','Etcd: PUT per second','etcd.put.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of puts seen by this member per second.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','bd7398507c274bfab53339380df16761');
INSERT INTO `items` (`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`,`uuid`) values ('30933','18','','10324','Etcd: Range per second','etcd.range.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of ranges seen by this member per second.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','b744c07f3290467b96b21ea38ad5d497');
INSERT INTO `items` (`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`,`uuid`) values ('30934','18','','10324','Etcd: Reads per second','etcd.reads.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of reads action by (get/getRecursive), local to this member.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','88c91b36eca94fd2b357a67d171dc621');
INSERT INTO `items` (`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`,`uuid`) values ('30935','18','','10324','Etcd: Client gRPC received bytes per second','etcd.network.grpc.received.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes received from grpc clients per second.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','d016b8674ebd4251943f2e94b22f5ff2');
INSERT INTO `items` (`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`,`uuid`) values ('30936','18','','10324','Etcd: Resident memory','etcd.res.bytes','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident memory size in bytes.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','4b881e32094e4f478c5d0849cb5d07a7');
INSERT INTO `items` (`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`,`uuid`) values ('30937','18','','10324','Etcd: Server version','etcd.server.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the Etcd server.','0','30d','0','','30926','3s','','','','200','1','0','','0','0','0','0','0','0','0','dee9ed8897cf4d3582957707ea09cdf8');
INSERT INTO `items` (`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`,`uuid`) values ('30938','18','','10324','Etcd: Transaction per second','etcd.txn.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of transactions seen by this member per second.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','b14c787c716146e990bc388d277a2803');
INSERT INTO `items` (`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`,`uuid`) values ('30939','18','','10324','Etcd: Uptime','etcd.uptime','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Etcd server uptime.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','98ec9085d621446aa462efc86cf93905');
INSERT INTO `items` (`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`,`uuid`) values ('30940','18','','10324','Etcd: Virtual memory','etcd.virtual.bytes','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Virtual memory size in bytes.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','c35810b8b7bc4a62970b5293fb2d8fb2');
INSERT INTO `items` (`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`,`uuid`) values ('30941','18','','10324','Etcd: Writes per second','etcd.writes.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of writes (e.g. set/compareAndDelete) seen by this member.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','16c041fc189248bfaaa5826ffaf38459');
INSERT INTO `items` (`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`,`uuid`) values ('30942','18','','10324','Etcd: Client gRPC sent bytes per second','etcd.network.grpc.sent.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes sent from grpc clients per second.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','e50d2d088c6448dbb3ecaeebc3b2b8f1');
INSERT INTO `items` (`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`,`uuid`) values ('30943','18','','10324','Etcd: Cluster version','etcd.cluster.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the Etcd cluster.','0','30d','0','','30926','3s','','','','200','1','0','','0','0','0','0','0','0','0','32a59c8e93e141d6a471266df6dbfbd3');
INSERT INTO `items` (`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`,`uuid`) values ('30944','18','','10324','Etcd: Maximum open file descriptors','etcd.max.fds','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Maximum number of open file descriptors.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','348e15d2ec3a4bb88e2ca371f96c2f00');
INSERT INTO `items` (`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`,`uuid`) values ('30945','18','','10324','Etcd: Server has a leader','etcd.has.leader','0','7d','365d','0','3','','','','',NULL,'151','','','0','','','','','0',NULL,'Whether or not a leader exists. 1 is existence, 0 is not.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','e03575f4c472410eb6fbcf731ac6aab2');
INSERT INTO `items` (`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`,`uuid`) values ('30946','18','','10324','Etcd: DB size','etcd.db.size','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total size of the underlying database.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','bfa5bd42637642808802f7b2485a0c4d');
INSERT INTO `items` (`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`,`uuid`) values ('30947','18','','10324','Etcd: Deletes per second','etcd.delete.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of deletes seen by this member per second.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','a5bc7ffb090641ab92f537b38b6055e5');
INSERT INTO `items` (`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`,`uuid`) values ('30948','18','','10324','Etcd: Pending events','etcd.events.sent.rate','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of pending events to be sent.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','183843bd93f84dc887a03fb638b2d323');
INSERT INTO `items` (`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`,`uuid`) values ('30949','18','','10324','Etcd: RPCs received per second','etcd.grpc.received.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of RPC stream messages received on the server.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','d23baf75628043e193ba0a607e1b4215');
INSERT INTO `items` (`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`,`uuid`) values ('30950','18','','10324','Etcd: RPCs sent per second','etcd.grpc.sent.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of gRPC stream messages sent by the server.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','eda81182710e47e1b5f2f21bb05b4775');
INSERT INTO `items` (`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`,`uuid`) values ('30951','18','','10324','Etcd: RPCs started per second','etcd.grpc.started.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of RPCs started on the server.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','bf59a130b20d480d93eb9330750e8e28');
INSERT INTO `items` (`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`,`uuid`) values ('30952','18','','10324','Etcd: HTTP 4XX','etcd.http.requests.4xx.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of handle failures of requests (non-watches), by method (GET/PUT etc.), and code 4XX.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','923a408dd4514e808b6e2137a94f8140');
INSERT INTO `items` (`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`,`uuid`) values ('30953','18','','10324','Etcd: CPU','etcd.cpu.util','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total user and system CPU time spent in seconds.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','04b0fa552b7d4267b4c5b67ee82ef5f1');
INSERT INTO `items` (`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`,`uuid`) values ('30954','18','','10324','Etcd: HTTP 5XX','etcd.http.requests.5xx.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of handle failures of requests (non-watches), by method (GET/PUT etc.), and code 5XX.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','c0f27d4bfba344079a31ce8c10b22683');
INSERT INTO `items` (`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`,`uuid`) values ('30955','18','','10324','Etcd: HTTP requests received','etcd.http.requests.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of requests received into the system (successfully parsed and authd).','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','2a19db1c58ee4a509061fcb1b557c1a3');
INSERT INTO `items` (`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`,`uuid`) values ('30956','18','','10324','Etcd: Server is a leader','etcd.is.leader','0','7d','365d','0','3','','','','',NULL,'151','','','0','','','','','0',NULL,'Whether or not this member is a leader. 1 if is, 0 otherwise.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','b3760811472440baad6a338f481ba13a');
INSERT INTO `items` (`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`,`uuid`) values ('30957','18','','10324','Etcd: Keys compacted per second','etcd.keys.compacted.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of DB keys compacted per second.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','ecd1ae9c038f4fc2b720ad562ced0191');
INSERT INTO `items` (`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`,`uuid`) values ('30958','18','','10324','Etcd: Keys expired per second','etcd.keys.expired.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of expired keys per second.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','a3f910efb0a04cc494c07b8703f9d2ec');
INSERT INTO `items` (`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`,`uuid`) values ('30959','18','','10324','Etcd: Keys total','etcd.keys.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of keys.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','fbda737014544cf1bcf544a48aa6e48b');
INSERT INTO `items` (`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`,`uuid`) values ('30960','18','','10324','Etcd: Leader changes','etcd.leader.changes','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of leader changes the member has seen since its start.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','e45ba61d99b8432b86f5797a2cfdb416');
INSERT INTO `items` (`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`,`uuid`) values ('30961','18','','10324','gRPC codes discovery','etcd.grpc_code.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','1','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','5e6121383e5d4f3eb1150a2068a4633b');
INSERT INTO `items` (`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`,`uuid`) values ('30962','18','','10324','Peers discovery','etcd.peer.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','b7b527ee30b84a569afcd1f85b705810');
INSERT INTO `items` (`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`,`uuid`) values ('30963','18','','10324','Etcd: RPCs completed with code {#GRPC.CODE}','etcd.grpc.handled.rate[{#GRPC.CODE}]','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of RPCs completed on the server with grpc_code {#GRPC.CODE}.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','7d316cbec2ce4718ac133d90b7a89585');
INSERT INTO `items` (`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`,`uuid`) values ('30964','18','','10324','Etcd: Etcd peer {#ETCD.PEER}: Bytes received','etcd.bytes.received.rate[{#ETCD.PEER}]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of bytes received from peer with ID {#ETCD.PEER}.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','4129aa7b8acf4ca3b5476461fe5275c9');
INSERT INTO `items` (`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`,`uuid`) values ('30965','18','','10324','Etcd: Etcd peer {#ETCD.PEER}: Bytes sent','etcd.bytes.sent.rate[{#ETCD.PEER}]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of bytes sent to peer with ID {#ETCD.PEER}.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','8f5fecbabe474baaab40df46879401af');
INSERT INTO `items` (`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`,`uuid`) values ('30966','18','','10324','Etcd: Etcd peer {#ETCD.PEER}: Receive failures','etcd.received.fail.rate[{#ETCD.PEER}]','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of receive failures from the peer with ID {#ETCD.PEER}.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','2521ccfc16fc43069001883b85aa0243');
INSERT INTO `items` (`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`,`uuid`) values ('30967','18','','10324','Etcd: Etcd peer {#ETCD.PEER}: Send failures','etcd.sent.fail.rate[{#ETCD.PEER}]','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of send failures from peer with ID {#ETCD.PEER}.','0','30d','0','','30925','3s','','','','200','1','0','','0','0','0','0','0','0','0','5756f1a16e5c42b79f6d6225c5382599');
INSERT INTO `items` (`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`,`uuid`) values ('31052','18','','10262','Remote Zabbix proxy: Version','version','0','1w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of Zabbix proxy.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','ba19f24c2e234ac89a12a4a7aceeff93');
INSERT INTO `items` (`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`,`uuid`) values ('31053','18','','10261','Remote Zabbix server: Version','version','0','1w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of Zabbix server.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','f0eab81aaf464b809ea4d487548e57c6');
INSERT INTO `items` (`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`,`uuid`) values ('31059','18','','10327','MSSQL: Average latch wait time base','mssql.average_latch_wait_time_base','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'For internal use only.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','f9d78cd9c941471287a24ca94005e9ac');
INSERT INTO `items` (`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`,`uuid`) values ('31060','18','','10327','MSSQL: Table lock escalations per second','mssql.table_lock_escalations.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times locks on a table were escalated to the TABLE or HoBT granularity.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','595aa3989b4e41cc8649827525adc0a0');
INSERT INTO `items` (`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`,`uuid`) values ('31061','18','','10327','MSSQL: Memory grants pending','mssql.memory_grants_pending','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Specifies the total number of processes waiting for a workspace memory grant.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','cb468e25c20f43f08fcefd45354ff882');
INSERT INTO `items` (`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`,`uuid`) values ('31062','18','','10327','MSSQL: Total lock requests per second that have deadlocks','mssql.number_deadlocks_sec.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of lock requests per second that resulted in a deadlock.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','18c0d77ded2b4533a559643006a93406');
INSERT INTO `items` (`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`,`uuid`) values ('31063','18','','10327','MSSQL: Errors per second (DB offline errors)','mssql.offline_errors_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors per second.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','bbb7fcac41b2403ab0b0c76f3437e81f');
INSERT INTO `items` (`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`,`uuid`) values ('31064','18','','10327','MSSQL: Page life expectancy','mssql.page_life_expectancy','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of seconds a page will stay in the buffer pool without references.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','94a869db684046d9b65db9ee022a9c9e');
INSERT INTO `items` (`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`,`uuid`) values ('31065','18','','10327','MSSQL: Page lookups per second','mssql.page_lookups_sec.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of requests per second to find a page in the buffer pool.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','628f787578e04b83882aca052a7f976a');
INSERT INTO `items` (`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`,`uuid`) values ('31066','18','','10327','MSSQL: Page reads per second','mssql.page_reads_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of physical database page reads that are issued per second. This statistic displays the total number of physical page reads across all databases. Because physical I/O is expensive, you may be able to minimize the cost, either by using a larger data cache, intelligent indexes, and more efficient queries, or by changing the database design.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','433257a5dfe4488c8073db03bfb05315');
INSERT INTO `items` (`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`,`uuid`) values ('31067','18','','10327','MSSQL: Page splits per second','mssql.page_splits_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of page splits per second that occur as the result of overflowing index pages.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','fc3dd6a1bf1242769e2b58f25421a19d');
INSERT INTO `items` (`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`,`uuid`) values ('31068','18','','10327','MSSQL: Page writes per second','mssql.page_writes_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of physical database page writes that are issued per second.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','a8b3639fe7b44d88a75e724c083518b5');
INSERT INTO `items` (`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`,`uuid`) values ('31069','18','','10327','MSSQL: Number of blocked processes','mssql.processes_blocked','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of currently blocked processes.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','5c0bee24f9494bb49860171ff875caf7');
INSERT INTO `items` (`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`,`uuid`) values ('31070','18','','10327','MSSQL: Read-ahead pages per second','mssql.readahead_pages_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of pages read per second in anticipation of use.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','fc14b0c814234b12a3943eb0435cd28c');
INSERT INTO `items` (`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`,`uuid`) values ('31071','18','','10327','MSSQL: Safe auto-params per second','mssql.safe_autoparams_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of safe auto-parameterization attempts per second. Safe refers to a determination that a cached execution plan can be shared between different similar-looking Transact-SQL statements. SQL Server makes many auto-parameterization attempts some of which turn out to be safe and others fail. Note that auto-parameterizations are also known as simple parameterizations in the newer versions of SQL Server. This does not include forced parameterizations.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','be47be0cbb924982aaf9573c5a233144');
INSERT INTO `items` (`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`,`uuid`) values ('31072','18','','10327','MSSQL: SQL compilations per second','mssql.sql_compilations_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of SQL compilations per second. Indicates the number of times the compile code path is entered. Includes runs caused by statement-level recompilations in SQL Server. After SQL Server user activity is stable, this value reaches a steady state.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','e9ea451a38424f6b9da59b8bbb068b51');
INSERT INTO `items` (`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`,`uuid`) values ('31073','18','','10327','MSSQL: SQL re-compilations per second','mssql.sql_recompilations_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of statement recompiles per second. Counts the number of times statement recompiles are triggered. Generally, you want the recompiles to be low.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','a72415acabda46309c4dbc692e026cc2');
INSERT INTO `items` (`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`,`uuid`) values ('31074','18','','10327','MSSQL: Target pages','mssql.target_pages','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The optimal number of pages in the buffer pool.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','37269b33e05349a1bfd05e4e493da6d4');
INSERT INTO `items` (`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`,`uuid`) values ('31075','18','','10327','MSSQL: Maximum workspace memory','mssql.maximum_workspace_memory','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the maximum amount of memory available for executing processes, such as hash, sort, bulk copy, and index creation operations.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','28c1045fb77249aea23f55f48dd89c69');
INSERT INTO `items` (`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`,`uuid`) values ('31076','18','','10327','MSSQL: Target server memory','mssql.target_server_memory','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the ideal amount of memory the server can consume.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','2679f7e843e549ce9468f6cab05a71d5');
INSERT INTO `items` (`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`,`uuid`) values ('31077','18','','10327','MSSQL: Total latch wait Time','mssql.total_latch_wait_time','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Total latch wait time (in milliseconds) for latch requests in the last second. This value should stay stable compared to the number of latch waits per second.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','8c7d63f3689f464394a6035a3cad4009');
INSERT INTO `items` (`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`,`uuid`) values ('31078','18','','10327','MSSQL: Total server memory','mssql.total_server_memory','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Specifies the amount of memory the server has committed using the memory manager.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','9112ed9b9d3741018d40f2dc892fa0f6');
INSERT INTO `items` (`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`,`uuid`) values ('31079','18','','10327','MSSQL: Total transactions number','mssql.transactions','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of currently active transactions of all types.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','273b373d8b41411fafcfd1e93bb8ce2c');
INSERT INTO `items` (`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`,`uuid`) values ('31080','18','','10327','MSSQL: Total transactions per second','mssql.transactions_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of transactions started for all databases per second.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','127e1f73ce414eeb87d2cbfef46ccdef');
INSERT INTO `items` (`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`,`uuid`) values ('31081','18','','10327','MSSQL: Unsafe auto-params per second','mssql.unsafe_autoparams_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of unsafe auto-parameterization attempts per second. For example, the query has some characteristics that prevent the cached plan from being shared. These are designated as unsafe. This does not count the number of forced parameterizations.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','ef6450dfcb9a476ca1bf97524e05d43d');
INSERT INTO `items` (`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`,`uuid`) values ('31082','18','','10327','MSSQL: Uptime','mssql.uptime','0','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MS SQL Server uptime in \'N days, hh:mm:ss\' format.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','27449e795c0a4e4e90c9ee6b6bf3df90');
INSERT INTO `items` (`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`,`uuid`) values ('31083','18','','10327','MSSQL: Number users connected','mssql.user_connections','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of users connected to MS SQL Server.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','4e13bfc5927a421fb2996eec7e013448');
INSERT INTO `items` (`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`,`uuid`) values ('31084','18','','10327','MSSQL: Errors per second (User errors)','mssql.user_errors_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors per second.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','5942cad838e8430a9ff71293dec52af8');
INSERT INTO `items` (`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`,`uuid`) values ('31085','18','','10327','MSSQL: Version','mssql.version','0','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MS SQL Server version.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','7013504d4a6c4b40a0aab11dab15d107');
INSERT INTO `items` (`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`,`uuid`) values ('31086','18','','10327','MSSQL: Work files created per second','mssql.workfiles_created_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of work files created per second. For example, work files can be used to store temporary results for hash joins and hash aggregates.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','ea84affd97864dfaad7edf31e16e1300');
INSERT INTO `items` (`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`,`uuid`) values ('31087','18','','10327','MSSQL: Work tables created per second','mssql.worktables_created_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of work tables created per second. For example, work tables can be used to store temporary results for query spool, lob variables, XML variables, and cursors.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','a38e7fdf994842558227dfad03e9943b');
INSERT INTO `items` (`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`,`uuid`) values ('31088','18','','10327','MSSQL: Worktables from cache ratio','mssql.worktables_from_cache_ratio','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of work tables created where the initial two pages of the work table were not allocated but were immediately available from the work table cache.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','d93779b26c1a4784be31d32130eebf92');
INSERT INTO `items` (`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`,`uuid`) values ('31089','18','','10327','MSSQL: Memory grants outstanding','mssql.memory_grants_outstanding','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Specifies the total number of processes that have successfully acquired a workspace memory grant.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','d39c5f2b89de4bc88c7724a8e2b270d7');
INSERT INTO `items` (`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`,`uuid`) values ('31090','18','','10327','MSSQL: Logouts per second','mssql.logouts_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of logout operations started per second. Any value over 2 may indicate insufficient connection pooling.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','cf4af2cbeaff42b2a71c91544286998f');
INSERT INTO `items` (`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`,`uuid`) values ('31091','18','','10327','MSSQL: Average latch wait time raw','mssql.average_latch_wait_time_raw','0','7d','365d','0','3','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Average latch wait time (in milliseconds) for latch requests that had to wait.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','7248e70669674ef5a7a85deb20b1fe8e');
INSERT INTO `items` (`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`,`uuid`) values ('31092','18','','10327','MSSQL: Forwarded records per second','mssql.forwarded_records_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of records per second fetched through forwarded record pointers.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','cee8f4d47d41463299c50b5c7925a650');
INSERT INTO `items` (`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`,`uuid`) values ('31093','18','','10327','MSSQL: Total average wait time base','mssql.average_wait_time_base','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'For internal use only.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','2a63096aa40a4374bdd7426b9fe0767e');
INSERT INTO `items` (`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`,`uuid`) values ('31094','18','','10327','MSSQL: Total average wait time raw','mssql.average_wait_time_raw','0','7d','365d','0','3','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Average amount of wait time (in milliseconds) for each lock request that resulted in a wait. Information for all locks.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','f0cd7858dabf4b7da93314dc9a8ddeaa');
INSERT INTO `items` (`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`,`uuid`) values ('31095','18','','10327','MSSQL: Batch requests per second','mssql.batch_requests_sec.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Transact-SQL command batches received per second. This statistic is affected by all constraints (such as I/O, number of users, cache size, complexity of requests, and so on). High batch requests mean good throughput.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','00b6e46811fd43a396e2a38dd976d220');
INSERT INTO `items` (`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`,`uuid`) values ('31096','18','','10327','MSSQL: Buffer cache hit ratio','mssql.buffer_cache_hit_ratio','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the percentage of pages found in the buffer cache without having to read from disk. The ratio is the total number of cache hits divided by the total number of cache lookups over the last few thousand page accesses. After a long period of time, the ratio changes very little. Since reading from the cache is much less expensive than reading from the disk, a higher value is preferred for this item. To increase the buffer cache hit ratio, consider increasing the amount of memory available to SQL Server or using the buffer pool extension feature.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','ed950d204a1f40a6925856828c7807aa');
INSERT INTO `items` (`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`,`uuid`) values ('31097','18','','10327','MSSQL: Cache hit ratio','mssql.cache_hit_ratio','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Ratio between cache hits and lookups.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','1900fc83a4d74c599f5f3438450b5d8b');
INSERT INTO `items` (`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`,`uuid`) values ('31098','18','','10327','MSSQL: Cache object counts','mssql.cache_object_counts','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cache objects in the cache.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','de8c0d7f9c0b42438560dc28e47fdd19');
INSERT INTO `items` (`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`,`uuid`) values ('31099','18','','10327','MSSQL: Cache objects in use','mssql.cache_objects_in_use','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cache objects in use.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','064e1279ae0a4260ab02c08cd3c3f77d');
INSERT INTO `items` (`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`,`uuid`) values ('31100','18','','10327','MSSQL: Cache pages','mssql.cache_pages','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of 8-kilobyte (KB) pages used by cache objects.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','ae2d22cd04ed452dbdb04ae3f71b8586');
INSERT INTO `items` (`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`,`uuid`) values ('31101','18','','10327','MSSQL: Checkpoint pages per second','mssql.checkpoint_pages_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of pages flushed to disk per second by a checkpoint or other operation which required all dirty pages to be flushed.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','d72b6aadab0c4d6d83bc72da0ce661c3');
INSERT INTO `items` (`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`,`uuid`) values ('31102','18','','10327','MSSQL: Total data file size','mssql.data_files_size','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total size of all data files.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','871e3520aac84c18bcaf2f3a0d565b79');
INSERT INTO `items` (`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`,`uuid`) values ('31103','18','','10327','MSSQL: Database pages','mssql.database_pages','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of pages in the buffer pool with database content.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','9c1ca822375644669821fe1bea4c5f2a');
INSERT INTO `items` (`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`,`uuid`) values ('31104','18','','10327','MSSQL: Total errors per second','mssql.errors_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors per second.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','4cdecc74a6e44b57b17f44988d3ffa21');
INSERT INTO `items` (`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`,`uuid`) values ('31105','18','','10327','MSSQL: Failed auto-params per second','mssql.failed_autoparams_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of failed auto-parameterization attempts per second. This number should be small. Note that auto-parameterizations are also known as simple parameterizations in the newer versions of SQL Server.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','5ed7f6931c42424f8ec3dbe2e6c46f03');
INSERT INTO `items` (`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`,`uuid`) values ('31106','18','','10327','MSSQL: Free list stalls per second','mssql.free_list_stalls_sec.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of requests per second that had to wait for a free page.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','22d1a41352c4477ba3db5d1a9e038597');
INSERT INTO `items` (`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`,`uuid`) values ('31107','18','','10327','MSSQL: Logins per second','mssql.logins_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of logins started per second. This does not include pooled connections. Any value over 2 may indicate insufficient connection pooling.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','c7856bdb5285421cb79cec0782fa1188');
INSERT INTO `items` (`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`,`uuid`) values ('31108','18','','10327','MSSQL: Full scans per second','mssql.full_scans_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of unrestricted full scans per second. These can be either base-table or full-index scans. Values greater than 1 or 2 indicate that there are table / Index page scans. If that is combined with high CPU, this counter requires further investigation, otherwise, if the full scans are on small tables, it can be ignored.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','ace67686bb93456c80b40be1f33c173f');
INSERT INTO `items` (`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`,`uuid`) values ('31109','18','','10327','MSSQL: Granted Workspace Memory','mssql.granted_workspace_memory','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Specifies the total amount of memory currently granted to executing processes, such as hash, sort, bulk copy, and index creation operations.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','f2539791f65a40569bcf6b1c89647904');
INSERT INTO `items` (`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`,`uuid`) values ('31110','18','','10327','MSSQL: Index searches per second','mssql.index_searches_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of index searches per second. These are used to start a range scan, reposition a range scan, revalidate a scan point, fetch a single index record, and search down the index to locate where to insert a new row.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','585f1a22108143d8b39337900da8860c');
INSERT INTO `items` (`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`,`uuid`) values ('31111','18','','10327','MSSQL: Errors per second (Info errors)','mssql.info_errors_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors per second.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','eafdabca35bd40a58432dd36a210a4e4');
INSERT INTO `items` (`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`,`uuid`) values ('31112','18','','10327','MSSQL: Errors per second (Kill connection errors)','mssql.kill_connection_errors_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors per second.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','b68d1f8108d7494b9d4d891911708c72');
INSERT INTO `items` (`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`,`uuid`) values ('31113','18','','10327','MSSQL: Latch waits per second','mssql.latch_waits_sec.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of latch requests that could not be granted immediately. Latches are lightweight means of holding a very transient server resource, such as an address in memory.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','c1242c5530654057bca59cb9ad12c319');
INSERT INTO `items` (`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`,`uuid`) values ('31114','18','','10327','MSSQL: Lazy writes per second','mssql.lazy_writes_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of buffers written per second by the buffer manager\'s lazy writer. The lazy writer is a system process that flushes out batches of dirty, aged buffers (buffers that contain changes that must be written back to disk before the buffer can be reused for a different page) and makes them available to user processes. The lazy writer eliminates the need to perform frequent checkpoints in order to create available buffers.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','66cc84326bd146ac89f91ddeaa61f63a');
INSERT INTO `items` (`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`,`uuid`) values ('31115','18','','10327','MSSQL: Total lock requests per second','mssql.lock_requests_sec.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of new locks and lock conversions per second requested from the lock manager.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','1b4c71c016504eb08b1a49146095c231');
INSERT INTO `items` (`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`,`uuid`) values ('31116','18','','10327','MSSQL: Total lock requests per second that timed out','mssql.lock_timeouts_sec.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of timed out lock requests per second, including requests for NOWAIT locks.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','0ac1aab7013249c6a0beb89217bf52c6');
INSERT INTO `items` (`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`,`uuid`) values ('31117','18','','10327','MSSQL: Lock wait time','mssql.lock_wait_time','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Average of total wait time (in milliseconds) for locks in the last second.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','bf4ef99559f94147b9b64144f6b795c0');
INSERT INTO `items` (`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`,`uuid`) values ('31118','18','','10327','MSSQL: Total lock requests per second that required waiting','mssql.lock_waits_sec.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of lock requests per second that required the caller to wait.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','77be28b4732d4665a4e880f2ea309245');
INSERT INTO `items` (`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`,`uuid`) values ('31119','18','','10327','MSSQL: Total log file size','mssql.log_files_size','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total size of all the transaction log files.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','e0620ce52e6d4269b9d12e82c749a146');
INSERT INTO `items` (`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`,`uuid`) values ('31120','18','','10327','MSSQL: Auto-param attempts per second','mssql.autoparam_attempts_sec.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of auto-parameterization attempts per second. The total should be the sum of the failed, safe, and unsafe auto-parameterizations. Auto-parameterization occurs when an instance of SQL Server tries to parameterize a Transact-SQL request by replacing some literals with parameters to me reuse of the resulting cached execution plan across multiple similar-looking requests possible. Note that auto-parameterizations are also known as simple parameterizations in the newer versions of SQL Server. This counter does not include forced parameterizations.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','9a83826b50ac4928b9a716cf94ed6b61');
INSERT INTO `items` (`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`,`uuid`) values ('31121','18','','10327','MSSQL: Total log file used size','mssql.log_files_used_size','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The cumulative used size of all the log files in the database.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','636e7c85a79947a39f7b176e8e3c5b82');
INSERT INTO `items` (`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`,`uuid`) values ('31133','18','','10327','MSSQL AG \'{#GROUP_NAME}\': Primary replica recovery health','mssql.primary_recovery_health["{#GROUP_NAME}"]','0','7d','365d','0','3','','','','',NULL,'158','','','0','','','','','2',NULL,'Indicates the recovery health of the primary replica:\r\n0 = In progress\r\n1 = Online\r\n2 = Unavailable','0','30d','0','','31128','3s','','','','200','1','0','','0','0','0','0','0','0','0','381c88cf5b0c47319b036e79265b0a20');
INSERT INTO `items` (`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`,`uuid`) values ('31134','18','','10327','MSSQL AG \'{#GROUP_NAME}\': Primary replica name','mssql.primary_replica["{#GROUP_NAME}"]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Name of the server instance that is hosting the current primary replica.','0','30d','0','','31128','3s','','','','200','1','0','','0','0','0','0','0','0','0','df51dcd0ef864705bc542e1233c1135b');
INSERT INTO `items` (`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`,`uuid`) values ('31135','18','','10327','MSSQL AG \'{#GROUP_NAME}\': Secondary replica recovery health','mssql.secondary_recovery_health["{#GROUP_NAME}"]','0','7d','365d','0','3','','','','',NULL,'158','','','0','','','','','2',NULL,'Indicates the recovery health of a secondary replica:\r\n0 = In progress\r\n1 = Online\r\n2 = Unavailable','0','30d','0','','31128','3s','','','','200','1','0','','0','0','0','0','0','0','0','d2e76a734bd84484b6bd59b33c921f34');
INSERT INTO `items` (`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`,`uuid`) values ('31136','18','','10327','MSSQL AG \'{#GROUP_NAME}\': Synchronization health','mssql.synchronization_health["{#GROUP_NAME}"]','0','7d','365d','0','3','','','','',NULL,'160','','','0','','','','','2',NULL,'Reflects a rollup of the synchronization_health of all availability replicas in the availability group:\r\n0: Not healthy. None of the availability replicas have a healthy synchronization.\r\n1: Partially healthy. The synchronization of some, but not all, availability replicas is healthy.\r\n2: Healthy. The synchronization of every availability replica is healthy.','0','30d','0','','31128','3s','','','','200','1','0','','0','0','0','0','0','0','0','fe59d23d0ba44777b0abf1a35b2c014e');
INSERT INTO `items` (`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`,`uuid`) values ('31137','18','','10327','MSSQL DB \'{#DBNAME}\': Active transactions','mssql.db.active_transactions["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of active transactions for the database.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','f4f218f22d6d48419260003880b38abd');
INSERT INTO `items` (`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`,`uuid`) values ('31138','18','','10327','MSSQL DB \'{#DBNAME}\': Data file size','mssql.db.data_files_size["{#DBNAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Cumulative size of all the data files in the database including any automatic growth. Monitoring this counter is useful, for example, for determining the correct size of tempdb.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','ff3916f807784639a1821229d4d722d8');
INSERT INTO `items` (`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`,`uuid`) values ('31139','18','','10327','MSSQL DB \'{#DBNAME}\': Log bytes flushed per second','mssql.db.log_bytes_flushed_sec.rate["{#DBNAME}"]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of log bytes flushed per second. Useful for determining trends and utilization of the transaction log.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','0d7bdf4c18fa49e79926e6f6d078d50f');
INSERT INTO `items` (`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`,`uuid`) values ('31140','18','','10327','MSSQL DB \'{#DBNAME}\': Log file size','mssql.db.log_files_size["{#DBNAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Cumulative size of all the transaction log files in the database.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','85536311e68047a6a8bf13c51c8d0647');
INSERT INTO `items` (`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`,`uuid`) values ('31141','18','','10327','MSSQL DB \'{#DBNAME}\': Log file used size','mssql.db.log_files_used_size["{#DBNAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Cumulative used size of all the log files in the database.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','75fd2f42e274471c97cb23dc740863b8');
INSERT INTO `items` (`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`,`uuid`) values ('31142','18','','10327','MSSQL DB \'{#DBNAME}\': Log flush wait time','mssql.db.log_flush_wait_time["{#DBNAME}"]','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'Total wait time (in milliseconds) to flush the log. On an AlwaysOn secondary database, this value indicates the wait time for log records to be hardened to disk.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','f1abdb0800534f6bbf9f1403e7dea9e4');
INSERT INTO `items` (`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`,`uuid`) values ('31143','18','','10327','MSSQL DB \'{#DBNAME}\': Log flush waits per second','mssql.db.log_flush_waits_sec.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of commits per second waiting for the log flush.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','5404c8682b294a06a3027dc10d0b43fc');
INSERT INTO `items` (`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`,`uuid`) values ('31144','18','','10327','MSSQL DB \'{#DBNAME}\': Log flushes per second','mssql.db.log_flushes_sec.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of log flushes per second.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','c10b6f364aa547d8b4abe431ae27d70b');
INSERT INTO `items` (`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`,`uuid`) values ('31145','18','','10327','MSSQL DB \'{#DBNAME}\': Log growths','mssql.db.log_growths["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of times the transaction log for the database has been expanded.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','fdb24058e54243e8b5a888ec40d506e9');
INSERT INTO `items` (`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`,`uuid`) values ('31146','18','','10327','MSSQL DB \'{#DBNAME}\': Log shrinks','mssql.db.log_shrinks["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of times the transaction log for the database has been shrunk.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','a1a96d8bfef740ec9c8eadd9704ab605');
INSERT INTO `items` (`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`,`uuid`) values ('31147','18','','10327','MSSQL DB \'{#DBNAME}\': Log truncations','mssql.db.log_truncations["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times the transaction log has been shrunk.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','26d1515df1be450e861e4f7a9f76b03d');
INSERT INTO `items` (`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`,`uuid`) values ('31148','18','','10327','MSSQL DB \'{#DBNAME}\': Percent log used','mssql.db.percent_log_used["{#DBNAME}"]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Percentage of space in the log that is in use.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','9f9cda56992841408ab8307b7019b76f');
INSERT INTO `items` (`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`,`uuid`) values ('31149','18','','10327','MSSQL DB \'{#DBNAME}\': State','mssql.db.state["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,'154','','','0','','','','','2',NULL,'0 = ONLINE\r\n1 = RESTORING\r\n2 = RECOVERING | SQL Server 2008 and later\r\n3 = RECOVERY_PENDING | SQL Server 2008 and later\r\n4 = SUSPECT\r\n5 = EMERGENCY | SQL Server 2008 and later\r\n6 = OFFLINE | SQL Server 2008 and later\r\n7 = COPYING | Azure SQL Database Active Geo-Replication\r\n10 = OFFLINE_SECONDARY | Azure SQL Database Active Geo-Replication','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','fe7d7c3e0aab43d79c00eaceb39c8c6c');
INSERT INTO `items` (`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`,`uuid`) values ('31150','18','','10327','MSSQL DB \'{#DBNAME}\': Transactions per second','mssql.db.transactions_sec.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of transactions started for the database per second.','0','30d','0','','31055','3s','','','','200','1','0','','0','0','0','0','0','0','0','267b1d54c40641f5aeb4e3e7adfa4680');
INSERT INTO `items` (`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`,`uuid`) values ('31151','18','','10327','MSSQL AG \'{#GROUP_NAME}\' Local DB \'{#DBNAME}\': Suspended','mssql.local_db.is_suspended["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Database state:\r\n0 = Resumed\r\n1 = Suspended','0','30d','0','','31129','3s','','','','200','1','0','','0','0','0','0','0','0','0','7e4baf2802394b93bf5770f4f72d7f05');
INSERT INTO `items` (`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`,`uuid`) values ('31152','18','','10327','MSSQL AG \'{#GROUP_NAME}\' Local DB \'{#DBNAME}\': State','mssql.local_db.state["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,'154','','','0','','','','','2',NULL,'0 = Online\r\n1 = Restoring\r\n2 = Recovering\r\n3 = Recovery pending\r\n4 = Suspect\r\n5 = Emergency\r\n6 = Offline','0','30d','0','','31129','3s','','','','200','1','0','','0','0','0','0','0','0','0','f8111429599e49bd947a12b9771d1a3d');
INSERT INTO `items` (`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`,`uuid`) values ('31153','18','','10327','MSSQL AG \'{#GROUP_NAME}\' Local DB \'{#DBNAME}\': Synchronization health','mssql.local_db.synchronization_health["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,'160','','','0','','','','','2',NULL,'Reflects the intersection of the synchronization state of a database that is joined to the availability group on the availability replica and the availability mode of the availability replica (synchronous-commit or asynchronous-commit mode):\r\n0 = Not healthy. The synchronization_state of the database is 0 (NOT SYNCHRONIZING).\r\n1 = Partially healthy. A database on a synchronous-commit availability replica is considered \r\npartially healthy if synchronization_state is 1 (SYNCHRONIZING).\r\n2 = Healthy. A database on an synchronous-commit availability replica is considered healthy if synchronization_state is 2 (SYNCHRONIZED), and a database on an asynchronous-commit availability replica is considered healthy if synchronization_state is 1 (SYNCHRONIZING).','0','30d','0','','31129','3s','','','','200','1','0','','0','0','0','0','0','0','0','e7d7fbac95e94c45b6515c8e1b7baf1a');
INSERT INTO `items` (`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`,`uuid`) values ('31154','18','','10327','MSSQL Mirroring \'{#DBNAME}\': Role sequence','mssql.mirroring.role_sequence["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times that mirroring partners have switched the principal and mirror roles due to a failover or forced service.','0','30d','0','','31130','3s','','','','200','1','0','','0','0','0','0','0','0','0','19cdd945ced447d28b7480c07c1f61bc');
INSERT INTO `items` (`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`,`uuid`) values ('31155','18','','10327','MSSQL Mirroring \'{#DBNAME}\': Role','mssql.mirroring.role["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,'163','','','0','','','','','2',NULL,'Current role of the local database plays in the database mirroring session.\r\n1 = Principal\r\n2 = Mirror','0','30d','0','','31130','3s','','','','200','1','0','','0','0','0','0','0','0','0','faccb61c8215482ab375c03444a0e8fd');
INSERT INTO `items` (`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`,`uuid`) values ('31156','18','','10327','MSSQL Mirroring \'{#DBNAME}\': Safety level','mssql.mirroring.safety_level["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,'164','','','0','','','','','2',NULL,'Safety setting for updates on the mirror database:\r\n0 = Unknown state\r\n1 = Off [asynchronous]\r\n2 = Full [synchronous]','0','30d','0','','31130','3s','','','','200','1','0','','0','0','0','0','0','0','0','bedb23d788074424afdb2751c8a7e2b7');
INSERT INTO `items` (`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`,`uuid`) values ('31157','18','','10327','MSSQL Mirroring \'{#DBNAME}\': State','mssql.mirroring.state["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,'162','','','0','','','','','2',NULL,'State of the mirror database and of the database mirroring session.\r\n0 = Suspended\r\n1 = Disconnected from the other partner\r\n2 = Synchronizing\r\n3 = Pending Failover\r\n4 = Synchronized\r\n5 = The partners are not synchronized. Failover is not possible now.\r\n6 = The partners are synchronized. Failover is potentially possible. For information about the requirements for the failover, see Database Mirroring Operating Modes.','0','30d','0','','31130','3s','','','','200','1','0','','0','0','0','0','0','0','0','5df06f00a6194242af45ff5cccf43988');
INSERT INTO `items` (`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`,`uuid`) values ('31158','18','','10327','MSSQL Mirroring \'{#DBNAME}\': Witness state','mssql.mirroring.witness_state["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,'165','','','0','','','','','2',NULL,'State of the witness in the database mirroring session of the database:\r\n0 = Unknown\r\n1 = Connected\r\n2 = Disconnected','0','30d','0','','31130','3s','','','','200','1','0','','0','0','0','0','0','0','0','7e4763d493a745e99082ca71a54c23c2');
INSERT INTO `items` (`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`,`uuid`) values ('31161','18','','10327','MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Connected state','mssql.replica.connected_state["{#GROUP_NAME}_{#REPLICA_NAME}"]','0','7d','365d','0','3','','','','',NULL,'155','','','0','','','','','2',NULL,'Whether a secondary replica is currently connected to the primary replica:\r\n0 : Disconnected. The response of an availability replica to the DISCONNECTED state depends on its role:\r\nOn the primary replica, if a secondary replica is disconnected, its secondary databases are marked as NOT SYNCHRONIZED on the primary replica, which waits for the secondary to reconnect;\r\nOn a secondary replica, upon detecting that it is disconnected, the secondary replica attempts to reconnect to the primary replica.\r\n1 : Connected. Each primary replica tracks the connection state for every secondary replica in the same availability group. Secondary replicas track the connection state of only the primary replica.','0','30d','0','','31132','3s','','','','200','1','0','','0','0','0','0','0','0','0','7403de703b024d428edfc59f3aa9181b');
INSERT INTO `items` (`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`,`uuid`) values ('31162','18','','10327','MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Is local','mssql.replica.is_local["{#GROUP_NAME}_{#REPLICA_NAME}"]','0','7d','365d','0','3','','','','',NULL,'161','','','0','','','','','2',NULL,'Whether the replica is local:\r\n0 = Indicates a remote secondary replica in an availability group whose primary replica is hosted by the local server instance. This value occurs only on the primary replica location.\r\n1 = Indicates a local replica. On secondary replicas, this is the only available value for the availability group to which the replica belongs.','0','30d','0','','31132','3s','','','','200','1','0','','0','0','0','0','0','0','0','51cb8f4fe5954c0ea21eff6102034862');
INSERT INTO `items` (`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`,`uuid`) values ('31163','18','','10327','MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Join state','mssql.replica.join_state["{#GROUP_NAME}_{#REPLICA_NAME}"]','0','7d','365d','0','3','','','','',NULL,'156','','','0','','','','','2',NULL,'0 = Not joined\r\n1 = Joined, standalone instance\r\n2 = Joined, failover cluster instance','0','30d','0','','31132','3s','','','','200','1','0','','0','0','0','0','0','0','0','ec1b71f75c4247c28d5830bd8004f0ac');
INSERT INTO `items` (`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`,`uuid`) values ('31164','18','','10327','MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Operational state','mssql.replica.operational_state["{#GROUP_NAME}_{#REPLICA_NAME}"]','0','7d','365d','0','3','','','','',NULL,'157','','','0','','','','','2',NULL,'Current operational state of the replica:\r\n0 = Pending failover\r\n1 = Pending\r\n2 = Online\r\n3 = Offline\r\n4 = Failed\r\n5 = Failed, no quorum\r\n6 = Not local','0','30d','0','','31132','3s','','','','200','1','0','','0','0','0','0','0','0','0','ad3e6d5bf510496eb050b9a05f8341e1');
INSERT INTO `items` (`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`,`uuid`) values ('31165','18','','10327','MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Recovery health','mssql.replica.recovery_health["{#GROUP_NAME}_{#REPLICA_NAME}"]','0','7d','365d','0','3','','','','',NULL,'158','','','0','','','','','2',NULL,'Rollup of the database_state column of the sys.dm_hadr_database_replica_states dynamic management view:\r\n0 : In progress. At least one joined database has a database state other than ONLINE \r\n(database_state is not 0).\r\n1 : Online. All the joined databases have a database state of ONLINE (database_state is 0).','0','30d','0','','31132','3s','','','','200','1','0','','0','0','0','0','0','0','0','2a58cab2197348d997bdb69bb128414d');
INSERT INTO `items` (`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`,`uuid`) values ('31166','18','','10327','MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Role','mssql.replica.role["{#GROUP_NAME}_{#REPLICA_NAME}"]','0','7d','365d','0','3','','','','',NULL,'159','','','0','','','','','2',NULL,'Current Always On availability groups role of a local replica or a connected remote replica:\r\n0 = Resolving\r\n1 = Primary\r\n2 = Secondary','0','30d','0','','31132','3s','','','','200','1','0','','0','0','0','0','0','0','0','5139a4cef5ac46d2ab34cd8bda1c84ac');
INSERT INTO `items` (`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`,`uuid`) values ('31167','18','','10327','MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Sync health','mssql.replica.synchronization_health["{#GROUP_NAME}_{#REPLICA_NAME}"]','0','7d','365d','0','3','','','','',NULL,'160','','','0','','','','','2',NULL,'Reflects a rollup of the database synchronization state (synchronization_state)of all joined availability databases (also known as replicas) and the availability mode of the replica (synchronous-commit or asynchronous-commit mode). The rollup will reflect the least healthy accumulated state of the databases on the replica:\r\n0 : Not healthy. At least one joined database is in the NOT SYNCHRONIZING state.\r\n1 : Partially healthy. Some replicas are not in the target synchronization state: synchronous-commit replicas should be synchronized, and asynchronous-commit replicas should be synchronizing.\r\n2 : Healthy. All replicas are in the target synchronization state: synchronous-commit replicas are synchronized, and asynchronous-commit replicas are synchronizing.','0','30d','0','','31132','3s','','','','200','1','0','','0','0','0','0','0','0','0','5655f95df0e043acba246f65e4905b0d');
INSERT INTO `items` (`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`,`uuid`) values ('31168','18','','10316','MySQL: Threads created per second','mysql.threads_created.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','06976fcb42ab4a33b0056a864ecd31e7');
INSERT INTO `items` (`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`,`uuid`) values ('31169','18','','10316','MySQL: Created tmp tables on disk per second','mysql.created_tmp_disk_tables.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of internal on-disk temporary tables created by the server while executing statements.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','52335a039571454ebaccc9ab103200a3');
INSERT INTO `items` (`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`,`uuid`) values ('31170','18','','10316','MySQL: Created tmp files on disk per second','mysql.created_tmp_files.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'How many temporary files mysqld has created.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','d1dd183666d44010a5054f2e1cc328de');
INSERT INTO `items` (`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`,`uuid`) values ('31171','18','','10316','MySQL: Created tmp tables on memory per second','mysql.created_tmp_tables.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of internal temporary tables created by the server while executing statements.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','c9a94c3145a643ef8ceec33f63b85ae9');
INSERT INTO `items` (`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`,`uuid`) values ('31172','18','','10320','MySQL: Threads created per second','mysql.threads_created.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','eaab0b45e023459fa5c1e8b76e860431');
INSERT INTO `items` (`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`,`uuid`) values ('31173','18','','10320','MySQL: Created tmp tables on disk per second','mysql.created_tmp_disk_tables.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of internal on-disk temporary tables created by the server while executing statements.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','aaf0c77bf1b647e09633db28480ddfd7');
INSERT INTO `items` (`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`,`uuid`) values ('31174','18','','10320','MySQL: Created tmp files on disk per second','mysql.created_tmp_files.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'How many temporary files mysqld has created.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','970c9a50e7304c4eb81c46f4456c3350');
INSERT INTO `items` (`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`,`uuid`) values ('31175','18','','10320','MySQL: Created tmp tables on memory per second','mysql.created_tmp_tables.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of internal temporary tables created by the server while executing statements.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','fef23a9c80e84d87803f3540277ade1e');
INSERT INTO `items` (`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`,`uuid`) values ('31176','18','','10317','MySQL: Threads created per second','mysql.threads_created.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','8a50d5788f8a449b994dbe76536076a2');
INSERT INTO `items` (`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`,`uuid`) values ('31177','18','','10317','MySQL: Created tmp tables on disk per second','mysql.created_tmp_disk_tables.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of internal on-disk temporary tables created by the server while executing statements.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','84d748ab80444e10bdb60bcfbdfa850a');
INSERT INTO `items` (`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`,`uuid`) values ('31178','18','','10317','MySQL: Created tmp tables on memory per second','mysql.created_tmp_tables.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of internal temporary tables created by the server while executing statements.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','95fa4f4f1db44b2bb65889da246c03b5');
INSERT INTO `items` (`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`,`uuid`) values ('31179','18','','10317','MySQL: Created tmp files on disk per second','mysql.created_tmp_files.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'How many temporary files mysqld has created.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','c5f2ae1ef46e4f65842ab4a31625906a');
INSERT INTO `items` (`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`,`uuid`) values ('31189','18','','10328','Oracle: Version','oracle.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Oracle Server version.','0','30d','0','','31188','3s','','','','200','1','0','','0','0','0','0','0','0','0','45143cb0d0284608bf48897885a91bbb');
INSERT INTO `items` (`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`,`uuid`) values ('31190','18','','10328','Oracle: Sessions lock rate','oracle.session_lock_rate','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of locked sessions. Locks are mechanisms that prevent destructive interaction between transactions accessing the same resource—either user objects such as tables and rows or system objects not visible to users, such as shared data structures in memory and data dictionary rows.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','64361f8862e8482d86a8bdd71c709142');
INSERT INTO `items` (`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`,`uuid`) values ('31191','18','','10328','Oracle: Physical writes per second','oracle.physical_writes_rate','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Writes per second.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','d20f81d99e6647479abcc9ffcbc208fc');
INSERT INTO `items` (`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`,`uuid`) values ('31192','18','','10328','Oracle: Number of processes','oracle.processes_count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','533ae91bb94e4077870aa362a8cea7e5');
INSERT INTO `items` (`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`,`uuid`) values ('31193','18','','10328','Oracle: Processes limit','oracle.processes_limit','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Max user processes.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','721c04b5f3ba42d0ae7acceb5876c360');
INSERT INTO `items` (`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`,`uuid`) values ('31194','18','','10328','Oracle: Redo logs available to switch','oracle.redo_logs_available','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of available for log switching inactive/unused REDO logs.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','65064008eef54657b7b7f2beeba70b0a');
INSERT INTO `items` (`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`,`uuid`) values ('31195','18','','10328','Oracle: Rows per sort','oracle.rows_per_sort','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The average number of rows per sort for all types of sorts performed.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','ab298981f26a4ec6849e1155ce35ee76');
INSERT INTO `items` (`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`,`uuid`) values ('31196','18','','10328','Oracle: SQL service response time','oracle.service_response_time','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'SQL service response time in seconds.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','ddbdd3d7d40d42b9b9711470516a5aec');
INSERT INTO `items` (`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`,`uuid`) values ('31197','18','','10328','Oracle: Active background sessions','oracle.session_active_background','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active background sessions.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','e269a27f3c3f47ae86fef231da2a6fce');
INSERT INTO `items` (`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`,`uuid`) values ('31198','18','','10328','Oracle: Active user sessions','oracle.session_active_user','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active user sessions.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','6e8defc1e3e2485784d8bef6e2b988c7');
INSERT INTO `items` (`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`,`uuid`) values ('31199','18','','10328','Oracle: Sessions concurrency','oracle.session_concurrency_rate','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of concurrency. Concurrency is a DB behavior when different transactions request to change the same resource - in case of modifying data transactions sequentially block temporarily the right to change data, the rest of the transactions are waiting for access. In the case when access for resource is locked for a long time, then the concurrency grows (like the transaction queue) and this often has an extremely negative impact on performance. A high contention value does not indicate the root cause of the problem, but is a signal to search for it.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','a3f2b314a6354d238d6604afa2333ae6');
INSERT INTO `items` (`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`,`uuid`) values ('31200','18','','10328','Oracle: Session count','oracle.session_count','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Session count.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','3459ae7c82454882a9655db8a83120fd');
INSERT INTO `items` (`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`,`uuid`) values ('31201','18','','10328','Oracle: Inactive user sessions','oracle.session_inactive_user','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of inactive user sessions.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','5abf01d0bad442e7817752ae01dfc2d2');
INSERT INTO `items` (`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`,`uuid`) values ('31202','18','','10328','Oracle: Sessions limit','oracle.session_limit','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'User and system sessions.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','ebc142a0784041d2bbe982c4d766b98f');
INSERT INTO `items` (`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`,`uuid`) values ('31203','18','','10328','Oracle: Sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s','oracle.session_long_time_locked','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of the prolongedly locked sessions. (You can change maximum session lock duration in seconds for query by {$ORACLE.SESSION.LOCK.MAX.TIME} macro. Default 600 sec)','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','a9669cb6290b4a158e7f02c1f079b6f9');
INSERT INTO `items` (`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`,`uuid`) values ('31204','18','','10328','Oracle: User rollbacks per second','oracle.user_rollbacks_rate','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times that users manually issue the ROLLBACK statement or an error occurred during a user\'s transactions.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','3455378f6ecf4ecb93a69d2387e4a57d');
INSERT INTO `items` (`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`,`uuid`) values ('31205','18','','10328','Oracle: SGA, buffer cache','oracle.sga_buffer_cache','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The size of the cache of standard blocks.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','94fe3a129f08415bb7e02a862bd9e8a8');
INSERT INTO `items` (`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`,`uuid`) values ('31206','18','','10328','Oracle: Physical writes bytes per second','oracle.physical_write_bytes_rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Write bytes per second.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','e2e21384fbae431a88f1eef610b0307b');
INSERT INTO `items` (`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`,`uuid`) values ('31207','18','','10328','Oracle: SGA, java pool','oracle.sga_java_pool','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory is allocated from the java pool.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','614066ff91e144dbae58b4920c1db932');
INSERT INTO `items` (`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`,`uuid`) values ('31208','18','','10328','Oracle: SGA, large pool','oracle.sga_large_pool','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory is allocated from the large pool.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','0f726310d4a8426188658f7c093c3989');
INSERT INTO `items` (`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`,`uuid`) values ('31209','18','','10328','Oracle: SGA, log buffer','oracle.sga_log_buffer','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes allocated for the redo log buffer.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','03e9cea3887447349c9116b89b1be026');
INSERT INTO `items` (`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`,`uuid`) values ('31210','18','','10328','Oracle: SGA, shared pool','oracle.sga_shared_pool','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory is allocated from the shared pool.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','eb4c2f63ef8449d99794e5fdb7fed7bf');
INSERT INTO `items` (`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`,`uuid`) values ('31211','18','','10328','Oracle: Shared pool free %','oracle.shared_pool_free','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Shared pool free memory percent. Free/Total','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','b14b0126cf64436ea206ec151984cd95');
INSERT INTO `items` (`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`,`uuid`) values ('31212','18','','10328','Oracle: Total sorts per user call','oracle.sorts_per_user_call','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total sorts per user call.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','8b3e958d76d14ef7a6869634106f1277');
INSERT INTO `items` (`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`,`uuid`) values ('31213','18','','10328','Oracle: Temp space used','oracle.temp_space_used','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Temp space used.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','fc2cff59b0804989989179e1dbc338b5');
INSERT INTO `items` (`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`,`uuid`) values ('31214','18','','10328','Oracle: PGA, Total allocated','oracle.total_pga_allocated','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Current amount of PGA memory allocated by the instance. The Oracle Database attempts to keep this number below the value of the PGA_AGGREGATE_TARGET initialization parameter. However, it is possible for the PGA allocated to exceed that value by a small percentage and for a short period of time when the work area workload is increasing very rapidly or when PGA_AGGREGATE_TARGET is set to a small value.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','085c097ab3b34f07b262caf80703b469');
INSERT INTO `items` (`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`,`uuid`) values ('31215','18','','10328','Oracle: PGA, Total freeable','oracle.total_pga_freeable','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes of PGA memory in all processes that could be freed back to the operating system.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','c2c18a0a502d4fbe91db25d29ae57d45');
INSERT INTO `items` (`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`,`uuid`) values ('31216','18','','10328','Oracle: PGA, Total inuse','oracle.total_pga_used','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates how much PGA memory is currently consumed by work areas. This number can be used to determine how much memory is consumed by other consumers of the PGA memory (for example, PL/SQL or Java).','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','e0e88ce92ece4ca0b776f09dc4ec5039');
INSERT INTO `items` (`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`,`uuid`) values ('31217','18','','10328','Oracle: Uptime','oracle.uptime','0','7d','0d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Oracle instance uptime in seconds.','0','30d','0','','31188','3s','','','','200','1','0','','0','0','0','0','0','0','0','3c817d2b45fc471aa86771ce1739de6f');
INSERT INTO `items` (`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`,`uuid`) values ('31218','18','','10328','Oracle: User \'{$ORACLE.USER}\' expire password','oracle.user_expire_password','0','7d','365d','0','0','','days','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of days before zabbix account password expired.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','ad275dbbe8af483b93d37e416c3f1fd2');
INSERT INTO `items` (`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`,`uuid`) values ('31219','18','','10328','Oracle: SGA, fixed','oracle.sga_fixed','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The fixed SGA is an internal housekeeping area.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','062fbd601d6f41208e364c80f1d08b1e');
INSERT INTO `items` (`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`,`uuid`) values ('31220','18','','10328','Oracle: Physical reads bytes per second','oracle.physical_read_bytes_rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Read bytes per second.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','2f305e09eafd4f7a9360f138be20a631');
INSERT INTO `items` (`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`,`uuid`) values ('31221','18','','10328','Oracle: Physical reads per second','oracle.physical_reads_rate','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reads per second.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','001bf0d526cb455386f5a63e6bb8f410');
INSERT INTO `items` (`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`,`uuid`) values ('31222','18','','10328','Oracle: Enqueue timeouts per second','oracle.enqueue_timeouts_rate','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Enqueue timeouts per second.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','46e0598b703a412e96a3b18e2248e754');
INSERT INTO `items` (`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`,`uuid`) values ('31223','18','','10328','Oracle: Active parallel sessions','oracle.active_parallel_sessions','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active parallel sessions.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','6b6ce717919e45df93015a8f65337055');
INSERT INTO `items` (`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`,`uuid`) values ('31224','18','','10328','Oracle: Active serial sessions','oracle.active_serial_sessions','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active serial sessions.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','928b095ffe57404eb6863b06b466524d');
INSERT INTO `items` (`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`,`uuid`) values ('31225','18','','10328','Oracle: Average active sessions','oracle.active_sessions','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The average active sessions at a point in time. It is the number of sessions that are either working or waiting.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','70633c6c4e27410dabcf035dd583f820');
INSERT INTO `items` (`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`,`uuid`) values ('31226','18','','10328','Oracle: Archiver state','oracle.archiver_state','0','7d','365d','0','3','','','','',NULL,'174','','','0','','','','','0',NULL,'Automatic archiving status.','0','30d','0','','31188','3s','','','','200','1','0','','0','0','0','0','0','0','0','eb9f4179a87249fc9df9989f58502a12');
INSERT INTO `items` (`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`,`uuid`) values ('31227','18','','10328','Oracle: Buffer cache hit ratio','oracle.buffer_cache_hit_ratio','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Ratio of buffer cache hits. (LogRead - PhyRead)/LogRead','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','836e01f5247a468dbf1866a744979376');
INSERT INTO `items` (`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`,`uuid`) values ('31228','18','','10328','Oracle: Global cache blocks corrupted','oracle.cache_blocks_corrupt','0','7d','365d','0','3','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of blocks that encountered a corruption or checksum failure during interconnect.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','dedafce88267427a8f0b51d74de28c58');
INSERT INTO `items` (`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`,`uuid`) values ('31229','18','','10328','Oracle: Global cache blocks lost','oracle.cache_blocks_lost','0','7d','365d','0','3','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of global cache blocks lost','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','d0d0dbbf1869487d957e60d03e8e3512');
INSERT INTO `items` (`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`,`uuid`) values ('31230','18','','10328','Oracle: Cursor cache hit ratio','oracle.cursor_cache_hit_ratio','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Ratio of cursor cache hits. CursorCacheHit/SoftParse','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','50ea6f52e01c44e5b9039add026faaa2');
INSERT INTO `items` (`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`,`uuid`) values ('31231','18','','10328','Oracle: Database CPU time ratio','oracle.database_cpu_time_ratio','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated by dividing the total CPU used by the database by the Oracle time model statistic DB time.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','82228fbb70bf4660aa64bdde2f57686d');
INSERT INTO `items` (`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`,`uuid`) values ('31232','18','','10328','Oracle: Database wait time ratio','oracle.database_wait_time_ratio','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Wait time: the time that the server process spends waiting for available shared resources (to be released by other server processes) such as latches, locks, data buffers, and so on','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','877272b0b9424d279b1efaa6536eb19b');
INSERT INTO `items` (`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`,`uuid`) values ('31233','18','','10328','Oracle: Datafiles count','oracle.db_files_count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Current number of datafile.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','751fe010337e40a5a12fc24d327ffcee');
INSERT INTO `items` (`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`,`uuid`) values ('31234','18','','10328','Oracle: Datafiles limit','oracle.db_files_limit','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Max allowable number of datafile.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','a0e263bf207042058b5d9d2e735e05eb');
INSERT INTO `items` (`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`,`uuid`) values ('31235','18','','10328','Oracle: Disk sort per second','oracle.disk_sorts','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of sorts going to disk per second','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','22d9cccf44924f99aaf444c80b3beab9');
INSERT INTO `items` (`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`,`uuid`) values ('31236','18','','10328','Oracle: FRA, Number of files','oracle.fra_number_of_files','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of files in the fast recovery area','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','beca246cadb44e48a20bc8809624a6f4');
INSERT INTO `items` (`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`,`uuid`) values ('31237','18','','10328','Oracle: PGA, Aggregate target parameter','oracle.pga_target','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Current value of the PGA_AGGREGATE_TARGET initialization parameter. If this parameter is not set, then its value is 0 and automatic management of PGA memory is disabled.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','1f532b6599f34db285b60a8879638d75');
INSERT INTO `items` (`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`,`uuid`) values ('31238','18','','10328','Oracle: FRA, Number of restore points','oracle.fra_restore_point','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','61eb041ea3b349df88cb3495b383fbe4');
INSERT INTO `items` (`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`,`uuid`) values ('31239','18','','10328','Oracle: FRA, Space limit','oracle.fra_space_limit','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum amount of disk space (in bytes) that the database can use for the fast recovery area.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','375e094a1a024a19b8e69e4f362c0163');
INSERT INTO `items` (`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`,`uuid`) values ('31240','18','','10328','Oracle: FRA, Space reclaimable','oracle.fra_space_reclaimable','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of disk space (in bytes) that can be created by deleting obsolete, redundant, and other low priority files from the fast recovery area.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','4028e389cc9e4b24946657f1ded1ba47');
INSERT INTO `items` (`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`,`uuid`) values ('31241','18','','10328','Oracle: FRA, Used space','oracle.fra_space_used','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of disk space (in bytes) used by fast recovery area files created in current and all previous fast recovery areas.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','40b03e917c3c4c0385536336e48affcb');
INSERT INTO `items` (`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`,`uuid`) values ('31242','18','','10328','Oracle: FRA, Usable space in %','oracle.fra_usable_pct','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','b29c93eecf9d4d1b8c5de1ce9721801f');
INSERT INTO `items` (`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`,`uuid`) values ('31243','18','','10328','Oracle: GC CR block received per second','oracle.gc_cr_block_received_rate','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'GC CR block received per second.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','3243beb0fe70425f8d71938a52f765ae');
INSERT INTO `items` (`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`,`uuid`) values ('31244','18','','10328','Oracle: Instance hostname','oracle.instance_hostname','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Name of the host machine.','0','30d','0','','31188','3s','','','','200','1','0','','0','0','0','0','0','0','0','3da27d558e034236a42b3b94bfa13159');
INSERT INTO `items` (`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`,`uuid`) values ('31245','18','','10328','Oracle: Instance name','oracle.instance_name','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Name of the instance.','0','30d','0','','31188','3s','','','','200','1','0','','0','0','0','0','0','0','0','4e5df3339a2940c6b3cdad6f5b65234b');
INSERT INTO `items` (`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`,`uuid`) values ('31246','18','','10328','Oracle: Instance status','oracle.instance_status','0','7d','365d','0','3','','','','',NULL,'170','','','0','','','','','0',NULL,'Status of the instance.','0','30d','0','','31188','3s','','','','200','1','0','','0','0','0','0','0','0','0','632a953eead74114bdaf640bbf5929a5');
INSERT INTO `items` (`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`,`uuid`) values ('31247','18','','10328','Oracle: Instance role','oracle.instance.role','0','7d','365d','0','3','','','','',NULL,'172','','','0','','','','','0',NULL,'Indicates whether the instance is an active instance or an inactive secondary instance.','0','30d','0','','31188','3s','','','','200','1','0','','0','0','0','0','0','0','0','cc3c9200deed42e5a8e187e82c123009');
INSERT INTO `items` (`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`,`uuid`) values ('31248','18','','10328','Oracle: Library cache hit ratio','oracle.library_cache_hit_ratio','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Ratio of library cache hits. Hits/Pins','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','9a3084287a354fb0b0eb5de377a6de92');
INSERT INTO `items` (`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`,`uuid`) values ('31249','18','','10328','Oracle: Logons per second','oracle.logons_rate','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of logon attempts.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','ac44884b2518485eae4bc7caf46799a8');
INSERT INTO `items` (`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`,`uuid`) values ('31250','18','','10328','Oracle: Long table scans per second','oracle.long_table_scans_rate','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of long table scans per second. A table is considered \'long\' if the table is not cached and if its high-water mark is greater than 5 blocks.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','f7691a5d7ef74a4d99cac61835052fba');
INSERT INTO `items` (`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`,`uuid`) values ('31251','18','','10328','Oracle: PGA, Global memory bound','oracle.pga_global_bound','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum size of a work area executed in automatic mode.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','786188c7719048cb863450f98ab921ac');
INSERT INTO `items` (`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`,`uuid`) values ('31252','18','','10328','Oracle: Memory sorts ratio','oracle.memory_sorts_ratio','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of sorts (from ORDER BY clauses or index building) that are done to disk vs in-memory.','0','30d','0','','31185','3s','','','','200','1','0','','0','0','0','0','0','0','0','49445baea18640ea844f869c51aee565');
INSERT INTO `items` (`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`,`uuid`) values ('31258','18','','10328','Archivelog \'{#DEST_NAME}\': Error','oracle.archivelog_error["{#DEST_NAME}"]','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Displays the error text','0','30d','0','','31180','3s','','','','200','1','0','','0','0','0','0','0','0','0','06e47a56685e4dd784628c40d5038c88');
INSERT INTO `items` (`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`,`uuid`) values ('31259','18','','10328','Archivelog \'{#DEST_NAME}\': Last sequence','oracle.archivelog_log_sequence["{#DEST_NAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Identifies the sequence number of the last archived redo log to be archived','0','30d','0','','31180','3s','','','','200','1','0','','0','0','0','0','0','0','0','1948e6bfaa48451cac6ee83a16b07826');
INSERT INTO `items` (`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`,`uuid`) values ('31260','18','','10328','Archivelog \'{#DEST_NAME}\': Status','oracle.archivelog_log_status["{#DEST_NAME}"]','0','7d','365d','0','3','','','','',NULL,'178','','','0','','','','','2',NULL,'Identifies the current status of the destination: 1 - \'Valid\', 2 - \'Deferred\',3 - \'Error\', 0 - \'Unknown\'','0','30d','0','','31180','3s','','','','200','1','0','','0','0','0','0','0','0','0','0d561969fc2942fea854541a03b6a490');
INSERT INTO `items` (`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`,`uuid`) values ('31261','18','','10328','ASM \'{#DG_NAME}\': Free size','oracle.asm_free_size["{#DG_NAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Free size of ASM disk group.','0','30d','0','','31182','3s','','','','200','1','0','','0','0','0','0','0','0','0','da6116af9f54452ab1694af8eef9f38d');
INSERT INTO `items` (`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`,`uuid`) values ('31262','18','','10328','ASM \'{#DG_NAME}\': Total size','oracle.asm_total_size["{#DG_NAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total size of ASM disk group.','0','30d','0','','31182','3s','','','','200','1','0','','0','0','0','0','0','0','0','7f2a51d7eeb64c5b8929dcb0e3a49273');
INSERT INTO `items` (`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`,`uuid`) values ('31263','18','','10328','ASM \'{#DG_NAME}\': Free size','oracle.asm_used_pct["{#DG_NAME}"]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Usage percent of ASM disk group.','0','30d','0','','31182','3s','','','','200','1','0','','0','0','0','0','0','0','0','9c87a9089a19468f85eb1d3c28893092');
INSERT INTO `items` (`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`,`uuid`) values ('31264','18','','10328','Oracle Database \'{#DBNAME}\': Force logging','oracle.db_force_logging["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,'180','','','0','','','','','2',NULL,'Indicates whether the database is under force logging mode (YES) or not (NO)','0','30d','0','','31186','3s','','','','200','1','0','','0','0','0','0','0','0','0','075885bfd41d43aba7861ae49e9abbee');
INSERT INTO `items` (`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`,`uuid`) values ('31265','18','','10328','Oracle Database \'{#DBNAME}\': Log mode','oracle.db_log_mode["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,'182','','','0','','','','','2',NULL,'Archive log mode, 0 - \'NOARCHIVELOG\', 1 - \'ARCHIVELOG\', 2 - \'MANUAL\'','0','30d','0','','31186','3s','','','','200','1','0','','0','0','0','0','0','0','0','9b88e24d523e4111b2ff65ae26650e04');
INSERT INTO `items` (`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`,`uuid`) values ('31266','18','','10328','Oracle Database \'{#DBNAME}\': Open status','oracle.db_open_mode["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,'166','','','0','','','','','2',NULL,'1 - \'MOUNTED\', 2 - \'READ WRITE\', 3 - \'READ ONLY\', 4 - \'READ ONLY WITH APPLY\' (A physical standby database is open in real-time query mode)','0','30d','0','','31186','3s','','','','200','1','0','','0','0','0','0','0','0','0','f1971909355f4ef48c32695b5d204d56');
INSERT INTO `items` (`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`,`uuid`) values ('31267','18','','10328','Oracle Database \'{#DBNAME}\': Role','oracle.db_role["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,'168','','','0','','','','','2',NULL,'Current role of the database, 1 - \'SNAPSHOT STANDBY\', 2 - \'LOGICAL STANDBY\', 3 - \'PHYSICAL STANDBY\', 4 - \'PRIMARY \', 5 -\'FAR SYNC\'','0','30d','0','','31186','3s','','','','200','1','0','','0','0','0','0','0','0','0','949d1e5fc4424b2bb0ffd220f00f6a79');
INSERT INTO `items` (`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`,`uuid`) values ('31268','18','','10328','Oracle Database \'{#DBNAME}\': Open status','oracle.pdb_open_mode["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,'166','','','0','','','','','2',NULL,'1 - \'MOUNTED\', 2 - \'READ WRITE\', 3 - \'READ ONLY\', 4 - \'READ ONLY WITH APPLY\' (A physical standby database is open in real-time query mode)','0','30d','0','','31187','3s','','','','200','1','0','','0','0','0','0','0','0','0','975d302e3e9a4316b6d63256b88b5006');
INSERT INTO `items` (`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`,`uuid`) values ('31269','18','','10328','Oracle TBS \'{#TABLESPACE}\': Tablespace allocated, bytes','oracle.tbs_alloc_bytes["{#TABLESPACE}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Currently allocated bytes for tablespace (sum of the current size of datafiles).','0','30d','0','','31181','3s','','','','200','1','0','','0','0','0','0','0','0','0','46956fd7e5d8462798b85cd7b425a794');
INSERT INTO `items` (`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`,`uuid`) values ('31270','18','','10328','Oracle TBS \'{#TABLESPACE}\': Tablespace free, bytes','oracle.tbs_free_bytes["{#TABLESPACE}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Free bytes of allocated space.','0','30d','0','','31181','3s','','','','200','1','0','','0','0','0','0','0','0','0','8c3284a21872423499ee15fd7b0038f1');
INSERT INTO `items` (`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`,`uuid`) values ('31271','18','','10328','Oracle TBS \'{#TABLESPACE}\': Tablespace MAX size, bytes','oracle.tbs_max_bytes["{#TABLESPACE}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum size of tablespace.','0','30d','0','','31181','3s','','','','200','1','0','','0','0','0','0','0','0','0','afd8c1a01b64408fbc6f8f95fbb13593');
INSERT INTO `items` (`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`,`uuid`) values ('31272','18','','10328','Oracle TBS \'{#TABLESPACE}\': Open status','oracle.tbs_status["{#TABLESPACE}"]','0','7d','365d','0','3','','','','',NULL,'176','','','0','','','','','2',NULL,'Tablespace status. 1 - \'ONLINE\' 2 - \'OFFLINE\' 3- \'READ ONLY\'','0','30d','0','','31181','3s','','','','200','1','0','','0','0','0','0','0','0','0','42c7812a75d5433ab8a275498635c81c');
INSERT INTO `items` (`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`,`uuid`) values ('31273','18','','10328','Oracle TBS \'{#TABLESPACE}\': Tablespace allocated, percent','oracle.tbs_used_pct["{#TABLESPACE}"]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Allocated bytes/Max bytes*100','0','30d','0','','31181','3s','','','','200','1','0','','0','0','0','0','0','0','0','c3a904455ff244e1a30bf32f0b4ea0d7');
INSERT INTO `items` (`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`,`uuid`) values ('31291','18','','10329','Dbstat: Rows fetched','pgsql.dbstat.sum.tup_fetched.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of rows fetched by queries','0','30d','0','','31277','3s','','','','200','1','0','','0','0','0','0','0','0','0','4eb6cc273484453bab1233de085363f5');
INSERT INTO `items` (`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`,`uuid`) values ('31292','18','','10329','Dbstat: Backends connected','pgsql.dbstat.sum.numbackends','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connected backends','0','30d','0','','31277','3s','','','','200','1','0','','0','0','0','0','0','0','0','c61f60e6f7d24ffe99db480f6bbd9613');
INSERT INTO `items` (`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`,`uuid`) values ('31293','18','','10329','Dbstat: Deadlocks','pgsql.dbstat.sum.deadlocks.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of deadlocks detected','0','30d','0','','31277','3s','','','','200','1','0','','0','0','0','0','0','0','0','e5d3838e5cf84be9ae83cacf22dc99af');
INSERT INTO `items` (`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`,`uuid`) values ('31294','18','','10329','Dbstat: Number temp bytes','pgsql.dbstat.sum.temp_bytes.rate','0','7d','365d','0','0','','b','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of data written to temporary files by queries','0','30d','0','','31277','3s','','','','200','1','0','','0','0','0','0','0','0','0','96cb6b388b2c480ead1568293dd81e70');
INSERT INTO `items` (`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`,`uuid`) values ('31295','18','','10329','Dbstat: Number temp bytes','pgsql.dbstat.sum.temp_files.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of temporary files created by queries','0','30d','0','','31277','3s','','','','200','1','0','','0','0','0','0','0','0','0','bea47c8a95074ad3997aff64fcfcf49b');
INSERT INTO `items` (`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`,`uuid`) values ('31296','18','','10329','Dbstat: Rows deleted','pgsql.dbstat.sum.tup_deleted.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of rows deleted by queries','0','30d','0','','31277','3s','','','','200','1','0','','0','0','0','0','0','0','0','731f4adac9d34eaaaa1f8d5080fdf6ce');
INSERT INTO `items` (`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`,`uuid`) values ('31297','18','','10329','Archive: Count of archive files','pgsql.archive.count_archived_files','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_stat_activity\r\nhttps://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ARCHIVER-VIEW','0','30d','0','','31289','3s','','','','200','1','0','','0','0','0','0','0','0','0','04b1c83463f247b0a42f17c5d0a9ce14');
INSERT INTO `items` (`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`,`uuid`) values ('31298','18','','10329','Dbstat: Rows inserted','pgsql.dbstat.sum.tup_inserted.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of rows inserted by queries','0','30d','0','','31277','3s','','','','200','1','0','','0','0','0','0','0','0','0','ae250ffa30c94df187c2010011e794aa');
INSERT INTO `items` (`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`,`uuid`) values ('31299','18','','10329','Dbstat: Rows returned','pgsql.dbstat.sum.tup_returned.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of rows returned by queries','0','30d','0','','31277','3s','','','','200','1','0','','0','0','0','0','0','0','0','3253ed1c96db4a84974e62b85d80bc0f');
INSERT INTO `items` (`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`,`uuid`) values ('31300','18','','10329','Dbstat: Rows updated','pgsql.dbstat.sum.tup_updated.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of rows updated by queries','0','30d','0','','31277','3s','','','','200','1','0','','0','0','0','0','0','0','0','13feadafa00a4bd293fcf1a98ddf1f39');
INSERT INTO `items` (`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`,`uuid`) values ('31301','18','','10329','Dbstat: Committed transactions','pgsql.dbstat.sum.xact_commit.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of transactions that have been committed','0','30d','0','','31277','3s','','','','200','1','0','','0','0','0','0','0','0','0','bc8a3b29a6684b7f8a70a54b962f0e7e');
INSERT INTO `items` (`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`,`uuid`) values ('31302','18','','10329','Dbstat: Roll backed transactions','pgsql.dbstat.sum.xact_rollback.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of transactions that have been rolled back','0','30d','0','','31277','3s','','','','200','1','0','','0','0','0','0','0','0','0','8aedfe3e385b447eb75b85f92301665a');
INSERT INTO `items` (`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`,`uuid`) values ('31303','18','','10329','Dbstat: Checksum failures','pgsql.dbstat.sum.checksum_failures.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of data page checksum failures detected (or on a shared object), or NULL if data checksums are not enabled. This metric included in PostgreSQL 12','0','30d','0','','31277','3s','','','','200','1','0','','0','0','0','0','0','0','0','1b98b9c95b32424baa68c354496ed2de');
INSERT INTO `items` (`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`,`uuid`) values ('31304','18','','10329','WAL: Segments count','pgsql.wal.count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of WAL segments','0','30d','0','','31290','3s','','','','200','1','0','','0','0','0','0','0','0','0','6d5aa6213cf248749cbffdea9aff694f');
INSERT INTO `items` (`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`,`uuid`) values ('31305','18','','10329','Dbstat: Conflicts','pgsql.dbstat.sum.conflicts.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of queries canceled due to conflicts with recovery. (Conflicts occur only on standby servers; see pg_stat_database_conflicts for details.)','0','30d','0','','31277','3s','','','','200','1','0','','0','0','0','0','0','0','0','0106dfc55ace4dacaff00ce2c98de2ea');
INSERT INTO `items` (`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`,`uuid`) values ('31306','18','','10329','Dbstat: Blocks write time','pgsql.dbstat.sum.blk_write_time','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time spent writing data file blocks by backends, in milliseconds','0','30d','0','','31277','3s','','','','200','1','0','','0','0','0','0','0','0','0','fba3b51d644c4c16ac71b3eda1be1701');
INSERT INTO `items` (`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`,`uuid`) values ('31307','18','','10329','Dbstat: Disk blocks read','pgsql.dbstat.sum.blks_read.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of disk blocks read','0','30d','0','','31277','3s','','','','200','1','0','','0','0','0','0','0','0','0','4dc3f2c23dfd4dfebe024a5c2d4409ae');
INSERT INTO `items` (`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`,`uuid`) values ('31309','18','','10329','Archive: Count of attempts to archive files','pgsql.archive.failed_trying_to_archive','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_stat_activity\r\nhttps://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ARCHIVER-VIEW','0','30d','0','','31289','3s','','','','200','1','0','','0','0','0','0','0','0','0','b60523c62afc4813aeb64cf9598fb7bd');
INSERT INTO `items` (`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`,`uuid`) values ('31310','18','','10329','Archive: Count of files need to archive','pgsql.archive.size_files_to_archive','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Size of files to archive','0','30d','0','','31289','3s','','','','200','1','0','','0','0','0','0','0','0','0','285f434f79864d24a4e66d5a49c539e9');
INSERT INTO `items` (`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`,`uuid`) values ('31311','18','','10329','Bgwriter: Buffers allocated','pgsql.bgwriter.buffers_alloc.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers allocated','0','30d','0','','31274','3s','','','','200','1','0','','0','0','0','0','0','0','0','c49f777ae0db48879bc946989bfc36f6');
INSERT INTO `items` (`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`,`uuid`) values ('31312','18','','10329','Bgwriter: Times a backend execute its own fsync','pgsql.bgwriter.buffers_backend_fsync.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times a backend had to execute its own fsync call (normally the background writer handles those even when the backend does its own write)','0','30d','0','','31274','3s','','','','200','1','0','','0','0','0','0','0','0','0','6e5990d8a0854efd83b3e6a57aa2c2f9');
INSERT INTO `items` (`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`,`uuid`) values ('31313','18','','10329','Bgwriter: Buffers written directly by a backend','pgsql.bgwriter.buffers_backend.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers written directly by a backend','0','30d','0','','31274','3s','','','','200','1','0','','0','0','0','0','0','0','0','1624e89567824e0493492a3dcc979788');
INSERT INTO `items` (`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`,`uuid`) values ('31314','18','','10329','Checkpoint: Buffers checkpoints written','pgsql.bgwriter.buffers_checkpoint.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers written during checkpoints','0','30d','0','','31274','3s','','','','200','1','0','','0','0','0','0','0','0','0','3bf0496d313f4dfea67c95010be54372');
INSERT INTO `items` (`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`,`uuid`) values ('31315','18','','10329','Checkpoint: Buffers background written','pgsql.bgwriter.buffers_clean.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers written by the background writer','0','30d','0','','31274','3s','','','','200','1','0','','0','0','0','0','0','0','0','65f4aeedbc7d40ed9a14e0dbd8024c4b');
INSERT INTO `items` (`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`,`uuid`) values ('31316','18','','10329','Checkpoint: Checkpoint write time','pgsql.bgwriter.checkpoint_write_time.rate','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of time that has been spent in the portion of checkpoint processing where files are written to disk, in milliseconds','0','30d','0','','31274','3s','','','','200','1','0','','0','0','0','0','0','0','0','26839587c46043caa2991e973962b954');
INSERT INTO `items` (`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`,`uuid`) values ('31317','18','','10329','Checkpoint: Requested','pgsql.bgwriter.checkpoints_req.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of requested checkpoints that have been performed','0','30d','0','','31274','3s','','','','200','1','0','','0','0','0','0','0','0','0','23fcb5ee8c19436b827001114961eb16');
INSERT INTO `items` (`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`,`uuid`) values ('31318','18','','10329','Checkpoint: By timeout','pgsql.bgwriter.checkpoints_timed.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of scheduled checkpoints that have been performed','0','30d','0','','31274','3s','','','','200','1','0','','0','0','0','0','0','0','0','9c578a8e072940728cc00d94f52cec8d');
INSERT INTO `items` (`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`,`uuid`) values ('31319','18','','10329','Bgwriter: Number of bgwriter stopped','pgsql.bgwriter.maxwritten_clean.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times the background writer stopped a cleaning scan because it had written too many buffers','0','30d','0','','31274','3s','','','','200','1','0','','0','0','0','0','0','0','0','b83939ecfb094a7e9eb42cd9a7e2695c');
INSERT INTO `items` (`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`,`uuid`) values ('31320','18','','10329','Connections sum: Active','pgsql.connections.active','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections executing a query','0','30d','0','','31276','3s','','','','200','1','0','','0','0','0','0','0','0','0','2ea55460f0d34063ae4ab65b74ec852c');
INSERT INTO `items` (`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`,`uuid`) values ('31321','18','','10329','Dbstat: Hit blocks read','pgsql.dbstat.sum.blks_hit.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times disk blocks were found already in the buffer cache','0','30d','0','','31277','3s','','','','200','1','0','','0','0','0','0','0','0','0','5c6de0fe332043bfb35c999b10893e4c');
INSERT INTO `items` (`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`,`uuid`) values ('31322','18','','10329','Connections sum: Disabled','pgsql.connections.disabled','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of disabled connections','0','30d','0','','31276','3s','','','','200','1','0','','0','0','0','0','0','0','0','69f14028e98b48d489fbd7345c2213dd');
INSERT INTO `items` (`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`,`uuid`) values ('31323','18','','10329','Connections sum: Fastpath function call','pgsql.connections.fastpath_function_call','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections executing a fast-path function','0','30d','0','','31276','3s','','','','200','1','0','','0','0','0','0','0','0','0','62a2401041724b4888bf058035dc6a0c');
INSERT INTO `items` (`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`,`uuid`) values ('31324','18','','10329','Connections sum: Idle','pgsql.connections.idle','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections waiting for a new client command','0','30d','0','','31276','3s','','','','200','1','0','','0','0','0','0','0','0','0','fc3b357cc8a24c4aad60784d1bfb7e18');
INSERT INTO `items` (`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`,`uuid`) values ('31325','18','','10329','Connections sum: Idle in transaction','pgsql.connections.idle_in_transaction','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections in a transaction state, but not executing a query','0','30d','0','','31276','3s','','','','200','1','0','','0','0','0','0','0','0','0','b900a8123dfa48e0ac8fd4b92ae8678d');
INSERT INTO `items` (`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`,`uuid`) values ('31326','18','','10329','Connections sum: Idle in transaction (aborted)','pgsql.connections.idle_in_transaction_aborted','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections in a transaction state, but not executing a query and one of the statements in the transaction caused an error.','0','30d','0','','31276','3s','','','','200','1','0','','0','0','0','0','0','0','0','99b0a3e14af44924b0319a0a9f6c16c7');
INSERT INTO `items` (`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`,`uuid`) values ('31327','18','','10329','Connections sum: Prepared','pgsql.connections.prepared','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of prepared transactions\r\nhttps://www.postgresql.org/docs/current/sql-prepare-transaction.html','0','30d','0','','31276','3s','','','','200','1','0','','0','0','0','0','0','0','0','194c41f88e9e44879a70033913dd41d3');
INSERT INTO `items` (`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`,`uuid`) values ('31328','18','','10329','Connections sum: Total','pgsql.connections.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections','0','30d','0','','31276','3s','','','','200','1','0','','0','0','0','0','0','0','0','1ec042e5853b430d9d7982c53c3fcf14');
INSERT INTO `items` (`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`,`uuid`) values ('31329','18','','10329','Connections sum: Total %','pgsql.connections.total_pct','0','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections in percentage','0','30d','0','','31276','3s','','','','200','1','0','','0','0','0','0','0','0','0','101149dd68994084a1cdab82c9d064f0');
INSERT INTO `items` (`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`,`uuid`) values ('31330','18','','10329','Connections sum: Waiting','pgsql.connections.waiting','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of waiting connections\r\nhttps://www.postgresql.org/docs/current/monitoring-stats.html#WAIT-EVENT-TABLE','0','30d','0','','31276','3s','','','','200','1','0','','0','0','0','0','0','0','0','f2c298008b914434b96da85a985e4a54');
INSERT INTO `items` (`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`,`uuid`) values ('31331','18','','10329','Dbstat: Blocks read time','pgsql.dbstat.sum.blk_read_time','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time spent reading data file blocks by backends, in milliseconds','0','30d','0','','31277','3s','','','','200','1','0','','0','0','0','0','0','0','0','619211cc2afa4a159f36abf1a17d5476');
INSERT INTO `items` (`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`,`uuid`) values ('31332','18','','10329','Archive: Count of files in archive_status need to archive','pgsql.archive.count_files_to_archive','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','31289','3s','','','','200','1','0','','0','0','0','0','0','0','0','729208d50ef64e50b0bb342899e211c2');
INSERT INTO `items` (`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`,`uuid`) values ('31333','18','','10329','WAL: Bytes written','pgsql.wal.write','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'WAL write in bytes','0','30d','0','','31290','3s','','','','200','1','0','','0','0','0','0','0','0','0','95f67516be544daf9ad8a1cad2e46114');
INSERT INTO `items` (`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`,`uuid`) values ('31338','18','','10329','DB {#DBNAME}: Tuples returned per second','pgsql.dbstat.tup_returned.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of rows returned by queries in this database','0','30d','0','','31279','3s','','','','200','1','0','','0','0','0','0','0','0','0','175c5051ef0c4a31b76270cacbdd7ed5');
INSERT INTO `items` (`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`,`uuid`) values ('31339','18','','10329','DB {#DBNAME}: Num of shareupdateexclusive locks','pgsql.locks.shareupdateexclusive["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of shareupdateexclusive locks for each database','0','30d','0','','31280','3s','','','','200','1','0','','0','0','0','0','0','0','0','04e6cec0423f4dddb09e6643561bdf77');
INSERT INTO `items` (`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`,`uuid`) values ('31340','18','','10329','DB {#DBNAME}: Num of sharerowexclusive locks','pgsql.locks.sharerowexclusive["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of total sharerowexclusive for each database','0','30d','0','','31280','3s','','','','200','1','0','','0','0','0','0','0','0','0','15eb93e90c1241a99aaff834d69cc5be');
INSERT INTO `items` (`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`,`uuid`) values ('31341','18','','10329','DB {#DBNAME}: Num of share locks','pgsql.locks.share["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of share locks for each database','0','30d','0','','31280','3s','','','','200','1','0','','0','0','0','0','0','0','0','8a410cf1f0be41fbb5a976f368f07430');
INSERT INTO `items` (`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`,`uuid`) values ('31342','18','','10329','DB {#DBNAME}: Num of rowshare locks','pgsql.locks.rowshare["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of rowshare locks for each database','0','30d','0','','31280','3s','','','','200','1','0','','0','0','0','0','0','0','0','b4b1402b99284f3bbf0ac0dff493449f');
INSERT INTO `items` (`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`,`uuid`) values ('31343','18','','10329','DB {#DBNAME}: Num of rowexclusive locks','pgsql.locks.rowexclusive["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of rowexclusive locks for each database','0','30d','0','','31280','3s','','','','200','1','0','','0','0','0','0','0','0','0','b1ccea7698264d768da1299ec9d13738');
INSERT INTO `items` (`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`,`uuid`) values ('31344','18','','10329','DB {#DBNAME}: Num of exclusive locks','pgsql.locks.exclusive["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of exclusive locks for each database','0','30d','0','','31280','3s','','','','200','1','0','','0','0','0','0','0','0','0','3c754430815f411e9aa8dde593f6333a');
INSERT INTO `items` (`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`,`uuid`) values ('31345','18','','10329','DB {#DBNAME}: Num of accessshare locks','pgsql.locks.accessshare["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of accessshare locks for each database','0','30d','0','','31280','3s','','','','200','1','0','','0','0','0','0','0','0','0','5f783de0d6124fc0ae14522a4ad89189');
INSERT INTO `items` (`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`,`uuid`) values ('31346','18','','10329','DB {#DBNAME}: Num of accessexclusive locks','pgsql.locks.accessexclusive["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of accessexclusive locks for each database','0','30d','0','','31280','3s','','','','200','1','0','','0','0','0','0','0','0','0','8eb2bd907a0e4385bcac9e0f467f9748');
INSERT INTO `items` (`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`,`uuid`) values ('31347','18','','10329','DB {#DBNAME}: Rollbacks per second','pgsql.dbstat.xact_rollback.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of transactions in this database that have been rolled back','0','30d','0','','31279','3s','','','','200','1','0','','0','0','0','0','0','0','0','1d280198e31649fcb053d4c87a0e869d');
INSERT INTO `items` (`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`,`uuid`) values ('31348','18','','10329','DB {#DBNAME}: Commits per second','pgsql.dbstat.xact_commit.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of transactions in this database that have been committed','0','30d','0','','31279','3s','','','','200','1','0','','0','0','0','0','0','0','0','5b0ecb9c928c49a6a01b5df6aec931dd');
INSERT INTO `items` (`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`,`uuid`) values ('31349','18','','10329','DB {#DBNAME}: Tuples updated per second','pgsql.dbstat.tup_updated.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows updated by queries in this database','0','30d','0','','31279','3s','','','','200','1','0','','0','0','0','0','0','0','0','9888b495d3f04cceb373c341bd4f1941');
INSERT INTO `items` (`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`,`uuid`) values ('31350','18','','10329','DB {#DBNAME}: Tuples fetched per second','pgsql.dbstat.tup_fetched.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows fetched by queries in this database','0','30d','0','','31279','3s','','','','200','1','0','','0','0','0','0','0','0','0','a512a7a075244ccb90ab6824125a405e');
INSERT INTO `items` (`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`,`uuid`) values ('31351','18','','10329','DB {#DBNAME}: Tuples inserted per second','pgsql.dbstat.tup_inserted.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows inserted by queries in this database','0','30d','0','','31279','3s','','','','200','1','0','','0','0','0','0','0','0','0','2f24c195df5842f1bdf65a11dea3a315');
INSERT INTO `items` (`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`,`uuid`) values ('31352','18','','10329','DB {#DBNAME}: Tuples deleted per second','pgsql.dbstat.tup_deleted.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows deleted by queries in this database','0','30d','0','','31279','3s','','','','200','1','0','','0','0','0','0','0','0','0','cf288751fb894e5291b2d539b4c1a6a1');
INSERT INTO `items` (`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`,`uuid`) values ('31353','18','','10329','DB {#DBNAME}: Temp_files created per second','pgsql.dbstat.temp_files.rate["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of temporary files created by queries in this database','0','30d','0','','31279','3s','','','','200','1','0','','0','0','0','0','0','0','0','480ffc23ca8d41e3ac86bb162007065f');
INSERT INTO `items` (`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`,`uuid`) values ('31354','18','','10329','DB {#DBNAME}: Temp_bytes written per second','pgsql.dbstat.temp_bytes.rate["{#DBNAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total amount of data written to temporary files by queries in this database','0','30d','0','','31279','3s','','','','200','1','0','','0','0','0','0','0','0','0','82a2f4b2dc4f4dfe9a0a42144f603a8a');
INSERT INTO `items` (`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`,`uuid`) values ('31355','18','','10329','DB {#DBNAME}: Backends connected','pgsql.dbstat.numbackends["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of backends currently connected to this database','0','30d','0','','31279','3s','','','','200','1','0','','0','0','0','0','0','0','0','2e31986867d24bca930d141cc5d9cc0f');
INSERT INTO `items` (`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`,`uuid`) values ('31356','18','','10329','DB {#DBNAME}: Detected deadlocks per second','pgsql.dbstat.deadlocks.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of detected deadlocks in this database','0','30d','0','','31279','3s','','','','200','1','0','','0','0','0','0','0','0','0','d53da0cc702f4fe381e4d13d454ec229');
INSERT INTO `items` (`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`,`uuid`) values ('31357','18','','10329','DB {#DBNAME}: Detected conflicts per second','pgsql.dbstat.conflicts.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of queries canceled due to conflicts with recovery in this database','0','30d','0','','31279','3s','','','','200','1','0','','0','0','0','0','0','0','0','4eb67f16bc2948a7927ed58c9d037466');
INSERT INTO `items` (`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`,`uuid`) values ('31358','18','','10329','DB {#DBNAME}: Checksum failures','pgsql.dbstat.checksum_failures.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of data page checksum failures detected in this database','0','30d','0','','31279','3s','','','','200','1','0','','0','0','0','0','0','0','0','d44335162082498bbc42e29e938a4de7');
INSERT INTO `items` (`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`,`uuid`) values ('31359','18','','10329','DB {#DBNAME}: Disk blocks read per second','pgsql.dbstat.blks_read.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of disk blocks read in this database','0','30d','0','','31279','3s','','','','200','1','0','','0','0','0','0','0','0','0','841496e662cc43cf8db7728e96fcba76');
INSERT INTO `items` (`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`,`uuid`) values ('31360','18','','10329','DB {#DBNAME}: Blocks hit per second','pgsql.dbstat.blks_hit.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of times disk blocks were found already in the buffer cache, so that a read was not necessary','0','30d','0','','31279','3s','','','','200','1','0','','0','0','0','0','0','0','0','4b1b1a4374c0429cb1790e774f181512');
INSERT INTO `items` (`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`,`uuid`) values ('31361','18','','10329','DB {#DBNAME}: Disk blocks write time','pgsql.dbstat.blk_write_time.rate["{#DBNAME}"]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time spent writing data file blocks by backends, in milliseconds','0','30d','0','','31279','3s','','','','200','1','0','','0','0','0','0','0','0','0','e746a7760d554a0e9d41ba01c3be9db5');
INSERT INTO `items` (`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`,`uuid`) values ('31362','18','','10329','DB {#DBNAME}: Disk blocks read time','pgsql.dbstat.blk_read_time.rate["{#DBNAME}"]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time spent reading data file blocks by backends, in milliseconds','0','30d','0','','31279','3s','','','','200','1','0','','0','0','0','0','0','0','0','0313d02ce8274bc9bcaee54d062300c8');
INSERT INTO `items` (`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`,`uuid`) values ('31363','18','','10329','DB {#DBNAME}: Num of total locks','pgsql.locks.total["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of total locks for each database','0','30d','0','','31280','3s','','','','200','1','0','','0','0','0','0','0','0','0','a982064d710644db85ebc1cde67bfe4d');
INSERT INTO `items` (`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`,`uuid`) values ('31364','18','','10274','Memory utilization','vm.memory.utilization','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory used percentage is calculated as (100-pavailable)','0','30d','0','','29103','3s','','','','200','1','0','','0','0','0','0','0','0','0','bb852083c6aa43119bfb1d0756d9f1f7');
INSERT INTO `items` (`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`,`uuid`) values ('31379','18','','10275','{#DEVNAME}: Disk average queue size (avgqu-sz)','vfs.dev.queue_size[{#DEVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected.','0','30d','0','','31372','3s','','','','200','1','0','','0','0','0','0','0','0','0','7d0ed5b91e844c5ba5bd31860f4eaee5');
INSERT INTO `items` (`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`,`uuid`) values ('31380','18','','10275','{#DEVNAME}: Disk read rate','vfs.dev.read.rate[{#DEVNAME}]','0','7d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'r/s. The number (after merges) of read requests completed per second for the device.','0','30d','0','','31372','3s','','','','200','1','0','','0','0','0','0','0','0','0','8a00f63fdfc844d88941795ff0ca1e8b');
INSERT INTO `items` (`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`,`uuid`) values ('31381','18','','10275','{#DEVNAME}: Disk read time (rate)','vfs.dev.read.time.rate[{#DEVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of total read time counter. Used in r_await calculation','0','30d','0','','31372','3s','','','','200','1','0','','0','0','0','0','0','0','0','9f1253dfd045447fbe4769e00fdf4fc7');
INSERT INTO `items` (`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`,`uuid`) values ('31382','18','','10275','{#DEVNAME}: Disk utilization','vfs.dev.util[{#DEVNAME}]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests.','0','30d','0','','31372','3s','','','','200','1','0','','0','0','0','0','0','0','0','00942e8bc61b423d84479cfc37b3f184');
INSERT INTO `items` (`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`,`uuid`) values ('31383','18','','10275','{#DEVNAME}: Disk write rate','vfs.dev.write.rate[{#DEVNAME}]','0','7d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'w/s. The number (after merges) of write requests completed per second for the device.','0','30d','0','','31372','3s','','','','200','1','0','','0','0','0','0','0','0','0','c9dcb1acf07441d2b6ea9eb520c96aff');
INSERT INTO `items` (`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`,`uuid`) values ('31384','18','','10275','{#DEVNAME}: Disk write time (rate)','vfs.dev.write.time.rate[{#DEVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of total write time counter. Used in w_await calculation','0','30d','0','','31372','3s','','','','200','1','0','','0','0','0','0','0','0','0','30c2ee8fd86a4d369d4fc0b2c713dec2');
INSERT INTO `items` (`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`,`uuid`) values ('31427','18','','10287','Free swap space in %','system.swap.pfree','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of swap volume/file in percent.','0','30d','0','','31420','3s','','','','200','1','0','','0','0','0','0','0','0','0','88eb59f25fde40a49f3b35f576fab29d');
INSERT INTO `items` (`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`,`uuid`) values ('31429','18','','10291','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of installed network interfaces.','0','30d','1','','31422','3s','','','','200','1','0','','0','0','0','0','0','0','0','e4ea554f9a1c4d3db0233c8babdf9bc1');
INSERT INTO `items` (`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`,`uuid`) values ('31453','18','','10291','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed["{#IFGUID}"]','0','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Estimated bandwidth of the network interface if any.','0','30d','0','','31422','3s','','','','200','1','0','','0','0','0','0','0','0','0','db8d1c51fdcc4cffbff0c8974b5233f9');
INSERT INTO `items` (`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`,`uuid`) values ('31454','18','','10291','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status["{#IFGUID}"]','0','7d','0','0','3','','','','',NULL,'132','','','0','','','','','2',NULL,'The operational status of the network interface.','0','30d','0','','31422','3s','','','','200','1','0','','0','0','0','0','0','0','0','efe5e7b10dbe4b5c8f86a60e6611c22f');
INSERT INTO `items` (`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`,`uuid`) values ('31455','18','','10291','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type["{#IFGUID}"]','0','7d','0d','0','3','','','','',NULL,'130','','','0','','','','','2',NULL,'The type of the network interface.','0','30d','0','','31422','3s','','','','200','1','0','','0','0','0','0','0','0','0','9ea1818be4d7423fb7799b9cf1546491');
INSERT INTO `items` (`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`,`uuid`) values ('31577','18','','10330','PHP-FPM: Slow requests','php-fpm.slow_requests','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of requests that exceeded your request_slowlog_timeout value.','0','30d','0','','31570','3s','','','','200','1','0','','0','0','0','0','0','0','0','4d17b6d89ac94d0880eac6962ebf7347');
INSERT INTO `items` (`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`,`uuid`) values ('31578','18','','10330','PHP-FPM: Version','php-fpm.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Current version PHP. Get from HTTP-Header "X-Powered-By" and may not work if you change default HTTP-headers.','0','30d','0','','31571','3s','','','','200','1','0','','0','0','0','0','0','0','0','b53e2e356317468f9d6d3272eb755650');
INSERT INTO `items` (`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`,`uuid`) values ('31579','18','','10330','PHP-FPM: Uptime','php-fpm.uptime','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'How long has this pool been running.','0','30d','0','','31570','3s','','','','200','1','0','','0','0','0','0','0','0','0','2a19b306712a47999e70d3ec30e39b05');
INSERT INTO `items` (`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`,`uuid`) values ('31580','18','','10330','PHP-FPM: Start time','php-fpm.start_time','0','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The time when this pool was started.','0','30d','0','','31570','3s','','','','200','1','0','','0','0','0','0','0','0','0','4e4d6eda8fbb4dd2ba7f48fba5723473');
INSERT INTO `items` (`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`,`uuid`) values ('31581','18','','10330','PHP-FPM: Accepted connections per second','php-fpm.conn_accepted.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of accepted requests per second.','0','30d','0','','31570','3s','','','','200','1','0','','0','0','0','0','0','0','0','9ae9e2a8003a48a7a482ef6d6ae9886c');
INSERT INTO `items` (`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`,`uuid`) values ('31582','18','','10330','PHP-FPM: Processes, total','php-fpm.processes_total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of server processes currently running.','0','30d','0','','31570','3s','','','','200','1','0','','0','0','0','0','0','0','0','a79af6cf38ec45518055c64aa7f1f5a2');
INSERT INTO `items` (`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`,`uuid`) values ('31583','18','','10330','PHP-FPM: Listen queue','php-fpm.listen_queue','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of connections that have been initiated, but not yet accepted.','0','30d','0','','31570','3s','','','','200','1','0','','0','0','0','0','0','0','0','edc6b68194fe499facfb6b22425ff0d4');
INSERT INTO `items` (`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`,`uuid`) values ('31584','18','','10330','PHP-FPM: Processes, idle','php-fpm.processes_idle','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of idle processes.','0','30d','0','','31570','3s','','','','200','1','0','','0','0','0','0','0','0','0','11cfd028325242a58d61d9e83aee640b');
INSERT INTO `items` (`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`,`uuid`) values ('31585','18','','10330','PHP-FPM: Processes, active','php-fpm.processes_active','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of active processes.','0','30d','0','','31570','3s','','','','200','1','0','','0','0','0','0','0','0','0','8ebee5fc8c854a96b34ed743e3dd0154');
INSERT INTO `items` (`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`,`uuid`) values ('31586','18','','10330','PHP-FPM: Process manager','php-fpm.process_manager','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The method used by the process manager to control the number of child processes for this pool.','0','30d','0','','31570','3s','','','','200','1','0','','0','0','0','0','0','0','0','5ab12fc9f4ef49e5bbf7b2c6a840879e');
INSERT INTO `items` (`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`,`uuid`) values ('31587','18','','10330','PHP-FPM: Ping','php-fpm.ping','0','7d','365d','0','3','','','','',NULL,'34','','','0','','','','','0',NULL,'','0','30d','0','','31571','3s','','','','200','1','0','','0','0','0','0','0','0','0','250f346008984a95829dba08d0f95838');
INSERT INTO `items` (`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`,`uuid`) values ('31588','18','','10330','PHP-FPM: Pool name','php-fpm.name','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The name of current pool.','0','30d','0','','31570','3s','','','','200','1','0','','0','0','0','0','0','0','0','830e04be30f04e50ac0fa4783ecdc677');
INSERT INTO `items` (`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`,`uuid`) values ('31589','18','','10330','PHP-FPM: Max children reached','php-fpm.max_children','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times that pm.max_children has been reached since the php-fpm pool started','0','30d','0','','31570','3s','','','','200','1','0','','0','0','0','0','0','0','0','e9d49669cf58492a9d5ef7ff997e1a40');
INSERT INTO `items` (`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`,`uuid`) values ('31590','18','','10330','PHP-FPM: Listen queue, max','php-fpm.listen_queue_max','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum number of requests in the queue of pending connections since this FPM pool has started.','0','30d','0','','31570','3s','','','','200','1','0','','0','0','0','0','0','0','0','de0a543bee5a46c88085b2aba2f4976f');
INSERT INTO `items` (`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`,`uuid`) values ('31591','18','','10330','PHP-FPM: Listen queue, len','php-fpm.listen_queue_len','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Size of the socket queue of pending connections.','0','30d','0','','31570','3s','','','','200','1','0','','0','0','0','0','0','0','0','aff9f072b06a4b56afb0e0f44b2c83a4');
INSERT INTO `items` (`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`,`uuid`) values ('31592','18','','10330','PHP-FPM: Processes, max active','php-fpm.processes_max_active','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The highest value that \'active processes\' has reached since the php-fpm server started.','0','30d','0','','31570','3s','','','','200','1','0','','0','0','0','0','0','0','0','3858218f90684bb19cbe27fc9aedf404');
INSERT INTO `items` (`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`,`uuid`) values ('31596','18','','10331','PHP-FPM: Accepted connections per second','php-fpm.conn_accepted.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of accepted requests per second.','0','30d','0','','31594','3s','','','','200','1','0','','0','0','0','0','0','0','0','a03bc5c2dc824b8f970ca1d2b7b4637f');
INSERT INTO `items` (`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`,`uuid`) values ('31597','18','','10331','PHP-FPM: Processes, idle','php-fpm.processes_idle','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of idle processes.','0','30d','0','','31594','3s','','','','200','1','0','','0','0','0','0','0','0','0','79402b0cac4d4a409b39db4bf71557d2');
INSERT INTO `items` (`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`,`uuid`) values ('31598','18','','10331','PHP-FPM: Uptime','php-fpm.uptime','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'How long has this pool been running.','0','30d','0','','31594','3s','','','','200','1','0','','0','0','0','0','0','0','0','093024c740b946a0bd6637ba9e3e0dad');
INSERT INTO `items` (`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`,`uuid`) values ('31599','18','','10331','PHP-FPM: Start time','php-fpm.start_time','0','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The time when this pool was started.','0','30d','0','','31594','3s','','','','200','1','0','','0','0','0','0','0','0','0','9a625629fc0a4222acfefa0409ec1c72');
INSERT INTO `items` (`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`,`uuid`) values ('31600','18','','10331','PHP-FPM: Slow requests','php-fpm.slow_requests','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of requests that exceeded your request_slowlog_timeout value.','0','30d','0','','31594','3s','','','','200','1','0','','0','0','0','0','0','0','0','0dd9e388e2584e0090ed65bab39183f9');
INSERT INTO `items` (`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`,`uuid`) values ('31601','18','','10331','PHP-FPM: Processes, total','php-fpm.processes_total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of server processes currently running.','0','30d','0','','31594','3s','','','','200','1','0','','0','0','0','0','0','0','0','e69faadd7a9d457e8f56d283871b946a');
INSERT INTO `items` (`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`,`uuid`) values ('31602','18','','10331','PHP-FPM: Processes, max active','php-fpm.processes_max_active','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The highest value that \'active processes\' has reached since the php-fpm server started.','0','30d','0','','31594','3s','','','','200','1','0','','0','0','0','0','0','0','0','9632f44f9b2648f299e9f61a39daf92f');
INSERT INTO `items` (`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`,`uuid`) values ('31603','18','','10331','PHP-FPM: Ping','php-fpm.ping','0','7d','365d','0','3','','','','',NULL,'35','','','0','','','','','0',NULL,'','0','30d','0','','31595','3s','','','','200','1','0','','0','0','0','0','0','0','0','6a090c078ace46bd958b42225c63f5ca');
INSERT INTO `items` (`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`,`uuid`) values ('31604','18','','10331','PHP-FPM: Processes, active','php-fpm.processes_active','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of active processes.','0','30d','0','','31594','3s','','','','200','1','0','','0','0','0','0','0','0','0','923243cbb4b647389a38b4788aad3141');
INSERT INTO `items` (`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`,`uuid`) values ('31605','18','','10331','PHP-FPM: Process manager','php-fpm.process_manager','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The method used by the process manager to control the number of child processes for this pool.','0','30d','0','','31594','3s','','','','200','1','0','','0','0','0','0','0','0','0','084848b2d6bd4b8a88424b1ec9055b0f');
INSERT INTO `items` (`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`,`uuid`) values ('31606','18','','10331','PHP-FPM: Pool name','php-fpm.name','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The name of current pool.','0','30d','0','','31594','3s','','','','200','1','0','','0','0','0','0','0','0','0','226939bd485a4381a5c0a6d4511acbc3');
INSERT INTO `items` (`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`,`uuid`) values ('31607','18','','10331','PHP-FPM: Max children reached','php-fpm.max_children','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times that pm.max_children has been reached since the php-fpm pool started','0','30d','0','','31594','3s','','','','200','1','0','','0','0','0','0','0','0','0','dcb11355c5ae4c6ab5f1326aa1c7bbd6');
INSERT INTO `items` (`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`,`uuid`) values ('31608','18','','10331','PHP-FPM: Listen queue, max','php-fpm.listen_queue_max','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum number of requests in the queue of pending connections since this FPM pool has started.','0','30d','0','','31594','3s','','','','200','1','0','','0','0','0','0','0','0','0','a8829ff906e847c2b97a32b1ded60523');
INSERT INTO `items` (`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`,`uuid`) values ('31609','18','','10331','PHP-FPM: Listen queue, len','php-fpm.listen_queue_len','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Size of the socket queue of pending connections.','0','30d','0','','31594','3s','','','','200','1','0','','0','0','0','0','0','0','0','56876a76bd3a4c6c90b033c19a59f6d1');
INSERT INTO `items` (`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`,`uuid`) values ('31610','18','','10331','PHP-FPM: Listen queue','php-fpm.listen_queue','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of connections that have been initiated, but not yet accepted.','0','30d','0','','31594','3s','','','','200','1','0','','0','0','0','0','0','0','0','cf2fe31db5084bc5b363ef7d0d691c25');
INSERT INTO `items` (`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`,`uuid`) values ('31611','18','','10331','PHP-FPM: Version','php-fpm.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Current version PHP. Get from HTTP-Header "X-Powered-By" and may not work if you change default HTTP-headers.','0','30d','0','','31595','3s','','','','200','1','0','','0','0','0','0','0','0','0','d49adb58e8bb4453911270e5dce1e03e');
INSERT INTO `items` (`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`,`uuid`) values ('31701','18','','10335','Oracle: Active user sessions','oracle.session_active_user','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active user sessions.','0','30d','0','','31698','3s','','','','200','1','0','','0','0','0','0','0','0','0','a7ef5969fff545968d7c133bc67baaac');
INSERT INTO `items` (`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`,`uuid`) values ('31702','18','','10335','Oracle: Rows per sort','oracle.rows_per_sort','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The average number of rows per sort for all types of sorts performed.','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','e8aca0dfd1d74d3b9b042d3ed3070e42');
INSERT INTO `items` (`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`,`uuid`) values ('31703','18','','10335','Oracle: Active background sessions','oracle.session_active_background','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active background sessions.','0','30d','0','','31698','3s','','','','200','1','0','','0','0','0','0','0','0','0','89811a05632c478d97165f629dadd5b9');
INSERT INTO `items` (`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`,`uuid`) values ('31704','18','','10335','Oracle: Sessions concurrency','oracle.session_concurrency_rate','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of concurrency. Concurrency is a DB behavior when different transactions request to change the same resource - in case of modifying data transactions sequentially block temporarily the right to change data, the rest of the transactions are waiting for access. In the case when access for resource is locked for a long time, then the concurrency grows (like the transaction queue) and this often has an extremely negative impact on performance. A high contention value does not indicate the root cause of the problem, but is a signal to search for it.','0','30d','0','','31698','3s','','','','200','1','0','','0','0','0','0','0','0','0','d91119f30b95418bab67f929737e6bf8');
INSERT INTO `items` (`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`,`uuid`) values ('31705','18','','10335','Oracle: Session count','oracle.session_count','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Session count.','0','30d','0','','31698','3s','','','','200','1','0','','0','0','0','0','0','0','0','cfd7559ac25e4c0a837048e675f4d995');
INSERT INTO `items` (`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`,`uuid`) values ('31706','18','','10335','Oracle: Inactive user sessions','oracle.session_inactive_user','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of inactive user sessions.','0','30d','0','','31698','3s','','','','200','1','0','','0','0','0','0','0','0','0','2222705798fd464492c6f692dd9a0392');
INSERT INTO `items` (`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`,`uuid`) values ('31707','18','','10335','Oracle: SQL service response time','oracle.service_response_time','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'SQL service response time in seconds.','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','0458d6dd9bde4f2aa51319e3c23f5eae');
INSERT INTO `items` (`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`,`uuid`) values ('31708','18','','10335','Oracle: Sessions limit','oracle.session_limit','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'User and system sessions.','0','30d','0','','31693','3s','','','','200','1','0','','0','0','0','0','0','0','0','381c97858785442389cd6ab74d0ee285');
INSERT INTO `items` (`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`,`uuid`) values ('31709','18','','10335','Oracle: Sessions lock rate','oracle.session_lock_rate','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of locked sessions. Locks are mechanisms that prevent destructive interaction between transactions accessing the same resource—either user objects such as tables and rows or system objects not visible to users, such as shared data structures in memory and data dictionary rows.','0','30d','0','','31698','3s','','','','200','1','0','','0','0','0','0','0','0','0','c1717acc82784151b5afc6ad08ce3145');
INSERT INTO `items` (`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`,`uuid`) values ('31710','18','','10335','Oracle: Processes limit','oracle.processes_limit','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Max user processes.','0','30d','0','','31693','3s','','','','200','1','0','','0','0','0','0','0','0','0','cdb59700d4a24fb3bea9d2b63d5d7938');
INSERT INTO `items` (`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`,`uuid`) values ('31711','18','','10335','Oracle: Active parallel sessions','oracle.active_parallel_sessions','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active parallel sessions.','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','9d24ae0f86d54b73a35d9c15d4e082cb');
INSERT INTO `items` (`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`,`uuid`) values ('31712','18','','10335','Oracle: Sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s','oracle.session_long_time_locked','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of the prolongedly locked sessions. (You can change maximum session lock duration in seconds for query by {$ORACLE.SESSION.LOCK.MAX.TIME} macro. Default 600 sec)','0','30d','0','','31698','3s','','','','200','1','0','','0','0','0','0','0','0','0','c279df21264642369d65a6c72a11698d');
INSERT INTO `items` (`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`,`uuid`) values ('31713','18','','10335','Oracle: SGA, buffer cache','oracle.sga_buffer_cache','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The size of the cache of standard blocks.','0','30d','0','','31688','3s','','','','200','1','0','','0','0','0','0','0','0','0','7ad06a6ccb834c5c95f30c319a48446c');
INSERT INTO `items` (`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`,`uuid`) values ('31714','18','','10335','Oracle: SGA, fixed','oracle.sga_fixed','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The fixed SGA is an internal housekeeping area.','0','30d','0','','31688','3s','','','','200','1','0','','0','0','0','0','0','0','0','39dc67c29cce4742acf832949dc57760');
INSERT INTO `items` (`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`,`uuid`) values ('31715','18','','10335','Oracle: SGA, java pool','oracle.sga_java_pool','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory is allocated from the java pool.','0','30d','0','','31688','3s','','','','200','1','0','','0','0','0','0','0','0','0','562c02f282974020add8f98e9865fb9d');
INSERT INTO `items` (`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`,`uuid`) values ('31716','18','','10335','Oracle: SGA, log buffer','oracle.sga_log_buffer','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes allocated for the redo log buffer.','0','30d','0','','31688','3s','','','','200','1','0','','0','0','0','0','0','0','0','77c17fc1056745c4949b3476c3b920d4');
INSERT INTO `items` (`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`,`uuid`) values ('31717','18','','10335','Oracle: SGA, shared pool','oracle.sga_shared_pool','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory is allocated from the shared pool.','0','30d','0','','31688','3s','','','','200','1','0','','0','0','0','0','0','0','0','b64f3cad53814e989c576d3ce51bf42d');
INSERT INTO `items` (`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`,`uuid`) values ('31718','18','','10335','Oracle: Shared pool free %','oracle.shared_pool_free','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Shared pool free memory percent. Free/Total','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','517c7b3bbf8d40988e6a8289319eaec9');
INSERT INTO `items` (`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`,`uuid`) values ('31719','18','','10335','Oracle: Total sorts per user call','oracle.sorts_per_user_call','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total sorts per user call.','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','28c7030b02714d5ea402fe6f2a3d769a');
INSERT INTO `items` (`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`,`uuid`) values ('31720','18','','10335','Oracle: Temp space used','oracle.temp_space_used','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Temp space used.','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','48f54a0324a64e80aaf22d5cd26798cd');
INSERT INTO `items` (`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`,`uuid`) values ('31721','18','','10335','Oracle: PGA, Total allocated','oracle.total_pga_allocated','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Current amount of PGA memory allocated by the instance. The Oracle Database attempts to keep this number below the value of the PGA_AGGREGATE_TARGET initialization parameter. However, it is possible for the PGA allocated to exceed that value by a small percentage and for a short period of time when the work area workload is increasing very rapidly or when PGA_AGGREGATE_TARGET is set to a small value.','0','30d','0','','31694','3s','','','','200','1','0','','0','0','0','0','0','0','0','1a4efb793cff4224b0ae02272be2fe85');
INSERT INTO `items` (`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`,`uuid`) values ('31722','18','','10335','Oracle: PGA, Total freeable','oracle.total_pga_freeable','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes of PGA memory in all processes that could be freed back to the operating system.','0','30d','0','','31694','3s','','','','200','1','0','','0','0','0','0','0','0','0','264b73d153694b52a47ac0219a8de66c');
INSERT INTO `items` (`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`,`uuid`) values ('31723','18','','10335','Oracle: PGA, Total inuse','oracle.total_pga_used','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates how much PGA memory is currently consumed by work areas. This number can be used to determine how much memory is consumed by other consumers of the PGA memory (for example, PL/SQL or Java).','0','30d','0','','31694','3s','','','','200','1','0','','0','0','0','0','0','0','0','3f3083748a4f42998b135b1b4f88d11a');
INSERT INTO `items` (`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`,`uuid`) values ('31724','18','','10335','Oracle: Uptime','oracle.uptime','0','7d','0d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Oracle instance uptime in seconds.','0','30d','0','','31692','3s','','','','200','1','0','','0','0','0','0','0','0','0','4f1a9efea8594486b226307a52e35474');
INSERT INTO `items` (`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`,`uuid`) values ('31725','18','','10335','Oracle: User rollbacks per second','oracle.user_rollbacks_rate','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times that users manually issue the ROLLBACK statement or an error occurred during a user\'s transactions.','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','cec9a53d637e42c79e2a838588ceeaca');
INSERT INTO `items` (`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`,`uuid`) values ('31726','18','','10335','Oracle: SGA, large pool','oracle.sga_large_pool','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory is allocated from the large pool.','0','30d','0','','31688','3s','','','','200','1','0','','0','0','0','0','0','0','0','35e3346e273a46339e7b5d3721584d3a');
INSERT INTO `items` (`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`,`uuid`) values ('31727','18','','10335','Oracle: Physical reads bytes per second','oracle.physical_read_bytes_rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Read bytes per second.','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','92bf88b7b07048b785ca37d9b97cd78b');
INSERT INTO `items` (`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`,`uuid`) values ('31728','18','','10335','Oracle: Physical writes per second','oracle.physical_writes_rate','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Writes per second.','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','b71df51181c1464486ced05c95bdc938');
INSERT INTO `items` (`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`,`uuid`) values ('31729','18','','10335','Oracle: FRA, Space reclaimable','oracle.fra_space_reclaimable','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of disk space (in bytes) that can be created by deleting obsolete, redundant, and other low priority files from the fast recovery area.','0','30d','0','','31686','3s','','','','200','1','0','','0','0','0','0','0','0','0','92d7abac10dc47a7bec1bd420a41c78c');
INSERT INTO `items` (`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`,`uuid`) values ('31730','18','','10335','Oracle: Average active sessions','oracle.active_sessions','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The average active sessions at a point in time. It is the number of sessions that are either working or waiting.','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','9763dd0b223540e4820fd3b8f3281ec3');
INSERT INTO `items` (`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`,`uuid`) values ('31731','18','','10335','Oracle: Archiver state','oracle.archiver_state','0','7d','365d','0','3','','','','',NULL,'175','','','0','','','','','0',NULL,'Automatic archiving status.','0','30d','0','','31692','3s','','','','200','1','0','','0','0','0','0','0','0','0','a5533a1c354a4c8dbfec39c9b0637ba2');
INSERT INTO `items` (`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`,`uuid`) values ('31732','18','','10335','Oracle: Buffer cache hit ratio','oracle.buffer_cache_hit_ratio','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Ratio of buffer cache hits. (LogRead - PhyRead)/LogRead','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','a5f5251364a44a90a66bb2096f53a48a');
INSERT INTO `items` (`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`,`uuid`) values ('31733','18','','10335','Oracle: Global cache blocks corrupted','oracle.cache_blocks_corrupt','0','7d','365d','0','3','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of blocks that encountered a corruption or checksum failure during interconnect.','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','1483e7a312154438a9b09d0b696568f0');
INSERT INTO `items` (`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`,`uuid`) values ('31734','18','','10335','Oracle: Global cache blocks lost','oracle.cache_blocks_lost','0','7d','365d','0','3','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of global cache blocks lost','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','3589d4b2b9114f9cabb027f85f5349ab');
INSERT INTO `items` (`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`,`uuid`) values ('31735','18','','10335','Oracle: Cursor cache hit ratio','oracle.cursor_cache_hit_ratio','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Ratio of cursor cache hits. CursorCacheHit/SoftParse','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','fd1ea13484984d0baffc45ea02a33a7c');
INSERT INTO `items` (`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`,`uuid`) values ('31736','18','','10335','Oracle: Database CPU time ratio','oracle.database_cpu_time_ratio','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated by dividing the total CPU used by the database by the Oracle time model statistic DB time.','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','9fd6475d1b824c74b2b3dad1db4f494a');
INSERT INTO `items` (`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`,`uuid`) values ('31737','18','','10335','Oracle: Database wait time ratio','oracle.database_wait_time_ratio','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Wait time: the time that the server process spends waiting for available shared resources (to be released by other server processes) such as latches, locks, data buffers, and so on','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','9fc7f2e986cd4c97ad8778f06dd04822');
INSERT INTO `items` (`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`,`uuid`) values ('31738','18','','10335','Oracle: Datafiles limit','oracle.db_files_limit','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Max allowable number of datafile.','0','30d','0','','31693','3s','','','','200','1','0','','0','0','0','0','0','0','0','cdd3d4f1baea4f2ea122e058704d43e9');
INSERT INTO `items` (`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`,`uuid`) values ('31739','18','','10335','Oracle: Disk sort per second','oracle.disk_sorts','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of sorts going to disk per second','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','9692f4f771844438a3f9224455c504b6');
INSERT INTO `items` (`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`,`uuid`) values ('31740','18','','10335','Oracle: Enqueue timeouts per second','oracle.enqueue_timeouts_rate','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Enqueue timeouts per second.','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','7dc5745f2a124119b058d23195ba5058');
INSERT INTO `items` (`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`,`uuid`) values ('31741','18','','10335','Oracle: FRA, Number of files','oracle.fra_number_of_files','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of files in the fast recovery area','0','30d','0','','31686','3s','','','','200','1','0','','0','0','0','0','0','0','0','5e09413cb3a14a3a87e2ead6b838ce1f');
INSERT INTO `items` (`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`,`uuid`) values ('31742','18','','10335','Oracle: FRA, Number of restore points','oracle.fra_restore_point','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','31686','3s','','','','200','1','0','','0','0','0','0','0','0','0','68f50e7513d642f789a27dfce03ca1b8');
INSERT INTO `items` (`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`,`uuid`) values ('31743','18','','10335','Oracle: FRA, Space limit','oracle.fra_space_limit','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum amount of disk space (in bytes) that the database can use for the fast recovery area.','0','30d','0','','31686','3s','','','','200','1','0','','0','0','0','0','0','0','0','f7f16828d46a4054a30a22e955542d6a');
INSERT INTO `items` (`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`,`uuid`) values ('31744','18','','10335','Oracle: FRA, Used space','oracle.fra_space_used','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of disk space (in bytes) used by fast recovery area files created in current and all previous fast recovery areas.','0','30d','0','','31686','3s','','','','200','1','0','','0','0','0','0','0','0','0','1e02a10018124f4db85ef9822a605b61');
INSERT INTO `items` (`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`,`uuid`) values ('31745','18','','10335','Oracle: Physical writes bytes per second','oracle.physical_write_bytes_rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Write bytes per second.','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','e34abb4139fe43ae8b27edbe6ad12c8d');
INSERT INTO `items` (`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`,`uuid`) values ('31746','18','','10335','Oracle: FRA, Usable space in %','oracle.fra_usable_pct','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','31686','3s','','','','200','1','0','','0','0','0','0','0','0','0','887c56e1b9f1415db5def1e1f502a6ae');
INSERT INTO `items` (`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`,`uuid`) values ('31747','18','','10335','Oracle: GC CR block received per second','oracle.gc_cr_block_received_rate','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'GC CR block received per second.','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','e8725c1d79e34fbc8331677fe3d4459e');
INSERT INTO `items` (`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`,`uuid`) values ('31748','18','','10335','Oracle: Instance hostname','oracle.instance_hostname','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Name of the host machine.','0','30d','0','','31692','3s','','','','200','1','0','','0','0','0','0','0','0','0','cd0e2c8f164443588ad19647506c0eea');
INSERT INTO `items` (`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`,`uuid`) values ('31749','18','','10335','Oracle: Instance name','oracle.instance_name','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Name of the instance.','0','30d','0','','31692','3s','','','','200','1','0','','0','0','0','0','0','0','0','0cc90c2554a7412eafe42c33dd1e9ede');
INSERT INTO `items` (`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`,`uuid`) values ('31750','18','','10335','Oracle: Instance status','oracle.instance_status','0','7d','365d','0','3','','','','',NULL,'171','','','0','','','','','0',NULL,'Status of the instance.','0','30d','0','','31692','3s','','','','200','1','0','','0','0','0','0','0','0','0','f51053d243ef41089b5e635fd1abb5f3');
INSERT INTO `items` (`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`,`uuid`) values ('31751','18','','10335','Oracle: Instance role','oracle.instance.role','0','7d','365d','0','3','','','','',NULL,'173','','','0','','','','','0',NULL,'Indicates whether the instance is an active instance or an inactive secondary instance.','0','30d','0','','31692','3s','','','','200','1','0','','0','0','0','0','0','0','0','021a98326c8f402693e4fba9fb3c25de');
INSERT INTO `items` (`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`,`uuid`) values ('31752','18','','10335','Oracle: Library cache hit ratio','oracle.library_cache_hit_ratio','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Ratio of library cache hits. Hits/Pins','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','b2551269bf4541dfae378b9e48d1f5da');
INSERT INTO `items` (`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`,`uuid`) values ('31753','18','','10335','Oracle: Logons per second','oracle.logons_rate','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of logon attempts.','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','13a938f495ee464a8ed3f2575cd191b9');
INSERT INTO `items` (`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`,`uuid`) values ('31754','18','','10335','Oracle: Long table scans per second','oracle.long_table_scans_rate','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of long table scans per second. A table is considered \'long\' if the table is not cached and if its high-water mark is greater than 5 blocks.','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','440f42943ebc436fb75bd5d8397fe876');
INSERT INTO `items` (`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`,`uuid`) values ('31755','18','','10335','Oracle: Memory sorts ratio','oracle.memory_sorts_ratio','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of sorts (from ORDER BY clauses or index building) that are done to disk vs in-memory.','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','4769432ae04641758daabd5b27deaa01');
INSERT INTO `items` (`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`,`uuid`) values ('31756','18','','10335','Oracle: PGA, Global memory bound','oracle.pga_global_bound','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum size of a work area executed in automatic mode.','0','30d','0','','31694','3s','','','','200','1','0','','0','0','0','0','0','0','0','749a1281ba84475193897a3362f6f873');
INSERT INTO `items` (`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`,`uuid`) values ('31757','18','','10335','Oracle: PGA, Aggregate target parameter','oracle.pga_target','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Current value of the PGA_AGGREGATE_TARGET initialization parameter. If this parameter is not set, then its value is 0 and automatic management of PGA memory is disabled.','0','30d','0','','31694','3s','','','','200','1','0','','0','0','0','0','0','0','0','2b5797f046434125b65daf31121fdd81');
INSERT INTO `items` (`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`,`uuid`) values ('31758','18','','10335','Oracle: Active serial sessions','oracle.active_serial_sessions','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active serial sessions.','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','7e4eb79b9b674c5ba57e790fae0fb410');
INSERT INTO `items` (`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`,`uuid`) values ('31759','18','','10335','Oracle: Physical reads per second','oracle.physical_reads_rate','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reads per second.','0','30d','0','','31691','3s','','','','200','1','0','','0','0','0','0','0','0','0','e96ff6a018dc4553b9ad7f2dc87f4d99');
INSERT INTO `items` (`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`,`uuid`) values ('31760','18','','10335','Oracle: Version','oracle.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Oracle Server version.','0','30d','0','','31692','3s','','','','200','1','0','','0','0','0','0','0','0','0','04c0b90a0a7c4d6a95f51d006a65a530');
INSERT INTO `items` (`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`,`uuid`) values ('31766','18','','10335','Archivelog \'{#DEST_NAME}\': Error','oracle.archivelog_error["{#DEST_NAME}"]','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Displays the error text','0','30d','0','','31697','3s','','','','200','1','0','','0','0','0','0','0','0','0','46ae0ac79493430a94ac50f79dc053ba');
INSERT INTO `items` (`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`,`uuid`) values ('31767','18','','10335','Archivelog \'{#DEST_NAME}\': Last sequence','oracle.archivelog_log_sequence["{#DEST_NAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Identifies the sequence number of the last archived redo log to be archived','0','30d','0','','31697','3s','','','','200','1','0','','0','0','0','0','0','0','0','ce76a8ece06f4a17bfaf08b4351346d5');
INSERT INTO `items` (`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`,`uuid`) values ('31768','18','','10335','Archivelog \'{#DEST_NAME}\': Status','oracle.archivelog_log_status["{#DEST_NAME}"]','0','7d','365d','0','3','','','','',NULL,'179','','','0','','','','','2',NULL,'Identifies the current status of the destination: 1 - \'Valid\', 2 - \'Deferred\',3 - \'Error\', 0 - \'Unknown\'','0','30d','0','','31697','3s','','','','200','1','0','','0','0','0','0','0','0','0','a411a4e1c8ca4ea2a1ece92075cd0325');
INSERT INTO `items` (`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`,`uuid`) values ('31769','18','','10335','Oracle Database \'{#DBNAME}\': Force logging','oracle.db_force_logging["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,'181','','','0','','','','','2',NULL,'Indicates whether the database is under force logging mode (YES) or not (NO)','0','30d','0','','31699','3s','','','','200','1','0','','0','0','0','0','0','0','0','d9d1575b767b46e0aefe65a270f2d01b');
INSERT INTO `items` (`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`,`uuid`) values ('31770','18','','10335','Oracle Database \'{#DBNAME}\': Log mode','oracle.db_log_mode["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,'183','','','0','','','','','2',NULL,'Archive log mode, 0 - \'NOARCHIVELOG\', 1 - \'ARCHIVELOG\', 2 - \'MANUAL\'','0','30d','0','','31699','3s','','','','200','1','0','','0','0','0','0','0','0','0','a499423d6e8d44f2bc11beceb30c5fc1');
INSERT INTO `items` (`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`,`uuid`) values ('31771','18','','10335','Oracle Database \'{#DBNAME}\': Open status','oracle.db_open_mode["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,'167','','','0','','','','','2',NULL,'1 - \'MOUNTED\', 2 - \'READ WRITE\', 3 - \'READ ONLY\', 4 - \'READ ONLY WITH APPLY\' (A physical standby database is open in real-time query mode)','0','30d','0','','31699','3s','','','','200','1','0','','0','0','0','0','0','0','0','0b0cfebb30aa4d21b8ff91f887fdffde');
INSERT INTO `items` (`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`,`uuid`) values ('31772','18','','10335','Oracle Database \'{#DBNAME}\': Role','oracle.db_role["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,'169','','','0','','','','','2',NULL,'Current role of the database, 1 - \'SNAPSHOT STANDBY\', 2 - \'LOGICAL STANDBY\', 3 - \'PHYSICAL STANDBY\', 4 - \'PRIMARY \', 5 -\'FAR SYNC\'','0','30d','0','','31699','3s','','','','200','1','0','','0','0','0','0','0','0','0','560b010dcdfc445cbd4e266b88b60e24');
INSERT INTO `items` (`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`,`uuid`) values ('31773','18','','10335','ASM \'{#DG_NAME}\': Free size','oracle.asm_free_size["{#DG_NAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Free size of ASM disk group.','0','30d','0','','31690','3s','','','','200','1','0','','0','0','0','0','0','0','0','8b4e5c9385d04a39b2187e093ffca213');
INSERT INTO `items` (`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`,`uuid`) values ('31774','18','','10335','ASM \'{#DG_NAME}\': Total size','oracle.asm_total_size["{#DG_NAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total size of ASM disk group.','0','30d','0','','31690','3s','','','','200','1','0','','0','0','0','0','0','0','0','b80f69f44dd24eae82a301dbefb0c60f');
INSERT INTO `items` (`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`,`uuid`) values ('31775','18','','10335','ASM \'{#DG_NAME}\': Free size','oracle.asm_used_pct["{#DG_NAME}"]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Usage percent of ASM disk group.','0','30d','0','','31690','3s','','','','200','1','0','','0','0','0','0','0','0','0','e2a0ac73040f401bb05ff88140f6665b');
INSERT INTO `items` (`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`,`uuid`) values ('31776','18','','10335','Oracle Database \'{#DBNAME}\': Open status','oracle.pdb_open_mode["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,'167','','','0','','','','','2',NULL,'1 - \'MOUNTED\', 2 - \'READ WRITE\', 3 - \'READ ONLY\', 4 - \'READ ONLY WITH APPLY\' (A physical standby database is open in real-time query mode)','0','30d','0','','31689','3s','','','','200','1','0','','0','0','0','0','0','0','0','c52e96105cea45cea1b18201b325ba53');
INSERT INTO `items` (`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`,`uuid`) values ('31777','18','','10335','Oracle TBS \'{#TABLESPACE}\': Tablespace allocated, bytes','oracle.tbs_alloc_bytes["{#TABLESPACE}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Currently allocated bytes for tablespace (sum of the current size of datafiles).','0','30d','0','','31700','3s','','','','200','1','0','','0','0','0','0','0','0','0','14a26a84cfe947089843ed93cd7707c8');
INSERT INTO `items` (`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`,`uuid`) values ('31778','18','','10335','Oracle TBS \'{#TABLESPACE}\': Tablespace free, bytes','oracle.tbs_free_bytes["{#TABLESPACE}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Free bytes of allocated space.','0','30d','0','','31700','3s','','','','200','1','0','','0','0','0','0','0','0','0','d7263b6da6c04c7798909a8448f526ab');
INSERT INTO `items` (`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`,`uuid`) values ('31779','18','','10335','Oracle TBS \'{#TABLESPACE}\': Tablespace MAX size, bytes','oracle.tbs_max_bytes["{#TABLESPACE}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum size of tablespace.','0','30d','0','','31700','3s','','','','200','1','0','','0','0','0','0','0','0','0','d2d919d303b244829c797245e08c2fe5');
INSERT INTO `items` (`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`,`uuid`) values ('31780','18','','10335','Oracle TBS \'{#TABLESPACE}\': Open status','oracle.tbs_status["{#TABLESPACE}"]','0','7d','365d','0','3','','','','',NULL,'177','','','0','','','','','2',NULL,'Tablespace status. 1 - \'ONLINE\' 2 - \'OFFLINE\' 3- \'READ ONLY\'','0','30d','0','','31700','3s','','','','200','1','0','','0','0','0','0','0','0','0','de6892ac5ca4499db01dd02c0444aafc');
INSERT INTO `items` (`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`,`uuid`) values ('31781','18','','10335','Oracle TBS \'{#TABLESPACE}\': Tablespace allocated, percent','oracle.tbs_used_pct["{#TABLESPACE}"]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Allocated bytes/Max bytes*100','0','30d','0','','31700','3s','','','','200','1','0','','0','0','0','0','0','0','0','5d6293b33a46488c88a75dc898bf7059');
INSERT INTO `items` (`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`,`uuid`) values ('31785','18','','10336','Asterisk: SIP peers','asterisk.sip.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of SIP peers.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','fb78998a342942ac942a7e1632b98208');
INSERT INTO `items` (`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`,`uuid`) values ('31786','18','','10336','Asterisk: Version','asterisk.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Service version','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','8ed124c5d61541c0ab1dcc3491fb05c6');
INSERT INTO `items` (`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`,`uuid`) values ('31787','18','','10336','Asterisk: Uptime after reload','asterisk.uptime_reload','0','7d','365d','0','0','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'System uptime after a config reload in \'N days, hh:mm:ss\' format.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','86e23b5b9fd64e6e840588d25921fcbf');
INSERT INTO `items` (`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`,`uuid`) values ('31788','18','','10336','Asterisk: Uptime','asterisk.uptime','0','7d','365d','0','0','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'System uptime in \'N days, hh:mm:ss\' format.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','8395ab5b70a7433eb508c513995988bb');
INSERT INTO `items` (`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`,`uuid`) values ('31789','18','','10336','Asterisk: Total queues','asterisk.total_queues','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of configured queues.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','9c64cb54c2c541c1862558dcf8c6e3a3');
INSERT INTO `items` (`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`,`uuid`) values ('31790','18','','10336','Asterisk: SIP unmonitored online','asterisk.sip.unmonitored_online','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unmonitored online SIP peers.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','1cd5fb5232ca4f4398f85d959ac11b2c');
INSERT INTO `items` (`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`,`uuid`) values ('31791','18','','10336','Asterisk: SIP unmonitored offline','asterisk.sip.unmonitored_offline','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unmonitored offline SIP peers.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','ae21f8c13063402d9eece400a18c6167');
INSERT INTO `items` (`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`,`uuid`) values ('31792','18','','10336','Asterisk: Active calls','asterisk.active_calls','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active calls at the moment.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','72d074f6bb214ef9884d8cc4b1530ad3');
INSERT INTO `items` (`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`,`uuid`) values ('31793','18','','10336','Asterisk: SIP monitored online','asterisk.sip.monitored_online','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of monitored online SIP peers.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','23744b0a04b54637a7dbe1c7f8f5200f');
INSERT INTO `items` (`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`,`uuid`) values ('31794','18','','10336','Asterisk: Active channels','asterisk.active_channels','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active channels at the moment.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','bb9ac1ac188b43239456477e13ae555f');
INSERT INTO `items` (`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`,`uuid`) values ('31795','18','','10336','Asterisk: PJSIP unavailable endpoints','asterisk.pjsip.unavailable','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unavailable PJSIP peers.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','5c10fe1a4bfb4628be20137d0f1ec725');
INSERT INTO `items` (`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`,`uuid`) values ('31796','18','','10336','Asterisk: PJSIP endpoints','asterisk.pjsip.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of PJSIP peers.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','fdc888cb355a4b738be8a77354a7ce76');
INSERT INTO `items` (`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`,`uuid`) values ('31797','18','','10336','Asterisk: IAX unmonitored peers','asterisk.iax.unmonitored','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unmonitored IAX peers.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','cf5c07c1a09b4a10af21292b876fcb20');
INSERT INTO `items` (`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`,`uuid`) values ('31798','18','','10336','Asterisk: IAX peers','asterisk.iax.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of IAX peers.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','ccb62e9b41da4f20b4ab19e4eecd598b');
INSERT INTO `items` (`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`,`uuid`) values ('31799','18','','10336','Asterisk: IAX offline peers','asterisk.iax.offline','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of offline IAX peers.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','0798cf46d82041e6a7091698c7693ec5');
INSERT INTO `items` (`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`,`uuid`) values ('31800','18','','10336','Asterisk: Calls processed per second','asterisk.calls_processed.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of calls processed per second.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','196af875a190438abd8de5a6803a550f');
INSERT INTO `items` (`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`,`uuid`) values ('31801','18','','10336','Asterisk: Calls processed','asterisk.calls_processed','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of calls processed after the last service restart.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','ccfc2a8a5880430196e2c874b66370ca');
INSERT INTO `items` (`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`,`uuid`) values ('31802','18','','10336','Asterisk: SIP monitored offline','asterisk.sip.monitored_offline','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of monitored offline SIP peers.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','fb08ec8d143a41a097f8652c8261bad8');
INSERT INTO `items` (`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`,`uuid`) values ('31803','18','','10336','IAX peers discovery','asterisk.iax_peers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','3e7facc25a344cec8e384e8a9f8b372a');
INSERT INTO `items` (`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`,`uuid`) values ('31804','18','','10336','PJSIP endpoints discovery','asterisk.pjsip_endpoints.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','1a123ca04c7544bfa823a39b8a9fe84c');
INSERT INTO `items` (`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`,`uuid`) values ('31805','18','','10336','Queues discovery','asterisk.queues.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','5a936a95d62f4b50a4f3db112a3e041f');
INSERT INTO `items` (`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`,`uuid`) values ('31806','18','','10336','SIP peers discovery','asterisk.sip_peers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','675fc5b11cb1482db0c539dfb9100e75');
INSERT INTO `items` (`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`,`uuid`) values ('31807','18','','10336','IAX trunk "{#OBJECTNAME}": Active channels','asterisk.iax.trunk.active_channels[{#OBJECTNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of active IAX trunk channels.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','72d71ec4fa2b4e88a03d25e3bbe8771a');
INSERT INTO `items` (`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`,`uuid`) values ('31808','18','','10336','IAX trunk "{#OBJECTNAME}": Status','asterisk.iax.trunk.status[{#OBJECTNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'IAX trunk status. Here are the possible states that a device state may have:\r\nUnmonitored\r\nUNKNOWN\r\nUNREACHABLE\r\nOK','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','bbde7e898b4b4d34b27308d6ddaf86fc');
INSERT INTO `items` (`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`,`uuid`) values ('31809','18','','10336','PJSIP trunk "{#OBJECTNAME}": Active channels','asterisk.pjsip.trunk.active_channels[{#OBJECTNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of active PJSIP trunk channels.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','ec8220a1aa814112908337a009f6fcac');
INSERT INTO `items` (`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`,`uuid`) values ('31810','18','','10336','PJSIP trunk "{#OBJECTNAME}": Device state','asterisk.pjsip.trunk.devicestate[{#OBJECTNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'PJSIP trunk status. Here are the possible states that a device state may have:\r\nUnavailable\r\nNot in use\r\nIn use','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','c364b2ac50344372b155cbb98d9a7afe');
INSERT INTO `items` (`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`,`uuid`) values ('31811','18','','10336','"{#QUEUE}": Available','asterisk.queue.available[{#QUEUE}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of available queue members.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','c16d9df72ba749369726d4cfcc8b4f40');
INSERT INTO `items` (`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`,`uuid`) values ('31812','18','','10336','"{#QUEUE}": Callers','asterisk.queue.callers[{#QUEUE}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number incoming calls in queue.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','c271c7d76b2e49dea386bb08d60307d0');
INSERT INTO `items` (`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`,`uuid`) values ('31813','18','','10336','"{#QUEUE}": Logged in','asterisk.queue.loggedin[{#QUEUE}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of queue members.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','8319ec55cf6f4e8590f180f1a81f37ed');
INSERT INTO `items` (`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`,`uuid`) values ('31814','18','','10336','SIP trunk "{#OBJECTNAME}": Active channels','asterisk.sip.trunk.active_channels[{#OBJECTNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of active SIP trunk channels.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','9043578864494b13b249ee7bdf13820d');
INSERT INTO `items` (`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`,`uuid`) values ('31815','18','','10336','SIP trunk "{#OBJECTNAME}": Status','asterisk.sip.trunk.status[{#OBJECTNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'SIP trunk status. Here are the possible states that a device state may have:\r\nUnmonitored\r\nUNKNOWN\r\nUNREACHABLE\r\nOK','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','df33da749e874f55be5f0c33cd201f62');
INSERT INTO `items` (`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`,`uuid`) values ('31892','18','','10338','CPU utilization','system.cpu.util','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization in %.','0','30d','0','','31821','3s','','','','200','1','0','','0','0','0','0','0','0','0','91e6c4ff36eb4327a126a7f329792048');
INSERT INTO `items` (`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`,`uuid`) values ('31893','18','','10341','Memory utilization','vm.memory.utilization','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory used percentage is calculated as (100-pavailable)','0','30d','0','','31854','3s','','','','200','1','0','','0','0','0','0','0','0','0','bb6cff2714e94a05a73aea5760e168c6');
INSERT INTO `items` (`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`,`uuid`) values ('31932','18','','10337','{#DEVNAME}: Disk average queue size (avgqu-sz)','vfs.dev.queue_size[{#DEVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected.','0','30d','0','','31904','3s','','','','200','1','0','','0','0','0','0','0','0','0','5a9fb5097fb1425aafc718018ebd95f8');
INSERT INTO `items` (`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`,`uuid`) values ('31933','18','','10337','{#DEVNAME}: Disk read rate','vfs.dev.read.rate[{#DEVNAME}]','0','7d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'r/s. The number (after merges) of read requests completed per second for the device.','0','30d','0','','31904','3s','','','','200','1','0','','0','0','0','0','0','0','0','7a02e002d83f4e71bdcc031077738f2b');
INSERT INTO `items` (`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`,`uuid`) values ('31934','18','','10337','{#DEVNAME}: Disk read time (rate)','vfs.dev.read.time.rate[{#DEVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of total read time counter. Used in r_await calculation','0','30d','0','','31904','3s','','','','200','1','0','','0','0','0','0','0','0','0','ae4ae1c7ef2e434f875c8099ff3b101b');
INSERT INTO `items` (`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`,`uuid`) values ('31935','18','','10337','{#DEVNAME}: Disk utilization','vfs.dev.util[{#DEVNAME}]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests.','0','30d','0','','31904','3s','','','','200','1','0','','0','0','0','0','0','0','0','708baac844f54ca2b91ba8ed9f624459');
INSERT INTO `items` (`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`,`uuid`) values ('31936','18','','10337','{#DEVNAME}: Disk write rate','vfs.dev.write.rate[{#DEVNAME}]','0','7d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'w/s. The number (after merges) of write requests completed per second for the device.','0','30d','0','','31904','3s','','','','200','1','0','','0','0','0','0','0','0','0','ef9afdff2799455e85a8477a307dd83f');
INSERT INTO `items` (`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`,`uuid`) values ('31937','18','','10337','{#DEVNAME}: Disk write time (rate)','vfs.dev.write.time.rate[{#DEVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of total write time counter. Used in w_await calculation','0','30d','0','','31904','3s','','','','200','1','0','','0','0','0','0','0','0','0','165825d4e5e442ad97d6455a117a7663');
INSERT INTO `items` (`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`,`uuid`) values ('32002','18','','10347','Free swap space in %','system.swap.pfree','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of swap volume/file in percent.','0','30d','0','','31968','3s','','','','200','1','0','','0','0','0','0','0','0','0','5f86e2a308a342769cb5bf91da3976ef');
INSERT INTO `items` (`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`,`uuid`) values ('32005','18','','10348','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of installed network interfaces.','0','30d','1','','31974','3s','','','','200','1','0','','0','0','0','0','0','0','0','876e793097d949e49d23b6c4e7df4988');
INSERT INTO `items` (`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`,`uuid`) values ('32040','18','','10348','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed["{#IFGUID}"]','0','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Estimated bandwidth of the network interface if any.','0','30d','0','','31974','3s','','','','200','1','0','','0','0','0','0','0','0','0','27bf112e7c1f4652aa326fa240215e41');
INSERT INTO `items` (`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`,`uuid`) values ('32041','18','','10348','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status["{#IFGUID}"]','0','7d','0','0','3','','','','',NULL,'133','','','0','','','','','2',NULL,'The operational status of the network interface.','0','30d','0','','31974','3s','','','','200','1','0','','0','0','0','0','0','0','0','44fd303ebab348ceb99c74599c587cb4');
INSERT INTO `items` (`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`,`uuid`) values ('32042','18','','10348','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type["{#IFGUID}"]','0','7d','0d','0','3','','','','',NULL,'131','','','0','','','','','2',NULL,'The type of the network interface.','0','30d','0','','31974','3s','','','','200','1','0','','0','0','0','0','0','0','0','14f7982f0a1a49799646fe4685df7db8');
INSERT INTO `items` (`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`,`uuid`) values ('32122','18','','10353','Ceph: Number of OSDs in state: UP','ceph.num_osd_up','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of online storage daemons in Ceph cluster','0','30d','0','','32119','3s','','','','200','1','0','','0','0','0','0','0','0','0','d2d5caaad2914fb1ba07343956edb5b8');
INSERT INTO `items` (`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`,`uuid`) values ('32123','18','','10353','Ceph: Number of Placement Groups in Undersized state','ceph.pg_states.undersized','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of Placement Groups in undersized state','0','30d','0','','32119','3s','','','','200','1','0','','0','0','0','0','0','0','0','4998e4542ed746f08f82ecf53b553c36');
INSERT INTO `items` (`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`,`uuid`) values ('32124','18','','10353','Ceph: Number of Placement Groups in Clean state','ceph.pg_states.clean','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of Placement Groups in clean state','0','30d','0','','32119','3s','','','','200','1','0','','0','0','0','0','0','0','0','b1af2b88fe424723b97c9aa4eee12d83');
INSERT INTO `items` (`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`,`uuid`) values ('32125','18','','10353','Ceph: Number of Placement Groups in degraded state','ceph.pg_states.degraded','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of Placement Groups in degraded state','0','30d','0','','32119','3s','','','','200','1','0','','0','0','0','0','0','0','0','f8acf8f66fbc401799d3515eb3e2ea43');
INSERT INTO `items` (`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`,`uuid`) values ('32126','18','','10353','Ceph: Number of Placement Groups in inconsistent state','ceph.pg_states.inconsistent','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of Placement Groups in inconsistent state','0','30d','0','','32119','3s','','','','200','1','0','','0','0','0','0','0','0','0','79e056b9e3af40eabab0f927fb326491');
INSERT INTO `items` (`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`,`uuid`) values ('32127','18','','10353','Ceph: Number of Placement Groups in Peering state','ceph.pg_states.peering','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of Placement Groups in peering state','0','30d','0','','32119','3s','','','','200','1','0','','0','0','0','0','0','0','0','9ddef3d2e7df43eda7d2835ceac19d32');
INSERT INTO `items` (`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`,`uuid`) values ('32128','18','','10353','Ceph: Number of Placement Groups in recovering state','ceph.pg_states.recovering','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of Placement Groups in recovering state','0','30d','0','','32119','3s','','','','200','1','0','','0','0','0','0','0','0','0','573461fc94e84f96b8ae6f6d89916424');
INSERT INTO `items` (`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`,`uuid`) values ('32129','18','','10353','Ceph: Number of Placement Groups in recovery_wait state','ceph.pg_states.recovery_wait','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of Placement Groups in recovery_wait state','0','30d','0','','32119','3s','','','','200','1','0','','0','0','0','0','0','0','0','c150a9414fee40acaa65d532fd110c4e');
INSERT INTO `items` (`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`,`uuid`) values ('32130','18','','10353','Ceph: Number of Placement Groups in remapped state','ceph.pg_states.remapped','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of Placement Groups in remapped state','0','30d','0','','32119','3s','','','','200','1','0','','0','0','0','0','0','0','0','bac3270faf854267a466eaa6a4acad91');
INSERT INTO `items` (`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`,`uuid`) values ('32131','18','','10353','Ceph: Number of Placement Groups in Scrubbing state','ceph.pg_states.scrubbing','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of Placement Groups in scrubbing state','0','30d','0','','32119','3s','','','','200','1','0','','0','0','0','0','0','0','0','8a0117845436492d951e96b46eb67e1c');
INSERT INTO `items` (`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`,`uuid`) values ('32132','18','','10353','Ceph: Number of Placement Groups in Unknown state','ceph.pg_states.unknown','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of Placement Groups in unknown state','0','30d','0','','32119','3s','','','','200','1','0','','0','0','0','0','0','0','0','c922613c5ffb4f689c01f13143633ec3');
INSERT INTO `items` (`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`,`uuid`) values ('32133','18','','10353','Ceph: Number of Placement Groups in backfill_wait state','ceph.pg_states.backfill_wait','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of Placement Groups in backfill_wait state','0','30d','0','','32119','3s','','','','200','1','0','','0','0','0','0','0','0','0','ada3f638ee2e48eeb8889526898aed2f');
INSERT INTO `items` (`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`,`uuid`) values ('32134','18','','10353','Ceph: Number of OSDs','ceph.num_osd','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of known storage daemons in Ceph cluster','0','30d','0','','32119','3s','','','','200','1','0','','0','0','0','0','0','0','0','09d7a872f35349c6ba7d4a678bf71652');
INSERT INTO `items` (`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`,`uuid`) values ('32135','18','','10353','Ceph: Ceph Read bandwidth','ceph.rd_bytes.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Global read Bytes per second','0','30d','0','','32117','3s','','','','200','1','0','','0','0','0','0','0','0','0','89d7df2ebfbc4aa88b4ff4de44dc4b8b');
INSERT INTO `items` (`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`,`uuid`) values ('32136','18','','10353','Ceph: Ceph Read operations per sec','ceph.rd_ops.rate','0','7d','365d','0','0','','ops','','',NULL,NULL,'','','0','','','','','0',NULL,'Global read operations per second','0','30d','0','','32117','3s','','','','200','1','0','','0','0','0','0','0','0','0','8a35a37de63746498291993d4f3fc1cc');
INSERT INTO `items` (`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`,`uuid`) values ('32137','18','','10353','Ceph: Number of Monitors','ceph.num_mon','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Monitors configured in Ceph cluster','0','30d','0','','32119','3s','','','','200','1','0','','0','0','0','0','0','0','0','5d5276504d6c41eebe8e18846edcff45');
INSERT INTO `items` (`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`,`uuid`) values ('32138','18','','10353','Ceph: Total bytes available','ceph.total_avail_bytes','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total bytes available in Ceph cluster','0','30d','0','','32117','3s','','','','200','1','0','','0','0','0','0','0','0','0','5e400c932acf4ad498e17daca0ad4943');
INSERT INTO `items` (`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`,`uuid`) values ('32139','18','','10353','Ceph: Total bytes','ceph.total_bytes','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total (RAW) capacity of Ceph cluster in bytes','0','30d','0','','32117','3s','','','','200','1','0','','0','0','0','0','0','0','0','c4b1a31efb5f47518cc5dd6082f3a42b');
INSERT INTO `items` (`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`,`uuid`) values ('32140','18','','10353','Ceph: Total number of objects','ceph.total_objects','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of objects in Ceph cluster','0','30d','0','','32117','3s','','','','200','1','0','','0','0','0','0','0','0','0','d3910275462b43dba1fa8022a398ed1c');
INSERT INTO `items` (`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`,`uuid`) values ('32141','18','','10353','Ceph: Total bytes used','ceph.total_used_bytes','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total bytes used in Ceph cluster','0','30d','0','','32117','3s','','','','200','1','0','','0','0','0','0','0','0','0','6ad8e289eef349ab8ebfd4cc92a35c18');
INSERT INTO `items` (`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`,`uuid`) values ('32142','18','','10353','Ceph: Ceph Write bandwidth','ceph.wr_bytes.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Global write Bytes per second','0','30d','0','','32117','3s','','','','200','1','0','','0','0','0','0','0','0','0','51e100668e5344d29afd50dc9b9eabc9');
INSERT INTO `items` (`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`,`uuid`) values ('32143','18','','10353','Ceph: Number of Placement Groups in Backfilling state','ceph.pg_states.backfilling','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of Placement Groups in backfilling state','0','30d','0','','32119','3s','','','','200','1','0','','0','0','0','0','0','0','0','1471a13aaadc48c7a265835abcb93a03');
INSERT INTO `items` (`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`,`uuid`) values ('32144','18','','10353','Ceph: Number of Placement Groups in backfill_toofull state','ceph.pg_states.backfill_toofull','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of Placement Groups in backfill_toofull state','0','30d','0','','32119','3s','','','','200','1','0','','0','0','0','0','0','0','0','3b44c79e03d4402ba442331593dbdfa3');
INSERT INTO `items` (`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`,`uuid`) values ('32145','18','','10353','Ceph: Number of Placement Groups','ceph.num_pg','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of Placement Groups in Ceph cluster','0','30d','0','','32119','3s','','','','200','1','0','','0','0','0','0','0','0','0','46ea920b0951408daa5d678f298b1097');
INSERT INTO `items` (`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`,`uuid`) values ('32146','18','','10353','Ceph: Ceph OSD Apply latency Min','ceph.osd_latency_apply.min','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Minimum apply latency of OSDs','0','30d','0','','32121','3s','','','','200','1','0','','0','0','0','0','0','0','0','d45ad876b0a04345be347af54211aa69');
INSERT INTO `items` (`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`,`uuid`) values ('32147','18','','10353','Ceph: Number of Placement Groups in Temporary state','ceph.num_pg_temp','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of Placement Groups in pg_temp state','0','30d','0','','32118','3s','','','','200','1','0','','0','0','0','0','0','0','0','97fbecc8ee824e658dd95d8115fec5e9');
INSERT INTO `items` (`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`,`uuid`) values ('32148','18','','10353','Ceph: Number of Pools','ceph.num_pools','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of pools in Ceph cluster','0','30d','0','','32117','3s','','','','200','1','0','','0','0','0','0','0','0','0','b0e36ff76db049ab870fa26c29e5e69c');
INSERT INTO `items` (`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`,`uuid`) values ('32149','18','','10353','Ceph: Ceph backfill full ratio','ceph.osd_backfillfull_ratio','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Backfill full ratio setting of Ceph cluster as configured on OSDMap','0','30d','0','','32118','3s','','','','200','1','0','','0','0','0','0','0','0','0','0d6cffa1f06748738431524667ea8db0');
INSERT INTO `items` (`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`,`uuid`) values ('32150','18','','10353','Ceph: Ceph OSD avg fill','ceph.osd_fill.avg','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average fill of OSDs','0','30d','0','','32121','3s','','','','200','1','0','','0','0','0','0','0','0','0','52c5efe132b8404f8fc4ac995c3d5c2c');
INSERT INTO `items` (`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`,`uuid`) values ('32151','18','','10353','Ceph: Ceph OSD max fill','ceph.osd_fill.max','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage fill of maximum filled OSD','0','30d','0','','32121','3s','','','','200','1','0','','0','0','0','0','0','0','0','453cebeed3214153ba4e3a5b224c063d');
INSERT INTO `items` (`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`,`uuid`) values ('32152','18','','10353','Ceph: Ceph OSD min fill','ceph.osd_fill.min','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage fill of minimum filled OSD','0','30d','0','','32121','3s','','','','200','1','0','','0','0','0','0','0','0','0','f6efbd37e8104272be131d686a700808');
INSERT INTO `items` (`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`,`uuid`) values ('32153','18','','10353','Ceph: Ceph full ratio','ceph.osd_full_ratio','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Full ratio setting of Ceph cluster as configured on OSDMap','0','30d','0','','32118','3s','','','','200','1','0','','0','0','0','0','0','0','0','532891a1d8934211a016524b136cfb1e');
INSERT INTO `items` (`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`,`uuid`) values ('32154','18','','10353','Ceph: Ceph OSD Apply latency Avg','ceph.osd_latency_apply.avg','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Average apply latency of OSDs','0','30d','0','','32121','3s','','','','200','1','0','','0','0','0','0','0','0','0','074c0881384446ea90e99d355afe4f4f');
INSERT INTO `items` (`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`,`uuid`) values ('32155','18','','10353','Ceph: Ceph OSD Apply latency Max','ceph.osd_latency_apply.max','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum apply latency of OSDs','0','30d','0','','32121','3s','','','','200','1','0','','0','0','0','0','0','0','0','ef0a76f0c16147d1a280e00e66d3806f');
INSERT INTO `items` (`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`,`uuid`) values ('32156','18','','10353','Ceph: Ceph OSD Commit latency Avg','ceph.osd_latency_commit.avg','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Average commit latency of OSDs','0','30d','0','','32121','3s','','','','200','1','0','','0','0','0','0','0','0','0','52e1b146c36e4c2e82acf36f1c7d12eb');
INSERT INTO `items` (`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`,`uuid`) values ('32157','18','','10353','Ceph: Number of Placement Groups in Active state','ceph.pg_states.active','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of Placement Groups in active state','0','30d','0','','32119','3s','','','','200','1','0','','0','0','0','0','0','0','0','9b073153d7474b0abfccb1844d0e6981');
INSERT INTO `items` (`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`,`uuid`) values ('32158','18','','10353','Ceph: Ceph OSD Commit latency Max','ceph.osd_latency_commit.max','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum commit latency of OSDs','0','30d','0','','32121','3s','','','','200','1','0','','0','0','0','0','0','0','0','3027a1dbdd8e4f9bbef8927b92eb8e77');
INSERT INTO `items` (`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`,`uuid`) values ('32159','18','','10353','Ceph: Ceph OSD Commit latency Min','ceph.osd_latency_commit.min','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Minimum commit latency of OSDs','0','30d','0','','32121','3s','','','','200','1','0','','0','0','0','0','0','0','0','b9900b84c22843dab4ad335b9642e040');
INSERT INTO `items` (`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`,`uuid`) values ('32160','18','','10353','Ceph: Ceph nearfull ratio','ceph.osd_nearfull_ratio','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Near full ratio setting of Ceph cluster as configured on OSDMap','0','30d','0','','32118','3s','','','','200','1','0','','0','0','0','0','0','0','0','477d94bd838d4273a556537de36bb1f6');
INSERT INTO `items` (`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`,`uuid`) values ('32161','18','','10353','Ceph: Ceph OSD avg PGs','ceph.osd_pgs.avg','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Average amount of PGs on OSDs','0','30d','0','','32121','3s','','','','200','1','0','','0','0','0','0','0','0','0','27ea5688271347bca429d91ace62d4e2');
INSERT INTO `items` (`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`,`uuid`) values ('32162','18','','10353','Ceph: Ceph OSD max PGs','ceph.osd_pgs.max','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum amount of PGs on OSDs','0','30d','0','','32121','3s','','','','200','1','0','','0','0','0','0','0','0','0','4174d7d3190e47ccb55b1e50da4cedc5');
INSERT INTO `items` (`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`,`uuid`) values ('32163','18','','10353','Ceph: Ceph OSD min PGs','ceph.osd_pgs.min','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Minimum amount of PGs on OSDs','0','30d','0','','32121','3s','','','','200','1','0','','0','0','0','0','0','0','0','47f56243cd1c430fae217d1a0cbc4a99');
INSERT INTO `items` (`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`,`uuid`) values ('32164','18','','10353','Ceph: Number of OSDs in state: IN','ceph.num_osd_in','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of participating storage daemons in Ceph cluster','0','30d','0','','32119','3s','','','','200','1','0','','0','0','0','0','0','0','0','795939e16e70475381e917b213bf6f70');
INSERT INTO `items` (`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`,`uuid`) values ('32165','18','','10353','Ceph: Minimum Mon release version','ceph.min_mon_release_name','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'min_mon_release_name','0','30d','0','','32119','3s','','','','200','1','0','','0','0','0','0','0','0','0','45c9df734d424e6a8d3fea99c4a66246');
INSERT INTO `items` (`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`,`uuid`) values ('32166','18','','10353','Ceph: Overall cluster status','ceph.overall_status','0','7d','365d','0','3','','','','',NULL,'184','','','0','','','','','0',NULL,'Overall Ceph cluster status, eg 0 - HEALTH_OK, 1 - HEALTH_WARN or 2 - HEALTH_ERR','0','30d','0','','32119','3s','','','','200','1','0','','0','0','0','0','0','0','0','4023ca309692470eab2651f69d49419a');
INSERT INTO `items` (`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`,`uuid`) values ('32167','18','','10353','Ceph: Ceph Write operations per sec','ceph.wr_ops.rate','0','7d','365d','0','0','','ops','','',NULL,NULL,'','','0','','','','','0',NULL,'Global write operations per second','0','30d','0','','32117','3s','','','','200','1','0','','0','0','0','0','0','0','0','0a7203defa7147f7b975b404e6706b60');
INSERT INTO `items` (`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`,`uuid`) values ('32170','18','','10353','Ceph: [osd.{#OSDNAME}] OSD fill','ceph.osd[{#OSDNAME},fill]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32121','3s','','','','200','1','0','','0','0','0','0','0','0','0','4f7a72a5c4c14b9da63ddbae9e2ebf5f');
INSERT INTO `items` (`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`,`uuid`) values ('32171','18','','10353','Ceph: [osd.{#OSDNAME}] OSD in','ceph.osd[{#OSDNAME},in]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32118','3s','','','','200','1','0','','0','0','0','0','0','0','0','fc2518ca8b9341d8befc6f9b1cbd4b79');
INSERT INTO `items` (`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`,`uuid`) values ('32172','18','','10353','Ceph: [osd.{#OSDNAME}] OSD latency apply','ceph.osd[{#OSDNAME},latency_apply]','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'Time taken to flush an update to disks.','0','30d','0','','32121','3s','','','','200','1','0','','0','0','0','0','0','0','0','2eb6a0d999d14906a4737ed32834ccc7');
INSERT INTO `items` (`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`,`uuid`) values ('32173','18','','10353','Ceph: [osd.{#OSDNAME}] OSD latency commit','ceph.osd[{#OSDNAME},latency_commit]','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'Time taken to commit an operation to the journal.','0','30d','0','','32121','3s','','','','200','1','0','','0','0','0','0','0','0','0','14f392b369504f10b7e068522ac4a086');
INSERT INTO `items` (`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`,`uuid`) values ('32174','18','','10353','Ceph: [osd.{#OSDNAME}] OSD PGs','ceph.osd[{#OSDNAME},num_pgs]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32121','3s','','','','200','1','0','','0','0','0','0','0','0','0','63234342c0bd49e6b1f8737bf595851f');
INSERT INTO `items` (`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`,`uuid`) values ('32175','18','','10353','Ceph: [osd.{#OSDNAME}] OSD up','ceph.osd[{#OSDNAME},up]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32118','3s','','','','200','1','0','','0','0','0','0','0','0','0','12c20b2fbf10466bba7e1097c014e968');
INSERT INTO `items` (`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`,`uuid`) values ('32381','18','','10357','Transactions: Max idle transaction time','pgsql.transactions.idle','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Current max idle transaction time','0','30d','0','','32376','3s','','','','200','1','0','','0','0','0','0','0','0','0','4c89121d71a14c15b6169417ea69d0a3');
INSERT INTO `items` (`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`,`uuid`) values ('32382','18','','10357','Transactions: Max active transaction time','pgsql.transactions.active','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Current max active transaction time','0','30d','0','','32376','3s','','','','200','1','0','','0','0','0','0','0','0','0','4883717865c84c19b48d46f009317de2');
INSERT INTO `items` (`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`,`uuid`) values ('32383','18','','10357','Transactions: Max prepared transaction time','pgsql.transactions.prepared','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Current max prepared transaction time','0','30d','0','','32376','3s','','','','200','1','0','','0','0','0','0','0','0','0','0ee43ddd9da246d19097107b45e4c8e8');
INSERT INTO `items` (`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`,`uuid`) values ('32384','18','','10357','Transactions: Max waiting transaction time','pgsql.transactions.waiting','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Current max waiting transaction time','0','30d','0','','32376','3s','','','','200','1','0','','0','0','0','0','0','0','0','da341b2011714a1f994ecbe96bd52155');
INSERT INTO `items` (`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`,`uuid`) values ('32385','18','','10357','WAL: Segments count','pgsql.wal.count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of WAL segments','0','30d','0','','32379','3s','','','','200','1','0','','0','0','0','0','0','0','0','5385ec7d39514039a641d18cba335ddc');
INSERT INTO `items` (`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`,`uuid`) values ('32386','18','','10357','Bgwriter: Buffers allocated per second','pgsql.bgwriter.buffers_alloc.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers allocated','0','30d','0','','32375','3s','','','','200','1','0','','0','0','0','0','0','0','0','d17c6c15154d40d1afa5b1eafb2ed93e');
INSERT INTO `items` (`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`,`uuid`) values ('32387','18','','10357','Bgwriter: Buffers written directly by a backend per second','pgsql.bgwriter.buffers_backend.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers written directly by a backend','0','30d','0','','32375','3s','','','','200','1','0','','0','0','0','0','0','0','0','2c3ee691d4a54fb6b566739a3a648df4');
INSERT INTO `items` (`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`,`uuid`) values ('32388','18','','10357','Bgwriter: Checkpoint write time','pgsql.bgwriter.checkpoint_write_time','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of time that has been spent in the portion of checkpoint processing where files are written to disk, in milliseconds','0','30d','0','','32375','3s','','','','200','1','0','','0','0','0','0','0','0','0','b5e5f463978c46dd9401963f48ea72eb');
INSERT INTO `items` (`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`,`uuid`) values ('32389','18','','10357','Bgwriter: Buffers backend fsync per second','pgsql.bgwriter.buffers_backend_fsync.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times a backend had to execute its own fsync call (normally the background writer handles those even when the backend does its own write)','0','30d','0','','32375','3s','','','','200','1','0','','0','0','0','0','0','0','0','77e1eb202a6346ce9df0f1bb2c078688');
INSERT INTO `items` (`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`,`uuid`) values ('32390','18','','10357','Bgwriter: Buffers written during checkpoints per second','pgsql.bgwriter.buffers_checkpoint.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers written during checkpoints','0','30d','0','','32375','3s','','','','200','1','0','','0','0','0','0','0','0','0','e29d26a48d0143579bf3acc6655cd659');
INSERT INTO `items` (`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`,`uuid`) values ('32391','18','','10357','Bgwriter: Buffers written by the background writer per second','pgsql.bgwriter.buffers_clean.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers written by the background writer','0','30d','0','','32375','3s','','','','200','1','0','','0','0','0','0','0','0','0','5151183461a54d2bbfaad04b8cab3798');
INSERT INTO `items` (`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`,`uuid`) values ('32392','18','','10357','Bgwriter: Requested checkpoints per second','pgsql.bgwriter.checkpoints_req.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of requested checkpoints that have been performed','0','30d','0','','32375','3s','','','','200','1','0','','0','0','0','0','0','0','0','ff290c0602b9447e87240c1ecf467050');
INSERT INTO `items` (`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`,`uuid`) values ('32393','18','','10357','Bgwriter: Scheduled checkpoints per second','pgsql.bgwriter.checkpoints_timed.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of scheduled checkpoints that have been performed','0','30d','0','','32375','3s','','','','200','1','0','','0','0','0','0','0','0','0','a5271230be8b431cb96580180e099b98');
INSERT INTO `items` (`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`,`uuid`) values ('32394','18','','10357','Bgwriter: Checkpoint sync time','pgsql.bgwriter.checkpoint_sync_time','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of time that has been spent in the portion of checkpoint processing where files are synchronized to disk','0','30d','0','','32375','3s','','','','200','1','0','','0','0','0','0','0','0','0','782d2368763b48ad8663aa9fb75c3326');
INSERT INTO `items` (`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`,`uuid`) values ('32395','18','','10357','Bgwriter: Max written per second','pgsql.bgwriter.maxwritten_clean.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times the background writer stopped a cleaning scan because it had written too many buffers','0','30d','0','','32375','3s','','','','200','1','0','','0','0','0','0','0','0','0','f273c71f92bf4ac0b6ec5a0a88d1239c');
INSERT INTO `items` (`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`,`uuid`) values ('32396','18','','10357','Connections sum: Waiting','pgsql.connections.sum.waiting','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of waiting connections\r\nhttps://www.postgresql.org/docs/current/monitoring-stats.html#WAIT-EVENT-TABLE','0','30d','0','','32364','3s','','','','200','1','0','','0','0','0','0','0','0','0','fadd1333189c4ed29db57cf2acd158d0');
INSERT INTO `items` (`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`,`uuid`) values ('32397','18','','10357','Connections sum: Active','pgsql.connections.sum.active','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections executing a query','0','30d','0','','32364','3s','','','','200','1','0','','0','0','0','0','0','0','0','c78116d3acf24e6990ed27ba8008728c');
INSERT INTO `items` (`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`,`uuid`) values ('32398','18','','10357','Connections sum: Idle','pgsql.connections.sum.idle','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections waiting for a new client command','0','30d','0','','32364','3s','','','','200','1','0','','0','0','0','0','0','0','0','be6eb6ecbfad420b889c58d1f1550b23');
INSERT INTO `items` (`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`,`uuid`) values ('32399','18','','10357','Connections sum: Idle in transaction','pgsql.connections.sum.idle_in_transaction','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections in a transaction state, but not executing a query','0','30d','0','','32364','3s','','','','200','1','0','','0','0','0','0','0','0','0','6471d014722c4072ae045df4c69578e3');
INSERT INTO `items` (`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`,`uuid`) values ('32400','18','','10357','Connections sum: Prepared','pgsql.connections.sum.prepared','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of prepared transactions\r\nhttps://www.postgresql.org/docs/current/sql-prepare-transaction.html','0','30d','0','','32364','3s','','','','200','1','0','','0','0','0','0','0','0','0','197cc14f55db485b891614c7b7ee2a51');
INSERT INTO `items` (`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`,`uuid`) values ('32401','18','','10357','Connections sum: Total','pgsql.connections.sum.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections','0','30d','0','','32364','3s','','','','200','1','0','','0','0','0','0','0','0','0','24d23377c7cd4cc5b63f98a261c2501c');
INSERT INTO `items` (`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`,`uuid`) values ('32402','18','','10357','Connections sum: Total %','pgsql.connections.sum.total_pct','0','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections in percentage','0','30d','0','','32364','3s','','','','200','1','0','','0','0','0','0','0','0','0','488050d9aa8e4c2ea5b3e991ec5ddacc');
INSERT INTO `items` (`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`,`uuid`) values ('32403','18','','10357','WAL: Bytes written','pgsql.wal.write','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'WAL write in bytes','0','30d','0','','32379','3s','','','','200','1','0','','0','0','0','0','0','0','0','5cc9c67621cc46e0a42b1eb79bda83b3');
INSERT INTO `items` (`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`,`uuid`) values ('32408','18','','10357','DB {#DBNAME}: Detected conflicts per second','pgsql.dbstat.conflicts.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of queries canceled due to conflicts with recovery in this database','0','30d','0','','32380','3s','','','','200','1','0','','0','0','0','0','0','0','0','a76f6d28995441ff9fe28bbc09445e64');
INSERT INTO `items` (`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`,`uuid`) values ('32409','18','','10357','DB {#DBNAME}: Locks total','pgsql.locks.total["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of locks in the database','0','30d','0','','32365','3s','','','','200','1','0','','0','0','0','0','0','0','0','3d0acf4b45fc4a72bb2a214222f93f2a');
INSERT INTO `items` (`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`,`uuid`) values ('32410','18','','10357','DB {#DBNAME}: Sequential scans per second','pgsql.scans.seq.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of sequential scans in the database','0','30d','0','','32407','3s','','','','200','1','0','','0','0','0','0','0','0','0','f07396ca9d224e1b819f22efe6c4259d');
INSERT INTO `items` (`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`,`uuid`) values ('32411','18','','10357','DB {#DBNAME}: Index scans per second','pgsql.scans.idx.rate["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of index scans in the database','0','30d','0','','32407','3s','','','','200','1','0','','0','0','0','0','0','0','0','cafcc00cce824c33a321da0e9ecc7f6e');
INSERT INTO `items` (`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`,`uuid`) values ('32412','18','','10357','DB {#DBNAME}: Queries sum transaction time','pgsql.queries.tx.time_sum["{#DBNAME}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum transaction query time','0','30d','0','','32368','3s','','','','200','1','0','','0','0','0','0','0','0','0','0eda974576794768ac9ddc592ff27e19');
INSERT INTO `items` (`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`,`uuid`) values ('32413','18','','10357','DB {#DBNAME}: Queries max transaction time','pgsql.queries.tx.time_max["{#DBNAME}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Max transaction query time','0','30d','0','','32368','3s','','','','200','1','0','','0','0','0','0','0','0','0','c6800ca30a564766ba745e875cb4e929');
INSERT INTO `items` (`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`,`uuid`) values ('32414','18','','10357','DB {#DBNAME}: Queries slow transaction count','pgsql.queries.tx.slow_count["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Slow transaction query count','0','30d','0','','32368','3s','','','','200','1','0','','0','0','0','0','0','0','0','f7099043ea6345f0a5531f70f9573a3e');
INSERT INTO `items` (`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`,`uuid`) values ('32415','18','','10357','DB {#DBNAME}: Queries sum query time','pgsql.queries.query.time_sum["{#DBNAME}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum query time','0','30d','0','','32368','3s','','','','200','1','0','','0','0','0','0','0','0','0','c6232400b39c4564a30a403859ffb4ee');
INSERT INTO `items` (`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`,`uuid`) values ('32416','18','','10357','DB {#DBNAME}: Queries max query time','pgsql.queries.query.time_max["{#DBNAME}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Max query time','0','30d','0','','32368','3s','','','','200','1','0','','0','0','0','0','0','0','0','044cc16d0a2f46b28d88eff86c33b30b');
INSERT INTO `items` (`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`,`uuid`) values ('32417','18','','10357','DB {#DBNAME}: Queries slow query count','pgsql.queries.query.slow_count["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Slow query count','0','30d','0','','32368','3s','','','','200','1','0','','0','0','0','0','0','0','0','5d937f46f4684f1e8253ec62e0f75379');
INSERT INTO `items` (`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`,`uuid`) values ('32418','18','','10357','DB {#DBNAME}: Queries sum maintenance time','pgsql.queries.mro.time_sum["{#DBNAME}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum maintenance query time','0','30d','0','','32368','3s','','','','200','1','0','','0','0','0','0','0','0','0','f1427228bfa14ad3b7bb9d63bcfaec59');
INSERT INTO `items` (`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`,`uuid`) values ('32419','18','','10357','DB {#DBNAME}: Queries max maintenance time','pgsql.queries.mro.time_max["{#DBNAME}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Max maintenance query time','0','30d','0','','32368','3s','','','','200','1','0','','0','0','0','0','0','0','0','bbc8f9bf86394cf28e0c2db44ee4711d');
INSERT INTO `items` (`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`,`uuid`) values ('32420','18','','10357','DB {#DBNAME}: Queries slow maintenance count','pgsql.queries.mro.slow_count["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Slow maintenance query count','0','30d','0','','32368','3s','','','','200','1','0','','0','0','0','0','0','0','0','939ab05c71ed4be9979662203ebba980');
INSERT INTO `items` (`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`,`uuid`) values ('32421','18','','10357','DB {#DBNAME}: Disk blocks read per second','pgsql.dbstat.blks_read.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of disk blocks read in this database','0','30d','0','','32380','3s','','','','200','1','0','','0','0','0','0','0','0','0','9136517d08b447869e5b8f5fd684c3b9');
INSERT INTO `items` (`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`,`uuid`) values ('32422','18','','10357','DB {#DBNAME}: Detected deadlocks per second','pgsql.dbstat.deadlocks.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of detected deadlocks in this database','0','30d','0','','32380','3s','','','','200','1','0','','0','0','0','0','0','0','0','b874cc2dd80643208c2479ad25fae0ac');
INSERT INTO `items` (`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`,`uuid`) values ('32423','18','','10357','DB {#DBNAME}: Blocks hit per second','pgsql.dbstat.blks_hit.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of times disk blocks were found already in the buffer cache, so that a read was not necessary','0','30d','0','','32380','3s','','','','200','1','0','','0','0','0','0','0','0','0','615e6567a85e421bb06ab8cac0eaba69');
INSERT INTO `items` (`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`,`uuid`) values ('32424','18','','10357','DB {#DBNAME}: Frozen XID before avtovacuum %','pgsql.frozenxid.prc_before_av["{#DBNAME}"]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'reventing Transaction ID Wraparound Failures\r\nhttps://www.postgresql.org/docs/current/routine-vacuuming.html#VACUUM-FOR-WRAPAROUND','0','30d','0','','32406','3s','','','','200','1','0','','0','0','0','0','0','0','0','df9dd9bac2a54f1085b29fb22b394a1f');
INSERT INTO `items` (`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`,`uuid`) values ('32425','18','','10357','DB {#DBNAME}: Rollbacks per second','pgsql.dbstat.xact_rollback.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of transactions in this database that have been rolled back','0','30d','0','','32380','3s','','','','200','1','0','','0','0','0','0','0','0','0','8e5080186d034323be21473099b0b0ce');
INSERT INTO `items` (`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`,`uuid`) values ('32426','18','','10357','DB {#DBNAME}: Commits per second','pgsql.dbstat.xact_commit.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of transactions in this database that have been committed','0','30d','0','','32380','3s','','','','200','1','0','','0','0','0','0','0','0','0','81c33f5b3c31475fa5f28f4ad149a328');
INSERT INTO `items` (`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`,`uuid`) values ('32427','18','','10357','DB {#DBNAME}: Tuples updated per second','pgsql.dbstat.tup_updated.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows updated by queries in this database','0','30d','0','','32380','3s','','','','200','1','0','','0','0','0','0','0','0','0','4c8de8c1064d43ffa18c4f37fead37f7');
INSERT INTO `items` (`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`,`uuid`) values ('32428','18','','10357','DB {#DBNAME}: Tuples returned per second','pgsql.dbstat.tup_returned.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows updated by queries in this database','0','30d','0','','32380','3s','','','','200','1','0','','0','0','0','0','0','0','0','f6d378f4e38e455fa5a12467fe977657');
INSERT INTO `items` (`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`,`uuid`) values ('32429','18','','10357','DB {#DBNAME}: Tuples inserted per second','pgsql.dbstat.tup_inserted.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows inserted by queries in this database','0','30d','0','','32380','3s','','','','200','1','0','','0','0','0','0','0','0','0','8c03c87a44fe43928c32087ca7561e88');
INSERT INTO `items` (`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`,`uuid`) values ('32430','18','','10357','DB {#DBNAME}: Tuples fetched per second','pgsql.dbstat.tup_fetched.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows fetched by queries in this database','0','30d','0','','32380','3s','','','','200','1','0','','0','0','0','0','0','0','0','92f33d96f8a348088cdba593c0e66929');
INSERT INTO `items` (`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`,`uuid`) values ('32431','18','','10357','DB {#DBNAME}: Tuples deleted per second','pgsql.dbstat.tup_deleted.rate["{#DBNAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows deleted by queries in this database','0','30d','0','','32380','3s','','','','200','1','0','','0','0','0','0','0','0','0','35c6f93aefe4439bbc36f2f358440b16');
INSERT INTO `items` (`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`,`uuid`) values ('32432','18','','10357','DB {#DBNAME}: Temp_files created per second','pgsql.dbstat.temp_files.rate["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of temporary files created by queries in this database','0','30d','0','','32380','3s','','','','200','1','0','','0','0','0','0','0','0','0','af4e35eee1764d3f97d9c1218867f885');
INSERT INTO `items` (`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`,`uuid`) values ('32433','18','','10357','DB {#DBNAME}: Temp_bytes written per second','pgsql.dbstat.temp_bytes.rate["{#DBNAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total amount of data written to temporary files by queries in this database','0','30d','0','','32380','3s','','','','200','1','0','','0','0','0','0','0','0','0','d235ead54c8b41f9a91398c75383e5d7');
INSERT INTO `items` (`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`,`uuid`) values ('32434','18','','10357','DB {#DBNAME}: Frozen XID before stop %','pgsql.frozenxid.prc_before_stop["{#DBNAME}"]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Preventing Transaction ID Wraparound Failures\r\nhttps://www.postgresql.org/docs/current/routine-vacuuming.html#VACUUM-FOR-WRAPAROUND','0','30d','0','','32406','3s','','','','200','1','0','','0','0','0','0','0','0','0','44ddd66ea37449cb8fab6979b98dfd3c');
INSERT INTO `items` (`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`,`uuid`) values ('32464','18','','10359','Aranet: Sensors discovery','aranet.sensor.discovery','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovery for Aranet Cloud sensors','0','30d','0','','32463','3s','','','','200','1','0','','0','0','0','0','0','0','0','92fb73948fa74de8a6a219397b77b570');
INSERT INTO `items` (`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`,`uuid`) values ('32486','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.battery.voltage["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','7d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','3s','','','','200','1','0','','0','0','0','0','0','0','0','b5fca30b1433461f82ea7fe5c72687ef');
INSERT INTO `items` (`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`,`uuid`) values ('32487','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.co2["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','7d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','3s','','','','200','1','0','','0','0','0','0','0','0','0','5057bec2a8d0446cb3515f1771e30d41');
INSERT INTO `items` (`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`,`uuid`) values ('32488','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.current["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','7d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','3s','','','','200','1','0','','0','0','0','0','0','0','0','68434a6b6881497b8f7892b00044e3e7');
INSERT INTO `items` (`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`,`uuid`) values ('32489','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.diff_pressure["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','7d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','3s','','','','200','1','0','','0','0','0','0','0','0','0','d02fa9c559af492d8f23503c6c0e6b67');
INSERT INTO `items` (`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`,`uuid`) values ('32490','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.distance["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','7d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','3s','','','','200','1','0','','0','0','0','0','0','0','0','4a2dd84d9be34e39b4b8e0c03199ebec');
INSERT INTO `items` (`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`,`uuid`) values ('32491','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.humidity["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','7d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','3s','','','','200','1','0','','0','0','0','0','0','0','0','b0b25cd929fe493e8db07b19f64e623a');
INSERT INTO `items` (`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`,`uuid`) values ('32492','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.illuminance["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','7d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','3s','','','','200','1','0','','0','0','0','0','0','0','0','0617cbdf99844d82a469bf600c94bcfa');
INSERT INTO `items` (`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`,`uuid`) values ('32493','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.last_update["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','7d','365d','0','3','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','3s','','','','200','1','0','','0','0','0','0','0','0','0','296198c168694dc0bd0af5d1cc07cc0e');
INSERT INTO `items` (`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`,`uuid`) values ('32494','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.ph["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','3s','','','','200','1','0','','0','0','0','0','0','0','0','ad6f3af944a04305a196ff60bdae078f');
INSERT INTO `items` (`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`,`uuid`) values ('32495','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.pore_electric_cond["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','7d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','3s','','','','200','1','0','','0','0','0','0','0','0','0','4610a3ef84e54ddeb778e4f1c9e7ab8a');
INSERT INTO `items` (`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`,`uuid`) values ('32496','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.ppfd["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','7d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','3s','','','','200','1','0','','0','0','0','0','0','0','0','7f41b6f57a024e4fa632268bec66fdd3');
INSERT INTO `items` (`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`,`uuid`) values ('32497','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.pressure["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','7d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','3s','','','','200','1','0','','0','0','0','0','0','0','0','3534343a6f78415e94b52f791a1a419a');
INSERT INTO `items` (`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`,`uuid`) values ('32498','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.pulses["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','7d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','3s','','','','200','1','0','','0','0','0','0','0','0','0','471e5f773216407e819c840161562d1e');
INSERT INTO `items` (`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`,`uuid`) values ('32499','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.pulses_cumulative["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','7d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','3s','','','','200','1','0','','0','0','0','0','0','0','0','da698f1bec144ab8aa8d960669c385d5');
INSERT INTO `items` (`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`,`uuid`) values ('32500','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.rssi["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','7d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','3s','','','','200','1','0','','0','0','0','0','0','0','0','eefb5804ec224d26a3050246907c35aa');
INSERT INTO `items` (`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`,`uuid`) values ('32501','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.soil_dielectric_perm["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','7d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','3s','','','','200','1','0','','0','0','0','0','0','0','0','53b7bb6bab76432f95599917e61a3ea7');
INSERT INTO `items` (`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`,`uuid`) values ('32502','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.soil_electric_cond["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','7d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','3s','','','','200','1','0','','0','0','0','0','0','0','0','2f73f57b147c4d3498bd46a4048e2418');
INSERT INTO `items` (`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`,`uuid`) values ('32503','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.temp["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','7d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','3s','','','','200','1','0','','0','0','0','0','0','0','0','86a562af26184359ac7d2287c6bd87c6');
INSERT INTO `items` (`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`,`uuid`) values ('32504','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.voltage["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','7d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','3s','','','','200','1','0','','0','0','0','0','0','0','0','461f54e7c7ce4658b8acc83be8d6906c');
INSERT INTO `items` (`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`,`uuid`) values ('32505','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.volumetric.water.content["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','7d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','3s','','','','200','1','0','','0','0','0','0','0','0','0','8a03e78d9f4145b58c55d04189b90423');
INSERT INTO `items` (`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`,`uuid`) values ('32506','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.weight["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','7d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','3s','','','','200','1','0','','0','0','0','0','0','0','0','6eb5e840b089469ca644a20bcb7739d4');
INSERT INTO `items` (`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`,`uuid`) values ('32507','18','','10353','Ceph: [{#POOLNAME}] Pool Used','ceph.pool["{#POOLNAME}",bytes_used]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total bytes used in pool.','0','30d','0','','32117','3s','','','','200','1','0','','0','0','0','0','0','0','0','1090dc09ce79458e9471863fcb973460');
INSERT INTO `items` (`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`,`uuid`) values ('32508','18','','10353','Ceph: [{#POOLNAME}] Max available','ceph.pool["{#POOLNAME}",max_avail]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The maximum available space in the given pool.','0','30d','0','','32117','3s','','','','200','1','0','','0','0','0','0','0','0','0','4e49ce8a11084dd287f89b076cc70535');
INSERT INTO `items` (`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`,`uuid`) values ('32509','18','','10353','Ceph: [{#POOLNAME}] Pool objects','ceph.pool["{#POOLNAME}",objects]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of objects in the pool.','0','30d','0','','32117','3s','','','','200','1','0','','0','0','0','0','0','0','0','5c7bd85f9d944215acaced87b0eb216f');
INSERT INTO `items` (`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`,`uuid`) values ('32510','18','','10353','Ceph: [{#POOLNAME}] Pool Percent Used','ceph.pool["{#POOLNAME}",percent_used]','0','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Percentage of storage used per pool','0','30d','0','','32117','3s','','','','200','1','0','','0','0','0','0','0','0','0','eda166ae6c4c46cf8c01c2b928f07ec5');
INSERT INTO `items` (`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`,`uuid`) values ('32511','18','','10353','Ceph: [{#POOLNAME}] Pool Read bandwidth','ceph.pool["{#POOLNAME}",rd_bytes.rate]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Per-pool read Bytes/second','0','30d','0','','32117','3s','','','','200','1','0','','0','0','0','0','0','0','0','5311f1a539284c5483458e1820496be3');
INSERT INTO `items` (`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`,`uuid`) values ('32512','18','','10353','Ceph: [{#POOLNAME}] Pool Read operations','ceph.pool["{#POOLNAME}",rd_ops.rate]','0','7d','365d','0','0','','ops','','',NULL,NULL,'','','0','','','','','2',NULL,'Per-pool read operations/second','0','30d','0','','32117','3s','','','','200','1','0','','0','0','0','0','0','0','0','76871b86d66d4307a83e813a8d9fc1b0');
INSERT INTO `items` (`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`,`uuid`) values ('32513','18','','10353','Ceph: [{#POOLNAME}] Pool RAW Used','ceph.pool["{#POOLNAME}",stored_raw]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Bytes used in pool including copies made.','0','30d','0','','32117','3s','','','','200','1','0','','0','0','0','0','0','0','0','4c053bbaaf6946bcaf5288cc154d6fdd');
INSERT INTO `items` (`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`,`uuid`) values ('32514','18','','10353','Ceph: [{#POOLNAME}] Pool Write bandwidth','ceph.pool["{#POOLNAME}",wr_bytes.rate]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Per-pool write Bytes/second','0','30d','0','','32117','3s','','','','200','1','0','','0','0','0','0','0','0','0','955353da182243e29d326b3b2807286a');
INSERT INTO `items` (`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`,`uuid`) values ('32515','18','','10353','Ceph: [{#POOLNAME}] Pool Write operations','ceph.pool["{#POOLNAME}",wr_ops.rate]','0','7d','365d','0','0','','ops','','',NULL,NULL,'','','0','','','','','2',NULL,'Per-pool write operations/second','0','30d','0','','32117','3s','','','','200','1','0','','0','0','0','0','0','0','0','acb3081d772444dab060a055fb3f4304');
INSERT INTO `items` (`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`,`uuid`) values ('32579','18','','10362','GitLab: Ruby: File descriptors, max','gitlab.ruby.process_max_fds','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum number of open file descriptors per process.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','91ed44c1738745119e892eadb88b417f');
INSERT INTO `items` (`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`,`uuid`) values ('32580','18','','10362','GitLab: Redis: Client requests rate, cache','gitlab.redis.client_requests.cache.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Redis client requests per second. (Instance: cache)','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','7dcc638e1c174dd5975f85551211a3ba');
INSERT INTO `items` (`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`,`uuid`) values ('32581','18','','10362','GitLab: Redis: Client requests rate, queues','gitlab.redis.client_requests.queues.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Redis client requests per second. (Instance: queues)','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','f613303925db46958d181c379e22f942');
INSERT INTO `items` (`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`,`uuid`) values ('32582','18','','10362','GitLab: Redis: Client requests rate, shared_state','gitlab.redis.client_requests.shared_state.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Redis client requests per second. (Instance: shared_state)','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','3ae46654b46e4c769a7308879bc64890');
INSERT INTO `items` (`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`,`uuid`) values ('32583','18','','10362','GitLab: Ruby: File descriptors opened, avg','gitlab.ruby.file_descriptors.avg','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Average number of opened file descriptors.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','950d48c3b5034e769b2bf6a7110ece02');
INSERT INTO `items` (`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`,`uuid`) values ('32584','18','','10362','GitLab: Ruby: File descriptors opened, max','gitlab.ruby.file_descriptors.max','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum number of opened file descriptors.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','67ed35c3f5f444b2b10fb462838758ac');
INSERT INTO `items` (`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`,`uuid`) values ('32585','18','','10362','GitLab: Ruby: File descriptors opened, min','gitlab.ruby.file_descriptors.min','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Minimum number of opened file descriptors.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','b1576e2b47bd448293c3e88885bfc87e');
INSERT INTO `items` (`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`,`uuid`) values ('32586','18','','10362','GitLab: Ruby: CPU usage per second','gitlab.ruby.process_cpu_seconds.rate','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average CPU time util in seconds.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','98feff3bfe0d4a9ea88733ae8fef8769');
INSERT INTO `items` (`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`,`uuid`) values ('32587','18','','10362','GitLab: Ruby: RSS memory, avg','gitlab.ruby.process_resident_memory_bytes.avg','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Average RSS Memory usage in bytes.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','8de84a159b864ed791c07835aa0ec39a');
INSERT INTO `items` (`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`,`uuid`) values ('32588','18','','10362','GitLab: Redis: Client exceptions rate, queues','gitlab.redis.client_exceptions.queues.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Redis client exceptions per second. (Instance: queues)','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','0bff591252dc4cc497527afb1f7d96b2');
INSERT INTO `items` (`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`,`uuid`) values ('32589','18','','10362','GitLab: Ruby: RSS memory, max','gitlab.ruby.process_resident_memory_bytes.max','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum RSS Memory usage in bytes.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','27285f7d3c344d68b7945edde3cb8ecf');
INSERT INTO `items` (`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`,`uuid`) values ('32590','18','','10362','GitLab: Ruby: RSS memory, min','gitlab.ruby.process_resident_memory_bytes.min','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Minimum RSS Memory usage in bytes.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','0cf8d21bcb8d4fb7880784dc82ba8229');
INSERT INTO `items` (`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`,`uuid`) values ('32591','18','','10362','GitLab: Ruby: First process start time','gitlab.ruby.process_start_time_seconds.first','0','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'Minimum UNIX timestamp of ruby processes start time.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','68267621a5e14494bf57225e71e05ff4');
INSERT INTO `items` (`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`,`uuid`) values ('32592','18','','10362','GitLab: Ruby: Last process start time','gitlab.ruby.process_start_time_seconds.last','0','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum UNIX timestamp ruby processes start time.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','be88084e9b544af68f78c013caf6b59a');
INSERT INTO `items` (`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`,`uuid`) values ('32593','18','','10362','GitLab: Ruby: Running_threads','gitlab.ruby.threads_running','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of running Ruby threads.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','f23849bd9716444f8bf65d3964e3be15');
INSERT INTO `items` (`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`,`uuid`) values ('32594','18','','10362','GitLab: User CAPTCHA logins, total','gitlab.successful_login_captcha_total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counter of successful CAPTCHA attempts during login.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','56af56ccc23d44bcb636871229fbcde2');
INSERT INTO `items` (`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`,`uuid`) values ('32595','18','','10362','GitLab: Transactions per second','gitlab.transactions.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Transactions per second (gitlab_transaction_* metrics).','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','95deb1dc93d34935930b154d1222c8a4');
INSERT INTO `items` (`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`,`uuid`) values ('32596','18','','10362','GitLab: Upload file does not exist','gitlab.upload_file_does_not_exist','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times an upload record could not find its file.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','d1a346edc81d487da115105333e8992d');
INSERT INTO `items` (`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`,`uuid`) values ('32597','18','','10362','GitLab: Redis: client exceptions rate, shared_state','gitlab.redis.client_exceptions.shared_state.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Redis client exceptions per second. (Instance: shared_state)','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','800b429ea1d044e6a685bc51706f8547');
INSERT INTO `items` (`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`,`uuid`) values ('32598','18','','10362','GitLab: Cache: Misses rate, total','gitlab.cache.misses_total.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The cache read miss count.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','43a26551b0a6460cac3c43138ec5fd33');
INSERT INTO `items` (`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`,`uuid`) values ('32599','18','','10362','GitLab: Redis: Client exceptions rate, cache','gitlab.redis.client_exceptions.cache.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Redis client exceptions per second. (Instance: cache)','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','173b8d5e108f471fbf4c1267dcb9cc37');
INSERT INTO `items` (`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`,`uuid`) values ('32600','18','','10362','GitLab: User CAPTCHA logins failed, total','gitlab.failed_login_captcha_total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counter of failed CAPTCHA attempts during login.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','3e409938aba24445a11012bcbf8aa113');
INSERT INTO `items` (`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`,`uuid`) values ('32601','18','','10362','GitLab: Database: Connection pool, busy','gitlab.database.connection_pool_busy','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Connections to the main database in use where the owner is still alive.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','2d46dc855ca741839cfe1a19e0dc892f');
INSERT INTO `items` (`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`,`uuid`) values ('32602','18','','10362','GitLab: Database: Connection pool, current','gitlab.database.connection_pool_connections','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Current connections to the main database in the pool.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','6ee7a1d3ab20463d83602b751381d821');
INSERT INTO `items` (`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`,`uuid`) values ('32603','18','','10362','GitLab: Database: Connection pool, dead','gitlab.database.connection_pool_dead','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Connections to the main database in use where the owner is not alive.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','561a1f54c98d4a2b828fe644961404be');
INSERT INTO `items` (`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`,`uuid`) values ('32604','18','','10362','GitLab: Database: Connection pool, idle','gitlab.database.connection_pool_idle','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Connections to the main database not in use.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','3a0b5c8de88b41fa9ebf6f3fca63833e');
INSERT INTO `items` (`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`,`uuid`) values ('32605','18','','10362','GitLab: Database: Connection pool, size','gitlab.database.connection_pool_size','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total connection to the main database pool capacity.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','fd1458232de34981a9a00be820e123f1');
INSERT INTO `items` (`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`,`uuid`) values ('32606','18','','10362','GitLab: Database: Connection pool, waiting','gitlab.database.connection_pool_waiting','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Threads currently waiting on this queue.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','501a2f646ced4207a32a24e900310440');
INSERT INTO `items` (`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`,`uuid`) values ('32607','18','','10362','GitLab: Version','gitlab.deployments.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the GitLab instance.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','71a5f82d11914b12a86008bfd488fb1e');
INSERT INTO `items` (`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`,`uuid`) values ('32608','18','','10362','GitLab: HTTP requests rate, 4xx','gitlab.http.requests.4xx.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of handle failures of requests with code 4XX.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','3ff4d9793af94d339ca225aaf9200554');
INSERT INTO `items` (`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`,`uuid`) values ('32609','18','','10362','GitLab: Cache: Operations rate, total','gitlab.cache.operations_total.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of cache operations.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','9c507412d4544a37bdad49ba47c48302');
INSERT INTO `items` (`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`,`uuid`) values ('32610','18','','10362','GitLab: HTTP requests rate, 5xx','gitlab.http.requests.5xx.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of handle failures of requests with HTTP-code 5xx.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','d0fa18012d6a4b0ba6620b0ef6cb9aef');
INSERT INTO `items` (`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`,`uuid`) values ('32611','18','','10362','GitLab: HTTP requests rate, total','gitlab.http.requests.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of requests received into the system.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','2d739e4bedb24b50ab6adfdfdeb39da9');
INSERT INTO `items` (`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`,`uuid`) values ('32612','18','','10362','GitLab: Pipelines: Auto DevOps pipelines, total','gitlab.pipeline.auto_devops_completed.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counter of completed Auto DevOps pipelines.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','7ef7142babfd4bc2b5b25be541c0511f');
INSERT INTO `items` (`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`,`uuid`) values ('32613','18','','10362','GitLab: Pipelines: Auto DevOps pipelines, failed','gitlab.pipeline.auto_devops_completed_total.failed','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counter of completed Auto DevOps pipelines with status "failed".','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','0ffa0a5c108644508252a03469e4f394');
INSERT INTO `items` (`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`,`uuid`) values ('32614','18','','10362','GitLab: Pipelines: Created, total','gitlab.pipeline.created_total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counter of pipelines created.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','f4265a3167a245c4998958106f6ee265');
INSERT INTO `items` (`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`,`uuid`) values ('32615','18','','10362','GitLab: Pipelines: CI/CD creation duration','gitlab.pipeline.pipeline_creation','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The sum of the time in seconds it takes to create a CI/CD pipeline.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','23cb22f8f81e461c86f72a92cdfde7a5');
INSERT INTO `items` (`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`,`uuid`) values ('32616','18','','10362','GitLab: Pipelines: Pipelines: CI/CD creation count','gitlab.pipeline.pipeline_creation.count','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of the time it takes to create a CI/CD pipeline.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','91c3acbb82524244a1ac400587641ffa');
INSERT INTO `items` (`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`,`uuid`) values ('32617','18','','10362','GitLab: Pipelines: Processing events, total','gitlab.pipeline.processing_events_total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of pipeline processing events.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','c80453c338814951a9e97d9f37e7d68f');
INSERT INTO `items` (`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`,`uuid`) values ('32618','18','','10362','GitLab: User logins, total','gitlab.user_session_logins_total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counter of how many users have logged in since GitLab was started or restarted.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','62c9c5a8886e431bb04c40a8045fe207');
INSERT INTO `items` (`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`,`uuid`) values ('32621','18','','10362','GitLab: Active connections','gitlab.puma.active_connections[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of puma threads processing a request.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','6b6ebfe9326247c8a57fb8c96125bcee');
INSERT INTO `items` (`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`,`uuid`) values ('32622','18','','10362','GitLab: Idle threads','gitlab.puma.idle_threads[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of spawned puma threads which are not processing a request.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','14194f273b4e47d98cfdcbefff64cc68');
INSERT INTO `items` (`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`,`uuid`) values ('32623','18','','10362','GitLab: Killer terminations, total','gitlab.puma.killer_terminations_total[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of workers terminated by PumaWorkerKiller.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','33a1be2938e24ce2a3fb650efa4f98d6');
INSERT INTO `items` (`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`,`uuid`) values ('32624','18','','10362','GitLab: Max threads','gitlab.puma.max_threads[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The maximum number of puma worker threads.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','7d93438afd73422d90b03e78b1c0f998');
INSERT INTO `items` (`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`,`uuid`) values ('32625','18','','10362','GitLab: Pool capacity','gitlab.puma.pool_capacity[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of requests the puma worker is capable of taking right now.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','fe381c99c2464e95bac63da2df994b8a');
INSERT INTO `items` (`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`,`uuid`) values ('32626','18','','10362','GitLab: Queued connections','gitlab.puma.queued_connections[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of connections in that puma worker\'s "todo" set waiting for a worker thread.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','8c375d8323f9459a8b2a6254b7afed5b');
INSERT INTO `items` (`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`,`uuid`) values ('32627','18','','10362','GitLab: Running threads','gitlab.puma.running[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of running puma threads.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','02b27e8a68884f399a8359ed6967d614');
INSERT INTO `items` (`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`,`uuid`) values ('32628','18','','10362','GitLab: Running workers','gitlab.puma.running_workers[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of booted puma workers.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','b43e4275dd64427bb6eb4890c556c513');
INSERT INTO `items` (`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`,`uuid`) values ('32629','18','','10362','GitLab: Stale workers','gitlab.puma.stale_workers[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of old puma workers.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','0169db2581ba48579edc911cad4b41d7');
INSERT INTO `items` (`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`,`uuid`) values ('32630','18','','10362','GitLab: Workers','gitlab.puma.workers[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of puma workers.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','19e0149a6de846c7a39b305037469ecb');
INSERT INTO `items` (`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`,`uuid`) values ('32631','18','','10362','GitLab: Unicorn: Active connections','gitlab.unicorn.active_connections[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of active Unicorn connections.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','7461ee7fad7f4597825644b80cce2ec2');
INSERT INTO `items` (`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`,`uuid`) values ('32632','18','','10362','GitLab: Unicorn: Queued connections','gitlab.unicorn.queued_connections[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of queued Unicorn connections.','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','31e0f545c6c6428c8f9f46426cb97ca7');
INSERT INTO `items` (`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`,`uuid`) values ('32633','18','','10362','GitLab: Unicorn: Workers','gitlab.unicorn.unicorn_workers[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of Unicorn workers','0','30d','0','','32578','3s','','','','200','1','0','','0','0','0','0','0','0','0','44a12fd548b742069cae53a78f7f8ab0');
INSERT INTO `items` (`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`,`uuid`) values ('32642','18','','10363','NameNode: Missing blocks','hadoop.namenode.missing_blocks','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of missing blocks.','0','30d','0','','32641','3s','','','','200','1','0','','0','0','0','0','0','0','0','30ee7e09067e4f00a4f26ad6c00454b2');
INSERT INTO `items` (`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`,`uuid`) values ('32643','18','','10363','ResourceManager: Decommissioned NMs','hadoop.resourcemanager.num_decommissioned_nm','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Decommissioned NodeManagers.','0','30d','0','','32639','3s','','','','200','1','0','','0','0','0','0','0','0','0','3fccfdd8738544ca8969ade842430fc8');
INSERT INTO `items` (`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`,`uuid`) values ('32644','18','','10363','NameNode: Blocks allocable','hadoop.namenode.block_capacity','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum number of blocks allocable.','0','30d','0','','32641','3s','','','','200','1','0','','0','0','0','0','0','0','0','1d098dc6fa134053b6c6be0e7618092e');
INSERT INTO `items` (`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`,`uuid`) values ('32645','18','','10363','NameNode: Capacity remaining','hadoop.namenode.capacity_remaining','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Available capacity.','0','30d','0','','32641','3s','','','','200','1','0','','0','0','0','0','0','0','0','26ca0bbd18e04b49b9eb8d2a74f4fd15');
INSERT INTO `items` (`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`,`uuid`) values ('32646','18','','10363','NameNode: Corrupt blocks','hadoop.namenode.corrupt_blocks','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of corrupt blocks.','0','30d','0','','32641','3s','','','','200','1','0','','0','0','0','0','0','0','0','c73c2b6c24b846e49bdb68c3f5a01419');
INSERT INTO `items` (`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`,`uuid`) values ('32647','18','','10363','ResourceManager: Uptime','hadoop.resourcemanager.uptime','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','32639','3s','','','','200','1','0','','0','0','0','0','0','0','0','4e74ca69a84d441e95e2c20afd25fada');
INSERT INTO `items` (`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`,`uuid`) values ('32648','18','','10363','ResourceManager: RPC queue & processing time','hadoop.resourcemanager.rpc_processing_time_avg','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time spent on processing RPC requests.','0','30d','0','','32639','3s','','','','200','1','0','','0','0','0','0','0','0','0','c4c3195326e34ebcb57e5039beffce7c');
INSERT INTO `items` (`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`,`uuid`) values ('32649','18','','10363','ResourceManager: Unhealthy NMs','hadoop.resourcemanager.num_unhealthy_nm','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Unhealthy NodeManagers.','0','30d','0','','32639','3s','','','','200','1','0','','0','0','0','0','0','0','0','e6aa4b4b29414f2fb1f06bd536552c1c');
INSERT INTO `items` (`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`,`uuid`) values ('32650','18','','10363','ResourceManager: Shutdown NMs','hadoop.resourcemanager.num_shutdown_nm','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Shutdown NodeManagers.','0','30d','0','','32639','3s','','','','200','1','0','','0','0','0','0','0','0','0','666152b3bf544a29b9e58a9f417c0ab8');
INSERT INTO `items` (`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`,`uuid`) values ('32651','18','','10363','ResourceManager: Rebooted NMs','hadoop.resourcemanager.num_rebooted_nm','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Rebooted NodeManagers.','0','30d','0','','32639','3s','','','','200','1','0','','0','0','0','0','0','0','0','b7791ce30e8f4aa7b5eea2ee7ca7eef9');
INSERT INTO `items` (`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`,`uuid`) values ('32652','18','','10363','ResourceManager: Lost NMs','hadoop.resourcemanager.num_lost_nm','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Lost NodeManagers.','0','30d','0','','32639','3s','','','','200','1','0','','0','0','0','0','0','0','0','c4bbf5295b2a44619e2b641468071f9b');
INSERT INTO `items` (`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`,`uuid`) values ('32653','18','','10363','ResourceManager: Decommissioning NMs','hadoop.resourcemanager.num_decommissioning_nm','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Decommissioning NodeManagers.','0','30d','0','','32639','3s','','','','200','1','0','','0','0','0','0','0','0','0','9aad193a9e074575878e44aa96ff4237');
INSERT INTO `items` (`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`,`uuid`) values ('32654','18','','10363','NameNode: Total files','hadoop.namenode.files_total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total count of files tracked by the NameNode.','0','30d','0','','32641','3s','','','','200','1','0','','0','0','0','0','0','0','0','82198b21427a4e39a173369db42d9de3');
INSERT INTO `items` (`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`,`uuid`) values ('32655','18','','10363','ResourceManager: Active NMs','hadoop.resourcemanager.num_active_nm','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Active NodeManagers.','0','30d','0','','32639','3s','','','','200','1','0','','0','0','0','0','0','0','0','63d4fe7384044027b08b99698355fd8b');
INSERT INTO `items` (`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`,`uuid`) values ('32656','18','','10363','NameNode: Dead DataNodes','hadoop.namenode.num_dead_data_nodes','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of dead DataNodes.','0','30d','0','','32641','3s','','','','200','1','0','','0','0','0','0','0','0','0','3473bad0a7c94c8b9fd35cd4398e6215');
INSERT INTO `items` (`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`,`uuid`) values ('32657','18','','10363','NameNode: Failed volumes','hadoop.namenode.volume_failures_total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of failed volumes.','0','30d','0','','32641','3s','','','','200','1','0','','0','0','0','0','0','0','0','396eb8f791d54254b08ddee553d3d944');
INSERT INTO `items` (`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`,`uuid`) values ('32658','18','','10363','NameNode: Total blocks','hadoop.namenode.blocks_total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of blocks tracked by NameNode.','0','30d','0','','32641','3s','','','','200','1','0','','0','0','0','0','0','0','0','2cb55b7ed9cd41878dc985497f45e084');
INSERT INTO `items` (`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`,`uuid`) values ('32659','18','','10363','NameNode: Under-replicated blocks','hadoop.namenode.under_replicated_blocks','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of blocks with insufficient replication.','0','30d','0','','32641','3s','','','','200','1','0','','0','0','0','0','0','0','0','249098bbeb7a43cdac59f1297ca95104');
INSERT INTO `items` (`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`,`uuid`) values ('32660','18','','10363','NameNode: Transactions since last checkpoint','hadoop.namenode.transactions_since_last_checkpoint','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of transactions since last checkpoint.','0','30d','0','','32641','3s','','','','200','1','0','','0','0','0','0','0','0','0','6abfe537a36646a0b10fe2c72586d249');
INSERT INTO `items` (`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`,`uuid`) values ('32661','18','','10363','NameNode: Total load','hadoop.namenode.total_load','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of concurrent file accesses (read/write) across all DataNodes.','0','30d','0','','32641','3s','','','','200','1','0','','0','0','0','0','0','0','0','9f00149ef0c2444ebbc9327b24acd7b9');
INSERT INTO `items` (`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`,`uuid`) values ('32662','18','','10363','NameNode: RPC queue & processing time','hadoop.namenode.rpc_processing_time_avg','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time spent on processing RPC requests.','0','30d','0','','32641','3s','','','','200','1','0','','0','0','0','0','0','0','0','a9e6c1e2f9544c71844785b4baa9c017');
INSERT INTO `items` (`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`,`uuid`) values ('32663','18','','10363','NameNode: Percent capacity remaining','hadoop.namenode.percent_remaining','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Available capacity in percent.','0','30d','0','','32641','3s','','','','200','1','0','','0','0','0','0','0','0','0','3cfbf084a31b479c91be356556d43c0d');
INSERT INTO `items` (`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`,`uuid`) values ('32664','18','','10363','NameNode: Block Pool Renaming','hadoop.namenode.percent_block_pool_used','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','32641','3s','','','','200','1','0','','0','0','0','0','0','0','0','b72d54b849fc48fd8e7cdacd75943c23');
INSERT INTO `items` (`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`,`uuid`) values ('32665','18','','10363','NameNode: Stale DataNodes','hadoop.namenode.num_stale_data_nodes','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'DataNodes that do not send a heartbeat within 30 seconds are marked as "stale".','0','30d','0','','32641','3s','','','','200','1','0','','0','0','0','0','0','0','0','15bcb22fdc7f4e2c8f24560ef641d63d');
INSERT INTO `items` (`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`,`uuid`) values ('32666','18','','10363','NameNode: Alive DataNodes','hadoop.namenode.num_live_data_nodes','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of alive DataNodes.','0','30d','0','','32641','3s','','','','200','1','0','','0','0','0','0','0','0','0','398a8c95db3248b684f222fe7b912fe3');
INSERT INTO `items` (`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`,`uuid`) values ('32667','18','','10363','NameNode: Uptime','hadoop.namenode.uptime','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','32641','3s','','','','200','1','0','','0','0','0','0','0','0','0','7e8769eb77304b6f9c6e1d5bbd420fd0');
INSERT INTO `items` (`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`,`uuid`) values ('32672','18','','10363','{#HOSTNAME}: Admin state','hadoop.datanode.admin_state[{#HOSTNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Administrative state.','0','30d','0','','32634','3s','','','','200','1','0','','0','0','0','0','0','0','0','ef570f8b37c545bd880b7df20bd19f06');
INSERT INTO `items` (`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`,`uuid`) values ('32673','18','','10363','{#HOSTNAME}: Used','hadoop.datanode.dfs_used[{#HOSTNAME}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used disk space.','0','30d','0','','32670','3s','','','','200','1','0','','0','0','0','0','0','0','0','14904ca75991456784d2082c14b7ec88');
INSERT INTO `items` (`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`,`uuid`) values ('32674','18','','10363','{#HOSTNAME}: JVM Garbage collection time','hadoop.datanode.jvm.gc_time[{#HOSTNAME}]','0','7d','365d','0','3','','!ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The JVM garbage collection time in milliseconds.','0','30d','0','','32670','3s','','','','200','1','0','','0','0','0','0','0','0','0','01bc20e53e314089a55b270961062c00');
INSERT INTO `items` (`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`,`uuid`) values ('32675','18','','10363','{#HOSTNAME}: JVM Heap usage','hadoop.datanode.jvm.mem_heap_used[{#HOSTNAME}]','0','7d','365d','0','0','','!MB','','',NULL,NULL,'','','0','','','','','2',NULL,'The JVM heap usage in MBytes.','0','30d','0','','32670','3s','','','','200','1','0','','0','0','0','0','0','0','0','4cae9eef95f24810a6607de5348b7b54');
INSERT INTO `items` (`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`,`uuid`) values ('32676','18','','10363','{#HOSTNAME}: JVM Threads','hadoop.datanode.jvm.threads[{#HOSTNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of JVM threads.','0','30d','0','','32670','3s','','','','200','1','0','','0','0','0','0','0','0','0','dc30742dba2e4e5d99ca237615ffaef3');
INSERT INTO `items` (`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`,`uuid`) values ('32677','18','','10363','{#HOSTNAME}: Number of failed volumes','hadoop.datanode.numfailedvolumes[{#HOSTNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of failed storage volumes.','0','30d','0','','32670','3s','','','','200','1','0','','0','0','0','0','0','0','0','57c00b46aef94c018806cdae43adfab5');
INSERT INTO `items` (`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`,`uuid`) values ('32678','18','','10363','{#HOSTNAME}: Oper state','hadoop.datanode.oper_state[{#HOSTNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Operational state.','0','30d','0','','32634','3s','','','','200','1','0','','0','0','0','0','0','0','0','a6541492d4f7426b8016d1a8932b87ce');
INSERT INTO `items` (`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`,`uuid`) values ('32679','18','','10363','{#HOSTNAME}: Remaining','hadoop.datanode.remaining[{#HOSTNAME}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Remaining disk space.','0','30d','0','','32670','3s','','','','200','1','0','','0','0','0','0','0','0','0','5a46ec3c89eb40d4ad57cec2080c66f8');
INSERT INTO `items` (`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`,`uuid`) values ('32680','18','','10363','{#HOSTNAME}: Uptime','hadoop.datanode.uptime[{#HOSTNAME}]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32670','3s','','','','200','1','0','','0','0','0','0','0','0','0','2ac19ff8ee7f480f9974be56ab06eaaf');
INSERT INTO `items` (`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`,`uuid`) values ('32681','18','','10363','{#HOSTNAME}: Version','hadoop.datanode.version[{#HOSTNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'DataNode software version.','0','30d','0','','32634','3s','','','','200','1','0','','0','0','0','0','0','0','0','62b4ca9b1e8a43aa89fbeb78ac16c8cf');
INSERT INTO `items` (`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`,`uuid`) values ('32682','18','','10363','{#HOSTNAME}: Available memory','hadoop.nodemanager.availablememory[{#HOSTNAME}]','0','7d','365d','0','3','','!MB','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32635','3s','','','','200','1','0','','0','0','0','0','0','0','0','ffa4704e099a4f1a8b49add245938501');
INSERT INTO `items` (`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`,`uuid`) values ('32683','18','','10363','{#HOSTNAME}: Container launch avg duration','hadoop.nodemanager.container_launch_duration_avg[{#HOSTNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32671','3s','','','','200','1','0','','0','0','0','0','0','0','0','e8d0ea2c96b643f899e370ab73c5c262');
INSERT INTO `items` (`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`,`uuid`) values ('32684','18','','10363','{#HOSTNAME}: JVM Garbage collection time','hadoop.nodemanager.jvm.gc_time[{#HOSTNAME}]','0','7d','365d','0','3','','!ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The JVM garbage collection time in milliseconds.','0','30d','0','','32671','3s','','','','200','1','0','','0','0','0','0','0','0','0','82e289c999a246a6bd1feb85349d0348');
INSERT INTO `items` (`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`,`uuid`) values ('32685','18','','10363','{#HOSTNAME}: JVM Heap usage','hadoop.nodemanager.jvm.mem_heap_used[{#HOSTNAME}]','0','7d','365d','0','0','','!MB','','',NULL,NULL,'','','0','','','','','2',NULL,'The JVM heap usage in MBytes.','0','30d','0','','32671','3s','','','','200','1','0','','0','0','0','0','0','0','0','4032f0a266c44b34896e8179bbed2419');
INSERT INTO `items` (`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`,`uuid`) values ('32686','18','','10363','{#HOSTNAME}: JVM Threads','hadoop.nodemanager.jvm.threads[{#HOSTNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of JVM threads.','0','30d','0','','32671','3s','','','','200','1','0','','0','0','0','0','0','0','0','d7485913b2db4e31a8f02f63f8c18913');
INSERT INTO `items` (`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`,`uuid`) values ('32687','18','','10363','{#HOSTNAME}: Number of containers','hadoop.nodemanager.numcontainers[{#HOSTNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32635','3s','','','','200','1','0','','0','0','0','0','0','0','0','662cafd31e194db8808c75789bf712eb');
INSERT INTO `items` (`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`,`uuid`) values ('32688','18','','10363','{#HOSTNAME}: RPC queue & processing time','hadoop.nodemanager.rpc_processing_time_avg[{#HOSTNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Average time spent on processing RPC requests.','0','30d','0','','32671','3s','','','','200','1','0','','0','0','0','0','0','0','0','01a5bcdbfc1c4a84a471738998aed372');
INSERT INTO `items` (`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`,`uuid`) values ('32689','18','','10363','{#HOSTNAME}: State','hadoop.nodemanager.state[{#HOSTNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'State of the node - valid values are: NEW, RUNNING, UNHEALTHY, DECOMMISSIONING, DECOMMISSIONED, LOST, REBOOTED, SHUTDOWN.','0','30d','0','','32635','3s','','','','200','1','0','','0','0','0','0','0','0','0','bab9c705d31e42ce9af65b396e18504b');
INSERT INTO `items` (`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`,`uuid`) values ('32690','18','','10363','{#HOSTNAME}: Uptime','hadoop.nodemanager.uptime[{#HOSTNAME}]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32671','3s','','','','200','1','0','','0','0','0','0','0','0','0','f8f6799130d34848a7dfb65815939c48');
INSERT INTO `items` (`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`,`uuid`) values ('32691','18','','10363','{#HOSTNAME}: Used memory','hadoop.nodemanager.usedmemory[{#HOSTNAME}]','0','7d','365d','0','3','','!MB','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32635','3s','','','','200','1','0','','0','0','0','0','0','0','0','d92b66e61a5244a995693ab8aedee96e');
INSERT INTO `items` (`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`,`uuid`) values ('32692','18','','10363','{#HOSTNAME}: Version','hadoop.nodemanager.version[{#HOSTNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32635','3s','','','','200','1','0','','0','0','0','0','0','0','0','c4d46de2d6d341f5a2c1826236f94e5e');
INSERT INTO `items` (`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`,`uuid`) values ('32784','18','','10365','Vault: Standby','vault.health.standby','0','7d','365d','0','3','','','','',NULL,'191','','','0','','','','','0',NULL,'Standby status.','0','30d','0','','32781','3s','','','','200','1','0','','0','0','0','0','0','0','0','0641c979cf774d97a9bc52dbaffe8a0f');
INSERT INTO `items` (`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`,`uuid`) values ('32785','18','','10365','Vault: Disaster Recovery replication','vault.health.replication_dr_mode','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Disaster recovery replication mode\r\nhttps://www.vaultproject.io/docs/enterprise/replication','0','30d','0','','32781','3s','','','','200','1','0','','0','0','0','0','0','0','0','488a43102a304f7ab4d2586088a2fded');
INSERT INTO `items` (`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`,`uuid`) values ('32786','18','','10365','Vault: Is leader','vault.leader.is_self','0','7d','365d','0','3','','','','',NULL,'191','','','0','','','','','0',NULL,'Leader status.','0','30d','0','','32780','3s','','','','200','1','0','','0','0','0','0','0','0','0','ea6a7f625c144dc6beff71d3a19004ab');
INSERT INTO `items` (`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`,`uuid`) values ('32787','18','','10365','Vault: HA enabled','vault.leader.ha_enabled','0','7d','365d','0','3','','','','',NULL,'191','','','0','','','','','0',NULL,'HA enabled status.','0','30d','0','','32780','3s','','','','200','1','0','','0','0','0','0','0','0','0','77da3cf43b0d4a449399f3de6d5e8477');
INSERT INTO `items` (`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`,`uuid`) values ('32788','18','','10365','Vault: Version','vault.health.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Server version.','0','30d','0','','32781','3s','','','','200','1','0','','0','0','0','0','0','0','0','e7e79cc09faa409dbe3fa74e1db4cb5f');
INSERT INTO `items` (`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`,`uuid`) values ('32789','18','','10365','Vault: Sealed','vault.health.sealed','0','7d','365d','0','3','','','','',NULL,'191','','','0','','','','','0',NULL,'Seal status.','0','30d','0','','32781','3s','','','','200','1','0','','0','0','0','0','0','0','0','e6d2183bb8b14fa3a647d5cea1f56d4c');
INSERT INTO `items` (`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`,`uuid`) values ('32790','18','','10365','Vault: Performance replication','vault.health.replication_performance_mode','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Performance replication mode\r\nhttps://www.vaultproject.io/docs/enterprise/replication','0','30d','0','','32781','3s','','','','200','1','0','','0','0','0','0','0','0','0','509982bde325478a9d77f99c256f1068');
INSERT INTO `items` (`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`,`uuid`) values ('32791','18','','10365','Vault: Initialized','vault.health.initialized','0','7d','365d','0','3','','','','',NULL,'191','','','0','','','','','0',NULL,'Initialization status.','0','30d','0','','32781','3s','','','','200','1','0','','0','0','0','0','0','0','0','05c46e931d29415f9a6a32f4dadd1eed');
INSERT INTO `items` (`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`,`uuid`) values ('32792','18','','10365','Vault: Performance standby','vault.health.performance_standby','0','7d','365d','0','3','','','','',NULL,'191','','','0','','','','','0',NULL,'Performance standby status.','0','30d','0','','32781','3s','','','','200','1','0','','0','0','0','0','0','0','0','75a3c56f1bb24646927cf9b490471cae');
INSERT INTO `items` (`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`,`uuid`) values ('32793','18','','10365','Vault: Healthcheck','vault.health.check','0','7d','365d','0','3','','','','',NULL,'42','','','0','','','','','0',NULL,'Vault healthcheck.','0','30d','0','','32781','3s','','','','200','1','0','','0','0','0','0','0','0','0','df395f64c8fc45d2a9442bb655474b4a');
INSERT INTO `items` (`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`,`uuid`) values ('32794','18','','10365','Vault: Get metrics error','vault.get_metrics.error','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get metrics error.','0','30d','0','','32782','3s','','','','200','1','0','','0','0','0','0','0','0','0','cf264b78e4c44d49a81eac141a86d011');
INSERT INTO `items` (`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`,`uuid`) values ('32795','18','','10365','Vault: Clear metrics','vault.clear_metrics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','32782','3s','','','','200','1','0','','0','0','0','0','0','0','0','9607f909cfed4515bed2e0ea16749e0d');
INSERT INTO `items` (`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`,`uuid`) values ('32869','18','','10365','Token metrics discovery','vault.tokens.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Tokens metrics discovery.','0','30d','0','','32783','3s','','','','200','1','0','','0','0','0','0','0','0','0','d580dee4c0bc4a0db91c9c5af70965af');
INSERT INTO `items` (`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`,`uuid`) values ('32871','18','','10365','Vault: Token [{#TOKEN_NAME}] error','vault.token_via_accessor.error["{#ACCESSOR}"]','0','7d','0','0','1','','','','',NULL,'191','','','0','','','','','2',NULL,'Token lookup error text.','0','30d','0','','32783','3s','','','','200','1','0','','0','0','0','0','0','0','0','9a9359e74c3a48b1bbada84d772e665a');
INSERT INTO `items` (`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`,`uuid`) values ('32872','18','','10365','Vault: Token [{#TOKEN_NAME}] has TTL','vault.token_via_accessor.has_ttl["{#ACCESSOR}"]','0','7d','365d','0','3','','','','',NULL,'191','','','0','','','','','2',NULL,'The Token has TTL.','0','30d','0','','32783','3s','','','','200','1','0','','0','0','0','0','0','0','0','caa3f9ca96b14b929dd75238602fead9');
INSERT INTO `items` (`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`,`uuid`) values ('32873','18','','10365','Vault: Token [{#TOKEN_NAME}] TTL','vault.token_via_accessor.ttl["{#ACCESSOR}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The TTL period of the token.','0','30d','0','','32783','3s','','','','200','1','0','','0','0','0','0','0','0','0','0f872d9d811c44f6a9a9f8f5089ca0a1');
INSERT INTO `items` (`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`,`uuid`) values ('32965','18','','10369','Zookeeper: Approximate data size','zookeeper.approximate_data_size','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Data tree size in bytes.The size includes the znode path and its value.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','c7e7e728371a45ef81c35929a713ab4a');
INSERT INTO `items` (`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`,`uuid`) values ('32966','18','','10369','Zookeeper: Outstanding requests','zookeeper.outstanding_requests','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of queued requests when the server is under load and is receiving more sustained requests than it can process.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','88ede9687323440183d665d38938212e');
INSERT INTO `items` (`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`,`uuid`) values ('32967','18','','10369','Zookeeper: Latency, max','zookeeper.max_latency','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum amount of time it takes for the server to respond to a client request.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','185f5c3fdfde43afa55ed4c38c0878dc');
INSERT INTO `items` (`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`,`uuid`) values ('32968','18','','10369','Zookeeper: Latency, min','zookeeper.min_latency','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The minimum amount of time it takes for the server to respond to a client request.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','a4b3d6d9cfb14454b83475b89fe44e06');
INSERT INTO `items` (`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`,`uuid`) values ('32969','18','','10369','Zookeeper: Alive connections','zookeeper.num_alive_connections','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of active clients connected to a zookeeper server.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','86ba6a7967e8462cb6ff4be126e21a44');
INSERT INTO `items` (`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`,`uuid`) values ('32970','18','','10369','Zookeeper: File descriptors, open','zookeeper.open_file_descriptor_count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of file descriptors that a zookeeper server has open.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','e441c926d2f947708b39d7615520405d');
INSERT INTO `items` (`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`,`uuid`) values ('32971','18','','10369','Zookeeper: Packets received per sec','zookeeper.packets_received.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of zookeeper packets received by a server per second.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','3295ed3fdb504014b351eba81bf55ccf');
INSERT INTO `items` (`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`,`uuid`) values ('32972','18','','10369','Zookeeper: Looking per sec','zookeeper.looking_count.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of transitions into looking state.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','8a784676586d4b719a0b5c1327a0645f');
INSERT INTO `items` (`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`,`uuid`) values ('32973','18','','10369','Zookeeper: Packets sent per sec','zookeeper.packets_sent','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of zookeeper packets sent from a server per second.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','ecef658cb34247e2838e0f7313dba0bf');
INSERT INTO `items` (`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`,`uuid`) values ('32974','18','','10369','Zookeeper: Revalidate per sec','zookeeper.revalidate_count.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of revalidations.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','8295b8c4c1f44ba48987f36b54b43ab8');
INSERT INTO `items` (`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`,`uuid`) values ('32975','18','','10369','Zookeeper: Server mode','zookeeper.server_state','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Mode of the server. In an ensemble, this may either be leader or follower. Otherwise, it is standalone','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','44a1f40fb3604fcda9fedc4beeb87baf');
INSERT INTO `items` (`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`,`uuid`) values ('32976','18','','10369','Zookeeper: Snap syncs per sec','zookeeper.snap_count.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of snap syncs performed per second','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','d143981fdaee4c51bcbb773579be25f0');
INSERT INTO `items` (`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`,`uuid`) values ('32977','18','','10369','Zookeeper: Uptime','zookeeper.uptime','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Uptime that a peer has been in a table leading/following/observing state.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','cea535cfb32940f29aee3c17734e8c51');
INSERT INTO `items` (`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`,`uuid`) values ('32978','18','','10369','Zookeeper: Version','zookeeper.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of Zookeeper server.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','86a65edd19e14fa9aea1ff40220f895c');
INSERT INTO `items` (`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`,`uuid`) values ('32979','18','','10369','Zookeeper: Watch count','zookeeper.watch_count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of watches currently set on the local ZooKeeper process.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','5cbc4414c19146ff87e15f21c77808c9');
INSERT INTO `items` (`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`,`uuid`) values ('32980','18','','10369','Zookeeper: File descriptors, max','zookeeper.max_file_descriptor_count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum number of file descriptors that a zookeeper server can open.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','350a5b566e054e8390bb43ce0b2916c6');
INSERT INTO `items` (`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`,`uuid`) values ('32981','18','','10369','Zookeeper: Global sessions','zookeeper.global_sessions','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of global sessions.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','0f8e7ac6f753483d86744b2ab6aa28dd');
INSERT INTO `items` (`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`,`uuid`) values ('32982','18','','10369','Zookeeper: Local sessions','zookeeper.local_sessions','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of local sessions.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','72519325755b4c27931c674756313ebb');
INSERT INTO `items` (`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`,`uuid`) values ('32983','18','','10369','Zookeeper: Election time, avg','zookeeper.avg_election_time','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Time between entering and leaving election.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','260f60267bda40099f323292d7f0b8fd');
INSERT INTO `items` (`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`,`uuid`) values ('32984','18','','10369','Zookeeper: Ephemeral nodes count','zookeeper.ephemerals_count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of ephemeral nodes that a zookeeper server has in its data tree.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','1a581bf18a364868b6eb47bbafcaa105');
INSERT INTO `items` (`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`,`uuid`) values ('32985','18','','10369','Zookeeper: Diff syncs per sec','zookeeper.diff_count.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of diff syncs performed per second','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','3e8e3bc9910e4c3c898e1371790a35f0');
INSERT INTO `items` (`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`,`uuid`) values ('32986','18','','10369','Zookeeper: Revalidate connections per sec','zookeeper.connection_revalidate_count.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of connection revalidations.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','1498099b44d3424093f7cea55cb256e8');
INSERT INTO `items` (`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`,`uuid`) values ('32987','18','','10369','Zookeeper: Rejected connections per sec','zookeeper.connection_rejected.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of connection rejected.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','640195274cda47ed83faa4f0c6529818');
INSERT INTO `items` (`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`,`uuid`) values ('32988','18','','10369','Zookeeper: Drop connections per sec','zookeeper.connection_drop_count.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of connection drops.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','1c0ff2c8d4844ed4b815f2a793dd6e7b');
INSERT INTO `items` (`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`,`uuid`) values ('32989','18','','10369','Zookeeper: Commit per sec','zookeeper.commit_count.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of commits performed per second','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','10b17f0682c44e2391b8ee191ed355c1');
INSERT INTO `items` (`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`,`uuid`) values ('32990','18','','10369','Zookeeper: Snapshot writes','zookeeper.cnt_snapshottime','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of performed snapshot writes.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','159bf1c1f29846a582e201c143239182');
INSERT INTO `items` (`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`,`uuid`) values ('32991','18','','10369','Zookeeper: Fsync','zookeeper.cnt_fsynctime','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of performed fsyncs.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','01d490987f954950b7ce3a107aefa200');
INSERT INTO `items` (`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`,`uuid`) values ('32992','18','','10369','Zookeeper: Elections','zookeeper.cnt_election_time','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of elections happened.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','b9a97ebbaf7d416998e24553cee3559c');
INSERT INTO `items` (`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`,`uuid`) values ('32993','18','','10369','Zookeeper: Bytes received per sec','zookeeper.bytes_received_count.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes received per second.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','f227c61a498f47f6ba1862a741da3789');
INSERT INTO `items` (`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`,`uuid`) values ('32994','18','','10369','Zookeeper: Snapshot write time, avg','zookeeper.avg_snapshottime','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time to write a snapshot.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','6195a64eb23341f0964d8d9ffbf9e624');
INSERT INTO `items` (`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`,`uuid`) values ('32995','18','','10369','Zookeeper: Latency, avg','zookeeper.avg_latency','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The average amount of time it takes for the server to respond to a client request.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','243ea1e324d5464a88c8847e721cd38b');
INSERT INTO `items` (`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`,`uuid`) values ('32996','18','','10369','Zookeeper: Fsync time, avg','zookeeper.avg_fsynctime','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Time to fsync transaction log.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','28aa45a47df64503a9553a05794f512a');
INSERT INTO `items` (`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`,`uuid`) values ('32997','18','','10369','Zookeeper: Znode count','zookeeper.znode_count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of znodes in the ZooKeeper namespace (the data)','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','07925b71e3fe421eac9b338fc23713d0');
INSERT INTO `items` (`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`,`uuid`) values ('32999','18','','10369','Leader metrics discovery','zookeeper.metrics.leader','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Additional metrics for leader node','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','70e9fabfdfe446edae67a340f648612f');
INSERT INTO `items` (`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`,`uuid`) values ('33000','18','','10369','Zookeeper client {#TYPE} [{#CLIENT}]: Latency, avg','zookeeper.avg_latency[{#TYPE},{#CLIENT}]','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The average amount of time it takes for the server to respond to a client request.','0','30d','0','','32964','3s','','','','200','1','0','','0','0','0','0','0','0','0','b5a378d3785542dca169b1bc1c02189f');
INSERT INTO `items` (`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`,`uuid`) values ('33001','18','','10369','Zookeeper client {#TYPE} [{#CLIENT}]: Latency, max','zookeeper.max_latency[{#TYPE},{#CLIENT}]','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The maximum amount of time it takes for the server to respond to a client request.','0','30d','0','','32964','3s','','','','200','1','0','','0','0','0','0','0','0','0','2a36ecfb56754bcb8bdc91da76316fb4');
INSERT INTO `items` (`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`,`uuid`) values ('33002','18','','10369','Zookeeper client {#TYPE} [{#CLIENT}]: Latency, min','zookeeper.min_latency[{#TYPE},{#CLIENT}]','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The minimum amount of time it takes for the server to respond to a client request.','0','30d','0','','32964','3s','','','','200','1','0','','0','0','0','0','0','0','0','6a245634ec9b4aa0b2df8360b42ac8aa');
INSERT INTO `items` (`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`,`uuid`) values ('33003','18','','10369','Zookeeper client {#TYPE} [{#CLIENT}]: Outstanding requests','zookeeper.outstanding_requests[{#TYPE},{#CLIENT}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of queued requests when the server is under load and is receiving more sustained requests than it can process.','0','30d','0','','32964','3s','','','','200','1','0','','0','0','0','0','0','0','0','89805694583b453e99f833e850b5c5dc');
INSERT INTO `items` (`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`,`uuid`) values ('33004','18','','10369','Zookeeper client {#TYPE} [{#CLIENT}]: Packets received per sec','zookeeper.packets_received[{#TYPE},{#CLIENT}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of packets received.','0','30d','0','','32964','3s','','','','200','1','0','','0','0','0','0','0','0','0','e68a429aa986477e894b2a4437b6ec4a');
INSERT INTO `items` (`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`,`uuid`) values ('33005','18','','10369','Zookeeper client {#TYPE} [{#CLIENT}]: Packets sent per sec','zookeeper.packets_sent[{#TYPE},{#CLIENT}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of packets sent.','0','30d','0','','32964','3s','','','','200','1','0','','0','0','0','0','0','0','0','c748207b3f3e4a7ca6bb8ff3ecc8959b');
INSERT INTO `items` (`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`,`uuid`) values ('33006','18','','10369','Zookeeper: Learners{#SINGLETON}','zookeeper.learners[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of learners.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','3a9b38e228a0438eae354cfc885b81ab');
INSERT INTO `items` (`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`,`uuid`) values ('33007','18','','10369','Zookeeper: Pending syncs{#SINGLETON}','zookeeper.pending_syncs[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of pending syncs to carry out to ZooKeeper ensemble followers.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','c6ae1476b69f43108f843508a02343a7');
INSERT INTO `items` (`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`,`uuid`) values ('33008','18','','10369','Zookeeper: Quorum size{#SINGLETON}','zookeeper.quorum_size[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','d5297a5598e94ef5acb1f6affdf51eee');
INSERT INTO `items` (`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`,`uuid`) values ('33009','18','','10369','Zookeeper: Synced followers{#SINGLETON}','zookeeper.synced_followers[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of synced followers reported when a node server_state is leader.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','406d13a8d38a47498e939a118ec0329a');
INSERT INTO `items` (`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`,`uuid`) values ('33010','18','','10369','Zookeeper: Synced non-voting follower{#SINGLETON}','zookeeper.synced_non_voting_followers[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of synced voting followers reported when a node server_state is leader.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','71c9de2ed85d4a5fb2306b24b9ca67d3');
INSERT INTO `items` (`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`,`uuid`) values ('33011','18','','10369','Zookeeper: Synced observers{#SINGLETON}','zookeeper.synced_observers[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of synced observers.','0','30d','0','','32963','3s','','','','200','1','0','','0','0','0','0','0','0','0','299da1a6343b47a4a25efe2d8581965e');
INSERT INTO `items` (`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`,`uuid`) values ('33012','18','','10262','Remote Zabbix proxy: Utilization of availability manager internal processes, in %','process.availability_manager.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time availability manager processes have been busy in the last minute.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','189d41565cdf4f459468c43d1b1d0961');
INSERT INTO `items` (`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`,`uuid`) values ('33013','18','','10262','Remote Zabbix proxy: Utilization of history poller data collector processes, in %','process.history_poller.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time history poller processes have been busy in the last minute.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','27c6471f0b184586aad8966a44a0c20f');
INSERT INTO `items` (`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`,`uuid`) values ('33014','18','','10261','Remote Zabbix server: Trend function cache, % unique requests','tcache.pitems','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Effectiveness statistics of the Zabbix trend function cache. Percentage\r\nof cached items from cached items + requests. Low percentage most likely means\r\nthat the cache size can be reduced.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','1625b3470fbf4bd7aa5b7051e328b37c');
INSERT INTO `items` (`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`,`uuid`) values ('33015','18','','10261','Remote Zabbix server: Trend function cache, % misses','tcache.pmisses','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Effectiveness statistics of the Zabbix trend function cache. Percentage of cache misses.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','2c8bf95e97dd48679e34591c72626c90');
INSERT INTO `items` (`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`,`uuid`) values ('33016','18','','10261','Remote Zabbix server: Utilization of availability manager internal processes, in %','process.availability_manager.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time availability manager processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','44ae7bbbca5346a4926bf1208e00deb8');
INSERT INTO `items` (`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`,`uuid`) values ('33017','18','','10261','Remote Zabbix server: Utilization of history poller data collector processes, in %','process.history_poller.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time history poller processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','edefe2732df14bc3933b8e1ff65fbd21');
INSERT INTO `items` (`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`,`uuid`) values ('33127','18','','10316','MySQL: Innodb buffer pool wait free','mysql.innodb_buffer_pool_wait_free','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the InnoDB buffer pool happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at the increasing innodb_buffer_pool_size.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','61db0feae0b440c087177f4312eb6b7a');
INSERT INTO `items` (`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`,`uuid`) values ('33128','18','','10316','MySQL: Innodb number open files','mysql.innodb_num_open_files','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open files held by InnoDB. InnoDB only.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','2eacd8c07f7148acaaa9b8f8602720ae');
INSERT INTO `items` (`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`,`uuid`) values ('33129','18','','10316','MySQL: Innodb log written','mysql.innodb_os_log_written','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes written to the InnoDB log.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','29d3513668ad4bdea28d947d2f983dd2');
INSERT INTO `items` (`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`,`uuid`) values ('33130','18','','10316','MySQL: Open tables','mysql.open_tables','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of tables that are open.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','3dd5ffb7c1cc45a487c5c7cabfa90ca6');
INSERT INTO `items` (`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`,`uuid`) values ('33131','18','','10316','MySQL: Open table definitions','mysql.open_table_definitions','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cached table definitions.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','fe572969a6754248b10a35a5c0afedf3');
INSERT INTO `items` (`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`,`uuid`) values ('33132','18','','10316','MySQL: Binlog cache disk use','mysql.binlog_cache_disk_use','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of transactions that used a temporary disk cache because they could not fit in the regular binary log cache, being larger than binlog_cache_size.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','75b9c78d76334927a3fc2a4d1322ecc2');
INSERT INTO `items` (`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`,`uuid`) values ('33133','18','','10316','MariaDB discovery','mysql.extra_metric.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Additional metrics if MariaDB is used.','0','30d','0','','30431','3s','','','','200','1','0','','0','0','0','0','0','0','0','bc28468760e14d069ef7b47858846a50');
INSERT INTO `items` (`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`,`uuid`) values ('33134','18','','10316','MySQL: Binlog commits','mysql.binlog_commits[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of transactions committed to the binary log.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','7743cdbaf71c491189ac1a927409e998');
INSERT INTO `items` (`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`,`uuid`) values ('33135','18','','10316','MySQL: Binlog group commits','mysql.binlog_group_commits[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of group commits done to the binary log.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','c897f8f0fb1c4e409dd95305fd221e01');
INSERT INTO `items` (`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`,`uuid`) values ('33136','18','','10316','MySQL: Master GTID wait count','mysql.master_gtid_wait_count[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times MASTER_GTID_WAIT called.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','749e72ebd1014f7faee352e23ac3dfdd');
INSERT INTO `items` (`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`,`uuid`) values ('33137','18','','10316','MySQL: Master GTID wait timeouts','mysql.master_gtid_wait_timeouts[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of timeouts occurring in MASTER_GTID_WAIT.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','4a4537b0db5b43119af910d0ba421035');
INSERT INTO `items` (`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`,`uuid`) values ('33138','18','','10316','MySQL: Master GTID wait time','mysql.master_gtid_wait_time[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of time spent in MASTER_GTID_WAIT.','0','30d','0','','30433','3s','','','','200','1','0','','0','0','0','0','0','0','0','c1e95abc88cf486a9226bf760254f797');
INSERT INTO `items` (`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`,`uuid`) values ('33139','18','','10316','MySQL: Replication Slave SQL Running State {#MASTER_HOST}','mysql.slave_sql_running_state["{#MASTER_HOST}"]','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This shows the state of the SQL driver threads.','0','30d','0','','30475','3s','','','','200','1','0','','0','0','0','0','0','0','0','27e807d840d4474484c2e1f896726b6b');
INSERT INTO `items` (`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`,`uuid`) values ('33141','18','','10320','MySQL: Innodb buffer pool wait free','mysql.innodb_buffer_pool_wait_free','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the InnoDB buffer pool happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at the increasing innodb_buffer_pool_size.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','3ab113998cec43da9bb702f5894d7b24');
INSERT INTO `items` (`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`,`uuid`) values ('33142','18','','10320','MySQL: Innodb number open files','mysql.innodb_num_open_files','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open files held by InnoDB. InnoDB only.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','2c1cba2399ab4b349e9751252c000b95');
INSERT INTO `items` (`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`,`uuid`) values ('33143','18','','10320','MySQL: Innodb log written','mysql.innodb_os_log_written','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes written to the InnoDB log.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','6a4c63c40fb042868d2f23c86a0601a5');
INSERT INTO `items` (`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`,`uuid`) values ('33144','18','','10320','MySQL: Open tables','mysql.open_tables','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of tables that are open.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','e766adca92fa47299b79e75d263437cc');
INSERT INTO `items` (`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`,`uuid`) values ('33145','18','','10320','MySQL: Open table definitions','mysql.open_table_definitions','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cached table definitions.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','26f839251a444e9abf83d4710718962a');
INSERT INTO `items` (`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`,`uuid`) values ('33146','18','','10320','MySQL: Binlog cache disk use','mysql.binlog_cache_disk_use','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of transactions that used a temporary disk cache because they could not fit in the regular binary log cache, being larger than binlog_cache_size.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','06338fe53a014be095f3807d58b9ed5b');
INSERT INTO `items` (`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`,`uuid`) values ('33147','18','','10320','MariaDB discovery','mysql.extra_metric.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Additional metrics if MariaDB is used.','0','30d','0','','30637','3s','','','','200','1','0','','0','0','0','0','0','0','0','15035186d4d54962bc6b82ebbaea8784');
INSERT INTO `items` (`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`,`uuid`) values ('33148','18','','10320','MySQL: Binlog commits','mysql.binlog_commits[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of transactions committed to the binary log.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','c7ff129277134d86923dfb10e6d67928');
INSERT INTO `items` (`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`,`uuid`) values ('33149','18','','10320','MySQL: Binlog group commits','mysql.binlog_group_commits[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of group commits done to the binary log.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','07b27817a20244d68f2609c43aea1dea');
INSERT INTO `items` (`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`,`uuid`) values ('33150','18','','10320','MySQL: Master GTID wait count','mysql.master_gtid_wait_count[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times MASTER_GTID_WAIT called.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','152c4219a8d14812a813a250c6f17071');
INSERT INTO `items` (`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`,`uuid`) values ('33151','18','','10320','MySQL: Master GTID wait timeouts','mysql.master_gtid_wait_timeouts[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of timeouts occurring in MASTER_GTID_WAIT.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','3f13ee12a3db4933804c103ebfb170c9');
INSERT INTO `items` (`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`,`uuid`) values ('33152','18','','10320','MySQL: Master GTID wait time','mysql.master_gtid_wait_time[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of time spent in MASTER_GTID_WAIT.','0','30d','0','','30639','3s','','','','200','1','0','','0','0','0','0','0','0','0','6ed43548a190425a83fce15b84b3ec87');
INSERT INTO `items` (`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`,`uuid`) values ('33153','18','','10320','MySQL: Replication Slave SQL Running State {#MASTER_HOST}','mysql.replication.slave_sql_running_state["{#MASTER_HOST}"]','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This shows the state of the SQL driver threads.','0','30d','0','','30681','3s','','','','200','1','0','','0','0','0','0','0','0','0','bb79eaa9fc0d45e7b323a34d0c3f03cf');
INSERT INTO `items` (`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`,`uuid`) values ('33155','18','','10317','MySQL: Innodb buffer pool wait free','mysql.innodb_buffer_pool_wait_free','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the InnoDB buffer pool happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at the increasing innodb_buffer_pool_size.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','4e829cbb3cc2485dac2757867badd0f4');
INSERT INTO `items` (`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`,`uuid`) values ('33156','18','','10317','MySQL: Innodb number open files','mysql.innodb_num_open_files','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open files held by InnoDB. InnoDB only.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','79218a1068394ce69dfc6eeb626e83bc');
INSERT INTO `items` (`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`,`uuid`) values ('33157','18','','10317','MySQL: Innodb log written','mysql.innodb_os_log_written','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes written to the InnoDB log.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','fc561c5392bb43a4842977bdf4b882a8');
INSERT INTO `items` (`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`,`uuid`) values ('33158','18','','10317','MySQL: Open tables','mysql.open_tables','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of tables that are open.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','85e17b6b196e4916838e0318992fe33c');
INSERT INTO `items` (`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`,`uuid`) values ('33159','18','','10317','MySQL: Open table definitions','mysql.open_table_definitions','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cached table definitions.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','c23ce7b2689745728465c5b405d7b3ba');
INSERT INTO `items` (`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`,`uuid`) values ('33160','18','','10317','MySQL: Binlog cache disk use','mysql.binlog_cache_disk_use','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of transactions that used a temporary disk cache because they could not fit in the regular binary log cache, being larger than binlog_cache_size.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','9db77e72fd9d404a8e1fd4e72c92d75c');
INSERT INTO `items` (`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`,`uuid`) values ('33161','18','','10317','MariaDB discovery','mysql.extra_metric.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Additional metrics if MariaDB is used.','0','30d','0','','30480','3s','','','','200','1','0','','0','0','0','0','0','0','0','ad12522557df499e9a78b8b3c07733dd');
INSERT INTO `items` (`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`,`uuid`) values ('33162','18','','10317','MySQL: Replication Slave SQL Running State {#MASTER_HOST}','mysql.slave_sql_running_state["{#MASTER_HOST}"]','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This shows the state of the SQL driver threads.','0','30d','0','','30523','3s','','','','200','1','0','','0','0','0','0','0','0','0','a88eb463bb9740a4a4256306f11816bf');
INSERT INTO `items` (`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`,`uuid`) values ('33163','18','','10317','MySQL: Binlog commits','mysql.binlog_commits[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of transactions committed to the binary log.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','eb8713584314461488b8769f1081d48d');
INSERT INTO `items` (`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`,`uuid`) values ('33164','18','','10317','MySQL: Binlog group commits','mysql.binlog_group_commits[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of group commits done to the binary log.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','cbb7c1fadd934420b47950f52751795f');
INSERT INTO `items` (`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`,`uuid`) values ('33165','18','','10317','MySQL: Master GTID wait count','mysql.master_gtid_wait_count[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times MASTER_GTID_WAIT called.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','278488a9c0f543f6815a24592766d9bb');
INSERT INTO `items` (`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`,`uuid`) values ('33166','18','','10317','MySQL: Master GTID wait timeouts','mysql.master_gtid_wait_timeouts[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of timeouts occurring in MASTER_GTID_WAIT.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','93ad282dc3b24dba9f0351b0d0a59d39');
INSERT INTO `items` (`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`,`uuid`) values ('33167','18','','10317','MySQL: Master GTID wait time','mysql.master_gtid_wait_time[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of time spent in MASTER_GTID_WAIT.','0','30d','0','','30479','3s','','','','200','1','0','','0','0','0','0','0','0','0','fd8bf7e639af4d3291030cdb9dd37bc9');
INSERT INTO `items` (`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`,`uuid`) values ('33168','18','','10335','Oracle TBS \'{#TABLESPACE}\': Tablespace used, bytes','oracle.tbs_used_bytes["{#TABLESPACE}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Currently used bytes for tablespace (current size of datafiles-free space).','0','30d','0','','31700','3s','','','','200','1','0','','0','0','0','0','0','0','0','ab56fee407e143db912dffcf24fb0106');
INSERT INTO `items` (`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`,`uuid`) values ('33169','18','','10335','Oracle TBS \'{#TABLESPACE}\': Tablespace usage, percent','oracle.tbs_used_file_pct["{#TABLESPACE}"]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Used bytes/Allocated bytes*100','0','30d','0','','31700','3s','','','','200','1','0','','0','0','0','0','0','0','0','358615a3e372462e9cec05df1df22743');
INSERT INTO `items` (`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`,`uuid`) values ('33170','18','','10328','Oracle TBS \'{#TABLESPACE}\': Tablespace used, bytes','oracle.tbs_used_bytes["{#TABLESPACE}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Currently used bytes for tablespace (current size of datafiles-free space).','0','30d','0','','31181','3s','','','','200','1','0','','0','0','0','0','0','0','0','b9cc0eabdcbc404fb0df2a2a082411f1');
INSERT INTO `items` (`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`,`uuid`) values ('33171','18','','10328','Oracle TBS \'{#TABLESPACE}\': Tablespace usage, percent','oracle.tbs_used_file_pct["{#TABLESPACE}"]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Used bytes/Allocated bytes*100','0','30d','0','','31181','3s','','','','200','1','0','','0','0','0','0','0','0','0','877961c286e448238f58cff9c51088c8');
INSERT INTO `items` (`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`,`uuid`) values ('33176','18','','10329','Checkpoint: Checkpoint sync time','pgsql.bgwriter.checkpoint_sync_time.rate','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of time that has been spent in the portion of checkpoint processing where files are synchronized to disk','0','30d','0','','31274','3s','','','','200','1','0','','0','0','0','0','0','0','0','b94507037a584b9391f610e59dd34e6c');
INSERT INTO `items` (`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`,`uuid`) values ('33178','18','','10329','Application {#APPLICATION_NAME}: Replication flush lag','pgsql.replication.process.flush_lag["{#APPLICATION_NAME}"]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33175','3s','','','','200','1','0','','0','0','0','0','0','0','0','15b83330044042668e618501160c37e4');
INSERT INTO `items` (`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`,`uuid`) values ('33179','18','','10329','Application {#APPLICATION_NAME}: Replication replay lag','pgsql.replication.process.replay_lag["{#APPLICATION_NAME}"]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33175','3s','','','','200','1','0','','0','0','0','0','0','0','0','0daf6e3c7843488cb3160a2bd6b09fbf');
INSERT INTO `items` (`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`,`uuid`) values ('33180','18','','10329','Application {#APPLICATION_NAME}: Replication write lag','pgsql.replication.process.write_lag["{#APPLICATION_NAME}"]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33175','3s','','','','200','1','0','','0','0','0','0','0','0','0','2d96bc517d3a4c3fbcae8a7f1436bf72');
INSERT INTO `items` (`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`,`uuid`) values ('33182','18','','10254','Voltage discovery','voltage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'ENTITY-SENSORS-MIB::EntitySensorDataType discovery with volts filter','0','30d','2','','33181','3s','','','','200','1','0','','0','0','0','0','0','0','0','3002dbe2caa042dcb2beb058b25500f8');
INSERT INTO `items` (`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`,`uuid`) values ('33205','18','','10371','Battery voltage discovery','battery.voltage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for battery voltage triggers','0','30d','0','','33201','3s','','','','200','1','0','','0','0','0','0','0','0','0','1a21c30663c74c23b60e6ad72e228681');
INSERT INTO `items` (`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`,`uuid`) values ('33225','18','','10372','Battery voltage discovery','battery.voltage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for battery voltage triggers','0','30d','0','','33216','3s','','','','200','1','0','','0','0','0','0','0','0','0','17148797def9484ba26b0afdcc44bfd5');
INSERT INTO `items` (`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`,`uuid`) values ('33248','18','','10373','Battery voltage discovery','battery.voltage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for battery voltage triggers','0','30d','0','','33244','3s','','','','200','1','0','','0','0','0','0','0','0','0','81b324d81e6549d59cbf14163181fb48');
INSERT INTO `items` (`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`,`uuid`) values ('33257','18','','10374','Battery voltage discovery','battery.voltage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for battery voltage triggers','0','30d','0','','33250','3s','','','','200','1','0','','0','0','0','0','0','0','0','c43e02a5d94343e2b54cba50b3388826');
INSERT INTO `items` (`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`,`uuid`) values ('33276','18','','10375','Battery voltage discovery','battery.voltage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for battery voltage triggers','0','30d','0','','33271','3s','','','','200','1','0','','0','0','0','0','0','0','0','7ba9493b38174751b448419b0b03312e');
INSERT INTO `items` (`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`,`uuid`) values ('33295','18','','10376','Battery voltage discovery','battery.voltage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for battery voltage triggers','0','30d','0','','33290','3s','','','','200','1','0','','0','0','0','0','0','0','0','5c8910a7991240a9b586d0d87ef00d5d');
INSERT INTO `items` (`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`,`uuid`) values ('33306','18','','10377','Battery voltage discovery','battery.voltage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for battery voltage triggers','0','30d','0','','33297','3s','','','','200','1','0','','0','0','0','0','0','0','0','0e06c296579f4b6aa40d69ebb62742b4');
INSERT INTO `items` (`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`,`uuid`) values ('33307','18','','10377','Charge mode discovery','controlmode.charge.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for device in charge mode','0','1h','0','','33298','3s','','','','200','1','0','','0','0','0','0','0','0','0','58a500192e61490f97f33d5b5f6e972f');
INSERT INTO `items` (`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`,`uuid`) values ('33308','18','','10377','Charge + Diversion mode discovery','controlmode.charge_diversion.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for device in charge and diversion modes','0','1h','0','','33298','3s','','','','200','1','0','','0','0','0','0','0','0','0','02fbfa1dd59a4b9c87bb81da81312f54');
INSERT INTO `items` (`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`,`uuid`) values ('33309','18','','10377','Diversion mode discovery','controlmode.diversion.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for device in diversion mode','0','1h','0','','33298','3s','','','','200','1','0','','0','0','0','0','0','0','0','8c345c0134fe4d90af83292e557d7309');
INSERT INTO `items` (`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`,`uuid`) values ('33310','18','','10377','Load mode discovery','controlmode.load.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for device in load mode','0','1h','0','','33298','3s','','','','200','1','0','','0','0','0','0','0','0','0','54bfd7f730e64af89f937e9b1b6e4d79');
INSERT INTO `items` (`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`,`uuid`) values ('33311','18','','10377','Load + Diversion mode discovery','controlmode.load_diversion.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for device in load and diversion modes','0','1h','0','','33298','3s','','','','200','1','0','','0','0','0','0','0','0','0','2e2e01f5c1db4224a97162382c77832c');
INSERT INTO `items` (`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`,`uuid`) values ('33389','18','','10336','Asterisk: PJSIP available endpoints','asterisk.pjsip.available','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of available PJSIP peers.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','cc07f186104842aabec3d26dcd4322d2');
INSERT INTO `items` (`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`,`uuid`) values ('33390','18','','10336','Asterisk: IAX online peers','asterisk.iax.online','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of online IAX peers.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','bf741f5560734530be352341071c5984');
INSERT INTO `items` (`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`,`uuid`) values ('33396','18','','10379','Jenkins: Job waiting, m1 rate','jenkins.job.waiting.m1.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs enter the quiet period.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','2d21f74757374b769ae8e76d4d7afa79');
INSERT INTO `items` (`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`,`uuid`) values ('33397','18','','10379','Jenkins: Nodes online','jenkins.node.online','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of build nodes available to Jenkins and currently on-line.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','758ead9ea71646be882b9bff280ce4d6');
INSERT INTO `items` (`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`,`uuid`) values ('33398','18','','10379','Jenkins: Nodes offline','jenkins.node.offline','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of build nodes available to Jenkins but currently off-line.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','440bdc39d2444b9e83cc863e34f3b416');
INSERT INTO `items` (`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`,`uuid`) values ('33399','18','','10379','Jenkins: Nodes count','jenkins.node.count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of build nodes available to Jenkins, both on-line and off-line.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','930fa76b32484155ae3ec8964e3952a1');
INSERT INTO `items` (`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`,`uuid`) values ('33400','18','','10379','Jenkins: Job waiting, m5 rate','jenkins.job.waiting.m5.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs enter the quiet period.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','9e16580148964e9aae3a660b18721bee');
INSERT INTO `items` (`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`,`uuid`) values ('33401','18','','10379','Jenkins: Job waiting duration, median','jenkins.job.waiting.duration.p50','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The total amount of time that jobs spend in their quiet period.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','dd7a1e8142f94ef099f6aa0ed1facce3');
INSERT INTO `items` (`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`,`uuid`) values ('33402','18','','10379','Jenkins: Job waiting duration, p95','jenkins.job.waiting.duration.p95','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The total amount of time that jobs spend in their quiet period.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','bb339169024b4461a39261f3fe36de4f');
INSERT INTO `items` (`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`,`uuid`) values ('33403','18','','10379','Jenkins: Plugins active','jenkins.plugins.active','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of plugins in the Jenkins instance that started successfully.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','e3fae3ddf1fa47db9925106098bc31eb');
INSERT INTO `items` (`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`,`uuid`) values ('33404','18','','10379','Jenkins: Job total, m5 rate','jenkins.job.total.m5.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs are queued.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','58067833af494a66b4a44bc25ac17a0e');
INSERT INTO `items` (`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`,`uuid`) values ('33405','18','','10379','Jenkins: Job total, m1 rate','jenkins.job.total.m1.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs are queued.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','19c5a45a673c4af2be5808faf35a3892');
INSERT INTO `items` (`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`,`uuid`) values ('33406','18','','10379','Jenkins: Job total duration, p95','jenkins.job.total.duration.p95','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The total time which jobs spend from entering the build queue to completing building.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','dbc0aeedccb740b4a7c1b5f84eb2513b');
INSERT INTO `items` (`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`,`uuid`) values ('33407','18','','10379','Jenkins: Job total duration, median','jenkins.job.total.duration.p50','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The total time which jobs spend from entering the build queue to completing building.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','975124750e3e4c969711185ea58bcb49');
INSERT INTO `items` (`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`,`uuid`) values ('33408','18','','10379','Jenkins: Jobs scheduled, m5 rate','jenkins.job.scheduled.m5.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs are scheduled. If a job is already in the queue and an identical request for scheduling the job is received then Jenkins will coalesce the two requests. This metric gives a reasonably pure measure of the load requirements of the Jenkins master as it is unaffected by the number of executors available to the system.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','bc2de2ce8e9d474d8e2591d76adecabe');
INSERT INTO `items` (`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`,`uuid`) values ('33409','18','','10379','Jenkins: Plugins check','jenkins.plugins','0','7d','365d','0','3','','','','',NULL,'214','','','0','','','','','0',NULL,'Returns FAIL if any of the Jenkins plugins failed to start.','0','30d','0','','33395','3s','','','','200','1','0','','0','0','0','0','0','0','0','81609d18d2004fe28f9cb096cdb03995');
INSERT INTO `items` (`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`,`uuid`) values ('33410','18','','10379','Jenkins: Plugins inactive','jenkins.plugins.inactive','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of plugins in the Jenkins instance that are not currently enabled.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','0b2ad285bc2b4ef5a01633d57099434c');
INSERT INTO `items` (`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`,`uuid`) values ('33411','18','','10379','Jenkins: Plugins failed','jenkins.plugins.failed','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of plugins in the Jenkins instance that failed to start. A value other than 0 is typically indicative of a potential issue within the Jenkins installation that will either be solved by explicitly disabling the plugin(s) or by resolving the plugin dependency issues.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','e8a9f7bd98004939b75749c29227859c');
INSERT INTO `items` (`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`,`uuid`) values ('33412','18','','10379','Jenkins: Build queue, stuck','jenkins.queue.stuck','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of jobs that are in the Jenkins build queue and currently in the blocked state.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','90387bb3b3384adcafa66b4c9543d1ab');
INSERT INTO `items` (`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`,`uuid`) values ('33413','18','','10379','Jenkins: Thread deadlock check message','jenkins.thread_deadlock.message','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The message of thread deadlock health check.','0','30d','0','','33395','3s','','','','200','1','0','','0','0','0','0','0','0','0','64f62df61b6b4f4c9963e09b827850e1');
INSERT INTO `items` (`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`,`uuid`) values ('33414','18','','10379','Jenkins: Thread deadlock check','jenkins.thread_deadlock','0','7d','365d','0','3','','','','',NULL,'214','','','0','','','','','0',NULL,'Returns FAIL if there are any deadlocked threads in the Jenkins master JVM.','0','30d','0','','33395','3s','','','','200','1','0','','0','0','0','0','0','0','0','39f474c3c6f841af9b14113df04bf078');
INSERT INTO `items` (`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`,`uuid`) values ('33415','18','','10379','Jenkins: Temporary space check message','jenkins.temporary_space.message','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The message will reference the first node which fails this check. There may be other nodes that fail the check, but this health check is designed to fail fast.','0','30d','0','','33395','3s','','','','200','1','0','','0','0','0','0','0','0','0','d884c3a9662e48eeaf6c9ba50641a2cb');
INSERT INTO `items` (`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`,`uuid`) values ('33416','18','','10379','Jenkins: Temporary space check','jenkins.temporary_space','0','7d','365d','0','3','','','','',NULL,'214','','','0','','','','','0',NULL,'Returns FAIL if any of the Jenkins temporary space monitors are reporting the temporary space as less than the configured threshold.','0','30d','0','','33395','3s','','','','200','1','0','','0','0','0','0','0','0','0','ea80ab8045a44f96a5cb2736c009258f');
INSERT INTO `items` (`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`,`uuid`) values ('33417','18','','10379','Jenkins: Uptime','jenkins.system.uptime','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of seconds since the Jenkins master JVM started.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','ca81bc28fbc14dbc9eb7b0fa6a46a65d');
INSERT INTO `items` (`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`,`uuid`) values ('33418','18','','10379','Jenkins: CPU Load','jenkins.system.cpu.load','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The system load on the Jenkins master as reported by the JVM\'s Operating System JMX bean. The calculation of system load is operating system dependent. Typically this is the sum of the number of processes that are currently running plus the number that are waiting to run. This is typically comparable against the number of CPU cores.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','9c97e12efa624176b95aef3413aec1a8');
INSERT INTO `items` (`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`,`uuid`) values ('33419','18','','10379','Jenkins: Build queue, size','jenkins.queue.size','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of jobs that are in the Jenkins build queue.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','f99d731f466445dcb3aeda3f306a5de6');
INSERT INTO `items` (`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`,`uuid`) values ('33420','18','','10379','Jenkins: Job queuing, m5 rate','jenkins.job.queuing.m5.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs are queued.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','10c80e91b2214ab2b43458a1d65c3a18');
INSERT INTO `items` (`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`,`uuid`) values ('33421','18','','10379','Jenkins: Build queue, pending','jenkins.queue.pending','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of jobs that are in the Jenkins build queue and currently in the blocked state.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','456ddd17c4044d578a11d8cac80d229b');
INSERT INTO `items` (`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`,`uuid`) values ('33422','18','','10379','Jenkins: Build queue, buildable','jenkins.queue.buildable','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of jobs that are in the Jenkins build queue and currently in the blocked state.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','1160d4150fa840b5a4628eeb6e8cdaab');
INSERT INTO `items` (`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`,`uuid`) values ('33423','18','','10379','Jenkins: Build queue, blocked','jenkins.queue.blocked','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of jobs that are in the Jenkins build queue and currently in the blocked state.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','db758cf660c14d69b37f724545de7662');
INSERT INTO `items` (`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`,`uuid`) values ('33424','18','','10379','Jenkins: Projects count','jenkins.project.count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of projects.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','a5b58789e54b43f896d4d7e64f8415d3');
INSERT INTO `items` (`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`,`uuid`) values ('33425','18','','10379','Jenkins: Plugins with update','jenkins.plugins.with_update','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of plugins in the Jenkins instance that have an newer version reported as available in the current Jenkins update center metadata held by Jenkins. This value is not indicative of an issue with Jenkins but high values can be used as a trigger to review the plugins with updates with a view to seeing whether those updates potentially contain fixes for issues that could be affecting your Jenkins instance.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','f1bf69d134a848178b21a050c830aa8a');
INSERT INTO `items` (`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`,`uuid`) values ('33426','18','','10379','Jenkins: Plugins check message','jenkins.plugins.message','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The message of plugins health check.','0','30d','0','','33395','3s','','','','200','1','0','','0','0','0','0','0','0','0','d678faf0377a4024a930adcdb1c2db2f');
INSERT INTO `items` (`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`,`uuid`) values ('33427','18','','10379','Jenkins: Job scheduled, m1 rate','jenkins.job.scheduled.m1.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs are scheduled. If a job is already in the queue and an identical request for scheduling the job is received then Jenkins will coalesce the two requests. This metric gives a reasonably pure measure of the load requirements of the Jenkins master as it is unaffected by the number of executors available to the system.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','ff842a648bcc4aaa89f2200e0d4bb661');
INSERT INTO `items` (`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`,`uuid`) values ('33428','18','','10379','Jenkins: Job queuing duration, p95','jenkins.job.queuing.duration.p95','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The total time which jobs spend in the build queue.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','f797a4698f1b41f885a8cdd3d98924e2');
INSERT INTO `items` (`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`,`uuid`) values ('33429','18','','10379','Jenkins: Job queuing, m1 rate','jenkins.job.queuing.m1.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs are queued.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','d9f785e6f2e148ee98d922524f014037');
INSERT INTO `items` (`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`,`uuid`) values ('33430','18','','10379','Jenkins: HTTP response 201, rate','jenkins.http.created.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which the Jenkins master Web UI is responding to requests with a HTTP/201 status code.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','b3d77a909487431bab2b0b7f7c89bf90');
INSERT INTO `items` (`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`,`uuid`) values ('33431','18','','10379','Jenkins: HTTP response other, rate','jenkins.http.other.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which the Jenkins master Web UI is responding to requests with a non-informational status code that is not in the list: HTTP/200, HTTP/201, HTTP/204, HTTP/304, HTTP/400, HTTP/403, HTTP/404, HTTP/500, or HTTP/503.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','afdab05416084124887bcec705f2603d');
INSERT INTO `items` (`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`,`uuid`) values ('33432','18','','10379','Jenkins: HTTP response 200, rate','jenkins.http.ok.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which the Jenkins master Web UI is responding to requests with a HTTP/200 status code.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','c4c1dfcf2d904985a0ca6956724adf41');
INSERT INTO `items` (`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`,`uuid`) values ('33433','18','','10379','Jenkins: HTTP response 204, rate','jenkins.http.no_content.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which the Jenkins master Web UI is responding to requests with a HTTP/204 status code.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','2a79c1139b44402fa8f31d6b61a0d739');
INSERT INTO `items` (`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`,`uuid`) values ('33434','18','','10379','Jenkins: HTTP response 304, rate','jenkins.http.not_modified.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which the Jenkins master Web UI is responding to requests with a HTTP/304 status code.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','1a9a6b663aaa48bbacfc56c1569521c0');
INSERT INTO `items` (`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`,`uuid`) values ('33435','18','','10379','Jenkins: HTTP response 404, rate','jenkins.http.not_found.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which the Jenkins master Web UI is responding to requests with a HTTP/404 status code.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','22b8fc85f441484cad8b2641748d75a1');
INSERT INTO `items` (`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`,`uuid`) values ('33436','18','','10379','Jenkins: HTTP response 403, rate','jenkins.http.forbidden.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which the Jenkins master Web UI is responding to requests with a HTTP/403 status code.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','3265515d32f840e9ade25c0d2892b372');
INSERT INTO `items` (`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`,`uuid`) values ('33437','18','','10379','Jenkins: HTTP response 400, rate','jenkins.http.bad_request.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which the Jenkins master Web UI is responding to requests with a HTTP/400 status code.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','d95c9a1b19ed4da38bec3217eee2e590');
INSERT INTO `items` (`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`,`uuid`) values ('33438','18','','10379','Jenkins: HTTP requests, median','jenkins.http.requests_p50.rate','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The time spent generating the corresponding responses.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','9a4ad856db02403b8b523179bf4b3699');
INSERT INTO `items` (`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`,`uuid`) values ('33439','18','','10379','Jenkins: HTTP active requests, rate','jenkins.http.active_requests.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of currently active requests against the Jenkins master Web UI.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','d9677f596dae43e4984838061fe19d45');
INSERT INTO `items` (`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`,`uuid`) values ('33440','18','','10379','Jenkins: Executors in use','jenkins.executor.in_use','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of executors available to Jenkins that are currently in use.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','197470fead89470f94a910e9405498fe');
INSERT INTO `items` (`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`,`uuid`) values ('33441','18','','10379','Jenkins: Executors free','jenkins.executor.free','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of executors available to Jenkins that are not currently in use.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','7b672586e5194370a0c141570174d21a');
INSERT INTO `items` (`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`,`uuid`) values ('33442','18','','10379','Jenkins: Executors count','jenkins.executor.count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of executors available to Jenkins. This is corresponds to the sum of all the executors of all the on-line nodes.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','26902068daf94cf3a5aec360be9abc18');
INSERT INTO `items` (`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`,`uuid`) values ('33443','18','','10379','Jenkins: Disk space check message','jenkins.disk_space.message','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The message will reference the first node which fails this check. There may be other nodes that fail the check, but this health check is designed to fail fast.','0','30d','0','','33395','3s','','','','200','1','0','','0','0','0','0','0','0','0','8095797fe6ef478db4a8acb60e1dcc54');
INSERT INTO `items` (`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`,`uuid`) values ('33444','18','','10379','Jenkins: Disk space check','jenkins.disk_space','0','7d','365d','0','3','','','','',NULL,'214','','','0','','','','','0',NULL,'Returns FAIL if any of the Jenkins disk space monitors are reporting the disk space as less than the configured threshold.','0','30d','0','','33395','3s','','','','200','1','0','','0','0','0','0','0','0','0','0b3cf1992122407795eef5ab9474101d');
INSERT INTO `items` (`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`,`uuid`) values ('33445','18','','10379','Jenkins: HTTP requests, rate','jenkins.http.requests.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which the Jenkins master Web UI is receiving requests.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','5169a969034b4da29eaab59c7c3aa719');
INSERT INTO `items` (`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`,`uuid`) values ('33446','18','','10379','Jenkins: HTTP requests, p95','jenkins.http.requests_p95.rate','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The time spent generating the corresponding responses.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','6766b45e349e4a4d88593207df6b35ba');
INSERT INTO `items` (`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`,`uuid`) values ('33447','18','','10379','Jenkins: File descriptor ratio','jenkins.descriptor.ratio','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of used to total file descriptors','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','790aedce97be4e7dae6f4de8238340a7');
INSERT INTO `items` (`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`,`uuid`) values ('33448','18','','10379','Jenkins: Job buildable, m5 rate','jenkins.job.buildable.m5.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs in the build queue enter the buildable state.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','0e1d712b9a854922b28e3ddf871bf7b1');
INSERT INTO `items` (`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`,`uuid`) values ('33449','18','','10379','Jenkins: Job queuing duration, median','jenkins.job.queuing.duration.p50','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The total time which jobs spend in the build queue.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','af40fcdb50c545bd9b49a6f4b7a26fea');
INSERT INTO `items` (`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`,`uuid`) values ('33450','18','','10379','Jenkins: Jobs count','jenkins.job.count.value','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of jobs in Jenkins.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','39bc5fdfbe884c72816d34045438ea7d');
INSERT INTO `items` (`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`,`uuid`) values ('33451','18','','10379','Jenkins: Job building, m5 rate','jenkins.job.building.m5.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs are built.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','36f551fd55814000b76b5b63c05051d7');
INSERT INTO `items` (`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`,`uuid`) values ('33452','18','','10379','Jenkins: Job building, m1 rate','jenkins.job.building.m1.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs are built.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','08ebe2359c4f4134aaf610b50bcba8fe');
INSERT INTO `items` (`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`,`uuid`) values ('33453','18','','10379','Jenkins: Job building duration, p95','jenkins.job.building.duration.p95','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time which jobs spend building.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','61fb13ee0d0f4e1bb5fdab1ea35371ef');
INSERT INTO `items` (`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`,`uuid`) values ('33454','18','','10379','Jenkins: Job building duration, median','jenkins.job.building.duration.p50','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time which jobs spend building.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','c0c0335fd8654cfaa9534c816fbee967');
INSERT INTO `items` (`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`,`uuid`) values ('33455','18','','10379','Jenkins: Job buildable, m1 rate','jenkins.job.buildable.m1.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs in the build queue enter the buildable state.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','1d8e643a0ddc44aa951ee516372e587b');
INSERT INTO `items` (`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`,`uuid`) values ('33456','18','','10379','Jenkins: HTTP response 500, rate','jenkins.http.server_error.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which the Jenkins master Web UI is responding to requests with a HTTP/500 status code.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','320cc4d7fafc4c87ab8d92bd76901982');
INSERT INTO `items` (`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`,`uuid`) values ('33457','18','','10379','Jenkins: Job buildable duration, p95','jenkins.job.buildable.duration.p95','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time which jobs spend in the buildable state.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','9047881efcb84822b7da852f4c66dbff');
INSERT INTO `items` (`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`,`uuid`) values ('33458','18','','10379','Jenkins: Job buildable duration, median','jenkins.job.buildable.duration.p50','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time which jobs spend in the buildable state.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','3c2ba170a89040089b226871512e237b');
INSERT INTO `items` (`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`,`uuid`) values ('33459','18','','10379','Jenkins: Job blocked, m5 rate','jenkins.job.blocked.m5.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs in the build queue enter the blocked state.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','d0a242007b424a0e80dbfb90577eaab2');
INSERT INTO `items` (`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`,`uuid`) values ('33460','18','','10379','Jenkins: Job blocked, m1 rate','jenkins.job.blocked.m1.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs in the build queue enter the blocked state.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','ca4e141c83344aeeb32d9ea2d9017cbf');
INSERT INTO `items` (`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`,`uuid`) values ('33461','18','','10379','Jenkins: Job blocked duration, p95','jenkins.job.blocked.duration.p95','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time which jobs spend in the blocked state.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','859a7845f3d8483ba3378f7077509784');
INSERT INTO `items` (`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`,`uuid`) values ('33462','18','','10379','Jenkins: Job blocked duration, median','jenkins.job.blocked.duration.p50','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time which jobs spend in the blocked state.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','ecca8e2341c14ede9e397ddc39df5592');
INSERT INTO `items` (`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`,`uuid`) values ('33463','18','','10379','Jenkins: HTTP response 503, rate','jenkins.http.service_unavailable.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which the Jenkins master Web UI is responding to requests with a HTTP/503 status code.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','d4ad6574138443a18e721f3d518d5e61');
INSERT INTO `items` (`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`,`uuid`) values ('33464','18','','10379','Jenkins: Version','jenkins.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of Jenkins server.','0','30d','0','','33394','3s','','','','200','1','0','','0','0','0','0','0','0','0','ae836e5439cf494a9ed0681836da854e');
INSERT INTO `items` (`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`,`uuid`) values ('33467','18','','10379','Jenkins: Computer [{#DISPLAY_NAME}]: Available physical memory','jenkins.computer.available_physical_memory[{#DISPLAY_NAME}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total physical memory of the system, available bytes.','0','30d','0','','33391','3s','','','','200','1','0','','0','0','0','0','0','0','0','fe0191db274944699107010f7f7c8091');
INSERT INTO `items` (`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`,`uuid`) values ('33468','18','','10379','Jenkins: Computer [{#DISPLAY_NAME}]: Available swap space','jenkins.computer.available_swap_space[{#DISPLAY_NAME}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Available swap space in bytes.','0','30d','0','','33391','3s','','','','200','1','0','','0','0','0','0','0','0','0','4d00cdff0ed0442ab419754264d78ec9');
INSERT INTO `items` (`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`,`uuid`) values ('33469','18','','10379','Jenkins: Computer [{#DISPLAY_NAME}]: Clock difference','jenkins.computer.clock_difference[{#DISPLAY_NAME}]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The clock difference between the master and nodes.','0','30d','0','','33391','3s','','','','200','1','0','','0','0','0','0','0','0','0','ff5a78519c834902ae607832b67f2558');
INSERT INTO `items` (`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`,`uuid`) values ('33470','18','','10379','Jenkins: Computer [{#DISPLAY_NAME}]: Available disk space','jenkins.computer.disk_space[{#DISPLAY_NAME}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The available disk space of $JENKINS_HOME on agent.','0','30d','0','','33391','3s','','','','200','1','0','','0','0','0','0','0','0','0','4dcf897c9c2c4ce58483ef6de6786000');
INSERT INTO `items` (`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`,`uuid`) values ('33471','18','','10379','Jenkins: Computer [{#DISPLAY_NAME}]: Idle','jenkins.computer.idle[{#DISPLAY_NAME}]','0','7d','365d','0','3','','','','',NULL,'213','','','0','','','','','2',NULL,'Returns true if all the executors of this computer are idle.','0','30d','0','','33391','3s','','','','200','1','0','','0','0','0','0','0','0','0','1bca0941b2d24de5980eeb5cb3516b2c');
INSERT INTO `items` (`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`,`uuid`) values ('33472','18','','10379','Jenkins: Computer [{#DISPLAY_NAME}]: Executors','jenkins.computer.numExecutors[{#DISPLAY_NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The maximum number of concurrent builds that Jenkins may perform on this node.','0','30d','0','','33391','3s','','','','200','1','0','','0','0','0','0','0','0','0','38a5eb0b4fb44b93b9f764edcd3f6c49');
INSERT INTO `items` (`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`,`uuid`) values ('33473','18','','10379','Jenkins: Computer [{#DISPLAY_NAME}]: Offline cause reason','jenkins.computer.offline.reason[{#DISPLAY_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'If the computer was offline (either temporarily or not), will return the cause as a string (without user info). Empty string if the system was put offline without given a cause.','0','30d','0','','33391','3s','','','','200','1','0','','0','0','0','0','0','0','0','8ddcfbf9b9d84fb290e9f30db7406ea1');
INSERT INTO `items` (`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`,`uuid`) values ('33474','18','','10379','Jenkins: Computer [{#DISPLAY_NAME}]: Response time average','jenkins.computer.response_time[{#DISPLAY_NAME}]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The round trip network response time from the master to the agent','0','30d','0','','33391','3s','','','','200','1','0','','0','0','0','0','0','0','0','a2068445af644089be8501da5b02144a');
INSERT INTO `items` (`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`,`uuid`) values ('33475','18','','10379','Jenkins: Computer [{#DISPLAY_NAME}]: State','jenkins.computer.state[{#DISPLAY_NAME}]','0','7d','365d','0','3','','','','',NULL,'212','','','0','','','','','2',NULL,'Represents the actual online/offline state.\r\nNode description: {#DESCRIPTION}','0','30d','0','','33391','3s','','','','200','1','0','','0','0','0','0','0','0','0','b8af2fb1f6d646978739b9c44ea85a27');
INSERT INTO `items` (`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`,`uuid`) values ('33476','18','','10379','Jenkins: Computer [{#DISPLAY_NAME}]: Temporarily offline','jenkins.computer.temp_offline[{#DISPLAY_NAME}]','0','7d','365d','0','3','','','','',NULL,'213','','','0','','','','','2',NULL,'Returns true if this node is marked temporarily offline.','0','30d','0','','33391','3s','','','','200','1','0','','0','0','0','0','0','0','0','f1318d38fa5a469a999265896e4546dd');
INSERT INTO `items` (`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`,`uuid`) values ('33477','18','','10379','Jenkins: Computer [{#DISPLAY_NAME}]: Available temp space','jenkins.computer.temp_space[{#DISPLAY_NAME}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The available disk space of the temporary directory. Java tools and tests/builds often create files in the temporary directory, and may not function properly if there\'s no available space.','0','30d','0','','33391','3s','','','','200','1','0','','0','0','0','0','0','0','0','5704446ab4f34eb2bc33b8ed6d8da691');
INSERT INTO `items` (`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`,`uuid`) values ('33478','18','','10379','Jenkins: Computer [{#DISPLAY_NAME}]: Total physical memory','jenkins.computer.total_physical_memory[{#DISPLAY_NAME}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total physical memory of the system, in bytes.','0','30d','0','','33391','3s','','','','200','1','0','','0','0','0','0','0','0','0','5c3dc14eb6264153a0cd7ddd8effb869');
INSERT INTO `items` (`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`,`uuid`) values ('33479','18','','10379','Jenkins: Computer [{#DISPLAY_NAME}]: Total swap space','jenkins.computer.total_swap_space[{#DISPLAY_NAME}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of swap space in bytes.','0','30d','0','','33391','3s','','','','200','1','0','','0','0','0','0','0','0','0','c18b82a205d345fa9c1b92e59521735a');
INSERT INTO `items` (`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`,`uuid`) values ('33480','18','','10379','Jenkins job [{#NAME}]: Health score','jenkins.build.health[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Represents health of project. A number between 0-100.\r\nJob Description: {#DESCRIPTION}\r\nJob Url: {#URL}','0','30d','0','','33393','3s','','','','200','1','0','','0','0','0','0','0','0','0','b2a99bad873046cda1d5b839aa43ba91');
INSERT INTO `items` (`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`,`uuid`) values ('33481','18','','10379','Jenkins job [{#NAME}]: Last Build duration','jenkins.last_build.duration[{#NAME}]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Build duration (in seconds).','0','30d','0','','33393','3s','','','','200','1','0','','0','0','0','0','0','0','0','a0fa8864c536408895f13758eacb486f');
INSERT INTO `items` (`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`,`uuid`) values ('33482','18','','10379','Jenkins job [{#NAME}]: Last Build number','jenkins.last_build.number[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Details: {#URL}/lastBuild/','0','30d','0','','33393','3s','','','','200','1','0','','0','0','0','0','0','0','0','338020d76f8e4b28b1e1c02f97b889f4');
INSERT INTO `items` (`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`,`uuid`) values ('33483','18','','10379','Jenkins job [{#NAME}]: Last Build result','jenkins.last_build.result[{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33393','3s','','','','200','1','0','','0','0','0','0','0','0','0','a3a70807138548a29e9212f48f07946d');
INSERT INTO `items` (`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`,`uuid`) values ('33484','18','','10379','Jenkins job [{#NAME}]: Last Build timestamp','jenkins.last_build.timestamp[{#NAME}]','0','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33393','3s','','','','200','1','0','','0','0','0','0','0','0','0','d53a3f165052440098d087d4f2b868b6');
INSERT INTO `items` (`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`,`uuid`) values ('33485','18','','10379','Jenkins job [{#NAME}]: Last Failed Build duration','jenkins.last_failed_build.duration[{#NAME}]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Build duration (in seconds).','0','30d','0','','33393','3s','','','','200','1','0','','0','0','0','0','0','0','0','907e48fadc6e4a04a076ca9368f73395');
INSERT INTO `items` (`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`,`uuid`) values ('33486','18','','10379','Jenkins job [{#NAME}]: Last Failed Build number','jenkins.last_failed_build.number[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Details: {#URL}/lastFailedBuild/','0','30d','0','','33393','3s','','','','200','1','0','','0','0','0','0','0','0','0','2e4afc599bf54ea29b1b8734f5aea121');
INSERT INTO `items` (`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`,`uuid`) values ('33487','18','','10379','Jenkins job [{#NAME}]: Last Failed Build timestamp','jenkins.last_failed_build.timestamp[{#NAME}]','0','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33393','3s','','','','200','1','0','','0','0','0','0','0','0','0','e1885df4d7a440c0805207f0afb28cb5');
INSERT INTO `items` (`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`,`uuid`) values ('33488','18','','10379','Jenkins job [{#NAME}]: Last Successful Build duration','jenkins.last_successful_build.duration[{#NAME}]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Build duration (in seconds).','0','30d','0','','33393','3s','','','','200','1','0','','0','0','0','0','0','0','0','d750d312fa424215931375963100217d');
INSERT INTO `items` (`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`,`uuid`) values ('33489','18','','10379','Jenkins job [{#NAME}]: Last Successful Build number','jenkins.last_successful_build.number[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Details: {#URL}/lastSuccessfulBuild/','0','30d','0','','33393','3s','','','','200','1','0','','0','0','0','0','0','0','0','701c272b59c046e4948a7dc814374d59');
INSERT INTO `items` (`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`,`uuid`) values ('33490','18','','10379','Jenkins job [{#NAME}]: Last Successful Build timestamp','jenkins.last_successful_build.timestamp[{#NAME}]','0','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33393','3s','','','','200','1','0','','0','0','0','0','0','0','0','1adbf52ee3f946118f8a37cf2487262d');
INSERT INTO `items` (`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`,`uuid`) values ('33494','18','','10380','Hikvision camera: Boot loader released date','hikvision_cam.boot_released_date','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','33493','3s','','','','200','1','0','','0','0','0','0','0','0','0','e889b3a7e6044f0284081f9d6427b416');
INSERT INTO `items` (`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`,`uuid`) values ('33495','18','','10380','Hikvision camera: Telecontrol ID','hikvision_cam.telecontrol_id','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','33493','3s','','','','200','1','0','','0','0','0','0','0','0','0','8678cee9999b45f1975f9639c8c197af');
INSERT INTO `items` (`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`,`uuid`) values ('33496','18','','10380','Hikvision camera: System contact','hikvision_cam.system_contact','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','23','30d','0','','33493','3s','','','','200','1','0','','0','0','0','0','0','0','0','d29814c630f94d5cabdc350d8b161b5b');
INSERT INTO `items` (`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`,`uuid`) values ('33497','18','','10380','Hikvision camera: Supported video loss','hikvision_cam.support_video_loss','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','33493','3s','','','','200','1','0','','0','0','0','0','0','0','0','03d220eb782346269de6b0867ed3acd3');
INSERT INTO `items` (`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`,`uuid`) values ('33498','18','','10380','Hikvision camera: Supported beep','hikvision_cam.support_beep','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','33493','3s','','','','200','1','0','','0','0','0','0','0','0','0','72ffbe3d976b437ab5df06b32a5c4b12');
INSERT INTO `items` (`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`,`uuid`) values ('33499','18','','10380','Hikvision camera: Serial number','hikvision_cam.serial_number','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','8','30d','0','','33493','3s','','','','200','1','0','','0','0','0','0','0','0','0','b6715593c52a4255ae6a4f68c3de6b6d');
INSERT INTO `items` (`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`,`uuid`) values ('33500','18','','10380','Hikvision camera: Model','hikvision_cam.model','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','','33493','3s','','','','200','1','0','','0','0','0','0','0','0','0','b295689d34934401b0eda407edaee426');
INSERT INTO `items` (`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`,`uuid`) values ('33501','18','','10380','Hikvision camera: Memory utilization','hikvision_cam.memory.usage','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory utilization in %','0','30d','0','','33492','3s','','','','200','1','0','','0','0','0','0','0','0','0','d1d026c6240c493387374b756b04452f');
INSERT INTO `items` (`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`,`uuid`) values ('33502','18','','10380','Hikvision camera: MACaddress','hikvision_cam.mac_address','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','12','30d','0','','33493','3s','','','','200','1','0','','0','0','0','0','0','0','0','da9ec53ecc6b4c25b6539666eb9f6544');
INSERT INTO `items` (`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`,`uuid`) values ('33503','18','','10380','Hikvision camera: Hardware version','hikvision_cam.hardware_version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','33493','3s','','','','200','1','0','','0','0','0','0','0','0','0','03aecf4021c2402bb415798ef339b914');
INSERT INTO `items` (`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`,`uuid`) values ('33504','18','','10380','Hikvision camera: Get streaming channels: Login status','hikvision_cam.get_streaming.login_status','0','7d','365d','0','3','','','','',NULL,'216','','','0','','','','','0',NULL,'','0','30d','0','','33491','3s','','','','200','1','0','','0','0','0','0','0','0','0','c90527e1a2a948b5a5f678ec0d981954');
INSERT INTO `items` (`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`,`uuid`) values ('33505','18','','10380','Hikvision camera: Get system status: Login status','hikvision_cam.get_status.login_status','0','7d','365d','0','3','','','','',NULL,'216','','','0','','','','','0',NULL,'','0','30d','0','','33492','3s','','','','200','1','0','','0','0','0','0','0','0','0','ebca4ac32e2e4bfd8bf3cdae155a4ee6');
INSERT INTO `items` (`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`,`uuid`) values ('33506','18','','10380','Hikvision camera: Get device info: Login status','hikvision_cam.get_info.login_status','0','7d','365d','0','3','','','','',NULL,'216','','','0','','','','','0',NULL,'','0','30d','0','','33493','3s','','','','200','1','0','','0','0','0','0','0','0','0','d0fc2ebf4ae140b68546e2425321f797');
INSERT INTO `items` (`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`,`uuid`) values ('33507','18','','10380','Hikvision camera: Boot loader version','hikvision_cam.boot_version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','22','30d','0','','33493','3s','','','','200','1','0','','0','0','0','0','0','0','0','61c6f0073e604a449d8f724d762cfb7f');
INSERT INTO `items` (`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`,`uuid`) values ('33508','18','','10380','Hikvision camera: Firmware version','hikvision_cam.firmware_version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','18','30d','0','','33493','3s','','','','200','1','0','','0','0','0','0','0','0','0','eafe1a75a24c479cb5bf116be2272375');
INSERT INTO `items` (`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`,`uuid`) values ('33509','18','','10380','Hikvision camera: Firmware released date','hikvision_cam.firmware_released_date','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','19','30d','0','','33493','3s','','','','200','1','0','','0','0','0','0','0','0','0','ac6ee4d15c584709a7bdf2b89048aacc');
INSERT INTO `items` (`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`,`uuid`) values ('33510','18','','10380','Hikvision camera: Encoder version','hikvision_cam.encoder_version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','20','30d','0','','33493','3s','','','','200','1','0','','0','0','0','0','0','0','0','4798d54b70ee445293c12b3a8038b8c8');
INSERT INTO `items` (`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`,`uuid`) values ('33511','18','','10380','Hikvision camera: Encoder released date','hikvision_cam.encoder_released_date','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','21','30d','0','','33493','3s','','','','200','1','0','','0','0','0','0','0','0','0','66ee550f4838455e9500561d790a76d1');
INSERT INTO `items` (`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`,`uuid`) values ('33512','18','','10380','Hikvision camera: Device type','hikvision_cam.device_type','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','1','30d','0','','33493','3s','','','','200','1','0','','0','0','0','0','0','0','0','84d86e688a31402a82798f9e2ff04ab8');
INSERT INTO `items` (`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`,`uuid`) values ('33513','18','','10380','Hikvision camera: Device name','hikvision_cam.device_name','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','3','30d','0','','33493','3s','','','','200','1','0','','0','0','0','0','0','0','0','278a04c86c22419886aa64fad8e05c9e');
INSERT INTO `items` (`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`,`uuid`) values ('33514','18','','10380','Hikvision camera: Device location','hikvision_cam.device_location','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','24','30d','0','','33493','3s','','','','200','1','0','','0','0','0','0','0','0','0','f4e6f9d05fea4489a9eaa47effe66ceb');
INSERT INTO `items` (`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`,`uuid`) values ('33515','18','','10380','Hikvision camera: Device ID','hikvision_cam.device_id','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','33493','3s','','','','200','1','0','','0','0','0','0','0','0','0','4abc7dcef6ec4b97bd1350d2e93f58d4');
INSERT INTO `items` (`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`,`uuid`) values ('33516','18','','10380','Hikvision camera: Device description','hikvision_cam.device_description','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','27','30d','0','','33493','3s','','','','200','1','0','','0','0','0','0','0','0','0','42b0f3ae08cf4730a52ea2ddda6f5bae');
INSERT INTO `items` (`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`,`uuid`) values ('33517','18','','10380','Hikvision camera: Current device time','hikvision_cam.current_device_time','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','33492','3s','','','','200','1','0','','0','0','0','0','0','0','0','7e65f407b515429caf415820dd633b0e');
INSERT INTO `items` (`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`,`uuid`) values ('33518','18','','10380','Hikvision camera: CPU utilization','hikvision_cam.cpu.util','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization in %','0','30d','0','','33492','3s','','','','200','1','0','','0','0','0','0','0','0','0','247a70ed0cc543d69183a6a793cd9978');
INSERT INTO `items` (`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`,`uuid`) values ('33519','18','','10380','Hikvision camera: Uptime','hikvision_cam.uptime','0','7d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'System uptime in \'N days, hh:mm:ss\' format.','0','30d','0','','33492','3s','','','','200','1','0','','0','0','0','0','0','0','0','4e680a5e347948fe8118b58c2c62d55f');
INSERT INTO `items` (`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`,`uuid`) values ('33523','18','','10380','Hikvision camera: Get PTZ info: Channel "{#PTZ_CHANNEL_ID}": Login status','hikvision_cam.get_ptz.login_status[{#PTZ_CHANNEL_ID}]','0','7d','365d','0','3','','','','',NULL,'216','','','0','','','','','2',NULL,'','0','30d','0','','33522','3s','','','','200','1','0','','0','0','0','0','0','0','0','bb3be316a5fc4b25bd15c903909b7746');
INSERT INTO `items` (`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`,`uuid`) values ('33524','18','','10380','Channel "{#PTZ_CHANNEL_ID}": Absolute zoom','hikvision_cam.ptz.absolute_zoom[{#PTZ_CHANNEL_ID}]','0','7d','365d','0','0','','!x','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33522','3s','','','','200','1','0','','0','0','0','0','0','0','0','16225fb78f414308829d035cd32f8468');
INSERT INTO `items` (`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`,`uuid`) values ('33525','18','','10380','Channel "{#PTZ_CHANNEL_ID}": Azimuth','hikvision_cam.ptz.azimuth[{#PTZ_CHANNEL_ID}]','0','7d','365d','0','0','','!°','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33522','3s','','','','200','1','0','','0','0','0','0','0','0','0','6282376b25a9462e84b748d011f2fbf6');
INSERT INTO `items` (`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`,`uuid`) values ('33526','18','','10380','Channel "{#PTZ_CHANNEL_ID}": Elevation','hikvision_cam.ptz.elevation[{#PTZ_CHANNEL_ID}]','0','7d','365d','0','0','','!°','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33522','3s','','','','200','1','0','','0','0','0','0','0','0','0','da148a9826724869a58d286a07edc036');
INSERT INTO `items` (`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`,`uuid`) values ('33527','18','','10380','Channel "{#CHANNEL_ID}": Constant bitRate','hikvision_cam.constant_bit_rate[{#CHANNEL_ID}]','0','7d','365d','0','3','','!kbit/s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','3s','','','','200','1','0','','0','0','0','0','0','0','0','90ef1dd6e3d04ce8ab84731377c07ea6');
INSERT INTO `items` (`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`,`uuid`) values ('33528','18','','10380','Channel "{#CHANNEL_ID}": Fixed quality','hikvision_cam.fixed_quality[{#CHANNEL_ID}]','0','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','3s','','','','200','1','0','','0','0','0','0','0','0','0','b992569a9db346ac85886fe7a5e55074');
INSERT INTO `items` (`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`,`uuid`) values ('33529','18','','10380','Channel "{#CHANNEL_ID}": GovLength','hikvision_cam.gov_length[{#CHANNEL_ID}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','3s','','','','200','1','0','','0','0','0','0','0','0','0','7343f2206cfd4942976b5dca214a7558');
INSERT INTO `items` (`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`,`uuid`) values ('33530','18','','10380','Channel "{#CHANNEL_ID}": H264Profile','hikvision_cam.h264Profile[{#CHANNEL_ID}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','3s','','','','200','1','0','','0','0','0','0','0','0','0','ef1df8955ab84efab5ae9be340715431');
INSERT INTO `items` (`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`,`uuid`) values ('33531','18','','10380','Channel "{#CHANNEL_ID}": Key frame interval','hikvision_cam.key_frame_interval[{#CHANNEL_ID}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','3s','','','','200','1','0','','0','0','0','0','0','0','0','ce45290377cc402bacda95ea8a136946');
INSERT INTO `items` (`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`,`uuid`) values ('33532','18','','10380','Channel "{#CHANNEL_ID}": Frame rate (max)','hikvision_cam.max_frame_rate[{#CHANNEL_ID}]','0','7d','365d','0','3','','!fps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','3s','','','','200','1','0','','0','0','0','0','0','0','0','4d621b75e2ef432a9cab88b61718125d');
INSERT INTO `items` (`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`,`uuid`) values ('33533','18','','10380','Channel "{#CHANNEL_ID}": Smoothing','hikvision_cam.smoothing[{#CHANNEL_ID}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','3s','','','','200','1','0','','0','0','0','0','0','0','0','12f1fadb9d364e6b96ab01b468c94891');
INSERT INTO `items` (`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`,`uuid`) values ('33534','18','','10380','Channel "{#CHANNEL_ID}": Snapshot image type','hikvision_cam.snap_shot_image_type[{#CHANNEL_ID}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','3s','','','','200','1','0','','0','0','0','0','0','0','0','1854ab4fd6f14adf90c0ddb42712a4ef');
INSERT INTO `items` (`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`,`uuid`) values ('33535','18','','10380','Channel "{#CHANNEL_ID}": VBR lower','hikvision_cam.vbr_lower_cap[{#CHANNEL_ID}]','0','7d','365d','0','3','','!kbit/s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','3s','','','','200','1','0','','0','0','0','0','0','0','0','d1523faa362842ef9313ffc15a6d5e8c');
INSERT INTO `items` (`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`,`uuid`) values ('33536','18','','10380','Channel "{#CHANNEL_ID}": VBR upper','hikvision_cam.vbr_upper_cap[{#CHANNEL_ID}]','0','7d','365d','0','3','','!kbit/s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','3s','','','','200','1','0','','0','0','0','0','0','0','0','725669dc6bfd4871a3133ab7fcd4c571');
INSERT INTO `items` (`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`,`uuid`) values ('33537','18','','10380','Channel "{#CHANNEL_ID}": Video codec type','hikvision_cam.video_codec_type[{#CHANNEL_ID}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','3s','','','','200','1','0','','0','0','0','0','0','0','0','96ef96886e9244f08cf245f4253839b2');
INSERT INTO `items` (`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`,`uuid`) values ('33538','18','','10380','Channel "{#CHANNEL_ID}": Video quality control type','hikvision_cam.video_quality_control_type[{#CHANNEL_ID}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','3s','','','','200','1','0','','0','0','0','0','0','0','0','59e8f0440ec04306a0c79cc8c9a5c91f');
INSERT INTO `items` (`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`,`uuid`) values ('33539','18','','10380','Channel "{#CHANNEL_ID}": Resolution height','hikvision_cam.video_resolution_height[{#CHANNEL_ID}]','0','7d','365d','0','3','','!px','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','3s','','','','200','1','0','','0','0','0','0','0','0','0','18f5eed445154a42828cea423db9ebec');
INSERT INTO `items` (`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`,`uuid`) values ('33540','18','','10380','Channel "{#CHANNEL_ID}": Resolution width','hikvision_cam.video_resolution_width[{#CHANNEL_ID}]','0','7d','365d','0','3','','!px','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','3s','','','','200','1','0','','0','0','0','0','0','0','0','13f343a9c3804846a31867e942602199');
INSERT INTO `items` (`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`,`uuid`) values ('33541','18','','10380','Channel "{#CHANNEL_ID}": Video scan type','hikvision_cam.video_scan_type[{#CHANNEL_ID}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','3s','','','','200','1','0','','0','0','0','0','0','0','0','2ccd4b38faf046b88a0983249ca0c4f6');
INSERT INTO `items` (`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`,`uuid`) values ('33632','18','','10382','Sharepoint: Get directory structure: Status','sharepoint.get_dir.status','0','7d','365d','0','3','','','','',NULL,'218','','','0','','','','','0',NULL,'HTTP response (status) code. Indicates whether the HTTP request was successfully completed. Additional information is available in the server log file.','0','30d','0','','33630','3s','','','','200','1','0','','0','0','0','0','0','0','0','cd47c3d00ce545b0a557e0e68c89d53e');
INSERT INTO `items` (`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`,`uuid`) values ('33633','18','','10382','Sharepoint: Get directory structure: Exec time','sharepoint.get_dir.time','0','7d','365d','0','3','','!ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The time taken to execute the script for obtaining the data structure (in ms). Less is better.','0','30d','0','','33630','3s','','','','200','1','0','','0','0','0','0','0','0','0','b2daa471665541168b2a394b9b226d73');
INSERT INTO `items` (`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`,`uuid`) values ('33635','18','','10382','Sharepoint: Created ({#SHAREPOINT.LLD.FULL_PATH})','sharepoint.created["{#SHAREPOINT.LLD.FULL_PATH}"]','0','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Date of creation:\r\n{#SHAREPOINT.LLD.FULL_PATH}','0','30d','0','','33630','3s','','','','200','1','0','','0','0','0','0','0','0','0','337493ed37424be98abd4c0550279a0b');
INSERT INTO `items` (`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`,`uuid`) values ('33636','18','','10382','Sharepoint: Modified ({#SHAREPOINT.LLD.FULL_PATH})','sharepoint.modified["{#SHAREPOINT.LLD.FULL_PATH}"]','0','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Date of change:\r\n{#SHAREPOINT.LLD.FULL_PATH}','0','30d','0','','33630','3s','','','','200','1','0','','0','0','0','0','0','0','0','b230bfba317e4d2eb2c6a816bd357d71');
INSERT INTO `items` (`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`,`uuid`) values ('33637','18','','10382','Sharepoint: Size ({#SHAREPOINT.LLD.FULL_PATH})','sharepoint.size["{#SHAREPOINT.LLD.FULL_PATH}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Size of:\r\n{#SHAREPOINT.LLD.FULL_PATH}','0','30d','0','','33630','3s','','','','200','1','0','','0','0','0','0','0','0','0','68c3d2d2b33a494ab85ca6b883398fbb');
INSERT INTO `items` (`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`,`uuid`) values ('33744','18','','10300','Health Check 3.8.10+ discovery','rabbitmq.healthcheck.v3810.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Version 3.8.10+ specific metrics','0','30d','0','','29998','3s','','','','200','1','0','','0','0','0','0','0','0','0','406836367f45425fbd181a20dc3d08d7');
INSERT INTO `items` (`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`,`uuid`) values ('33745','18','','10301','Health Check 3.8.9- discovery','rabbitmq.healthcheck.v389.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Specific metrics up to and including version 3.8.4','0','30d','0','','29653','3s','','','','200','1','0','','0','0','0','0','0','0','0','04ef7d13809c45009553815f60ef5ba8');
INSERT INTO `items` (`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`,`uuid`) values ('33746','18','','10301','Health Check 3.8.10+ discovery','rabbitmq.healthcheck.v3810.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Version 3.8.10+ specific metrics','0','30d','0','','29653','3s','','','','200','1','0','','0','0','0','0','0','0','0','3c0021a3e57142eb806deb5b47b6700a');
INSERT INTO `items` (`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`,`uuid`) values ('33754','18','','10302','Health Check 3.8.10+ discovery','rabbitmq.healthcheck.v3810.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Version 3.8.10+ specific metrics','0','30d','0','','29738','3s','','','','200','1','0','','0','0','0','0','0','0','0','8655f85b65cc4eb0a0470db45ca1c963');
INSERT INTO `items` (`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`,`uuid`) values ('33755','18','','10303','Health Check 3.8.9- discovery','rabbitmq.healthcheck.v389.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Specific metrics up to and including version 3.8.4','0','30d','0','','30043','3s','','','','200','1','0','','0','0','0','0','0','0','0','fd10dbe5b1ba407dbb52632ecd713ccf');
INSERT INTO `items` (`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`,`uuid`) values ('33756','18','','10303','Health Check 3.8.10+ discovery','rabbitmq.healthcheck.v3810.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Version 3.8.10+ specific metrics','0','30d','0','','30043','3s','','','','200','1','0','','0','0','0','0','0','0','0','ab89d103c015400fbbeecaaf9bf01400');
INSERT INTO `items` (`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`,`uuid`) values ('33769','18','','10386','MongoDB: Document: deleted, rate','mongod.document.deleted.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of documents deleted per second.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','bfd58d9efaf54e038f96458f68fd48af');
INSERT INTO `items` (`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`,`uuid`) values ('33770','18','','10386','MongoDB: Requests, rate','mongodb.network.numRequests.rate','0','7d','365d','0','0','','!Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of distinct requests that the server has received per second','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','73aba89f9012437eb3ed843ccbe63c06');
INSERT INTO `items` (`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`,`uuid`) values ('33771','18','','10386','MongoDB: Memory: mapped with journal','mongodb.mem.mapped_with_journal','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of mapped memory, including the memory used for journaling.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','7a10ad84604246679104111e83fa762e');
INSERT INTO `items` (`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`,`uuid`) values ('33772','18','','10386','MongoDB: Memory: resident','mongodb.mem.resident','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of memory currently used by the database process.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','2248b869cfca42bd95140451c0974f8c');
INSERT INTO `items` (`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`,`uuid`) values ('33773','18','','10386','MongoDB: Memory: virtual','mongodb.mem.virtual','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of virtual memory used by the mongod process.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','561ea7508e44443cb692b7dfe8ed3bdc');
INSERT INTO `items` (`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`,`uuid`) values ('33774','18','','10386','MongoDB: Cursor: open no timeout','mongodb.metrics.cursor.open.no_timeout','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open cursors with the option DBQuery.Option.noTimeout set to prevent timeout after a period of inactivity.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','9c79163da0b44e39a704969ab1d6280b');
INSERT INTO `items` (`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`,`uuid`) values ('33775','18','','10386','MongoDB: Bytes in, rate','mongodb.network.bytes_in.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of bytes that the server has received over network connections initiated by clients or other mongod/mongos instances per second.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','ba0502f80a044670993bdb63587cd282');
INSERT INTO `items` (`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`,`uuid`) values ('33776','18','','10386','MongoDB: Bytes out, rate','mongodb.network.bytes_out.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of bytes that the server has sent over network connections initiated by clients or other mongod/mongos instances per second.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','0545114b39a649ef9a4b75da500031fb');
INSERT INTO `items` (`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`,`uuid`) values ('33777','18','','10386','MongoDB: Operations: delete, rate','mongodb.opcounters.delete.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of delete operations the mongod instance per second.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','540f30705ced49da89a16f80828e8775');
INSERT INTO `items` (`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`,`uuid`) values ('33778','18','','10386','MongoDB: Operations: command, rate','mongodb.opcounters.command.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of commands issued to the database the mongod instance per second.\r\nCounts all commands except the write commands: insert, update, and delete.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','532a1f4a64624434986f54b9ac2d2e3a');
INSERT INTO `items` (`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`,`uuid`) values ('33779','18','','10386','MongoDB: Architecture','mongodb.mem.bits','0','7d','365d','0','3','','bit','','',NULL,NULL,'','','0','','','','','0',NULL,'A number, either 64 or 32, that indicates whether the MongoDB instance is compiled for 64-bit or 32-bit architecture.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','4d0b20f4eeca4418bb08e7e2905cc68c');
INSERT INTO `items` (`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`,`uuid`) values ('33780','18','','10386','MongoDB: Operations: getmore, rate','mongodb.opcounters.getmore.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of “getmore” operations since the mongod instance per second. This counter can be high even if the query count is low.\r\nSecondary nodes send getMore operations as part of the replication process.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','229345df70c240b5ab113b358fb738d9');
INSERT INTO `items` (`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`,`uuid`) values ('33781','18','','10386','MongoDB: Operations: insert, rate','mongodb.opcounters.insert.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of insert operations received since the mongod instance per second.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','4236ad60fcef48f793ac6da4cccdb029');
INSERT INTO `items` (`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`,`uuid`) values ('33782','18','','10386','MongoDB: Operations: query, rate','mongodb.opcounters.query.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of queries received the mongod instance per second.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','b0f7def2c62047bba0db77d18f1df920');
INSERT INTO `items` (`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`,`uuid`) values ('33783','18','','10386','MongoDB: Operations: update, rate','mongodb.opcounters.update.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of update operations the mongod instance per second.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','019ed179e4e1407db799e01920280e02');
INSERT INTO `items` (`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`,`uuid`) values ('33784','18','','10386','MongoDB: Uptime','mongodb.uptime','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of seconds that the mongod process has been active.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','2d1bf92792014ed8a3f8d8b13907fc7d');
INSERT INTO `items` (`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`,`uuid`) values ('33785','18','','10386','MongoDB: Memory: mapped','mongodb.mem.mapped','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of mapped memory by the database.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','c88392536a334f9a9c907be28090424c');
INSERT INTO `items` (`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`,`uuid`) values ('33786','18','','10386','MongoDB: Cursor: timed out, rate','mongodb.cursor.timed_out.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cursors that time out, per second.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','b30b4c7b6d88467bbde22db411660d6b');
INSERT INTO `items` (`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`,`uuid`) values ('33787','18','','10386','MongoDB: Document: inserted, rate','mongod.document.inserted.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of documents inserted per second.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','5ecc078aeda04e3ca34ed42d966cdf40');
INSERT INTO `items` (`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`,`uuid`) values ('33788','18','','10386','MongoDB: Asserts: user, rate','mongodb.asserts.user.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of “user asserts” that have occurred per second.\r\nThese are errors that user may generate, such as out of disk space or duplicate key.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','a7dfd56310d44d7dac1f3c02fa5fbc79');
INSERT INTO `items` (`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`,`uuid`) values ('33789','18','','10386','MongoDB: Document: returned, rate','mongod.document.returned.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of documents returned by queries per second.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','56fc9870503645069a9d937ac21ab7c2');
INSERT INTO `items` (`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`,`uuid`) values ('33790','18','','10386','MongoDB: Document: updated, rate','mongod.document.updated.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of documents updated per second.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','d21a95f1862b4c17b5a4ed83a67ffb1b');
INSERT INTO `items` (`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`,`uuid`) values ('33791','18','','10386','MongoDB: Active clients: readers','mongodb.active_clients.readers','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of the active client connections performing read operations.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','d5ec0427c5ca49119f6e94211b0297bf');
INSERT INTO `items` (`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`,`uuid`) values ('33792','18','','10386','MongoDB: Active clients: total','mongodb.active_clients.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of internal client connections to the database including system threads as well as queued readers and writers.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','1c2dc0b60eb44d259e02accf2531b389');
INSERT INTO `items` (`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`,`uuid`) values ('33793','18','','10386','MongoDB: Active clients: writers','mongodb.active_clients.writers','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active client connections performing write operations.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','9c5512c83e1844c5b4fdb675336edbf6');
INSERT INTO `items` (`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`,`uuid`) values ('33794','18','','10386','MongoDB: Asserts: message, rate','mongodb.asserts.msg.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of message assertions raised per second.\r\nCheck the log file for more information about these messages.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','5e6fa5d1c9fc48ada6c0bc5c8d1d3ec4');
INSERT INTO `items` (`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`,`uuid`) values ('33795','18','','10386','MongoDB: Asserts: regular, rate','mongodb.asserts.regular.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of regular assertions raised per second.\r\nCheck the log file for more information about these messages.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','32d5177badac49eda8ce1f47c851ebf2');
INSERT INTO `items` (`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`,`uuid`) values ('33796','18','','10386','MongoDB: Asserts: rollovers, rate','mongodb.asserts.rollovers.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times that the rollover counters roll over per second.\r\nThe counters rollover to zero every 2^30 assertions.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','67f2ef15386a47b6b88fc95dd7fe1be6');
INSERT INTO `items` (`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`,`uuid`) values ('33797','18','','10386','MongoDB: Asserts: warning, rate','mongodb.asserts.warning.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of warnings raised per second.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','41638aa2b3374e56ad00ef9113e1ea61');
INSERT INTO `items` (`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`,`uuid`) values ('33798','18','','10386','MongoDB: Cursor: open total','mongodb.cursor.open.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cursors that MongoDB is maintaining for clients.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','f23bf716eced4ba5948b06c24c780904');
INSERT INTO `items` (`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`,`uuid`) values ('33799','18','','10386','MongoDB: Connections, active','mongodb.connections.active','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active client connections to the server.\r\nActive client connections refers to client connections that currently have operations in progress.\r\nAvailable starting in 4.0.7, 0 for older versions.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','6ce4b63c962646ef91e4a705a42f36de');
INSERT INTO `items` (`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`,`uuid`) values ('33800','18','','10386','MongoDB: Connections, available','mongodb.connections.available','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unused incoming connections available.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','3b53fa8cf9cb4d1a9ff364cd5d8ae724');
INSERT INTO `items` (`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`,`uuid`) values ('33801','18','','10386','MongoDB: Connections, current','mongodb.connections.current','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of incoming connections from clients to the database server.\r\nThis number includes the current shell session','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','c4d86707cd124d9db195ca6afd636e71');
INSERT INTO `items` (`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`,`uuid`) values ('33802','18','','10386','MongoDB: New connections, rate','mongodb.connections.rate','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of all incoming connections created to the server.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','37fd836b53fa4db88aeb0faeeccc2856');
INSERT INTO `items` (`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`,`uuid`) values ('33803','18','','10386','MongoDB: Current queue: readers','mongodb.current_queue.readers','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of operations that are currently queued and waiting for the read lock.\r\nA consistently small read-queue, particularly of shorter operations, should cause no concern.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','0f04a5b3b0e5415185e01ecf75f426ec');
INSERT INTO `items` (`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`,`uuid`) values ('33804','18','','10386','MongoDB: Current queue: total','mongodb.current_queue.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of operations queued waiting for the lock.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','47ecaffb9638429eb308572b7d7beb5a');
INSERT INTO `items` (`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`,`uuid`) values ('33805','18','','10386','MongoDB: Current queue: writers','mongodb.current_queue.writers','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of operations that are currently queued and waiting for the write lock.\r\n A consistently small write-queue, particularly of shorter operations, is no cause for concern.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','e68ff1592a5648fc8b5475054c327ac6');
INSERT INTO `items` (`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`,`uuid`) values ('33806','18','','10386','MongoDB: Cursor: open pinned','mongodb.cursor.open.pinned','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of pinned open cursors.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','1d2c068feba240d6b934b65249d1b5ea');
INSERT INTO `items` (`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`,`uuid`) values ('33807','18','','10386','MongoDB: MongoDB version','mongodb.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the MongoDB server.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','c5679875dc254ddd833ee40ef4a2b3cf');
INSERT INTO `items` (`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`,`uuid`) values ('33810','18','','10386','Replication discovery','mongodb.rs.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Collect metrics by Zabbix agent if it exists','0','30d','0','','33765','3s','','','','200','1','0','','0','0','0','0','0','0','0','eaa4b8fc535143f887673834987ce7be');
INSERT INTO `items` (`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`,`uuid`) values ('33811','18','','10386','WiredTiger metrics','mongodb.wired_tiger.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Collect metrics of WiredTiger Storage Engine if it exists','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','9b37bb1d3e244a95ac5702bcf3ab19a9');
INSERT INTO `items` (`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`,`uuid`) values ('33814','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Objects, avg size','mongodb.collection.avg_obj_size["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size of the average object in the collection in bytes.','0','30d','0','','33812','3s','','','','200','1','0','','0','0','0','0','0','0','0','fbcfeba93bce4f3fa965176b9b3208b0');
INSERT INTO `items` (`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`,`uuid`) values ('33815','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: remove, ms/s','mongodb.collection.ops.remove.ms["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) the mongod has spent to operations.','0','30d','0','','33768','3s','','','','200','1','0','','0','0','0','0','0','0','0','a46f2c1c973d4eef8d9a7b1150702c74');
INSERT INTO `items` (`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`,`uuid`) values ('33816','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Write lock, ms/s','mongodb.collection.write_lock.ms["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) the mongod has spent to operations.','0','30d','0','','33768','3s','','','','200','1','0','','0','0','0','0','0','0','0','a4c46912b5e643be8565f2b0d32c62a9');
INSERT INTO `items` (`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`,`uuid`) values ('33817','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Storage size','mongodb.collection.storage_size["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total storage space allocated to this collection for document storage.','0','30d','0','','33812','3s','','','','200','1','0','','0','0','0','0','0','0','0','a2f095952fa44ed3a199b098c5fbee7a');
INSERT INTO `items` (`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`,`uuid`) values ('33818','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Size','mongodb.collection.size["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total size in bytes of the data in the collection plus the size of every indexes on the mongodb.collection.','0','30d','0','','33812','3s','','','','200','1','0','','0','0','0','0','0','0','0','e5e471e100834da5a2e9dddaaa453227');
INSERT INTO `items` (`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`,`uuid`) values ('33819','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Read lock, rate','mongodb.collection.read_lock.rate["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of operations per second.','0','30d','0','','33768','3s','','','','200','1','0','','0','0','0','0','0','0','0','9d2d62a252054e428d9b8863a2128ad8');
INSERT INTO `items` (`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`,`uuid`) values ('33820','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Read lock, ms/s','mongodb.collection.read_lock.ms["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) the mongod has spent to operations.','0','30d','0','','33768','3s','','','','200','1','0','','0','0','0','0','0','0','0','4d575525f749436ea4ea9098c3b164ba');
INSERT INTO `items` (`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`,`uuid`) values ('33821','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: update, rate','mongodb.collection.ops.update.rate["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of operations per second.','0','30d','0','','33768','3s','','','','200','1','0','','0','0','0','0','0','0','0','8d75aa686d0d4f3f93089b8b089f1d3c');
INSERT INTO `items` (`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`,`uuid`) values ('33822','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: update, ms/s','mongodb.collection.ops.update.ms["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) the mongod has spent to operations.','0','30d','0','','33768','3s','','','','200','1','0','','0','0','0','0','0','0','0','89b6f13894d64bdcbe0d0ec41568051a');
INSERT INTO `items` (`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`,`uuid`) values ('33823','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: total, rate','mongodb.collection.ops.total.rate["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of operations per second.','0','30d','0','','33768','3s','','','','200','1','0','','0','0','0','0','0','0','0','1ca4ae9dcf494efdbf85d635d49d4de8');
INSERT INTO `items` (`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`,`uuid`) values ('33824','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: total, ms/s','mongodb.collection.ops.total.ms["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) the mongod has spent to operations.','0','30d','0','','33768','3s','','','','200','1','0','','0','0','0','0','0','0','0','67eaf64e851a45afbd69303ad0256077');
INSERT INTO `items` (`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`,`uuid`) values ('33825','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: remove, rate','mongodb.collection.ops.remove.rate["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of operations per second.','0','30d','0','','33768','3s','','','','200','1','0','','0','0','0','0','0','0','0','89b74a8511b84f4bb8cab94fc5471632');
INSERT INTO `items` (`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`,`uuid`) values ('33826','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: queries, rate','mongodb.collection.ops.queries.rate["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of operations per second.','0','30d','0','','33768','3s','','','','200','1','0','','0','0','0','0','0','0','0','41b1f661ceab494f81e7a4b943a07020');
INSERT INTO `items` (`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`,`uuid`) values ('33827','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Capped','mongodb.collection.capped["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','3','','','','',NULL,'225','','','0','','','','','2',NULL,'Whether or not the collection is capped.','0','30d','0','','33812','3s','','','','200','1','0','','0','0','0','0','0','0','0','ee5d3cefe6584900b400a4f598c84c1b');
INSERT INTO `items` (`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`,`uuid`) values ('33828','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: queries, ms/s','mongodb.collection.ops.queries.ms["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) the mongod has spent to operations.','0','30d','0','','33768','3s','','','','200','1','0','','0','0','0','0','0','0','0','77de05da93b34432a7c2442fc01ca624');
INSERT INTO `items` (`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`,`uuid`) values ('33829','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: insert, rate','mongodb.collection.ops.insert.rate["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of operations per second.','0','30d','0','','33768','3s','','','','200','1','0','','0','0','0','0','0','0','0','c824a6a997ef4308b47cdc4118799f33');
INSERT INTO `items` (`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`,`uuid`) values ('33830','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: insert, ms/s','mongodb.collection.ops.insert.ms["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) the mongod has spent to operations.','0','30d','0','','33768','3s','','','','200','1','0','','0','0','0','0','0','0','0','812f76c720fe47ba9fd8764c349c4a36');
INSERT INTO `items` (`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`,`uuid`) values ('33831','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: getmore, rate','mongodb.collection.ops.getmore.rate["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of operations per second.','0','30d','0','','33768','3s','','','','200','1','0','','0','0','0','0','0','0','0','760a0a70a2674ad7acd9d551865693ef');
INSERT INTO `items` (`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`,`uuid`) values ('33832','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: getmore, ms/s','mongodb.collection.ops.getmore.ms["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) the mongod has spent to operations.','0','30d','0','','33768','3s','','','','200','1','0','','0','0','0','0','0','0','0','6375b055efe84cdaa0a42c4b9981dde7');
INSERT INTO `items` (`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`,`uuid`) values ('33833','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: commands, rate','mongodb.collection.ops.commands.rate["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of operations per second.','0','30d','0','','33768','3s','','','','200','1','0','','0','0','0','0','0','0','0','b6d89c096fec4194bbe834e026f33178');
INSERT INTO `items` (`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`,`uuid`) values ('33834','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: commands, ms/s','mongodb.collection.ops.commands.ms["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) the mongod has spent to operations.','0','30d','0','','33768','3s','','','','200','1','0','','0','0','0','0','0','0','0','a4d05a4ee48b4ce2aa4fbebd240b8c4c');
INSERT INTO `items` (`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`,`uuid`) values ('33835','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Indexes','mongodb.collection.nindexes["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of indices on the collection.','0','30d','0','','33812','3s','','','','200','1','0','','0','0','0','0','0','0','0','b8ebe075b01248179d93c5d174286d2f');
INSERT INTO `items` (`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`,`uuid`) values ('33836','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Capped: max size','mongodb.collection.max_size["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum size of a capped collection in bytes.','0','30d','0','','33812','3s','','','','200','1','0','','0','0','0','0','0','0','0','8c0fe89cfa9f40e3bb04c92c417757df');
INSERT INTO `items` (`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`,`uuid`) values ('33837','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Capped: max number','mongodb.collection.max_number["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum number of documents that may be present in a capped collection.','0','30d','0','','33812','3s','','','','200','1','0','','0','0','0','0','0','0','0','0ab52dbdcb424d759f6f717d8197cb30');
INSERT INTO `items` (`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`,`uuid`) values ('33838','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Objects, count','mongodb.collection.count["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of objects in the collection.','0','30d','0','','33812','3s','','','','200','1','0','','0','0','0','0','0','0','0','5fc5b90792054b09a651b5d41328ca56');
INSERT INTO `items` (`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`,`uuid`) values ('33839','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Write lock, rate','mongodb.collection.write_lock.rate["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of operations per second.','0','30d','0','','33768','3s','','','','200','1','0','','0','0','0','0','0','0','0','ef83d379681241eaadd8be8de755a2bd');
INSERT INTO `items` (`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`,`uuid`) values ('33840','18','','10386','MongoDB {#DBNAME}: Collections','mongodb.db.collections["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Contains a count of the number of collections in that database.','0','30d','0','','33813','3s','','','','200','1','0','','0','0','0','0','0','0','0','cbb85c1a212a49a1bbdd9336f4a8fe68');
INSERT INTO `items` (`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`,`uuid`) values ('33841','18','','10386','MongoDB {#DBNAME}: Size, data','mongodb.db.data_size["{#DBNAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total size of the data held in this database including the padding factor.','0','30d','0','','33813','3s','','','','200','1','0','','0','0','0','0','0','0','0','a9d502096d664f6da44a6ab82f8b7d36');
INSERT INTO `items` (`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`,`uuid`) values ('33842','18','','10386','MongoDB {#DBNAME}: Extents','mongodb.db.extents["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Contains a count of the number of extents in the database across all collections.','0','30d','0','','33813','3s','','','','200','1','0','','0','0','0','0','0','0','0','c5f4ae6a260e4c10aae0d51441fcbbf7');
INSERT INTO `items` (`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`,`uuid`) values ('33843','18','','10386','MongoDB {#DBNAME}: Size, file','mongodb.db.file_size["{#DBNAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total size of the data held in this database including the padding factor (only available with the mmapv1 storage engine).','0','30d','0','','33813','3s','','','','200','1','0','','0','0','0','0','0','0','0','cecffb75221440ac957fda5d676d7714');
INSERT INTO `items` (`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`,`uuid`) values ('33844','18','','10386','MongoDB {#DBNAME}: Size, index','mongodb.db.index_size["{#DBNAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total size of all indexes created on this database.','0','30d','0','','33813','3s','','','','200','1','0','','0','0','0','0','0','0','0','9567515baf7b46a0a685717839f4a48f');
INSERT INTO `items` (`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`,`uuid`) values ('33845','18','','10386','MongoDB {#DBNAME}: Objects, count','mongodb.db.objects["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of objects (documents) in the database across all collections.','0','30d','0','','33813','3s','','','','200','1','0','','0','0','0','0','0','0','0','cd5ecd2eafc640319aa2f049db2cf582');
INSERT INTO `items` (`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`,`uuid`) values ('33846','18','','10386','MongoDB {#DBNAME}: Objects, avg size','mongodb.db.size["{#DBNAME}"]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The average size of each document in bytes.','0','30d','0','','33813','3s','','','','200','1','0','','0','0','0','0','0','0','0','cadce6df66ec4872bd6b517233f77bfc');
INSERT INTO `items` (`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`,`uuid`) values ('33847','18','','10386','MongoDB {#DBNAME}: Size, storage','mongodb.db.storage_size["{#DBNAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total amount of space allocated to collections in this database for document storage.','0','30d','0','','33813','3s','','','','200','1','0','','0','0','0','0','0','0','0','197a1d1f5d14413da8fe6c93bfdcf4f3');
INSERT INTO `items` (`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`,`uuid`) values ('33848','18','','10386','MongoDB: Apply batches, ms/s','mongodb.rs.apply.batches.ms.rate[{#RS_NAME}]','0','7d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) the mongod has spent applying operations from the oplog.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','aed5de1374ea427185d478e87b7f1449');
INSERT INTO `items` (`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`,`uuid`) values ('33849','18','','10386','MongoDB: Network readers created, rate','mongodb.rs.network.readers.rate[{#RS_NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of oplog query processes created per second.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','7f9d03a683764e32a35b9c1d4da5ddab');
INSERT INTO `items` (`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`,`uuid`) values ('33850','18','','10386','MongoDB: Unhealthy replicas','mongodb.rs.unhealthy[{#RS_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The replicated nodes in current ReplicaSet with member health value = 0.','0','30d','0','','33765','3s','','','','200','1','0','','0','0','0','0','0','0','1','4b81b6e4ce1644689e5d8a4490650e6b');
INSERT INTO `items` (`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`,`uuid`) values ('33851','18','','10386','MongoDB: Number of replicas','mongodb.rs.total_nodes[{#RS_NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of replicated nodes in current ReplicaSet.','0','30d','0','','33765','3s','','','','200','1','0','','0','0','0','0','0','0','1','211d5f6768c044f8ac959724160d3ddc');
INSERT INTO `items` (`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`,`uuid`) values ('33852','18','','10386','MongoDB: Node state','mongodb.rs.state[{#RS_NAME}]','0','7d','365d','0','3','','','','',NULL,'226','','','0','','','','','2',NULL,'An integer between 0 and 10 that represents the replica state of the current member.','0','30d','0','','33765','3s','','','','200','1','0','','0','0','0','0','0','0','0','49e786da687a4b36a17bf617026e3c83');
INSERT INTO `items` (`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`,`uuid`) values ('33853','18','','10386','MongoDB: Preload indexes, rate','mongodb.rs.preload.indexes.rate[{#RS_NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of index entries loaded by members before updating documents as part of the pre-fetch stage of replication.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','ce37bf73939041ab869e4b2faaaedae3');
INSERT INTO `items` (`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`,`uuid`) values ('33854','18','','10386','MongoDB: Preload indexes, ms/s','mongodb.rs.preload.indexes.ms.rate[{#RS_NAME}]','0','7d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) spent loading documents as part of the pre-fetch stage of replication.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','c78b8e62a12b466ea6f1de84d0e9080a');
INSERT INTO `items` (`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`,`uuid`) values ('33855','18','','10386','MongoDB: Preload docs, rate','mongodb.rs.preload.docs.rate[{#RS_NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of documents loaded per second during the pre-fetch stage of replication.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','a364941cb8da416a84c0ca897a04c8f9');
INSERT INTO `items` (`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`,`uuid`) values ('33856','18','','10386','MongoDB: Preload docs, ms/s','mongodb.rs.preload.docs.ms.rate[{#RS_NAME}]','0','7d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) spent loading documents as part of the pre-fetch stage of replication.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','f759273556f5427196c86e822dc7aa95');
INSERT INTO `items` (`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`,`uuid`) values ('33857','18','','10386','MongoDB {#RS_NAME}: Oplog time diff','mongodb.rs.oplog.timediff[{#RS_NAME}]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Oplog window: difference between the first and last operation in the oplog. Only present if there are entries in the oplog.','0','30d','0','','33767','3s','','','','200','1','0','','0','0','0','0','0','0','0','341410549bfd46058a9cb289b3254639');
INSERT INTO `items` (`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`,`uuid`) values ('33858','18','','10386','MongoDB: Network ops, rate','mongodb.rs.network.ops.rate[{#RS_NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of operations read from the replication source per second.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','d2b3075c9728473a9dc8a0585ce43cfd');
INSERT INTO `items` (`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`,`uuid`) values ('33859','18','','10386','MongoDB: Apply batches, rate','mongodb.rs.apply.batches.rate[{#RS_NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of batches applied across all databases per second.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','a460d4356895439d9cf9143b38a18213');
INSERT INTO `items` (`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`,`uuid`) values ('33860','18','','10386','MongoDB: Network getmores, rate','mongodb.rs.network.getmores.rate[{#RS_NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of getmore operations per second.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','86d9ddbfc35447c7889bef826bab016f');
INSERT INTO `items` (`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`,`uuid`) values ('33861','18','','10386','MongoDB: Network getmores, ms/s','mongodb.rs.network.getmores.ms.rate[{#RS_NAME}]','0','7d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) required to collect data from getmore operations.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','68b7ac3fee984352bab02b07e0823f51');
INSERT INTO `items` (`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`,`uuid`) values ('33862','18','','10386','MongoDB: Network bytes, rate','mongodb.rs.network.bytes.rate[{#RS_NAME}]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of data read from the replication sync source per second.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','be060c8d3fec46d5832f8047d3512903');
INSERT INTO `items` (`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`,`uuid`) values ('33863','18','','10386','MongoDB: Replication lag','mongodb.rs.lag[{#RS_NAME}]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Delay between a write operation on the primary and its copy to a secondary.','0','30d','0','','33765','3s','','','','200','1','0','','0','0','0','0','0','0','0','6f07d080d01d45dfa5383640c76175c5');
INSERT INTO `items` (`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`,`uuid`) values ('33864','18','','10386','MongoDB: Buffer, size','mongodb.rs.buffer.size[{#RS_NAME}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Current size of the contents of the oplog buffer.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','fd9b7ea20e1e4e91b7a3c75d5416efe8');
INSERT INTO `items` (`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`,`uuid`) values ('33865','18','','10386','MongoDB: Buffer, max size','mongodb.rs.buffer.max_size[{#RS_NAME}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum size of the buffer.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','0a7522edb2a647989627de85f7e61319');
INSERT INTO `items` (`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`,`uuid`) values ('33866','18','','10386','MongoDB: Buffer','mongodb.rs.buffer.count[{#RS_NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of operations in the oplog buffer.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','8d8b0046f9fd409891d3d225f8a462ff');
INSERT INTO `items` (`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`,`uuid`) values ('33867','18','','10386','MongoDB: Apply ops, rate','mongodb.rs.apply.rate[{#RS_NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of oplog operations applied per second.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','48970eb366f144b4b9ed3f72fbd983a7');
INSERT INTO `items` (`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`,`uuid`) values ('33868','18','','10386','MongoDB: Number of unhealthy replicas','mongodb.rs.unhealthy_count[{#RS_NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of replicated nodes with member health value = 0.','0','30d','0','','33765','3s','','','','200','1','0','','0','0','0','0','0','0','1','b8d4a32cfa9f4b4fb5177e3389d15a5a');
INSERT INTO `items` (`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`,`uuid`) values ('33869','18','','10386','MongoDB: WiredTiger cache: bytes','mongodb.wired_tiger.cache.bytes_in_cache[{#SINGLETON}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Size of the data currently in cache.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','918e705019734ca7a200a7c4422c6bab');
INSERT INTO `items` (`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`,`uuid`) values ('33870','18','','10386','MongoDB: WiredTiger cache: tracked dirty bytes in the cache','mongodb.wired_tiger.cache.tracked_dirty_bytes[{#SINGLETON}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Size of the dirty data in the cache.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','85706ecdaa0e4c789a6542cbde35e80a');
INSERT INTO `items` (`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`,`uuid`) values ('33871','18','','10386','MongoDB: WiredTiger concurrent transactions: write, out','mongodb.wired_tiger.concurrent_transactions.write.out[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of write tickets (concurrent transactions) in use.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','b997757256e441dca58758192126ac44');
INSERT INTO `items` (`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`,`uuid`) values ('33872','18','','10386','MongoDB: WiredTiger concurrent transactions: write, available','mongodb.wired_tiger.concurrent_transactions.write.available[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of available write tickets (concurrent transactions) remaining.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','cb36bdd5ce0442cca03e46436f82c6a2');
INSERT INTO `items` (`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`,`uuid`) values ('33873','18','','10386','MongoDB: WiredTiger concurrent transactions: read, total tickets','mongodb.wired_tiger.concurrent_transactions.read.totalTickets[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of read tickets (concurrent transactions) available.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','46c67d017c5040f691695fcd7645c224');
INSERT INTO `items` (`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`,`uuid`) values ('33874','18','','10386','MongoDB: WiredTiger concurrent transactions: read, out','mongodb.wired_tiger.concurrent_transactions.read.out[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of read tickets (concurrent transactions) in use.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','b9415bf5203840209e149a6be4b110a1');
INSERT INTO `items` (`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`,`uuid`) values ('33875','18','','10386','MongoDB: WiredTiger concurrent transactions: read, available','mongodb.wired_tiger.concurrent_transactions.read.available[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of available read tickets (concurrent transactions) remaining.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','b1a9800865db4ac8959bbdc4b2ab39ee');
INSERT INTO `items` (`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`,`uuid`) values ('33876','18','','10386','MongoDB: WiredTiger cache: unmodified pages evicted','mongodb.wired_tiger.cache.unmodified_pages_evicted[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of pages, that were not modified, evicted from the cache.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','7993e04be54b4dc0b663a105b7b9a3c4');
INSERT INTO `items` (`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`,`uuid`) values ('33877','18','','10386','MongoDB: WiredTiger cache: in-memory page splits','mongodb.wired_tiger.cache.splits[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'In-memory page splits.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','851100dc722b4e74883fa469e062a2e2');
INSERT INTO `items` (`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`,`uuid`) values ('33878','18','','10386','MongoDB: WiredTiger cache: bytes, max','mongodb.wired_tiger.cache.maximum_bytes_configured[{#SINGLETON}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum cache size.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','20edd994c8b04e35bea96e6eacd33611');
INSERT INTO `items` (`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`,`uuid`) values ('33879','18','','10386','MongoDB: WiredTiger cache: pages written from cache','mongodb.wired_tiger.cache.pages_written[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of pages written from the cache.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','0aa52db6d7684a2496fb0599139cd142');
INSERT INTO `items` (`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`,`uuid`) values ('33880','18','','10386','MongoDB: WiredTiger cache: pages read into cache','mongodb.wired_tiger.cache.pages_read[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of pages read into the cache.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','c01890f434b14e998e2aea7d61d600e5');
INSERT INTO `items` (`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`,`uuid`) values ('33881','18','','10386','MongoDB: WiredTiger cache: pages held in cache','mongodb.wired_tiger.cache.pages_in_cache[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of pages currently held in the cache.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','547ccf6f4c7f4629831e39f72cbcfb70');
INSERT INTO `items` (`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`,`uuid`) values ('33882','18','','10386','MongoDB: WiredTiger cache: pages evicted by application threads, rate','mongodb.wired_tiger.cache.pages_evicted_threads.rate[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of page evicted by application threads per second.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','634060250f474f269aed1df61f709ca7');
INSERT INTO `items` (`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`,`uuid`) values ('33883','18','','10386','MongoDB: WiredTiger cache: modified pages evicted','mongodb.wired_tiger.cache.modified_pages_evicted[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of pages, that have been modified, evicted from the cache.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','692685a9f3d9461daa88fdfcb0771e05');
INSERT INTO `items` (`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`,`uuid`) values ('33884','18','','10386','MongoDB: WiredTiger cache: max page size at eviction','mongodb.wired_tiger.cache.max_page_size_eviction[{#SINGLETON}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum page size at eviction.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','4e07f3e517bf41c1b42661d3bbd5237e');
INSERT INTO `items` (`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`,`uuid`) values ('33885','18','','10386','MongoDB: WiredTiger concurrent transactions: write, total tickets','mongodb.wired_tiger.concurrent_transactions.write.totalTickets[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of write tickets (concurrent transactions) available.','0','30d','0','','33764','3s','','','','200','1','0','','0','0','0','0','0','0','0','e9eb61954ab6462d9dbcf9206467b076');
INSERT INTO `items` (`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`,`uuid`) values ('33891','18','','10387','MongoDB cluster: Operations: command','mongodb.opcounters.command.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'"The number of commands issued to the database per second.\r\nCounts all commands except the write commands: insert, update, and delete."','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','b98fb6d98b9a4282ba0b2d9770722035');
INSERT INTO `items` (`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`,`uuid`) values ('33892','18','','10387','MongoDB cluster: Bytes in, rate','mongodb.network.bytes_in.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of bytes that the server has received over network connections initiated by clients or other mongod/mongos instances per second.','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','59481dcb9b5a487985297e2f41f72dd1');
INSERT INTO `items` (`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`,`uuid`) values ('33893','18','','10387','MongoDB cluster: Bytes out, rate','mongodb.network.bytes_out.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of bytes that the server has sent over network connections initiated by clients or other mongod/mongos instances per second.','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','13cba18ba344440bba4371585fd8e4c0');
INSERT INTO `items` (`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`,`uuid`) values ('33894','18','','10387','MongoDB cluster: Requests, rate','mongodb.network.numRequests.rate','0','7d','365d','0','0','','!Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of distinct requests that the server has received per second','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','eb821875b59c4bf8bc98f9afec146e88');
INSERT INTO `items` (`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`,`uuid`) values ('33895','18','','10387','MongoDB cluster: Operations: getmore, rate','mongodb.opcounters.getmore.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'"The number of “getmore” operations the mongos per second. This counter can be high even if the query count is low.\r\nSecondary nodes send getMore operations as part of the replication process."','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','165d5a180ed541ba9a19916134962368');
INSERT INTO `items` (`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`,`uuid`) values ('33896','18','','10387','MongoDB cluster: Operations: delete','mongodb.opcounters.delete.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of delete operations the mongos instance per second.','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','f4e917e9cdd3439abbe6ea7b9a9034b7');
INSERT INTO `items` (`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`,`uuid`) values ('33897','18','','10387','MongoDB cluster: Memory: virtual','mongodb.mem.virtual','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of virtual memory used by the mongos process.','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','2c5548ae9c614efb81e58a2e4ec3d3e4');
INSERT INTO `items` (`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`,`uuid`) values ('33898','18','','10387','MongoDB cluster: Operations: insert, rate','mongodb.opcounters.insert.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of insert operations received the mongos instance per second.','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','021a00004efe434a9b2f316c0d25c175');
INSERT INTO `items` (`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`,`uuid`) values ('33899','18','','10387','MongoDB cluster: Operations: query, rate','mongodb.opcounters.query.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of queries received the mongos instance per second.','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','0866b3b6bc1748a98e8bfd9308152304');
INSERT INTO `items` (`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`,`uuid`) values ('33900','18','','10387','MongoDB cluster: Operations: update, rate','mongodb.opcounters.update.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of update operations the mongos instance per second.','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','329e6d41de1c47dba8f3f9d287c93eda');
INSERT INTO `items` (`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`,`uuid`) values ('33901','18','','10387','MongoDB cluster: Uptime','mongodb.uptime','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of seconds since Mongos server start','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','e88da2ca6ccc4fdfa256fa51e050792d');
INSERT INTO `items` (`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`,`uuid`) values ('33902','18','','10387','MongoDB cluster: Cursor: open no timeout','mongodb.metrics.cursor.open.no_timeout','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open cursors with the option DBQuery.Option.noTimeout set to prevent timeout after a period of inactivity.','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','16925e0ca40747d1818e512962d31a83');
INSERT INTO `items` (`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`,`uuid`) values ('33903','18','','10387','MongoDB cluster: Architecture','mongodb.mem.bits','0','7d','365d','0','3','','bit','','',NULL,NULL,'','','0','','','','','0',NULL,'A number, either 64 or 32, that indicates whether the MongoDB instance is compiled for 64-bit or 32-bit architecture.','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','df2423ff36e24357809c7a7211144898');
INSERT INTO `items` (`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`,`uuid`) values ('33904','18','','10387','MongoDB cluster: Memory: resident','mongodb.mem.resident','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of memory currently used by the database process.','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','f6a06e0d7cf84cc1a40d8d2dcde7b01a');
INSERT INTO `items` (`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`,`uuid`) values ('33905','18','','10387','MongoDB cluster: Connections, active','mongodb.connections.active','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'"The number of active client connections to the server.\r\nActive client connections refers to client connections that currently have operations in progress.\r\nAvailable starting in 4.0.7, 0 for older versions."','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','fccb23cdee01483cabe6ef14a532664b');
INSERT INTO `items` (`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`,`uuid`) values ('33906','18','','10387','MongoDB cluster: Last seen configserver','mongodb.last_seen_config_server','0','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The latest optime of the CSRS primary that the mongos has seen.','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','fa28a98992e74cdf8c54b4faa01de89a');
INSERT INTO `items` (`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`,`uuid`) values ('33907','18','','10387','MongoDB cluster: Cursor: timed out, rate','mongodb.cursor.timed_out.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cursors that time out, per second.','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','5d3a3c724a6a45fb99a0af5330bf9cf2');
INSERT INTO `items` (`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`,`uuid`) values ('33908','18','','10387','MongoDB cluster: Cursor: open total','mongodb.cursor.open.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cursors that MongoDB is maintaining for clients.','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','45bfa997dab9498e8e3851de750e21a2');
INSERT INTO `items` (`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`,`uuid`) values ('33909','18','','10387','MongoDB cluster: Cursor: open pinned','mongodb.cursor.open.pinned','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of pinned open cursors.','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','22ca0c06006b49009f25fcd829f1b5bf');
INSERT INTO `items` (`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`,`uuid`) values ('33910','18','','10387','MongoDB cluster: Connection pool: scoped','mongodb.connection_pool.scoped','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of active and stored outgoing scoped synchronous connections from the current mongos instance to other members of the sharded cluster.','0','30d','0','','33889','3s','','','','200','1','0','','0','0','0','0','0','0','0','55dbfe5d52c44954b9e5669a043f10b4');
INSERT INTO `items` (`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`,`uuid`) values ('33911','18','','10387','MongoDB cluster: Connection pool: refreshing','mongodb.connection_pool.refreshing','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Reports the total number of outgoing connections from the current mongos instance to other members of the sharded cluster that are currently being refreshed.','0','30d','0','','33889','3s','','','','200','1','0','','0','0','0','0','0','0','0','22c66363ffae4ae2b436a26b8ecca3ab');
INSERT INTO `items` (`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`,`uuid`) values ('33912','18','','10387','MongoDB cluster: Connection pool: in use','mongodb.connection_pool.in_use','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Reports the total number of outgoing connections from the current mongos instance to other members of the sharded cluster set that are currently in use.','0','30d','0','','33889','3s','','','','200','1','0','','0','0','0','0','0','0','0','9394a15a25e342688335b7d83db25b2d');
INSERT INTO `items` (`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`,`uuid`) values ('33913','18','','10387','MongoDB cluster: Connection pool: created, rate','mongodb.connection_pool.created.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of outgoing connections created per second by the current mongos instance to other members of the sharded cluster.','0','30d','0','','33889','3s','','','','200','1','0','','0','0','0','0','0','0','0','9b9d601d2d5c4d8da5d97c2785d8e0fa');
INSERT INTO `items` (`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`,`uuid`) values ('33914','18','','10387','MongoDB cluster: Connection pool: client connections','mongodb.connection_pool.client','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active and stored outgoing synchronous connections from the current mongos instance to other members of the sharded cluster.','0','30d','0','','33889','3s','','','','200','1','0','','0','0','0','0','0','0','0','58522550e8bc4f479681d961ba789b92');
INSERT INTO `items` (`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`,`uuid`) values ('33915','18','','10387','MongoDB cluster: Connection pool: available','mongodb.connection_pool.available','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of available outgoing connections from the current mongos instance to other members of the sharded cluster.','0','30d','0','','33889','3s','','','','200','1','0','','0','0','0','0','0','0','0','281e5a1a19dc402a992331252b27ee63');
INSERT INTO `items` (`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`,`uuid`) values ('33916','18','','10387','MongoDB cluster: New connections, rate','mongodb.connections.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'"Rate of all incoming connections created to the server."','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','18ed07f0efb54f55970483d15613d320');
INSERT INTO `items` (`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`,`uuid`) values ('33917','18','','10387','MongoDB cluster: Connections, current','mongodb.connections.current','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'"The number of incoming connections from clients to the database server.\r\nThis number includes the current shell session"','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','087d1a405b7a456692a52b0d20c43eb3');
INSERT INTO `items` (`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`,`uuid`) values ('33918','18','','10387','MongoDB cluster: Connections, available','mongodb.connections.available','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'"The number of unused incoming connections available."','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','1f881cbd515d462eb5839fe4e1e21ee1');
INSERT INTO `items` (`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`,`uuid`) values ('33919','18','','10387','MongoDB cluster: Mongos version','mongodb.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the Mongos server','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','dda1722d6e6b4189978fd44ace0f8f86');
INSERT INTO `items` (`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`,`uuid`) values ('33926','18','','10387','MongoDB {#DBNAME}.{#COLLECTION}: Objects, avg size','mongodb.collection.avg_obj_size["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size of the average object in the collection in bytes.','0','30d','0','','33924','3s','','','','200','1','0','','0','0','0','0','0','0','0','253af5ef7858482fbeaa0c06c033b47a');
INSERT INTO `items` (`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`,`uuid`) values ('33927','18','','10387','MongoDB {#DBNAME}.{#COLLECTION}: Capped','mongodb.collection.capped["{#DBNAME}","{#COLLECTION}"]','0','7d','0','0','1','','','','',NULL,'228','','','0','','','','','2',NULL,'Whether or not the collection is capped.','0','30d','0','','33924','3s','','','','200','1','0','','0','0','0','0','0','0','0','59465dc6e9384c7baf1a6239a6c66f0e');
INSERT INTO `items` (`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`,`uuid`) values ('33928','18','','10387','MongoDB {#DBNAME}.{#COLLECTION}: Objects, count','mongodb.collection.count["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of objects in the collection.','0','30d','0','','33924','3s','','','','200','1','0','','0','0','0','0','0','0','0','03b8eb71502a4805902f7a5856e7c7b6');
INSERT INTO `items` (`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`,`uuid`) values ('33929','18','','10387','MongoDB {#DBNAME}.{#COLLECTION}: Capped, max number','mongodb.collection.max["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum number of documents in a capped collection.','0','30d','0','','33924','3s','','','','200','1','0','','0','0','0','0','0','0','0','2a78fa441bef4523bd0fee4934fc7b55');
INSERT INTO `items` (`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`,`uuid`) values ('33930','18','','10387','MongoDB {#DBNAME}.{#COLLECTION}: Capped, max size','mongodb.collection.max_size["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum size of a capped collection in bytes.','0','30d','0','','33924','3s','','','','200','1','0','','0','0','0','0','0','0','0','294985df777b42e0a56a229366bbac5d');
INSERT INTO `items` (`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`,`uuid`) values ('33931','18','','10387','MongoDB {#DBNAME}.{#COLLECTION}: Indexes','mongodb.collection.nindexes["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of indices on the collection.','0','30d','0','','33924','3s','','','','200','1','0','','0','0','0','0','0','0','0','8da7cc960e8d42ccb3efe065fff5f0e9');
INSERT INTO `items` (`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`,`uuid`) values ('33932','18','','10387','MongoDB {#DBNAME}.{#COLLECTION}: Size','mongodb.collection.size["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total size in bytes of the data in the collection plus the size of every indexes on the mongodb.collection.','0','30d','0','','33924','3s','','','','200','1','0','','0','0','0','0','0','0','0','191a21d9a1b94b238009e31433dbaa38');
INSERT INTO `items` (`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`,`uuid`) values ('33933','18','','10387','MongoDB {#DBNAME}.{#COLLECTION}: Storage size','mongodb.collection.storage_size["{#DBNAME}","{#COLLECTION}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total storage space allocated to this collection for document storage.','0','30d','0','','33924','3s','','','','200','1','0','','0','0','0','0','0','0','0','ef82b9f814cd4917b3714e73d7ac87ac');
INSERT INTO `items` (`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`,`uuid`) values ('33934','18','','10387','MongoDB {#DBNAME}: Size, data','mongodb.db.data_size["{#DBNAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total size of the data held in this database including the padding factor.','0','30d','0','','33925','3s','','','','200','1','0','','0','0','0','0','0','0','0','6dea9a371b94402aad9f8c6d7fcc5761');
INSERT INTO `items` (`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`,`uuid`) values ('33935','18','','10387','MongoDB {#DBNAME}: Extents','mongodb.db.extents["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Contains a count of the number of extents in the database across all collections.','0','30d','0','','33925','3s','','','','200','1','0','','0','0','0','0','0','0','0','98c9e25c24b146aeaec4953913bb720a');
INSERT INTO `items` (`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`,`uuid`) values ('33936','18','','10387','MongoDB {#DBNAME}: Size, file','mongodb.db.file_size["{#DBNAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total size of the data held in this database including the padding factor (only available with the mmapv1 storage engine).','0','30d','0','','33925','3s','','','','200','1','0','','0','0','0','0','0','0','0','cfb3598af7f14911965d548ea815cb33');
INSERT INTO `items` (`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`,`uuid`) values ('33937','18','','10387','MongoDB {#DBNAME}: Size, index','mongodb.db.index_size["{#DBNAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total size of all indexes created on this database.','0','30d','0','','33925','3s','','','','200','1','0','','0','0','0','0','0','0','0','1716a51105f2415eb179a43022656e4a');
INSERT INTO `items` (`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`,`uuid`) values ('33938','18','','10387','MongoDB {#DBNAME}: Objects, count','mongodb.db.objects["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of objects (documents) in the database across all collections.','0','30d','0','','33925','3s','','','','200','1','0','','0','0','0','0','0','0','0','f28f2df7b1e64aea99b20ca8deda2a25');
INSERT INTO `items` (`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`,`uuid`) values ('33939','18','','10387','MongoDB {#DBNAME}: Objects, avg size','mongodb.db.size["{#DBNAME}"]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The average size of each document in bytes.','0','30d','0','','33925','3s','','','','200','1','0','','0','0','0','0','0','0','0','ed3076f82f494b6e953a9a5a3199df06');
INSERT INTO `items` (`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`,`uuid`) values ('33940','18','','10387','MongoDB {#DBNAME}: Size, storage','mongodb.db.storage_size["{#DBNAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total amount of space allocated to collections in this database for document storage.','0','30d','0','','33925','3s','','','','200','1','0','','0','0','0','0','0','0','0','ae54fbae851b4b5a949611420fbc8ce0');
INSERT INTO `items` (`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`,`uuid`) values ('33942','18','','10327','MSSQL AG \'{#GROUP_NAME}\' Non-Local DB \'*{#REPLICA_NAME}*{#DBNAME}\': Log queue size','mssql.non-local_db.log_send_queue_size["{#GROUP_NAME}*{#REPLICA_NAME}*{#DBNAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of the log records of the primary database that has not been sent to the secondary databases.','0','30d','0','','33941','3s','','','','200','1','0','','0','0','0','0','0','0','0','32d3797d6b22413e98aa206d3092947f');
INSERT INTO `items` (`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`,`uuid`) values ('33943','18','','10327','MSSQL AG \'{#GROUP_NAME}\' Non-Local DB \'*{#REPLICA_NAME}*{#DBNAME}\': Redo log queue size','mssql.non-local_db.redo_queue_size["{#GROUP_NAME}*{#REPLICA_NAME}*{#DBNAME}"]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of log records in the log files of the secondary replica that has not yet been redone.','0','30d','0','','33941','3s','','','','200','1','0','','0','0','0','0','0','0','0','66d9735553754192bb9acf7b27c1501f');
INSERT INTO `items` (`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`,`uuid`) values ('34240','18','','10396','Cluster status','netapp.cluster.status','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The status of the cluster: ok, error, partial_no_data, partial_no_response, partial_other_error, negative_delta, backfilled_data, inconsistent_delta_time, inconsistent_old_data.','0','30d','0','','34235','3s','','','','200','1','0','','0','0','0','0','0','0','0','5029bccf54f542b1a2dc760067ddabe3');
INSERT INTO `items` (`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`,`uuid`) values ('34241','18','','10396','Cluster location','netapp.cluster.location','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The location of the cluster.','0','30d','0','','34235','3s','','','','200','1','0','','0','0','0','0','0','0','0','2c98b9d6353a4b1f9c0a794681788c22');
INSERT INTO `items` (`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`,`uuid`) values ('34242','18','','10396','Cluster name','netapp.cluster.name','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The name of the cluster.','0','30d','0','','34235','3s','','','','200','1','0','','0','0','0','0','0','0','0','a052583b18b44ed9b8df1c1eca375113');
INSERT INTO `items` (`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`,`uuid`) values ('34243','18','','10396','Cluster IOPS, other rate','netapp.cluster.statistics.iops.other.rate','0','7d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of I/O operations observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on.','0','30d','0','','34235','3s','','','','200','1','0','','0','0','0','0','0','0','0','63c3ea4634024fb88841cee7e64c964b');
INSERT INTO `items` (`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`,`uuid`) values ('34244','18','','10396','Cluster IOPS, read rate','netapp.cluster.statistics.iops.read.rate','0','7d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of I/O operations observed at the storage object. Performance metric for read I/O operations.','0','30d','0','','34235','3s','','','','200','1','0','','0','0','0','0','0','0','0','5f38f233c9c0446e8bb9e60229294cdf');
INSERT INTO `items` (`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`,`uuid`) values ('34245','18','','10396','Cluster IOPS, total rate','netapp.cluster.statistics.iops.total.rate','0','7d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of I/O operations observed at the storage object. Performance metric aggregated over all types of I/O operations.','0','30d','0','','34235','3s','','','','200','1','0','','0','0','0','0','0','0','0','8380db1dbf2a4c2e95eff184d3a61fde');
INSERT INTO `items` (`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`,`uuid`) values ('34246','18','','10396','Cluster IOPS, write rate','netapp.cluster.statistics.iops.write.rate','0','7d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of I/O operations observed at the storage object. Performance metric for write I/O operations.','0','30d','0','','34235','3s','','','','200','1','0','','0','0','0','0','0','0','0','65a4b938010045ef9735a7d9f6239ccd');
INSERT INTO `items` (`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`,`uuid`) values ('34247','18','','10396','Cluster IOPS raw, other','netapp.cluster.statistics.iops_raw.other','0','7d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of I/O operations observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on.','0','30d','0','','34235','3s','','','','200','1','0','','0','0','0','0','0','0','0','77253d87ce8242afa45a3c79ab96a91e');
INSERT INTO `items` (`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`,`uuid`) values ('34248','18','','10396','Cluster software version','netapp.cluster.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This returns the cluster version information. When the cluster has more than one node, the cluster version is equivalent to the lowest of generation, major, and minor versions on all nodes.','0','30d','0','','34235','3s','','','','200','1','0','','0','0','0','0','0','0','0','cd56dc70e28f4a3382f2f1b08a4fa584');
INSERT INTO `items` (`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`,`uuid`) values ('34249','18','','10396','Cluster throughput, write rate','netapp.cluster.statistics.throughput.write.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Throughput bytes observed at the storage object. Performance metric for write I/O operations.','0','30d','0','','34235','3s','','','','200','1','0','','0','0','0','0','0','0','0','c06c118d3fbe48b78db12e43232d6d97');
INSERT INTO `items` (`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`,`uuid`) values ('34250','18','','10396','Cluster IOPS raw, write','netapp.cluster.statistics.iops_raw.write','0','7d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of I/O operations observed at the storage object. Performance metric for write I/O operations.','0','30d','0','','34235','3s','','','','200','1','0','','0','0','0','0','0','0','0','92640d6a2d044100a59c5d180d43fbce');
INSERT INTO `items` (`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`,`uuid`) values ('34251','18','','10396','Cluster throughput, total rate','netapp.cluster.statistics.throughput.total.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Throughput bytes observed at the storage object. Performance metric aggregated over all types of I/O operations.','0','30d','0','','34235','3s','','','','200','1','0','','0','0','0','0','0','0','0','e894ad01c2d74edfb8f954198979070c');
INSERT INTO `items` (`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`,`uuid`) values ('34252','18','','10396','Cluster throughput, read rate','netapp.cluster.statistics.throughput.read.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Throughput bytes observed at the storage object. Performance metric for read I/O operations.','0','30d','0','','34235','3s','','','','200','1','0','','0','0','0','0','0','0','0','a1fad2e35b8f4c1da450b953d3952263');
INSERT INTO `items` (`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`,`uuid`) values ('34253','18','','10396','Cluster throughput, other rate','netapp.cluster.statistics.throughput.other.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Throughput bytes observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on.','0','30d','0','','34235','3s','','','','200','1','0','','0','0','0','0','0','0','0','61acb5f1435f4452a789c44bfd105da3');
INSERT INTO `items` (`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`,`uuid`) values ('34254','18','','10396','Cluster latency raw, write','netapp.cluster.statistics.latency_raw.write','0','7d','365d','0','3','','!mcs','','',NULL,NULL,'','','0','','','','','0',NULL,'The raw latency in microseconds observed at the storage object. This can be divided by the raw IOPS value to calculate the average latency per I/O operation. Performance metric for write I/O operations.','0','30d','0','','34235','3s','','','','200','1','0','','0','0','0','0','0','0','0','fb73702348d3468cad5312af772eaeb9');
INSERT INTO `items` (`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`,`uuid`) values ('34255','18','','10396','Cluster latency raw, total','netapp.cluster.statistics.latency_raw.total','0','7d','365d','0','3','','!mcs','','',NULL,NULL,'','','0','','','','','0',NULL,'The raw latency in microseconds observed at the storage object. This can be divided by the raw IOPS value to calculate the average latency per I/O operation. Performance metric aggregated over all types of I/O operations.','0','30d','0','','34235','3s','','','','200','1','0','','0','0','0','0','0','0','0','78253f625b7e468898f6dd48c9707ad3');
INSERT INTO `items` (`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`,`uuid`) values ('34256','18','','10396','Cluster IOPS raw, read','netapp.cluster.statistics.iops_raw.read','0','7d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of I/O operations observed at the storage object. Performance metric for read I/O operations.','0','30d','0','','34235','3s','','','','200','1','0','','0','0','0','0','0','0','0','14262390978b45729fa3ac593cf21a69');
INSERT INTO `items` (`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`,`uuid`) values ('34257','18','','10396','Cluster latency raw, other','netapp.cluster.statistics.latency_raw.other','0','7d','365d','0','3','','!mcs','','',NULL,NULL,'','','0','','','','','0',NULL,'The raw latency in microseconds observed at the storage object. This can be divided by the raw IOPS value to calculate the average latency per I/O operation. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on.','0','30d','0','','34235','3s','','','','200','1','0','','0','0','0','0','0','0','0','acd5b961c4d843589514771fa9a0aaa3');
INSERT INTO `items` (`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`,`uuid`) values ('34258','18','','10396','Cluster IOPS raw, total','netapp.cluster.statistics.iops_raw.total','0','7d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of I/O operations observed at the storage object. Performance metric aggregated over all types of I/O operations.','0','30d','0','','34235','3s','','','','200','1','0','','0','0','0','0','0','0','0','7a0407b68348478f9bc56bf0629f59d2');
INSERT INTO `items` (`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`,`uuid`) values ('34259','18','','10396','Cluster latency raw, read','netapp.cluster.statistics.latency_raw.read','0','7d','365d','0','3','','!mcs','','',NULL,NULL,'','','0','','','','','0',NULL,'The raw latency in microseconds observed at the storage object. This can be divided by the raw IOPS value to calculate the average latency per I/O operation. Performance metric for read I/O operations.','0','30d','0','','34235','3s','','','','200','1','0','','0','0','0','0','0','0','0','3e81e918028d412eaa2cb27718ae3b98');
INSERT INTO `items` (`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`,`uuid`) values ('34262','18','','10396','FRUs discovery','netapp.frus.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','','34233','3s','','','','200','1','0','','0','0','0','0','0','0','0','1ae3dea03a464096819de8a206b0780e');
INSERT INTO `items` (`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`,`uuid`) values ('34273','18','','10396','{#ID}: State','netapp.chassis.state[{#ID}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The chassis state: ok, error.','0','30d','0','','34226','3s','','','','200','1','0','','0','0','0','0','0','0','0','7e6b1e1d5b484080b8f31929a78e44e7');
INSERT INTO `items` (`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`,`uuid`) values ('34274','18','','10396','{#DISKNAME}: State','netapp.disk.state[{#NODENAME},{#DISKNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The state of the disk. Possible values: broken, copy, maintenance, partner, pending, present, reconstructing, removed, spare, unfail, zeroing','0','30d','0','','34234','3s','','','','200','1','0','','0','0','0','0','0','0','0','f170a3d8e98048ce91bf10f1ebcd2611');
INSERT INTO `items` (`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`,`uuid`) values ('34275','18','','10396','{#FRUID}: State','netapp.chassis.fru.state[{#CHASSISID},{#FRUID}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The FRU state: ok, error.','0','30d','0','','34233','3s','','','','200','1','0','','0','0','0','0','0','0','0','643c9e0a8869464bacae0ff6161afe36');
INSERT INTO `items` (`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`,`uuid`) values ('34276','18','','10396','{#LUNNAME}: Space size','netapp.lun.space.size[{#SVMNAME},{#LUNNAME}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total provisioned size of the LUN.','0','30d','0','','34232','3s','','','','200','1','0','','0','0','0','0','0','0','0','05dfdbc0cacb4f1fa458180e4b4fe35c');
INSERT INTO `items` (`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`,`uuid`) values ('34277','18','','10396','{#LUNNAME}: Space used','netapp.lun.space.used[{#SVMNAME},{#LUNNAME}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of space consumed by the main data stream of the LUN.','0','30d','0','','34232','3s','','','','200','1','0','','0','0','0','0','0','0','0','e12b5d04f3264ee2b602d459fb64c6ee');
INSERT INTO `items` (`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`,`uuid`) values ('34278','18','','10396','{#LUNNAME}: Container state','netapp.lun.status.container_state[{#SVMNAME},{#LUNNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The state of the volume and aggregate that contain the LUN: online, aggregate_offline, volume_offline. LUNs are only available when their containers are available.','0','30d','0','','34232','3s','','','','200','1','0','','0','0','0','0','0','0','0','701fdb0345874ea39afc3362faa2f5a4');
INSERT INTO `items` (`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`,`uuid`) values ('34279','18','','10396','{#LUNNAME}: State','netapp.lun.status.state[{#SVMNAME},{#LUNNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The state of the LUN. Normal states for a LUN are online and offline. Other states indicate errors. Possible values: foreign_lun_error, nvfail, offline, online, space_error.','0','30d','0','','34232','3s','','','','200','1','0','','0','0','0','0','0','0','0','ae15b98b9de2472e8c56ddb2a13d7981');
INSERT INTO `items` (`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`,`uuid`) values ('34280','18','','10396','{#NODENAME}: Software version','netapp.node.version[{#NODENAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This returns the cluster version information. When the cluster has more than one node, the cluster version is equivalent to the lowest of generation, major, and minor versions on all nodes.','0','30d','0','','34231','3s','','','','200','1','0','','0','0','0','0','0','0','0','23474d549a4c4e80b2e89c12a909dc0c');
INSERT INTO `items` (`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`,`uuid`) values ('34281','18','','10396','{#NODENAME}: Controller over temperature','netapp.nodes.controller.over_temperature[{#NODENAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Specifies whether the hardware is currently operating outside of its recommended temperature range. The hardware shuts down if the temperature exceeds critical thresholds. Possible values: over, normal','0','30d','0','','34231','3s','','','','200','1','0','','0','0','0','0','0','0','0','416e2a3d707d4a5389c90566b588bf7f');
INSERT INTO `items` (`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`,`uuid`) values ('34282','18','','10396','{#NODENAME}: Location','netapp.nodes.location[{#NODENAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The location of the node.','0','30d','0','','34231','3s','','','','200','1','0','','0','0','0','0','0','0','0','f554158202d347388304751c8bdf7515');
INSERT INTO `items` (`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`,`uuid`) values ('34283','18','','10396','{#NODENAME}: Membership','netapp.nodes.membership[{#NODENAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Possible values:\r\n available - If a node is available, this means it is detected on the internal cluster network and can be added to the cluster. Nodes that have a membership of “available” are not returned when a GET request is called when the cluster exists. A query on the “membership” property for available must be provided to scan for nodes on the cluster network. Nodes that have a membership of “available” are returned automatically before a cluster is created.\r\n joining - Joining nodes are in the process of being added to the cluster. The node may be progressing through the steps to become a member or might have failed. The job to add the node or create the cluster provides details on the current progress of the node.\r\n member - Nodes that are members have successfully joined the cluster.','0','30d','0','','34231','3s','','','','200','1','0','','0','0','0','0','0','0','0','be634e1ba1ea454fbc6c7c8224909187');
INSERT INTO `items` (`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`,`uuid`) values ('34284','18','','10396','{#NODENAME}: State','netapp.nodes.state[{#NODENAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'State of the node:\r\nup - Node is up and operational.\r\nbooting - Node is booting up.\r\ndown - Node has stopped or is dumping core.\r\ntaken_over - Node has been taken over by its HA partner and is not yet waiting for giveback.\r\nwaiting_for_giveback - Node has been taken over by its HA partner and is waiting for the HA partner to giveback disks.\r\ndegraded - Node has one or more critical services offline.\r\nunknown - Node or its HA partner cannot be contacted and there is no information on the node\'s state.','0','30d','0','','34231','3s','','','','200','1','0','','0','0','0','0','0','0','0','5b3b6fab8fe54f3585c1a270caad2b3e');
INSERT INTO `items` (`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`,`uuid`) values ('34285','18','','10396','{#NODENAME}: Uptime','netapp.nodes.uptime[{#NODENAME}]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The total time, in seconds, that the node has been up.','0','30d','0','','34231','3s','','','','200','1','0','','0','0','0','0','0','0','0','56e0b6df4dbd456880c2481bec40b41e');
INSERT INTO `items` (`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`,`uuid`) values ('34286','18','','10396','{#ETHPORTNAME}: State','netapp.port.eth.state[{#NODENAME},{#ETHPORTNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The operational state of the port. Possible values: up, down.','0','30d','0','','34230','3s','','','','200','1','0','','0','0','0','0','0','0','0','dda2086a96f844c7b5a8002549fe6bf5');
INSERT INTO `items` (`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`,`uuid`) values ('34287','18','','10396','{#FCPORTNAME}: Description','netapp.port.fc.description[{#NODENAME},{#FCPORTNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'A description of the FC port.','0','30d','0','','34229','3s','','','','200','1','0','','0','0','0','0','0','0','0','b4358be015104524811f011ddf0fb1a1');
INSERT INTO `items` (`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`,`uuid`) values ('34288','18','','10396','{#FCPORTNAME}: State','netapp.port.fc.state[{#NODENAME},{#FCPORTNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The operational state of the FC port. Possible values:\r\nstartup - The port is booting up.\r\nlink_not_connected - The port has finished initialization, but a link with the fabric is not established.\r\nonline - The port is initialized and a link with the fabric has been established.\r\nlink_disconnected - The link was present at one point on this port but is currently not established.\r\nofflined_by_user - The port is administratively disabled.\r\nofflined_by_system - The port is set to offline by the system. This happens when the port encounters too many errors.\r\nnode_offline - The state information for the port cannot be retrieved. The node is offline or inaccessible.','0','30d','0','','34229','3s','','','','200','1','0','','0','0','0','0','0','0','0','e939576d865041dd8f4af24bb7811117');
INSERT INTO `items` (`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`,`uuid`) values ('34289','18','','10396','{#SVMNAME}: Comment','netapp.svm.comment[{#SVMNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The comment for the SVM.','0','30d','0','','34228','3s','','','','200','1','0','','0','0','0','0','0','0','0','e7fab9c64c5348158418a02b1139eb68');
INSERT INTO `items` (`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`,`uuid`) values ('34290','18','','10396','{#SVMNAME}: State','netapp.svm.state[{#SVMNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'SVM state: starting, running, stopping, stopped, deleting.','0','30d','0','','34228','3s','','','','200','1','0','','0','0','0','0','0','0','0','6534f78b5b6c4e61b8ee0ab05bcc6fa3');
INSERT INTO `items` (`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`,`uuid`) values ('34291','18','','10396','{#VOLUMENAME}: SVM name','netapp.volume.svm_name[{#VOLUMENAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The volume belongs this SVM.','0','30d','0','','34238','3s','','','','200','1','0','','0','0','0','0','0','0','0','1b48c3ecd33f4acd88b57f5c76c2892c');
INSERT INTO `items` (`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`,`uuid`) values ('34292','18','','10396','{#VOLUMENAME}: Volume throughput, write rate','netapp.volume.statistics.throughput.write.rate[{#VOLUMENAME}]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Throughput bytes observed at the storage object. Performance metric for write I/O operations.','0','30d','0','','34238','3s','','','','200','1','0','','0','0','0','0','0','0','0','9d1cf308b4de4b88a632eee0b5a90267');
INSERT INTO `items` (`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`,`uuid`) values ('34293','18','','10396','{#VOLUMENAME}: Volume throughput, total rate','netapp.volume.statistics.throughput.total.rate[{#VOLUMENAME}]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Throughput bytes observed at the storage object. Performance metric aggregated over all types of I/O operations.','0','30d','0','','34238','3s','','','','200','1','0','','0','0','0','0','0','0','0','9218d4e861244353bc779fc2dfd561b9');
INSERT INTO `items` (`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`,`uuid`) values ('34294','18','','10396','{#VOLUMENAME}: Volume throughput, read rate','netapp.volume.statistics.throughput.read.rate[{#VOLUMENAME}]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Throughput bytes observed at the storage object. Performance metric for read I/O operations.','0','30d','0','','34238','3s','','','','200','1','0','','0','0','0','0','0','0','0','fcbef2bcc3004ba6b1f122f00419fc2c');
INSERT INTO `items` (`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`,`uuid`) values ('34295','18','','10396','{#VOLUMENAME}: Volume throughput, other rate','netapp.volume.statistics.throughput.other.rate[{#VOLUMENAME}]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Throughput bytes observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on.','0','30d','0','','34238','3s','','','','200','1','0','','0','0','0','0','0','0','0','f23b393e033a4285b7f5b8742b0be669');
INSERT INTO `items` (`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`,`uuid`) values ('34296','18','','10396','{#VOLUMENAME}: Volume latency raw, write','netapp.volume.statistics.latency_raw.write[{#VOLUMENAME}]','0','7d','365d','0','3','','!mcs','','',NULL,NULL,'','','0','','','','','2',NULL,'The raw latency in microseconds observed at the storage object. Performance metric for write I/O operations.','0','30d','0','','34238','3s','','','','200','1','0','','0','0','0','0','0','0','0','a6c653c4a6164de9971b22e7a28c40d9');
INSERT INTO `items` (`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`,`uuid`) values ('34297','18','','10396','{#VOLUMENAME}: Volume latency raw, total','netapp.volume.statistics.latency_raw.total[{#VOLUMENAME}]','0','7d','365d','0','3','','!mcs','','',NULL,NULL,'','','0','','','','','2',NULL,'The raw latency in microseconds observed at the storage object. Performance metric aggregated over all types of I/O operations.','0','30d','0','','34238','3s','','','','200','1','0','','0','0','0','0','0','0','0','48479110a92b4b3094e72882ec9d4812');
INSERT INTO `items` (`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`,`uuid`) values ('34298','18','','10396','{#VOLUMENAME}: Volume latency raw, read','netapp.volume.statistics.latency_raw.read[{#VOLUMENAME}]','0','7d','365d','0','3','','!mcs','','',NULL,NULL,'','','0','','','','','2',NULL,'The raw latency in microseconds observed at the storage object. Performance metric for read I/O operations.','0','30d','0','','34238','3s','','','','200','1','0','','0','0','0','0','0','0','0','0923b8b2933e4b309a4b751eea06353a');
INSERT INTO `items` (`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`,`uuid`) values ('34299','18','','10396','{#VOLUMENAME}: Volume latency raw, other','netapp.volume.statistics.latency_raw.other[{#VOLUMENAME}]','0','7d','365d','0','3','','!mcs','','',NULL,NULL,'','','0','','','','','2',NULL,'The raw latency in microseconds observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on.','0','30d','0','','34238','3s','','','','200','1','0','','0','0','0','0','0','0','0','4fdf1c23cad2453aa00710289fde1460');
INSERT INTO `items` (`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`,`uuid`) values ('34300','18','','10396','{#VOLUMENAME}: Comment','netapp.volume.comment[{#VOLUMENAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'A comment for the volume.','0','30d','0','','34238','3s','','','','200','1','0','','0','0','0','0','0','0','0','7218a035d00b47faae1d47955de4f61f');
INSERT INTO `items` (`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`,`uuid`) values ('34301','18','','10396','{#VOLUMENAME}: Available size','netapp.volume.space_available[{#VOLUMENAME}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The available space, in bytes.','0','30d','0','','34238','3s','','','','200','1','0','','0','0','0','0','0','0','0','63c67432c4dd48f3a9b2736b1d8eda60');
INSERT INTO `items` (`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`,`uuid`) values ('34302','18','','10396','{#VOLUMENAME}: Volume IOPS raw, write','netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]','0','7d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of I/O operations observed at the storage object. Performance metric for write I/O operations.','0','30d','0','','34238','3s','','','','200','1','0','','0','0','0','0','0','0','0','77329ceefeef490e98f7d23689765c87');
INSERT INTO `items` (`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`,`uuid`) values ('34303','18','','10396','{#VOLUMENAME}: Volume IOPS raw, total','netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]','0','7d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of I/O operations observed at the storage object. Performance metric aggregated over all types of I/O operations.','0','30d','0','','34238','3s','','','','200','1','0','','0','0','0','0','0','0','0','5964ea1edbb74fa4a7c04a79ef776ff3');
INSERT INTO `items` (`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`,`uuid`) values ('34304','18','','10396','{#VOLUMENAME}: Volume IOPS raw, read','netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]','0','7d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of I/O operations observed at the storage object. Performance metric for read I/O operations.','0','30d','0','','34238','3s','','','','200','1','0','','0','0','0','0','0','0','0','01ee6910b06e42e294e2c80229cc960e');
INSERT INTO `items` (`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`,`uuid`) values ('34305','18','','10396','{#VOLUMENAME}: Volume IOPS raw, other','netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]','0','7d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of I/O operations observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on.','0','30d','0','','34238','3s','','','','200','1','0','','0','0','0','0','0','0','0','64a56ed125f249308d0f525aa0a3e56d');
INSERT INTO `items` (`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`,`uuid`) values ('34306','18','','10396','{#VOLUMENAME}: Volume IOPS, write rate','netapp.volume.statistics.iops.write.rate[{#VOLUMENAME}]','0','7d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of I/O operations observed at the storage object. Performance metric for write I/O operations.','0','30d','0','','34238','3s','','','','200','1','0','','0','0','0','0','0','0','0','ffe8787aeaa2414e82a925ab0dbfb9aa');
INSERT INTO `items` (`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`,`uuid`) values ('34307','18','','10396','{#VOLUMENAME}: Volume IOPS, total rate','netapp.volume.statistics.iops.total.rate[{#VOLUMENAME}]','0','7d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of I/O operations observed at the storage object. Performance metric aggregated over all types of I/O operations.','0','30d','0','','34238','3s','','','','200','1','0','','0','0','0','0','0','0','0','b767b6185c744ddc8061bef36d16581d');
INSERT INTO `items` (`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`,`uuid`) values ('34308','18','','10396','{#VOLUMENAME}: Volume IOPS, read rate','netapp.volume.statistics.iops.read.rate[{#VOLUMENAME}]','0','7d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of I/O operations observed at the storage object. Performance metric for read I/O operations.','0','30d','0','','34238','3s','','','','200','1','0','','0','0','0','0','0','0','0','ae3142dae1294a16a4cdd0ef153f7cfb');
INSERT INTO `items` (`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`,`uuid`) values ('34309','18','','10396','{#VOLUMENAME}: Volume IOPS, other rate','netapp.volume.statistics.iops.other.rate[{#VOLUMENAME}]','0','7d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of I/O operations observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on.','0','30d','0','','34238','3s','','','','200','1','0','','0','0','0','0','0','0','0','cb4cfb0ce84f405ebfbf2e4a64c12ca2');
INSERT INTO `items` (`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`,`uuid`) values ('34310','18','','10396','{#VOLUMENAME}: State','netapp.volume.state[{#VOLUMENAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Volume state. A volume can only be brought online if it is offline. Taking a volume offline removes its junction path. The \'mixed\' state applies to FlexGroup volumes only and cannot be specified as a target state. An \'error\' state implies that the volume is not in a state to serve data.','0','30d','0','','34238','3s','','','','200','1','0','','0','0','0','0','0','0','0','fa2ae9b23fce43a49efa9c66369cce27');
INSERT INTO `items` (`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`,`uuid`) values ('34311','18','','10396','{#VOLUMENAME}: Used size','netapp.volume.space_used[{#VOLUMENAME}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The virtual space used (includes volume reserves) before storage efficiency, in bytes.','0','30d','0','','34238','3s','','','','200','1','0','','0','0','0','0','0','0','0','0166239c8d4a4e42ba2f9b3b530143a8');
INSERT INTO `items` (`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`,`uuid`) values ('34312','18','','10396','{#VOLUMENAME}: Space size','netapp.volume.space_size[{#VOLUMENAME}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total provisioned size. The default size is equal to the minimum size of 20MB, in bytes.','0','30d','0','','34238','3s','','','','200','1','0','','0','0','0','0','0','0','0','b17602cccbb84012b6cb8edd8bd80374');
INSERT INTO `items` (`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`,`uuid`) values ('34313','18','','10396','{#VOLUMENAME}: Type','netapp.volume.type[{#VOLUMENAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Type of the volume.\r\nrw - read-write volume.\r\ndp - data-protection volume.\r\nls - load-sharing dp volume.','0','30d','0','','34238','3s','','','','200','1','0','','0','0','0','0','0','0','0','540405e59a93446cbbe71b05206a50be');
INSERT INTO `items` (`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`,`uuid`) values ('34314','18','','10261','Remote Zabbix server: Utilization of report manager internal processes, in %','process.report_manager.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time report manager processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','032c86725d7d479e8e0a8cf0ea14b349');
INSERT INTO `items` (`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`,`uuid`) values ('34315','18','','10261','Remote Zabbix server: Utilization of report writer internal processes, in %','process.report_writer.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time report writer processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','0a91377a6d5a460aa716164b201db6c0');
INSERT INTO `items` (`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`,`uuid`) values ('34320','18','','10323','ClickHouse: ZooKeeper exceptions per second','clickhouse.zookeeper.exceptions.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of ZooKeeper exceptions that does not belong to user/hardware exceptions.','0','30d','0','','30825','3s','','','','200','1','0','','0','0','0','0','0','0','0','381805a8145a48c2a1f2586996b66a94');
INSERT INTO `items` (`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`,`uuid`) values ('34321','18','','10387','MongoDB cluster: Configserver heartbeat','mongodb.config_server_heartbeat','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Difference between the latest optime of the CSRS primary that the mongos has seen and cluster time.','0','30d','0','','33887','3s','','','','200','1','0','','0','0','0','0','0','0','0','78db5504896649198605e140abb942be');
INSERT INTO `items` (`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`,`uuid`) values ('34325','18','','10327','MSSQL DB \'{#DBNAME}\': Last diff backup duration','mssql.backup.diff.duration["{#DBNAME}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Duration of the last differential backup.','0','30d','0','','34323','3s','','','','200','1','0','','0','0','0','0','0','0','0','9c9dab20d8fa46f888c6aa7c7c9bf1b9');
INSERT INTO `items` (`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`,`uuid`) values ('34326','18','','10327','MSSQL DB \'{#DBNAME}\': Last diff backup (time ago)','mssql.backup.diff["{#DBNAME}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of time since the last differential backup.','0','30d','0','','34323','3s','','','','200','1','0','','0','0','0','0','0','0','0','bd663e1e9b40469cb4ca430186b049db');
INSERT INTO `items` (`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`,`uuid`) values ('34327','18','','10327','MSSQL DB \'{#DBNAME}\': Last log backup','mssql.backup.log["{#DBNAME}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of time since the last log backup.','0','30d','0','','34323','3s','','','','200','1','0','','0','0','0','0','0','0','0','c5e796bc904848efb2557c8a9a07b828');
INSERT INTO `items` (`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`,`uuid`) values ('34328','18','','10327','MSSQL DB \'{#DBNAME}\': Last log backup duration','mssql.backup.log.duration["{#DBNAME}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Duration of the last log backup.','0','30d','0','','34323','3s','','','','200','1','0','','0','0','0','0','0','0','0','218241c7c5a648a59021999f97516349');
INSERT INTO `items` (`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`,`uuid`) values ('34329','18','','10327','MSSQL DB \'{#DBNAME}\': Last full backup (time ago)','mssql.backup.full["{#DBNAME}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of time since the last full backup.','0','30d','0','','34323','3s','','','','200','1','0','','0','0','0','0','0','0','0','06d0ac1eeca843a289defa1cf1d728a3');
INSERT INTO `items` (`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`,`uuid`) values ('34330','18','','10327','MSSQL DB \'{#DBNAME}\': Last full backup duration','mssql.backup.full.duration["{#DBNAME}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Duration of the last full backup.','0','30d','0','','34323','3s','','','','200','1','0','','0','0','0','0','0','0','0','52929d988ad34aac945ff2ce9e448261');
INSERT INTO `items` (`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`,`uuid`) values ('34331','18','','10327','MSSQL Job \'{#JOBNAME}\': Last run date-time','mssql.job.lastrundatetime["{#JOBNAME}"]','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The last date-time of the job run.','0','30d','0','','34322','3s','','','','200','1','0','','0','0','0','0','0','0','0','3ceba63a77e24628a2ee9439d574bac5');
INSERT INTO `items` (`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`,`uuid`) values ('34332','18','','10327','MSSQL Job \'{#JOBNAME}\': Last run status message','mssql.job.lastrunstatusmessage["{#JOBNAME}"]','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The informational message about the last run of the job.','0','30d','0','','34322','3s','','','','200','1','0','','0','0','0','0','0','0','0','b9984c1238554a559b444853e9f66653');
INSERT INTO `items` (`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`,`uuid`) values ('34333','18','','10327','MSSQL Job \'{#JOBNAME}\': Next run date-time','mssql.job.nextrundatetime["{#JOBNAME}"]','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The next date-time of the job run.','0','30d','0','','34322','3s','','','','200','1','0','','0','0','0','0','0','0','0','1c725adad98f44158b43127d4c5fb0f3');
INSERT INTO `items` (`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`,`uuid`) values ('34334','18','','10327','MSSQL Job \'{#JOBNAME}\': Run status','mssql.job.runstatus["{#JOBNAME}"]','0','7d','365d','0','3','','','','',NULL,'270','','','0','','','','','2',NULL,'The job status possible values:\r\n0 ⇒ Failed\r\n1 ⇒ Succeeded\r\n2 ⇒ Retry\r\n3 ⇒ Canceled\r\n4 ⇒ Running','0','30d','0','','34322','3s','','','','200','1','0','','0','0','0','0','0','0','0','eaa43a261e114979af236698ea7ae32c');
INSERT INTO `items` (`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`,`uuid`) values ('34335','18','','10327','MSSQL Job \'{#JOBNAME}\': Run duration','mssql.job.run_duration["{#JOBNAME}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Duration of the last run job.','0','30d','0','','34322','3s','','','','200','1','0','','0','0','0','0','0','0','0','69da58fe4c7e42028fa96388df526103');
INSERT INTO `items` (`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`,`uuid`) values ('34338','18','','10397','PD: GRPC Commands total, rate','pd.grpc_command.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which gRPC commands are completed.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','101266930d0747748bf3cbd9259e2818');
INSERT INTO `items` (`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`,`uuid`) values ('34339','18','','10397','PD: Status','pd.status','0','7d','0','0','1','','','','',NULL,'271','','','0','','','','','0',NULL,'Status of PD instance.','0','30d','0','','34337','3s','','','','200','1','0','','0','0','0','0','0','0','0','c18f702f68bf4fed94a598daffdada8a');
INSERT INTO `items` (`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`,`uuid`) values ('34340','18','','10397','PD: Uptime','pd.uptime','0','7d','365d','0','0','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The runtime of each PD instance.','0','30d','0','','34337','3s','','','','200','1','0','','0','0','0','0','0','0','0','0b71c8a5104b46ebbeabe0d708b6676e');
INSERT INTO `items` (`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`,`uuid`) values ('34341','18','','10397','PD: Version','pd.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the PD instance.','0','30d','0','','34337','3s','','','','200','1','0','','0','0','0','0','0','0','0','c7e8e9bf01d04e5db25bd8eaafff3b80');
INSERT INTO `items` (`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`,`uuid`) values ('34342','18','','10397','Cluster metrics discovery','pd.cluster.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery cluster specific metrics.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','cd1f27cf5f1d4f6f84032386ec7f8abb');
INSERT INTO `items` (`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`,`uuid`) values ('34343','18','','10397','gRPC commands discovery','pd.grpc_command.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery grpc commands specific metrics.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','113c6ba7d7f74051b042241441c43db0');
INSERT INTO `items` (`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`,`uuid`) values ('34344','18','','10397','Region discovery','pd.region.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery region specific metrics.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','2cb28d7c862d442a84b5942eb4b54e2f');
INSERT INTO `items` (`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`,`uuid`) values ('34345','18','','10397','Region labels discovery','pd.region_labels.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery region labels specific metrics.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','771ba9e078a14ca489eb2acf906080e9');
INSERT INTO `items` (`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`,`uuid`) values ('34346','18','','10397','Region status discovery','pd.region_status.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery region status specific metrics.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','ffbf9adaa72842fdbb49c008625c1575');
INSERT INTO `items` (`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`,`uuid`) values ('34347','18','','10397','Running scheduler discovery','pd.scheduler.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery scheduler specific metrics.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','b4b8007810ad4f7ba8da212cdde5b71b');
INSERT INTO `items` (`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`,`uuid`) values ('34348','18','','10397','TiDB cluster: Number of regions','pd.cluster_status.leader_count[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total count of cluster Regions.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','fe49e1de54214fb0ac882feb42fdee3b');
INSERT INTO `items` (`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`,`uuid`) values ('34349','18','','10397','TiDB cluster: Current peer count','pd.cluster_status.region_count[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current count of all cluster peers.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','0950ba514e05447c8cfe726ec2d76944');
INSERT INTO `items` (`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`,`uuid`) values ('34350','18','','10397','TiDB cluster: Storage capacity','pd.cluster_status.storage_capacity[{#SINGLETON}]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total storage capacity for this TiDB cluster.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','d39f58372e3f464c87b2ec42acdf2061');
INSERT INTO `items` (`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`,`uuid`) values ('34351','18','','10397','TiDB cluster: Storage size','pd.cluster_status.storage_size[{#SINGLETON}]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The storage size that is currently used by the TiDB cluster.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','c72e6a2f89d041c4bf764021b9bc182c');
INSERT INTO `items` (`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`,`uuid`) values ('34352','18','','10397','TiDB cluster: Disconnect stores','pd.cluster_status.store_disconnected[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of disconnected stores.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','517cea991add45319d30047ac96fd9e4');
INSERT INTO `items` (`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`,`uuid`) values ('34353','18','','10397','TiDB cluster: Down stores','pd.cluster_status.store_down[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of down stores.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','7125a7c858264f339e879c1389c6c027');
INSERT INTO `items` (`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`,`uuid`) values ('34354','18','','10397','TiDB cluster: Lowspace stores','pd.cluster_status.store_low_space[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of low space stores.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','c3bd9d1e0f6c427ab5232e57769030d1');
INSERT INTO `items` (`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`,`uuid`) values ('34355','18','','10397','TiDB cluster: Offline stores','pd.cluster_status.store_offline[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','3c24fb49463b45f199dbc3955e87d01b');
INSERT INTO `items` (`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`,`uuid`) values ('34356','18','','10397','TiDB cluster: Tombstone stores','pd.cluster_status.store_tombstone[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of tombstone stores.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','476a1b6e3c9b4b41ae1637f0e12801c9');
INSERT INTO `items` (`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`,`uuid`) values ('34357','18','','10397','TiDB cluster: Unhealth stores','pd.cluster_status.store_unhealth[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of unhealthy stores.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','89db2b996fbe41bdb6b82ccf75139090');
INSERT INTO `items` (`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`,`uuid`) values ('34358','18','','10397','TiDB cluster: Normal stores','pd.cluster_status.store_up[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of healthy storage instances.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','ff80108e2a5e45779a428a6fd31ea089');
INSERT INTO `items` (`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`,`uuid`) values ('34359','18','','10397','PD: GRPC Commands: {#GRPC_METHOD}, rate','pd.grpc_command.rate[{#GRPC_METHOD}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate per command type at which gRPC commands are completed.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','7b96abc0e68a405ea5693f4f445936fe');
INSERT INTO `items` (`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`,`uuid`) values ('34360','18','','10397','PD: Region heartbeat: error, rate','pd.region_heartbeat.error.rate[{#STORE_ADDRESS}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of heartbeats with the error status per second.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','024bf1d31bbd40a49d683d962887c6e0');
INSERT INTO `items` (`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`,`uuid`) values ('34361','18','','10397','PD: Region heartbeat: active, rate','pd.region_heartbeat.ok.rate[{#STORE_ADDRESS}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of heartbeats with the ok status per second.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','1d1d686f5c544a89a691a9b75e5c3b11');
INSERT INTO `items` (`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`,`uuid`) values ('34362','18','','10397','PD: Region schedule push: total, rate','pd.region_heartbeat.push.err.rate[{#STORE_ADDRESS}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','c44f934ce8a144afa95252041535ef44');
INSERT INTO `items` (`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`,`uuid`) values ('34363','18','','10397','PD: Region heartbeat: total, rate','pd.region_heartbeat.rate[{#STORE_ADDRESS}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of heartbeats reported to PD per instance per second.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','ea76344669de4251a0e7bef35d70494a');
INSERT INTO `items` (`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`,`uuid`) values ('34364','18','','10397','TiDB cluster: Regions label: {#TYPE}','pd.region_labels[{#TYPE}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of Regions in different label levels.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','117efc3f2fe64c51a18cd3be162185ea');
INSERT INTO `items` (`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`,`uuid`) values ('34365','18','','10397','TiDB cluster: Regions status: {#TYPE}','pd.region_status[{#TYPE}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The health status of Regions indicated via the count of unusual Regions including pending peers, down peers, extra peers, offline peers, missing peers, learner peers and incorrect namespaces.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','45ef4940b0454492b70116d8958c9b11');
INSERT INTO `items` (`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`,`uuid`) values ('34366','18','','10397','TiDB cluster: Scheduler status: {#KIND}','pd.scheduler[{#KIND}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current running schedulers.','0','30d','0','','34336','3s','','','','200','1','0','','0','0','0','0','0','0','0','c6748a20540f49b293795bc72480dda7');
INSERT INTO `items` (`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`,`uuid`) values ('34369','18','','10398','TiDB: CPU','tidb.cpu.util','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Total user and system CPU usage ratio.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','f6c68d3961e04d5185ab38c12fa25532');
INSERT INTO `items` (`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`,`uuid`) values ('34370','18','','10398','TiDB: Total server query, rate','tidb.server_query.rate','0','7d','365d','0','0','','Qps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of queries per second on TiDB instance.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','938e7bb83c714e198db55f3bb009daaf');
INSERT INTO `items` (`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`,`uuid`) values ('34371','18','','10398','TiDB: Uptime','tidb.uptime','0','7d','365d','0','0','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The runtime of each TiDB instance.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','20c0fffd66c84a16bb4d8f7882c896bc');
INSERT INTO `items` (`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`,`uuid`) values ('34372','18','','10398','TiDB: KV commands, rate','tidb.tikvclient_txn.rate','0','7d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of executed KV commands per second.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','8ddf164df8c9404ba9f7c0f87db3bc2f');
INSERT INTO `items` (`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`,`uuid`) values ('34373','18','','10398','TiDB: TiClient region errors, rate','tidb.tikvclient_region_err.rate','0','7d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of region related errors returned by TiKV per second.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','c116313e63fa45d89bf44772cc9cb3b8');
INSERT INTO `items` (`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`,`uuid`) values ('34374','18','','10398','TiDB: Lock resolves, rate','tidb.tikvclient_lock_resolver_action.rate','0','7d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of DDL tasks that are waiting.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','aef7cdfd07f1420c970f20c821fed8dd');
INSERT INTO `items` (`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`,`uuid`) values ('34375','18','','10398','TiDB: KV backoff, rate','tidb.tikvclient_backoff.rate','0','7d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of errors returned by TiKV.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','8a63b326356f4fdbb9cb6e73437348be');
INSERT INTO `items` (`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`,`uuid`) values ('34376','18','','10398','TiDB: Server panic, rate','tidb.tidb_server_panic_total.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of panics occurred in TiDB per second.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','f1e2436ced3c456a85650e0622715777');
INSERT INTO `items` (`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`,`uuid`) values ('34377','18','','10398','TiDB: Server critical error, rate','tidb.tidb_server_critical_error_total.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of critical errors occurred in TiDB per second.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','73992d4be61e443eafcc03aaa1bbf4a5');
INSERT INTO `items` (`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`,`uuid`) values ('34378','18','','10398','TiDB: Server connections','tidb.tidb_server_connections','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The connection number of current TiDB instance.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','b5db09e71f2341b8ac1b9e48cbdefc82');
INSERT INTO `items` (`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`,`uuid`) values ('34379','18','','10398','TiDB: Status','tidb.status','0','7d','0','0','1','','','','',NULL,'272','','','0','','','','','0',NULL,'Status of PD instance.','0','30d','0','','34367','3s','','','','200','1','0','','0','0','0','0','0','0','0','ed86585a496b4b438c521c4765d76b11');
INSERT INTO `items` (`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`,`uuid`) values ('34380','18','','10398','TiDB: SQL statements, rate','tidb.statement_total.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of SQL statements executed per second.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','fe8cf5e5c7704db797e76fd9d64e6d17');
INSERT INTO `items` (`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`,`uuid`) values ('34381','18','','10398','TiDB: Schema lease "outdate" errors , rate','tidb.session_schema_lease_error.outdate.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of schema lease errors per second.\r\n"outdate" errors means that the schema cannot be updated, which is a more serious error and triggers an alert.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','fe35df7cc7de4b0b8d616b042da99d69');
INSERT INTO `items` (`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`,`uuid`) values ('34382','18','','10398','TiDB: Schema lease "change" errors, rate','tidb.session_schema_lease_error.change.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of schema lease errors per second.\r\n"change" means that the schema has changed','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','84824ff459b74679b33e34a1f1e8cc69');
INSERT INTO `items` (`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`,`uuid`) values ('34383','18','','10398','TiDB: Total "error" server query, rate','tidb.server_query.error.rate','0','7d','365d','0','0','','Qps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of queries on TiDB instance per second with failure of command execution results.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','651140aae7334994a31d24568c08a9ab');
INSERT INTO `items` (`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`,`uuid`) values ('34384','18','','10398','TiDB: Total "ok" server query, rate','tidb.server_query.ok.rate','0','7d','365d','0','0','','Qps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of queries on TiDB instance per second with success of command execution results.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','00374eab11a14ab1b4e636996519ab80');
INSERT INTO `items` (`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`,`uuid`) values ('34385','18','','10398','TiDB: DDL waiting jobs','tidb.ddl_waiting_jobs','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of TiDB operations that resolve locks per second. When TiDB\'s read or write request encounters a lock, it tries to resolve the lock.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','e1da33fc95ab46bcbe6bc6a68154d172');
INSERT INTO `items` (`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`,`uuid`) values ('34386','18','','10398','TiDB: RSS memory usage','tidb.rss_bytes','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident memory size in bytes.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','fbee374d0fda4679a693ccccc26e5713');
INSERT INTO `items` (`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`,`uuid`) values ('34387','18','','10398','TiDB: Open file descriptors','tidb.process_open_fds','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open file descriptors.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','04b3d6bf810c449db1e4b79be6b263a9');
INSERT INTO `items` (`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`,`uuid`) values ('34388','18','','10398','TiDB: Open file descriptors, max','tidb.process_max_fds','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum number of open file descriptors.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','ad8764623b8e46238efc0a94f0766a5b');
INSERT INTO `items` (`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`,`uuid`) values ('34389','18','','10398','TiDB: PD TSO requests, rate','tidb.pd_tso_request.rate','0','7d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of TSO requests that TiDB obtains from PD per second.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','2bde50849f5541c3ac8aa5b26f5b8b52');
INSERT INTO `items` (`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`,`uuid`) values ('34390','18','','10398','TiDB: PD TSO commands, rate','tidb.pd_tso_cmd.rate','0','7d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of TSO commands that TiDB obtains from PD per second.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','dce76be0ccbe44969bb09ad29d599790');
INSERT INTO `items` (`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`,`uuid`) values ('34391','18','','10398','TiDB: Time jump back, rate','tidb.monitor_time_jump_back.rate','0','7d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times that the operating system rewinds every second.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','d3ef55b9fd8b4a2aa1cbbc48f15203cb');
INSERT INTO `items` (`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`,`uuid`) values ('34392','18','','10398','TiDB: Keep alive, rate','tidb.monitor_keep_alive.rate','0','7d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times that the metrics are refreshed on TiDB instance per minute.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','104c09cb47f640fb804c136a09aa3bd2');
INSERT INTO `items` (`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`,`uuid`) values ('34393','18','','10398','TiDB: Heap memory usage','tidb.heap_bytes','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of heap bytes that are in use.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','78e60bd44e3e4a4a859705c94ef94420');
INSERT INTO `items` (`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`,`uuid`) values ('34394','18','','10398','TiDB: Goroutine count','tidb.goroutines','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of Goroutines on TiDB instance.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','14cf8296365048a59fd42f03966b1e1e');
INSERT INTO `items` (`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`,`uuid`) values ('34395','18','','10398','TiDB: Failed Query, rate','tidb.execute_error.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of error occurred when executing SQL statements per second (such as syntax errors and primary key conflicts).','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','8fffe502bd2f42368e60d2110f1c3319');
INSERT INTO `items` (`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`,`uuid`) values ('34396','18','','10398','TiDB: Load schema total, rate','tidb.domain_load_schema.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics of the schemas that TiDB obtains from TiKV per second.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','b0e960ddac4d43a3860e8a06dfe09e03');
INSERT INTO `items` (`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`,`uuid`) values ('34397','18','','10398','TiDB: Load schema failed, rate','tidb.domain_load_schema.failed.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of failures to reload the latest schema information in TiDB per second.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','0fe0c1dee67e469d9d38193ef7b040ec');
INSERT INTO `items` (`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`,`uuid`) values ('34398','18','','10398','TiDB: Version','tidb.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the TiDB instance.','0','30d','0','','34367','3s','','','','200','1','0','','0','0','0','0','0','0','0','65fa2b077073467387b39bef035b0644');
INSERT INTO `items` (`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`,`uuid`) values ('34399','18','','10398','KV metrics discovery','tidb.kv_ops.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery KV specific metrics.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','4db735b652eb451d911f6dc01de6b1ba');
INSERT INTO `items` (`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`,`uuid`) values ('34400','18','','10398','QPS metrics discovery','tidb.qps.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery QPS specific metrics.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','bcaf700328b94b59b35cf5bfaf27d5ac');
INSERT INTO `items` (`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`,`uuid`) values ('34401','18','','10398','Statement metrics discovery','tidb.statement.discover','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery statement specific metrics.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','e3c23b94a9514389b37e3911f79db8f8');
INSERT INTO `items` (`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`,`uuid`) values ('34402','18','','10398','KV backoff discovery','tidb.tikvclient_backoff.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery KV backoff specific metrics.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','f9af6d56e612459583a1f5d3b4a7d61b');
INSERT INTO `items` (`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`,`uuid`) values ('34403','18','','10398','GC action results discovery','tidb.tikvclient_gc_action.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery GC action results metrics.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','72d1f090ce9c4f89b06e4195989e4b2b');
INSERT INTO `items` (`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`,`uuid`) values ('34404','18','','10398','Lock resolves discovery','tidb.tikvclient_lock_resolver_action.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery lock resolves specific metrics.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','a4f2e1902cc54f0db9e9c345c63285e2');
INSERT INTO `items` (`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`,`uuid`) values ('34405','18','','10398','TiDB: KV Commands: {#TYPE}, rate','tidb.tikvclient_txn.rate[{#TYPE}]','0','7d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of executed KV commands per second.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','79b0a13b25c745d288c313c4197f2e5c');
INSERT INTO `items` (`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`,`uuid`) values ('34406','18','','10398','TiDB: Server query "Error": {#TYPE}, rate','tidb.server_query.error.rate[{#TYPE}]','0','7d','365d','0','0','','Qps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of queries on TiDB instance per second with failure of command execution results.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','3b450f5a853247358a8fe6f31f000575');
INSERT INTO `items` (`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`,`uuid`) values ('34407','18','','10398','TiDB: Server query "OK": {#TYPE}, rate','tidb.server_query.ok.rate[{#TYPE}]','0','7d','365d','0','0','','Qps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of queries on TiDB instance per second with success of command execution results.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','125bdd3eb1b643f4ad00d58fbed455f6');
INSERT INTO `items` (`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`,`uuid`) values ('34408','18','','10398','TiDB: SQL statements: {#TYPE}, rate','tidb.statement.rate[{#TYPE}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of SQL statements executed per second.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','111ffa26edd247eb9325f5ab5f5f3f94');
INSERT INTO `items` (`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`,`uuid`) values ('34409','18','','10398','TiDB: KV backoff: {#TYPE}, rate','tidb.tikvclient_backoff.rate[{#TYPE}]','0','7d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of TiDB operations that resolve locks per second. When TiDB\'s read or write request encounters a lock, it tries to resolve the lock.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','a11cf69675654e7ca70dbab255509bb8');
INSERT INTO `items` (`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`,`uuid`) values ('34410','18','','10398','TiDB: GC action result: {#TYPE}, rate','tidb.tikvclient_gc_action.rate[{#TYPE}]','0','7d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of results of GC-related operations per second.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','e3c19674dcdf4fdea1f8cd82e3df9f72');
INSERT INTO `items` (`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`,`uuid`) values ('34411','18','','10398','TiDB: Lock resolves: {#TYPE}, rate','tidb.tikvclient_lock_resolver_action.rate[{#TYPE}]','0','7d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of TiDB operations that resolve locks per second. When TiDB\'s read or write request encounters a lock, it tries to resolve the lock.','0','30d','0','','34368','3s','','','','200','1','0','','0','0','0','0','0','0','0','2eebf2ccc44a4cadb0b70e153b70b3a2');
INSERT INTO `items` (`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`,`uuid`) values ('34413','18','','10399','TiKV: Scheduler: High priority commands total, rate','tikv.commands_pri.high.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total count of high priority commands per second.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','449a7ba908884db3af4ec8ccc0d7ea43');
INSERT INTO `items` (`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`,`uuid`) values ('34414','18','','10399','TiKV: Regions, count','tikv.region_count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of regions collected in TiKV instance.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','e6137dd87faa496497b23cadaa37dca9');
INSERT INTO `items` (`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`,`uuid`) values ('34415','18','','10399','TiKV: Capacity size','tikv.store_size.capacity','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The capacity size of TiKV instance.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','1e0c1c071b604e77998797c2f9d41dfc');
INSERT INTO `items` (`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`,`uuid`) values ('34416','18','','10399','TiKV: Available size','tikv.store_size.available','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The available capacity of TiKV instance.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','fbfaa0d967c049c0a1bbcec5afea4bf2');
INSERT INTO `items` (`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`,`uuid`) values ('34417','18','','10399','TiKV: Storage: commands total, rate','tikv.storage_command.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of commands received per second.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','ce31318a420d40668e62a47fe19d3d40');
INSERT INTO `items` (`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`,`uuid`) values ('34418','18','','10399','TiKV: Snapshot: Sending','tikv.snapshot.sending','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total amount of raftstore snapshot traffic.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','0ae6a2024ed3488498e22bc542d27619');
INSERT INTO `items` (`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`,`uuid`) values ('34419','18','','10399','TiKV: Snapshot: Receiving','tikv.snapshot.receiving','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total amount of raftstore snapshot traffic.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','58559be859d64887a1b919e36aa1e336');
INSERT INTO `items` (`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`,`uuid`) values ('34420','18','','10399','TiKV: Snapshot: Applying','tikv.snapshot.applying','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total amount of raftstore snapshot traffic.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','0a2d0a119bcd406aadfc5c014186c5d3');
INSERT INTO `items` (`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`,`uuid`) values ('34421','18','','10399','TiKV: Scheduler: Busy, rate','tikv.scheduler_too_busy.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total count of too busy schedulers per second.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','8f5c9d2b9eca4a489d764420ee06e4b6');
INSERT INTO `items` (`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`,`uuid`) values ('34422','18','','10399','TiKV: Snapshot: Pending tasks','tikv.worker_pending_task','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of tasks currently running by the worker or pending.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','8b7c2dc8c60e491db76cafd2d0e1234b');
INSERT INTO `items` (`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`,`uuid`) values ('34423','18','','10399','TiKV: Scheduler: Commands total, rate','tikv.scheduler_commands.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of commands per second.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','62f856cf22804262aef64e9369049332');
INSERT INTO `items` (`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`,`uuid`) values ('34424','18','','10399','TiKV: RSS memory usage','tikv.rss_bytes','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident memory size in bytes.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','1c480fa23eaa42bcb367bb5afdcb65b9');
INSERT INTO `items` (`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`,`uuid`) values ('34425','18','','10399','TiKV: Regions, leader','tikv.region_leader','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of leaders in TiKV instance.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','2ab7643435794ec6b5a2c3eb1dd7e913');
INSERT INTO `items` (`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`,`uuid`) values ('34426','18','','10399','TiKV: Server: failure messages total, rate','tikv.messages.failure.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of reporting failure messages per second.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','7afa5147a1e247a5b8914d8739d31f15');
INSERT INTO `items` (`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`,`uuid`) values ('34427','18','','10399','TiKV: Scheduler: Low priority commands total, rate','tikv.commands_pri.low.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total count of low priority commands per second.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','b5ce79ee79804e76bb7b91e17915159c');
INSERT INTO `items` (`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`,`uuid`) values ('34428','18','','10399','TiKV: Total query errors, rate','tikv.grpc_msg_fail.rate','0','7d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of gRPC message handling failure per second.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','c68db41c184d44d98445cc66489ef39c');
INSERT INTO `items` (`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`,`uuid`) values ('34429','18','','10399','TiKV: Total query, rate','tikv.grpc_msg.rate','0','7d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The total QPS in TiKV instance.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','fed3db7222fa41a8bf51d2ad860a22d4');
INSERT INTO `items` (`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`,`uuid`) values ('34430','18','','10399','TiKV: Store size','tikv.engine_size','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The storage size of TiKV instance.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','f79d5daea61842b18e39c7289657ddf5');
INSERT INTO `items` (`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`,`uuid`) values ('34431','18','','10399','TiKV: Bytes write','tikv.engine_flow_bytes.write','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The total bytes of write in TiKV instance.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','0d44c3c9a7f34905b0404ae39a3bc881');
INSERT INTO `items` (`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`,`uuid`) values ('34432','18','','10399','TiKV: Bytes read','tikv.engine_flow_bytes.read','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The total bytes of read in TiKV instance.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','4558a5a11c304584bf24a7c3d2eace23');
INSERT INTO `items` (`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`,`uuid`) values ('34433','18','','10399','TiKV: CPU util','tikv.cpu.util','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The CPU usage ratio on TiKV instance.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','a76665b7a9924f8cbd4a455bc248d790');
INSERT INTO `items` (`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`,`uuid`) values ('34434','18','','10399','TiKV: Coprocessor: Response size, rate','tikv.coprocessor_response_bytes.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The total size of coprocessor response per second.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','5567ebf02fb6441dbb6672e1bc77b3ab');
INSERT INTO `items` (`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`,`uuid`) values ('34435','18','','10399','TiKV: Coprocessor: RocksDB ops, rate','tikv.coprocessor_rocksdb_perf.rate','0','7d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of RocksDB internal operations from PerfContext per second.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','237f6ba2973e472d8c20de1d61b4695c');
INSERT INTO `items` (`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`,`uuid`) values ('34436','18','','10399','TiKV: Coprocessor: Errors, rate','tikv.coprocessor_request_error.rate','0','7d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of push down request error per second.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','d6185382a1974b9194e68bea4f14eb75');
INSERT INTO `items` (`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`,`uuid`) values ('34437','18','','10399','TiKV: Coprocessor: Requests, rate','tikv.coprocessor_request.rate','0','7d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of coprocessor requests per second.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','dbf8288b5cab4e8a95b5e7c4355676bd');
INSERT INTO `items` (`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`,`uuid`) values ('34438','18','','10399','TiKV: Scheduler: Normal priority commands total, rate','tikv.commands_pri.normal.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total count of normal priority commands per second.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','df3fa02457ac47168fad251727b300ff');
INSERT INTO `items` (`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`,`uuid`) values ('34439','18','','10399','TiKV: Uptime','tikv.uptime','0','7d','365d','0','0','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The runtime of each TiKV instance.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','f2632dbd773140398a7d61608d85f392');
INSERT INTO `items` (`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`,`uuid`) values ('34440','18','','10399','Coprocessor metrics discovery','tikv.coprocessor.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery coprocessor metrics.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','f1c7de94679e40a4ac6f569e05ad61d0');
INSERT INTO `items` (`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`,`uuid`) values ('34441','18','','10399','QPS metrics discovery','tikv.qps.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery QPS metrics.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','39e4031ee41143ed9d0c84492f817125');
INSERT INTO `items` (`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`,`uuid`) values ('34442','18','','10399','Scheduler metrics discovery','tikv.scheduler.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery scheduler metrics.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','7168e631146546129284cbf9c52b2025');
INSERT INTO `items` (`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`,`uuid`) values ('34443','18','','10399','Server errors discovery','tikv.server_report_failure.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery server errors metrics.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','5ebd2e2131ab4a9f8ca63f0e490b04a3');
INSERT INTO `items` (`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`,`uuid`) values ('34444','18','','10399','TiKV: Coprocessor: {#REQ_TYPE} requests, rate','tikv.coprocessor_request.rate[{#REQ_TYPE}]','0','7d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of coprocessor requests per second.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','ecbe08549fef42d5aad0369e861b4c20');
INSERT INTO `items` (`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`,`uuid`) values ('34445','18','','10399','TiKV: Coprocessor: {#REQ_TYPE} errors, rate','tikv.coprocessor_request_error.rate[{#REQ_TYPE}]','0','7d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of push down request error per second.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','08060401409b4fff97430c595fec7b82');
INSERT INTO `items` (`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`,`uuid`) values ('34446','18','','10399','TiKV: Coprocessor: {#REQ_TYPE} RocksDB ops, rate','tikv.coprocessor_rocksdb_perf.rate[{#REQ_TYPE}]','0','7d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of RocksDB internal operations from PerfContext per second.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','bff6ee970f7349edba6cac1cd0da70ed');
INSERT INTO `items` (`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`,`uuid`) values ('34447','18','','10399','TiKV: Coprocessor: {#REQ_TYPE} scan keys, rate','tikv.coprocessor_scan_keys.rate[{#REQ_TYPE}]','0','7d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of scan keys observed per request per second.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','8ef93de8a25b4f35b2e54f6ced4a5bd2');
INSERT INTO `items` (`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`,`uuid`) values ('34448','18','','10399','TiKV: Query: {#TYPE}, rate','tikv.grpc_msg.rate[{#TYPE}]','0','7d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','2',NULL,'The QPS per command in TiKV instance.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','3b1d1b10cee6465c822152072189ebbe');
INSERT INTO `items` (`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`,`uuid`) values ('34449','18','','10399','TiKV: Scheduler: commands {#STAGE}, rate','tikv.scheduler_stage.rate[{#STAGE}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of commands on each stage per second.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','c4f902a0be5444b2babb1775b89a6827');
INSERT INTO `items` (`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`,`uuid`) values ('34450','18','','10399','TiKV: Store_id {#STORE_ID}: failure messages "{#TYPE}", rate','tikv.messages.failure.rate[{#STORE_ID},{#TYPE}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of reporting failure messages. The metric has two labels: type and store_id. type represents the failure type, and store_id represents the destination peer store id.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','064e74b5484e42e4acf3122c8ead4826');
INSERT INTO `items` (`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`,`uuid`) values ('35065','18','','10413','Cert: Subject alternative name','cert.alternative_names','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The subject alternative name extension allows identities to be bound to the subject of the certificate. These identities may be included in addition to or in place of the identity in the subject field of the certificate. Defined options include an Internet electronic mail address, a DNS name, an IP address, and a Uniform Resource Identifier (URI).','0','30d','0','','35064','3s','','','','200','1','0','','0','0','0','0','0','0','0','42068372fbce4c12a4f3193fc490d4ec');
INSERT INTO `items` (`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`,`uuid`) values ('35066','18','','10413','Cert: Issuer','cert.issuer','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The field identifies the entity that has signed and issued the certificate.','0','30d','0','','35064','3s','','','','200','1','0','','0','0','0','0','0','0','0','946e205aaa84433a8bf1fe46b9362acd');
INSERT INTO `items` (`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`,`uuid`) values ('35067','18','','10413','Cert: Last validation status','cert.message','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Last check result message.','0','30d','0','','35064','3s','','','','200','1','0','','0','0','0','0','0','0','0','f124443debb447a792beb8265d2918ee');
INSERT INTO `items` (`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`,`uuid`) values ('35068','18','','10413','Cert: Expires on','cert.not_after','0','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The date on which the certificate validity period ends.','0','30d','0','','35064','3s','','','','200','1','0','','0','0','0','0','0','0','0','e34bffac86ef41e2865fe8410c2d0aa0');
INSERT INTO `items` (`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`,`uuid`) values ('35069','18','','10413','Cert: Valid from','cert.not_before','0','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The date on which the certificate validity period begins.','0','30d','0','','35064','3s','','','','200','1','0','','0','0','0','0','0','0','0','c3ba835b28db4f1486ae4be87c3fe55f');
INSERT INTO `items` (`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`,`uuid`) values ('35070','18','','10413','Cert: Public key algorithm','cert.public_key_algorithm','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The digital signature algorithm is used to verify the signature of a certificate.','0','30d','0','','35064','3s','','','','200','1','0','','0','0','0','0','0','0','0','08b47b376f0f4f999bd1110696465fd9');
INSERT INTO `items` (`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`,`uuid`) values ('35071','18','','10413','Cert: Serial number','cert.serial_number','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The serial number is a positive integer assigned by the CA to each certificate. It is unique for each certificate issued by a given CA. Non-conforming CAs may issue certificates with serial numbers that are negative or zero.','0','30d','0','','35064','3s','','','','200','1','0','','0','0','0','0','0','0','0','d7d4e592cc6741fcba9c21b5195b8544');
INSERT INTO `items` (`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`,`uuid`) values ('35072','18','','10413','Cert: Fingerprint','cert.sha1_fingerprint','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Certificate Signature (SHA1 Fingerprint or Thumbprint) is the hash of the entire certificate in DER form.','0','30d','0','','35064','3s','','','','200','1','0','','0','0','0','0','0','0','0','848cd98e80764f61bbe526316c70da11');
INSERT INTO `items` (`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`,`uuid`) values ('35073','18','','10413','Cert: Signature algorithm','cert.signature_algorithm','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The algorithm identifier for the algorithm used by the CA to sign the certificate.','0','30d','0','','35064','3s','','','','200','1','0','','0','0','0','0','0','0','0','67d4cb73b1e74c5f9e63423e9bbdd3a6');
INSERT INTO `items` (`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`,`uuid`) values ('35074','18','','10413','Cert: Subject','cert.subject','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The field identifies the entity associated with the public key stored in the subject public key field.','0','30d','0','','35064','3s','','','','200','1','0','','0','0','0','0','0','0','0','b44c554d025446c6b1761a5fde250f9f');
INSERT INTO `items` (`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`,`uuid`) values ('35075','18','','10413','Cert: Validation result','cert.validation','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The certificate validation result. Possible values: valid/invalid/valid-but-self-signed','0','30d','0','','35064','3s','','','','200','1','0','','0','0','0','0','0','0','0','4fc3c39291ea4e3aa6ee04fcec4e1a8d');
INSERT INTO `items` (`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`,`uuid`) values ('35076','18','','10413','Cert: Version','cert.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The version of the encoded certificate.','0','30d','0','','35064','3s','','','','200','1','0','','0','0','0','0','0','0','0','a8b04dfe285d47e39c9d360ea43fcdbe');
INSERT INTO `items` (`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`,`uuid`) values ('35078','18','','10414','Cloudflare: Total bandwidth','cloudflare.bandwidth.all','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The volume of all data.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','2be79391779a4cd395723e62694262e8');
INSERT INTO `items` (`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`,`uuid`) values ('35079','18','','10414','Cloudflare: Non-2xx responses ratio','cloudflare.requests.others_ratio','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of the amount requests with non-2xx response codes to all requests in percentage.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','228912bdae724d70b1abe79510b69082');
INSERT INTO `items` (`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`,`uuid`) values ('35080','18','','10414','Cloudflare: Total threats','cloudflare.threats.all','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of all threats.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','328051a78529494e943edda567aa0e24');
INSERT INTO `items` (`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`,`uuid`) values ('35081','18','','10414','Cloudflare: Uncached requests','cloudflare.requests.uncached','0','7d','365d','0','3','','req','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of uncached requests.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','7907f68e795b40fca1bd520556ea1fff');
INSERT INTO `items` (`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`,`uuid`) values ('35082','18','','10414','Cloudflare: 2xx responses ratio','cloudflare.requests.success_ratio','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of the amount requests with 2xx response codes to all requests in percentage.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','6100ff50001543ae83e84ab2c47260f3');
INSERT INTO `items` (`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`,`uuid`) values ('35083','18','','10414','Cloudflare: Unencrypted requests','cloudflare.requests.ssl.unencrypted','0','7d','365d','0','3','','req','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unencrypted requests.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','acbbc431dfc3431583123380edb6da38');
INSERT INTO `items` (`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`,`uuid`) values ('35084','18','','10414','Cloudflare: SSL encrypted requests','cloudflare.requests.ssl.encrypted','0','7d','365d','0','3','','req','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of encrypted requests.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','d39fcd4fdc594257bea91de0890d326b');
INSERT INTO `items` (`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`,`uuid`) values ('35085','18','','10414','Cloudflare: Response codes 5xx','cloudflare.requests.response_500','0','7d','365d','0','3','','req','','',NULL,NULL,'','','0','','','','','0',NULL,'The number requests with 5xx response codes.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','714ef2cbecbe4a93b20988a0bc6863a7');
INSERT INTO `items` (`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`,`uuid`) values ('35086','18','','10414','Cloudflare: Response codes 4xx','cloudflare.requests.response_400','0','7d','365d','0','3','','req','','',NULL,NULL,'','','0','','','','','0',NULL,'The number requests with 4xx response codes.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','b3510ec2adc74e10824365012c13250f');
INSERT INTO `items` (`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`,`uuid`) values ('35087','18','','10414','Cloudflare: Response codes 3xx','cloudflare.requests.response_300','0','7d','365d','0','3','','req','','',NULL,NULL,'','','0','','','','','0',NULL,'The number requests with 3xx response codes.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','2caff86e7ca5400889f3b2bd4b6ba986');
INSERT INTO `items` (`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`,`uuid`) values ('35088','18','','10414','Cloudflare: Response codes 2xx','cloudflare.requests.response_200','0','7d','365d','0','3','','req','','',NULL,NULL,'','','0','','','','','0',NULL,'The number requests with 2xx response codes.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','3ade3e726d314382a3e841b3d5cb5834');
INSERT INTO `items` (`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`,`uuid`) values ('35089','18','','10414','Cloudflare: Response codes 1xx','cloudflare.requests.response_100','0','7d','365d','0','3','','req','','',NULL,NULL,'','','0','','','','','0',NULL,'The number requests with 1xx response codes.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','0f427419265a4ef09f052a03c539125d');
INSERT INTO `items` (`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`,`uuid`) values ('35090','18','','10414','Cloudflare: Cache hit ratio % over time','cloudflare.requests.cache_hit_ratio','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of the amount cached requests to all requests in percentage.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','e1c2a1280d25439f8020b3ebc451d892');
INSERT INTO `items` (`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`,`uuid`) values ('35091','18','','10414','Cloudflare: Cached bandwidth','cloudflare.bandwidth.cached','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The volume of cached data.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','7f5900d6c707405789624f84f502b042');
INSERT INTO `items` (`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`,`uuid`) values ('35092','18','','10414','Cloudflare: Cached requests','cloudflare.requests.cached','0','7d','365d','0','3','','req','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','cc9d651cdec94afeb12ead87b3c3e8f3');
INSERT INTO `items` (`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`,`uuid`) values ('35093','18','','10414','Cloudflare: Total requests','cloudflare.requests.all','0','7d','365d','0','3','','req','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of all requests.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','d4a7431b1f6a4d3ab11551a36c98fbf7');
INSERT INTO `items` (`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`,`uuid`) values ('35094','18','','10414','Cloudflare: Total page views','cloudflare.pageviews.all','0','7d','365d','0','3','','pg','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of all pageviews.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','71efacd9f1dc46a7aa29876c8bf7906c');
INSERT INTO `items` (`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`,`uuid`) values ('35095','18','','10414','Cloudflare: Uncached DNS queries','cloudflare.dns.query.uncached','0','7d','365d','0','3','','conn','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of uncached DNS queries.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','4aeb289b631a402390a833e3c5227d38');
INSERT INTO `items` (`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`,`uuid`) values ('35096','18','','10414','Cloudflare: Stale DNS queries','cloudflare.dns.query.stale','0','7d','365d','0','3','','conn','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of stale DNS queries.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','4612a834ef054740ba5fea529a08e220');
INSERT INTO `items` (`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`,`uuid`) values ('35097','18','','10414','Cloudflare: DNS queries','cloudflare.dns.query.all','0','7d','365d','0','3','','conn','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of all DNS queries.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','6eff62f2786d42a7925bd516a1c2a958');
INSERT INTO `items` (`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`,`uuid`) values ('35098','18','','10414','Cloudflare: Uncached bandwidth','cloudflare.bandwidth.uncached','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The volume of uncached data.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','96e88a64df014997b8c675cbc4bb97a1');
INSERT INTO `items` (`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`,`uuid`) values ('35099','18','','10414','Cloudflare: Unencrypted bandwidth','cloudflare.bandwidth.ssl.unencrypted','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The volume of unencrypted data.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','4637d88e62204f9d8fb9fc0f179c5319');
INSERT INTO `items` (`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`,`uuid`) values ('35100','18','','10414','Cloudflare: SSL encrypted bandwidth','cloudflare.bandwidth.ssl.encrypted','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The volume of encrypted data.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','901db6b121c7473485c91b0f27e7cf50');
INSERT INTO `items` (`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`,`uuid`) values ('35101','18','','10414','Cloudflare: Cache hit ratio of bandwidth','cloudflare.bandwidth.cache_hit_ratio','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of the amount cached bandwidth to the bandwidth in percentage.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','c5ab8cc281ff4f75bd4ada79d2c0d1e8');
INSERT INTO `items` (`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`,`uuid`) values ('35102','18','','10414','Cloudflare: Unique visitors','cloudflare.uniques.all','0','7d','365d','0','3','','conn','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of all visitors IPs.','0','30d','0','','35077','3s','','','','200','1','0','','0','0','0','0','0','0','0','d1a2ec213b084701805f3f974af25a21');
INSERT INTO `items` (`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`,`uuid`) values ('35103','18','','10308','HAProxy: Get nodes','haproxy.get.nodes','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Array for LLD rules.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','ca85e2fda99b42a4ad2b373211a6b07d');
INSERT INTO `items` (`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`,`uuid`) values ('35104','18','','10308','HAProxy Backend {#PXNAME}: Number of active servers','haproxy.backend.act[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of active servers.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','1ee660a3cfbd4e76a20a32524cdb707f');
INSERT INTO `items` (`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`,`uuid`) values ('35105','18','','10308','HAProxy Backend {#PXNAME}: Number of responses with codes 5xx per second','haproxy.backend.hrsp_5xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP server errors per second.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','3a3f40a93c184673bdbd220add5ef458');
INSERT INTO `items` (`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`,`uuid`) values ('35106','18','','10308','HAProxy Backend {#PXNAME}: Weight','haproxy.backend.weight[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total effective weight.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','21cc9c7a1b7042f0bb14eeab91464ae8');
INSERT INTO `items` (`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`,`uuid`) values ('35107','18','','10308','HAProxy Backend {#PXNAME}: Sessions per second','haproxy.backend.stot.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Cumulative number of sessions (end-to-end connections) per second.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','d11c9b4c7027475e897456e712675cc9');
INSERT INTO `items` (`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`,`uuid`) values ('35108','18','','10308','HAProxy Backend {#PXNAME}: Number of responses with codes 4xx per second','haproxy.backend.hrsp_4xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP client errors per second.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','221ef133420f4140a17146eb976744eb');
INSERT INTO `items` (`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`,`uuid`) values ('35109','18','','10308','HAProxy Backend {#PXNAME}: Number of backup servers','haproxy.backend.bck[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of backup servers.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','6c4b8a679428455aadbd307162635e6e');
INSERT INTO `items` (`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`,`uuid`) values ('35110','18','','10308','HAProxy Backend {#PXNAME}: Number of responses with codes 3xx per second','haproxy.backend.hrsp_3xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP redirections per second.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','24de211953f8480c9e1118abde731344');
INSERT INTO `items` (`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`,`uuid`) values ('35111','18','','10308','HAProxy Backend {#PXNAME}: Number of responses with codes 2xx per second','haproxy.backend.hrsp_2xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of successful HTTP responses per second.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','2b02a86c01a245859ad4305d25569ab0');
INSERT INTO `items` (`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`,`uuid`) values ('35112','18','','10308','HAProxy Backend {#PXNAME}: Number of responses with codes 1xx per second','haproxy.backend.hrsp_1xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of informational HTTP responses per second.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','a32d07355a9c4e9f9f63bac4ef2ef342');
INSERT INTO `items` (`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`,`uuid`) values ('35113','18','','10308','HAProxy Backend {#PXNAME}: Outgoing traffic','haproxy.backend.bout.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits sent by the backend','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','fc353e7b680648698ecf949f784ca0ce');
INSERT INTO `items` (`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`,`uuid`) values ('35114','18','','10308','HAProxy Backend {#PXNAME}: Incoming traffic','haproxy.backend.bin.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits received by the backend','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','7d5a7b04e836417b96f2301d91fabab4');
INSERT INTO `items` (`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`,`uuid`) values ('35115','18','','10308','HAProxy Frontend {#PXNAME}: Status','haproxy.frontend.status[{#PXNAME},{#SVNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Possible values: OPEN, STOP.\r\nWhen Status is OPEN, the frontend is operating normally and ready to receive traffic.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','5a48a087c07c4cbbaf0332930d59244b');
INSERT INTO `items` (`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`,`uuid`) values ('35116','18','','10308','HAProxy {#PXNAME} {#SVNAME}: Server is active','haproxy.server.act[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,'342','','','0','','','','','2',NULL,'Shows whether the server is active (marked with a Y) or a backup (marked with a -).','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','82b1f8a01ba04818a990c336eb7154e3');
INSERT INTO `items` (`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`,`uuid`) values ('35117','18','','10308','HAProxy {#PXNAME} {#SVNAME}: Weight','haproxy.server.weight[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Effective weight.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','02605cd644e14e2398af89433a6d976d');
INSERT INTO `items` (`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`,`uuid`) values ('35118','18','','10308','HAProxy {#PXNAME} {#SVNAME}: Sessions per second','haproxy.server.stot.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Cumulative number of sessions (end-to-end connections) per second.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','6f5c20d65ba34afbb47cd65af1d1b368');
INSERT INTO `items` (`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`,`uuid`) values ('35119','18','','10308','HAProxy {#PXNAME} {#SVNAME}: Configured maxqueue','haproxy.server.qlimit[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Configured maxqueue for the server, or nothing in the value is 0 (default, meaning no limit).','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','50a837b40d624492b0248324d8b62694');
INSERT INTO `items` (`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`,`uuid`) values ('35120','18','','10308','HAProxy {#PXNAME} {#SVNAME}: Server was selected per second','haproxy.server.lbtot.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times that server was selected.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','8a7257e803b84783a8c9964807a336a5');
INSERT INTO `items` (`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`,`uuid`) values ('35121','18','','10308','HAProxy {#PXNAME} {#SVNAME}: Server is backup','haproxy.server.bck[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,'342','','','0','','','','','2',NULL,'Shows whether the server is a backup (marked with a Y) or active (marked with a -).','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','3617492e9cfd49b6b5576ed231dc2614');
INSERT INTO `items` (`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`,`uuid`) values ('35122','18','','10308','HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 3xx per second','haproxy.server.hrsp_3xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP redirections per second.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','5b5576604886429ca22db333c9886c25');
INSERT INTO `items` (`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`,`uuid`) values ('35123','18','','10308','HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 2xx per second','haproxy.server.hrsp_2xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of successful HTTP responses per second.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','a1aa6301ea1445bdbc509ec31cc9ebfc');
INSERT INTO `items` (`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`,`uuid`) values ('35124','18','','10308','HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 1xx per second','haproxy.server.hrsp_1xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of informational HTTP responses per second.','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','71fbb982c23c498fb52b68b3f839c642');
INSERT INTO `items` (`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`,`uuid`) values ('35125','18','','10308','HAProxy {#PXNAME} {#SVNAME}: Status of last health check','haproxy.server.check_status[{#PXNAME},{#SVNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Status of last health check, one of:\r\nUNK -> unknown\r\nINI -> initializing\r\nSOCKERR -> socket error\r\nL4OK -> check passed on layer 4, no upper layers testing enabled\r\nL4TOUT -> layer 1-4 timeout\r\nL4CON -> layer 1-4 connection problem, for example "Connection refused" (tcp rst) or "No route to host" (icmp)\r\nL6OK -> check passed on layer 6\r\nL6TOUT -> layer 6 (SSL) timeout\r\nL6RSP -> layer 6 invalid response - protocol error\r\nL7OK -> check passed on layer 7\r\nL7OKC -> check conditionally passed on layer 7, for example 404 with disable-on-404\r\nL7TOUT -> layer 7 (HTTP/SMTP) timeout\r\nL7RSP -> layer 7 invalid response - protocol error\r\nL7STS -> layer 7 response error, for example HTTP 5xx\r\nNotice: If a check is currently running, the last known status will be reported, prefixed with "* ". e. g. "* L7OK".','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','c46228518a3a460b894aea999ca0feab');
INSERT INTO `items` (`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`,`uuid`) values ('35126','18','','10308','HAProxy {#PXNAME} {#SVNAME}: Outgoing traffic','haproxy.server.bout.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits sent by the backend','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','7fbc335144b74c08ba6a79a108e8e894');
INSERT INTO `items` (`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`,`uuid`) values ('35127','18','','10308','HAProxy {#PXNAME} {#SVNAME}: Incoming traffic','haproxy.server.bin.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits received by the backend','0','30d','0','','30189','3s','','','','200','1','0','','0','0','0','0','0','0','0','20d5a69a9aa24fc6abf21c1c317ac425');
INSERT INTO `items` (`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`,`uuid`) values ('35128','18','','10309','HAProxy: Get nodes','haproxy.get.nodes','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Array for LLD rules.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','6af51d085a2f41f983bc3b20c6f4cc22');
INSERT INTO `items` (`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`,`uuid`) values ('35129','18','','10309','HAProxy Backend {#PXNAME}: Number of active servers','haproxy.backend.act[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of active servers.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','d5d9c5c0d84d41d597c85a3562e9b4fa');
INSERT INTO `items` (`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`,`uuid`) values ('35130','18','','10309','HAProxy Backend {#PXNAME}: Number of responses with codes 5xx per second','haproxy.backend.hrsp_5xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP server errors per second.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','fdaa48cf19164fed8c3f00cc42c3bab8');
INSERT INTO `items` (`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`,`uuid`) values ('35131','18','','10309','HAProxy Backend {#PXNAME}: Weight','haproxy.backend.weight[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total effective weight.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','f1d26d9c409d4983b7f94ff412ae72f3');
INSERT INTO `items` (`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`,`uuid`) values ('35132','18','','10309','HAProxy Backend {#PXNAME}: Sessions per second','haproxy.backend.stot.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Cumulative number of sessions (end-to-end connections) per second.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','76d9497f428142268a5c1eeb24cbbad7');
INSERT INTO `items` (`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`,`uuid`) values ('35133','18','','10309','HAProxy Backend {#PXNAME}: Number of responses with codes 4xx per second','haproxy.backend.hrsp_4xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP client errors per second.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','9519222f512e46d8ae1a7ca3a47f3970');
INSERT INTO `items` (`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`,`uuid`) values ('35134','18','','10309','HAProxy Backend {#PXNAME}: Number of backup servers','haproxy.backend.bck[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of backup servers.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','08debce7e9084094b38fd1100e03c553');
INSERT INTO `items` (`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`,`uuid`) values ('35135','18','','10309','HAProxy Backend {#PXNAME}: Number of responses with codes 3xx per second','haproxy.backend.hrsp_3xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP redirections per second.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','7e32a61240004b99bf19caf29c5d1409');
INSERT INTO `items` (`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`,`uuid`) values ('35136','18','','10309','HAProxy Backend {#PXNAME}: Number of responses with codes 2xx per second','haproxy.backend.hrsp_2xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of successful HTTP responses per second.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','a4e5dd0c25c3471e82e28b88b6b42e39');
INSERT INTO `items` (`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`,`uuid`) values ('35137','18','','10309','HAProxy Backend {#PXNAME}: Number of responses with codes 1xx per second','haproxy.backend.hrsp_1xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of informational HTTP responses per second.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','55edb3b8afaa4ee2961d1fead3653dbd');
INSERT INTO `items` (`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`,`uuid`) values ('35138','18','','10309','HAProxy Backend {#PXNAME}: Outgoing traffic','haproxy.backend.bout.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits sent by the backend','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','1c24125e97014d4ba6a8155af5744d38');
INSERT INTO `items` (`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`,`uuid`) values ('35139','18','','10309','HAProxy Backend {#PXNAME}: Incoming traffic','haproxy.backend.bin.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits received by the backend','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','8a53b50c1ce441c18fe6e6d5e0ad48d6');
INSERT INTO `items` (`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`,`uuid`) values ('35140','18','','10309','HAProxy Frontend {#PXNAME}: Status','haproxy.frontend.status[{#PXNAME},{#SVNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Possible values: OPEN, STOP.\r\nWhen Status is OPEN, the frontend is operating normally and ready to receive traffic.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','6e7372afcd6842c0865a1480973fc8e5');
INSERT INTO `items` (`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`,`uuid`) values ('35141','18','','10309','HAProxy {#PXNAME} {#SVNAME}: Server is active','haproxy.server.act[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,'343','','','0','','','','','2',NULL,'Shows whether the server is active (marked with a Y) or a backup (marked with a -).','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','bd19603777534fe38c9aa1888903d2fa');
INSERT INTO `items` (`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`,`uuid`) values ('35142','18','','10309','HAProxy {#PXNAME} {#SVNAME}: Weight','haproxy.server.weight[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Effective weight.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','b8b0e8b0c3904335aa391f0727aac871');
INSERT INTO `items` (`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`,`uuid`) values ('35143','18','','10309','HAProxy {#PXNAME} {#SVNAME}: Sessions per second','haproxy.server.stot.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Cumulative number of sessions (end-to-end connections) per second.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','10cfb75db0ef4a9fb33670480303522b');
INSERT INTO `items` (`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`,`uuid`) values ('35144','18','','10309','HAProxy {#PXNAME} {#SVNAME}: Configured maxqueue','haproxy.server.qlimit[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Configured maxqueue for the server, or nothing in the value is 0 (default, meaning no limit).','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','d2d92c67b546498d929b1e38b7a48561');
INSERT INTO `items` (`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`,`uuid`) values ('35145','18','','10309','HAProxy {#PXNAME} {#SVNAME}: Server was selected per second','haproxy.server.lbtot.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times that server was selected.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','ff7d8b0633ce4e119ad2f8976ce0ea18');
INSERT INTO `items` (`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`,`uuid`) values ('35146','18','','10309','HAProxy {#PXNAME} {#SVNAME}: Server is backup','haproxy.server.bck[{#PXNAME},{#SVNAME}]','0','7d','365d','0','3','','','','',NULL,'343','','','0','','','','','2',NULL,'Shows whether the server is a backup (marked with a Y) or active (marked with a -).','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','49b7da6cc75c4bb7ad2c3b7c25beccb5');
INSERT INTO `items` (`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`,`uuid`) values ('35147','18','','10309','HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 3xx per second','haproxy.server.hrsp_3xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP redirections per second.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','1a96152c277d4018acced2f9d9ffd6cd');
INSERT INTO `items` (`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`,`uuid`) values ('35148','18','','10309','HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 2xx per second','haproxy.server.hrsp_2xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of successful HTTP responses per second.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','786330b63708432c963725c83fa1791e');
INSERT INTO `items` (`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`,`uuid`) values ('35149','18','','10309','HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 1xx per second','haproxy.server.hrsp_1xx.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of informational HTTP responses per second.','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','b0a39c6bdf7b4db0a27fce9c0e08aecb');
INSERT INTO `items` (`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`,`uuid`) values ('35150','18','','10309','HAProxy {#PXNAME} {#SVNAME}: Status of last health check','haproxy.server.check_status[{#PXNAME},{#SVNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Status of last health check, one of:\r\nUNK -> unknown\r\nINI -> initializing\r\nSOCKERR -> socket error\r\nL4OK -> check passed on layer 4, no upper layers testing enabled\r\nL4TOUT -> layer 1-4 timeout\r\nL4CON -> layer 1-4 connection problem, for example "Connection refused" (tcp rst) or "No route to host" (icmp)\r\nL6OK -> check passed on layer 6\r\nL6TOUT -> layer 6 (SSL) timeout\r\nL6RSP -> layer 6 invalid response - protocol error\r\nL7OK -> check passed on layer 7\r\nL7OKC -> check conditionally passed on layer 7, for example 404 with disable-on-404\r\nL7TOUT -> layer 7 (HTTP/SMTP) timeout\r\nL7RSP -> layer 7 invalid response - protocol error\r\nL7STS -> layer 7 response error, for example HTTP 5xx\r\nNotice: If a check is currently running, the last known status will be reported, prefixed with "* ". e. g. "* L7OK".','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','6fe4502c3b534ee6b9a39a3fcc8d0b98');
INSERT INTO `items` (`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`,`uuid`) values ('35151','18','','10309','HAProxy {#PXNAME} {#SVNAME}: Outgoing traffic','haproxy.server.bout.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits sent by the backend','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','0d721252dd3946818f87815a56ced8d0');
INSERT INTO `items` (`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`,`uuid`) values ('35152','18','','10309','HAProxy {#PXNAME} {#SVNAME}: Incoming traffic','haproxy.server.bin.rate[{#PXNAME},{#SVNAME}]','0','7d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits received by the backend','0','30d','0','','30230','3s','','','','200','1','0','','0','0','0','0','0','0','0','355525dba53747c899f19fe4114a3ca4');
INSERT INTO `items` (`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`,`uuid`) values ('35163','18','','10415','Nginx: Connections idle','nginx.connections.idle','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of idle client connections.','0','30d','0','','35153','3s','','','','200','1','0','','0','0','0','0','0','0','0','0c0e5a2ba5f643e09d07e34d724aff9a');
INSERT INTO `items` (`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`,`uuid`) values ('35164','18','','10415','Nginx: Connections active','nginx.connections.active','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of active client connections.','0','30d','0','','35153','3s','','','','200','1','0','','0','0','0','0','0','0','0','a0fd403c29e4452a9be0aecb650ab063');
INSERT INTO `items` (`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`,`uuid`) values ('35165','18','','10415','Nginx: SSL session reuses, rate','nginx.ssl.session_reuses.rate','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of session reuses during SSL handshake per second.','0','30d','0','','35156','3s','','','','200','1','0','','0','0','0','0','0','0','0','98ec8bec834a42caba8d260d939beb0e');
INSERT INTO `items` (`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`,`uuid`) values ('35166','18','','10415','Nginx: SSL handshakes failed, rate','nginx.ssl.handshakes_failed.rate','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of failed SSL handshakes per second.','0','30d','0','','35156','3s','','','','200','1','0','','0','0','0','0','0','0','0','77fcc55ced2045e099b37580f7ef6d5b');
INSERT INTO `items` (`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`,`uuid`) values ('35167','18','','10415','Nginx: SSL handshakes, rate','nginx.ssl.handshakes.rate','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of successful SSL handshakes per second.','0','30d','0','','35156','3s','','','','200','1','0','','0','0','0','0','0','0','0','09c7ab8555d046a69a96889185650dfe');
INSERT INTO `items` (`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`,`uuid`) values ('35168','18','','10415','Nginx: Connections dropped','nginx.connections.dropped','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of dropped client connections.','0','30d','0','','35153','3s','','','','200','1','0','','0','0','0','0','0','0','0','06395827019542b7bd381d42beb76b10');
INSERT INTO `items` (`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`,`uuid`) values ('35169','18','','10415','Nginx: Requests current','nginx.requests.current','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of client requests.','0','30d','0','','35158','3s','','','','200','1','0','','0','0','0','0','0','0','0','630c4f81f9f44397a156e2d4e5d21af8');
INSERT INTO `items` (`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`,`uuid`) values ('35170','18','','10415','Nginx: Requests total, rate','nginx.requests.total.rate','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of client requests per second.','0','30d','0','','35158','3s','','','','200','1','0','','0','0','0','0','0','0','0','8130bfb659a94641b97a1abcdb9a4f66');
INSERT INTO `items` (`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`,`uuid`) values ('35171','18','','10415','Nginx: Version','nginx.info.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of nginx.','0','30d','0','','35154','3s','','','','200','1','0','','0','0','0','0','0','0','0','89059effd28641e08e2002c807784bcb');
INSERT INTO `items` (`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`,`uuid`) values ('35172','18','','10415','Nginx: Connections accepted, rate','nginx.connections.accepted.rate','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of accepted client connections per second.','0','30d','0','','35153','3s','','','','200','1','0','','0','0','0','0','0','0','0','1734b26ca856405e8c08f222944cadc3');
INSERT INTO `items` (`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`,`uuid`) values ('35173','18','','10415','Nginx: Generation','nginx.info.generation','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of configuration reloads.','0','30d','0','','35154','3s','','','','200','1','0','','0','0','0','0','0','0','0','9baff3e318d84cd78c6a8ec6ae294de5');
INSERT INTO `items` (`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`,`uuid`) values ('35174','18','','10415','Nginx: Get info error','nginx.info.error','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Nginx error description.','0','30d','0','','35154','3s','','','','200','1','0','','0','0','0','0','0','0','0','14c417b374ef4674bb374979135f8617');
INSERT INTO `items` (`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`,`uuid`) values ('35175','18','','10415','Nginx: Address','nginx.info.address','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The address of the server that accepted status request.','0','30d','0','','35154','3s','','','','200','1','0','','0','0','0','0','0','0','0','178f9f0c2ae74a6bbf1ae6965021ccde');
INSERT INTO `items` (`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`,`uuid`) values ('35176','18','','10415','Nginx: Uptime','nginx.info.uptime','0','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'Server uptime.','0','30d','0','','35154','3s','','','','200','1','0','','0','0','0','0','0','0','0','1baceaa7af4d45e487a448670e213c94');
INSERT INTO `items` (`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`,`uuid`) values ('35177','18','','10415','HTTP location zones discovery','nginx.http.location_zones.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','1','','35161','3s','','','','200','1','0','','0','0','0','0','0','0','0','33fdb45a55544c628c0106ed193ebc0b');
INSERT INTO `items` (`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`,`uuid`) values ('35178','18','','10415','HTTP server zones discovery','nginx.http.server_zones.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','1','','35162','3s','','','','200','1','0','','0','0','0','0','0','0','0','85ad3fc40daa45b7a2fe00d570c5626c');
INSERT INTO `items` (`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`,`uuid`) values ('35179','18','','10415','HTTP upstream peers discovery','nginx.http.upstream.peers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','1','','35160','3s','','','','200','1','0','','0','0','0','0','0','0','0','007e9b12e7164f629d90a6f377333dc8');
INSERT INTO `items` (`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`,`uuid`) values ('35180','18','','10415','HTTP upstreams discovery','nginx.http.upstreams.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','1','','35160','3s','','','','200','1','0','','0','0','0','0','0','0','0','0cdb09e9004540239fd49eab09e3f324');
INSERT INTO `items` (`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`,`uuid`) values ('35181','18','','10415','Resolvers discovery','nginx.resolvers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','1','','35157','3s','','','','200','1','0','','0','0','0','0','0','0','0','1f75b67c7c4044dfa8727cc7363e86d0');
INSERT INTO `items` (`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`,`uuid`) values ('35182','18','','10415','Stream server zones discovery','nginx.stream.server_zones.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','1','','35155','3s','','','','200','1','0','','0','0','0','0','0','0','0','bdc6582408be488997720ef8a4d1108e');
INSERT INTO `items` (`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`,`uuid`) values ('35183','18','','10415','Stream upstream peers discovery','nginx.stream.upstream.peers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','1','','35159','3s','','','','200','1','0','','0','0','0','0','0','0','0','435f8bc40dd244aabb7daee4be7d54e5');
INSERT INTO `items` (`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`,`uuid`) values ('35184','18','','10415','Stream upstreams discovery','nginx.stream.upstreams.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','1','','35159','3s','','','','200','1','0','','0','0','0','0','0','0','0','8a8f9d8b47f84bd98a5315ae30944240');
INSERT INTO `items` (`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`,`uuid`) values ('35185','18','','10415','Nginx: HTTP location zone [{#NAME}]: Discarded, rate','nginx.http.location_zones.discarded.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of requests completed without sending a response per second.','0','30d','0','','35161','3s','','','','200','1','0','','0','0','0','0','0','0','0','e75bc85680534ec18df16b9e69bc248c');
INSERT INTO `items` (`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`,`uuid`) values ('35186','18','','10415','Nginx: HTTP location zone [{#NAME}]: Received, rate','nginx.http.location_zones.received.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of bytes received from clients per second.','0','30d','0','','35161','3s','','','','200','1','0','','0','0','0','0','0','0','0','17e01c9171bd493f98b37811dcf49802');
INSERT INTO `items` (`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`,`uuid`) values ('35187','18','','10415','Nginx: HTTP location zone [{#NAME}]: Requests, rate','nginx.http.location_zones.requests.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of client requests received from clients per second.','0','30d','0','','35161','3s','','','','200','1','0','','0','0','0','0','0','0','0','c646c18580ef4b8695cbc03ce0d5122d');
INSERT INTO `items` (`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`,`uuid`) values ('35188','18','','10415','Nginx: HTTP location zone [{#NAME}]: Responses 1xx, rate','nginx.http.location_zones.responses.1xx.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with “1xx” status codes per second.','0','30d','0','','35161','3s','','','','200','1','0','','0','0','0','0','0','0','0','82c9f68d10ec47f1a701eee692e3b9ae');
INSERT INTO `items` (`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`,`uuid`) values ('35189','18','','10415','Nginx: HTTP location zone [{#NAME}]: Responses 2xx, rate','nginx.http.location_zones.responses.2xx.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with “2xx” status codes per second.','0','30d','0','','35161','3s','','','','200','1','0','','0','0','0','0','0','0','0','0cedd14450ba44f0b4c026afabb522a9');
INSERT INTO `items` (`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`,`uuid`) values ('35190','18','','10415','Nginx: HTTP location zone [{#NAME}]: Responses 3xx, rate','nginx.http.location_zones.responses.3xx.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with “3xx” status codes per second.','0','30d','0','','35161','3s','','','','200','1','0','','0','0','0','0','0','0','0','046a2a3b9a644dc1b4a0078b6722c867');
INSERT INTO `items` (`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`,`uuid`) values ('35191','18','','10415','Nginx: HTTP location zone [{#NAME}]: Responses 4xx, rate','nginx.http.location_zones.responses.4xx.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with “4xx” status codes per second.','0','30d','0','','35161','3s','','','','200','1','0','','0','0','0','0','0','0','0','32eb7cb8f04044d6a00ead678ff44a00');
INSERT INTO `items` (`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`,`uuid`) values ('35192','18','','10415','Nginx: HTTP location zone [{#NAME}]: Responses 5xx, rate','nginx.http.location_zones.responses.5xx.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with “5xx” status codes per second.','0','30d','0','','35161','3s','','','','200','1','0','','0','0','0','0','0','0','0','dd5a27eb32da42d7998f89a96e29304f');
INSERT INTO `items` (`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`,`uuid`) values ('35193','18','','10415','Nginx: HTTP location zone [{#NAME}]: Responses total, rate','nginx.http.location_zones.responses.total.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of responses sent to clients per second.','0','30d','0','','35161','3s','','','','200','1','0','','0','0','0','0','0','0','0','b6e3c7f074b54531aa57dce55169aedd');
INSERT INTO `items` (`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`,`uuid`) values ('35194','18','','10415','Nginx: HTTP location zone [{#NAME}]: Sent, rate','nginx.http.location_zones.sent.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of bytes sent to clients per second.','0','30d','0','','35161','3s','','','','200','1','0','','0','0','0','0','0','0','0','0af45d37b3a24d5491054aa3cf319315');
INSERT INTO `items` (`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`,`uuid`) values ('35195','18','','10415','Nginx: HTTP server zone [{#NAME}]: Discarded, rate','nginx.http.server_zones.discarded.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of requests completed without sending a response per second.','0','30d','0','','35162','3s','','','','200','1','0','','0','0','0','0','0','0','0','46d056a7870545e49db03b0ec2bd1e9b');
INSERT INTO `items` (`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`,`uuid`) values ('35196','18','','10415','Nginx: HTTP server zone [{#NAME}]: Processing','nginx.http.server_zones.processing[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of client requests that are currently being processed.','0','30d','0','','35162','3s','','','','200','1','0','','0','0','0','0','0','0','0','e8dd5302fced4d23ba93656f383222d9');
INSERT INTO `items` (`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`,`uuid`) values ('35197','18','','10415','Nginx: HTTP server zone [{#NAME}]: Received, rate','nginx.http.server_zones.received.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of bytes received from clients per second.','0','30d','0','','35162','3s','','','','200','1','0','','0','0','0','0','0','0','0','edc834403218460b8c7b8b3ca0709a76');
INSERT INTO `items` (`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`,`uuid`) values ('35198','18','','10415','Nginx: HTTP server zone [{#NAME}]: Requests, rate','nginx.http.server_zones.requests.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of client requests received from clients per second.','0','30d','0','','35162','3s','','','','200','1','0','','0','0','0','0','0','0','0','e33079d5cc684a5687bd7cd10eaec541');
INSERT INTO `items` (`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`,`uuid`) values ('35199','18','','10415','Nginx: HTTP server zone [{#NAME}]: Responses 1xx, rate','nginx.http.server_zones.responses.1xx.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with “1xx” status codes per second.','0','30d','0','','35162','3s','','','','200','1','0','','0','0','0','0','0','0','0','2b37ee1a3c1243c38534f70acf7a32d9');
INSERT INTO `items` (`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`,`uuid`) values ('35200','18','','10415','Nginx: HTTP server zone [{#NAME}]: Responses 2xx, rate','nginx.http.server_zones.responses.2xx.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with “2xx” status codes per second.','0','30d','0','','35162','3s','','','','200','1','0','','0','0','0','0','0','0','0','4e127d8bfac940f1b3703053ada05fbd');
INSERT INTO `items` (`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`,`uuid`) values ('35201','18','','10415','Nginx: HTTP server zone [{#NAME}]: Responses 3xx, rate','nginx.http.server_zones.responses.3xx.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with “3xx” status codes per second.','0','30d','0','','35162','3s','','','','200','1','0','','0','0','0','0','0','0','0','6add98c2b5334160a0e4cc363f53cb7e');
INSERT INTO `items` (`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`,`uuid`) values ('35202','18','','10415','Nginx: HTTP server zone [{#NAME}]: Responses 4xx, rate','nginx.http.server_zones.responses.4xx.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with “4xx” status codes per second.','0','30d','0','','35162','3s','','','','200','1','0','','0','0','0','0','0','0','0','1f2cd6dcddf948a9bf17f05c68502f46');
INSERT INTO `items` (`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`,`uuid`) values ('35203','18','','10415','Nginx: HTTP server zone [{#NAME}]: Responses 5xx, rate','nginx.http.server_zones.responses.5xx.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with “5xx” status codes per second.','0','30d','0','','35162','3s','','','','200','1','0','','0','0','0','0','0','0','0','fc6654f2627e47cbbe1a7628c073520a');
INSERT INTO `items` (`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`,`uuid`) values ('35204','18','','10415','Nginx: HTTP server zone [{#NAME}]: Responses total, rate','nginx.http.server_zones.responses.total.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of responses sent to clients per second.','0','30d','0','','35162','3s','','','','200','1','0','','0','0','0','0','0','0','0','fd81275f0c994a62a9412d595d7d2e8b');
INSERT INTO `items` (`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`,`uuid`) values ('35205','18','','10415','Nginx: HTTP server zone [{#NAME}]: Sent, rate','nginx.http.server_zones.sent.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of bytes sent to clients per second.','0','30d','0','','35162','3s','','','','200','1','0','','0','0','0','0','0','0','0','91acfc8de0e64d52820d509ced251e5b');
INSERT INTO `items` (`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`,`uuid`) values ('35206','18','','10415','Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Active','nginx.http.upstream.peer.active[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current number of active connections.','0','30d','0','','35160','3s','','','','200','1','0','','0','0','0','0','0','0','0','ad270fab134c44ae83c154670db4d317');
INSERT INTO `items` (`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`,`uuid`) values ('35207','18','','10415','Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 3xx, rate','nginx.http.upstream.peer.responses.3xx.rate[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with “3xx” status codes per second.','0','30d','0','','35160','3s','','','','200','1','0','','0','0','0','0','0','0','0','7b2851137d77418a8548e92332c66c86');
INSERT INTO `items` (`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`,`uuid`) values ('35208','18','','10415','Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: State','nginx.http.upstream.peer.state[{#UPSTREAM},{#PEER}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current state, which may be one of “up”, “draining”, “down”, “unavail”, “checking”, and “unhealthy”.','0','30d','0','','35160','3s','','','','200','1','0','','0','0','0','0','0','0','0','33eacaa48f974c348e37475341a6c8af');
INSERT INTO `items` (`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`,`uuid`) values ('35209','18','','10415','Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Sent, rate','nginx.http.upstream.peer.sent.rate[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of bytes sent to this server per second.','0','30d','0','','35160','3s','','','','200','1','0','','0','0','0','0','0','0','0','2a0a36d22acf453e80d79820990db9b8');
INSERT INTO `items` (`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`,`uuid`) values ('35210','18','','10415','Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Response time','nginx.http.upstream.peer.response_time.rate[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','!ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time to get the full response from the server.','0','30d','0','','35160','3s','','','','200','1','0','','0','0','0','0','0','0','0','868562df5ab44d3cadeb6fa294b33559');
INSERT INTO `items` (`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`,`uuid`) values ('35211','18','','10415','Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses total, rate','nginx.http.upstream.peer.responses.total.rate[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of responses obtained from this server.','0','30d','0','','35160','3s','','','','200','1','0','','0','0','0','0','0','0','0','d587254989c743b4aa9c8043bf18baa5');
INSERT INTO `items` (`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`,`uuid`) values ('35212','18','','10415','Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 5xx, rate','nginx.http.upstream.peer.responses.5xx.rate[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with “5xx” status codes per second.','0','30d','0','','35160','3s','','','','200','1','0','','0','0','0','0','0','0','0','172cb81d02f04fd48c7b82d8ae7dac69');
INSERT INTO `items` (`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`,`uuid`) values ('35213','18','','10415','Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 4xx, rate','nginx.http.upstream.peer.responses.4xx.rate[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with “4xx” status codes per second.','0','30d','0','','35160','3s','','','','200','1','0','','0','0','0','0','0','0','0','cb81f113d289409ca26af48aeb68f8cc');
INSERT INTO `items` (`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`,`uuid`) values ('35214','18','','10415','Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 2xx, rate','nginx.http.upstream.peer.responses.2xx.rate[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with “2xx” status codes per second.','0','30d','0','','35160','3s','','','','200','1','0','','0','0','0','0','0','0','0','e526b61c48eb45568ef92434eee3a2cb');
INSERT INTO `items` (`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`,`uuid`) values ('35215','18','','10415','Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Fails, rate','nginx.http.upstream.peer.fails.rate[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of unsuccessful attempts to communicate with the server per second.','0','30d','0','','35160','3s','','','','200','1','0','','0','0','0','0','0','0','0','cd7455016ac549598df2551a716545ef');
INSERT INTO `items` (`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`,`uuid`) values ('35216','18','','10415','Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 1xx, rate','nginx.http.upstream.peer.responses.1xx.rate[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with “1xx” status codes per second.','0','30d','0','','35160','3s','','','','200','1','0','','0','0','0','0','0','0','0','6ca38995050e44488df4fde7dc543541');
INSERT INTO `items` (`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`,`uuid`) values ('35217','18','','10415','Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Requests, rate','nginx.http.upstream.peer.requests.rate[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of client requests forwarded to this server per second.','0','30d','0','','35160','3s','','','','200','1','0','','0','0','0','0','0','0','0','3ff18cfb4028421e9af0460aeaa2d6a4');
INSERT INTO `items` (`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`,`uuid`) values ('35218','18','','10415','Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Received, rate','nginx.http.upstream.peer.received.rate[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of bytes received from this server per second.','0','30d','0','','35160','3s','','','','200','1','0','','0','0','0','0','0','0','0','8731deb89d1c4fc2bab90aca5802c721');
INSERT INTO `items` (`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`,`uuid`) values ('35219','18','','10415','Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, unhealthy','nginx.http.upstream.peer.health_checks.unhealthy[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'How many times the server became unhealthy (state “unhealthy”).','0','30d','0','','35160','3s','','','','200','1','0','','0','0','0','0','0','0','0','89c57fb94cab4635b14532961560a8bf');
INSERT INTO `items` (`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`,`uuid`) values ('35220','18','','10415','Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, fails','nginx.http.upstream.peer.health_checks.fails[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of failed health checks.','0','30d','0','','35160','3s','','','','200','1','0','','0','0','0','0','0','0','0','31292e9dbc8c45dd936ed1e77d44940b');
INSERT INTO `items` (`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`,`uuid`) values ('35221','18','','10415','Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, check','nginx.http.upstream.peer.health_checks.checks[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of health check requests made.','0','30d','0','','35160','3s','','','','200','1','0','','0','0','0','0','0','0','0','89f89850409a4aff8447b9f7c2839f01');
INSERT INTO `items` (`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`,`uuid`) values ('35222','18','','10415','Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Header time','nginx.http.upstream.peer.header_time.rate[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','!ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time to get the response header from the server.','0','30d','0','','35160','3s','','','','200','1','0','','0','0','0','0','0','0','0','b0607f003d7a4713a28f0d75b7933087');
INSERT INTO `items` (`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`,`uuid`) values ('35223','18','','10415','Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Unavail','nginx.http.upstream.peer.unavail.rate[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'How many times the server became unavailable for client requests (state “unavail”) due to the number of unsuccessful attempts reaching the max_fails threshold.','0','30d','0','','35160','3s','','','','200','1','0','','0','0','0','0','0','0','0','e89e6c141217465794febd9131ccafae');
INSERT INTO `items` (`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`,`uuid`) values ('35224','18','','10415','Nginx: HTTP upstream [{#NAME}]: Keepalive','nginx.http.upstreams.keepalive[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current number of idle keepalive connections.','0','30d','0','','35160','3s','','','','200','1','0','','0','0','0','0','0','0','0','ef9a2a71c3a340c894f82c29503d6b6b');
INSERT INTO `items` (`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`,`uuid`) values ('35225','18','','10415','Nginx: HTTP upstream [{#NAME}]: Zombies','nginx.http.upstreams.zombies[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current number of servers removed from the group but still processing active client requests.','0','30d','0','','35160','3s','','','','200','1','0','','0','0','0','0','0','0','0','1a426d42dada4eb082aa4e912ae1256c');
INSERT INTO `items` (`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`,`uuid`) values ('35226','18','','10415','Nginx: HTTP upstream [{#NAME}]: Zone','nginx.http.upstreams.zone[{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The name of the shared memory zone that keeps the group\'s configuration and run-time state.','0','30d','0','','35160','3s','','','','200','1','0','','0','0','0','0','0','0','0','8aa415f2a55a4e8fb28ea87a8d307bd4');
INSERT INTO `items` (`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`,`uuid`) values ('35227','18','','10415','Nginx: Resolver [{#NAME}]: Requests addr, rate','nginx.resolvers.requests.addr.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of requests to resolve addresses to names per second.','0','30d','0','','35157','3s','','','','200','1','0','','0','0','0','0','0','0','0','8fd2a1c5c148423886dccb939ca61b62');
INSERT INTO `items` (`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`,`uuid`) values ('35228','18','','10415','Nginx: Resolver [{#NAME}]: Requests name, rate','nginx.resolvers.requests.name.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of requests to resolve names to addresses per second.','0','30d','0','','35157','3s','','','','200','1','0','','0','0','0','0','0','0','0','fb149324f11a4edc9971e9e2572282a6');
INSERT INTO `items` (`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`,`uuid`) values ('35229','18','','10415','Nginx: Resolver [{#NAME}]: Requests srv, rate','nginx.resolvers.requests.srv.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of requests to resolve SRV records per second.','0','30d','0','','35157','3s','','','','200','1','0','','0','0','0','0','0','0','0','9ebd08e8b6a3416c940b16a03158bafe');
INSERT INTO `items` (`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`,`uuid`) values ('35230','18','','10415','Nginx: Resolver [{#NAME}]: Responses formerr, rate','nginx.resolvers.responses.formerr.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of FORMERR (Format error) responses per second.','0','30d','0','','35157','3s','','','','200','1','0','','0','0','0','0','0','0','0','8a7db7d9c24f4f88b9ad9dde32b2b2e0');
INSERT INTO `items` (`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`,`uuid`) values ('35231','18','','10415','Nginx: Resolver [{#NAME}]: Responses noerror, rate','nginx.resolvers.responses.noerror.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of successful responses per second.','0','30d','0','','35157','3s','','','','200','1','0','','0','0','0','0','0','0','0','bf5a55d771724cfeaec90950f653b181');
INSERT INTO `items` (`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`,`uuid`) values ('35232','18','','10415','Nginx: Resolver [{#NAME}]: Responses notimp, rate','nginx.resolvers.responses.notimp.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of NOTIMP (Unimplemented) responses per second.','0','30d','0','','35157','3s','','','','200','1','0','','0','0','0','0','0','0','0','46cd31140a3342568c7d7ae0cdae6270');
INSERT INTO `items` (`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`,`uuid`) values ('35233','18','','10415','Nginx: Resolver [{#NAME}]: Responses nxdomain, rate','nginx.resolvers.responses.nxdomain.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of NXDOMAIN (Host not found) responses per second.','0','30d','0','','35157','3s','','','','200','1','0','','0','0','0','0','0','0','0','b4e002955de844a69a755076993b0577');
INSERT INTO `items` (`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`,`uuid`) values ('35234','18','','10415','Nginx: Resolver [{#NAME}]: Responses refused, rate','nginx.resolvers.responses.refused.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of REFUSED (Operation refused) responses per second.','0','30d','0','','35157','3s','','','','200','1','0','','0','0','0','0','0','0','0','114f260fc9754e80927494dce51f9e46');
INSERT INTO `items` (`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`,`uuid`) values ('35235','18','','10415','Nginx: Resolver [{#NAME}]: Responses servfail, rate','nginx.resolvers.responses.servfail.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of SERVFAIL (Server failure) responses per second.','0','30d','0','','35157','3s','','','','200','1','0','','0','0','0','0','0','0','0','7b4f4f609807407e849525f9f99c0fcc');
INSERT INTO `items` (`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`,`uuid`) values ('35236','18','','10415','Nginx: Resolver [{#NAME}]: Responses timedout, rate','nginx.resolvers.responses.timedout.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of timed out requests per second.','0','30d','0','','35157','3s','','','','200','1','0','','0','0','0','0','0','0','0','28b11b8bfd6143ada94b041390281a2f');
INSERT INTO `items` (`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`,`uuid`) values ('35237','18','','10415','Nginx: Resolver [{#NAME}]: Responses unknown, rate','nginx.resolvers.responses.unknown.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of requests completed with an unknown error per second.','0','30d','0','','35157','3s','','','','200','1','0','','0','0','0','0','0','0','0','b68f19ad119941b58da491d2cd827277');
INSERT INTO `items` (`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`,`uuid`) values ('35238','18','','10415','Nginx: Stream server zone [{#NAME}]: Connections, rate','nginx.stream.server_zones.connections.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of connections accepted from clients per second.','0','30d','0','','35155','3s','','','','200','1','0','','0','0','0','0','0','0','0','e321037e23ff484cb4dc89a8e187919c');
INSERT INTO `items` (`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`,`uuid`) values ('35239','18','','10415','Nginx: Stream server zone [{#NAME}]: Discarded, rate','nginx.stream.server_zones.discarded.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of connections completed without creating a session per second.','0','30d','0','','35155','3s','','','','200','1','0','','0','0','0','0','0','0','0','c9e9d883123842d291c922d5bbcca8f3');
INSERT INTO `items` (`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`,`uuid`) values ('35240','18','','10415','Nginx: Stream server zone [{#NAME}]: Processing','nginx.stream.server_zones.processing[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of client connections that are currently being processed.','0','30d','0','','35155','3s','','','','200','1','0','','0','0','0','0','0','0','0','f8d16f41fe9e4be685c28bb4acd2187f');
INSERT INTO `items` (`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`,`uuid`) values ('35241','18','','10415','Nginx: Stream server zone [{#NAME}]: Received, rate','nginx.stream.server_zones.received.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of bytes received from clients per second.','0','30d','0','','35155','3s','','','','200','1','0','','0','0','0','0','0','0','0','47a9959627e3423e9739b55dac23edd2');
INSERT INTO `items` (`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`,`uuid`) values ('35242','18','','10415','Nginx: Stream server zone [{#NAME}]: Sent, rate','nginx.stream.server_zones.sent.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of bytes sent to clients per second.','0','30d','0','','35155','3s','','','','200','1','0','','0','0','0','0','0','0','0','2aafb1ae6ce24f14a3494826d63cfce2');
INSERT INTO `items` (`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`,`uuid`) values ('35243','18','','10415','Nginx: Stream server zone [{#NAME}]: Sessions 2xx, rate','nginx.stream.server_zones.sessions.2xx.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of sessions completed with status codes “2xx” per second.','0','30d','0','','35155','3s','','','','200','1','0','','0','0','0','0','0','0','0','7399335b883040c495b5cbfade3e182e');
INSERT INTO `items` (`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`,`uuid`) values ('35244','18','','10415','Nginx: Stream server zone [{#NAME}]: Sessions 4xx, rate','nginx.stream.server_zones.sessions.4xx.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of sessions completed with status codes “4xx” per second.','0','30d','0','','35155','3s','','','','200','1','0','','0','0','0','0','0','0','0','5e654682849748bea849db9ab73f7075');
INSERT INTO `items` (`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`,`uuid`) values ('35245','18','','10415','Nginx: Stream server zone [{#NAME}]: Sessions 5xx, rate','nginx.stream.server_zones.sessions.5xx.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of sessions completed with status codes “5xx” per second.','0','30d','0','','35155','3s','','','','200','1','0','','0','0','0','0','0','0','0','0cdc4545f6dc4a1e8f247291302824a4');
INSERT INTO `items` (`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`,`uuid`) values ('35246','18','','10415','Nginx: Stream server zone [{#NAME}]: Sessions total, rate','nginx.stream.server_zones.sessions.total.rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of completed client sessions per second.','0','30d','0','','35155','3s','','','','200','1','0','','0','0','0','0','0','0','0','30313c91655042b8948422c13fbdfca3');
INSERT INTO `items` (`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`,`uuid`) values ('35247','18','','10415','Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Active','nginx.stream.upstream.peer.active[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current number of connections.','0','30d','0','','35159','3s','','','','200','1','0','','0','0','0','0','0','0','0','3337df557e734de8b019216c5c06fcea');
INSERT INTO `items` (`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`,`uuid`) values ('35248','18','','10415','Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Connections','nginx.stream.upstream.peer.connections.rate[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of client connections forwarded to this server.','0','30d','0','','35159','3s','','','','200','1','0','','0','0','0','0','0','0','0','2ae319abd31b40b7a765c300e5dfa954');
INSERT INTO `items` (`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`,`uuid`) values ('35249','18','','10415','Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Connect time','nginx.stream.upstream.peer.connect_time.rate[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','!ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time to connect to the upstream server.','0','30d','0','','35159','3s','','','','200','1','0','','0','0','0','0','0','0','0','f98409ef166b47f3a70d46dffe233166');
INSERT INTO `items` (`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`,`uuid`) values ('35250','18','','10415','Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Fails, rate','nginx.stream.upstream.peer.fails.rate[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of unsuccessful attempts to communicate with the server per second.','0','30d','0','','35159','3s','','','','200','1','0','','0','0','0','0','0','0','0','0b1000ddc883422cb9fb3382a839c10a');
INSERT INTO `items` (`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`,`uuid`) values ('35251','18','','10415','Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: First byte time','nginx.stream.upstream.peer.first_byte_time.rate[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','!ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time to receive the first byte of data.','0','30d','0','','35159','3s','','','','200','1','0','','0','0','0','0','0','0','0','23a02d1c0a63483fb1eb4914a7e48ecf');
INSERT INTO `items` (`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`,`uuid`) values ('35252','18','','10415','Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, check','nginx.stream.upstream.peer.health_checks.checks[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of health check requests made.','0','30d','0','','35159','3s','','','','200','1','0','','0','0','0','0','0','0','0','dac0196daad74fc385a336c7dbddbcfd');
INSERT INTO `items` (`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`,`uuid`) values ('35253','18','','10415','Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, fails','nginx.stream.upstream.peer.health_checks.fails[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of failed health checks.','0','30d','0','','35159','3s','','','','200','1','0','','0','0','0','0','0','0','0','af2a6991b432439cb4afb071974a05e7');
INSERT INTO `items` (`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`,`uuid`) values ('35254','18','','10415','Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, unhealthy','nginx.stream.upstream.peer.health_checks.unhealthy[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'How many times the server became unhealthy (state “unhealthy”).','0','30d','0','','35159','3s','','','','200','1','0','','0','0','0','0','0','0','0','089bbb9c602a4654a3d2c582c643745f');
INSERT INTO `items` (`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`,`uuid`) values ('35255','18','','10415','Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Received, rate','nginx.stream.upstream.peer.received.rate[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of bytes received from this server per second.','0','30d','0','','35159','3s','','','','200','1','0','','0','0','0','0','0','0','0','12193b1723eb419a9bbcb235c7b45308');
INSERT INTO `items` (`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`,`uuid`) values ('35256','18','','10415','Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Response time','nginx.stream.upstream.peer.response_time.rate[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','!ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time to receive the last byte of data.','0','30d','0','','35159','3s','','','','200','1','0','','0','0','0','0','0','0','0','bda851b725454395b59988f03c534b3b');
INSERT INTO `items` (`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`,`uuid`) values ('35257','18','','10415','Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Sent, rate','nginx.stream.upstream.peer.sent.rate[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of bytes sent to this server per second.','0','30d','0','','35159','3s','','','','200','1','0','','0','0','0','0','0','0','0','6ae8685716cf487fa72534a76e4b286a');
INSERT INTO `items` (`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`,`uuid`) values ('35258','18','','10415','Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: State','nginx.stream.upstream.peer.state[{#UPSTREAM},{#PEER}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current state, which may be one of “up”, “draining”, “down”, “unavail”, “checking”, and “unhealthy”.','0','30d','0','','35159','3s','','','','200','1','0','','0','0','0','0','0','0','0','ae7b6564244845518816fffc38bbf9aa');
INSERT INTO `items` (`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`,`uuid`) values ('35259','18','','10415','Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Unavail','nginx.stream.upstream.peer.unavail.rate[{#UPSTREAM},{#PEER}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'How many times the server became unavailable for client requests (state “unavail”) due to the number of unsuccessful attempts reaching the max_fails threshold.','0','30d','0','','35159','3s','','','','200','1','0','','0','0','0','0','0','0','0','732f0ea262454ab3a4cfeb09aea66b9b');
INSERT INTO `items` (`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`,`uuid`) values ('35260','18','','10415','Nginx: Stream upstream [{#NAME}]: Zombies','nginx.stream.upstreams.zombies[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','35159','3s','','','','200','1','0','','0','0','0','0','0','0','0','5537680fbc024713a077932cc55ef3a7');
INSERT INTO `items` (`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`,`uuid`) values ('35261','18','','10415','Nginx: Stream upstream [{#NAME}]: Zone','nginx.stream.upstreams.zone[{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','35159','3s','','','','200','1','0','','0','0','0','0','0','0','0','8c273c10ece545a58e4d34f6d3812fe0');
INSERT INTO `items` (`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`,`uuid`) values ('35266','18','','10416','{#UNIT.NAME}: Active state','systemd.service.active_state["{#UNIT.NAME}"]','0','7d','365d','0','3','','','','',NULL,'344','','','0','','','','','2',NULL,'State value that reflects whether the unit is currently active or not. The following states are currently defined: "active", "reloading", "inactive", "failed", "activating", and "deactivating".','0','30d','0','','35264','3s','','','','200','1','0','','0','0','0','0','0','0','0','78587e9b16b5431bbccd2855998171fa');
INSERT INTO `items` (`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`,`uuid`) values ('35267','18','','10416','{#UNIT.NAME}: Load state','systemd.service.load_state["{#UNIT.NAME}"]','0','7d','365d','0','3','','','','',NULL,'346','','','0','','','','','2',NULL,'State value that reflects whether the configuration file of this unit has been loaded. The following states are currently defined: "loaded", "error", and "masked".','0','30d','0','','35264','3s','','','','200','1','0','','0','0','0','0','0','0','0','bed610e6ce33494b817eb787e34e18c2');
INSERT INTO `items` (`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`,`uuid`) values ('35268','18','','10416','{#UNIT.NAME}: Unit file state','systemd.service.unitfile_state["{#UNIT.NAME}"]','0','7d','365d','0','3','','','','',NULL,'345','','','0','','','','','2',NULL,'Encodes the install state of the unit file of FragmentPath. It currently knows the following states: "enabled", "enabled-runtime", "linked", "linked-runtime", "masked", "masked-runtime", "static", "disabled", and "invalid".','0','30d','0','','35264','3s','','','','200','1','0','','0','0','0','0','0','0','0','f1174eb5abf74e028a75ab9bb8eec649');
INSERT INTO `items` (`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`,`uuid`) values ('35269','18','','10416','{#UNIT.NAME}: Active time','systemd.service.uptime["{#UNIT.NAME}"]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of seconds since unit entered the active state.','0','30d','0','','35264','3s','','','','200','1','0','','0','0','0','0','0','0','0','a35992b54d944a389c1bb44748a37fdb');
INSERT INTO `items` (`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`,`uuid`) values ('35270','18','','10416','{#UNIT.NAME}: Connections accepted per sec','systemd.socket.conn_accepted.rate["{#UNIT.NAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of accepted socket connections (NAccepted) per second.','0','30d','0','','35265','3s','','','','200','1','0','','0','0','0','0','0','0','0','462ee6b9e70146c8ab6a917c182f3ce7');
INSERT INTO `items` (`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`,`uuid`) values ('35271','18','','10416','{#UNIT.NAME}: Connections connected','systemd.socket.conn_count["{#UNIT.NAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current number of socket connections (NConnections).','0','30d','0','','35265','3s','','','','200','1','0','','0','0','0','0','0','0','0','258a899aba9546db956b8e235738bd89');
INSERT INTO `items` (`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`,`uuid`) values ('35278','18','','10261','Remote Zabbix server: Utilization of trigger housekeeper internal processes, in %','process.trigger_housekeeper.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time trigger housekeeper processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','56dca0db33264d4b9c8fd769fbdff7b5');
INSERT INTO `items` (`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`,`uuid`) values ('35279','18','','10261','Remote Zabbix server: Utilization of service manager internal processes, in %','process.service_manager.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time service manager processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','99da1d8bd47447d282542d40c1edea00');
INSERT INTO `items` (`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`,`uuid`) values ('36215','18','','10435','Dell R720: Firmware version','dell.server.hw.firmware','0','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the firmware version of a remote access card.','0','30d','0','','36213','3s','','','','200','1','0','','0','0','0','0','0','0','0','55124354a9944934acb01c8d2f8d43a6');
INSERT INTO `items` (`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`,`uuid`) values ('36216','18','','10435','Dell R720: Hardware model name','dell.server.hw.model','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the model name of the system.','29','30d','0','','36213','3s','','','','200','1','0','','0','0','0','0','0','0','0','6ef767b8b0a94ebc822c81abd9ee5a8b');
INSERT INTO `items` (`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`,`uuid`) values ('36217','18','','10435','Dell R720: Hardware serial number','dell.server.hw.serialnumber','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the service tag of the system.','8','30d','0','','36213','3s','','','','200','1','0','','0','0','0','0','0','0','0','114dd17f872c491eb739f708ae86b340');
INSERT INTO `items` (`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`,`uuid`) values ('36218','18','','10435','Dell R720: Overall system health status','dell.server.status','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the overall rollup status of all components in the system being monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc.','0','30d','0','','36213','3s','','','','200','1','0','','0','0','0','0','0','0','0','3cce4b6aff674b29a80aa5369268d99d');
INSERT INTO `items` (`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`,`uuid`) values ('36235','18','','10435','Dell R720: {#SENSOR_NAME} Speed','dell.server.sensor.fan.speed[{#SENSOR_NAME}]','0','7d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'The sensor value.','0','30d','0','','36229','3s','','','','200','1','0','','0','0','0','0','0','0','0','32c00337c3a24ce1bd76622b8203141f');
INSERT INTO `items` (`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`,`uuid`) values ('36236','18','','10435','Dell R720: {#SENSOR_NAME} Status','dell.server.sensor.fan.status[{#SENSOR_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36229','3s','','','','200','1','0','','0','0','0','0','0','0','0','b9167957cb1a42749afcecbfd1062f7c');
INSERT INTO `items` (`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`,`uuid`) values ('36237','18','','10435','Dell R720: {#IFNAME} Status','dell.server.net.if.health[{#IFNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36230','3s','','','','200','1','0','','0','0','0','0','0','0','0','5a29abc9a33c498498ede924953e506e');
INSERT INTO `items` (`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`,`uuid`) values ('36238','18','','10435','Dell R720: {#IFNAME} Speed','dell.server.net.if.speed[{#IFNAME}]','0','7d','365d','0','3','','!Mbps','','',NULL,NULL,'','','0','','','','','2',NULL,'Network port current link speed.','0','30d','0','','36230','3s','','','','200','1','0','','0','0','0','0','0','0','0','03a1c99b946b470393bf59a1025dfad4');
INSERT INTO `items` (`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`,`uuid`) values ('36239','18','','10435','Dell R720: {#IFNAME} State','dell.server.net.if.state[{#IFNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The known state of the Resource, for example, enabled. Possible values: Enabled, Disabled, StandbyOffline, StandbySpare, InTest, Starting, Absent, UnavailableOffline, Deferring, Quiesced, Updating, Qualified.','0','30d','0','','36230','3s','','','','200','1','0','','0','0','0','0','0','0','0','bbfc1c324a92402381adf94fee5c4ca0');
INSERT INTO `items` (`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`,`uuid`) values ('36240','18','','10435','Dell R720: {#IFNAME} Link status','dell.server.net.if.status[{#IFNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The status of the link between this port and its link partner. Possible values: Down, Up, null.','0','30d','0','','36230','3s','','','','200','1','0','','0','0','0','0','0','0','0','a68c98640efc4c5eb146409339261f51');
INSERT INTO `items` (`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`,`uuid`) values ('36241','18','','10435','Dell R720: {#DISK_NAME} Media type','dell.server.hw.physicaldisk.media_type[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The type of media contained in this drive. Possible values: HDD, SSD, SMR, null.','0','30d','0','','36231','3s','','','','200','1','0','','0','0','0','0','0','0','0','e3ae47c99fb44bcba8037c71852d7bf6');
INSERT INTO `items` (`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`,`uuid`) values ('36242','18','','10435','Dell R720: {#DISK_NAME} Model name','dell.server.hw.physicaldisk.model[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The model number of the drive.','0','30d','0','','36231','3s','','','','200','1','0','','0','0','0','0','0','0','0','3aab8fb330dc49d885afb31d972299fc');
INSERT INTO `items` (`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`,`uuid`) values ('36243','18','','10435','Dell R720: {#DISK_NAME} Serial number','dell.server.hw.physicaldisk.serialnumber[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of this drive.','0','30d','0','','36231','3s','','','','200','1','0','','0','0','0','0','0','0','0','cc0f3d4b18a24cd5a98ce6d85e69a374');
INSERT INTO `items` (`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`,`uuid`) values ('36244','18','','10435','Dell R720: {#DISK_NAME} Size','dell.server.hw.physicaldisk.size[{#DISK_NAME}]','0','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size, in bytes, of this drive.','0','30d','0','','36231','3s','','','','200','1','0','','0','0','0','0','0','0','0','9a72ed848c574f5aaaca432f0548272f');
INSERT INTO `items` (`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`,`uuid`) values ('36245','18','','10435','Dell R720: {#DISK_NAME} Status','dell.server.hw.physicaldisk.status[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36231','3s','','','','200','1','0','','0','0','0','0','0','0','0','0db3af82611c4f49899e54c09d600aef');
INSERT INTO `items` (`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`,`uuid`) values ('36246','18','','10435','Dell R720: {#SENSOR_NAME} Status','dell.server.sensor.psu.status[{#SENSOR_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36232','3s','','','','200','1','0','','0','0','0','0','0','0','0','6c7f9247ea1f46c2938fcf1cd441dd6f');
INSERT INTO `items` (`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`,`uuid`) values ('36247','18','','10435','Dell R720: {#SENSOR_NAME} Status','dell.server.sensor.temp.status[{#SENSOR_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36233','3s','','','','200','1','0','','0','0','0','0','0','0','0','7426672931d045349f7a1048a29fd404');
INSERT INTO `items` (`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`,`uuid`) values ('36248','18','','10435','Dell R720: {#SENSOR_NAME} Value','dell.server.sensor.temp.value[{#SENSOR_NAME}]','0','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'The sensor value.','0','30d','0','','36233','3s','','','','200','1','0','','0','0','0','0','0','0','0','0fb34178623b47609fd59674c01cbc70');
INSERT INTO `items` (`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`,`uuid`) values ('36249','18','','10435','Dell R720: {#DISK_NAME} RAID status','dell.server.hw.virtualdisk.raidstatus[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This property represents the RAID specific status. Possible values: Blocked, Degraded, Failed, Foreign, Offline, Online, Ready, Unknown, null.','0','30d','0','','36234','3s','','','','200','1','0','','0','0','0','0','0','0','0','a6e3cb66270744598ef9d5ad5b99b4a7');
INSERT INTO `items` (`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`,`uuid`) values ('36250','18','','10435','Dell R720: {#DISK_NAME} Read policy','dell.server.hw.virtualdisk.readpolicy[{#DISK_NAME}]','0','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the read cache policy setting for the Volume. Possible values: ReadAhead, AdaptiveReadAhead, Off.','0','30d','0','','36234','3s','','','','200','1','0','','0','0','0','0','0','0','0','1f11df437d8544e6b8824f9ab4b36fd1');
INSERT INTO `items` (`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`,`uuid`) values ('36251','18','','10435','Dell R720: {#DISK_NAME} Size','dell.server.hw.virtualdisk.size[{#DISK_NAME}]','0','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size in bytes of this Volume.','0','30d','0','','36234','3s','','','','200','1','0','','0','0','0','0','0','0','0','b1529c9635904ecbb8ea1168fd006253');
INSERT INTO `items` (`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`,`uuid`) values ('36252','18','','10435','Dell R720: {#DISK_NAME} Current state','dell.server.hw.virtualdisk.state[{#DISK_NAME}]','0','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The known state of the Resource, for example, enabled. Possible values: Enabled, Disabled, StandbyOffline, StandbySpare, InTest, Starting, Absent, UnavailableOffline, Deferring, Quiesced, Updating, Qualified.','0','30d','0','','36234','3s','','','','200','1','0','','0','0','0','0','0','0','0','aed92b93740a4dc3a0a3db66ebded2d1');
INSERT INTO `items` (`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`,`uuid`) values ('36253','18','','10435','Dell R720: {#DISK_NAME} Status','dell.server.hw.virtualdisk.status[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36234','3s','','','','200','1','0','','0','0','0','0','0','0','0','d80c7530a7e84a31a0e5013229c7d3fe');
INSERT INTO `items` (`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`,`uuid`) values ('36254','18','','10435','Dell R720: {#DISK_NAME} Write policy','dell.server.hw.virtualdisk.writepolicy[{#DISK_NAME}]','0','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the write cache policy setting for the Volume. Possible values: WriteThrough, ProtectedWriteBack, UnprotectedWriteBack.','0','30d','0','','36234','3s','','','','200','1','0','','0','0','0','0','0','0','0','b7a38f742f6d46e596e373de673db7aa');
INSERT INTO `items` (`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`,`uuid`) values ('36297','18','','10437','Dell R740: Firmware version','dell.server.hw.firmware','0','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the firmware version of a remote access card.','0','30d','0','','36295','3s','','','','200','1','0','','0','0','0','0','0','0','0','a3fec404e09245e1bcfedc69be24201b');
INSERT INTO `items` (`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`,`uuid`) values ('36298','18','','10437','Dell R740: Hardware model name','dell.server.hw.model','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the model name of the system.','29','30d','0','','36295','3s','','','','200','1','0','','0','0','0','0','0','0','0','4dc37ed556bc4b1eaa9f6dda13f92b69');
INSERT INTO `items` (`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`,`uuid`) values ('36299','18','','10437','Dell R740: Hardware serial number','dell.server.hw.serialnumber','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the service tag of the system.','8','30d','0','','36295','3s','','','','200','1','0','','0','0','0','0','0','0','0','dedcc98a60f14af3b86abcd6f2f3d0dd');
INSERT INTO `items` (`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`,`uuid`) values ('36300','18','','10437','Dell R740: Overall system health status','dell.server.status','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the overall rollup status of all components in the system being monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc.','0','30d','0','','36295','3s','','','','200','1','0','','0','0','0','0','0','0','0','de8e4b6e40494ad99ce592dc884ef4e2');
INSERT INTO `items` (`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`,`uuid`) values ('36317','18','','10437','Dell R740: {#SENSOR_NAME} Speed','dell.server.sensor.fan.speed[{#SENSOR_NAME}]','0','7d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'The sensor value.','0','30d','0','','36311','3s','','','','200','1','0','','0','0','0','0','0','0','0','60d2040a401c47d9b69029a219cb9462');
INSERT INTO `items` (`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`,`uuid`) values ('36318','18','','10437','Dell R740: {#SENSOR_NAME} Status','dell.server.sensor.fan.status[{#SENSOR_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36311','3s','','','','200','1','0','','0','0','0','0','0','0','0','9dc84d5ddd3b4d78b3e507c1814f4a36');
INSERT INTO `items` (`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`,`uuid`) values ('36319','18','','10437','Dell R740: {#IFNAME} Status','dell.server.net.if.health[{#IFNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36312','3s','','','','200','1','0','','0','0','0','0','0','0','0','fa4bb348dec44c77b899b3530433c0a4');
INSERT INTO `items` (`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`,`uuid`) values ('36320','18','','10437','Dell R740: {#IFNAME} Speed','dell.server.net.if.speed[{#IFNAME}]','0','7d','365d','0','3','','!Mbps','','',NULL,NULL,'','','0','','','','','2',NULL,'Network port current link speed.','0','30d','0','','36312','3s','','','','200','1','0','','0','0','0','0','0','0','0','9ff8f42adeba42b190977c17e84724d0');
INSERT INTO `items` (`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`,`uuid`) values ('36321','18','','10437','Dell R740: {#IFNAME} State','dell.server.net.if.state[{#IFNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The known state of the Resource, for example, enabled. Possible values: Enabled, Disabled, StandbyOffline, StandbySpare, InTest, Starting, Absent, UnavailableOffline, Deferring, Quiesced, Updating, Qualified.','0','30d','0','','36312','3s','','','','200','1','0','','0','0','0','0','0','0','0','0e1f393e8d7c4d1b8310d4ff412a2038');
INSERT INTO `items` (`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`,`uuid`) values ('36322','18','','10437','Dell R740: {#IFNAME} Link status','dell.server.net.if.status[{#IFNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The status of the link between this port and its link partner. Possible values: Down, Up, null.','0','30d','0','','36312','3s','','','','200','1','0','','0','0','0','0','0','0','0','cd7710d6215642c1a3c7407f2e36ce54');
INSERT INTO `items` (`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`,`uuid`) values ('36323','18','','10437','Dell R740: {#DISK_NAME} Media type','dell.server.hw.physicaldisk.media_type[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The type of media contained in this drive. Possible values: HDD, SSD, SMR, null.','0','30d','0','','36313','3s','','','','200','1','0','','0','0','0','0','0','0','0','e3192cd20f22474da4633e4490263fe0');
INSERT INTO `items` (`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`,`uuid`) values ('36324','18','','10437','Dell R740: {#DISK_NAME} Model name','dell.server.hw.physicaldisk.model[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The model number of the drive.','0','30d','0','','36313','3s','','','','200','1','0','','0','0','0','0','0','0','0','9f1f10f849354710beae460913f74904');
INSERT INTO `items` (`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`,`uuid`) values ('36325','18','','10437','Dell R740: {#DISK_NAME} Serial number','dell.server.hw.physicaldisk.serialnumber[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of this drive.','0','30d','0','','36313','3s','','','','200','1','0','','0','0','0','0','0','0','0','7c2345256bf644fca96c8e6e21dfef05');
INSERT INTO `items` (`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`,`uuid`) values ('36326','18','','10437','Dell R740: {#DISK_NAME} Size','dell.server.hw.physicaldisk.size[{#DISK_NAME}]','0','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size, in bytes, of this drive.','0','30d','0','','36313','3s','','','','200','1','0','','0','0','0','0','0','0','0','63f8f9da0eda4dc7a4149566c45c469a');
INSERT INTO `items` (`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`,`uuid`) values ('36327','18','','10437','Dell R740: {#DISK_NAME} Status','dell.server.hw.physicaldisk.status[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36313','3s','','','','200','1','0','','0','0','0','0','0','0','0','c5f2b3a8b47d45a887ea2e17f18b860d');
INSERT INTO `items` (`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`,`uuid`) values ('36328','18','','10437','Dell R740: {#SENSOR_NAME} Status','dell.server.sensor.psu.status[{#SENSOR_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36314','3s','','','','200','1','0','','0','0','0','0','0','0','0','97d10c59c9df4873bb46d5f0cf95de0a');
INSERT INTO `items` (`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`,`uuid`) values ('36329','18','','10437','Dell R740: {#SENSOR_NAME} Status','dell.server.sensor.temp.status[{#SENSOR_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36315','3s','','','','200','1','0','','0','0','0','0','0','0','0','850ed07a6b2d43bbbe6df4cfde47832f');
INSERT INTO `items` (`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`,`uuid`) values ('36330','18','','10437','Dell R740: {#SENSOR_NAME} Value','dell.server.sensor.temp.value[{#SENSOR_NAME}]','0','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'The sensor value.','0','30d','0','','36315','3s','','','','200','1','0','','0','0','0','0','0','0','0','db13798bbf784d39a00e523cc933685c');
INSERT INTO `items` (`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`,`uuid`) values ('36331','18','','10437','Dell R740: {#DISK_NAME} RAID status','dell.server.hw.virtualdisk.raidstatus[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This property represents the RAID specific status. Possible values: Blocked, Degraded, Failed, Foreign, Offline, Online, Ready, Unknown, null.','0','30d','0','','36316','3s','','','','200','1','0','','0','0','0','0','0','0','0','e4a484a80c714e56be916d48056d5fb7');
INSERT INTO `items` (`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`,`uuid`) values ('36332','18','','10437','Dell R740: {#DISK_NAME} Read policy','dell.server.hw.virtualdisk.readpolicy[{#DISK_NAME}]','0','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the read cache policy setting for the Volume. Possible values: ReadAhead, AdaptiveReadAhead, Off.','0','30d','0','','36316','3s','','','','200','1','0','','0','0','0','0','0','0','0','6bb29c04737a47cdafdc491a89e590c6');
INSERT INTO `items` (`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`,`uuid`) values ('36333','18','','10437','Dell R740: {#DISK_NAME} Size','dell.server.hw.virtualdisk.size[{#DISK_NAME}]','0','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size in bytes of this Volume.','0','30d','0','','36316','3s','','','','200','1','0','','0','0','0','0','0','0','0','b2b9444b7a544f61bbdc4ba8f954d5f9');
INSERT INTO `items` (`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`,`uuid`) values ('36334','18','','10437','Dell R740: {#DISK_NAME} Current state','dell.server.hw.virtualdisk.state[{#DISK_NAME}]','0','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The known state of the Resource, for example, enabled. Possible values: Enabled, Disabled, StandbyOffline, StandbySpare, InTest, Starting, Absent, UnavailableOffline, Deferring, Quiesced, Updating, Qualified.','0','30d','0','','36316','3s','','','','200','1','0','','0','0','0','0','0','0','0','a661f20d119743bd814111d54e3bfb2f');
INSERT INTO `items` (`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`,`uuid`) values ('36335','18','','10437','Dell R740: {#DISK_NAME} Status','dell.server.hw.virtualdisk.status[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36316','3s','','','','200','1','0','','0','0','0','0','0','0','0','a822bc4d25734b6da03376b2de72c033');
INSERT INTO `items` (`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`,`uuid`) values ('36336','18','','10437','Dell R740: {#DISK_NAME} Write policy','dell.server.hw.virtualdisk.writepolicy[{#DISK_NAME}]','0','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the write cache policy setting for the Volume. Possible values: WriteThrough, ProtectedWriteBack, UnprotectedWriteBack.','0','30d','0','','36316','3s','','','','200','1','0','','0','0','0','0','0','0','0','f2d6a2c3178e42f69e67de65239e3a59');
INSERT INTO `items` (`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`,`uuid`) values ('36379','18','','10439','Dell R820: Firmware version','dell.server.hw.firmware','0','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the firmware version of a remote access card.','0','30d','0','','36377','3s','','','','200','1','0','','0','0','0','0','0','0','0','3d408f9631e24c6ea5de5dbee9aa729d');
INSERT INTO `items` (`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`,`uuid`) values ('36380','18','','10439','Dell R820: Hardware model name','dell.server.hw.model','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the model name of the system.','29','30d','0','','36377','3s','','','','200','1','0','','0','0','0','0','0','0','0','32a014eab62540a1874e897ac0a20295');
INSERT INTO `items` (`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`,`uuid`) values ('36381','18','','10439','Dell R820: Hardware serial number','dell.server.hw.serialnumber','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the service tag of the system.','8','30d','0','','36377','3s','','','','200','1','0','','0','0','0','0','0','0','0','2bdd4b71387243548d6b99480e632b17');
INSERT INTO `items` (`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`,`uuid`) values ('36382','18','','10439','Dell R820: Overall system health status','dell.server.status','0','7d','0','0','1','','','','',NULL,'470','','','0','','','','','0',NULL,'This attribute defines the overall rollup status of all components in the system being monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc.','0','30d','0','','36377','3s','','','','200','1','0','','0','0','0','0','0','0','0','ffc659530416453b935c2c3e1236dda4');
INSERT INTO `items` (`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`,`uuid`) values ('36399','18','','10439','Dell R820: {#SENSOR_NAME} Speed','dell.server.sensor.fan.speed[{#SENSOR_NAME}]','0','7d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'The sensor value.','0','30d','0','','36393','3s','','','','200','1','0','','0','0','0','0','0','0','0','c4033e6c06374a22ad8ac5fbee9d1268');
INSERT INTO `items` (`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`,`uuid`) values ('36400','18','','10439','Dell R820: {#SENSOR_NAME} Status','dell.server.sensor.fan.status[{#SENSOR_NAME}]','0','7d','0','0','1','','','','',NULL,'473','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36393','3s','','','','200','1','0','','0','0','0','0','0','0','0','c8e1817dcf804f0db45b878336bf64df');
INSERT INTO `items` (`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`,`uuid`) values ('36401','18','','10439','Dell R820: {#IFNAME} Status','dell.server.net.if.health[{#IFNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36394','3s','','','','200','1','0','','0','0','0','0','0','0','0','c403ac7b06ec442489607afcbea1246d');
INSERT INTO `items` (`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`,`uuid`) values ('36402','18','','10439','Dell R820: {#IFNAME} Speed','dell.server.net.if.speed[{#IFNAME}]','0','7d','365d','0','3','','!Mbps','','',NULL,NULL,'','','0','','','','','2',NULL,'Network port current link speed.','0','30d','0','','36394','3s','','','','200','1','0','','0','0','0','0','0','0','0','68cd5108959c4b4191b2f5f42b549326');
INSERT INTO `items` (`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`,`uuid`) values ('36403','18','','10439','Dell R820: {#IFNAME} State','dell.server.net.if.state[{#IFNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The known state of the Resource, for example, enabled. Possible values: Enabled, Disabled, StandbyOffline, StandbySpare, InTest, Starting, Absent, UnavailableOffline, Deferring, Quiesced, Updating, Qualified.','0','30d','0','','36394','3s','','','','200','1','0','','0','0','0','0','0','0','0','9f47417100fc486a80da5f325ed38d5d');
INSERT INTO `items` (`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`,`uuid`) values ('36404','18','','10439','Dell R820: {#IFNAME} Link status','dell.server.net.if.status[{#IFNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The status of the link between this port and its link partner. Possible values: Down, Up, null.','0','30d','0','','36394','3s','','','','200','1','0','','0','0','0','0','0','0','0','bf18329687bd46df888987165ef1bc27');
INSERT INTO `items` (`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`,`uuid`) values ('36405','18','','10439','Dell R820: {#DISK_NAME} Media type','dell.server.hw.physicaldisk.media_type[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,'472','','','0','','','','','2',NULL,'The type of media contained in this drive. Possible values: HDD, SSD, SMR, null.','0','30d','0','','36395','3s','','','','200','1','0','','0','0','0','0','0','0','0','09b2d87512584513a334e7dff1d5e062');
INSERT INTO `items` (`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`,`uuid`) values ('36406','18','','10439','Dell R820: {#DISK_NAME} Model name','dell.server.hw.physicaldisk.model[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The model number of the drive.','0','30d','0','','36395','3s','','','','200','1','0','','0','0','0','0','0','0','0','fa0e9c7381704be482d70422f6c53a96');
INSERT INTO `items` (`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`,`uuid`) values ('36407','18','','10439','Dell R820: {#DISK_NAME} Serial number','dell.server.hw.physicaldisk.serialnumber[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of this drive.','0','30d','0','','36395','3s','','','','200','1','0','','0','0','0','0','0','0','0','8e5213580c6a485fadfb753e717943c9');
INSERT INTO `items` (`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`,`uuid`) values ('36408','18','','10439','Dell R820: {#DISK_NAME} Size','dell.server.hw.physicaldisk.size[{#DISK_NAME}]','0','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size, in bytes, of this drive.','0','30d','0','','36395','3s','','','','200','1','0','','0','0','0','0','0','0','0','2965fb2758a744c89ec6e713da6a3434');
INSERT INTO `items` (`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`,`uuid`) values ('36409','18','','10439','Dell R820: {#DISK_NAME} Status','dell.server.hw.physicaldisk.status[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,'471','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36395','3s','','','','200','1','0','','0','0','0','0','0','0','0','9ac07529647a471aa1cb4adb82f8c401');
INSERT INTO `items` (`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`,`uuid`) values ('36410','18','','10439','Dell R820: {#SENSOR_NAME} Status','dell.server.sensor.psu.status[{#SENSOR_NAME}]','0','7d','0','0','1','','','','',NULL,'470','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36396','3s','','','','200','1','0','','0','0','0','0','0','0','0','866febd10ad24697af0de16596234a19');
INSERT INTO `items` (`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`,`uuid`) values ('36411','18','','10439','Dell R820: {#SENSOR_NAME} Status','dell.server.sensor.temp.status[{#SENSOR_NAME}]','0','7d','0','0','1','','','','',NULL,'473','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36397','3s','','','','200','1','0','','0','0','0','0','0','0','0','c2dfcfb584844ef08a72365d04ef58b4');
INSERT INTO `items` (`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`,`uuid`) values ('36412','18','','10439','Dell R820: {#SENSOR_NAME} Value','dell.server.sensor.temp.value[{#SENSOR_NAME}]','0','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'The sensor value.','0','30d','0','','36397','3s','','','','200','1','0','','0','0','0','0','0','0','0','96aa82a473b14552a60249587252d255');
INSERT INTO `items` (`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`,`uuid`) values ('36413','18','','10439','Dell R820: {#DISK_NAME} RAID status','dell.server.hw.virtualdisk.raidstatus[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This property represents the RAID specific status. Possible values: Blocked, Degraded, Failed, Foreign, Offline, Online, Ready, Unknown, null.','0','30d','0','','36398','3s','','','','200','1','0','','0','0','0','0','0','0','0','2fbd607f845341248fe68f14bfe57705');
INSERT INTO `items` (`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`,`uuid`) values ('36414','18','','10439','Dell R820: {#DISK_NAME} Read policy','dell.server.hw.virtualdisk.readpolicy[{#DISK_NAME}]','0','2w','0','0','1','','','','',NULL,'475','','','0','','','','','2',NULL,'Indicates the read cache policy setting for the Volume. Possible values: ReadAhead, AdaptiveReadAhead, Off.','0','30d','0','','36398','3s','','','','200','1','0','','0','0','0','0','0','0','0','2e9011998dc64393bfec2dd8b7dacb0c');
INSERT INTO `items` (`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`,`uuid`) values ('36415','18','','10439','Dell R820: {#DISK_NAME} Size','dell.server.hw.virtualdisk.size[{#DISK_NAME}]','0','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size in bytes of this Volume.','0','30d','0','','36398','3s','','','','200','1','0','','0','0','0','0','0','0','0','c8c23ace7d5147db8aa9aff53412c86e');
INSERT INTO `items` (`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`,`uuid`) values ('36416','18','','10439','Dell R820: {#DISK_NAME} Current state','dell.server.hw.virtualdisk.state[{#DISK_NAME}]','0','2w','0','0','1','','','','',NULL,'474','','','0','','','','','2',NULL,'The known state of the Resource, for example, enabled. Possible values: Enabled, Disabled, StandbyOffline, StandbySpare, InTest, Starting, Absent, UnavailableOffline, Deferring, Quiesced, Updating, Qualified.','0','30d','0','','36398','3s','','','','200','1','0','','0','0','0','0','0','0','0','6fa70f139cb34de7a99eb52004407123');
INSERT INTO `items` (`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`,`uuid`) values ('36417','18','','10439','Dell R820: {#DISK_NAME} Status','dell.server.hw.virtualdisk.status[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,'476','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36398','3s','','','','200','1','0','','0','0','0','0','0','0','0','eddd7020701b4f4a8af85bdb0e4b12d8');
INSERT INTO `items` (`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`,`uuid`) values ('36418','18','','10439','Dell R820: {#DISK_NAME} Write policy','dell.server.hw.virtualdisk.writepolicy[{#DISK_NAME}]','0','2w','0','0','1','','','','',NULL,'477','','','0','','','','','2',NULL,'Indicates the write cache policy setting for the Volume. Possible values: WriteThrough, ProtectedWriteBack, UnprotectedWriteBack.','0','30d','0','','36398','3s','','','','200','1','0','','0','0','0','0','0','0','0','aedd50646cc44a0eae70dc0e8e983e6b');
INSERT INTO `items` (`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`,`uuid`) values ('36461','18','','10441','Dell R840: Firmware version','dell.server.hw.firmware','0','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the firmware version of a remote access card.','0','30d','0','','36459','3s','','','','200','1','0','','0','0','0','0','0','0','0','57f456366d3442f394ea3524c1f2855b');
INSERT INTO `items` (`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`,`uuid`) values ('36462','18','','10441','Dell R840: Hardware model name','dell.server.hw.model','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the model name of the system.','29','30d','0','','36459','3s','','','','200','1','0','','0','0','0','0','0','0','0','0002bc9eaeb34479819b027f58460970');
INSERT INTO `items` (`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`,`uuid`) values ('36463','18','','10441','Dell R840: Hardware serial number','dell.server.hw.serialnumber','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the service tag of the system.','8','30d','0','','36459','3s','','','','200','1','0','','0','0','0','0','0','0','0','5031003a95fe4a23a3a706813f1221c4');
INSERT INTO `items` (`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`,`uuid`) values ('36464','18','','10441','Dell R840: Overall system health status','dell.server.status','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the overall rollup status of all components in the system being monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc.','0','30d','0','','36459','3s','','','','200','1','0','','0','0','0','0','0','0','0','de315f6a1fd44475a7c5a84ae337f37c');
INSERT INTO `items` (`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`,`uuid`) values ('36481','18','','10441','Dell R840: {#SENSOR_NAME} Speed','dell.server.sensor.fan.speed[{#SENSOR_NAME}]','0','7d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'The sensor value.','0','30d','0','','36475','3s','','','','200','1','0','','0','0','0','0','0','0','0','76a021e37c19459fa224fa1ec694a8da');
INSERT INTO `items` (`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`,`uuid`) values ('36482','18','','10441','Dell R840: {#SENSOR_NAME} Status','dell.server.sensor.fan.status[{#SENSOR_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36475','3s','','','','200','1','0','','0','0','0','0','0','0','0','77ea551bc11949b59ce5a653d3823f99');
INSERT INTO `items` (`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`,`uuid`) values ('36483','18','','10441','Dell R840: {#IFNAME} Status','dell.server.net.if.health[{#IFNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36476','3s','','','','200','1','0','','0','0','0','0','0','0','0','c633aac31c3d45738007dac60f538950');
INSERT INTO `items` (`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`,`uuid`) values ('36484','18','','10441','Dell R840: {#IFNAME} Speed','dell.server.net.if.speed[{#IFNAME}]','0','7d','365d','0','3','','!Mbps','','',NULL,NULL,'','','0','','','','','2',NULL,'Network port current link speed.','0','30d','0','','36476','3s','','','','200','1','0','','0','0','0','0','0','0','0','f784b9a5e50549dab4fd3522998ae65d');
INSERT INTO `items` (`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`,`uuid`) values ('36485','18','','10441','Dell R840: {#IFNAME} State','dell.server.net.if.state[{#IFNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The known state of the Resource, for example, enabled. Possible values: Enabled, Disabled, StandbyOffline, StandbySpare, InTest, Starting, Absent, UnavailableOffline, Deferring, Quiesced, Updating, Qualified.','0','30d','0','','36476','3s','','','','200','1','0','','0','0','0','0','0','0','0','7b948100c1c14ec18c676d5b53e04fd7');
INSERT INTO `items` (`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`,`uuid`) values ('36486','18','','10441','Dell R840: {#IFNAME} Link status','dell.server.net.if.status[{#IFNAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The status of the link between this port and its link partner. Possible values: Down, Up, null.','0','30d','0','','36476','3s','','','','200','1','0','','0','0','0','0','0','0','0','c9412c81178a4e4c81b87163d0d47ae9');
INSERT INTO `items` (`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`,`uuid`) values ('36487','18','','10441','Dell R840: {#DISK_NAME} Media type','dell.server.hw.physicaldisk.media_type[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The type of media contained in this drive. Possible values: HDD, SSD, SMR, null.','0','30d','0','','36477','3s','','','','200','1','0','','0','0','0','0','0','0','0','d3cd9e2c0b7745ebb069e3d7bba8f4ae');
INSERT INTO `items` (`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`,`uuid`) values ('36488','18','','10441','Dell R840: {#DISK_NAME} Model name','dell.server.hw.physicaldisk.model[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The model number of the drive.','0','30d','0','','36477','3s','','','','200','1','0','','0','0','0','0','0','0','0','941a692ea9dd4246ad990f8926e267ab');
INSERT INTO `items` (`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`,`uuid`) values ('36489','18','','10441','Dell R840: {#DISK_NAME} Serial number','dell.server.hw.physicaldisk.serialnumber[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of this drive.','0','30d','0','','36477','3s','','','','200','1','0','','0','0','0','0','0','0','0','6af8448b44614fecbf532fac3a0a8e49');
INSERT INTO `items` (`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`,`uuid`) values ('36490','18','','10441','Dell R840: {#DISK_NAME} Size','dell.server.hw.physicaldisk.size[{#DISK_NAME}]','0','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size, in bytes, of this drive.','0','30d','0','','36477','3s','','','','200','1','0','','0','0','0','0','0','0','0','3a9ce45d4ced4053b52f68453705066d');
INSERT INTO `items` (`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`,`uuid`) values ('36491','18','','10441','Dell R840: {#DISK_NAME} Status','dell.server.hw.physicaldisk.status[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36477','3s','','','','200','1','0','','0','0','0','0','0','0','0','03ef4df980114b6aaa42e5ae965813b9');
INSERT INTO `items` (`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`,`uuid`) values ('36492','18','','10441','Dell R840: {#SENSOR_NAME} Status','dell.server.sensor.psu.status[{#SENSOR_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36478','3s','','','','200','1','0','','0','0','0','0','0','0','0','c9ea5871c9214aa1986bf0f2b78ad47c');
INSERT INTO `items` (`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`,`uuid`) values ('36493','18','','10441','Dell R840: {#SENSOR_NAME} Status','dell.server.sensor.temp.status[{#SENSOR_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36479','3s','','','','200','1','0','','0','0','0','0','0','0','0','e2a386c8abfa4bcdac269d780bcc4ee9');
INSERT INTO `items` (`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`,`uuid`) values ('36494','18','','10441','Dell R840: {#SENSOR_NAME} Value','dell.server.sensor.temp.value[{#SENSOR_NAME}]','0','7d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'The sensor value.','0','30d','0','','36479','3s','','','','200','1','0','','0','0','0','0','0','0','0','2de5e243052b4adf86921ea83ef33026');
INSERT INTO `items` (`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`,`uuid`) values ('36495','18','','10441','Dell R840: {#DISK_NAME} RAID status','dell.server.hw.virtualdisk.raidstatus[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This property represents the RAID specific status. Possible values: Blocked, Degraded, Failed, Foreign, Offline, Online, Ready, Unknown, null.','0','30d','0','','36480','3s','','','','200','1','0','','0','0','0','0','0','0','0','736e0df33a1a44b99cdf8c93f12db99a');
INSERT INTO `items` (`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`,`uuid`) values ('36496','18','','10441','Dell R840: {#DISK_NAME} Read policy','dell.server.hw.virtualdisk.readpolicy[{#DISK_NAME}]','0','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the read cache policy setting for the Volume. Possible values: ReadAhead, AdaptiveReadAhead, Off.','0','30d','0','','36480','3s','','','','200','1','0','','0','0','0','0','0','0','0','1247bccb744a4b8b81c4d98c275dbf96');
INSERT INTO `items` (`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`,`uuid`) values ('36497','18','','10441','Dell R840: {#DISK_NAME} Size','dell.server.hw.virtualdisk.size[{#DISK_NAME}]','0','7d','0d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size in bytes of this Volume.','0','30d','0','','36480','3s','','','','200','1','0','','0','0','0','0','0','0','0','9e299d9046de421e8c35a64894ee8f34');
INSERT INTO `items` (`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`,`uuid`) values ('36498','18','','10441','Dell R840: {#DISK_NAME} Current state','dell.server.hw.virtualdisk.state[{#DISK_NAME}]','0','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The known state of the Resource, for example, enabled. Possible values: Enabled, Disabled, StandbyOffline, StandbySpare, InTest, Starting, Absent, UnavailableOffline, Deferring, Quiesced, Updating, Qualified.','0','30d','0','','36480','3s','','','','200','1','0','','0','0','0','0','0','0','0','e0ac8a63aa634240941b2497d40c7d1f');
INSERT INTO `items` (`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`,`uuid`) values ('36499','18','','10441','Dell R840: {#DISK_NAME} Status','dell.server.hw.virtualdisk.status[{#DISK_NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','30d','0','','36480','3s','','','','200','1','0','','0','0','0','0','0','0','0','1bb3f5e218bf4f1d984e160bb8e4a169');
INSERT INTO `items` (`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`,`uuid`) values ('36500','18','','10441','Dell R840: {#DISK_NAME} Write policy','dell.server.hw.virtualdisk.writepolicy[{#DISK_NAME}]','0','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the write cache policy setting for the Volume. Possible values: WriteThrough, ProtectedWriteBack, UnprotectedWriteBack.','0','30d','0','','36480','3s','','','','200','1','0','','0','0','0','0','0','0','0','5b5679210d5f4f9e915d20a0e529b338');
INSERT INTO `items` (`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`,`uuid`) values ('36769','18','','10336','Asterisk: SIP trunks active channels','asterisk.sip.active_channels','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of SIP trunks active channels.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','2df0dca89a744e86b4f5a2cec673d427');
INSERT INTO `items` (`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`,`uuid`) values ('36770','18','','10336','Asterisk: PJSIP trunks active channels','asterisk.pjsip.active_channels','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of PJSIP trunks active channels.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','5ae6135a49764db7b496f5d2378ddd77');
INSERT INTO `items` (`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`,`uuid`) values ('36771','18','','10336','Asterisk: IAX trunks active channels','asterisk.iax.active_channels','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of IAX trunks active channels.','0','30d','0','','31784','3s','','','','200','1','0','','0','0','0','0','0','0','0','d9900a1f096a4b89a2aa4af89f30b2cc');
INSERT INTO `items` (`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`,`uuid`) values ('36776','18','','10447','Travis: Builds duration','travis.builds.duration','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Sum of all builds durations in all repos.','0','30d','0','','36772','3s','','','','200','1','0','','0','0','0','0','0','0','0','dbdaf09ff13742b988bd0356923f625f');
INSERT INTO `items` (`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`,`uuid`) values ('36777','18','','10447','Travis: Builds','travis.builds.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total count of builds in all repos.','0','30d','0','','36772','3s','','','','200','1','0','','0','0','0','0','0','0','0','e0d31827266f4d1599cb687d15d42747');
INSERT INTO `items` (`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`,`uuid`) values ('36778','18','','10447','Travis: Jobs active','travis.jobs.active','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Active jobs in all repos.','0','30d','0','','36774','3s','','','','200','1','0','','0','0','0','0','0','0','0','81504a37965b402bad9b71507c4a8926');
INSERT INTO `items` (`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`,`uuid`) values ('36779','18','','10447','Travis: Jobs in queue','travis.jobs.queue','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Jobs in queue in all repos.','0','30d','0','','36774','3s','','','','200','1','0','','0','0','0','0','0','0','0','a1045b05877941bfba97e086ef33234c');
INSERT INTO `items` (`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`,`uuid`) values ('36780','18','','10447','Travis: Jobs passed','travis.jobs.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total count of passed jobs in all repos.','0','30d','0','','36774','3s','','','','200','1','0','','0','0','0','0','0','0','0','421a1a1a886c46188047914d5149c075');
INSERT INTO `items` (`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`,`uuid`) values ('36781','18','','10447','Repos metrics discovery','travis.repos.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Metrics for Repos statistics.','0','30d','0','','36775','3s','','','','200','1','0','','0','0','0','0','0','0','0','0bd67f5bd26f4dbbbda7e2d36efac649');
INSERT INTO `items` (`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`,`uuid`) values ('36785','18','','10447','Travis: Repo [{#SLUG}]: Builds failed','travis.repo.builds.failed[{#SLUG}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of all failed builds in {#SLUG} repo.','0','30d','0','','36783','3s','','','','200','1','0','','0','0','0','0','0','0','0','3ff94b65151e4378b3ef46d049aff1f7');
INSERT INTO `items` (`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`,`uuid`) values ('36786','18','','10447','Travis: Repo [{#SLUG}]: Builds passed','travis.repo.builds.passed[{#SLUG}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of all passed builds in {#SLUG} repo.','0','30d','0','','36783','3s','','','','200','1','0','','0','0','0','0','0','0','0','1b2143c3e6934e0fae5589b4bb0063b5');
INSERT INTO `items` (`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`,`uuid`) values ('36787','18','','10447','Travis: Repo [{#SLUG}]: Builds total','travis.repo.builds.total[{#SLUG}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of total builds in {#SLUG} repo.','0','30d','0','','36783','3s','','','','200','1','0','','0','0','0','0','0','0','0','d67070c3c7b44c5b8849a315f5f97c8b');
INSERT INTO `items` (`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`,`uuid`) values ('36788','18','','10447','Travis: Repo [{#SLUG}]: Cache files','travis.repo.caches.files[{#SLUG}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of cache files in {#SLUG} repo.','0','30d','0','','36784','3s','','','','200','1','0','','0','0','0','0','0','0','0','5fa0c9393f224efa8d6b42c3a0f12319');
INSERT INTO `items` (`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`,`uuid`) values ('36789','18','','10447','Travis: Repo [{#SLUG}]: Cache size','travis.repo.caches.size[{#SLUG}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total size of cache files in {#SLUG} repo.','0','30d','0','','36784','3s','','','','200','1','0','','0','0','0','0','0','0','0','6fe5a61db38e4a2da25314a18cf10a8e');
INSERT INTO `items` (`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`,`uuid`) values ('36790','18','','10447','Travis: Repo [{#SLUG}]: Description','travis.repo.description[{#SLUG}]','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Description of Travis repo (git project description).','0','30d','0','','36775','3s','','','','200','1','0','','0','0','0','0','0','0','0','2705ff3b0b51434ba0469362aa91c67d');
INSERT INTO `items` (`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`,`uuid`) values ('36791','18','','10447','Travis: Repo [{#SLUG}]: Last build duration','travis.repo.last_build.duration[{#SLUG}]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Last build duration in {#SLUG} repo.','0','30d','0','','36783','3s','','','','200','1','0','','0','0','0','0','0','0','0','7391c532acf649259be018cbf499b565');
INSERT INTO `items` (`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`,`uuid`) values ('36792','18','','10447','Travis: Repo [{#SLUG}]: Last build id','travis.repo.last_build.id[{#SLUG}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Last build id in {#SLUG} repo.','0','30d','0','','36783','3s','','','','200','1','0','','0','0','0','0','0','0','0','fbcb7b4001b949889fc85f2499684aae');
INSERT INTO `items` (`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`,`uuid`) values ('36793','18','','10447','Travis: Repo [{#SLUG}]: Last build number','travis.repo.last_build.number[{#SLUG}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Last build number in {#SLUG} repo.','0','30d','0','','36783','3s','','','','200','1','0','','0','0','0','0','0','0','0','d9dbe9ffeafa46569fce1ca5ba4897cf');
INSERT INTO `items` (`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`,`uuid`) values ('36794','18','','10447','Travis: Repo [{#SLUG}]: Last build state','travis.repo.last_build.state[{#SLUG}]','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Last build state in {#SLUG} repo.','0','30d','0','','36783','3s','','','','200','1','0','','0','0','0','0','0','0','0','a081582913ca40ee93a6e5fb326c5c64');
INSERT INTO `items` (`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`,`uuid`) values ('36797','18','','10448','InfluxDB: Users, total','influxdb.users.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of total users on the server.','0','30d','0','','36795','3s','','','','200','1','0','','0','0','0','0','0','0','0','86357d43721f4e6aa6b1dd7e63dd2f47');
INSERT INTO `items` (`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`,`uuid`) values ('36798','18','','10448','InfluxDB: Uptime','influxdb.uptime','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'InfluxDB process uptime in seconds.','0','30d','0','','36795','3s','','','','200','1','0','','0','0','0','0','0','0','0','8699e951b7944659993422334a4cddc0');
INSERT INTO `items` (`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`,`uuid`) values ('36799','18','','10448','InfluxDB: Tokens, total','influxdb.tokens.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of total tokens on the server.','0','30d','0','','36795','3s','','','','200','1','0','','0','0','0','0','0','0','0','079c1eee7d93484b9126598b23921e9d');
INSERT INTO `items` (`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`,`uuid`) values ('36800','18','','10448','InfluxDB: Telegraf plugins, total','influxdb.telegraf_plugins.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of individual telegraf plugins configured.','0','30d','0','','36795','3s','','','','200','1','0','','0','0','0','0','0','0','0','23bad615af024a2e9f06d4541cf6f910');
INSERT INTO `items` (`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`,`uuid`) values ('36801','18','','10448','InfluxDB: Telegrafs, total','influxdb.telegrafs.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of total telegraf configurations on the server.','0','30d','0','','36795','3s','','','','200','1','0','','0','0','0','0','0','0','0','94d98714ecce4847be0bdb7b8802f1ec');
INSERT INTO `items` (`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`,`uuid`) values ('36802','18','','10448','InfluxDB: Workers busy, pct','influxdb.task_executor_workers_busy.pct','0','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percent of total available workers that are currently busy.','0','30d','0','','36795','3s','','','','200','1','0','','0','0','0','0','0','0','0','25595754557d49fca7c671df3f6a898c');
INSERT INTO `items` (`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`,`uuid`) values ('36803','18','','10448','InfluxDB: Workers currently running','influxdb.task_executor_runs_active.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of workers currently running tasks.','0','30d','0','','36795','3s','','','','200','1','0','','0','0','0','0','0','0','0','c3f147a2afb3438d8bacbb41fac6b1d0');
INSERT INTO `items` (`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`,`uuid`) values ('36804','18','','10448','InfluxDB: Task runs successful, rate','influxdb.task_executor_complete.successful.rate','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of runs successful completed across all tasks.','0','30d','0','','36795','3s','','','','200','1','0','','0','0','0','0','0','0','0','a0183b6d934c4612b358c027c75eda6e');
INSERT INTO `items` (`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`,`uuid`) values ('36805','18','','10448','InfluxDB: Task runs failed, rate','influxdb.task_executor_complete.failed.rate','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of failure runs across all tasks.','0','30d','0','','36795','3s','','','','200','1','0','','0','0','0','0','0','0','0','f77894d5ede9481381a268670bc88766');
INSERT INTO `items` (`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`,`uuid`) values ('36806','18','','10448','InfluxDB: Scrapers, total','influxdb.scrapers.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of total scrapers on the server.','0','30d','0','','36795','3s','','','','200','1','0','','0','0','0','0','0','0','0','e05aa2c424c140afa3794878ed2c3baa');
INSERT INTO `items` (`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`,`uuid`) values ('36807','18','','10448','InfluxDB: Organizations, total','influxdb.organizations.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of total organizations on the server.','0','30d','0','','36795','3s','','','','200','1','0','','0','0','0','0','0','0','0','915f00d9dc9847bb8bc8007d034bb80d');
INSERT INTO `items` (`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`,`uuid`) values ('36808','18','','10448','InfluxDB: Dashboards, total','influxdb.dashboards.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of total dashboards on the server.','0','30d','0','','36795','3s','','','','200','1','0','','0','0','0','0','0','0','0','1c5931f514804a95ac4bfba3ec4a7d82');
INSERT INTO `items` (`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`,`uuid`) values ('36809','18','','10448','InfluxDB: Buckets, total','influxdb.buckets.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of total buckets on the server.','0','30d','0','','36795','3s','','','','200','1','0','','0','0','0','0','0','0','0','5d5e26ee272a4af6ac979e69a83de74d');
INSERT INTO `items` (`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`,`uuid`) values ('36810','18','','10448','InfluxDB: Boltdb writes, rate','influxdb.boltdb_writes.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of boltdb writes per second.','0','30d','0','','36795','3s','','','','200','1','0','','0','0','0','0','0','0','0','7bd505a8abb944c2bed17f8e4e5a8c84');
INSERT INTO `items` (`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`,`uuid`) values ('36811','18','','10448','InfluxDB: Boltdb reads, rate','influxdb.boltdb_reads.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of boltdb reads per second.','0','30d','0','','36795','3s','','','','200','1','0','','0','0','0','0','0','0','0','56b1a9f2eb454a9b96a0e0a73d5439cf');
INSERT INTO `items` (`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`,`uuid`) values ('36812','18','','10448','InfluxDB: Version','influxdb.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the InfluxDB instance.','0','30d','0','','36795','3s','','','','200','1','0','','0','0','0','0','0','0','0','d31e0d0823af4f6c999cae3d49b3815b');
INSERT INTO `items` (`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`,`uuid`) values ('36814','18','','10448','InfluxDB: [{#ORG_NAME}] Query response bytes, failed','influxdb.org.http_query_response_bytes.failed.rate["{#ORG_NAME}"]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of bytes returned with status not 200 per second.','0','30d','0','','36795','3s','','','','200','1','0','','0','0','0','0','0','0','0','c84ae278bd7c4387873bc8bbf6d8ba8f');
INSERT INTO `items` (`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`,`uuid`) values ('36815','18','','10448','InfluxDB: [{#ORG_NAME}] Query response bytes, success','influxdb.org.http_query_response_bytes.success.rate["{#ORG_NAME}"]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of bytes returned with status 200 per second.','0','30d','0','','36795','3s','','','','200','1','0','','0','0','0','0','0','0','0','fb13e133cf054e8783ba6bf5deaf1686');
INSERT INTO `items` (`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`,`uuid`) values ('36816','18','','10448','InfluxDB: [{#ORG_NAME}] Query requests, failed','influxdb.org.query_request.failed.rate["{#ORG_NAME}"]','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of query requests with status not 200 per second.','0','30d','0','','36795','3s','','','','200','1','0','','0','0','0','0','0','0','0','9688861c4268455193772389a957264f');
INSERT INTO `items` (`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`,`uuid`) values ('36817','18','','10448','InfluxDB: [{#ORG_NAME}] Query requests, success','influxdb.org.query_request.success.rate["{#ORG_NAME}"]','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of query requests with status 200 per second.','0','30d','0','','36795','3s','','','','200','1','0','','0','0','0','0','0','0','0','da53d3185ba744c38fc264993c72b1b9');
INSERT INTO `items` (`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`,`uuid`) values ('36818','18','','10448','InfluxDB: [{#ORG_NAME}] Query requests bytes, failed','influxdb.org.query_request_bytes.failed.rate["{#ORG_NAME}"]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of bytes received with status not 200 per second.','0','30d','0','','36795','3s','','','','200','1','0','','0','0','0','0','0','0','0','4f8dbb16f7a842678e4fb4343c88b560');
INSERT INTO `items` (`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`,`uuid`) values ('36819','18','','10448','InfluxDB: [{#ORG_NAME}] Query requests bytes, success','influxdb.org.query_request_bytes.success.rate["{#ORG_NAME}"]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of bytes received with status 200 per second.','0','30d','0','','36795','3s','','','','200','1','0','','0','0','0','0','0','0','0','6bbeb22e5c9b46a2bf480dcf41b4eb0e');
INSERT INTO `items` (`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`,`uuid`) values ('39744','18','','10503','Velocloud: Clear data','velocloud.get.clear_metrics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Clear metrics for data without errors.','0','30d','0','','39743','3s','','','','200','1','0','','0','0','0','0','0','0','0','9df4ba5324d94d0fb54d3231311016a6');
INSERT INTO `items` (`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`,`uuid`) values ('39745','18','','10503','Velocloud: Get data collection errors','velocloud.get.error','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Errors of aggregate script item.','0','30d','0','','39743','3s','','','','200','1','0','','0','0','0','0','0','0','0','8a54309d8abc4fc7816b168329243de4');
INSERT INTO `items` (`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`,`uuid`) values ('39803','18','','10318','Container {#NAME}: CPU percent usage','docker.container_stats.cpu_pct_usage["{#NAME}"]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','3s','','','','200','1','0','','0','0','0','0','0','0','0','d54b82d76c7b44ca8995486e4bf46298');
INSERT INTO `items` (`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`,`uuid`) values ('39806','18','','10047','High availability cluster node discovery','zabbix.nodes.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'LLD rule with item and trigger prototypes for node discovery.','0','30d','0','','39804','3s','','','','200','1','0','','0','0','0','0','0','0','0','32bf5c3b8f1f4d10b26806ae0d2adb25');
INSERT INTO `items` (`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`,`uuid`) values ('39808','18','','10047','Cluster node [{#NODE.NAME}]: Address','zabbix.nodes.address[{#NODE.ID}]','0','1w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Node IPv4 address.','0','30d','0','','39804','3s','','','','200','1','0','','0','0','0','0','0','0','0','c5cb7ffbd314494cb1801ae804e9c76e');
INSERT INTO `items` (`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`,`uuid`) values ('39809','18','','10047','Cluster node [{#NODE.NAME}]: Last access age','zabbix.nodes.lastaccess.age[{#NODE.ID}]','0','1w','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'Time between database unix_timestamp() and last access time.','0','30d','0','','39804','3s','','','','200','1','0','','0','0','0','0','0','0','0','f444de7cdd7a4f3bb7f4b1f2e86e16d7');
INSERT INTO `items` (`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`,`uuid`) values ('39810','18','','10047','Cluster node [{#NODE.NAME}]: Last access time','zabbix.nodes.lastaccess.time[{#NODE.ID}]','0','1w','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Last access time.','0','30d','0','','39804','3s','','','','200','1','0','','0','0','0','0','0','0','0','2e33f747803b45d7a9b94c171bf36f61');
INSERT INTO `items` (`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`,`uuid`) values ('39811','18','','10047','Cluster node [{#NODE.NAME}]: Status','zabbix.nodes.status[{#NODE.ID}]','0','1w','365d','0','3','','','','',NULL,'565','','','0','','','','','2',NULL,'Cluster node status.','0','30d','0','','39804','3s','','','','200','1','0','','0','0','0','0','0','0','0','1e4de6a913764a22862c0265d329b592');
INSERT INTO `items` (`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`,`uuid`) values ('39816','18','','10261','High availability cluster node discovery','zabbix.nodes.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'LLD rule with item and trigger prototypes for node discovery.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','0557f879881a4d558410444737ae3738');
INSERT INTO `items` (`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`,`uuid`) values ('39817','18','','10261','Cluster node [{#NODE.NAME}]: Address','zabbix.nodes.address[{#NODE.ID}]','0','1w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Node IPv4 address.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','caca3ccdcec141a3a9c3233ba72b8d0d');
INSERT INTO `items` (`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`,`uuid`) values ('39818','18','','10261','Cluster node [{#NODE.NAME}]: Last access age','zabbix.nodes.lastaccess.age[{#NODE.ID}]','0','1w','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'Time between database unix_timestamp() and last access time.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','a9ded61c4dba4abb9213aec9af00a604');
INSERT INTO `items` (`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`,`uuid`) values ('39819','18','','10261','Cluster node [{#NODE.NAME}]: Last access time','zabbix.nodes.lastaccess.time[{#NODE.ID}]','0','1w','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Last access time.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','0968e4fe51eb4c2b98a508090014aba0');
INSERT INTO `items` (`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`,`uuid`) values ('39820','18','','10261','Cluster node [{#NODE.NAME}]: Status','zabbix.nodes.status[{#NODE.ID}]','0','1w','365d','0','3','','','','',NULL,'566','','','0','','','','','2',NULL,'Node status.','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','2b629362886546cab34396352b93835a');
INSERT INTO `items` (`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`,`uuid`) values ('39821','18','','10329','WAL: Bytes received','pgsql.wal.receive','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'WAL receive in bytes','0','30d','0','','31290','3s','','','','200','1','0','','0','0','0','0','0','0','0','0e58a74b8a2d47d28f596196405b22b5');
INSERT INTO `items` (`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`,`uuid`) values ('39824','18','','10261','Remote Zabbix server: Utilization of ODBC poller data collector processes, in %','process.odbc_poller.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time ODBC poller processes have been busy in the last minute','0','30d','0','','28539','3s','','','','200','1','0','','0','0','0','0','0','0','0','8a21a0281ae24e0788edc8c9b875a421');
INSERT INTO `items` (`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`,`uuid`) values ('39825','18','','10262','Remote Zabbix proxy: Utilization of ODBC poller data collector processes, in %','process.odbc_poller.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time ODBC poller processes have been busy in the last minute.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','7c0d7d097e004d0db25eab55ceb6b87c');
INSERT INTO `items` (`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`,`uuid`) values ('39829','18','','10504','Kubernetes API: Request terminations, rate','kubernetes.api.apiserver_request_terminations','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of requests which apiserver terminated in self-defense per second.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','28944ee2c0a3478e84612cd5650f3cd5');
INSERT INTO `items` (`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`,`uuid`) values ('39830','18','','10504','Kubernetes API: gRPCs messages sent, rate','kubernetes.api.grpc_client_msg_sent.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of gRPC stream messages sent per second.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','353559f3b9684647a74bd429d80731b9');
INSERT INTO `items` (`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`,`uuid`) values ('39831','18','','10504','Kubernetes API: HTTP requests: 4xx, rate','kubernetes.api.rest_client_requests_total_400.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 4xx status code per second.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','f11b87e0bc5a41ff956391b6cb7115c5');
INSERT INTO `items` (`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`,`uuid`) values ('39832','18','','10504','Kubernetes API: HTTP requests: 3xx, rate','kubernetes.api.rest_client_requests_total_300.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 3xx status code per second.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','450607dda045428fb6d4a96ca8888c19');
INSERT INTO `items` (`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`,`uuid`) values ('39833','18','','10504','Kubernetes API: HTTP requests: 2xx, rate','kubernetes.api.rest_client_requests_total_200.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 2xx status code per second.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','3f15d60ef7cb4a068424d5835d04a817');
INSERT INTO `items` (`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`,`uuid`) values ('39834','18','','10504','Kubernetes API: Virtual memory, bytes','kubernetes.api.process_virtual_memory_bytes','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Virtual memory size in bytes.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','010a983426c9407eb4b6bf7822b411ce');
INSERT INTO `items` (`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`,`uuid`) values ('39835','18','','10504','Kubernetes API: Resident memory, bytes','kubernetes.api.process_resident_memory_bytes','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident memory size in bytes.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','53fd5211b6da47d3b3fc87ab8a2d0c33');
INSERT INTO `items` (`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`,`uuid`) values ('39836','18','','10504','Kubernetes API: Fds open','kubernetes.api.open_fds','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open file descriptors.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','41f802305a234b1ab9fb0e89d1e40290');
INSERT INTO `items` (`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`,`uuid`) values ('39837','18','','10504','Kubernetes API: Fds max','kubernetes.api.max_fds','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum allowed open file descriptors.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','187702b1c3a24d07aaf9cc07fa359095');
INSERT INTO `items` (`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`,`uuid`) values ('39838','18','','10504','Kubernetes API: gRPCs client started, rate','kubernetes.api.grpc_client_started.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of RPCs started per second.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','0850afe759684950be79135ed4f32c79');
INSERT INTO `items` (`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`,`uuid`) values ('39839','18','','10504','Kubernetes API: Go threads','kubernetes.api.go_threads','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of OS threads created.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','2022d65c2f7a4f07bc1cba435a2be1e9');
INSERT INTO `items` (`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`,`uuid`) values ('39840','18','','10504','Kubernetes API: gRPCs messages ressived, rate','kubernetes.api.grpc_client_msg_received.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of gRPC stream messages received per second.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','837c546cb3bc400ab7a62a672792f88b');
INSERT INTO `items` (`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`,`uuid`) values ('39841','18','','10504','Kubernetes API: API server requests: 0','kubernetes.api.apiserver_request_total_0.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counter of apiserver requests broken out for each HTTP response code.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','1ac74141a4b241b196bc47d0dee37a2c');
INSERT INTO `items` (`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`,`uuid`) values ('39842','18','','10504','Kubernetes API: Goroutines','kubernetes.api.go_goroutines','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of goroutines that currently exist.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','79db985ac8f645999fe8aa73b4073bfb');
INSERT INTO `items` (`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`,`uuid`) values ('39843','18','','10504','Kubernetes API: CPU','kubernetes.api.cpu.util','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Total user and system CPU usage ratio.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','de87284b8bd644398e4a88a064e206bb');
INSERT INTO `items` (`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`,`uuid`) values ('39844','18','','10504','Kubernetes API: Audit events, total','kubernetes.api.audit_event_total','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Accumulated number audit events generated and sent to the audit backend.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','54723f57a20a47a698fbf47cbec0f7a1');
INSERT INTO `items` (`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`,`uuid`) values ('39845','18','','10504','Kubernetes API: TLS handshake errors, rate','kubernetes.api.apiserver_tls_handshake_errors_total.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of requests dropped with \'TLS handshake error from\' error per second.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','5bd8b2deaf1142369ba67afc7a41ab11');
INSERT INTO `items` (`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`,`uuid`) values ('39846','18','','10504','Kubernetes API: API server requests: 5xx, rate','kubernetes.api.apiserver_request_total_500.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counter of apiserver requests broken out for each HTTP response code.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','1c24d58b28bc423e868a965d689cf146');
INSERT INTO `items` (`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`,`uuid`) values ('39847','18','','10504','Kubernetes API: API server requests: 4xx, rate','kubernetes.api.apiserver_request_total_400.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counter of apiserver requests broken out for each HTTP response code.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','1f72779899f94620bc55870f5e2c2ca0');
INSERT INTO `items` (`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`,`uuid`) values ('39848','18','','10504','Kubernetes API: API server requests: 3xx, rate','kubernetes.api.apiserver_request_total_300.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counter of apiserver requests broken out for each HTTP response code.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','453852b621ca4a7cbc4d80e5327c80da');
INSERT INTO `items` (`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`,`uuid`) values ('39849','18','','10504','Kubernetes API: API server requests: 2xx, rate','kubernetes.api.apiserver_request_total_200.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counter of apiserver requests broken out for each HTTP response code.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','d7f8363e1bc5424f89c7386fcbe6fb06');
INSERT INTO `items` (`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`,`uuid`) values ('39850','18','','10504','Kubernetes API: HTTP requests: 5xx, rate','kubernetes.api.rest_client_requests_total_500.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 5xx status code per second.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','2588c2332fea48f8bae414e8b7c42184');
INSERT INTO `items` (`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`,`uuid`) values ('39851','18','','10504','Watchers metrics discovery','kubernetes.api.apiserver_registered_watchers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery watchers by kind.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','22c5e2a84d9542c1905d0c20f4ca6700');
INSERT INTO `items` (`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`,`uuid`) values ('39852','18','','10504','Authentication requests discovery','kubernetes.api.authenticated_user_requests.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery authentication attempts by name.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','45ad0dd7331d4b9391d26b78838b0433');
INSERT INTO `items` (`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`,`uuid`) values ('39853','18','','10504','Authentication attempts discovery','kubernetes.api.authentication_attempts.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery authentication attempts by result.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','ca23c310c71f4e88891ceae883527389');
INSERT INTO `items` (`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`,`uuid`) values ('39854','18','','10504','Client certificate expiration histogram','kubernetes.api.certificate_expiration.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery raw data of client certificate expiration','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','0821009ea3be43e089247e843723577f');
INSERT INTO `items` (`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`,`uuid`) values ('39855','18','','10504','Etcd objects metrics discovery','kubernetes.api.etcd_object_counts.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery etcd objects by resource.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','8dcd7c95a9364efdb2fe64c651360ad4');
INSERT INTO `items` (`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`,`uuid`) values ('39856','18','','10504','gRPC completed requests discovery','kubernetes.api.grpc_client_handled.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery grpc completed requests by grpc code.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','099e6ff46075457cba6b669a5880ceef');
INSERT INTO `items` (`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`,`uuid`) values ('39857','18','','10504','Requests inflight discovery','kubernetes.api.inflight_requests.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery requests inflight by kind.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','948e1d84d44642a78f59c92271a21a68');
INSERT INTO `items` (`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`,`uuid`) values ('39858','18','','10504','Long-running requests','kubernetes.api.longrunning_gauge.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of long-running requests by verb, resource and scope.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','7cd3ef5e2c874db18088b3531c944b25');
INSERT INTO `items` (`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`,`uuid`) values ('39859','18','','10504','Request duration histogram','kubernetes.api.requests_bucket.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery raw data and percentile items of request duration.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','7c5ffdbafc5e4e349cc62ed0d0c0f20f');
INSERT INTO `items` (`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`,`uuid`) values ('39860','18','','10504','Workqueue metrics discovery','kubernetes.api.workqueue.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery workqueue metrics by name.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','d015cafd6e9f4707bb78125ff17cc679');
INSERT INTO `items` (`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`,`uuid`) values ('39865','18','','10504','Kubernetes API: Watchers: {#KIND}','kubernetes.api.apiserver_registered_watchers["{#KIND}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of currently registered watchers for a given resource.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','09d0815f893c42c1b95721f7f908940a');
INSERT INTO `items` (`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`,`uuid`) values ('39866','18','','10504','Kubernetes API: Authenticated requests: {#NAME}, rate','kubernetes.api.authenticated_user_requests.rate["{#NAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Counter of authenticated requests broken out by username per second.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','6950d30d0b1d4162acee45f184453fbd');
INSERT INTO `items` (`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`,`uuid`) values ('39867','18','','10504','Kubernetes API: Authentication attempts: {#RESULT}, rate','kubernetes.api.authentication_attempts.rate["{#RESULT}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Authentication attempts by result per second.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','d9ddaa016a7c4ca381fbe857959dd0fd');
INSERT INTO `items` (`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`,`uuid`) values ('39868','18','','10504','Kubernetes API: Certificate expiration seconds bucket, {#LE}','kubernetes.api.client_certificate_expiration_seconds_bucket[{#LE}]','0','1h','0','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Distribution of the remaining lifetime on the certificate used to authenticate a request.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','1','860cc40806254564bddb3617b8b75e74');
INSERT INTO `items` (`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`,`uuid`) values ('39869','18','','10504','Kubernetes API: etcd objects: {#RESOURCE}','kubernetes.api.etcd_object_counts["{#RESOURCE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of stored objects at the time of last check split by kind.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','75c15b57189d4cbeb6ed6397fc377e2a');
INSERT INTO `items` (`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`,`uuid`) values ('39870','18','','10504','Kubernetes API: gRPCs completed: {#GRPC_CODE}, rate','kubernetes.api.grpc_client_handled_total.rate["{#GRPC_CODE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of RPCs completed by the client regardless of success or failure per second.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','690dc00ad92d44d0b9bc7db58c07bd8f');
INSERT INTO `items` (`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`,`uuid`) values ('39871','18','','10504','Kubernetes API: Requests current: {#KIND}','kubernetes.api.current_inflight_requests["{#KIND}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximal number of currently used inflight request limit of this apiserver per request kind in last second.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','5076679154cc464ebab0b678f65c8853');
INSERT INTO `items` (`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`,`uuid`) values ('39872','18','','10504','Kubernetes API: Long-running ["{#VERB}"] requests ["{#RESOURCE}"]: {#SCOPE}','kubernetes.api.longrunning_gauge["{#RESOURCE}","{#SCOPE}","{#VERB}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gauge of all active long-running apiserver requests broken out by verb, resource and scope. Not all requests are tracked this way.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','feee53d3fc69401ba359ecd97788e552');
INSERT INTO `items` (`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`,`uuid`) values ('39873','18','','10504','Kubernetes API: ["{#VERB}"] Requests bucket: {#LE}','kubernetes.api.request_duration_seconds_bucket[{#LE},"{#VERB}"]','0','1h','0','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Response latency distribution in seconds for each verb.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','1','5135a1bc92514c79965edea9d7d2a47e');
INSERT INTO `items` (`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`,`uuid`) values ('39874','18','','10504','Kubernetes API: ["{#NAME}"] Workqueue adds total, rate','kubernetes.api.workqueue_adds_total.rate["{#NAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of adds handled by workqueue per second.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','cf58e773a5684eafa74b56ed43490148');
INSERT INTO `items` (`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`,`uuid`) values ('39875','18','','10504','Kubernetes API: ["{#NAME}"] Workqueue depth','kubernetes.api.workqueue_depth["{#NAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current depth of workqueue.','0','30d','0','','39827','3s','','','','200','1','0','','0','0','0','0','0','0','0','4fe45ff01cdf4bdf85e74a52d2d3b917');
INSERT INTO `items` (`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`,`uuid`) values ('39877','18','','10505','Kubernetes Controller Manager: REST Client requests: 2xx, rate','kubernetes.controller.client_http_requests_200.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 2xx status code per second.','0','30d','0','','39876','3s','','','','200','1','0','','0','0','0','0','0','0','0','774693b22f844424a93f6a56001c8cba');
INSERT INTO `items` (`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`,`uuid`) values ('39878','18','','10505','Kubernetes Controller Manager: REST Client requests: 3xx, rate','kubernetes.controller.client_http_requests_300.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 3xx status code per second.','0','30d','0','','39876','3s','','','','200','1','0','','0','0','0','0','0','0','0','ace0d156101b481d9f53c3f48e84bd38');
INSERT INTO `items` (`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`,`uuid`) values ('39879','18','','10505','Kubernetes Controller Manager: REST Client requests: 4xx, rate','kubernetes.controller.client_http_requests_400.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 4xx status code per second.','0','30d','0','','39876','3s','','','','200','1','0','','0','0','0','0','0','0','0','c6b67e4330184ca98281773c69925d98');
INSERT INTO `items` (`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`,`uuid`) values ('39880','18','','10505','Kubernetes Controller Manager: REST Client requests: 5xx, rate','kubernetes.controller.client_http_requests_500.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 5xx status code per second.','0','30d','0','','39876','3s','','','','200','1','0','','0','0','0','0','0','0','0','ac6397e9f62749199f857e6c859daa59');
INSERT INTO `items` (`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`,`uuid`) values ('39881','18','','10505','Kubernetes Controller Manager: CPU','kubernetes.controller.cpu.util','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Total user and system CPU usage ratio.','0','30d','0','','39876','3s','','','','200','1','0','','0','0','0','0','0','0','0','6bde8365469f47359fcc5716207b8870');
INSERT INTO `items` (`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`,`uuid`) values ('39882','18','','10505','Kubernetes Controller Manager: Goroutines','kubernetes.controller.go_goroutines','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of goroutines that currently exist.','0','30d','0','','39876','3s','','','','200','1','0','','0','0','0','0','0','0','0','8e4f98354c89410ebad42af485e3f710');
INSERT INTO `items` (`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`,`uuid`) values ('39883','18','','10505','Kubernetes Controller Manager: Go threads','kubernetes.controller.go_threads','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of OS threads created.','0','30d','0','','39876','3s','','','','200','1','0','','0','0','0','0','0','0','0','f30ba3d8679b4ffd86a20427892da228');
INSERT INTO `items` (`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`,`uuid`) values ('39884','18','','10505','Kubernetes Controller Manager: Leader election status','kubernetes.controller.leader_election_master_status','0','7d','365d','0','0','','','','',NULL,'567','','','0','','','','','0',NULL,'Gauge of if the reporting system is master of the relevant lease, 0 indicates backup, 1 indicates master.','0','30d','0','','39876','3s','','','','200','1','0','','0','0','0','0','0','0','0','b9ef0724331f4f9da830c470b8e2fea1');
INSERT INTO `items` (`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`,`uuid`) values ('39885','18','','10505','Kubernetes Controller Manager: Fds max','kubernetes.controller.max_fds','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum allowed open file descriptors.','0','30d','0','','39876','3s','','','','200','1','0','','0','0','0','0','0','0','0','5bb0657b329c44e6a7a6dd169551205b');
INSERT INTO `items` (`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`,`uuid`) values ('39886','18','','10505','Kubernetes Controller Manager: Fds open','kubernetes.controller.open_fds','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open file descriptors.','0','30d','0','','39876','3s','','','','200','1','0','','0','0','0','0','0','0','0','43698df9a76c410792f0fdb9d41ee42c');
INSERT INTO `items` (`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`,`uuid`) values ('39887','18','','10505','Kubernetes Controller Manager: Resident memory, bytes','kubernetes.controller.process_resident_memory_bytes','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident memory size in bytes.','0','30d','0','','39876','3s','','','','200','1','0','','0','0','0','0','0','0','0','7497f4f8d1d8422dad301d9d25b42150');
INSERT INTO `items` (`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`,`uuid`) values ('39888','18','','10505','Kubernetes Controller Manager: Virtual memory, bytes','kubernetes.controller.process_virtual_memory_bytes','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Virtual memory size in bytes.','0','30d','0','','39876','3s','','','','200','1','0','','0','0','0','0','0','0','0','884a7a4de05548ffbdf14629bbe5d181');
INSERT INTO `items` (`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`,`uuid`) values ('39889','18','','10505','Workqueue metrics discovery','kubernetes.controller.workqueue.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','','39876','3s','','','','200','1','0','','0','0','0','0','0','0','0','3117060c51564c2e897e3194821b137f');
INSERT INTO `items` (`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`,`uuid`) values ('39898','18','','10505','Kubernetes Controller Manager: ["{#NAME}"]: Workqueue duration seconds bucket, {#LE}','kubernetes.controller.duration_seconds_bucket[{#LE},"{#NAME}"]','0','1h','0','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'How long in seconds processing an item from workqueue takes.','0','30d','0','','39876','3s','','','','200','1','0','','0','0','0','0','0','0','1','70277a128a254462ad0bf7a023738ba0');
INSERT INTO `items` (`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`,`uuid`) values ('39899','18','','10505','Kubernetes Controller Manager: ["{#NAME}"]: Queue duration seconds bucket, {#LE}','kubernetes.controller.queue_duration_seconds_bucket[{#LE},"{#NAME}"]','0','1h','0','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'How long in seconds an item stays in workqueue before being requested.','0','30d','0','','39876','3s','','','','200','1','0','','0','0','0','0','0','0','1','8357905c82ea42b98d686eee2d9c35f6');
INSERT INTO `items` (`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`,`uuid`) values ('39900','18','','10505','Kubernetes Controller Manager: ["{#NAME}"]: Workqueue adds total, rate','kubernetes.controller.workqueue_adds_total["{#NAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of adds handled by workqueue per second.','0','30d','0','','39876','3s','','','','200','1','0','','0','0','0','0','0','0','1','940dc936417849c7aed7ae824883fdaf');
INSERT INTO `items` (`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`,`uuid`) values ('39901','18','','10505','Kubernetes Controller Manager: ["{#NAME}"]: Workqueue depth','kubernetes.controller.workqueue_depth["{#NAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current depth of workqueue.','0','30d','0','','39876','3s','','','','200','1','0','','0','0','0','0','0','0','1','7edfab667cdf41908bd551c0a25e4adc');
INSERT INTO `items` (`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`,`uuid`) values ('39902','18','','10505','Kubernetes Controller Manager: ["{#NAME}"]: Workqueue longest running processor, sec','kubernetes.controller.workqueue_longest_running_processor_seconds["{#NAME}"]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'How many seconds has the longest running processor for workqueue been running.','0','30d','0','','39876','3s','','','','200','1','0','','0','0','0','0','0','0','1','9a510f3b3d3547c1817b72e38340ccd2');
INSERT INTO `items` (`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`,`uuid`) values ('39903','18','','10505','Kubernetes Controller Manager: ["{#NAME}"]: Workqueue retries, rate','kubernetes.controller.workqueue_retries_total["{#NAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of retries handled by workqueue per second.','0','30d','0','','39876','3s','','','','200','1','0','','0','0','0','0','0','0','1','a4e25b0e8cd340d48e098b89ffcdd49a');
INSERT INTO `items` (`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`,`uuid`) values ('39904','18','','10505','Kubernetes Controller Manager: ["{#NAME}"]: Workqueue unfinished work, sec','kubernetes.controller.workqueue_unfinished_work_seconds["{#NAME}"]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'How many seconds of work has done that is in progress and hasn\'t been observed by work_duration. Large values indicate stuck threads. One can deduce the number of stuck threads by observing the rate at which this increases.','0','30d','0','','39876','3s','','','','200','1','0','','0','0','0','0','0','0','1','e230e1573f4042b088a8a4b2e3998d43');
INSERT INTO `items` (`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`,`uuid`) values ('39908','18','','10506','Kubernetes: Containers restarts','kube.kubelet.containers.restarts','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times the container has been restarted.','0','30d','0','','39907','3s','','','','200','1','0','','0','0','0','0','0','0','0','bc395860d45b45cb89401fc7e50bc015');
INSERT INTO `items` (`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`,`uuid`) values ('39909','18','','10506','Kubernetes: Containers running','kube.kubelet.containers.running','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of running containers.','0','30d','0','','39907','3s','','','','200','1','0','','0','0','0','0','0','0','0','e524234eea87438d9ee2a1db9f24cfbb');
INSERT INTO `items` (`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`,`uuid`) values ('39910','18','','10506','Kubernetes: CPU cores, total','kube.kubelet.cpu.cores','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of cores in this machine (available until kubernetes v1.18).','0','30d','0','','39905','3s','','','','200','1','0','','0','0','0','0','0','0','0','cff44957e9a54d5d887d4f92b3e4da72');
INSERT INTO `items` (`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`,`uuid`) values ('39911','18','','10506','Kubernetes: Machine memory, bytes','kube.kubelet.machine.memory','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident memory size in bytes.','0','30d','0','','39906','3s','','','','200','1','0','','0','0','0','0','0','0','0','6735723da30d41dcb7bd46c954b2998f');
INSERT INTO `items` (`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`,`uuid`) values ('39912','18','','10506','Kubernetes: Pods running','kube.kubelet.pods.running','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of running pods.','0','30d','0','','39907','3s','','','','200','1','0','','0','0','0','0','0','0','0','46635d3fee04488caa4b07de7709f71e');
INSERT INTO `items` (`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`,`uuid`) values ('39913','18','','10506','Kubernetes: File descriptors, max','kube.kubelet.process_max_fds','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum number of open file descriptors.','0','30d','0','','39906','3s','','','','200','1','0','','0','0','0','0','0','0','0','d1388216cb384ff08c984919572b0ffb');
INSERT INTO `items` (`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`,`uuid`) values ('39914','18','','10506','Kubernetes: File descriptors, open','kube.kubelet.process_open_fds','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open file descriptors.','0','30d','0','','39906','3s','','','','200','1','0','','0','0','0','0','0','0','0','dc3a6371dcb34ae5b65cbf5224d4712c');
INSERT INTO `items` (`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`,`uuid`) values ('39915','18','','10506','Kubernetes: Virtual memory, bytes','kube.kubelet.virtual.memory','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Virtual memory size in bytes.','0','30d','0','','39906','3s','','','','200','1','0','','0','0','0','0','0','0','0','c382b67cf7e947fbb9c29e86446ffac5');
INSERT INTO `items` (`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`,`uuid`) values ('39916','18','','10506','Kubernetes: Containers last state terminated','kube.kublet.containers.terminated','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of containers that were previously terminated.','0','30d','0','','39907','3s','','','','200','1','0','','0','0','0','0','0','0','0','11da04549bd840b0a8d5c70ff0d2b46f');
INSERT INTO `items` (`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`,`uuid`) values ('39917','18','','10506','Container memory discovery','kube.kubelet.container.memory.cache.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','0','','39905','3s','','','','200','1','0','','0','0','0','0','0','0','0','5f70768ebe62429a96e17576dd767382');
INSERT INTO `items` (`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`,`uuid`) values ('39918','18','','10506','Pods discovery','kube.kubelet.pods.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','0','','39907','3s','','','','200','1','0','','0','0','0','0','0','0','0','b98223fcf0ee4a558035ed23de0d2616');
INSERT INTO `items` (`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`,`uuid`) values ('39919','18','','10506','REST client requests discovery','kube.kubelet.rest.requests.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','','39906','3s','','','','200','1','0','','0','0','0','0','0','0','0','cb42f71e6bfb4661861e3601e31eeaa6');
INSERT INTO `items` (`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`,`uuid`) values ('39920','18','','10506','Runtime operations discovery','kube.kubelet.runtime_operations_bucket.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','','39906','3s','','','','200','1','0','','0','0','0','0','0','0','0','6feb0006bb364a8f9295495c92741c16');
INSERT INTO `items` (`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`,`uuid`) values ('39925','18','','10506','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: Memory page cache','kube.kubelet.container.memory.cache["{#CONTAINER}", "{#NAMESPACE}", "{#POD}"]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bytes of page cache memory.','0','30d','0','','39905','3s','','','','200','1','0','','0','0','0','0','0','0','0','8f8b1df2a801475a92604544b2019b2e');
INSERT INTO `items` (`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`,`uuid`) values ('39926','18','','10506','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: Memory max usage','kube.kubelet.container.memory.max_usage["{#CONTAINER}", "{#NAMESPACE}", "{#POD}"]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum memory usage recorded in bytes.','0','30d','0','','39905','3s','','','','200','1','0','','0','0','0','0','0','0','0','6dcf948e79b94f3f96677a7948d2dfd4');
INSERT INTO `items` (`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`,`uuid`) values ('39927','18','','10506','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: RSS','kube.kubelet.container.memory.rss["{#CONTAINER}", "{#NAMESPACE}", "{#POD}"]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Size of RSS in bytes.','0','30d','0','','39905','3s','','','','200','1','0','','0','0','0','0','0','0','0','47d35c31a52643c1b587efcec57f9dff');
INSERT INTO `items` (`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`,`uuid`) values ('39928','18','','10506','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: Swap','kube.kubelet.container.memory.swap["{#CONTAINER}", "{#NAMESPACE}", "{#POD}"]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Container swap usage in bytes.','0','30d','0','','39905','3s','','','','200','1','0','','0','0','0','0','0','0','0','2cf31296f67947ec85f576773352a25b');
INSERT INTO `items` (`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`,`uuid`) values ('39929','18','','10506','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: Usage','kube.kubelet.container.memory.usage["{#CONTAINER}", "{#NAMESPACE}", "{#POD}"]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Current memory usage in bytes, including all memory regardless of when it was accessed.','0','30d','0','','39905','3s','','','','200','1','0','','0','0','0','0','0','0','0','146d17ecec7149efb20878d7e0466eeb');
INSERT INTO `items` (`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`,`uuid`) values ('39930','18','','10506','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: Working set','kube.kubelet.container.memory.working_set["{#CONTAINER}", "{#NAMESPACE}", "{#POD}"]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Current working set in bytes.','0','30d','0','','39905','3s','','','','200','1','0','','0','0','0','0','0','0','0','d3a24d207c6d4201a5e7235f246e0c59');
INSERT INTO `items` (`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`,`uuid`) values ('39931','18','','10506','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] CPU: Load average, 10s','kube.pod.container_cpu_load_average_10s[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Pods cpu load average over the last 10 seconds.','0','30d','0','','39905','3s','','','','200','1','0','','0','0','0','0','0','0','0','41e8f027979a462983789f1f45a9e332');
INSERT INTO `items` (`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`,`uuid`) values ('39932','18','','10506','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] CPU: System seconds, total','kube.pod.container_cpu_system_seconds_total[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of cores used for system time.','0','30d','0','','39905','3s','','','','200','1','0','','0','0','0','0','0','0','0','434c913e7547435bb74c922f81f3ff7a');
INSERT INTO `items` (`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`,`uuid`) values ('39933','18','','10506','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] CPU: User seconds, total','kube.pod.container_cpu_user_seconds_total[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of cores used for user time.','0','30d','0','','39905','3s','','','','200','1','0','','0','0','0','0','0','0','0','e0b1c1edcc3c4738a71b46712a085ed0');
INSERT INTO `items` (`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`,`uuid`) values ('39934','18','','10506','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] CPU: Load average, 10s','kube.kubelet.rest.requests["{#CODE}", "{#HOST}", "{#METHOD}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP requests, partitioned by status code, method, and host.','0','30d','0','','39906','3s','','','','200','1','0','','0','0','0','0','0','0','0','c569ce73bfb44098be3ceb8d016e3d24');
INSERT INTO `items` (`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`,`uuid`) values ('39935','18','','10506','Kubernetes: [{#OP_TYPE}] Runtime operations bucket: {#LE}','kube.kublet.runtime_ops_duration_seconds_bucket[{#LE},"{#OP_TYPE}"]','0','1h','0','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Duration in seconds of runtime operations. Broken down by operation type.','0','30d','0','','39906','3s','','','','200','1','0','','0','0','0','0','0','0','1','13de106611a347e0907dda9ff52f3a20');
INSERT INTO `items` (`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`,`uuid`) values ('39936','18','','10506','Kubernetes: [{#OP_TYPE}] Runtime operations total, rate','kube.kublet.runtime_ops_total.rate["{#OP_TYPE}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Cumulative number of runtime operations by operation type.','0','30d','0','','39906','3s','','','','200','1','0','','0','0','0','0','0','0','1','736abc78366e44b69234caf56abe8a4a');
INSERT INTO `items` (`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`,`uuid`) values ('39938','18','','10507','Get nodes check','kube.nodes.check','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check.','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','f78df5e88780418b894017086f8d9641');
INSERT INTO `items` (`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`,`uuid`) values ('39939','18','','10507','Node LLD','kube.nodes.lld','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Generation of data for node discovery rules.','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','e0b213a441a740e98b8405fd303e0683');
INSERT INTO `items` (`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`,`uuid`) values ('39942','18','','10507','Pod discovery','kube.pod.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','b9dd5b50208e415da509f61ec73451c1');
INSERT INTO `items` (`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`,`uuid`) values ('39943','18','','10507','Node [{#NAME}] Addresses: External IP','kube.node.addresses.external_ip[{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Typically the IP address of the node that is externally routable (available from outside the cluster).','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','6f986c54ff744522abd793347dba5148');
INSERT INTO `items` (`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`,`uuid`) values ('39944','18','','10507','Node [{#NAME}] Info: Container runtime','kube.node.info.containerruntime[{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Container runtime.\r\n\r\nhttps://kubernetes.io/docs/setup/production-environment/container-runtimes/','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','405fe8cae9be4ea8888f378dadda8946');
INSERT INTO `items` (`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`,`uuid`) values ('39945','18','','10507','Node [{#NAME}] Uptime','kube.node.uptime[{#NAME}]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Node uptime.','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','0e30ed9718a54eb1ac643ac643471ca2');
INSERT INTO `items` (`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`,`uuid`) values ('39946','18','','10507','Node [{#NAME}] Requests: Memory','kube.node.requests.memory[{#NAME}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Node Memory requests.\r\n\r\nhttps://kubernetes.io/docs/concepts/configuration/manage-resources-containers/','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','32f2f1d3ad084c6c9bbb96ad2fe9d98d');
INSERT INTO `items` (`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`,`uuid`) values ('39947','18','','10507','Node [{#NAME}] Requests: CPU','kube.node.requests.cpu[{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Node CPU requests.\r\n\r\nhttps://kubernetes.io/docs/concepts/configuration/manage-resources-containers/','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','8ea2954c99cc4e22a82c5a333146d936');
INSERT INTO `items` (`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`,`uuid`) values ('39948','18','','10507','Node [{#NAME}] Limits: Memory','kube.node.limits.memory[{#NAME}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Node Memory limits.\r\n\r\nhttps://kubernetes.io/docs/concepts/configuration/manage-resources-containers/','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','e3ad703e83724cc7a5b918d9efae6e62');
INSERT INTO `items` (`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`,`uuid`) values ('39949','18','','10507','Node [{#NAME}] Limits: CPU','kube.node.limits.cpu[{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Node CPU limits.\r\n\r\nhttps://kubernetes.io/docs/concepts/configuration/manage-resources-containers/','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','1fb0ebd40fcb4e6c8a22bb646191adb2');
INSERT INTO `items` (`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`,`uuid`) values ('39950','18','','10507','Node [{#NAME}] Info: Roles','kube.node.info.roles[{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Node roles.','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','bcd18bdb8cd1466fa81bbe2e75ba996c');
INSERT INTO `items` (`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`,`uuid`) values ('39951','18','','10507','Node [{#NAME}] Info: OS image','kube.node.info.osversion[{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Node OS image.','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','1b25ffe6190c408996b87622b7b87329');
INSERT INTO `items` (`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`,`uuid`) values ('39952','18','','10507','Node [{#NAME}] Info: Operating system','kube.node.info.operatingsystem[{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Node operating system.','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','fe06e13c3aec4efc8f7c9539b6600097');
INSERT INTO `items` (`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`,`uuid`) values ('39953','18','','10507','Node [{#NAME}] Info: KubeProxy version','kube.node.info.kubeproxyversion[{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Version of KubeProxy.','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','d39865e0754b4280926b89f19dddb740');
INSERT INTO `items` (`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`,`uuid`) values ('39954','18','','10507','Node [{#NAME}] Info: Kubelet version','kube.node.info.kubeletversion[{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Version of Kubelet.','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','f1a1ea522dfd49d09a69b9b014845f7a');
INSERT INTO `items` (`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`,`uuid`) values ('39955','18','','10507','Node [{#NAME}] Info: Kernel version','kube.node.info.kernelversion[{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Node kernel version.','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','a14e705e142f4c34bfc9175686b18754');
INSERT INTO `items` (`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`,`uuid`) values ('39956','18','','10507','Node [{#NAME}] Info: Architecture','kube.node.info.architecture[{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Node architecture.','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','8f9152074e2041d7b5cd2c6215e06832');
INSERT INTO `items` (`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`,`uuid`) values ('39957','18','','10507','Node [{#NAME}] Addresses: Internal IP','kube.node.addresses.internal_ip[{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Typically the IP address of the node that is routable only within the cluster.','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','a6bb3067ed44446e9b4831f5be57661b');
INSERT INTO `items` (`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`,`uuid`) values ('39958','18','','10507','Node [{#NAME}] Conditions: Ready','kube.node.conditions.ready[{#NAME}]','0','7d','365d','0','3','','','','',NULL,'568','','','0','','','','','2',NULL,'True if the node is healthy and ready to accept pods, False if the node is not healthy and is not accepting pods, and Unknown if the node controller has not heard from the node in the last node-monitor-grace-period (default is 40 seconds).','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','9341a018a45848feae0f61660ca5f849');
INSERT INTO `items` (`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`,`uuid`) values ('39959','18','','10507','Node [{#NAME}] Conditions: PID pressure','kube.node.conditions.pidpressure[{#NAME}]','0','7d','365d','0','3','','','','',NULL,'568','','','0','','','','','2',NULL,'True if pressure exists on the processes - that is, if there are too many processes on the node; otherwise False.','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','31f02b4517e24571962fefd61e09e2a5');
INSERT INTO `items` (`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`,`uuid`) values ('39960','18','','10507','Node [{#NAME}] Conditions: Network unavailable','kube.node.conditions.networkunavailable[{#NAME}]','0','7d','365d','0','3','','','','',NULL,'568','','','0','','','','','2',NULL,'True if the network for the node is not correctly configured, otherwise False.','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','8c77db54e90d474a8ff35a98c67772d5');
INSERT INTO `items` (`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`,`uuid`) values ('39961','18','','10507','Node [{#NAME}] Conditions: Memory pressure','kube.node.conditions.memorypressure[{#NAME}]','0','7d','365d','0','3','','','','',NULL,'568','','','0','','','','','2',NULL,'True if pressure exists on the node memory - that is, if the node memory is low; otherwise False.','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','44b60c111e2a4d0bae0de443394d0add');
INSERT INTO `items` (`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`,`uuid`) values ('39962','18','','10507','Node [{#NAME}] Conditions: Disk pressure','kube.node.conditions.diskpressure[{#NAME}]','0','7d','365d','0','3','','','','',NULL,'568','','','0','','','','','2',NULL,'True if pressure exists on the disk size - that is, if the disk capacity is low; otherwise False.','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','ad5f8baa9ff44ca0ba17fc83e197420e');
INSERT INTO `items` (`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`,`uuid`) values ('39963','18','','10507','Node [{#NAME}] Capacity: Pods','kube.node.capacity.pods[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'https://kubernetes.io/docs/tasks/administer-cluster/reserve-compute-resources/','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','f45997b967964ed29c29b64b94544a48');
INSERT INTO `items` (`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`,`uuid`) values ('39964','18','','10507','Node [{#NAME}] Capacity: Memory','kube.node.capacity.memory[{#NAME}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Memory resource capacity.\r\n\r\nhttps://kubernetes.io/docs/concepts/architecture/nodes/#capacity','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','e890e682c3454d20b7cd3becc950279f');
INSERT INTO `items` (`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`,`uuid`) values ('39965','18','','10507','Node [{#NAME}] Capacity: CPU','kube.node.capacity.cpu[{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'CPU resource capacity.\r\n\r\nhttps://kubernetes.io/docs/concepts/architecture/nodes/#capacity','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','96c25644261446afb70ce874ff1c7b7d');
INSERT INTO `items` (`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`,`uuid`) values ('39966','18','','10507','Node [{#NAME}] Allocatable: Pods','kube.node.allocatable.pods[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'https://kubernetes.io/docs/tasks/administer-cluster/reserve-compute-resources/','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','be853c34395643af828e349105e2feba');
INSERT INTO `items` (`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`,`uuid`) values ('39967','18','','10507','Node [{#NAME}] Allocatable: Memory','kube.node.allocatable.memory[{#NAME}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Allocatable Memory.\r\n\r\n\'Allocatable\' on a Kubernetes node is defined as the amount of compute resources that are available for pods. The scheduler does not over-subscribe \'Allocatable\'. \'CPU\', \'memory\' and \'ephemeral-storage\' are supported as of now.','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','843ecf5ca78148caa49f3b4cca26e4d4');
INSERT INTO `items` (`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`,`uuid`) values ('39968','18','','10507','Node [{#NAME}] Allocatable: CPU','kube.node.allocatable.cpu[{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Allocatable CPU.\r\n\r\n\'Allocatable\' on a Kubernetes node is defined as the amount of compute resources that are available for pods. The scheduler does not over-subscribe \'Allocatable\'. \'CPU\', \'memory\' and \'ephemeral-storage\' are supported as of now.','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','57eb59ad6e63466f993cd7064788c75d');
INSERT INTO `items` (`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`,`uuid`) values ('39969','18','','10507','Node [{#NAME}] Used: Pods','kube.node.used.pods[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current number of pods on the node.','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','0203ec4fb37a4eb180edcba398bf470d');
INSERT INTO `items` (`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`,`uuid`) values ('39970','18','','10507','Node [{#NODE}] Pod [{#POD}] Conditions: Containers ready','kube.pod.conditions.containers_ready[{#POD}]','0','7d','365d','0','3','','','','',NULL,'569','','','0','','','','','2',NULL,'All containers in the Pod are ready.\r\n\r\nhttps://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#pod-conditions','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','ed4ea3dbbce74404a5039aa9918b8e2b');
INSERT INTO `items` (`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`,`uuid`) values ('39971','18','','10507','Node [{#NODE}] Pod [{#POD}] Conditions: Initialized','kube.pod.conditions.initialized[{#POD}]','0','7d','365d','0','3','','','','',NULL,'569','','','0','','','','','2',NULL,'All init containers have started successfully.\r\n\r\nhttps://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#pod-conditions','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','647ca68c325742d083e37c05e2826205');
INSERT INTO `items` (`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`,`uuid`) values ('39972','18','','10507','Node [{#NODE}] Pod [{#POD}] Conditions: Ready','kube.pod.conditions.ready[{#POD}]','0','7d','365d','0','3','','','','',NULL,'569','','','0','','','','','2',NULL,'The Pod is able to serve requests and should be added to the load balancing pools of all matching Services.\r\n\r\nhttps://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#pod-conditions','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','b73a5c5d3b614815be157eb53c6afb1f');
INSERT INTO `items` (`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`,`uuid`) values ('39973','18','','10507','Node [{#NODE}] Pod [{#POD}] Conditions: Scheduled','kube.pod.conditions.scheduled[{#POD}]','0','7d','365d','0','3','','','','',NULL,'569','','','0','','','','','2',NULL,'The Pod has been scheduled to a node.\r\n\r\nhttps://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#pod-conditions','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','5956cd1780604f0793efd7bbce2559b6');
INSERT INTO `items` (`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`,`uuid`) values ('39974','18','','10507','Node [{#NODE}] Pod [{#POD}] Containers: Restarts','kube.pod.containers.restartcount[{#POD}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times the container has been restarted, currently based on the number of dead containers that have not yet been removed. Note that this is calculated from dead containers. But those containers are subject to garbage collection.','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','5fd018faebb84462bf8111861795b04e');
INSERT INTO `items` (`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`,`uuid`) values ('39975','18','','10507','Node [{#NODE}] Pod [{#POD}] Status: Phase','kube.pod.status.phase[{#POD}]','0','7d','365d','0','3','','','','',NULL,'570','','','0','','','','','2',NULL,'The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle.\r\n\r\nhttps://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','6862be81e52b4abcb319a8847b022634');
INSERT INTO `items` (`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`,`uuid`) values ('39976','18','','10507','Node [{#NODE}] Pod [{#POD}] Uptime','kube.pod.uptime[{#POD}]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Pod uptime.','0','30d','0','','39937','3s','','','','200','1','0','','0','0','0','0','0','0','0','abb0b84204164301bb9fc6ab14284631');
INSERT INTO `items` (`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`,`uuid`) values ('39986','18','','10509','Kubernetes Scheduler: REST Client requests: 5xx, rate','kubernetes.scheduler.client_http_requests_500.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 5xx status code per second.','0','30d','0','','39978','3s','','','','200','1','0','','0','0','0','0','0','0','0','d94fce6ae59b4735b93e1ccfb9084dc2');
INSERT INTO `items` (`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`,`uuid`) values ('39987','18','','10509','Kubernetes Scheduler: CPU','kubernetes.scheduler.cpu.util','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Total user and system CPU usage ratio.','0','30d','0','','39978','3s','','','','200','1','0','','0','0','0','0','0','0','0','b1d79dbb773d47668476a12ca8ee3d08');
INSERT INTO `items` (`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`,`uuid`) values ('39988','18','','10509','Kubernetes Scheduler: REST Client requests: 4xx, rate','kubernetes.scheduler.client_http_requests_400.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 4xx status code per second.','0','30d','0','','39978','3s','','','','200','1','0','','0','0','0','0','0','0','0','84e09cb3134b492b983649bc29da11ee');
INSERT INTO `items` (`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`,`uuid`) values ('39989','18','','10509','Kubernetes Scheduler: Goroutines','kubernetes.scheduler.go_goroutines','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of goroutines that currently exist.','0','30d','0','','39978','3s','','','','200','1','0','','0','0','0','0','0','0','0','a21ec7ee8a76449f99199777d35cdd03');
INSERT INTO `items` (`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`,`uuid`) values ('39990','18','','10509','Kubernetes Scheduler: REST Client requests: 3xx, rate','kubernetes.scheduler.client_http_requests_300.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 3xx status code per second.','0','30d','0','','39978','3s','','','','200','1','0','','0','0','0','0','0','0','0','b790f8c9a6b44f54837a6b3cb1dcec41');
INSERT INTO `items` (`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`,`uuid`) values ('39991','18','','10509','Kubernetes Scheduler: Fds max','kubernetes.scheduler.max_fds','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum allowed open file descriptors.','0','30d','0','','39978','3s','','','','200','1','0','','0','0','0','0','0','0','0','11471cff0d664bdb906cf54821af9710');
INSERT INTO `items` (`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`,`uuid`) values ('39992','18','','10509','Kubernetes Scheduler: Fds open','kubernetes.scheduler.open_fds','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open file descriptors.','0','30d','0','','39978','3s','','','','200','1','0','','0','0','0','0','0','0','0','2aa6fb05cb3e4f33a05ebf331be1ed54');
INSERT INTO `items` (`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`,`uuid`) values ('39993','18','','10509','Kubernetes Scheduler: Resident memory, bytes','kubernetes.scheduler.process_resident_memory_bytes','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident memory size in bytes.','0','30d','0','','39978','3s','','','','200','1','0','','0','0','0','0','0','0','0','f8272f957dc447f19876395994050edd');
INSERT INTO `items` (`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`,`uuid`) values ('39994','18','','10509','Kubernetes Scheduler: Virtual memory, bytes','kubernetes.scheduler.process_virtual_memory_bytes','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Virtual memory size in bytes.','0','30d','0','','39978','3s','','','','200','1','0','','0','0','0','0','0','0','0','0319ccb3efb94aeba6181c1f34cc999a');
INSERT INTO `items` (`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`,`uuid`) values ('39995','18','','10509','Kubernetes Scheduler: Schedule attempts: error','kubernetes.scheduler.scheduler_schedule_attempts.error.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of attempts to schedule pods with result "error" per second.','0','30d','0','','39978','3s','','','','200','1','0','','0','0','0','0','0','0','0','f198d7705dd34d52b57a31aa8b5a423a');
INSERT INTO `items` (`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`,`uuid`) values ('39996','18','','10509','Kubernetes Scheduler: Schedule attempts: scheduled','kubernetes.scheduler.scheduler_schedule_attempts.scheduled.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of attempts to schedule pods with result "scheduled" per second.','0','30d','0','','39978','3s','','','','200','1','0','','0','0','0','0','0','0','0','d5c901849f134b40b077c50e02415fff');
INSERT INTO `items` (`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`,`uuid`) values ('39997','18','','10509','Kubernetes Scheduler: Schedule attempts: unschedulable','kubernetes.scheduler.scheduler_schedule_attempts.unschedulable.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of attempts to schedule pods with result "unschedulable" per second.','0','30d','0','','39978','3s','','','','200','1','0','','0','0','0','0','0','0','0','5736a89200684c709c22f9fb3711bb83');
INSERT INTO `items` (`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`,`uuid`) values ('39998','18','','10509','Kubernetes Scheduler: REST Client requests: 2xx, rate','kubernetes.scheduler.client_http_requests_200.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 2xx status code per second.','0','30d','0','','39978','3s','','','','200','1','0','','0','0','0','0','0','0','0','87e91f23320043549457a5b2ab8ddf74');
INSERT INTO `items` (`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`,`uuid`) values ('39999','18','','10509','Kubernetes Scheduler: Go threads','kubernetes.scheduler.go_threads','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of OS threads created.','0','30d','0','','39978','3s','','','','200','1','0','','0','0','0','0','0','0','0','d7493f23748f440b8cae127e6ff70bb7');
INSERT INTO `items` (`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`,`uuid`) values ('40000','18','','10509','e2e scheduling histogram','kubernetes.controller.e2e_scheduling.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery raw data and percentile items of e2e scheduling latency.','0','30d','0','','39978','3s','','','','200','1','0','','0','0','0','0','0','0','0','0dacff4b5ab841569642350388f4e534');
INSERT INTO `items` (`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`,`uuid`) values ('40001','18','','10509','Binding histogram','kubernetes.scheduler.binding.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery raw data of binding latency.','0','30d','0','','39978','3s','','','','200','1','0','','0','0','0','0','0','0','0','8cfc88eb0f6b4ae09d93bd9fc275659d');
INSERT INTO `items` (`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`,`uuid`) values ('40002','18','','10509','Scheduling algorithm histogram','kubernetes.scheduler.scheduling_algorithm.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery raw data of scheduling algorithm latency.','0','30d','0','','39978','3s','','','','200','1','0','','0','0','0','0','0','0','0','5d4a17f09a7e4ad3b4ac72c30bac5e7d');
INSERT INTO `items` (`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`,`uuid`) values ('40007','18','','10509','Kubernetes Scheduler: ["{#RESULT}"]: e2e scheduling seconds bucket, {#LE}','kubernetes.scheduler.e2e_scheduling_bucket[{#LE},"{#RESULT}"]','0','1h','0','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'E2e scheduling latency in seconds (scheduling algorithm + binding)','0','30d','0','','39978','3s','','','','200','1','0','','0','0','0','0','0','0','1','eaeb8c321626466bbf7c08008a82b9c8');
INSERT INTO `items` (`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`,`uuid`) values ('40008','18','','10509','Kubernetes Scheduler: Binding duration bucket, {#LE}','kubernetes.scheduler.binding_duration[{#LE}]','0','1h','0','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Binding latency in seconds.','0','30d','0','','39978','3s','','','','200','1','0','','0','0','0','0','0','0','1','17a3d7122cd844ea905059020532907b');
INSERT INTO `items` (`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`,`uuid`) values ('40009','18','','10509','Kubernetes Scheduler: Scheduling algorithm duration bucket, {#LE}','kubernetes.scheduler.scheduling_algorithm_duration[{#LE}]','0','1h','0','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Scheduling algorithm latency in seconds.','0','30d','0','','39978','3s','','','','200','1','0','','0','0','0','0','0','0','1','c794f7fbd7494bb69d9c51140c443236');
INSERT INTO `items` (`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`,`uuid`) values ('40016','18','','10510','Kubernetes: Deployment count','kube.deployment.count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of deployments.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','483fc2c315264ae5963d34a45f80156e');
INSERT INTO `items` (`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`,`uuid`) values ('40017','18','','10510','Kubernetes: Namespace count','kube.namespace.count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of namespaces.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','d266edd6dda34e15888b572569a1f301');
INSERT INTO `items` (`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`,`uuid`) values ('40018','18','','10510','Kubernetes: Node count','kube.node.count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of nodes.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','968e1dcaf76645aebd4979b9ad4eca9e');
INSERT INTO `items` (`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`,`uuid`) values ('40019','18','','10510','Kubernetes: Service count','kube.service.count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of services.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','262b0114fed14fec91d50589e97307a7');
INSERT INTO `items` (`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`,`uuid`) values ('40020','18','','10510','Kubernetes: Statefulset count','kube.statefulset.count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of statefulsets.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','3940412bea334e139a72b223197582eb');
INSERT INTO `items` (`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`,`uuid`) values ('40021','18','','10510','API servers discovery','kube.api_servers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','','40011','3s','','','','200','1','0','','0','0','0','0','0','0','0','dbfd8959361f4cdd973ed552eb18eb86');
INSERT INTO `items` (`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`,`uuid`) values ('40022','18','','10510','Component statuses discovery','kube.componentstatuses.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','','40010','3s','','','','200','1','0','','0','0','0','0','0','0','0','920b56d5e9234da6b60717763e206736');
INSERT INTO `items` (`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`,`uuid`) values ('40023','18','','10510','Controller manager nodes discovery','kube.controller_manager.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','','40011','3s','','','','200','1','0','','0','0','0','0','0','0','0','08463c66bce845e7acff0d91785e0982');
INSERT INTO `items` (`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`,`uuid`) values ('40024','18','','10510','Daemonset discovery','kube.daemonset.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','907dd8e2792e4e1591a99e4cdf65b0f0');
INSERT INTO `items` (`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`,`uuid`) values ('40025','18','','10510','Deployment discovery','kube.deployment.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','461770e4762f498e86f3f1c931fe27a9');
INSERT INTO `items` (`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`,`uuid`) values ('40026','18','','10510','Endpoint discovery','kube.endpoint.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','671a0dd7f6e54c6893094fa4360d3dd4');
INSERT INTO `items` (`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`,`uuid`) values ('40027','18','','10510','Livez discovery','kube.livez.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','','40012','3s','','','','200','1','0','','0','0','0','0','0','0','0','438e963e02a749b5a2cc487b9fd5db05');
INSERT INTO `items` (`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`,`uuid`) values ('40028','18','','10510','Node discovery','kube.node.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','1','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','9d161120d2be48d1abb6e56107057874');
INSERT INTO `items` (`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`,`uuid`) values ('40029','18','','10510','Pod discovery','kube.pod.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','d88889ab64804c4389d3755ea49b80d6');
INSERT INTO `items` (`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`,`uuid`) values ('40030','18','','10510','PVC discovery','kube.pvc.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','4143b2f294ac45a5ab570a94a626fca6');
INSERT INTO `items` (`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`,`uuid`) values ('40031','18','','10510','Readyz discovery','kube.readyz.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','','40013','3s','','','','200','1','0','','0','0','0','0','0','0','0','ee274767c42345e3a501f43e81a3364a');
INSERT INTO `items` (`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`,`uuid`) values ('40032','18','','10510','Replicaset discovery','kube.replicaset.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','6244f250f6cd411080221843ad1c59f2');
INSERT INTO `items` (`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`,`uuid`) values ('40033','18','','10510','Scheduler servers nodes discovery','kube.scheduler.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','','40011','3s','','','','200','1','0','','0','0','0','0','0','0','0','f732cbb0e71e4ab896c973e355d7a6a4');
INSERT INTO `items` (`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`,`uuid`) values ('40034','18','','10510','Statefulset discovery','kube.statefulset.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','37812660877243e9bdbc0ffc7815578c');
INSERT INTO `items` (`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`,`uuid`) values ('40035','18','','10510','Kubelet discovery','kube.kubelet.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','1','','40015','3s','','','','200','1','0','','0','0','0','0','0','0','0','11ca82627209443a96693e443d6391c1');
INSERT INTO `items` (`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`,`uuid`) values ('40036','18','','10510','Kubernetes: Component [{#NAME}]: Healthy','kube.componentstatuses.healthy[{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Cluster component healthy.','0','30d','0','','40010','3s','','','','200','1','0','','0','0','0','0','0','0','0','766e311f05f646d18eaaaa9ea9afa691');
INSERT INTO `items` (`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`,`uuid`) values ('40037','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Daemonset [{#NAME}]: Desired','kube.daemonset.desired[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of nodes that should be running the daemon pod.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','61a295b5e2ec4e1f91984a74d0695c1b');
INSERT INTO `items` (`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`,`uuid`) values ('40038','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Daemonset [{#NAME}]: Misscheduled','kube.daemonset.misscheduled[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of nodes running a daemon pod but are not supposed to.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','5393cb9b29e442198967cdd2a040d673');
INSERT INTO `items` (`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`,`uuid`) values ('40039','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Daemonset [{#NAME}]: Ready','kube.daemonset.ready[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of nodes that should be running the daemon pod and have one or more running and ready.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','193ccc0290514c4594193a8bcfd60312');
INSERT INTO `items` (`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`,`uuid`) values ('40040','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Daemonset [{#NAME}]: Scheduled','kube.daemonset.scheduled[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of nodes running at least one daemon pod and are supposed to.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','5727ade78d394d8da1ae46b5d35b5f54');
INSERT INTO `items` (`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`,`uuid`) values ('40041','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Daemonset [{#NAME}]: Updated number scheduled','kube.daemonset.updated[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of nodes that are running updated daemon pod.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','d7c1ebe9e42942719dae731a2c440208');
INSERT INTO `items` (`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`,`uuid`) values ('40042','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Replicas','kube.deployment.replicas[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of replicas per deployment.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','943c67dc814e4b06a57fbc4ef609686a');
INSERT INTO `items` (`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`,`uuid`) values ('40043','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Replicas available','kube.deployment.replicas_available[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of available replicas per deployment.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','23d730bdea7f444eb5f2ee8bf5987379');
INSERT INTO `items` (`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`,`uuid`) values ('40044','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Replicas desired','kube.deployment.replicas_desired[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of desired pods for a deployment.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','b79fe110f4d64a94bb78d7f1e9b175e7');
INSERT INTO `items` (`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`,`uuid`) values ('40045','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Replicas unavailable','kube.deployment.replicas_unavailable[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of unavailable replicas per deployment.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','891537523f98425c8bb1566f984b535a');
INSERT INTO `items` (`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`,`uuid`) values ('40046','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Replicas updated','kube.deployment.replicas_updated[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of updated replicas per deployment.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','241480bc5e90426abbf5d2792cd846cd');
INSERT INTO `items` (`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`,`uuid`) values ('40047','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Rollingupdate max unavailable','kube.deployment.rollingupdate.max_unavailable[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum number of unavailable replicas during a rolling update of a deployment.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','2651b21facca4bd88929079f4372da37');
INSERT INTO `items` (`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`,`uuid`) values ('40048','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Paused','kube.deployment.spec_paused[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Whether the deployment is paused and will not be processed by the deployment controller.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','edc5635267b146d2b0a986e5820227ac');
INSERT INTO `items` (`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`,`uuid`) values ('40049','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Endpoint [{#NAME}]: Address available','kube.endpoint.address_available[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of addresses available in endpoint.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','d587eb7186dd425ead2c9554825ba20a');
INSERT INTO `items` (`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`,`uuid`) values ('40050','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Endpoint [{#NAME}]: Address not ready','kube.endpoint.address_not_ready[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of addresses not ready in endpoint.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','91fc21c37e144890858137f7f5c38135');
INSERT INTO `items` (`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`,`uuid`) values ('40051','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Endpoint [{#NAME}]: Age','kube.endpoint.age[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Endpoint age (number of seconds since creation).','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','f6c2a426e0154c34b2bcb98eeeb88a0d');
INSERT INTO `items` (`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`,`uuid`) values ('40052','18','','10510','Kubernetes: Livez [{#NAME}]: Healthcheck','kube.livez.healthcheck[{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Result of livez healthcheck for component.','0','30d','0','','40012','3s','','','','200','1','0','','0','0','0','0','0','0','0','93548d985c1542a891bfc74f2d42d59a');
INSERT INTO `items` (`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`,`uuid`) values ('40053','18','','10510','Kubernetes: Node [{#NAME}]: CPU allocatable','kube.node.cpu_allocatable[{#NAME}]','0','7d','365d','0','0','','cpu','','',NULL,NULL,'','','0','','','','','2',NULL,'The CPU resources of a node that are available for scheduling.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','4f994219cbe94dfe8d96af1ad5018212');
INSERT INTO `items` (`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`,`uuid`) values ('40054','18','','10510','Kubernetes: Node [{#NAME}]: CPU capacity','kube.node.cpu_capacity[{#NAME}]','0','7d','365d','0','0','','cpu','','',NULL,NULL,'','','0','','','','','2',NULL,'The capacity for CPU resources of a node.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','5d3ad3e1b2a547aea65b557ff2765ef7');
INSERT INTO `items` (`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`,`uuid`) values ('40055','18','','10510','Kubernetes: Node [{#NAME}]: Memory allocatable','kube.node.memory_allocatable[{#NAME}]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The Memory resources of a node that are available for scheduling.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','0247f7ba014443a0b13a4fdd3e191062');
INSERT INTO `items` (`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`,`uuid`) values ('40056','18','','10510','Kubernetes: Node [{#NAME}]: Memory capacity','kube.node.memory_capacity[{#NAME}]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The capacity for Memory resources of a node.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','3336028952b14e2ab3dae55659156ea3');
INSERT INTO `items` (`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`,`uuid`) values ('40057','18','','10510','Kubernetes: Node [{#NAME}]: Pods allocatable','kube.node.pods_allocatable[{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The Pods resources of a node that are available for scheduling.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','049eb92c52a24c9887d7120f2a7e106c');
INSERT INTO `items` (`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`,`uuid`) values ('40058','18','','10510','Kubernetes: Node [{#NAME}]: Pods capacity','kube.node.pods_capacity[{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The capacity for Pods resources of a node.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','163edc95ec7d41f29099b94409916d82');
INSERT INTO `items` (`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`,`uuid`) values ('40059','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers CPU limits','kube.pod.containers.limits.cpu[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The limit on CPU cores to be used by a container.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','3a145b38d57f4164a7a9ef0dd15c530a');
INSERT INTO `items` (`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`,`uuid`) values ('40060','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] Phase: Failed','kube.pod.phase.failed[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Pod is in failed state.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','dedbaa4308624b6b982a7e6b62f92d3f');
INSERT INTO `items` (`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`,`uuid`) values ('40061','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Scheduled','kube.pod.scheduled[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Describes the status of the scheduling process for the pod.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','0f858209a4b344de80b1382710c6f153');
INSERT INTO `items` (`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`,`uuid`) values ('40062','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Ready','kube.pod.ready[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Describes whether the pod is ready to serve requests.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','d946bc58d5a44aa9936b09c825a51f59');
INSERT INTO `items` (`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`,`uuid`) values ('40063','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] Phase: Unknown','kube.pod.phase.unknown[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Pod is in unknown state.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','9303dab482754a7b991b3ba4afef96e7');
INSERT INTO `items` (`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`,`uuid`) values ('40064','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] Phase: Succeeded','kube.pod.phase.succeeded[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Pod is in succeeded state.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','8a9451a6466f4c64b31377d850841578');
INSERT INTO `items` (`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`,`uuid`) values ('40065','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] Phase: Running','kube.pod.phase.running[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Pod is in unknown state.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','59168479f1e246bf8da46606f3ce2a5e');
INSERT INTO `items` (`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`,`uuid`) values ('40066','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] Phase: Pending','kube.pod.phase.pending[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Pod is in pending state.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','fa3759bb7873453b9842f3e459403163');
INSERT INTO `items` (`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`,`uuid`) values ('40067','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers waiting','kube.pod.containers_waiting[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Describes whether the container is currently in waiting state.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','01d80d5f171f4af2b3b1da70679e87ba');
INSERT INTO `items` (`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`,`uuid`) values ('40068','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers memory limits','kube.pod.containers.limits.memory[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The limit on memory to be used by a container.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','e1dd38e6fb484610891aef057a58daf0');
INSERT INTO `items` (`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`,`uuid`) values ('40069','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers terminated','kube.pod.containers_terminated[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Describes whether the container is currently in terminated state.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','50785c1c96894866973ebf8491e3c320');
INSERT INTO `items` (`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`,`uuid`) values ('40070','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers running','kube.pod.containers_running[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Describes whether the container is currently in running state.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','b96149f7a44d4a49903421fbc38c0101');
INSERT INTO `items` (`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`,`uuid`) values ('40071','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers restarts','kube.pod.containers_restarts[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of container restarts.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','fbc8f3a91ec9429ca4c6d70c07480dcc');
INSERT INTO `items` (`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`,`uuid`) values ('40072','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers ready','kube.pod.containers_ready[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Describes whether the containers readiness check succeeded.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','1719bf9d1a1c443dbddcefb91483a77c');
INSERT INTO `items` (`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`,`uuid`) values ('40073','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers memory requests','kube.pod.containers.requests.memory[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of requested memory bytes by a container.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','27379c192d0841a5adb2c2e4ae937263');
INSERT INTO `items` (`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`,`uuid`) values ('40074','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers CPU requests','kube.pod.containers.requests.cpu[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of requested cpu cores by a container.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','8465ea15f3974476924cb66df5a63e0c');
INSERT INTO `items` (`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`,`uuid`) values ('40075','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Unschedulable','kube.pod.unschedulable[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Describes the unschedulable status for the pod.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','93ba93d04ec34b5193252f19a33f5d59');
INSERT INTO `items` (`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`,`uuid`) values ('40076','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] PVC [{#NAME}] Requested storage','kube.pvc.requested.storage[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The capacity of storage requested by the persistent volume claim.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','9187144531f145398bfbe7281290533d');
INSERT INTO `items` (`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`,`uuid`) values ('40077','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Status phase: Active, sum','kube.pvc.status_phase.active.sum[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Persistent volume claim is currently in Active phase.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','6bbe0a1846834467b6147ecfe0c53035');
INSERT INTO `items` (`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`,`uuid`) values ('40078','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] PVC [{#NAME}] Status phase: Available','kube.pvc.status_phase.active[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Persistent volume claim is currently in Active phase.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','49b5eb7d714c4b019178c96e44af1216');
INSERT INTO `items` (`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`,`uuid`) values ('40079','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Status phase: Bound, sum','kube.pvc.status_phase.bound.sum[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Persistent volume claim is currently in Bound phase.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','c6560c039b894af6a264a0f509491c1f');
INSERT INTO `items` (`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`,`uuid`) values ('40080','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] PVC [{#NAME}] Status phase: Bound','kube.pvc.status_phase.bound[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Persistent volume claim is currently in Bound phase.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','8a979a9baf4e42aeb708be9af81c14c4');
INSERT INTO `items` (`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`,`uuid`) values ('40081','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Status phase: Lost, sum','kube.pvc.status_phase.lost.sum[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Persistent volume claim is currently in Lost phase.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','6810603a92d941afa29dc2e9314d92ae');
INSERT INTO `items` (`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`,`uuid`) values ('40082','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] PVC [{#NAME}] Status phase: Lost','kube.pvc.status_phase.lost[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Persistent volume claim is currently in Lost phase.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','0e08b33ba95f4f8d811ace1fcbe44fc7');
INSERT INTO `items` (`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`,`uuid`) values ('40083','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Status phase: Pending, sum','kube.pvc.status_phase.pending.sum[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Persistent volume claim is currently in Pending phase.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','1227e04d6b374154bbf07f1cf64eebeb');
INSERT INTO `items` (`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`,`uuid`) values ('40084','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] PVC [{#NAME}] Status phase: Pending','kube.pvc.status_phase.pending[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Persistent volume claim is currently in Pending phase.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','6ab12b7a2ad345a090c3dc36d604d800');
INSERT INTO `items` (`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`,`uuid`) values ('40085','18','','10510','Kubernetes: Readyz [{#NAME}]: Healthcheck','kube.readyz.healthcheck[{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Result of readyz healthcheck for component.','0','30d','0','','40013','3s','','','','200','1','0','','0','0','0','0','0','0','0','c0693fb2709e4b01a35ca433edb84db7');
INSERT INTO `items` (`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`,`uuid`) values ('40086','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Replicaset [{#NAME}]: Fully labeled replicas','kube.replicaset.fully_labeled_replicas[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of fully labeled replicas per ReplicaSet.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','928536dae27c4e3497627b9f5642a7a8');
INSERT INTO `items` (`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`,`uuid`) values ('40087','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Replicaset [{#NAME}]: Ready','kube.replicaset.ready[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of ready replicas per ReplicaSet.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','4e911e4b71c342dba2227ed7ef360190');
INSERT INTO `items` (`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`,`uuid`) values ('40088','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Replicaset [{#NAME}]: Replicas','kube.replicaset.replicas[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of replicas per ReplicaSet.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','545c8486dcc9409c93c6efee0f4b2ad6');
INSERT INTO `items` (`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`,`uuid`) values ('40089','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Replicaset [{#NAME}]: Desired replicas','kube.replicaset.replicas_desired[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of desired pods for a ReplicaSet.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','30aea656c8a5470ea4566333077628b3');
INSERT INTO `items` (`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`,`uuid`) values ('40090','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Statefulset [{#NAME}]: Replicas','kube.statefulset.replicas[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of replicas per StatefulSet.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','9cc34425228f44868f3cd46450d557ca');
INSERT INTO `items` (`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`,`uuid`) values ('40091','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Statefulset [{#NAME}]: Current replicas','kube.statefulset.replicas_current[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of current replicas per StatefulSet.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','33e5a534b35f40c6ad7fef53212ef970');
INSERT INTO `items` (`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`,`uuid`) values ('40092','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Statefulset [{#NAME}]: Desired replicas','kube.statefulset.replicas_desired[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of desired pods for a StatefulSet.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','3fee3afc8b924b13ae24ab4b5e793acf');
INSERT INTO `items` (`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`,`uuid`) values ('40093','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Statefulset [{#NAME}]: Ready replicas','kube.statefulset.replicas_ready[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of ready replicas per StatefulSet.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','b35c1cebd902484998f383585ce29b76');
INSERT INTO `items` (`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`,`uuid`) values ('40094','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Statefulset [{#NAME}]: Updated replicas','kube.statefulset.replicas_updated[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of updated replicas per StatefulSet.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','b00b1cfed30e4b90b9754d543e72d7aa');
INSERT INTO `items` (`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`,`uuid`) values ('40185','18','','10262','Remote Zabbix proxy: Required performance','requiredperformance','0','1w','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Required performance of Zabbix proxy, in new values per second expected.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','0df481994c454884b6be2e2132248af7');
INSERT INTO `items` (`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`,`uuid`) values ('40186','18','','10262','Remote Zabbix proxy: Uptime','uptime','0','1w','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'Uptime of Zabbix proxy process in seconds.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','28d87aef584644e9a3adcde33966b4e1');
INSERT INTO `items` (`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`,`uuid`) values ('40187','18','','10262','Remote Zabbix proxy: Preprocessing queue','preprocessing_queue','0','1w','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of values enqueued in the preprocessing queue.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','e6654e9406b74b28909dc166b2805125');
INSERT INTO `items` (`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`,`uuid`) values ('40188','18','','10262','Remote Zabbix proxy: Utilization of preprocessing manager internal processes, in %','process.preprocessing_manager.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time preprocessing manager processes have been busy in the last minute.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','c4746528d75a41898a7ded21701de019');
INSERT INTO `items` (`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`,`uuid`) values ('40189','18','','10262','Remote Zabbix proxy: Utilization of preprocessing worker internal processes, in %','process.preprocessing_worker.avg.busy','0','1w','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average percentage of time preprocessing worker processes have been busy in the last minute.','0','30d','0','','28585','3s','','','','200','1','0','','0','0','0','0','0','0','0','5b10c9859c3443459b5e993015ae68fc');
INSERT INTO `items` (`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`,`uuid`) values ('42267','18','','10001','CPU utilization','system.cpu.util','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization in %.','0','30d','0','','42224','3s','','','','200','1','0','','0','0','0','0','0','0','0','ca4235ec7607469cb0124a6253d3c489');
INSERT INTO `items` (`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`,`uuid`) values ('42268','18','','10001','Memory utilization','vm.memory.utilization','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory used percentage is calculated as (100-pavailable)','0','30d','0','','42204','3s','','','','200','1','0','','0','0','0','0','0','0','0','403cebed115441369e94d35d070ca7b8');
INSERT INTO `items` (`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`,`uuid`) values ('42307','18','','10001','{#DEVNAME}: Disk average queue size (avgqu-sz)','vfs.dev.queue_size[{#DEVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected.','0','30d','0','','42287','3s','','','','200','1','0','','0','0','0','0','0','0','0','5e29abb8d56044f69426ed3594f8ac9f');
INSERT INTO `items` (`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`,`uuid`) values ('42308','18','','10001','{#DEVNAME}: Disk read rate','vfs.dev.read.rate[{#DEVNAME}]','0','7d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'r/s. The number (after merges) of read requests completed per second for the device.','0','30d','0','','42287','3s','','','','200','1','0','','0','0','0','0','0','0','0','f4b982d8e7ee47adb34d74d817db43a6');
INSERT INTO `items` (`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`,`uuid`) values ('42309','18','','10001','{#DEVNAME}: Disk read time (rate)','vfs.dev.read.time.rate[{#DEVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of total read time counter. Used in r_await calculation','0','30d','0','','42287','3s','','','','200','1','0','','0','0','0','0','0','0','0','877a3e892d9e489f98f2f16ea05bfdc2');
INSERT INTO `items` (`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`,`uuid`) values ('42310','18','','10001','{#DEVNAME}: Disk utilization','vfs.dev.util[{#DEVNAME}]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests.','0','30d','0','','42287','3s','','','','200','1','0','','0','0','0','0','0','0','0','4a3ee3166ee748e1855a2b02d44e9d62');
INSERT INTO `items` (`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`,`uuid`) values ('42311','18','','10001','{#DEVNAME}: Disk write rate','vfs.dev.write.rate[{#DEVNAME}]','0','7d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'w/s. The number (after merges) of write requests completed per second for the device.','0','30d','0','','42287','3s','','','','200','1','0','','0','0','0','0','0','0','0','c4eb904dfddd4b0f8cdee4b2c477e213');
INSERT INTO `items` (`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`,`uuid`) values ('42312','18','','10001','{#DEVNAME}: Disk write time (rate)','vfs.dev.write.time.rate[{#DEVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of total write time counter. Used in w_await calculation','0','30d','0','','42287','3s','','','','200','1','0','','0','0','0','0','0','0','0','e828495863304b219e24965f7b91e963');
INSERT INTO `items` (`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`,`uuid`) values ('42358','18','','10343','CPU utilization','system.cpu.util','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization in %.','0','30d','0','','42356','3s','','','','200','1','0','','0','0','0','0','0','0','0','9cb786aec7de4f749f33c6e5adfbaf75');
INSERT INTO `items` (`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`,`uuid`) values ('42359','18','','10343','Memory utilization','vm.memory.utilization','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory used percentage is calculated as (100-pavailable)','0','30d','0','','42336','3s','','','','200','1','0','','0','0','0','0','0','0','0','07e60e812d32443ba8e8b0eb27166b98');
INSERT INTO `items` (`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`,`uuid`) values ('42378','18','','10343','{#DEVNAME}: Disk average queue size (avgqu-sz)','vfs.dev.queue_size[{#DEVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected.','0','30d','0','','42373','3s','','','','200','1','0','','0','0','0','0','0','0','0','9a0448cf8a184d52a7872df410f25d6b');
INSERT INTO `items` (`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`,`uuid`) values ('42379','18','','10343','{#DEVNAME}: Disk read rate','vfs.dev.read.rate[{#DEVNAME}]','0','7d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'r/s. The number (after merges) of read requests completed per second for the device.','0','30d','0','','42373','3s','','','','200','1','0','','0','0','0','0','0','0','0','3bb5f84b2e954c28843fa1fb3898c034');
INSERT INTO `items` (`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`,`uuid`) values ('42380','18','','10343','{#DEVNAME}: Disk read time (rate)','vfs.dev.read.time.rate[{#DEVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of total read time counter. Used in r_await calculation','0','30d','0','','42373','3s','','','','200','1','0','','0','0','0','0','0','0','0','df02934521b54864b2538b764c5d549b');
INSERT INTO `items` (`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`,`uuid`) values ('42381','18','','10343','{#DEVNAME}: Disk utilization','vfs.dev.util[{#DEVNAME}]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests.','0','30d','0','','42373','3s','','','','200','1','0','','0','0','0','0','0','0','0','72546bd5eefb4ac7a0b2992a25e5f0c5');
INSERT INTO `items` (`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`,`uuid`) values ('42382','18','','10343','{#DEVNAME}: Disk write rate','vfs.dev.write.rate[{#DEVNAME}]','0','7d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'w/s. The number (after merges) of write requests completed per second for the device.','0','30d','0','','42373','3s','','','','200','1','0','','0','0','0','0','0','0','0','4ba78909402d4bb8ab32f12c679ea3db');
INSERT INTO `items` (`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`,`uuid`) values ('42383','18','','10343','{#DEVNAME}: Disk write time (rate)','vfs.dev.write.time.rate[{#DEVNAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of total write time counter. Used in w_await calculation','0','30d','0','','42373','3s','','','','200','1','0','','0','0','0','0','0','0','0','7717dd9841004fa08b35b0e9f42bffaf');
INSERT INTO `items` (`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`,`uuid`) values ('42410','18','','10248','CPU discovery','cpu.discovery[snmp]','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'This discovery will create set of per core CPU metrics from UCD-SNMP-MIB, using {#CPU.COUNT} in preprocessing. That\'s the only reason why LLD is used.','0','30d','0','','42401','3s','','','','200','1','0','','0','0','0','0','0','0','0','4089ef5360ec4b2a98b7742e8e4e9dd6');
INSERT INTO `items` (`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`,`uuid`) values ('42442','18','','10248','CPU utilization','system.cpu.util[snmp,{#SNMPINDEX}]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'CPU utilization in %.','0','30d','0','','42417','3s','','','','200','1','0','','0','0','0','0','0','0','0','dfd150b9966c49e6b8bf08570438f17c');
INSERT INTO `items` (`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`,`uuid`) values ('42486','18','','10081','Free swap space in %','system.swap.pfree','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of swap volume/file in percent.','0','30d','0','','42478','3s','','','','200','1','0','','0','0','0','0','0','0','0','9c7e3c843a3045df81dddc5d18de267c');
INSERT INTO `items` (`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`,`uuid`) values ('42487','18','','10081','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of installed network interfaces.','0','30d','1','','42458','3s','','','','200','1','0','','0','0','0','0','0','0','0','ba19d6566fdb4a668d4363769d1fee01');
INSERT INTO `items` (`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`,`uuid`) values ('42509','18','','10081','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed["{#IFGUID}"]','0','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Estimated bandwidth of the network interface if any.','0','30d','0','','42458','3s','','','','200','1','0','','0','0','0','0','0','0','0','0445b842d1ce4c7f9fd5716c78a079c4');
INSERT INTO `items` (`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`,`uuid`) values ('42510','18','','10081','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status["{#IFGUID}"]','0','7d','0','0','3','','','','',NULL,'925','','','0','','','','','2',NULL,'The operational status of the network interface.','0','30d','0','','42458','3s','','','','200','1','0','','0','0','0','0','0','0','0','c495bffb7e244e5caf5dc013d839b758');
INSERT INTO `items` (`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`,`uuid`) values ('42511','18','','10081','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type["{#IFGUID}"]','0','7d','0d','0','3','','','','',NULL,'924','','','0','','','','','2',NULL,'The type of the network interface.','0','30d','0','','42458','3s','','','','200','1','0','','0','0','0','0','0','0','0','11ce3d38745a49f58f713fcef1a913c5');
INSERT INTO `items` (`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`,`uuid`) values ('42542','18','','10351','Free swap space in %','system.swap.pfree','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of swap volume/file in percent.','0','30d','0','','42534','3s','','','','200','1','0','','0','0','0','0','0','0','0','e91b5f08c6b745bca975797ea4abd02a');
INSERT INTO `items` (`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`,`uuid`) values ('42543','18','','10351','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of installed network interfaces.','0','30d','1','','42514','3s','','','','200','1','0','','0','0','0','0','0','0','0','c05c8d1be5614ffab1688cc92db32f12');
INSERT INTO `items` (`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`,`uuid`) values ('42565','18','','10351','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed["{#IFGUID}"]','0','7d','0d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Estimated bandwidth of the network interface if any.','0','30d','0','','42514','3s','','','','200','1','0','','0','0','0','0','0','0','0','820ca9809e6f46af8aa3f41195f246d9');
INSERT INTO `items` (`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`,`uuid`) values ('42566','18','','10351','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status["{#IFGUID}"]','0','7d','0','0','3','','','','',NULL,'930','','','0','','','','','2',NULL,'The operational status of the network interface.','0','30d','0','','42514','3s','','','','200','1','0','','0','0','0','0','0','0','0','929917f16ecd4369a5535fe8178248d6');
INSERT INTO `items` (`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`,`uuid`) values ('42567','18','','10351','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type["{#IFGUID}"]','0','7d','0d','0','3','','','','',NULL,'929','','','0','','','','','2',NULL,'The type of the network interface.','0','30d','0','','42514','3s','','','','200','1','0','','0','0','0','0','0','0','0','1e513ffd8cd24a39a04b2140dce65b62');
INSERT INTO `items` (`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`,`uuid`) values ('42676','18','','10399','TiKV: Scheduler: Pending commands','tikv.scheduler_contex','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of pending commands. The scheduler receives commands from clients, executes them against the MVCC layer storage engine.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','33a1b2f676134cf1b81771fbaf152f59');
INSERT INTO `items` (`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`,`uuid`) values ('42677','18','','10399','TiKV: Coprocessor: Scan keys, rate','tikv.coprocessor_scan_keys_sum.rate','0','7d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of scan keys observed per request per second.','0','30d','0','','34412','3s','','','','200','1','0','','0','0','0','0','0','0','0','bfcec759c0894cf89c5267fc6b3862d7');
INSERT INTO `items` (`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`,`uuid`) values ('42685','18','','10175','Healthcheck discovery','vmware.hv.healthcheck.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'VMware Rollup Health State sensor discovery','0','30d','0','','42684','3s','','','','200','1','0','','0','0','0','0','0','0','0','deb31adf69634837839e2d8f87167f28');
INSERT INTO `items` (`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`,`uuid`) values ('42686','18','','10175','VMware: Health state rollup','vmware.hv.sensor.health.state[{#SINGLETON}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The host health state rollup sensor value: gray - unknown, green - ok, red - it has a problem, yellow - it might have a problem.','0','30d','0','','42684','3s','','','','200','1','0','','0','0','0','0','0','0','0','fabb7524dd454daa942266e5565ce40e');
INSERT INTO `items` (`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`,`uuid`) values ('42705','18','','10510','Kubernetes: CronJob count','kube.cronjob.count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cronjobs.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','6f22e81d69d04eeca88a7992463556a7');
INSERT INTO `items` (`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`,`uuid`) values ('42706','18','','10510','Kubernetes: Endpoint count','kube.endpoint.count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of endpoints.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','93126582e30e45b8a70f6e45402e2f54');
INSERT INTO `items` (`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`,`uuid`) values ('42707','18','','10510','Kubernetes: Job count','kube.job.count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of jobs(generated by cronjob + job).','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','c08df3a8ae044ae9a331db33bcca7db3');
INSERT INTO `items` (`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`,`uuid`) values ('42708','18','','10510','CronJob discovery','kube.cronjob.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','9bb7532f14dd42c6a532636126e507f9');
INSERT INTO `items` (`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`,`uuid`) values ('42709','18','','10510','Job discovery','kube.job.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','bc6897c5abe246fdb1ba72c1e71cdb81');
INSERT INTO `items` (`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`,`uuid`) values ('42710','18','','10510','PodDisruptionBudget discovery','kube.pdb.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','a7bf79185bab4eb8891e5a154424a96d');
INSERT INTO `items` (`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`,`uuid`) values ('42711','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Completion failed','kube.cronjob.completion.failed[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of job has failed its execution.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','fd1afcc4646146588fd3c22cf2f7e040');
INSERT INTO `items` (`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`,`uuid`) values ('42712','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Completion succeeded','kube.cronjob.completion.succeeded[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of job has completed its execution.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','5ba1dfd55c784f8597575b38399d5e36');
INSERT INTO `items` (`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`,`uuid`) values ('42713','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Last schedule','kube.cronjob.last_schedule_time[{#NAMESPACE}/{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'LastScheduleTime keeps information of when was the last time the job was successfully scheduled.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','7ae683d5a1ed4f84a09b38863bd263a7');
INSERT INTO `items` (`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`,`uuid`) values ('42714','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Next schedule','kube.cronjob.next_schedule_time[{#NAMESPACE}/{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Next time the cronjob should be scheduled. The time after lastScheduleTime, or after the cron job\'s creation time if it\'s never been scheduled. Use this to determine if the job is delayed.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','8ad7e96b34604a4991698288a7af8027');
INSERT INTO `items` (`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`,`uuid`) values ('42715','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Suspend','kube.cronjob.spec_suspend[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','3','','','','',NULL,'951','','','0','','','','','2',NULL,'Suspend flag tells the controller to suspend subsequent executions.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','329e8166d1ec42cca7508580efaad366');
INSERT INTO `items` (`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`,`uuid`) values ('42716','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Active','kube.cronjob.status_active[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Active holds pointers to currently running jobs.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','ce13a921915a4232971f2e29102cac64');
INSERT INTO `items` (`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`,`uuid`) values ('42717','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Failed','kube.cronjob.status_failed[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of pods which reached Phase Failed and the reason for failure.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','26993138717242079583b1c17d0e8dc8');
INSERT INTO `items` (`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`,`uuid`) values ('42718','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Succeeded','kube.cronjob.status_succeeded[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of pods which reached Phase Succeeded.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','9e5adc642c3a40ab80654542903cd314');
INSERT INTO `items` (`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`,`uuid`) values ('42719','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Job [{#NAME}]: Completion failed','kube.job.completion.failed[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of job has failed its execution.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','b1fad48e204e4bf9a03c79baa0f58963');
INSERT INTO `items` (`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`,`uuid`) values ('42720','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Job [{#NAME}]: Completion succeeded','kube.job.completion.succeeded[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of job has completed its execution.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','51d3653b2c7543dba04339ded6ff65dd');
INSERT INTO `items` (`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`,`uuid`) values ('42721','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Job [{#NAME}]: Failed','kube.job.status_failed[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of pods which reached Phase Failed and the reason for failure.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','f175e0bd1f6b41a2b62e69df40b3fc07');
INSERT INTO `items` (`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`,`uuid`) values ('42722','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] Job [{#NAME}]: Succeeded','kube.job.status_succeeded[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of pods which reached Phase Succeeded.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','b909868367d5481d982d33d5248167ab');
INSERT INTO `items` (`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`,`uuid`) values ('42723','18','','10510','Kubernetes: Node [{#NAME}]: Ephemeral storage allocatable','kube.node.ephemeral_storage_allocatable[{#NAME}]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The allocatable ephemeral-storage of a node that is available for scheduling.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','49440553854441f39ecbcf7052d83e51');
INSERT INTO `items` (`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`,`uuid`) values ('42724','18','','10510','Kubernetes: Node [{#NAME}]: Ephemeral storage capacity','kube.node.ephemeral_storage_capacity[{#NAME}]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The ephemeral-storage capacity of a node.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','2831a4b1bc1549198203f3e894f07a1f');
INSERT INTO `items` (`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`,`uuid`) values ('42725','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] PodDisruptionBudget [{#NAME}]: Disruptions allowed','kube.pdb.disruptions_allowed[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of pod disruptions that are allowed.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','3eef1fb3311e429fa3043c9e4d88335f');
INSERT INTO `items` (`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`,`uuid`) values ('42726','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] PodDisruptionBudget [{#NAME}]: Pods desired','kube.pdb.pods_desired[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Minimum desired number of healthy pods.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','a303e07be68c40bdb7d996696af53c98');
INSERT INTO `items` (`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`,`uuid`) values ('42727','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] PodDisruptionBudget [{#NAME}]: Pods healthy','kube.pdb.pods_healthy[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current number of healthy pods.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','f2a82d6de52446f594a6554137508604');
INSERT INTO `items` (`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`,`uuid`) values ('42728','18','','10510','Kubernetes: Namespace [{#NAMESPACE}] PodDisruptionBudget [{#NAME}]: Pods total','kube.pdb.pods_total[{#NAMESPACE}/{#NAME}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of pods counted by this disruption budget.','0','30d','0','','40014','3s','','','','200','1','0','','0','0','0','0','0','0','0','2c15033188ab4062a432f30c3320677f');
INSERT INTO `items` (`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`,`uuid`) values ('42730','18','','10516','Openweathermap: Get data collection errors','openweathermap.get.errors','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Errors from get data requests by script item.','0','30d','0','','42729','3s','','','','200','1','0','','0','0','0','0','0','0','0','2eb0520627084f2596743f53552c3744');
INSERT INTO `items` (`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`,`uuid`) values ('42731','18','','10516','Locations discovery','openweathermap.locations.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Weather metrics discovery by location.','0','0d','0','','42729','3s','','','','200','1','0','','0','0','0','0','0','0','0','8d3f96f4a23c43a2a28b75f078cc1ff2');
INSERT INTO `items` (`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`,`uuid`) values ('42732','18','','10516','[{#LOCATION}, {#COUNTRY}]: Data','openweathermap.location.data[{#ID}]','0','0d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'JSON with result of OpenWeatherMap API request by location.','0','30d','0','','42729','3s','','','','200','1','0','','0','0','0','0','0','0','0','51f79e4be0734ad5b548617eb535fae4');
INSERT INTO `items` (`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`,`uuid`) values ('42744','18','','10329','DB {#DBNAME}: Queries max maintenance time','pgsql.queries.mro.time_max["{#DBNAME}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Max maintenance query time','0','30d','0','','42743','3s','','','','200','1','0','','0','0','0','0','0','0','0','612c8f83e228406f86e70e8486a51f9b');
INSERT INTO `items` (`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`,`uuid`) values ('42745','18','','10329','DB {#DBNAME}: Queries slow maintenance count','pgsql.queries.mro.slow_count["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Slow maintenance query count','0','30d','0','','42743','3s','','','','200','1','0','','0','0','0','0','0','0','0','4c8934820b7f46a195115c7214d4379c');
INSERT INTO `items` (`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`,`uuid`) values ('42746','18','','10329','DB {#DBNAME}: Queries sum maintenance time','pgsql.queries.mro.time_sum["{#DBNAME}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum maintenance query time','0','30d','0','','42743','3s','','','','200','1','0','','0','0','0','0','0','0','0','9cde2701b5814142b064696dc974f45d');
INSERT INTO `items` (`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`,`uuid`) values ('42747','18','','10329','DB {#DBNAME}: Queries slow query count','pgsql.queries.query.slow_count["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Slow query count','0','30d','0','','42743','3s','','','','200','1','0','','0','0','0','0','0','0','0','9e1191f80c3a4e9aa0d3aba2b2740fef');
INSERT INTO `items` (`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`,`uuid`) values ('42748','18','','10329','DB {#DBNAME}: Queries max query time','pgsql.queries.query.time_max["{#DBNAME}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Max query time','0','30d','0','','42743','3s','','','','200','1','0','','0','0','0','0','0','0','0','73712df30d66494998bf11566eba409f');
INSERT INTO `items` (`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`,`uuid`) values ('42749','18','','10329','DB {#DBNAME}: Queries sum query time','pgsql.queries.query.time_sum["{#DBNAME}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum query time','0','30d','0','','42743','3s','','','','200','1','0','','0','0','0','0','0','0','0','ba95d84bc11b4df4aece8ddb51042339');
INSERT INTO `items` (`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`,`uuid`) values ('42750','18','','10329','DB {#DBNAME}: Queries slow transaction count','pgsql.queries.tx.slow_count["{#DBNAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Slow transaction query count','0','30d','0','','42743','3s','','','','200','1','0','','0','0','0','0','0','0','0','d31701d52f5941d5a24241c95db52373');
INSERT INTO `items` (`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`,`uuid`) values ('42751','18','','10329','DB {#DBNAME}: Queries max transaction time','pgsql.queries.tx.time_max["{#DBNAME}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Max transaction query time','0','30d','0','','42743','3s','','','','200','1','0','','0','0','0','0','0','0','0','ecc24b3143254dd4b2fc01c12cefb345');
INSERT INTO `items` (`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`,`uuid`) values ('42752','18','','10329','DB {#DBNAME}: Queries sum transaction time','pgsql.queries.tx.time_sum["{#DBNAME}"]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum transaction query time','0','30d','0','','42743','3s','','','','200','1','0','','0','0','0','0','0','0','0','178926a753614bb58206d82f68280097');
INSERT INTO `items` (`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`,`uuid`) values ('42756','18','','10517','Cluster discovery','proxmox.cluster.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','1','','42755','3s','','','','200','1','0','','0','0','0','0','0','0','0','e01bb8d7614144ba82e31d91618dee31');
INSERT INTO `items` (`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`,`uuid`) values ('42757','18','','10517','LXC discovery','proxmox.lxc.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','1','','42754','3s','','','','200','1','0','','0','0','0','0','0','0','0','78a4018328954d408e415aa0ce7ce41c');
INSERT INTO `items` (`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`,`uuid`) values ('42758','18','','10517','Node discovery','proxmox.node.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','1','','42754','3s','','','','200','1','0','','0','0','0','0','0','0','0','ba55f69b12ee46faa319203483d8008f');
INSERT INTO `items` (`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`,`uuid`) values ('42759','18','','10517','QEMU discovery','proxmox.qemu.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','1','','42754','3s','','','','200','1','0','','0','0','0','0','0','0','0','31aa7234aa294fce8f4735a9216ddf31');
INSERT INTO `items` (`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`,`uuid`) values ('42760','18','','10517','Storage discovery','proxmox.storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','1','','42754','3s','','','','200','1','0','','0','0','0','0','0','0','0','61faca6204854bc4af8dc6c5c63ddcd1');
INSERT INTO `items` (`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`,`uuid`) values ('42766','18','','10517','Proxmox: Cluster [{#RESOURCE.NAME}]: Quorate','proxmox.cluster.quorate[{#RESOURCE.NAME}]','0','7d','365d','0','3','','','','',NULL,'953','','','0','','','','','2',NULL,'Indicates if there is a majority of nodes online to make decisions.','0','30d','0','','42755','3s','','','','200','1','0','','0','0','0','0','0','0','0','4b5d9197cfa042ceac1415a524912b63');
INSERT INTO `items` (`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`,`uuid`) values ('42767','18','','10517','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: CPU usage','proxmox.lxc.cpu[{#LXC.ID}]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'CPU load.','0','30d','0','','42761','3s','','','','200','1','0','','0','0','0','0','0','0','0','dda211b14d7b4c419196a98ee5153307');
INSERT INTO `items` (`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`,`uuid`) values ('42768','18','','10517','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Disk read, rate','proxmox.lxc.diskread[{#LXC.ID}]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk read.','0','30d','0','','42761','3s','','','','200','1','0','','0','0','0','0','0','0','0','8bc1bb78bf1340f3ab8d9f888d081e23');
INSERT INTO `items` (`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`,`uuid`) values ('42769','18','','10517','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Disk write, rate','proxmox.lxc.diskwrite[{#LXC.ID}]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk write.','0','30d','0','','42761','3s','','','','200','1','0','','0','0','0','0','0','0','0','cee89da9e4a842228b30cc708e4d7745');
INSERT INTO `items` (`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`,`uuid`) values ('42770','18','','10517','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Memory total','proxmox.lxc.maxmem[{#LXC.ID}]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total memory in Bytes.','0','30d','0','','42761','3s','','','','200','1','0','','0','0','0','0','0','0','0','686490c2a07f4a859bc7f1d56056cc5e');
INSERT INTO `items` (`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`,`uuid`) values ('42771','18','','10517','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Memory usage','proxmox.lxc.mem[{#LXC.ID}]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used memory in Bytes.','0','30d','0','','42761','3s','','','','200','1','0','','0','0','0','0','0','0','0','a60eaec875d347bd9247a174ba84f21e');
INSERT INTO `items` (`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`,`uuid`) values ('42772','18','','10517','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Incoming data, rate','proxmox.lxc.netin[{#LXC.ID}]','0','7d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Incoming data rate.','0','30d','0','','42761','3s','','','','200','1','0','','0','0','0','0','0','0','0','b19b6b5895d64ed9b4942f955e66dc81');
INSERT INTO `items` (`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`,`uuid`) values ('42773','18','','10517','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Outgoing data, rate','proxmox.lxc.netout[{#LXC.ID}]','0','7d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Outgoing data rate.','0','30d','0','','42761','3s','','','','200','1','0','','0','0','0','0','0','0','0','5ac20ae95e664a3cb62b58cde4f67471');
INSERT INTO `items` (`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`,`uuid`) values ('42774','18','','10517','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Uptime','proxmox.lxc.uptime[{#LXC.ID}]','0','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'System uptime in \'N days, hh:mm:ss\' format.','0','30d','0','','42761','3s','','','','200','1','0','','0','0','0','0','0','0','0','bd213f6de4db4e1e84894b80acffa330');
INSERT INTO `items` (`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`,`uuid`) values ('42775','18','','10517','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Status','proxmox.lxc.vmstatus[{#LXC.ID}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','42761','3s','','','','200','1','0','','0','0','0','0','0','0','0','535f521800564b0f83211740aabbc137');
INSERT INTO `items` (`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`,`uuid`) values ('42776','18','','10517','Proxmox: Node [{#NODE.NAME}]: CPU, usage','proxmox.node.cpu[{#NODE.NAME}]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'CPU usage.','0','30d','0','','42764','3s','','','','200','1','0','','0','0','0','0','0','0','0','c5e50056abda49f190e21f46f8cf7379');
INSERT INTO `items` (`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`,`uuid`) values ('42777','18','','10517','Proxmox: Node [{#NODE.NAME}]: Root filesystem, total','proxmox.node.roottotal[{#NODE.NAME}]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Root filesystem total.','0','30d','0','','42764','3s','','','','200','1','0','','0','0','0','0','0','0','0','067954795121482093dd7967c6ca6ede');
INSERT INTO `items` (`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`,`uuid`) values ('42778','18','','10517','Proxmox: Node [{#NODE.NAME}]: Uptime','proxmox.node.uptime[{#NODE.NAME}]','0','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'System uptime in \'N days, hh:mm:ss\' format.','0','30d','0','','42763','3s','','','','200','1','0','','0','0','0','0','0','0','0','fc7f5811d338484bba5393a8a5718f67');
INSERT INTO `items` (`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`,`uuid`) values ('42779','18','','10517','Proxmox: Node [{#NODE.NAME}]: Time zone','proxmox.node.timezone[{#NODE.NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Time zone.','0','30d','0','','42762','3s','','','','200','1','0','','0','0','0','0','0','0','0','42d7b4ff315a4cfa9af1aed5e141661d');
INSERT INTO `items` (`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`,`uuid`) values ('42780','18','','10517','Proxmox: Node [{#NODE.NAME}]: Swap filesystem, used','proxmox.node.swapused[{#NODE.NAME}]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Swap used.','0','30d','0','','42764','3s','','','','200','1','0','','0','0','0','0','0','0','0','5f42addb719a412da6fd448d38d1a7d0');
INSERT INTO `items` (`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`,`uuid`) values ('42781','18','','10517','Proxmox: Node [{#NODE.NAME}]: Swap filesystem, total','proxmox.node.swaptotal[{#NODE.NAME}]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Swap total.','0','30d','0','','42764','3s','','','','200','1','0','','0','0','0','0','0','0','0','0dce6e5edd6d4ddab69932796b4301c0');
INSERT INTO `items` (`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`,`uuid`) values ('42782','18','','10517','Proxmox: Node [{#NODE.NAME}]: Root filesystem, used','proxmox.node.rootused[{#NODE.NAME}]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Root filesystem usage.','0','30d','0','','42764','3s','','','','200','1','0','','0','0','0','0','0','0','0','2beadf6ba8b04a21b008ddf63bd2fa6b');
INSERT INTO `items` (`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`,`uuid`) values ('42783','18','','10517','Proxmox: Node [{#NODE.NAME}]: PVE version','proxmox.node.pveversion[{#NODE.NAME}]','0','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'PVE manager version.','0','30d','0','','42763','3s','','','','200','1','0','','0','0','0','0','0','0','0','f220249168d947b6b8b99c068af35650');
INSERT INTO `items` (`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`,`uuid`) values ('42784','18','','10517','Proxmox: Node [{#NODE.NAME}]: CPU, iowait','proxmox.node.iowait[{#NODE.NAME}]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'CPU iowait time.','0','30d','0','','42764','3s','','','','200','1','0','','0','0','0','0','0','0','0','78e02931cf5c4c93b9c0092bd407a897');
INSERT INTO `items` (`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`,`uuid`) values ('42785','18','','10517','Proxmox: Node [{#NODE.NAME}]: Status','proxmox.node.online[{#NODE.NAME}]','0','7d','365d','0','3','','','','',NULL,'955','','','0','','','','','2',NULL,'Indicates if the node is online or offline.','0','30d','0','','42755','3s','','','','200','1','0','','0','0','0','0','0','0','0','b8c3ff9544d5490286c668d3320d2ee0');
INSERT INTO `items` (`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`,`uuid`) values ('42786','18','','10517','Proxmox: Node [{#NODE.NAME}]: Outgoing data, rate','proxmox.node.netout[{#NODE.NAME}]','0','7d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Network usage.','0','30d','0','','42764','3s','','','','200','1','0','','0','0','0','0','0','0','0','3048c6c023bc4fb58a8710d7306052fb');
INSERT INTO `items` (`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`,`uuid`) values ('42787','18','','10517','Proxmox: Node [{#NODE.NAME}]: Incoming data, rate','proxmox.node.netin[{#NODE.NAME}]','0','7d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Network usage.','0','30d','0','','42764','3s','','','','200','1','0','','0','0','0','0','0','0','0','892f3b733a25475cb8fe30eeca3750f2');
INSERT INTO `items` (`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`,`uuid`) values ('42788','18','','10517','Proxmox: Node [{#NODE.NAME}]: Memory, used','proxmox.node.memused[{#NODE.NAME}]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Memory usage.','0','30d','0','','42764','3s','','','','200','1','0','','0','0','0','0','0','0','0','04a2028e5d6640958da01c372f4407ec');
INSERT INTO `items` (`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`,`uuid`) values ('42789','18','','10517','Proxmox: Node [{#NODE.NAME}]: Memory, total','proxmox.node.memtotal[{#NODE.NAME}]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Memory total.','0','30d','0','','42764','3s','','','','200','1','0','','0','0','0','0','0','0','0','0bb66733d10843438a090bf39eae92e2');
INSERT INTO `items` (`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`,`uuid`) values ('42790','18','','10517','Proxmox: Node [{#NODE.NAME}]: Localtime','proxmox.node.localtime[{#NODE.NAME}]','0','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Seconds since 1970-01-01 00:00:00 (local time).','0','30d','0','','42762','3s','','','','200','1','0','','0','0','0','0','0','0','0','59aab7121b1f4ff0b98a38cc75f39fb3');
INSERT INTO `items` (`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`,`uuid`) values ('42791','18','','10517','Proxmox: Node [{#NODE.NAME}]: CPU, loadavg','proxmox.node.loadavg[{#NODE.NAME}]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'CPU average load.','0','30d','0','','42764','3s','','','','200','1','0','','0','0','0','0','0','0','0','155bcbfd12f54614ab55d29e0fb5c2aa');
INSERT INTO `items` (`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`,`uuid`) values ('42792','18','','10517','Proxmox: Node [{#NODE.NAME}]: Kernel version','proxmox.node.kernelversion[{#NODE.NAME}]','0','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Kernel version info.','0','30d','0','','42763','3s','','','','200','1','0','','0','0','0','0','0','0','0','c31b9d3f9f4d4f6fa5611038bb9a8401');
INSERT INTO `items` (`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`,`uuid`) values ('42793','18','','10517','Proxmox: Node [{#NODE.NAME}]: Time','proxmox.node.utctime[{#NODE.NAME}]','0','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Seconds since 1970-01-01 00:00:00 UTC.','0','30d','0','','42762','3s','','','','200','1','0','','0','0','0','0','0','0','0','384d479a04f044b192a74743f0a459b4');
INSERT INTO `items` (`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`,`uuid`) values ('42794','18','','10517','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: CPU usage','proxmox.qemu.cpu[{#QEMU.ID}]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'CPU load.','0','30d','0','','42765','3s','','','','200','1','0','','0','0','0','0','0','0','0','196bf027d77742ea8960e350d9ea579e');
INSERT INTO `items` (`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`,`uuid`) values ('42795','18','','10517','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Disk read, rate','proxmox.qemu.diskread[{#QEMU.ID}]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk read.','0','30d','0','','42765','3s','','','','200','1','0','','0','0','0','0','0','0','0','ffd3c0a6e9764d9ea0091d2fcf0234e2');
INSERT INTO `items` (`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`,`uuid`) values ('42796','18','','10517','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Disk write, rate','proxmox.qemu.diskwrite[{#QEMU.ID}]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk write.','0','30d','0','','42765','3s','','','','200','1','0','','0','0','0','0','0','0','0','7c02301822414849b8dc38ae26c74a7b');
INSERT INTO `items` (`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`,`uuid`) values ('42797','18','','10517','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Memory total','proxmox.qemu.maxmem[{#QEMU.ID}]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total memory in Bytes.','0','30d','0','','42765','3s','','','','200','1','0','','0','0','0','0','0','0','0','3c46d7e2f07049fc8f749157cf5627e9');
INSERT INTO `items` (`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`,`uuid`) values ('42798','18','','10517','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Memory usage','proxmox.qemu.mem[{#QEMU.ID}]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used memory in Bytes.','0','30d','0','','42765','3s','','','','200','1','0','','0','0','0','0','0','0','0','9f4402482af549288f32f108ab801950');
INSERT INTO `items` (`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`,`uuid`) values ('42799','18','','10517','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Incoming data, rate','proxmox.qemu.netin[{#QEMU.ID}]','0','7d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Incoming data rate.','0','30d','0','','42765','3s','','','','200','1','0','','0','0','0','0','0','0','0','c3cb5366103743c2823f522482e9f2e4');
INSERT INTO `items` (`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`,`uuid`) values ('42800','18','','10517','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Outgoing data, rate','proxmox.qemu.netout[{#QEMU.ID}]','0','7d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Outgoing data rate.','0','30d','0','','42765','3s','','','','200','1','0','','0','0','0','0','0','0','0','2cd398f1b9814551a7fad7e2bc66f6af');
INSERT INTO `items` (`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`,`uuid`) values ('42801','18','','10517','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Uptime','proxmox.qemu.uptime[{#QEMU.ID}]','0','2w','0d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'System uptime in \'N days, hh:mm:ss\' format.','0','30d','0','','42765','3s','','','','200','1','0','','0','0','0','0','0','0','0','77ba70e0ce6f486585f870d3b57033ba');
INSERT INTO `items` (`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`,`uuid`) values ('42802','18','','10517','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Status','proxmox.qemu.vmstatus[{#QEMU.ID}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','42765','3s','','','','200','1','0','','0','0','0','0','0','0','0','9b6de7e610c64950a3b477b9dc666751');
INSERT INTO `items` (`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`,`uuid`) values ('42803','18','','10517','Proxmox: Storage [{#NODE.NAME}/{#STORAGE.NAME}]: Content','proxmox.node.content[{#NODE.NAME},{#STORAGE.NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Allowed storage content types.','0','30d','0','','42754','3s','','','','200','1','0','','0','0','0','0','0','0','0','c803813b43f24390b7e0d79fda824a54');
INSERT INTO `items` (`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`,`uuid`) values ('42804','18','','10517','Proxmox: Storage [{#NODE.NAME}/{#STORAGE.NAME}]: Used','proxmox.node.disk[{#NODE.NAME},{#STORAGE.NAME}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used disk space in bytes.','0','30d','0','','42754','3s','','','','200','1','0','','0','0','0','0','0','0','0','0edb3506231648c9820103a337486d63');
INSERT INTO `items` (`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`,`uuid`) values ('42805','18','','10517','Proxmox: Storage [{#NODE.NAME}/{#STORAGE.NAME}]: Size','proxmox.node.maxdisk[{#NODE.NAME},{#STORAGE.NAME}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Storage size in bytes.','0','30d','0','','42754','3s','','','','200','1','0','','0','0','0','0','0','0','0','ced02242ff46454f9c49f3d44bf0de9a');
INSERT INTO `items` (`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`,`uuid`) values ('42806','18','','10517','Proxmox: Storage [{#NODE.NAME}/{#STORAGE.NAME}]: Type','proxmox.node.plugintype[{#NODE.NAME},{#STORAGE.NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'More specific type, if available.','0','30d','0','','42754','3s','','','','200','1','0','','0','0','0','0','0','0','0','4360858342254aecba7a77eb315cc2bb');
INSERT INTO `items` (`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`,`uuid`) values ('42849','18','','10518','CPU discovery','cpu.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'This discovery will create set of per core CPU metrics from UCD-SNMP-MIB, using {#CPU.COUNT} in preprocessing. That\'s the only reason why LLD is used.','0','30d','0','','42836','3s','','','','200','1','0','','0','0','0','0','0','0','0','cc40c0d4ea184b12bf15056f103a4654');
INSERT INTO `items` (`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`,`uuid`) values ('42891','18','','10518','TrueNAS: CPU utilization','system.cpu.util[{#SNMPINDEX}]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'CPU utilization in %.','0','30d','0','','42856','3s','','','','200','1','0','','0','0','0','0','0','0','0','40f51efcbf47483f84c843c00bd1e034');
INSERT INTO `items` (`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`,`uuid`) values ('42893','18','','10383','SMART [{#NAME}]: Bad_Block_Rate','smart.disk.attribute.bad_block_rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Percentage of used reserve blocks divided by total reserve blocks.','0','30d','0','','42892','3s','','','','200','1','0','','0','0','0','0','0','0','1','643de316ae644f6d8fd92d1f03ae0360');
INSERT INTO `items` (`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`,`uuid`) values ('42894','18','','10383','SMART [{#NAME}]: Exit status','smart.disk.es[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The exit statuses of smartctl are defined by a bitmask but in decimal value. The eight different bits in the exit status have the following meanings for ATA disks; some of these values may also be returned for SCSI disks.\r\nBit 0: Command line did not parse.\r\nBit 1: Device open failed, device did not return an IDENTIFY DEVICE structure, or device is in a low-power mode (see \'-n\' option above).\r\nBit 2: Some SMART or other ATA command to the disk failed, or there was a checksum error in a SMART data structure (see \'-b\' option above).\r\nBit 3: SMART status check returned "DISK FAILING".\r\nBit 4: We found prefail Attributes <= threshold.\r\nBit 5: SMART status check returned "DISK OK" but we found that some (usage or prefail) Attributes have been <= threshold at some time in the past.\r\nBit 6: The device error log contains records of errors.\r\nBit 7: The device self-test log contains records of errors. [ATA only] Failed self-tests outdated by a newer successful extended self-test are ignored.','0','30d','0','','42892','3s','','','','200','1','0','','0','0','0','0','0','0','0','849a9d5c9b9d4b969a09ab5cf4629ded');
INSERT INTO `items` (`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`,`uuid`) values ('42895','18','','10383','SMART [{#NAME}]: Temperature','smart.disk.temperature[{#NAME}]','0','7d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'Current drive temperature.','0','30d','0','','42892','3s','','','','200','1','0','','0','0','0','0','0','0','0','2f5b054d7a644e029a195d17f525c191');
INSERT INTO `items` (`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`,`uuid`) values ('42896','18','','10383','SMART [{#NAME}]: Serial number','smart.disk.sn[{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','42892','3s','','','','200','1','0','','0','0','0','0','0','0','0','62f98419c8034f389a5be3755eac8938');
INSERT INTO `items` (`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`,`uuid`) values ('42897','18','','10383','SMART [{#NAME}]: Percentage used','smart.disk.percentage_used[{#NAME}]','0','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Contains a vendor specific estimate of the percentage of NVM subsystem life used based on the actual usage and the manufacturer\'s prediction of NVM life. A value of 100 indicates that the estimated endurance of the NVM in the NVM subsystem has been consumed, but may not indicate an NVM subsystem failure. The value is allowed to exceed 100. Percentages greater than 254 shall be represented as 255. This value shall be updated once per power-on hour (when the controller is not in a sleep state).','0','30d','0','','42892','3s','','','','200','1','0','','0','0','0','0','0','0','0','6ce46d274a694eac9700bd02a936f4be');
INSERT INTO `items` (`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`,`uuid`) values ('42898','18','','10383','SMART [{#NAME}]: Device model','smart.disk.model[{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','42892','3s','','','','200','1','0','','0','0','0','0','0','0','0','b6abf9b52c694600b63fce4a68fc0fbd');
INSERT INTO `items` (`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`,`uuid`) values ('42899','18','','10383','SMART [{#NAME}]: Media errors','smart.disk.media_errors[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Contains the number of occurrences where the controller detected an unrecovered data integrity error. Errors such as uncorrectable ECC, CRC checksum failure, or LBA tag mismatch are included in this field.','0','30d','0','','42892','3s','','','','200','1','0','','0','0','0','0','0','0','0','8478d6421fb044339e2118848ac6d56b');
INSERT INTO `items` (`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`,`uuid`) values ('42900','18','','10383','SMART [{#NAME}]: Power on hours','smart.disk.hours[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of hours in power-on state. The raw value of this attribute shows total count of hours (or minutes, or seconds, depending on manufacturer) in power-on state. "By default, the total expected lifetime of a hard disk in perfect condition is defined as 5 years (running every day and night on all days). This is equal to 1825 days in 24/7 mode or 43800 hours." On some pre-2005 drives, this raw value may advance erratically and/or "wrap around" (reset to zero periodically). https://en.wikipedia.org/wiki/S.M.A.R.T.#Known_ATA_S.M.A.R.T._attributes','0','30d','0','','42892','3s','','','','200','1','0','','0','0','0','0','0','0','0','365f9642f2764116923bb3e014eefa22');
INSERT INTO `items` (`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`,`uuid`) values ('42901','18','','10383','SMART [{#NAME}]: Smartctl error','smart.disk.error[{#NAME}]','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This metric will contain smartctl errors.','0','30d','0','','42892','3s','','','','200','1','0','','0','0','0','0','0','0','0','72f16a701cee4119b0b1865671fd448d');
INSERT INTO `items` (`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`,`uuid`) values ('42902','18','','10383','SMART [{#NAME}]: Power_Cycle_Count','smart.disk.attribute.power_cycle_count[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This attribute indicates the count of full hard disk power on/off cycles.','0','30d','0','','42892','3s','','','','200','1','0','','0','0','0','0','0','0','1','2a055383835247bc83745c84fdc5dea9');
INSERT INTO `items` (`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`,`uuid`) values ('42903','18','','10383','SMART [{#NAME}]: Critical warning','smart.disk.critical_warning[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This field indicates critical warnings for the state of the controller.','0','30d','0','','42892','3s','','','','200','1','0','','0','0','0','0','0','0','0','c186f7ce1b8d4311997c84fd5c239819');
INSERT INTO `items` (`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`,`uuid`) values ('42904','18','','10383','SMART [{#NAME}]: Start_Stop_Count','smart.disk.attribute.start_stop_count[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'A tally of spindle start/stop cycles. The spindle turns on, and hence the count is increased, both when the hard disk is turned on after having before been turned entirely off (disconnected from power source) and when the hard disk returns from having previously been put to sleep mode.','0','30d','0','','42892','3s','','','','200','1','0','','0','0','0','0','0','0','1','e428eb3368e94dbc955f2bebf8feb202');
INSERT INTO `items` (`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`,`uuid`) values ('42905','18','','10383','SMART [{#NAME}]: Spin_Up_Time','smart.disk.attribute.spin_up_time[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Average time of spindle spin up (from zero RPM to fully operational [milliseconds]).','0','30d','0','','42892','3s','','','','200','1','0','','0','0','0','0','0','0','1','6e08c65d77ca4155b396c9615b2f45b3');
INSERT INTO `items` (`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`,`uuid`) values ('42906','18','','10383','SMART [{#NAME}]: Seek_Error_Rate','smart.disk.attribute.seek_error_rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of seek errors of the magnetic heads. If there is a partial failure in the mechanical positioning system, then seek errors will arise. Such a failure may be due to numerous factors, such as damage to a servo, or thermal widening of the hard disk. The raw value has different structure for different vendors and is often not meaningful as a decimal number. For some drives, this number may increase during normal operation without necessarily signifying errors.','0','30d','0','','42892','3s','','','','200','1','0','','0','0','0','0','0','0','1','70ac7d6cdf29431cacf02fc716c8ab0c');
INSERT INTO `items` (`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`,`uuid`) values ('42907','18','','10383','SMART [{#NAME}]: Reported_Uncorrect','smart.disk.attribute.reported_uncorrect[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of errors that could not be recovered using hardware ECC.','0','30d','0','','42892','3s','','','','200','1','0','','0','0','0','0','0','0','1','f538f4708280451eb30d20433d133012');
INSERT INTO `items` (`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`,`uuid`) values ('42908','18','','10383','SMART [{#NAME}]: Reallocated_Sector_Ct','smart.disk.attribute.reallocated_sector_ct[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk discovered attribute.','0','30d','0','','42892','3s','','','','200','1','0','','0','0','0','0','0','0','1','5601bfa6a38940b6b8d695bf029f534c');
INSERT INTO `items` (`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`,`uuid`) values ('42909','18','','10383','SMART [{#NAME}]: Raw_Read_Error_Rate','smart.disk.attribute.raw_read_error_rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Stores data related to the rate of hardware read errors that occurred when reading data from a disk surface. The raw value has different structure for different vendors and is often not meaningful as a decimal number. For some drives, this number may increase during normal operation without necessarily signifying errors.','0','30d','0','','42892','3s','','','','200','1','0','','0','0','0','0','0','0','1','abb098035cbd4c5b9e2d15c1e95d8e34');
INSERT INTO `items` (`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`,`uuid`) values ('42910','18','','10383','SMART [{#NAME}]: Program_Fail_Count_Chip','smart.disk.attribute.program_fail_count_chip[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of flash program operation failures since the drive was deployed.','0','30d','0','','42892','3s','','','','200','1','0','','0','0','0','0','0','0','1','e1fbae7fe66c453997d9aa6e6eb3b5cb');
INSERT INTO `items` (`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`,`uuid`) values ('42911','18','','10383','SMART [{#NAME}]: Self-test passed','smart.disk.test[{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The disk is passed the SMART self-test or not.','0','30d','0','','42892','3s','','','','200','1','0','','0','0','0','0','0','0','0','434b338d88e041dd9b6a0b7aaa403076');
INSERT INTO `items` (`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`,`uuid`) values ('42913','18','','10384','SMART [{#NAME}]: Bad_Block_Rate','smart.disk.attribute.bad_block_rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Percentage of used reserve blocks divided by total reserve blocks.','0','30d','0','','42912','3s','','','','200','1','0','','0','0','0','0','0','0','1','b3891b80915c4e2488f2f87cb173474a');
INSERT INTO `items` (`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`,`uuid`) values ('42914','18','','10384','SMART [{#NAME}]: Exit status','smart.disk.es[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The exit statuses of smartctl are defined by a bitmask but in decimal value. The eight different bits in the exit status have the following meanings for ATA disks; some of these values may also be returned for SCSI disks.\r\nBit 0: Command line did not parse.\r\nBit 1: Device open failed, device did not return an IDENTIFY DEVICE structure, or device is in a low-power mode (see \'-n\' option above).\r\nBit 2: Some SMART or other ATA command to the disk failed, or there was a checksum error in a SMART data structure (see \'-b\' option above).\r\nBit 3: SMART status check returned "DISK FAILING".\r\nBit 4: We found prefail Attributes <= threshold.\r\nBit 5: SMART status check returned "DISK OK" but we found that some (usage or prefail) Attributes have been <= threshold at some time in the past.\r\nBit 6: The device error log contains records of errors.\r\nBit 7: The device self-test log contains records of errors. [ATA only] Failed self-tests outdated by a newer successful extended self-test are ignored.','0','30d','0','','42912','3s','','','','200','1','0','','0','0','0','0','0','0','0','952376ecd47a498cab40ec6872d20454');
INSERT INTO `items` (`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`,`uuid`) values ('42915','18','','10384','SMART [{#NAME}]: Temperature','smart.disk.temperature[{#NAME}]','0','7d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'Current drive temperature.','0','30d','0','','42912','3s','','','','200','1','0','','0','0','0','0','0','0','0','e79eaaf7ee0d40e7b91fc019f5edb19e');
INSERT INTO `items` (`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`,`uuid`) values ('42916','18','','10384','SMART [{#NAME}]: Serial number','smart.disk.sn[{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','42912','3s','','','','200','1','0','','0','0','0','0','0','0','0','189d8e8d16ed40229ba3ca52b75d2dc4');
INSERT INTO `items` (`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`,`uuid`) values ('42917','18','','10384','SMART [{#NAME}]: Percentage used','smart.disk.percentage_used[{#NAME}]','0','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Contains a vendor specific estimate of the percentage of NVM subsystem life used based on the actual usage and the manufacturer\'s prediction of NVM life. A value of 100 indicates that the estimated endurance of the NVM in the NVM subsystem has been consumed, but may not indicate an NVM subsystem failure. The value is allowed to exceed 100. Percentages greater than 254 shall be represented as 255. This value shall be updated once per power-on hour (when the controller is not in a sleep state).','0','30d','0','','42912','3s','','','','200','1','0','','0','0','0','0','0','0','0','d5cef21c49994c3e8e12ef6471d7cdcd');
INSERT INTO `items` (`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`,`uuid`) values ('42918','18','','10384','SMART [{#NAME}]: Device model','smart.disk.model[{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','42912','3s','','','','200','1','0','','0','0','0','0','0','0','0','f48fe3366b194eb4942411cc776c8633');
INSERT INTO `items` (`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`,`uuid`) values ('42919','18','','10384','SMART [{#NAME}]: Media errors','smart.disk.media_errors[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Contains the number of occurrences where the controller detected an unrecovered data integrity error. Errors such as uncorrectable ECC, CRC checksum failure, or LBA tag mismatch are included in this field.','0','30d','0','','42912','3s','','','','200','1','0','','0','0','0','0','0','0','0','0861b008b09a41799978e085625aaa4a');
INSERT INTO `items` (`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`,`uuid`) values ('42920','18','','10384','SMART [{#NAME}]: Power on hours','smart.disk.hours[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of hours in power-on state. The raw value of this attribute shows total count of hours (or minutes, or seconds, depending on manufacturer) in power-on state. "By default, the total expected lifetime of a hard disk in perfect condition is defined as 5 years (running every day and night on all days). This is equal to 1825 days in 24/7 mode or 43800 hours." On some pre-2005 drives, this raw value may advance erratically and/or "wrap around" (reset to zero periodically). https://en.wikipedia.org/wiki/S.M.A.R.T.#Known_ATA_S.M.A.R.T._attributes','0','30d','0','','42912','3s','','','','200','1','0','','0','0','0','0','0','0','0','e5bbd606e330469389bf081588b88d17');
INSERT INTO `items` (`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`,`uuid`) values ('42921','18','','10384','SMART [{#NAME}]: Smartctl error','smart.disk.error[{#NAME}]','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This metric will contain smartctl errors.','0','30d','0','','42912','3s','','','','200','1','0','','0','0','0','0','0','0','0','b96b496a854f4165a44662bd93400b27');
INSERT INTO `items` (`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`,`uuid`) values ('42922','18','','10384','SMART [{#NAME}]: Power_Cycle_Count','smart.disk.attribute.power_cycle_count[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This attribute indicates the count of full hard disk power on/off cycles.','0','30d','0','','42912','3s','','','','200','1','0','','0','0','0','0','0','0','1','512c44706bff48fda2ef444713d93b29');
INSERT INTO `items` (`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`,`uuid`) values ('42923','18','','10384','SMART [{#NAME}]: Critical warning','smart.disk.critical_warning[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This field indicates critical warnings for the state of the controller.','0','30d','0','','42912','3s','','','','200','1','0','','0','0','0','0','0','0','0','ad6a9f6f7293495c916bb0aac0bc9729');
INSERT INTO `items` (`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`,`uuid`) values ('42924','18','','10384','SMART [{#NAME}]: Start_Stop_Count','smart.disk.attribute.start_stop_count[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'A tally of spindle start/stop cycles. The spindle turns on, and hence the count is increased, both when the hard disk is turned on after having before been turned entirely off (disconnected from power source) and when the hard disk returns from having previously been put to sleep mode.','0','30d','0','','42912','3s','','','','200','1','0','','0','0','0','0','0','0','1','eee36c13fc6248f6894188102d215638');
INSERT INTO `items` (`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`,`uuid`) values ('42925','18','','10384','SMART [{#NAME}]: Spin_Up_Time','smart.disk.attribute.spin_up_time[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Average time of spindle spin up (from zero RPM to fully operational [milliseconds]).','0','30d','0','','42912','3s','','','','200','1','0','','0','0','0','0','0','0','1','422ba65b87444329b5a23d03ce89dda7');
INSERT INTO `items` (`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`,`uuid`) values ('42926','18','','10384','SMART [{#NAME}]: Seek_Error_Rate','smart.disk.attribute.seek_error_rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of seek errors of the magnetic heads. If there is a partial failure in the mechanical positioning system, then seek errors will arise. Such a failure may be due to numerous factors, such as damage to a servo, or thermal widening of the hard disk. The raw value has different structure for different vendors and is often not meaningful as a decimal number. For some drives, this number may increase during normal operation without necessarily signifying errors.','0','30d','0','','42912','3s','','','','200','1','0','','0','0','0','0','0','0','1','99df8858bc6d4fb4a9fb4abd29b6c852');
INSERT INTO `items` (`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`,`uuid`) values ('42927','18','','10384','SMART [{#NAME}]: Reported_Uncorrect','smart.disk.attribute.reported_uncorrect[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of errors that could not be recovered using hardware ECC.','0','30d','0','','42912','3s','','','','200','1','0','','0','0','0','0','0','0','1','fa253069f1c74a0b9ee3dca5eafef17a');
INSERT INTO `items` (`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`,`uuid`) values ('42928','18','','10384','SMART [{#NAME}]: Reallocated_Sector_Ct','smart.disk.attribute.reallocated_sector_ct[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk discovered attribute.','0','30d','0','','42912','3s','','','','200','1','0','','0','0','0','0','0','0','1','643276ac0dab47b8974e849a1574ac2a');
INSERT INTO `items` (`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`,`uuid`) values ('42929','18','','10384','SMART [{#NAME}]: Raw_Read_Error_Rate','smart.disk.attribute.raw_read_error_rate[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Stores data related to the rate of hardware read errors that occurred when reading data from a disk surface. The raw value has different structure for different vendors and is often not meaningful as a decimal number. For some drives, this number may increase during normal operation without necessarily signifying errors.','0','30d','0','','42912','3s','','','','200','1','0','','0','0','0','0','0','0','1','f794dc07c88a4690be8512e029f0b50c');
INSERT INTO `items` (`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`,`uuid`) values ('42930','18','','10384','SMART [{#NAME}]: Program_Fail_Count_Chip','smart.disk.attribute.program_fail_count_chip[{#NAME}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of flash program operation failures since the drive was deployed.','0','30d','0','','42912','3s','','','','200','1','0','','0','0','0','0','0','0','1','0ab9412116924ca2a9561b44e4c9d6da');
INSERT INTO `items` (`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`,`uuid`) values ('42931','18','','10384','SMART [{#NAME}]: Self-test passed','smart.disk.test[{#NAME}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The disk is passed the SMART self-test or not.','0','30d','0','','42912','3s','','','','200','1','0','','0','0','0','0','0','0','0','2475415cc95b4103b2933f921e62dd36');
INSERT INTO `items` (`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`,`uuid`) values ('42935','18','','10519','Consul: Serf member: join, rate','consul.serf.member.join.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Increments when an agent joins the cluster. If an agent flapped or failed this counter also increments when it re-joins.\r\nShown as events per second.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','f4c224ffb17d49029fef6647dde22c90');
INSERT INTO `items` (`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`,`uuid`) values ('42936','18','','10519','Consul: TCP connections, per second','consul.memberlist.tcp_connect','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'This metric counts the number of times a Consul agent has initiated a push/pull sync with an other agent per second.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','df0a553d811444d1ab767563a1d513a3');
INSERT INTO `items` (`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`,`uuid`) values ('42937','18','','10519','Consul: TCP send bytes, per second','consul.memberlist.tcp_sent','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'This metric measures the total number of bytes sent by a Consul agent through the TCP protocol per second.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','ba12a6464199443d8d73164a8dd87f4f');
INSERT INTO `items` (`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`,`uuid`) values ('42938','18','','10519','Consul: UDP received bytes, per second','consul.memberlist.udp_received','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'This metric measures the total number of bytes received by a Consul agent through the UDP protocol per second.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','dde5f5c5c7d44f1dbbcddb4a541f41cc');
INSERT INTO `items` (`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`,`uuid`) values ('42939','18','','10519','Consul: UDP sent bytes, per second','consul.memberlist.udp_sent','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'This metric measures the total number of bytes sent by a Consul agent through the UDP protocol per second.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','fa79687f332f4136881577838476c329');
INSERT INTO `items` (`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`,`uuid`) values ('42940','18','','10519','Consul: Open file descriptors, max','consul.process_max_fds','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum number of open file descriptors.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','59b28123e8154318aca6a283a1b18391');
INSERT INTO `items` (`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`,`uuid`) values ('42941','18','','10519','Consul: Open file descriptors','consul.process_open_fds','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open file descriptors.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','38ad7b5d43004865bd823f1dae61395a');
INSERT INTO `items` (`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`,`uuid`) values ('42942','18','','10519','Consul: RSS memory usage','consul.resident_memory_bytes','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident memory size in bytes.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','8cb242ddeb7f4a0685c706a24f1f85c5');
INSERT INTO `items` (`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`,`uuid`) values ('42943','18','','10519','Consul: Role','consul.role','0','7d','365d','0','3','','','','',NULL,'963','','','0','','','','','0',NULL,'Role of current Consul agent.','0','30d','0','','42933','3s','','','','200','1','0','','0','0','0','0','0','0','0','ee52c7cd8a4d452d85564a47c44198a6');
INSERT INTO `items` (`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`,`uuid`) values ('42944','18','','10519','Consul: Serf member: failed, rate','consul.serf.member.failed.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Increments when an agent is marked dead.\r\nThis can be an indicator of overloaded agents, network problems, or configuration errors where agents cannot connect to each other on the required ports.\r\nShown as events per second.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','e311c5bdba3e45b68887bc924c7dc206');
INSERT INTO `items` (`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`,`uuid`) values ('42945','18','','10519','Consul: Serf member: flap, rate','consul.serf.member.flap.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Increments when an agent is marked dead and then recovers within a short time period.\r\nThis can be an indicator of overloaded agents, network problems, or configuration errors where agents cannot connect to each other on the required ports.\r\nShown as events per second.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','11ba84beb3494504bd514500ef663cff');
INSERT INTO `items` (`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`,`uuid`) values ('42946','18','','10519','Consul: ACL: resolves, rate','consul.acl.resolves.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of ACL resolves per second.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','9f90fe43daaa43369b000754e1630e41');
INSERT INTO `items` (`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`,`uuid`) values ('42947','18','','10519','Consul: Serf member: left, rate','consul.serf.member.left.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Increments when an agent leaves the cluster. Shown as events per second.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','3264823eb6774c2092b4ffe4638b61a5');
INSERT INTO `items` (`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`,`uuid`) values ('42948','18','','10519','Consul: Memberlist: push pull node, p90','consul.memberlist.push_pull_node.p90','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The 90 percentile for the number of Consul agents that have exchanged state with this agent.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','ae085470652242ba8a2077bebee7a2c7');
INSERT INTO `items` (`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`,`uuid`) values ('42949','18','','10519','Consul: Serf member: update, rate','consul.serf.member.update.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Increments when a Consul agent updates. Shown as events per second.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','53bb4e76cd1840e8ae9a129d592e202e');
INSERT INTO `items` (`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`,`uuid`) values ('42950','18','','10519','Consul: Number of services','consul.services_number','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of services on current node.','0','30d','0','','42933','3s','','','','200','1','0','','0','0','0','0','0','0','0','614e63c6eb254b45a5fb3dbb985c5c3c');
INSERT INTO `items` (`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`,`uuid`) values ('42951','18','','10519','Consul: Snapshot: append line, p50','consul.snapshot.append_line.p50','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The 50 percentile (median) for the time taken by the Consul agent to append an entry into the existing log.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','d9988aeda27f4fb09ececcde13efc71a');
INSERT INTO `items` (`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`,`uuid`) values ('42952','18','','10519','Consul: Snapshot: append line, p90','consul.snapshot.append_line.p90','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The 90 percentile for the time taken by the Consul agent to append an entry into the existing log.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','0b701ec082e64eb19e60650c13cd44fd');
INSERT INTO `items` (`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`,`uuid`) values ('42953','18','','10519','Consul: Snapshot: append line, rate','consul.snapshot.append_line.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of snapshot appendLine operations per second.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','d56de8b09978421c9703fe327d03a32b');
INSERT INTO `items` (`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`,`uuid`) values ('42954','18','','10519','Consul: Snapshot: compact, p50','consul.snapshot.compact.p50','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The 50 percentile (median) for the time taken by the Consul agent to compact a log.\r\nThis operation occurs only when the snapshot becomes large enough to justify the compaction.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','12e1a4538f124c4281106b9033b1592d');
INSERT INTO `items` (`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`,`uuid`) values ('42955','18','','10519','Consul: Snapshot: compact, p90','consul.snapshot.compact.p90','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The 90 percentile for the time taken by the Consul agent to compact a log.\r\nThis operation occurs only when the snapshot becomes large enough to justify the compaction.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','c55de444dd30484eb116abfd6f28a9a0');
INSERT INTO `items` (`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`,`uuid`) values ('42956','18','','10519','Consul: Snapshot: compact, rate','consul.snapshot.compact.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of snapshot compact operations per second.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','586be345685b4f0dbbb31f2062bebc01');
INSERT INTO `items` (`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`,`uuid`) values ('42957','18','','10519','Consul: Version','consul.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of Consul agent.','0','30d','0','','42933','3s','','','','200','1','0','','0','0','0','0','0','0','0','777e8cdd1cfc4f4bba613ef08320f1bb');
INSERT INTO `items` (`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`,`uuid`) values ('42958','18','','10519','Consul: TCP connections, accepted per second','consul.memberlist.tcp_accept','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'This metric counts the number of times a Consul agent has accepted an incoming TCP stream connection per second.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','a5d4e2e589564cc9898537c0a8c6a21a');
INSERT INTO `items` (`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`,`uuid`) values ('42959','18','','10519','Consul: Memberlist: probe node, p90','consul.memberlist.probe_node.p90','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The 90 percentile for the time taken to perform a single round of failure detection on a select Consul agent.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','9a178ba5f7fa4d9a8ecfddfe84257ab6');
INSERT INTO `items` (`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`,`uuid`) values ('42960','18','','10519','Consul: Memberlist: push pull node, p50','consul.memberlist.push_pull_node.p50','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The 50 percentile (median) for the number of Consul agents that have exchanged state with this agent.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','ef688e2ad7494a08a535c019fe19c0a9');
INSERT INTO `items` (`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`,`uuid`) values ('42961','18','','10519','Consul: Goroutine count','consul.goroutines','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of Goroutines on Consul instance.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','2bcd79ab2c0a4ef88c0d2386d9bec1ff');
INSERT INTO `items` (`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`,`uuid`) values ('42962','18','','10519','Consul: Catalog: register, rate','consul.catalog.register.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of catalog register operation per second.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','8f01480896f8426688aee08e2ee0fc20');
INSERT INTO `items` (`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`,`uuid`) values ('42963','18','','10519','Consul: Number of checks','consul.checks_number','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of checks on current node.','0','30d','0','','42933','3s','','','','200','1','0','','0','0','0','0','0','0','0','dabcb6819c9444a6a287a6458056ef31');
INSERT INTO `items` (`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`,`uuid`) values ('42964','18','','10519','Consul: Number of check monitors','consul.check_monitors_number','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of check monitors on current node.','0','30d','0','','42933','3s','','','','200','1','0','','0','0','0','0','0','0','0','8e48706f9bda4689bec45f4a80fcc3cb');
INSERT INTO `items` (`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`,`uuid`) values ('42965','18','','10519','Consul: Client RPC, per second','consul.client_rpc','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times per second whenever a Consul agent in client mode makes an RPC request to a Consul server.\r\nThis gives a measure of how much a given agent is loading the Consul servers.\r\nThis is only generated by agents in client mode, not Consul servers.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','2706adc5e5a64c4480269938e2b90fc1');
INSERT INTO `items` (`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`,`uuid`) values ('42966','18','','10519','Consul: Client RPC failed ,per second','consul.client_rpc_failed','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times per second whenever a Consul agent in client mode makes an RPC request to a Consul server and fails.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','3fd30bfd7c324c53a346974c9f38e9db');
INSERT INTO `items` (`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`,`uuid`) values ('42967','18','','10519','Consul: Process CPU seconds, total','consul.cpu_seconds_total.rate','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total user and system CPU time spent in seconds.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','12b9bbac571b431ea06a13a7154ef673');
INSERT INTO `items` (`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`,`uuid`) values ('42968','18','','10519','Consul: GC pause, p50','consul.gc_pause.p50','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The 50 percentile (median) for the number of nanoseconds consumed by stop-the-world garbage collection (GC) pauses since Consul started, in milliseconds.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','7513b847ac754a25972adb3547a871ca');
INSERT INTO `items` (`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`,`uuid`) values ('42969','18','','10519','Consul: GC pause, p90','consul.gc_pause.p90','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The 90 percentile for the number of nanoseconds consumed by stop-the-world garbage collection (GC) pauses since Consul started, in milliseconds.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','3ec74713a835498197e59df962e27bab');
INSERT INTO `items` (`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`,`uuid`) values ('42970','18','','10519','Consul: Get local services check','consul.get_local_services.check','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check.','0','30d','0','','42932','3s','','','','200','1','0','','0','0','0','0','0','0','0','f2fb4c76b4974319846d4773cfb64b0c');
INSERT INTO `items` (`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`,`uuid`) values ('42971','18','','10519','Consul: KV store: apply, p50','consul.kvs.apply.p50','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The 50 percentile (median) for the time it takes to complete an update to the KV store.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','6613be65c0794e76a210263810a4692d');
INSERT INTO `items` (`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`,`uuid`) values ('42972','18','','10519','Consul: Catalog: deregister, rate','consul.catalog.deregister.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of catalog deregister operation per second.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','1c969d5d7546444e91e883661d63890b');
INSERT INTO `items` (`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`,`uuid`) values ('42973','18','','10519','Consul: KV store: apply, p90','consul.kvs.apply.p90','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The 90 percentile for the time it takes to complete an update to the KV store.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','2dc05550018c4d67bab58bd8f86bc365');
INSERT INTO `items` (`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`,`uuid`) values ('42974','18','','10519','Consul: KV store: apply, rate','consul.kvs.apply.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of updates to the KV store per second.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','978bf96102d0411f8c18e92652a003c4');
INSERT INTO `items` (`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`,`uuid`) values ('42975','18','','10519','Consul: Memberlist: degraded','consul.memberlist.degraded','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This metric counts the number of times the Consul agent has performed failure detection on another agent at a slower probe rate.\r\nThe agent uses its own health metric as an indicator to perform this action.\r\nIf its health score is low, it means that the node is healthy, and vice versa.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','1b21a53ce7144350af8b50e57c3acf6b');
INSERT INTO `items` (`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`,`uuid`) values ('42976','18','','10519','Consul: Memberlist: gossip, p90','consul.memberlist.dispatch_log.p90','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The 90 percentile for the number of gossips (messages) broadcasted to a set of randomly selected nodes.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','0a3b25abf7de4212bda5c92c13341593');
INSERT INTO `items` (`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`,`uuid`) values ('42977','18','','10519','Consul: Memberlist: gossip, p50','consul.memberlist.gossip.p50','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The 50 for the number of gossips (messages) broadcasted to a set of randomly selected nodes.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','592fb528d5c14491892c496f7ce9a60b');
INSERT INTO `items` (`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`,`uuid`) values ('42978','18','','10519','Consul: Memberlist: health score','consul.memberlist.health_score','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This metric describes a node\'s perception of its own health based on how well it is meeting the soft real-time requirements of the protocol.\r\nThis metric ranges from 0 to 8, where 0 indicates "totally healthy".','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','32259a799f6949e4be4f7d8722a2dbbe');
INSERT INTO `items` (`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`,`uuid`) values ('42979','18','','10519','Consul: Memberlist: msg alive','consul.memberlist.msg.alive','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This metric counts the number of alive Consul agents, that the agent has mapped out so far, based on the message information given by the network layer.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','1ebba76d809b415488fb0591afeaef6f');
INSERT INTO `items` (`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`,`uuid`) values ('42980','18','','10519','Consul: Memberlist: msg dead','consul.memberlist.msg.dead','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This metric counts the number of times a Consul agent has marked another agent to be a dead node.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','9768a2ce01de4bfe92a17935791b4da4');
INSERT INTO `items` (`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`,`uuid`) values ('42981','18','','10519','Consul: Memberlist: msg suspect','consul.memberlist.msg.suspect','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times a Consul agent suspects another as failed while probing during gossip protocol.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','43ea04dd91ba4c208e9ad09bbc0016af');
INSERT INTO `items` (`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`,`uuid`) values ('42982','18','','10519','Consul: Memberlist: probe node, p50','consul.memberlist.probe_node.p50','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The 50 percentile (median) for the time taken to perform a single round of failure detection on a select Consul agent.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','8b3ee806fcf34a46aa61cbfee460d9f7');
INSERT INTO `items` (`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`,`uuid`) values ('42983','18','','10519','Consul: Virtual memory size','consul.virtual_memory_bytes','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Virtual memory size in bytes.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','62c0bb503c084f9da10f1be3c716608b');
INSERT INTO `items` (`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`,`uuid`) values ('42984','18','','10519','HTTP API methods discovery','consul.http_api_discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery HTTP API methods specific metrics.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','565c42fc4e444433aaafd656813b82f7');
INSERT INTO `items` (`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`,`uuid`) values ('42985','18','','10519','Local node services discovery','consul.node_services_lld','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover metrics for services that are registered with the local agent.','0','30d','0','','42932','3s','','','','200','1','0','','0','0','0','0','0','0','0','dd87920ea8184ec793229878407a0993');
INSERT INTO `items` (`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`,`uuid`) values ('42986','18','','10519','Raft leader metrics discovery','consul.raft.leader.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover raft metrics for leader nodes.','0','30d','0','','42933','3s','','','','200','1','0','','0','0','0','0','0','0','0','6ff39fd6911945b2baa9b762d5a86df2');
INSERT INTO `items` (`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`,`uuid`) values ('42987','18','','10519','Raft server metrics discovery','consul.raft.server.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover raft metrics for server nodes.','0','30d','0','','42933','3s','','','','200','1','0','','0','0','0','0','0','0','0','f7dfc3d88f5440bea02080205d3f0a9b');
INSERT INTO `items` (`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`,`uuid`) values ('42988','18','','10519','Consul: HTTP request: ["{#HTTP_METHOD}"], p50','consul.http.api.p50["{#HTTP_METHOD}"]','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The 50 percentile (median) of how long it takes to service the given HTTP request for the given verb.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','4bdb2007bada4840aa453630e701059c');
INSERT INTO `items` (`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`,`uuid`) values ('42989','18','','10519','Consul: HTTP request: ["{#HTTP_METHOD}"], p90','consul.http.api.p90["{#HTTP_METHOD}"]','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The 90 percentile of how long it takes to service the given HTTP request for the given verb.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','537b455889d54deab7ada216a89f1cb2');
INSERT INTO `items` (`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`,`uuid`) values ('42990','18','','10519','Consul: HTTP request: ["{#HTTP_METHOD}"], rate','consul.http.api.rate["{#HTTP_METHOD}"]','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','2',NULL,'Thr number of HTTP request for the given verb per second.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','53cdb47018df434381f7fc3e401a4dee');
INSERT INTO `items` (`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`,`uuid`) values ('42991','18','','10519','Consul: ["{#SERVICE_NAME}"]: Aggregated status','consul.service.aggregated_state["{#SERVICE_ID}"]','0','7d','365d','0','3','','','','',NULL,'962','','','0','','','','','2',NULL,'Aggregated values of all health checks for the service instance.','0','30d','0','','42932','3s','','','','200','1','0','','0','0','0','0','0','0','1','44b0f82769d244d6a20b9ce0b5cc5cb6');
INSERT INTO `items` (`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`,`uuid`) values ('42992','18','','10519','Consul: ["{#SERVICE_NAME}"]: Check ["{#SERVICE_CHECK_NAME}"]: Output','consul.service.check.output["{#SERVICE_ID}/{#SERVICE_CHECK_ID}"]','0','7d','0','0','1','','','','',NULL,'962','','','0','','','','','2',NULL,'Current output of health check for the service.','0','30d','0','','42932','3s','','','','200','1','0','','0','0','0','0','0','0','1','20a0ec9e059548a192c9c37bd7aeaaed');
INSERT INTO `items` (`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`,`uuid`) values ('42993','18','','10519','Consul: ["{#SERVICE_NAME}"]: Check ["{#SERVICE_CHECK_NAME}"]: Status','consul.service.check.state["{#SERVICE_ID}/{#SERVICE_CHECK_ID}"]','0','7d','365d','0','3','','','','',NULL,'962','','','0','','','','','2',NULL,'Current state of health check for the service.','0','30d','0','','42932','3s','','','','200','1','0','','0','0','0','0','0','0','1','3b67eb4df3dc4d9b9f4ab4c35a592367');
INSERT INTO `items` (`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`,`uuid`) values ('42994','18','','10519','Consul: Autopilot healthy','consul.autopilot.healthy[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,'961','','','0','','','','','2',NULL,'Tracks the overall health of the local server cluster. 1 if all servers are healthy, 0 if one or more are unhealthy.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','440e2a259cd64b918ebfb607961da2c8');
INSERT INTO `items` (`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`,`uuid`) values ('42995','18','','10519','Consul: Raft state: commit time, p50','consul.raft.commit_time.p50[{#SINGLETON}]','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The 50 percentile (median) time it takes to commit a new entry to the raft log on the leader, in milliseconds.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','2e4fd6c5aac84054aef867fc9d8cb3c5');
INSERT INTO `items` (`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`,`uuid`) values ('42996','18','','10519','Consul: Raft state: commit time, p90','consul.raft.commit_time.p90[{#SINGLETON}]','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The 90 percentile time it takes to commit a new entry to the raft log on the leader, in milliseconds.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','9428c07a23364967aef060cf3303b996');
INSERT INTO `items` (`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`,`uuid`) values ('42997','18','','10519','Consul: Raft state: commit, rate','consul.raft.commit_time.rate[{#SINGLETON}]','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of commits a new entry to the Raft log on the leader per second.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','d54c97e8c4204f8c9f79911440f1bd13');
INSERT INTO `items` (`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`,`uuid`) values ('42998','18','','10519','Consul: Raft state: dispatch log, p50','consul.raft.dispatch_log.p50[{#SINGLETON}]','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The 50 percentile (median) time it takes for the leader to write log entries to disk, in milliseconds.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','3c56ebe6e022430e861488873ac6f716');
INSERT INTO `items` (`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`,`uuid`) values ('42999','18','','10519','Consul: Raft state: dispatch log, p90','consul.raft.dispatch_log.p90[{#SINGLETON}]','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The 90 percentile time it takes for the leader to write log entries to disk, in milliseconds.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','fd1e6c33254b467f8355491dc96889eb');
INSERT INTO `items` (`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`,`uuid`) values ('43000','18','','10519','Consul: Raft state: dispatch log, rate','consul.raft.dispatch_log.rate[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times a Raft leader writes a log to disk per second.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','bc73aeda20a543ac957d1531f25fd5a9');
INSERT INTO `items` (`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`,`uuid`) values ('43001','18','','10519','Consul: Raft state: leader last contact, p50','consul.raft.leader_last_contact.p50[{#SINGLETON}]','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The 50 percentile (median) of how long it takes a leader node to communicate with followers during a leader lease check, in milliseconds.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','526a787732224555adde561ec86844fb');
INSERT INTO `items` (`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`,`uuid`) values ('43002','18','','10519','Consul: Raft state: leader last contact, p90','consul.raft.leader_last_contact.p90[{#SINGLETON}]','0','7d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The 90 percentile of how long it takes a leader node to communicate with followers during a leader lease check, in milliseconds.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','1ae3d9e4647b4972b1572946a2794715');
INSERT INTO `items` (`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`,`uuid`) values ('43003','18','','10519','Consul: Raft: apply, rate','consul.raft.apply.rate[{#SINGLETON}]','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','2',NULL,'Incremented whenever a leader first passes a message into the Raft commit process (called an Apply operation).\r\nThis metric describes the arrival rate of new logs into Raft per second.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','428f1d7924634383aabcd5b37f561a41');
INSERT INTO `items` (`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`,`uuid`) values ('43004','18','','10519','Consul: Raft state','consul.raft.state[{#SINGLETON}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current state of Consul agent.','0','30d','0','','42933','3s','','','','200','1','0','','0','0','0','0','0','0','0','25dd098b98124fa8a9518963c8b4e5ce');
INSERT INTO `items` (`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`,`uuid`) values ('43005','18','','10519','Consul: Raft state: candidate','consul.raft.state_candidate[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of initiated leader elections.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','7b030c4eac68464e8c454577ab0f0f53');
INSERT INTO `items` (`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`,`uuid`) values ('43006','18','','10519','Consul: Raft state: leader','consul.raft.state_leader[{#SINGLETON}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Increments when a server becomes a leader.','0','30d','0','','42934','3s','','','','200','1','0','','0','0','0','0','0','0','0','e89157e341d8409c96e31a9d541a7fe8');
INSERT INTO `items` (`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`,`uuid`) values ('43012','18','','10520','Consul: Nodes: critical','consul.nodes_critical','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of agents on current dc with serf health status \'critical\'.','0','30d','0','','43008','3s','','','','200','1','0','','0','0','0','0','0','0','0','31be2fd640a141279d41871df877a42c');
INSERT INTO `items` (`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`,`uuid`) values ('43013','18','','10520','Consul: Nodes: passing','consul.nodes_passing','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of agents on current dc with serf health status \'passing\'.','0','30d','0','','43008','3s','','','','200','1','0','','0','0','0','0','0','0','0','6303f2b128f64bec9760bc3807bb9a34');
INSERT INTO `items` (`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`,`uuid`) values ('43014','18','','10520','Consul: Nodes: total','consul.nodes_total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of nodes on current dc.','0','30d','0','','43010','3s','','','','200','1','0','','0','0','0','0','0','0','0','3eef4079f15d4db8852822ebda6d36fe');
INSERT INTO `items` (`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`,`uuid`) values ('43015','18','','10520','Consul: Nodes: warning','consul.nodes_warning','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of agents on current dc with serf health status \'warning\'.','0','30d','0','','43008','3s','','','','200','1','0','','0','0','0','0','0','0','0','b02337cc9a6b4c34a85d85a231c4e51f');
INSERT INTO `items` (`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`,`uuid`) values ('43016','18','','10520','Consul: Services: total','consul.services_total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of services on current dc.','0','30d','0','','43007','3s','','','','200','1','0','','0','0','0','0','0','0','0','30101e37fce144bdacce0a58b4c9de0e');
INSERT INTO `items` (`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`,`uuid`) values ('43017','18','','10520','Consul cluster nodes discovery','consul.lld_nodes','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','','43010','3s','','','','200','1','0','','0','0','0','0','0','0','0','ea1b655bdf7940f6a431e2e04a8dfcd6');
INSERT INTO `items` (`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`,`uuid`) values ('43018','18','','10520','Consul cluster services discovery','consul.lld_services','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','','43007','3s','','','','200','1','0','','0','0','0','0','0','0','0','d84aadcb4d4d4215826c859de416b739');
INSERT INTO `items` (`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`,`uuid`) values ('43020','18','','10520','Consul: Node ["{#NODE_NAME}"]: Serf Health','consul.serf.health["{#NODE_NAME}"]','0','7d','365d','0','3','','','','',NULL,'964','','','0','','','','','2',NULL,'Node Serf Health Status.','0','30d','0','','43008','3s','','','','200','1','0','','0','0','0','0','0','0','0','ddb71b90bde94760a4a456c15e647917');
INSERT INTO `items` (`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`,`uuid`) values ('43021','18','','10520','Consul: Service ["{#SERVICE_NAME}"]: Nodes critical','consul.service.nodes_critical["{#SERVICE_NAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','43019','3s','','','','200','1','0','','0','0','0','0','0','0','0','70a37e9934fa47f3bd7d553c70179d10');
INSERT INTO `items` (`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`,`uuid`) values ('43022','18','','10520','Consul: Service ["{#SERVICE_NAME}"]: Nodes passing','consul.service.nodes_passing["{#SERVICE_NAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','43019','3s','','','','200','1','0','','0','0','0','0','0','0','0','3807bd01fda5425694eb8e4169eb4078');
INSERT INTO `items` (`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`,`uuid`) values ('43023','18','','10520','Consul: Service ["{#SERVICE_NAME}"]: Nodes warning','consul.service.nodes_warning["{#SERVICE_NAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','43019','3s','','','','200','1','0','','0','0','0','0','0','0','0','8a23dbb1d28c472291c06e0da572424a');
INSERT INTO `items` (`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`,`uuid`) values ('43025','18','','10522','Envoy Proxy: Clusters, active','envoy.cluster_manager.active_clusters','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of currently active (warmed) clusters.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','c5c90eeb0c424cc8ade0b795f2c1bb45');
INSERT INTO `items` (`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`,`uuid`) values ('43026','18','','10522','Envoy Proxy: Listeners, draining','envoy.listener_manager.total_listeners_draining','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of currently draining listeners.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','f01f1236cd1a4661b67633836a61537e');
INSERT INTO `items` (`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`,`uuid`) values ('43027','18','','10522','Envoy Proxy: Connections, total','envoy.server.total_connections','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total connections of both new and old Envoy processes.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','8b2f3702af20404aa1c75498098aff02');
INSERT INTO `items` (`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`,`uuid`) values ('43028','18','','10522','Envoy Proxy: Server state','envoy.server.state','0','7d','365d','0','3','','','','',NULL,'967','','','0','','','','','0',NULL,'State of the server.\r\nLive - (default) Server is live and serving traffic.\r\nDraining - Server is draining listeners in response to external health checks failing.\r\nPre initializing - Server has not yet completed cluster manager initialization.\r\nInitializing - Server is running the cluster manager initialization callbacks (e.g., RDS).','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','701e69bdd408408c8b516e130ed31725');
INSERT INTO `items` (`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`,`uuid`) values ('43029','18','','10522','Envoy Proxy: Connections, parent','envoy.server.parent_connections','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total connections of the old Envoy process on hot restart.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','a13b35ef1e9f4697953a935239b146d9');
INSERT INTO `items` (`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`,`uuid`) values ('43030','18','','10522','Envoy Proxy: Memory physical size','envoy.server.memory_physical_size','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Current estimate of total bytes of the physical memory. New Envoy process physical memory size on hot restart.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','a1842c747e5b44a39746037b3f844f4f');
INSERT INTO `items` (`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`,`uuid`) values ('43031','18','','10522','Envoy Proxy: Memory heap size','envoy.server.memory_heap_size','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Current reserved heap size in bytes. New Envoy process heap size on hot restart.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','05b2fe80bbc54b58b19166c921ba244a');
INSERT INTO `items` (`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`,`uuid`) values ('43032','18','','10522','Envoy Proxy: Memory allocated','envoy.server.memory_allocated','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Current amount of allocated memory in bytes. Total of both new and old Envoy processes on hot restart.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','4b50974e6b7444c8a47da589239247a9');
INSERT INTO `items` (`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`,`uuid`) values ('43033','18','','10522','Envoy Proxy: Server live','envoy.server.live','0','7d','365d','0','3','','','','',NULL,'966','','','0','','','','','0',NULL,'1 if the server is not currently draining, 0 otherwise.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','d8fc1e89c2e14f5e86ea1378fee22a0b');
INSERT INTO `items` (`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`,`uuid`) values ('43034','18','','10522','Envoy Proxy: Certificate expiration, day before','envoy.server.days_until_first_cert_expiring','0','7d','365d','0','3','','!Days','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of days until the next certificate being managed will expire.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','91cbea325a634d8a8fc256782a7e004d');
INSERT INTO `items` (`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`,`uuid`) values ('43035','18','','10522','Envoy Proxy: Server concurrency','envoy.server.concurrency','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of worker threads.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','b8e3b2a5614e4460abe10be443641621');
INSERT INTO `items` (`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`,`uuid`) values ('43036','18','','10522','Envoy Proxy: Listener manager, initialized','envoy.listener_manager.workers_started','0','7d','365d','0','3','','','','',NULL,'965','','','0','','','','','0',NULL,'A boolean (1 if started and 0 otherwise) that indicates whether listeners have been initialized on workers.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','feeab802ed9a44559ded48ea67aba23e');
INSERT INTO `items` (`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`,`uuid`) values ('43037','18','','10522','Envoy Proxy: Listener, warming','envoy.listener_manager.total_listeners_warming','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of currently warming listeners.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','a1a01a7df5364a098fdf96b9de20558d');
INSERT INTO `items` (`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`,`uuid`) values ('43038','18','','10522','Envoy Proxy: Listeners, stopped','envoy.listener_manager.listener_stopped.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total listeners stopped per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','b217c7aaa415495089d079a2f81ead2d');
INSERT INTO `items` (`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`,`uuid`) values ('43039','18','','10522','Envoy Proxy: Listeners, active','envoy.listener_manager.total_listeners_active','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of currently active listeners.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','7ba3e4be89514d53b8ebaad8e9ba58d0');
INSERT INTO `items` (`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`,`uuid`) values ('43040','18','','10522','Envoy Proxy: Clusters, added rate','envoy.cluster_manager.cluster_added.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total clusters added (either via static config or CDS) per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','f994b20217444723b6a1aad5b9a07cd0');
INSERT INTO `items` (`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`,`uuid`) values ('43041','18','','10522','Envoy Proxy: Listeners, create success','envoy.listener_manager.listener_create_success.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total listener objects successfully added to workers per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','c036b55d5aea45f9b0e9c44ea279e2ed');
INSERT INTO `items` (`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`,`uuid`) values ('43042','18','','10522','Envoy Proxy: Listeners, create failure','envoy.listener_manager.listener_create_failure.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total failed listener object additions to workers per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','a259d191fcce48458a9f671a1a2dd6aa');
INSERT INTO `items` (`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`,`uuid`) values ('43043','18','','10522','Envoy Proxy: Listeners, added','envoy.listener_manager.listener_added.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total listeners added (either via static config or LDS) per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','579f47037749460e974433ef6cfe3202');
INSERT INTO `items` (`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`,`uuid`) values ('43044','18','','10522','Envoy Proxy: Filesystem, write failed rate','envoy.filesystem.write_failed.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of times an error occurred during a file write operation per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','ae48575f37494e0e9ccfa2c390f5bf68');
INSERT INTO `items` (`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`,`uuid`) values ('43045','18','','10522','Envoy Proxy: Filesystem, write completed rate','envoy.filesystem.write_completed.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of times a file was written per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','2f400ee513c841f6b7a4fa48834f4a9c');
INSERT INTO `items` (`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`,`uuid`) values ('43046','18','','10522','Envoy Proxy: Filesystem, reopen failed rate','envoy.filesystem.reopen_failed.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of times a file was failed to be opened per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','b3c050dd60d44c0599bc44c9a21621d9');
INSERT INTO `items` (`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`,`uuid`) values ('43047','18','','10522','Envoy Proxy: Filesystem, flushed by timer rate','envoy.filesystem.flushed_by_timer.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of times internal flush buffers are written to a file due to flush timeout per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','cc10052300624df3bf869279dd5e7b49');
INSERT INTO `items` (`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`,`uuid`) values ('43048','18','','10522','Envoy Proxy: Clusters, warming','envoy.cluster_manager.warming_clusters','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of currently warming (not active) clusters.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','9c3503fc553a409ab897f287b882f055');
INSERT INTO `items` (`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`,`uuid`) values ('43049','18','','10522','Envoy Proxy: Clusters, updates rate','envoy.cluster_manager.cluster_updated.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total cluster updates per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','9bb29e3b322e40c3aaa14f2e0911cc68');
INSERT INTO `items` (`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`,`uuid`) values ('43050','18','','10522','Envoy Proxy: Clusters, removed rate','envoy.cluster_manager.cluster_removed.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total clusters removed (via CDS) per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','5c3475b88a044d0bb779a3ee455d2618');
INSERT INTO `items` (`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`,`uuid`) values ('43051','18','','10522','Envoy Proxy: Clusters, modified rate','envoy.cluster_manager.cluster_modified.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total clusters modified (via CDS) per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','0286c5deba924ce8b79e3b1f6c9e033c');
INSERT INTO `items` (`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`,`uuid`) values ('43052','18','','10522','Envoy Proxy: Uptime','envoy.server.uptime','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Current server uptime in seconds.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','ee3c3a89aed34257999e6106fddbc8a4');
INSERT INTO `items` (`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`,`uuid`) values ('43053','18','','10522','Cluster metrics discovery','envoy.lld.cluster','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','e5e43b5959744fdd94f103df8d33f635');
INSERT INTO `items` (`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`,`uuid`) values ('43054','18','','10522','HTTP metrics discovery','envoy.lld.http','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','ea40e02e3b4e40ea989612949a1a8bef');
INSERT INTO `items` (`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`,`uuid`) values ('43055','18','','10522','Listeners metrics discovery','envoy.lld.listeners','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','953541f62c8c461795c2ebed7f4f52cf');
INSERT INTO `items` (`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`,`uuid`) values ('43057','18','','10522','Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Membership, degraded','envoy.cluster.membership_degraded["{#CLUSTER_NAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current cluster degraded total.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','6040df76d67048aaa4217dc14a2db3ed');
INSERT INTO `items` (`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`,`uuid`) values ('43058','18','','10522','Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Requests 4xx, rate','envoy.cluster.upstream_rq_4x.rate["{#CLUSTER_NAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Aggregate HTTP response codes per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','65e956c129e2436896f1a3d46a1f9090');
INSERT INTO `items` (`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`,`uuid`) values ('43059','18','','10522','Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Requests timeout, rate','envoy.cluster.upstream_rq_timeout.rate["{#CLUSTER_NAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current cluster requests that timed out waiting for a response per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','2489b20b43044020a3ace164f6049af6');
INSERT INTO `items` (`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`,`uuid`) values ('43060','18','','10522','Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Requests pending','envoy.cluster.upstream_rq_pending_active["{#CLUSTER_NAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total active requests pending a connection pool connection.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','267c3d01aa614dbdb0f0dcbe3ab2e11b');
INSERT INTO `items` (`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`,`uuid`) values ('43061','18','','10522','Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Requests completed, rate','envoy.cluster.upstream_rq_completed.rate["{#CLUSTER_NAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total upstream requests completed per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','bd1c6766c9e047f1a40f6b1f22f00623');
INSERT INTO `items` (`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`,`uuid`) values ('43062','18','','10522','Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Requests active','envoy.cluster.upstream_rq_active["{#CLUSTER_NAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total active requests.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','a06b43daf8e2493eb61d27cea8baba79');
INSERT INTO `items` (`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`,`uuid`) values ('43063','18','','10522','Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Requests 5xx, rate','envoy.cluster.upstream_rq_5x.rate["{#CLUSTER_NAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Aggregate HTTP response codes per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','a85872e72792460e97d8fd322e0919a1');
INSERT INTO `items` (`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`,`uuid`) values ('43064','18','','10522','Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Requests 2xx, rate','envoy.cluster.upstream_rq_2x.rate["{#CLUSTER_NAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Aggregate HTTP response codes per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','f6724ac1954e4c71a95a01a441d46e5d');
INSERT INTO `items` (`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`,`uuid`) values ('43065','18','','10522','Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Requests 3xx, rate','envoy.cluster.upstream_rq_3x.rate["{#CLUSTER_NAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Aggregate HTTP response codes per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','248d268966ed4999916d77b340f82fa1');
INSERT INTO `items` (`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`,`uuid`) values ('43066','18','','10522','Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Membership, healthy','envoy.cluster.membership_healthy["{#CLUSTER_NAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current cluster healthy total (inclusive of both health checking and outlier detection).','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','0368ecc40bc54a70bae3c81509bad062');
INSERT INTO `items` (`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`,`uuid`) values ('43067','18','','10522','Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Upstream bytes out, rate','envoy.cluster.upstream_cx_tx_bytes_total.rate["{#CLUSTER_NAME}"]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Total sent connection bytes per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','d024405b571946939fa20d495ef6c7d8');
INSERT INTO `items` (`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`,`uuid`) values ('43068','18','','10522','Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Connections, total','envoy.cluster.upstream_cx_total["{#CLUSTER_NAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current cluster total connections.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','d180e76ccb3a456b8100c4669173c0f7');
INSERT INTO `items` (`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`,`uuid`) values ('43069','18','','10522','Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Upstream bytes in, rate','envoy.cluster.upstream_cx_rx_bytes_total.rate["{#CLUSTER_NAME}"]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Total received connection bytes per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','c7106f0670764bc297920a5e62768c55');
INSERT INTO `items` (`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`,`uuid`) values ('43070','18','','10522','Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Connections, active','envoy.cluster.upstream_cx_active["{#CLUSTER_NAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current cluster total active connections.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','b5c802ae97a0449cbbb7f43a2510fd56');
INSERT INTO `items` (`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`,`uuid`) values ('43071','18','','10522','Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Membership, total','envoy.cluster.membership_total["{#CLUSTER_NAME}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current cluster membership total.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','a4cd74b439e3483499e30ffefdb36976');
INSERT INTO `items` (`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`,`uuid`) values ('43072','18','','10522','Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Requests total, rate','envoy.cluster.upstream_rq_total.rate["{#CLUSTER_NAME}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current cluster request total per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','b807e34a608042419d69eae46aa4338c');
INSERT INTO `items` (`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`,`uuid`) values ('43073','18','','10522','Envoy Proxy: HTTP ["{#CONN_MANAGER}"]: Connections, active','envoy.http.downstream_cx_active["{#CONN_MANAGER}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total active connections.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','f4106316b7a44555bd2fcb98ed291a23');
INSERT INTO `items` (`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`,`uuid`) values ('43074','18','','10522','Envoy Proxy: HTTP ["{#CONN_MANAGER}"]: Bytes in, rate','envoy.http.downstream_cx_rx_bytes_total.rate["{#CONN_MANAGER}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total bytes received per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','d5f88107012a4a41a86cb9a76bf8ebc5');
INSERT INTO `items` (`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`,`uuid`) values ('43075','18','','10522','Envoy Proxy: HTTP ["{#CONN_MANAGER}"]: Connections, rate','envoy.http.downstream_cx_total["{#CONN_MANAGER}"]','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','2',NULL,'Total connections per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','cff73e6c597d4103bdf6445b0910a434');
INSERT INTO `items` (`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`,`uuid`) values ('43076','18','','10522','Envoy Proxy: HTTP ["{#CONN_MANAGER}"]: Bytes out, rate','envoy.http.downstream_cx_tx_bytes_tota.rate["{#CONN_MANAGER}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total bytes sent per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','a0bc5e6a55af4fa29869f05c1c0943f6');
INSERT INTO `items` (`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`,`uuid`) values ('43077','18','','10522','Envoy Proxy: HTTP ["{#CONN_MANAGER}"]: Requests, active','envoy.http.downstream_rq_active["{#CONN_MANAGER}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total active requests.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','19ce2a7cc34c4b49ad0117c62241eabf');
INSERT INTO `items` (`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`,`uuid`) values ('43078','18','','10522','Envoy Proxy: HTTP ["{#CONN_MANAGER}"]: Requests timeout, rate','envoy.http.downstream_rq_timeout["{#CONN_MANAGER}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total requests closed due to a timeout on the request path per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','df31ba8ca0db4b2daade17a9a54273cf');
INSERT INTO `items` (`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`,`uuid`) values ('43079','18','','10522','Envoy Proxy: HTTP ["{#CONN_MANAGER}"]: Requests, rate','envoy.http.downstream_rq_total.rate["{#CONN_MANAGER}"]','0','7d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','2',NULL,'Total active connections per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','87cc859a403348a2b7bcfa398b3150c8');
INSERT INTO `items` (`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`,`uuid`) values ('43080','18','','10522','Envoy Proxy: Listener ["{#LISTENER_ADDRESS}"]: Connections, active','envoy.listener.downstream_cx_active["{#LISTENER_ADDRESS}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total active connections.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','3ecae47c57984a6ab5ff854ce2e5415e');
INSERT INTO `items` (`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`,`uuid`) values ('43081','18','','10522','Envoy Proxy: Listener ["{#LISTENER_ADDRESS}"]: Connections, rate','envoy.listener.downstream_cx_total.rate["{#LISTENER_ADDRESS}"]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total connections per second.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','7cc50e3001ac4a8ca433529c52a56e83');
INSERT INTO `items` (`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`,`uuid`) values ('43082','18','','10522','Envoy Proxy: Listener ["{#LISTENER_ADDRESS}"]: Sockets, undergoing','envoy.listener.downstream_pre_cx_active["{#LISTENER_ADDRESS}"]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Sockets currently undergoing listener filter processing.','0','30d','0','','43024','3s','','','','200','1','0','','0','0','0','0','0','0','0','5c155a0d2fd14623ba51670e4083ecee');
INSERT INTO `items` (`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`,`uuid`) values ('43087','18','','10523','CockroachDB: SQL: Bytes received, rate','cockroachdb.sql.bytes.received.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of incoming SQL client network traffic in bytes per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','dafcd171e5eb4a56ac6537cb4ae15071');
INSERT INTO `items` (`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`,`uuid`) values ('43088','18','','10523','CockroachDB: SQL: Bytes sent, rate','cockroachdb.sql.bytes.sent.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of outgoing SQL client network traffic in bytes per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','2795f530365d4f80866926f49a3841df');
INSERT INTO `items` (`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`,`uuid`) values ('43089','18','','10523','CockroachDB: SQL: Schema changes, rate','cockroachdb.sql.schema_changes.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of SQL DDL statements successfully executed per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','655018f6a2b7480a883c08ffd8c3c5e7');
INSERT INTO `items` (`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`,`uuid`) values ('43090','18','','10523','CockroachDB: SQL sessions: Open','cockroachdb.sql.sessions','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of open SQL sessions.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','79ed7dc3660a44cc8f30822e992154b6');
INSERT INTO `items` (`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`,`uuid`) values ('43091','18','','10523','CockroachDB: SQL statements: Active','cockroachdb.sql.statements.active','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of SQL statements currently active.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','d4164a9763b34976ba8f89a49e9aaf25');
INSERT INTO `items` (`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`,`uuid`) values ('43092','18','','10523','CockroachDB: SQL statements: Contention, rate','cockroachdb.sql.statements.contention.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of SQL statements that experienced contention per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','bcae7af870ed48dc919be3dbd63df1ba');
INSERT INTO `items` (`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`,`uuid`) values ('43093','18','','10523','CockroachDB: SQL statements: DELETE, rate','cockroachdb.sql.statements.delete.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A moving average of the number of DELETE statements successfully executed per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','80b08a576e334963a17e37a5c2305214');
INSERT INTO `items` (`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`,`uuid`) values ('43094','18','','10523','CockroachDB: SQL statements: Denials, rate','cockroachdb.sql.statements.denials.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of statements denied per second by a feature flag.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','68532afbcda644f1928203c013335f2a');
INSERT INTO `items` (`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`,`uuid`) values ('43095','18','','10523','CockroachDB: SQL statements: Errors, rate','cockroachdb.sql.statements.errors.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of statements which returned a planning or runtime error per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','dc93958dabdc439f8a7ad9c5a12fddcd');
INSERT INTO `items` (`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`,`uuid`) values ('43096','18','','10523','CockroachDB: SQL statements: Executed, rate','cockroachdb.sql.statements.executed.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of SQL queries executed per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','3c9fb90492e44789ba9a899d03546b6d');
INSERT INTO `items` (`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`,`uuid`) values ('43097','18','','10523','CockroachDB: SQL statements: Active flows distributed, rate','cockroachdb.sql.statements.flows.active.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of distributed SQL flows currently active per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','ae83868ea1194089a65b9c3bfb81ef27');
INSERT INTO `items` (`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`,`uuid`) values ('43098','18','','10523','CockroachDB: Network: Bytes sent, rate','cockroachdb.network.bytes.sent.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes sent per second on all network interfaces since this process started.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','9b04fac1a84e40aa833366fda679a3e3');
INSERT INTO `items` (`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`,`uuid`) values ('43099','18','','10523','CockroachDB: SQL statements: INSERT, rate','cockroachdb.sql.statements.insert.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A moving average of the number of INSERT statements successfully executed per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','b9c72429c3264119af27e3b4d1c7486a');
INSERT INTO `items` (`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`,`uuid`) values ('43100','18','','10523','CockroachDB: SQL statements: SELECT, rate','cockroachdb.sql.statements.select.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A moving average of the number of SELECT statements successfully executed per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','d6fc464f4e784569911880f52020d08d');
INSERT INTO `items` (`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`,`uuid`) values ('43101','18','','10523','CockroachDB: SQL statements: UPDATE, rate','cockroachdb.sql.statements.update.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A moving average of the number of UPDATE statements successfully executed per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','8832cd69551a4ad084c283fb076a17b6');
INSERT INTO `items` (`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`,`uuid`) values ('43102','18','','10523','CockroachDB: SQL transactions: Aborted, rate','cockroachdb.sql.transactions.aborted.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of SQL transaction abort errors per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','6e2f06b2b71f447aae06940b205e22bf');
INSERT INTO `items` (`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`,`uuid`) values ('43103','18','','10523','CockroachDB: SQL transactions: Committed, rate','cockroachdb.sql.transactions.committed.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of SQL transaction COMMIT statements successfully executed per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','d32b3f22158f4091926ebf9746439da3');
INSERT INTO `items` (`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`,`uuid`) values ('43104','18','','10523','CockroachDB: SQL transactions: Initiated, rate','cockroachdb.sql.transactions.initiated.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of SQL transaction BEGIN statements successfully executed per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','ca529d30b36e4bf591c8b5e313f9bbc0');
INSERT INTO `items` (`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`,`uuid`) values ('43105','18','','10523','CockroachDB: SQL transactions: Open','cockroachdb.sql.transactions.open','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of currently open SQL transactions.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','6490aac99d654eebae14cedb935c8d9f');
INSERT INTO `items` (`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`,`uuid`) values ('43106','18','','10523','CockroachDB: SQL transactions: Rolled back, rate','cockroachdb.sql.transactions.rollbacks.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of SQL transaction ROLLBACK statements successfully executed per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','07274667c22d4e52b50ead17c864ae36');
INSERT INTO `items` (`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`,`uuid`) values ('43107','18','','10523','CockroachDB: Time series: Sample errors, rate','cockroachdb.ts.samples.errors.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of errors encountered while attempting to write metrics to disk, per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','5b96333392ac4e678204d048b4940135');
INSERT INTO `items` (`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`,`uuid`) values ('43108','18','','10523','CockroachDB: Time series: Samples written, rate','cockroachdb.ts.samples.written.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of successfully written metric samples per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','444fbc4df9c64e92bd3f41022539a940');
INSERT INTO `items` (`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`,`uuid`) values ('43109','18','','10523','CockroachDB: Uptime','cockroachdb.uptime','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Process uptime.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','b200e1f665ad425394e631b2844a1fdb');
INSERT INTO `items` (`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`,`uuid`) values ('43110','18','','10523','CockroachDB: Version','cockroachdb.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Build information.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','d588fc919b364889abd98537dfc80575');
INSERT INTO `items` (`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`,`uuid`) values ('43111','18','','10523','CockroachDB: Slow requests: DistSender RPCs','cockroachdb.slow_requests.rpc','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of RPCs stuck or retrying for a long time.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','717ef9bbc00c46a09b28811910c4163a');
INSERT INTO `items` (`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`,`uuid`) values ('43112','18','','10523','CockroachDB: CA certificate expiration date','cockroachdb.cert.expire_date.ca','0','7d','0','0','0','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'CA certificate expires at that date.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','90f7e9b6d22e4c30990f06f0320056d3');
INSERT INTO `items` (`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`,`uuid`) values ('43113','18','','10523','CockroachDB: Network: Bytes received, rate','cockroachdb.network.bytes.received.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes received per second on all network interfaces since this process started.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','aee505389afb4fb0a4a7d8b8dd58fe76');
INSERT INTO `items` (`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`,`uuid`) values ('43114','18','','10523','CockroachDB: Disk: Writes, rate','cockroachdb.disk.write.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes written to all disks per second since this process started.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','327d62286a5c40d49690b89b12350c31');
INSERT INTO `items` (`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`,`uuid`) values ('43115','18','','10523','CockroachDB: Clock offset','cockroachdb.clock.offset','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Mean clock offset of the node against the rest of the cluster.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','156d0c66c25a4938b87bd4527580cfd4');
INSERT INTO `items` (`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`,`uuid`) values ('43116','18','','10523','CockroachDB: CPU: System time','cockroachdb.cpu.system_time','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'System CPU time.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','7b6ef56741c14222bef3d40af3bb6b44');
INSERT INTO `items` (`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`,`uuid`) values ('43117','18','','10523','CockroachDB: CPU: User time','cockroachdb.cpu.user_time','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'User CPU time.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','42008c218c0b4049a4e94daf40754dd7');
INSERT INTO `items` (`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`,`uuid`) values ('43118','18','','10523','CockroachDB: CPU: Utilization','cockroachdb.cpu.util','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization in %.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','b13dceebd399415f868c3f1ce68ee46a');
INSERT INTO `items` (`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`,`uuid`) values ('43119','18','','10523','CockroachDB: File descriptors: Limit','cockroachdb.descriptors.limit','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Open file descriptors soft limit of the process.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','e186df881d6e40ac966e23341b2dbd36');
INSERT INTO `items` (`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`,`uuid`) values ('43120','18','','10523','CockroachDB: File descriptors: Open','cockroachdb.descriptors.open','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of open file descriptors.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','e21fd3d697294d0f93b504ba57e7552e');
INSERT INTO `items` (`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`,`uuid`) values ('43121','18','','10523','CockroachDB: Disk: IOPS in progress, rate','cockroachdb.disk.iops.in_progress.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of disk IO operations currently in progress on this host.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','4525de4ee6994c34af6ea3444295bd58');
INSERT INTO `items` (`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`,`uuid`) values ('43122','18','','10523','CockroachDB: Disk: Read IOPS, rate','cockroachdb.disk.iops.read.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of disk read operations per second across all disks since this process started.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','1240655e000643c98694a5efbb0582d0');
INSERT INTO `items` (`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`,`uuid`) values ('43123','18','','10523','CockroachDB: Disk: Write IOPS, rate','cockroachdb.disk.iops.write.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Disk write operations per second across all disks since this process started.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','cfa381c7317d479ea5e24b0a3ac9de6a');
INSERT INTO `items` (`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`,`uuid`) values ('43124','18','','10523','CockroachDB: Disk: Reads, rate','cockroachdb.disk.read.rate','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes read from all disks per second since this process started','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','e226b55a125d4360b853690dbd0d9b63');
INSERT INTO `items` (`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`,`uuid`) values ('43125','18','','10523','CockroachDB: GC: Pause time','cockroachdb.gc.pause_time','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of processor time used by Go\'s garbage collector across all nodes. During garbage collection, application code execution is paused.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','8092c82f81824a168328a438d85a0a93');
INSERT INTO `items` (`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`,`uuid`) values ('43126','18','','10523','CockroachDB: Node certificate expiration date','cockroachdb.cert.expire_date.node','0','7d','0','0','0','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'Node certificate expires at that date.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','0328c188d5954ae48dcc0649c9c01f52');
INSERT INTO `items` (`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`,`uuid`) values ('43127','18','','10523','CockroachDB: GC: Runs, rate','cockroachdb.gc.runs.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times that Go\'s garbage collector was invoked per second across all nodes.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','72298c0f0a00460e85562d13e3baf4b0');
INSERT INTO `items` (`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`,`uuid`) values ('43128','18','','10523','CockroachDB: Go: Goroutines count','cockroachdb.go.goroutines.count','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Current number of Goroutines. This count should rise and fall based on load.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','a36bcb9217054c1db2e67c8533842d01');
INSERT INTO `items` (`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`,`uuid`) values ('43129','18','','10523','CockroachDB: Liveness heartbeats, rate','cockroachdb.heartbeaths.success.rate','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of successful node liveness heartbeats per second from this node.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','9dcb023ceacb4023897af11b96592d6b');
INSERT INTO `items` (`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`,`uuid`) values ('43130','18','','10523','CockroachDB: KV transactions: Aborted, rate','cockroachdb.kv.transactions.aborted.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of aborted KV transactions per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','1a01d2c75d934f489e171a3a147a2078');
INSERT INTO `items` (`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`,`uuid`) values ('43131','18','','10523','CockroachDB: KV transactions: Committed, rate','cockroachdb.kv.transactions.committed.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of KV transactions (including 1PC) committed per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','be9c377ac5a64579a3b849bbd28e4dc7');
INSERT INTO `items` (`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`,`uuid`) values ('43132','18','','10523','CockroachDB: Live nodes count','cockroachdb.live_count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of live nodes in the cluster (will be 0 if this node is not itself live).','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','872eaa89c9e34c358f60b845316a22c0');
INSERT INTO `items` (`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`,`uuid`) values ('43133','18','','10523','CockroachDB: Memory: Allocated by Cgo','cockroachdb.memory.cgo.allocated','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Current bytes of memory allocated by the C layer.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','5a8bf48e85b845bf83346491ccf5cfac');
INSERT INTO `items` (`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`,`uuid`) values ('43134','18','','10523','CockroachDB: Memory: Managed by Cgo','cockroachdb.memory.cgo.managed','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total bytes of memory managed by the C layer.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','07dc780b07ee4a34abd9bc658416f507');
INSERT INTO `items` (`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`,`uuid`) values ('43135','18','','10523','CockroachDB: Memory: Allocated by Go','cockroachdb.memory.go.allocated','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Current bytes of memory allocated by the Go layer.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','af45fdeea2ff4b7ba2d488b704966f16');
INSERT INTO `items` (`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`,`uuid`) values ('43136','18','','10523','CockroachDB: Memory: Managed by Go','cockroachdb.memory.go.managed','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total bytes of memory managed by the Go layer.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','74669e09ce86441d877de519c86b3f83');
INSERT INTO `items` (`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`,`uuid`) values ('43137','18','','10523','CockroachDB: Memory: Allocated by SQL','cockroachdb.memory.sql','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Current SQL statement memory usage for root.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','14524b3f8c5f4d509d15063af19c9569');
INSERT INTO `items` (`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`,`uuid`) values ('43138','18','','10523','CockroachDB: Memory: Total usage','cockroachdb.memory.total','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident set size (RSS) of memory in use by the node.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','c10b66dd872145528540e90ad3198b81');
INSERT INTO `items` (`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`,`uuid`) values ('43139','18','','10523','Storage metrics discovery','cockroachdb.store.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover per store metrics.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','c201ddd6c35c4d67a05b9a99952f54f2');
INSERT INTO `items` (`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`,`uuid`) values ('43142','18','','10523','CockroachDB: Storage [{#STORE}]: Queue processing failures: Consistency, rate','cockroachdb.queue.processing_failures.consistency.[{#STORE},rate]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of replicas which failed processing in the consistency checker queue per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','a12e4937d2c44eacada535774e74653a');
INSERT INTO `items` (`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`,`uuid`) values ('43143','18','','10523','CockroachDB: Storage [{#STORE}]: RocksDB cache hits, rate','cockroachdb.rocksdb.cache.hits.[{#STORE},rate]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of block cache hits per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','eb6202583eb24ac28b60a8d5f24c1ccf');
INSERT INTO `items` (`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`,`uuid`) values ('43144','18','','10523','CockroachDB: Storage [{#STORE}]: Capacity total','cockroachdb.storage.capacity.[{#STORE},total]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total storage capacity. This value may be explicitly set using --store. If a store size has not been set, this metric displays the actual disk capacity.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','35ce626304fb4d39bd382161cb052346');
INSERT INTO `items` (`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`,`uuid`) values ('43145','18','','10523','CockroachDB: Storage [{#STORE}]: Capacity available','cockroachdb.storage.capacity.[{#STORE},available]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Available storage capacity.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','01c02c5a9c174cd2b958634da07824e5');
INSERT INTO `items` (`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`,`uuid`) values ('43146','18','','10523','CockroachDB: Storage [{#STORE}]: Bytes: System','cockroachdb.storage.bytes.[{#STORE},system]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of physical bytes stored in system key-value pairs.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','58d6f4d3c9ff41cab05697e7c59cf8e2');
INSERT INTO `items` (`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`,`uuid`) values ('43147','18','','10523','CockroachDB: Storage [{#STORE}]: Bytes: Logical','cockroachdb.storage.bytes.[{#STORE},logical]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of logical bytes stored in key-value pairs on this node. This includes historical and deleted data.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','232970f8bf12412e8a6bd96978a7ad5f');
INSERT INTO `items` (`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`,`uuid`) values ('43148','18','','10523','CockroachDB: Storage [{#STORE}]: Bytes: Live','cockroachdb.storage.bytes.[{#STORE},live]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of logical bytes stored in live key-value pairs on this node. Live data excludes historical and deleted data.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','bbf0f281f3aa4964829ed2213db5dfc7');
INSERT INTO `items` (`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`,`uuid`) values ('43149','18','','10523','CockroachDB: Storage [{#STORE}]: Slow requests: Raft proposals','cockroachdb.slow_requests.[{#STORE},raft_proposals]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requests that have been stuck for a long time in raft.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','11c9e0dea4ec48a69ff3961aa6d1f910');
INSERT INTO `items` (`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`,`uuid`) values ('43150','18','','10523','CockroachDB: Storage [{#STORE}]: Slow requests: Lease acquisitions','cockroachdb.slow_requests.[{#STORE},lease_acquisitions]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requests that have been stuck for a long time acquiring a lease.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','0cc9c428567a47c6adb41d137965a362');
INSERT INTO `items` (`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`,`uuid`) values ('43151','18','','10523','CockroachDB: Storage [{#STORE}]: Slow requests: Latch acquisitions','cockroachdb.slow_requests.[{#STORE},latch_acquisitions]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requests that have been stuck for a long time acquiring latches.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','6e826e48da5844468ba8d14ae0f1acc4');
INSERT INTO `items` (`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`,`uuid`) values ('43152','18','','10523','CockroachDB: Storage [{#STORE}]: RocksDB SSTables','cockroachdb.rocksdb.[{#STORE},sstables]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of SSTables in use.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','edc1e5548d9e4d629b44b067ffc666b9');
INSERT INTO `items` (`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`,`uuid`) values ('43153','18','','10523','CockroachDB: Storage [{#STORE}]: RocksDB read amplification','cockroachdb.rocksdb.[{#STORE},read_amp]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The average number of real read operations executed per logical read operation.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','f4175e8984d14ad89c0bd1fce5b37372');
INSERT INTO `items` (`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`,`uuid`) values ('43154','18','','10523','CockroachDB: Storage [{#STORE}]: RocksDB cache misses, rate','cockroachdb.rocksdb.cache.misses.[{#STORE},rate]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of block cache misses per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','278d4cbcaa844f1281dd029da54300e4');
INSERT INTO `items` (`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`,`uuid`) values ('43155','18','','10523','CockroachDB: Storage [{#STORE}]: Replication: Lease holders','cockroachdb.replication.[{#STORE},lease_holders]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of lease holders.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','87f949f768b54ba1b648a04d86f4c4da');
INSERT INTO `items` (`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`,`uuid`) values ('43156','18','','10523','CockroachDB: Storage [{#STORE}]: Queue processing failures: GC, rate','cockroachdb.queue.processing_failures.gc.[{#STORE},rate]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of replicas which failed processing in the GC queue per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','5d328a66855d4cbba099713befd4d240');
INSERT INTO `items` (`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`,`uuid`) values ('43157','18','','10523','CockroachDB: Storage [{#STORE}]: Replication: Replicas quiesced','cockroachdb.replication.replicas.[{#STORE},quiesced]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of quiesced replicas.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','089c354ee1c547808bbf8655d16d1a06');
INSERT INTO `items` (`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`,`uuid`) values ('43158','18','','10523','CockroachDB: Storage [{#STORE}]: Replication: Replicas','cockroachdb.replication.replicas.[{#STORE},count]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of replicas.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','191985a08c554160bc371f5fca638336');
INSERT INTO `items` (`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`,`uuid`) values ('43159','18','','10523','CockroachDB: Storage [{#STORE}]: Rebalancing: Average writes, rate','cockroachdb.rebalancing.writes.average.[{#STORE},rate]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of keys written (i.e. applied by raft) per second to the store, averaged over a large time period as used in rebalancing decisions.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','b5c10de1a784458f9df54813cc10c32b');
INSERT INTO `items` (`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`,`uuid`) values ('43160','18','','10523','CockroachDB: Storage [{#STORE}]: Rebalancing: Average queries, rate','cockroachdb.rebalancing.queries.average.[{#STORE},rate]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of kv-level requests received per second by the store, averaged over a large time period as used in rebalancing decisions.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','d0b45b5a00d64c39bce2117fdb35d373');
INSERT INTO `items` (`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`,`uuid`) values ('43161','18','','10523','CockroachDB: Storage [{#STORE}]: Ranges underreplicated','cockroachdb.ranges.[{#STORE},underreplicated]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of ranges with fewer live replicas than the replication target.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','beea6adf48df454fa6628d44455ca52f');
INSERT INTO `items` (`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`,`uuid`) values ('43162','18','','10523','CockroachDB: Storage [{#STORE}]: Ranges unavailable','cockroachdb.ranges.[{#STORE},unavailable]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of ranges with fewer live replicas than needed for quorum.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','63e70400900a4b5caa8e89a18c83ebd7');
INSERT INTO `items` (`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`,`uuid`) values ('43163','18','','10523','CockroachDB: Storage [{#STORE}]: Ranges count','cockroachdb.ranges.[{#STORE},count]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of ranges.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','4ed616f13c9d4669879aa8bdad35a06a');
INSERT INTO `items` (`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`,`uuid`) values ('43164','18','','10523','CockroachDB: Storage [{#STORE}]: Queue processing failures: Time series maintenance, rate','cockroachdb.queue.processing_failures.tsmaintenance.[{#STORE},rate]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of replicas which failed processing in the time series maintenance queue per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','ceb47605bc364044993e59430f37a07c');
INSERT INTO `items` (`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`,`uuid`) values ('43165','18','','10523','CockroachDB: Storage [{#STORE}]: Queue processing failures: Split, rate','cockroachdb.queue.processing_failures.split.[{#STORE},rate]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of replicas which failed processing in the split queue per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','40e94d8e2cc54c7b9c0a6c4d7c8dc308');
INSERT INTO `items` (`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`,`uuid`) values ('43166','18','','10523','CockroachDB: Storage [{#STORE}]: Queue processing failures: Replicate, rate','cockroachdb.queue.processing_failures.replicate.[{#STORE},rate]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of replicas which failed processing in the replicate queue per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','604df422fb084fba8480758e30fc81f3');
INSERT INTO `items` (`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`,`uuid`) values ('43167','18','','10523','CockroachDB: Storage [{#STORE}]: Queue processing failures: Raft snapshot, rate','cockroachdb.queue.processing_failures.raftsnapshot.[{#STORE},rate]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of replicas which failed processing in the Raft repair queue per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','2369ad2e98c84d2a83b64f3b1fce826e');
INSERT INTO `items` (`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`,`uuid`) values ('43168','18','','10523','CockroachDB: Storage [{#STORE}]: Queue processing failures: Raft log, rate','cockroachdb.queue.processing_failures.raftlog.[{#STORE},rate]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of replicas which failed processing in the Raft log queue per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','eabbf198e158428aaf9b15f491dd0895');
INSERT INTO `items` (`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`,`uuid`) values ('43169','18','','10523','CockroachDB: Storage [{#STORE}]: Queue processing failures: Replica GC, rate','cockroachdb.queue.processing_failures.gc_replica.[{#STORE},rate]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of replicas which failed processing in the replica GC queue per second.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','b71cc221443b42888d64dea02e75d3f9');
INSERT INTO `items` (`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`,`uuid`) values ('43170','18','','10523','CockroachDB: Storage [{#STORE}]: Capacity used','cockroachdb.storage.capacity.[{#STORE},used]','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk space in use by CockroachDB data on this node. This excludes the Cockroach binary, operating system, and other system files.','0','30d','0','','43086','3s','','','','200','1','0','','0','0','0','0','0','0','0','b6db680d16bc41408d13f7275c603fca');
INSERT INTO `items` (`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`,`uuid`) values ('43173','18','','10524','Get method errors','hpe.msa.data.errors','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of method errors from API requests.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','51d0ae1b4663471d868c27ccd2fb4fed');
INSERT INTO `items` (`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`,`uuid`) values ('43174','18','','10524','System contact','hpe.msa.system.contact','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The name of the person who administers the system.','23','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','802692ec1429407a8bbb55e338959c0b');
INSERT INTO `items` (`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`,`uuid`) values ('43175','18','','10524','System health','hpe.msa.system.health','0','7d','365d','0','3','','','','',NULL,'978','','','0','','','','','0',NULL,'System health status.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','4516edee03084515bcf139c22abc4c7c');
INSERT INTO `items` (`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`,`uuid`) values ('43176','18','','10524','System information','hpe.msa.system.info','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A brief description of what the system is used for or how it is configured.','27','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','6b82f7545a334f9cad752bd18f8886bc');
INSERT INTO `items` (`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`,`uuid`) values ('43177','18','','10524','System location','hpe.msa.system.location','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The location of the system.','24','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','c5f082947e844adbbcf2982ad9c0c76e');
INSERT INTO `items` (`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`,`uuid`) values ('43178','18','','10524','System name','hpe.msa.system.name','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The name of the storage system.','3','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','419165bfe80f46f7af1c5d6ab46c1f14');
INSERT INTO `items` (`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`,`uuid`) values ('43179','18','','10524','Product ID','hpe.msa.system.product_id','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The product model identifier.','29','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','79c87a81895f46658f2e902cf7166860');
INSERT INTO `items` (`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`,`uuid`) values ('43180','18','','10524','Vendor name','hpe.msa.system.vendor_name','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The vendor name.','31','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','947bb21483e747c9ad13b995b79289c0');
INSERT INTO `items` (`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`,`uuid`) values ('43181','18','','10524','Controllers discovery','hpe.msa.controllers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover controllers.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','66eabcbe564644dea3427afcbf76b87c');
INSERT INTO `items` (`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`,`uuid`) values ('43182','18','','10524','Disks discovery','hpe.msa.disks.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover disks.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','16b9a9b6da11463d865cb2b59f77f376');
INSERT INTO `items` (`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`,`uuid`) values ('43183','18','','10524','Disk groups discovery','hpe.msa.disks.groups.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover disk groups.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','dd952ff876134376baef061dc260884c');
INSERT INTO `items` (`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`,`uuid`) values ('43184','18','','10524','Enclosures discovery','hpe.msa.enclosures.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover enclosures.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','c6713507122242988dc9fae6e77bdff6');
INSERT INTO `items` (`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`,`uuid`) values ('43185','18','','10524','Fans discovery','hpe.msa.fans.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover fans.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','6900c1efa2b3456ead4ae5e5a033700e');
INSERT INTO `items` (`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`,`uuid`) values ('43186','18','','10524','FRU discovery','hpe.msa.frus.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover FRU.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','ec7d856fd690401888f93f8d9c135828');
INSERT INTO `items` (`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`,`uuid`) values ('43187','18','','10524','Pools discovery','hpe.msa.pools.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover pools.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','082c1cfb851548928911b9ab69f6f75e');
INSERT INTO `items` (`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`,`uuid`) values ('43188','18','','10524','Ports discovery','hpe.msa.ports.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover ports.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','09754bd16c674ff08fad52f060035961');
INSERT INTO `items` (`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`,`uuid`) values ('43189','18','','10524','Power supplies discovery','hpe.msa.power_supplies.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover power supplies.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','2cf7945eea95414a88ce572f4c075bb1');
INSERT INTO `items` (`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`,`uuid`) values ('43190','18','','10524','Volumes discovery','hpe.msa.volumes.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover volumes.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','faae0d9be7ea4531a584a52002317cc9');
INSERT INTO `items` (`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`,`uuid`) values ('43193','18','','10524','Controller [{#CONTROLLER.ID}]: Cache: Read hits, rate','hpe.msa.controllers.cache.read.hits["{#CONTROLLER.ID}",rate]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block to be read is found in cache per second.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','53b0ea51add74c629814c881ac824d1b');
INSERT INTO `items` (`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`,`uuid`) values ('43194','18','','10524','Controller [{#CONTROLLER.ID}]: IOPS, write rate','hpe.msa.controllers.iops.write["{#CONTROLLER.ID}",rate]','0','7d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of write operations per second.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','6444038b72294992ab17c126ccbe7251');
INSERT INTO `items` (`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`,`uuid`) values ('43195','18','','10524','Controller [{#CONTROLLER.ID}]: Status','hpe.msa.controllers["{#CONTROLLER.ID}",status]','0','7d','365d','0','3','','','','',NULL,'971','','','0','','','','','2',NULL,'Storage controller status.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','a2be1b4b814d45b18bb4e313818511d6');
INSERT INTO `items` (`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`,`uuid`) values ('43196','18','','10524','Controller [{#CONTROLLER.ID}]: Serial number','hpe.msa.controllers["{#CONTROLLER.ID}",serial_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Storage controller serial number.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','c073adb77eb84cf79e1e1693d9378d47');
INSERT INTO `items` (`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`,`uuid`) values ('43197','18','','10524','Controller [{#CONTROLLER.ID}]: Pools','hpe.msa.controllers["{#CONTROLLER.ID}",pools]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of pools in the storage system.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','e4930566c3844f9487e343c203f3eb96');
INSERT INTO `items` (`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`,`uuid`) values ('43198','18','','10524','Controller [{#CONTROLLER.ID}]: Part number','hpe.msa.controllers["{#CONTROLLER.ID}",part_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Part number of the controller.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','33e754d5acb84b7c86b2e23b122e6eed');
INSERT INTO `items` (`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`,`uuid`) values ('43199','18','','10524','Controller [{#CONTROLLER.ID}]: IP address','hpe.msa.controllers["{#CONTROLLER.ID}",ip_address]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Controller network port IP address.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','5f00490ddd22458b93add06ed24a9f96');
INSERT INTO `items` (`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`,`uuid`) values ('43200','18','','10524','Controller [{#CONTROLLER.ID}]: Health','hpe.msa.controllers["{#CONTROLLER.ID}",health]','0','7d','365d','0','3','','','','',NULL,'978','','','0','','','','','2',NULL,'Controller health status.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','6d2a84b6b1804082ab4ef3451a52b552');
INSERT INTO `items` (`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`,`uuid`) values ('43201','18','','10524','Controller [{#CONTROLLER.ID}]: Firmware version','hpe.msa.controllers["{#CONTROLLER.ID}",firmware]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Storage controller firmware version.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','5a987843b14c4d25a1fde4429015f773');
INSERT INTO `items` (`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`,`uuid`) values ('43202','18','','10524','Controller [{#CONTROLLER.ID}]: Disk groups','hpe.msa.controllers["{#CONTROLLER.ID}",disk_groups]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of disk groups in the storage system.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','94c2c9bfd2414875a53fbe94f6230666');
INSERT INTO `items` (`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`,`uuid`) values ('43203','18','','10524','Controller [{#CONTROLLER.ID}]: Disks','hpe.msa.controllers["{#CONTROLLER.ID}",disks]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of disks in the storage system.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','5940d26205924a13ba351f5d56192fcb');
INSERT INTO `items` (`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`,`uuid`) values ('43204','18','','10524','Controller [{#CONTROLLER.ID}]: IOPS, total rate','hpe.msa.controllers.iops.total["{#CONTROLLER.ID}",rate]','0','7d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Input/output operations per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','8bf0601293a64628be08d16391d1e11b');
INSERT INTO `items` (`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`,`uuid`) values ('43205','18','','10524','Controller [{#CONTROLLER.ID}]: Cache: Read misses, rate','hpe.msa.controllers.cache.read.misses["{#CONTROLLER.ID}",rate]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block to be read is not found in cache per second.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','23ed270bc823484cb514600bf23b2aa5');
INSERT INTO `items` (`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`,`uuid`) values ('43206','18','','10524','Controller [{#CONTROLLER.ID}]: IOPS, read rate','hpe.msa.controllers.iops.read["{#CONTROLLER.ID}",rate]','0','7d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of read operations per second.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','3d7f1a97cd8249efbabc2402006c1cc2');
INSERT INTO `items` (`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`,`uuid`) values ('43207','18','','10524','Controller [{#CONTROLLER.ID}]: Data transfer rate: Writes','hpe.msa.controllers.data_transfer.writes["{#CONTROLLER.ID}",rate]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data write rate, in bytes per second.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','93b508f92de04dfbbfe7099bf37796ce');
INSERT INTO `items` (`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`,`uuid`) values ('43208','18','','10524','Controller [{#CONTROLLER.ID}]: Data transfer rate: Total','hpe.msa.controllers.data_transfer.total["{#CONTROLLER.ID}",rate]','0','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data transfer rate, in bytes per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','7c34d1c4fd784fb695d9fc7c5a686329');
INSERT INTO `items` (`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`,`uuid`) values ('43209','18','','10524','Controller [{#CONTROLLER.ID}]: Data transfer rate: Reads','hpe.msa.controllers.data_transfer.reads["{#CONTROLLER.ID}",rate]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data read rate, in bytes per second.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','c87dc81f4a3447f3962a69a8b0d79769');
INSERT INTO `items` (`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`,`uuid`) values ('43210','18','','10524','Controller [{#CONTROLLER.ID}]: CPU utilization','hpe.msa.controllers.cpu["{#CONTROLLER.ID}",util]','0','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Percentage of time the CPU is busy, from 0 to 100.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','cfff8c77d99440d18794e1c6dbf738ad');
INSERT INTO `items` (`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`,`uuid`) values ('43211','18','','10524','Controller [{#CONTROLLER.ID}]: Cache memory size','hpe.msa.controllers.cache["{#CONTROLLER.ID}",total]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Controller cache memory size.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','38a6ca0447d548c593d08acf377250cb');
INSERT INTO `items` (`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`,`uuid`) values ('43212','18','','10524','Controller [{#CONTROLLER.ID}]: Cache: Write utilization','hpe.msa.controllers.cache.write["{#CONTROLLER.ID}",util]','0','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Percentage of write cache in use, from 0 to 100.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','fa9400f2dcba40f4b57dfcef6f7856a0');
INSERT INTO `items` (`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`,`uuid`) values ('43213','18','','10524','Controller [{#CONTROLLER.ID}]: Cache: Write misses, rate','hpe.msa.controllers.cache.write.misses["{#CONTROLLER.ID}",rate]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block written to is not found in cache per second.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','bafcf98cee9c4a8da0aea7b39a5242d4');
INSERT INTO `items` (`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`,`uuid`) values ('43214','18','','10524','Controller [{#CONTROLLER.ID}]: Cache: Write hits, rate','hpe.msa.controllers.cache.write.hits["{#CONTROLLER.ID}",rate]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block written to is found in cache per second.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','71a92c76ae7740cd9e58ea337f4a75e3');
INSERT INTO `items` (`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`,`uuid`) values ('43215','18','','10524','Controller [{#CONTROLLER.ID}]: Uptime','hpe.msa.controllers["{#CONTROLLER.ID}",uptime]','0','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of seconds since the controller was restarted.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','df2bede9ea85483581a35a45a15d4de4');
INSERT INTO `items` (`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`,`uuid`) values ('43216','18','','10524','Disk [{#DURABLE.ID}]: Space total','hpe.msa.disks.space["{#DURABLE.ID}",total]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total size of the disk.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','60418ff95d2b4ac698fe041647656005');
INSERT INTO `items` (`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`,`uuid`) values ('43217','18','','10524','Disk [{#DURABLE.ID}]: SSD life left','hpe.msa.disks.ssd["{#DURABLE.ID}",life_left]','0','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of disk life remaining.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','1','579f29536b0740b9887cbb0863bd3e45');
INSERT INTO `items` (`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`,`uuid`) values ('43218','18','','10524','Disk [{#DURABLE.ID}]: Disk group','hpe.msa.disks["{#DURABLE.ID}",group]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'If the disk is in a disk group, the disk group name.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','a430bd06d24447649687dc9b9c3dee2c');
INSERT INTO `items` (`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`,`uuid`) values ('43219','18','','10524','Disk [{#DURABLE.ID}]: Health','hpe.msa.disks["{#DURABLE.ID}",health]','0','7d','365d','0','3','','','','',NULL,'978','','','0','','','','','2',NULL,'Disk health status.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','17f4069e731b45c7a9d9bfc5786a07fc');
INSERT INTO `items` (`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`,`uuid`) values ('43220','18','','10524','Disk [{#DURABLE.ID}]: Model','hpe.msa.disks["{#DURABLE.ID}",model]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk model.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','689e29b31fd0490fb26920c04d094136');
INSERT INTO `items` (`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`,`uuid`) values ('43221','18','','10524','Disk [{#DURABLE.ID}]: Storage pool','hpe.msa.disks["{#DURABLE.ID}",pool]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'If the disk is in a pool, the pool name.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','20d37295acce41acac8ba77962130774');
INSERT INTO `items` (`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`,`uuid`) values ('43222','18','','10524','Disk [{#DURABLE.ID}]: Serial number','hpe.msa.disks["{#DURABLE.ID}",serial_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk serial number.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','7c4da69f28824444960e6783fe090526');
INSERT INTO `items` (`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`,`uuid`) values ('43223','18','','10524','Disk [{#DURABLE.ID}]: Temperature','hpe.msa.disks["{#DURABLE.ID}",temperature]','0','7d','365d','0','3','','!°C','','',NULL,NULL,'','','0','','','','','2',NULL,'Temperature of the disk.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','770749eafc79429185e7127d95b1ff74');
INSERT INTO `items` (`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`,`uuid`) values ('43224','18','','10524','Disk [{#DURABLE.ID}]: Temperature status','hpe.msa.disks["{#DURABLE.ID}",temperature_status]','0','7d','365d','0','3','','','','',NULL,'973','','','0','','','','','2',NULL,'Disk temperature status.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','5ba57b2f4d014b2a81c546e8f74a133e');
INSERT INTO `items` (`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`,`uuid`) values ('43225','18','','10524','Disk [{#DURABLE.ID}]: Type','hpe.msa.disks["{#DURABLE.ID}",type]','0','7d','365d','0','3','','','','',NULL,'974','','','0','','','','','2',NULL,'Disk type:\r\nSAS: Enterprise SAS spinning disk.\r\nSAS MDL: Midline SAS spinning disk.\r\nSSD SAS: SAS solit-state disk.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','d781943c08d24556a083a16cca34ad58');
INSERT INTO `items` (`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`,`uuid`) values ('43226','18','','10524','Disk [{#DURABLE.ID}]: Vendor','hpe.msa.disks["{#DURABLE.ID}",vendor]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk vendor.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','86ce9f4d139e46908750d158b004b517');
INSERT INTO `items` (`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`,`uuid`) values ('43227','18','','10524','Disk group [{#NAME}]: Average response time: Read','hpe.msa.disks.groups.avg_rsp_time["{#NAME}",read]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average response time for all read operations, calculated over the interval since these statistics were last requested or reset.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','5b0b3db4bdff429996111d566b6d0386');
INSERT INTO `items` (`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`,`uuid`) values ('43228','18','','10524','Disk group [{#NAME}]: RAID type','hpe.msa.disks.groups.raid["{#NAME}",type]','0','7d','365d','0','3','','','','',NULL,'980','','','0','','','','','2',NULL,'The RAID level of the disk group.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','5356a1f819a54c59bb3765d99a965537');
INSERT INTO `items` (`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`,`uuid`) values ('43229','18','','10524','Disk group [{#NAME}]: Health','hpe.msa.disks.groups["{#NAME}",health]','0','7d','365d','0','3','','','','',NULL,'978','','','0','','','','','2',NULL,'Disk group health.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','1c714d46a3ae4e77b4a2e155c047e630');
INSERT INTO `items` (`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`,`uuid`) values ('43230','18','','10524','Disk group [{#NAME}]: Disks count','hpe.msa.disks.groups["{#NAME}",disk_count]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of disks in the disk group.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','085fae4f87444b62ae5c52703176a533');
INSERT INTO `items` (`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`,`uuid`) values ('43231','18','','10524','Disk group [{#NAME}]: Space total','hpe.msa.disks.groups.space["{#NAME}",total]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The capacity of the disk group.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','29eae883b9fc4e2191daa870bd9d58ad');
INSERT INTO `items` (`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`,`uuid`) values ('43232','18','','10524','Disk group [{#NAME}]: Pool space used','hpe.msa.disks.groups.space["{#NAME}",pool_util]','0','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of pool capacity that the disk group occupies.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','bfe1a64952754488898798f5f07e24b1');
INSERT INTO `items` (`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`,`uuid`) values ('43233','18','','10524','Disk group [{#NAME}]: Space free','hpe.msa.disks.groups.space["{#NAME}",free]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The free space in the disk group.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','b1c95904002b4c17a1c007c664fa4ff8');
INSERT INTO `items` (`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`,`uuid`) values ('43234','18','','10524','Disk group [{#NAME}]: IOPS, write rate','hpe.msa.disks.groups.iops.write["{#NAME}",rate]','0','7d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of write operations per second.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','66ec5badb1d2491d9e07b5ce45486d72');
INSERT INTO `items` (`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`,`uuid`) values ('43235','18','','10524','Disk group [{#NAME}]: Average response time: Total','hpe.msa.disks.groups.avg_rsp_time["{#NAME}",total]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average response time for read and write operations, calculated over the interval since these statistics were last requested or reset.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','4a4fb1ae86df4607882de9c9d40f51f4');
INSERT INTO `items` (`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`,`uuid`) values ('43236','18','','10524','Disk group [{#NAME}]: IOPS, total rate','hpe.msa.disks.groups.iops.total["{#NAME}",rate]','0','7d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Input/output operations per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','044e291ab66d48dcb8b66ee18f638702');
INSERT INTO `items` (`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`,`uuid`) values ('43237','18','','10524','Disk group [{#NAME}]: IOPS, read rate','hpe.msa.disks.groups.iops.read["{#NAME}",rate]','0','7d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of read operations per second.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','18cd4383127548b68313184a2b94750f');
INSERT INTO `items` (`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`,`uuid`) values ('43238','18','','10524','Disk group [{#NAME}]: Data transfer rate: Writes','hpe.msa.disks.groups.data_transfer.writes["{#NAME}",rate]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data write rate, in bytes per second.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','a3df11b895fa425799c34516050000bd');
INSERT INTO `items` (`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`,`uuid`) values ('43239','18','','10524','Disk group [{#NAME}]: Data transfer rate: Total','hpe.msa.disks.groups.data_transfer.total["{#NAME}",rate]','0','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data transfer rate, in bytes per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','b1e2347ea10b4e84bb227668f5560b14');
INSERT INTO `items` (`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`,`uuid`) values ('43240','18','','10524','Disk group [{#NAME}]: Data transfer rate: Reads','hpe.msa.disks.groups.data_transfer.reads["{#NAME}",rate]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data read rate, in bytes per second.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','46ba55c8ec2e4811b254441f22ead159');
INSERT INTO `items` (`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`,`uuid`) values ('43241','18','','10524','Disk group [{#NAME}]: Average response time: Write','hpe.msa.disks.groups.avg_rsp_time["{#NAME}",write]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average response time for all write operations, calculated over the interval since these statistics were last requested or reset.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','a93c1e1b1eee496d861464128aaefa57');
INSERT INTO `items` (`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`,`uuid`) values ('43242','18','','10524','Disk group [{#NAME}]: Status','hpe.msa.disks.groups["{#NAME}",status]','0','7d','365d','0','3','','','','',NULL,'972','','','0','','','','','2',NULL,'The status of the disk group:\r\n\r\n- CRIT: Critical. The disk group is online but isn\'t fault tolerant because some of it\'s disks are down.\r\n- DMGD: Damaged. The disk group is online and fault tolerant, but some of it\'s disks are damaged.\r\n- FTDN: Fault tolerant with a down disk.The disk group is online and fault tolerant, but some of it\'s disks are down.\r\n- FTOL: Fault tolerant.\r\n- MSNG: Missing. The disk group is online and fault tolerant, but some of it\'s disks are missing.\r\n- OFFL: Offline. Either the disk group is using offline initialization, or it\'s disks are down and data may be lost.\r\n- QTCR: Quarantined critical. The disk group is critical with at least one inaccessible disk. For example, two disks are inaccessible in a RAID 6 disk group or one disk is inaccessible for other fault-tolerant RAID levels. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined.\r\n- QTDN: Quarantined with a down disk. The RAID6 disk group has one inaccessible disk. The disk group is fault tolerant but degraded. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined.\r\n- QTOF: Quarantined offline. The disk group is offline with multiple inaccessible disks causing user data to be incomplete, or is an NRAID or RAID 0 disk group.\r\n- QTUN: Quarantined unsupported. The disk group contains data in a format that is not supported by this system. For example, this system does not support linear disk groups.\r\n- STOP: The disk group is stopped.\r\n- UNKN: Unknown.\r\n- UP: Up. The disk group is online and does not have fault-tolerant attributes.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','27ad0ae81baa43528cf94d3ccc5c3ec3');
INSERT INTO `items` (`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`,`uuid`) values ('43243','18','','10524','Enclosure [{#DURABLE.ID}]: Health','hpe.msa.enclosures["{#DURABLE.ID}",health]','0','7d','365d','0','3','','','','',NULL,'978','','','0','','','','','2',NULL,'Enclosure health.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','806b44d4f2dd44eea6db7e982c5fea16');
INSERT INTO `items` (`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`,`uuid`) values ('43244','18','','10524','Enclosure [{#DURABLE.ID}]: Midplane serial number','hpe.msa.enclosures["{#DURABLE.ID}",midplane_serial_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Midplane serial number.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','42987ecd83d74ffa91a8da7d72aacdb0');
INSERT INTO `items` (`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`,`uuid`) values ('43245','18','','10524','Enclosure [{#DURABLE.ID}]: Model','hpe.msa.enclosures["{#DURABLE.ID}",model]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Enclosure model.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','10fff6e5bc2143348c3b0c6a3eb87631');
INSERT INTO `items` (`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`,`uuid`) values ('43246','18','','10524','Enclosure [{#DURABLE.ID}]: Part number','hpe.msa.enclosures["{#DURABLE.ID}",part_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Enclosure part number.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','f9279641e2cb4c95a07d43ef1f1caba5');
INSERT INTO `items` (`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`,`uuid`) values ('43247','18','','10524','Enclosure [{#DURABLE.ID}]: Power','hpe.msa.enclosures["{#DURABLE.ID}",power]','0','7d','365d','0','0','','W','','',NULL,NULL,'','','0','','','','','2',NULL,'Enclosure power in watts.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','cd0ec35c114b41579d0dfcebdc5e7211');
INSERT INTO `items` (`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`,`uuid`) values ('43248','18','','10524','Enclosure [{#DURABLE.ID}]: Status','hpe.msa.enclosures["{#DURABLE.ID}",status]','0','7d','365d','0','3','','','','',NULL,'975','','','0','','','','','2',NULL,'Enclosure status.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','98205e12a4c44a35a59879da5cc9f39c');
INSERT INTO `items` (`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`,`uuid`) values ('43249','18','','10524','Fan [{#DURABLE.ID}]: Health','hpe.msa.fans["{#DURABLE.ID}",health]','0','7d','365d','0','3','','','','',NULL,'978','','','0','','','','','2',NULL,'Fan health status.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','b4732ef73f0e4fcc9458797b28e2b829');
INSERT INTO `items` (`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`,`uuid`) values ('43250','18','','10524','Fan [{#DURABLE.ID}]: Speed','hpe.msa.fans["{#DURABLE.ID}",speed]','0','7d','365d','0','3','','!RPM','','',NULL,NULL,'','','0','','','','','2',NULL,'Fan speed (revolutions per minute).','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','eb7057d0b65e40138899753b06abfb68');
INSERT INTO `items` (`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`,`uuid`) values ('43251','18','','10524','Fan [{#DURABLE.ID}]: Status','hpe.msa.fans["{#DURABLE.ID}",status]','0','7d','365d','0','3','','','','',NULL,'976','','','0','','','','','2',NULL,'Fan status.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','45f948cb8f484367a7a5735beb796a1b');
INSERT INTO `items` (`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`,`uuid`) values ('43252','18','','10524','FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Part number','hpe.msa.frus["{#ENCLOSURE.ID}:{#LOCATION}",part_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'{#DESCRIPTION}. Part number of the FRU.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','77df1d8bfba9428e887025a05f02f306');
INSERT INTO `items` (`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`,`uuid`) values ('43253','18','','10524','FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Serial number','hpe.msa.frus["{#ENCLOSURE.ID}:{#LOCATION}",serial_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'{#DESCRIPTION}. FRU serial number.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','04fc08de0c3947cba0c8f6c633ae3157');
INSERT INTO `items` (`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`,`uuid`) values ('43254','18','','10524','FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Status','hpe.msa.frus["{#ENCLOSURE.ID}:{#LOCATION}",status]','0','7d','365d','0','3','','','','',NULL,'977','','','0','','','','','2',NULL,'{#DESCRIPTION}. FRU status:\r\n\r\nAbsent: Component is not present.\r\nFault: At least one subcomponent has a fault.\r\nInvalid data: For a power supply module, the EEPROM is improperly programmed.\r\nOK: All subcomponents are operating normally.\r\nNot available: Status is not available.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','ef3acb289f9c4a8e919b136dabf7b5c5');
INSERT INTO `items` (`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`,`uuid`) values ('43255','18','','10524','Pool [{#NAME}]: Space free','hpe.msa.pools.space["{#NAME}",free]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The free space in the pool.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','2a8b8ebd3bbb4e4e851602e1a84bb0da');
INSERT INTO `items` (`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`,`uuid`) values ('43256','18','','10524','Pool [{#NAME}]: Space total','hpe.msa.pools.space["{#NAME}",total]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The capacity of the pool.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','0518c9f95bad4208ba33def89432975d');
INSERT INTO `items` (`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`,`uuid`) values ('43257','18','','10524','Pool [{#NAME}]: Health','hpe.msa.pools["{#NAME}",health]','0','7d','365d','0','3','','','','',NULL,'978','','','0','','','','','2',NULL,'Pool health.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','4b79ed6e64cc484bb69f3677cd7932ef');
INSERT INTO `items` (`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`,`uuid`) values ('43258','18','','10524','Port [{#NAME}]: Health','hpe.msa.ports["{#NAME}",health]','0','7d','365d','0','3','','','','',NULL,'978','','','0','','','','','2',NULL,'Port health status.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','27564169c2b04cba924162a5630bbd4b');
INSERT INTO `items` (`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`,`uuid`) values ('43259','18','','10524','Port [{#NAME}]: Status','hpe.msa.ports["{#NAME}",status]','0','7d','365d','0','3','','','','',NULL,'981','','','0','','','','','2',NULL,'Port status.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','57986481099a4bffb5b61816e1ba4110');
INSERT INTO `items` (`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`,`uuid`) values ('43260','18','','10524','Port [{#NAME}]: Type','hpe.msa.ports["{#NAME}",type]','0','7d','365d','0','3','','','','',NULL,'979','','','0','','','','','2',NULL,'Port type.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','b1240a5950a3466b9d0725729bef3a03');
INSERT INTO `items` (`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`,`uuid`) values ('43261','18','','10524','Power supply [{#DURABLE.ID}]: Health','hpe.msa.power_supplies["{#DURABLE.ID}",health]','0','7d','365d','0','3','','','','',NULL,'978','','','0','','','','','2',NULL,'Power supply health status.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','4e4f593738fb451cbfd1589a3054387e');
INSERT INTO `items` (`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`,`uuid`) values ('43262','18','','10524','Power supply [{#DURABLE.ID}]: Part number','hpe.msa.power_supplies["{#DURABLE.ID}",part_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Power supply part number.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','1b72c54bff3a4b129e959db43e895839');
INSERT INTO `items` (`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`,`uuid`) values ('43263','18','','10524','Power supply [{#DURABLE.ID}]: Serial number','hpe.msa.power_supplies["{#DURABLE.ID}",serial_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Power supply serial number.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','bdbf30f2e70d427bb9237b941fed5941');
INSERT INTO `items` (`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`,`uuid`) values ('43264','18','','10524','Power supply [{#DURABLE.ID}]: Status','hpe.msa.power_supplies["{#DURABLE.ID}",status]','0','7d','365d','0','3','','','','',NULL,'981','','','0','','','','','2',NULL,'Power supply status.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','110fa50ee1d64ecdb064d3bd7b34dc90');
INSERT INTO `items` (`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`,`uuid`) values ('43265','18','','10524','Power supply [{#DURABLE.ID}]: Temperature','hpe.msa.power_supplies["{#DURABLE.ID}",temperature]','0','7d','365d','0','3','','!°C','','',NULL,NULL,'','','0','','','','','2',NULL,'Power supply temperature.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','8b4399f3d9624239be2e6ac15971300b');
INSERT INTO `items` (`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`,`uuid`) values ('43266','18','','10524','Volume [{#NAME}]: Cache: Read hits, rate','hpe.msa.volumes.cache.read.hits["{#NAME}",rate]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block to be read is found in cache per second.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','f9818ae47544417bb270af4f8f014c0a');
INSERT INTO `items` (`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`,`uuid`) values ('43267','18','','10524','Volume [{#NAME}]: Cache: Read misses, rate','hpe.msa.volumes.cache.read.misses["{#NAME}",rate]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block to be read is not found in cache per second.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','877afc03787443129373d955067f8c6c');
INSERT INTO `items` (`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`,`uuid`) values ('43268','18','','10524','Volume [{#NAME}]: Cache: Write hits, rate','hpe.msa.volumes.cache.write.hits["{#NAME}",rate]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block written to is found in cache per second.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','e3a0b52f33e847c980ffe3f4dcda5ab4');
INSERT INTO `items` (`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`,`uuid`) values ('43269','18','','10524','Volume [{#NAME}]: Cache: Write misses, rate','hpe.msa.volumes.cache.write.misses["{#NAME}",rate]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block written to is not found in cache per second.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','b2b0c3fd7ab74eb3a6013c3f3d65e356');
INSERT INTO `items` (`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`,`uuid`) values ('43270','18','','10524','Volume [{#NAME}]: Data transfer rate: Reads','hpe.msa.volumes.data_transfer.reads["{#NAME}",rate]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data read rate, in bytes per second.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','6b12caedf23b4b768dbff01096d72c93');
INSERT INTO `items` (`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`,`uuid`) values ('43271','18','','10524','Volume [{#NAME}]: Data transfer rate: Total','hpe.msa.volumes.data_transfer.total["{#NAME}",rate]','0','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data transfer rate, in bytes per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','705428d111dd49d19eb79b6a0de592c1');
INSERT INTO `items` (`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`,`uuid`) values ('43272','18','','10524','Volume [{#NAME}]: Data transfer rate: Writes','hpe.msa.volumes.data_transfer.writes["{#NAME}",rate]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data write rate, in bytes per second.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','5f44581f011b46cf96ebd040de635976');
INSERT INTO `items` (`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`,`uuid`) values ('43273','18','','10524','Volume [{#NAME}]: IOPS, read rate','hpe.msa.volumes.iops.read["{#NAME}",rate]','0','7d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of read operations per second.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','0e2831ed17ec4fe0a56b800086b47901');
INSERT INTO `items` (`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`,`uuid`) values ('43274','18','','10524','Volume [{#NAME}]: IOPS, total rate','hpe.msa.volumes.iops.total["{#NAME}",rate]','0','7d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Input/output operations per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','9d14e4239f5941a7bfb07b6645b9e698');
INSERT INTO `items` (`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`,`uuid`) values ('43275','18','','10524','Volume [{#NAME}]: IOPS, write rate','hpe.msa.volumes.iops.write["{#NAME}",rate]','0','7d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of write operations per second.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','e1a6b6cc609c4cf789978f01b18af31f');
INSERT INTO `items` (`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`,`uuid`) values ('43276','18','','10524','Volume [{#NAME}]: Space allocated','hpe.msa.volumes.space["{#NAME}",allocated]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of space currently allocated to the volume.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','b47d7b03e19f4e25803b1d639a0ecf43');
INSERT INTO `items` (`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`,`uuid`) values ('43277','18','','10524','Volume [{#NAME}]: Space total','hpe.msa.volumes.space["{#NAME}",total]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The capacity of the volume.','0','30d','0','','43171','3s','','','','200','1','0','','0','0','0','0','0','0','0','b6aaba39f7c74dcf95947626852855c8');
INSERT INTO `items` (`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`,`uuid`) values ('43280','18','','10525','Get method errors','hpe.msa.data.errors','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of method errors from API requests.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','078dd015f25d4778af429f9b5e391bc5');
INSERT INTO `items` (`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`,`uuid`) values ('43281','18','','10525','System contact','hpe.msa.system.contact','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The name of the person who administers the system.','23','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','4c8b2c72135a4af781c0f31730366abe');
INSERT INTO `items` (`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`,`uuid`) values ('43282','18','','10525','System health','hpe.msa.system.health','0','7d','365d','0','3','','','','',NULL,'989','','','0','','','','','0',NULL,'System health status.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','dc310d8c55a74a00bed9c004ba33d1fa');
INSERT INTO `items` (`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`,`uuid`) values ('43283','18','','10525','System information','hpe.msa.system.info','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A brief description of what the system is used for or how it is configured.','27','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','c4aae4a5f218472698751d9de8d1087d');
INSERT INTO `items` (`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`,`uuid`) values ('43284','18','','10525','System location','hpe.msa.system.location','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The location of the system.','24','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','3768f170e5ef44bca39e89b1f8973e6d');
INSERT INTO `items` (`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`,`uuid`) values ('43285','18','','10525','System name','hpe.msa.system.name','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The name of the storage system.','3','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','00c58217d52e4cd5852bdd9c71c4375f');
INSERT INTO `items` (`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`,`uuid`) values ('43286','18','','10525','Product ID','hpe.msa.system.product_id','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The product model identifier.','29','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','103e58d547284e68b079e92074950ff9');
INSERT INTO `items` (`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`,`uuid`) values ('43287','18','','10525','Vendor name','hpe.msa.system.vendor_name','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The vendor name.','31','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','7865d8ae697c40c5b5855c47bb82ccc4');
INSERT INTO `items` (`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`,`uuid`) values ('43288','18','','10525','Controllers discovery','hpe.msa.controllers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover controllers.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','91c30dd0509843898601ce6d489fab03');
INSERT INTO `items` (`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`,`uuid`) values ('43289','18','','10525','Disks discovery','hpe.msa.disks.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover disks.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','46478b42c76348d7824c715fd6d20f74');
INSERT INTO `items` (`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`,`uuid`) values ('43290','18','','10525','Disk groups discovery','hpe.msa.disks.groups.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover disk groups.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','88aaea8c16a247559c68783ad0cd5c4d');
INSERT INTO `items` (`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`,`uuid`) values ('43291','18','','10525','Enclosures discovery','hpe.msa.enclosures.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover enclosures.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','5a97871f702348dca7a5378885087ea8');
INSERT INTO `items` (`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`,`uuid`) values ('43292','18','','10525','Fans discovery','hpe.msa.fans.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover fans.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','9043169f17de44baa174459b560de4f5');
INSERT INTO `items` (`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`,`uuid`) values ('43293','18','','10525','FRU discovery','hpe.msa.frus.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover FRU.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','30f91e8f7fba489aa649759219efa67c');
INSERT INTO `items` (`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`,`uuid`) values ('43294','18','','10525','Pools discovery','hpe.msa.pools.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover pools.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','178b94ddcab947ffb1614622c2b7e08e');
INSERT INTO `items` (`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`,`uuid`) values ('43295','18','','10525','Ports discovery','hpe.msa.ports.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover ports.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','bed52618dbc6498f99ddeedc78c0cdad');
INSERT INTO `items` (`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`,`uuid`) values ('43296','18','','10525','Power supplies discovery','hpe.msa.power_supplies.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover power supplies.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','1561695bd2174eada622a0d90ee1c3df');
INSERT INTO `items` (`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`,`uuid`) values ('43297','18','','10525','Volumes discovery','hpe.msa.volumes.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover volumes.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','b132a010c8a84da79eee1ba725301be9');
INSERT INTO `items` (`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`,`uuid`) values ('43307','18','','10525','Controller [{#CONTROLLER.ID}]: Cache: Read hits, rate','hpe.msa.controllers.cache.read.hits["{#CONTROLLER.ID}",rate]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block to be read is found in cache per second.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','73bc16fc631f4386abbc78897db07e13');
INSERT INTO `items` (`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`,`uuid`) values ('43308','18','','10525','Controller [{#CONTROLLER.ID}]: IOPS, write rate','hpe.msa.controllers.iops.write["{#CONTROLLER.ID}",rate]','0','7d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of write operations per second.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','9b8366ac60304c3c98dedc278ad18418');
INSERT INTO `items` (`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`,`uuid`) values ('43309','18','','10525','Controller [{#CONTROLLER.ID}]: Status','hpe.msa.controllers["{#CONTROLLER.ID}",status]','0','7d','365d','0','3','','','','',NULL,'982','','','0','','','','','2',NULL,'Storage controller status.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','c0c2034fc848400c9b1f09f0c54790b3');
INSERT INTO `items` (`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`,`uuid`) values ('43310','18','','10525','Controller [{#CONTROLLER.ID}]: Serial number','hpe.msa.controllers["{#CONTROLLER.ID}",serial_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Storage controller serial number.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','6980d1841bc04c79868d6f05bf59921e');
INSERT INTO `items` (`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`,`uuid`) values ('43311','18','','10525','Controller [{#CONTROLLER.ID}]: Pools','hpe.msa.controllers["{#CONTROLLER.ID}",pools]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of pools in the storage system.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','9b4ee1a634c3462f8fb48eb0e79984df');
INSERT INTO `items` (`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`,`uuid`) values ('43312','18','','10525','Controller [{#CONTROLLER.ID}]: Part number','hpe.msa.controllers["{#CONTROLLER.ID}",part_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Part number of the controller.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','3405ef21e2cb40729e16c5b8aaf35996');
INSERT INTO `items` (`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`,`uuid`) values ('43313','18','','10525','Controller [{#CONTROLLER.ID}]: IP address','hpe.msa.controllers["{#CONTROLLER.ID}",ip_address]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Controller network port IP address.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','2c9c2636aeb543ec8e70102c555fe776');
INSERT INTO `items` (`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`,`uuid`) values ('43314','18','','10525','Controller [{#CONTROLLER.ID}]: Health','hpe.msa.controllers["{#CONTROLLER.ID}",health]','0','7d','365d','0','3','','','','',NULL,'989','','','0','','','','','2',NULL,'Controller health status.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','5f5307f2904a4792af1906a2b03a2a9b');
INSERT INTO `items` (`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`,`uuid`) values ('43315','18','','10525','Controller [{#CONTROLLER.ID}]: Firmware version','hpe.msa.controllers["{#CONTROLLER.ID}",firmware]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Storage controller firmware version.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','ba1bb9818a9a487c8742d619316b087e');
INSERT INTO `items` (`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`,`uuid`) values ('43316','18','','10525','Controller [{#CONTROLLER.ID}]: Disk groups','hpe.msa.controllers["{#CONTROLLER.ID}",disk_groups]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of disk groups in the storage system.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','c70f280c9c494b769b442f3a22a3c173');
INSERT INTO `items` (`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`,`uuid`) values ('43317','18','','10525','Controller [{#CONTROLLER.ID}]: Disks','hpe.msa.controllers["{#CONTROLLER.ID}",disks]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of disks in the storage system.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','5f6c124f1aef41499ee52616ede02de9');
INSERT INTO `items` (`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`,`uuid`) values ('43318','18','','10525','Controller [{#CONTROLLER.ID}]: IOPS, total rate','hpe.msa.controllers.iops.total["{#CONTROLLER.ID}",rate]','0','7d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Input/output operations per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','16f2fd5bd9d244daa09aef3f79a5d450');
INSERT INTO `items` (`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`,`uuid`) values ('43319','18','','10525','Controller [{#CONTROLLER.ID}]: Cache: Read misses, rate','hpe.msa.controllers.cache.read.misses["{#CONTROLLER.ID}",rate]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block to be read is not found in cache per second.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','04e14fe4d8ba4693b954ebcac1671649');
INSERT INTO `items` (`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`,`uuid`) values ('43320','18','','10525','Controller [{#CONTROLLER.ID}]: IOPS, read rate','hpe.msa.controllers.iops.read["{#CONTROLLER.ID}",rate]','0','7d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of read operations per second.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','8b0f014d1ed5470d919357f204b704ca');
INSERT INTO `items` (`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`,`uuid`) values ('43321','18','','10525','Controller [{#CONTROLLER.ID}]: Data transfer rate: Writes','hpe.msa.controllers.data_transfer.writes["{#CONTROLLER.ID}",rate]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data write rate, in bytes per second.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','94f0b7f7d397453f9227c1b473a77a4e');
INSERT INTO `items` (`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`,`uuid`) values ('43322','18','','10525','Controller [{#CONTROLLER.ID}]: Data transfer rate: Total','hpe.msa.controllers.data_transfer.total["{#CONTROLLER.ID}",rate]','0','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data transfer rate, in bytes per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','9c5c23273f5b43ad9e300d2c7b90bc3f');
INSERT INTO `items` (`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`,`uuid`) values ('43323','18','','10525','Controller [{#CONTROLLER.ID}]: Data transfer rate: Reads','hpe.msa.controllers.data_transfer.reads["{#CONTROLLER.ID}",rate]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data read rate, in bytes per second.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','c8fbfd459fce4149b1459e366b61981a');
INSERT INTO `items` (`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`,`uuid`) values ('43324','18','','10525','Controller [{#CONTROLLER.ID}]: CPU utilization','hpe.msa.controllers.cpu["{#CONTROLLER.ID}",util]','0','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Percentage of time the CPU is busy, from 0 to 100.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','80d6ae014e354f6c844c3b88ea66c530');
INSERT INTO `items` (`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`,`uuid`) values ('43325','18','','10525','Controller [{#CONTROLLER.ID}]: Cache memory size','hpe.msa.controllers.cache["{#CONTROLLER.ID}",total]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Controller cache memory size.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','482c5af99fe740278c4663ba300dee04');
INSERT INTO `items` (`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`,`uuid`) values ('43326','18','','10525','Controller [{#CONTROLLER.ID}]: Cache: Write utilization','hpe.msa.controllers.cache.write["{#CONTROLLER.ID}",util]','0','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Percentage of write cache in use, from 0 to 100.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','0d754544c18143ff98114e1ed316ad1e');
INSERT INTO `items` (`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`,`uuid`) values ('43327','18','','10525','Controller [{#CONTROLLER.ID}]: Cache: Write misses, rate','hpe.msa.controllers.cache.write.misses["{#CONTROLLER.ID}",rate]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block written to is not found in cache per second.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','61aa7235c6c44cfababd1b2390cc0443');
INSERT INTO `items` (`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`,`uuid`) values ('43328','18','','10525','Controller [{#CONTROLLER.ID}]: Cache: Write hits, rate','hpe.msa.controllers.cache.write.hits["{#CONTROLLER.ID}",rate]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block written to is found in cache per second.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','5cb9f7eb42d2413a90161ac192629073');
INSERT INTO `items` (`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`,`uuid`) values ('43329','18','','10525','Controller [{#CONTROLLER.ID}]: Uptime','hpe.msa.controllers["{#CONTROLLER.ID}",uptime]','0','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of seconds since the controller was restarted.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','7a9b3ba8dd5446d0961a6eea595c2b49');
INSERT INTO `items` (`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`,`uuid`) values ('43330','18','','10525','Disk [{#DURABLE.ID}]: Blocks size','hpe.msa.disks.blocks["{#DURABLE.ID}",size]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size of a block, in bytes.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','4fedb88c1bb74c2cb5a0f72fdfcff104');
INSERT INTO `items` (`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`,`uuid`) values ('43331','18','','10525','Disk [{#DURABLE.ID}]: Blocks total','hpe.msa.disks.blocks["{#DURABLE.ID}",total]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space in blocks.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','a491cb03df9c4e3ead70e0a74d9337b2');
INSERT INTO `items` (`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`,`uuid`) values ('43332','18','','10525','Disk [{#DURABLE.ID}]: SSD life left','hpe.msa.disks.ssd["{#DURABLE.ID}",life_left]','0','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of disk life remaining.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','1','80ea0929a1bf43f4bdeba80e675c52bd');
INSERT INTO `items` (`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`,`uuid`) values ('43333','18','','10525','Disk [{#DURABLE.ID}]: Disk group','hpe.msa.disks["{#DURABLE.ID}",group]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'If the disk is in a disk group, the disk group name.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','f5bb9b7f437f434d83ca0542e41b2673');
INSERT INTO `items` (`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`,`uuid`) values ('43334','18','','10525','Disk [{#DURABLE.ID}]: Health','hpe.msa.disks["{#DURABLE.ID}",health]','0','7d','365d','0','3','','','','',NULL,'989','','','0','','','','','2',NULL,'Disk health status.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','86fca5ad02af49c8a1d48f4a260a0dbf');
INSERT INTO `items` (`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`,`uuid`) values ('43335','18','','10525','Disk [{#DURABLE.ID}]: Model','hpe.msa.disks["{#DURABLE.ID}",model]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk model.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','8f8ad679881c4693acfed363e5498b34');
INSERT INTO `items` (`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`,`uuid`) values ('43336','18','','10525','Disk [{#DURABLE.ID}]: Storage pool','hpe.msa.disks["{#DURABLE.ID}",pool]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'If the disk is in a pool, the pool name.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','7fffecbf1ede4a5e9da5efc4311fc62e');
INSERT INTO `items` (`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`,`uuid`) values ('43337','18','','10525','Disk [{#DURABLE.ID}]: Serial number','hpe.msa.disks["{#DURABLE.ID}",serial_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk serial number.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','9a43a148ad4742e1a1df0038b36a171f');
INSERT INTO `items` (`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`,`uuid`) values ('43338','18','','10525','Disk [{#DURABLE.ID}]: Temperature','hpe.msa.disks["{#DURABLE.ID}",temperature]','0','7d','365d','0','3','','!°C','','',NULL,NULL,'','','0','','','','','2',NULL,'Temperature of the disk.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','119dc5c43fb741028ccd599d25ad032c');
INSERT INTO `items` (`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`,`uuid`) values ('43339','18','','10525','Disk [{#DURABLE.ID}]: Temperature status','hpe.msa.disks["{#DURABLE.ID}",temperature_status]','0','7d','365d','0','3','','','','',NULL,'984','','','0','','','','','2',NULL,'Disk temperature status.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','0a0cf4600214443aa504d5c55d1f4015');
INSERT INTO `items` (`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`,`uuid`) values ('43340','18','','10525','Disk [{#DURABLE.ID}]: Type','hpe.msa.disks["{#DURABLE.ID}",type]','0','7d','365d','0','3','','','','',NULL,'985','','','0','','','','','2',NULL,'Disk type:\r\nSAS: Enterprise SAS spinning disk.\r\nSAS MDL: Midline SAS spinning disk.\r\nSSD SAS: SAS solit-state disk.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','1a23ef68bb484fd5baeba2b352b970db');
INSERT INTO `items` (`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`,`uuid`) values ('43341','18','','10525','Disk [{#DURABLE.ID}]: Vendor','hpe.msa.disks["{#DURABLE.ID}",vendor]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk vendor.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','d8e35779834640c8afdc5874f72fe8af');
INSERT INTO `items` (`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`,`uuid`) values ('43342','18','','10525','Disk group [{#NAME}]: Average response time: Read','hpe.msa.disks.groups.avg_rsp_time["{#NAME}",read]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average response time for all read operations, calculated over the interval since these statistics were last requested or reset.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','8f68ad1b814d4287a6fd72d5bd03f7da');
INSERT INTO `items` (`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`,`uuid`) values ('43343','18','','10525','Disk group [{#NAME}]: IOPS, write rate','hpe.msa.disks.groups.iops.write["{#NAME}",rate]','0','7d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of write operations per second.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','31f5b13a56704e438b600df70c37a1fd');
INSERT INTO `items` (`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`,`uuid`) values ('43344','18','','10525','Disk group [{#NAME}]: Health','hpe.msa.disks.groups["{#NAME}",health]','0','7d','365d','0','3','','','','',NULL,'989','','','0','','','','','2',NULL,'Disk group health.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','97b6e0e2ec844636be64931fca6e2c6c');
INSERT INTO `items` (`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`,`uuid`) values ('43345','18','','10525','Disk group [{#NAME}]: Disks count','hpe.msa.disks.groups["{#NAME}",disk_count]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of disks in the disk group.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','4c6bbdcdb05d45e0af52548aef4e8716');
INSERT INTO `items` (`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`,`uuid`) values ('43346','18','','10525','Disk group [{#NAME}]: Pool space used','hpe.msa.disks.groups.space["{#NAME}",pool_util]','0','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of pool capacity that the disk group occupies.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','bc8e6e0fb286466593186708cddf3b2a');
INSERT INTO `items` (`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`,`uuid`) values ('43347','18','','10525','Disk group [{#NAME}]: RAID type','hpe.msa.disks.groups.raid["{#NAME}",type]','0','7d','365d','0','3','','','','',NULL,'991','','','0','','','','','2',NULL,'The RAID level of the disk group.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','7359b1d550734d30bb83612538b36e95');
INSERT INTO `items` (`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`,`uuid`) values ('43348','18','','10525','Disk group [{#NAME}]: IOPS, total rate','hpe.msa.disks.groups.iops.total["{#NAME}",rate]','0','7d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Input/output operations per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','c9fdf59576554063b404d190ad90db18');
INSERT INTO `items` (`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`,`uuid`) values ('43349','18','','10525','Disk group [{#NAME}]: Average response time: Total','hpe.msa.disks.groups.avg_rsp_time["{#NAME}",total]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average response time for read and write operations, calculated over the interval since these statistics were last requested or reset.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','2ae8acbcd0b9442c9adc8086fa36fa40');
INSERT INTO `items` (`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`,`uuid`) values ('43350','18','','10525','Disk group [{#NAME}]: IOPS, read rate','hpe.msa.disks.groups.iops.read["{#NAME}",rate]','0','7d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of read operations per second.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','95925d6d4af94964b388208ff185642d');
INSERT INTO `items` (`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`,`uuid`) values ('43351','18','','10525','Disk group [{#NAME}]: Data transfer rate: Writes','hpe.msa.disks.groups.data_transfer.writes["{#NAME}",rate]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data write rate, in bytes per second.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','51ef802067c149bea1d5d976df6e3a6f');
INSERT INTO `items` (`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`,`uuid`) values ('43352','18','','10525','Disk group [{#NAME}]: Data transfer rate: Total','hpe.msa.disks.groups.data_transfer.total["{#NAME}",rate]','0','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data transfer rate, in bytes per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','28b236ea619f4130a3271459e9fce06b');
INSERT INTO `items` (`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`,`uuid`) values ('43353','18','','10525','Disk group [{#NAME}]: Data transfer rate: Reads','hpe.msa.disks.groups.data_transfer.reads["{#NAME}",rate]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data read rate, in bytes per second.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','ecd3de6d32e94d2ab50111659147c97e');
INSERT INTO `items` (`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`,`uuid`) values ('43354','18','','10525','Disk group [{#NAME}]: Blocks total','hpe.msa.disks.groups.blocks["{#NAME}",total]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space in blocks.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','f14e651fd9dc4b03bb00e5db780f0114');
INSERT INTO `items` (`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`,`uuid`) values ('43355','18','','10525','Disk group [{#NAME}]: Blocks size','hpe.msa.disks.groups.blocks["{#NAME}",size]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size of a block, in bytes.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','27e3fc79212e407ca1ae5fb06557440d');
INSERT INTO `items` (`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`,`uuid`) values ('43356','18','','10525','Disk group [{#NAME}]: Blocks free','hpe.msa.disks.groups.blocks["{#NAME}",free]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Free space in blocks.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','705fce660a944a47ad7ff0e9c9b1d37e');
INSERT INTO `items` (`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`,`uuid`) values ('43357','18','','10525','Disk group [{#NAME}]: Average response time: Write','hpe.msa.disks.groups.avg_rsp_time["{#NAME}",write]','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average response time for all write operations, calculated over the interval since these statistics were last requested or reset.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','f99ce5e6e31140c298ee447d3a2b8c4d');
INSERT INTO `items` (`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`,`uuid`) values ('43358','18','','10525','Disk group [{#NAME}]: Status','hpe.msa.disks.groups["{#NAME}",status]','0','7d','365d','0','3','','','','',NULL,'983','','','0','','','','','2',NULL,'The status of the disk group:\r\n\r\n- CRIT: Critical. The disk group is online but isn\'t fault tolerant because some of it\'s disks are down.\r\n- DMGD: Damaged. The disk group is online and fault tolerant, but some of it\'s disks are damaged.\r\n- FTDN: Fault tolerant with a down disk.The disk group is online and fault tolerant, but some of it\'s disks are down.\r\n- FTOL: Fault tolerant.\r\n- MSNG: Missing. The disk group is online and fault tolerant, but some of it\'s disks are missing.\r\n- OFFL: Offline. Either the disk group is using offline initialization, or it\'s disks are down and data may be lost.\r\n- QTCR: Quarantined critical. The disk group is critical with at least one inaccessible disk. For example, two disks are inaccessible in a RAID 6 disk group or one disk is inaccessible for other fault-tolerant RAID levels. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined.\r\n- QTDN: Quarantined with a down disk. The RAID6 disk group has one inaccessible disk. The disk group is fault tolerant but degraded. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined.\r\n- QTOF: Quarantined offline. The disk group is offline with multiple inaccessible disks causing user data to be incomplete, or is an NRAID or RAID 0 disk group.\r\n- QTUN: Quarantined unsupported. The disk group contains data in a format that is not supported by this system. For example, this system does not support linear disk groups.\r\n- STOP: The disk group is stopped.\r\n- UNKN: Unknown.\r\n- UP: Up. The disk group is online and does not have fault-tolerant attributes.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','6755c1253e83442780eeb31d67062980');
INSERT INTO `items` (`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`,`uuid`) values ('43359','18','','10525','Enclosure [{#DURABLE.ID}]: Health','hpe.msa.enclosures["{#DURABLE.ID}",health]','0','7d','365d','0','3','','','','',NULL,'989','','','0','','','','','2',NULL,'Enclosure health.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','2e70432b3c324ecdb78ab77e5f9bbaf3');
INSERT INTO `items` (`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`,`uuid`) values ('43360','18','','10525','Enclosure [{#DURABLE.ID}]: Midplane serial number','hpe.msa.enclosures["{#DURABLE.ID}",midplane_serial_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Midplane serial number.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','e3a1c5f6dee545a8a7d4b68768d060ab');
INSERT INTO `items` (`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`,`uuid`) values ('43361','18','','10525','Enclosure [{#DURABLE.ID}]: Model','hpe.msa.enclosures["{#DURABLE.ID}",model]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Enclosure model.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','1dcecf03b9814aac9749badf800e4717');
INSERT INTO `items` (`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`,`uuid`) values ('43362','18','','10525','Enclosure [{#DURABLE.ID}]: Part number','hpe.msa.enclosures["{#DURABLE.ID}",part_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Enclosure part number.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','89f11d7bf0e24a92bf4d4b4b1d86af58');
INSERT INTO `items` (`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`,`uuid`) values ('43363','18','','10525','Enclosure [{#DURABLE.ID}]: Power','hpe.msa.enclosures["{#DURABLE.ID}",power]','0','7d','365d','0','0','','W','','',NULL,NULL,'','','0','','','','','2',NULL,'Enclosure power in watts.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','b426baf09f1445eda59abd0e2ee6dd2c');
INSERT INTO `items` (`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`,`uuid`) values ('43364','18','','10525','Enclosure [{#DURABLE.ID}]: Status','hpe.msa.enclosures["{#DURABLE.ID}",status]','0','7d','365d','0','3','','','','',NULL,'986','','','0','','','','','2',NULL,'Enclosure status.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','602b941548ab417bbe59f3f298bf6da9');
INSERT INTO `items` (`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`,`uuid`) values ('43365','18','','10525','Fan [{#DURABLE.ID}]: Health','hpe.msa.fans["{#DURABLE.ID}",health]','0','7d','365d','0','3','','','','',NULL,'989','','','0','','','','','2',NULL,'Fan health status.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','f9be9af4ff9047f1af946313df3e7165');
INSERT INTO `items` (`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`,`uuid`) values ('43366','18','','10525','Fan [{#DURABLE.ID}]: Speed','hpe.msa.fans["{#DURABLE.ID}",speed]','0','7d','365d','0','3','','!RPM','','',NULL,NULL,'','','0','','','','','2',NULL,'Fan speed (revolutions per minute).','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','f028a919d56b45129f9ead200519adaa');
INSERT INTO `items` (`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`,`uuid`) values ('43367','18','','10525','Fan [{#DURABLE.ID}]: Status','hpe.msa.fans["{#DURABLE.ID}",status]','0','7d','365d','0','3','','','','',NULL,'987','','','0','','','','','2',NULL,'Fan status.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','df1d8af5df104afc829b403aec6efc96');
INSERT INTO `items` (`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`,`uuid`) values ('43368','18','','10525','FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Part number','hpe.msa.frus["{#ENCLOSURE.ID}:{#LOCATION}",part_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'{#DESCRIPTION}. Part number of the FRU.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','8cbf62d188084ea4a72eaa37987d8d8e');
INSERT INTO `items` (`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`,`uuid`) values ('43369','18','','10525','FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Serial number','hpe.msa.frus["{#ENCLOSURE.ID}:{#LOCATION}",serial_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'{#DESCRIPTION}. FRU serial number.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','49c52c2c5b174c78a60756eb7a9e34f1');
INSERT INTO `items` (`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`,`uuid`) values ('43370','18','','10525','FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Status','hpe.msa.frus["{#ENCLOSURE.ID}:{#LOCATION}",status]','0','7d','365d','0','3','','','','',NULL,'988','','','0','','','','','2',NULL,'{#DESCRIPTION}. FRU status:\r\n\r\nAbsent: The FRU is not present.\r\nFault: The FRU\'s health is Degraded or Fault.\r\nInvalid data: The FRU ID data is invalid. The FRU\'s EEPROM is improperly programmed.\r\nOK: The FRU is operating normally.\r\nPower off: The FRU is powered off.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','d72f7be111ae4335b92d6a1d0ad9e3ee');
INSERT INTO `items` (`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`,`uuid`) values ('43371','18','','10525','Pool [{#NAME}]: Blocks available','hpe.msa.pools.blocks["{#NAME}",available]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Available space in blocks.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','09d67b3577af4e21a7bbd09078d705cd');
INSERT INTO `items` (`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`,`uuid`) values ('43372','18','','10525','Pool [{#NAME}]: Blocks size','hpe.msa.pools.blocks["{#NAME}",size]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size of a block, in bytes.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','076921fcd93941b09b79c7d44873417d');
INSERT INTO `items` (`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`,`uuid`) values ('43373','18','','10525','Pool [{#NAME}]: Blocks total','hpe.msa.pools.blocks["{#NAME}",total]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space in blocks.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','fd29559e5bb3455b8b4cfe56f75f54b2');
INSERT INTO `items` (`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`,`uuid`) values ('43374','18','','10525','Pool [{#NAME}]: Health','hpe.msa.pools["{#NAME}",health]','0','7d','365d','0','3','','','','',NULL,'989','','','0','','','','','2',NULL,'Pool health.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','15096639cae947d383a506f0332ff6d3');
INSERT INTO `items` (`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`,`uuid`) values ('43375','18','','10525','Port [{#NAME}]: Health','hpe.msa.ports["{#NAME}",health]','0','7d','365d','0','3','','','','',NULL,'989','','','0','','','','','2',NULL,'Port health status.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','cf4f9aaf55e6435d949d3b5074b9f37f');
INSERT INTO `items` (`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`,`uuid`) values ('43376','18','','10525','Port [{#NAME}]: Status','hpe.msa.ports["{#NAME}",status]','0','7d','365d','0','3','','','','',NULL,'992','','','0','','','','','2',NULL,'Port status.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','cab1cd26264d408998c5ea8737571ed4');
INSERT INTO `items` (`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`,`uuid`) values ('43377','18','','10525','Port [{#NAME}]: Type','hpe.msa.ports["{#NAME}",type]','0','7d','365d','0','3','','','','',NULL,'990','','','0','','','','','2',NULL,'Port type.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','32ad6655625e408a9dd577624afbfa6a');
INSERT INTO `items` (`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`,`uuid`) values ('43378','18','','10525','Power supply [{#DURABLE.ID}]: Health','hpe.msa.power_supplies["{#DURABLE.ID}",health]','0','7d','365d','0','3','','','','',NULL,'989','','','0','','','','','2',NULL,'Power supply health status.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','993bc2db3b444dc5bc37794985e63ea9');
INSERT INTO `items` (`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`,`uuid`) values ('43379','18','','10525','Power supply [{#DURABLE.ID}]: Part number','hpe.msa.power_supplies["{#DURABLE.ID}",part_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Power supply part number.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','efae55cfdd1e4021a623e2128f988611');
INSERT INTO `items` (`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`,`uuid`) values ('43380','18','','10525','Power supply [{#DURABLE.ID}]: Serial number','hpe.msa.power_supplies["{#DURABLE.ID}",serial_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Power supply serial number.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','6716c3d0177247fe8a35fa1eb206a54f');
INSERT INTO `items` (`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`,`uuid`) values ('43381','18','','10525','Power supply [{#DURABLE.ID}]: Status','hpe.msa.power_supplies["{#DURABLE.ID}",status]','0','7d','365d','0','3','','','','',NULL,'992','','','0','','','','','2',NULL,'Power supply status.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','a3ff6ab5576246fe9e794e01df4fe1b9');
INSERT INTO `items` (`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`,`uuid`) values ('43382','18','','10525','Volume [{#NAME}]: Blocks allocated','hpe.msa.volumes.blocks["{#NAME}",allocated]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of blocks currently allocated to the volume.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','cc6c4bddc05243c7a90082a3450a76a7');
INSERT INTO `items` (`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`,`uuid`) values ('43383','18','','10525','Volume [{#NAME}]: Blocks size','hpe.msa.volumes.blocks["{#NAME}",size]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size of a block, in bytes.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','900d94185fa9480590915bbafb8ccda0');
INSERT INTO `items` (`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`,`uuid`) values ('43384','18','','10525','Volume [{#NAME}]: Blocks total','hpe.msa.volumes.blocks["{#NAME}",total]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space in blocks.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','5cdae787c8b6485899f8f4e8c3cf6b71');
INSERT INTO `items` (`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`,`uuid`) values ('43385','18','','10525','Volume [{#NAME}]: Cache: Read hits, rate','hpe.msa.volumes.cache.read.hits["{#NAME}",rate]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block to be read is found in cache per second.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','b7615bb6a3434303a2bb4751e7aed458');
INSERT INTO `items` (`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`,`uuid`) values ('43386','18','','10525','Volume [{#NAME}]: Cache: Read misses, rate','hpe.msa.volumes.cache.read.misses["{#NAME}",rate]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block to be read is not found in cache per second.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','655e319736804d8db4b6988f7205c5e3');
INSERT INTO `items` (`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`,`uuid`) values ('43387','18','','10525','Volume [{#NAME}]: Cache: Write hits, rate','hpe.msa.volumes.cache.write.hits["{#NAME}",rate]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block written to is found in cache per second.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','849ef4370f4b46ea894d2a2e1e4a3ea4');
INSERT INTO `items` (`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`,`uuid`) values ('43388','18','','10525','Volume [{#NAME}]: Cache: Write misses, rate','hpe.msa.volumes.cache.write.misses["{#NAME}",rate]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block written to is not found in cache per second.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','593f4fce31f24e9b99c9bc69d2ead38b');
INSERT INTO `items` (`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`,`uuid`) values ('43389','18','','10525','Volume [{#NAME}]: Data transfer rate: Reads','hpe.msa.volumes.data_transfer.reads["{#NAME}",rate]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data read rate, in bytes per second.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','1a810fe32e464e8cbcdfc61769bc7869');
INSERT INTO `items` (`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`,`uuid`) values ('43390','18','','10525','Volume [{#NAME}]: Data transfer rate: Total','hpe.msa.volumes.data_transfer.total["{#NAME}",rate]','0','7d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data transfer rate, in bytes per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','4dd1d47335a9425a94ffcee4c8ed2216');
INSERT INTO `items` (`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`,`uuid`) values ('43391','18','','10525','Volume [{#NAME}]: Data transfer rate: Writes','hpe.msa.volumes.data_transfer.writes["{#NAME}",rate]','0','7d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data write rate, in bytes per second.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','d5198b50ba8f4db1aa160d0208540a74');
INSERT INTO `items` (`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`,`uuid`) values ('43392','18','','10525','Volume [{#NAME}]: IOPS, read rate','hpe.msa.volumes.iops.read["{#NAME}",rate]','0','7d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of read operations per second.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','00f5c3f9d19d450e999c389ba297fb41');
INSERT INTO `items` (`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`,`uuid`) values ('43393','18','','10525','Volume [{#NAME}]: IOPS, total rate','hpe.msa.volumes.iops.total["{#NAME}",rate]','0','7d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Total input/output operations per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','b925122eda0c4c1380b843bc764ed122');
INSERT INTO `items` (`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`,`uuid`) values ('43394','18','','10525','Volume [{#NAME}]: IOPS, write rate','hpe.msa.volumes.iops.write["{#NAME}",rate]','0','7d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of write operations per second.','0','30d','0','','43278','3s','','','','200','1','0','','0','0','0','0','0','0','0','a9fcc1525204489cad52cf4e88518064');
INSERT INTO `items` (`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`,`uuid`) values ('43397','18','','10526','HPE Primera: Software version number','hpe.primera.system.sw_version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Storage system software version number.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','e0f0ff7657784c8eab1a71a68ceefc19');
INSERT INTO `items` (`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`,`uuid`) values ('43398','18','','10526','HPE Primera: Serial number','hpe.primera.system.serial_number','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System serial number.','8','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','d194672ea7f64dd58296d7fb2537f35b');
INSERT INTO `items` (`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`,`uuid`) values ('43399','18','','10526','HPE Primera: Nodes total','hpe.primera.system.nodes.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of nodes in the system.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','65b22e04d7334aaf970a8961a46c22c9');
INSERT INTO `items` (`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`,`uuid`) values ('43400','18','','10526','HPE Primera: Nodes online','hpe.primera.system.nodes.online','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of online nodes in the system.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','acf6d37022884dc99a3b55c95f6b19c8');
INSERT INTO `items` (`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`,`uuid`) values ('43401','18','','10526','HPE Primera: System name','hpe.primera.system.name','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System name.','3','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','45281453bf204365a8a8ac2ba7255e54');
INSERT INTO `items` (`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`,`uuid`) values ('43402','18','','10526','HPE Primera: Model','hpe.primera.system.model','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System model.','29','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','5f28ec66be1f43208139476af3653997');
INSERT INTO `items` (`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`,`uuid`) values ('43403','18','','10526','HPE Primera: Get errors','hpe.primera.data.errors','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from WSAPI requests.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','484a6b9568234bbca9b4bcae2833bbf1');
INSERT INTO `items` (`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`,`uuid`) values ('43404','18','','10526','HPE Primera: System location','hpe.primera.system.location','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Location of the system.','24','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','dd61f3a680284893801c96bdbd445645');
INSERT INTO `items` (`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`,`uuid`) values ('43405','18','','10526','HPE Primera: Chunklet size','hpe.primera.system.chunklet.size','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Chunklet size.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','65bcf3fb456a45358795d2f9d8249e16');
INSERT INTO `items` (`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`,`uuid`) values ('43406','18','','10526','HPE Primera: Capacity total','hpe.primera.system.capacity.total','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total capacity in the system.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','1e6fc0d68d18474e84b4fe2e4d3374d1');
INSERT INTO `items` (`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`,`uuid`) values ('43407','18','','10526','HPE Primera: Capacity free','hpe.primera.system.capacity.free','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Free capacity in the system.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','d23e888299d344238468481689f55e2d');
INSERT INTO `items` (`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`,`uuid`) values ('43408','18','','10526','HPE Primera: Capacity failed','hpe.primera.system.capacity.failed','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Failed capacity in the system.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','e3842eec2e45443681670d3c1d194900');
INSERT INTO `items` (`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`,`uuid`) values ('43409','18','','10526','HPE Primera: Capacity allocated','hpe.primera.system.capacity.allocated','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Allocated capacity in the system.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','efc450d0682c4c5d93df41d05c10eceb');
INSERT INTO `items` (`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`,`uuid`) values ('43410','18','','10526','HPE Primera: Disks total','hpe.primera.disks.total','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of physical disks.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','d5b8a74991d34652973a78d58203d5fd');
INSERT INTO `items` (`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`,`uuid`) values ('43411','18','','10526','HPE Primera: System contact','hpe.primera.system.contact','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Contact of the system.','23','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','dd6fd61256cc4eeeb94f50d0c86fc51f');
INSERT INTO `items` (`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`,`uuid`) values ('43412','18','','10526','Common provisioning groups discovery','hpe.primera.cpg.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'List of CPGs resources.','0','30d','1','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','b9132b095eb349c99e868ea40364596d');
INSERT INTO `items` (`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`,`uuid`) values ('43413','18','','10526','Disks discovery','hpe.primera.disks.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'List of physical disk resources.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','a83ed573e6ab40e8b7306178ddd2658b');
INSERT INTO `items` (`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`,`uuid`) values ('43414','18','','10526','Hosts discovery','hpe.primera.hosts.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'List of host properties.','0','30d','1','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','77ae172949044c148ac8f56f05d3af33');
INSERT INTO `items` (`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`,`uuid`) values ('43415','18','','10526','Ports discovery','hpe.primera.ports.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'List of ports.','0','30d','1','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','3c9222777f2649749df76cbf61601557');
INSERT INTO `items` (`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`,`uuid`) values ('43416','18','','10526','Tasks discovery','hpe.primera.tasks.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'List of tasks started within last 24 hours.','0','1d','1','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','b47a6afafca6486ea4ffb12dd3322bab');
INSERT INTO `items` (`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`,`uuid`) values ('43417','18','','10526','Volumes discovery','hpe.primera.volumes.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'List of storage volume resources.','0','30d','1','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','eb73fcc415c54ac18840d2655f048f6c');
INSERT INTO `items` (`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`,`uuid`) values ('43418','18','','10526','CPG [{#NAME}]: Number of FPVVs','hpe.primera.cpg.fpvv["{#ID}",count]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of FPVVs (Fully Provisioned Virtual Volumes) allocated in the CPG.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','6d070a747a01498b94c56da721a63192');
INSERT INTO `items` (`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`,`uuid`) values ('43419','18','','10526','CPG [{#NAME}]: Logical disk space: User space: Used (raw)','hpe.primera.cpg.space.usr["{#ID}",raw_used]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of physical (raw) logical disk used in user data space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','1feabd57f12a48b98dab098435179725');
INSERT INTO `items` (`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`,`uuid`) values ('43420','18','','10526','CPG [{#NAME}]: Number of TDVVs','hpe.primera.cpg.tdvv["{#ID}",count]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of TDVVs (Thinly Deduplicated Virtual Volume) created in the CPG.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','18544a7742af4678bd8c37ad84a8d137');
INSERT INTO `items` (`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`,`uuid`) values ('43421','18','','10526','CPG [{#NAME}]: State','hpe.primera.cpg.state["{#ID}"]','0','7d','365d','0','3','','','','',NULL,'1001','','','0','','','','','2',NULL,'Overall state of the CPG:\r\n\r\nNORMAL (1) - normal operation;\r\nDEGRADED (2) - degraded state;\r\nFAILED (3) - abnormal operation;\r\nUNKNOWN (99) - unknown state.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','3fe9b7c875c248e3b09c98162e30ebf8');
INSERT INTO `items` (`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`,`uuid`) values ('43422','18','','10526','CPG [{#NAME}]: Failed state','hpe.primera.cpg.state["{#ID}",failed]','0','7d','0','0','1','','','','',NULL,'1006','','','0','','','','','2',NULL,'Detailed state of the CPG:\r\n\r\nLDS_NOT_STARTED (1) - LDs not started.\r\nNOT_STARTED (2) - VV not started.\r\nNEEDS_CHECK (3) - check for consistency.\r\nNEEDS_MAINT_CHECK (4) - maintenance check is required.\r\nINTERNAL_CONSISTENCY_ERROR (5) - internal consistency error.\r\nSNAPDATA_INVALID (6) - invalid snapshot data.\r\nPRESERVED (7) - unavailable LD sets due to missing chunklets. Preserved remaining VV data.\r\nSTALE (8) - parts of the VV contain old data because of a copy-on-write operation.\r\nCOPY_FAILED (9) - a promote or copy operation to this volume failed.\r\nDEGRADED_AVAIL (10) - degraded due to availability.\r\nDEGRADED_PERF (11) - degraded due to performance.\r\nPROMOTING (12) - volume is the current target of a promote operation.\r\nCOPY_TARGET (13) - volume is the current target of a physical copy operation.\r\nRESYNC_TARGET (14) - volume is the current target of a resynchronized copy operation.\r\nTUNING (15) - volume tuning is in progress.\r\nCLOSING (16) - volume is closing.\r\nREMOVING (17) - removing the volume.\r\nREMOVING_RETRY (18) - retrying a volume removal operation.\r\nCREATING (19) - creating a volume.\r\nCOPY_SOURCE (20) - copy source.\r\nIMPORTING (21) - importing a volume.\r\nCONVERTING (22) - converting a volume.\r\nINVALID (23) - invalid.\r\nEXCLUSIVE (24) - local storage system has exclusive access to the volume.\r\nCONSISTENT (25) - volume is being imported consistently along with other volumes in the VV set.\r\nSTANDBY (26) - volume in standby mode.\r\nSD_META_INCONSISTENT (27) - SD Meta Inconsistent.\r\nSD_NEEDS_FIX (28) - SD needs fix.\r\nSD_META_FIXING (29) - SD meta fix.\r\nUNKNOWN (999) - unknown state.\r\nNOT_SUPPORTED_BY_WSAPI (1000) - state not supported by WSAPI.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','837b48053400487885bf051a78f2200a');
INSERT INTO `items` (`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`,`uuid`) values ('43423','18','','10526','CPG [{#NAME}]: Degraded state','hpe.primera.cpg.state["{#ID}",degraded]','0','7d','0','0','1','','','','',NULL,'1006','','','0','','','','','2',NULL,'Detailed state of the CPG:\r\n\r\nLDS_NOT_STARTED (1) - LDs not started.\r\nNOT_STARTED (2) - VV not started.\r\nNEEDS_CHECK (3) - check for consistency.\r\nNEEDS_MAINT_CHECK (4) - maintenance check is required.\r\nINTERNAL_CONSISTENCY_ERROR (5) - internal consistency error.\r\nSNAPDATA_INVALID (6) - invalid snapshot data.\r\nPRESERVED (7) - unavailable LD sets due to missing chunklets. Preserved remaining VV data.\r\nSTALE (8) - parts of the VV contain old data because of a copy-on-write operation.\r\nCOPY_FAILED (9) - a promote or copy operation to this volume failed.\r\nDEGRADED_AVAIL (10) - degraded due to availability.\r\nDEGRADED_PERF (11) - degraded due to performance.\r\nPROMOTING (12) - volume is the current target of a promote operation.\r\nCOPY_TARGET (13) - volume is the current target of a physical copy operation.\r\nRESYNC_TARGET (14) - volume is the current target of a resynchronized copy operation.\r\nTUNING (15) - volume tuning is in progress.\r\nCLOSING (16) - volume is closing.\r\nREMOVING (17) - removing the volume.\r\nREMOVING_RETRY (18) - retrying a volume removal operation.\r\nCREATING (19) - creating a volume.\r\nCOPY_SOURCE (20) - copy source.\r\nIMPORTING (21) - importing a volume.\r\nCONVERTING (22) - converting a volume.\r\nINVALID (23) - invalid.\r\nEXCLUSIVE (24) - local storage system has exclusive access to the volume.\r\nCONSISTENT (25) - volume is being imported consistently along with other volumes in the VV set.\r\nSTANDBY (26) - volume in standby mode.\r\nSD_META_INCONSISTENT (27) - SD Meta Inconsistent.\r\nSD_NEEDS_FIX (28) - SD needs fix.\r\nSD_META_FIXING (29) - SD meta fix.\r\nUNKNOWN (999) - unknown state.\r\nNOT_SUPPORTED_BY_WSAPI (1000) - state not supported by WSAPI.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','a7e2188d600a4715a58deba46f3b46ac');
INSERT INTO `items` (`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`,`uuid`) values ('43424','18','','10526','CPG [{#NAME}]: CPG space: Total','hpe.primera.cpg.space["{#ID}",total]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total CPG space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','3950d779a0394615b8ec311525ed4168');
INSERT INTO `items` (`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`,`uuid`) values ('43425','18','','10526','CPG [{#NAME}]: CPG space: Shared','hpe.primera.cpg.space["{#ID}",shared]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Shared CPG space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','17cf1cddafd444f8a5616a472c1a019b');
INSERT INTO `items` (`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`,`uuid`) values ('43426','18','','10526','CPG [{#NAME}]: CPG space: Free','hpe.primera.cpg.space["{#ID}",free]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Free CPG space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','a6cd977f27a8463cb385715327e34955');
INSERT INTO `items` (`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`,`uuid`) values ('43427','18','','10526','CPG [{#NAME}]: Logical disk space: User space: Used','hpe.primera.cpg.space.usr["{#ID}",used]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of logical disk used in user data space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','c21f77a45ab443099bf957fbb39478f3');
INSERT INTO `items` (`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`,`uuid`) values ('43428','18','','10526','CPG [{#NAME}]: Logical disk space: User space: Total','hpe.primera.cpg.space.usr["{#ID}",total]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total logical disk space in user data space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','6f85014bc639420aa409d97d42cb75b2');
INSERT INTO `items` (`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`,`uuid`) values ('43429','18','','10526','CPG [{#NAME}]: Logical disk space: User space: Total (raw)','hpe.primera.cpg.space.usr["{#ID}",raw_total]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total physical (raw) logical disk space in user data space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','b7a8880bdafe4f0da4dd8cee6d4fdfa4');
INSERT INTO `items` (`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`,`uuid`) values ('43430','18','','10526','CPG [{#NAME}]: Raw space: Free','hpe.primera.cpg.space.raw["{#ID}",free]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw free space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','a7fccd5afcf5469ca11a9436240eab5c');
INSERT INTO `items` (`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`,`uuid`) values ('43431','18','','10526','CPG [{#NAME}]: Logical disk space: Snapshot data: Used','hpe.primera.cpg.space.sd["{#ID}",used]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of logical disk used in snapshot data space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','51e40f6a1eb249d58bd79948d403d4f7');
INSERT INTO `items` (`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`,`uuid`) values ('43432','18','','10526','CPG [{#NAME}]: Logical disk space: Snapshot data: Total','hpe.primera.cpg.space.sd["{#ID}",total]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total logical disk space in snapshot data space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','797f3335d8704d4bb8b53e34b3e6589e');
INSERT INTO `items` (`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`,`uuid`) values ('43433','18','','10526','CPG [{#NAME}]: Logical disk space: Snapshot data: Used (raw)','hpe.primera.cpg.space.sd["{#ID}",raw_used]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of physical (raw) logical disk used in snapshot data space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','f95ee3c4c0c64d46a47dd68b346f2fa5');
INSERT INTO `items` (`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`,`uuid`) values ('43434','18','','10526','CPG [{#NAME}]: Logical disk space: Snapshot data: Total (raw)','hpe.primera.cpg.space.sd["{#ID}",raw_total]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total physical (raw) logical disk space in snapshot data space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','61dd9aa18c714863b606d18b2fff6c57');
INSERT INTO `items` (`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`,`uuid`) values ('43435','18','','10526','CPG [{#NAME}]: Logical disk space: Snapshot administration: Used','hpe.primera.cpg.space.sa["{#ID}",used]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of logical disk used in snapshot administration.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','cf467bc7d9ac45259f284eeab6ae7f6a');
INSERT INTO `items` (`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`,`uuid`) values ('43436','18','','10526','CPG [{#NAME}]: Logical disk space: Snapshot administration: Total','hpe.primera.cpg.space.sa["{#ID}",total]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total logical disk space in snapshot administration.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','d55f0eab811641fdbb9a8bc8c54815ee');
INSERT INTO `items` (`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`,`uuid`) values ('43437','18','','10526','CPG [{#NAME}]: Logical disk space: Snapshot administration: Used (raw)','hpe.primera.cpg.space.sa["{#ID}",raw_used]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of physical (raw) logical disk used in snapshot administration.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','8b2dc75fdcfa48908ece97768641f055');
INSERT INTO `items` (`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`,`uuid`) values ('43438','18','','10526','CPG [{#NAME}]: Logical disk space: Snapshot administration: Total (raw)','hpe.primera.cpg.space.sa["{#ID}",raw_total]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total physical (raw) logical disk space in snapshot administration.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','6dfd722ad85b481a9c2b04a4a5eb91fe');
INSERT INTO `items` (`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`,`uuid`) values ('43439','18','','10526','CPG [{#NAME}]: Raw space: Total','hpe.primera.cpg.space.raw["{#ID}",total]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw total space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','e3ac07e2707a44fd8c166f4618fd79a1');
INSERT INTO `items` (`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`,`uuid`) values ('43440','18','','10526','CPG [{#NAME}]: Raw space: Shared','hpe.primera.cpg.space.raw["{#ID}",shared]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw shared space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','8f26a54327f54e968f422081e6045217');
INSERT INTO `items` (`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`,`uuid`) values ('43441','18','','10526','CPG [{#NAME}]: Number of TPVVs','hpe.primera.cpg.tpvv["{#ID}",count]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of TPVVs (Thinly Provisioned Virtual Volumes) allocated in the CPG.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','f93dc70fa63a47da9253a447a67df685');
INSERT INTO `items` (`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`,`uuid`) values ('43442','18','','10526','Disk [{#POSITION}]: Free size','hpe.primera.disk["{#ID}",free_size]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Physical disk free size.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','40e074af5d7f44bb8691290971fc7c5c');
INSERT INTO `items` (`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`,`uuid`) values ('43443','18','','10526','Disk [{#POSITION}]: Firmware version','hpe.primera.disk["{#ID}",fw_version]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Physical disk firmware version.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','9bb7a86118614d339b4dee3238b261ff');
INSERT INTO `items` (`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`,`uuid`) values ('43444','18','','10526','Disk [{#POSITION}]: Path A0 degraded','hpe.primera.disk["{#ID}",loop_a0_degraded]','0','7d','365d','0','3','','','','',NULL,'993','','','0','','','','','2',NULL,'Indicates if this is a degraded path for the disk.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','288f7eef0a7c43afa7a3623471c92097');
INSERT INTO `items` (`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`,`uuid`) values ('43445','18','','10526','Disk [{#POSITION}]: Path A1 degraded','hpe.primera.disk["{#ID}",loop_a1_degraded]','0','7d','365d','0','3','','','','',NULL,'993','','','0','','','','','2',NULL,'Indicates if this is a degraded path for the disk.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','1e89322b49fb46bdacd22a562995f2fc');
INSERT INTO `items` (`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`,`uuid`) values ('43446','18','','10526','Disk [{#POSITION}]: Path B0 degraded','hpe.primera.disk["{#ID}",loop_b0_degraded]','0','7d','365d','0','3','','','','',NULL,'993','','','0','','','','','2',NULL,'Indicates if this is a degraded path for the disk.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','2b56e5a6ffbd4e6189fff707d508f955');
INSERT INTO `items` (`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`,`uuid`) values ('43447','18','','10526','Disk [{#POSITION}]: Path B1 degraded','hpe.primera.disk["{#ID}",loop_b1_degraded]','0','7d','365d','0','3','','','','',NULL,'993','','','0','','','','','2',NULL,'Indicates if this is a degraded path for the disk.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','cfb88804564d4e0c914760daec53276f');
INSERT INTO `items` (`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`,`uuid`) values ('43448','18','','10526','Disk [{#POSITION}]: Manufacturer','hpe.primera.disk["{#ID}",manufacturer]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Physical disk manufacturer.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','1387d1129e4a418e91fb0e99179116f5');
INSERT INTO `items` (`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`,`uuid`) values ('43449','18','','10526','Disk [{#POSITION}]: Model','hpe.primera.disk["{#ID}",model]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Manufacturer\'s device ID for disk.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','1892d6230e244e1089a5eca8654ba2fa');
INSERT INTO `items` (`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`,`uuid`) values ('43450','18','','10526','Disk [{#POSITION}]: RPM','hpe.primera.disk["{#ID}",rpm]','0','7d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'RPM of the physical disk.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','495ceedbdf1644fdb56cf56123c1ec01');
INSERT INTO `items` (`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`,`uuid`) values ('43451','18','','10526','Disk [{#POSITION}]: Serial number','hpe.primera.disk["{#ID}",serial_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk drive serial number.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','07fa233e273d4d6e9813705d0afc82f5');
INSERT INTO `items` (`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`,`uuid`) values ('43452','18','','10526','Disk [{#POSITION}]: State','hpe.primera.disk["{#ID}",state]','0','7d','365d','0','3','','','','',NULL,'994','','','0','','','','','2',NULL,'State of the physical disk:\r\n\r\nNormal (1) - physical disk is in Normal state;\r\nDegraded (2) - physical disk is not operating normally;\r\nNew (3) - physical disk is new, needs to be admitted;\r\nFailed (4) - physical disk has failed;\r\nUnknown (99) - physical disk state is unknown.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','acb23a0dc2674f57bada95dd12972662');
INSERT INTO `items` (`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`,`uuid`) values ('43453','18','','10526','Disk [{#POSITION}]: Total size','hpe.primera.disk["{#ID}",total_size]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Physical disk total size.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','83395e3165c949e8997e93bfce0ac1d0');
INSERT INTO `items` (`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`,`uuid`) values ('43454','18','','10526','Host [{#NAME}]: Comment','hpe.primera.host["{#ID}",comment]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Additional information for the host.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','142a03a36dbf477ebbcb99994efe4246');
INSERT INTO `items` (`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`,`uuid`) values ('43455','18','','10526','Host [{#NAME}]: Contact','hpe.primera.host["{#ID}",contact]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The host\'s owner and contact.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','44a06761b5174c67ace5487b7ec9f0e5');
INSERT INTO `items` (`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`,`uuid`) values ('43456','18','','10526','Host [{#NAME}]: IP address','hpe.primera.host["{#ID}",ipaddress]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The host\'s IP address.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','b3bd017e96d843248bbb9cb2240e861b');
INSERT INTO `items` (`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`,`uuid`) values ('43457','18','','10526','Host [{#NAME}]: Location','hpe.primera.host["{#ID}",location]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The host\'s location.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','367466a0f7084e579f3c11d820dc7f04');
INSERT INTO `items` (`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`,`uuid`) values ('43458','18','','10526','Host [{#NAME}]: Model','hpe.primera.host["{#ID}",model]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The host\'s model.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','997e52f8f50e47738a1aefbcedaa5a82');
INSERT INTO `items` (`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`,`uuid`) values ('43459','18','','10526','Host [{#NAME}]: OS','hpe.primera.host["{#ID}",os]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The operating system running on the host.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','4db5068c8aea4940adb5f8863d50ef47');
INSERT INTO `items` (`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`,`uuid`) values ('43460','18','','10526','Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Failover state','hpe.primera.port["{#NODE}:{#SLOT}:{#CARD.PORT}",failover_state]','0','7d','365d','0','3','','','','',NULL,'997','','','0','','','','','2',NULL,'The state of the failover operation, shown for the two ports indicated in the N:S:P and Partner columns. The value can be one of the following:\r\n\r\nnone (1) - no failover in operation;\r\nfailover_pending (2) - in the process of failing over to partner;\r\nfailed_over (3) - failed over to partner;\r\nactive (4) - the partner port is failed over to this port;\r\nactive_down (5) - the partner port is failed over to this port, but this port is down;\r\nactive_failed (6) - the partner port is failed over to this port, but this port is down;\r\nfailback_pending (7) - in the process of failing back from partner.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','9241e0b26de74ea49f28e1c09e15a2cd');
INSERT INTO `items` (`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`,`uuid`) values ('43461','18','','10526','Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Hardware type','hpe.primera.port["{#NODE}:{#SLOT}:{#CARD.PORT}",hw_type]','0','7d','365d','0','3','','','','',NULL,'995','','','0','','','','','2',NULL,'Hardware type:\r\n\r\nFC (1) - Fibre channel HBA;\r\nETH (2) - Ethernet NIC;\r\niSCSI (3) - iSCSI HBA;\r\nCNA (4) - Converged network adapter;\r\nSAS (5) - SAS HBA;\r\nCOMBO (6) - Combo card;\r\nNVME (7) - NVMe drive;\r\nUNKNOWN (99) - unknown hardware type.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','8abba6d6f6e749b0be277056421a1958');
INSERT INTO `items` (`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`,`uuid`) values ('43462','18','','10526','Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Link state','hpe.primera.port["{#NODE}:{#SLOT}:{#CARD.PORT}",link_state]','0','7d','365d','0','3','','','','',NULL,'998','','','0','','','','','2',NULL,'Port link state:\r\n\r\nCONFIG_WAIT (1) - configuration wait;\r\nALPA_WAIT (2) - ALPA wait;\r\nLOGIN_WAIT (3) - login wait;\r\nREADY (4) - link is ready;\r\nLOSS_SYNC (5) - link is loss sync;\r\nERROR_STATE (6) - in error state;\r\nXXX (7) - xxx;\r\nNONPARTICIPATE (8) - link did not participate;\r\nCOREDUMP (9) - taking coredump;\r\nOFFLINE (10) - link is offline;\r\nFWDEAD (11) - firmware is dead;\r\nIDLE_FOR_RESET (12) - link is idle for reset;\r\nDHCP_IN_PROGRESS (13) - DHCP is in progress;\r\nPENDING_RESET (14) - link reset is pending;\r\nNEW (15) - link in new. This value is applicable for only virtual ports;\r\nDISABLED (16) - link in disabled. This value is applicable for only virtual ports;\r\nDOWN (17) - link in down. This value is applicable for only virtual ports;\r\nFAILED (18) - link in failed. This value is applicable for only virtual ports;\r\nPURGING (19) - link in purging. This value is applicable for only virtual ports.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','55119ce474024203ac039f4aa797dd4c');
INSERT INTO `items` (`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`,`uuid`) values ('43463','18','','10526','Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Type','hpe.primera.port["{#NODE}:{#SLOT}:{#CARD.PORT}",type]','0','7d','365d','0','3','','','','',NULL,'996','','','0','','','','','2',NULL,'Port connection type:\r\n\r\nHOST (1) - FC port connected to hosts or fabric;\r\nDISK (2) - FC port connected to disks;\r\nFREE (3) - port is not connected to hosts or disks;\r\nIPORT (4) - port is in iport mode;\r\nRCFC (5) - FC port used for remote copy;\r\nPEER (6) - FC port used for data migration;\r\nRCIP (7) - IP (Ethernet) port used for remote copy;\r\nISCSI (8) - iSCSI (Ethernet) port connected to hosts;\r\nCNA (9) - CNA port, which can be FCoE or iSCSI;\r\nFS (10) - Ethernet File Persona ports.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','c049e53b25bb4cb58cabbff1d91b3e88');
INSERT INTO `items` (`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`,`uuid`) values ('43464','18','','10526','Task [{#NAME}]: Finish time','hpe.primera.task["{#ID}",finish_time]','0','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Task finish time.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','cbcdf169dcf646cb959206bbb6cf3642');
INSERT INTO `items` (`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`,`uuid`) values ('43465','18','','10526','Task [{#NAME}]: Start time','hpe.primera.task["{#ID}",start_time]','0','7d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Task start time.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','66140b134d954319a96eb17750da6b7c');
INSERT INTO `items` (`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`,`uuid`) values ('43466','18','','10526','Task [{#NAME}]: Status','hpe.primera.task["{#ID}",status]','0','7d','365d','0','3','','','','',NULL,'1002','','','0','','','','','2',NULL,'Task status:\r\n\r\nDONE (1) - task is finished;\r\nACTIVE (2) - task is in progress;\r\nCANCELLED (3) - task is canceled;\r\nFAILED (4) - task failed.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','e01b3c84a6594e419c358c7ea297159b');
INSERT INTO `items` (`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`,`uuid`) values ('43467','18','','10526','Task [{#NAME}]: Type','hpe.primera.task["{#ID}",type]','0','7d','365d','0','3','','','','',NULL,'1003','','','0','','','','','2',NULL,'Task type:\r\n\r\nVV_COPY (1) - track the physical copy operations;\r\nPHYS_COPY_RESYNC (2) - track physical copy resynchronization operations;\r\nMOVE_REGIONS (3) - track region move operations;\r\nPROMOTE_SV (4) - track virtual-copy promotions;\r\nREMOTE_COPY_SYNC (5) - track remote copy group synchronizations;\r\nREMOTE_COPY_REVERSE (6) - track the reversal of a remote copy group;\r\nREMOTE_COPY_FAILOVER (7) - track the change-over of a secondary volume group to a primaryvolume group;REMOTE_COPY_RECOVER (8) - track synchronization start after a failover operation from originalsecondary cluster to original primary cluster;\r\nREMOTE_COPY_RESTORE (9) - tracks the restoration process for groups that have already beenrecovered;\r\nCOMPACT_CPG (10) - track space consolidation in CPGs;\r\nCOMPACT_IDS (11) - track space consolidation in logical disks;\r\nSNAPSHOT_ACCOUNTING (12) - track progress of snapshot space usage accounting;\r\nCHECK_VV (13) - track the progress of the check-volume operation;\r\nSCHEDULED_TASK (14) - track tasks that have been executed by the system scheduler;\r\nSYSTEM_TASK (15) - track tasks that are periodically run by the storage system;\r\nBACKGROUND_TASK (16) - track commands started using the starttask command;\r\nIMPORT_VV (17) - track tasks that migrate data to the local storage system;\r\nONLINE_COPY (18) - track physical copy of the volume while online (createvvcopy-online command);\r\nCONVERT_VV (19) - track tasks that convert a volume from an FPVV to a TPVV, and the reverse;\r\nBACKGROUND_COMMAND (20) - track background command tasks;\r\nCLX_SYNC (21) - track CLX synchronization tasks;\r\nCLX_RECOVERY (22) - track CLX recovery tasks;\r\nTUNE_SD (23) - tune copy space;\r\nTUNE_VV (24) - tune virtual volume;\r\nTUNE_VV_ROLLBACK (25) - tune virtual volume rollback;\r\nTUNE_VV_RESTART (26) - tune virtual volume restart;\r\nSYSTEM_TUNING (27) - system tuning;\r\nNODE_RESCUE (28) - node rescue;\r\nREPAIR_SYNC (29) - remote copy repair sync;\r\nREMOTE_COPY_SWOVER (30) - remote copy switchover;\r\nDEFRAGMENTATION (31) - defragmentation;\r\nENCRYPTION_CHANGE (32) - encryption change;\r\nREMOTE_COPY_FAILSAFE (33) - remote copy failsafe;\r\nTUNE_TPVV (34) - tune thin virtual volume;\r\nREMOTE_COPY_CHG_MODE (35) - remote copy change mode;\r\nONLINE_PROMOTE (37) - online promote snap;\r\nRELOCATE_PD (38) - relocate PD;\r\nPERIODIC_CSS (39) - remote copy periodic CSS;\r\nTUNEVV_LARGE (40) - tune large virtual volume;\r\nSD_META_FIXER (41) - compression SD meta fixer;\r\nDEDUP_DRYRUN (42) - preview dedup ratio;\r\nCOMPR_DRYRUN (43) - compression estimation;\r\nDEDUP_COMPR_DRYRUN (44) - compression and dedup estimation;\r\nUNKNOWN (99) - unknown task type.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','a67262cd7be642b9b56194d8bbb7e928');
INSERT INTO `items` (`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`,`uuid`) values ('43468','18','','10526','Volume [{#NAME}]: Compaction ratio','hpe.primera.volume.capacity.efficiency["{#ID}",compaction]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The compaction ratio indicates the overall amount of storage space saved with thin technology.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','40db4c8f6d85414e843c97770225f93d');
INSERT INTO `items` (`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`,`uuid`) values ('43469','18','','10526','Volume [{#NAME}]: Total space','hpe.primera.volume.space.total["{#ID}",size]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Virtual size of volume.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','af15ec5befd146afbfb2b9cc017d03be');
INSERT INTO `items` (`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`,`uuid`) values ('43470','18','','10526','Volume [{#NAME}]: State','hpe.primera.volume.state["{#ID}"]','0','7d','365d','0','3','','','','',NULL,'1001','','','0','','','','','2',NULL,'State of the volume:\r\n\r\nNORMAL (1) - normal operation;\r\nDEGRADED (2) - degraded state;\r\nFAILED (3) - abnormal operation;\r\nUNKNOWN (99) - unknown state.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','4d4e34fdbac84cada109cbfe9b69812c');
INSERT INTO `items` (`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`,`uuid`) values ('43471','18','','10526','Volume [{#NAME}]: Failed state','hpe.primera.volume.state["{#ID}",failed]','0','7d','0','0','1','','','','',NULL,'1006','','','0','','','','','2',NULL,'Volume detailed state:\r\n\r\nLDS_NOT_STARTED (1) - LDs not started.\r\nNOT_STARTED (2) - VV not started.\r\nNEEDS_CHECK (3) - check for consistency.\r\nNEEDS_MAINT_CHECK (4) - maintenance check is required.\r\nINTERNAL_CONSISTENCY_ERROR (5) - internal consistency error.\r\nSNAPDATA_INVALID (6) - invalid snapshot data.\r\nPRESERVED (7) - unavailable LD sets due to missing chunklets. Preserved remaining VV data.\r\nSTALE (8) - parts of the VV contain old data because of a copy-on-write operation.\r\nCOPY_FAILED (9) - a promote or copy operation to this volume failed.\r\nDEGRADED_AVAIL (10) - degraded due to availability.\r\nDEGRADED_PERF (11) - degraded due to performance.\r\nPROMOTING (12) - volume is the current target of a promote operation.\r\nCOPY_TARGET (13) - volume is the current target of a physical copy operation.\r\nRESYNC_TARGET (14) - volume is the current target of a resynchronized copy operation.\r\nTUNING (15) - volume tuning is in progress.\r\nCLOSING (16) - volume is closing.\r\nREMOVING (17) - removing the volume.\r\nREMOVING_RETRY (18) - retrying a volume removal operation.\r\nCREATING (19) - creating a volume.\r\nCOPY_SOURCE (20) - copy source.\r\nIMPORTING (21) - importing a volume.\r\nCONVERTING (22) - converting a volume.\r\nINVALID (23) - invalid.\r\nEXCLUSIVE (24) - local storage system has exclusive access to the volume.\r\nCONSISTENT (25) - volume is being imported consistently along with other volumes in the VV set.\r\nSTANDBY (26) - volume in standby mode.\r\nSD_META_INCONSISTENT (27) - SD Meta Inconsistent.\r\nSD_NEEDS_FIX (28) - SD needs fix.\r\nSD_META_FIXING (29) - SD meta fix.\r\nUNKNOWN (999) - unknown state.\r\nNOT_SUPPORTED_BY_WSAPI (1000) - state not supported by WSAPI.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','462e4b491dd94c78b299178af6d34ca0');
INSERT INTO `items` (`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`,`uuid`) values ('43472','18','','10526','Volume [{#NAME}]: Degraded state','hpe.primera.volume.state["{#ID}",degraded]','0','7d','0','0','1','','','','',NULL,'1006','','','0','','','','','2',NULL,'Volume detailed state:\r\n\r\nLDS_NOT_STARTED (1) - LDs not started.\r\nNOT_STARTED (2) - VV not started.\r\nNEEDS_CHECK (3) - check for consistency.\r\nNEEDS_MAINT_CHECK (4) - maintenance check is required.\r\nINTERNAL_CONSISTENCY_ERROR (5) - internal consistency error.\r\nSNAPDATA_INVALID (6) - invalid snapshot data.\r\nPRESERVED (7) - unavailable LD sets due to missing chunklets. Preserved remaining VV data.\r\nSTALE (8) - parts of the VV contain old data because of a copy-on-write operation.\r\nCOPY_FAILED (9) - a promote or copy operation to this volume failed.\r\nDEGRADED_AVAIL (10) - degraded due to availability.\r\nDEGRADED_PERF (11) - degraded due to performance.\r\nPROMOTING (12) - volume is the current target of a promote operation.\r\nCOPY_TARGET (13) - volume is the current target of a physical copy operation.\r\nRESYNC_TARGET (14) - volume is the current target of a resynchronized copy operation.\r\nTUNING (15) - volume tuning is in progress.\r\nCLOSING (16) - volume is closing.\r\nREMOVING (17) - removing the volume.\r\nREMOVING_RETRY (18) - retrying a volume removal operation.\r\nCREATING (19) - creating a volume.\r\nCOPY_SOURCE (20) - copy source.\r\nIMPORTING (21) - importing a volume.\r\nCONVERTING (22) - converting a volume.\r\nINVALID (23) - invalid.\r\nEXCLUSIVE (24) -lLocal storage system has exclusive access to the volume.\r\nCONSISTENT (25) - volume is being imported consistently along with other volumes in the VV set.\r\nSTANDBY (26) - volume in standby mode.\r\nSD_META_INCONSISTENT (27) - SD Meta Inconsistent.\r\nSD_NEEDS_FIX (28) - SD needs fix.\r\nSD_META_FIXING (29) - SD meta fix.\r\nUNKNOWN (999) - unknown state.\r\nNOT_SUPPORTED_BY_WSAPI (1000) - state not supported by WSAPI.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','83222faf4e3e414789e028e0b17350c6');
INSERT INTO `items` (`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`,`uuid`) values ('43473','18','','10526','Volume [{#NAME}]: Deduplication state','hpe.primera.volume.state["{#ID}",deduplication]','0','7d','365d','0','3','','','','',NULL,'1005','','','0','','','','','2',NULL,'Volume deduplication state:\r\n\r\nYES (1) - enables deduplication on the volume;\r\nNO (2) - disables deduplication on the volume;\r\nNA (3) - deduplication is not available;\r\nOFF (4) - deduplication is turned off.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','3962d07122a0460fa36c1b151a87717b');
INSERT INTO `items` (`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`,`uuid`) values ('43474','18','','10526','Volume [{#NAME}]: Compression state','hpe.primera.volume.state["{#ID}",compression]','0','7d','365d','0','3','','','','',NULL,'1004','','','0','','','','','2',NULL,'Volume compression state:\r\n\r\nYES (1) - compression is enabled on the volume;\r\nNO (2) - compression is disabled on the volume;\r\nOFF (3) - compression is turned off;\r\nNA (4) - compression is not available on the volume.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','beb17415bd07492d83944da714c492e7');
INSERT INTO `items` (`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`,`uuid`) values ('43475','18','','10526','Volume [{#NAME}]: User space: Used','hpe.primera.volume.space.user["{#ID}",used]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used user space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','3adf03216c4f442693fccbb991c0de3d');
INSERT INTO `items` (`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`,`uuid`) values ('43476','18','','10526','Volume [{#NAME}]: User space: Reserved','hpe.primera.volume.space.user["{#ID}",reserved]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Reserved user space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','135ad5457781492db1cec36787151a71');
INSERT INTO `items` (`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`,`uuid`) values ('43477','18','','10526','Volume [{#NAME}]: User space: Raw reserved','hpe.primera.volume.space.user["{#ID}",raw_reserved]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw reserved user space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','97aaefe8dffd4d2eb83f908ac8ad775b');
INSERT INTO `items` (`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`,`uuid`) values ('43478','18','','10526','Volume [{#NAME}]: User space: Free','hpe.primera.volume.space.user["{#ID}",free]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Free user space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','43c278563b174005ac5302ee48e0cd30');
INSERT INTO `items` (`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`,`uuid`) values ('43479','18','','10526','Volume [{#NAME}]: Total used space','hpe.primera.volume.space.total["{#ID}",used]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total used space. Sum of used user space and used snapshot space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','6000ab524b394e65afe111b65f7b6fd8');
INSERT INTO `items` (`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`,`uuid`) values ('43480','18','','10526','Volume [{#NAME}]: Total reserved space','hpe.primera.volume.space.total["{#ID}",reserved]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total reserved space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','64825e4092c6450a8ea7fb7bce2d85ce');
INSERT INTO `items` (`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`,`uuid`) values ('43481','18','','10526','Volume [{#NAME}]: Storage space saved using compression','hpe.primera.volume.capacity.efficiency["{#ID}",compression]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the amount of storage space saved using compression.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','ab2a583c4b4049a6ac8b7bbc02bda8f5');
INSERT INTO `items` (`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`,`uuid`) values ('43482','18','','10526','Volume [{#NAME}]: Snapshot space: Used','hpe.primera.volume.space.snapshot["{#ID}",used]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used snapshot space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','a278f5ec08c747b085ec53a36357539c');
INSERT INTO `items` (`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`,`uuid`) values ('43483','18','','10526','Volume [{#NAME}]: Snapshot space: Reserved','hpe.primera.volume.space.snapshot["{#ID}",reserved]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Reserved snapshot space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','a37265c4598f4179bdcfd816769a1d9b');
INSERT INTO `items` (`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`,`uuid`) values ('43484','18','','10526','Volume [{#NAME}]: Snapshot space: Raw reserved','hpe.primera.volume.space.snapshot["{#ID}",raw_reserved]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw reserved snapshot space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','a2c22eed1c004bcc9292b945b5038858');
INSERT INTO `items` (`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`,`uuid`) values ('43485','18','','10526','Volume [{#NAME}]: Snapshot space: Free','hpe.primera.volume.space.snapshot["{#ID}",free]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Free snapshot space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','5d4659c72ed3492da143ad9c37e71360');
INSERT INTO `items` (`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`,`uuid`) values ('43486','18','','10526','Volume [{#NAME}]: Administrative space: Used','hpe.primera.volume.space.admin["{#ID}",used]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used administrative space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','67e182afc0124cf5913b0499317a7966');
INSERT INTO `items` (`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`,`uuid`) values ('43487','18','','10526','Volume [{#NAME}]: Administrative space: Reserved','hpe.primera.volume.space.admin["{#ID}",reserved]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Reserved administrative space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','e5a93a042a3b41bab4cf59dc71ec66bf');
INSERT INTO `items` (`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`,`uuid`) values ('43488','18','','10526','Volume [{#NAME}]: Administrative space: Raw reserved','hpe.primera.volume.space.admin["{#ID}",raw_reserved]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw reserved administrative space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','e4f9f8f5c1cd494896eba973b072fc57');
INSERT INTO `items` (`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`,`uuid`) values ('43489','18','','10526','Volume [{#NAME}]: Administrative space: Free','hpe.primera.volume.space.admin["{#ID}",free]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Free administrative space.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','bb78eda6a941407581f78cf29ef2b647');
INSERT INTO `items` (`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`,`uuid`) values ('43490','18','','10526','Volume [{#NAME}]: Storage space saved using deduplication and compression','hpe.primera.volume.capacity.efficiency["{#ID}",reduction]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the amount of storage space saved using deduplication and compression together.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','f584938e60f94c46b4ed28cc614c797d');
INSERT INTO `items` (`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`,`uuid`) values ('43491','18','','10526','Volume [{#NAME}]: Overprovisioning ratio','hpe.primera.volume.capacity.efficiency["{#ID}",overprovisioning]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Overprovisioning capacity efficiency ratio.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','3b88e49e88484fe4a77e2a96f6d48322');
INSERT INTO `items` (`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`,`uuid`) values ('43492','18','','10526','Volume [{#NAME}]: Storage space saved using deduplication','hpe.primera.volume.capacity.efficiency["{#ID}",deduplication]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the amount of storage space saved using deduplication.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','1c4d78b2dcd64efbbf710ef602a94573');
INSERT INTO `items` (`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`,`uuid`) values ('43493','18','','10526','Volume [{#NAME}]: Remote copy status','hpe.primera.volume.status["{#ID}",rcopy]','0','7d','0','0','1','','','','',NULL,'999','','','0','','','','','2',NULL,'Remote copy status of the volume:\r\n\r\nNONE (1) - volume is not associated with remote copy;\r\nPRIMARY (2) - volume is the primary copy;\r\nSECONDARY (3) - volume is the secondary copy;\r\nSNAP (4) - volume is the remote copy snapshot;\r\nSYNC (5) - volume is a remote copy snapshot being used for synchronization;\r\nDELETE (6) - volume is a remote copy snapshot that is marked for deletion;\r\nUNKNOWN (99) - remote copy status is unknown for this volume.','0','30d','0','','43396','3s','','','','200','1','0','','0','0','0','0','0','0','0','582544eb48d04a35ab03a9d01901feb9');
INSERT INTO `items` (`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`,`uuid`) values ('43496','18','','10527','HPE Synergy: Get enclosures','hpe.synergy.data.enclosures','0','0d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of enclosures.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','6a12ea452d444c8ca5aec2698709d979');
INSERT INTO `items` (`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`,`uuid`) values ('43497','18','','10527','HPE Synergy: Get errors','hpe.synergy.data.errors','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','c0049d63dffe4cdaafa806796051e06b');
INSERT INTO `items` (`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`,`uuid`) values ('43500','18','','10527','Datacenters discovery','hpe.synergy.datacenters.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the datacenters.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','148ed07fd68049c6976df0bc8ccdc416');
INSERT INTO `items` (`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`,`uuid`) values ('43502','18','','10527','Enclosures discovery','hpe.synergy.enclosures.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of enclosures resources.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','62f5e7c29207459c80163148a6231d8a');
INSERT INTO `items` (`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`,`uuid`) values ('43503','18','','10527','Ethernet networks discovery','hpe.synergy.ethernet.networks.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the ethernet networks.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','386a121cbef74d0d9f625eedd6ed291c');
INSERT INTO `items` (`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`,`uuid`) values ('43504','18','','10527','Fabrics discovery','hpe.synergy.fabrics.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the fabrics.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','67c37bbfab9345d38ed5e576fdb7cb23');
INSERT INTO `items` (`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`,`uuid`) values ('43506','18','','10527','FC networks discovery','hpe.synergy.fc.networks.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the FC networks.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','100519374fc94a4487a871224c483229');
INSERT INTO `items` (`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`,`uuid`) values ('43508','18','','10527','Hypervisor managers discovery','hpe.synergy.hypervisor.managers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the hypervisor managers.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','6d77748c49de4c6c9c0319a52bec29fc');
INSERT INTO `items` (`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`,`uuid`) values ('43509','18','','10527','Interconnects discovery','hpe.synergy.interconnects.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Interconnects are centrally managed by their containing logical interconnect. The interconnect provides a physical view of detailed downlink and uplink port state and configuration, including the current link state, speed, port role (uplink, downlink, or stacking), current pluggable media, power state, and immediate connected neighbor.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','c05507c8d82f4354a813670620298732');
INSERT INTO `items` (`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`,`uuid`) values ('43510','18','','10527','Logical enclosures discovery','hpe.synergy.logical_enclosures.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the logical enclosures.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','eae31026740c4de299a5e52753eb9445');
INSERT INTO `items` (`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`,`uuid`) values ('43513','18','','10527','Racks discovery','hpe.synergy.racks.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the racks.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','de1819e3eab74663b7cbd893c12ea540');
INSERT INTO `items` (`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`,`uuid`) values ('43514','18','','10527','Server hardware discovery','hpe.synergy.server_hardware.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The server hardware resource is a representation of a physical server.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','dfe04e3e5bfd4c73b0f02a6329e3149b');
INSERT INTO `items` (`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`,`uuid`) values ('43515','18','','10527','Storage pools discovery','hpe.synergy.storage_pools.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the storage pools.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','a295686d8b5b4970b1ea5eb67bee55f1');
INSERT INTO `items` (`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`,`uuid`) values ('43516','18','','10527','Storage systems discovery','hpe.synergy.storage_systems.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the storage systems.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','65c71880235345d69327b8cdfbd526e6');
INSERT INTO `items` (`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`,`uuid`) values ('43517','18','','10527','Storage volumes discovery','hpe.synergy.storage_volumes.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the storage volumes.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','8f274eade77c49abb1185f3545630653');
INSERT INTO `items` (`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`,`uuid`) values ('43518','18','','10527','Uplink sets discovery','hpe.synergy.uplink_sets.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the uplink sets.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','d4ba209881884b75b1edd7cca832be79');
INSERT INTO `items` (`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`,`uuid`) values ('43519','18','','10527','Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Power state','hpe.synergy.appliance["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",bay_power_state]','0','7d','365d','0','3','','','','',NULL,'1020','','','0','','','','','2',NULL,'The power state of the appliance bay.\r\n\r\nEFuse - The power state of the bay is that it has been EFused.\r\nReset - The power state of the bay is that it has been reset.\r\nSoftReset - The power state of the bay is that it has been soft reset.\r\nUnknown - The power state of the bay is unknown.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','d3be63fe949c4960ba5a66c546b4ebcd');
INSERT INTO `items` (`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`,`uuid`) values ('43520','18','','10527','Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Model','hpe.synergy.appliance["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",model]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The model name for the appliance.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','08e834ca1ea04357b13d0383cfba8503');
INSERT INTO `items` (`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`,`uuid`) values ('43521','18','','10527','Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Part number','hpe.synergy.appliance["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",part_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The part number of the appliance.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','df7ef9ae030c417e9c3a9b64d22c2bb9');
INSERT INTO `items` (`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`,`uuid`) values ('43522','18','','10527','Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Powered on','hpe.synergy.appliance["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",powered_on]','0','7d','365d','0','3','','','','',NULL,'1007','','','0','','','','','2',NULL,'Yes if the appliance is powered on; false otherwise.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','7921c3c8ac07452d9a0cc47436d10aac');
INSERT INTO `items` (`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`,`uuid`) values ('43523','18','','10527','Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','hpe.synergy.appliance["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",presence]','0','7d','365d','0','3','','','','',NULL,'1008','','','0','','','','','2',NULL,'Indicates whether an appliance is present in the bay:\r\n\r\nAbsent - The device slot is empty.\r\nPresenceNoOp - The device slot is uninitialized.\r\nPresenceUnknown - The device presence is unknown.\r\nPresent - The device slot has a device in it.\r\nSubsumed - The device slot is configured to be part of another device slot. Not applicable for fan or power supply bays.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','d4501f70c9e74f5dbe11ab608629c666');
INSERT INTO `items` (`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`,`uuid`) values ('43524','18','','10527','Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','hpe.synergy.appliance["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",serial_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of the appliance.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','f352ca846fa34ba698b28f8d8883a14d');
INSERT INTO `items` (`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`,`uuid`) values ('43525','18','','10527','Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Spare part number','hpe.synergy.appliance["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",spare_part_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The spare part number of the appliance.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','6d47ed045d904cc780c538a330ba0895');
INSERT INTO `items` (`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`,`uuid`) values ('43526','18','','10527','Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Status','hpe.synergy.appliance["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",status]','0','7d','365d','0','3','','','','',NULL,'1010','','','0','','','','','2',NULL,'The hardware status of the appliance:\r\n\r\nCritical - Needs immediate attention.\r\nDisabled - The resource is currently not operational.\r\nOK - Indicates normal/informational behaviour.\r\nUnknown - The health status is not yet known or cannot be determined.\r\nWarning - Needs attention soon.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','836036ba1abb43bbaaabddaa8bb438d3');
INSERT INTO `items` (`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`,`uuid`) values ('43527','18','','10527','Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: HW version','hpe.synergy.crossbar["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",hw_version]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Hardware version.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','c64e3a01454f473b888e57496ec642d3');
INSERT INTO `items` (`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`,`uuid`) values ('43528','18','','10527','Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Part number','hpe.synergy.crossbar["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",part_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The part number provided by the manufacturer.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','aaa521f31d2d4e04b918892e8e02911d');
INSERT INTO `items` (`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`,`uuid`) values ('43529','18','','10527','Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','hpe.synergy.crossbar["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",presence]','0','7d','365d','0','3','','','','',NULL,'1008','','','0','','','','','2',NULL,'Presence in a bay:\r\n\r\nAbsent - The device slot is empty.\r\nPresenceNoOp - The device slot is uninitialized.\r\nPresenceUnknown - The device presence is unknown.\r\nPresent - The device slot has a device in it.\r\nSubsumed - The device slot is configured to be part of another device slot. Not applicable for fan or power supply bays.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','4c29bf3ba488474188104c51a483949e');
INSERT INTO `items` (`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`,`uuid`) values ('43530','18','','10527','Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','hpe.synergy.crossbar["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",serial_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Serial number.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','c7fe889af0fc43e0b73b20a99b7d193a');
INSERT INTO `items` (`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`,`uuid`) values ('43531','18','','10527','Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Status','hpe.synergy.crossbar["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",status]','0','7d','365d','0','3','','','','',NULL,'1010','','','0','','','','','2',NULL,'Overall health status of the crossbar:\r\n\r\nCritical - Needs immediate attention.\r\nDisabled - The resource is currently not operational.\r\nOK - Indicates normal/informational behaviour.\r\nUnknown - The health status is not yet known or cannot be determined.\r\nWarning - Needs attention soon.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','322073fa57dc49df9b12898a647fe255');
INSERT INTO `items` (`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`,`uuid`) values ('43532','18','','10527','Datacenter [{#NAME}]: State','hpe.synergy.datacenter["{#NAME}",state]','0','7d','365d','0','3','','','','',NULL,'1021','','','0','','','','','2',NULL,'The current state of the resource. Valid values include Adding, AddError, Configured, CredentialError, Refreshing, RefreshError, Removing, RemoveError, and Unmanaged.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','d37c1e2376ba4da5822041ad8ff37c8a');
INSERT INTO `items` (`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`,`uuid`) values ('43533','18','','10527','Datacenter [{#NAME}]: Status','hpe.synergy.datacenter["{#NAME}",status]','0','7d','365d','0','3','','','','',NULL,'1010','','','0','','','','','2',NULL,'Overall health status of the resource. The following are the valid values for the status of the resource:\r\n\r\nOK - indicates normal/informational behavior.\r\nDisabled - indicates that a resource is not operational.\r\nWarning - needs attention soon.\r\nCritical - needs immediate attention.\r\nUnknown - should be avoided, but there may be rare occasions where status is Unknown.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','b9b2a869c6364cbc8ac6eb3ff7511b29');
INSERT INTO `items` (`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`,`uuid`) values ('43534','18','','10527','Device [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Model','hpe.synergy.device["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",model]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Model name of an unsupported device occupying the bay, if available.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','38ecff044b1d4ff88f8e99b21998181a');
INSERT INTO `items` (`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`,`uuid`) values ('43535','18','','10527','Device [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Power allocated','hpe.synergy.device["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",power_allocation]','0','7d','365d','0','3','','W','','',NULL,NULL,'','','0','','','','','2',NULL,'The power allocated for the enclosed blade.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','125d25085af54d509c6f2401a85042dc');
INSERT INTO `items` (`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`,`uuid`) values ('43536','18','','10527','Device [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','hpe.synergy.device["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",presence]','0','7d','365d','0','3','','','','',NULL,'1008','','','0','','','','','2',NULL,'Indicates whether a device is present:\r\n\r\nAbsent - The device slot is empty.\r\nPresenceNoOp - The device slot is uninitialized.\r\nPresenceUnknown - The device presence is unknown.\r\nPresent - The device slot has a device in it.\r\nSubsumed - The device slot is configured to be part of another device slot. Not applicable for fan or power supply bays.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','9167abd4d23445eba156f2529cb5b827');
INSERT INTO `items` (`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`,`uuid`) values ('43537','18','','10527','Device [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','hpe.synergy.device["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",serial_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'If available, the serial number of any device occupying the bay.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','c2c012eab77d425da1c69f65a5078277');
INSERT INTO `items` (`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`,`uuid`) values ('43538','18','','10527','Enclosure [{#NAME}]: Appliance bays count','hpe.synergy.enclosure["{#NAME}",appliance_bay_count]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of appliance bays in the enclosure.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','fb5f6aaec9254d9b998d68d647321a28');
INSERT INTO `items` (`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`,`uuid`) values ('43539','18','','10527','Enclosure [{#NAME}]: Part number','hpe.synergy.enclosure["{#NAME}",part_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The part number of the enclosure.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','2ff00b9a0e2446a88aefc5cd62ca8763');
INSERT INTO `items` (`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`,`uuid`) values ('43540','18','','10527','Enclosure [{#NAME}]: Status','hpe.synergy.enclosure["{#NAME}",status]','0','7d','365d','0','3','','','','',NULL,'1010','','','0','','','','','2',NULL,'Overall health status of the enclosure.\r\nThe enclosure status reflects the hardware health of the enclosure, all bays, and enclosure components (e.g. enclosure mid-plane, fans, power supplies, Synergy Frame Link Modules, and Synergy Composers). It explicitly does not include the status of other HPE OneView resources such as blades (server hardware), interconnects, and drive enclosures.\r\n\r\nCritical - Needs immediate attention.\r\nDisabled - The resource is currently not operational.\r\nOK - Indicates normal/informational behaviour.\r\nUnknown - The health status is not yet known or cannot be determined.\r\nWarning - Needs attention soon.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','a22c6445c8e9491bbd0e08ba63c37659');
INSERT INTO `items` (`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`,`uuid`) values ('43541','18','','10527','Enclosure [{#NAME}]: State reason','hpe.synergy.enclosure["{#NAME}",state_reason]','0','7d','365d','0','3','','','','',NULL,'1025','','','0','','','','','2',NULL,'Indicates the reason the resource in its current state:\r\n\r\nMissing - The enclosure is no longer connected into the frame link topology.\r\nNone - No reason is available, or none applies.\r\nNotAdded - The enclosure has not been added.\r\nNotOwner - The enclosure reports being managed by something other than this HPE OneView.\r\nOperationFailed - A prior operation was interrupted.\r\nUnowned - The enclosure reports not being under management.\r\nUnsupportedFirmware - The firmware version of the enclosure is not supported by this version of HPE OneView.\r\nUpdatingFirmware - A firmware update is in progress.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','6947d7dc74744e05a5b2fbd6ae918f16');
INSERT INTO `items` (`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`,`uuid`) values ('43542','18','','10527','Enclosure [{#NAME}]: State','hpe.synergy.enclosure["{#NAME}",state]','0','7d','365d','0','3','','','','',NULL,'1009','','','0','','','','','2',NULL,'Current resource state of the enclosure:\r\n\r\nAdding - The enclosure is being added.\r\nConfigured - The enclosure is configured and part of a logical enclosure. This is the usual state for an enclosure under full management.\r\nConfiguring - A transient state while the enclosure is being configured for a logical enclosure.\r\nInterrupted - The previous operation on the enclosure did not complete. The operation should be re-attempted.\r\nMonitored - The enclosure is being monitored. It is not part of a logical enclosure and only hardware-control operations are available.\r\nPending - There are pending operations on the enclosure. Additional operations are denied.\r\nRemoveFailed - The previous operation to remove the enclosure did not succeed. The operation should be re-attempted.\r\nRemoving - The enclosure is being removed.\r\nUnmanaged - The enclosure has been discovered, but has not yet been added for management or monitoring.\r\nUnsupported - The enclosure model or version is not currently supported by HPE OneView. It cannot be configured or monitored.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','d70426e6912f4128a58ba0f14dd3b5a0');
INSERT INTO `items` (`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`,`uuid`) values ('43543','18','','10527','Enclosure [{#NAME}]: Serial number','hpe.synergy.enclosure["{#NAME}",serial_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of the enclosure.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','4ee9c37fd5024e3d820f74fe174a42e7');
INSERT INTO `items` (`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`,`uuid`) values ('43544','18','','10527','Enclosure [{#NAME}]: Power supply bays count','hpe.synergy.enclosure["{#NAME}",ps_bay_count]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of power supply bays in the enclosure.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','820f177f59044d28a945642f36b6a193');
INSERT INTO `items` (`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`,`uuid`) values ('43545','18','','10527','Enclosure [{#NAME}]: Total available power','hpe.synergy.enclosure["{#NAME}",power_total_available]','0','7d','365d','0','3','','W','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of unallocated power in the enclosure.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','af45f99643fa40429e8401bf150cd7a1');
INSERT INTO `items` (`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`,`uuid`) values ('43546','18','','10527','Enclosure [{#NAME}]: Total allocated power','hpe.synergy.enclosure["{#NAME}",power_total_allocated]','0','7d','365d','0','3','','W','','',NULL,NULL,'','','0','','','','','2',NULL,'The total amount of power allocated in the enclosure.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','68ad000d8b4e4bd5b2778802426ec764');
INSERT INTO `items` (`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`,`uuid`) values ('43547','18','','10527','Enclosure [{#NAME}]: Power capacity','hpe.synergy.enclosure["{#NAME}",power_capacity]','0','7d','365d','0','3','','W','','',NULL,NULL,'','','0','','','','','2',NULL,'The power capacity based on power mode.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','3c2bf0a14a9847c9925e52aa7e6815f1');
INSERT INTO `items` (`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`,`uuid`) values ('43548','18','','10527','Enclosure [{#NAME}]: Model','hpe.synergy.enclosure["{#NAME}",model]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The enclosure model name, eg, "BladeSystem c7000 Enclosure G2".','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','19447ecdba484d04aff2ff3c90ccaef7');
INSERT INTO `items` (`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`,`uuid`) values ('43549','18','','10527','Enclosure [{#NAME}]: Device bays count','hpe.synergy.enclosure["{#NAME}",device_bay_count]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of device bays in the enclosure.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','e0cc3af5e941491ebbb6227f2ece06a7');
INSERT INTO `items` (`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`,`uuid`) values ('43550','18','','10527','Enclosure [{#NAME}]: Min power supplies for redundant power feed','hpe.synergy.enclosure["{#NAME}",min_ps_redundant]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The minimum number of power supplies needed to fulfill the redundant line feed power mode.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','7adece9356e04a7db4e35fa1e1979e78');
INSERT INTO `items` (`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`,`uuid`) values ('43551','18','','10527','Enclosure [{#NAME}]: Min power supplies','hpe.synergy.enclosure["{#NAME}",min_ps]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The minimum number of power supplies needed.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','8685fbee85b2412b8c53dc82209ca90a');
INSERT INTO `items` (`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`,`uuid`) values ('43552','18','','10527','Enclosure [{#NAME}]: Interconnect bays power','hpe.synergy.enclosure["{#NAME}",interconnect_bay_watts]','0','7d','365d','0','3','','W','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of power allocated for the interconnects in the enclosure.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','153278ea2f8940d18024f220d922130a');
INSERT INTO `items` (`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`,`uuid`) values ('43553','18','','10527','Enclosure [{#NAME}]: Interconnect bays count','hpe.synergy.enclosure["{#NAME}",interconnect_bay_count]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of interconnect bays in the enclosure.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','145729f95cfe42f0a8e8308b856a03a2');
INSERT INTO `items` (`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`,`uuid`) values ('43554','18','','10527','Enclosure [{#NAME}]: Firmware baseline','hpe.synergy.enclosure["{#NAME}",fw_baseline_name]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The name of the current firmware baseline.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','8e2740eea20d4a0fb42b0cef4c894fce');
INSERT INTO `items` (`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`,`uuid`) values ('43555','18','','10527','Enclosure [{#NAME}]: Fan bays count','hpe.synergy.enclosure["{#NAME}",fan_bay_count]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of fan bays in the enclosure.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','d6af8f4c7cf04fe6a41c02e6ff50b98a');
INSERT INTO `items` (`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`,`uuid`) values ('43556','18','','10527','Enclosure [{#NAME}]: Power allocated for fans and management devices','hpe.synergy.enclosure["{#NAME}",fans_mgmt_power]','0','7d','365d','0','3','','W','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of power allocated for the fans and management devices of the enclosure.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','732b7bbca90e458ead5558cea465f88e');
INSERT INTO `items` (`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`,`uuid`) values ('43557','18','','10527','Enclosure [{#NAME}]: Device bays power','hpe.synergy.enclosure["{#NAME}",device_bay_watts]','0','7d','365d','0','3','','W','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of power allocated for the blades in the enclosure.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','e17e34afe0dd4e4ea2534b7762033a83');
INSERT INTO `items` (`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`,`uuid`) values ('43558','18','','10527','Enclosure [{#NAME}]: Type','hpe.synergy.enclosure["{#NAME}",type]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The type of the enclosure, eg, "C7000" or "SY12000" or "SDX".','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','66d773b8d4794752b3ff9b5913ee32f2');
INSERT INTO `items` (`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`,`uuid`) values ('43559','18','','10527','Ethernet network [{#NAME}]: State','hpe.synergy.ethernet.network["{#NAME}",state]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current state of the resource.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','9b69d74467d6440eb98fc6c69c2f6779');
INSERT INTO `items` (`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`,`uuid`) values ('43560','18','','10527','Ethernet network [{#NAME}]: Status','hpe.synergy.ethernet.network["{#NAME}",status]','0','7d','365d','0','3','','','','',NULL,'1010','','','0','','','','','2',NULL,'Overall health status of the resource. The following are the valid values for the status of the resource:\r\n\r\nOK - indicates normal/informational behavior.\r\nDisabled - indicates that a resource is not operational.\r\nWarning - needs attention soon.\r\nCritical - needs immediate attention.\r\nUnknown - should be avoided, but there may be rare occasions where status is Unknown.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','ec1c0f1ec9f34c7aa1d6c9509e4fc6a7');
INSERT INTO `items` (`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`,`uuid`) values ('43561','18','','10527','Fabric [{#NAME}]: State','hpe.synergy.fabric["{#NAME}",state]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current state of the resource.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','9f38d17239ee45d4a22e8f08dde37910');
INSERT INTO `items` (`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`,`uuid`) values ('43562','18','','10527','Fabric [{#NAME}]: Status','hpe.synergy.fabric["{#NAME}",status]','0','7d','365d','0','3','','','','',NULL,'1010','','','0','','','','','2',NULL,'Overall health status of the resource. The following are the valid values for the status of the resource:\r\n\r\nOK - indicates normal/informational behavior.\r\nDisabled - indicates that a resource is not operational.\r\nWarning - needs attention soon.\r\nCritical - needs immediate attention.\r\nUnknown - should be avoided, but there may be rare occasions where status is Unknown.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','82f8bedd589643d1954f329f5f10b9b9');
INSERT INTO `items` (`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`,`uuid`) values ('43563','18','','10527','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Model','hpe.synergy.fan["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",model]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The common descriptive model of the fan.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','8449918637ab4f98932ca75d859546b2');
INSERT INTO `items` (`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`,`uuid`) values ('43564','18','','10527','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Part number','hpe.synergy.fan["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",part_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The part number of the fan.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','539f8b373baf46d7bcde5fc090f02284');
INSERT INTO `items` (`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`,`uuid`) values ('43565','18','','10527','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','hpe.synergy.fan["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",presence]','0','7d','365d','0','3','','','','',NULL,'1008','','','0','','','','','2',NULL,'Indicates whether a fan is present:\r\n\r\nAbsent - The device slot is empty.\r\nPresenceNoOp - The device slot is uninitialized.\r\nPresenceUnknown - The device presence is unknown.\r\nPresent - The device slot has a device in it.\r\nSubsumed - The device slot is configured to be part of another device slot. Not applicable for fan or power supply bays.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','eb7ad5fc3d4947eda9642c2a2d440796');
INSERT INTO `items` (`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`,`uuid`) values ('43566','18','','10527','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Required','hpe.synergy.fan["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",required]','0','7d','365d','0','3','','','','',NULL,'1007','','','0','','','','','2',NULL,'Indicates whether the enclosure configuration requires a fan to be present in the bay.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','6782d5441add454384b41d9ede2a8cf2');
INSERT INTO `items` (`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`,`uuid`) values ('43567','18','','10527','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','hpe.synergy.fan["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",serial_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of the fan.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','16a8b59afdf04df1a070e1249fdd1a61');
INSERT INTO `items` (`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`,`uuid`) values ('43568','18','','10527','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Spare part number','hpe.synergy.fan["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",spare_part_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The spare part number to be used when ordering an additional or replacement fan of this type.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','4e6338579bea4bb7acb06e57d55365e5');
INSERT INTO `items` (`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`,`uuid`) values ('43569','18','','10527','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: State','hpe.synergy.fan["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",state]','0','7d','365d','0','3','','','','',NULL,'1022','','','0','','','','','2',NULL,'Current state of the fan:\r\n\r\nDegraded - Fan is degraded.\r\nFailed - Fan has failed.\r\nMisplaced - Fan is present, but not required, in this bay, and the overall fan configuration is not compliant with the enclosure fan placement rules.\r\nMissing - Fan is required, but is not present.\r\nOK - Fan bay has no issues.\r\nUnknown - Unknown fan\'s state.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','19171c26420f4cd894509a817c3245d8');
INSERT INTO `items` (`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`,`uuid`) values ('43570','18','','10527','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Status','hpe.synergy.fan["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",status]','0','7d','365d','0','3','','','','',NULL,'1010','','','0','','','','','2',NULL,'Overall health status of the fan:\r\n\r\nCritical - Needs immediate attention.\r\nDisabled - The resource is currently not operational.\r\nOK - Indicates normal/informational behavior.\r\nUnknown - The health status is not yet known or cannot be determined.\r\nWarning - Needs attention soon.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','e9ac8ad873a04d549ed492b1c23966cb');
INSERT INTO `items` (`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`,`uuid`) values ('43571','18','','10527','FC network [{#NAME}]: State','hpe.synergy.fc.network["{#NAME}",state]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current state of the resource.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','1defd79827204bbcaffe79cd7a9df059');
INSERT INTO `items` (`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`,`uuid`) values ('43572','18','','10527','FC network [{#NAME}]: Status','hpe.synergy.fc.network["{#NAME}",status]','0','7d','365d','0','3','','','','',NULL,'1010','','','0','','','','','2',NULL,'Overall health status of the resource. The following are the valid values for the status of the resource:\r\n\r\nOK - indicates normal/informational behavior.\r\nDisabled - indicates that a resource is not operational.\r\nWarning - needs attention soon.\r\nCritical - needs immediate attention.\r\nUnknown - should be avoided, but there may be rare occasions where status is Unknown.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','db0c86d17310421088cad2853d35c177');
INSERT INTO `items` (`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`,`uuid`) values ('43573','18','','10527','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Firmware version','hpe.synergy.manager["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",fw_version]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The firmware version of the manager.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','64e7f977edf34338aa74e8acc88d98fd');
INSERT INTO `items` (`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`,`uuid`) values ('43574','18','','10527','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Link port state','hpe.synergy.manager["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",link_port_state]','0','7d','365d','0','3','','','','',NULL,'1012','','','0','','','','','2',NULL,'The state of the LINK port:\r\n\r\nDisabled - The port is disabled.\r\nLinked - The port is linked.\r\nUnlinked - The port is unlinked.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','c34aade5cdf1469cbab8fe97ede864ea');
INSERT INTO `items` (`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`,`uuid`) values ('43575','18','','10527','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Link port status','hpe.synergy.manager["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",link_port_status]','0','7d','365d','0','3','','','','',NULL,'1010','','','0','','','','','2',NULL,'The status of the LINK port:\r\n\r\nCritical - Needs immediate attention.\r\nDisabled - The resource is currently not operational.\r\nOK - Indicates normal/informational behavior.\r\nUnknown - The health status is not yet known or cannot be determined.\r\nWarning - Needs attention soon.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','ca60cadc2c0f44e7a281e956bc34d1da');
INSERT INTO `items` (`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`,`uuid`) values ('43576','18','','10527','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: MGMT port state','hpe.synergy.manager["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",mgmt_port_state]','0','7d','365d','0','3','','','','',NULL,'1015','','','0','','','','','2',NULL,'The state of the MGMT port:\r\n\r\nActive - The port is in active mode.\r\nDisabled - The port is in disabled mode.\r\nI3s - The port is configured for OS deployment network traffic.\r\nOther - The port is in other mode.\r\nStandby - The port is in standby mode.\r\nUnknown - The port mode is not known.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','b636ea6e5d994e728579cd5d479fe298');
INSERT INTO `items` (`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`,`uuid`) values ('43577','18','','10527','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: MGMT port status','hpe.synergy.manager["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",mgmt_port_status]','0','7d','365d','0','3','','','','',NULL,'1010','','','0','','','','','2',NULL,'The status of the MGMT port:\r\n\r\nCritical - Needs immediate attention.\r\nDisabled - The resource is currently not operational.\r\nOK - Indicates normal/informational behavior.\r\nUnknown - The health status is not yet known or cannot be determined.\r\nWarning - Needs attention soon.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','41a66b669b15425796f1dce9b46545c5');
INSERT INTO `items` (`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`,`uuid`) values ('43578','18','','10527','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Model','hpe.synergy.manager["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",model]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The model of the link module.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','99281bb985fe46c6ac9328e2e491665e');
INSERT INTO `items` (`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`,`uuid`) values ('43579','18','','10527','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Part number','hpe.synergy.manager["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",part_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The part number of the link module.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','90a8d8e504834e4393c3fa0bbcb5e802');
INSERT INTO `items` (`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`,`uuid`) values ('43580','18','','10527','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','hpe.synergy.manager["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",presence]','0','7d','365d','0','3','','','','',NULL,'1008','','','0','','','','','2',NULL,'Indicates whether a manager is present in the bay:\r\n\r\nAbsent - The device slot is empty.\r\nPresenceNoOp - The device slot is uninitialized.\r\nPresenceUnknown - The device presence is unknown.\r\nPresent - The device slot has a device in it.\r\nSubsumed - The device slot is configured to be part of another device slot. Not applicable for fan or power supply bays.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','4a9f6da6f67545fb9ed5a8333bd1b303');
INSERT INTO `items` (`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`,`uuid`) values ('43581','18','','10527','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','hpe.synergy.manager["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",serial_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of the link module.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','1d9ac1bcc74048df8358c148c3ed9ce4');
INSERT INTO `items` (`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`,`uuid`) values ('43582','18','','10527','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Spare part number','hpe.synergy.manager["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",spare_part_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The spare part number of the link module.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','c6ee7ec806e04600b6826dbb373bcafe');
INSERT INTO `items` (`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`,`uuid`) values ('43583','18','','10527','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Status','hpe.synergy.manager["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",status]','0','7d','365d','0','3','','','','',NULL,'1010','','','0','','','','','2',NULL,'The health status of the link module:\r\n\r\nCritical - Needs immediate attention.\r\nDisabled - The resource is currently not operational.\r\nOK - Indicates normal/informational behavior.\r\nUnknown - The health status is not yet known or cannot be determined.\r\nWarning - Needs attention soon.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','0f72a6c8e89b4ea0b66bb0becae93bb1');
INSERT INTO `items` (`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`,`uuid`) values ('43584','18','','10527','Hypervisor manager [{#NAME}]: State','hpe.synergy.hypervisor_manager["{#NAME}",state]','0','7d','365d','0','3','','','','',NULL,'1011','','','0','','','','','2',NULL,'Current state of the resource. Valid values include Connected, Disconnected, Configuring and Error.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','a60a72ddc0de4a9c9b0b7be53542089c');
INSERT INTO `items` (`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`,`uuid`) values ('43585','18','','10527','Hypervisor manager [{#NAME}]: State reason','hpe.synergy.hypervisor_manager["{#NAME}",state_reason]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the reason the resource in its current state.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','2f0874b4d0464fc58d64c12a04b8d738');
INSERT INTO `items` (`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`,`uuid`) values ('43586','18','','10527','Hypervisor manager [{#NAME}]: Status','hpe.synergy.hypervisor_manager["{#NAME}",status]','0','7d','365d','0','3','','','','',NULL,'1010','','','0','','','','','2',NULL,'Current status of this resource:\r\n\r\nCritical - Needs immediate attention.\r\nDisabled - The resource is currently not operational.\r\nOK - Indicates normal/informational behavior.\r\nUnknown - The health status is not yet known or cannot be determined.\r\nWarning - Needs attention soon.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','e5ec285a6c74478d903284ecb67d3f96');
INSERT INTO `items` (`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`,`uuid`) values ('43587','18','','10527','Interconnect [{#NAME}]: Hardware health','hpe.synergy.interconnect["{#NAME}",hw.health]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Interconnect hardware health status.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','dc4822f158da4577a47ec4cf920b9b90');
INSERT INTO `items` (`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`,`uuid`) values ('43588','18','','10527','Interconnect [{#NAME}]: Model','hpe.synergy.interconnect["{#NAME}",model]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Interconnect model.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','7113bba95f38421a8bcffe77f9a3944d');
INSERT INTO `items` (`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`,`uuid`) values ('43589','18','','10527','Interconnect [{#NAME}]: Part number','hpe.synergy.interconnect["{#NAME}",part_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Interconnect part number.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','d3e8fc007d5e4adf899fdb3d0f786fb1');
INSERT INTO `items` (`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`,`uuid`) values ('43590','18','','10527','Interconnect [{#NAME}]: Port count','hpe.synergy.interconnect["{#NAME}",port_count]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of ports on the interconnect.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','c2e482f840184c278c09017623fd96d1');
INSERT INTO `items` (`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`,`uuid`) values ('43591','18','','10527','Interconnect [{#NAME}]: Serial number','hpe.synergy.interconnect["{#NAME}",serial_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Interconnect serial number.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','27e4c424f81940b1958e0455042bf3d3');
INSERT INTO `items` (`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`,`uuid`) values ('43592','18','','10527','Interconnect [{#NAME}]: Spare part number','hpe.synergy.interconnect["{#NAME}",spare_part_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Interconnect spare part number.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','8232b536d74846d7a90ce19400418a36');
INSERT INTO `items` (`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`,`uuid`) values ('43593','18','','10527','Interconnect [{#NAME}]: State','hpe.synergy.interconnect["{#NAME}",state]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current state of the resource','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','bd97faaf4a4c47a1a87d97650d65a375');
INSERT INTO `items` (`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`,`uuid`) values ('43594','18','','10527','Interconnect [{#NAME}]: Status','hpe.synergy.interconnect["{#NAME}",status]','0','7d','365d','0','3','','','','',NULL,'1010','','','0','','','','','2',NULL,'Overall health status of the resource. The following are the valid values for the status of the resource:\r\n\r\nCritical - Needs immediate attention.\r\nDisabled - The resource is currently not operational.\r\nOK - Indicates normal/informational behavior.\r\nUnknown - The health status is not yet known or cannot be determined.\r\nUnknown - should be avoided, but there may be rare occasions where status is Unknown.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','ac234400f7324bbea2c736c6f7afd131');
INSERT INTO `items` (`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`,`uuid`) values ('43595','18','','10527','Logical enclosure [{#NAME}]: State','hpe.synergy.logical_enclosure["{#NAME}",state]','0','7d','365d','0','3','','','','',NULL,'1013','','','0','','','','','2',NULL,'Current resource state of the logical enclosure:\r\n\r\nConsistent - This is the expected state of the logical enclosure. The logical enclosure configuration is consistent with the enclosure group and the configuration of the hardware resources is consistent with the logical enclosure configuration.\r\nCreating - The logical enclosure is being created.\r\nDeleteFailed - The prior attempt to delete the logical enclosure failed. Retry the delete operation potentially with the force option. No other logical enclosure operations are allowed in this state.\r\nDeleting - The logical enclosure is being deleted.\r\nInconsistent - The configuration of the logical enclosure differs from that of the enclosure group, or the configuration of the hardware resources is inconsistent with the logical enclosure configuration. Perform an Update from group, Reapply configuration, or Update firmware action as appropriate to bring the configuration back into consistency.\r\nUpdating - Configuration changes are being applied to the hardware configuration.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','785f3a94e8614810b7ccc84be779ad1d');
INSERT INTO `items` (`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`,`uuid`) values ('43596','18','','10527','Logical enclosure [{#NAME}]: Status','hpe.synergy.logical_enclosure["{#NAME}",status]','0','7d','365d','0','3','','','','',NULL,'1010','','','0','','','','','2',NULL,'Overall health status of the resource. The following are the valid values for the status of the resource:\r\n\r\nOK - indicates normal/informational behavior.\r\nDisabled - indicates that a resource is not operational.\r\nWarning - needs attention soon.\r\nCritical - needs immediate attention.\r\nUnknown - should be avoided, but there may be rare occasions where status is Unknown.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','0f1e0448aeaf464cb608d576eb42a481');
INSERT INTO `items` (`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`,`uuid`) values ('43597','18','','10527','Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Devices count','hpe.synergy.partition["{#PARTITION_ID}","{#ENCLOSURE_NAME}",device_count]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of blades in the partition.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','8ee334ce899341a8b1292dd84d7b0af4');
INSERT INTO `items` (`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`,`uuid`) values ('43598','18','','10527','Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Health','hpe.synergy.partition["{#PARTITION_ID}","{#ENCLOSURE_NAME}",health]','0','7d','365d','0','3','','','','',NULL,'1017','','','0','','','','','2',NULL,'Indicates the health of the partition and the health of its owned resources (blades and IO bays) as reported by firmware. If a problem is detected with one of the resources, the health of the partition is reported as Degraded. If all of the resources in the partition are operating correctly the health of the partition is reported as OK.\r\n\r\nNparDegrade - One or more resources in the partition are unhealthy.\r\nNparHealthInvalid - Partition health is invalid.\r\nNparHealthMax - Delimiter defined by firmware.\r\nNparOk - All the resources in partition are healthy.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','e090ef309a9a4f8a98d3c5e24bd53d4d');
INSERT INTO `items` (`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`,`uuid`) values ('43599','18','','10527','Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Memory','hpe.synergy.partition["{#PARTITION_ID}","{#ENCLOSURE_NAME}",memory]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total memory of the partition.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','fc5d550b6bdd4e2a891f4faa5e51f792');
INSERT INTO `items` (`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`,`uuid`) values ('43600','18','','10527','Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Processors Count','hpe.synergy.partition["{#PARTITION_ID}","{#ENCLOSURE_NAME}",processor_count]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of processors in the partition.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','b388a6aeae4e4bd4b14b0eb334b67934');
INSERT INTO `items` (`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`,`uuid`) values ('43601','18','','10527','Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Status','hpe.synergy.partition["{#PARTITION_ID}","{#ENCLOSURE_NAME}",status]','0','7d','365d','0','3','','','','',NULL,'1018','','','0','','','','','2',NULL,'Indicates whether the partition has booted and its current power state:\r\n\r\nParStatusActive - Partition is active when a \'poweron\' operation is initiated on the partition and the firmware boot process is started.\r\nParStatusInactive - Partition is in inactive state after it has been created or shut down.\r\nParStatusInvalid - Partition status is invalid.\r\nParStatusManualRepair - Partition is under manual repair.\r\nParStatusMax - Delimiter defined by OA firmware.\r\nParStatusUndefined - Partition status is undefined.\r\nParStatusUnknown - Partition might report an \'Unknown\' state after an OA restart. This state is possible when the firmware is not able to identify the correct partition state due to internal firmware errors at OA startup. The state is persistent and can only be cleared by force powering off the partition from the OA. A partition in this state will not accept any partition operation except parstatus and force poweroff. Any active OS instances continue to run unhindered even when the partition is in an Unknown state.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','ed4ad1bb9a534b40af4754cf31dc87f9');
INSERT INTO `items` (`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`,`uuid`) values ('43602','18','','10527','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Model','hpe.synergy.power_supply["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",model]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The common descriptive model of the power supply.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','e748215b1d4a404ca0269909d321cdc6');
INSERT INTO `items` (`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`,`uuid`) values ('43603','18','','10527','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Output capacity','hpe.synergy.power_supply["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",output_capacity]','0','7d','365d','0','3','','W','','',NULL,NULL,'','','0','','','','','2',NULL,'The power supply output capacity.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','e0ac31d34ab34af383e56fb1c0a9972a');
INSERT INTO `items` (`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`,`uuid`) values ('43604','18','','10527','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Part number','hpe.synergy.power_supply["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",part_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The part number of the power supply.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','98c72f6e11ab4dcba08c82793de9af96');
INSERT INTO `items` (`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`,`uuid`) values ('43605','18','','10527','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','hpe.synergy.power_supply["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",presence]','0','7d','365d','0','3','','','','',NULL,'1008','','','0','','','','','2',NULL,'Indicates whether a power supply is present.\r\n\r\nAbsent - The device slot is empty.\r\nPresenceNoOp - The device slot is uninitialized.\r\nPresenceUnknown - The device presence is unknown.\r\nPresent - The device slot has a device in it.\r\nSubsumed - The device slot is configured to be part of another device slot. Not applicable for fan or power supply bays.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','31cc380acfec455bbb4828d4aeae1ddc');
INSERT INTO `items` (`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`,`uuid`) values ('43606','18','','10527','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','hpe.synergy.power_supply["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",serial_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The unique serial number of the power supply.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','87ee5abdfdcf41459dd11678469a2fb4');
INSERT INTO `items` (`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`,`uuid`) values ('43607','18','','10527','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Spare part number','hpe.synergy.power_supply["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",spare_part_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The spare part number to be used when ordering an additional or replacement power supply of this type.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','ada2815275ce488f8ec1bc7a4a536681');
INSERT INTO `items` (`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`,`uuid`) values ('43608','18','','10527','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Status','hpe.synergy.power_supply["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",status]','0','7d','365d','0','3','','','','',NULL,'1010','','','0','','','','','2',NULL,'Overall health status of the power supply:\r\n\r\nCritical - Needs immediate attention.\r\nDisabled - The resource is currently not operational.\r\nOK - Indicates normal/informational behavior.\r\nUnknown - The health status is not yet known or cannot be determined.\r\nWarning - Needs attention soon.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','a2c1cf1e0f714e46af414d8c7427d3db');
INSERT INTO `items` (`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`,`uuid`) values ('43609','18','','10527','Rack [{#NAME}]: State','hpe.synergy.rack["{#NAME}",state]','0','7d','365d','0','3','','','','',NULL,'1021','','','0','','','','','2',NULL,'The current state of the resource. Valid values include Adding, AddError, Configured, CredentialError, Refreshing, RefreshError, Removing, RemoveError, and Unmanaged.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','921fa76608e4437d961af2409dddde0b');
INSERT INTO `items` (`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`,`uuid`) values ('43610','18','','10527','Rack [{#NAME}]: Status','hpe.synergy.rack["{#NAME}",status]','0','7d','365d','0','3','','','','',NULL,'1010','','','0','','','','','2',NULL,'Overall health status of the resource. The following are the valid values for the status of the resource:\r\n\r\nOK - indicates normal/informational behavior.\r\nDisabled - indicates that a resource is not operational.\r\nWarning - needs attention soon.\r\nCritical - needs immediate attention.\r\nUnknown - should be avoided, but there may be rare occasions where status is Unknown.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','b9473388000e4107b7a419611bc1b81a');
INSERT INTO `items` (`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`,`uuid`) values ('43611','18','','10527','Server [{#SERVER_NAME}:{#LOCATION}]: Processor cores count','hpe.synergy.server_hardware.processor["{#LOCATION}",cores_count]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of cores available per processor.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','44f23870429347fb8930669c98ded461');
INSERT INTO `items` (`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`,`uuid`) values ('43612','18','','10527','Server [{#SERVER_NAME}:{#LOCATION}]: Processors count','hpe.synergy.server_hardware.processor["{#LOCATION}",count]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of processors installed on this server hardware.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','5c9d2faf103241879fd19b0e18774dbd');
INSERT INTO `items` (`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`,`uuid`) values ('43613','18','','10527','Server [{#SERVER_NAME}:{#LOCATION}]: Processor speed','hpe.synergy.server_hardware.processor["{#LOCATION}",speed]','0','7d','365d','0','3','','!MHz','','',NULL,NULL,'','','0','','','','','2',NULL,'Speed of the CPUs.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','dd1e7364fb614b2b9177f92b2ffe42a0');
INSERT INTO `items` (`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`,`uuid`) values ('43614','18','','10527','Server [{#SERVER_NAME}:{#LOCATION}]: Processor type','hpe.synergy.server_hardware.processor["{#LOCATION}",type]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Type of CPU installed on this server hardware.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','a62de8aa573146d1a2118abff9f43245');
INSERT INTO `items` (`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`,`uuid`) values ('43615','18','','10527','Server [{#SERVER_NAME}:{#LOCATION}]: Maintenance state','hpe.synergy.server_hardware["{#LOCATION}",maintenance_state]','0','7d','365d','0','3','','','','',NULL,'1014','','','0','','','','','2',NULL,'Server Hardware maintenance flag - Disruptive maintenance operations like firmware update can cause many server hardware alerts to be generated in a short period of time. Ex: Network connectivity lost or Server reset detected. When this field is set, predefined alerts for this particular device are suppressed. This field is set only when firmware update is ongoing. The alerts are processed normally once firmware update operation completes. Possible values are Maintenance and Normal.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','67d50f909325417b9c47241cda44aa6b');
INSERT INTO `items` (`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`,`uuid`) values ('43616','18','','10527','Server [{#SERVER_NAME}:{#LOCATION}]: Maintenance state reason','hpe.synergy.server_hardware["{#LOCATION}",maintenance_state_reason]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This field is set to Firmware update when server is put to maintenance.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','90dc2db2bb6c4a968899ef04b8e2f96e');
INSERT INTO `items` (`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`,`uuid`) values ('43617','18','','10527','Server [{#SERVER_NAME}:{#LOCATION}]: Memory','hpe.synergy.server_hardware["{#LOCATION}",memory]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of memory installed on this server hardware.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','7239def772f84acfbfd017e1e835e7c5');
INSERT INTO `items` (`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`,`uuid`) values ('43618','18','','10527','Server [{#SERVER_NAME}:{#LOCATION}]: Migration state','hpe.synergy.server_hardware["{#LOCATION}",migration_state]','0','7d','365d','0','3','','','','',NULL,'1016','','','0','','','','','2',NULL,'The state of an ongoing VCM migration:\r\n\r\nMigrating - The enclosure is in the process of migrating from VCM.\r\nNotApplicable - The enclosure did not require or has already completed migration.\r\nUnknown - The migration state is unknown.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','1a3dfc33d4d14d82846197e66550786d');
INSERT INTO `items` (`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`,`uuid`) values ('43619','18','','10527','Server [{#SERVER_NAME}:{#LOCATION}]: Model','hpe.synergy.server_hardware["{#LOCATION}",model]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The full server hardware model string.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','0b6a9c030b154aa6ae112b809bfaf498');
INSERT INTO `items` (`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`,`uuid`) values ('43620','18','','10527','Server [{#SERVER_NAME}:{#LOCATION}]: Part number','hpe.synergy.server_hardware["{#LOCATION}",part_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The part number for this server hardware.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','21edfb42e64e42878cccf66125d28b96');
INSERT INTO `items` (`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`,`uuid`) values ('43621','18','','10527','Server [{#SERVER_NAME}:{#LOCATION}]: Power state','hpe.synergy.server_hardware["{#LOCATION}",power_state]','0','7d','365d','0','3','','','','',NULL,'1019','','','0','','','','','2',NULL,'Current power state of the server hardware. Values are Unknown, On, Off, PoweringOn, PoweringOff or Resetting.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','a2c03713255841d38f0152a432920252');
INSERT INTO `items` (`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`,`uuid`) values ('43622','18','','10527','Server [{#SERVER_NAME}:{#LOCATION}]: Serial number','hpe.synergy.server_hardware["{#LOCATION}",serial_number]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of the server hardware.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','eaf38e9c25fb46de8e621220bca8aed5');
INSERT INTO `items` (`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`,`uuid`) values ('43623','18','','10527','Server [{#SERVER_NAME}:{#LOCATION}]: State','hpe.synergy.server_hardware["{#LOCATION}",state]','0','7d','365d','0','3','','','','',NULL,'1023','','','0','','','','','2',NULL,'The current resource state of the server hardware. Allowable values are:\r\n\r\nUnknown - Not initialized,\r\nAdding - Server being added,\r\nNoProfileApplied - Server successfully added,\r\nMonitored - Server being monitored,\r\nUnmanaged - Discovered a supported server,\r\nRemoving - Server being removed,\r\nRemoveFailed - Unsuccessful server removal,\r\nRemoved - Server successfully removed,\r\nApplyingProfile - Profile being applied to server,\r\nProfileApplied - Profile successfully applied,\r\nRemovingProfile - Profile being removed,\r\nProfileError - Unsuccessful profile apply or removal,\r\nUnsupported - Server model or version not currently supported by the appliance,\r\nUpdatingFirmware - Server firmware update in progress.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','01be2f5f8b594caaab4ec25e3955405e');
INSERT INTO `items` (`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`,`uuid`) values ('43624','18','','10527','Server [{#SERVER_NAME}:{#LOCATION}]: State reason','hpe.synergy.server_hardware["{#LOCATION}",state_reason]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The reason for the current resource state of the server hardware. This only applies if the state is \'Unmanaged\', otherwise it is set to \'NotApplicable\'. Allowable values are:\r\n\r\nUnsupported - Server model or version not currently supported by the appliance,\r\nUpdatingFirmware - Server firmware update in progress,\r\nNotApplicable - When PhysicalServerState is anything besides \'Unmanaged\',\r\nNotOwner - No claim on server,\r\nInventory - Server added by PDU,\r\nUnconfigured - Discovery data incomplete or iLO configuration failure,\r\nUnsupportedFirmware - iLO firmware version below minimum support level,\r\nInterrupted - When PhysicalServerState is a result of an operation that was terminated before completing,\r\nCommunicationError - Appliance cannot communicate with iLO or OA.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','4c09bde33af048b7a3d7cfbcaae6ff54');
INSERT INTO `items` (`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`,`uuid`) values ('43625','18','','10527','Server [{#SERVER_NAME}:{#LOCATION}]: Status','hpe.synergy.server_hardware["{#LOCATION}",status]','0','7d','365d','0','3','','','','',NULL,'1010','','','0','','','','','2',NULL,'Overall health status of the resource. The following are the valid values for the status of the resource:\r\n\r\nOK - indicates normal/informational behavior.\r\nDisabled - indicates that a resource is not operational or that a server profile has not been assigned.\r\nWarning - needs attention soon.\r\nCritical - needs attention soon.\r\nUnknown - should be avoided, but there may be rare occasions where status is Unknown.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','1fec814f88b6400ab70b9a164a25b297');
INSERT INTO `items` (`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`,`uuid`) values ('43626','18','','10527','Storage pool [{#NAME}]: Capacity allocated','hpe.synergy.storage.pools.capacity["{#NAME}",allocated]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Capacity allocated from the storage pool in bytes.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','6f21fd88ccdb46ac83cd6a4beba12f95');
INSERT INTO `items` (`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`,`uuid`) values ('43627','18','','10527','Storage pool [{#NAME}]: Capacity free','hpe.synergy.storage.pools.capacity["{#NAME}",free]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Free capacity available from the storage pool in bytes.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','e6ffbb837f2945418f200f8d57b8bf39');
INSERT INTO `items` (`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`,`uuid`) values ('43628','18','','10527','Storage pool [{#NAME}]: Capacity allocated to snapshots','hpe.synergy.storage.pools.capacity["{#NAME}",snapshot]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The pool capacity allocated to snapshots in bytes.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','b3f2dc2c62574ead8986ace6751738d0');
INSERT INTO `items` (`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`,`uuid`) values ('43629','18','','10527','Storage pool [{#NAME}]: Capacity total','hpe.synergy.storage.pools.capacity["{#NAME}",total]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total capacity of the storage pool in bytes.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','5d172531ae344037a94e23fd5c72165a');
INSERT INTO `items` (`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`,`uuid`) values ('43630','18','','10527','Storage pool [{#NAME}]: State','hpe.synergy.storage.pools["{#NAME}",state]','0','7d','365d','0','3','','','','',NULL,'1026','','','0','','','','','2',NULL,'Current state of the resource:\r\n\r\nAddFailed - An attempt to add the resource failed\r\nAdding - The resource is in the process of being added\r\nConfigured - The resource is configured\r\nConnected - The appliance has connected to the resource\r\nCopying - The resource is in the process of being copied\r\nCreateFailed - An attempt to create the resource failed\r\nCreating - The resource is in the process of being created\r\nDeleteFailed - An attempt to delete the resource failed\r\nDeleting - The resource is in the process of being deleted\r\nDiscovered - The resource has been discovered by the appliance, but it is not managed by the appliance\r\nManaged - The resource is managed by the appliance\r\nNormal - The resource is in a normal state\r\nUpdateFailed - An attempt to update the resource failed\r\nUpdating - The resource is in the process of being updated','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','52f63554126b4ee0a6fd6efdfea36356');
INSERT INTO `items` (`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`,`uuid`) values ('43631','18','','10527','Storage pool [{#NAME}]: Status','hpe.synergy.storage.pools["{#NAME}",status]','0','7d','365d','0','3','','','','',NULL,'1010','','','0','','','','','2',NULL,'Overall health status of the resource. The following are the valid values for the status of the resource:\r\n\r\nOK - indicates normal/informational behavior.\r\nDisabled - indicates that a resource is not operational.\r\nWarning - needs attention soon.\r\nCritical - needs immediate attention.\r\nUnknown - should be avoided, but there may be rare occasions where status is Unknown.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','9f3c42f517c64f9bb8869617438a9aff');
INSERT INTO `items` (`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`,`uuid`) values ('43632','18','','10527','Storage system [{#NAME}]: Capacity allocated','hpe.synergy.storage.system.capacity["{#NAME}",allocated]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Capacity allocated in bytes.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','f1047d18a75f4981a5d1b16ccdafce5b');
INSERT INTO `items` (`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`,`uuid`) values ('43633','18','','10527','Storage system [{#NAME}]: Capacity free','hpe.synergy.storage.system.capacity["{#NAME}",free]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Free capacity of the storage system in bytes.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','501b587b1aa14263ac8d77325c8adfd3');
INSERT INTO `items` (`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`,`uuid`) values ('43634','18','','10527','Storage system [{#NAME}]: Capacity total','hpe.synergy.storage.system.capacity["{#NAME}",total]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total capacity of the storage system in bytes.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','1ee384a67e0c49b99beaca7c682e7f54');
INSERT INTO `items` (`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`,`uuid`) values ('43635','18','','10527','Storage system [{#NAME}]: State','hpe.synergy.storage.system["{#NAME}",state]','0','7d','365d','0','3','','','','',NULL,'1026','','','0','','','','','2',NULL,'Current state of the resource:\r\n\r\nAddFailed - An attempt to add the resource failed\r\nAdding - The resource is in the process of being added\r\nConfigured - The resource is configured\r\nConnected - The appliance has connected to the resource\r\nCopying - The resource is in the process of being copied\r\nCreateFailed - An attempt to create the resource failed\r\nCreating - The resource is in the process of being created\r\nDeleteFailed - An attempt to delete the resource failed\r\nDeleting - The resource is in the process of being deleted\r\nDiscovered - The resource has been discovered by the appliance, but it is not managed by the appliance\r\nManaged - The resource is managed by the appliance\r\nNormal - The resource is in a normal state\r\nUpdateFailed - An attempt to update the resource failed\r\nUpdating - The resource is in the process of being updated','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','5de77ea6bd76408792e45e111d46c501');
INSERT INTO `items` (`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`,`uuid`) values ('43636','18','','10527','Storage system [{#NAME}]: Status','hpe.synergy.storage.system["{#NAME}",status]','0','7d','365d','0','3','','','','',NULL,'1010','','','0','','','','','2',NULL,'Overall health status of the resource. The following are the valid values for the status of the resource:\r\n\r\nOK - indicates normal/informational behavior.\r\nDisabled - indicates that a resource is not operational.\r\nWarning - needs attention soon.\r\nCritical - needs immediate attention.\r\nUnknown - should be avoided, but there may be rare occasions where status is Unknown.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','5f9b2be3d232468e98451b380a624ae9');
INSERT INTO `items` (`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`,`uuid`) values ('43637','18','','10527','Storage volume [{#NAME}]: Capacity allocated','hpe.synergy.storage.volumes.capacity["{#NAME}",allocated]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Capacity allocated in bytes.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','6c5fcfa5f07e4c07a1a05d6a49e1e5cd');
INSERT INTO `items` (`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`,`uuid`) values ('43638','18','','10527','Storage volume [{#NAME}]: Capacity provisioned','hpe.synergy.storage.volumes.capacity["{#NAME}",provisioned]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total provisioned capacity of volume in bytes.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','67076354bbb34d839c23873898dab4bd');
INSERT INTO `items` (`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`,`uuid`) values ('43639','18','','10527','Storage volume [{#NAME}]: State','hpe.synergy.storage.volumes["{#NAME}",state]','0','7d','365d','0','3','','','','',NULL,'1026','','','0','','','','','2',NULL,'Current state of the resource:\r\n\r\nAddFailed - An attempt to add the resource failed\r\nAdding - The resource is in the process of being added\r\nConfigured - The resource is configured\r\nConnected - The appliance has connected to the resource\r\nCopying - The resource is in the process of being copied\r\nCreateFailed - An attempt to create the resource failed\r\nCreating - The resource is in the process of being created\r\nDeleteFailed - An attempt to delete the resource failed\r\nDeleting - The resource is in the process of being deleted\r\nDiscovered - The resource has been discovered by the appliance, but it is not managed by the appliance\r\nManaged - The resource is managed by the appliance\r\nNormal - The resource is in a normal state\r\nUpdateFailed - An attempt to update the resource failed\r\nUpdating - The resource is in the process of being updated','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','169c6201cabe48b89ff7591e9112394b');
INSERT INTO `items` (`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`,`uuid`) values ('43640','18','','10527','Storage volume [{#NAME}]: Status','hpe.synergy.storage.volumes["{#NAME}",status]','0','7d','365d','0','3','','','','',NULL,'1010','','','0','','','','','2',NULL,'Overall health status of the resource. The following are the valid values for the status of the resource:\r\n\r\nOK - indicates normal/informational behavior.\r\nDisabled - indicates that a resource is not operational.\r\nWarning - needs attention soon.\r\nCritical - needs immediate attention.\r\nUnknown - should be avoided, but there may be rare occasions where status is Unknown.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','6c9927a095e04feb808c05aa44b672d0');
INSERT INTO `items` (`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`,`uuid`) values ('43641','18','','10527','Uplink set [{#NAME}]: State','hpe.synergy.uplink_set["{#NAME}",state]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current state of the resource.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','be09b2f2848d4143a396a9b0cb945ecc');
INSERT INTO `items` (`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`,`uuid`) values ('43642','18','','10527','Uplink set [{#NAME}]: Status','hpe.synergy.uplink_set["{#NAME}",status]','0','7d','365d','0','3','','','','',NULL,'1010','','','0','','','','','2',NULL,'Overall health status of the resource. The following are the valid values for the status of the resource:\r\n\r\nOK - indicates normal/informational behavior.\r\nDisabled - indicates that a resource is not operational.\r\nWarning - needs attention soon.\r\nCritical - needs immediate attention.\r\nUnknown - should be avoided, but there may be rare occasions where status is Unknown.','0','30d','0','','43494','3s','','','','200','1','0','','0','0','0','0','0','0','0','08fe02575307492ea4ad42a6bfa4a2a9');
INSERT INTO `items` (`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`,`uuid`) values ('29427','18','','10285','CPU utilization','system.cpu.util[node_exporter]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization in %.','0','30d','0','','29416','3s','','','','200','1','0','','0','0','0','0','0','0','0','76f60c7e4f1a482198ff4f101020bbcc');
INSERT INTO `items` (`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`,`uuid`) values ('29428','18','','10285','Operating system','system.sw.os[node_exporter]','0','2w','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','5','30d','0','','29425','3s','','','','200','1','0','','0','0','0','0','0','0','0','11ff4e02245f4c2e9ce00e55c1a77b39');
INSERT INTO `items` (`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`,`uuid`) values ('30193','18','','10308','Backend discovery','haproxy.backend.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery backends','0','30d','1','','35103','3s','','','','200','1','0','','0','0','0','0','0','0','0','9899f0a11ece4b9194ca44a8fc34b066');
INSERT INTO `items` (`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`,`uuid`) values ('30194','18','','10308','Frontend discovery','haproxy.frontend.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery frontends','0','30d','1','','35103','3s','','','','200','1','0','','0','0','0','0','0','0','0','69264415d8644ef597affd3dc95d42b2');
INSERT INTO `items` (`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`,`uuid`) values ('30195','18','','10308','Server discovery','haproxy.server.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery servers','0','30d','1','','35103','3s','','','','200','1','0','','0','0','0','0','0','0','0','a2f7f79b8f094afd93648f62f99d3369');
INSERT INTO `items` (`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`,`uuid`) values ('30236','18','','10309','Backend discovery','haproxy.backend.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery backends','0','30d','1','','35128','3s','','','','200','1','0','','0','0','0','0','0','0','0','7b4ab1338cdf4e499c1fdea4c886ae9a');
INSERT INTO `items` (`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`,`uuid`) values ('30237','18','','10309','Frontend discovery','haproxy.frontend.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery frontends','0','30d','1','','35128','3s','','','','200','1','0','','0','0','0','0','0','0','0','37629de766fd4c61a1618f9d1f1e2eab');
INSERT INTO `items` (`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`,`uuid`) values ('30238','18','','10309','Server discovery','haproxy.server.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery servers','0','30d','1','','35128','3s','','','','200','1','0','','0','0','0','0','0','0','0','134455ad7e8c4444a78255cb2e3fa98b');
INSERT INTO `items` (`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`,`uuid`) values ('32465','18','','10359','Battery voltage discovery','aranet.battery.voltage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Battery voltage sensors','0','30d','1','','32464','3s','','','','200','1','0','','0','0','0','0','0','0','0','c4d177c29cb34e87b6bec0d22bd3ae23');
INSERT INTO `items` (`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`,`uuid`) values ('32466','18','','10359','CO2 discovery','aranet.co2.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud CO2 sensors','0','30d','1','','32464','3s','','','','200','1','0','','0','0','0','0','0','0','0','f10b45e1e1024cb19ea8a705281e61fc');
INSERT INTO `items` (`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`,`uuid`) values ('32467','18','','10359','Current discovery','aranet.current.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Current sensors','0','30d','1','','32464','3s','','','','200','1','0','','0','0','0','0','0','0','0','c42c2ae80f0d40688031f0ef3adb4dfb');
INSERT INTO `items` (`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`,`uuid`) values ('32468','18','','10359','Differential Pressure discovery','aranet.diff_pressure.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Differential Pressure sensors','0','30d','1','','32464','3s','','','','200','1','0','','0','0','0','0','0','0','0','0d5eca62cf6e4db8abed33e7ad907925');
INSERT INTO `items` (`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`,`uuid`) values ('32469','18','','10359','Distance discovery','aranet.distance.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Distance sensors','0','30d','1','','32464','3s','','','','200','1','0','','0','0','0','0','0','0','0','b9f0950111b6488098c79a60b2a444d6');
INSERT INTO `items` (`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`,`uuid`) values ('32470','18','','10359','Humidity discovery','aranet.humidity.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud humidity sensors','0','30d','1','','32464','3s','','','','200','1','0','','0','0','0','0','0','0','0','7cf9f5296e784045a86aa0fc7bb1ba69');
INSERT INTO `items` (`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`,`uuid`) values ('32471','18','','10359','Illuminance discovery','aranet.illuminance.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Illuminance sensors','0','30d','1','','32464','3s','','','','200','1','0','','0','0','0','0','0','0','0','144396930b4b4049acb4bfd7b183a6f7');
INSERT INTO `items` (`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`,`uuid`) values ('32472','18','','10359','Last update discovery','aranet.last_update.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Last update metric','0','30d','1','','32464','3s','','','','200','1','0','','0','0','0','0','0','0','0','16b57e7a700c4041b787a8916442cd59');
INSERT INTO `items` (`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`,`uuid`) values ('32473','18','','10359','pH discovery','aranet.ph.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud pH sensors','0','30d','1','','32464','3s','','','','200','1','0','','0','0','0','0','0','0','0','9b33a2810e644c3c998d431a4a860993');
INSERT INTO `items` (`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`,`uuid`) values ('32474','18','','10359','Pore Electrical Conductivity discovery','aranet.pore_electric_cond.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Pore Electrical Conductivity sensors','0','30d','1','','32464','3s','','','','200','1','0','','0','0','0','0','0','0','0','1763029f67494745a2f52c980ae86b9c');
INSERT INTO `items` (`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`,`uuid`) values ('32475','18','','10359','PPFD discovery','aranet.ppfd.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud PPFD sensors','0','30d','1','','32464','3s','','','','200','1','0','','0','0','0','0','0','0','0','c1a3941026c24d178a494de66c7be2cc');
INSERT INTO `items` (`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`,`uuid`) values ('32476','18','','10359','Atmospheric pressure discovery','aranet.pressure.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud atmospheric pressure sensors','0','30d','1','','32464','3s','','','','200','1','0','','0','0','0','0','0','0','0','11a77f7018ca4b8f92f65888e3e2a237');
INSERT INTO `items` (`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`,`uuid`) values ('32477','18','','10359','Pulses discovery','aranet.pulses.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Pulses sensors','0','30d','1','','32464','3s','','','','200','1','0','','0','0','0','0','0','0','0','6d5e1eebba704d5e88aa67ed029d95ca');
INSERT INTO `items` (`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`,`uuid`) values ('32478','18','','10359','Pulses Cumulative discovery','aranet.pulses_cumulative.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Pulses Cumulative sensors','0','30d','1','','32464','3s','','','','200','1','0','','0','0','0','0','0','0','0','92f27211f4dd4f61b7939cf8b07fc959');
INSERT INTO `items` (`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`,`uuid`) values ('32479','18','','10359','RSSI discovery','aranet.rssi.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud RSSI sensors','0','30d','1','','32464','3s','','','','200','1','0','','0','0','0','0','0','0','0','2caab3aefe0b498588aa3ec0d8578e09');
INSERT INTO `items` (`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`,`uuid`) values ('32480','18','','10359','Soil Dielectric Permittivity discovery','aranet.soil_dielectric_perm.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Soil Dielectric Permittivity sensors','0','30d','1','','32464','3s','','','','200','1','0','','0','0','0','0','0','0','0','4d6116d2bd3049b9bb550e1d77338b2e');
INSERT INTO `items` (`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`,`uuid`) values ('32481','18','','10359','Soil Electrical Conductivity discovery','aranet.soil_electric_cond.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Soil Electrical Conductivity sensors','0','30d','1','','32464','3s','','','','200','1','0','','0','0','0','0','0','0','0','e44cc900de3b4353bbccc6f01388c103');
INSERT INTO `items` (`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`,`uuid`) values ('32482','18','','10359','Temperature discovery','aranet.temp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud temperature sensors','0','30d','1','','32464','3s','','','','200','1','0','','0','0','0','0','0','0','0','215affa3d0d34aa2b27be4ec75ba3349');
INSERT INTO `items` (`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`,`uuid`) values ('32483','18','','10359','Voltage discovery','aranet.voltage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Voltage sensors','0','30d','1','','32464','3s','','','','200','1','0','','0','0','0','0','0','0','0','9e9bf9e27be743368c50036f02fab572');
INSERT INTO `items` (`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`,`uuid`) values ('32484','18','','10359','Volumetric Water Content discovery','aranet.volum_water_content.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Volumetric Water Content sensors','0','30d','1','','32464','3s','','','','200','1','0','','0','0','0','0','0','0','0','c059e164b01242b78ab8505d12c2d291');
INSERT INTO `items` (`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`,`uuid`) values ('32485','18','','10359','Weight discovery','aranet.weight.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Weight sensors','0','30d','1','','32464','3s','','','','200','1','0','','0','0','0','0','0','0','0','414889299c224d748c857fcf028d9e96');
INSERT INTO `items` (`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`,`uuid`) values ('32796','18','','10365','Vault: Process resident memory','vault.metrics.process.resident_memory.bytes','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident memory size in bytes.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','ddd6b5b8206442a7b5f0026e82bc2bd2');
INSERT INTO `items` (`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`,`uuid`) values ('32797','18','','10365','Vault: Runtime allocated bytes','vault.metrics.runtime.alloc.bytes','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes allocated by the Vault process. This could burst from time to time, but should return to a steady state value.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','58e6fbc8a6084008b08c7fc03ad4a703');
INSERT INTO `items` (`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`,`uuid`) values ('32798','18','','10365','Vault: Runtime freed objects','vault.metrics.runtime.free.count','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of freed objects.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','3b2208b0248b4288ad91a8a5e3090b29');
INSERT INTO `items` (`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`,`uuid`) values ('32799','18','','10365','Vault: Runtime heap objects','vault.metrics.runtime.heap.objects','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of objects on the heap. This is a good general memory pressure indicator worth establishing a baseline and thresholds for alerting.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','c1a159a37d4e4130a4a19d0ded2b0b72');
INSERT INTO `items` (`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`,`uuid`) values ('32800','18','','10365','Vault: Process virtual memory, max','vault.metrics.process.virtual_memory.max.bytes','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum amount of virtual memory available in bytes.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','17c568d745534c218dc292043234b215');
INSERT INTO `items` (`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`,`uuid`) values ('32801','18','','10365','Vault: Process virtual memory, current','vault.metrics.process.virtual_memory.bytes','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Virtual memory size in bytes.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','bf3a561bc96b46fc9a818a9f43c57be5');
INSERT INTO `items` (`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`,`uuid`) values ('32802','18','','10365','Vault: Uptime','vault.metrics.process.uptime','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Server uptime.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','241f8503d30c41df9e902cf31ddf715e');
INSERT INTO `items` (`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`,`uuid`) values ('32803','18','','10365','Vault: Check mountpoint discovery','vault.check_mountpoint_discovery','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','cd948f4219164c77a17b56f1b01767d0');
INSERT INTO `items` (`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`,`uuid`) values ('32804','18','','10365','Vault: Open file descriptors, current','vault.metrics.process.open.fds','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open file descriptors.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','0b2c6c947c46409b93acea8e67a0f058');
INSERT INTO `items` (`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`,`uuid`) values ('32805','18','','10365','Vault: Open file descriptors, max','vault.metrics.process.max.fds','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum number of open file descriptors.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','095af4564c5445c0be7ad38811404535');
INSERT INTO `items` (`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`,`uuid`) values ('32806','18','','10365','Vault: Process CPU seconds, total','vault.metrics.process.cpu.seconds.total','0','7d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total user and system CPU time spent in seconds.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','d7602cb55879403982afeabecb4c130a');
INSERT INTO `items` (`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`,`uuid`) values ('32807','18','','10365','Vault: Policy SET ops, rate','vault.metrics.policy.set_policy.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of operations to set a policy.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','c8010706f8274e898812b722a82e9add');
INSERT INTO `items` (`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`,`uuid`) values ('32808','18','','10365','Vault: Runtime num goroutines','vault.metrics.runtime.num_goroutines','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of goroutines. This serves as a general system load indicator worth establishing a baseline and thresholds for alerting.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','b728e92f88db47308272eff7e3bb8c08');
INSERT INTO `items` (`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`,`uuid`) values ('32809','18','','10365','Vault: Policy LIST ops, rate','vault.metrics.policy.list_policies.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of operations to list policies.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','6650bc3487934dcebc2e1f4da2e1db13');
INSERT INTO `items` (`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`,`uuid`) values ('32810','18','','10365','Vault: Policy GET ops, rate','vault.metrics.policy.get_policy.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of operations to get a policy.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','bd790a83c48e4ea6bcc9271703036101');
INSERT INTO `items` (`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`,`uuid`) values ('32811','18','','10365','Vault: Runtime malloc count','vault.metrics.runtime.malloc.count','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Cumulative count of allocated heap objects.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','f8f0f80be7514fe5b085f04858ac4d7a');
INSERT INTO `items` (`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`,`uuid`) values ('32812','18','','10365','Vault: Token create, count','vault.metrics.token.create','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The time taken to create a token.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','1a203f57eb0647ca98a848913bb5b707');
INSERT INTO `items` (`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`,`uuid`) values ('32813','18','','10365','Vault: Runtime sys bytes','vault.metrics.runtime.sys.bytes','0','7d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes allocated to Vault. This includes what is being used by Vault\'s heap and what has been reclaimed but not given back to the operating system.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','9af322bade374b45b78d949e632747a8');
INSERT INTO `items` (`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`,`uuid`) values ('32814','18','','10365','Vault: Token createAccessor, count','vault.metrics.token.createAccessor','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The time taken to create a token accessor.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','0033d69a310041e58107e06a296492bd');
INSERT INTO `items` (`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`,`uuid`) values ('32815','18','','10365','Vault: Runtime GC pause, total','vault.metrics.total.gc.pause','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The total garbage collector pause time since Vault was last started.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','2f0e733e6b1c406b88d012e727ab0169');
INSERT INTO `items` (`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`,`uuid`) values ('32816','18','','10365','Vault: Token store, count','vault.metrics.token.store','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Time taken to store an updated token entry without writing to the secondary index.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','830ff368911c4532b10ff1e8c6c9e59b');
INSERT INTO `items` (`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`,`uuid`) values ('32817','18','','10365','Vault: Token revoke tree, count','vault.metrics.token.revoke.tree','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Time taken to revoke a token tree.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','c851263be6d94ab39b548a57bbad4eab');
INSERT INTO `items` (`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`,`uuid`) values ('32818','18','','10365','Vault: Token revoke, count','vault.metrics.token.revoke','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The time taken to look up a token.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','0d30ca2565b24659839e7e31fc8f6739');
INSERT INTO `items` (`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`,`uuid`) values ('32819','18','','10365','Vault: Token lookup, rate','vault.metrics.token.lookup.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of token look up.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','ad0c38837e774d9b8164bad51ae9fd4c');
INSERT INTO `items` (`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`,`uuid`) values ('32820','18','','10365','Vault: Token creation, rate','vault.metrics.token.creation.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of service or batch tokens created.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','3c73e0cdfe4147abb86ce939189e4cec');
INSERT INTO `items` (`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`,`uuid`) values ('32821','18','','10365','Vault: Expire revoke prefix, count','vault.metrics.expire.revoke.prefix','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Tokens revoke on a prefix.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','93041bd251d148c39e6e2e162f6f1078');
INSERT INTO `items` (`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`,`uuid`) values ('32822','18','','10365','Vault: Runtime GC runs, total','vault.metrics.runtime.total.gc.runs','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of garbage collection runs since Vault was last started.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','38f50f3173c346cebe6e321347e0270f');
INSERT INTO `items` (`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`,`uuid`) values ('32823','18','','10365','Vault: Token count by ttl, total','vault.metrics.token.by_ttl','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of service tokens, grouped by the TTL range they were assigned at creation.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','c5b512233ae745c390d85e604bf7449e');
INSERT INTO `items` (`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`,`uuid`) values ('32824','18','','10365','Vault: Token count by policy, total','vault.metrics.token.by_policy','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of service tokens that have a policy attached.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','2f9011a7dd6f4b078402dbb50256ee0a');
INSERT INTO `items` (`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`,`uuid`) values ('32825','18','','10365','Vault: Token count by auth, total','vault.metrics.token.by_auth','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of service tokens that were created by a auth method.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','4c7ae38abae146fdbaf334501b3644f1');
INSERT INTO `items` (`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`,`uuid`) values ('32826','18','','10365','Vault: Token count, total','vault.metrics.token','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of service tokens available for use; counts all un-expired and un-revoked tokens in Vault\'s token store. This measurement is performed every 10 minutes.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','37576dbac47349fca97fe27c4906124d');
INSERT INTO `items` (`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`,`uuid`) values ('32827','18','','10365','Vault: Token secret lease creation, rate','vault.metrics.secret.lease.creation.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counts the number of leases created by secret engines.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','568b4b77ae58468da7bb407d349bd330');
INSERT INTO `items` (`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`,`uuid`) values ('32828','18','','10365','Vault: Secret kv entries','vault.metrics.secret.kv.count','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of entries in each key-value secret engine.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','20f0708b63784c4190e8e6256f2d57f3');
INSERT INTO `items` (`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`,`uuid`) values ('32829','18','','10365','Vault: Policy DELETE ops, rate','vault.metrics.policy.delete_policy.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of operations to delete a policy.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','5c3e5032315e466e81fca67ea880b33a');
INSERT INTO `items` (`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`,`uuid`) values ('32830','18','','10365','Vault: Fetch lease times by token, counter','vault.metrics.expire.fetch.lease.times.by_token','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Time taken to fetch lease times by token.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','7f3ab929e48848e294cfa68b8e1783ad');
INSERT INTO `items` (`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`,`uuid`) values ('32831','18','','10365','Vault: Expire revoke force, count','vault.metrics.expire.revoke.force','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Time taken to forcibly revoke a token.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','6bed679f33b4415d833cb5033c5f824c');
INSERT INTO `items` (`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`,`uuid`) values ('32832','18','','10365','Vault: Barrier LIST ops, rate','vault.metrics.barrier.list.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of LIST operations at the barrier.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','8a854323d051485091917391c630cc28');
INSERT INTO `items` (`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`,`uuid`) values ('32833','18','','10365','Vault: Fetch ACL and token, rate','vault.metrics.core.fetch.acl_and_token','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of ACL and corresponding token entry fetches handled by Vault core.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','77bf09bd2b554e5a8d0dde53045f05c7');
INSERT INTO `items` (`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`,`uuid`) values ('32834','18','','10365','Vault: Check token, rate','vault.metrics.core.check.token.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of token checks handled by Vault core.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','004f1eebd08c46d4bbdab7a6c6e3f3ec');
INSERT INTO `items` (`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`,`uuid`) values ('32835','18','','10365','Vault: Cache write, rate','vault.metrics.cache.write.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times a value was written to the LRU cache.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','d99841c57aa349ae8676072e12add35c');
INSERT INTO `items` (`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`,`uuid`) values ('32836','18','','10365','Vault: Cache miss, rate','vault.metrics.cache.miss.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times a value was not in the LRU cache. The results in a read from the configured storage.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','4df07a4ea4a048c7bc11b21b56cf96c6');
INSERT INTO `items` (`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`,`uuid`) values ('32837','18','','10365','Vault: Cache hit, rate','vault.metrics.cache.hit.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times a value was retrieved from the LRU cache.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','f0069229811749e5b399f1214176ae11');
INSERT INTO `items` (`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`,`uuid`) values ('32838','18','','10365','Vault: Barrier PUT ops, rate','vault.metrics.barrier.put.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of PUT operations at the barrier.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','1dbf0413b1574f6e9b04abe5d06ab8aa');
INSERT INTO `items` (`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`,`uuid`) values ('32839','18','','10365','Vault: Barrier DELETE ops, rate','vault.metrics.barrier.delete.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of DELETE operations at the barrier.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','e1d11f77e8394b22b88ddcf9a1b8159b');
INSERT INTO `items` (`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`,`uuid`) values ('32840','18','','10365','Vault: Leadership setup failed, counter','vault.metrics.core.leadership.setup_failed','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Cluster leadership setup failures which have occurred in a highly available Vault cluster.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','2aa54d38cc2541e3ae4df89e86d63d20');
INSERT INTO `items` (`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`,`uuid`) values ('32841','18','','10365','Vault: Audit log response, rate','vault.metrics.audit.log.response.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of audit log responses across all audit log devices.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','c336a5cecd4641b58be6ab1ba511f6ef');
INSERT INTO `items` (`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`,`uuid`) values ('32842','18','','10365','Vault: Audit log response failures, rate','vault.metrics.audit.log.response.failure.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of audit log response failures.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','6b8b37e62e374bc38994c5dcc6f0fc6d');
INSERT INTO `items` (`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`,`uuid`) values ('32843','18','','10365','Vault: Audit log requests, rate','vault.metrics.audit.log.request.rate','0','7d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of all audit log requests across all audit log devices.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','33f2ce934ae5451dace5f880b3a2e6b7');
INSERT INTO `items` (`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`,`uuid`) values ('32844','18','','10365','Vault: Audit log request failures, rate','vault.metrics.audit.log.request.failure.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of audit log request failures.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','f23cbc80bf2d4064bf45cc27f6ec752e');
INSERT INTO `items` (`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`,`uuid`) values ('32845','18','','10365','Vault: Check WAL discovery','vault.check_wal_discovery','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','febb5558b1944187a0ac6e87ed153267');
INSERT INTO `items` (`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`,`uuid`) values ('32846','18','','10365','Vault: Check storage discovery','vault.check_storage_discovery','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','f9c8f0ec3a5640af8464f69d1cebbd42');
INSERT INTO `items` (`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`,`uuid`) values ('32847','18','','10365','Vault: Requests, rate','vault.metrics.core.handle.request','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of requests handled by Vault core.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','4ddf18c7768147a396fe13608b5508fb');
INSERT INTO `items` (`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`,`uuid`) values ('32848','18','','10365','Vault: Leadership setup lost, counter','vault.metrics.core.leadership_lost','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Cluster leadership losses which have occurred in a highly available Vault cluster.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','f0ca68774b5842d7803d2c2619958184');
INSERT INTO `items` (`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`,`uuid`) values ('32849','18','','10365','Vault: Revoke secrets by token, count','vault.metrics.expire.revoke.by_token','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Time taken to revoke all secrets issued with a given token.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','bc023bdad9504a86b17d2308db62e98f');
INSERT INTO `items` (`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`,`uuid`) values ('32850','18','','10365','Vault: Check replication discovery','vault.check_replication_discovery','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','940cacdb967c40a1b9fba1c143c8589b');
INSERT INTO `items` (`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`,`uuid`) values ('32851','18','','10365','Vault: Expire revoke, count','vault.metrics.expire.revoke','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Time taken to revoke a token.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','21a1b8470a31484da1e3fd76d3c8094b');
INSERT INTO `items` (`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`,`uuid`) values ('32852','18','','10365','Vault: Renew token, count','vault.metrics.expire.renew_token','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Time taken to renew a token which does not need to invoke a logical backend.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','091c66e0f2794a72a97ddfc3a7142b72');
INSERT INTO `items` (`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`,`uuid`) values ('32853','18','','10365','Vault: Expire renew, count','vault.metrics.expire.renew','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Time taken to renew a lease.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','2d418cd62ada44c6bd527db8da0731e1');
INSERT INTO `items` (`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`,`uuid`) values ('32854','18','','10365','Vault: Register auth ops, count','vault.metrics.expire.register.auth','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Time taken for register authentication operations which create lease entries without lease ID.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','89dcbfb69b8a44dcbf330d16d292ec1b');
INSERT INTO `items` (`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`,`uuid`) values ('32855','18','','10365','Vault: Register ops, count','vault.metrics.expire.register','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Time taken for register operations.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','b160780f06c846809f7aca043777754f');
INSERT INTO `items` (`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`,`uuid`) values ('32856','18','','10365','Vault: Number of expiring leases','vault.metrics.expire.num_leases','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of all leases which are eligible for eventual expiry.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','66f1855a47624f10ae69735053e326f1');
INSERT INTO `items` (`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`,`uuid`) values ('32857','18','','10365','Vault: Fetch lease times, counter','vault.metrics.expire.fetch.lease.times','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Time taken to fetch lease times.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','5edebc9e295844ee8716d2b17152bdd9');
INSERT INTO `items` (`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`,`uuid`) values ('32858','18','','10365','Vault: Post-unseal ops, counter','vault.metrics.core.post_unseal','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Duration of time taken by post-unseal operations handled by Vault core.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','2bdb273b513d4a06914cd6ea11ac2368');
INSERT INTO `items` (`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`,`uuid`) values ('32859','18','','10365','Vault: Unseal ops, counter','vault.metrics.core.unseal','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Duration of time taken by unseal operations.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','075c83114d1746b6b773579404e0268d');
INSERT INTO `items` (`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`,`uuid`) values ('32860','18','','10365','Vault: Leadership step downs, counter','vault.metrics.core.step_down','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Cluster leadership step down.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','1d66f20a1d594b4fa7c81849b83a4ef9');
INSERT INTO `items` (`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`,`uuid`) values ('32861','18','','10365','Vault: Requested seal ops, counter','vault.metrics.core.seal_with_request','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Duration of time taken by requested seal operations.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','e0ecf5aa8c2a4e0886b5a12588839efd');
INSERT INTO `items` (`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`,`uuid`) values ('32862','18','','10365','Vault: Internal seal ops, counter','vault.metrics.core.seal_internal','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Duration of time taken by internal seal operations.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','95f6ab7294c547e7976a292447ef31fb');
INSERT INTO `items` (`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`,`uuid`) values ('32863','18','','10365','Vault: Seal ops, counter','vault.metrics.core.seal','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Duration of time taken by seal operations.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','42d7e5c3d5b24a65b9821e1aaf0df2a0');
INSERT INTO `items` (`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`,`uuid`) values ('32864','18','','10365','Vault: Pre-seal ops, counter','vault.metrics.core.pre_seal','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Duration of time taken by pre-seal operations.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','81738d2323a94aa8a7f2b1d9721ac9f9');
INSERT INTO `items` (`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`,`uuid`) values ('32865','18','','10365','Vault: Barrier GET ops, rate','vault.metrics.vault.barrier.get.rate','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of GET operations at the barrier.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','f616fbcd3d20456bb34cde735cf7fad5');
INSERT INTO `items` (`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`,`uuid`) values ('32874','18','','10365','Vault: Rollback attempt [{#MOUNTPOINT}] ops, rate','vault.metrics.rollback.attempt.rate[{#MOUNTPOINT}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of operations to perform a rollback operation on the given mount point.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','3956d1e526d944c7b68d09a1cf52f11e');
INSERT INTO `items` (`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`,`uuid`) values ('32875','18','','10365','Vault: Route rollback [{#MOUNTPOINT}] ops, rate','vault.metrics.route.rollback.rate[{#MOUNTPOINT}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of operations to dispatch a rollback operation to a backend, and for that backend to process it. Rollback operations are automatically scheduled to clean up partial errors.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','e0a4232e6a20433ba26e4313ff9ec1bc');
INSERT INTO `items` (`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`,`uuid`) values ('32876','18','','10365','Vault: Stream WAL guard found, count{#SINGLETON}','vault.metrics.logshipper.streamWALs.guard_found[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of incidences where the starting Merkle Tree index used to begin streaming WAL entries is matched/found.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','af047eca9606472680288e5b5703bca9');
INSERT INTO `items` (`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`,`uuid`) values ('32877','18','','10365','Vault: Stream WAL missing guard, count{#SINGLETON}','vault.metrics.logshipper.streamWALs.missing_guard[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of incidences where the starting Merkle Tree index used to begin streaming WAL entries is not matched/found.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','df61d6db369540fd9934648189e9175a');
INSERT INTO `items` (`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`,`uuid`) values ('32878','18','','10365','Vault: Last remote WAL{#SINGLETON}','vault.metrics.replication.fsm.last_remote_wal[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The index of the last remote WAL.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','288ffb2cd8bc45f39a7e6d98a2100022');
INSERT INTO `items` (`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`,`uuid`) values ('32879','18','','10365','Vault: Merkle commit index{#SINGLETON}','vault.metrics.replication.merkle.commit_index[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The last committed index in the Merkle Tree.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','ca9c56e53093436f99a6a80f499aac45');
INSERT INTO `items` (`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`,`uuid`) values ('32880','18','','10365','Vault: Last DR WAL{#SINGLETON}','vault.metrics.replication.wal.last_dr_wal[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The index of the last DR WAL.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','854a4541b78c4df6b9d4971d71c7df49');
INSERT INTO `items` (`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`,`uuid`) values ('32881','18','','10365','Vault: Last performance WAL{#SINGLETON}','vault.metrics.replication.wal.last_performance_wal[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The index of the last Performance WAL.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','5aed3273a8c24236817f8bd3b5860f87');
INSERT INTO `items` (`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`,`uuid`) values ('32882','18','','10365','Vault: Last WAL{#SINGLETON}','vault.metrics.replication.wal.last_wal[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The index of the last WAL.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','f5bcef9569f44212b813cc0ec821b1ea');
INSERT INTO `items` (`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`,`uuid`) values ('32883','18','','10365','Vault: Storage [{#STORAGE}] {#OPERATION} ops, rate','vault.metrics.storage.rate[{#STORAGE}, {#OPERATION}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of a {#OPERATION} operation against the {#STORAGE} storage backend.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','0cdb0bcf0ff448ff8c5d673f9b66d17a');
INSERT INTO `items` (`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`,`uuid`) values ('32884','18','','10365','Vault: Delete WALs, count{#SINGLETON}','vault.metrics.wal.deletewals[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Time taken to delete a Write Ahead Log (WAL).','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','7e21309d1778466cae08e6424108d0e9');
INSERT INTO `items` (`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`,`uuid`) values ('32885','18','','10365','Vault: Flush ready WAL, count{#SINGLETON}','vault.metrics.wal.flushready[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Time taken to flush a ready Write Ahead Log (WAL) to storage.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','80d5a79d35bc4b3a970f311b0c8c3fbf');
INSERT INTO `items` (`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`,`uuid`) values ('32886','18','','10365','Vault: GC deleted WAL{#SINGLETON}','vault.metrics.wal.gc.deleted[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of Write Ahead Logs (WAL) deleted during each garbage collection run.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','daee033751164b6591d326d2d59b7e3a');
INSERT INTO `items` (`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`,`uuid`) values ('32887','18','','10365','Vault: WALs on disk, total{#SINGLETON}','vault.metrics.wal.gc.total[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total Number of Write Ahead Logs (WAL) on disk.','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','b45b43ac739246719e517d04eb384787');
INSERT INTO `items` (`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`,`uuid`) values ('32888','18','','10365','Vault: Load WALs, count{#SINGLETON}','vault.metrics.wal.loadWAL[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Time taken to load a Write Ahead Log (WAL).','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','b1e306d6136a4b6d933bd2154b3d5d6e');
INSERT INTO `items` (`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`,`uuid`) values ('32889','18','','10365','Vault: Persist WALs, count{#SINGLETON}','vault.metrics.wal.persistwals[{#SINGLETON}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Time taken to persist a Write Ahead Log (WAL).','0','30d','0','','32795','3s','','','','200','1','0','','0','0','0','0','0','0','0','de8fea26aa1546d2bdf1ec7dd5205a3b');
INSERT INTO `items` (`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`,`uuid`) values ('39746','18','','10503','Velocloud: Orchestrator API version','velocloud.orchestrator.api_version','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of VMware SD-WAN Orchestrator API.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','3f589e2191c5419fb89cc33639595ae9');
INSERT INTO `items` (`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`,`uuid`) values ('39747','18','','10503','Velocloud: Orchestrator build','velocloud.orchestrator.build','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Build of VMware SD-WAN Orchestrator API.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','ab24d8fc4c2a4130bca1b4b6d4f311ae');
INSERT INTO `items` (`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`,`uuid`) values ('39748','18','','10503','Velocloud: Orchestrator version','velocloud.orchestrator.version','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of VMware SD-WAN Orchestrator API.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','1f60b61051494ab495de4dfe2cd83450');
INSERT INTO `items` (`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`,`uuid`) values ('39749','18','','10503','Edges metrics discovery','velocloud.edges.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Metrics for edges statistics.','0','30d','1','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','522ba6551cc64094b60a136d07c9921d');
INSERT INTO `items` (`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`,`uuid`) values ('39750','18','','10503','Gateways metrics discovery','velocloud.gateways.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Metrics for gateways statistics.','0','30d','1','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','e2879e0ce6e44203b0615c36ba626cc0');
INSERT INTO `items` (`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`,`uuid`) values ('39751','18','','10503','Links metrics discovery','velocloud.links.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Metrics for links statistics.','0','30d','1','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','b951193feec6495cbd446f6d5097a868');
INSERT INTO `items` (`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`,`uuid`) values ('39752','18','','10503','SDWAN peers path metrics discovery','velocloud.sdwanpath.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Metrics for SDWAN peers path.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','23ae8832dee54e7087b8c4d3c970a9ea');
INSERT INTO `items` (`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`,`uuid`) values ('39753','18','','10503','SDWAN peers metrics discovery','velocloud.sdwanpeers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Metrics for SDWAN peers.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','5695baeff9f64b9b8850dbc6f98566ef');
INSERT INTO `items` (`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`,`uuid`) values ('39754','18','','10503','Edge [{#NAME}]: Activation state','velocloud.edge.activation[{#ID}]','0','7d','365d','0','3','','','','',NULL,'561','','','0','','','','','2',NULL,'Edge activation state.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','79aa9ebb1ce64944a78a7c8d7603f53b');
INSERT INTO `items` (`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`,`uuid`) values ('39755','18','','10503','Edge [{#NAME}]: Description','velocloud.edge.description[{#ID}]','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Edge description.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','cecb2a3698704c4c89ef12eb3bb39222');
INSERT INTO `items` (`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`,`uuid`) values ('39756','18','','10503','Edge [{#NAME}]: HA state','velocloud.edge.ha_state[{#ID}]','0','7d','365d','0','3','','','','',NULL,'562','','','0','','','','','2',NULL,'Edge high availability state.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','490afb422d0f457595343d49536470b7');
INSERT INTO `items` (`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`,`uuid`) values ('39757','18','','10503','Edge [{#NAME}]: Model number','velocloud.edge.model[{#ID}]','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Edge model number.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','fdb55947147249109da453009d6bd443');
INSERT INTO `items` (`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`,`uuid`) values ('39758','18','','10503','Edge [{#NAME}]: Service uptime','velocloud.edge.service_uptime[{#ID}]','0','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'Edge service uptime.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','0af44b485ae54de49a0385923c897bee');
INSERT INTO `items` (`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`,`uuid`) values ('39759','18','','10503','Edge [{#NAME}]: Software version','velocloud.edge.software_version[{#ID}]','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Edge software version.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','e12fe7584fbd40268e7c16ed044aa4db');
INSERT INTO `items` (`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`,`uuid`) values ('39760','18','','10503','Edge [{#NAME}]: State','velocloud.edge.state[{#ID}]','0','7d','365d','0','3','','','','',NULL,'563','','','0','','','','','2',NULL,'Edge state.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','74b49eac72574daab1b727045be118ca');
INSERT INTO `items` (`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`,`uuid`) values ('39761','18','','10503','Edge [{#NAME}]: System uptime','velocloud.edge.system_uptime[{#ID}]','0','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'Edge system uptime.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','a86c1fa26d4d4481bdfb099338c27989');
INSERT INTO `items` (`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`,`uuid`) values ('39762','18','','10503','Gateway [{#NAME}]: Connected edges','velocloud.gateway.connected_edges[{#ID}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gateway connected edges.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','52859166849d4cdf860664f8d3b8088d');
INSERT INTO `items` (`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`,`uuid`) values ('39763','18','','10503','Gateway [{#NAME}]: Description','velocloud.gateway.description[{#ID}]','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gateway description.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','5e588efb83be4dc2bc29eaa0a6630718');
INSERT INTO `items` (`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`,`uuid`) values ('39764','18','','10503','Gateway [{#NAME}]: IP address','velocloud.gateway.ip_address[{#ID}]','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gateway ip address.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','7f2a0a68386744cb84fab35df8c55a07');
INSERT INTO `items` (`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`,`uuid`) values ('39765','18','','10503','Gateway [{#NAME}]: Service uptime','velocloud.gateway.service_uptime[{#ID}]','0','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'Gateway service uptime.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','b304460854f0485189f88df12483b5ac');
INSERT INTO `items` (`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`,`uuid`) values ('39766','18','','10503','Gateway [{#NAME}]: State','velocloud.gateway.state[{#ID}]','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gateway state.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','91784583eda943a7ace430413450391c');
INSERT INTO `items` (`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`,`uuid`) values ('39767','18','','10503','Gateway [{#NAME}]: System uptime','velocloud.gateway.system_uptime[{#ID}]','0','7d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'Gateway system uptime.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','d902600ef51640ffaaa4384ce505bcc2');
INSERT INTO `items` (`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`,`uuid`) values ('39768','18','','10503','Gateway [{#NAME}]: Utilization CPU','velocloud.gateway.utilization.cpu[{#ID}]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Gateway CPU utilization.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','66c8fe8095724fb38966b05ef5d77a37');
INSERT INTO `items` (`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`,`uuid`) values ('39769','18','','10503','Gateway [{#NAME}]: Utilization load','velocloud.gateway.utilization.load[{#ID}]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Gateway load.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','b510c38771464024a66dc20ce9d75505');
INSERT INTO `items` (`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`,`uuid`) values ('39770','18','','10503','Gateway [{#NAME}]: Utilization memory','velocloud.gateway.utilization.memory[{#ID}]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Gateway memory utilization.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','ad83565ae40f480dacd56e63bd475ddc');
INSERT INTO `items` (`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`,`uuid`) values ('39771','18','','10503','Gateway [{#NAME}]: Utilization overall','velocloud.gateway.utilization.overall[{#ID}]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Gateway overall utilization.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','b10c51350f604a8195e9c0176ca2de85');
INSERT INTO `items` (`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`,`uuid`) values ('39772','18','','10503','Link [{#NAME}]:[{#IP}]: Best loss rx, %','velocloud.link.best_loss_rx.pct[{#ID}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Link receive best loss.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','6b3351b9187d47ba804e5fcd8c6f474f');
INSERT INTO `items` (`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`,`uuid`) values ('39773','18','','10503','Link [{#NAME}]:[{#IP}]: Best loss tx, %','velocloud.link.best_loss_tx.pct[{#ID}]','0','7d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Link transmit best loss.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','897c9055d51a4e75ba7bae1160c7303e');
INSERT INTO `items` (`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`,`uuid`) values ('39774','18','','10503','Link [{#NAME}]:[{#IP}]: Bytes in','velocloud.link.bytes_rx[{#ID}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Link received bytes.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','5602191f2e0f4cb2b2340a4cfc77cfc7');
INSERT INTO `items` (`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`,`uuid`) values ('39775','18','','10503','Link [{#NAME}]:[{#IP}]: Bytes out','velocloud.link.bytes_tx[{#ID}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Link transmitted bytes.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','758b71f1692c46a8bb0611566b00031b');
INSERT INTO `items` (`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`,`uuid`) values ('39776','18','','10503','Link [{#NAME}]:[{#IP}]: Last active','velocloud.link.last_active[{#ID}]','0','7d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Link last active in seconds ago.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','3320d368036b460091b3f20e3c5cebd9');
INSERT INTO `items` (`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`,`uuid`) values ('39777','18','','10503','Link [{#NAME}]:[{#IP}]: Packets in','velocloud.link.packets_rx[{#ID}]','0','7d','365d','0','3','','!packets','','',NULL,NULL,'','','0','','','','','2',NULL,'Link received packets.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','cf66e401adc6432e8052baf0128d6877');
INSERT INTO `items` (`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`,`uuid`) values ('39778','18','','10503','Link [{#NAME}]:[{#IP}]: Packets out','velocloud.link.packets_tx[{#ID}]','0','7d','365d','0','3','','!packets','','',NULL,NULL,'','','0','','','','','2',NULL,'Link transmitted packets.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','152d25185f3e4e8b80ffea7d8ba25775');
INSERT INTO `items` (`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`,`uuid`) values ('39779','18','','10503','Link [{#NAME}]:[{#IP}]: State','velocloud.link.state[{#ID}]','0','7d','365d','0','3','','','','',NULL,'564','','','0','','','','','2',NULL,'Link state.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','b1d5964d030841e28a8b9e80c8152e7a');
INSERT INTO `items` (`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`,`uuid`) values ('39780','18','','10503','Link [{#NAME}]:[{#IP}]: Total bytes','velocloud.link.total_bytes[{#ID}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Link Total bytes.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','43deb16e85644937a182b01eadb875d0');
INSERT INTO `items` (`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`,`uuid`) values ('39781','18','','10503','Link [{#NAME}]:[{#IP}]: Total packets','velocloud.link.total_packets[{#ID}]','0','7d','365d','0','3','','!packets','','',NULL,NULL,'','','0','','','','','2',NULL,'Link total packets.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','622408bd703040339d1b4bdebed3280e');
INSERT INTO `items` (`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`,`uuid`) values ('39782','18','','10503','Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Bytes in','velocloud.sdwanpath.bytes_rx[{#NAME}/{#SOURCE}/{#DESTINATION}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Bytes received of SDWAN peer path.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','2fafb7d1b4c1429381f2f46c60dafa28');
INSERT INTO `items` (`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`,`uuid`) values ('39783','18','','10503','Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Bytes out','velocloud.sdwanpath.bytes_tx[{#NAME}/{#SOURCE}/{#DESTINATION}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Bytes transmitted of SDWAN peer path.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','2fa176affa6b46ffae3682ea7cb96866');
INSERT INTO `items` (`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`,`uuid`) values ('39784','18','','10503','Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Packets in','velocloud.sdwanpath.packets_rx[{#NAME}/{#SOURCE}/{#DESTINATION}]','0','7d','365d','0','3','','!packets','','',NULL,NULL,'','','0','','','','','2',NULL,'Packets received of SDWAN peer path.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','cf8f3d0c61994e49b493d79160da27bf');
INSERT INTO `items` (`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`,`uuid`) values ('39785','18','','10503','Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Packets out','velocloud.sdwanpath.packets_tx[{#NAME}/{#SOURCE}/{#DESTINATION}]','0','7d','365d','0','3','','!packets','','',NULL,NULL,'','','0','','','','','2',NULL,'Packets transmitted of SDWAN peer path.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','49fc4e85c5a5415793fc89f2c3cdec8f');
INSERT INTO `items` (`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`,`uuid`) values ('39786','18','','10503','Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Packet Loss in','velocloud.sdwanpath.packet_loss_rx[{#NAME}/{#SOURCE}/{#DESTINATION}]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Received packet loss of SDWAN peer path.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','98a0c2c3a3be47e9bd32cf719069cad2');
INSERT INTO `items` (`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`,`uuid`) values ('39787','18','','10503','Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Packet Loss out','velocloud.sdwanpath.packet_loss_tx[{#NAME}/{#SOURCE}/{#DESTINATION}]','0','7d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Transmitted packet loss of SDWAN peer path.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','0f2ef8113a3644feae7b827675362485');
INSERT INTO `items` (`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`,`uuid`) values ('39788','18','','10503','Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Bytes total','velocloud.sdwanpath.total_bytes[{#NAME}/{#SOURCE}/{#DESTINATION}]','0','7d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total bytes of SDWAN peer path.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','3a7ed14c13874c3088f28253a25a0c10');
INSERT INTO `items` (`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`,`uuid`) values ('39789','18','','10503','Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Total packets','velocloud.sdwanpath.total_packets[{#NAME}/{#SOURCE}/{#DESTINATION}]','0','7d','365d','0','3','','!packets','','',NULL,NULL,'','','0','','','','','2',NULL,'Total packets of SDWAN peer path.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','1f7bbdd7c1e24429878538b3b6bbddc4');
INSERT INTO `items` (`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`,`uuid`) values ('39790','18','','10503','SDWAN Peer [{#NAME}]:[{#TYPE}]: Dead path','velocloud.sdwanpeer.dead_path[{#EDGE.ID}/{#ID}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of dead path of SDWAN peer.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','25f6dc87f6014502a5eeb36ed3ddd7ed');
INSERT INTO `items` (`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`,`uuid`) values ('39791','18','','10503','SDWAN Peer [{#NAME}]:[{#TYPE}]: Description','velocloud.sdwanpeer.description[{#EDGE.ID}/{#ID}]','0','7d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Description of SDWAN peer.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','08fb5b9cf8464e4382224515ba75953d');
INSERT INTO `items` (`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`,`uuid`) values ('39792','18','','10503','SDWAN Peer [{#NAME}]:[{#TYPE}]: Stable path','velocloud.sdwanpeer.stable_path[{#EDGE.ID}/{#ID}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of stable path of SDWAN peer.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','ece78f083d55413ab82a33f03c0204ef');
INSERT INTO `items` (`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`,`uuid`) values ('39793','18','','10503','SDWAN Peer [{#NAME}]:[{#TYPE}]: Standby path','velocloud.sdwanpeer.standby_path[{#EDGE.ID}/{#ID}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of standby path of SDWAN peer.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','3884e4bf4e8a46508c04a6cd06ae1513');
INSERT INTO `items` (`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`,`uuid`) values ('39794','18','','10503','SDWAN Peer [{#NAME}]:[{#TYPE}]: Total path','velocloud.sdwanpeer.total_path[{#EDGE.ID}/{#ID}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of total path of SDWAN peer.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','39389b7b594e4b5da678ff985da0ba2a');
INSERT INTO `items` (`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`,`uuid`) values ('39795','18','','10503','SDWAN Peer [{#NAME}]:[{#TYPE}]: Unknown path','velocloud.sdwanpeer.unknown_path[{#EDGE.ID}/{#ID}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of unknown path of SDWAN peer.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','474e118fa98340f68c73f4ddc5f54f5e');
INSERT INTO `items` (`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`,`uuid`) values ('39796','18','','10503','SDWAN Peer [{#NAME}]:[{#TYPE}]: Unstable path','velocloud.sdwanpeer.unstable_path[{#EDGE.ID}/{#ID}]','0','7d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of unstable path of SDWAN peer.','0','30d','0','','39744','3s','','','','200','1','0','','0','0','0','0','0','0','0','4e93b5e2f88747b093aba97d94d433f2');
INSERT INTO `items` (`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`,`uuid`) values ('39940','18','','10507','Node discovery','kube.node.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','1','','39939','3s','','','','200','1','0','','0','0','0','0','0','0','0','f408d71f02f645f6a7e24047a57860b6');
INSERT INTO `items` (`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`,`uuid`) values ('39941','18','','10507','Cluster node discovery','kube.node_host.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','30d','1','','39939','3s','','','','200','1','0','','0','0','0','0','0','0','0','0cf35d7efd2045c2b22d3dd660ebe210');
INSERT INTO `items` (`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`,`uuid`) values ('42733','18','','10516','[{#LOCATION}, {#COUNTRY}]: Cloudiness','openweathermap.clouds[{#ID}]','0','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Cloudiness in %.','0','30d','0','','42732','3s','','','','200','1','0','','0','0','0','0','0','0','0','8d19b2e691a440dcb014a6518b7bb0d6');
INSERT INTO `items` (`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`,`uuid`) values ('42734','18','','10516','[{#LOCATION}, {#COUNTRY}]: Short weather status','openweathermap.description[{#ID}]','0','7d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Short weather status description.','0','30d','0','','42732','3s','','','','200','1','0','','0','0','0','0','0','0','0','02463505cab64ae0bbc4554531372818');
INSERT INTO `items` (`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`,`uuid`) values ('42735','18','','10516','[{#LOCATION}, {#COUNTRY}]: Humidity','openweathermap.humidity[{#ID}]','0','7d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Humidity in %.','0','30d','0','','42732','3s','','','','200','1','0','','0','0','0','0','0','0','0','5f8fa36c0be5475bad5c5c9074afa7e4');
INSERT INTO `items` (`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`,`uuid`) values ('42736','18','','10516','[{#LOCATION}, {#COUNTRY}]: Atmospheric pressure','openweathermap.pressure[{#ID}]','0','7d','365d','0','3','','Pa','','',NULL,NULL,'','','0','','','','','2',NULL,'Atmospheric pressure in Pa.','0','30d','0','','42732','3s','','','','200','1','0','','0','0','0','0','0','0','0','a9ef27e9702c4f41bfbb95579ff2014e');
INSERT INTO `items` (`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`,`uuid`) values ('42737','18','','10516','[{#LOCATION}, {#COUNTRY}]: Rain volume for the last one hour','openweathermap.rain[{#ID}]','0','7d','365d','0','0','','m','','',NULL,NULL,'','','0','','','','','2',NULL,'Rain volume for the lat one hour in m.','0','30d','0','','42732','3s','','','','200','1','0','','0','0','0','0','0','0','0','6a0f10ae39a347319026ff147f1dc470');
INSERT INTO `items` (`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`,`uuid`) values ('42738','18','','10516','[{#LOCATION}, {#COUNTRY}]: Snow volume for the last one hour','openweathermap.snow[{#ID}]','0','7d','365d','0','0','','m','','',NULL,NULL,'','','0','','','','','2',NULL,'Snow volume for the lat one hour in m.','0','30d','0','','42732','3s','','','','200','1','0','','0','0','0','0','0','0','0','8310f65dceeb4b348f1a769b806d5239');
INSERT INTO `items` (`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`,`uuid`) values ('42739','18','','10516','[{#LOCATION}, {#COUNTRY}]: Temperature','openweathermap.temp[{#ID}]','0','7d','365d','0','0','','{#TEMP.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'Atmospheric temperature value.','0','30d','0','','42732','3s','','','','200','1','0','','0','0','0','0','0','0','0','d30b8a4a56344ddd830d0bd633507b78');
INSERT INTO `items` (`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`,`uuid`) values ('42740','18','','10516','[{#LOCATION}, {#COUNTRY}]: Visibility','openweathermap.visibility[{#ID}]','0','7d','365d','0','3','','m','','',NULL,NULL,'','','0','','','','','2',NULL,'Visibility in m.','0','30d','0','','42732','3s','','','','200','1','0','','0','0','0','0','0','0','0','23d4152f794d46f6af705749b9443100');
INSERT INTO `items` (`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`,`uuid`) values ('42741','18','','10516','[{#LOCATION}, {#COUNTRY}]: Wind direction','openweathermap.wind.direction[{#ID}]','0','7d','365d','0','0','','deg','','',NULL,'952','','','0','','','','','2',NULL,'Wind direction in degrees.','0','30d','0','','42732','3s','','','','200','1','0','','0','0','0','0','0','0','0','f3350dcbd4f247e7878c06b8695beddd');
INSERT INTO `items` (`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`,`uuid`) values ('42742','18','','10516','[{#LOCATION}, {#COUNTRY}]: Wind speed','openweathermap.wind.speed[{#ID}]','0','7d','365d','0','0','','{#WIND.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'Wind speed value.','0','30d','0','','42732','3s','','','','200','1','0','','0','0','0','0','0','0','0','67decabd27774e9fb6d9212621c43a54');
INSERT INTO `items` (`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`,`uuid`) values ('43498','18','','10527','Appliance bays discovery','hpe.synergy.appliances.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the appliance bays in the enclosure.','0','30d','0','','43496','3s','','','','200','1','0','','0','0','0','0','0','0','0','73d93ade7489472fae4e68b05de52291');
INSERT INTO `items` (`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`,`uuid`) values ('43499','18','','10527','Cross bars discovery','hpe.synergy.crossbars.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SDX cross fabric module connects to all compute devices installed in the system enclosure and brings in the capability of hard partitioning. Crossbar details are relevant only for enclosures with type "SDX".','0','30d','0','','43496','3s','','','','200','1','0','','0','0','0','0','0','0','0','2ebb056eceea47d7ab8ca623504feb04');
INSERT INTO `items` (`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`,`uuid`) values ('43501','18','','10527','Devices discovery','hpe.synergy.devices.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of device bays in the enclosure.','0','30d','0','','43496','3s','','','','200','1','0','','0','0','0','0','0','0','0','3cde01eb8cbb4977824dc4fd00c56a10');
INSERT INTO `items` (`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`,`uuid`) values ('43505','18','','10527','Fans discovery','hpe.synergy.fans.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the fan bays in the enclosure.','0','30d','0','','43496','3s','','','','200','1','0','','0','0','0','0','0','0','0','5d5303b09c6e43748571c9ea247774be');
INSERT INTO `items` (`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`,`uuid`) values ('43507','18','','10527','Managers discovery','hpe.synergy.frame_link_modules.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the Synergy Frame Link Module bays.','0','30d','0','','43496','3s','','','','200','1','0','','0','0','0','0','0','0','0','0ac7b7355249475eac517cbc9ac8ba83');
INSERT INTO `items` (`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`,`uuid`) values ('43511','18','','10527','nPar discovery','hpe.synergy.npar.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Electrically isolated hardware partition (nPar). Partition details are relevant only for enclosures with type "SDX".','0','30d','0','','43496','3s','','','','200','1','0','','0','0','0','0','0','0','0','b800eed59653494cb5383e91627f0ef7');
INSERT INTO `items` (`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`,`uuid`) values ('43512','18','','10527','Power supplies discovery','hpe.synergy.ps.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'List of power supply bays in the enclosure.','0','30d','0','','43496','3s','','','','200','1','0','','0','0','0','0','0','0','0','8346025282a044cd8dafc2521a596f18');
INSERT INTO `items` (`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`,`uuid`) values ('32866','18','','10365','Mountpoint metrics discovery','vault.mountpoint.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Mountpoint metrics discovery.','0','30d','0','','32803','3s','','','','200','1','0','','0','0','0','0','0','0','0','ca7bbea60da54770b164ee11d9cd325f');
INSERT INTO `items` (`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`,`uuid`) values ('32867','18','','10365','Replication metrics discovery','vault.replication.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for replication metrics.','0','30d','0','','32850','3s','','','','200','1','0','','0','0','0','0','0','0','0','f2015f2394a64e7e923a2030400bcd69');
INSERT INTO `items` (`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`,`uuid`) values ('32868','18','','10365','Storage metrics discovery','vault.storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Storage backend metrics discovery.','0','30d','1','','32846','3s','','','','200','1','0','','0','0','0','0','0','0','0','ef703fedc3b347e9bb878d159d6756d8');
INSERT INTO `items` (`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`,`uuid`) values ('32870','18','','10365','WAL metrics discovery','vault.wal.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for WAL metrics.','0','30d','0','','32845','3s','','','','200','1','0','','0','0','0','0','0','0','0','ce7b2bb4c09c42d5a4b9e92c1c3dee23');
INSERT INTO `items` (`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`,`uuid`) values ('10073','5','','10084','Zabbix server: Number of processed numeric (float) values per second','zabbix[wcache,values,float]','1m','1w','365d','0','0','','','','','10061',NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed float values.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('10074','5','','10084','Zabbix server: Number of processed character values per second','zabbix[wcache,values,str]','1m','1w','365d','0','0','','','','','10062',NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed character/string values.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('10075','5','','10084','Zabbix server: Number of processed log values per second','zabbix[wcache,values,log]','1m','1w','365d','0','0','','','','','10063',NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed log values.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('10076','5','','10084','Zabbix server: Number of processed numeric (unsigned) values per second','zabbix[wcache,values,uint]','1m','1w','365d','0','0','','','','','10064',NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed numeric (unsigned) values.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('10077','5','','10084','Zabbix server: Number of processed text values per second','zabbix[wcache,values,text]','1m','1w','365d','0','0','','','','','10065',NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of processed text values.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('10078','5','','10084','Zabbix server: Number of processed not supported values per second','zabbix[wcache,values,not supported]','1m','1w','365d','0','0','','','','','10066',NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nNumber of times item processing resulted in item becoming unsupported or keeping that state.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23252','5','','10084','Zabbix server: Utilization of alerter internal processes, in %','zabbix[process,alerter,avg,busy]','1m','1w','365d','0','0','','%','','','22424',NULL,'','','0','','','','','0',NULL,'Average percentage of time alerter processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23253','5','','10084','Zabbix server: Utilization of configuration syncer internal processes, in %','zabbix[process,configuration syncer,avg,busy]','1m','1w','365d','0','0','','%','','','22412',NULL,'','','0','','','','','0',NULL,'Average percentage of time configuration syncer processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23255','5','','10084','Zabbix server: Utilization of discoverer data collector processes, in %','zabbix[process,discoverer,avg,busy]','1m','1w','365d','0','0','','%','','','22430',NULL,'','','0','','','','','0',NULL,'Average percentage of time discoverer processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23256','5','','10084','Zabbix server: Utilization of escalator internal processes, in %','zabbix[process,escalator,avg,busy]','1m','1w','365d','0','0','','%','','','22422',NULL,'','','0','','','','','0',NULL,'Average percentage of time escalator processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23257','5','','10084','Zabbix server: Utilization of history syncer internal processes, in %','zabbix[process,history syncer,avg,busy]','1m','1w','365d','0','0','','%','','','22406',NULL,'','','0','','','','','0',NULL,'Average percentage of time history syncer processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23258','5','','10084','Zabbix server: Utilization of housekeeper internal processes, in %','zabbix[process,housekeeper,avg,busy]','1m','1w','365d','0','0','','%','','','22408',NULL,'','','0','','','','','0',NULL,'Average percentage of time housekeeper processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23259','5','','10084','Zabbix server: Utilization of http poller data collector processes, in %','zabbix[process,http poller,avg,busy]','1m','1w','365d','0','0','','%','','','22402',NULL,'','','0','','','','','0',NULL,'Average percentage of time http poller processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23260','5','','10084','Zabbix server: Utilization of icmp pinger data collector processes, in %','zabbix[process,icmp pinger,avg,busy]','1m','1w','365d','0','0','','%','','','22418',NULL,'','','0','','','','','0',NULL,'Average percentage of time icmp pinger processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23261','5','','10084','Zabbix server: Utilization of ipmi poller data collector processes, in %','zabbix[process,ipmi poller,avg,busy]','1m','1w','365d','0','0','','%','','','22416',NULL,'','','0','','','','','0',NULL,'Average percentage of time ipmi poller processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23262','5','','10084','Zabbix server: Utilization of java poller data collector processes, in %','zabbix[process,java poller,avg,busy]','1m','1w','365d','0','0','','%','','','22689',NULL,'','','0','','','','','0',NULL,'Average percentage of time java poller processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23264','5','','10084','Zabbix server: Utilization of poller data collector processes, in %','zabbix[process,poller,avg,busy]','1m','1w','365d','0','0','','%','','','22399',NULL,'','','0','','','','','0',NULL,'Average percentage of time poller processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23265','5','','10084','Zabbix server: Utilization of proxy poller data collector processes, in %','zabbix[process,proxy poller,avg,busy]','1m','1w','365d','0','0','','%','','','22420',NULL,'','','0','','','','','0',NULL,'Average percentage of time proxy poller processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23266','5','','10084','Zabbix server: Utilization of self-monitoring internal processes, in %','zabbix[process,self-monitoring,avg,busy]','1m','1w','365d','0','0','','%','','','22414',NULL,'','','0','','','','','0',NULL,'Average percentage of time self-monitoring processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23267','5','','10084','Zabbix server: Utilization of snmp trapper data collector processes, in %','zabbix[process,snmp trapper,avg,busy]','1m','1w','365d','0','0','','%','','','23171',NULL,'','','0','','','','','0',NULL,'Average percentage of time snmp trapper processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23268','5','','10084','Zabbix server: Utilization of timer internal processes, in %','zabbix[process,timer,avg,busy]','1m','1w','365d','0','0','','%','','','22426',NULL,'','','0','','','','','0',NULL,'Average percentage of time timer processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23269','5','','10084','Zabbix server: Utilization of trapper data collector processes, in %','zabbix[process,trapper,avg,busy]','1m','1w','365d','0','0','','%','','','22404',NULL,'','','0','','','','','0',NULL,'Average percentage of time trapper processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23270','5','','10084','Zabbix server: Utilization of unreachable poller data collector processes, in %','zabbix[process,unreachable poller,avg,busy]','1m','1w','365d','0','0','','%','','','22400',NULL,'','','0','','','','','0',NULL,'Average percentage of time unreachable poller processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23271','5','','10084','Zabbix server: Queue over 10 minutes','zabbix[queue,10m]','1m','1w','365d','0','3','','','','','22219',NULL,'','','0','','','','','0',NULL,'Number of monitored items in the queue which are delayed at least by 10 minutes.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23272','5','','10084','Zabbix server: Queue','zabbix[queue]','1m','1w','365d','0','3','','','','','23251',NULL,'','','0','','','','','0',NULL,'Number of monitored items in the queue which are delayed at least by 6 seconds.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23273','5','','10084','Zabbix server: Configuration cache, % used','zabbix[rcache,buffer,pused]','1m','1w','365d','0','0','','%','','','22189',NULL,'','','0','','','','','0',NULL,'Availability statistics of Zabbix configuration cache. Percentage of used buffer.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23274','5','','10084','Zabbix server: History write cache, % used','zabbix[wcache,history,pused]','1m','1w','365d','0','0','','%','','','22183',NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache. Percentage of used history buffer.\r\nHistory cache is used to store item values. A high number indicates performance problems on the database side.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23275','5','','10084','Zabbix server: History index cache, % used','zabbix[wcache,index,pused]','1m','1w','365d','0','0','','%','','','22396',NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache. Percentage of used history index buffer.\r\nHistory index cache is used to index values stored in history cache.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23276','5','','10084','Zabbix server: Trend write cache, % used','zabbix[wcache,trend,pused]','1m','1w','365d','0','0','','%','','','22185',NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache. Percentage of used trend buffer.\r\nTrend cache stores aggregate for the current hour for all items that receive data.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23277','5','','10084','Zabbix server: Number of processed values per second','zabbix[wcache,values]','1m','1w','365d','0','0','','','','','22187',NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix write cache.\r\nTotal number of values processed by Zabbix server or Zabbix proxy, except unsupported items.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23328','5','','10084','Zabbix server: Utilization of vmware data collector processes, in %','zabbix[process,vmware collector,avg,busy]','1m','1w','365d','0','0','','%','','','22401',NULL,'','','0','','','','','0',NULL,'Average percentage of time vmware collector processes have been busy in the last minute','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23620','5','','10084','Zabbix server: Value cache, % used','zabbix[vcache,buffer,pused]','1m','1w','365d','0','0','','%','','','22191',NULL,'','','0','','','','','0',NULL,'Availability statistics of Zabbix value cache. Percentage of used buffer.','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23625','5','','10084','Zabbix server: Value cache hits','zabbix[vcache,cache,hits]','1m','1w','365d','0','0','','vps','','','22196',NULL,'','','0','','','','','0',NULL,'Effectiveness statistics of Zabbix value cache. Number of cache hits (history values taken from the cache).','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23628','5','','10084','Zabbix server: Value cache misses','zabbix[vcache,cache,misses]','1m','1w','365d','0','0','','vps','','','22199',NULL,'','','0','','','','','0',NULL,'Effectiveness statistics of Zabbix value cache. Number of cache misses (history values taken from the database).','0','0','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23635','5','','10084','Zabbix server: VMware cache, % used','zabbix[vmware,buffer,pused]','1m','1w','365d','0','0','','%','','','23634',NULL,'','','0','','','','','0',NULL,'Availability statistics of Zabbix vmware cache. Percentage of used buffer.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23662','5','','10084','Zabbix server: Value cache operating mode','zabbix[vcache,cache,mode]','1m','1w','365d','0','3','','','','','23661','55','','','0','','','','','0',NULL,'Value cache operating mode.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('23664','5','','10084','Zabbix server: Utilization of task manager internal processes, in %','zabbix[process,task manager,avg,busy]','1m','1w','365d','0','0','','%','','','23663',NULL,'','','0','','','','','0',NULL,'Average percentage of time task manager processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('25367','5','','10084','Zabbix server: Utilization of ipmi manager internal processes, in %','zabbix[process,ipmi manager,avg,busy]','1m','1w','365d','0','0','','%','','','25366',NULL,'','','0','','','','','0',NULL,'Average percentage of time ipmi manager processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('25371','5','','10084','Zabbix server: Utilization of alert manager internal processes, in %','zabbix[process,alert manager,avg,busy]','1m','1w','365d','0','0','','%','','','25370',NULL,'','','0','','','','','0',NULL,'Average percentage of time alert manager processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('25667','5','','10084','Zabbix server: Utilization of preprocessing manager internal processes, in %','zabbix[process,preprocessing manager,avg,busy]','1m','1w','365d','0','0','','%','','','25665',NULL,'','','0','','','','','0',NULL,'Average percentage of time preprocessing manager processes have been busy in the last minute','0','30','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('25668','5','','10084','Zabbix server: Utilization of preprocessing worker internal processes, in %','zabbix[process,preprocessing worker,avg,busy]','1m','1w','365d','0','0','','%','','','25666',NULL,'','','0','','','','','0',NULL,'Average percentage of time preprocessing worker processes have been busy in the last minute','0','30','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('28249','5','','10084','Zabbix server: Preprocessing queue','zabbix[preprocessing_queue]','1m','1w','365d','0','3','','','','','28248',NULL,'','','0','','','','','0',NULL,'Count of values enqueued in the preprocessing queue.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('28534','5','','10084','Zabbix server: LLD queue','zabbix[lld_queue]','1m','1w','365d','0','3','','','','','28533',NULL,'','','0','','','','','0',NULL,'Count of values enqueued in the low-level discovery processing queue.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('28536','5','','10084','Zabbix server: Utilization of LLD manager internal processes, in %','zabbix[process,lld manager,avg,busy]','1m','1w','365d','0','0','','%','','','28535',NULL,'','','0','','','','','0',NULL,'Average percentage of time lld manager processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('28538','5','','10084','Zabbix server: Utilization of LLD worker internal processes, in %','zabbix[process,lld worker,avg,busy]','1m','1w','365d','0','0','','%','','','28537',NULL,'','','0','','','','','0',NULL,'Average percentage of time lld worker processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('29823','5','','10084','Zabbix server: Utilization of alert syncer internal processes, in %','zabbix[process,alert syncer,avg,busy]','1m','1w','365d','0','0','','%','','','29822',NULL,'','','0','','','','','0',NULL,'Average percentage of time alert syncer processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('33024','5','','10084','Zabbix server: Trend function cache, % unique requests','zabbix[tcache,cache,pitems]','1m','1w','365d','0','0','','%','','','33020',NULL,'','','0','','','','','0',NULL,'Effectiveness statistics of the Zabbix trend function cache. Percentage of cached items from cached items + requests. Low percentage most likely means that the cache size can be reduced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('33025','5','','10084','Zabbix server: Trend function cache, % misses','zabbix[tcache,cache,pmisses]','1m','1w','365d','0','0','','%','','','33021',NULL,'','','0','','','','','0',NULL,'Effectiveness statistics of the Zabbix trend function cache. Percentage of cache misses.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('33026','5','','10084','Zabbix server: Utilization of availability manager internal processes, in %','zabbix[process,availability manager,avg,busy]','1m','1w','365d','0','0','','%','','','33022',NULL,'','','0','','','','','0',NULL,'Average percentage of time availability manager processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('33027','5','','10084','Zabbix server: Utilization of history poller data collector processes, in %','zabbix[process,history poller,avg,busy]','1m','1w','365d','0','0','','%','','','33023',NULL,'','','0','','','','','0',NULL,'Average percentage of time history poller processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('34318','5','','10084','Zabbix server: Utilization of report writer internal processes, in %','zabbix[process,report writer,avg,busy]','1m','1w','365d','0','0','','%','','','34316',NULL,'','','0','','','','','0',NULL,'Average percentage of time report writer processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('34319','5','','10084','Zabbix server: Utilization of report manager internal processes, in %','zabbix[process,report manager,avg,busy]','1m','1w','365d','0','0','','%','','','34317',NULL,'','','0','','','','','0',NULL,'Average percentage of time report manager processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('35275','5','','10084','Zabbix server: Utilization of trigger housekeeper internal processes, in %','zabbix[process,trigger housekeeper,avg,busy]','1m','1w','365d','0','0','','%','','','35272',NULL,'','','0','','','','','0',NULL,'Average percentage of time trigger housekeeper processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('35276','5','','10084','Zabbix server: Version','zabbix[version]','1m','1w','0','0','1','','','','','35273',NULL,'','','0','','','','','0',NULL,'Version of Zabbix server.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('35277','5','','10084','Zabbix server: Utilization of service manager internal processes, in %','zabbix[process,service manager,avg,busy]','1m','1w','365d','0','0','','%','','','35274',NULL,'','','0','','','','','0',NULL,'Average percentage of time service manager processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('39805','5','','10084','Zabbix stats cluster','zabbix[cluster,discovery,nodes]','1m','0','0','0','4','','','','','39804',NULL,'','','0','','','','','0',NULL,'Zabbix cluster statistics master item.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('39823','5','','10084','Zabbix server: Utilization of ODBC poller data collector processes, in %','zabbix[process,odbc poller,avg,busy]','1m','1w','365d','0','0','','%','','','39822',NULL,'','','0','','','','','0',NULL,'Average percentage of time ODBC poller processes have been busy in the last minute','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42227','0','','10084','Host name of Zabbix agent running','agent.hostname','1h','7d','0','0','1','','','','','42187',NULL,'','','0','','','','','0','1','','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42228','0','','10084','Free swap space','system.swap.size[,free]','1m','7d','365d','0','3','','B','','','42188',NULL,'','','0','','','','','0','1','The free space of swap volume/file in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42229','0','','10084','CPU system time','system.cpu.util[,system]','1m','7d','365d','0','0','','%','','','42189',NULL,'','','0','','','','','0','1','The time the CPU has spent running the kernel and its processes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42230','0','','10084','CPU user time','system.cpu.util[,user]','1m','7d','365d','0','0','','%','','','42190',NULL,'','','0','','','','','0','1','The time the CPU has spent running users\' processes that are not niced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42231','0','','10084','System name','system.hostname','1h','2w','0','0','1','','','','','42191',NULL,'','','0','','','','','0','1','System host name.','3','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42232','0','','10084','System local time','system.localtime','1m','7d','365d','0','3','','unixtime','','','42192',NULL,'','','0','','','','','0','1','System local time of the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42233','0','','10084','Operating system architecture','system.sw.arch','1h','2w','0','0','1','','','','','42193',NULL,'','','0','','','','','0','1','Operating system architecture of the host.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42234','0','','10084','Operating system','system.sw.os','1h','2w','0','0','1','','','','','42194',NULL,'','','0','','','','','0','1','','5','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42235','0','','10084','Software installed','system.sw.packages','1h','2w','0','0','4','','','','','42195',NULL,'','','0','','','','','0','1','','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42236','0','','10084','Free swap space in %','system.swap.size[,pfree]','1m','7d','365d','0','0','','%','','','42196',NULL,'','','0','','','','','0','1','The free space of swap volume/file in percent.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42237','0','','10084','Zabbix agent ping','agent.ping','1m','7d','365d','0','3','','','','','42197','908','','','0','','','','','0','1','The agent always returns 1 for this item. It could be used in combination with nodata() for availability check.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42238','0','','10084','Total swap space','system.swap.size[,total]','1m','7d','365d','0','3','','B','','','42198',NULL,'','','0','','','','','0','1','The total space of swap volume/file in bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42239','0','','10084','System description','system.uname','15m','2w','0','0','1','','','','','42199',NULL,'','','0','','','','','0','1','The information as normally returned by \'uname -a\'.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42240','0','','10084','System uptime','system.uptime','30s','2w','0d','0','3','','uptime','','','42200',NULL,'','','0','','','','','0','1','System uptime in \'N days, hh:mm:ss\' format.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42241','0','','10084','Number of logged in users','system.users.num','1m','7d','365d','0','3','','','','','42201',NULL,'','','0','','','','','0','1','Number of users who are currently logged in.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42242','0','','10084','Checksum of /etc/passwd','vfs.file.cksum[/etc/passwd,sha256]','15m','7d','0','0','1','','','','','42202',NULL,'','','0','','','','','0','1','','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42243','0','','10084','Available memory','vm.memory.size[available]','1m','7d','365d','0','3','','B','','','42203',NULL,'','','0','','','','','0','1','Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42244','0','','10084','Available memory in %','vm.memory.size[pavailable]','1m','7d','365d','0','0','','%','','','42204',NULL,'','','0','','','','','0','1','Available memory as percentage of total. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42245','0','','10084','Total memory','vm.memory.size[total]','1m','7d','365d','0','3','','B','','','42205',NULL,'','','0','','','','','0','1','Total memory in Bytes.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42246','0','','10084','CPU steal time','system.cpu.util[,steal]','1m','7d','365d','0','0','','%','','','42206',NULL,'','','0','','','','','0','1','The amount of CPU \'stolen\' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42247','0','','10084','CPU softirq time','system.cpu.util[,softirq]','1m','7d','365d','0','0','','%','','','42207',NULL,'','','0','','','','','0','1','The amount of time the CPU has been servicing software interrupts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42248','0','','10084','CPU nice time','system.cpu.util[,nice]','1m','7d','365d','0','0','','%','','','42208',NULL,'','','0','','','','','0','1','The time the CPU has spent running users\' processes that have been niced.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42249','0','','10084','Load average (1m avg)','system.cpu.load[all,avg1]','1m','7d','365d','0','0','','','','','42209',NULL,'','','0','','','','','0','1','','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42250','0','','10084','Version of Zabbix agent running','agent.version','1h','7d','0','0','1','','','','','42210',NULL,'','','0','','','','','0','1','','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42251','0','','10084','Maximum number of open file descriptors','kernel.maxfiles','1h','7d','365d','0','3','','','','','42211',NULL,'','','0','','','','','0','1','It could be increased by using sysctl utility or modifying file /etc/sysctl.conf.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42252','0','','10084','Maximum number of processes','kernel.maxproc','1h','7d','365d','0','3','','','','','42212',NULL,'','','0','','','','','0','1','It could be increased by using sysctl utility or modifying file /etc/sysctl.conf.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42253','0','','10084','Number of processes','proc.num','1m','7d','365d','0','3','','','','','42213',NULL,'','','0','','','','','0','1','','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42254','0','','10084','Number of running processes','proc.num[,,run]','1m','7d','365d','0','3','','','','','42214',NULL,'','','0','','','','','0','1','','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42255','0','','10084','System boot time','system.boottime','15m','7d','365d','0','3','','unixtime','','','42215',NULL,'','','0','','','','','0','1','','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42256','0','','10084','Interrupts per second','system.cpu.intr','1m','7d','365d','0','0','','','','','42216',NULL,'','','0','','','','','0','1','','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42257','0','','10084','Load average (5m avg)','system.cpu.load[all,avg5]','1m','7d','365d','0','0','','','','','42217',NULL,'','','0','','','','','0','1','','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42258','0','','10084','CPU iowait time','system.cpu.util[,iowait]','1m','7d','365d','0','0','','%','','','42218',NULL,'','','0','','','','','0','1','Amount of time the CPU has been waiting for I/O to complete.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42259','0','','10084','Load average (15m avg)','system.cpu.load[all,avg15]','1m','7d','365d','0','0','','','','','42219',NULL,'','','0','','','','','0','1','','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42260','0','','10084','Number of CPUs','system.cpu.num','1m','7d','365d','0','3','','','','','42220',NULL,'','','0','','','','','0','1','','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42261','0','','10084','Context switches per second','system.cpu.switches','1m','7d','365d','0','0','','','','','42221',NULL,'','','0','','','','','0','1','','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42262','0','','10084','CPU guest time','system.cpu.util[,guest]','1m','7d','365d','0','0','','%','','','42222',NULL,'','','0','','','','','0','1','Guest time (time spent running a virtual CPU for a guest operating system).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42263','0','','10084','CPU guest nice time','system.cpu.util[,guest_nice]','1m','7d','365d','0','0','','%','','','42223',NULL,'','','0','','','','','0','1','Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel).','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42264','0','','10084','CPU idle time','system.cpu.util[,idle]','1m','7d','365d','0','0','','%','','','42224',NULL,'','','0','','','','','0','1','The time the CPU has spent doing nothing.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42265','0','','10084','CPU interrupt time','system.cpu.util[,interrupt]','1m','7d','365d','0','0','','%','','','42225',NULL,'','','0','','','','','0','1','The amount of time the CPU has been servicing hardware interrupts.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42266','5','','10084','Zabbix agent availability','zabbix[host,agent,available]','1m','7d','365d','0','3','','','','','42226','907','','','0','','','','','0',NULL,'Monitoring agent availability status','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42274','0','','10084','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','','42271',NULL,'','','0','','','','','1','1','Discovery of network interfaces.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42275','0','','10084','Block devices discovery','vfs.dev.discovery','1h','90d','0','0','4','','','','','42272',NULL,'','','0','','','','','1','1','','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42276','0','','10084','Mounted filesystem discovery','vfs.fs.discovery','1h','90d','0','0','4','','','','','42273',NULL,'','','0','','','','','1','1','Discovery of file systems of different types.','0','30d','1','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42292','0','','10084','Interface {#IFNAME}: Inbound packets discarded','net.if.in["{#IFNAME}",dropped]','3m','7d','365d','0','3','','','','','42277',NULL,'','','0','','','','','2','1','','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42293','0','','10084','Interface {#IFNAME}: Inbound packets with errors','net.if.in["{#IFNAME}",errors]','3m','7d','365d','0','3','','','','','42278',NULL,'','','0','','','','','2','1','','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42294','0','','10084','Interface {#IFNAME}: Bits received','net.if.in["{#IFNAME}"]','3m','7d','365d','0','3','','bps','','','42279',NULL,'','','0','','','','','2','1','','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42295','0','','10084','Interface {#IFNAME}: Outbound packets discarded','net.if.out["{#IFNAME}",dropped]','3m','7d','365d','0','3','','','','','42280',NULL,'','','0','','','','','2','1','','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42296','0','','10084','Interface {#IFNAME}: Outbound packets with errors','net.if.out["{#IFNAME}",errors]','3m','7d','365d','0','3','','','','','42281',NULL,'','','0','','','','','2','1','','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42297','0','','10084','Interface {#IFNAME}: Bits sent','net.if.out["{#IFNAME}"]','3m','7d','365d','0','3','','bps','','','42282',NULL,'','','0','','','','','2','1','','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42298','0','','10084','Interface {#IFNAME}: Operational status','vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"]','1m','7d','0','0','3','','','','','42283','905','','','0','','','','','2','1','Reference: https://www.kernel.org/doc/Documentation/networking/operstates.txt','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42299','0','','10084','Interface {#IFNAME}: Interface type','vfs.file.contents["/sys/class/net/{#IFNAME}/type"]','1h','7d','0d','0','3','','','','','42284','906','','','0','','','','','2','1','Indicates the interface protocol type as a decimal value.\r\nSee include/uapi/linux/if_arp.h for all possible values.\r\nReference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42300','15','','10084','{#DEVNAME}: Disk read request avg waiting time (r_await)','vfs.dev.read.await[{#DEVNAME}]','1m','7d','365d','0','0','','!ms','','','42285',NULL,'(last(//vfs.dev.read.time.rate[{#DEVNAME}])/(last(//vfs.dev.read.rate[{#DEVNAME}])+(last(//vfs.dev.read.rate[{#DEVNAME}])=0)))*1000*(last(//vfs.dev.read.rate[{#DEVNAME}]) > 0)','','0','','','','','2',NULL,'This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42301','15','','10084','{#DEVNAME}: Disk write request avg waiting time (w_await)','vfs.dev.write.await[{#DEVNAME}]','1m','7d','365d','0','0','','!ms','','','42286',NULL,'(last(//vfs.dev.write.time.rate[{#DEVNAME}])/(last(//vfs.dev.write.rate[{#DEVNAME}])+(last(//vfs.dev.write.rate[{#DEVNAME}])=0)))*1000*(last(//vfs.dev.write.rate[{#DEVNAME}]) > 0)','','0','','','','','2',NULL,'This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42302','0','','10084','{#DEVNAME}: Get stats','vfs.file.contents[/sys/block/{#DEVNAME}/stat]','1m','0','0','0','4','','','','','42287',NULL,'','','0','','','','','2','1','Get contents of /sys/block/{#DEVNAME}/stat for disk stats.','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42303','0','','10084','{#FSNAME}: Free inodes in %','vfs.fs.inode[{#FSNAME},pfree]','1m','7d','365d','0','0','','%','','','42288',NULL,'','','0','','','','','2','1','','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42304','0','','10084','{#FSNAME}: Space utilization','vfs.fs.size[{#FSNAME},pused]','1m','7d','365d','0','0','','%','','','42289',NULL,'','','0','','','','','2','1','Space utilization in % for {#FSNAME}','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42305','0','','10084','{#FSNAME}: Total space','vfs.fs.size[{#FSNAME},total]','1m','7d','365d','0','3','','B','','','42290',NULL,'','','0','','','','','2','1','Total space in Bytes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42306','0','','10084','{#FSNAME}: Used space','vfs.fs.size[{#FSNAME},used]','1m','7d','365d','0','3','','B','','','42291',NULL,'','','0','','','','','2','1','Used storage in Bytes','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42681','0','','10084','Interface {#IFNAME}: Speed','vfs.file.contents["/sys/class/net/{#IFNAME}/speed"]','5m','7d','0d','0','3','','bps','','','42679',NULL,'','','0','','','','','2','1','Indicates the interface latest or current speed value. Value is an integer representing the link speed in bits/sec.\r\nThis attribute is only valid for interfaces that implement the ethtool get_link_ksettings method (mostly Ethernet).\r\nReference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net','0','30d','0','',NULL,'3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('39807','18','','10084','High availability cluster node discovery','zabbix.nodes.discovery','0','90d','0','0','4','','','','','39806',NULL,'','','0','','','','','1',NULL,'LLD rule with item and trigger prototypes for node discovery.','0','30d','0','','39805','3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('39812','18','','10084','Cluster node [{#NODE.NAME}]: Address','zabbix.nodes.address[{#NODE.ID}]','0','1w','0','0','1','','','','','39808',NULL,'','','0','','','','','2',NULL,'Node IPv4 address.','0','30d','0','','39805','3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('39813','18','','10084','Cluster node [{#NODE.NAME}]: Last access age','zabbix.nodes.lastaccess.age[{#NODE.ID}]','0','1w','365d','0','3','','uptime','','','39809',NULL,'','','0','','','','','2',NULL,'Time between database unix_timestamp() and last access time.','0','30d','0','','39805','3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('39814','18','','10084','Cluster node [{#NODE.NAME}]: Last access time','zabbix.nodes.lastaccess.time[{#NODE.ID}]','0','1w','365d','0','3','','unixtime','','','39810',NULL,'','','0','','','','','2',NULL,'Last access time.','0','30d','0','','39805','3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('39815','18','','10084','Cluster node [{#NODE.NAME}]: Status','zabbix.nodes.status[{#NODE.ID}]','0','1w','365d','0','3','','','','','39811','565','','','0','','','','','2',NULL,'Cluster node status.','0','30d','0','','39805','3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42269','18','','10084','CPU utilization','system.cpu.util','0','7d','365d','0','0','','%','','','42267',NULL,'','','0','','','','','0',NULL,'CPU utilization in %.','0','30d','0','','42264','3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42270','18','','10084','Memory utilization','vm.memory.utilization','0','7d','365d','0','0','','%','','','42268',NULL,'','','0','','','','','0',NULL,'Memory used percentage is calculated as (100-pavailable)','0','30d','0','','42244','3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42313','18','','10084','{#DEVNAME}: Disk average queue size (avgqu-sz)','vfs.dev.queue_size[{#DEVNAME}]','0','7d','365d','0','0','','','','','42307',NULL,'','','0','','','','','2',NULL,'Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected.','0','30d','0','','42302','3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42314','18','','10084','{#DEVNAME}: Disk read rate','vfs.dev.read.rate[{#DEVNAME}]','0','7d','365d','0','0','','!r/s','','','42308',NULL,'','','0','','','','','2',NULL,'r/s. The number (after merges) of read requests completed per second for the device.','0','30d','0','','42302','3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42315','18','','10084','{#DEVNAME}: Disk read time (rate)','vfs.dev.read.time.rate[{#DEVNAME}]','0','7d','365d','0','0','','','','','42309',NULL,'','','0','','','','','2',NULL,'Rate of total read time counter. Used in r_await calculation','0','30d','0','','42302','3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42316','18','','10084','{#DEVNAME}: Disk utilization','vfs.dev.util[{#DEVNAME}]','0','7d','365d','0','0','','%','','','42310',NULL,'','','0','','','','','2',NULL,'This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests.','0','30d','0','','42302','3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42317','18','','10084','{#DEVNAME}: Disk write rate','vfs.dev.write.rate[{#DEVNAME}]','0','7d','365d','0','0','','!w/s','','','42311',NULL,'','','0','','','','','2',NULL,'w/s. The number (after merges) of write requests completed per second for the device.','0','30d','0','','42302','3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `items` (`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`,`uuid`) values ('42318','18','','10084','{#DEVNAME}: Disk write time (rate)','vfs.dev.write.time.rate[{#DEVNAME}]','0','7d','365d','0','0','','','','','42312',NULL,'','','0','','','','','2',NULL,'Rate of total write time counter. Used in w_await calculation','0','30d','0','','42302','3s','','','','200','1','0','','0','0','0','0','0','0','0','');
INSERT INTO `optemplate` (`optemplateid`,`operationid`,`templateid`) values ('1','1','10001');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13015','{12641}>75','Zabbix server: More than 75% used in the configuration cache','','0','3','Consider increasing CacheSize in the zabbix_server.conf configuration file.',NULL,'0','0','0','','0','','0','','0','','088a0e0ac64442a29de4d86f11c87438');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13017','{12651}>75','Zabbix server: More than 75% used in the history index cache','','0','3','Consider increasing HistoryIndexCacheSize in the zabbix_server.conf configuration file.',NULL,'0','0','0','','0','','0','','0','','24245fbc55b743319162dd1edb37c5a0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13019','{12649}>75','Zabbix server: More than 75% used in the trends cache','','0','3','Consider increasing TrendCacheSize in the zabbix_server.conf configuration file.',NULL,'0','0','0','','0','','0','','0','','34426156de6b4690918117a23ccc1138');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13023','{12653}>100','Zabbix server: More than 100 items having missing data for more than 10 minutes','','0','2','zabbix[stats,{$IP},{$PORT},queue,10m] item is collecting data about how many items are missing data for more than 10 minutes.',NULL,'0','0','0','','0','','0','','0','','53883a57e663421ca5fa794067a267b4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13073','{12645}>75','Zabbix server: More than 75% used in the history cache','','0','3','Consider increasing HistoryCacheSize in the zabbix_server.conf configuration file.',NULL,'0','0','0','','0','','0','','0','','5d63483588964e49b1f870dfb770bf04');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13074','{12646}>95','Zabbix server: More than 95% used in the value cache','','0','3','Consider increasing ValueCacheSize in the zabbix_server.conf configuration file.',NULL,'0','0','0','','0','','0','','0','','cdca16919f6648ebbe6119e7c23a98c7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13080','{13164}>75','Zabbix server: Utilization of alerter processes is high','','0','3','',NULL,'0','0','1','{13164}<65','0','','0','','0','Zabbix server: Utilization of alerter processes over 75%','20963ffd33864196ab909b60d7acdc0a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13081','{13170}>75','Zabbix server: Utilization of configuration syncer processes is high','','0','3','',NULL,'0','0','1','{13170}<65','0','','0','','0','Zabbix server: Utilization of configuration syncer processes over 75%','63d681dba0b94487886a1d9b3360d1d1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13083','{13172}>75','Zabbix server: Utilization of discoverer processes is high','','0','3','',NULL,'0','0','1','{13172}<65','0','','0','','0','Zabbix server: Utilization of discoverer processes over 75%','5c470ddbda674fe0a789447dd120c36d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13084','{13174}>75','Zabbix server: Utilization of escalator processes is high','','0','3','',NULL,'0','0','1','{13174}<65','0','','0','','0','Zabbix server: Utilization of escalator processes over 75%','9895b4318f50487d9c7f25abd48bb1a1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13085','{13176}>75','Zabbix server: Utilization of history syncer processes is high','','0','3','',NULL,'0','0','1','{13176}<65','0','','0','','0','Zabbix server: Utilization of history syncer processes over 75%','a99ffd43a05e40f7abee83aa8c6c3ce5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13086','{23299}>75','Zabbix server: Utilization of housekeeper processes is high','','0','3','',NULL,'0','0','1','{23299}<65','0','','0','','0','Zabbix server: Utilization of housekeeper processes over 75%','faa349f84dc043658fe51294ad87f766');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13087','{13180}>75','Zabbix server: Utilization of http poller processes is high','','0','3','',NULL,'0','0','1','{13180}<65','0','','0','','0','Zabbix server: Utilization of http poller processes over 75%','c296c1ecdba44bd5b826ab4a86bbc300');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13088','{13182}>75','Zabbix server: Utilization of icmp pinger processes is high','','0','3','',NULL,'0','0','1','{13182}<65','0','','0','','0','Zabbix server: Utilization of icmp pinger processes over 75%','d5c6ea5711594a9587ab8d7094f1f481');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13089','{13184}>75','Zabbix server: Utilization of ipmi poller processes is high','','0','3','',NULL,'0','0','1','{13184}<65','0','','0','','0','Zabbix server: Utilization of ipmi poller processes over 75%','5a4f841292fd4bb5bec2e28340c9e4c2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13091','{13188}>75','Zabbix server: Utilization of poller processes is high','','0','3','',NULL,'0','0','1','{13188}<65','0','','0','','0','Zabbix server: Utilization of poller processes over 75%','bb50da4052134ef1a478bface291b50a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13092','{13190}>75','Zabbix server: Utilization of proxy poller processes is high','','0','3','',NULL,'0','0','1','{13190}<65','0','','0','','0','Zabbix server: Utilization of proxy poller processes over 75%','6a884c1fbf254637bb74b68571ee2ffa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13093','{23300}>75','Zabbix server: Utilization of self-monitoring processes is high','','0','3','',NULL,'0','0','1','{23300}<65','0','','0','','0','Zabbix server: Utilization of self-monitoring processes over 75%','bf730ed3313f45248f483289c704f5e9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13094','{13198}>75','Zabbix server: Utilization of timer processes is high','','0','3','',NULL,'0','0','1','{13198}<65','0','','0','','0','Zabbix server: Utilization of timer processes over 75%','0c7715df608f4736a7077ff2f6098adc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13095','{13200}>75','Zabbix server: Utilization of trapper processes is high','','0','3','',NULL,'0','0','1','{13200}<65','0','','0','','0','Zabbix server: Utilization of trapper processes over 75%','197c04bbf5204ce7ac80630f2948b6b0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13096','{13202}>75','Zabbix server: Utilization of unreachable poller processes is high','','0','3','',NULL,'0','0','1','{13202}<65','0','','0','','0','Zabbix server: Utilization of unreachable poller processes over 75%','b0168864ef6849f185deb6ef22a056fa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13097','{13204}>75','Zabbix server: Utilization of vmware collector processes is high','','0','3','',NULL,'0','0','1','{13204}<65','0','','0','','0','Zabbix server: Utilization of vmware collector processes over 75%','7e0881bb1b384deba18439ae098a7fbd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13275','{13186}>75','Zabbix server: Utilization of java poller processes is high','','0','3','',NULL,'0','0','1','{13186}<65','0','','0','','0','Zabbix server: Utilization of java poller processes over 75%','d7705ba9c3f74554ac21c59c9a0dcc11');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13285','{13159}=0','Telnet service is down on {HOST.NAME}','','0','3','',NULL,'0','0','0','','0','','0','','0','','7135280c598548e6bf17fd1909d4281a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13332','{13089}>30','Too many processes running on {HOST.NAME}','','0','2','',NULL,'0','0','0','','0','','0','','0','','d67740bc103348ab8ab11df2bdb0ad8f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13333','{13088}>300','Too many processes on {HOST.NAME}','','0','2','',NULL,'0','0','0','','0','','0','','0','','dd1b0c14e6dd439ea8f7323cdcc607de');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13334','{13087}>5','Processor load is too high on {HOST.NAME}','','0','2','',NULL,'0','0','0','','0','','0','','0','','1128bfb41f5f420c81feffb1d395cf9f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13336','{23374}<>{23375}','Hostname was changed on {HOST.NAME}','','0','1','',NULL,'0','0','0','','0','','0','','0','','d6927a9b74eb4cb8b15400baf784fc36');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13338','{23376}<>{23377}','Host information was changed on {HOST.NAME}','','0','1','',NULL,'0','0','0','','0','','0','','0','','3d3bcd54f24448c1a11746a4e75ea736');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13339','{12726}<0','{HOST.NAME} has just been restarted','','0','1','',NULL,'0','0','0','','0','','0','','0','','de874b9d875a4298ab39888c9e9cb747');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13340','{23378}<>{23379}','/etc/passwd has been changed on {HOST.NAME}','','0','2','',NULL,'0','0','0','','0','','0','','0','','9db4055df94d414d86938066ed05dbc5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13348','{13074}>30','Too many processes running on {HOST.NAME}','','0','2','',NULL,'0','0','0','','0','','0','','0','','837fdc71174246d987a6f7f277d65f6c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13349','{13073}>300','Too many processes on {HOST.NAME}','','0','2','',NULL,'0','0','0','','0','','0','','0','','0d5ac85120734fa98d3eef01b6f4033b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13350','{13072}>5','Processor load is too high on {HOST.NAME}','','0','2','',NULL,'0','0','0','','0','','0','','0','','8c339065ecc54b7d8c2e4405f2149f27');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13352','{23356}<>{23357}','Hostname was changed on {HOST.NAME}','','0','1','',NULL,'0','0','0','','0','','0','','0','','f48fb8ce1229492dae62de362c8c9539');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13354','{23358}<>{23359}','Host information was changed on {HOST.NAME}','','0','1','',NULL,'0','0','0','','0','','0','','0','','ea2f9c186798420da781bd835fa0eaed');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13355','{12742}<0','{HOST.NAME} has just been restarted','','0','1','',NULL,'0','0','0','','0','','0','','0','','809e57eb897b43fb8538e76ec7dd6602');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13356','{23360}<>{23361}','/etc/passwd has been changed on {HOST.NAME}','','0','2','',NULL,'0','0','0','','0','','0','','0','','27b4e5de411949a4befa7171a2af6441');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13364','{13071}>30','Too many processes running','','0','2','',NULL,'0','0','0','','0','','0','','0','','458180bc0f14468386429964f877cce7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13365','{13070}>300','Too many processes','','0','2','',NULL,'0','0','0','','0','','0','','0','','874ef8fe4a6445ff971800d2d9a50541');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13366','{13069}>5','Processor load is too high','','0','2','',NULL,'0','0','0','','0','','0','','0','','fdbedf15fe474fd18c045c62cf8cc7d6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13367','{13068}>20','Disk I/O is overloaded','','0','2','OS spends significant time waiting for I/O (input/output) operations. It could be indicator of performance issues with storage system.',NULL,'0','0','0','','0','','0','','0','','c030cc99975d4fe3911789e58bbd5050');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13368','{23350}<>{23351}','Hostname was changed','','0','1','',NULL,'0','0','0','','0','','0','','0','','d1e70b7f465447a3ab575b3fd28755a1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13370','{23352}<>{23353}','Host information was changed','','0','1','',NULL,'0','0','0','','0','','0','','0','','3a736e64211744aea480a60b2c48a036');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13371','{12758}<0','Server has just been restarted','','0','1','',NULL,'0','0','0','','0','','0','','0','','03a2cd88b6a64d3ea4c9bb2abbc4ae2d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13372','{23354}<>{23355}','/etc/passwd has been changed','','0','2','',NULL,'0','0','0','','0','','0','','0','','c75ee957fd6c43b2aba9919d5e1af4a1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13382','{13075}>5','Processor load is too high','','0','2','',NULL,'0','0','0','','0','','0','','0','','6721e8fbe5ee45aa9d06b698210a268a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13384','{23362}<>{23363}','Hostname was changed','','0','1','',NULL,'0','0','0','','0','','0','','0','','07215ae05345423d8625962b85d9d4ec');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13386','{23364}<>{23365}','Host information was changed','','0','1','',NULL,'0','0','0','','0','','0','','0','','34f76014b2d3434a8d1f1f0657b5605f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13388','{23366}<>{23367}','/etc/passwd has been changed','','0','2','',NULL,'0','0','0','','0','','0','','0','','f65c254d50e2454d9840784ff979f5d3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13396','{13093}>30','Too many processes running','','0','2','',NULL,'0','0','0','','0','','0','','0','','6504ba0f7fa445ea9083af008d52c525');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13397','{13092}>300','Too many processes','','0','2','',NULL,'0','0','0','','0','','0','','0','','cc2731add899436ca2c12fff13c838fb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13398','{13091}>5','Processor load is too high','','0','2','',NULL,'0','0','0','','0','','0','','0','','e7ef1c2b702440a3a7a20a544446a068');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13399','{13090}>20','Disk I/O is overloaded','','0','2','OS spends significant time waiting for I/O (input/output) operations. It could be indicator of performance issues with storage system.',NULL,'0','0','0','','0','','0','','0','','280634a65c9d4702a4913c9c2cd5869c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13400','{23380}<>{23381}','Hostname was changed','','0','1','',NULL,'0','0','0','','0','','0','','0','','cc5a9c97827f4091b83af8be33d58560');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13402','{23382}<>{23383}','Host information was changed','','0','1','',NULL,'0','0','0','','0','','0','','0','','dc293e688ac54ac0aee61e398d8bc5c5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13403','{12790}<0','Server has just been restarted','','0','1','',NULL,'0','0','0','','0','','0','','0','','56284beb4a464017b3aa2f4c00bc271f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13404','{23384}<>{23385}','/etc/passwd has been changed','','0','2','',NULL,'0','0','0','','0','','0','','0','','50e5be0acabb41658ec82772d9ec234e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13414','{13086}>5','Processor load is too high','','0','2','',NULL,'0','0','0','','0','','0','','0','','3cf40421e61b41bab7697bbf9a2649d6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13416','{23368}<>{23369}','Hostname was changed','','0','1','',NULL,'0','0','0','','0','','0','','0','','ffb713a281a543879e4196e4207bdd62');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13418','{23370}<>{23371}','Host information was changed','','0','1','',NULL,'0','0','0','','0','','0','','0','','55d8650af70d4aeea56345985e454df9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13419','{12806}<0','Server has just been restarted','','0','1','',NULL,'0','0','0','','0','','0','','0','','1f0cc03186cc4bb98483927f425df8e9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13420','{23372}<>{23373}','/etc/passwd has been changed','','0','2','',NULL,'0','0','0','','0','','0','','0','','39cfe50a3d2a46ad9a53b9ec7443ec18');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13441','{13194}>75','Zabbix server: Utilization of snmp trapper processes is high','','0','3','',NULL,'0','0','1','{13194}<65','0','','0','','0','Zabbix server: Utilization of snmp trapper processes over 75%','821611786e5e49bf941cbca370d6ed6b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13517','{28385}>{$ZABBIX.PROXY.UTIL.MAX}','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX}% used in the configuration cache','','0','3','Consider increasing CacheSize in the zabbix_proxy.conf configuration file.',NULL,'0','0','0','','0','','0','','0','','98ae52367f69476dbeb9c50e5f28b429');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13518','{28387}>{$ZABBIX.PROXY.UTIL.MAX}','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX}% used in the history cache','','0','3','Consider increasing HistoryCacheSize in the zabbix_proxy.conf configuration file.',NULL,'0','0','0','','0','','0','','0','','dc5a87f6c62d47b08ddd4578aa5f293f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13519','{28388}>{$ZABBIX.PROXY.UTIL.MAX}','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX}% used in the history index cache','','0','3','Consider increasing HistoryIndexCacheSize in the zabbix_proxy.conf configuration file.',NULL,'0','0','0','','0','','0','','0','','92b94edb126d48af9e5e959357e2107b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13520','{12949}>100','Zabbix proxy: More than 100 items having missing data for more than 10 minutes','','0','2','zabbix[stats,{$IP},{$PORT},queue,10m] item is collecting data about how many items are missing data for more than 10 minutes.',NULL,'0','0','0','','0','','0','','0','','f28d8231e0f2486bb68963719359789c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13521','{28363}>{$ZABBIX.PROXY.UTIL.MAX:"configuration syncer"}','Zabbix proxy: Utilization of configuration syncer processes is high','','0','3','',NULL,'0','0','1','{28363}<{$ZABBIX.PROXY.UTIL.MIN:"configuration syncer"}','0','','0','','0','Zabbix proxy: Utilization of configuration syncer processes over {$ZABBIX.PROXY.UTIL.MAX:"configuration syncer"}%','27eb861e2e6f43f69f17b8ba65bfedcc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13522','{28365}>{$ZABBIX.PROXY.UTIL.MAX:"discoverer"}','Zabbix proxy: Utilization of discoverer processes is high','','0','3','',NULL,'0','0','1','{28365}<{$ZABBIX.PROXY.UTIL.MIN:"discoverer"}','0','','0','','0','Zabbix proxy: Utilization of discoverer processes over {$ZABBIX.PROXY.UTIL.MAX:"discoverer"}%','080bd8d98f204d8580cbb1088f07d57b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13523','{28368}>{$ZABBIX.PROXY.UTIL.MAX:"history syncer"}','Zabbix proxy: Utilization of history syncer processes is high','','0','3','',NULL,'0','0','1','{28368}<{$ZABBIX.PROXY.UTIL.MIN:"history syncer"}','0','','0','','0','Zabbix proxy: Utilization of history syncer processes over {$ZABBIX.PROXY.UTIL.MAX:"history syncer"}%','52fb303ec9164aa28821117f3a559fe3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13524','{28369}>{$ZABBIX.PROXY.UTIL.MAX:"housekeeper"}','Zabbix proxy: Utilization of housekeeper processes is high','','0','3','',NULL,'0','0','1','{28369}<{$ZABBIX.PROXY.UTIL.MIN:"housekeeper"}','0','','0','','0','Zabbix proxy: Utilization of housekeeper processes over {$ZABBIX.PROXY.UTIL.MAX:"housekeeper"}%','b6cbede80a4847ed94a0ba818b7ca261');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13525','{28370}>{$ZABBIX.PROXY.UTIL.MAX:"http poller"}','Zabbix proxy: Utilization of http poller processes is high','','0','3','',NULL,'0','0','1','{28370}<{$ZABBIX.PROXY.UTIL.MIN:"http poller"}','0','','0','','0','Zabbix proxy: Utilization of http poller processes over {$ZABBIX.PROXY.UTIL.MAX:"http poller"}%','e93e5a3dd27f4d378bbfe2c8e5b009e7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13526','{28371}>{$ZABBIX.PROXY.UTIL.MAX:"icmp pinger"}','Zabbix proxy: Utilization of icmp pinger processes is high','','0','3','',NULL,'0','0','1','{28371}<{$ZABBIX.PROXY.UTIL.MIN:"icmp pinger"}','0','','0','','0','Zabbix proxy: Utilization of icmp pinger processes over {$ZABBIX.PROXY.UTIL.MAX:"icmp pinger"}%','d514f4a08bcd4fe2b696015a74ffafcf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13527','{28373}>{$ZABBIX.PROXY.UTIL.MAX:"ipmi poller"}','Zabbix proxy: Utilization of ipmi poller processes is high','','0','3','',NULL,'0','0','1','{28373}<{$ZABBIX.PROXY.UTIL.MIN:"ipmi poller"}','0','','0','','0','Zabbix proxy: Utilization of ipmi poller processes over {$ZABBIX.PROXY.UTIL.MAX:"ipmi poller"}%','99ce9f0ed6204860b7b943e9e3a5fbc0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13528','{28374}>{$ZABBIX.PROXY.UTIL.MAX:"java poller"}','Zabbix proxy: Utilization of java poller processes is high','','0','3','',NULL,'0','0','1','{28374}<{$ZABBIX.PROXY.UTIL.MIN:"java poller"}','0','','0','','0','Zabbix proxy: Utilization of java poller processes over {$ZABBIX.PROXY.UTIL.MAX:"java poller"}%','5b8cc59c21b145739e346479124c48f5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13529','{28376}>{$ZABBIX.PROXY.UTIL.MAX:"poller"}','Zabbix proxy: Utilization of poller processes is high','','0','3','',NULL,'0','0','1','{28376}<{$ZABBIX.PROXY.UTIL.MIN:"poller"}','0','','0','','0','Zabbix proxy: Utilization of poller processes over {$ZABBIX.PROXY.UTIL.MAX:"poller"}%','3f93b378367e48f89abe304ccb624047');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13530','{28379}>{$ZABBIX.PROXY.UTIL.MAX:"self-monitoring"}','Zabbix proxy: Utilization of self-monitoring processes is high','','0','3','',NULL,'0','0','1','{28379}<{$ZABBIX.PROXY.UTIL.MIN:"self-monitoring"}','0','','0','','0','Zabbix proxy: Utilization of self-monitoring processes over {$ZABBIX.PROXY.UTIL.MAX:"self-monitoring"}%','cc9569f75bd44b5cbce4a4c556cd2949');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13531','{28380}>{$ZABBIX.PROXY.UTIL.MAX:"snmp trapper"}','Zabbix proxy: Utilization of snmp trapper processes is high','','0','3','',NULL,'0','0','1','{28380}<{$ZABBIX.PROXY.UTIL.MIN:"snmp trapper"}','0','','0','','0','Zabbix proxy: Utilization of snmp trapper processes over {$ZABBIX.PROXY.UTIL.MAX:"snmp trapper"}%','bb0a46beffbc457faea9362d4325c676');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13532','{28382}>{$ZABBIX.PROXY.UTIL.MAX:"trapper"}','Zabbix proxy: Utilization of trapper processes is high','','0','3','',NULL,'0','0','1','{28382}<{$ZABBIX.PROXY.UTIL.MIN:"trapper"}','0','','0','','0','Zabbix proxy: Utilization of trapper processes over {$ZABBIX.PROXY.UTIL.MAX:"trapper"}%','95ad6d80dc9c4f46a4e255d13f1b01a3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13533','{28383}>{$ZABBIX.PROXY.UTIL.MAX:"unreachable poller"}','Zabbix proxy: Utilization of unreachable poller processes is high','','0','3','',NULL,'0','0','1','{28383}<{$ZABBIX.PROXY.UTIL.MIN:"unreachable poller"}','0','','0','','0','Zabbix proxy: Utilization of unreachable poller processes over {$ZABBIX.PROXY.UTIL.MAX:"unreachable poller"}%','a28abd3f43f843af9646a1f8b1ca056a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13534','{28364}>{$ZABBIX.PROXY.UTIL.MAX:"data sender"}','Zabbix proxy: Utilization of data sender processes is high','','0','3','',NULL,'0','0','1','{28364}<{$ZABBIX.PROXY.UTIL.MIN:"data sender"}','0','','0','','0','Zabbix proxy: Utilization of data sender processes over {$ZABBIX.PROXY.UTIL.MAX:"data sender"}%','e8fd57784b9e4289aa4515cfa7c6c4ad');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13535','{28366}>{$ZABBIX.PROXY.UTIL.MAX:"heartbeat sender"}','Zabbix proxy: Utilization of heartbeat sender processes is high','','0','3','',NULL,'0','0','1','{28366}<{$ZABBIX.PROXY.UTIL.MIN:"heartbeat sender"}','0','','0','','0','Zabbix proxy: Utilization of heartbeat sender processes over {$ZABBIX.PROXY.UTIL.MAX:"heartbeat sender"}%','51e9b56f0d854808949c5c89a53edadf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13536','{12965}>75','Zabbix server: More than 75% used in the vmware cache','','0','3','Consider increasing VMwareCacheSize in the zabbix_server.conf configuration file.',NULL,'0','0','0','','0','','0','','0','','2df2ed6520c44ee880f35912f869583e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13544','{31114}=0','HTTP service is down on {HOST.NAME}','','0','3','',NULL,'0','0','0','','0','','0','','0','','b299d73cebcd430c8bfc54cf9b84e853');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13546','{12996}=0','HTTPS service is down on {HOST.NAME}','','0','3','',NULL,'0','0','0','','0','','0','','0','','6aa24949292e406b9bb917f641f3da79');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13547','{12997}=0','IMAP service is down on {HOST.NAME}','','0','3','',NULL,'0','0','0','','0','','0','','0','','075e6217564d45fdb713f810a9eef87c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13548','{12998}=0','LDAP service is down on {HOST.NAME}','','0','3','',NULL,'0','0','0','','0','','0','','0','','ea88df0a4c87424c891ac2197e5b6966');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13549','{13154}=0','NNTP service is down on {HOST.NAME}','','0','3','',NULL,'0','0','0','','0','','0','','0','','f549234088cb4d1981c72eae82665f56');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13550','{13156}=0','NTP service is down on {HOST.NAME}','','0','3','',NULL,'0','0','0','','0','','0','','0','','6c7f4d7e2719401d8fd8f99ae8fc2d34');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13551','{13152}=0','POP service is down on {HOST.NAME}','','0','3','',NULL,'0','0','0','','0','','0','','0','','72ad7fa260144095bdc41eddf09bbb08');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13552','{13157}=0','SMTP service is down on {HOST.NAME}','','0','3','',NULL,'0','0','0','','0','','0','','0','','b90e7dafca6c4b92b318f74bb07e8ac4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13553','{13158}=0','SSH service is down on {HOST.NAME}','','0','3','',NULL,'0','0','0','','0','','0','','0','','8f6ce4930afd48f0acc229bad5092c79');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13557','{13160}=1','Zabbix server: Zabbix value cache working in low memory mode','','0','4','Once the low memory mode has been switched on, the value cache will remain in this state for 24 hours, even if the problem that triggered this mode is resolved sooner.',NULL,'0','0','0','','0','','0','','0','','ee3db7e7bc104f1598ca36e735bce53f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13559','{13196}>75','Zabbix server: Utilization of task manager processes is high','','0','3','',NULL,'0','0','1','{13196}<65','0','','0','','0','Zabbix server: Utilization of task manager processes over 75%','37c1c6ec07474a8a95b06c3c28e4bf96');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13562','{13222}>75','Zabbix server: Utilization of ipmi manager processes is high','','0','3','',NULL,'0','0','1','{13222}<65','0','','0','','0','Zabbix server: Utilization of ipmi manager processes over 75%','9ce0c874e5924b308827e8be5a9bf0eb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13564','{28372}>{$ZABBIX.PROXY.UTIL.MAX:"ipmi manager"}','Zabbix proxy: Utilization of ipmi manager processes is high','','0','3','',NULL,'0','0','1','{28372}<{$ZABBIX.PROXY.UTIL.MIN:"ipmi manager"}','0','','0','','0','Zabbix proxy: Utilization of ipmi manager processes over {$ZABBIX.PROXY.UTIL.MAX:"ipmi manager"}%','751e3000367f42d9af0d4418f3472a91');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13565','{28381}>{$ZABBIX.PROXY.UTIL.MAX:"task manager"}','Zabbix proxy: Utilization of task manager processes is high','','0','3','',NULL,'0','0','1','{28381}<{$ZABBIX.PROXY.UTIL.MIN:"task manager"}','0','','0','','0','Zabbix proxy: Utilization of task manager processes over {$ZABBIX.PROXY.UTIL.MAX:"task manager"}%','9a42dad8cef04138944f3a1b8c797f4e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13566','{13226}>75','Zabbix server: Utilization of alert manager processes is high','','0','3','',NULL,'0','0','1','{13226}<65','0','','0','','0','Zabbix server: Utilization of alert manager processes over 75%','c7f8ac54e4d3409788b8a456046ee461');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13568','{13228}>75','Zabbix server: Utilization of preprocessing manager processes is high','','0','3','',NULL,'0','0','1','{13228}<65','0','','0','','0','Zabbix server: Utilization of preprocessing manager processes over 75%','6e7a117afa7e41e2a783f8afc42434fa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13569','{13229}>75','Zabbix server: Utilization of preprocessing worker processes is high','','0','3','',NULL,'0','0','1','{13229}<65','0','','0','','0','Zabbix server: Utilization of preprocessing worker processes over 75%','e2cbdcc8b4844943a67d1f51587e599c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14251','{14378}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','b030876299434f3ba43e11c584104a81');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14252','{14379}>{$ICMP_LOSS_WARN} and {14379}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','42c4b0310aaf4b9c8cb502542b7dea90');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14253','{14380}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','32b4d8f3eba34bd380803410111d4b7f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14318','{31315}>{$TEMP_WARN:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31316}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','90ba726922f74d1d971b3f07781fc035');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14319','{31313}>{$TEMP_CRIT:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31314}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','8f478386378349e7a4e4586c5ba74c78');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14320','{31317}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{31318}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','6035fc6733614ae1b4ed22c7d73466b0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14322','{23710}<>{23711} and length({23712})>0','{#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','{#ENT_NAME}: Device has been replaced (new serial number received)','ccdcfdbe1a6243949857c764aed9c9ea');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14336','{23719}<>{23720} and length({23721})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','9939f98da99c435a9b5505e55e8abb5f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14337','{23716}<>{23717} and length({23718})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','9c5ae10dbafb45658f25f0279a8a1934');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14339','{31330}>{$TEMP_CRIT:"{#SENSOR_INFO}"}','{#SENSOR_INFO}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31331}<{$TEMP_CRIT:"{#SENSOR_INFO}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SENSOR_INFO}"}','5ee4c1931e244d638b58f945f8a7565c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14340','{31332}<{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}','{#SENSOR_INFO}: Temperature is too low','','0','3','',NULL,'0','2','1','{31333}>{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}','fc68b3a0ea6643f988c26e3e735d7491');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14363','{23725}<>{23726} and length({23727})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','2bb9d8927e464842a55b89be412adcc4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14364','{23722}<>{23723} and length({23724})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','fbe1f9d9286046bbb15fe89ec1dcc87d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14365','{23728}<>{23729} and length({23730})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','891b6945b3ae4625bf77a16985219015');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14372','{31336}>{$TEMP_WARN:"{#SENSOR_DESCR}"}','{#SENSOR_DESCR}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31337}<{$TEMP_WARN:"{#SENSOR_DESCR}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_DESCR}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SENSOR_DESCR}"}','3687c8a7e88949fb9953049fb0f5e54d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14373','{31334}>{$TEMP_CRIT:"{#SENSOR_DESCR}"}','{#SENSOR_DESCR}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31335}<{$TEMP_CRIT:"{#SENSOR_DESCR}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_DESCR}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SENSOR_DESCR}"}','bace15be86774bb4a46ca491b3b53516');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14374','{31338}<{$TEMP_CRIT_LOW:"{#SENSOR_DESCR}"}','{#SENSOR_DESCR}: Temperature is too low','','0','3','',NULL,'0','2','1','{31339}>{$TEMP_CRIT_LOW:"{#SENSOR_DESCR}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_DESCR}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SENSOR_DESCR}"}','fbe5f29b241248b4b4bff5d55fcc2180');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14380','{31342}>{$TEMP_WARN:"{#SENSOR_DESCR}"}','{#SENSOR_DESCR}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31343}<{$TEMP_WARN:"{#SENSOR_DESCR}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_DESCR}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SENSOR_DESCR}"}','c1e348e8a5f24100a5b29a840a43dca9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14381','{31340}>{$TEMP_CRIT:"{#SENSOR_DESCR}"}','{#SENSOR_DESCR}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31341}<{$TEMP_CRIT:"{#SENSOR_DESCR}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_DESCR}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SENSOR_DESCR}"}','e1a63b2ebef549ebbd95b307feee8b8d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14382','{31344}<{$TEMP_CRIT_LOW:"{#SENSOR_DESCR}"}','{#SENSOR_DESCR}: Temperature is too low','','0','3','',NULL,'0','2','1','{31345}>{$TEMP_CRIT_LOW:"{#SENSOR_DESCR}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_DESCR}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SENSOR_DESCR}"}','722ee93a637643e9b3cff31e5ea5151d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14383','{23731}<>{23732} and length({23733})>0','Unit {#SNMPVALUE}: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','Unit {#SNMPVALUE}: Device has been replaced (new serial number received)','0144f409ccfd421cb382031cbed8a037');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14409','{23804}<>{23805} and length({23806})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','4100a7125272484c81c4f599eff82793');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14417','{23828}<>{23829} and length({23830})>0','{#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','{#ENT_NAME}: Device has been replaced (new serial number received)','ff15aaac7c4947b6a07a38dec4d1466d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14460','{31348}>{$TEMP_WARN:"{#SNMPVALUE}"}','Device {#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31349}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device {#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','f4d0a2c0b1a9468990e1f6dbfef1ab75');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14461','{31346}>{$TEMP_CRIT:"{#SNMPVALUE}"}','Device {#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31347}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device {#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','dc1064de6a6b4533be812e590b96927b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14462','{31350}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','Device {#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{31351}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device {#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','f1bbf02af05041ef95ff80ff18fc02a7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14463','{23840}<>{23841} and length({23842})>0','#{#SNMPVALUE}: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','#{#SNMPVALUE}: Device has been replaced (new serial number received)','6f02e903dab24bf294015f43e0b52504');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14474','{23846}<>{23847} and length({23848})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','7d8f92f3c5df4b5091f49e07e50fae44');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14476','{31354}>{$TEMP_WARN:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31355}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','8486ed430ee24b13b65786e5b4857684');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14477','{31352}>{$TEMP_CRIT:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31353}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','b675df20392d458f9a53dace6bde978a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14478','{31356}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{31357}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','ef5a9113e96d4cc095d384cbeeef9bc5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14492','{23855}<>{23856} and length({23857})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','3aa2e47f4b8145b8a5e4f67b0987ca2b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14493','{23852}<>{23853} and length({23854})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','40a2ad291ded4bf9bc72adc2b8653b98');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14495','{31360}>{$TEMP_WARN:"{#SNMPVALUE}"}','#{#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31361}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','#{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','bc0c87dbf83e49dab264e9f2bf1bb418');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14496','{31358}>{$TEMP_CRIT:"{#SNMPVALUE}"}','#{#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31359}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','#{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','0cbd0c61e07245af863a19f296f38195');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14497','{31362}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','#{#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{31363}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','#{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','8d93aea3774d4a3bbd98127273c648d1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14511','{31364}>{$TEMP_WARN}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','0','1','{31365}<{$TEMP_WARN}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN}','54362c94be0243ffb907905def0ad06a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14513','{31366}<{$TEMP_CRIT_LOW}','Device: Temperature is too low','','0','3','',NULL,'0','0','1','{31367}>{$TEMP_CRIT_LOW}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW}','91a10b28c7a14dd09110448a28a328f9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14514','{23861}<>{23862} and length({23863})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','db1760a34c884b1aa36e4fc4639791dd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14515','{23858}<>{23859} and length({23860})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','dd9fbc501f9047fd8fae9dfd741e3778');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14551','{31373}>{$TEMP_WARN:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31374}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','cda6a4e305fe41239462d2f85acc5590');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14552','{31371}>{$TEMP_CRIT:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31372}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','bbad03018e8e408c952cca2615b4eab3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14553','{31375}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{31376}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','340a9c397bff4ac5a37a2ada9d0c1e69');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14556','{23889}<>{23890} and length({23891})>0','{#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','{#ENT_NAME}: Device has been replaced (new serial number received)','d3633f4584344570a1c0570f0b082590');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14557','{23886}<>{23887} and length({23888})>0','{#ENT_NAME}: Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','17e0f72418f4432d852b5c39ddf675bd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14589','{31385}>{$TEMP_WARN:"{#ENT_NAME}"}','{#ENT_NAME}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31386}<{$TEMP_WARN:"{#ENT_NAME}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#ENT_NAME}: Temperature is above warning threshold: >{$TEMP_WARN:"{#ENT_NAME}"}','c54c36491adf4a488d11f2538b337129');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14590','{31383}>{$TEMP_CRIT:"{#ENT_NAME}"}','{#ENT_NAME}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31384}<{$TEMP_CRIT:"{#ENT_NAME}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#ENT_NAME}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#ENT_NAME}"}','d28db9267b9d488f8f359dd7d14d2ac1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14591','{31387}<{$TEMP_CRIT_LOW:"{#ENT_NAME}"}','{#ENT_NAME}: Temperature is too low','','0','3','',NULL,'0','2','1','{31388}>{$TEMP_CRIT_LOW:"{#ENT_NAME}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#ENT_NAME}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#ENT_NAME}"}','7b2cffb3ad47440d8b79b39958794ed9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14592','{23901}<>{23902} and length({23903})>0','{#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','{#ENT_NAME}: Device has been replaced (new serial number received)','e379ca4d50a3434e82841e8884a84656');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14603','{23907}<>{23908} and length({23909})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','1ca7574040da41a3bf416daa8172d952');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14606','{31395}<{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}','{#SENSOR_INFO}: Temperature is too low','','0','3','',NULL,'0','2','1','{31396}>{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}','03e351b056504735b02da8c37dad6bf0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14607','{23910}<>{23911} and length({23912})>0','{#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','{#ENT_NAME}: Device has been replaced (new serial number received)','90778aeb97244258a830e89eeb263e54');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14621','{23913}<>{23914} and length({23915})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','9f1f3316ed6f4d50a4c9f71a15f35d50');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14624','{31399}>{$TEMP_WARN:"{#SENSOR_INFO}"}','{#SENSOR_INFO}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31400}<{$TEMP_WARN:"{#SENSOR_INFO}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SENSOR_INFO}"}','51113c80e4bd46de8ea247e0bd3b19dd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14625','{31397}>{$TEMP_CRIT:"{#SENSOR_INFO}"}','{#SENSOR_INFO}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31398}<{$TEMP_CRIT:"{#SENSOR_INFO}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SENSOR_INFO}"}','c82ca2b550f540b7a4c8f9548e15cfb0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14626','{31401}<{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}','{#SENSOR_INFO}: Temperature is too low','','0','3','',NULL,'0','2','1','{31402}>{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}','35b56753b2424f0989ca09cb67f7d9a3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14661','{23931}<>{23932} and length({23933})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','6c1dcb2e8e76405887af69a6a08e53df');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14662','{23928}<>{23929} and length({23930})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','62a9cd04a4dc4f5a9b59a01e54fb983f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14664','{15111}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{15112}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','1c380934165343a68345c761de9cbdb5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14665','{15113}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{15114}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','edcc83694dc847f8a8dcb7e192f96404');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14666','{15115}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{15116}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','47a89879a7db47e9bf598e27f7c084e7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14680','{23937}<>{23938} and length({23939})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','eba057a7ef5743ecb2c037476c97fc38');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14683','{31417}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','#{#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{31418}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','#{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','222b4523c61144d1a91bb1b5cbd63caf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14698','{23946}<>{23947} and length({23948})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','83db3bd248994482a92ba86e5d3ae5ab');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14699','{23943}<>{23944} and length({23945})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','e4682afd0cc547eea9605452b7df79f4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14709','{23955}<>{23956} and length({23957})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','57a906ac8f994ebaa2543a5eb4949db7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14710','{23952}<>{23953} and length({23954})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','ee797ebfc568468d8a3e9a8b388afb6d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14724','{23958}<>{23959} and length({23960})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','ab4a91cf3c2a4305a59727558c00a1f8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14912','{23898}<>{23899} and length({23900})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','6b9b9b0d1ff24074bb344d04efe53444');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14913','{23895}<>{23896} and length({23897})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','a9dcdf4129d041eca8dadc8bfbc455ee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14914','{31379}>{$TEMP_WARN:"{#SENSOR_INFO}"}','{#SENSOR_INFO}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31380}<{$TEMP_WARN:"{#SENSOR_INFO}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SENSOR_INFO}"}','b549cc5016884818bf416c415618171f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14915','{31377}>{$TEMP_CRIT:"{#SENSOR_INFO}"}','{#SENSOR_INFO}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31378}<{$TEMP_CRIT:"{#SENSOR_INFO}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SENSOR_INFO}"}','5d0d743c7f5449f4a429845ab3894d19');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14916','{31381}<{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}','{#SENSOR_INFO}: Temperature is too low','','0','3','',NULL,'0','2','1','{31382}>{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}','a4294d3ad024438aaba4234811d65582');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14937','{23922}<>{23923} and length({23924})>0','{#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','{#ENT_NAME}: Device has been replaced (new serial number received)','585db2b2a42b4eb09770ca2241a557d0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('14941','{15731}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','1','','0','','e6ae9fc7d4454d389d066450af3a3066');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15330','{16818}=1','#{#SNMPINDEX}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','10f9f5cd2f1b4d09abba3ae48b482eb8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15331','{16819}=1','PSU {#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','764f08ab7a29481fa73a63ae256ff154');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15332','{16820}=1','PSU {#SNMPVALUE}: Power supply is not in normal state','','0','1','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a7d4ac882ec24cce9839c6012c7fa562');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15333','{16821}=1','Fan {#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','aecc6fdd58404347b3074b0c1db63f09');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15334','{16822}=1','Fan {#SNMPVALUE}: Fan is not in normal state','','0','1','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a53271304dcf418aa5afdaa145436b70');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15337','{16829}=1','{#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1d0c9610cd984124bb7fed812e9edb16');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15338','{16830}=1','{#SNMPVALUE}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7ae4943842ea491c899ce0f84210e202');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15339','{16831}=1','{#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7ceeb8d2ec314fc1b8dbe9746e9a667a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15340','{16832}=1','#{#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','aabaa197e62649cd929353f131c3fa00');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15341','{16833}=1','#{#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e8cb2d8bc3ee44c58c5111d3ead41d1b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15344','{16840}=1 or {16841}=1','{#SENSOR_INFO}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','5796e1e85ea949d0b86ce83f5daae958');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15345','{16842}=1 or {16843}=1','{#SENSOR_INFO}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','93892fed243f4f0b8c26ab67fa6e1800');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15346','{16844}=1 or {16845}=1','{#SENSOR_INFO}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a9f5e9e2a65143298910e354e832bf2f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15347','{16846}=1 or {16847}=1','{#SENSOR_INFO}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','58cf2c24afd74e5cb048557e8e52138e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15366','{16890}=1','{#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4cc6f58430374fc4b2f1bced4e2097f6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15367','{16891}=1','{#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a5cb052573394829877fdc6bf3d501c0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15369','{16895}=1','PSU {#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','710f1bf31381470f9a13c45f887bda4e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15370','{16896}=1','Fan {#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','bd0c753f33c441a0bf4567f8b81186d6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15371','{16897}=1 or {16898}=1','{#ENT_NAME}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b0821c8e75e14e53906c3a3f209a2785');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15372','{16899}=1 or {16900}=1 or {16901}=1','{#ENT_NAME}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0c3cb88352e2417fb2b80bb78448fb35');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15373','{16902}=1','{#ENT_DESCR}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4fba6383ed4c4cd89b349a5dfccb7909');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15374','{16903}=1','{#ENT_DESCR}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6cf626561b33468cb1e2c9e590334c4b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15375','{16904}=1','{#ENT_DESCR}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','81553d4157ce4c938c25b9403c5e572a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15376','{16905}=1','{#ENT_DESCR}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','aeb31d4c3958433c9a0105f79156094a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15377','{16906}=1','{#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f8f1dee0b0ff465d98c6f6bcdfaff17f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15378','{16907}=1','{#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e577226331f6483fbd1e414bb7d365f7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15379','{16908}=1','PSU {#PSU_INDEX}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','fbe256ab504b4cb98fec650972d5c41a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15380','{16909}=1','PSU {#PSU_INDEX}: Power supply is not in normal state','','0','1','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6163e41576734f469146bc818b2856a2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15381','{16910}=1','Fan {#FAN_INDEX}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','dfb8d67a8b0c4128aff9d1643e40afc0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15382','{16911}=1','Fan {#FAN_INDEX}: Fan is not in normal state','','0','1','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','74ef51062e194213bbf61f747624313c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15383','{16912}=1','Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b2b78ace5fc748129fd73ae4283802a6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15384','{16913}=1','Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply is not in normal state','','0','1','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d7d0b3a51e2d4737938d310ba6c4a9c9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15385','{16914}=1','Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','10f683ff42054948bad36cc52f9c968e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15386','{16915}=1','Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan is not in normal state','','0','1','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','821381a387194c7ca4e4ddd1cf734a4c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15391','{16924}=1','{#SENSOR_INFO}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','649e7344411242738d9824f861b3c49a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15392','{16925}=1','{#SENSOR_INFO}: Power supply is not in normal state','','0','1','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','bfe2f4085f6840da9e8d30f37bb29fdb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15393','{16926}=1','{#SENSOR_INFO}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','75003433a8304644a20d11b82dcbae14');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15394','{16927}=1','{#SENSOR_INFO}: Fan is not in normal state','','0','1','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','83e8182fd7034edca8317fa91776b6d2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15395','{16928}=1','#{#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ba459f7ce17a4f71a46fa1a0337f0f89');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15398','{16935}=1','#{#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ce48c2b0a07d4528b95668c853b6b4e0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15399','{16936}=1','#{#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','78d4bcad8d7d4694ad492b37003fa0b0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15640','{28386}>{$ZABBIX.PROXY.UTIL.MAX}','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX}% used in the vmware cache','','0','3','Consider increasing VMwareCacheSize in the zabbix_proxy.conf configuration file.',NULL,'0','0','0','','0','','0','','0','','69707cc61b7d408f8683dae435183d4f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15641','{28384}>{$ZABBIX.PROXY.UTIL.MAX:"vmware collector"}','Zabbix proxy: Utilization of vmware collector processes is high','','0','3','',NULL,'0','0','1','{28384}<{$ZABBIX.PROXY.UTIL.MIN:"vmware collector"}','0','','0','','0','Zabbix proxy: Utilization of vmware collector processes over {$ZABBIX.PROXY.UTIL.MAX:"vmware collector"}%','a1051b5ac8334125a40cb36a95605284');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15671','{17692}<0 and {17693}>0\r\nand (\r\n{17694}=6 or\r\n{17694}=7 or\r\n{17694}=11 or\r\n{17694}=62 or\r\n{17694}=69 or\r\n{17694}=117\r\n)\r\nand\r\n({17695}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({17692}>0 and {17696}>0) or\r\n({17695}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','9f1f6cff58454b469f588af8624f9078');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15695','{17812}<0 and {17813}>0\r\nand (\r\n{17814}=6 or\r\n{17814}=7 or\r\n{17814}=11 or\r\n{17814}=62 or\r\n{17814}=69 or\r\n{17814}=117\r\n)\r\nand\r\n({17815}<>2)','Interface {#IFDESCR}: Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({17812}>0 and {17816}>0) or\r\n({17815}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','13c523ffdf154e6fb1ab7628e3a2010a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15698','{17827}<0 and {17828}>0\r\nand (\r\n{17829}=6 or\r\n{17829}=7 or\r\n{17829}=11 or\r\n{17829}=62 or\r\n{17829}=69 or\r\n{17829}=117\r\n)\r\nand\r\n({17830}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({17827}>0 and {17831}>0) or\r\n({17830}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','31393aeac3b44062b98267fc1f594c52');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15717','{17866}=1','{#SENSOR_INFO}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','11dddf9f12a0423bb886808759cd429d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15718','{23713}<>{23714} and length({23715})>0','{#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','{#ENT_NAME}: Device has been replaced (new serial number received)','218209a40ec54a489738345c4485be83');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15719','{17869}=1','{#ENT_NAME}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4faa99278cd94abaace8b09529a6efaa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15720','{17870}=1','System status is in critical state','','0','4','Please check the device for errors',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b91af8b94e2047538376be9911beadee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15721','{17871}=1 or {17872}=1','System status is in warning state','','0','2','Please check the device for warnings',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b17d4a2bae804c968984b763fa4562fc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15722','{17873}=1','System status is in critical state','','0','4','Please check the device for errors',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1190bb9c05424ac5a0052bd191c274f2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15728','{17879}=1','System is in unrecoverable state!','','0','4','Please check the device for faults',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6d07848a4ded4e4fb0383ff12234ed25');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15729','{17880}=1','System status is in critical state','','0','4','Please check the device for errors',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b47601a02003409896d79e3c99093aca');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15730','{17881}=1','System status is in warning state','','0','2','Please check the device for warnings',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a323c8f5ca8d4517b0451677bd43c4db');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15731','{24779}<>{24780} and length({24781})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','6f5b00a889804fbeb41c4246b29bd5f1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15732','{24776}<>{24777} and length({24778})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','e816b86474e6471eb48cbda563dfddd6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15735','{17892}<{$TEMP_CRIT_LOW:"CPU"}','{#SENSOR_LOCALE}: Temperature is too low','','0','3','',NULL,'0','2','1','{17893}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCALE}: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','edb89d83ecc144cdbccdb41f8842d572');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15738','{17900}<{$TEMP_CRIT_LOW:"Ambient"}','{#SENSOR_LOCALE}: Temperature is too low','','0','3','',NULL,'0','2','1','{17901}>{$TEMP_CRIT_LOW:"Ambient"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCALE}: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"}','992e0a871cef40f6b859e251fd5d75fd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15739','{17902}=1 or {17903}=1','{#PSU_DESCR}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9f57b49984864af188b178dc2da85b71');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15740','{17904}=1','{#PSU_DESCR}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d7d1b3d889254ae288348cd6b77bad5f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15741','{17905}=1 or {17906}=1 or {17907}=1 or {17908}=1 or {17909}=1','{#FAN_DESCR}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a1bca91682e84a7b8866ce443cfcbd44');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15742','{17910}=1 or {17911}=1','{#FAN_DESCR}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','981f52ec4ba44b558bdbc5775622bc0c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15743','{17912}=1 or {17913}=1','{#DISK_NAME}: Physical disk failed','','0','4','Please check physical disk for warnings or errors',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','5eedc39db9a348df8e547be6401c0814');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15744','{17914}=1','{#DISK_NAME}: Physical disk is in warning state','','0','2','Please check physical disk for warnings or errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6defa44f91ee4fb5b11b92ba64f07b48');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15745','{24785}<>{24786} and length({24787})>0','{#DISK_NAME}: Disk has been replaced','','0','1','Disk serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','{#DISK_NAME}: Disk has been replaced (new serial number received)','eb26b6915b9f4ce6983566df9ee4db96');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15746','{17917}=1','{#DISK_NAME}: Physical disk S.M.A.R.T. failed','','0','4','Disk probably requires replacement.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7dc1a088ebd74702b0fb4e0a20edbed2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15747','{17918}=1','Disk {#SNMPVALUE}({#DISK_NAME}): Virtual disk failed','','0','4','Please check virtual disk for warnings or errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','457783fb014a4cae9d47a1cb17d8d31e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15748','{17919}=1','Disk {#SNMPVALUE}({#DISK_NAME}): Virtual disk is in warning state','','0','3','Please check virtual disk for warnings or errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d0c6dbaa042f40559d855acb1b61977a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15749','{17920}=1','{#CNTLR_NAME}: Disk array controller is in unrecoverable state!','','0','5','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','55a0631d0ab24bc6ad5a6c4ef7d1be30');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15750','{17921}=1','{#CNTLR_NAME}: Disk array controller is in critical state','','0','4','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b037fad011764721a030bdde50f6ede3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15751','{17922}=1','{#CNTLR_NAME}: Disk array controller is in warning state','','0','3','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','226ab2efc25d46c9adda8f763fe4a65f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15752','{17923}=1','Battery {#BATTERY_NUM}: Disk array cache controller battery is in warning state','','0','2','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','fc2eeac871464a65930bbbb2341c803f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15753','{17924}=1','Battery {#BATTERY_NUM}: Disk array cache controller battery is not in optimal state','','0','2','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d36acb231d99493b9a760bf231001b4d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15754','{17925}=1','Battery {#BATTERY_NUM}: Disk array cache controller battery is in critical state!','','0','3','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7b9a7b970ac049589912d8e208baf2e2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15762','{24996}<>{24997} and length({24998})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','7e8d377e1b49469a8b19b94e6dad97ce');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15781','{17971}=1','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7a34714fcbb74294af97bc4f39c21413');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15782','{17972}=1','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','db7679204aa544cb8ffe38df5c68b7ce');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15783','{17973}=1','Fan {#SNMPINDEX}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0731e25040504428acb466b0d4e2803a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15784','{17974}=1','Fan {#SNMPINDEX}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c8c9ea062fa849b0b550ad4dd1d2cec7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15785','{17975}=1','{#CNTLR_LOCATION}: Disk array controller is in critical state','','0','4','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a318564fe4eb488eba251f3cba3d31b6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15786','{17976}=1','{#CNTLR_LOCATION}: Disk array controller is in warning state','','0','3','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6b65d2b2477c4567953fcec31b1ab9a3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15787','{17977}=1','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in critical state!','','0','3','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a4c81fb1ef6140199bbde241691183cd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15790','{17983}=1 or {17984}=1','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in critical state!','','0','3','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b3049aa19e5d45d28937c1af262aba3e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15792','{17987}=1','{#DISK_LOCATION}: Physical disk failed','','0','4','Please check physical disk for warnings or errors',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','95e887baa0b9480a8a59848b07418c6b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15793','{17988}=1','{#DISK_LOCATION}: Physical disk is in warning state','','0','2','Please check physical disk for warnings or errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','857540089794495799eb1a04b172c70c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15794','{17989}=1 or {17990}=1','{#DISK_LOCATION}: Physical disk S.M.A.R.T. failed','','0','4','Disk probably requires replacement.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','180f8f9124a041d0bf1c350d0226c3d3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15795','{24999}<>{25000} and length({25001})>0','{#DISK_LOCATION}: Disk has been replaced','','0','1','Disk serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','{#DISK_LOCATION}: Disk has been replaced (new serial number received)','87bcd812474b44729da19f49344ba976');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15796','{17993}=1','Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk failed','','0','4','Please check virtual disk for warnings or errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','3f809df0d34f47a2bc1addbf2f4387ac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15797','{17994}=1','Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk is not in OK state','','0','2','Please check virtual disk for warnings or errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','439b8dfa246f42d190d8f4deeebfeb53');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15824','{18031}=1','System is in unrecoverable state!','','0','4','Please check the device for faults',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ea8fbc9446d34033b60a8214b8199ea1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15825','{18032}=1','System status is in critical state','','0','4','Please check the device for errors',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a76c198aeb7d452a8c710ddde21aa12e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15826','{18033}=1','System status is in warning state','','0','2','Please check the device for warnings',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','acd147a3d41b49478410f4d49562cde2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15827','{25002}<>{25003} and length({25004})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','b2bf06198d5840c6905ea6cf6d9e443c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15828','{31491}>{$TEMP_WARN:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31492}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','ecb8ac5828e44a94a32164dce9811fbc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15829','{31489}>{$TEMP_CRIT:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31490}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','958eebe18bd94670b2b9029064a84bc9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15830','{31493}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{31494}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','8ff82421c9f74d509766e7dc139ab2c8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15831','{18042}>{$TEMP_WARN:"Ambient"}','Ambient: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{18043}<{$TEMP_WARN:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Ambient: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"}','e6bcdf201e304471aa84cc8d34b290ec');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15832','{18044}>{$TEMP_CRIT:"Ambient"}','Ambient: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{18045}<{$TEMP_CRIT:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Ambient: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"}','615967071d6b40f6b02e386c9586a66e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15833','{18046}<{$TEMP_CRIT_LOW:"Ambient"}','Ambient: Temperature is too low','','0','3','',NULL,'0','2','1','{18047}>{$TEMP_CRIT_LOW:"Ambient"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Ambient: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"}','dd773e52746840e4b6f7517740873102');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15834','{18048}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{18049}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','3b7396311de1487e90416aa2c42cb03d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15835','{18050}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{18051}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','e994d3d8398147c49062bc712dc4c204');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15836','{18052}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{18053}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','e39d0e009efb4216ac7cbbe544ad4bc0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15837','{18054}=1','{#PSU_DESCR}: Power supply is not in normal state','','0','1','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4e7767484cff49b098e73b068ef04160');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15838','{18055}=1','{#FAN_DESCR}: Fan is not in normal state','','0','1','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b2d4ae5922174af6b0ef274accc8ae21');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15839','{18056}=1','{#SNMPINDEX}: Physical disk is not in OK state','','0','2','Please check physical disk for warnings or errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','45eb3fe3369a41b199179e2eca725027');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15845','{31497}>{$TEMP_WARN:"{#SENSOR_DESCR}"}','{#SENSOR_DESCR}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31498}<{$TEMP_WARN:"{#SENSOR_DESCR}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_DESCR}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SENSOR_DESCR}"}','2c2914d1c8c846d180ee308fa861540e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15846','{31495}>{$TEMP_CRIT:"{#SENSOR_DESCR}"}','{#SENSOR_DESCR}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31496}<{$TEMP_CRIT:"{#SENSOR_DESCR}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_DESCR}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SENSOR_DESCR}"}','1a48aee477d54d34bdea47fc6027968c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15847','{31499}<{$TEMP_CRIT_LOW:"{#SENSOR_DESCR}"}','{#SENSOR_DESCR}: Temperature is too low','','0','3','',NULL,'0','2','1','{31500}>{$TEMP_CRIT_LOW:"{#SENSOR_DESCR}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_DESCR}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SENSOR_DESCR}"}','1439e7a34bbf4046836890f208f99a48');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15853','{18076}>75','Zabbix server: Utilization of lld manager processes is high','','0','3','',NULL,'0','0','1','{18076}<65','0','','0','','0','Zabbix server: Utilization of lld manager processes over 75%','39109dabd9454844996864834292c0c4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15855','{18078}>75','Zabbix server: Utilization of lld worker processes is high','','0','3','',NULL,'0','0','1','{18078}<65','0','','0','','0','Zabbix server: Utilization of lld worker processes over 75%','8eca01d6e0e64f5795d3a5b5e4aa593d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15857','{18080}>75','Remote Zabbix server: More than 75% used in the configuration cache','','0','3','Consider increasing CacheSize in the zabbix_server.conf configuration file.',NULL,'0','0','0','','0','','0','','0','','9d5f36b486ab4781a5f58210143785e9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15858','{18081}>75','Remote Zabbix server: More than 75% used in the history cache','','0','3','Consider increasing HistoryCacheSize in the zabbix_server.conf configuration file.',NULL,'0','0','0','','0','','0','','0','','a66914bd7f2e4442a8b555deacebb4c9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15859','{18082}>75','Remote Zabbix server: More than 75% used in the history index cache','','0','3','Consider increasing HistoryIndexCacheSize in the zabbix_server.conf configuration file.',NULL,'0','0','0','','0','','0','','0','','6aedbc1768ed4f949890248af98fdaa2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15860','{18083}>75','Remote Zabbix server: More than 75% used in the trends cache','','0','3','Consider increasing TrendCacheSize in the zabbix_server.conf configuration file.',NULL,'0','0','0','','0','','0','','0','','742a4938fdd24026921b375a67cea921');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15861','{18084}>75','Remote Zabbix server: More than 75% used in the vmware cache','','0','3','Consider increasing VMwareCacheSize in the zabbix_server.conf configuration file.',NULL,'0','0','0','','0','','0','','0','','08e6c62dd52b4a0694be910c4f4fa997');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15862','{18085}>95','Remote Zabbix server: More than 95% used in the value cache','','0','3','Consider increasing ValueCacheSize in the zabbix_server.conf configuration file.',NULL,'0','0','0','','0','','0','','0','','d35671cd02034aeba3c7c71ed618f4ee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15863','{18086}>100','Remote Zabbix server: More than 100 items having missing data for more than 10 minutes','','0','2','zabbix[stats,{$IP},{$PORT},queue,10m] item is collecting data about\r\nhow many items are missing data for more than 10 minutes.',NULL,'0','0','0','','0','','0','','0','','c8eddec1bb9740bb8ca05f74bd023fcc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15864','{18087}>75','Remote Zabbix server: Utilization of alerter processes is high','','0','3','',NULL,'0','0','1','{18087}<65','0','','0','','0','Remote Zabbix server: Utilization of alerter processes over 75%','d4aae59fe9294da5b1c724b051af1683');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15865','{18088}>75','Remote Zabbix server: Utilization of alert manager processes is high','','0','3','',NULL,'0','0','1','{18088}<65','0','','0','','0','Remote Zabbix server: Utilization of alert manager processes over 75%','310f33d488ae4f5faa245c96f8dc583c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15866','{18089}>75','Remote Zabbix server: Utilization of configuration syncer processes is high','','0','3','',NULL,'0','0','1','{18089}<65','0','','0','','0','Remote Zabbix server: Utilization of configuration syncer processes over 75%','f1caa410beea429eb91daaec8f027eb3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15867','{18090}>75','Remote Zabbix server: Utilization of discoverer processes is high','','0','3','',NULL,'0','0','1','{18090}<65','0','','0','','0','Remote Zabbix server: Utilization of discoverer processes over 75%','2ed92415c6c542639a8b8d1f0a4646f4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15868','{18091}>75','Remote Zabbix server: Utilization of escalator processes is high','','0','3','',NULL,'0','0','1','{18091}<65','0','','0','','0','Remote Zabbix server: Utilization of escalator processes over 75%','de07be1b10d9446abed4a387dd4980dd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15869','{18092}>75','Remote Zabbix server: Utilization of history syncer processes is high','','0','3','',NULL,'0','0','1','{18092}<65','0','','0','','0','Remote Zabbix server: Utilization of history syncer processes over 75%','b8e6a6ce3667459bad05afa850e99bc0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15870','{23313}>75','Remote Zabbix server: Utilization of housekeeper processes is high','','0','3','',NULL,'0','0','1','{23313}<65','0','','0','','0','Remote Zabbix server: Utilization of housekeeper processes over 75%','b879623a755e4b79972c2ad3189886a2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15871','{18094}>75','Remote Zabbix server: Utilization of http poller processes is high','','0','3','',NULL,'0','0','1','{18094}<65','0','','0','','0','Remote Zabbix server: Utilization of http poller processes over 75%','f7b4217cdd4b46b1949a5e6ac5fc3d02');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15872','{18095}>75','Remote Zabbix server: Utilization of icmp pinger processes is high','','0','3','',NULL,'0','0','1','{18095}<65','0','','0','','0','Remote Zabbix server: Utilization of icmp pinger processes over 75%','312d404ff20740f38385ebe7c3e36d8f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15873','{18096}>75','Remote Zabbix server: Utilization of ipmi manager processes is high','','0','3','',NULL,'0','0','1','{18096}<65','0','','0','','0','Remote Zabbix server: Utilization of ipmi manager processes over 75%','3fe728ab8de9447c899b2a919b885cec');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15874','{18097}>75','Remote Zabbix server: Utilization of ipmi poller processes is high','','0','3','',NULL,'0','0','1','{18097}<65','0','','0','','0','Remote Zabbix server: Utilization of ipmi poller processes over 75%','dbf27d6a629a4a2cb75e04849b93ac0f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15875','{18098}>75','Remote Zabbix server: Utilization of java poller processes is high','','0','3','',NULL,'0','0','1','{18098}<65','0','','0','','0','Remote Zabbix server: Utilization of java poller processes over 75%','304a2dcf77c8494fb18f52cc6bae73a9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15876','{18099}>75','Remote Zabbix server: Utilization of poller processes is high','','0','3','',NULL,'0','0','1','{18099}<65','0','','0','','0','Remote Zabbix server: Utilization of poller processes over 75%','689ed5dd9bbd4873a825dfa675378d50');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15877','{18100}>75','Remote Zabbix server: Utilization of preprocessing manager processes is high','','0','3','',NULL,'0','0','1','{18100}<65','0','','0','','0','Remote Zabbix server: Utilization of preprocessing manager processes over 75%','b43f04a35e17415bb81bfb59357d45ac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15878','{18101}>75','Remote Zabbix server: Utilization of preprocessing worker processes is high','','0','3','',NULL,'0','0','1','{18101}<65','0','','0','','0','Remote Zabbix server: Utilization of preprocessing worker processes over 75%','1c28310eb72047449437ee94854029fa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15879','{18102}>75','Remote Zabbix server: Utilization of proxy poller processes is high','','0','3','',NULL,'0','0','1','{18102}<65','0','','0','','0','Remote Zabbix server: Utilization of proxy poller processes over 75%','c0d2c7c008cb45ee8b032b7c83018ae1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15880','{18103}>75','Remote Zabbix server: Utilization of self-monitoring processes is high','','0','3','',NULL,'0','0','1','{18103}<65','0','','0','','0','Remote Zabbix server: Utilization of self-monitoring processes over 75%','0d9b8d1f2d7d454ab472320ac172252c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15881','{18104}>75','Remote Zabbix server: Utilization of snmp trapper processes is high','','0','3','',NULL,'0','0','1','{18104}<65','0','','0','','0','Remote Zabbix server: Utilization of snmp trapper processes over 75%','4726331c52284261aa3f347448c1c3c5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15882','{18105}>75','Remote Zabbix server: Utilization of task manager processes is high','','0','3','',NULL,'0','0','1','{18105}<65','0','','0','','0','Remote Zabbix server: Utilization of task manager processes over 75%','07d29e82b74a4cc5b0d701458af302b7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15883','{18106}>75','Remote Zabbix server: Utilization of timer processes is high','','0','3','',NULL,'0','0','1','{18106}<65','0','','0','','0','Remote Zabbix server: Utilization of timer processes over 75%','72f3b3f143a94f5a9b4b2c509425954e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15884','{18107}>75','Remote Zabbix server: Utilization of trapper processes is high','','0','3','',NULL,'0','0','1','{18107}<65','0','','0','','0','Remote Zabbix server: Utilization of trapper processes over 75%','d31285f177224c4cb570373f6a730019');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15885','{18108}>75','Remote Zabbix server: Utilization of unreachable poller processes is high','','0','3','',NULL,'0','0','1','{18108}<65','0','','0','','0','Remote Zabbix server: Utilization of unreachable poller processes over 75%','d254ccddc7dd4e1ebf1eaa5113270e85');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15886','{18109}=1','Remote Zabbix server: Zabbix value cache working in low memory mode','','0','4','Once the low memory mode has been switched on, the value cache will remain in this state for 24 hours, even if the problem that triggered this mode is resolved sooner.',NULL,'0','0','0','','0','','0','','0','','95e8823159fc4baeb13d656be176ac16');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15887','{18110}>75','Remote Zabbix server: Utilization of vmware collector processes is high','','0','3','',NULL,'0','0','1','{18110}<65','0','','0','','0','Remote Zabbix server: Utilization of vmware collector processes over 75%','5929cfbe23494a41a20a4c05854f9578');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15888','{18111}>75','Remote Zabbix server: Utilization of lld manager processes is high','','0','3','',NULL,'0','0','1','{18111}<65','0','','0','','0','Remote Zabbix server: Utilization of lld manager processes over 75%','4027f813da2549cfb99e1bb5e04e1d28');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15889','{18112}>75','Remote Zabbix server: Utilization of lld worker processes is high','','0','3','',NULL,'0','0','1','{18112}<65','0','','0','','0','Remote Zabbix server: Utilization of lld worker processes over 75%','ef1e836e906e4cf79b9fc8a11818c0a6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15890','{28414}>{$ZABBIX.PROXY.UTIL.MAX}','Remote Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX}% used in the configuration cache','','0','3','Consider increasing CacheSize in the zabbix_server.conf configuration file.',NULL,'0','0','0','','0','','0','','0','','6aaad09f92f3419c9aa7164f2191a45a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15891','{28416}>{$ZABBIX.PROXY.UTIL.MAX}','Remote Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX}% used in the history cache','','0','3','Consider increasing HistoryCacheSize in the zabbix_server.conf configuration file.',NULL,'0','0','0','','0','','0','','0','','c14095c38d17486fa8fde22bd5a9d737');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15892','{28417}>{$ZABBIX.PROXY.UTIL.MAX}','Remote Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX}% used in the history index cache','','0','3','Consider increasing HistoryIndexCacheSize in the zabbix_server.conf configuration file.',NULL,'0','0','0','','0','','0','','0','','43f9a4fc049e45e5b8bbb0980b518dd0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15893','{28415}>{$ZABBIX.PROXY.UTIL.MAX}','Remote Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX}% used in the vmware cache','','0','3','Consider increasing VMwareCacheSize in the zabbix_server.conf configuration file.',NULL,'0','0','0','','0','','0','','0','','ac2a42046de340e1968802d92678947c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15894','{18117}>100','Remote Zabbix proxy: More than 100 items having missing data for more than 10 minutes','','0','2','zabbix[stats,{$ZABBIX.PROXY.ADDRESS},{$ZABBIX.PROXY.PORT},queue,10m] item is collecting data about how many items are missing data for more than 10 minutes.',NULL,'0','0','0','','0','','0','','0','','71cd927153ef4b8480a8f13fc6b4def8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15895','{28394}>{$ZABBIX.PROXY.UTIL.MAX:"configuration syncer"}','Remote Zabbix proxy: Utilization of configuration syncer processes is high','','0','3','',NULL,'0','0','1','{28394}<{$ZABBIX.PROXY.UTIL.MIN:"configuration syncer"}','0','','0','','0','Remote Zabbix proxy: Utilization of configuration syncer processes over {$ZABBIX.PROXY.UTIL.MAX:"configuration syncer"}%','67089f59f77641c8ab487e2c44d563a2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15896','{28395}>{$ZABBIX.PROXY.UTIL.MAX:"data sender"}','Remote Zabbix proxy: Utilization of data sender processes is high','','0','3','',NULL,'0','0','1','{28395}<{$ZABBIX.PROXY.UTIL.MIN:"data sender"}','0','','0','','0','Remote Zabbix proxy: Utilization of data sender processes over {$ZABBIX.PROXY.UTIL.MAX:"data sender"}%','f2208ef37274449fb2b61f5f55e615f1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15897','{28396}>{$ZABBIX.PROXY.UTIL.MAX:"discoverer"}','Remote Zabbix proxy: Utilization of discoverer processes is high','','0','3','',NULL,'0','0','1','{28396}<{$ZABBIX.PROXY.UTIL.MIN:"discoverer"}','0','','0','','0','Remote Zabbix proxy: Utilization of discoverer processes over {$ZABBIX.PROXY.UTIL.MAX:"discoverer"}%','c5a739eef8cb43f099ee902c9eb23d6e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15898','{28397}>{$ZABBIX.PROXY.UTIL.MAX:"heartbeat sender"}','Remote Zabbix proxy: Utilization of heartbeat sender processes is high','','0','3','',NULL,'0','0','1','{28397}<{$ZABBIX.PROXY.UTIL.MIN:"heartbeat sender"}','0','','0','','0','Remote Zabbix proxy: Utilization of heartbeat sender processes over {$ZABBIX.PROXY.UTIL.MAX:"heartbeat sender"}%','f75e8a72ae1642999c7560387f189129');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15899','{28399}>{$ZABBIX.PROXY.UTIL.MAX:"history syncer"}','Remote Zabbix proxy: Utilization of history syncer processes is high','','0','3','',NULL,'0','0','1','{28399}<{$ZABBIX.PROXY.UTIL.MIN:"history syncer"}','0','','0','','0','Remote Zabbix proxy: Utilization of history syncer processes over {$ZABBIX.PROXY.UTIL.MAX:"history syncer"}%','872ca8a02ff948d0ab4f5000249bbf5b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15900','{28400}>{$ZABBIX.PROXY.UTIL.MAX:"housekeeper"}','Remote Zabbix proxy: Utilization of housekeeper processes is high','','0','3','',NULL,'0','0','1','{28400}<{$ZABBIX.PROXY.UTIL.MIN:"housekeeper"}','0','','0','','0','Remote Zabbix proxy: Utilization of housekeeper processes over {$ZABBIX.PROXY.UTIL.MAX:"housekeeper"}%','43d8ef15170e4edd80eea85ad9990d73');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15901','{28401}>{$ZABBIX.PROXY.UTIL.MAX:"http poller"}','Remote Zabbix proxy: Utilization of http poller processes is high','','0','3','',NULL,'0','0','1','{28401}<{$ZABBIX.PROXY.UTIL.MIN:"http poller"}','0','','0','','0','Remote Zabbix proxy: Utilization of http poller processes over {$ZABBIX.PROXY.UTIL.MAX:"http poller"}%','9c391ba5350d401b9ca56f7cd29cd457');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15902','{28402}>{$ZABBIX.PROXY.UTIL.MAX:"icmp pinger"}','Remote Zabbix proxy: Utilization of icmp pinger processes is high','','0','3','',NULL,'0','0','1','{28402}<{$ZABBIX.PROXY.UTIL.MIN:"icmp pinger"}','0','','0','','0','Remote Zabbix proxy: Utilization of icmp pinger processes over {$ZABBIX.PROXY.UTIL.MAX:"icmp pinger"}%','8a0abc8ff0dd42b0926b5840fe5b0e2f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15903','{28403}>{$ZABBIX.PROXY.UTIL.MAX:"ipmi manager"}','Remote Zabbix proxy: Utilization of ipmi manager processes is high','','0','3','',NULL,'0','0','1','{28403}<{$ZABBIX.PROXY.UTIL.MIN:"ipmi manager"}','0','','0','','0','Remote Zabbix proxy: Utilization of ipmi manager processes over {$ZABBIX.PROXY.UTIL.MAX:"ipmi manager"}%','a2aed809416b46beba8ed63554d9b7d5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15904','{28404}>{$ZABBIX.PROXY.UTIL.MAX:"ipmi poller"}','Remote Zabbix proxy: Utilization of ipmi poller processes is high','','0','3','',NULL,'0','0','1','{28404}<{$ZABBIX.PROXY.UTIL.MIN:"ipmi poller"}','0','','0','','0','Remote Zabbix proxy: Utilization of ipmi poller processes over {$ZABBIX.PROXY.UTIL.MAX:"ipmi poller"}%','e7c748c36e5740d684a5c4c68682f321');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15905','{28405}>{$ZABBIX.PROXY.UTIL.MAX:"java poller"}','Remote Zabbix proxy: Utilization of java poller processes is high','','0','3','',NULL,'0','0','1','{28405}<{$ZABBIX.PROXY.UTIL.MIN:"java poller"}','0','','0','','0','Remote Zabbix proxy: Utilization of java poller processes over {$ZABBIX.PROXY.UTIL.MAX:"java poller"}%','ef46070fc30b46c7be1ce3574e578449');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15906','{28407}>{$ZABBIX.PROXY.UTIL.MAX:"poller"}','Remote Zabbix proxy: Utilization of poller processes is high','','0','3','',NULL,'0','0','1','{28407}<{$ZABBIX.PROXY.UTIL.MIN:"poller"}','0','','0','','0','Remote Zabbix proxy: Utilization of poller processes over {$ZABBIX.PROXY.UTIL.MAX:"poller"}%','6afb9db9e11842c28c059abd31c7a134');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15907','{28408}>{$ZABBIX.PROXY.UTIL.MAX:"self-monitoring"}','Remote Zabbix proxy: Utilization of self-monitoring processes is high','','0','3','',NULL,'0','0','1','{28408}<{$ZABBIX.PROXY.UTIL.MIN:"self-monitoring"}','0','','0','','0','Remote Zabbix proxy: Utilization of self-monitoring processes over {$ZABBIX.PROXY.UTIL.MAX:"self-monitoring"}%','fee719ea91524972897c19ce4b17bd54');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15908','{28409}>{$ZABBIX.PROXY.UTIL.MAX:"snmp trapper"}','Remote Zabbix proxy: Utilization of snmp trapper processes is high','','0','3','',NULL,'0','0','1','{28409}<{$ZABBIX.PROXY.UTIL.MIN:"snmp trapper"}','0','','0','','0','Remote Zabbix proxy: Utilization of snmp trapper processes over {$ZABBIX.PROXY.UTIL.MAX:"snmp trapper"}%','9ca70574386f4b968bcda64a5d267d58');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15909','{28410}>{$ZABBIX.PROXY.UTIL.MAX:"task manager"}','Remote Zabbix proxy: Utilization of task manager processes is high','','0','3','',NULL,'0','0','1','{28410}<{$ZABBIX.PROXY.UTIL.MIN:"task manager"}','0','','0','','0','Remote Zabbix proxy: Utilization of task manager processes over {$ZABBIX.PROXY.UTIL.MAX:"task manager"}%','9d7d15a747484530a61102175cbc4478');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15910','{28411}>{$ZABBIX.PROXY.UTIL.MAX:"trapper"}','Remote Zabbix proxy: Utilization of trapper processes is high','','0','3','',NULL,'0','0','1','{28411}<{$ZABBIX.PROXY.UTIL.MIN:"trapper"}','0','','0','','0','Remote Zabbix proxy: Utilization of trapper processes over {$ZABBIX.PROXY.UTIL.MAX:"trapper"}%','49a9e3e1b17146f7861daf6994956d4f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15911','{28412}>{$ZABBIX.PROXY.UTIL.MAX:"unreachable poller"}','Remote Zabbix proxy: Utilization of unreachable poller processes is high','','0','3','',NULL,'0','0','1','{28412}<{$ZABBIX.PROXY.UTIL.MIN:"unreachable poller"}','0','','0','','0','Remote Zabbix proxy: Utilization of unreachable poller processes over {$ZABBIX.PROXY.UTIL.MAX:"unreachable poller"}%','e446ec803eaf4ace9b7d1fdc7a89cba6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15912','{28413}>{$ZABBIX.PROXY.UTIL.MAX:"vmware collector"}','Remote Zabbix proxy: Utilization of vmware collector processes is high','','0','3','',NULL,'0','0','1','{28413}<{$ZABBIX.PROXY.UTIL.MIN:"vmware collector"}','0','','0','','0','Remote Zabbix proxy: Utilization of vmware collector processes over {$ZABBIX.PROXY.UTIL.MAX:"vmware collector"}%','30147687074f45e7ab0dce81a1b7cf07');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15913','{28377}>{$ZABBIX.PROXY.UTIL.MAX:"preprocessing manager"}','Zabbix proxy: Utilization of preprocessing manager processes is high','','0','3','',NULL,'0','0','1','{28377}<{$ZABBIX.PROXY.UTIL.MIN:"preprocessing manager"}','0','','0','','0','Zabbix proxy: Utilization of preprocessing manager processes over {$ZABBIX.PROXY.UTIL.MAX:"preprocessing manager"}%','1ed29eb53708417a827adbdf4d8f145b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15914','{28378}>{$ZABBIX.PROXY.UTIL.MAX:"preprocessing worker"}','Zabbix proxy: Utilization of preprocessing worker processes is high','','0','3','',NULL,'0','0','1','{28378}<{$ZABBIX.PROXY.UTIL.MIN:"preprocessing worker"}','0','','0','','0','Zabbix proxy: Utilization of preprocessing worker processes over {$ZABBIX.PROXY.UTIL.MAX:"preprocessing worker"}%','22831f081149400a86cb18930de0cc20');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15943','{18169}=0','Apache: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','e24dbf9b89c34d839cb12a22b1103df3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15944','{18170}>{$APACHE.RESPONSE_TIME.MAX.WARN}','Apache: Service response time is too high','','0','2','',NULL,'0','0','0','','0','','1','','0','Apache: Service response time is too high (over {$APACHE.RESPONSE_TIME.MAX.WARN}s for 5m)','128905793a4b4a1db5a49f87e87d3383');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15947','{18174}=0','Apache: Process is not running','','0','4','',NULL,'0','0','0','','0','','0','','0','','b62f49b09d6b4c6ca01ff60cd9dd2209');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15948','{18175}=1','Apache: Failed to fetch status page','','0','2','Zabbix has not received data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','Apache: Failed to fetch status page (or no data for 30m)','db396445cc5042f89f31dc12cb99c32e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15949','{18176}=0','Apache: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','afe2fde35d054333adc8369a0f9af778');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15950','{18177}>{$APACHE.RESPONSE_TIME.MAX.WARN}','Apache: Service response time is too high','','0','2','',NULL,'0','0','0','','0','','1','','0','Apache: Service response time is too high (over {$APACHE.RESPONSE_TIME.MAX.WARN}s for 5m)','ffbb564032c7462eb0bb9b4c2f700559');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15951','{18178}<10m','Apache: has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Apache: has been restarted (uptime < 10m)','76cfa6ebf39f4c8fbd8fde9e0f36d3ed');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15952','{23179}<>{23180} and length({23181})>0','Apache: Version has changed','','0','1','Apache version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Apache: Version has changed (new version: {ITEM.VALUE})','5296d69af0704d0e8a07398f0b4c9685');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15954','{18183}=0','Nginx: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','c043191c22f34522ba4f83430d9f88b1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15955','{18184}>{$NGINX.RESPONSE_TIME.MAX.WARN}','Nginx: Service response time is too high','','0','2','',NULL,'0','0','0','','0','','1','','0','Nginx: Service response time is too high (over {$NGINX.RESPONSE_TIME.MAX.WARN}s for 5m)','f5db329410a14609a5f3e883ca493cc8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15956','{18185} > {$NGINX.DROP_RATE.MAX.WARN}','Nginx: High connections drop rate','','0','2','The dropping rate connections is greater than {$NGINX.DROP_RATE.MAX.WARN} for the last 5 minutes.',NULL,'0','0','0','','0','','0','Current rate: {ITEM.LASTVALUE1}','0','Nginx: High connections drop rate (more than {$NGINX.DROP_RATE.MAX.WARN} for 5m)','f2d431fa9bc446608caa3f80ef27c41b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15957','{18186}=0','Nginx: Process is not running','','0','4','',NULL,'0','0','0','','0','','0','','0','','903e6a1f30154ee49df3f8d87e0164cc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15958','{23231}<>{23232} and length({23233})>0','Nginx: Version has changed','','0','1','Nginx version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Nginx: Version has changed (new version: {ITEM.VALUE})','7ad80c508f2f48b59f7659c673db9f36');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15960','{18191}=0','Nginx: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','7b3de87ba0ea425280d42235bb626b8b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15961','{18192}>{$NGINX.RESPONSE_TIME.MAX.WARN}','Nginx: Service response time is too high','','0','2','',NULL,'0','0','0','','0','','1','','0','Nginx: Service response time is too high (over {$NGINX.RESPONSE_TIME.MAX.WARN}s for 5m)','fc1f7927b8864996986c1da44df57279');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15962','{18193} > {$NGINX.DROP_RATE.MAX.WARN}','Nginx: High connections drop rate','','0','2','The dropping rate connections is greater than {$NGINX.DROP_RATE.MAX.WARN} for the last 5 minutes.',NULL,'0','0','0','','0','','0','Current rate: {ITEM.LASTVALUE1}','0','Nginx: High connections drop rate (more than {$NGINX.DROP_RATE.MAX.WARN} for 5m)','79767fbc18594069a1fc0cbec832f8ff');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15963','{23234}<>{23235} and length({23236})>0','Nginx: Version has changed','','0','1','Nginx version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Nginx: Version has changed (new version: {ITEM.VALUE})','0f2689d4967a446e98a107b933179817');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16007','{18255}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','305450aac4ce4170a3a7942f6b092593');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16008','{31227}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and\r\n(({31228}-{31229})<{$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"} or {31230}<1d)','{#FSNAME}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%)','ae3535ef3f674dccb6c809dc7d01172c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16009','{31231}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and\r\n(({31232}-{31233})<{$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"} or {31234}<1d)','{#FSNAME}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%)','3bef4897bcd549288203241c5ca9f017');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16010','{18264}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}','{#FSNAME}: Running out of free inodes','','0','3','It may become impossible to write to disk if there are no index nodes left.\r\nAs symptoms, \'No space left on device\' or \'Disk is full\' errors may be seen even though free space is available.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%)','377f4ffa529f4b0690a11228f4021294');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16011','{18265}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}','{#FSNAME}: Running out of free inodes','','0','2','It may become impossible to write to disk if there are no index nodes left.\r\nAs symptoms, \'No space left on device\' or \'Disk is full\' errors may be seen even though free space is available.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%)','5f80199affa44ed7a6b875c49ca00aa7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16031','{18300}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','d6099dae0c3a4252ab2af61104768170');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16035','{18306}<10m','has been restarted','','0','2','The host uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','2b612f4d65f4444c8a0609362c48463b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16036','{18307}=0','System time is out of sync','','0','2','The host system time is different from the Zabbix server time.',NULL,'0','0','0','','0','','1','','0','System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s)','cffb7209ce2a45bd868ac41c0680be56');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16038','{18310}<{$KERNEL.MAXFILES.MIN}','Configured max number of open filedescriptors is too low','','0','1','',NULL,'0','0','0','','0','','0','','0','Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN})','abf2e035f1e54971a0795152f922271b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16039','{18311}<{$KERNEL.MAXPROC.MIN}','Configured max number of processes is too low','','0','1','',NULL,'0','0','0','','0','','0','','0','Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN})','079c2be2b0a44965a8e83cedba222b8d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16040','{18312}/{18313}*100>80','Getting closer to process limit','','0','2','',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit.','0','Getting closer to process limit (over 80% used)','613c30a98cf044b1b46a3d1d50f90eb8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16041','{24289}<>{24290}','/etc/passwd has been changed','','0','1','',NULL,'0','0','0','','0','','1','','0','','a07bba3d320c4979b68ac0bbfad900dc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16042','{24286}<>{24287} and length({24288})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','2f043de71d2940d184aa02200e33c28a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16069','{31211}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and\r\n(({31212}-{31213})<{$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"} or {31214}<1d)','{#FSNAME}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%)','fb410c10bd59476dbe58e1ee179cd25f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16070','{31215}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and\r\n(({31216}-{31217})<{$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"} or {31218}<1d)','{#FSNAME}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%)','d66583735eb04973ac30d923533c4b0f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16071','{18363}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}','{#FSNAME}: Running out of free inodes','','0','3','It may become impossible to write to disk if there are no index nodes left.\r\nAs symptoms, \'No space left on device\' or \'Disk is full\' errors may be seen even though free space is available.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%)','26adf86d6dd741b48007577091d5902c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16072','{18364}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}','{#FSNAME}: Running out of free inodes','','0','2','It may become impossible to write to disk if there are no index nodes left.\r\nAs symptoms, \'No space left on device\' or \'Disk is full\' errors may be seen even though free space is available.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%)','756b0126cc004f8d97f10384a4dc8587');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16076','{30990}<0 and {30991}>0\r\nand\r\n({30992}=6 or {30992}=1)\r\nand\r\n({30993}<>2)','Interface {#IFNAME}: Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30990}>0 and {30994}>0) or\r\n({30993}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','42ba7cc36b734d4a933ed4f7ceb8f3a4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16138','{18501}=1','node_exporter is not available','','0','2','Failed to fetch system metrics from node_exporter in time.',NULL,'0','0','0','','0','','1','','0','node_exporter is not available (or no data for 30m)','e33fafc8476e404aa4150d0d491f4c83');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16139','{18502}=0','System time is out of sync','','0','2','The host system time is different from the Zabbix server time.',NULL,'0','0','0','','0','','1','','0','System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s)','e91c10be1c4a4c3fadfe06aec6c1e4e4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16141','{18505}<{$KERNEL.MAXFILES.MIN}','Configured max number of open filedescriptors is too low','','0','1','',NULL,'0','0','0','','0','','0','','0','Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN})','c0002ad071d7497ab32633c93624e0c2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16142','{18506}/{18507}*100>80','Running out of file descriptors','','0','2','',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1} of {ITEM.LASTVALUE2} file descriptors are in use.','0','Running out of file descriptors (less than < 20% free)','7effa63c9c994a6786279802aa7328ad');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16143','{24341}<>{24342} and length({24343})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','00974d5b128c4b1db64ca100770fb11b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16144','{18510}<10m','has been restarted','','0','2','The device uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','83311a7c73c441d39d88fe0fc7b55af9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16146','{18513}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','4c924f8243a7431886a2d69368cb7142');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16152','{18526}<0 and {18527}>0\r\nand (\r\n{18528}=6 or\r\n{18528}=7 or\r\n{18528}=11 or\r\n{18528}=62 or\r\n{18528}=69 or\r\n{18528}=117\r\n)\r\nand\r\n({18529}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({18526}>0 and {18530}>0) or\r\n({18529}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','96bbb9726ef149a5b97f96d54502593a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16153','{18531}<0 and {18532}>0\r\nand\r\n({18532}=6\r\nor {18532}=1)\r\nand\r\n({18533}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({18531}>0 and {18534}>0) or\r\n({18533}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','08d5857e474042b5906288156c8c5d52');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16155','{31449}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and\r\n(({31450}-{31451})<{$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"} or {31452}<1d)','{#FSNAME}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%)','d5687d7aa0484b389f0bd168d50ee1e6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16156','{31453}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and\r\n(({31454}-{31455})<{$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"} or {31456}<1d)','{#FSNAME}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%)','8f765148cfd64d5ebda93f39d0b20e36');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16157','{18545}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}','{#FSNAME}: Running out of free inodes','','0','3','It may become impossible to write to disk if there are no index nodes left.\r\nAs symptoms, \'No space left on device\' or \'Disk is full\' errors may be seen even though free space is available.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%)','27cabcc9d9644ba6b7bd8c92a740e3cc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16158','{18546}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}','{#FSNAME}: Running out of free inodes','','0','2','It may become impossible to write to disk if there are no index nodes left.\r\nAs symptoms, \'No space left on device\' or \'Disk is full\' errors may be seen even though free space is available.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%)','c639215f6dd94c71aebf97265a282a0d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16160','{18548}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','afd1711dca1542a5bec9091cbae2bcf0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16161','{18549}>{$CPU.INTERRUPT.CRIT.MAX}','CPU interrupt time is too high','','0','2','"The CPU Interrupt Time in the last 5 minutes exceeds {$CPU.INTERRUPT.CRIT.MAX}%."\r\nThe Processor Information\\% Interrupt Time is the time the processor spends receiving and servicing\r\nhardware interrupts during sample intervals. This value is an indirect indicator of the activity of\r\ndevices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication\r\nlines, network interface cards and other peripheral devices. This is an easy way to identify a potential\r\nhardware failure. This should never be higher than 20%.',NULL,'0','0','0','','0','','0','','0','CPU interrupt time is too high (over {$CPU.INTERRUPT.CRIT.MAX}% for 5m)','3f6cca07bc6c48f0b21fee3aeb89bf6b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16162','{18550}>{$CPU.PRIV.CRIT.MAX}','CPU privileged time is too high','','0','2','The CPU privileged time in the last 5 minutes exceeds {$CPU.PRIV.CRIT.MAX}%.',NULL,'0','0','0','','0','','0','','0','CPU privileged time is too high (over {$CPU.PRIV.CRIT.MAX}% for 5m)','999464a5a73540d3b7b7cd86efa5488e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16166','{18555}<{$MEM.PAGE_TABLE_CRIT.MIN}','Number of free system page table entries is too low','','0','2','The Memory Free System Page Table Entries is less than {$MEM.PAGE_TABLE_CRIT.MIN} for 5 minutes. If the number is less than 5,000, there may well be a memory leak.',NULL,'0','0','0','','0','','0','','0','Number of free system page table entries is too low (less {$MEM.PAGE_TABLE_CRIT.MIN} for 5m)','5055a8fdc127479cbe97fdfd849831ea');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16167','{18556}>{$MEM.PAGE_SEC.CRIT.MAX}','The Memory Pages/sec is too high','','0','2','The Memory Pages/sec in the last 5 minutes exceeds {$MEM.PAGE_SEC.CRIT.MAX}. If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak.',NULL,'0','0','0','','0','','0','','0','The Memory Pages/sec is too high (over {$MEM.PAGE_SEC.CRIT.MAX} for 5m)','045574e4dd814b7e97d292b134f0a755');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16168','{18557}<10m','Host has been restarted','','0','2','The device uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Host has been restarted (uptime < 10m)','d24a0366e99c4e31815bbbaa3af71ac6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16169','{18558}=0','System time is out of sync','','0','2','The host system time is different from the Zabbix server time.',NULL,'0','0','0','','0','','1','','0','System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s)','3144a1b15227479e9ea4ce858faea74b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16182','{31297}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and\r\n(({31298}-{31299})<{$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"} or {31300}<1d)','{#FSLABEL}({#FSNAME}): Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSLABEL}({#FSNAME}): Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%)','68544e02e3cc4d389269448f34ca66e1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16183','{31301}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and\r\n(({31302}-{31303})<{$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"} or {31304}<1d)','{#FSLABEL}({#FSNAME}): Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSLABEL}({#FSNAME}): Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%)','ba0e859e58c34107a792098cfe9d31a4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16196','{18620}=0','Zabbix agent is not available','','0','3','For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold.',NULL,'0','0','0','','0','','1','','0','Zabbix agent is not available (for {$AGENT.TIMEOUT})','6767f9c764bb42dfa961baacf879f45c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16197','{18621}=1','Zabbix agent is not available','','0','3','For active agents, nodata() with agent.ping is used with {$AGENT.NODATA_TIMEOUT} as time threshold.',NULL,'0','0','0','','0','','1','','0','Zabbix agent is not available (or nodata for {$AGENT.NODATA_TIMEOUT})','6bbb74c522d44baea8c6ceb666423da2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16250','{18711}>0','RabbitMQ: Number of network partitions is too high','','0','2','https://www.rabbitmq.com/partitions.html#detecting',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','RabbitMQ: Number of network partitions is too high (more than 0 for 5m)','5bed266725e94000804b0ecc7bce6209');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16251','{18712}=0','RabbitMQ: Node is not running','','0','3','RabbitMQ node is not running',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','253acf98446e4790975b330d44dd6b96');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16254','{18715}<10m','RabbitMQ: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','RabbitMQ: has been restarted (uptime < 10m)','729c448ebabb417bb7ce17b1634c4484');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16255','{18716}=0','RabbitMQ: Process is not running','','0','4','',NULL,'0','0','0','','0','','0','','0','','2979bc7d779b404696f7eac273e99ea7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16256','{18717}=0','RabbitMQ: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','af5cfb0004e04562a9720b9e1b41fd5b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16257','{18718}>{$RABBITMQ.RESPONSE_TIME.MAX.WARN}','RabbitMQ: Service response time is too high','','0','2','',NULL,'0','0','0','','0','','1','','0','RabbitMQ: Service response time is too high (over {$RABBITMQ.RESPONSE_TIME.MAX.WARN}s for 5m)','5cb80a7552d74e44a83d0825f039f89f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16258','{18719}>{$RABBITMQ.MESSAGES.MAX.WARN:"{#QUEUE}"}','RabbitMQ: Too many messages in queue [{#VHOST}][{#QUEUE}]','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','RabbitMQ: Too many messages in queue [{#VHOST}][{#QUEUE}] (over {$RABBITMQ.MESSAGES.MAX.WARN:"{#QUEUE}"} for 5m)','58986cee2b4846b3b7bd3caf772d7ac6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16259','{18720}=1','RabbitMQ: Failed to fetch overview data','','0','2','Zabbix has not received data for items for the last 30 minutes',NULL,'0','0','0','','0','','1','','0','RabbitMQ: Failed to fetch overview data (or no data for 30m)','ae7f1953f9b94c9c907d7bd7627d389d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16264','{18726}>0','RabbitMQ: Number of network partitions is too high','','0','2','https://www.rabbitmq.com/partitions.html#detecting',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','RabbitMQ: Number of network partitions is too high (more than 0 for 5m)','943d239a9fa5443dac3205c65a4da033');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16265','{18727}=0','RabbitMQ: Node is not running','','0','3','RabbitMQ node is not running',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4b15e72e2133458ebac9c72c5fcb90e6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16268','{18730}<10m','RabbitMQ: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','RabbitMQ: has been restarted (uptime < 10m)','6edfa365704f480da4b35b51b6ed84f4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16269','{18731}=0','RabbitMQ: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','636356e5255d49d992df4b7a0c7d222d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16270','{18732}>{$RABBITMQ.RESPONSE_TIME.MAX.WARN}','RabbitMQ: Service response time is too high','','0','2','',NULL,'0','0','0','','0','','1','','0','RabbitMQ: Service response time is too high (over {$RABBITMQ.RESPONSE_TIME.MAX.WARN}s for 5m)','220eedd4f69b43fabe233b5127e09c50');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16271','{18733}>{$RABBITMQ.MESSAGES.MAX.WARN:"{#QUEUE}"}','RabbitMQ: Too many messages in queue [{#VHOST}][{#QUEUE}]','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','RabbitMQ: Too many messages in queue [{#VHOST}][{#QUEUE}] (over {$RABBITMQ.MESSAGES.MAX.WARN:"{#QUEUE}"} for 5m)','b6f52153a22144338e6d002287446ac1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16272','{18734}>75','Remote Zabbix server: Utilization of alert syncer processes is high','','0','3','',NULL,'0','0','1','{18734}<65','0','','0','','0','Remote Zabbix server: Utilization of alert syncer processes over 75%','0eb23de05fac4aeab4ee4aa337545b16');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16273','{18735}>75','Zabbix server: Utilization of alert syncer processes is high','','0','3','',NULL,'0','0','1','{18735}<65','0','','0','','0','Zabbix server: Utilization of alert syncer processes over 75%','e2a487335f2748a6b26d867290c9cfe4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16287','({31829}>0 and {31829}<10m) or ({31829}=0 and {31830}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','6f00359af55f45909bdecbad234c7654');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16289','{18756}=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','','d3aba975ec574b258c7f971152c5d4cd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16439','{19090}=1','System status is in critical state','','0','4','Please check the device for errors',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6d0d0554e1c945dc90701aebd531f9cb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16440','{19091}=1','System status is in warning state','','0','2','Please check the device for warnings',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','273c27c7929649f1a45ddc92c09ab982');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16442','{19093}=1','RabbitMQ: Failed to fetch overview data','','0','2','Zabbix has not received data for items for the last 30 minutes',NULL,'0','0','0','','0','','1','','0','RabbitMQ: Failed to fetch overview data (or no data for 30m)','000d3e773f6e4ebf89f16daa2ce8c168');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16443','{19094}=1','RabbitMQ: Failed to fetch nodes data','','0','2','Zabbix has not received data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','RabbitMQ: Failed to fetch nodes data (or no data for 30m)','4f2a88d09b1b49879d80e0794ec19e0e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16445','{23262}<>{23263} and length({23264})>0','RabbitMQ: Version has changed','','0','1','RabbitMQ version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','RabbitMQ: Version has changed (new version: {ITEM.VALUE})','daf98bb4593d4697bc51423b2f65ba41');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16446','{19098}=1','RabbitMQ: Memory alarm','','0','3','https://www.rabbitmq.com/memory.html',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','RabbitMQ: Memory alarm (Memory usage threshold has been reached)','ec6ae727fe774b0fa56bb4d9ad773e35');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16447','{19099}=1','RabbitMQ: Free disk space alarm','','0','3','https://www.rabbitmq.com/disk-alarms.html',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','RabbitMQ: Free disk space alarm (Free space threshold has been reached)','b68cb12ecd4046fd80a717fb557f04e8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16448','{19100}=1','RabbitMQ: Failed to fetch nodes data','','0','2','Zabbix has not received data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','RabbitMQ: Failed to fetch nodes data (or no data for 30m)','d4452f05d08343c7a374da412c0f1de6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16450','{23265}<>{23266} and length({23267})>0','RabbitMQ: Version has changed','','0','1','RabbitMQ version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','RabbitMQ: Version has changed (new version: {ITEM.VALUE})','19989038dfe84fcdb12262ee3782ab41');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16451','{19104}=1','RabbitMQ: Memory alarm','','0','3','https://www.rabbitmq.com/memory.html',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','RabbitMQ: Memory alarm (Memory usage threshold has been reached)','843be64cfdcd4df5b3fea4726da69c7e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16452','{19105}=1','RabbitMQ: Free disk space alarm','','0','3','https://www.rabbitmq.com/disk-alarms.html',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','RabbitMQ: Free disk space alarm (Free space threshold has been reached)','093eec2fd9264f158087509d8364dc09');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16459','{19113}>{$TEMP_WARN:"Ambient"}','{#SENSOR_LOCATION}.Ambient: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19114}<{$TEMP_WARN:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}.Ambient: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"}','cf21a0259b6e4402815651357cdcce76');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16460','{19115}>{$TEMP_CRIT:"Ambient"}','{#SENSOR_LOCATION}.Ambient: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19116}<{$TEMP_CRIT:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}.Ambient: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"}','4e293138ca374c96a18e4dbca8e45c72');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16461','{19117}<{$TEMP_CRIT_LOW:"Ambient"}','{#SENSOR_LOCATION}.Ambient: Temperature is too low','','0','3','',NULL,'0','2','1','{19118}>{$TEMP_CRIT_LOW:"Ambient"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}.Ambient: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"}','5139f8dd56094561a573a0b7b15a5ef0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16462','{19119}>{$TEMP_WARN:"Ambient"}','{#SENSOR_LOCATION}.Front: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19120}<{$TEMP_WARN:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}.Front: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"}','068f42b490ad41eb97a65dbc718ae566');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16463','{19121}>{$TEMP_CRIT:"Ambient"}','{#SENSOR_LOCATION}.Front: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19122}<{$TEMP_CRIT:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}.Front: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"}','98b9a6bd22e648e1bce3e5ee3ed5f6b4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16464','{19123}<{$TEMP_CRIT_LOW:"Ambient"}','{#SENSOR_LOCATION}.Front: Temperature is too low','','0','3','',NULL,'0','2','1','{19124}>{$TEMP_CRIT_LOW:"Ambient"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}.Front: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"}','f208cad426cf45338b6487cf87588220');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16465','{19125}>{$TEMP_WARN:"Ambient"}','{#SENSOR_LOCATION}.Rear: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19126}<{$TEMP_WARN:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}.Rear: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"}','ed302fd9bdbe47cda2456aa7cdc6ce66');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16466','{19127}>{$TEMP_CRIT:"Ambient"}','{#SENSOR_LOCATION}.Rear: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19128}<{$TEMP_CRIT:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}.Rear: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"}','ef03cd1e2356409ea2651fab589c9d19');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16467','{19129}<{$TEMP_CRIT_LOW:"Ambient"}','{#SENSOR_LOCATION}.Rear: Temperature is too low','','0','3','',NULL,'0','2','1','{19130}>{$TEMP_CRIT_LOW:"Ambient"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}.Rear: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"}','bb81b628d804411480d3b4066d626f82');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16468','{19131}>{$TEMP_WARN:"Ambient"}','{#SENSOR_LOCATION}.IOH: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19132}<{$TEMP_WARN:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}.IOH: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"}','da5d63d3411a4d2299d50cc21beae1c4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16469','{19133}>{$TEMP_CRIT:"Ambient"}','{#SENSOR_LOCATION}.IOH: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19134}<{$TEMP_CRIT:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}.IOH: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"}','a43eb91c4ae044729f4312466fcbd5da');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16470','{19135}<{$TEMP_CRIT_LOW:"Ambient"}','{#SENSOR_LOCATION}.IOH: Temperature is too low','','0','3','',NULL,'0','2','1','{19136}>{$TEMP_CRIT_LOW:"Ambient"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}.IOH: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"}','ce811e4247d5484caf4b095e829f162e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16471','{19137}>{$TEMP_WARN:"CPU"}','{#SENSOR_LOCATION}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19138}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','eaadcea2dc0d468d886654c3ec380390');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16472','{19139}>{$TEMP_CRIT:"CPU"}','{#SENSOR_LOCATION}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19140}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','35549eb00faf48ff8fdb7769b8a13895');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16473','{19141}<{$TEMP_CRIT_LOW:"CPU"}','{#SENSOR_LOCATION}: Temperature is too low','','0','3','',NULL,'0','2','1','{19142}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','ccb9b9edd7ba4a62b33e34ebf3647825');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16474','{19143}=1','{#PSU_LOCATION}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','480d51d19be74b6e95f702b31baa5666');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16475','{19144}=1','{#PSU_LOCATION}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','07fa90b5296b48d9b45cc6a76e72ceeb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16476','{19145}=1 or {19146}=1 or {19147}=1 or {19148}=1','{#UNIT_LOCATION}: System status is in critical state','','0','4','Please check the device for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','70fbf187bc474aa88a26fb5a8d862694');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16477','{19149}=1 or {19150}=1 or {19151}=1 or {19152}=1 or {19153}=1','{#UNIT_LOCATION}: System status is in warning state','','0','2','Please check the device for warnings',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b69f6876b7de4e1c89934281696249c8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16478','{24497}<>{24498} and length({24499})>0','{#UNIT_LOCATION}: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','{#UNIT_LOCATION}: Device has been replaced (new serial number received)','b9667c535fe542eeb21dea7aaf2bbf80');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16479','{19156}=1','{#FAN_LOCATION}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','5135b24c775f448c8998cadea3042e5b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16480','{19157}=1','{#FAN_LOCATION}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','895df7f89587441fa61223d5b2e442a2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16481','{19158}=1','{#DISK_LOCATION}: Physical disk failed','','0','4','Please check physical disk for warnings or errors',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','77ce5c74eefd4a9b818c11c8c1581cd8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16482','{19159}=1 or {19160}=1','{#DISK_LOCATION}: Physical disk error','','0','3','Please check physical disk for warnings or errors',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','445919e1ec414fd888f8911abc65650b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16483','{19161}=1','{#VDISK_LOCATION}: Virtual disk is not in OK state','','0','2','Please check virtual disk for warnings or errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','97b0c8177dca421f9535cb6f0abea7aa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16484','{19162}=1','{#DISKARRAY_LOCATION}: Disk array controller is in critical state','','0','4','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','44ec209460fb4010a087e971427b2fde');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16485','{19163}=1','{#DISKARRAY_LOCATION}: Disk array controller is in warning state','','0','3','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b419e0d296614f4285645954f8a7a970');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16486','{19164}=1','{#DISKARRAY_LOCATION}: Disk array controller is not in optimal state','','0','2','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a83202bb105d481c93464650272c14eb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16487','{19165}=1','{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery is in critical state!','','0','3','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0b09b93602c94821ae1126e4f9550436');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16488','{19166}=1','{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery is not in optimal state','','0','2','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d2af6de00e57412d8a2efcb20b1524a4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16491','{19171}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','4167b064eb19478da13531f629082ef1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16492','{23707}<>{23708} and length({23709})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','dd5dc3541a3d402c98a60b25d9e48dd6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16494','{19175}=1','#{#SNMPINDEX}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','afbc2020a9f74d6abe52469ac663e057');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16495','{19176}=1','#{#SNMPINDEX}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','fcbc0ef8f55146daaed6be4ccbd324e7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16496','{19177}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','68a50684095941cb90f22fbc8d632e7a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16498','{19179}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','7b068eb5d43846d987148f38f66b1f1a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16504','{19185}>{$TEMP_WARN:"Chassis"}','Chassis #{#SNMPINDEX}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19186}<{$TEMP_WARN:"Chassis"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Chassis #{#SNMPINDEX}: Temperature is above warning threshold: >{$TEMP_WARN:"Chassis"}','66c4f9fd59f043a782dd8fea11b90451');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16505','{19187}>{$TEMP_CRIT:"Chassis"}','Chassis #{#SNMPINDEX}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19188}<{$TEMP_CRIT:"Chassis"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Chassis #{#SNMPINDEX}: Temperature is above critical threshold: >{$TEMP_CRIT:"Chassis"}','cae73cf7a78f4963ab1718446ceeb6f4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16506','{19189}<{$TEMP_CRIT_LOW:"Chassis"}','Chassis #{#SNMPINDEX}: Temperature is too low','','0','3','',NULL,'0','2','1','{19190}>{$TEMP_CRIT_LOW:"Chassis"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Chassis #{#SNMPINDEX}: Temperature is too low: <{$TEMP_CRIT_LOW:"Chassis"}','2895da8297fc457da88ea136e61fb8d9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16507','{23807}<>{23808} and length({23809})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','e417e0edd4eb417d99816dd9cf4f20e9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16508','{19193}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','0833b9a8f2ba4c009ca038cc409236d8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16514','{19202}>{$CPU.UTIL.CRIT}','{#SNMPVALUE}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','be863abc1e3440a9bd35c4db77f83961');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16515','{19203}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','52d3b9d4d52e4f289221f4b5ade177d7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16521','{19209}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','002c0f19cfe54fe08da2183654752470');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16523','{23843}<>{23844} and length({23845})>0','#{#SNMPVALUE}: Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','2','0','','0','','1','','0','','66049aa1d7cb45ebac1fe5292c309ba2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16524','{19213}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','6e12ba6b60b94ec6bf531b4bb234dc80');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16525','{23849}<>{23850} and length({23851})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','01ca34ebe7a94ed3b3e5ee8320ebce73');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16527','{19217}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','621c4933fd9c4b78aae1eedada7ffedf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16529','{19219}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a77bbfe0755f4901b67a7957805bc566');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16530','{23864}<>{23865} and length({23866})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','af6a823b8f2d4fddae970828d0a3a9c9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16532','{23892}<>{23893} and length({23894})>0','{#ENT_NAME}: Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','2','0','','0','','1','','0','','9e6cccf7daec4405ac3bb1a27670fcee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16533','{19225}>{$CPU.UTIL.CRIT}','{#MODULE_NAME}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','{#MODULE_NAME}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','37a4a248c89240fe82c5fd6622123aa0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16535','{19227}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','883e49e933bd4cfda0e7dde774604a0a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16537','{19229}>{$CPU.UTIL.CRIT}','{#ENT_NAME}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','{#ENT_NAME}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','66bfe7805cae4447a32a6e5877e1231b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16538','{23904}<>{23905} and length({23906})>0','{#ENT_NAME}: Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','2','0','','0','','1','','0','','698067d647424c96addeb3c9f960dd07');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16540','{23916}<>{23917} and length({23918})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','9249511ecf4a4a2d952aa0c4fe55a5d0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16541','{19235}>{$CPU.UTIL.CRIT}','{#SNMPVALUE}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','248c49bc4f47437b9b91e20b57da197d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16543','{23934}<>{23935} and length({23936})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','739f60e0862d4fe88cc2a5fe626211a8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16545','{19240}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','7843aa49df2b4f218bf633bee4f01df6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16546','{32421}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32422}-{32423})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32424}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','c866ac0197ee401ab0c5cc6ec0757985');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16547','{32425}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32426}-{32427})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32428}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','9adb977fde7345d8950265a9127cde57');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16548','{19249}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','1e47f984c5514205aad2be5db1157fd2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16549','{23940}<>{23941} and length({23942})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','bf0a6ff122a14f4c9baa640d27c8f982');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16551','{31421}>{$TEMP_WARN}','Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','0','1','{31422}<{$TEMP_WARN}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature is above warning threshold: >{$TEMP_WARN}','b9122f253bf440ccb413d577790e46a0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16552','{31419}>{$TEMP_CRIT}','Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','0','1','{31420}<{$TEMP_CRIT}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature is above critical threshold: >{$TEMP_CRIT}','8ca8b9dfed0e4af898d9182150bb1ad0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16553','{31423}<{$TEMP_CRIT_LOW}','Temperature is too low','','0','3','',NULL,'0','0','1','{31424}>{$TEMP_CRIT_LOW}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature is too low: <{$TEMP_CRIT_LOW}','d7607e97e2f549caaefa184c9fee8220');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16554','{19259}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','57bf78318ded4574bde08adfafe94454');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16555','{23949}<>{23950} and length({23951})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','6431f9a46fcb4a42ab3e04c8289bd07d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16557','{19263}=1','{#SNMPINDEX}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9961328558a74e45a3154559ed582e41');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16558','{19264}=1','{#SNMPINDEX}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d047cf0b9e9f4e169e4a62c60358178d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16559','{19265}>{$CPU.UTIL.CRIT}','#{#SNMPVALUE}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','667a09c4f1c04a1a84c7c79adb9cbc70');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16561','{19267}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','0a779320c2ba4494b8c55aef969e7c9d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16563','{19269}/{19270}>{$LOAD_AVG_PER_CPU.MAX.WARN}\r\nand {19271}>0\r\nand {19272}>0','Load average is too high','','0','3','Per CPU load average is too high. Your system may be slow to respond.',NULL,'0','0','0','','0','','0','Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}','0','Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','0d6fc27f8a884510b2f31a5a0e653f70');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16573','{19299}/{19300}>{$LOAD_AVG_PER_CPU.MAX.WARN}\r\nand {19301}>0\r\nand {19302}>0','Load average is too high','','0','3','Per CPU load average is too high. Your system may be slow to respond.',NULL,'0','0','0','','0','','0','Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}','0','Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','e5897641e5594bf6b7b18ae4e107bd50');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16575','{19305}/{19306}>{$LOAD_AVG_PER_CPU.MAX.WARN}\r\nand {19307}>0\r\nand {19308}>0','Load average is too high','','0','3','Per CPU load average is too high. Your system may be slow to respond.',NULL,'0','0','0','','0','','0','Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}','0','Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','4e08b6e41268476292ac92da123bd8d7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16577','{24782}<>{24783} and length({24784})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','fba72cbc4f12495b9f35d0f77a9330b8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16579','{24283}<>{24284} and length({24285})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','eda29f0c8c55495ab93820caa26338bf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16584','{24338}<>{24339} and length({24340})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','e827e944568b46e284820630482317bd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16585','{24347}<>{24348} and length({24349})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','13c5f9c0f7f645cc9dde522ff20a1860');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16593','{23521}<>{23522} and length({23523})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','072bf35ea9d04c559ada5cb13d4b6802');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16624','{19406}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','bb8b2193ed4c437284d569a38f500367');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16630','{31203}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and\r\n(({31204}-{31205})<{$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"} or {31206}<1d)','{#FSNAME}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%)','9fbb4a0ceeba4c9e935f54610d5f1afb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16631','{31207}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and\r\n(({31208}-{31209})<{$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"} or {31210}<1d)','{#FSNAME}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%)','5db5f43d1c3b4b1f91bef16ec1090945');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16644','{19456}<10m','HAProxy: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','HAProxy: has been restarted (uptime < 10m)','e76d5b82b0ad421ea62cd1dc069e036b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16645','{23206}<>{23207} and length({23208})>0','HAProxy: Version has changed','','0','1','HAProxy version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','HAProxy: Version has changed (new version: {ITEM.VALUE})','db6ef8f306f64f0f81a590e4b45b370c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16646','{19459}>{$HAPROXY.RESPONSE_TIME.MAX.WARN}','HAProxy: Service response time is too high','','0','2','',NULL,'0','0','0','','0','','1','','0','HAProxy: Service response time is too high (over {$HAPROXY.RESPONSE_TIME.MAX.WARN} for 5m)','4e881047bbd54c5984922d1189567ece');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16647','{19460}=0','HAProxy: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','8d5c7940e5924b469b3e7804043ea7b6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16648','{19461}>{$HAPROXY.BACK_ERESP.MAX.WARN}','HAProxy backend {#PXNAME}: Number of responses with error is high','','0','2','Number of requests on backend, whose responses yielded an error, is more than {$HAPROXY.BACK_ERESP.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy backend {#PXNAME}: Number of responses with error is more than {$HAPROXY.BACK_ERESP.MAX.WARN} for 5m','892d6f67eeff4520aadbf4f3841f8174');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16649','{19462}>{$HAPROXY.BACK_QCUR.MAX.WARN}','HAProxy backend {#PXNAME}: Current number of requests unassigned in queue is high','','0','2','Current number of requests on backend unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy backend {#PXNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN} for 5m','89ccc4b4a55349c7869c2202881dcb2a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16650','{19463}>{$HAPROXY.BACK_QTIME.MAX.WARN}','HAProxy backend {#PXNAME}: Average time spent in queue is high','','0','2','Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_QTIME.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy backend {#PXNAME}: Average time spent in queue is more than {$HAPROXY.BACK_QTIME.MAX.WARN} for 5m','1aff4be13f0f4aee8a512d4b962215a6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16651','{19464}>{$HAPROXY.BACK_RTIME.MAX.WARN}','HAProxy backend {#PXNAME}: Average response time is high','','0','2','Average backend response time (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_RTIME.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy backend {#PXNAME}: Average response time is more than {$HAPROXY.BACK_RTIME.MAX.WARN} for 5m','e0dd27ac272a4fbf9495c09f3291db8f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16652','{23209}=5','HAProxy backend {#PXNAME}: Server is DOWN','','0','3','Backend is not available.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','51452fd94c12448fab0703e867f69fd2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16653','{19466}>{$HAPROXY.FRONT_DREQ.MAX.WARN}','HAProxy frontend {#PXNAME}: Number of requests denied is high','','0','2','Number of requests denied due to security concerns (ACL-restricted) is more than {$HAPROXY.FRONT_DREQ.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy frontend {#PXNAME}: Number of requests denied is more than {$HAPROXY.FRONT_DREQ.MAX.WARN} for 5m','269d5e491e3d41b6be5257c8a8a85efb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16654','{19467}>{$HAPROXY.FRONT_EREQ.MAX.WARN}','HAProxy frontend {#PXNAME}: Number of request errors is high','','0','2','Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy frontend {#PXNAME}: Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN} for 5m','8361fb028aed4bd9bf3356249699d424');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16655','{19468}>{$HAPROXY.FRONT_SUTIL.MAX.WARN}','HAProxy frontend {#PXNAME}: Session utilization is high','','0','2','Alerting on this metric is essential to ensure your server has sufficient capacity to handle all concurrent sessions. Unlike requests, upon reaching the session limit HAProxy will deny additional clients until resource consumption drops. Furthermore, if you find your session usage percentage to be hovering above 80%, it could be time to either modify HAProxy\'s configuration to allow more sessions, or migrate your HAProxy server to a bigger box.',NULL,'0','2','0','','0','','0','','0','HAProxy frontend {#PXNAME}: Session utilization is more than {$HAPROXY.FRONT_SUTIL.MAX.WARN}% for 5m','9af44a07b1a347979492063ee756b025');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16656','{19469}>{$HAPROXY.SERVER_ERESP.MAX.WARN}','HAProxy {#PXNAME} {#SVNAME}: Number of responses with error is high','','0','2','Number of requests on server, whose responses yielded an error, is more than {$HAPROXY.SERVER_ERESP.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy {#PXNAME} {#SVNAME}: Number of responses with error is more than {$HAPROXY.SERVER_ERESP.MAX.WARN} for 5m','5a982a97f812468eb8e7163f06f0ee77');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16657','{19470}>{$HAPROXY.SERVER_QCUR.MAX.WARN}','HAProxy {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is high','','0','2','Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN} for 5m','b88e0b4baa2e4738a161a7fc437d6e1c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16658','{19471}>{$HAPROXY.SERVER_QTIME.MAX.WARN}','HAProxy {#PXNAME} {#SVNAME}: Average time spent in queue is high','','0','2','Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_QTIME.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy {#PXNAME} {#SVNAME}: Average time spent in queue is more than {$HAPROXY.SERVER_QTIME.MAX.WARN} for 5m','abf3d9e3f6fa43d8bf722bcc58c37388');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16659','{19472}>{$HAPROXY.SERVER_RTIME.MAX.WARN}','HAProxy {#PXNAME} {#SVNAME}: Average response time is high','','0','2','Average server response time (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_RTIME.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy {#PXNAME} {#SVNAME}: Average response time is more than {$HAPROXY.SERVER_RTIME.MAX.WARN} for 5m','51ae2aca459b453cb433c5cc0f043a25');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16660','{23210}=5','HAProxy {#PXNAME} {#SVNAME}: Server is DOWN','','0','2','Server is not available.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','ec64ec00aa164ac09faf90794264907a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16661','{19474}<10m','HAProxy: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','HAProxy: has been restarted (uptime < 10m)','ff606f3c571340389562fabc9e814463');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16662','{23212}<>{23213} and length({23214})>0','HAProxy: Version has changed','','0','1','HAProxy version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','HAProxy: Version has changed (new version: {ITEM.VALUE})','c4b8346311a34cd19ebc8fbab53737fe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16665','{19479}>{$HAPROXY.BACK_ERESP.MAX.WARN}','HAProxy backend {#PXNAME}: Number of responses with error is high','','0','2','Number of requests on backend, whose responses yielded an error, is more than {$HAPROXY.BACK_ERESP.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy backend {#PXNAME}: Number of responses with error is more than {$HAPROXY.BACK_ERESP.MAX.WARN} for 5m','efe5a794bd47419398aa3aa35a177f08');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16666','{19480}>{$HAPROXY.BACK_QCUR.MAX.WARN}','HAProxy backend {#PXNAME}: Current number of requests unassigned in queue is high','','0','2','Current number of requests on backend unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy backend {#PXNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN} for 5m','be428614e0874726b63d79150813542d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16667','{19481}>{$HAPROXY.BACK_QTIME.MAX.WARN}','HAProxy backend {#PXNAME}: Average time spent in queue is high','','0','2','Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_QTIME.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy backend {#PXNAME}: Average time spent in queue is more than {$HAPROXY.BACK_QTIME.MAX.WARN} for 5m','fa8211069df846a1b2ee8afcdd52f4a0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16668','{19482}>{$HAPROXY.BACK_RTIME.MAX.WARN}','HAProxy backend {#PXNAME}: Average response time is high','','0','2','Average backend response time (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_RTIME.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy backend {#PXNAME}: Average response time is more than {$HAPROXY.BACK_RTIME.MAX.WARN} for 5m','90c0bd8c280246b7903ac90c32553fd5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16669','{23215}=5','HAProxy backend {#PXNAME}: Server is DOWN','','0','3','Backend is not available.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','5ea80b42a6be4df48f048a5aa253c923');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16670','{19484}>{$HAPROXY.FRONT_DREQ.MAX.WARN}','HAProxy frontend {#PXNAME}: Number of requests denied is high','','0','2','Number of requests denied due to security concerns (ACL-restricted) is more than {$HAPROXY.FRONT_DREQ.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy frontend {#PXNAME}: Number of requests denied is more than {$HAPROXY.FRONT_DREQ.MAX.WARN} for 5m','4d8ac22673944752979263b34521af65');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16671','{19485}>{$HAPROXY.FRONT_EREQ.MAX.WARN}','HAProxy frontend {#PXNAME}: Number of request errors is high','','0','2','Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy frontend {#PXNAME}: Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN} for 5m','c51ac95f4d4a46e1ac1df1d057197f6e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16672','{19486}>{$HAPROXY.FRONT_SUTIL.MAX.WARN}','HAProxy frontend {#PXNAME}: Session utilization is high','','0','2','Alerting on this metric is essential to ensure your server has sufficient capacity to handle all concurrent sessions. Unlike requests, upon reaching the session limit HAProxy will deny additional clients until resource consumption drops. Furthermore, if you find your session usage percentage to be hovering above 80%, it could be time to either modify HAProxy\'s configuration to allow more sessions, or migrate your HAProxy server to a bigger box.',NULL,'0','2','0','','0','','0','','0','HAProxy frontend {#PXNAME}: Session utilization is more than {$HAPROXY.FRONT_SUTIL.MAX.WARN}% for 5m','ad33db7c356342e78ee19e904c981f1f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16673','{19487}>{$HAPROXY.SERVER_ERESP.MAX.WARN}','HAProxy {#PXNAME} {#SVNAME}: Number of responses with error is high','','0','2','Number of requests on server, whose responses yielded an error, is more than {$HAPROXY.SERVER_ERESP.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy {#PXNAME} {#SVNAME}: Number of responses with error is more than {$HAPROXY.SERVER_ERESP.MAX.WARN} for 5m','bf952df23dac4b059d0219b204449830');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16674','{19488}>{$HAPROXY.SERVER_QCUR.MAX.WARN}','HAProxy {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is high','','0','2','Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN} for 5m','24e803eab76244d38ff90f2fce396b7f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16675','{19489}>{$HAPROXY.SERVER_QTIME.MAX.WARN}','HAProxy {#PXNAME} {#SVNAME}: Average time spent in queue is high','','0','2','Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_QTIME.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy {#PXNAME} {#SVNAME}: Average time spent in queue is more than {$HAPROXY.SERVER_QTIME.MAX.WARN} for 5m','f6d92dc0d2334ca4a7a4c0c81f60c44c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16676','{19490}>{$HAPROXY.SERVER_RTIME.MAX.WARN}','HAProxy {#PXNAME} {#SVNAME}: Average response time is high','','0','2','Average server response time (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_RTIME.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy {#PXNAME} {#SVNAME}: Average response time is more than {$HAPROXY.SERVER_RTIME.MAX.WARN} for 5m','5a0444417ebf47cab0218e8407f04354');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16677','{23216}=5','HAProxy {#PXNAME} {#SVNAME}: Server is DOWN','','0','2','Server is not available.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','ccf6dbe8970f4f9f9223027e676aa57e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16678','{19492}=0 or\r\n {19493}=1','Nginx: Failed to fetch stub status page','','0','2','Zabbix has not received data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','Nginx: Failed to fetch stub status page (or no data for 30m)','a497b80eb03f469c9552881b498003b2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16679','{19494}=0 or\r\n {19495}=1','Nginx: Failed to fetch stub status page','','0','2','Zabbix has not received data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','Nginx: Failed to fetch stub status page (or no data for 30m)','78e0a6322a1941469a0e108a9367c420');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16681','{19497}/{19498}*100>{$REDIS.CLIENTS.PRC.MAX.WARN}','Redis: Total number of connected clients is too high','','0','2','When the number of clients reaches the value of the "maxclients" parameter, new connections will be rejected.\r\n\r\nhttps://redis.io/topics/clients#maximum-number-of-clients',NULL,'0','0','0','','0','','0','','0','Redis: Total number of connected clients is too high (over {$REDIS.CLIENTS.PRC.MAX.WARN}% in 5m)','65e4652dbebe47c4b46e47bb8a17aac6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16682','{23504}<>{23505} and length({23506})>0','Redis: Configuration has changed','','0','1','Redis configuration has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Redis: Version has changed (new version: {ITEM.VALUE})','819b379b51c34616820f86d21c703b27');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16683','{19501}=1','Redis: Failed to fetch info data','','0','2','Zabbix has not received data for items for the last 30 minutes',NULL,'0','0','0','','0','','1','','0','Redis: Failed to fetch info data (or no data for 30m)','0a5176877ba24df8b5d38c8cc544f0a8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16684','{19502}>{$REDIS.MEM.FRAG_RATIO.MAX.WARN}','Redis: Memory fragmentation ratio is too high','','0','2','This ratio is an indication of memory mapping efficiency:\r\n — Value over 1.0 indicate that memory fragmentation is very likely. Consider restarting the Redis server so the operating system can recover fragmented memory, especially with a ratio over 1.5.\r\n — Value under 1.0 indicate that Redis likely has insufficient memory available. Consider optimizing memory usage or adding more RAM.\r\n\r\nNote: If your peak memory usage is much higher than your current memory usage, the memory fragmentation ratio may be unreliable.\r\n\r\nhttps://redis.io/topics/memory-optimization',NULL,'0','0','0','','0','','0','','0','Redis: Memory fragmentation ratio is too high (over {$REDIS.MEM.FRAG_RATIO.MAX.WARN} in 15m)','629531ff1ebc4bdbb1f277848c436230');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16685','{19503}=0','Redis: Last AOF write operation failed','','0','2','Detailed information about persistence: https://redis.io/topics/persistence',NULL,'0','0','0','','0','','0','','0','','324e0e8fac514ba99d67aea7eb0ddf7c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16686','{19504}=0','Redis: Last RDB save operation failed','','0','2','Detailed information about persistence: https://redis.io/topics/persistence',NULL,'0','0','0','','0','','0','','0','','44e427ae3ce7419dbac3059be11e31ef');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16687','{19505}=0','Redis: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','62353f9ed6204b70ba270827c3922244');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16688','{23507}<>{23508}','Redis: Number of slaves has changed','','0','1','Redis number of slaves has changed. Ack to close.',NULL,'0','0','2','','0','','1','','0','','6d213088211a4bb38ff97b59113dccd9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16689','{23509}<>{23510} and length({23511})>0','Redis: Replication role has changed','','0','2','Redis replication role has changed. Ack to close.',NULL,'0','0','2','','0','','1','','0','Redis: Replication role has changed (new role: {ITEM.VALUE})','d24f7aabefb345e791b3bb276f30ac8c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16690','{23512}<>{23513} and length({23514})>0','Redis: Version has changed','','0','1','Redis version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Redis: Version has changed (new version: {ITEM.VALUE})','6e307546b26344deb83f2295c90e9a33');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16691','{19511}<10m','Redis: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','Redis: has been restarted (uptime < 10m)','4961e91eed2a4e83899d135315748b0e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16692','{19512}>{$REDIS.SLOWLOG.COUNT.MAX.WARN}','Redis: Too many entries in the slowlog','','0','1','',NULL,'0','0','0','','0','','0','','0','Redis: Too many entries in the slowlog (over {$REDIS.SLOWLOG.COUNT.MAX.WARN} per second in 5m)','37fb0255e49c42c8913e56fe4aaa1d14');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16693','{19513}>0','Redis: Connections are rejected','','0','4','The number of connections has reached the value of "maxclients".\r\n\r\nhttps://redis.io/topics/clients',NULL,'0','0','0','','0','','0','','0','','5bf0680529ce496b8fe419e2732c69d1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16694','{19514}=0','Redis: Process is not running','','0','4','',NULL,'0','2','0','','0','','0','','0','','590bd23c52b74dd7951dcf74903ac2ed');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16696','{19517}>{$REDIS.REPL.LAG.MAX.WARN}','Redis: Replication lag with master is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','Redis: Replication lag with master is too high (over {$REDIS.REPL.LAG.MAX.WARN} in 5m)','292f477d970d4a138d2d1b2c45d965dd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16710','{19548} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19549} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}','{#DEVNAME}: Disk read/write request responses are too high','','0','2','This trigger might indicate disk {#DEVNAME} saturation.',NULL,'0','2','0','','0','','1','','0','{#DEVNAME}: Disk read/write request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} ms for 15m or write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} ms for 15m)','412381f71bba441b955898839f81d51c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16713','{19552}<>0','"{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running','','0','3','The service has a state other than "Running" for the last three times.',NULL,'0','2','0','','0','','0','','0','"{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME})','9fab20eab61d48c09682fe5c142cc917');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16719','{19558}>{$MYSQL.ABORTED_CONN.MAX.WARN}','MySQL: Server has aborted connections','','0','3','The number of failed attempts to connect to the MySQL server is more than {$MYSQL.ABORTED_CONN.MAX.WARN} in the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m)','e51c9ee3061c4e3889be1666afe6959d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16721','{19560}>0','MySQL: Refused connections','','0','3','Number of refused connections due to the max_connections limit being reached.',NULL,'0','0','0','','0','','0','','0','MySQL: Refused connections (max_connections limit reached)','2ff2d0f399df4cb08b7196d3a4690567');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16723','{19562}=0','MySQL: Service is down','','0','4','',NULL,'0','0','0','','0','','0','','0','','e78f07e3e507461f8fe33a31b1bc4eb9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16724','{19563}>{$MYSQL.SLOW_QUERIES.MAX.WARN}','MySQL: Server has slow queries','','0','2','The number of slow queries is more than {$MYSQL.SLOW_QUERIES.MAX.WARN} in the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m)','113509b7a7b54a108c1c63346a52bbf2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16725','{19564}<10m','MySQL: Service has been restarted','','0','1','MySQL uptime is less than 10 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Service has been restarted (uptime < 10m)','f02f51c764934cf394c5ad3f9c4e70d2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16726','{23455}<>{23456} and length({23457})>0','MySQL: Version has changed','','0','1','MySQL version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','MySQL: Version has changed (new version value received: {ITEM.VALUE})','7eab3a7337904ad1b2061d209371543b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16727','{19567}>{$MYSQL.REPL_LAG.MAX.WARN}','MySQL: Replication lag is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m)','a5c91da088414d279f5ea3cd59093ce9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16728','{19568}=1','MySQL: The slave I/O thread is not running','','0','3','Whether the I/O thread for reading the master\'s binary log is running.',NULL,'0','2','0','','0','','0','','0','','4c8ca45f26254d9a9a1c9248f1fa1537');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16729','{19569}=1','MySQL: The slave I/O thread is not connected to a replication master','','0','2','',NULL,'0','2','0','','0','','0','','0','','8ee45932311443cb906306b1d2c99b19');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16730','{19570}=1','MySQL: The SQL thread is not running','','0','2','Whether the SQL thread for executing events in the relay log is running.',NULL,'0','2','0','','0','','0','','0','','bd0d20c05e3b46b6a7c341e5d122208b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16732','{19572}=0','MySQL: Service is down','','0','4','',NULL,'0','0','0','','0','','0','','0','','e664e41d7b4f4336a3e5ef4720f6ee41');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16733','{23461}<>{23462} and length({23463})>0','MySQL: Version has changed','','0','1','MySQL version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','MySQL: Version has changed (new version value received: {ITEM.VALUE})','4090a1d3d82d47ac85964baeae121b2b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16734','{19575}>{$MYSQL.ABORTED_CONN.MAX.WARN}','MySQL: Server has aborted connections','','0','3','The number of failed attempts to connect to the MySQL server is more than {$MYSQL.ABORTED_CONN.MAX.WARN} in the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m)','5934cb80f9c3442d978c63780b1ebc9f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16736','{19577}>0','MySQL: Refused connections','','0','3','Number of refused connections due to the max_connections limit being reached.',NULL,'0','0','0','','0','','0','','0','MySQL: Refused connections (max_connections limit reached)','ac781c951ac0453a9c1008b2cf801518');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16737','{19578}>{$MYSQL.SLOW_QUERIES.MAX.WARN}','MySQL: Server has slow queries','','0','2','The number of slow queries is more than {$MYSQL.SLOW_QUERIES.MAX.WARN} in the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m)','b981c7a2ffed4eddbc9f1d6913c2e4b0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16738','{19579}<10m','MySQL: Service has been restarted','','0','1','MySQL uptime is less than 10 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Service has been restarted (uptime < 10m)','cd8f5996bd85434998595e041d6b0908');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16739','{19580}>{$MYSQL.REPL_LAG.MAX.WARN}','MySQL: Replication lag is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m)','f2188a73bbf34ffcb95b3e11e2824feb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16740','{19581}=1','MySQL: The slave I/O thread is not running','','0','3','Whether the I/O thread for reading the master\'s binary log is running.',NULL,'0','2','0','','0','','0','','0','','ba08061a61df4bbb8bac516ecec91b70');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16741','{19582}=1','MySQL: The slave I/O thread is not connected to a replication master','','0','2','',NULL,'0','2','0','','0','','0','','0','','6f216036f4f14ae7adc8c70126bb315a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16742','{19583}=1','MySQL: The SQL thread is not running','','0','2','Whether the SQL thread for executing events in the relay log is running.',NULL,'0','2','0','','0','','0','','0','','39d229e5e3f34e8b828b4a0e2eaa0026');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16743','{19584}=1','Docker: Failed to fetch info data','','0','2','Zabbix has not received data for items for the last 30 minutes',NULL,'0','0','0','','0','','1','','0','Docker: Failed to fetch info data (or no data for 30m)','2c62bb4d95684e6984447027d117ff4d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16744','{19585}=0','Docker: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','a4f00b4d25b54acfa61475c94651d8a5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16745','{23191}<>{23192} and length({23193})>0','Docker: Version has changed','','0','1','Docker version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Docker: Version has changed (new version: {ITEM.VALUE})','f5f4fb1337264ac2bec6b6505dfe180b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16746','{19588}>0 and {19589}=0','Container {#NAME}: Container has been stopped with error code','','0','3','',NULL,'0','2','0','','0','','1','Exit code: {ITEM.LASTVALUE1}','0','','db675ff608a14b12bcc02e6b500c557f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16747','{23194}<>{23195} and length({23196})>0','Container {#NAME}: An error has occurred in the container','','0','2','Container {#NAME} has an error. Ack to close.',NULL,'0','2','0','','0','','1','','0','Container {#NAME}: Version has changed (new version: {ITEM.VALUE})','ee70b91196494eccb54772b22051a456');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16748','{19592}/{19593}*100>{$MEMCACHED.MEM.PUSED.MAX.WARN}','Memcached: Memory usage is too high','','0','2','',NULL,'0','0','0','','0','','0','','0','Memcached: Memory usage is too high (over {$MEMCACHED.MEM.PUSED.MAX.WARN} in 5m)','e6129a8ace1945fa9020c6c0008cb19c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16749','{19594}/{19595}*100>{$MEMCACHED.CONN.PRC.MAX.WARN}','Memcached: Total number of connected clients is too high','','0','2','When the number of connections reaches the value of the "max_connections" parameter, new connections will be rejected.',NULL,'0','0','0','','0','','0','','0','Memcached: Total number of connected clients is too high (over {$MEMCACHED.CONN.PRC.MAX.WARN}% in 5m)','61021d383c9f41b990292bab2738356d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16750','{19596}>{$MEMCACHED.CONN.QUEUED.MAX.WARN}','Memcached: Too many queued connections','','0','2','The max number of connections is reached and a new connection had to wait in the queue as a result.',NULL,'0','0','0','','0','','0','','0','Memcached: Too many queued connections (over {$MEMCACHED.CONN.QUEUED.MAX.WARN} in 5m)','922a59008cd94e0688db8528be296f89');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16751','{19597}>{$MEMCACHED.CONN.THROTTLED.MAX.WARN}','Memcached: Too many throttled connections','','0','2','Number of times a client connection was throttled is too high.\r\nWhen sending GETs in batch mode and the connection contains too many requests (limited by -R parameter) the connection might be throttled to prevent starvation.',NULL,'0','0','0','','0','','0','','0','Memcached: Too many throttled connections (over {$MEMCACHED.CONN.THROTTLED.MAX.WARN} in 5m)','33c9b918d21343dea3bcd2c3e3505fc5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16752','{19598}=1','Memcached: Failed to fetch info data','','0','2','Zabbix has not received data for items for the last 30 minutes',NULL,'0','0','0','','0','','1','','0','Memcached: Failed to fetch info data (or no data for 30m)','a30bb4344e714b7f984e86046797b9b1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16753','{19599}=0','Memcached: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','c6184e4c3cc54e199244dc8efb3cacf8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16754','{19600}<10m','Memcached: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','Memcached: has been restarted (uptime < 10m)','c53a2d7b861b41458976bfa03ab1a105');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16755','{23228}<>{23229} and length({23230})>0','Memcached: Version has changed','','0','1','Memcached version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Memcached: Version has changed (new version: {ITEM.VALUE})','086e757b4a2048eabd5e91b4a0ccc07b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16756','{19603}>{$MYSQL.ABORTED_CONN.MAX.WARN}','MySQL: Server has aborted connections','','0','3','The number of failed attempts to connect to the MySQL server is more than {$MYSQL.ABORTED_CONN.MAX.WARN} in the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m)','0f984c4458ae4a7f9388b1edb42090bf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16758','{19605}>0','MySQL: Refused connections','','0','3','Number of refused connections due to the max_connections limit being reached.',NULL,'0','0','0','','0','','0','','0','MySQL: Refused connections (max_connections limit reached)','15cd0177e955459ba0862425755583a0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16759','{19606}=0','MySQL: Service is down','','0','4','',NULL,'0','0','0','','0','','0','','0','','907a105ecee24eef9dd89598a42b6974');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16760','{19607}>{$MYSQL.SLOW_QUERIES.MAX.WARN}','MySQL: Server has slow queries','','0','2','The number of slow queries is more than {$MYSQL.SLOW_QUERIES.MAX.WARN} in the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m)','8ffcb17b0a644c5e8a2842b34d5713a8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16761','{19608}<10m','MySQL: Service has been restarted','','0','1','MySQL uptime is less than 10 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Service has been restarted (uptime < 10m)','db5159889cb94f27840e6f4974ee5c0e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16762','{23458}<>{23459} and length({23460})>0','MySQL: Version has changed','','0','1','MySQL version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','MySQL: Version has changed (new version value received: {ITEM.VALUE})','e22c2e2213d74df98d344a95c8a96b6d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16763','{19611}>{$MYSQL.REPL_LAG.MAX.WARN}','MySQL: Replication lag is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m)','373e215000a64e05b0379f186141067f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16764','{19612}=1','MySQL: The slave I/O thread is not running','','0','3','Whether the I/O thread for reading the master\'s binary log is running.',NULL,'0','2','0','','0','','0','','0','','369f7ade45cd4ca39f5aa47d638e5e00');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16765','{19613}=1','MySQL: The slave I/O thread is not connected to a replication master','','0','2','',NULL,'0','2','0','','0','','0','','0','','efe46a25a1fd48e1a7504a9b06c26aee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16766','{19614}=1','MySQL: The SQL thread is not running','','0','2','Whether the SQL thread for executing events in the relay log is running.',NULL,'0','2','0','','0','','0','','0','','9099f769af4c4008a69098f9e9f63673');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16767','{24445}<>{24446}','IPMI: {#SENSOR_ID} value has changed','','0','1','The trigger is informing about changes in a state of the discrete IPMI sensor. A problem generated by this trigger can be manually closed.',NULL,'0','2','0','','0','','1','','0','','efe107571d704895bbb43c95407e6689');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16768','{19616}<{#SENSOR_LO_WARN}','IPMI: {#SENSOR_ID} value is below non-critical low','','0','2','The trigger is informing that a value less than the lower non-critical threshold has been reached.',NULL,'0','2','0','','0','','0','','0','IPMI: {#SENSOR_ID} value is below non-critical low (less than {#SENSOR_LO_WARN} for 5m)','7b712e7b11a34635948517467f77ad9d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16769','{19617}<{#SENSOR_LO_CRIT}','IPMI: {#SENSOR_ID} value is below critical low','','0','4','The trigger is informing that a value less than the lower critical threshold has been reached.',NULL,'0','2','0','','0','','0','','0','IPMI: {#SENSOR_ID} value is below critical low (less than {#SENSOR_LO_CRIT} for 5m)','adbb7e20a46d42329e4744548aa9d5f6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16770','{19618}<{#SENSOR_LO_DISAST}','IPMI: {#SENSOR_ID} value is below non-recoverable low','','0','5','The trigger is informing that a value less than the lower non-recoverable threshold has been reached.',NULL,'0','2','0','','0','','0','','0','IPMI: {#SENSOR_ID} value is below non-recoverable low (less than {#SENSOR_LO_DISAST} for 5m)','b078ee6b820f44f2871c2e3fcd0ce4cf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16771','{19619}>{#SENSOR_HI_WARN}','IPMI: {#SENSOR_ID} value is above non-critical high','','0','2','The trigger is informing that a value higher than the upper non-critical threshold has been reached.',NULL,'0','2','0','','0','','0','','0','IPMI: {#SENSOR_ID} value is above non-critical high (greater than {#SENSOR_HI_WARN} for 5m)','0fc9d9baa3dd4d3db841e2153b6c39b2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16772','{19620}>{#SENSOR_HI_CRIT}','IPMI: {#SENSOR_ID} value is above critical high','','0','4','The trigger is informing that a value higher than the upper critical threshold has been reached.',NULL,'0','2','0','','0','','0','','0','IPMI: {#SENSOR_ID} value is above critical high (greater than {#SENSOR_HI_CRIT} for 5m)','e9c37c1847d64920b80a20cc764b6c81');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16773','{19621}>{#SENSOR_HI_DISAST}','IPMI: {#SENSOR_ID} value is above non-recoverable high','','0','5','The trigger is informing that a value higher than the upper non-recoverable threshold has been reached.',NULL,'0','2','0','','0','','0','','0','IPMI: {#SENSOR_ID} value is above non-recoverable high (greater than {#SENSOR_HI_DISAST} for 5m)','2c3dbc3f68db44f1924682a8241e0086');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16774','({19622}-{19623})/({19624}-1)>{19623}','ES: Cluster does not have enough space for resharding','','0','4','There is not enough disk space for index resharding.',NULL,'0','0','0','','0','','0','','0','','a2f33888d2774325b7955b633a7aae81');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16775','{19625}>0','ES: Cluster has the initializing shards','','0','3','The cluster has the initializing shards longer than 10 minutes.',NULL,'0','0','0','','0','','0','','0','','ee59684bb2044540ad0306a5b6deb408');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16776','{19626}<0','ES: The number of nodes within the cluster has decreased','','0','1','',NULL,'0','0','0','','0','','1','','0','','5be4cb40e72442aca18ea014adbead23');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16777','{19627}>0','ES: The number of nodes within the cluster has increased','','0','1','',NULL,'0','0','0','','0','','1','','0','','2fba2b29425b4ff9a4008db9bde49d7f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16778','{19628}=1','ES: Health is YELLOW','','0','3','All primary shards are assigned, but one or more replica shards are unassigned.\r\nIf a node in the cluster fails, some data could be unavailable until that node is repaired.',NULL,'0','0','0','','0','','0','','0','','99f36c2aa5d64248b96d1fc97c3b3065');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16779','{19629}=2','ES: Health is RED','','0','4','One or more primary shards are unassigned, so some data is unavailable.\r\nThis can occur briefly during cluster startup as primary shards are assigned.',NULL,'0','0','0','','0','','0','','0','','f3bb7e96f6074063bad76521e1dce24f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16780','{19630}=255','ES: Health is UNKNOWN','','0','4','The health status of the cluster is unknown or cannot be obtained.',NULL,'0','0','0','','0','','0','','0','','33a6ef13f7b240768841919482709411');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16781','{19631}>0','ES: Cluster has the unassigned shards','','0','3','The cluster has the unassigned shards longer than 10 minutes.',NULL,'0','0','0','','0','','0','','0','','35bdd54f27a64009b96a06a12508f99c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16782','{19632}=2','ES: Cluster has only two master nodes','','0','5','The cluster has only two nodes with a master role and will be unavailable if one of them breaks.',NULL,'0','0','0','','0','','0','','0','','8011883baef04aa0bed343d1bb0df288');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16783','{19633}<10m','ES: Cluster has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ES: Cluster has been restarted (uptime < 10m)','d28aa18c85cb4f48a9e7b8ba55d65400');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16784','{19634}>{$ELASTICSEARCH.RESPONSE_TIME.MAX.WARN}','ES: Service response time is too high','','0','2','The performance of the TCP service is very low.',NULL,'0','0','0','','0','','1','','0','ES: Service response time is too high (over {$ELASTICSEARCH.RESPONSE_TIME.MAX.WARN} for 5m)','2a3f3b96e5dd47de998ccc17f109e149');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16785','{19635}=0','ES: Service is down','','0','3','The service is unavailable or does not accept TCP connections.',NULL,'0','0','0','','0','','1','','0','','b4d76f68ce94492f96bbfbb778d1f144');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16786','{19636}>{$ELASTICSEARCH.FLUSH_LATENCY.MAX.WARN}','ES {#ES.NODE}: Flush latency is too high','','0','2','If you see this metric increasing steadily, it may indicate a problem with slow disks; this problem may escalate\r\nand eventually prevent you from being able to add new information to your index.',NULL,'0','2','0','','0','','0','','0','ES {#ES.NODE}: Flush latency is too high (over {$ELASTICSEARCH.FLUSH_LATENCY.MAX.WARN}ms for 5m)','6c2ea291374b4de1ab06ddeccba635b1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16787','{19637}>{$ELASTICSEARCH.INDEXING_LATENCY.MAX.WARN}','ES {#ES.NODE}: Indexing latency is too high','','0','2','If the latency is increasing, it may indicate that you are indexing too many documents at the same time (Elasticsearch\'s documentation\r\nrecommends starting with a bulk indexing size of 5 to 15 megabytes and increasing slowly from there).',NULL,'0','2','0','','0','','0','','0','ES {#ES.NODE}: Indexing latency is too high (over {$ELASTICSEARCH.INDEXING_LATENCY.MAX.WARN}ms for 5m)','2755b3f8811a45fba7c48347707ceaf8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16788','{19638}>{$ELASTICSEARCH.FETCH_LATENCY.MAX.WARN}','ES {#ES.NODE}: Fetch latency is too high','','0','2','The fetch phase should typically take much less time than the query phase. If you notice this metric consistently increasing,\r\nthis could indicate a problem with slow disks, enriching of documents (highlighting the relevant text in search results, etc.),\r\nor requesting too many results.',NULL,'0','2','0','','0','','0','','0','ES {#ES.NODE}: Fetch latency is too high (over {$ELASTICSEARCH.FETCH_LATENCY.MAX.WARN}ms for 5m)','6edd6851f31842659a57e29c444a9b32');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16789','{19639}>{$ELASTICSEARCH.QUERY_LATENCY.MAX.WARN}','ES {#ES.NODE}: Query latency is too high','','0','2','If latency exceeds a threshold, look for potential resource bottlenecks, or investigate whether you need to optimize your queries.',NULL,'0','2','0','','0','','0','','0','ES {#ES.NODE}: Query latency is too high (over {$ELASTICSEARCH.QUERY_LATENCY.MAX.WARN}ms for 5m)','1892000290c843e887d128bf9f97c869');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16790','{19640}>{$ELASTICSEARCH.HEAP_USED.MAX.WARN}','ES {#ES.NODE}: Percent of JVM heap in use is high','','0','2','This indicates that the rate of garbage collection isn\'t keeping up with the rate of garbage creation.\r\nTo address this problem, you can either increase your heap size (as long as it remains below the recommended\r\nguidelines stated above), or scale out the cluster by adding more nodes.',NULL,'0','2','0','','0','','0','','0','ES {#ES.NODE}: Percent of JVM heap in use is high (over {$ELASTICSEARCH.HEAP_USED.MAX.WARN}% for 1h)','bbba4a577a2c4328b2392fdeb1ff9bb4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16791','{19641}>{$ELASTICSEARCH.HEAP_USED.MAX.CRIT}','ES {#ES.NODE}: Percent of JVM heap in use is critical','','0','4','This indicates that the rate of garbage collection isn\'t keeping up with the rate of garbage creation.\r\nTo address this problem, you can either increase your heap size (as long as it remains below the recommended\r\nguidelines stated above), or scale out the cluster by adding more nodes.',NULL,'0','2','0','','0','','0','','0','ES {#ES.NODE}: Percent of JVM heap in use is critical (over {$ELASTICSEARCH.HEAP_USED.MAX.CRIT}% for 1h)','9d199607ddda48eebe9f93cae6d6575d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16792','{19642}<10m','ES {#ES.NODE}: has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','ES {#ES.NODE}: has been restarted (uptime < 10m)','580ae8aadf994fbcb34c9c8ad7cd5fad');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16793','{19643}>0','ES {#ES.NODE}: Refresh thread pool executor has the rejected tasks','','0','2','The number of tasks rejected by the refresh thread pool executor is over 0 for 5m.',NULL,'0','2','0','','0','','0','','0','ES {#ES.NODE}: Refresh thread pool executor has the rejected tasks (for 5m)','b416941e8e0141c6af27c62f052ac860');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16794','{19644}>0','ES {#ES.NODE}: Search thread pool executor has the rejected tasks','','0','2','The number of tasks rejected by the search thread pool executor is over 0 for 5m.',NULL,'0','2','0','','0','','0','','0','ES {#ES.NODE}: Search thread pool executor has the rejected tasks (for 5m)','5cfd3f9924614a4283f1255752b672f0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16795','{19645}>0','ES {#ES.NODE}: Write thread pool executor has the rejected tasks','','0','2','The number of tasks rejected by the write thread pool executor is over 0 for 5m.',NULL,'0','2','0','','0','','0','','0','ES {#ES.NODE}: Write thread pool executor has the rejected tasks (for 5m)','1f5e30a34bb84cef831670974ec7c3e8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16809','{19659}>{$HAPROXY.RESPONSE_TIME.MAX.WARN}','HAProxy: Service response time is too high','','0','2','',NULL,'0','0','0','','0','','1','','0','HAProxy: Service response time is too high (over {$HAPROXY.RESPONSE_TIME.MAX.WARN} for 5m)','1fed5fffc6414e0babe362c0ad742e43');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16810','{19660}=0','HAProxy: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','b346943ac4d04a96bcef42f3c43fc555');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16824','{19674}>{$CLICKHOUSE.DELAYED.FILES.DISTRIBUTED.COUNT.MAX.WARN}','ClickHouse: Too many distributed files to insert','','0','2','"Clickhouse servers and in config.xml\r\nhttps://clickhouse.tech/docs/en/operations/table_engines/distributed/"',NULL,'0','0','0','','0','','1','','0','ClickHouse: Too many distributed files to insert (over {$CLICKHOUSE.DELAYED.FILES.DISTRIBUTED.COUNT.MAX.WARN} for 5 min)','4ecadb993aa74126a807df3af4b892ed');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16825','{19675}>{$CLICKHOUSE.DELAYED.INSERTS.MAX.WARN}','ClickHouse: Too many throttled insert queries','','0','2','Clickhouse have INSERT queries that are throttled due to high number of active data parts for partition in a MergeTree, please decrease INSERT frequency',NULL,'0','0','0','','0','','1','','0','ClickHouse: Too many throttled insert queries (over {$CLICKHOUSE.DELAYED.INSERTS.MAX.WARN) for 5 min)','164dc9841cdd4b77a650792cf1bac701');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16826','{19676}>{$CLICKHOUSE.PARTS.PER.PARTITION.WARN} * 0.9','ClickHouse: Too many MergeTree parts','','0','2','Descease INSERT queries frequency.\r\nClickhouse MergeTree table engine split each INSERT query to partitions (PARTITION BY expression)\r\nand add one or more PARTS per INSERT inside each partition,\r\nafter that background merge process run, and when you have too much unmerged parts inside partition,\r\nSELECT queries performance can significate degrade, so clickhouse try delay insert, or abort it.',NULL,'0','0','0','','0','','1','','0','ClickHouse: Too many MergeTree parts (over 90% of {$CLICKHOUSE.PARTS.PER.PARTITION.WARN})','21e6d3c6047145c59cbd00032699ee99');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16827','{19677}>{$CLICKHOUSE.NETWORK.ERRORS.MAX.WARN}','ClickHouse: Too many network errors','','0','2','Number of errors (timeouts and connection failures) during query execution, background pool tasks and DNS cache update is too high.',NULL,'0','0','0','','0','','0','','0','ClickHouse: Too many network errors (over {$CLICKHOUSE.NETWORK.ERRORS.MAX.WARN} in 5m)','d49b9e8978bd416f81ea01b935879d81');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16829','{19679}>{$CLICKHOUSE.QUERY_TIME.MAX.WARN}','ClickHouse: There are queries running is long','','0','3','',NULL,'0','0','0','','0','','1','','0','ClickHouse: There are queries running more than {$CLICKHOUSE.QUERY_TIME.MAX.WARN} seconds','2410e7b63c8340b6b08ec729d7093be6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16830','{19680}>{$CLICKHOUSE.REPLICA.MAX.WARN}','ClickHouse: Replication lag is too high','','0','2','When replica have too much lag, it can be skipped from Distributed SELECT Queries without errors\r\nand you will have wrong query results.',NULL,'0','0','0','','0','','1','','0','ClickHouse: Replication lag is too high (over {$CLICKHOUSE.REPLICA.MAX.WARN} sec for 5min)','fc47a407b15744e79b70088ec249951a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16831','{23389}<>{23390} and length({23391})>0','ClickHouse: Configuration has been changed','','0','1','ClickHouse configuration has been changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','ClickHouse: Version has changed (new version: {ITEM.VALUE})','dfd9500636824ebf9d51d93650d62613');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16832','{19683}<10m','ClickHouse: has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ClickHouse: has been restarted (uptime < 10m)','e1316d3a83174cc49ab96ad90c46150b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16833','{19684}=1','ClickHouse: Failed to fetch info data','','0','2','Zabbix has not received data for items for the last 30 minutes',NULL,'0','0','0','','0','','1','','0','ClickHouse: Failed to fetch info data (or no data for 30m)','975cebc1b4324f83b5a8853fd666a179');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16834','{23392}<>{23393} and length({23394})>0','ClickHouse: Version has changed','','0','1','ClickHouse version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','ClickHouse: Version has changed (new version: {ITEM.VALUE})','244dcf8dc8584e1686585160c261ef85');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16835','{19687}>1','ClickHouse: Too many ZooKeeper sessions opened','','0','2','Number of sessions (connections) to ZooKeeper.\r\nShould be no more than one, because using more than one connection to ZooKeeper may lead to bugs due to lack of linearizability (stale reads) that ZooKeeper consistency model allows.',NULL,'0','0','0','','0','','0','','0','','655622aa6c5c48c8b38d5a519602ef05');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16836','{19688} < {19689}','ClickHouse: {#DB}.{#TABLE}: Number of active replicas less than number of total replicas','','0','2','',NULL,'0','2','0','','0','','0','','0','','f46f1b8d75c54129b6e2ff9ede2501b5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16837','{19690}=1','ClickHouse: {#DB}.{#TABLE} Replica is readonly','','0','2','This mode is turned on if the config doesn\'t have sections with ZooKeeper, if an unknown error occurred when re-initializing sessions in ZooKeeper, and during session re-initialization in ZooKeeper.',NULL,'0','2','0','','0','','0','','0','','7cfd2342d3654407a941cb56fde5c6bf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16838','{19691}=1','ClickHouse: {#DB}.{#TABLE} Replica session is expired','','0','2','This mode is turned on if the config doesn\'t have sections with ZooKeeper, if an unknown error occurred when re-initializing sessions in ZooKeeper, and during session re-initialization in ZooKeeper.',NULL,'0','2','0','','0','','0','','0','','765475cc0be84ce1b85d1f026d08c326');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16839','{19692} > {$CLICKHOUSE.LOG_POSITION.DIFF.MAX.WARN}','ClickHouse: {#DB}.{#TABLE}: Difference between log_max_index and log_pointer is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','ClickHouse: {#DB}.{#TABLE}: Difference between log_max_index and log_pointer is too high (More than {$CLICKHOUSE.LOG_POSITION.DIFF.MAX.WARN} for 5m)','0b06b448c0ad433c94c2a3788ca53e1a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16840','{19693}>{$CLICKHOUSE.QUEUE.SIZE.MAX.WARN:"{#TABLE}"}','ClickHouse: {#DB}.{#TABLE}: Too many operations in queue','','0','2','',NULL,'0','2','0','','0','','0','','0','ClickHouse: {#DB}.{#TABLE}: Too many operations in queue (over {$CLICKHOUSE.QUEUE.SIZE.MAX.WARN} for 5m)','6fe0a15168db4abfa1cd2a2ee45d62ad');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16841','{$IFCONTROL:"{#IFNAME}"}=1 and {23632}=2 and ({23633}<>{23634})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{23632}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','35d62eb5323141a3a3f3afc4c9250243');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16863','{$IFCONTROL:"{#IFNAME}"}=1 and {23620}=2 and ({23621}<>{23622})','Interface {#IFDESCR}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{23620}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','94097ac2b53748aea45fed2f3014c1b6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16866','{$IFCONTROL:"{#IFNAME}"}=1 and {23695}=2 and ({23696}<>{23697})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{23695}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','efe4c7dbbd804e41bc1bcd0630afcf09');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16871','{19756}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{19757}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','2bb01154728b47c69514f7399f3bfabc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16883','{$IFCONTROL:"{#IFNAME}"}=1 and {24344}=2 and ({24345}<>{24346})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24344}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','e35b59dc09754451a721793831edc3d4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16886','{19792}<10m','Apache: has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Apache: has been restarted (uptime < 10m)','7872d9665c234f45941ca26206e0255c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16887','{23176}<>{23177} and length({23178})>0','Apache: Version has changed','','0','1','Apache version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Apache: Version has changed (new version: {ITEM.VALUE})','5124b17918f545758ca5c936332f51cd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16888','{19795}=1','Apache: Failed to fetch status page','','0','2','Zabbix has not received data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','Apache: Failed to fetch status page (or no data for 30m)','0166ec63913e4bbea25c54b458b3213a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16889','{19796}/{19797}*100>{$ETCD.OPEN.FDS.MAX.WARN}','Etcd: Current number of open files is too high','','0','2','Heavy file descriptor usage (i.e., near the process\'s file descriptor limit) indicates a potential file descriptor exhaustion issue.\r\nIf the file descriptors are exhausted, etcd may panic because it cannot create new WAL files.',NULL,'0','0','0','','0','','0','','0','Etcd: Current number of open files is too high (over {$ETCD.OPEN.FDS.MAX.WARN}% for 5m)','c45583928d204c04ad8884115e1e35c5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16890','{23197}<>{23198} and length({23199})>0','Etcd: Cluster version has changed','','0','1','Etcd version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Etcd: Cluster version has changed (new version: {ITEM.VALUE})','7c87424c4fb34c56bc9b976755b4ec02');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16891','{19800}=0','Etcd: Member has no leader','','0','3','If a member does not have a leader, it is totally unavailable.',NULL,'0','0','0','','0','','0','','0','','20165719d521453bb239d818ac57805c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16892','{19801}=0','Etcd: Node healthcheck failed','','0','3','https://etcd.io/docs/v3.4.0/op-guide/monitoring/#health-check',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6acda7bdc9df4a4ab5b7cca76c6369f0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16893','{19802}>{$ETCD.HTTP.FAIL.MAX.WARN}','Etcd: Too many HTTP requests failures','','0','2','Too many requests failed on etcd instance with 5xx HTTP code.',NULL,'0','0','0','','0','','0','','0','Etcd: Too many HTTP requests failures (over {$ETCD.HTTP.FAIL.MAX.WARN} for 5m)','0302957e0f6b43389546e1cfb958ed9c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16894','{19803}=1','Etcd: Failed to fetch info data','','0','2','Zabbix has not received data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','Etcd: Failed to fetch info data (or no data for 30m)','44d66eb1a332418daf4c3a1110db5458');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16895','({19804}-{22977})>{$ETCD.LEADER.CHANGES.MAX.WARN}','Etcd: Instance has seen too many leader changes','','0','2','Rapid leadership changes impact the performance of etcd significantly. It also signals that the leader is unstable, perhaps due to network connectivity issues or excessive load hitting the etcd cluster.',NULL,'0','0','0','','0','','0','','0','Etcd: Instance has seen too many leader changes (over {$ETCD.LEADER.CHANGES.MAX.WARN} for 15m)\'','1ea623927179489890a5a73eeb8177f7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16896','{19805}>{$ETCD.PROPOSAL.FAIL.MAX.WARN}','Etcd: Too many proposal failures','','0','2','Normally related to two issues: temporary failures related to a leader election or longer downtime caused by a loss of quorum in the cluster.',NULL,'0','0','0','','0','','0','','0','Etcd: Too many proposal failures (over {$ETCD.PROPOSAL.FAIL.MAX.WARN} for 5m)\'','432cea8bddd742ca98528be2fbc7e35e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16897','{19806}>{$ETCD.PROPOSAL.PENDING.MAX.WARN}','Etcd: Too many proposals are queued to commit','','0','2','Rising pending proposals suggests there is a high client load or the member cannot commit proposals.',NULL,'0','0','0','','0','','0','','0','Etcd: Too many proposals are queued to commit (over {$ETCD.PROPOSAL.PENDING.MAX.WARN} for 5m)\'','5feefc4dd5d14fe2b56dd63029b57026');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16898','{23200}<>{23201} and length({23202})>0','Etcd: Server version has changed','','0','1','Etcd version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Etcd: Server version has changed (new version: {ITEM.VALUE})','cfb2fc467b224ef694d59b5c081ed965');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16899','{19809}<10m','Etcd: has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Etcd: has been restarted (uptime < 10m)','6843369969f5410a840494104d71fe1f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16900','{19810}=0','Etcd: Service is unavailable','','0','3','',NULL,'0','0','0','','0','','1','','0','','74164f0783ae4227ba44f3e865fee3bd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16901','{19811}>{$ETCD.GRPC.ERRORS.MAX.WARN}','Etcd: Too many failed gRPC requests with code: {#GRPC.CODE}','','0','2','',NULL,'0','2','0','','0','','0','','0','Etcd: Too many failed gRPC requests with code: {#GRPC.CODE} (over {$ETCD.GRPC.ERRORS.MAX.WARN} in 5m)','459b6ee5735047d597a6a4ab41b76e21');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16902','{19812}=0','IIS: Port {$IIS.PORT} is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','da7d9c749f884c179a105b0c9475e6bd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16903','{19813}<10m','IIS: has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','IIS: has been restarted (uptime < 10m)','7bbf8a836c66422abd4469d28afbcc00');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16904','{19814}<>0','IIS: The World Wide Web Publishing Service (W3SVC) is not running','','0','4','The World Wide Web Publishing Service (W3SVC) is not in the running state. IIS cannot start.',NULL,'0','0','0','','0','','0','','0','','cac6bbb13ce84772a976275da0805179');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16905','{19815}<>0','IIS: Windows process Activation Service (WAS) is not running','','0','4','Windows Process Activation Service (WAS) is not in the running state. IIS cannot start.',NULL,'0','0','0','','0','','0','','0','','98fc8e403ac0405e84bf533336c4102c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16906','{19816}<>3 and {$IIS.APPPOOL.MONITORED:"{#APPPOOL}"}=1','IIS: Application pool {#APPPOOL} is not in Running state','','0','4','',NULL,'0','2','0','','0','','0','','0','','56c6df39f3d1419ca4ce67c70f464ab7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16907','{19817}<10m','IIS: {#APPPOOL} has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','IIS: {#APPPOOL} has been restarted (uptime < 10m)','53afe8614ac542feaed1d656152bafd2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16908','{23218}<>{23219} and {$IIS.APPPOOL.MONITORED:"{#APPPOOL}"}=1','IIS: Application pool {#APPPOOL} has been recycled','','0','1','',NULL,'0','2','0','','0','','0','','0','','665d5fbd0b9247e890a9cfa1b39fa415');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16909','{19819}>{$IIS.QUEUE.MAX.WARN}','IIS: Request queue of {#APPPOOL} is too large','','0','2','',NULL,'0','2','0','','0','','0','','0','IIS: Request queue of {#APPPOOL} is too large (over {$IIS.QUEUE.MAX.WARN})','8cebd49164154999903dab2c03fd4be9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16910','{19820}=0','IIS: Port {$IIS.PORT} is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','2b73bb4c09404d748e019ef2257a9e20');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16911','{19821}<10m','IIS: has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','IIS: has been restarted (uptime < 10m)','f68768567f334d369d52797309f95c41');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16912','{19822}<>0','IIS: The World Wide Web Publishing Service (W3SVC) is not running','','0','4','The World Wide Web Publishing Service (W3SVC) is not in the running state. IIS cannot start.',NULL,'0','0','0','','0','','0','','0','','ca139b8b27c44f7fb22938fd3419cff5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16913','{19823}<>0','IIS: Windows process Activation Service (WAS) is not running','','0','4','Windows Process Activation Service (WAS) is not in the running state. IIS cannot start.',NULL,'0','0','0','','0','','0','','0','','d7a16291f196424ca9c39af4271ab78f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16914','{19824}<>3 and {$IIS.APPPOOL.MONITORED:"{#APPPOOL}"}=1','IIS: Application pool {#APPPOOL} is not in Running state','','0','4','',NULL,'0','2','0','','0','','0','','0','','a7184495eb684293ada387292c812b0f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16915','{19825}<10m','IIS: {#APPPOOL} has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','IIS: {#APPPOOL} has been restarted (uptime < 10m)','d2a9854722a44253a39c8eaab67f7677');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16916','{23220}<>{23221} and {$IIS.APPPOOL.MONITORED:"{#APPPOOL}"}=1','IIS: Application pool {#APPPOOL} has been recycled','','0','1','',NULL,'0','2','0','','0','','0','','0','','27a93967a29849f3aef833db136e1b8e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16917','{19827}>{$IIS.QUEUE.MAX.WARN}','IIS: Request queue of {#APPPOOL} is too large','','0','2','',NULL,'0','2','0','','0','','0','','0','IIS: Request queue of {#APPPOOL} is too large (over {$IIS.QUEUE.MAX.WARN})','68499a4737d24ee6846aaea2a37b7b4f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16918','{23347}<>{23348} and length({23349})>0','Remote Zabbix proxy: Version has changed','','0','1','Remote Zabbix proxy version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Remote Zabbix proxy: Version has changed (new version: {ITEM.VALUE})','224ec99fda0d443cba8a6c75da5a27cb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16919','{23314}<>{23315} and length({23316})>0','Remote Zabbix server: Version has changed','','0','1','Remote Zabbix server version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Remote Zabbix server: Version has changed (new version: {ITEM.VALUE})','93a52f22c79b40539fcd3a26183daad9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16920','{19832}=0 or {19833} = 0','ClickHouse: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','803947a6de9340ed8596510dcbbeacac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16921','{19834}=0','ClickHouse: Port {$CLICKHOUSE.PORT} is unavailable','','0','3','',NULL,'0','0','0','','0','','1','','0','','1d4b9842b66b4da9ab3750944b2fa050');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16925','{19841} * 100 > 10 * {19842}','MSSQL: Too frequently using pointers','','0','2','Rows with varchar columns can experience expansion when varchar values are updated with a longer string. In the case where the row cannot fit in the existing page, the row migrates and access to the row will traverse a pointer. This only happens on heaps (tables without clustered indexes). Evaluate clustered index for heap tables. In cases where clustered indexes cannot be used, drop non-clustered indexes, build a clustered index to reorg pages and rows, drop the clustered index, then recreate non-clustered indexes.',NULL,'0','0','0','','0','','0','','0','','a1397bd4e9334a24a34dba0687b263e6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16927','{19845}>{$MSSQL.AVERAGE_WAIT_TIME.MAX}','MSSQL: Total average wait time for locks is high','','0','2','An average wait time longer than 500ms may indicate excessive blocking. This value should generally correlate to \'Lock Waits/sec\' and move up or down with it accordingly.',NULL,'0','0','0','','0','','0','','0','MSSQL: Total average wait time for locks is high (over {$MSSQL.AVERAGE_WAIT_TIME.MAX}ms for 5m)','fad2c1e9d0ba45bcbb47ccbb327f0b98');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16928','{19846}<{$MSSQL.BUFFER_CACHE_RATIO.MIN.CRIT}','MSSQL: Percentage of the buffer cache efficiency is low','','0','4','Too low buffer cache hit ratio.',NULL,'0','0','0','','0','','0','','0','MSSQL: Percentage of the buffer cache efficiency is low (below {$MSSQL.BUFFER_CACHE_RATIO.MIN.CRIT}% for 5m)','f84fa297023a4aee903e4d32bbad9360');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16929','{19847}<{$MSSQL.BUFFER_CACHE_RATIO.MIN.WARN}','MSSQL: Percentage of the buffer cache efficiency is low','','0','2','Low buffer cache hit ratio.',NULL,'0','0','0','','0','','0','','0','MSSQL: Percentage of the buffer cache efficiency is low (below {$MSSQL.BUFFER_CACHE_RATIO.MIN.WARN}% for 5m)','42e5bf05da06425282134d3cf806d023');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16930','{19848}>{$MSSQL.FREE_LIST_STALLS.MAX}','MSSQL: Number of rps waiting for a free page is high','','0','2','Some requests have to wait for a free page.',NULL,'0','0','0','','0','','0','','0','MSSQL: Number of rps waiting for a free page is high (over {$MSSQL.FREE_LIST_STALLS.MAX} for 5m)','f055a294ef3b43dd8958e77c303a5fee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16931','{19849}>{$MSSQL.LAZY_WRITES.MAX}','MSSQL: Number of buffers written per second by the lazy writer is high','','0','2','The number of buffers written per second by the buffer manager\'s lazy writer exceeds the threshold.',NULL,'0','0','0','','0','','0','','0','MSSQL: Number of buffers written per second by the lazy writer is high (over {$MSSQL.LAZY_WRITES.MAX} for 5m)','8aa547cda82f4dfcaef5ca0467590f64');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16932','{19850}>{$MSSQL.LOCK_REQUESTS.MAX}','MSSQL: Total number of locks per second is high','','0','2','Number of new locks and lock conversions per second requested from the lock manager is high.',NULL,'0','0','0','','0','','0','','0','MSSQL: Total number of locks per second is high (over {$MSSQL.LOCK_REQUESTS.MAX} for 5m)','be4e0b1aec8d494b984be248424d69cf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16933','{19851}>{$MSSQL.LOCK_TIMEOUTS.MAX}','MSSQL: Total lock requests per second that timed out is high','','0','2','The total number of timed out lock requests per second, including requests for NOWAIT locks, is high.',NULL,'0','0','0','','0','','0','','0','MSSQL: Total lock requests per second that timed out is high (over {$MSSQL.LOCK_TIMEOUTS.MAX} for 5m)','9b62d84b8d9c4209b894151f59c42b27');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16934','{19852}>0','MSSQL: Some blocking is occurring for 5m','','0','3','Values greater than zero indicate at least some blocking is occurring, while a value of zero can quickly eliminate blocking as a potential root-cause problem.',NULL,'0','0','0','','0','','0','','0','','879748a03c89495398b41fc1dbeba9ed');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16935','{19853}>{$MSSQL.DEADLOCKS.MAX}','MSSQL: Number of deadlock is high','','0','3','Too many deadlocks are occurring currently.',NULL,'0','0','0','','0','','0','','0','MSSQL: Number of deadlock is high (over {$MSSQL.DEADLOCKS.MAX} for 5m)','a8f77c32a7194af9b2674f0931c25212');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16936','{19854}<{$MSSQL.PAGE_LIFE_EXPECTANCY.MIN}','MSSQL: Page life expectancy is low','','0','4','The page stays in the buffer pool without references of less time than the threshold value.',NULL,'0','0','0','','0','','0','','0','MSSQL: Page life expectancy is low (less {$MSSQL.PAGE_LIFE_EXPECTANCY.MIN}min for 15m)','4eb155a86f8b4441a6707e8a3816a068');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16937','{19855}>{$MSSQL.PAGE_READS.MAX}','MSSQL: Number of physical database page reads per second is high','','0','2','The physical database page reads are issued too frequently.',NULL,'0','0','0','','0','','0','','0','MSSQL: Number of physical database page reads per second is high (over {$MSSQL.PAGE_READS.MAX} for 5m)','c0b765b22b264d7c9086edc5cda35592');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16938','{19856}>{$MSSQL.PAGE_WRITES.MAX}','MSSQL: Number of physical database page writes per second is high','','0','2','The physical database page writes are issued too frequently.',NULL,'0','0','0','','0','','0','','0','MSSQL: Number of physical database page writes per second is high (over {$MSSQL.PAGE_WRITES.MAX} for 5m)','548941f4a7cc4cadba64d8efd46655da');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16939','{19857}<10m','MSSQL: Service has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MSSQL: Service has been restarted (uptime < 10m)','aa10f863608a494281f41e12f0d2b1a5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16940','{19858}=1','MSSQL: Failed to fetch info data','','0','1','Zabbix has not received data for items for the last 30 minutes.',NULL,'0','0','0','','0','','0','','0','MSSQL: Failed to fetch info data (or no data for 30m)','0321c9f671394cb180fdce53b4033cf4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16941','{23452}<>{23453} and length({23454})>0','MSSQL: Version has changed','','0','1','MSSQL version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','MSSQL: Version has changed (new version value received: {ITEM.VALUE})','4ece2c9172714c68b8345834cc37d927');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16944','{19863}<{$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT}','MSSQL: Percentage of work tables available from the work table cache is low','','0','4','A value less than 90% may indicate insufficient memory, since execution plans are being dropped, or on 32-bit systems, may indicate the need for an upgrade to a 64-bit system',NULL,'0','0','0','','0','','0','','0','MSSQL: Percentage of work tables available from the work table cache is low (below {$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT}% for 5m)','98dee2bc42484988b208e100cc25ae05');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16946','{19865}=0','MSSQL AG \'{#GROUP_NAME}\': Primary replica recovery health in progress','','0','2','The primary replica is in the synchronization process.',NULL,'0','2','0','','0','','0','','0','','c472a4f8400e451db529d5e12b863216');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16947','{19866}=0','MSSQL AG \'{#GROUP_NAME}\': Secondary replica recovery health in progress','','0','2','The secondary replica is in the synchronization process.',NULL,'0','2','0','','0','','0','','0','','1fbf51eb9f8b432c8e0d9ec3af1cab44');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16948','{19867}=0','MSSQL AG \'{#GROUP_NAME}\': All replicas unhealthy','','0','5','None of the availability replicas have a healthy synchronization.',NULL,'0','2','0','','0','','0','','0','','2ee92e5ea41744ac9e27ffaa4313bdec');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16949','{19868}=1','MSSQL AG \'{#GROUP_NAME}\': Some replicas unhealthy','','0','4','The synchronization health of some, but not all, availability replicas is healthy.',NULL,'0','2','0','','0','','0','','0','','fd24c78f1db24186932d17d1145b6e92');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16950','{19869}>{$MSSQL.LOG_FLUSH_WAIT_TIME.MAX:"{#DBNAME}"}','MSSQL DB \'{#DBNAME}\': Total wait time to flush the log is high','','0','2','The wait time to flush the log is too long.',NULL,'0','2','0','','0','','0','','0','MSSQL DB \'{#DBNAME}\': Total wait time to flush the log is high (over {$MSSQL.LOG_FLUSH_WAIT_TIME.MAX:"{#DBNAME}"}ms for 5m)','80351c56215148b8ab75d95dc81ff0d0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16951','{19870}>{$MSSQL.LOG_FLUSH_WAITS.MAX:"{#DBNAME}"}','MSSQL DB \'{#DBNAME}\': Number of commits waiting for the log flush is high','','0','2','Too many commits are waiting for the log flush.',NULL,'0','2','0','','0','','0','','0','MSSQL DB \'{#DBNAME}\': Number of commits waiting for the log flush is high (over {$MSSQL.LOG_FLUSH_WAITS.MAX:"{#DBNAME}"}/sec for 5m)','b351fc1128c24faf88d36717d0a0d1a5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16954','{19873}>{$MSSQL.PERCENT_LOG_USED.MAX:"{#DBNAME}"}','MSSQL DB \'{#DBNAME}\': Percent of log using is high','','0','2','There\'s not enough space left in the log.',NULL,'0','2','0','','0','','0','','0','MSSQL DB \'{#DBNAME}\': Percent of log using is high (over {$MSSQL.PERCENT_LOG_USED.MAX:"{#DBNAME}"}% for 5m)','f02958e3ee174c6dbe900e3dd92cacdc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16955','{19874}>1','MSSQL DB \'{#DBNAME}\': State is {ITEM.VALUE}','','0','4','The DB has a non-working state.',NULL,'0','2','0','','0','','0','','0','','6b8c8cf8e0d24b7f8d9aa7469a0facd4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16956','{19875}>0','MSSQL AG \'{#GROUP_NAME}\' Local DB \'{#DBNAME}\': "{#DBNAME}" is {ITEM.VALUE}','','0','2','The local availability database has a non-working state.',NULL,'0','2','0','','0','','0','','0','','78923c9c52e74c80a77d418afe9e438d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16957','{19876}=0','MSSQL AG \'{#GROUP_NAME}\' Local DB \'{#DBNAME}\': "{#DBNAME}" is Not healthy','','0','4','The synchronization state of the local availability database is NOT SYNCHRONIZING.',NULL,'0','2','0','','0','','0','','0','','e51c10f9d86d458da9fdb7e21b4e0102');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16958','{19877}=1','MSSQL AG \'{#GROUP_NAME}\' Local DB \'{#DBNAME}\': "{#DBNAME}" is Partially healthy','','0','3','A database on a synchronous-commit availability replica is considered partially healthy if synchronization state is SYNCHRONIZING.',NULL,'0','2','0','','0','','0','','0','','dc636f10f12c4f1ead597eca778561ec');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16959','{19878}>=0 and {19878}<=2','MSSQL Mirroring \'{#DBNAME}\': "{#DBNAME}" is {ITEM.VALUE}','','0','1','The state of the mirror database and of the database mirroring session is "Suspended", "Disconnected from the other partner", or "Synchronizing".',NULL,'0','2','0','','0','','0','','0','','c673a7c4820840528a4aa1771a5a56d4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16960','{19879}=3','MSSQL Mirroring \'{#DBNAME}\': "{#DBNAME}" is {ITEM.VALUE}','','0','2','The state of the mirror database and of the database mirroring session is "Pending Failover".',NULL,'0','2','0','','0','','0','','0','','323543b0df0e474abf9190a9630242b1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16961','{19880}=5','MSSQL Mirroring \'{#DBNAME}\': "{#DBNAME}" is {ITEM.VALUE}','','0','4','The state of the mirror database and of the database mirroring session is "Not synchronized". The partners are not synchronized. A failover is not possible now.',NULL,'0','2','0','','0','','0','','0','','9a2bcdfb32654a55b8a75c8bf4331950');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16962','{19881}=2','MSSQL Mirroring \'{#DBNAME}\': "{#DBNAME}" Witness is disconnected','','0','2','The state of the witness in the database mirroring session of the database is "Disconnected".',NULL,'0','2','0','','0','','0','','0','','ec374424b79346c99f1d815e0815c799');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16965','{19888}=0 and {19889}=2','MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': {#REPLICA_NAME} is disconnected','','0','2','The response of an availability replica to the DISCONNECTED state depends on its role:\r\nOn the primary replica, if a secondary replica is disconnected, its secondary databases are marked as NOT SYNCHRONIZED on the primary replica, which waits for the secondary to reconnect; On a secondary replica, upon detecting that it is disconnected, the secondary replica attempts to reconnect to the primary replica.',NULL,'0','2','0','','0','','0','','0','','7c6afc5596e94af0979bd20d5ef542ea');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16966','{19890}=0 or {19890}=1 or {19890}=3','MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': {#REPLICA_NAME} is {ITEM.VALUE}','','0','2','The operational state of the replica in a given availability group is "Pending" or "Offline".',NULL,'0','2','0','','0','','0','','0','','0192e9d5795a4d46acb8de29f710edcd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16967','{19891}=4','MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': {#REPLICA_NAME} is {ITEM.VALUE}','','0','3','The operational state of the replica in a given availability group is "Failed".',NULL,'0','2','0','','0','','0','','0','','3f2006b9ae114e01b442b34fec9373d3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16968','{19892}=5','MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': {#REPLICA_NAME} is {ITEM.VALUE}','','0','4','The operational state of the replica in a given availability group is "Failed, no quorum".',NULL,'0','2','0','','0','','0','','0','','94ea79848a5048d8ae417df709b8d612');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16969','{19893}=0','MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': {#REPLICA_NAME} Recovery in progress','','0','1','At least one joined database has a database state other than ONLINE.',NULL,'0','2','0','','0','','0','','0','','58f508b855364d769e2be977793a03c8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16970','{19894}=0','MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': {#REPLICA_NAME} is Not healthy','','0','3','At least one joined database is in the NOT SYNCHRONIZING state.',NULL,'0','2','0','','0','','0','','0','','f2f4d198ad2242088d867abe6fac4ecd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16971','{19895}=1','MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': {#REPLICA_NAME} is Partially healthy','','0','2','Some replicas are not in the target synchronization state: synchronous-commit replicas should be synchronized, and asynchronous-commit replicas should be synchronizing.',NULL,'0','2','0','','0','','0','','0','','070af612aa7248588fc058d8f9fb9929');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16972','{19896}>{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN}','MySQL: Number of on-disk temporary tables created per second is high','','0','2','Possibly the application using the database is in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of on-disk temporary tables created per second is high (over {$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} for 5m)','1b8761292e89476e91834f8e567a1dbe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16973','{19897}>{$MYSQL.CREATED_TMP_FILES.MAX.WARN}','MySQL: Number of temporary files created per second is high','','0','2','Possibly the application using the database is in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of temporary files created per second is high (over {$MYSQL.CREATED_TMP_FILES.MAX.WARN} for 5m)','9845d8dc676f4702ae34b626f39d21ac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16974','{19898}>{$MYSQL.CREATED_TMP_TABLES.MAX.WARN}','MySQL: Number of internal temporary tables created per second is high','','0','2','Possibly the application using the database is in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of internal temporary tables created per second is high (over {$MYSQL.CREATED_TMP_TABLES.MAX.WARN} for 5m)','c647a51864e04bc69a1f610b1dec56fe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16975','{19899}=1','MySQL: Failed to fetch info data','','0','1','Zabbix has not received data for items for the last 30 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Failed to fetch info data (or no data for 30m)','d3c80c770355464fb5a6be0357d0edca');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16976','{19900}>{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN}','MySQL: Number of on-disk temporary tables created per second is high','','0','2','Possibly the application using the database is in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of on-disk temporary tables created per second is high (over {$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} for 5m)','8c4e0c429c8241e28b930bfce7e29be8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16977','{19901}>{$MYSQL.CREATED_TMP_FILES.MAX.WARN}','MySQL: Number of temporary files created per second is high','','0','2','Possibly the application using the database is in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of temporary files created per second is high (over {$MYSQL.CREATED_TMP_FILES.MAX.WARN} for 5m)','322b61acd92e46f787e96486d2553886');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16978','{19902}>{$MYSQL.CREATED_TMP_TABLES.MAX.WARN}','MySQL: Number of internal temporary tables created per second is high','','0','2','Possibly the application using the database is in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of internal temporary tables created per second is high (over {$MYSQL.CREATED_TMP_TABLES.MAX.WARN} for 5m)','86ed19d4ddc84f0da4a77c1dcbdf8c60');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16979','{19903}=1','MySQL: Failed to fetch info data','','0','1','Zabbix has not received data for items for the last 30 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Failed to fetch info data (or no data for 30m)','6f4edf8bfca0477b8b28a8ff811476b3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16980','{19904}>{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN}','MySQL: Number of on-disk temporary tables created per second is high','','0','2','Possibly the application using the database is in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of on-disk temporary tables created per second is high (over {$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} for 5m)','8aec6a51fa3e4320b3c7c40858ac7f96');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16981','{19905}>{$MYSQL.CREATED_TMP_FILES.MAX.WARN}','MySQL: Number of temporary files created per second is high','','0','2','Possibly the application using the database is in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of temporary files created per second is high (over {$MYSQL.CREATED_TMP_FILES.MAX.WARN} for 5m)','c1dbcf829bdf43fda3b4c2add576c8f0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16982','{19906}>{$MYSQL.CREATED_TMP_TABLES.MAX.WARN}','MySQL: Number of internal temporary tables created per second is high','','0','2','Possibly the application using the database is in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of internal temporary tables created per second is high (over {$MYSQL.CREATED_TMP_TABLES.MAX.WARN} for 5m)','d65c3ec6cacd41c58f5e2b209ca5a810');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16983','{19907}=1','MySQL: Failed to fetch info data','','0','1','Zabbix has not received data for items for the last 30 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Failed to fetch info data (or no data for 30m)','ba9eb4fc244b41a6a30237e7a382fa54');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16984','{19908}=0 and {19909}>0','Oracle: Port {$ORACLE.PORT} is unavailable','','0','5','The TCP port of the Oracle Server service is currently unavailable.',NULL,'0','0','0','','0','','0','','0','','7b0bde98c6c54e67b0aa8b3339fe464d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16985','{19910} * 100 / {19911} > {$ORACLE.PROCESSES.MAX.WARN}','Oracle: Too many active processes','','0','2','Active processes are using more than {$ORACLE.PROCESSES.MAX.WARN}% of the available number of processes.',NULL,'0','0','0','','0','','0','','0','Oracle: Too many active processes (over {$ORACLE.PROCESSES.MAX.WARN}% for 5 min)','38471058988c46f4b81af9f77637914a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16986','{19912} * 100 / {19913} > {$ORACLE.SESSIONS.MAX.WARN}','Oracle: Too many active sessions','','0','2','Active sessions are using more than {$ORACLE.SESSIONS.MAX.WARN}% of the available sessions.',NULL,'0','0','0','','0','','0','','0','Oracle: Too many active sessions (over {$ORACLE.SESSIONS.MAX.WARN}% for 5 min)','4a055da31f09489ea0f03e4582ee4333');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16987','{19914} * 100 / {19915} > {$ORACLE.DB.FILE.MAX.WARN}','Oracle: Too many database files','','0','2','Number of datafiles is higher than {$ORACLE.DB.FILE.MAX.WARN}% of the available datafile files limit.',NULL,'0','0','0','','0','','0','','0','Oracle: Too many database files (over {$ORACLE.DB.FILE.MAX.WARN}% for 5 min)','5752d92063f84aaa818bc85b135cd4fd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16988','{19916} * 100 / {19917} > {$ORACLE.PGA.USE.MAX.WARN}','Oracle: Total PGA inuse is too high','','0','2','Total PGA in use is more than {$ORACLE.PGA.USE.MAX.WARN}% of PGA_AGGREGATE_TARGET.',NULL,'0','0','0','','0','','0','','0','Oracle: Total PGA inuse is too high (over {$ORACLE.PGA.USE.MAX.WARN}% for 5 min)','476001f0f52a45f59942d73c643371c1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16989','{23481}<>{23482} and length({23483})>0','Oracle: Instance hostname has changed','','0','1','Oracle DB Instance hostname has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Oracle: Instance hostname has changed (new hostname received: {ITEM.VALUE})','618a3e3c82dc4ccba82477afdd100a98');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16990','{23484}<>{23485} and length({23486})>0','Oracle: Instance name has changed','','0','1','Oracle DB Instance name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Oracle: Instance name has changed (new name received: {ITEM.VALUE})','2fe53d1d931e4eb38fef10a3171c1665');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16991','{19922} < {$ORACLE.REDO.MIN.WARN}','Oracle: Number of REDO logs available for switching is too low','','0','2','Number of available for log switching inactive/unused REDOs is low (Database down risk)',NULL,'0','0','0','','0','','0','','0','Oracle: Number of REDO logs available for switching is too low (less {$ORACLE.REDO.MIN.WARN} for 5 min)','1348b1e854e64d34b6b00be118f045c3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16993','{19924} > {$ORACLE.SESSIONS.LOCK.MAX.WARN}','Oracle: Too many locked sessions','','0','2','Number of locked sessions is over {$ORACLE.SESSIONS.LOCK.MAX.WARN}% of the running sessions.',NULL,'0','0','0','','0','','0','','0','Oracle: Too many locked sessions (over {$ORACLE.SESSIONS.LOCK.MAX.WARN}% for 5 min)','9a75f3a039094ca89c2ba7e3fa93b1a8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16994','{19925} > {$ORACLE.SESSION.LONG.LOCK.MAX.WARN}','Oracle: Too many sessions locked','','0','2','Number of sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME} seconds is too high. Long-term locks can negatively affect database performance, therefore, if they are detected, you should first find the most difficult queries from the database point of view and analyze possible resource leaks.',NULL,'0','0','0','','0','','0','','0','Oracle: Too many sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s (over {$ORACLE.SESSION.LONG.LOCK.MAX.WARN} for 5 min)','a8f5ec966f5e4c72baad1380eda4d0a2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16995','{19926}<{$ORACLE.SHARED.FREE.MIN.WARN}','Oracle: Shared pool free is too low','','0','2','The shared pool free memory percent has been less than {$ORACLE.SHARED.FREE.MIN.WARN}% in the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','Oracle: Shared pool free is too low (less {$ORACLE.SHARED.FREE.MIN.WARN}% for 5m)','8facfa98bcd3447ea53d0a3d09ada933');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16996','{19927}<10m','Oracle: has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Oracle: has been restarted (uptime < 10m)','431201a1ce0d47948751c7e4e6bbeb92');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16997','{19928}=1','Oracle: Failed to fetch info data','','0','2','Zabbix has not received data for items for the last 5 minutes. The database might be unavailable for connecting.',NULL,'0','0','0','','0','','0','','0','Oracle: Failed to fetch info data (or no data for 5m)','03a4fb1d6e684c9b82c1317699c71468');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16998','{19929} < {$ORACLE.EXPIRE.PASSWORD.MIN.WARN}','Oracle: Zabbix account will expire soon','','0','2','Password for zabbix user in the database will expire soon.',NULL,'0','0','0','','0','','0','','0','Oracle: Zabbix account will expire soon (under {$ORACLE.EXPIRE.PASSWORD.MIN.WARN} days)','a909d8cccacf4470a3e2da88b4e5c3d5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16999','{23487}<>{23488} and length({23489})>0','Oracle: Version has changed','','0','1','Oracle DB version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Oracle: Version has changed (new version value received: {ITEM.VALUE})','a5dd4fe627c44afebdfe7beeefc4ec3d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17000','{19932}=0','Oracle: LISTENER process is not running','','0','5','',NULL,'0','0','0','','0','','0','','0','','eb5e531eb3f142569775349a126d1ab0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17001','{19933}<2','Archivelog \'{#DEST_NAME}\': Log Archive is not valid','','0','4','ARL destination not in 3 - Valid or 2 - Deferred.',NULL,'0','2','0','','0','','0','','0','','1202e75015304115a4ccdab027617816');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17002','{19934}>{$ORACLE.ASM.USED.PCT.MAX.WARN}','ASM \'{#DG_NAME}\': Disk group usage is too high','','0','2','Usage percent of ASM disk group is over {$ORACLE.ASM.USED.PCT.MAX.WARN}',NULL,'0','2','0','','0','','0','','0','ASM \'{#DG_NAME}\': Disk group usage is too high (over {$ORACLE.ASM.USED.PCT.MAX.WARN}% for 5m)','d65971e0f3994dfcbcbde145c9866678');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17003','{19935}>{$ORACLE.ASM.USED.PCT.MAX.HIGH}','ASM \'{#DG_NAME}\': Disk group usage is too high','','0','4','Usage percent of ASM disk group is over {$ORACLE.ASM.USED.PCT.MAX.WARN}',NULL,'0','2','0','','0','','0','','0','ASM \'{#DG_NAME}\': Disk group usage is too high (over {$ORACLE.ASM.USED.PCT.MAX.HIGH}% for 5m)','756a8b4b04bc4aadab6b4b4cc856ad32');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17004','{19936} = 0 and {19937} = 1','Oracle Database \'{#DBNAME}\': Force logging is deactivated for DB with active Archivelog','','0','2','Force Logging mode - it is very important metric for Databases in \'ARCHIVELOG\'. This feature allows to forcibly write all transactions to the REDO.',NULL,'0','2','0','','0','','0','','0','','9c17e0fdd6fe409e8f298433e58b7445');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17005','{19938}=1','Oracle Database \'{#DBNAME}\': Open status in mount mode','','0','2','The Oracle DB has a MOUNTED state.',NULL,'0','2','0','','0','','0','','0','','3620ac4e75644789a2f0245dbb948771');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17006','{23490}<>{23491}','Oracle Database \'{#DBNAME}\': Open status has changed','','0','1','Oracle DB open status has changed. Ack to close.',NULL,'0','2','0','','0','','1','','0','Oracle Database \'{#DBNAME}\': Open status has changed (new value received: {ITEM.VALUE})','9bf80a9372ef4b3898fd5a4f0c3cec7c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17007','{23492}<>{23493}','Oracle Database \'{#DBNAME}\': Role has changed','','0','1','Oracle DB role has changed. Ack to close.',NULL,'0','2','0','','0','','1','','0','Oracle Database \'{#DBNAME}\': Role has changed (new value received: {ITEM.VALUE})','fb5ccc917a8344d7945b8867a1982d6b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17008','{19941}=1','Oracle Database \'{#DBNAME}\': Open status in mount mode','','0','2','The Oracle DB has a MOUNTED state.',NULL,'0','2','0','','0','','0','','0','','5f8ed69b2c074a29b9975baf10a2a2f8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17009','{23494}<>{23495}','Oracle Database \'{#DBNAME}\': Open status has changed','','0','1','Oracle DB open status has changed. Ack to close.',NULL,'0','2','0','','0','','1','','0','Oracle Database \'{#DBNAME}\': Open status has changed (new value received: {ITEM.VALUE})','3dbb9379f8024924b197037acfbbdac4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17010','{19943}=2','Oracle TBS \'{#TABLESPACE}\': Tablespace is OFFLINE','','0','2','The tablespace is in the offline state.',NULL,'0','2','0','','0','','0','','0','','3c5f54f41f95440aa18ca5316aeb50f6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17011','{23496}<>{23497}','Oracle TBS \'{#TABLESPACE}\': Tablespace status has changed','','0','1','Oracle tablespace status has changed. Ack to close.',NULL,'0','2','0','','0','','1','','0','Oracle TBS \'{#TABLESPACE}\': Tablespace status has changed (new value received: {ITEM.VALUE})','05c2af5a765842a1a70f2f67355db1b3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17014','{19947} > {$PG.CONN_TOTAL_PCT.MAX.WARN}','Connections sum: Total number of connections is too high','','0','3','',NULL,'0','0','0','','0','','0','','0','Connections sum: Total number of connections is too high (over {$PG.CONN_TOTAL_PCT.MAX.WARN} in 5m)','1d0903401af64d93ac16761808d672ca');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17016','{19949}=0','PostgreSQL: Service is down','','0','4','',NULL,'0','0','0','','0','','0','','0','','48a24a78519d47349200f0b41ceec56a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17017','{19950} < 600','PostgreSQL: Service has been restarted','','0','3','',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Service has been restarted (uptime={ITEM.LASTVALUE})','5fbabc5f60b74a369a13a260d25cce3c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17018','{19951} > {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"}','DB {#DBNAME}: Too many recovery conflicts','','0','3','The primary and standby servers are in many ways loosely connected. Actions on the primary will have an effect on the standby. As a result, there is potential for negative interactions or conflicts between them.\r\nhttps://www.postgresql.org/docs/current/hot-standby.html#HOT-STANDBY-CONFLICT',NULL,'0','2','0','','0','','0','','0','DB {#DBNAME}: Too many recovery conflicts (over {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"} in 5m)','05ac4216e1a941df8880224ffd38b806');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17019','{19952} > {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"}','DB {#DBNAME}: Deadlock occurred','','0','4','',NULL,'0','2','0','','0','','0','','0','DB {#DBNAME}: Deadlock occurred (over {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} in 5m)','dd948e3ec19c419e8c9a62ace8d1695f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17023','{19956} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19957} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}','{#DEVNAME}: Disk read/write request responses are too high','','0','2','This trigger might indicate disk {#DEVNAME} saturation.',NULL,'0','2','0','','0','','1','','0','{#DEVNAME}: Disk read/write request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} ms for 15m or write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} ms for 15m)','3ac02c78c65f49bdae63669652236b7b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17024','{$IFCONTROL:"{#IFNAME}"}=1 and {24307}=2 and ({24308}<>{24309})','Interface {#IFNAME}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24307}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','4b06b63814d34a90abe971abcd97cf83');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17035','{19978} - {19979} * 2 > {$CPU.QUEUE.CRIT.MAX}','CPU queue length is too high','','0','2','The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. According to actual observations, PQL should not exceed the number of cores * 2. To fine-tune the conditions, use the macro {$CPU.QUEUE.CRIT.MAX }.',NULL,'0','0','0','','0','','0','','0','CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m)','cc301d844a7b42e79756d1bc74adf307');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17042','{$IFCONTROL:"{#IFNAME}"}=1 and {24353}<>2 and ({24354}<>{24355})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:\\"{#IFNAME}\\"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important.\r\n No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status is different from Connected(2).\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24353}=2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','36effba3975c408aba50096464719479');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17043','{20000}>{$VFS.DEV.UTIL.MAX.WARN}','{#DEVNAME}: Disk is overloaded','','0','2','The disk appears to be under heavy load',NULL,'0','2','0','','0','','1','','0','{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m)','c194f813f0c5417aaac56875b955637a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17066','{31090}>({31091}*{$JMX.HEAP.MEM.USAGE.MAX}/100) and {31091}>0','Memory: Heap memory usage is high','','0','2','',NULL,'0','0','0','','0','','0','','0','Memory: Heap memory usage more than {$JMX.HEAP.USAGE.MAX}% for {$JMX.HEAP.MEM.USAGE.TIME}','69fda060b5004d12b6af0ba5f73cec6d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17067','{31092}>({31093}*{$JMX.NONHEAP.MEM.USAGE.MAX}/100) and {31093}>0','Memory: Non-Heap memory usage is high','','0','2','',NULL,'0','0','0','','0','','0','','0','Memory: Non-Heap memory usage more than {$JMX.NONHEAP.MEM.USAGE.MAX}% for {$JMX.NONHEAP.MEM.USAGE.TIME}','2b4dfda1100d4feeaa66218e57786f38');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17075','{20078}>({20079}*{$JMX.FILE.DESCRIPTORS.MAX}/100)','OperatingSystem: Opened file descriptor count is high','','0','2','',NULL,'0','0','0','','0','','0','','0','OperatingSystem: Opened file descriptor count more than {$JMX.FILE.DESCRIPTORS.MAX}% of maximum','726a3b8a6209451b9a6cca63a3195a0c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17076','{20080}=1','Compilation: {HOST.NAME} uses suboptimal JIT compiler','','0','1','',NULL,'0','0','0','','0','','1','','0','','691f051584d74995b757b4be5e3824fe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17077','{20081}>{$JMX.CPU.LOAD.MAX}','OperatingSystem: Process CPU Load is high','','0','3','',NULL,'0','0','0','','0','','0','','0','OperatingSystem: Process CPU Load more than {$JMX.CPU.LOAD.MAX}% for {$JMX.CPU.LOAD.TIME}','cc6cc7942e434b8589ff28a0b3112fc7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17078','{20082}=1','Runtime: JVM is not reachable','','0','3','',NULL,'0','0','0','','0','','1','','0','','c82c23dc5be34bb68ec8b152b3be367b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17079','{20083}<>1','Runtime: {HOST.NAME} runs suboptimal VM type','','0','1','',NULL,'0','0','0','','0','','1','','0','','560edfbeb7654f1eb7315389f08ef1b3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17080','{20084} > {$MSSQL.PERCENT_READAHEAD.MAX} / 100 * {20085}','MSSQL: Too many physical reads occurring','','0','2','If this value makes up even a sizeable minority of the total Page Reads/sec (say, greater than 20% of the total page reads), you may have too many physical reads occurring.',NULL,'0','0','0','','0','','0','','0','','2a58729eb605461b853ec4e855878226');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17081','{20086} > {$MSSQL.PERCENT_COMPILATIONS.MAX}','MSSQL: Percent of adhoc queries running is high','','0','2','The lower this value is the better. High values often indicate excessive adhoc querying and should be as low as possible. If excessive adhoc querying is happening, try rewriting the queries as procedures or invoke the queries using sp_executeSQL. When rewriting isn\'t possible, consider using a plan guide or setting the database to parameterization forced mode.',NULL,'0','0','0','','0','','0','','0','MSSQL: Percent of adhoc queries running is over {$MSSQL.PERCENT_COMPILATIONS.MAX}% for 15m','c5c1840220cd44fcaa7b47e0d52309bb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17082','{20087} > {$MSSQL.PERCENT_RECOMPILATIONS.MAX}','MSSQL: Percent of times statement recompiles is high','','0','2','This number should be at or near zero, since recompiles can cause deadlocks and exclusive compile locks. This counter\'s value should follow in proportion to “Batch Requests/sec” and “SQL Compilations/sec”.',NULL,'0','0','0','','0','','0','','0','MSSQL: Percent of times statement recompiles is over {$MSSQL.PERCENT_RECOMPILATIONS.MAX}% for 15m','d5bad8ead8704e00bf332032e22ebfdd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17083','{20088} > 0.001','MSSQL: Number of index and table scans exceeds index searches in the last 15m','','0','2','Index searches are preferable to index and table scans. For OLTP applications, optimize for more index searches and less scans (preferably, 1 full scan for every 1000 index searches). Index and table scans are expensive I/O operations.',NULL,'0','0','0','','0','','0','','0','','3c22a74a94d641389b57a6013ddd10cb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17084','{20089}=0','MSSQL: Service is unavailable','','0','5','The TCP port of the MS SQL Server service is currently unavailable.',NULL,'0','0','0','','0','','0','','0','','152af5cc3ce04d4aa8ab255c37aed6c6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17085','{20090}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{20091}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','0ba64ff53885473ca8dcd333a770a7ed');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17086','{20092}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{20093}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','21afb343688c4c0e8189a7dbc4f441e1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17087','{20094}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{20095}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','cdbfc8fabf9f45fc95dedba327e30a1d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17088','{20096}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','e4aedbd5e0c64cf48831bf08192e19bf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17089','{28360} > {$PHP_FPM.QUEUE.WARN.MAX}','PHP-FPM: Queue utilization is high','','0','2','The queue for this pool reached {$PHP_FPM.QUEUE.WARN.MAX}% of its maximum capacity. Items in queue represent the current number of connections that have been initiated on this pool, but not yet accepted.',NULL,'0','0','0','','0','','0','','0','PHP-FPM: Queue utilization is high (over {$PHP_FPM.QUEUE.WARN.MAX}% for 15m)','a11264f0e1174b7fb81b457dad1a745f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17090','{20098}=0 or {20099}=1','PHP-FPM: Service is down','','0','4','',NULL,'0','0','0','','0','','1','','0','','10d92102d7a24327ada7869a41119fee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17091','{23252}<>{23253}','PHP-FPM: Manager changed','','0','1','PHP-FPM manager changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','PHP-FPM: Manager changed (new value received: {ITEM.VALUE})','231e0fbfb6e94f34b790576766244602');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17092','{20101}>0','PHP-FPM: Detected slow requests','','0','2','PHP-FPM detected slow request. A slow request means that it took more time to execute than expected (defined in the configuration of your pool).',NULL,'0','0','0','','0','','0','','0','','f30147d8e92f48aa8fedc2d28b8d7c70');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17093','{20102}=1','PHP-FPM: Failed to fetch info data','','0','1','Zabbix has not received data for items for the last 30 minutes',NULL,'0','0','0','','0','','1','','0','PHP-FPM: Failed to fetch info data (or no data for 30m)','bdf9962aee2049a8aec000b037b94d60');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17094','{20103}<10m','PHP-FPM: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','PHP-FPM: has been restarted (uptime < 10m)','c6966a6c3ff0452ab4fd112c9299e624');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17095','{23254}<>{23255} and length({23256})>0','PHP-FPM: Version has changed','','0','1','PHP-FPM version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','PHP-FPM: Version has changed (new version: {ITEM.VALUE})','fb110a37f0fc4a62b51df72e33bc3448');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17096','{20106}=0','PHP-FPM: Process is not running','','0','4','',NULL,'0','0','0','','0','','0','','0','','21a03d0ada634602ae9089a2cf3b4d70');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17097','{28361} > {$PHP_FPM.QUEUE.WARN.MAX}','PHP-FPM: Queue utilization is high','','0','2','The queue for this pool reached {$PHP_FPM.QUEUE.WARN.MAX}% of its maximum capacity. Items in queue represent the current number of connections that have been initiated on this pool, but not yet accepted.',NULL,'0','0','0','','0','','0','','0','PHP-FPM: Queue utilization is high (over {$PHP_FPM.QUEUE.WARN.MAX}% for 15m)','1ad5018fb19d4a9cb9e627f964bfd627');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17098','{20108}=0 or {20109}=1','PHP-FPM: Service is down','','0','4','',NULL,'0','0','0','','0','','1','','0','','5dcc607026d24e63b2f099540a5d8e9b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17099','{23257}<>{23258}','PHP-FPM: Manager changed','','0','1','PHP-FPM manager changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','PHP-FPM: Manager changed (new value received: {ITEM.VALUE})','8cfa50bcea744075954d0a9c8a132330');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17100','{20111}>0','PHP-FPM: Detected slow requests','','0','2','PHP-FPM detected slow request. A slow request means that it took more time to execute than expected (defined in the configuration of your pool).',NULL,'0','0','0','','0','','0','','0','','63bd00ee25af4b42a37dad1d742c66c0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17101','{20112}=1','PHP-FPM: Failed to fetch info data','','0','1','Zabbix has not received data for items for the last 30 minutes',NULL,'0','0','0','','0','','1','','0','PHP-FPM: Failed to fetch info data (or no data for 30m)','b44815446b3b464f883f4d0e799b020e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17102','{20113}<10m','PHP-FPM: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','PHP-FPM: has been restarted (uptime < 10m)','9ed4047bdcd74e649814c5d004ba78c7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17103','{23259}<>{23260} and length({23261})>0','PHP-FPM: Version has changed','','0','1','PHP-FPM version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','PHP-FPM: Version has changed (new version: {ITEM.VALUE})','d6c891de92c34bdba80a2ba88f975271');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17113','{20128}<20M','Lack of available memory on server','','0','3','',NULL,'0','0','0','','0','','0','','0','','80b6406fb8474fa9801e9dffb2ccd368');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17114','{20129}<20','{#FSNAME}: Free disk space is less than 20%','','0','2','',NULL,'0','2','0','','0','','0','','0','','74a1fc62bfe24b7eabe4e244c70dc384');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17115','{20130}<20','{#FSNAME}: Free inodes is less than 20%','','0','2','',NULL,'0','2','0','','0','','0','','0','','6ce467d05e8745409a177799bed34bb3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17116','{20131}<1024','Configured max number of opened files is too low on {HOST.NAME}','','0','1','',NULL,'0','0','0','','0','','0','','0','','00f035b7890d4227a84a942ba5730df3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17117','{20132}<256','Configured max number of processes is too low on {HOST.NAME}','','0','1','',NULL,'0','0','0','','0','','0','','0','','0d2417112c1e4ef38a4b763872cbb18b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17118','{20133}<20M','Lack of available memory on server {HOST.NAME}','','0','3','',NULL,'0','0','0','','0','','0','','0','','f8fcce1904ab46088fa80433b85f2e83');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17119','{20134}<50','Lack of free swap space on {HOST.NAME}','','0','2','It probably means that the systems requires more physical memory.',NULL,'0','0','0','','0','','0','','0','','a125b6786d55426eb19afe284cee1f76');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17120','{20135}<20','Filesystems: Free disk space is less than 20% on volume {#FSNAME}','','0','2','',NULL,'0','2','0','','0','','0','','0','','01ea8e7f30564586af3b48adb3c930c1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17121','{20136}<20','Filesystems: Free inodes is less than 20% on volume {#FSNAME}','','0','2','',NULL,'0','2','0','','0','','0','','0','','2b87c38f49b146f1b801319d03a19dc3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17122','{20137}<20M','Lack of available memory on server','','0','3','',NULL,'0','0','0','','0','','0','','0','','005730efb6a94c4a83c4265f42aa8dff');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17123','{20138}<20','{#FSNAME}: Free disk space is less than 20%','','0','2','',NULL,'0','2','0','','0','','0','','0','','07153df58e1a4a2bad7bf27a1ddf24a0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17124','{20139}<20','{#FSNAME}: Free inodes is less than 20%','','0','2','',NULL,'0','2','0','','0','','0','','0','','9d7587a6cae149d69e90cdefa024d254');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17125','{20140}<1024','Configured max number of opened files is too low','','0','1','',NULL,'0','0','0','','0','','0','','0','','933b14ead0974a9c96d36c833da90ebb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17126','{20141}<256','Configured max number of processes is too low','','0','1','',NULL,'0','0','0','','0','','0','','0','','0e89b2e0cad948c0b81bc223d2ed673c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17127','{20142}<20M','Lack of available memory on server','','0','3','',NULL,'0','0','0','','0','','0','','0','','c38dfc1b95d1463585d378f60d6a689a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17128','{20143}<20','{#FSNAME}: Free disk space is less than 20%','','0','2','',NULL,'0','2','0','','0','','0','','0','','673dbc5aec474abda3a3b392d31b6c11');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17129','{20144}<20','{#FSNAME}: Free inodes is less than 20%','','0','2','',NULL,'0','2','0','','0','','0','','0','','91cccd7935854a47bf4ca184b1d4d09a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17130','{20145}<1024','Configured max number of opened files is too low on {HOST.NAME}','','0','1','',NULL,'0','0','0','','0','','0','','0','','aab96e16dd194d72b9b049ffa8b41b02');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17131','{20146}<256','Configured max number of processes is too low on {HOST.NAME}','','0','1','',NULL,'0','0','0','','0','','0','','0','','149b9b77d17543fba253666ccbd6a607');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17132','{20147}<20M','Lack of available memory on server {HOST.NAME}','','0','3','',NULL,'0','0','0','','0','','0','','0','','bdf3c729b8bc4a9481c9041e4c1ea624');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17133','{20148}<50','Lack of free swap space on {HOST.NAME}','','0','2','It probably means that the systems requires more physical memory.',NULL,'0','0','0','','0','','0','','0','','0efa45d2c8884bc6b4090afc6408198b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17134','{20149}<20','Filesystems: Free disk space is less than 20% on volume {#FSNAME}','','0','2','',NULL,'0','2','0','','0','','0','','0','','9741c9425c984804ac8fb9a52ef22221');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17135','{20150}<20','Filesystems: Free inodes is less than 20% on volume {#FSNAME}','','0','2','',NULL,'0','2','0','','0','','0','','0','','7802203fd5ba471db2be4f35eda44a0b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17136','{20151}<256','Configured max number of processes is too low','','0','1','',NULL,'0','0','0','','0','','0','','0','','2a567bc9d5584dfea986b5b70c89fc65');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17137','{20152}<20M','Lack of available memory on server','','0','3','',NULL,'0','0','0','','0','','0','','0','','a0769befcb4e4c649557926824d7dbf3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17138','{20153}<50','Lack of free swap space','','0','2','It probably means that the systems requires more physical memory.',NULL,'0','0','0','','0','','0','','0','','7be6856162ca445388b13e524f01a3c2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17139','{20154}<20','{#FSNAME}: Free disk space is less than 20%','','0','2','',NULL,'0','2','0','','0','','0','','0','','e93165ebd8d94064836405c8c377bf62');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17140','{20155}<20','{#FSNAME}: Free inodes is less than 20%','','0','2','',NULL,'0','2','0','','0','','0','','0','','a56d85c866814b5e9273815beafba98c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17141','{20156}<1.597 or {20156}>2.019','BB +1.8V SM Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','55cc8ccf46954499a9c274ab301dd857');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17142','{20157}<1.646 or {20157}>1.960','BB +1.8V SM Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','55e3dc7d5bd34da0862d724ab5d18bb7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17143','{20158}<2.876 or {20158}>3.729','BB +3.3V Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','35a0dedd6fb244759a4feca2c1aff961');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17144','{20159}<2.970 or {20159}>3.618','BB +3.3V Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','bd2472feb90f40429fbbcd0bddbdd455');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17145','{20160}<2.876 or {20160}>3.729','BB +3.3V STBY Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','c0f82f508d38405d978c746f5c95a178');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17146','{20161}<2.970 or {20161}>3.618','BB +3.3V STBY Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','8f957e674af84229aa2e1ee78bf941a0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17147','{20162}<4.362 or {20162}>5.663','BB +5.0V Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','dec3da3d68b04f3c9ea16fabe17b8faa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17148','{20163}<4.483 or {20163}>5.495','BB +5.0V Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','e2683b71d36b4ab4ad8a98c964b19118');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17149','{20164}<5 or {20164}>66','BB Ambient Temp Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','0adcefe86a99468d9d7f0db2021ec8c9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17150','{20165}<10 or {20165}>61','BB Ambient Temp Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','6630637c02224bacbe3456a388233775');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17151','{20166}=0','Power','','0','2','',NULL,'0','0','0','','0','','0','','0','','85722b8734df45d589afd69262a498a4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17152','{20167}<5 or {20167}>90','Baseboard Temp Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','2e1ee68913a34cb78f31d5001f10793d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17153','{20168}<10 or {20168}>83','Baseboard Temp Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','c51b207bcbd041039a1f5a1a7973e262');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17154','{20169}<0.953 or {20169}>1.149','BB +1.05V PCH Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','ec813e0d4ccb48d2af680281034a901f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17155','{20170}<0.985 or {20170}>1.117','BB +1.05V PCH Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','2b0db1b054f842a4891162fbe33e50e8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17156','{20171}<0.683 or {20171}>1.543','BB +1.1V P1 Vccp Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','2e18cf768c2b468eae5549a326325c61');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17157','{20172}<0.708 or {20172}>1.501','BB +1.1V P1 Vccp Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','465d51e2a260431dbc7e8e7d39994274');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17158','{20173}<1.362 or {20173}>1.635','BB +1.5V P1 DDR3 Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','cb2aa635a08c495f9a540c60ce5d1333');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17159','{20174}<1.401 or {20174}>1.589','BB +1.5V P1 DDR3 Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','db42f9fd43f04849a07048f5b5a38a4c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17160','{20175}<2.982 or {20175}>3.625','BB +3.3V Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','9eea7fcd8b574f35aee3e3acb4267f4a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17161','{20176}<3.067 or {20176}>3.525','BB +3.3V Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','93fd529afb20436f94f9184bb2213335');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17162','{20177}<2.982 or {20177}>3.625','BB +3.3V STBY Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','3f5aa41308714b73ab555e36ecbe889e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17163','{20178}<3.067 or {20178}>3.525','BB +3.3V STBY Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','e631b683ce8f4d0ca5f22adb8ae791c7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17164','{20179}<4.471 or {20179}>5.538','BB +5.0V Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','54f7b55a71b544bf877b283593a2ca32');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17165','{20180}<4.630 or {20180}>5.380','BB +5.0V Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','a1e9f3ba84c54a39a255c682e43e793b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17166','{20181}<0 or {20181}>48','Front Panel Temp Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','b4b5e024b8b44e9eb3238405a0b1d223');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17167','{20182}<5 or {20182}>44','Front Panel Temp Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','b7125d20d8664530a78c9b3b56b2f479');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17168','{20183}=0','Power','','0','2','',NULL,'0','0','0','','0','','0','','0','','dea67d2c71804d369e9b948922a4e86b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17169','{20184}<324','System Fan 2 Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','95653ec3aa484822888818ea0fd6261b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17170','{20185}<378','System Fan 2 Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','0a6c1831607a4f059e5325fcc11e34cf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17171','{20186}<324','System Fan 3 Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','dc2255a797ef424ea22f553f8de53061');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17172','{20187}<378','System Fan 3 Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','f1c938c42c6a4933b108da70cb2daf5d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17173','{20188} * 100 / {20189} > {$ORACLE.PROCESSES.MAX.WARN}','Oracle: Too many active processes','','0','2','Active processes are using more than {$ORACLE.PROCESSES.MAX.WARN}% of the available number of processes.',NULL,'0','0','0','','0','','0','','0','Oracle: Too many active processes (over {$ORACLE.PROCESSES.MAX.WARN}% for 5 min)','3f265c15b3d042d79b1aa598f7249738');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17174','{20190} * 100 / {20191} > {$ORACLE.SESSIONS.MAX.WARN}','Oracle: Too many active sessions','','0','2','Active sessions are using more than {$ORACLE.SESSIONS.MAX.WARN}% of the available sessions.',NULL,'0','0','0','','0','','0','','0','Oracle: Too many active sessions (over {$ORACLE.SESSIONS.MAX.WARN}% for 5 min)','d9977c48c6e7435eafde4cabc43bb5fc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17175','{20192} * 100 / {20193} > {$ORACLE.DB.FILE.MAX.WARN}','Oracle: Too many database files','','0','2','Number of datafiles is higher than {$ORACLE.DB.FILE.MAX.WARN}% of the available datafile files limit.',NULL,'0','0','0','','0','','0','','0','Oracle: Too many database files (over {$ORACLE.DB.FILE.MAX.WARN}% for 5 min)','362882973d0b45d1a09a687353734032');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17176','{20194} * 100 / {20195} > {$ORACLE.PGA.USE.MAX.WARN}','Oracle: Total PGA inuse is too high','','0','2','Total PGA in use is more than {$ORACLE.PGA.USE.MAX.WARN}% of PGA_AGGREGATE_TARGET.',NULL,'0','0','0','','0','','0','','0','Oracle: Total PGA inuse is too high (over {$ORACLE.PGA.USE.MAX.WARN}% for 5 min)','aecb78fc9a7549f2b8e68325530bcd99');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17177','{23464}<>{23465} and length({23466})>0','Oracle: Instance hostname has changed','','0','1','Oracle DB Instance hostname has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Oracle: Instance hostname has changed (new hostname received: {ITEM.VALUE})','346ef7cacf534988892970d699ef4028');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17178','{23467}<>{23468} and length({23469})>0','Oracle: Instance name has changed','','0','1','Oracle DB Instance name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Oracle: Instance name has changed (new name received: {ITEM.VALUE})','ed394860378642d5b9f220327ead6766');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17179','{20200}=0','Oracle: Connection to database is unavailable','','0','5','Connection to Oracle Database is currently unavailable.',NULL,'0','0','0','','0','','0','','0','','df6b0f5dd50848cc8c2e67947df0a5e1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17180','{20201} < {$ORACLE.REDO.MIN.WARN}','Oracle: Number of REDO logs available for switching is too low','','0','2','Number of available for log switching inactive/unused REDOs is low (Database down risk)',NULL,'0','0','0','','0','','0','','0','Oracle: Number of REDO logs available for switching is too low (less {$ORACLE.REDO.MIN.WARN} for 5 min)','18dba6067a254bdd99a363c3d7b9bdb2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17182','{20203} > {$ORACLE.SESSIONS.LOCK.MAX.WARN}','Oracle: Too many locked sessions','','0','2','Number of locked sessions is over {$ORACLE.SESSIONS.LOCK.MAX.WARN}% of the running sessions.',NULL,'0','0','0','','0','','0','','0','Oracle: Too many locked sessions (over {$ORACLE.SESSIONS.LOCK.MAX.WARN}% for 5 min)','504e5d964de645679ce448165dadd027');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17183','{20204} > {$ORACLE.SESSION.LONG.LOCK.MAX.WARN}','Oracle: Too many sessions locked','','0','2','Number of sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME} seconds is too high. Long-term locks can negatively affect database performance, therefore, if they are detected, you should first find the most difficult queries from the database point of view and analyze possible resource leaks.',NULL,'0','0','0','','0','','0','','0','Oracle: Too many sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s (over {$ORACLE.SESSION.LONG.LOCK.MAX.WARN} for 5 min)','5abc07cd48514a0dac90ce946ce6bc3a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17184','{20205}<{$ORACLE.SHARED.FREE.MIN.WARN}','Oracle: Shared pool free is too low','','0','2','The shared pool free memory percent has been less than {$ORACLE.SHARED.FREE.MIN.WARN}% in the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','Oracle: Shared pool free is too low (less {$ORACLE.SHARED.FREE.MIN.WARN}% for 5m)','80dbf89c86764cf09d2c5ec834e8940c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17185','{20206}=1','Oracle: Failed to fetch info data','','0','1','Zabbix has not received data for items for the last 5 minutes. The database might be unavailable for connecting.',NULL,'0','0','0','','0','','0','','0','Oracle: Failed to fetch info data (or no data for 30m)','bcdaf519783f453e81d7064207f8bd30');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17186','{20207}<10m','Oracle: has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Oracle: has been restarted (uptime < 10m)','5eae478e85834eee91b94680d529dcdb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17187','{20208} < {$ORACLE.EXPIRE.PASSWORD.MIN.WARN}','Oracle: Zabbix account will expire soon','','0','2','Password for zabbix user in the database will expire soon.',NULL,'0','0','0','','0','','0','','0','Oracle: Zabbix account will expire soon (under {$ORACLE.EXPIRE.PASSWORD.MIN.WARN} days)','5eaa700c3bb74399ad2d26c382397415');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17188','{23470}<>{23471} and length({23472})>0','Oracle: Version has changed','','0','1','Oracle DB version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Oracle: Version has changed (new version value received: {ITEM.VALUE})','4a68bcb6149c4c839e263c949343add8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17189','{20211}<2','Archivelog \'{#DEST_NAME}\': Log Archive is not valid','','0','4','ARL destination not in 3 - Valid or 2 - Deferred.',NULL,'0','2','0','','0','','0','','0','','e2d393c0ff2f420097e19890bcbe215c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17190','{20212} = 0 and {20213} = 1','Oracle Database \'{#DBNAME}\': Force logging is deactivated for DB with active Archivelog','','0','2','Force Logging mode - it is very important metric for Databases in \'ARCHIVELOG\'. This feature allows to forcibly write all transactions to the REDO.',NULL,'0','2','0','','0','','0','','0','','049473f763d84700b62abf5c914390fe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17191','{20214}=1','Oracle Database \'{#DBNAME}\': Open status in mount mode','','0','2','The Oracle DB has a MOUNTED state.',NULL,'0','2','0','','0','','0','','0','','ef1c57d8f7d34c02bf0b7347d9fddf54');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17192','{23473}<>{23474}','Oracle Database \'{#DBNAME}\': Open status has changed','','0','1','Oracle DB open status has changed. Ack to close.',NULL,'0','2','0','','0','','1','','0','Oracle Database \'{#DBNAME}\': Open status has changed (new value received: {ITEM.VALUE})','fb642c2cfeb142409c67a7755d1047cc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17193','{23475}<>{23476}','Oracle Database \'{#DBNAME}\': Role has changed','','0','1','Oracle DB role has changed. Ack to close.',NULL,'0','2','0','','0','','1','','0','Oracle Database \'{#DBNAME}\': Role has changed (new value received: {ITEM.VALUE})','24fef0b751fd4d089eced3c210954b4f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17194','{20217}>{$ORACLE.ASM.USED.PCT.MAX.WARN}','ASM \'{#DG_NAME}\': Disk group usage is too high','','0','2','Usage percent of ASM disk group is over {$ORACLE.ASM.USED.PCT.MAX.WARN}',NULL,'0','2','0','','0','','0','','0','ASM \'{#DG_NAME}\': Disk group usage is too high (over {$ORACLE.ASM.USED.PCT.MAX.WARN}% for 5m)','af6ff1d099524209b2806b1257e9a8e3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17195','{20218}>{$ORACLE.ASM.USED.PCT.MAX.HIGH}','ASM \'{#DG_NAME}\': Disk group usage is too high','','0','4','Usage percent of ASM disk group is over {$ORACLE.ASM.USED.PCT.MAX.WARN}',NULL,'0','2','0','','0','','0','','0','ASM \'{#DG_NAME}\': Disk group usage is too high (over {$ORACLE.ASM.USED.PCT.MAX.HIGH}% for 5m)','b8aa1b00e2574e35bf71554cabfffcfc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17196','{20219}=1','Oracle Database \'{#DBNAME}\': Open status in mount mode','','0','2','The Oracle DB has a MOUNTED state.',NULL,'0','2','0','','0','','0','','0','','a6921cc3b42843dcb5624b3bb172f996');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17197','{23477}<>{23478}','Oracle Database \'{#DBNAME}\': Open status has changed','','0','1','Oracle DB open status has changed. Ack to close.',NULL,'0','2','0','','0','','1','','0','Oracle Database \'{#DBNAME}\': Open status has changed (new value received: {ITEM.VALUE})','61f48e1d858f4e95a603b32ee1c409dc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17198','{20221}=2','Oracle TBS \'{#TABLESPACE}\': Tablespace is OFFLINE','','0','2','The tablespace is in the offline state.',NULL,'0','2','0','','0','','0','','0','','832f908ca3b84a3c9a030b5d33b96016');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17199','{23479}<>{23480}','Oracle TBS \'{#TABLESPACE}\': Tablespace status has changed','','0','1','Oracle tablespace status has changed. Ack to close.',NULL,'0','2','0','','0','','1','','0','Oracle TBS \'{#TABLESPACE}\': Tablespace status has changed (new value received: {ITEM.VALUE})','2e84836974b340b5b916eed08e1fcdf4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17222','{20285}<10m','Asterisk: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','Asterisk: has been restarted (uptime < 10m)','100d38b62c1d4ce298a9fadfbab19e4c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17223','{20286}=1','Asterisk: Failed to fetch AMI page','','0','2','Zabbix has not received data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','Asterisk: Failed to fetch AMI page (or no data for 30m)','35ca01e504a548db9d4db8be1390d6b9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17224','{20287}<10m','Asterisk: has been reloaded','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','Asterisk: has been reloaded (uptime < 10m)','4e99b65188264ba1aa80e24662f9b3cd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17225','{25005}<>{25006} and length({25007})>0','Asterisk: Version has changed','','0','1','Asterisk version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Asterisk: Version has changed (new version: {ITEM.VALUE})','f1a260626ae6446d89e1e725e14c1098');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17226','{20290}>{$AMI.RESPONSE_TIME.MAX.WARN}','Asterisk: Service response time is too high','','0','2','',NULL,'0','0','0','','0','','1','','0','Asterisk: Service response time is too high (over {$AMI.RESPONSE_TIME.MAX.WARN} for 5m)','dbc74502be01498194003dc1a3d90014');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17227','{20291}=0','Asterisk: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','1fa3370fa93f4d07a2c470f993096554');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17229','{20293}="UNKNOWN" or {20293}="UNREACHABLE"','IAX trunk "{#OBJECTNAME}": IAX trunk {#OBJECTNAME} has a state {ITEM.VALUE}','','0','3','The IAX trunk is unable to establish a connection with a neighbor due to network issues or incorrect configuration.',NULL,'0','2','0','','0','','0','','0','','db595245acef4ec9b771c266c14100d2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17231','{20295}="Unavailable"','PJSIP trunk "{#OBJECTNAME}": PJSIP trunk {#OBJECTNAME} has a state Unavailable','','0','3','The PJSIP trunk is unable to establish a connection with a neighbor due to network issues or incorrect configuration.',NULL,'0','2','0','','0','','0','','0','','6f31d886d6954b82874d38646b233689');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17234','{20298}="UNKNOWN" or {20298}="UNREACHABLE"','SIP trunk "{#OBJECTNAME}": SIP trunk {#OBJECTNAME} has a state {ITEM.VALUE}','','0','3','The SIP trunk is unable to establish a connection with a neighbor due to network issues or incorrect configuration.',NULL,'0','2','0','','0','','0','','0','','39cac88e9263470da6e4b1a08f806c58');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17240','{20312}/{20313}*100>80','Getting closer to process limit','','0','2','',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit.','0','Getting closer to process limit (over 80% used)','e15f1c71f77b4c86b8ae71469b2f297e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17243','{20318}/{20319}>{$LOAD_AVG_PER_CPU.MAX.WARN}\r\nand {20320}>0\r\nand {20321}>0','Load average is too high','','0','3','Per CPU load average is too high. Your system may be slow to respond.',NULL,'0','0','0','','0','','0','Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}','0','Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','813c4c7139a3497dbb6b9b977eb51842');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17244','{20322}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','685db9802cc74b5aab4d9744ca3ee32e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17245','{20323}<{$KERNEL.MAXFILES.MIN}','Configured max number of open filedescriptors is too low','','0','1','',NULL,'0','0','0','','0','','0','','0','Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN})','fd194c5435c74dbdbefb396550497580');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17246','{20324}<{$KERNEL.MAXPROC.MIN}','Configured max number of processes is too low','','0','1','',NULL,'0','0','0','','0','','0','','0','Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN})','1ddbc55594d540f7b30239a4e87a3b97');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17247','{24316}<>{24317} and length({24318})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','071532526e8842f8935bf9373a85b7da');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17248','{20327}=0','System time is out of sync','','0','2','The host system time is different from the Zabbix server time.',NULL,'0','0','0','','0','','1','','0','System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s)','350ceb73bee84b21b1f5c559e6697879');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17249','{24319}<>{24320} and length({24321})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','fc45ac0cfc7641f2a52b95830df3e880');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17250','{20330}<10m','has been restarted','','0','2','The host uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','7b13d56caa094a8d95c0f4e948078366');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17251','{24322}<>{24323}','/etc/passwd has been changed','','0','1','',NULL,'0','0','0','','0','','1','','0','','a49d7ca808c345ec8ef516fdc3b0d5ff');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17266','{20354} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {20355} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}','{#DEVNAME}: Disk read/write request responses are too high','','0','2','This trigger might indicate disk {#DEVNAME} saturation.',NULL,'0','2','0','','0','','1','','0','{#DEVNAME}: Disk read/write request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} ms for 15m or write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} ms for 15m)','af9c4b7070f94999a2a1569de0948822');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17267','{31219}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and\r\n(({31220}-{31221})<{$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"} or {31222}<1d)','{#FSNAME}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%)','6f3a431ce1774d7e9cec073197f088ca');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17268','{31223}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and\r\n(({31224}-{31225})<{$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"} or {31226}<1d)','{#FSNAME}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%)','fd163fa0d1b0419797957d80222218bd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17269','{20364}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}','{#FSNAME}: Running out of free inodes','','0','3','It may become impossible to write to disk if there are no index nodes left.\r\nAs symptoms, \'No space left on device\' or \'Disk is full\' errors may be seen even though free space is available.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%)','6785dec80d674c79a6b4c84a04165e25');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17270','{20365}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}','{#FSNAME}: Running out of free inodes','','0','2','It may become impossible to write to disk if there are no index nodes left.\r\nAs symptoms, \'No space left on device\' or \'Disk is full\' errors may be seen even though free space is available.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%)','8a453a00627c4f1bbf0724dbdf4e760a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17271','{31014}<0 and {31015}>0\r\nand\r\n({31016}=6 or {31016}=1)\r\nand\r\n({31017}<>2)','Interface {#IFNAME}: Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({31014}>0 and {31018}>0) or\r\n({31017}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','6ce7c1f3b54641bb87684f9c5336d1da');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17273','{$IFCONTROL:"{#IFNAME}"}=1 and {24332}=2 and ({24333}<>{24334})','Interface {#IFNAME}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24332}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','acaf449feee44624995b9c3d0673cedc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17283','{20399} - {20400} * 2 > {$CPU.QUEUE.CRIT.MAX}','CPU queue length is too high','','0','2','The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. According to actual observations, PQL should not exceed the number of cores * 2. To fine-tune the conditions, use the macro {$CPU.QUEUE.CRIT.MAX }.',NULL,'0','0','0','','0','','0','','0','CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m)','dfba6b17ab94449181584c8a4410f50f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17285','{20403}>{$CPU.INTERRUPT.CRIT.MAX}','CPU interrupt time is too high','','0','2','"The CPU Interrupt Time in the last 5 minutes exceeds {$CPU.INTERRUPT.CRIT.MAX}%."\r\nThe Processor Information\\% Interrupt Time is the time the processor spends receiving and servicing\r\nhardware interrupts during sample intervals. This value is an indirect indicator of the activity of\r\ndevices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication\r\nlines, network interface cards and other peripheral devices. This is an easy way to identify a potential\r\nhardware failure. This should never be higher than 20%.',NULL,'0','0','0','','0','','0','','0','CPU interrupt time is too high (over {$CPU.INTERRUPT.CRIT.MAX}% for 5m)','cbcd8d6c2eab4f18be5a40c2128e1b76');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17286','{20404}>{$CPU.PRIV.CRIT.MAX}','CPU privileged time is too high','','0','2','The CPU privileged time in the last 5 minutes exceeds {$CPU.PRIV.CRIT.MAX}%.',NULL,'0','0','0','','0','','0','','0','CPU privileged time is too high (over {$CPU.PRIV.CRIT.MAX}% for 5m)','150f35f3b43c48eb995a1e8f1211e9b3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17287','{20405}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','5f1bdb9eb4c44e8a8f33afee709b0667');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17288','{24359}<>{24360} and length({24361})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','2f5aa644755c4d18a3eafc74bde2d3ad');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17289','{20408}=0','System time is out of syn','','0','2','The host system time is different from the Zabbix server time.',NULL,'0','0','0','','0','','1','','0','System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s)','ed8075fd5332427ca0f9b56d55f4912b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17290','{20409}<10m','Host has been restarted','','0','2','The device uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Host has been restarted (uptime < 10m)','13f9c722d9664d988a97a1c8123ad17a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17291','{20410}<{$MEM.PAGE_TABLE_CRIT.MIN}','Number of free system page table entries is too low','','0','2','The Memory Free System Page Table Entries is less than {$MEM.PAGE_TABLE_CRIT.MIN} for 5 minutes. If the number is less than 5,000, there may well be a memory leak.',NULL,'0','0','0','','0','','0','','0','Number of free system page table entries is too low (less {$MEM.PAGE_TABLE_CRIT.MIN} for 5m)','24fd9695799846b3ba812f8ec6148972');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17292','{20411}>{$MEM.PAGE_SEC.CRIT.MAX}','The Memory Pages/sec is too high','','0','2','The Memory Pages/sec in the last 5 minutes exceeds {$MEM.PAGE_SEC.CRIT.MAX}. If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak.',NULL,'0','0','0','','0','','0','','0','The Memory Pages/sec is too high (over {$MEM.PAGE_SEC.CRIT.MAX} for 5m)','655191afccad4673a641808be5500b46');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17305','{31305}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and\r\n(({31306}-{31307})<{$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"} or {31308}<1d)','{#FSLABEL}({#FSNAME}): Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.\r\nSecond condition should be one of the following:\r\n- The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"}.\r\n- The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSLABEL}({#FSNAME}): Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%)','d09b152f2b53451b9daec16eadeaa0ee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17306','{31309}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and\r\n(({31310}-{31311})<{$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"} or {31312}<1d)','{#FSLABEL}({#FSNAME}): Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.\r\nSecond condition should be one of the following:\r\n- The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"}.\r\n- The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSLABEL}({#FSNAME}): Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%)','c3e9ee6d771d4047b4351e5870b8ca01');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17310','{$IFCONTROL:"{#IFNAME}"}=1 and {24365}<>2 and ({24366}<>{24367})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:\\"{#IFNAME}\\"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important.\r\n No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status is different from Connected(2).\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24365}=2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','d2af1fae64c940f2b2b923e159b836e6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17311','{20449}>{$VFS.DEV.UTIL.MAX.WARN}','{#DEVNAME}: Disk is overloaded','','0','2','The disk appears to be under heavy load',NULL,'0','2','0','','0','','1','','0','{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m)','6baacd2fab15466ab3b12dcfb7e2980a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17312','{20450}<>0','"{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running','','0','3','The service has a state other than "Running" for the last three times.',NULL,'0','2','0','','0','','0','','0','"{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME})','df3247515e2e4b48b2decd8401c11736');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17322','{31327}>{$TEMP_WARN:"{#SENSOR_INFO}"}\r\nor\r\n{31328}={$TEMP_WARN_STATUS}','{#SENSOR_INFO}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31329}<{$TEMP_WARN:"{#SENSOR_INFO}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SENSOR_INFO}"}','726afdedb08848bd86ab4161cef29f42');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17332','{31389}>{$TEMP_CRIT:"{#SENSOR_INFO}"}\r\nor\r\n{31390}={$TEMP_CRIT_STATUS}','{#SENSOR_INFO}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31391}<{$TEMP_CRIT:"{#SENSOR_INFO}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SENSOR_INFO}"}','61c220a2ae9a4074baf4051214679e77');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17333','{31392}>{$TEMP_WARN:"{#SENSOR_INFO}"}\r\nor\r\n{31393}={$TEMP_WARN_STATUS}','{#SENSOR_INFO}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31394}<{$TEMP_WARN:"{#SENSOR_INFO}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SENSOR_INFO}"}','d6f38aebdcde46e688350b40d5cbe85b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17353','{23182}<>{23183} and length({23184})>0','Ceph: Minimum monitor release version has changed','','0','1','Ceph version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Ceph: Minimum monitor release version has changed (new version: {ITEM.VALUE})','716f166b3943443aba70a4faed882ffb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17354','{20543}=2','Ceph: Cluster in ERROR state','','0','3','',NULL,'0','0','0','','0','','1','','0','','6ab06350bd8b426681f1b8bddde76a13');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17355','{20544}=1','Ceph: Cluster in WARNING state','','0','2','',NULL,'0','0','1','{20544}=0','0','','1','','0','','8b6ba1a7ae014e80a5287ffd13b5d8aa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17356','{20545}=0','Ceph: Can not connect to cluster','','0','3','Connection to Ceph RESTful module is broken (if there is any error presented including AUTH and configuration issues).',NULL,'0','0','0','','0','','0','','0','','9ffc9a5c3d1c47d288c665c8be7d2fbb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17357','{20546} > {20547}*100','Ceph: OSD osd.{#OSDNAME} is full','','0','3','',NULL,'0','2','0','','0','','0','','0','','5d7a028166584c29b959914ce904a713');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17358','{20548} > {20549}*100','Ceph: Ceph OSD osd.{#OSDNAME} is near full','','0','2','',NULL,'0','2','0','','0','','0','','0','','cd04e8d542a04bdf89abad7ee4719e75');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17359','{20550} = 0','Ceph: OSD osd.{#OSDNAME} is down','','0','3','OSD osd.{#OSDNAME} is marked "down" in the osdmap.\r\nThe OSD daemon may have been stopped, or peer OSDs may be unable to reach the OSD over the network.',NULL,'0','2','0','','0','','0','','0','','21535bb935b44b3aa073542db3cc7827');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17368','{20566}>{20567}*{20568}/100','Squid: Swap usage is more than high watermark','','0','4','',NULL,'0','0','0','','0','','0','Used: {ITEM.LASTVALUE1}','0','Squid: Swap usage is more than high watermark (>{ITEM.VALUE2}%)','5676f1e02dc7413fb1a34543ccaf1384');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17369','{20569}>{20570}*{20571}/100','Squid: Swap usage is more than low watermark','','0','2','',NULL,'0','0','0','','0','','0','Used: {ITEM.LASTVALUE1}','0','Squid: Swap usage is more than low watermark (>{ITEM.VALUE2}%)','2cf87472ebf74239bb782580448f696c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17370','{20572}=0','Squid: Port {$SQUID.HTTP.PORT} is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','7e0f0a9e8a9d4f6193946e4f8cd4a2e3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17371','{20573}<{$SQUID.FILE.DESC.WARN.MIN}','Squid: Squid is running out of file descriptors','','0','2','',NULL,'0','0','0','','0','','0','','0','Squid: Squid is running out of file descriptors (<{$SQUID.FILE.DESC.WARN.MIN})','40c41c87e46443f886506da5e580657e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17372','{20574}<10m','Squid: Squid has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','Squid: Squid has been restarted (uptime < 10m)','89efc9400197427fa718395286dd3583');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17373','{23270}<>{23271} and length({23272})>0','Squid: Squid version has been changed','','0','1','Squid version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Squid: Version has changed (new version: {ITEM.VALUE})','c5991152d2da4df7ae0d978233c5a859');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17390','{20595} > {$PG.CHECKPOINTS_REQ.MAX.WARN}','PostgreSQL: Required checkpoints occurs too frequently','','0','3','Checkpoints are points in the sequence of transactions at which it is guaranteed that the heap and index data files have been updated with all information written before that checkpoint. At checkpoint time, all dirty data pages are flushed to disk and a special checkpoint record is written to the log file.\r\nhttps://www.postgresql.org/docs/current/wal-configuration.html',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Required checkpoints occurs too frequently (over {$PG.CHECKPOINTS_REQ.MAX.WARN})','65e7954489854ad3ad1698dead7c4c02');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17391','{20596} = 1','PostgreSQL: Failed to get items','','0','2','Zabbix has not received data for items for the last 30 minutes',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Failed to get items (no data for 30m)','768d28b9360b46cda3065f5082ba97ac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17392','{20597} < {$PG.CACHE_HITRATIO.MIN.WARN}','PostgreSQL: Cache hit ratio too low','','0','2','',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Cache hit ratio too low (under {$PG.CACHE_HITRATIO.MIN.WARN} in 5m)','4d87cc71b40f4b59ad27f30f33b15a69');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17393','{23498}<>{23499} and length({23500})>0','PostgreSQL: Configuration has changed','','0','1','',NULL,'0','0','0','','0','','0','','0','','b727cfa6d3de4063b6a2dcb6cc84e27b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17394','{20600} > {$PG.CONN_TOTAL_PCT.MAX.WARN}','PostgreSQL: Total number of connections is too high','','0','3','',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Total number of connections is too high (over {$PG.CONN_TOTAL_PCT.MAX.WARN} in 5m)','54ef12b8ff1e4383a3097c71478ceefa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17395','{20601} > {$PG.PING_TIME.MAX.WARN}','PostgreSQL: Response too long','','0','3','',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Response too long (over {$PG.PING_TIME.MAX.WARN})','e19b5630737b4c63886b5df77a3c748c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17396','{20602} = 0','PostgreSQL: Service is down','','0','4','',NULL,'0','0','0','','0','','0','','0','','6d9c2b5353ce4f6baeeb0f254fb7d1e2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17397','{20603} > {$PG.REPL_LAG.MAX.WARN}','PostgreSQL: Streaming lag with {#MASTER} is too high','','0','3','',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Streaming lag with {#MASTER} is too high (over {$PG.REPL_LAG.MAX.WARN} in 5m)','11831c52e86445498eed42de6a629b65');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17398','{20604}=0','PostgreSQL: Replication is down','','0','3','',NULL,'0','0','0','','0','','0','','0','','aef1e1d2bab540f8ab738b4a3fad863c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17399','{20605} < 10m','PostgreSQL: Service has been restarted','','0','1','PostgreSQL uptime is less than 10 minutes',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Service has been restarted (uptime < 10m)','85565aba402740868a16c0e4639a98fc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17400','{23501}<>{23502} and length({23503})>0','PostgreSQL: Version has changed','','0','1','',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Version has changed (new version value received: {ITEM.VALUE})','8111eb42b0e74fffb43da474677ebc2f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17401','{20608} > {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"}','DB {#DBNAME}: Too many recovery conflicts','','0','3','The primary and standby servers are in many ways loosely connected. Actions on the primary will have an effect on the standby. As a result, there is potential for negative interactions or conflicts between them.\r\nhttps://www.postgresql.org/docs/current/hot-standby.html#HOT-STANDBY-CONFLICT',NULL,'0','2','0','','0','','0','','0','DB {#DBNAME}: Too many recovery conflicts (over {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"} in 5m)','3b51f02258bd4e02829f04ca016dd01d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17402','{20609} > {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"}','DB {#DBNAME}: Deadlock occurred','','0','4','',NULL,'0','2','0','','0','','0','','0','DB {#DBNAME}: Deadlock occurred (over {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} in 5m)','3bee63fa04d94586937e22aafab9bdd8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17403','{20610}<{$PG.FROZENXID_PCT_STOP.MIN.HIGH:"{#DBNAME}"}','DB {#DBNAME}: VACUUM FREEZE is required to prevent wraparound','','0','3','Preventing Transaction ID Wraparound Failures\r\nhttps://www.postgresql.org/docs/current/routine-vacuuming.html#VACUUM-FOR-WRAPAROUND',NULL,'0','2','0','','0','','0','','0','DB {#DBNAME}: VACUUM FREEZE is required to prevent wraparound (frozen XID less than {$PG.FROZENXID_PCT_STOP.MIN.HIGH:"{#DBNAME}"} %)','709df9c1e29a4ff68a3de9423ff7ae58');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17404','{20611}>{$PG.LOCKS.MAX.WARN:"{#DBNAME}"}','DB {#DBNAME}: Number of locks is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','DB {#DBNAME}: Number of locks is too high (over {$PG.LOCKS.MAX.WARN:"{#DBNAME}"} in 5m)','ef7d3c9866df44aa9b378e7f125a34de');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17405','{20612}>{$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"}','DB {#DBNAME}: Too many slow queries','','0','2','',NULL,'0','2','0','','0','','0','','0','DB {#DBNAME}: Too many slow queries (over {$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"} in 5m)','facc8f6976664da4ad5567d270f0f311');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17406','{20613} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','f23c654001384f6e981fd33aeab0af6f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17407','{20614} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','57f8757b80914c248a35d0899791a48e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17408','{20615} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','e2c692d5d4ca49b688656a1abe6228e5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17409','{20616} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','e163c4af8ff1451a8728e569c5d3c04c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17410','{23173}<>{23174} and length({23175})>0','Broker {#JMXBROKERNAME}: Version has been changed','','0','1','Broker {#JMXBROKERNAME} version has changed. Ack to close.',NULL,'0','2','0','','0','','1','','0','Broker {#JMXBROKERNAME}: Version has changed (new version: {ITEM.VALUE})','7902d81681874aa3acf33d90316f9864');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17411','{20619}>{$ACTIVEMQ.MEM.MAX.HIGH:"{#JMXBROKERNAME}"}','Broker {#JMXBROKERNAME}: Memory usage is too high','','0','4','',NULL,'0','2','0','','0','','0','','0','Broker {#JMXBROKERNAME}: Memory usage is too high (over {$ACTIVEMQ.MEM.MAX.HIGH:"{#JMXBROKERNAME}"}%)','e805b8cca9744940affc3bdd234a7587');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17412','{20620}>{$ACTIVEMQ.MEM.MAX.WARN:"{#JMXBROKERNAME}"}','Broker {#JMXBROKERNAME}: Memory usage is too high','','0','3','',NULL,'0','2','0','','0','','0','','0','Broker {#JMXBROKERNAME}: Memory usage is too high (over {$ACTIVEMQ.MEM.MAX.WARN:"{#JMXBROKERNAME}"}%)','3e741e339fff422fae67b5333faa1e20');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17413','{20621}>{$ACTIVEMQ.STORE.MAX.HIGH:"{#JMXBROKERNAME}"}','Broker {#JMXBROKERNAME}: Storage usage is too high','','0','4','',NULL,'0','2','0','','0','','0','','0','Broker {#JMXBROKERNAME}: Storage usage is too high (over {$ACTIVEMQ.STORE.MAX.HIGH:"{#JMXBROKERNAME}"}%)','2e1c9f92c87f446ebab68ac638c713c5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17414','{20622}>{$ACTIVEMQ.STORE.MAX.WARN:"{#JMXBROKERNAME}"}','Broker {#JMXBROKERNAME}: Storage usage is too high','','0','3','',NULL,'0','2','0','','0','','0','','0','Broker {#JMXBROKERNAME}: Storage usage is too high (over {$ACTIVEMQ.STORE.MAX.WARN:"{#JMXBROKERNAME}"}%)','271b33edce84439a91d6a253f45e5bf6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17415','{20623}>{$ACTIVEMQ.TEMP.MAX.HIGH}','Broker {#JMXBROKERNAME}: Temp usage is too high','','0','4','',NULL,'0','2','0','','0','','0','','0','Broker {#JMXBROKERNAME}: Temp usage is too high (over {$ACTIVEMQ.TEMP.MAX.WARN:"{#JMXBROKERNAME}"}%)','422252a81e3e4261bbd7f331f48c6257');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17416','{20624}>{$ACTIVEMQ.TEMP.MAX.WARN}','Broker {#JMXBROKERNAME}: Temp usage is too high','','0','3','',NULL,'0','2','0','','0','','0','','0','Broker {#JMXBROKERNAME}: Temp usage is too high (over {$ACTIVEMQ.TEMP.MAX.WARN:"{#JMXBROKERNAME}"}%)','acb8f6e0762f48c2bd4c03f2a55b2f44');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17417','{20625}<{$ACTIVEMQ.BROKER.CONSUMERS.MIN.HIGH:"{#JMXBROKERNAME}"}','Broker {#JMXBROKERNAME}: Consumers count is too low','','0','4','',NULL,'0','2','0','','0','','0','','0','Broker {#JMXBROKERNAME}: Consumers count is too low (below {$ACTIVEMQ.BROKER.CONSUMERS.MIN.HIGH:"{#JMXBROKERNAME}"} for {$ACTIVEMQ.BROKER.CONSUMERS.MIN.TIME:"{#JMXBROKERNAME}"})','6906f0a1ef804da4a1203ca9d96ab8a0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17419','{20627}<{$ACTIVEMQ.BROKER.PRODUCERS.MIN.HIGH:"{#JMXBROKERNAME}"}','Broker {#JMXBROKERNAME}: Producers count is too low','','0','4','',NULL,'0','2','0','','0','','0','','0','Broker {#JMXBROKERNAME}: Producers count is too low (below {$ACTIVEMQ.BROKER.PRODUCERS.MIN.HIGH:"{#JMXBROKERNAME}"} for {$ACTIVEMQ.BROKER.PRODUCERS.MIN.TIME:"{#JMXBROKERNAME}"})','2ee6ad72a98143b59d8d1136fffdbe50');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17420','{20628}<10m','Broker {#JMXBROKERNAME}: Broker has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','2','0','','0','','1','','0','Broker {#JMXBROKERNAME}: Broker has been restarted (uptime < 10m)','6abb3813bb52465aa4a5f4bebfe999c3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17421','{20629}<{$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} and {20630}>{$ACTIVEMQ.BROKER.CONSUMERS.MIN.HIGH:"{#JMXBROKERNAME}"}','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count is too low','','0','3','',NULL,'0','2','1','{20631}>={$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"}','0','','1','','0','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count is too low (below {$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} for {$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.TIME:"{#JMXDESTINATIONNAME}"})','c366d4b329c0471386566d6795c5787f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17423','{20634}<{$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} and {20635}>{$ACTIVEMQ.BROKER.PRODUCERS.MIN.HIGH:"{#JMXBROKERNAME}"}','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count is too low','','0','3','',NULL,'0','2','1','{20636}>={$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"}','0','','1','','0','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count is too low (below {$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} for {$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.TIME:"{#JMXDESTINATIONNAME}"})','725d0270554e4fe59d138becfa3e6377');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17425','{20638}>{$ACTIVEMQ.MEM.MAX.HIGH:"{#JMXDESTINATIONNAME}"}','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage is too high','','0','4','',NULL,'0','2','0','','0','','0','','0','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage is too high (over {$ACTIVEMQ.MEM.MAX.HIGH:"{#JMXDESTINATIONNAME}"}%)','197ab32730a84f79ba1b1e827a10e175');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17426','{20639}>{$ACTIVEMQ.MEM.MAX.WARN:"{#JMXDESTINATIONNAME}"}','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage is too high','','0','3','',NULL,'0','2','0','','0','','0','','0','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage is too high (over {$ACTIVEMQ.MEM.MAX.WARN:"{#JMXDESTINATIONNAME}"}%)','1e4e3a969b434c6d972251f8c9b3f2a7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17428','{20641} < {$ARANET.BATT.VOLTAGE.MIN.CRIT:"{#SENSOR_NAME}"}','{#METRIC}: Critically low battery voltage on "[{#GATEWAY_NAME}] {#SENSOR_NAME}"','','0','4','',NULL,'0','2','0','','0','','0','','0','{#METRIC}: Critically low battery voltage on "[{#GATEWAY_NAME}] {#SENSOR_NAME}" (below {$ARANET.BATT.VOLTAGE.MIN.CRIT:"{#SENSOR_NAME}"}{#UNIT} for 5m)','6a931421d804418085e586dfc0e11311');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17429','{20642} < {$ARANET.BATT.VOLTAGE.MIN.WARN:"{#SENSOR_NAME}"}','{#METRIC}: Low battery voltage on "[{#GATEWAY_NAME}] {#SENSOR_NAME}"','','0','2','',NULL,'0','2','0','','0','','0','','0','{#METRIC}: Low battery voltage on "[{#GATEWAY_NAME}] {#SENSOR_NAME}" (below {$ARANET.BATT.VOLTAGE.MIN.WARN:"{#SENSOR_NAME}"}{#UNIT} for 5m)','d729130760f9418baa40fb9eeb8a3ca4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17430','{20643} > {$ARANET.CO2.MAX.CRIT:"{#SENSOR_NAME}"}','{#METRIC}: Critically high CO2 level on "[{#GATEWAY_NAME}] {#SENSOR_NAME}"','','0','4','',NULL,'0','2','0','','0','','0','','0','{#METRIC}: Critically high CO2 level on "[{#GATEWAY_NAME}] {#SENSOR_NAME}" (over {$ARANET.CO2.MAX.CRIT:"{#SENSOR_NAME}"}{#UNIT} for 5m)','9d88ae8357b444728c63844462d25f83');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17431','{20644} > {$ARANET.CO2.MAX.WARN:"{#SENSOR_NAME}"}','{#METRIC}: High CO2 level on "[{#GATEWAY_NAME}] {#SENSOR_NAME}"','','0','2','',NULL,'0','2','0','','0','','0','','0','{#METRIC}: High CO2 level on "[{#GATEWAY_NAME}] {#SENSOR_NAME}" (over {$ARANET.CO2.MAX.WARN:"{#SENSOR_NAME}"}{#UNIT} for 5m)','cc54c75ee607485981388da0f7f99ea2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17432','{20645} > {$ARANET.HUMIDITY.MAX.WARN:"{#SENSOR_NAME}"}','{#METRIC}: High humidity on "[{#GATEWAY_NAME}] {#SENSOR_NAME}"','','0','4','',NULL,'0','2','0','','0','','0','','0','{#METRIC}: High humidity on "[{#GATEWAY_NAME}] {#SENSOR_NAME}" (over {$ARANET.HUMIDITY.MAX.WARN:"{#SENSOR_NAME}"}{#UNIT} for 5m)','9697528bedd64aca9da1e6343182fe0c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17433','{20646} < {$ARANET.HUMIDITY.MIN.WARN:"{#SENSOR_NAME}"}','{#METRIC}: Low humidity on "[{#GATEWAY_NAME}] {#SENSOR_NAME}"','','0','2','',NULL,'0','2','0','','0','','0','','0','{#METRIC}: Low humidity on "[{#GATEWAY_NAME}] {#SENSOR_NAME}" (below {$ARANET.HUMIDITY.MIN.WARN:"{#SENSOR_NAME}"}{#UNIT} for 5m)','85c1be625bc940588671bc43e6ed6a8a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17434','{20647} > {$ARANET.LAST_UPDATE.MAX.WARN:"{#SENSOR_NAME}"}','{#METRIC}: Sensor data "[{#GATEWAY_NAME}] {#SENSOR_NAME}" is not updated','','0','2','',NULL,'0','2','0','','0','','0','','0','{#METRIC}: Sensor data "[{#GATEWAY_NAME}] {#SENSOR_NAME}" is not updated (more than {$ARANET.LAST_UPDATE.MAX.WARN:"{#SENSOR_NAME}"})','b0aa8bb4e07e47b5824595b824081d75');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17435','{20648}>{20649}','Database Counters [{#INSTANCE}]: Average write time latency is higher than read time latency for {$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME}','','0','2','Should be less than the read latency for the same instance, as measured by the MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Reads (Recovery) Average Latency counter.',NULL,'0','2','0','','0','','0','','0','','2eb26276a3a24ce4af517ff8740f4566');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17436','{20650}>{$MS.EXCHANGE.DB.FAULTS.WARN}','Information Store [{#INSTANCE}]: Page faults is too high','','0','3','Too much page faults stalls for database "{#INSTANCE}". This counter should be 0 on production servers.',NULL,'0','2','0','','0','','0','','0','Information Store [{#INSTANCE}]: Page faults is too high (>{$MS.EXCHANGE.DB.FAULTS.WARN} for {$MS.EXCHANGE.DB.FAULTS.TIME})','07e0dce4546b4d15bfbb34fa2044c319');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17437','{20651}>{$MS.EXCHANGE.LOG.STALLS.WARN}','Information Store [{#INSTANCE}]: Log records stalls is too high','','0','3','Stalled log records too high. The average value should be less than 10 threads waiting.',NULL,'0','2','0','','0','','0','','0','Information Store [{#INSTANCE}]: Log records stalls is too high (>{$MS.EXCHANGE.LOG.STALLS.WARN} for {$MS.EXCHANGE.LOG.STALLS.TIME})','688cbee95ef2432abc03c81d39049a44');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17438','{20652}>{$MS.EXCHANGE.DB.ACTIVE.READ.WARN}','Database Counters [{#INSTANCE}]: Average read time latency is too high','','0','2','Should be less than 20ms on average.',NULL,'0','2','0','','0','','0','','0','Database Counters [{#INSTANCE}]: Average read time latency is too high (>{$MS.EXCHANGE.DB.ACTIVE.READ.WARN}s for {$MS.EXCHANGE.DB.ACTIVE.READ.TIME})','053583bbe81d4ce0961ee365cee5a802');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17439','{20653}>{$MS.EXCHANGE.DB.PASSIVE.READ.WARN}','Database Counters [{#INSTANCE}]: Average read time latency is too high','','0','2','Should be less than 200ms on average.',NULL,'0','2','0','','0','','0','','0','Database Counters [{#INSTANCE}]: Average read time latency is too high (>{$MS.EXCHANGE.DB.PASSIVE.READ.WARN}s for {$MS.EXCHANGE.DB.PASSIVE.READ.TIME})','4a07a86df67b4aa08e538d4463c2d3df');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17440','{20654}>{$MS.EXCHANGE.DB.ACTIVE.WRITE.WARN}','Database Counters [{#INSTANCE}]: Average write time latency is too high for {$MS.EXCHANGE.DB.ACTIVE.WRITE.TIME}','','0','2','Should be less than 50ms on average.',NULL,'0','2','0','','0','','0','','0','','87cc1ca8b39541e89eb02a1c094892c0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17441','{20655}>{$MS.EXCHANGE.RPC.WARN}','Information Store [{#INSTANCE}]: RPC Requests latency is too high','','0','2','Should be less than 50ms at all times, with spikes less than 100ms.',NULL,'0','2','0','','0','','0','','0','Information Store [{#INSTANCE}]: RPC Requests latency is too high (>{$MS.EXCHANGE.RPC.WARN}s for {$MS.EXCHANGE.RPC.TIME})','b9b2f224082a4ec687d121534402170c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17442','{20656}>{$MS.EXCHANGE.RPC.COUNT.WARN}','Information Store [{#INSTANCE}]: RPC Requests total count is too high','','0','2','Should be below 70 at all times.',NULL,'0','2','0','','0','','0','','0','Information Store [{#INSTANCE}]: RPC Requests total count is too high (>{$MS.EXCHANGE.RPC.COUNT.WARN} for {$MS.EXCHANGE.RPC.COUNT.TIME})','6349d2b6cd13413187b8c77e10fa96a2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17443','{20657}>{$MS.EXCHANGE.LDAP.WARN}','Domain Controller [{#INSTANCE}]: LDAP read time is too high','','0','3','Should be less than 50ms at all times, with spikes less than 100ms.',NULL,'0','2','0','','0','','0','','0','Domain Controller [{#INSTANCE}]: LDAP read time is too high (>{$MS.EXCHANGE.LDAP.WARN}s for {$MS.EXCHANGE.LDAP.TIME})','799366198fd04746bf265431c00269ab');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17444','{20658}>{$MS.EXCHANGE.LDAP.WARN}','Domain Controller [{#INSTANCE}]: LDAP search time is too high','','0','3','Should be less than 50ms at all times, with spikes less than 100ms.',NULL,'0','2','0','','0','','0','','0','Domain Controller [{#INSTANCE}]: LDAP search time is too high (>{$MS.EXCHANGE.LDAP.WARN}s for {$MS.EXCHANGE.LDAP.TIME})','0db1b4e3f149481e8b04fe8b5eafa508');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17445','{20659}>{20660}','Database Counters [{#INSTANCE}]: Average write time latency is higher than read time latency for {$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME}','','0','2','Should be less than the read latency for the same instance, as measured by the MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Reads (Recovery) Average Latency counter.',NULL,'0','2','0','','0','','0','','0','','9c9732c8d3314c12aecd268aa445e8bc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17446','{20661}>{$MS.EXCHANGE.DB.FAULTS.WARN}','Information Store [{#INSTANCE}]: Page faults is too high','','0','3','Too much page faults stalls for database "{#INSTANCE}". This counter should be 0 on production servers.',NULL,'0','2','0','','0','','0','','0','Information Store [{#INSTANCE}]: Page faults is too high (>{$MS.EXCHANGE.DB.FAULTS.WARN} for {$MS.EXCHANGE.DB.FAULTS.TIME})','c3540ee98c464c3bbcf680e26ce6165a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17447','{20662}>{$MS.EXCHANGE.LOG.STALLS.WARN}','Information Store [{#INSTANCE}]: Log records stalls is too high','','0','3','Stalled log records too high. The average value should be less than 10 threads waiting.',NULL,'0','2','0','','0','','0','','0','Information Store [{#INSTANCE}]: Log records stalls is too high (>{$MS.EXCHANGE.LOG.STALLS.WARN} for {$MS.EXCHANGE.LOG.STALLS.TIME})','1e1f575f25d74f7480f9812b54ad8f39');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17448','{20663}>{$MS.EXCHANGE.DB.ACTIVE.READ.WARN}','Database Counters [{#INSTANCE}]: Average read time latency is too high','','0','2','Should be less than 20ms on average.',NULL,'0','2','0','','0','','0','','0','Database Counters [{#INSTANCE}]: Average read time latency is too high (>{$MS.EXCHANGE.DB.ACTIVE.READ.WARN}s for {$MS.EXCHANGE.DB.ACTIVE.READ.TIME})','85be5ba2d3e847a485c968ac47afc495');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17449','{20664}>{$MS.EXCHANGE.DB.PASSIVE.READ.WARN}','Database Counters [{#INSTANCE}]: Average read time latency is too high','','0','2','Should be less than 200ms on average.',NULL,'0','2','0','','0','','0','','0','Database Counters [{#INSTANCE}]: Average read time latency is too high (>{$MS.EXCHANGE.DB.PASSIVE.READ.WARN}s for {$MS.EXCHANGE.DB.PASSIVE.READ.TIME})','6a4fe761e26c4b6497106da05dac40fe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17450','{20665}>{$MS.EXCHANGE.DB.ACTIVE.WRITE.WARN}','Database Counters [{#INSTANCE}]: Average write time latency is too high for {$MS.EXCHANGE.DB.ACTIVE.WRITE.TIME}','','0','2','Should be less than 50ms on average.',NULL,'0','2','0','','0','','0','','0','','6feb589776294bf0ab31a55af188f1f6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17451','{20666}>{$MS.EXCHANGE.RPC.WARN}','Information Store [{#INSTANCE}]: RPC Requests latency is too high','','0','2','Should be less than 50ms at all times, with spikes less than 100ms.',NULL,'0','2','0','','0','','0','','0','Information Store [{#INSTANCE}]: RPC Requests latency is too high (>{$MS.EXCHANGE.RPC.WARN}s for {$MS.EXCHANGE.RPC.TIME})','42009d7b910743e1803f10b6a918a67b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17452','{20667}>{$MS.EXCHANGE.RPC.COUNT.WARN}','Information Store [{#INSTANCE}]: RPC Requests total count is too high','','0','2','Should be below 70 at all times.',NULL,'0','2','0','','0','','0','','0','Information Store [{#INSTANCE}]: RPC Requests total count is too high (>{$MS.EXCHANGE.RPC.COUNT.WARN} for {$MS.EXCHANGE.RPC.COUNT.TIME})','127241a9e517424687e56eea393b11db');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17453','{20668}>{$MS.EXCHANGE.LDAP.WARN}','Domain Controller [{#INSTANCE}]: LDAP read time is too high','','0','3','Should be less than 50ms at all times, with spikes less than 100ms.',NULL,'0','2','0','','0','','0','','0','Domain Controller [{#INSTANCE}]: LDAP read time is too high (>{$MS.EXCHANGE.LDAP.WARN}s for {$MS.EXCHANGE.LDAP.TIME})','3d49bb3d2bdd45998938e531dbaafd33');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17454','{20669}>{$MS.EXCHANGE.LDAP.WARN}','Domain Controller [{#INSTANCE}]: LDAP search time is too high','','0','3','Should be less than 50ms at all times, with spikes less than 100ms.',NULL,'0','2','0','','0','','0','','0','Domain Controller [{#INSTANCE}]: LDAP search time is too high (>{$MS.EXCHANGE.LDAP.WARN}s for {$MS.EXCHANGE.LDAP.TIME})','8415fc742e154f9a9455ac9c0cdc85fd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17455','{20670}/{20671}*100>{$GITLAB.OPEN.FDS.MAX.WARN}','GitLab: Current number of open files is too high','','0','2','',NULL,'0','0','0','','0','','0','','0','GitLab: Current number of open files is too high (over {$GITLAB.OPEN.FDS.MAX.WARN}% for 5m)','4ac37991b2ca4edd9329fff1e752b05b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17456','{23203}<>{23204} and length({23205})>0','GitLab: Version has changed','','0','1','GitLab version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','GitLab: Version has changed (new version: {ITEM.VALUE})','88d7ceb3a683436da666e8802b2d29b5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17457','{20674}>{$GITLAB.HTTP.FAIL.MAX.WARN}','GitLab: Too many HTTP requests failures','','0','2','"Too many requests failed on GitLab instance with 5xx HTTP code"',NULL,'0','0','0','','0','','0','','0','GitLab: Too many HTTP requests failures (over {$GITLAB.HTTP.FAIL.MAX.WARN} for 5m)\'','7021e3b0b49a4990a1d8ce356b7ae130');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17458','{20675}=0','GitLab: Liveness check was failed','','0','4','The application server is not running or Rails Controllers are deadlocked.',NULL,'0','0','0','','0','','0','','0','','2f1eb8d6c89a4d8cbda0e951d3f6a109');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17459','{20676}=0','GitLab: Gitlab instance is not able to accept traffic','','0','4','',NULL,'0','0','0','','0','','0','','0','','11ff325698534dcd8bbaa12c86704069');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17460','{20677}>{$GITLAB.REDIS.FAIL.MAX.WARN}','GitLab: Too many Redis cache client exceptions','','0','2','"Too many Redis client exceptions during the requests to Redis instance cache."',NULL,'0','0','0','','0','','0','','0','GitLab: Too many Redis cache client exceptions (over {$GITLAB.REDIS.FAIL.MAX.WARN} for 5m)','a7e460f174fd4e16b2358fd3867390b4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17461','{20678}>{$GITLAB.REDIS.FAIL.MAX.WARN}','GitLab: Too many Redis queues client exceptions','','0','2','"Too many Redis client exceptions during the requests to Redis instance queues."',NULL,'0','0','0','','0','','0','','0','GitLab: Too many Redis queues client exceptions (over {$GITLAB.REDIS.FAIL.MAX.WARN} for 5m)','36ec79901f324f27992ea68274eedb71');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17462','{20679}>{$GITLAB.REDIS.FAIL.MAX.WARN}','GitLab: Too many Redis shared_state client exceptions','','0','2','"Too many Redis client exceptions during the requests to Redis instance shared_state."',NULL,'0','0','0','','0','','0','','0','GitLab: Too many Redis shared_state client exceptions (over {$GITLAB.REDIS.FAIL.MAX.WARN} for 5m)','b475d6ecbc564f9b8f7fe9b24bcdf013');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17463','{20680}=1','GitLab: Failed to fetch info data','','0','2','Zabbix has not received data for metrics for the last 30 minutes',NULL,'0','0','0','','0','','1','','0','GitLab: Failed to fetch info data (or no data for 30m)','e24496a9499447b2bbdf70f85bbf2113');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17465','{20683}>{$GITLAB.PUMA.QUEUE.MAX.WARN}','GitLab: Puma is queueing requests','','0','2','',NULL,'0','2','0','','0','','0','','0','GitLab: Puma is queueing requests (over {$GITLAB.PUMA.QUEUE.MAX.WARN}% for 15m)','356c8dc915d84382b3f8dfe45b901f46');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17466','{20684}/{20685}*100>{$GITLAB.UNICORN.UTILIZATION.MAX.WARN}','GitLab: Unicorn worker utilization is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','GitLab: Unicorn worker utilization is too high (over {$GITLAB.UNICORN.UTILIZATION.MAX.WARN}% for 5m)','731bf8eb456c49739a3fcd7aec24c7d7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17467','{20686}>{$GITLAB.UNICORN.QUEUE.MAX.WARN}','GitLab: Unicorn is queueing requests','','0','2','',NULL,'0','2','0','','0','','0','','0','GitLab: Unicorn is queueing requests (over {$GITLAB.UNICORN.QUEUE.MAX.WARN}% for 5m)','84142d0996c0420c8b07c7e17d1b9a47');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17468','{20687}>0','NameNode: Cluster has missing blocks','','0','3','A missing block is far worse than a corrupt block, because a missing block cannot be recovered by copying a replica.',NULL,'0','0','0','','0','','0','','0','','3b92daaaddb74105a5e57c4b381e3060');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17469','{20688}>0','NameNode: Cluster has DataNodes in Dead state','','0','3','The death of a DataNode causes a flurry of network activity, as the NameNode initiates replication of blocks lost on the dead nodes.',NULL,'0','0','0','','0','','0','','0','','b2d1a26791aa4b16865b4410c50c7ceb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17470','{20689}<{$HADOOP.CAPACITY_REMAINING.MIN.WARN}','NameNode: Cluster capacity remaining is low','','0','2','A good practice is to ensure that disk use never exceeds 80 percent capacity.',NULL,'0','0','0','','0','','0','','0','NameNode: Cluster capacity remaining is low (below {$HADOOP.CAPACITY_REMAINING.MIN.WARN}% for 15m)','3104295848c5497085f397b8f3e06ef6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17471','{20690}=1','NameNode: Failed to fetch NameNode API page','','0','2','Zabbix has not received data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','NameNode: Failed to fetch NameNode API page (or no data for 30m)','9fac0ae651ab40a08551945eb0a93b68');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17472','{20691}<10m','NameNode: Service has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','NameNode: Service has been restarted (uptime < 10m)','84d866bc0dc3486d9c5dc9beefec8d31');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17473','{20692}>0','NameNode: Cluster has volume failures','','0','3','HDFS now allows for disks to fail in place, without affecting DataNode operations, until a threshold value is reached. This is set on each DataNode via the dfs.datanode.failed.volumes.tolerated property; it defaults to 0, meaning that any volume failure will shut down the DataNode; on a production cluster where DataNodes typically have 6, 8, or 12 disks, setting this parameter to 1 or 2 is typically the best practice.',NULL,'0','0','0','','0','','0','','0','','fcf791b6d0594dbb9ddfc3f93bc94825');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17474','{20693}=0','ResourceManager: Cluster has no active NodeManagers','','0','4','Cluster is unable to execute any jobs without at least one NodeManager.',NULL,'0','0','0','','0','','0','','0','','eb02a30f45394e4d84d9d7239002ed40');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17475','{20694}>0','ResourceManager: Cluster has unhealthy NodeManagers','','0','3','YARN considers any node with disk utilization exceeding the value specified under the property yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage (in yarn-site.xml) to be unhealthy. Ample disk space is critical to ensure uninterrupted operation of a Hadoop cluster, and large numbers of unhealthyNodes (the number to alert on depends on the size of your cluster) should be quickly investigated and resolved.',NULL,'0','0','0','','0','','0','','0','','0f35a0fa7a404559a3df225b906f0653');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17476','{20695}=1','ResourceManager: Failed to fetch ResourceManager API page','','0','2','Zabbix has not received data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','ResourceManager: Failed to fetch ResourceManager API page (or no data for 30m)','7d4d026992344602a199966a8308a571');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17477','{20696}<10m','ResourceManager: Service has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','ResourceManager: Service has been restarted (uptime < 10m)','ade7cc30a4184ef89ed896bae56e0b18');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17478','{20697}>{$HADOOP.NAMENODE.RESPONSE_TIME.MAX.WARN}','NameNode: Service response time is too high','','0','2','',NULL,'0','0','0','','0','','1','','0','NameNode: Service response time is too high (over {$HADOOP.NAMENODE.RESPONSE_TIME.MAX.WARN} for 5m)','4e4a6ab28fe5492d8fe4e291b8a586dc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17479','{20698}>{$HADOOP.RESOURCEMANAGER.RESPONSE_TIME.MAX.WARN}','ResourceManager: Service response time is too high','','0','2','',NULL,'0','0','0','','0','','1','','0','ResourceManager: Service response time is too high (over {$HADOOP.RESOURCEMANAGER.RESPONSE_TIME.MAX.WARN} for 5m)','e8e55f4c7e9e4823927a8c1345d3b941');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17480','{20699}=0','NameNode: Service is unavailable','','0','3','',NULL,'0','0','0','','0','','1','','0','','f7e16c4ec91e4c04b13b73ee817c71d7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17481','{20700}=0','ResourceManager: Service is unavailable','','0','3','',NULL,'0','0','0','','0','','1','','0','','a9ac7ede0c004fe18ab9f1fee36ad2b2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17482','{20701}<>"Live"','{#HOSTNAME}: DataNode has state {ITEM.VALUE}.','','0','3','The state is different from normal.',NULL,'0','2','0','','0','','0','','0','','9f657289a04041e5bcaa1947f62f607d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17483','{20702}=1','{#HOSTNAME}: Failed to fetch DataNode API page','','0','2','Zabbix has not received data for items for the last 30 minutes.',NULL,'0','2','0','','0','','1','','0','{#HOSTNAME}: Failed to fetch DataNode API page (or no data for 30m)','3eccb9daf76f4bde88b424cf6f2d21f6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17484','{20703}<10m','{#HOSTNAME}: Service has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','2','0','','0','','1','','0','{#HOSTNAME}: Service has been restarted (uptime < 10m)','e40298d300764251abcf93d5df3d9a67');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17485','{20704}<>"RUNNING"','{#HOSTNAME}: NodeManager has state {ITEM.VALUE}.','','0','3','The state is different from normal.',NULL,'0','2','0','','0','','0','','0','','8752a292093347fcb16d3f06dd97c5c3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17486','{20705}=1','{#HOSTNAME}: Failed to fetch NodeManager API page','','0','2','Zabbix has not received data for items for the last 30 minutes.',NULL,'0','2','0','','0','','1','','0','{#HOSTNAME}: Failed to fetch NodeManager API page (or no data for 30m)','6f8a6308d4334dd9bebe7af2fa3fb831');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17487','{20706}<10m','{#HOSTNAME}: Service has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','2','0','','0','','1','','0','{#HOSTNAME}: Service has been restarted (uptime < 10m)','05f3cf8ed34f4a708df508f0e50e119d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17488','{20707}>0','Kafka: Unclean leader election detected','','0','3','Unclean leader elections occur when there is no qualified partition leader among Kafka brokers. If Kafka is configured to allow an unclean leader election, a leader is chosen from the out-of-sync replicas, and any messages that were not synced prior to the loss of the former leader are lost forever. Essentially, unclean leader elections sacrifice consistency for availability.',NULL,'0','0','0','','0','','0','','0','','d984a7834d7846f787ca6649bacebf7b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17489','{20708} > 0','Kafka: One or more partitions have no leader','','0','2','Any partition without an active leader will be completely inaccessible, and both consumers and producers of that partition will be blocked until a leader becomes available.',NULL,'0','0','0','','0','','0','','0','','5eef377125814830be8167d4d74b0d05');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17490','{20709} > 0','Kafka: There are offline log directories','','0','2','The offline log directory count metric indicate the number of log directories which are offline (due to a hardware failure for example) so that the broker cannot store incoming messages anymore.',NULL,'0','0','0','','0','','0','','0','','03fa9ceadba34643b4d3baa7be7c6bb7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17491','{20710}=1','Kafka: Failed to fetch info data','','0','2','Zabbix has not received data for items for the last 15 minutes',NULL,'0','0','0','','0','','0','','0','Kafka: Failed to fetch info data (or no data for 15m)','39bfa825d88145d5a687ba07f6b5596e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17492','{20711}<{$KAFKA.NET_PROC_AVG_IDLE.MIN.WARN}','Kafka: Network processor average idle percent is too low','','0','3','The network processor idle ratio metric indicates the percentage of time the network processor are not in use. The lower this number, the more loaded the broker is.',NULL,'0','0','0','','0','','0','','0','Kafka: Network processor average idle percent is too low (under {$KAFKA.NET_PROC_AVG_IDLE.MIN.WARN} for 15m)','91c95d4543ae436d986881e76f090aec');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17493','{20712}<10m','Kafka: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','Kafka: has been restarted (uptime < 10m)','b2fa6148a2b24fa6890b4078c235dcd8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17494','{23225}<>{23226} and length({23227})>0','Kafka: Version has changed','','0','1','Kafka version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Kafka: Version has changed (new version: {ITEM.VALUE})','92ecd7eb1eae49d9886ecac7b8f2084a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17495','{20715}<{$KAFKA.REQUEST_HANDLER_AVG_IDLE.MIN.WARN}','Kafka: Request handler average idle percent is too low','','0','3','The request handler idle ratio metric indicates the percentage of time the request handlers are not in use. The lower this number, the more loaded the broker is.',NULL,'0','0','0','','0','','0','','0','Kafka: Request handler average idle percent is too low (under {$KAFKA.REQUEST_HANDLER_AVG_IDLE.MIN.WARN} for 15m)','8f070e06520b4b299fcfffa952d318fc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17496','{20716}>0','Kafka: There are partitions under the min ISR','','0','3','The Under min ISR partitions metric displays the number of partitions, where the number of In-Sync Replicas (ISR) is less than the minimum number of in-sync replicas specified. The two most common causes of under-min ISR partitions are that one or more brokers is unresponsive, or the cluster is experiencing performance issues and one or more brokers are falling behind.',NULL,'0','0','0','','0','','0','','0','','b401a90e75cd4a478d4f8b8cc4f15dc2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17497','{20717}>0','Kafka: There are under replicated partitions','','0','3','The Under replicated partitions metric displays the number of partitions that do not have enough replicas to meet the desired replication factor. A partition will also be considered under-replicated if the correct number of replicas exist, but one or more of the replicas have fallen significantly behind the partition leader. The two most common causes of under-replicated partitions are that one or more brokers is unresponsive, or the cluster is experiencing performance issues and one or more brokers have fallen behind.',NULL,'0','0','0','','0','','0','','0','','0ecd8b4b3db6489b83d4a1f78faee03c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17498','{20718}=0','Kafka: Broker is not connected to ZooKeeper','','0','3','',NULL,'0','0','0','','0','','0','','0','','423144ac14694a71b9ab563eacfa840d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17499','{23275}<>{23276} and length({23277})>0','Tomcat: Version has been changed','','0','1','Tomcat version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Tomcat: Version has changed (new version: {ITEM.VALUE})','152d235652914aa2af78334385334214');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17500','{20721} = 1','{#JMXVALUE}: Gzip compression is disabled','','0','1','gzip compression is disabled for connector {#JMXVALUE}.',NULL,'0','2','0','','0','','1','','0','','7d707de73a164f1db6b69e4dcb8c6ae9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17501','{20722}>{20723}*{$TOMCAT.THREADS.MAX.PCT:"{#JMXNAME}"}/100','{#JMXNAME}: Busy worker threads count is high','','0','4','When current threads busy counter reaches the limit, no more requests could be handled, and the application chokes.',NULL,'0','2','0','','0','','0','','0','{#JMXNAME}: Busy worker threads count are more than {$TOMCAT.THREADS.MAX.PCT:"{#JMXNAME}"}% of the limit for {$TOMCAT.THREADS.MAX.TIME:"{#JMXNAME}"}','7a15296553a447f6aebf4958631b6704');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17502','{20724}/{20725}*100>{$VAULT.OPEN.FDS.MAX.WARN}','Vault: Current number of open files is too high','','0','2','',NULL,'0','0','0','','0','','0','','0','Vault: Current number of open files is too high (over {$VAULT.OPEN.FDS.MAX.WARN}% for 5m)','ebe6f65e82ed4f00bd7c5be30841a25c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17503','length({20726})>0','Vault: Failed to get metrics','','0','2','',NULL,'0','0','0','','0','','0','','0','Vault: Failed to get metrics (error: {ITEM.VALUE})','a43a4139d225461289d16b7a78002cb0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17504','{20727}=0','Vault: Vault server is not responding','','0','4','',NULL,'0','0','0','','0','','0','','0','','93b4ae5089834a87ae41091fc9773501');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17505','{20728}=1','Vault: Vault server is sealed','','0','3','https://www.vaultproject.io/docs/concepts/seal',NULL,'0','0','0','','0','','0','','0','','3f4ebf7094914c219ac32132400f90c8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17506','{23278}<>{23279} and length({23280})>0','Vault: Version has changed','','0','1','Vault version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Vault: Version has changed (new version: {ITEM.VALUE})','ee9a561165b847c2a0719a767e5c4fe9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17507','({20731}-{23029})>{$VAULT.LEADERSHIP.SETUP.FAILED.MAX.WARN}','Vault: High frequency of leadership setup failures','','0','3','There have been more than {$VAULT.LEADERSHIP.SETUP.FAILED.MAX.WARN} Vault leadership setup failures in the past 1h.',NULL,'0','0','0','','0','','0','','0','Vault: High frequency of leadership setup failures (over {$VAULT.LEADERSHIP.SETUP.FAILED.MAX.WARN} for 1h)','c68ab0c784314291bde1cc8693fd5959');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17508','({20732}-{23030})>{$VAULT.LEADERSHIP.LOSSES.MAX.WARN}','Vault: High frequency of leadership losses','','0','3','There have been more than {$VAULT.LEADERSHIP.LOSSES.MAX.WARN} Vault leadership losses in the past 1h.',NULL,'0','0','0','','0','','0','','0','Vault: High frequency of leadership losses (over {$VAULT.LEADERSHIP.LOSSES.MAX.WARN} for 1h)','8d7f4f51272a4ce5a3a7ab9642e51d63');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17509','({20733}-{23031})>{$VAULT.LEADERSHIP.STEPDOWNS.MAX.WARN}','Vault: High frequency of leadership step downs','','0','3','There have been more than {$VAULT.LEADERSHIP.STEPDOWNS.MAX.WARN} Vault leadership step downs in the past 1h.',NULL,'0','0','0','','0','','0','','0','Vault: High frequency of leadership step downs (over {$VAULT.LEADERSHIP.STEPDOWNS.MAX.WARN} for 1h)','5f2895eb5a94441f858c573584ec8b19');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17510','{20734}<10m','Vault: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','Vault: has been restarted (uptime < 10m)','a60eed70ecbc44fa935ec87d83fe4793');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17511','{20735}=1 and {20736}<{$VAULT.TOKEN.TTL.MIN.CRIT}','Vault: Token [{#TOKEN_NAME}] will expire soon','','0','3','',NULL,'0','2','0','','0','','0','','0','Vault: Token [{#TOKEN_NAME}] will expire soon (less than {$VAULT.TOKEN.TTL.MIN.CRIT})','f4f0db7e26d9470a86d11e86d1ae26e2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17512','{20737}=1 and {20738}<{$VAULT.TOKEN.TTL.MIN.WARN}','Vault: Token [{#TOKEN_NAME}] will expire soon','','0','2','',NULL,'0','2','0','','0','','0','','0','Vault: Token [{#TOKEN_NAME}] will expire soon (less than {$VAULT.TOKEN.TTL.MIN.WARN})','0e2143a2a46d44778db34ac9af69bbfc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17513','length({20739})>0','Vault: Token [{#TOKEN_NAME}] lookup error occurred','','0','2','',NULL,'0','2','0','','0','','0','','0','','8cd5d903d4e74974a8469554b737ee3d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17515','{20741}=0','VMware: Hypervisor is down','','0','3','The service is unavailable or does not accept ICMP ping.',NULL,'0','0','0','','0','','1','','0','','ab84a61566a5402db59efd40d20714a5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17518','{20744}=3','VMware: The {$VMWARE.HV.UUID} health is Red','','0','4','One or more components in the appliance might be in an unusable status and the appliance might become unresponsive soon. Security patches might be available.',NULL,'0','0','0','','0','','0','','0','','378511e0f1794874a68aef1b43561ee5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17519','{20745}=2','VMware: The {$VMWARE.HV.UUID} health is Yellow','','0','3','One or more components in the appliance might become overloaded soon.',NULL,'0','0','0','','0','','0','','0','','ef6ca4d7033c4c8cb963eb7d493b3c7b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17520','{20746}<10m','VMware: Hypervisor has been restarted','','0','2','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','VMware: Hypervisor has been restarted (uptime < 10m)','01d316b0a8cf4998b344f0c4ef1daa32');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17521','{20747} * 100 / {20748} > {$ZOOKEEPER.FILE_DESCRIPTORS.MAX.WARN}','Zookeeper: Too many file descriptors used','','0','2','Number of file descriptors used more than {$ZOOKEEPER.FILE_DESCRIPTORS.MAX.WARN}% of the available number of file descriptors.',NULL,'0','0','0','','0','','0','','0','Zookeeper: Too many file descriptors used (over {$ZOOKEEPER.FILE_DESCRIPTORS.MAX.WARN}% for 5 min)','53a97045bfd8473899849e429e3e7017');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17522','{20749}>{$ZOOKEEPER.OUTSTANDING_REQ.MAX.WARN}','Zookeeper: Too many queued requests','','0','3','Number of queued requests in the server. This goes up when the server receives more requests than it can process.',NULL,'0','0','0','','0','','1','','0','Zookeeper: Too many queued requests (over {$ZOOKEEPER.OUTSTANDING_REQ.MAX.WARN}% for 5 min)','ac27f2d8b34546d1bdc6d7ab858c04a1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17523','{23319}<>{23320} and length({23321})>0','Zookeeper: Server mode has changed','','0','1','Zookeeper node state has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Zookeeper: Server mode has changed (new mode: {ITEM.VALUE})','494624353875401eaf65f7eb0273ca35');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17524','{20752}=1','Zookeeper: Failed to fetch info data','','0','2','Zabbix has not received data for items for the last 10 minutes',NULL,'0','0','0','','0','','1','','0','Zookeeper: Failed to fetch info data (or no data for 10m)','db35b5c75fc543ef8ffe766a0671fd6d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17526','{23322}<>{23323} and length({23324})>0','Zookeeper: Version has changed','','0','1','Zookeeper version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Zookeeper: Version has changed (new version: {ITEM.VALUE})','2a091bcfafe84ea9aee5238ce5e25651');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17527','{20756} < {20757}-1','Zookeeper: Too few active followers','','0','3','The number of followers should equal the total size of your ZooKeeper ensemble, minus 1 (the leader is not included in the follower count). If the ensemble fails to maintain quorum, all automatic failover features are suspended.',NULL,'0','2','0','','0','','0','','0','','4b0df830eef84e78a04a6980b627b8d0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17528','{20758}>{$ZOOKEEPER.PENDING_SYNCS.MAX.WARN}','Zookeeper: Too many pending syncs','','0','3','',NULL,'0','2','0','','0','','1','','0','Zookeeper: Too many pending syncs (over {$ZOOKEEPER.PENDING_SYNCS.MAX.WARN}% for 5 min)','004e26cca4934d1992b3c894f36b5643');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17529','{28393}>{$ZABBIX.PROXY.UTIL.MAX:"availability manager"}','Remote Zabbix proxy: Utilization of availability manager processes is high','','0','3','',NULL,'0','0','1','{28393}<{$ZABBIX.PROXY.UTIL.MIN:"availability manager"}','0','','0','','0','Remote Zabbix proxy: Utilization of availability manager processes over {$ZABBIX.PROXY.UTIL.MAX:"availability manager"}%','77e66d2f6b0e48fa8a7ec5dd213eab35');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17530','{28398}>{$ZABBIX.PROXY.UTIL.MAX:"history poller"}','Remote Zabbix proxy: Utilization of history poller processes is high','','0','3','',NULL,'0','0','1','{28398}<{$ZABBIX.PROXY.UTIL.MIN:"history poller"}','0','','0','','0','Remote Zabbix proxy: Utilization of history poller processes over {$ZABBIX.PROXY.UTIL.MAX:"history poller"}%','afcd2486a21b42ae97f53353b3642301');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17531','{20761}>75','Remote Zabbix server: Utilization of availability manager processes is high','','0','3','',NULL,'0','0','1','{20761}<65','0','','0','','0','Remote Zabbix server: Utilization of availability manager processes over 75%','ae06acfebdb3452b88359f1634c53876');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17532','{20762}>75','Remote Zabbix server: Utilization of history poller processes is high','','0','3','',NULL,'0','0','1','{20762}<65','0','','0','','0','Remote Zabbix server: Utilization of history poller processes over 75%','655c59a6151d4ce985a833d9f91efc2a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17533','{28362}>{$ZABBIX.PROXY.UTIL.MAX:"availability manager"}','Zabbix proxy: Utilization of availability manager processes is high','','0','3','',NULL,'0','0','1','{28362}<{$ZABBIX.PROXY.UTIL.MIN:"availability manager"}','0','','0','','0','Zabbix proxy: Utilization of availability manager processes over {$ZABBIX.PROXY.UTIL.MAX:"availability manager"}%','5a8375a8eee642f2940ed813ee062336');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17534','{28367}>{$ZABBIX.PROXY.UTIL.MAX:"history poller"}','Zabbix proxy: Utilization of history poller processes is high','','0','3','',NULL,'0','0','1','{28367}<{$ZABBIX.PROXY.UTIL.MIN:"history poller"}','0','','0','','0','Zabbix proxy: Utilization of history poller processes over {$ZABBIX.PROXY.UTIL.MAX:"history poller"}%','7ee08ecfeafc488583e8e4719b8a1be1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17535','{20765}>75','Zabbix server: Utilization of availability manager processes is high','','0','3','',NULL,'0','0','1','{20765}<65','0','','0','','0','Zabbix server: Utilization of availability manager processes over 75%','048c947b3b0a440b80ad6ebfc1a43f10');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17536','{20766}>75','Zabbix server: Utilization of history poller processes is high','','0','3','',NULL,'0','0','1','{20766}<65','0','','0','','0','Zabbix server: Utilization of history poller processes over 75%','9a76cde4aaea4e8eb48f725e9653037b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17539','{23386}<>{23387} and length({23388})>0','Version has changed','','0','1','Cassandra version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Version has changed (new version: {ITEM.VALUE})','855abdc321c74b6baf672c67f6483c1c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17540','{20771}>{$CASSANDRA.PENDING_TASKS.MAX.WARN}','Many pending tasks','','0','2','',NULL,'0','0','0','','0','','0','','0','Many pending tasks (over {$CASSANDRA.PENDING_TASKS.MAX.WARN} for 15m)','885035b2fc804615a54bf2eaca19beee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17541','{20772}>{$CASSANDRA.PENDING_TASKS.MAX.HIGH}','Too many pending tasks','','0','3','',NULL,'0','0','0','','0','','0','','0','Too many pending tasks (over {$CASSANDRA.PENDING_TASKS.MAX.HIGH} for 15m)','f6696c41e9d24144a1a95f74c94728ae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17542','{20773}>0','Too many storage exceptions','','0','2','',NULL,'0','0','0','','0','','0','','0','','c7980b33dc794a70a116bd12219f66c3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17543','{20774}=1','Failed to fetch info data','','0','2','Zabbix has not received data for items for the last 15 minutes',NULL,'0','0','0','','0','','0','','0','Failed to fetch info data (or no data for 15m)','bda8e216175044ed829670b6bd272785');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17544','{20775}>0','There are down nodes in cluster','','0','3','',NULL,'0','0','0','','0','','0','','0','','42b527f9cf4e444b82575f2ab48926c0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17545','{20776}>{$ORACLE.TBS.USED.PCT.MAX.HIGH}','Oracle TBS \'{#TABLESPACE}\': Tablespace usage is too high','','0','4','',NULL,'0','2','0','','0','','0','','0','Oracle TBS \'{#TABLESPACE}\': Tablespace usage is too high (over {$ORACLE.TBS.USED.PCT.MAX.HIGH}% for 5m).','bbc86236064348ee9150dfdd07623061');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17546','{20777}>{$ORACLE.TBS.USED.PCT.MAX.WARN}','Oracle TBS \'{#TABLESPACE}\': Tablespace usage is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','Oracle TBS \'{#TABLESPACE}\': Tablespace usage is too high (over {$ORACLE.TBS.USED.PCT.MAX.WARN}% for 5m).','ba298d35aaaa4386b4f03914dcf1cb27');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17547','{20778}>{$ORACLE.TBS.USED.PCT.MAX.WARN}','Oracle TBS \'{#TABLESPACE}\': Tablespace utilization is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','Oracle TBS \'{#TABLESPACE}\': Tablespace utilization is too high (over {$ORACLE.TBS.USED.PCT.MAX.WARN}% for 5m).','2530cb03fb4e4e728396834f0db89466');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17548','{20779}>{$ORACLE.TBS.UTIL.PCT.MAX.HIGH}','Oracle TBS \'{#TABLESPACE}\': Tablespace utilization is too high','','0','4','',NULL,'0','2','0','','0','','0','','0','Oracle TBS \'{#TABLESPACE}\': Tablespace utilization is too high (over {$ORACLE.TBS.UTIL.PCT.MAX.HIGH}% for 5m).','451108a2251848ea8719378d5c0abb42');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17549','{20780}>{$ORACLE.TBS.USED.PCT.MAX.HIGH}','Oracle TBS \'{#TABLESPACE}\': Tablespace usage is too high','','0','4','',NULL,'0','2','0','','0','','0','','0','Oracle TBS \'{#TABLESPACE}\': Tablespace usage is too high (over {$ORACLE.TBS.USED.PCT.MAX.HIGH}% for 5m).','78c293ae7ded42b0b05d50af99762017');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17550','{20781}>{$ORACLE.TBS.USED.PCT.MAX.WARN}','Oracle TBS \'{#TABLESPACE}\': Tablespace usage is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','Oracle TBS \'{#TABLESPACE}\': Tablespace usage is too high (over {$ORACLE.TBS.USED.PCT.MAX.WARN}% for 5m).','e6f2cb4ade52464b97f5e0f5e05ab61b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17551','{20782}>{$ORACLE.TBS.USED.PCT.MAX.WARN}','Oracle TBS \'{#TABLESPACE}\': Tablespace utilization is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','Oracle TBS \'{#TABLESPACE}\': Tablespace utilization is too high (over {$ORACLE.TBS.USED.PCT.MAX.WARN}% for 5m).','9469e51bd69e4baba82de4fd4e5eb14c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17552','{20783}>{$ORACLE.TBS.UTIL.PCT.MAX.HIGH}','Oracle TBS \'{#TABLESPACE}\': Tablespace utilization is too high','','0','4','',NULL,'0','2','0','','0','','0','','0','Oracle TBS \'{#TABLESPACE}\': Tablespace utilization is too high (over {$ORACLE.TBS.UTIL.PCT.MAX.HIGH}% for 5m).','a8aa7255866d4a5ba71d2f89a1d234fe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17553','{20784} > 18000000','PostgreSQL: Oldest xid is too big','','0','3','',NULL,'0','0','0','','0','','0','','0','','2a5c11571d9d46f093ed9081f9d51504');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17554','{20785} > {#THRESHOLD_HI_CRIT}','{#SENSOR_INFO}: Fan speed is above the critical threshold','','0','4','This trigger uses fan sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Fan speed is above the critical threshold of {#THRESHOLD_HI_CRIT}rpm for 5m','660fd32236464fd69409099c67478ff5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17555','{20786} > {#THRESHOLD_HI_WARN}','{#SENSOR_INFO}: Fan speed is above the warning threshold','','0','2','This trigger uses fan sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Fan speed is above the warning threshold of {#THRESHOLD_HI_WARN}rpm for 5m','b1131f42627047ca9629693b91d9185e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17556','{20787} < {#THRESHOLD_LO_CRIT}','{#SENSOR_INFO}: Fan speed is below the critical threshold','','0','4','This trigger uses fan sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Fan speed is below the critical threshold of {#THRESHOLD_LO_CRIT}rpm for 5m','0cd8e252a77b4c90a155e57aab963e5e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17557','{20788} < {#THRESHOLD_LO_WARN}','{#SENSOR_INFO}: Fan speed is below the warning threshold','','0','2','This trigger uses fan sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Fan speed is below the warning threshold of {#THRESHOLD_LO_WARN}rpm for 5m','d37c360fea9143bab6ff07699ed4acb1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17558','{20789} > {#THRESHOLD_HI_CRIT}','{#SENSOR_INFO}: Temperature is above the critical threshold','','0','4','This trigger uses temperature sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Temperature is above the critical threshold of {#THRESHOLD_HI_CRIT}°C for 5m','791d55e21828472e93c97d8fa4f96d26');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17559','{20790} > {#THRESHOLD_HI_WARN}','{#SENSOR_INFO}: Temperature is above the warning threshold','','0','2','This trigger uses temperature sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Temperature is above the warning threshold of {#THRESHOLD_HI_WARN}°C for 5m','c65457a8a6d4427995626ff9ff12e339');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17560','{20791} < {#THRESHOLD_LO_CRIT}','{#SENSOR_INFO}: Temperature is below the critical threshold','','0','4','This trigger uses temperature sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Temperature is below the critical threshold of {#THRESHOLD_LO_CRIT}°C for 5m','b521cd99d9fb4f6f9d1241ac33c01a86');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17561','{20792} < {#THRESHOLD_LO_WARN}','{#SENSOR_INFO}: Temperature is below the warning threshold','','0','2','This trigger uses temperature sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Temperature is below the warning threshold of {#THRESHOLD_LO_WARN}°C for 5m','750888bd98fa475dba03591945416b89');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17562','{20793} > {#THRESHOLD_HI_CRIT}','{#SENSOR_INFO}: Voltage is above the critical threshold','','0','4','This trigger uses voltage sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Voltage is above the critical threshold of {#THRESHOLD_HI_CRIT}V for 5m','1c78dea0380a4bf68b05c1323a208c3a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17563','{20794} > {#THRESHOLD_HI_WARN}','{#SENSOR_INFO}: Voltage is above the warning threshold','','0','2','This trigger uses voltage sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Voltage is above the warning threshold of {#THRESHOLD_HI_WARN}V for 5m','08b4f59d66ea45eaa95426a27586c4bd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17564','{20795} < {#THRESHOLD_LO_CRIT}','{#SENSOR_INFO}: Voltage is below the critical threshold','','0','4','This trigger uses voltage sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Voltage is below the critical threshold of {#THRESHOLD_LO_CRIT}V for 5m','d2df35a764234716a286a8019e6c9411');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17565','{20796} < {#THRESHOLD_LO_WARN}','{#SENSOR_INFO}: Voltage is below the warning threshold','','0','2','This trigger uses voltage sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Voltage is below the warning threshold of {#THRESHOLD_LO_WARN}V for 5m','481908babd3f44b3a73f3e0a628fe6d4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17566','{20797}>{$TEMP_CRIT:"{#SNMPVALUE}"}\r\nor\r\n{20798}={$TEMP_CRIT_STATUS}\r\nor\r\n{20798}={$TEMP_DISASTER_STATUS}','{#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{20799}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','f356f7fbc2de423db3bac09bc4683ae2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17567','{20800}>{$TEMP_WARN:"{#SNMPVALUE}"}\r\nor\r\n{20801}={$TEMP_WARN_STATUS}','{#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{20802}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','2c151dd93b7f4096b9eb6c73c315ffec');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17574','{31368}>{$TEMP_CRIT}\r\nor\r\n{31369}={$TEMP_CRIT_STATUS}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','0','1','{31370}<{$TEMP_CRIT}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT}','132d3e7a1fab4cc08fcbb12eef4e9494');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17575','{20824}={$CHARGE.STATE.CRIT}','Battery: Device charge in critical state','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','fe4863fdd4d64e1c977328bd3d0f687f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17576','{20825}={$CHARGE.STATE.WARN}','Battery: Device charge in warning state','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','4d064e4877474d72b85c9cdfb7b09dad');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17577','{20826}={$LOAD.STATE.CRIT:"lvd"} or {20826}={$LOAD.STATE.CRIT:"fault"}','Load: Device load in critical state','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','a88025c5e5a748e3a6dfa01685ba075b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17578','{20827}={$LOAD.STATE.WARN:"lvdWarning"} or {20827}={$LOAD.STATE.WARN:"override"}','Load: Device load in warning state','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','9ab107b39b874fed83d09e7c1964a699');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17579','{20828}=2','Status: Device has "arrayCurrentOffset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','a2d0ab5150dd4bad8b5ec4f2c6aa13f8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17580','{20829}=2','Status: Device has "batterySenseDisconnected" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','cc6a15f16fd8470a9dcd9a9e01cba61c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17581','{20830}=2','Status: Device has "batterySenseOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','55d4726d9b9047c79cf690353d950797');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17582','{20831}=2','Status: Device has "controllerReset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','7f015198395042219666cde4458d407c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17583','{20832}=2','Status: Device has "currentLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','48339339e5a7465fbc67266998c9a8fe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17584','{20833}=2','Status: Device has "currentMeasurementError" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','c88074037099498c896bb4793e04fea3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17585','{20834}=2','Status: Device has "eepromAccessFailure" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','cecd8ee17e5143ffb46495e927750c82');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17586','{20835}=2','Status: Device has "fp10SupplyOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','4affa15e1c1c42459ea8dd6820d1c008');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17587','{20836}=2','Status: Device has "heatsinkTempLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','41e4225072a3468696cfb534c65b9736');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17588','{20837}=2','Status: Device has "heatsinkTempSensorOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','5d269997a57d44ceb545e751e8e2d919');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17589','{20838}=2','Status: Device has "heatsinkTempSensorShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','a8342a4e2fff40a7b830086dec303fd9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17590','{20839}=2','Status: Device has "hightInputVoltageLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','32e5b7ae81ce4ebea9b05ff7ab411e5a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17591','{20840}=2','Status: Device has "inductorTempLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','c10d27c1d9d54b8981a639e7bf0dfc02');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17592','{20841}=2','Status: Device has "inductorTempSensorOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','9f80959684b34b6498a1634097cd0d22');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17593','{20842}=2','Status: Device has "inductorTempSensorShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','cc735ddcc98e4c099bb770e2b2a171b5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17594','{20843}=2','Status: Device has "loadCurrentOffset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','217935cd6c7547bc95f5af51b3e643d4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17595','{20844}=2','Status: Device has "loadLvd" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','cb05261f120240bf944b304ffc4979e6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17596','{20845}=2','Status: Device has "logTimeout" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','1ed1de932e084ce5ba03747bdd8ca4e5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17597','{20846}=2','Status: Device has "mosfetOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8824f80f1ef245508d6d0d660e3cabf1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17598','{20847}=2','Status: Device has "p12SupplyOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','59569aaebf32403c9fd310f6b26845b0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17599','{20848}=2','Status: Device has "p33SupplyOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','4775d3a7b843455eb404661c070be092');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17600','{20849}=2','Status: Device has "rtsDisconnected" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','2015d2b876564ad79699a23fc6b60f07');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17601','{20850}=2','Status: Device has "rtsShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','cce1eb2bee094a3b9a993ec2d60d182b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17602','{20851}=2','Status: Device has "tb5v" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','7a07b757660a4c9a879ac03a94832720');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17603','{20852}=2','Status: Device has "uncalibrated" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','39205fc6d2cd4888994cccb016b4b2f8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17604','{20853}=2','Status: Device has "arrayHvd" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8322f8ca8e2e462a8799dc399f17ba27');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17605','{20854}=2','Status: Device has "batteryHvd" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6a138cd2af754bb3a22173e8da28b254');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17606','{20855}=2','Status: Device has "batteryLowVoltageDisconnect" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8e42cf21ec10409da840021bfd26f74c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17607','{20856}=2','Status: Device has "customSettingsEdit" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d1112d9828064a879d56626ac6339dbf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17608','{20857}=2','Status: Device has "dipSwitchChanged" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','75a67f17a33e41eea34585fade6319ef');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17609','{20858}=2','Status: Device has "localTempSensorDamaged" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','4502112383524f0499ea13e6f83ce789');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17610','{20859}=2','Status: Device has "mosfetSShorted" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f1489dc1f8574895bd233b14ce080748');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17611','{20860}=2','Status: Device has "overcurrent" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','4ea903d3e8644ddaa5309eaa9715b894');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17612','{20861}=2','Status: Device has "rtsNoLongerValid" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','e12a29ec16ea423cb69ca4ce460f201b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17613','{20862}=2','Status: Device has "rtsShorted" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','3ec4307bb2c444fc8eca27f9b7a136e2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17614','{20863}=2','Status: Device has "slaveTimeout" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','915c00d98e144ee7a9a2d50d0bd474c0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17615','{20864}=2','Status: Device has "software" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','9aac314eef594a8d86fd4b88308428e5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17616','{20865}=2','Status: Device has "customSettingsEdit" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','93750f768ba94f1bb9302fc17c76faeb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17617','{20866}=2','Status: Device has "dipSwitchChanged" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','456e2c36369f4519b2c80bcfe1acb4b0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17618','{20867}=2','Status: Device has "externalShortCircuit" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','359df17c40684187b7ae92c8aa0c9624');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17619','{20868}=2','Status: Device has "highTempDisconnect" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6dadf09064304f4381ad9ed0436e562a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17620','{20869}=2','Status: Device has "loadHvd" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','bc41145ae8074290913a47cc3fd11e1e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17621','{20870}=2','Status: Device has "mosfetShorted" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8c8a7021928e4bf78b6309574e298876');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17622','{20871}=2','Status: Device has "overcurrent" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b7d3f05837bd4d788d14f1aaf18b0482');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17623','{20872}=2','Status: Device has "software" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','801728740c1948b1a751469e6443daab');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17624','({32429}>0 and {32429}<10m) or ({32429}=0 and {32430}<10m)','Status: Device has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Status: Device has been restarted (uptime < 10m)','ca65a39c019046c29a522a6ca93ceb75');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17625','{20874}=1','Status: Failed to fetch data','','0','2','Zabbix has not received data for items for the last 5 minutes.',NULL,'0','0','0','','0','','1','','0','Status: Failed to fetch data (or no data for 5m)','59cbcaaee8304b38a1144b3abf40bd9d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17626','{20875}>{$BATTERY.TEMP.MAX.CRIT}','Temperature: Critically high battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m)','c74e1d3be1c24bde986bbce068db4bb8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17627','{20876}<{$BATTERY.TEMP.MIN.CRIT}','Temperature: Critically low battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','0c2180ae5deb41adb503e37bf91c34e2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17628','{20877}>{$BATTERY.TEMP.MAX.WARN}','Temperature: High battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m)','1ab91d781c734f1eb2b9552f6dee9370');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17629','{20878}<{$BATTERY.TEMP.MIN.WARN}','Temperature: Low battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6ec855dc6a5c42a79f1f40e14655418a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17630','{20879}>{#VOLTAGE.MAX.CRIT}','Battery: Critically high battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m)','402f73ca5b8d412689a7e715223e890d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17631','{20880}<{#VOLTAGE.MIN.CRIT}','Battery: Critically low battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m)','753a0d25832d434186f586f895124f31');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17632','{20881}>{#VOLTAGE.MAX.WARN}','Battery: High battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m)','66e1fdfbfa5740dfa8945626f7f8be78');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17633','{20882}<{#VOLTAGE.MIN.WARN}','Battery: Low battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m)','c9f3d03ce06641eb9b184f511a3a0341');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17634','{20883}={$CHARGE.STATE.CRIT}','Battery: Device charge in critical state','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f12fc2c1a7a142a287304c18bafa1181');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17635','{20884}={$CHARGE.STATE.WARN}','Battery: Device charge in warning state','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','adf8cf02aa1e42fa84e1f11ddae4df01');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17636','{20885}={$LOAD.STATE.CRIT:"lvd"} or {20885}={$LOAD.STATE.CRIT:"fault"}','Load: Device load in critical state','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','7a8bf4420b6b48ab8a5bc999eecae760');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17637','{20886}={$LOAD.STATE.WARN:"lvdWarning"} or {20886}={$LOAD.STATE.WARN:"override"}','Load: Device load in warning state','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','5152f9cd4ee34be485f3cb0a0f60afd5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17638','{20887}=2','Status: Device has "arrayCurrentOffset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','67fd46f034c3486e9af3cabfc5dc8056');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17639','{20888}=2','Status: Device has "batterySenseDisconnected" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','31cc0b05b83045de80a7d07f26545010');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17640','{20889}=2','Status: Device has "batterySenseOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','9e498d21bc7f4ca1937f1628f4b1ea55');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17641','{20890}=2','Status: Device has "batteryTempOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8a09c7609f9a45cea5b217757a7d2e5e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17642','{20891}=2','Status: Device has "controllerReset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b173b8ca12f8464aae6476009b4c89e8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17643','{20892}=2','Status: Device has "currentLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','cdbac88810ff49caa35771e661d8b312');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17644','{20893}=2','Status: Device has "currentMeasurementError" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','7758388df28d4540ba393f4423fef00a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17645','{20894}=2','Status: Device has "eepromAccessFailure" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','a56fef1f61c44ba884ec448b0d306c1d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17646','{20895}=2','Status: Device has "fp10SupplyOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','fefea5daa03d453c8c5148ddb39997f9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17647','{20896}=2','Status: Device has "heatsinkTempLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','c252c82aff2a4ac680965115cb2fab64');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17648','{20897}=2','Status: Device has "heatsinkTempSensorOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','5b93a0a09a62481d8096ec743c2ceaff');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17649','{20898}=2','Status: Device has "heatsinkTempSensorShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f28e5143a238470ba93c1345c814f87d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17650','{20899}=2','Status: Device has "hightInputVoltageLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','75c84ef378984fca854b34a8ef79668c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17651','{20900}=2','Status: Device has "loadCurrentOffset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','5c1551f7e2be40e0b8b50ed263f8e293');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17652','{20901}=2','Status: Device has "loadLvd" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','665117c5b9b64ea09a1d661e9c40fc43');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17653','{20902}=2','Status: Device has "logTimeout" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b89c002c859c419ea748b43d575e9e27');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17654','{20903}=2','Status: Device has "mosfetOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','17f51e7b248b4e63934e8b529b85b2ef');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17655','{20904}=2','Status: Device has "p12SupplyOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','75e23772250741d0b1fc1ddff2a72ef6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17656','{20905}=2','Status: Device has "p33SupplyOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','fc374c9ac9fa4f979fbff9f7c7d83565');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17657','{20906}=2','Status: Device has "rtsDisconnected" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','fbec2a1fdbe54d8da352471acf67bad1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17658','{20907}=2','Status: Device has "rtsShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','915da6e7b1cd410da9a6c68e3b4abd85');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17659','{20908}=2','Status: Device has "uncalibrated" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','e8bf2213a5444e2c9923b6f093d43f75');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17660','{20909}=2','Status: Device has "arrayHvd" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b2ff69793e124031a79a668b03678fac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17661','{20910}=2','Status: Device has "batteryHvd" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','a4ca36ccaa9d45ceb79303afef1c49f0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17662','{20911}=2','Status: Device has "batteryLowVoltageDisconnect" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f4d1120afb13456b9d45f8795dbc30b7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17663','{20912}=2','Status: Device has "customSettingsEdit" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','9e5f2c575945458ea8a39f33cb23b833');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17664','{20913}=2','Status: Device has "dipSwitchChanged" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','fd904f4469324784ac2c469e64069f94');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17665','{20914}=2','Status: Device has "localTempSensorDamaged" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','62076ce0967049c8bde39f71afcb85d9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17666','{20915}=2','Status: Device has "mosfetSShorted" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','ea8487afe1c14bc08f3d9fd7f75d208f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17667','{20916}=2','Status: Device has "overcurrent" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b0bb139541ae493bafc40dac9074d898');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17668','{20917}=2','Status: Device has "p3Fault" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8af94d7ff1a84e18b10122b0e3743d45');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17669','{20918}=2','Status: Device has "rtsNoLongerValid" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b41cb2e05acb40f59efa50a25f66cd62');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17670','{20919}=2','Status: Device has "rtsShorted" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d99c3f126c7e480cb4fcc705349eb61d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17671','{20920}=2','Status: Device has "slaveTimeout" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','711b28f19cb74c0faeef73263ca1fb8f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17672','{20921}=2','Status: Device has "software" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','e4a261d750d546c7b5d5067dd9a0ec25');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17673','{20922}=2','Status: Device has "customSettingsEdit" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','99ab5f0d3014459a8cd7d137d3a1f688');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17674','{20923}=2','Status: Device has "dipSwitchChanged" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','77752192092f4f1caceef19c3c164b72');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17675','{20924}=2','Status: Device has "externalShortCircuit" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d2e55501d89844aeb47f7887a11754a9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17676','{20925}=2','Status: Device has "highTempDisconnect" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','a6548502cfc4406098ba3129af8efcb5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17677','{20926}=2','Status: Device has "loadHvd" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6e8f0127bc7b42dea9d867ab174f458c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17678','{20927}=2','Status: Device has "mosfetShorted" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','2a303d4712e244a9b051fb1b0247fac5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17679','{20928}=2','Status: Device has "overcurrent" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','5720e2e15e5f42099fd7de361f62c99a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17680','{20929}=2','Status: Device has "p3Fault" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','2f522d50a8124ed2a8af4d7b6417c31c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17681','{20930}=2','Status: Device has "software" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','e75abe852b9c4e1d91a1f8f83622ef64');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17682','({32431}>0 and {32431}<10m) or ({32431}=0 and {32432}<10m)','Status: Device has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Status: Device has been restarted (uptime < 10m)','dea364bf454746bca6be38d7e0759d06');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17683','{20932}=1','Status: Failed to fetch data','','0','2','Zabbix has not received data for items for the last 5 minutes.',NULL,'0','0','0','','0','','1','','0','Status: Failed to fetch data (or no data for 5m)','16c1444a745a47e59fd22bd1a64baef3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17684','{20933}>{$BATTERY.TEMP.MAX.CRIT}','Temperature: Critically high battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m)','46eb3a0e80294a4db8324d56337ed712');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17685','{20934}<{$BATTERY.TEMP.MIN.CRIT}','Temperature: Critically low battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','c3f3ba5b2cab4481bb62fa8527554e96');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17686','{20935}>{$BATTERY.TEMP.MAX.WARN}','Temperature: High battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m)','80aaf1de029b4d6eadce9f2a946f6dde');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17687','{20936}<{$BATTERY.TEMP.MIN.WARN}','Temperature: Low battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','cf1db336ea124f9a9fd6eb367f93f0e8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17688','{20937}>{#VOLTAGE.MAX.CRIT}','Battery: Critically high battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m)','e89cf2b8066840c2876642f0d8db1edd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17689','{20938}<{#VOLTAGE.MIN.CRIT}','Battery: Critically low battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m)','8356aba9afb242b09902873a5f0e1d47');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17690','{20939}>{#VOLTAGE.MAX.WARN}','Battery: High battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m)','77f130af976c43edb8c823de5cbd57b2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17691','{20940}<{#VOLTAGE.MIN.WARN}','Battery: Low battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m)','6c288c8b28db4f8e95c8ad2aa8b838ef');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17692','{20941}={$CHARGE.STATE.CRIT}','Battery: Device charge in critical state','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','0362139c66f4464db8c022b9ffce5502');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17693','{20942}={$CHARGE.STATE.WARN}','Battery: Device charge in warning state','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d5439cee53b148ecb4186286c4e93ada');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17694','{20943}={$LOAD.STATE.CRIT:"lvd"} or {20943}={$LOAD.STATE.CRIT:"fault"}','Load: Device load in critical state','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','bbd3a89b012a40daa646ec7113d43e43');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17695','{20944}={$LOAD.STATE.WARN:"lvdWarning"} or {20944}={$LOAD.STATE.WARN:"override"}','Load: Device load in warning state','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8f6967c1b577431c995a3c13f8cdb1c1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17696','{20945}=2','Status: Device has "currentLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','86220f6cc9164490b6d80be4a249e749');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17697','{20946}=2','Status: Device has "currentOffset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','69016ea6a1204435b3ddb8de6b8944dc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17698','{20947}=2','Status: Device has "heatsinkTempSensorOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','2c02465ea74e4c63ab783d235c8f1a30');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17699','{20948}=2','Status: Device has "heatsinkTempSensorShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','1aa289c68f0b4b44a043281e6df9e462');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17700','{20949}=2','Status: Device has "highVaCurrentLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6d0ce7d6e2cc407ba0f4d989bdd9a141');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17701','{20950}=2','Status: Device has "mosfetSOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','718a3426363040e1ab82864635444056');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17702','{20951}=2','Status: Device has "p12VoltageReferenceOff" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','4eb4df0b4cf04a198190312cdb33538f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17703','{20952}=2','Status: Device has "rtsDisconnected" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','e2ac890bb16d4e0798b0410f33c8a860');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17704','{20953}=2','Status: Device has "rtsMiswire" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','3b02b27bd4674ae3b820730cee8e611a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17705','{20954}=2','Status: Device has "rtsShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d253c037d5974ee38e888162687b96ef');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17706','{20955}=2','Status: Device has "sspptHot" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','1bea0c0e01314dbaa1cfdfa5a0625755');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17707','{20956}=2','Status: Device has "systemMiswire" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d28d0e51500a45859ccb6969d9b5493f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17708','{20957}=2','Status: Device has "uncalibrated" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','427f75a98d4440a38e40522bccec03bb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17709','{20958}=2','Status: Device has "arrayHvd" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','2d8b0bdeb95c49d68771af384d985311');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17710','{20959}=2','Status: Device has "batteryHvd" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','2e07c5d51691462ca0961d77ea974bd5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17711','{20960}=2','Status: Device has "customSettingsEdit" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','65d2cd1ff93f45db9d7f572ee0a8f568');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17712','{20961}=2','Status: Device has "localTempSensorDamaged" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','fe217d10399044d7b1008f0010691e1e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17713','{20962}=2','Status: Device has "mosfetSShorted" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','fa62f9e4f0f84e278938ba18785a1b5f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17714','{20963}=2','Status: Device has "overcurrent" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6f450621a12e46369745b2a0fed018ac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17715','{20964}=2','Status: Device has "rtsNoLongerValid" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','7ea38daa41a94ab3a9c1efc34276b17b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17716','{20965}=2','Status: Device has "rtsShorted" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','91edc885c3f140cc85bb6085f06e6820');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17717','{20966}=2','Status: Device has "softwareFault" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','cae74543a0da478d80b9302a2431fe4b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17718','{20967}=2','Status: Device has "customSettingsEdit" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d086fbb093344723a4bb5fe928e984ff');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17719','{20968}=2','Status: Device has "externalShortCircuit" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','5743ed062a954330928092fb8574002a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17720','{20969}=2','Status: Device has "highTempDisconnect" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','354a1512bca5468585a489dd14fc793d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17721','{20970}=2','Status: Device has "loadHvd" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','3640e470580846ac9e1651cba186d0a3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17722','{20971}=2','Status: Device has "mosfetShorted" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d3911d64792e4b88b31cb51a405a1a2e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17723','{20972}=2','Status: Device has "overcurrent" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d1bfa4177c0844ec9fc2bc7270c09338');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17724','{20973}=2','Status: Device has "software" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','baaba919b58546f08cdcd1e2791feb27');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17725','{20974}=2','Status: Device has "unknownLoadFault" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','41e47074c983421a83b1e500d4591188');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17726','({32433}>0 and {32433}<10m) or ({32433}=0 and {32434}<10m)','Status: Device has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Status: Device has been restarted (uptime < 10m)','fd5dcb256d4547da9c432c1b9c01b0ae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17727','{20976}=1','Status: Failed to fetch data','','0','2','Zabbix has not received data for items for the last 5 minutes.',NULL,'0','0','0','','0','','1','','0','Status: Failed to fetch data (or no data for 5m)','72e6e08faed647a98a027bd25b6a7106');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17728','{20977}>{$BATTERY.TEMP.MAX.CRIT}','Temperature: Critically high battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m)','cc121c44be05440a82d3344c530456e5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17729','{20978}<{$BATTERY.TEMP.MIN.CRIT}','Temperature: Critically low battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','9e0d552b93ae402d98c327420c99d160');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17730','{20979}>{$BATTERY.TEMP.MAX.WARN}','Temperature: High battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m)','95b600e280b94949b41422eb60def010');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17731','{20980}<{$BATTERY.TEMP.MIN.WARN}','Temperature: Low battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','e351922a0a8c4c53972d9477d47af528');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17732','{20981}>{#VOLTAGE.MAX.CRIT}','Battery: Critically high battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m)','bf4ad2cee8cf41baafa3d81df5fbe4d3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17733','{20982}<{#VOLTAGE.MIN.CRIT}','Battery: Critically low battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m)','2aedfef9b8764881a4768e6b32793820');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17734','{20983}>{#VOLTAGE.MAX.WARN}','Battery: High battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m)','bec4c7a6a1ab44a4adc8e4286b9a41d9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17735','{20984}<{#VOLTAGE.MIN.WARN}','Battery: Low battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m)','c06425d8a0a24b5f80fd0591be61b3f0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17736','{20985}={$LOAD.STATE.CRIT:"lvd"} or {20985}={$LOAD.STATE.CRIT:"fault"}','Load: Device load in critical state','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','83a1cad652b445a69541208f81b12c23');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17737','{20986}={$LOAD.STATE.WARN:"lvdWarning"} or {20986}={$LOAD.STATE.WARN:"override"}','Load: Device load in warning state','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','bed6bfb29f5d4a3e89b9028b45bfb8b8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17738','{20987}=2','Status: Device has "heatsinkTempSensorOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6181b0f6c4cf4febaa86039dae994f30');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17739','{20988}=2','Status: Device has "heatsinkTempSensorShort" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','ebe250d8faf543429bd5732114f05fd4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17740','{20989}=2','Status: Device has "suresineHot" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','ff3ee8e7bd074037a99a56f02dfaff72');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17741','{20990}=2','Status: Device has "unknownAlarm" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','64c7437f53f74578a85b358f73529322');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17742','{20991}=2','Status: Device has "customSettingsEdit" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','438d1fb319234de9aaa74fa565e6c661');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17743','{20992}=2','Status: Device has "dipSwitchChanged" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','174685e8f89f4e21b7275db6be7623b2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17744','{20993}=2','Status: Device has "highVoltageDisconnect" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','283d5eb818744b25b4275509b0492bfd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17745','{20994}=2','Status: Device has "overcurrent" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','a271f6d0e1504e46966da689b91cf1f7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17746','{20995}=2','Status: Device has "reset" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','88df087dcb434c5d9980d249f077a661');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17747','{20996}=2','Status: Device has "software" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','9fa2ec74f9b34f0082d9173f57e1edf6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17748','{20997}=2','Status: Device has "suresineHot" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','970e89c852c34a219ad0c1fce357e97a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17749','{20998}=2','Status: Device has "unknownFault" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','fe023e11a544470cb09db1585d7f1e83');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17750','({32435}>0 and {32435}<10m) or ({32435}=0 and {32436}<10m)','Status: Device has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Status: Device has been restarted (uptime < 10m)','f9404001de4c4c1d8438e0b560977398');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17751','{21000}=1','Status: Failed to fetch data','','0','2','Zabbix has not received data for items for the last 5 minutes.',NULL,'0','0','0','','0','','1','','0','Status: Failed to fetch data (or no data for 5m)','db5506294fd945659eae945014332a62');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17752','{21001}>{#VOLTAGE.MAX.CRIT}','Battery: Critically high battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m)','4b27f6ecdc674803a883a8a60e3ddce2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17753','{21002}<{#VOLTAGE.MIN.CRIT}','Battery: Critically low battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m)','dfbcd455a92d423fbb841f2d6b6293a8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17754','{21003}>{#VOLTAGE.MAX.WARN}','Battery: High battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m)','e0173479978841ec8607430cf2fb356e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17755','{21004}<{#VOLTAGE.MIN.WARN}','Battery: Low battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m)','75a433d7ec28440f947a4aaed3aed33d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17756','{21005}={$CHARGE.STATE.CRIT}','Battery: Device charge in critical state','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','ed2b56b78fce47f88b679774640706b5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17757','{21006}={$CHARGE.STATE.WARN}','Battery: Device charge in warning state','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6f21bda91cc640809f0f4faf04ba86f4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17758','{21007}=2','Status: Device has "alarm21Internal" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','62d1ffe8417c4ef9b746d17185d8853b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17759','{21008}=2','Status: Device has "arrayCurrentOffset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','367d91fa49c241e795a2b497739c6f01');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17760','{21009}=2','Status: Device has "batterySense" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','1c1baf4eea9e416a98bcf3e12d7ae01f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17761','{21010}=2','Status: Device has "batterySenseDisconnected" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b627e79de7b446d69ee245b07f755405');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17762','{21011}=2','Status: Device has "controllerWasReset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','73aba1af987843d98542105f2b41c5bd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17763','{21012}=2','Status: Device has "currentLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','aae5a3441b9e4394a39e7a8c5ce29e0c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17764','{21013}=2','Status: Device has "currentOffset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f8e42483b1534ed586252db0c8880aa6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17765','{21014}=2','Status: Device has "derateLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','bd32be9b60334cc1b80d2de129f0f1a2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17766','{21015}=2','Status: Device has "ee-i2cRetryLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','e0886663f4df4ff0965fac33951d4ffc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17767','{21016}=2','Status: Device has "ethernetAlarm" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','abfeb2c3c566401b9f30cd28765aacff');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17768','{21017}=2','Status: Device has "extflashFault" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','a0ffdbf5695d4945960df6ea7defa071');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17769','{21018}=2','Status: Device has "fp12VoltageOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f92ce5a55f0a4a65beca0abb748b7c04');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17770','{21019}=2','Status: Device has "heatsinkTempSensorOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','5bdcd298878a4baf97aab8df338e1123');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17771','{21020}=2','Status: Device has "heatsinkTempSensorShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','9fe220d99b524db8bbfe5b511ee91fa7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17772','{21021}=2','Status: Device has "highArrayVCurrentLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','dc8d3f71c60643b7a6a25a9d7452ce60');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17773','{21022}=2','Status: Device has "highTemperatureCurrentLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d279f44217b046c789c865b8b44c9342');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17774','{21023}=2','Status: Device has "highVoltageDisconnect" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b48d1c04e95c4b89a7240fc2a611a499');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17775','{21024}=2','Status: Device has "lvd" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','767be108224d43a99ac2568166c9cd33');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17776','{21025}=2','Status: Device has "maxAdcValueReached" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','107b8a4a63c146fa908f5b7ccc716258');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17777','{21026}=2','Status: Device has "mosfetSOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','5792c3702ab94123891e02ee4c05339f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17778','{21027}=2','Status: Device has "p3VoltageOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','a115f88a282e41179b569633234f04e2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17779','{21028}=2','Status: Device has "p12VoltageOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8a3906ceae5547ca8f9c916ca46e7be8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17780','{21029}=2','Status: Device has "rtsDisconnected" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','49d3fb027a88462aa7f67442a507c051');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17781','{21030}=2','Status: Device has "rtsMiswire" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','650cf2d3c06f4c55ac90b1dd23ca25d1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17782','{21031}=2','Status: Device has "rtsShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','48bb77b135c84d6a9e3792d8385f16da');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17783','{21032}=2','Status: Device has "slaveControlFault" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','7e363c7cc8ce4104a9c6269c9e94ac26');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17784','{21033}=2','Status: Device has "software" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','e1235a2201a542bb9ac67345c70641e3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17785','{21034}=2','Status: Device has "systemMiswire" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','cb5b84c99bcf45459bdc955c8604264b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17786','{21035}=2','Status: Device has "uncalibrated" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','72ce41657c1848d897255ad3de77d942');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17787','{21036}=2','Status: Device has "arrayHvd" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','747a56182a6f4336b720a95b0609013c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17788','{21037}=2','Status: Device has "batteryHvd" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','e9d7a51b64444e27b28b13ebf38a11c3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17789','{21038}=2','Status: Device has "batteryLvd" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b898ac485d094f1cb65020ad5459641b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17790','{21039}=2','Status: Device has "blockbusBoot" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','806e83938072453ab66895044907c02d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17791','{21040}=2','Status: Device has "chargeSlaveControlTimeout" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f20f87cd6ce3414182cd2088a947ef24');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17792','{21041}=2','Status: Device has "controllerWasReset" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f4478548ad17400c9cddbf8b27720952');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17793','{21042}=2','Status: Device has "currentSensorReferenceOutOfRange" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6c9a64ff6f61457daf826e831f51b048');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17794','{21043}=2','Status: Device has "customSettingsEdit" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','74d39d01841f454e8f72457104a42cb7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17795','{21044}=2','Status: Device has "dipSwitchChange" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','12d55fb0398c4fbb87ca948f2e692a38');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17796','{21045}=2','Status: Device has "eepromRetryLimit" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','25e71e9c3ad945ed9f48945cac45bb56');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17797','{21046}=2','Status: Device has "fault16Software" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f6fafa09a41a428c87d5ef303071a7f7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17798','{21047}=2','Status: Device has "fault17Software" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8f079e7606d14dc2ab6313fdae80bafc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17799','{21048}=2','Status: Device has "fault18Software" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','c388f647dd48445d8b8e3eee02ea38fc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17800','{21049}=2','Status: Device has "fault19Software" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','1466954e09704b3092772f0996f692f4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17801','{21050}=2','Status: Device has "fault20Software" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','86595bafc3054fd99343f24bbfdc44e3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17802','{21051}=2','Status: Device has "fault21Software" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d269607e330243fe93e2f85c36d38114');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17803','{21052}=2','Status: Device has "fetShort" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','68d6b95b6b9e42ada5a212a913d1ae43');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17804','{21053}=2','Status: Device has "fpgaVersion" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','dcb1c2bcc704405c8baae825124e3958');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17805','{21054}=2','Status: Device has "hscomm" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','351af5c43f984930b4ebdb8690c52e7d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17806','{21055}=2','Status: Device has "hscommMaster" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b32067a9b80c4836af4120f9f8e21bbd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17807','{21056}=2','Status: Device has "ia-refSlaveModeTimeout" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','bb61ea6f03c94556bf4f333bc050206f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17808','{21057}=2','Status: Device has "overcurrent" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','843654df3185400e854c8c1f0229c32c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17809','{21058}=2','Status: Device has "powerboardCommunicationFault" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','642f03d6eda346aca835e75088b7067b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17810','{21059}=2','Status: Device has "rs232SerialToMeterBridge" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','4d8f0244f8d047bc8730ffc2f02a976d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17811','{21060}=2','Status: Device has "rtsDisconnected" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6c125b8f681b47a99f7535292bd0507c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17812','{21061}=2','Status: Device has "rtsShorted" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','abad398631f34dac8094e4bcd14e3613');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17813','{21062}=2','Status: Device has "slave" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6824d221feb042da860248a4b418105c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17814','{21063}=2','Status: Device has "softwareFault" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','56adf438e90f410497246b27b6da49f4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17815','({32437}>0 and {32437}<10m) or ({32437}=0 and {32438}<10m)','Status: Device has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Status: Device has been restarted (uptime < 10m)','5393dee9b39d438a8c1553a0be0fb0f2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17816','{21065}=1','Status: Failed to fetch data','','0','2','Zabbix has not received data for items for the last 5 minutes.',NULL,'0','0','0','','0','','1','','0','Status: Failed to fetch data (or no data for 5m)','c4f0ea9e18884bc0b546933871017098');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17817','{21066}>{$BATTERY.TEMP.MAX.CRIT}','Temperature: Critically high battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m)','bc117de353304889980c7836603abb0d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17818','{21067}<{$BATTERY.TEMP.MIN.CRIT}','Temperature: Critically low battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','25a8f16d632940c3a2c994a9f2a76851');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17819','{21068}>{$BATTERY.TEMP.MAX.WARN}','Temperature: High battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m)','db1152c815c84d208be0db3dac63acb4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17820','{21069}<{$BATTERY.TEMP.MIN.WARN}','Temperature: Low battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','9c331fb9a30b4867a3e16acd7e9f8983');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17821','{21070}>{#VOLTAGE.MAX.CRIT}','Battery: Critically high battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m)','f326b9eb93fe4267bf9f4a07bb578eca');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17822','{21071}<{#VOLTAGE.MIN.CRIT}','Battery: Critically low battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m)','07fb5dd68c954da3982392dfcb2de0b8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17823','{21072}>{#VOLTAGE.MAX.WARN}','Battery: High battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m)','aca6ef49842d4b3ba543fcf470473a96');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17824','{21073}<{#VOLTAGE.MIN.WARN}','Battery: Low battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m)','b8673c0802a244d0850730e3fdf5a6dc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17825','{21074}={$CHARGE.STATE.CRIT}','Battery: Device charge in critical state','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6c6371d2476246789d23404e068e5179');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17826','{21075}={$CHARGE.STATE.WARN}','Battery: Device charge in warning state','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','65bdeac02fed4febae857f571319bf37');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17827','{21076}=2','Status: Device has "batterySense" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b073c972bb64463aaee85c6129fad319');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17828','{21077}=2','Status: Device has "batterySenseDisconnected" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','80a2d0a457024c22b39f0fcd45992e1e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17829','{21078}=2','Status: Device has "controllerWasReset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','bac1cc54818245f9baa8dc07ddc0f850');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17830','{21079}=2','Status: Device has "currentLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','86c2dfb7b0984eaab02f47c58337f468');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17831','{21080}=2','Status: Device has "currentOffset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','dd000390277a4e848a3236501817addf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17832','{21081}=2','Status: Device has "heatsinkTempSensorOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','650ecb9c06464937a3f797e73a3d756d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17833','{21082}=2','Status: Device has "heatsinkTempSensorShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','5999a4b6c49a4dabb6350d826b01e646');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17834','{21083}=2','Status: Device has "highArrayVCurrentLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','7331337c7ffb4933bca3982614657912');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17835','{21084}=2','Status: Device has "highTemperatureCurrentLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','82a2e0adba7444c6945666fcb9430808');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17836','{21085}=2','Status: Device has "highVoltageDisconnect" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b1f6d22d205e449a811da905e679800f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17837','{21086}=2','Status: Device has "maxAdcValueReached" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','e3ce50b9b696486f945ee5a4c1a7a753');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17838','{21087}=2','Status: Device has "mosfetSOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','1536cf07556b4cddb62186030a4321ca');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17839','{21088}=2','Status: Device has "p12VoltageReferenceOff" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','136621f032544ea8af5e86a14ec03cb6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17840','{21089}=2','Status: Device has "rtsDisconnected" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','62ecaaf59a984b2999d13540c5220470');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17841','{21090}=2','Status: Device has "rtsMiswire" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','12037d207b3f413198594877cc7a3862');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17842','{21091}=2','Status: Device has "rtsShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','330f9dfe6ea34b17bcf4cac2c908d78c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17843','{21092}=2','Status: Device has "systemMiswire" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','fba13770ff67433489ec95d62b65d4b5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17844','{21093}=2','Status: Device has "uncalibrated" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','de6208b4474f4743ad99444fd7eb135d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17845','{21094}=2','Status: Device has "arrayHvd" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','2a1b5a65311144d69c03255336f9f15f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17846','{21095}=2','Status: Device has "batteryHvd" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f837f0839967493bb0e38b21000f5e9a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17847','{21096}=2','Status: Device has "customSettingsEdit" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','05b70b4be5554dd5ac2c65af04d79986');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17848','{21097}=2','Status: Device has "dipSwitchChange" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','24ecb8842ea84a82b4d05a4e85150c55');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17849','{21098}=2','Status: Device has "eepromRetryLimit" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','008d82bc793b49afa6cd37d038c837fe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17850','{21099}=2','Status: Device has "fetShort" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','71dbbf441c234dcfbf014fc043bf5d3a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17851','{21100}=2','Status: Device has "overcurrent" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','c100ec68ddaf40e6964ba2598141daa7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17852','{21101}=2','Status: Device has "rtsDisconnected" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','435df7ebe3e047ffada64dcf7e69148a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17853','{21102}=2','Status: Device has "rtsShorted" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','88443c84eaa0415db976e7a5d6c1dec4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17854','{21103}=2','Status: Device has "slaveControlTimeout" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b19111ec08094dbca30a804011b02ed2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17855','{21104}=2','Status: Device has "softwareFault" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','0d90cab800ad4bbcbf880c157a7a9dae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17856','({32439}>0 and {32439}<10m) or ({32439}=0 and {32440}<10m)','Status: Device has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Status: Device has been restarted (uptime < 10m)','aab5be196ac64dc69883c3109fcd094f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17857','{21106}=1','Status: Failed to fetch data','','0','2','Zabbix has not received data for items for the last 5 minutes.',NULL,'0','0','0','','0','','1','','0','Status: Failed to fetch data (or no data for 5m)','db9317cb9a6645d2bd8f4760f7579c17');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17858','{21107}>{$BATTERY.TEMP.MAX.CRIT}','Temperature: Critically high battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m)','5ec1c2e4786048fc889a37a12a2f4ad6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17859','{21108}<{$BATTERY.TEMP.MIN.CRIT}','Temperature: Critically low battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','84c059ff133f4f4d8145615c0a98eb50');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17860','{21109}>{$BATTERY.TEMP.MAX.WARN}','Temperature: High battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m)','11d2b988cfec425c9ffb082e9c78490d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17861','{21110}<{$BATTERY.TEMP.MIN.WARN}','Temperature: Low battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','46122992e8a04c7bb7a8c8037a2da74a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17862','{21111}>{#VOLTAGE.MAX.CRIT}','Battery: Critically high battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m)','cf9bb1b6e84d4b03b38f13c1c1d4905c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17863','{21112}<{#VOLTAGE.MIN.CRIT}','Battery: Critically low battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m)','d977ded736704d748ca49595f3658b89');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17864','{21113}>{#VOLTAGE.MAX.WARN}','Battery: High battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m)','00deb7608b3e4444bd4833f5b8ae5875');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17865','{21114}<{#VOLTAGE.MIN.WARN}','Battery: Low battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m)','2877138cdfb0448a9a83eb807b5da24a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17866','{21115}=2','Status: Device has "batterySense" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','121d47c6bbdd45bca261df2e01ea41c6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17867','{21116}=2','Status: Device has "batterySenseDisconnected" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','fd2d9290144143d39bb5a3cf0a2d261f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17868','{21117}=2','Status: Device has "currentLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','83d5b8d52acd4e21ac6d3a9cf05dcd04');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17869','{21118}=2','Status: Device has "currentOffset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d9529a4372d848038e6ee561d62e9f22');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17870','{21119}=2','Status: Device has "diversionLoadNearMax" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','5f3983acc1cc417e860c1305b11c15ea');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17871','{21120}=2','Status: Device has "heatsinkTempSensorOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','878e04df7e7b416bb0d2213b5dbb80e6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17872','{21121}=2','Status: Device has "heatsinkTempSensorShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','c642ed9496ce4322809c7142d32929a5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17873','{21122}=2','Status: Device has "highVoltageDisconnect" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','532421fe17bf4732a01a6990e34e649a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17874','{21123}=2','Status: Device has "loadDisconnectState" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','ae90e8034baf4b21906d56d18bfa4da8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17875','{21124}=2','Status: Device has "mosfetSOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8d8b721c6dee40499b29bee44b21589a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17876','{21125}=2','Status: Device has "p12VoltageReferenceOff" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8cda8e5773de4583b9baa6a6e542e32c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17877','{21126}=2','Status: Device has "rtsDisconnected" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','1b6192b8ca364c229b35ba6de89ad56b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17878','{21127}=2','Status: Device has "rtsMiswire" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','176de77a142d45a3ac39ea42989e209c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17879','{21128}=2','Status: Device has "rtsShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f63029eabc8e498ea7e6336d312ac169');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17880','{21129}=2','Status: Device has "systemMiswire" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','480b69c1febf45a2971788c2f967c45d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17881','{21130}=2','Status: Device has "tristarHot" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','4a287e4086c4458aaa3dc48bbb8ee219');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17882','{21131}=2','Status: Device has "uncalibrated" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','de665482d2574730a3a839948dd730ea');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17883','{21132}=2','Status: Device has "customSettingsEdit" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','514b041aebdd4ddb8ab2d1222c0ef295');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17884','{21133}=2','Status: Device has "dipSwitchChange" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','1a40ce8b87f04ab1b4f30387e9ce2d9d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17885','{21134}=2','Status: Device has "externalShort" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','49b120c3933c43b1b7f5c77f7b359997');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17886','{21135}=2','Status: Device has "highVoltageDisconnect" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f063b9f717c44ab988db7ac95bfca68f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17887','{21136}=2','Status: Device has "mosfetSShorted" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','468716d748f1470cb764ce1af922164d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17888','{21137}=2','Status: Device has "overcurrent" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b6f65dfca421490eafff48991cdf1e3b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17889','{21138}=2','Status: Device has "reset" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','73561a5765694633b1dc0ef1b1f60fd4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17890','{21139}=2','Status: Device has "rtsDisconnected" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d14c7d928f57448390c2b4c588a28c65');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17891','{21140}=2','Status: Device has "rtsShorted" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d94067598c234968b4929404067eff86');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17892','{21141}=2','Status: Device has "softwareFault" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','886b18bee7cd4f8eb454973e2d2ae59f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17893','{21142}=2','Status: Device has "systemMiswire" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','2e520cdafaaa4eefad5ebea71819c3a6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17894','{21143}=2','Status: Device has "tristarHot" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','041be44e639d4d1eadb15230a678e278');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17895','({32441}>0 and {32441}<10m) or ({32441}=0 and {32442}<10m)','Status: Device has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Status: Device has been restarted (uptime < 10m)','f0549419f015448497cd7d15a2bf96fa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17896','{21145}=1','Status: Failed to fetch data','','0','2','Zabbix has not received data for items for the last 5 minutes.',NULL,'0','0','0','','0','','1','','0','Status: Failed to fetch data (or no data for 5m)','64aa2a79fe854def8e179a4d27790417');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17897','{21146}>{$BATTERY.TEMP.MAX.CRIT}','Temperature: Critically high battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m)','e759b90e2bf44bbb8e5efe5b9e458e40');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17898','{21147}<{$BATTERY.TEMP.MIN.CRIT}','Temperature: Critically low battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','e57f335f657d45768509f139d31dcdae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17899','{21148}>{$BATTERY.TEMP.MAX.WARN}','Temperature: High battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m)','7d1444dba9334e91ad425a6f2ff9fef9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17900','{21149}<{$BATTERY.TEMP.MIN.WARN}','Temperature: Low battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','14fe4a22b28c4d08a24da51a54e36e81');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17901','{21150}>{#VOLTAGE.MAX.CRIT}','Battery: Critically high battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m)','156ec13d673b4a8aa02a87b1794cb722');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17902','{21151}<{#VOLTAGE.MIN.CRIT}','Battery: Critically low battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m)','5e4400321f4f45b39397c68a4ba54d8e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17903','{21152}>{#VOLTAGE.MAX.WARN}','Battery: High battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m)','fa6502a4a0214f7f933e982182d21d6b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17904','{21153}<{#VOLTAGE.MIN.WARN}','Battery: Low battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m)','a5275748f4c742ea8ab9efd266901e95');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17905','{21154}={$CHARGE.STATE.CRIT}','Battery: Device charge in critical state','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','da21473ce79c42269cc24d3e470b7d07');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17906','{21155}={$CHARGE.STATE.WARN}','Battery: Device charge in warning state','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','79a592050bc64c018cfa5c7b779fba02');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17907','{21156}={$LOAD.STATE.CRIT:"lvd"} or {21156}={$LOAD.STATE.CRIT:"fault"}','Load: Device load in critical state','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','9035e0a92d384a3c844b8a4d4ebd1eb9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17908','{21157}={$LOAD.STATE.WARN:"lvdWarning"} or {21157}={$LOAD.STATE.WARN:"override"}','Load: Device load in warning state','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','a2d13f97c4bd46bfab8e74a2f2a7df2e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17909','{31411}>{$TEMP_CRIT:"{#SNMPVALUE}"}\r\nor\r\n{31412}={$TEMP_CRIT_STATUS}','#{#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31413}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','#{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','bead54e2d2f34d45bafb41600e84ac2d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17910','{31414}>{$TEMP_WARN:"{#SNMPVALUE}"}\r\nor\r\n{31415}={$TEMP_WARN_STATUS}','#{#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31416}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','#{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','f3444dbde8344a1782449ec4260972d1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17911','{21164}<0 and\r\n{21165}>0 and\r\n{21166}=2','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','0','','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','81cea5af79844f298849ca5ef6cde4b3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17912','{21167} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"}','{#DEVNAME}: Disk read request responses are too high','','0','2','This trigger might indicate disk {#DEVNAME} saturation.',NULL,'0','2','0','','0','','1','','0','{#DEVNAME}: Disk read request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"}s for 15m','d96338f9104a4eb4bc7725a5736c96d0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17913','{21168} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}','{#DEVNAME}: Disk write request responses are too high','','0','2','This trigger might indicate disk {#DEVNAME} saturation.',NULL,'0','2','0','','0','','1','','0','{#DEVNAME}: Disk write request responses are too high (write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}s for 15m)','205acd9a37424bd78618ebdc197f251f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17917','{21174}<0 and\r\n{21175}>0 and\r\n{21176}=2','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','0','','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','d2629ca744034cf7b92a39d7f847195a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17918','{21177} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"}','{#DEVNAME}: Disk read request responses are too high','','0','2','This trigger might indicate disk {#DEVNAME} saturation.',NULL,'0','2','0','','0','','1','','0','{#DEVNAME}: Disk read request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"}s for 15m','32f7d131336348178069bbafbdabcfee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17919','{21178} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}','{#DEVNAME}: Disk write request responses are too high','','0','2','This trigger might indicate disk {#DEVNAME} saturation.',NULL,'0','2','0','','0','','1','','0','{#DEVNAME}: Disk write request responses are too high (write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}s for 15m)','d7116046921d441dba5830140f8bf433');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17929','{24442}>0 and {24443}<>{24444}','NetApp FAS3220: Number of failed disks has changed','','0','2','{{ITEM.LASTVALUE2}.regsub("(.*)", \\1)}',NULL,'1','0','1','{24442}=0','0','','0','Current value: {ITEM.LASTVALUE1}','0','','3e2d95918f364248ae07a2e436a986a0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17930','{21193}>0 and {21194}={21194}','Node {#NODE.NAME}: Degraded power supplies count is more than zero','','0','3','{{ITEM.VALUE2}.regsub("(.*)", \\1)}',NULL,'0','2','0','','0','','0','','0','','64a737bc63b1463eb533d2a187c6b58a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17931','{21195}>0 and {21196}={21196}','Node {#NODE.NAME}: Failed FAN count is over than zero','','0','4','{{ITEM.VALUE2}.regsub("(.*)", \\1)}',NULL,'0','2','0','','0','','0','','0','','36b7326a738e41b7be3e0a478bc9f858');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17932','{21197}=2','Node {#NODE.NAME}: Temperature is over than recommended','','0','4','The hardware will shutdown if the temperature exceeds critical thresholds.',NULL,'0','2','0','','0','','0','','0','','e03547e4ede74580909ed57c7f53dac1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17933','{21198}=0','Node {#NODE.NAME}: Node can not communicate with the cluster','','0','4','',NULL,'0','2','0','','0','','1','','0','','0c331366ac9d4398bfc815c3cb241e7c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17934','{21199}<>1','Node {#NODE.NAME}: NVRAM battery status is not OK','','0','3','',NULL,'0','2','0','','0','','1','','0','','567a28dd5b364aea84a43438aee24c5c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17935','{21200}<10m','Node {#NODE.NAME}: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','Node {#NODE.NAME}: {HOST.NAME} has been restarted (uptime < 10m)','6040422dc0b34863a90af558d72956ee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17936','{21201}>{$CPU.UTIL.CRIT}','Node {#NODE.NAME}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Node {#NODE.NAME}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','adb98d2d2f13435bbe1897208bb86989');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17937','{21202}<{$FAS3220.FS.AVAIL.MIN.CRIT:"{#FSNAME}"} and {$FAS3220.FS.USE.PCT:"{#FSNAME}"}=0','{#VSERVER}{#FSNAME}: Disk space is too low','','0','4','',NULL,'0','2','0','','0','','0','','0','{#VSERVER}{#FSNAME}: Disk space is too low (below {$FAS3220.FS.AVAIL.MIN.CRIT:"{#FSNAME}"} for {$FAS3220.FS.TIME:"{#FSNAME}"})','6ab014a44ad84966a97125c478b10789');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17938','{21203}>{$FAS3220.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and {$FAS3220.FS.USE.PCT:"{#FSNAME}"}=1','{#VSERVER}{#FSNAME}: Disk space is too low','','0','4','',NULL,'0','2','0','','0','','0','','0','{#VSERVER}{#FSNAME}: Disk space is too low (used over {$FAS3220.FS.PUSED.MAX.CRIT:"{#FSNAME}"}% for {$FAS3220.FS.TIME:"{#FSNAME}"})','712d9096c8064ef19005c4989794db45');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17939','{21204}<>1','Node {#NODE.NAME}: Node cannot takeover it\'s HA partner {#PARTNER.NAME}. Reason: {ITEM.VALUE}','','0','4','Possible reasons:\r\n unknownReason(2),\r\n disabledByOperator(3),\r\n interconnectOffline(4),\r\n disabledByPartner(5),\r\n takeoverFailed(6),\r\n mailboxIsInDegradedState(7),\r\n partnermailboxIsInUninitialisedState(8),\r\n mailboxVersionMismatch(9),\r\n nvramSizeMismatch(10),\r\n kernelVersionMismatch(11),\r\n partnerIsInBootingStage(12),\r\n diskshelfIsTooHot(13),\r\n partnerIsPerformingRevert(14),\r\n nodeIsPerformingRevert(15),\r\n sametimePartnerIsAlsoTryingToTakeUsOver(16),\r\n alreadyInTakenoverMode(17),\r\n nvramLogUnsynchronized(18),\r\n stateofBackupMailboxIsDoubtful(19).',NULL,'0','2','0','','0','','0','','0','','798e093f3c9941e6a2d7edc24dd22835');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17940','{21205}=1','Node {#NODE.NAME}: HA is not licensed','','0','3','The value notConfigured(1) indicates that the HA is not licensed.',NULL,'0','2','0','','0','','0','','0','','f4ee8e2a63e8471598b6aad929151404');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17941','{21206}=5','Node {#NODE.NAME}: Node has been taken over','','0','4','The thisNodeDead(5) setting indicates that this node has been takenover.',NULL,'0','2','0','','0','','0','','0','','db2c37150e1649fba89898459150ada8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17943','{21211}<>2 and {21212}=1','Node {#NODE}: port {#IFNAME} ({#TYPE}): Link down','','0','3','Link state is not UP and the port status is set \'UP\' by an administrator.',NULL,'0','2','0','','0','','1','','0','','2c7730f4606a4833bc729c108349d7b4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17944','{21213}<>0 and length({21214})>0','Node {#NODE}: port {#IFNAME} ({#TYPE}): Port is not healthy','','0','1','{{ITEM.LASTVALUE2}.regsub("(.*)", \\1)}',NULL,'0','2','0','','0','','0','','0','','a95e60addfe04055bb15138dd9d1f37f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17945','{21215}>{$TEMP_CRIT:"Ambient"}\r\nor\r\n{21216}={$TEMP_CRIT_STATUS}\r\nor\r\n{21216}={$TEMP_DISASTER_STATUS}','{#SENSOR_LOCALE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{21217}<{$TEMP_CRIT:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCALE}: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"}','8d659cefdff143bbaff8d6cdc8bbf7a3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17946','{21218}>{$TEMP_WARN:"Ambient"}\r\nor\r\n{21219}={$TEMP_WARN_STATUS}','{#SENSOR_LOCALE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{21220}<{$TEMP_WARN:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCALE}: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"}','45ab3beb5a3b4271861330632ff37c55');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17947','{21221}>{$TEMP_CRIT:"CPU"}\r\nor\r\n{21222}={$TEMP_CRIT_STATUS}\r\nor\r\n{21222}={$TEMP_DISASTER_STATUS}','{#SENSOR_LOCALE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{21223}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCALE}: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','54c2b7095b7d4550a2d1dbe14990dd0a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17948','{21224}>{$TEMP_WARN:"CPU"}\r\nor\r\n{21225}={$TEMP_WARN_STATUS}','{#SENSOR_LOCALE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{21226}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCALE}: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','eb2182b46c294fa381b35ab31c7ac6d4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17949','{21227}>={$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"}','IAX trunk "{#OBJECTNAME}": Number of the IAX trunk "{#OBJECTNAME}" active channels is too high','','0','2','The IAX trunk may not be able to process new calls.',NULL,'0','2','0','','0','','0','','0','IAX trunk "{#OBJECTNAME}": Number of the IAX trunk "{#OBJECTNAME}" active channels is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"} for 10m)','e2a6c7a9b6234e2aae20c9aa480f9ef1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17950','{21228}>={$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"}','PJSIP trunk "{#OBJECTNAME}": Number of the PJSIP trunk "{#OBJECTNAME}" active channels is too high','','0','2','The PJSIP trunk may not be able to process new calls.',NULL,'0','2','0','','0','','0','','0','PJSIP trunk "{#OBJECTNAME}": Number of the PJSIP trunk "{#OBJECTNAME}" active channels is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"} for 10m)','f192d555011c42c28c6a8f52c0388fe1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17951','{21229}>{$AMI.QUEUE_CALLERS.MAX.WARN:"{#QUEUE}"}','"{#QUEUE}": Number of callers in the queue "{#QUEUE}" is too high','','0','2','There is a large number of calls in the queue.',NULL,'0','2','0','','0','','0','','0','"{#QUEUE}": Number of callers in the queue "{#QUEUE}" is too high (over {$AMI.QUEUE_CALLERS.MAX.WARN:"{#QUEUE}"} for 10m)','4f72c6a755be465287f36b8b12d3175b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17952','{21230}>={$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"}','SIP trunk "{#OBJECTNAME}": Number of the SIP trunk "{#OBJECTNAME}" active channels is too high','','0','2','The SIP trunk may not be able to process new calls.',NULL,'0','2','0','','0','','0','','0','SIP trunk "{#OBJECTNAME}": Number of the SIP trunk "{#OBJECTNAME}" active channels is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"} for 10m)','51820b1326f84f51ba0e561946275133');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17953','{21231}=0 and length({21232})>0','Jenkins: Disk space is too low','','0','2','Jenkins disk space monitors are reporting the disk space as less than the configured threshold. The message will reference the first node which fails this check.\r\nHealth check message: {{ITEM.LASTVALUE2}.regsub("(.*)",\\1)}',NULL,'0','0','0','','0','','0','','0','','d79dc9c1dab142d18791172e6df0a4e9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17954','{21233}=0 and length({21234})>0','Jenkins: One or more Jenkins plugins failed to start','','0','1','A failure is typically indicative of a potential issue within the Jenkins installation that will either be solved by explicitly disabling the failing plugin(s) or by resolving the corresponding plugin dependency issues.\r\nHealth check message: {{ITEM.LASTVALUE2}.regsub("(.*)",\\1)}',NULL,'0','0','0','','0','','1','','0','','121e23bd172d447cb975595685495a93');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17955','{21235}=0 and length({21236})>0','Jenkins: Temporary space is too low','','0','2','Jenkins temporary space monitors are reporting the temporary space as less than the configured threshold. The message will reference the first node which fails this check.\r\nHealth check message: {{ITEM.LASTVALUE2}.regsub("(.*)",\\1)}',NULL,'0','0','0','','0','','0','','0','','34de8503a2c84fffb1beb701a4a991ab');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17956','{21237}=0 and length({21238})>0','Jenkins: There are deadlocked threads in Jenkins master JVM','','0','2','There are any deadlocked threads in the Jenkins master JVM.\r\nHealth check message: {{ITEM.LASTVALUE2}.regsub(\'(.*)\',\\1)}',NULL,'0','0','0','','0','','0','','0','','f0a09eb0743948bb8f52a4c28aa728c5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17957','{21239}>{$JENKINS.FILE_DESCRIPTORS.MAX.WARN}','Jenkins: Current number of used files is too high','','0','2','',NULL,'0','0','0','','0','','0','','0','Jenkins: Current number of used files is too high (over {$JENKINS.FILE_DESCRIPTORS.MAX.WARN}% for 5m)','5ec22ac264d445769039bd4c13e41bf7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17958','{21240}=0','Jenkins: Service has no online nodes','','0','3','',NULL,'0','0','0','','0','','0','','0','','4cee7d0f5faf4595a67c6c0e33153f4d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17959','{21241}=0','Jenkins: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','ae12ac7aa5c54858a794eb8fc888f90c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17960','{21242}<10m','Jenkins: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','Jenkins: has been restarted (uptime < 10m)','7d20942598a648ebb2e03f9acdb3e5e3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17961','{23222}<>{23223} and length({23224})>0','Jenkins: Version has changed','','0','1','Jenkins version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Jenkins: Version has changed (new version: {ITEM.VALUE})','3dd66b51ed1b4fc2a250daf3e9999e4f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17962','{21245}=1 and length({21246})>0','Jenkins: Computer [{#DISPLAY_NAME}]: Node is down','','0','3','Node down with reason: {{ITEM.LASTVALUE2}.regsub("(.*)",\\1)}',NULL,'0','2','0','','0','','0','','0','','a2347420d1f14fd2b55cbb0865282268');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17963','{21247}=1 and length({21248})>0','Jenkins: Computer [{#DISPLAY_NAME}]: Node is temporarily offline','','0','1','Node is temporarily Offline with reason: {{ITEM.LASTVALUE2}.regsub("(.*)",\\1)}',NULL,'0','2','0','','0','','1','','0','','bf04115784bc48ffa27d5d2d65176853');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17964','{21249}<{$JENKINS.JOB.HEALTH.SCORE.MIN.WARN}','Jenkins job [{#NAME}]: Job is unhealthy','','0','2','',NULL,'0','2','0','','0','','1','','0','','c440cd7d92884c9594c8616f1ac99d74');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17965','{21250}=1 or\r\n{21251}=1 or\r\n{21252}=1','Hikvision camera: Authorisation error','','0','2','Check the correctness of the authorization data',NULL,'0','0','0','','0','','1','','0','','2bd6d99edd0f4b2d8045e43e4586b637');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17966','{21253}=2 or\r\n{21254}=2 or\r\n{21255}=2','Hikvision camera: Error receiving data','','0','2','Check the availability of the HTTP port',NULL,'0','0','0','','0','','1','','0','','58b5d210fe24434b9aaa365fba764742');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17967','{21256}>{$CPU.UTIL.CRIT}','Hikvision camera: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Hikvision camera: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','0ae4dbcc05544fb7b67183fcf3b9654b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17968','{23325}<>{23326} and length({23327})>0','Hikvision camera: Version has changed','','0','1','Hikvision camera version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Hikvision camera: Version has changed (new version: {ITEM.VALUE})','3c0b5a0046894a54803cd984cda13fa2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17970','{23328}<>{23329} and length({23330})>0','Hikvision camera: Camera has been replaced','','0','1','Camera serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Hikvision camera: Camera has been replaced (new serial number received)','281999cbd6324aacbbb86b4945000c60');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17971','{21262}<10m','Hikvision camera: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','Hikvision camera: has been restarted (uptime < 10m)','f46b43fe9b354990929e7fdb80b792ec');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17972','{23331}<>{23332} or \r\n{23333}<>{23334} or \r\n{23335}<>{23336}','Channel "{#PTZ_CHANNEL_ID}": PTZ position changed','','0','1','The direction of the camera has changed',NULL,'0','2','0','','0','','1','','0','','dbf391b5e18b4e018d889e460b7acc74');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17973','{21266}=1','Hikvision camera: Authorisation error on get PTZ channels','','0','2','Check the correctness of the authorization data',NULL,'0','2','0','','0','','1','','0','','7ce39ff8b5f14fcbb7b575f9c44a9efd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17974','{21267}=2','Hikvision camera: Error receiving data on PTZ channels','','0','2','Check the availability of the HTTP port',NULL,'0','2','0','','0','','1','','0','','c702b7321b664f5d950b0d879bbd7371');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17975','{21268}<>{$HIKVISION_STREAM_HEIGHT} or\r\n{21269}<>{$HIKVISION_STREAM_WIDTH}','Channel "{#CHANNEL_ID}": Invalid video stream resolution parameters','','0','2','expected: {$HIKVISION_STREAM_WIDTH} px x {$HIKVISION_STREAM_HEIGHT} px\r\nreceived: {ITEM.LASTVALUE2} x {ITEM.LASTVALUE1}',NULL,'0','2','0','','0','','1','','0','','16cf4d23b3c8410586703efca81ebe52');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17976','{23337}<>{23338} or\r\n{23339}<>{23340} or\r\n{23341}<>{23342} or\r\n{23343}<>{23344} or\r\n{23345}<>{23346}','Channel "{#CHANNEL_ID}": Parameters of video stream are changed','','0','1','',NULL,'0','2','0','','0','','1','','0','','4f2a512d8f95414495dec5670e5e9680');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17977','{21275}/{21276}*100>{$IGNITE.CHECKPOINT.PUSED.MAX.HIGH}','Data region {#JMXNAME}: Checkpoint buffer utilization is too high','','0','4','Checkpoint buffer utilization is high. Threads will be throttled to avoid buffer overflow. It can be caused by high disk utilization.',NULL,'0','2','0','','0','','0','','0','Data region {#JMXNAME}: Checkpoint buffer utilization is too high (over {$IGNITE.CHECKPOINT.PUSED.MAX.HIGH} in 5m)','480b7cc1a967436b8620f9552f8ac4f6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17978','{21277}/{21278}*100>{$IGNITE.CHECKPOINT.PUSED.MAX.WARN}','Data region {#JMXNAME}: Checkpoint buffer utilization is too high','','0','2','Checkpoint buffer utilization is high. Threads will be throttled to avoid buffer overflow. It can be caused by high disk utilization.',NULL,'0','2','0','','0','','0','','0','Data region {#JMXNAME}: Checkpoint buffer utilization is too high (over {$IGNITE.CHECKPOINT.PUSED.MAX.WARN} in 5m)','67eddf17affd49b7844cd0846bc56f7d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17979','{21279}/{21280}*100>{$IGNITE.DATA.REGION.PUSED.MAX.HIGH}','Data region {#JMXNAME}: Data region utilization is too high','','0','4','Data region utilization is high. Increase data region size or delete any data.',NULL,'0','2','0','','0','','0','','0','Data region {#JMXNAME}: Data region utilization is too high (over {$IGNITE.DATA.REGION.PUSED.MAX.HIGH} in 5m)','736fbc965aa448309d022de34354decf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17980','{21281}/{21282}*100>{$IGNITE.DATA.REGION.PUSED.MAX.WARN}','Data region {#JMXNAME}: Data region utilization is too high','','0','2','Data region utilization is high. Increase data region size or delete any data.',NULL,'0','2','0','','0','','0','','0','Data region {#JMXNAME}: Data region utilization is too high (over {$IGNITE.DATA.REGION.PUSED.MAX.WARN} in 5m)','6ded19e7616b45f08e37e716d8256c5e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17981','{21283}>0','Data region {#JMXNAME}: Node started to evict pages','','0','1','You store more data than region can accommodate. Data started to move to disk it can make requests work slower. Ack to close.',NULL,'0','2','0','','0','','1','','0','','e210c54ba16f4d879d8a4fb88c365c53');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17982','{21284}>0','Data region {#JMXNAME}: Pages replace rate more than 0','','0','2','There is more data than DataRegionMaxSize. Cluster started to replace pages in memory. Page replacement can slow down operations.',NULL,'0','2','0','','0','','0','','0','','70ef41de47b2463a9c580e790754a49c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17983','{21285} > {$IGNITE.PME.DURATION.MAX.HIGH}','Ignite [{#JMXIGNITEINSTANCENAME}]: PME duration is too long','','0','4','PME duration is over {$IGNITE.PME.DURATION.MAX.HIGH}ms. Looks like PME is hung.',NULL,'0','2','0','','0','','0','','0','Ignite [{#JMXIGNITEINSTANCENAME}]: PME duration is too long (over {$IGNITE.PME.DURATION.MAX.HIGH} for 5 min)','81587d91606348a6b5385d4b59331adf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17984','{21286} > {$IGNITE.PME.DURATION.MAX.WARN}','Ignite [{#JMXIGNITEINSTANCENAME}]: PME duration is too long','','0','2','PME duration is over {$IGNITE.PME.DURATION.MAX.WARN}ms.',NULL,'0','2','0','','0','','0','','0','Ignite [{#JMXIGNITEINSTANCENAME}]: PME duration is too long (over {$IGNITE.PME.DURATION.MAX.WARN} for 5 min)','0de7ca62c7044e48a8931cf0dfe8ce34');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17985','{21287} > {$IGNITE.THREADS.COUNT.MAX.WARN}','Ignite [{#JMXIGNITEINSTANCENAME}]: Number of running threads is too high','','0','2','Number of running threads is over {$IGNITE.THREADS.COUNT.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','Ignite [{#JMXIGNITEINSTANCENAME}]: Number of running threads is too high (over {$IGNITE.THREADS.COUNT.MAX.WARN} for 15 min)','8c4ddb0485464c409077f86241956a56');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17986','{21288} > {$IGNITE.JOBS.QUEUE.MAX.WARN}','Ignite [{#JMXIGNITEINSTANCENAME}]: Number of queued jobs is too high','','0','2','Number of queued jobs is over {$IGNITE.JOBS.QUEUE.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','Ignite [{#JMXIGNITEINSTANCENAME}]: Number of queued jobs is too high (over {$IGNITE.JOBS.QUEUE.MAX.WARN} for 15 min)','a723fdecd1b34609b92bb351b1b44a46');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17987','{21289}>{21290}','Ignite [{#JMXIGNITEINSTANCENAME}]: There are nodes is not in topology','','0','1','One or more server node left the topology. Ack to close.',NULL,'0','2','0','','0','','1','','0','','17f9fd03d3144812bf776c0f8ca836e4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17988','{21291}>0','Ignite [{#JMXIGNITEINSTANCENAME}]: Server node added to the topology','','0','1','One or more server node added to the topology. Ack to close.',NULL,'0','2','0','','0','','1','','0','','e2c38e56189d4ed79bac6bd4ca8e477c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17989','{21292}<0','Ignite [{#JMXIGNITEINSTANCENAME}]: Server node left the topology','','0','2','One or more server node left the topology. Ack to close.',NULL,'0','2','0','','0','','1','','0','','81efb2805dbc49719a316d1992aaac3a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17990','{23435}<>{23436} and length({23437})>0','Ignite [{#JMXIGNITEINSTANCENAME}]: Version has changed','','0','1','Ignite [{#JMXIGNITEINSTANCENAME}] version has changed. Ack to close.',NULL,'0','2','0','','0','','1','','0','Ignite [{#JMXIGNITEINSTANCENAME}]: Version has changed (new version: {ITEM.VALUE})','08a1f4bd227e4f96b501a4681bf9fc8f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17991','{21295}=1','Ignite [{#JMXIGNITEINSTANCENAME}]: Failed to fetch info data','','0','2','Zabbix has not received data for items for the last 10 minutes.',NULL,'0','2','0','','0','','1','','0','Ignite [{#JMXIGNITEINSTANCENAME}]: Failed to fetch info data (or no data for 10m)','d90f8b10d32240d882317bf9fb628eae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17992','{21296}<10m','Ignite [{#JMXIGNITEINSTANCENAME}]: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','2','0','','0','','1','','0','Ignite [{#JMXIGNITEINSTANCENAME}]: has been restarted (uptime < 10m)','f3415dd32a3b450f80b29b83bd54fdef');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17993','{23438}<>{23439} and length({23440})>0','Ignite [{#JMXIGNITEINSTANCENAME}]: Coordinator has changed','','0','2','Ignite [{#JMXIGNITEINSTANCENAME}] version has changed. Ack to close.',NULL,'0','2','0','','0','','1','','0','Ignite [{#JMXIGNITEINSTANCENAME}]: Version has changed (new version: {ITEM.VALUE})','82e24abcc7874382a2af0018a4a001e1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17995','{23441}<>{23442} and length({23443})>0','Cache group [{#JMXNAME}]: List of caches has changed','','0','1','List of caches has changed. Significant changes have occurred in the cluster. Ack to close.',NULL,'0','2','0','','0','','1','','0','Cache group [{#JMXNAME}]: Version has changed (new version: {ITEM.VALUE})','b500b51a688d4b55942ce7311e82c54f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17996','{21303}>0','Cache group [{#JMXNAME}]: Rebalance in progress','','0','1','Ack to close.',NULL,'0','2','0','','0','','1','','0','','32a4aa1043b44c6198f01951d9ac32b4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17997','{21304}=0','Cache group [{#JMXNAME}]: There is no copy for partitions','','0','2','',NULL,'0','2','0','','0','','0','','0','','8755dd8b09e347659aee2450bcdd5c28');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17998','{21305} > {$IGNITE.THREAD.QUEUE.MAX.WARN:"{#JMXNAME}"}','Thread pool [{#JMXNAME}]: Too many messages in queue','','0','3','Number of messages in queue more than {$IGNITE.THREAD.QUEUE.MAX.WARN:"{#JMXNAME}"}.',NULL,'0','2','0','','0','','0','','0','Thread pool [{#JMXNAME}]: Too many messages in queue (over {$IGNITE.THREAD.QUEUE.MAX.WARN:"{#JMXNAME}"} for 5 min)','1d29e40969d54e9090724c8a774eaf4d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17999','{21306}={21307}','Cache group [{#JMXGROUP}]: All entries are in heap','','0','1','All entries are in heap. Possibly you use eager queries it may cause out of memory exceptions for big caches. Ack to close.',NULL,'0','2','0','','0','','1','','0','','97aa5e21a05743b9bb6714d7d5d28a67');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18000','{21308} > {21309}','Cache group [{#JMXGROUP}]: Success transactions less than rollbacks for 5m','','0','2','',NULL,'0','2','0','','0','','0','','0','','bfc948858de94088a96c9eddb14b893d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18001','{21310}>0 and {21311}=0','Cache group [{#JMXGROUP}]: There are no success transactions for cache for 5m','','0','3','',NULL,'0','2','0','','0','','0','','0','','1d80fe9b052444359eca04629e45e799');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18002','{21312}/{21313}*100>{$REDIS.MEM.PUSED.MAX.WARN}','Redis: Memory usage is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','Redis: Memory usage is too high (over {$REDIS.MEM.PUSED.MAX.WARN}% in 5m)','0c3560588d2d421c843c006ef5fa4645');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18003','{21314}=1','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in warning state','','0','2','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','384fd446bcb042f89ca348ec7459f1aa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18004','{21315}=1 or {21316}=1 or {21317}=1','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in warning state','','0','2','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7370a7c6388c4ff8b094959ca0c34a72');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18005','{21318}=1 and {21319}<>{$DISK_ARRAY_CACHE_WARN_STATUS:"invalid"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is not in optimal state','','0','2','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4db3b402580c43eba0d9dc6349cf95ca');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18006','{21320} = 1','{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','b7786ff4c57a4143b79e95bfc5470dcd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18007','{21321} = 4','{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','11365923a7b242fea930250e26fcc548');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18008','{21322} = 3','{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','dd0fd44bd7bb43bd85fdd63a199e0e69');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18009','{21323} = 1','Ambient: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','e955550a2496435eb799d317f2036c55');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18010','{21324} = 4','Ambient: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','8cd2c8b62b164923afed02da2be52dcc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18011','{21325} = 3','Ambient: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','d11e13c5714a42d49bea54d837f9f418');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18012','{21326} = 1','CPU-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','512654c27ea94ed4993380793a67f68b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18013','{21327} = 4','CPU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','7853d0c8ed4a4ebe98e38c7499417ebe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18014','{21328} = 3','CPU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','0434d2a6a1b54cb7bcd0e6f58d973be4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18015','{21329} = 1','I/O-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','2875e5ebea474eccac8d53dd13539bd6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18016','{21330} = 4','I/O-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','593b167fe62e4a7fae35ebb508540325');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18017','{21331} = 3','I/O-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','bf6a10f0596a45b4b8f8a2f0acf7c778');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18018','{21332} = 1','Memory-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','881f28f6411c467493c56a64237d8ca8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18019','{21333} = 4','Memory-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','c05402995e6146d28c53fc33e88d8164');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18020','{21334} = 3','Memory-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','bfac7287a9d842cb89d8089af72e2e12');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18021','{21335} = 1','PSU-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','14ab7adae80c4859952381bfe17a14a3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18022','{21336} = 4','PSU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','97481f1183c3444c851fe99428bd7bf3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18023','{21337} = 3','PSU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','8c7f5250756946a595b742519e4890a5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18024','{21338} = 1','System-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','d161829ab0ec496bb4718ed156853c3f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18025','{21339} = 4','System-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','a65a8386fdd048f986a3aa3fcf29a959');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18026','{21340} = 3','System-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','0b13f436c7984eef9624632bb5f43970');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18027','{21341}<>200','Sharepoint: Error getting directory structure.','','0','2','Error getting directory structure. Check the Zabbix server log for more details.',NULL,'0','0','0','','0','','0','','0','','ed1d66a1410e4af79af462e749ce979b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18028','{21342}>2000','Sharepoint: Server responds slowly to API request','','0','2','',NULL,'0','0','0','','0','','0','','0','','9e5bcc08d5f040de86afa38f5a653dd7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18029','{21343}>"{$SHAREPOINT.MAX_HEALT_SCORE}"','Sharepoint: Bad health score','','0','3','',NULL,'0','0','0','','0','','0','','0','','3a0451e3edda4a73aded57aa254fd813');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18030','{23268}<>{23269}','Sharepoint: Sharepoint object is changed','','0','1','Updated date of modification of folder / file',NULL,'0','2','0','','0','','1','{#SHAREPOINT.LLD.FULL_PATH}','0','','d1683e2fcdda45969ff451e43ae696c2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18031','{21345}<10m','VMware: VM has been restarted','','0','2','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','VMware: VM has been restarted (uptime < 10m)','da703e83e2e146569c173fd9bc6988dd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18032','{23281}<>{23282} and {23283}<{#MULTIPATH.COUNT}','VMware: The multipath count has been changed','','0','3','The number of available datastore paths less than registered ({#MULTIPATH.COUNT}).',NULL,'0','2','0','','0','','1','Current: {ITEM.LASTVALUE}, Registered: {#MULTIPATH.COUNT}','0','','8f1de4827ba446ef902ca5fa44109c6d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18033','{21348}>{$MEMORY.UTIL.MAX}','Hikvision camera: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','Hikvision camera: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','62cfa0b87f234f1cb67b9b5b6b2fa8f2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18034','{21349}>={21350}','Cache group [{#JMXNAME}]: One or more backups are unavailable','','0','2','',NULL,'0','2','0','','0','','0','','0','','1b85d75607294d6a8fded5b85f7f9a4a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18035','{21351}>{$MEMORY.UTIL.MAX}','{#MEMNAME}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','{#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','fb87fa900e404e2ba53fa5769fecc511');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18108','{21566}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','a22f13e245b944e991c2c9850a731a3c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18109','{21567}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','1991ae08b008488380db02160b15160e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18110','{21568}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','929046c4439741a9aa3ab00933322a86');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18113','{21571}>{$MEMORY.UTIL.MAX}','{#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','74c44bdc890f467cb1a8cdc175a54a76');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18117','{21575}>{$MEMORY.UTIL.MAX}','#{#SNMPINDEX}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','#{#SNMPINDEX}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','41baaaa2eb6246b7982ac76928fbd0f8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18118','{21576}>{$MEMORY.UTIL.MAX}','{#SNMPINDEX}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','{#SNMPINDEX}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','fd484f9b3a6a414fb2bba47d5804cc62');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18119','{21577}>{$MEMORY.UTIL.MAX}','#{#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','#{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','29352d2cb80f47d98ca6c6d6d366a29f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18120','{21578}>{$MEMORY.UTIL.MAX}','#{#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','#{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','50733fd8b4a641708e3a90292f182f20');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18121','{21579}>{$MEMORY.UTIL.MAX}','{#MODULE_NAME}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','{#MODULE_NAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','e8d3cb45afea4cbd935c9ea668746260');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18122','{21580}>{$MEMORY.UTIL.MAX}','#{#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','#{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','4fe0382fdee141adac03788c8810e387');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18123','{21581}>{$MEMORY.UTIL.MAX}','{#ENT_NAME}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','{#ENT_NAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','2d93533c7cc74dc9a85e280605e21e7d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18124','{21582}>{$MEMORY.UTIL.MAX}','{#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','ab1f3dcba55d41da974c3ac60ca5b8f2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18125','{21583}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','e4b4ba5ec80c4d83adbb10739edf4574');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18126','{21584}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','21c1a017dcc14148a9020207a6fd7488');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18127','{21585}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','082a768e190d4e8e97e0857cd3412ea1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18128','{21586}>{$MEMORY.UTIL.MAX}','#{#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','#{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','3bd3af786eb34b5e9a05f3113fce8007');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18129','{21587}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','30c0c80ae6df45bb96c434016e394bba');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18130','{30949}<{$SWAP.PFREE.MIN.WARN} and {30950}>0','High swap space usage','','0','2','This trigger is ignored, if there is no swap configured.',NULL,'0','0','0','','0','','0','Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','6bf4726efad344529d3c8908053c6e6c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18132','{21592}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','804010cd02244ec5b47ba77bfa734228');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18142','{30961}<{$SWAP.PFREE.MIN.WARN} and {30962}>0','High swap space usage','','0','2','This trigger is ignored, if there is no swap configured.',NULL,'0','0','0','','0','','0','Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','dea1c2fccd8f4e52bedd85fe23db7228');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18144','{21619}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','11bff052c18b424f9d89b53e0faa2b21');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18150','{30967}<{$SWAP.PFREE.MIN.WARN} and {30968}>0','High swap space usage','','0','2','This trigger is ignored, if there is no swap configured.',NULL,'0','0','0','','0','','0','Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','16e6a4d340164dee9379a3fc0aac0576');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18152','{21637}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','72304b3a167e41ccbcdb75568c65294a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18155','{30971}<{$SWAP.PFREE.MIN.WARN} and {30972}>0','High swap space usage','','0','2','This trigger is ignored, if there is no swap configured.',NULL,'0','0','0','','0','','0','Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','12324c6e7b564c858406702148b43bc4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18156','{30975}<{$MEMORY.AVAILABLE.MIN} and {30976}>0','Lack of available memory','','0','3','',NULL,'0','0','0','','0','','0','Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','687586e62f4b4191aa95ba1ba74c7787');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18157','{21649}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','38e4d31ccb594ba1a041c47633887ef6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18161','{21655}<{$SWAP.PFREE.MIN.WARN} and {21656}>0','High swap space usage','','0','2','This trigger is ignored, if there is no swap configured',NULL,'0','0','0','','0','','0','Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','b2a97432e79e4a999324d3fde7dacdeb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18162','{21657}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','2766be7a10d444be9893dcdfab75f3be');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18169','{21675}<{$SWAP.PFREE.MIN.WARN} and {21676}>0','High swap space usage','','0','2','This trigger is ignored, if there is no swap configured',NULL,'0','0','0','','0','','0','Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','237760596cd647bca82044e843992d87');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18170','{21677}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','df816288349743ad9b2015dda9066abb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18183','{24404}<>{24405} and length({24406})>0','OceanStor 5300 V5: Storage version has been changed','','0','1','OceanStor 5300 V5 version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','OceanStor 5300 V5: Version has changed (new version: {ITEM.VALUE})','b6eb791cc14644dfb0a69a2cce150ab1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18184','{21704}<>1','BBU {#ID} on {#LOCATION}: Health status is not Normal','','0','4','',NULL,'0','2','0','','0','','0','','0','','fb73cddd30164af8aa243bd3e2b2f803');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18185','{21705}<>2','BBU {#ID} on {#LOCATION}: Running status is not Online','','0','3','',NULL,'0','2','0','','0','','0','','0','','15d809b0be1c4d1da9158a83d303789c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18186','{21706}>{$CPU.UTIL.CRIT}','Controller {#ID}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Controller {#ID}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a51b4e42efaa4924b6c2990c9c0abf30');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18187','{21707}<>1','Controller {#ID}: Health status is not Normal','','0','4','',NULL,'0','2','0','','0','','0','','0','','52cf517dd30146578b32fd1399ec81cc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18188','{21708}>{$HUAWEI.5300.MEM.MAX.WARN}','Controller {#ID}: Memory usage is too high','','0','3','',NULL,'0','2','0','','0','','0','','0','Controller {#ID}: Memory usage is too high (over {$HUAWEI.5300.MEM.MAX.WARN} for {$HUAWEI.5300.MEM.MAX.TIME})','8d4fe305737f41a595c1d2efb3e8a153');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18189','{24407}<>{24408}','Controller {#ID}: Role has been changed','','0','2','',NULL,'0','2','0','','0','','1','','0','','8b8ec3f843e74533a43f24393004cc84');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18190','{21710}<>27','Controller {#ID}: Running status is not Online','','0','3','',NULL,'0','2','0','','0','','0','','0','','6ab64eb5e1c146838ad48b7b9b063587');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18191','{21711}<>1','Disk {#MODEL} on {#LOCATION}: Health status is not Normal','','0','4','',NULL,'0','2','0','','0','','0','','0','','fc1c8d30f09c49a3999e282bff6ea370');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18192','{21712}<>27','Disk {#MODEL} on {#LOCATION}: Running status is not Online','','0','3','',NULL,'0','2','0','','0','','0','','0','','53aaf06848a346f188799d1cbb5d948f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18193','{21713}>{$HUAWEI.5300.DISK.TEMP.MAX.WARN:"{#MODEL}"}','Disk {#MODEL} on {#LOCATION}: Temperature is too high','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE}','0','Disk {#MODEL} on {#LOCATION}: Temperature is too high (over {$HUAWEI.5300.DISK.TEMP.MAX.WARN:"{#MODEL}"} for {$HUAWEI.5300.DISK.TEMP.MAX.TIME})','906de152d3594f1d8cc15b4b717d6202');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18194','{21714}<>1','Enclosure {#NAME}: Health status is not Normal','','0','4','',NULL,'0','2','0','','0','','0','','0','','9b8fb5b02b0b4158a2b564f47281f716');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18195','{21715}<>27','Enclosure {#NAME}: Running status is not Online','','0','3','',NULL,'0','2','0','','0','','0','','0','','3c430a2073ff42d9908490858c9c2817');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18196','{21716}>{$HUAWEI.5300.TEMP.MAX.WARN}','Enclosure {#NAME}: Temperature is too high','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE}','0','Enclosure {#NAME}: Temperature is too high (over {$HUAWEI.5300.TEMP.MAX.WARN} for {$HUAWEI.5300.TEMP.MAX.TIME})','622fcc16c03e4ba4ad8371ea5c1c314f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18197','{21717}<>1','FAN {#ID} on {#LOCATION}: Health status is not Normal','','0','4','',NULL,'0','2','0','','0','','0','','0','','1f41c20696d44eb29a1273718c9faf2f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18198','{21718}<>2','FAN {#ID} on {#LOCATION}: Running status is not Running','','0','3','',NULL,'0','2','0','','0','','0','','0','','c225c9d853184d579d18c27f7e906fd2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18199','{21719}>{$HUAWEI.5300.LUN.IO.TIME.MAX.WARN}','LUN {#NAME}: Average I/O response time is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','LUN {#NAME}: Average I/O response time is too high (over {$HUAWEI.5300.LUN.IO.TIME.MAX.WARN}ms for {$HUAWEI.5300.LUN.IO.TIME.MAX.TIME})','aae494cb840049fb83df354c13daaf53');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18200','{21720}<>1','LUN {#NAME}: Status is not Normal','','0','3','',NULL,'0','2','0','','0','','0','','0','','757eef04912d44b4b4f9e1abab54fb4d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18201','{21721}>{$CPU.UTIL.CRIT}','Node {#NODE}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Node {#NODE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','8495a55d6549460d9b132675a39b818b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18202','{21722}>{$HUAWEI.5300.NODE.IO.DELAY.MAX.WARN}','Node {#NODE}: Average I/O latency is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','Node {#NODE}: Average I/O latency is too high (over {$HUAWEI.5300.NODE.IO.DELAY.MAX.WARN}ms for {$HUAWEI.5300.NODE.IO.DELAY.MAX.TIME})','8f54bfe029fe43c7a049c6a97c8598bf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18203','{21723}>{#THRESHOLD}','Pool {#NAME}: Used capacity is too high','','0','3','',NULL,'0','2','0','','0','','0','','0','Pool {#NAME}: Used capacity is too high (over {#THRESHOLD}%)','2ea46713fe664a64a851edca422257f8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18204','{21724}<>1','Pool {#NAME}: Health status is not Normal','','0','4','',NULL,'0','2','0','','0','','0','','0','','8089b48aafb4403fa3187164685f8ca3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18205','{21725}<>27','Pool {#NAME}: Running status is not Online','','0','3','',NULL,'0','2','0','','0','','0','','0','','5ff1d6b5d90040928b90908859c2e8cd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18206','{21726}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {21727}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Node {#NODE}: port {#IFNAME} ({#TYPE}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{21728}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {21729}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Node {#NODE}: port {#IFNAME} ({#TYPE}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','9ea5b5b667df4bd1943892150c9f2fda');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18207','{21730}=0','RabbitMQ: There are active alarms in the cluster','','0','3','http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','032949c387c64223b3125ba1120ae082');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18208','{21731}=0','RabbitMQ: Node healthcheck failed','','0','3','https://www.rabbitmq.com/monitoring.html#health-checks',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','bf6bcbda20ed46cbb779d9c1f446dfa8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18209','{21732}=0','RabbitMQ: There are valid TLS certificates expiring in the next month','','0','3','http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d180912136c74e5cb246655ecab75f57');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18210','{21733}=0','RabbitMQ: There are active alarms in the node','','0','3','http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','62962f18baa4480294e097fec2cc5e4c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18211','{21734}=0','RabbitMQ: There are queues that could potentially lose data if this node goes offline.','','0','3','http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','19e392f9e48e4c8287e04751a2a73843');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18212','{21735}=0','RabbitMQ: There are queues that would lose their quorum and availability if this node is shut down.','','0','3','http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e063b6dde6a0484ba1561861d8b1f0c1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18213','{21736}=0','RabbitMQ: There are not running virtual hosts','','0','3','http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b61117e5eeff4d41a9a2f1729ec174b2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18214','{21737}=0','RabbitMQ: There are active alarms in the cluster','','0','3','http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','58592bb4d473497e9942634db2001823');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18215','{21738}=0','RabbitMQ: Node healthcheck failed','','0','3','https://www.rabbitmq.com/monitoring.html#health-checks',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','5c9c080ddd3748a6b5e62ba7765d270d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18216','{21739}=0','RabbitMQ: There are valid TLS certificates expiring in the next month','','0','3','http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','20f7cd2d1d2448d5b84711caba2f093b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18217','{21740}=0','RabbitMQ: There are active alarms in the node','','0','3','http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9761757a70bf4f65b9438471a5de2af0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18218','{21741}=0','RabbitMQ: There are queues that could potentially lose data if this node goes offline.','','0','3','http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','36b4702437614a3681a5a77acef323fc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18219','{21742}=0','RabbitMQ: There are queues that would lose their quorum and availability if this node is shut down.','','0','3','http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','cfaba160cc0441c09010de05316596bd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18220','{21743}=0','RabbitMQ: There are not running virtual hosts','','0','3','http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d1638953e2794c3e8113ba907837c968');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18221','{21744}/({21745}+{21746})*100>{$MONGODB.CONNS.PCT.USED.MAX.WARN}','MongoDB: Total number of open connections is too high','','0','2','Too few available connections. If MongoDB runs low on connections, in may not be able to handle incoming requests in a timely manner.',NULL,'0','0','0','','0','','0','','0','MongoDB: Total number of open connections is too high (over {$MONGODB.CONNS.PCT.USED.MAX.WARN%} in 5m)','58142b2a76114e69af259ea1b5c19bbc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18222','{21747}>{$MONGODB.CURSOR.OPEN.MAX.WARN}','MongoDB: Too many cursors opened by MongoDB for clients','','0','2','',NULL,'0','0','0','','0','','0','','0','MongoDB: Too many cursors opened by MongoDB for clients (over {$MONGODB.CURSOR.OPEN.MAX.WARN} in 5m)','ed4a0c66c76d4ca699d0f2188cc8e71f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18223','{21748}>{$MONGODB.CURSOR.TIMEOUT.MAX.WARN}','MongoDB: Too many cursors are timing out','','0','2','',NULL,'0','0','0','','0','','0','','0','MongoDB: Too many cursors are timing out (over {$MONGODB.CURSOR.TIMEOUT.MAX.WARN} per second in 5m)','41d37791111b461d94da779e4b2c7e46');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18224','{21749}=0','MongoDB: Connection to MongoDB is unavailable','','0','4','Connection to MongoDB instance is currently unavailable.',NULL,'0','0','0','','0','','0','','0','','c4ab9bfdd6d14634870f8ebb44081655');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18225','{21750}=1','MongoDB: Failed to fetch info data','','0','2','Zabbix has not received data for items for the last 10 minutes',NULL,'0','0','0','','0','','1','','0','MongoDB: Failed to fetch info data (or no data for 10m)','166444342def4adc954aa35f3dc22dba');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18226','{21751}<10m','MongoDB: has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MongoDB: has been restarted (uptime < 10m)','992590e47a7f42dda0e074c2f7a3e5ba');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18227','{23444}<>{23445} and length({23446})>0','MongoDB: Version has changed','','0','1','MongoDB version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','MongoDB: Version has changed (new version: {ITEM.VALUE})','0856e13b7e7644c5b353fcfa577acb51');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18228','{28421}>0 and length({28422})>0','MongoDB: There are unhealthy replicas in ReplicaSet','','0','3','',NULL,'0','2','0','','0','','0','','0','','975c5e5817b148ba8a8d551ac42053d0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18229','{21756}>{$MONGODB.REPL.LAG.MAX.WARN}','MongoDB: Replication lag with primary is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','MongoDB: Replication lag with primary is too high (over {$MONGODB.REPL.LAG.MAX.WARN} in 5m)','778d0b15affe4867b3e7f3e396c2a700');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18231','{21758}<{$MONGODB.WIRED_TIGER.TICKETS.AVAILABLE.MIN.WARN}','MongoDB: Available WiredTiger read tickets is low','','0','2','"Too few available read tickets.\r\nWhen the number of available read tickets remaining reaches zero, new read requests will be queued until a new read ticket is available."',NULL,'0','2','0','','0','','0','','0','MongoDB: Available WiredTiger read tickets less than {$MONGODB.WIRED_TIGER.TICKETS.AVAILABLE.MIN.WARN}','967928b915f64623b4416ed0dbf6ba98');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18232','{21759}<{$MONGODB.WIRED_TIGER.TICKETS.AVAILABLE.MIN.WARN}','MongoDB: Available WiredTiger write tickets is low','','0','2','"Too few available write tickets.\r\nWhen the number of available write tickets remaining reaches zero, new write requests will be queued until a new write ticket is available."',NULL,'0','2','0','','0','','0','','0','MongoDB: Available WiredTiger write tickets less than {$MONGODB.WIRED_TIGER.TICKETS.AVAILABLE.MIN.WARN}','485e6e846f274b528902b3ffd08f2fc4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18233','{21760}<{$MONGODB.CONNS.AVAILABLE.MIN.WARN}','MongoDB cluster: Available connections is low','','0','2','"Too few available connections.\r\nConsider this value in combination with the value of connections current to understand the connection load on the database"',NULL,'0','0','0','','0','','0','','0','MongoDB cluster: Available connections less then {$MONGODB.CONNS.AVAILABLE.MIN.WARN}','eae86b6f98db49099259a466b78d1c59');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18234','{21761}>{$MONGODB.CURSOR.OPEN.MAX.WARN}','MongoDB cluster: Too many cursors opened by MongoDB for clients','','0','2','',NULL,'0','0','0','','0','','0','','0','MongoDB cluster: Too many cursors opened by MongoDB for clients (over {$MONGODB.CURSOR.OPEN.MAX.WARN} in 5m)','67db1f543818476ca0b07e2cc1709452');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18235','{21762}>{$MONGODB.CURSOR.TIMEOUT.MAX.WARN}','MongoDB cluster: Too many cursors are timing out','','0','2','',NULL,'0','0','0','','0','','0','','0','MongoDB cluster: Too many cursors are timing out (over {$MONGODB.CURSOR.TIMEOUT.MAX.WARN} per second in 5m)','5ea8cf9c955940a6a580cd6f4bb2cc78');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18236','{21763}=0','MongoDB cluster: Connection to mongos proxy is unavailable','','0','4','Connection to mongos proxy instance is currently unavailable.',NULL,'0','0','0','','0','','0','','0','','cd74289970204ca281c5bc7d5c695e95');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18237','{21764}=1','MongoDB cluster: Failed to fetch info data','','0','2','Zabbix has not received data for items for the last 10 minutes',NULL,'0','0','0','','0','','1','','0','MongoDB cluster: Failed to fetch info data (or no data for 10m)','ee70d6da232a4068b574c9c147c622c9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18238','{21765}<10m','MongoDB cluster: has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MongoDB cluster: has been restarted (uptime < 10m)','99ff438a7e3e4b0a8190b2ab9f41f076');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18239','{23449}<>{23450} and length({23451})>0','MongoDB cluster: Version has changed','','0','1','MongoDB cluster version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','MongoDB cluster: Version has changed (new version: {ITEM.VALUE})','921ee489887943838d69558f103ad646');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18240','{21768}>{21769} and {21769}>{21770}','MSSQL AG \'{#GROUP_NAME}\' Non-Local DB \'*{#REPLICA_NAME}*{#DBNAME}\': Log queue size is growing','','0','4','The log records of the primary database are not sent to the secondary databases.',NULL,'0','2','0','','0','','0','','0','','def3b1d47dac4d039bffcc78f955b433');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18241','{21771}>{21772} and {21772}>{21773}','MSSQL AG \'{#GROUP_NAME}\' Non-Local DB \'*{#REPLICA_NAME}*{#DBNAME}\': Redo log queue size is growing','','0','4','The log records in the log files of the secondary replica have not yet been redone.',NULL,'0','2','0','','0','','0','','0','','2102f244f58b4fe981d569fe0fe599a9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18242','({21774}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21775} or\r\n{21776}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21775}) and\r\n{21775}>0','Interface {#IFDESCR}: High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{21774}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21775} and\r\n{21776}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21775}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFDESCR}: High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','7594011ba1964285abd0f232ffeb22e3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18243','{21777}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {21778}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFDESCR}: High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{21779}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {21780}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFDESCR}: High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','2eb4baaf86a2405b9a1a232241eee72b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18250','({21802}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21803} or\r\n{21804}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21803}) and\r\n{21803}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{21802}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21803} and\r\n{21804}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21803}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','913c87be8cd94aeb8a3f9e008a4cd560');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18251','{21805}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {21806}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{21807}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {21808}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','15b436b13012415bb9773d3ddab22178');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18294','({21956}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21957} or\r\n{21958}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21957}) and\r\n{21957}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{21956}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21957} and\r\n{21958}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21957}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','232019e4163a4e7ebd63876751721824');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18295','{21959}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {21960}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{21961}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {21962}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','9ee9204a4a4044ae82bd0f75299f2a5d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18298','{21970}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','b0507a7333384bd5bf251fe238a538ad');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18299','{21971}>{$ICMP_LOSS_WARN} and {21971}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','089e23bcb4bb41f992947a6970555394');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18300','{21972}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','d5449d68d76e49ad9b7c052abff255e2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18301','{23744}<>{23745} and length({23746})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','ef94f8295a2946b9a266afc6c9a5c5c9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18302','{23747}<>{23748} and length({23749})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','0d48c5e2b30f4f08b3cec8c89c05d52d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18303','{23750}<>{23751} and length({23752})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','2','','0','','1','','0','','77433856d157408d98c72d964fdbf045');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18304','({31841}>0 and {31841}<10m) or ({31841}=0 and {31842}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','6e105d2b8a2c43cc8841abb6995941ba');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18305','{21980}=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','','4ebd3dd755dd4b1dae2509842d0b7117');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18306','{21981}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a825aa92b31c4460bef20469afead397');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18307','{23753}<>{23754} and length({23755})>0','{#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','2','0','','0','','0','','0','{#ENT_NAME}: Device has been replaced (new serial number received)','b715f039d7874915aacd687e87661588');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18308','{21984}=3 or {21984}=4','{#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','03a372d275194f8cae61786a38a7fb96');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18309','{21985}=2','{#SNMPVALUE}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','65bc040110534b6ab0544cb1866288ab');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18310','{21986}>{$MEMORY.UTIL.MAX}','{#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m)','fc434ae6fdff4ec0b20400750571b786');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18311','{21987}<0 and {21988}>0\r\nand (\r\n{21989}=6 or\r\n{21989}=7 or\r\n{21989}=11 or\r\n{21989}=62 or\r\n{21989}=69 or\r\n{21989}=117\r\n)\r\nand\r\n({21990}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({21987}>0 and {21991}>0) or\r\n({21990}=2)','0','','0','Current reported speed: {ITEM.LASTVALUE1}','0','','6c5a9334ff7d437c91c0f76da988cade');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18312','({21992}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21993}) and\r\n{21993}>0','Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{21992}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21993}','0','','0','In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','5f4de3462234401d826a4a7bab16402f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18313','({21994}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21995}) and\r\n{21995}>0','Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{21994}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21995}','0','','0','Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','13ac4bfd49a749b7ba49cdbf531939b1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18314','{21996}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High input error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{21997}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors in: {ITEM.LASTVALUE1}','0','Interface {#IFNAME}({#IFALIAS}): High input error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','ac2ed3537a1744bd91abb32acb45181c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18315','{21998}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High output error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{21999}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High output error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','4e96fef6da19403eb125c67947ceadee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18316','{$IFCONTROL:"{#IFNAME}"}=1 and ({22000}=2)','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1086cb4f3a6a46c399fe221ffd538037');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18317','{22001}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','0','','0','','75341985cb654533b4ef67cbdd9333a9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18318','{22002}=3 or {22003}=4','{#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d64945a4f2f74909a10f9cc448f26a02');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18319','{22004}=2','{#SNMPVALUE}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','aaf5b05767f24a9bb87753a519140673');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18320','{22005}=3 or {22005}=4','{#SNMPVALUE}: Temperature is in critical state','','0','4','This trigger uses temperature sensor state',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','3d307edd9bc54aa2890bebe3ded250c2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18321','{22006}=2','{#SNMPVALUE}: Temperature is in warning state','','0','2','This trigger uses temperature sensor state',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','24000d852b014ae7828eab26451257c1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18322','{22007}>{$TEMP_CRIT:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22008}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','8c7c804c7b274cf4a17090086ee0f8a0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18323','{22009}>{$TEMP_WARN:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22010}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','0cdb1f1c7e7848bfba2368395d2c03e5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18324','{22011}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{22012}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','eac4504f0d45457fa325f40e6ab585a2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18325','{22013}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','e66bcbef8f1d45fc8bc5d64e5dc848dc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18326','{22014}>{$ICMP_LOSS_WARN} and {22014}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','20ee878da19f4d758e4372c6c918c773');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18327','{22015}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','0facff81f25c43869e86a0541f0e3ecd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18328','{23756}<>{23757} and length({23758})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','052fb88fae1349d5b9a5fa5bcf24d0fa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18329','{23759}<>{23760} and length({23761})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','a678341d899846158fea2deb57f923cf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18330','{23762}<>{23763} and length({23764})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','2','','0','','1','','0','','3e5d53072021491bb2af276aff3e1a0b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18331','({31843}>0 and {31843}<10m) or ({31843}=0 and {31844}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','a9633d3df8724c7cba6dfc6ec790c1fd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18332','{22023}=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','','0f2d48a1529c4ae49d58d466ed3a76e7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18333','{22024}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','471acd7fa3ad4040aba27535905bfe63');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18334','{23765}<>{23766} and length({23767})>0','{#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','2','0','','0','','0','','0','{#ENT_NAME}: Device has been replaced (new serial number received)','70aca80b5a8d414686967b104d301023');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18335','{22027}=3 or {22027}=4','{#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e2b72d874d4f48e79aab3a6d514663b4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18336','{22028}=2','{#SNMPVALUE}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d4bf389614f54be08ffd8d010e480da6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18337','{22029}>{$MEMORY.UTIL.MAX}','{#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m)','918cf48b69d545dbb9f177fa1440f4cb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18338','{22030}<0 and {22031}>0\r\nand (\r\n{22032}=6 or\r\n{22032}=7 or\r\n{22032}=11 or\r\n{22032}=62 or\r\n{22032}=69 or\r\n{22032}=117\r\n)\r\nand\r\n({22033}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({22030}>0 and {22034}>0) or\r\n({22033}=2)','0','','0','Current reported speed: {ITEM.LASTVALUE1}','0','','d6aaa83ed4744ef982a177b77fb1f2c4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18339','({22035}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22036}) and\r\n{22036}>0','Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{22035}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22036}','0','','0','In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','9e3e50611ef242b0b200c0a6343f4c5c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18340','({22037}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22038}) and\r\n{22038}>0','Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{22037}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22038}','0','','0','Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','7c624697cd7b41d682b5856a3040737e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18341','{22039}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High input error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{22040}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors in: {ITEM.LASTVALUE1}','0','Interface {#IFNAME}({#IFALIAS}): High input error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','df6bfacc52e1487d9f359c23545ceb84');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18342','{22041}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High output error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{22042}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High output error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','aa49d99c77d64e31ad2369d09e547cab');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18343','{$IFCONTROL:"{#IFNAME}"}=1 and ({22043}=2)','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','41d6b4a9fde546ae88005efdef1f4525');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18344','{22044}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','0','','0','','df8eb5498b8a41709db02b742fa24d6a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18345','{22045}=3 or {22046}=4','{#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1d509ec30e8349538d9d2b2447b70253');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18346','{22047}=2','{#SNMPVALUE}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4ef4e09de93e4cfbb2aab4f22e78c223');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18347','{22048}=3 or {22048}=4','{#SNMPVALUE}: Temperature is in critical state','','0','4','This trigger uses temperature sensor state',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','506c98e9c29247cba7c58ca343c6fdf4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18348','{22049}=2','{#SNMPVALUE}: Temperature is in warning state','','0','2','This trigger uses temperature sensor state',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d6b91f3e280c4d0fa3df0bf3fedd9183');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18349','{22050}>{$TEMP_CRIT:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22051}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','63e41d0fe43c4daa8fd2e4eee6e4ed8a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18350','{22052}>{$TEMP_WARN:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22053}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','cc09047db63a435e816e560c2007b43a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18351','{22054}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{22055}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','156a35b375ff4978a2b98f38785897a5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18352','{22056}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','e536d08729024bbcbe51f63ac1074796');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18353','{22057}>{$ICMP_LOSS_WARN} and {22057}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','63bdfa05fcbe455db4dbb28ae333292a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18354','{22058}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','79b80f4faa30401c8aa260a7bc961f9c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18355','{23768}<>{23769} and length({23770})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','be325325a6bd4cf4ae1312b4488af80d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18356','{23771}<>{23772} and length({23773})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','d19bce317a4b4ab19485a183d446dcc7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18357','{23774}<>{23775} and length({23776})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','2','','0','','1','','0','','c139de21caf94d4b9c2d60977d4756f7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18358','({31845}>0 and {31845}<10m) or ({31845}=0 and {31846}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','86484c0d62e94532af4202267369f8bf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18359','{22066}=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','','d78318493148438abca20fed768d4ced');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18360','{22067}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','6f039b9bfb00495ebe5e5eba56d25099');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18361','{23777}<>{23778} and length({23779})>0','{#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','2','0','','0','','0','','0','{#ENT_NAME}: Device has been replaced (new serial number received)','3e621db566ef4b5da2a3b0f5ee65ae81');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18362','{22070}=3 or {22070}=4','{#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f299241a1a3c4fde965b3a2b6a3b31d6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18363','{22071}=2','{#SNMPVALUE}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a4021a6d44fb439fa04b160b7cea2bca');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18364','{22072}>{$MEMORY.UTIL.MAX}','{#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m)','a88d7a734efc40868d3fbeda307c4e1f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18365','{22073}<0 and {22074}>0\r\nand (\r\n{22075}=6 or\r\n{22075}=7 or\r\n{22075}=11 or\r\n{22075}=62 or\r\n{22075}=69 or\r\n{22075}=117\r\n)\r\nand\r\n({22076}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({22073}>0 and {22077}>0) or\r\n({22076}=2)','0','','0','Current reported speed: {ITEM.LASTVALUE1}','0','','46d96d2815a04b32b00ed4ef6104fedc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18366','({22078}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22079}) and\r\n{22079}>0','Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{22078}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22079}','0','','0','In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','5af679006aaa40acbe01987ab15088ae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18367','({22080}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22081}) and\r\n{22081}>0','Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{22080}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22081}','0','','0','Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','e0b4ab67e80a4dbdb3d60246b8830228');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18368','{22082}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High input error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{22083}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors in: {ITEM.LASTVALUE1}','0','Interface {#IFNAME}({#IFALIAS}): High input error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','a5f11bbeceb9418f86b1130ccb6942ec');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18369','{22084}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High output error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{22085}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High output error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','5182e3b82c044374a6f14f9a06fa0f24');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18370','{$IFCONTROL:"{#IFNAME}"}=1 and ({22086}=2)','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','cb577e04f0a94508a10656c5f276d4e0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18371','{22087}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','0','','0','','45b5778869124558b3265d6d7275c186');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18372','{22088}=3 or {22089}=4','{#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','23fc241ca9d6438bb1688c77688fd1ed');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18373','{22090}=2','{#SNMPVALUE}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c6ed26fb555642c9b25564ec13fcf920');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18374','{22091}=3 or {22091}=4','{#SNMPVALUE}: Temperature is in critical state','','0','4','This trigger uses temperature sensor state',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','1820c365ad55416e995d4d978063e4a1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18375','{22092}=2','{#SNMPVALUE}: Temperature is in warning state','','0','2','This trigger uses temperature sensor state',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','0b7e6f3085a0404ebb64c33828c9c920');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18376','{22093}>{$TEMP_CRIT:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22094}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','4c3501ee0c5b4af48306f040988d427a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18377','{22095}>{$TEMP_WARN:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22096}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','34b7d1a255a4408fac4d299eedc215b9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18378','{22097}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{22098}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','b9b8577c9f114d4c8546169e5a63a915');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18379','{22099}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','01901a212f7c4fd2976f8ab89ad7eb68');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18380','{22100}>{$ICMP_LOSS_WARN} and {22100}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','20104e6a8abe4b0e9bdd32325d506d9c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18381','{22101}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','21b7cefe750048fba80e026afecebcfd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18382','{23780}<>{23781} and length({23782})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','a11a364406534a838c99f89c4136eb5b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18383','{23783}<>{23784} and length({23785})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','b881ec6269d54e25810ed2ec2dfe3385');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18384','{23786}<>{23787} and length({23788})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','2','','0','','1','','0','','cc0071c5d3074123a77ebddd7dd8583c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18385','({31847}>0 and {31847}<10m) or ({31847}=0 and {31848}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','904571e51fbc4cd0a3a25800e16ec495');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18386','{22109}=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','','90d5894323074dc8bcd57b212cdbf398');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18387','{22110}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','f3318a22b4ff436f9021dbd181ecee58');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18388','{23789}<>{23790} and length({23791})>0','{#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','2','0','','0','','0','','0','{#ENT_NAME}: Device has been replaced (new serial number received)','b1087409b7c84ad5b587e6f6fc37dfe0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18389','{22113}=3 or {22113}=4','{#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9c0112ed996944768a717e15554aaa21');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18390','{22114}=2','{#SNMPVALUE}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','98dd9b3bf65e418aa86f7a927910f847');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18391','{22115}>{$MEMORY.UTIL.MAX}','{#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m)','14f0fcd6447746d2af5de080c36e9888');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18392','{22116}<0 and {22117}>0\r\nand (\r\n{22118}=6 or\r\n{22118}=7 or\r\n{22118}=11 or\r\n{22118}=62 or\r\n{22118}=69 or\r\n{22118}=117\r\n)\r\nand\r\n({22119}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({22116}>0 and {22120}>0) or\r\n({22119}=2)','0','','0','Current reported speed: {ITEM.LASTVALUE1}','0','','b67a022f435741e59278d79bc873dcaa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18393','({22121}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22122}) and\r\n{22122}>0','Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{22121}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22122}','0','','0','In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','bf1ed5348e3c48388f099f4d8cdec4f8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18394','({22123}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22124}) and\r\n{22124}>0','Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{22123}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22124}','0','','0','Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','76bbbff26fcc406ba497f24dd23c07c8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18395','{22125}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High input error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{22126}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors in: {ITEM.LASTVALUE1}','0','Interface {#IFNAME}({#IFALIAS}): High input error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','67573956247a4c29935889db09fba7e4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18396','{22127}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High output error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{22128}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High output error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','80dc2a94be5d49d59b643b3c07dfe6fd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18397','{$IFCONTROL:"{#IFNAME}"}=1 and ({22129}=2)','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2ac6c68151b04e9489b0bff5f6277ec6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18398','{22130}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','0','','0','','4819114a72df4cd5ac093402e7799afa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18399','{22131}=3 or {22132}=4','{#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','8509b77831764bc3943b5fc65a8de0a7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18400','{22133}=2','{#SNMPVALUE}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4cdeb02663604279ac2d725cd16ee289');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18401','{22134}=3 or {22134}=4','{#SNMPVALUE}: Temperature is in critical state','','0','4','This trigger uses temperature sensor state',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','c4ed5c08530041ad8c9c14033d792f56');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18402','{22135}=2','{#SNMPVALUE}: Temperature is in warning state','','0','2','This trigger uses temperature sensor state',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b4b4b88fcbe74e8b9c525cd2a6ace143');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18403','{22136}>{$TEMP_CRIT:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22137}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','d1918e0df0ae4b3ab22067142f7c0538');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18404','{22138}>{$TEMP_WARN:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22139}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','468eaf7a831d4b2699e8be1939916f56');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18405','{22140}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{22141}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','acac81a3c0b04e889f9bae2e40dd9caf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18406','{22142}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','1dd6a211f5e54351a2d4a0854e66fdba');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18407','{22143}>{$ICMP_LOSS_WARN} and {22143}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','669ae230efe84f76be95f3ac0eac1102');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18408','{22144}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','391b3ac9e1b746c8824af721c472df7b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18409','{23792}<>{23793} and length({23794})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','f63ea5e9c33f465985259c3c8d27a12a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18410','{23795}<>{23796} and length({23797})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','55ff869f6acb4f2daddf5c855aa3d76d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18411','{23798}<>{23799} and length({23800})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','2','','0','','1','','0','','6724cfef1df145fdb0e6e2cfb35bc890');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18412','({31849}>0 and {31849}<10m) or ({31849}=0 and {31850}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','2f1841fb315041a2a437886dc6c23814');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18413','{22152}=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','','da0596afe59b455bb503a0b2dea1cebe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18414','{22153}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','194c2d8b74c94717a037ce22c31a50e6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18415','{23801}<>{23802} and length({23803})>0','{#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','{#ENT_NAME}: Device has been replaced (new serial number received)','7dc178a7bced4003b51b599459e41047');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18416','{22156}=3 or {22156}=4','{#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','16d0712d6e1f4cb18a65d4cc7e11a8df');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18417','{22157}=2','{#SNMPVALUE}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','42ad0109072e404eb47daaf17236d805');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18418','{22158}>{$MEMORY.UTIL.MAX}','{#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m)','8cf907c229fa4c4c86c1f06e65facef8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18419','{22159}<0 and {22160}>0\r\nand (\r\n{22161}=6 or\r\n{22161}=7 or\r\n{22161}=11 or\r\n{22161}=62 or\r\n{22161}=69 or\r\n{22161}=117\r\n)\r\nand\r\n({22162}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({22159}>0 and {22163}>0) or\r\n({22162}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','4eae529fc032412d957f1e0d04261867');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18420','({22164}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22165}) and\r\n{22165}>0','Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{22164}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22165}','0','','1','In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','4e1ee888558346faa54c02b85d320170');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18421','({22166}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22167}) and\r\n{22167}>0','Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{22166}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22167}','0','','1','Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','7623796067224187b6f692c8b6cbd398');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18422','{22168}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High input error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{22169}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}','0','Interface {#IFNAME}({#IFALIAS}): High input error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','f4fa2946c04d4bdbabc9be4b492cf5f0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18423','{22170}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High output error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{22171}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High output error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','a14d914fa1404daab227b6d22e71ea69');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18424','{$IFCONTROL:"{#IFNAME}"}=1 and ({22172}=2)','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.',NULL,'0','2','0','','0','','1','Current state: {ITEM.LASTVALUE1}','0','','77b810108caa4ae6bd8d8bff06acddb2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18425','{22173}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','1','','0','','a1217d320897464da4bb9a67f669460f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18426','{22174}=3 or {22175}=4','{#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','56fced6c99ba44ab9fb5268d946a385b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18427','{22176}=2','{#SNMPVALUE}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6962e5851f244e9cb9d87763637a20f3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18428','{22177}=3 or {22177}=4','{#SNMPVALUE}: Temperature is in critical state','','0','4','This trigger uses temperature sensor state',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','e4844779a080455e9691bdc705227a28');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18429','{22178}=2','{#SNMPVALUE}: Temperature is in warning state','','0','2','This trigger uses temperature sensor state',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','120dd2434317447d8ee6708d5c1221e3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18430','{22179}>{$TEMP_CRIT:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22180}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','6cecb3ad6e7640cc84b03e3b3943ad07');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18431','{22181}>{$TEMP_WARN:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22182}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','6f5d1c3f3c804b6ba17486db5e6e8037');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18432','{22183}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{22184}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','ed406cbc4b08446991c610c902574cac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18433','{22185}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','fe4c81a386814dfa80ffc76e1b7da9a1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18434','{30944}>{$ICMP_LOSS_WARN} and {30944}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','52b307324c37481693d419df236cbbd7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18435','{30945}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','39a9cff305074e1a8b7c6ed0c526fda9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18436','{22188}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','26913093ab414fe69ff157102ae54796');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18437','{23919}<>{23920} and length({23921})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','ff7ad0676a774cf49a4568e752dd916b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18438','({31877}>0 and {31877}<10m) or ({31877}=0 and {31878}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','667856dcaad04a108cb0a5150e825a50');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18439','{22192}=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','','6e476399963a414a847c4c514055bf43');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18440','{30946}=1','{#SENSOR_INFO}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','de81ef4f2c3f4f44a745a1fa1f179784');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18441','{22194}<0 and {22195}>0\r\nand (\r\n{22196}=6 or\r\n{22196}=7 or\r\n{22196}=11 or\r\n{22196}=62 or\r\n{22196}=69 or\r\n{22196}=117\r\n)\r\nand\r\n({22197}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({22194}>0 and {22198}>0) or\r\n({22197}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','2dc62fe3cd624e2ba99caa9ff94273f6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18442','({22199}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22200} or\r\n{22201}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22200}) and\r\n{22200}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{22199}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22200} and\r\n{22201}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22200}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','20e8f28ebc304ba185d475dbba51c4b8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18443','{22202}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {22203}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{22204}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {22205}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','6740479821cd49c199c345dd736a11f7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18444','{$IFCONTROL:"{#IFNAME}"}=1 and {23925}=2 and ({23926}<>{23927})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{23925}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','46918cfc713a4b1da7eed32cead0070b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18445','{22208}=1','{#ENT_NAME}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','5d2d688ad68343ff8884c11e9d233b98');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18446','{22209}>{$TEMP.MAX.WARN:"{#SENSOR_INFO}"}\r\nor\r\n{22210}={$TEMP.STATUS.WARN}','{#SENSOR_INFO}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22211}<{$TEMP.MAX.WARN:"{#SENSOR_INFO}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP.MAX.WARN:"{#SENSOR_INFO}"}','352650536eef4858be1437a720712932');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18447','{22212}>{$TEMP.MAX.CRIT:"{#SENSOR_INFO}"}','{#SENSOR_INFO}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22213}<{$TEMP.MAX.CRIT:"{#SENSOR_INFO}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP.MAX.CRIT:"{#SENSOR_INFO}"}','7259bdafbe7f4227999d7365a99e536d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18448','{22214}<{$TEMP.MIN.CRIT:"{#SENSOR_INFO}"}','{#SENSOR_INFO}: Temperature is too low','','0','3','',NULL,'0','2','1','{22215}>{$TEMP.MIN.CRIT:"{#SENSOR_INFO}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_INFO}: Temperature is too low: <{$TEMP.MIN.CRIT:"{#SENSOR_INFO}"}','7bfa2bd0177940f4aff8dc95867ceb44');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18449','{31403}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and\r\n(({31404}-{31405})<{$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"} or {31406}<1d)','{#FSNAME}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%)','f1eb2ddb27d24cd99d8aba4485dfeeb9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18450','{31407}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and\r\n(({31408}-{31409})<{$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"} or {31410}<1d)','{#FSNAME}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%)','b2e084f280434a3a8291e5dc691dfd7b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18451','{22224}>{$MEMORY.UTIL.MAX}','{#MEMNAME}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','{#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','912430a103414c6eb9c8e55c45246f48');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18452','{30953}<{$MEMORY.AVAILABLE.MIN} and {30954}>0','Lack of available memory','','0','3','',NULL,'0','0','0','','0','','0','Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','3800877e8b474aa2aa83c1ecc0523db6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18455','{22231}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {22232}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}: High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{22233}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {22234}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}: High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','b4da7325b41647ab997cf6906a9cba23');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18458','{30965}<{$MEMORY.AVAILABLE.MIN} and {30966}>0','Lack of available memory','','0','3','',NULL,'0','0','0','','0','','0','Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','1ba414b62eef4ca6b198f00a4cdd2bde');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18460','{22247}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {22248}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}: High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{22249}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {22250}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}: High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','b0b3cce08e924447845859391bdf9045');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18462','{30969}<{$MEMORY.AVAILABLE.MIN} and {30970}>0','Lack of available memory','','0','3','',NULL,'0','0','0','','0','','0','Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','f78ed17586964a46a9de0c4f183984f6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18463','({22257}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22258} or\r\n{22259}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22258}) and\r\n{22258}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{22257}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22258} and\r\n{22259}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22258}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','11e2c8023463482da878cdad5bb7de76');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18464','{22260}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {22261}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{22262}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {22263}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','6e8269b2260e42de97aec08043a768df');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18465','({22264}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22265} or\r\n{22266}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22265}) and\r\n{22265}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{22264}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22265} and\r\n{22266}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22265}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','c0e8e89730f04d92b26dd5da215894e1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18466','{22267}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {22268}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{22269}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {22270}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','2a59eec0032a41e48e2443507cbd173d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18469','({22278}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22279} or\r\n{22280}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22279}) and\r\n{22279}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{22278}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22279} and\r\n{22280}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22279}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','3bdd014bdaf04f0885816cbf1da11309');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18470','{22281}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {22282}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{22283}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {22284}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','e29c3aa283d74838b45040394a3eabe1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18473','{22292}=2','Battery needs replacement','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','7e40918732e74b5e8bd854422989e77d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18474','{22293}=4','Battery has an internal error condition','','0','3','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','7ae03f3f307b4f11ad2bc0548911cbd3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18475','{22294}=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','','1282326bb61d45d88671bbbde3fab8ff');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18476','{22295} > {$BATTERY.TEMP.MAX.WARN}','Battery has high temperature','','0','4','',NULL,'0','0','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','36a14fe061d1433e9875373307a4e0f4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18480','{22299} > 0 and ({22299} > {$UPS.INPUT_FREQ.MAX.WARN} or {22300} < {$UPS.INPUT_FREQ.MIN.WARN})','Unacceptable input frequency','','0','4','',NULL,'0','0','0','','0','','0','Current frequency: {ITEM.LASTVALUE1}','0','Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','1ddd2699b87f452a8893f75f805c0a81');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18481','{22301} > 0 and ({22301} > {$UPS.INPUT_VOLT.MAX.WARN} or {22302} < {$UPS.INPUT_VOLT.MIN.WARN})','Unacceptable input voltage','','0','4','',NULL,'0','0','0','','0','','0','Current voltage: {ITEM.LASTVALUE1}','0','Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','f6527c4fed3d41168be23f9367f18405');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18482','{22303} > {$UPS.OUTPUT.MAX.WARN}','Output load is high','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','Current load: {ITEM.LASTVALUE1}','0','Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','ebef08a42d1e47ffa82ea586c1a5b3d6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18483','{22304}=16','UPS is Emergency Static Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','c0e0b1db9a1f41379c340c122426778d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18484','{22305}=10','UPS is Hardware Failure Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','381a6a75d9084ff1bfcc30b6870a2682');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18485','{22306}=7','UPS is Off','','0','3','',NULL,'0','0','0','','0','','0','','0','','da75b5277ceb423fac8d90b58d49c21f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18486','{22307}=3','UPS is on battery','','0','3','',NULL,'0','0','0','','0','','0','','0','','b0330f707fc64605934ed95233bd2246');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18487','{22308}=4','UPS is on Smart Boost','','0','3','',NULL,'0','0','0','','0','','0','','0','','f8d75a2fdb6942e6b63831d206c78e56');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18488','{22309}=12','UPS is On Smart Trim','','0','3','',NULL,'0','0','0','','0','','0','','0','','8eb59b4873e14acfa8e05791ed30c9d1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18489','{22310}=8','UPS is Rebooting','','0','3','',NULL,'0','0','0','','0','','0','','0','','e06247b357b849d3ad1886f797705320');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18490','{22311}=11','UPS is Sleeping Until Power Return','','0','3','',NULL,'0','0','0','','0','','0','','0','','9b4424babc284dcabfb44dc725c03f40');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18491','{22312}=6','UPS is Software Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','9ac2faafee484894bb304da02d6ab0b2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18492','{22313}=9','UPS is Switched Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','ce16d33b10e74b129d22378f96ede052');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18493','{22314}=5','UPS is Timed Sleeping','','0','3','',NULL,'0','0','0','','0','','0','','0','','aa84fc5fd4434101a481481beb616a7c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18495','({32497}>0 and {32497}<10m) or ({32497}=0 and {32498}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','b0959bdb606542bcb2952e820ac972c9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18496','{22318}=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','','4572d871f1d944bb855b93fdc6de5e88');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18497','{22319}=1','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','','0','2','The battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','a248194aa30645c5918278b83944b20e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18499','{22321} > {$BATTERY.TEMP.MAX.WARN}','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','','0','4','',NULL,'0','2','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','80f084121d56464f90e4a3ef9e198889');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18500','{22322}=3','{#EXTERNAL_SENSOR1_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','','3a40f3cb0a3b411697fe8d37f82404d4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18501','{22323}=4','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','63ba879a2a324ffc958b761f2010ac8e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18502','{22324}=2','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','dc90cd795879495fa473b71a2ff57b49');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18503','{22325}=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','','8a62bc38e49e4779938c45839a190856');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18504','{22326}=4','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','ca02e8f92e134dce9834bd1d6f3ab469');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18505','{22327}=2','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','36ad29900db7410782daeddb9d7c648f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18506','{22328} > {$UPS.INPUT_VOLT.MAX.WARN} or {22329} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','63c623a2a9af44f38388a17742c87486');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18507','({22330}<>"ok")','Cluster status is abnormal','','0','3','Any errors associated with the sample. For example, if the aggregation of data over multiple nodes fails then any of the partial errors might be returned, “ok” on success, or “error” on any internal uncategorized failure. Whenever a sample collection is missed but done at a later time, it is back filled to the previous 15 second timestamp and tagged with "backfilled_data". “Inconsistent_ delta_time” is encountered when the time between two collections is not the same for all nodes. Therefore, the aggregated value might be over or under inflated. “Negative_delta” is returned when an expected monotonically increasing value has decreased in value. “Inconsistent_old_data” is returned when one or more nodes do not have the latest data.',NULL,'0','0','0','','0','','0','','0','','c823a2eb325a4153871be705d7c24c72');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18508','{24409}<>{24410} and length({24411})>0','Version has changed','','0','1','__RESOURCE__ version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Version has changed (new version: {ITEM.VALUE})','4a2936f068ed486f8c8a2cf2cfa7440b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18509','({24412}<>{24413} and {24414}="error")','{#ID}: Chassis has something errors','','0','3','Something is wrong with the chassis.',NULL,'0','2','1','({24412}<>{24413} and {24414}="ok")','0','','1','','0','','381eb797545d452a84d3dba43865bbed');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18510','({24415}<>{24416} and {24417}<>"present")','{#DISKNAME}: Disk of the Node "{#NODENAME}" has state different from "present"','','0','3','Something is wrong with the disk.',NULL,'0','2','1','({24415}<>{24416} and {24417}="present")','0','','1','','0','','72c1925f51c149eca27c7ddd1c81e44f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18511','({24418}<>{24419} and {24420}="error")','{#FRUID}: FRU of the chassis "{#ID}" state is error','','0','3','Something is wrong with the FRU.',NULL,'0','2','1','({24418}<>{24419} and {24420}="ok")','0','','1','','0','','a17cb2ea98b6415d9e22e7f591d80adb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18512','({24421}<>{24422} and {24423}<>"online")','{#LUNNAME}: LUN of the SVM "{#SVMNAME}" has abnormal container state','','0','3','LUNs are only available when their containers are available.',NULL,'0','2','1','({24421}<>{24422} and {24423}="online")','0','','1','','0','','7a4e0a681edd4db6b701b131fea0e5e4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18513','({24424}<>{24425} and {24426}<>"online")','{#LUNNAME}: LUN of the SVM "{#SVMNAME}" has abnormal state','','0','3','Normal states for a LUN are online and offline. Other states indicate errors.',NULL,'0','2','1','({24424}<>{24425} and {24426}="online")','0','','1','','0','','5b065dd69e654bee881ae60464a5c9fe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18514','{24427}<>{24428} and length({24429})>0','{#NODENAME}: Version has changed','','0','1','{#NODENAME} version has changed. Ack to close.',NULL,'0','2','0','','0','','1','','0','{#NODENAME}: Version has changed (new version: {ITEM.VALUE})','34092a7ade784221ae50eb74a6fbcb5d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18515','({22345}<>"normal")','{#NODENAME}: Node has over temperature','','0','3','The hardware shuts down if the temperature exceeds critical thresholds(item\'s value is "over").',NULL,'0','2','0','','0','','0','','0','','4dbb3a9da15f45989b8fa4217f3f25c3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18516','({22346}<>"up")','{#NODENAME}: Node state is abnormal','','0','3','The state of the node is different from up:\r\nbooting - Node is booting up.\r\ndown - Node has stopped or is dumping core.\r\ntaken_over - Node has been taken over by its HA partner and is not yet waiting for giveback.\r\nwaiting_for_giveback - Node has been taken over by its HA partner and is waiting for the HA partner to giveback disks.\r\ndegraded - Node has one or more critical services offline.\r\nunknown - Node or its HA partner cannot be contacted and there is no information on the node\'s state.',NULL,'0','2','0','','0','','0','','0','','db8ff0f2cd294cc5952992a0d476e798');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18517','{22347}<10m','{#NODENAME}: Node has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','2','0','','0','','1','','0','{#NODENAME}: Node has been restarted (uptime < 10m)','61357dfdb08846c4935f62ba894b159a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18518','({24430}<>{24431} and {24432}="down")','{#ETHPORTNAME}: Ethernet port of the Node "{#NODENAME}" is down','','0','3','Something is wrong with the ethernet port.',NULL,'0','2','1','({24430}<>{24431} and {24432}="up")','0','','1','','0','','0fa3a54b559349d58b616720ee33cdf5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18519','({24433}<>{24434} and {24435}<>"online")','{#FCPORTNAME}: FC port of the Node "{#NODENAME}" has state different from "online"','','0','3','Something is wrong with the FC port.',NULL,'0','2','1','({24433}<>{24434} and {24435}="online")','0','','1','','0','','a985c047b9834081bf21ae50836cef46');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18520','({24436}<>{24437} and {24438}<>"running")','{#SVMNAME}: SVM state is abnormal','','0','3','Something is wrong with the SVM.',NULL,'0','2','1','({24436}<>{24437} and {24438}="running")','0','','1','','0','','7c5695fd13a4489ca1c9772f1d3376a7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18521','({24439}<>{24440} and {24441}<>"online")','{#VOLUMENAME}: Volume state is abnormal','','0','3','A volume can only be brought online if it is offline. Taking a volume offline removes its junction path. The \'mixed\' state applies to FlexGroup volumes only and cannot be specified as a target state. An \'error\' state implies that the volume is not in a state to serve data.',NULL,'0','2','1','({24439}<>{24440} and {24441}="online")','0','','1','','0','','b00f339ed1a9450ba096cabababcf76e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18522','{22356}>{22356}','Broker {#JMXBROKERNAME}: Message enqueue rate is higher than dequeue rate','','0','3','Enqueue rate is higher than dequeue rate. It may indicate performance problems.',NULL,'0','2','0','','0','','0','','0','Broker {#JMXBROKERNAME}: Message enqueue rate is higher than dequeue rate for {$ACTIVEMQ.MSG.RATE.WARN.TIME:"{#JMXBROKERNAME}"}','a3ab7bca031c45059418fa82a3c67369');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18523','{22357}>{22358}','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Message enqueue rate is higher than dequeue rate','','0','3','Enqueue rate is higher than dequeue rate. It may indicate performance problems.',NULL,'0','2','0','','0','','0','','0','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Message enqueue rate is higher than dequeue rate for {$ACTIVEMQ.MSG.RATE.WARN.TIME:"{#JMXDESTINATIONNAME}"}','344a0b83a5444d009aa56e97c1c0171b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18524','{28258}>{$ACTIVEMQ.EXPIRED.WARN:"{#JMXDESTINATIONNAME}"}','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Expired messages count is high','','0','3','This metric represents the number of messages that expired before they could be delivered. If you expect all messages to be delivered and acknowledged within a certain amount of time, you can set an expiration for each message, and investigate if your ExpiredCount metric rises above zero.',NULL,'0','2','0','','0','','0','','0','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Expired messages count higher than {$ACTIVEMQ.EXPIRED.WARN:"{#JMXDESTINATIONNAME}"}','a498405c5b764c1ea9f0e151adf94ed7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18525','{22360}>{$ACTIVEMQ.QUEUE.WARN:"{#JMXDESTINATIONNAME}"} and {$ACTIVEMQ.QUEUE.ENABLED:"{#JMXDESTINATIONNAME}"}=1','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Queue size is high','','0','3','Queue size is higher than threshold. It may indicate performance problems.',NULL,'0','2','0','','0','','0','','0','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Queue size higher than {$ACTIVEMQ.QUEUE.WARN:"{#JMXDESTINATIONNAME}"} for {$ACTIVEMQ.QUEUE.TIME:"{#JMXDESTINATIONNAME}"}','f1c49943152c407088e3bf288b650b41');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18526','{22361}/{22362}*100>{$GITLAB.PUMA.UTILIZATION.MAX.WARN}','GitLab: Puma instance thread utilization is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','GitLab: Puma instance thread utilization is too high (over {$GITLAB.PUMA.UTILIZATION.MAX.WARN}% for 5m)','b69fe81449bd4b6cb6dfddeb333e8898');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18527','{22363}>{22364}/100*{$SQUID.PAGE.FAULT.WARN}','Squid: High sys page faults rate','','0','2','',NULL,'0','0','0','','0','','0','','0','Squid: High sys page faults rate (>{$SQUID.PAGE.FAULT.WARN}% of received HTTP requests)','89a1cfe0f02f4da880f197c2e5605db8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18528','{22365}>75','Remote Zabbix server: Utilization of report manager processes is high','','0','3','',NULL,'0','0','1','{22365}<65','0','','0','','0','Remote Zabbix server: Utilization of report manager processes over 75%','32d6f18edd5a45e1999f294f227c600f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18529','{22366}>75','Remote Zabbix server: Utilization of report writer processes is high','','0','3','',NULL,'0','0','1','{22366}<65','0','','0','','0','Remote Zabbix server: Utilization of report writer processes over 75%','83fa871d54f74c89a7c85d429d40da53');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18530','{22367}>75','Zabbix server: Utilization of report manager processes is high','','0','3','',NULL,'0','0','1','{22367}<65','0','','0','','0','Zabbix server: Utilization of report manager processes over 75%','82f774b4a47247f49db1ab0480a69eae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18531','{22368}>75','Zabbix server: Utilization of report writer processes is high','','0','3','',NULL,'0','0','1','{22368}<65','0','','0','','0','Zabbix server: Utilization of report writer processes over 75%','03158d902b854b3495aa76042f361bea');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18534','{22371}>{$MSSQL.WORK_FILES.MAX}','MSSQL: Number of work files created per second is high','','0','3','Too many work files created per second to store temporary results for hash joins and hash aggregates.',NULL,'0','0','0','','0','','0','','0','MSSQL: Number of work files created per second is high (over {$MSSQL.WORK_FILES.MAX} for 5m)','2f7e2dd4a94e4e92b468f4e2e2364f71');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18535','{22372}>{$MSSQL.WORK_TABLES.MAX}','MSSQL: Number of work tables created per second is high','','0','3','Too many work tables created per second to store temporary results for query spool, lob variables, XML variables, and cursors.',NULL,'0','0','0','','0','','0','','0','MSSQL: Number of work tables created per second is high (over {$MSSQL.WORK_TABLES.MAX} for 5m)','0214004de3084ce6b35d5bba53a66947');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18536','{22373}>{$MSSQL.BACKUP_DIFF.CRIT:"{#DBNAME}"}','MSSQL DB \'{#DBNAME}\': Diff backup is old','','0','4','The differential backup has not been executed for a long time.',NULL,'0','2','0','','0','','1','Time since last backup: {ITEM.LASTVALUE1}','0','MSSQL DB \'{#DBNAME}\': Diff backup older than {$MSSQL.BACKUP_DIFF.CRIT:"{#DBNAME}"}','036892c6b9de41c698a4e9acd5457e6a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18537','{22374}>{$MSSQL.BACKUP_DIFF.WARN:"{#DBNAME}"}','MSSQL DB \'{#DBNAME}\': Diff backup is old','','0','2','The differential backup has not been executed for a long time.',NULL,'0','2','0','','0','','1','Time since last backup: {ITEM.LASTVALUE1}','0','MSSQL DB \'{#DBNAME}\': Diff backup older than {$MSSQL.BACKUP_DIFF.WARN:"{#DBNAME}"}','9a294163ee034fc6a58f5534a7d79aac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18538','{22375}>{$MSSQL.BACKUP_FULL.CRIT:"{#DBNAME}"}','MSSQL DB \'{#DBNAME}\': Full backup is old','','0','4','The full backup has not been executed for a long time.',NULL,'0','2','0','','0','','1','Time since last backup: {ITEM.LASTVALUE1}','0','MSSQL DB \'{#DBNAME}\': Full backup older than {$MSSQL.BACKUP_FULL.CRIT:"{#DBNAME}"}','09c8e059ffa44d0eb1be626b5d820dc9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18539','{22376}>{$MSSQL.BACKUP_FULL.WARN:"{#DBNAME}"}','MSSQL DB \'{#DBNAME}\': Full backup is old','','0','2','The full backup has not been executed for a long time.',NULL,'0','2','0','','0','','1','Time since last backup: {ITEM.LASTVALUE1}','0','MSSQL DB \'{#DBNAME}\': Full backup older than {$MSSQL.BACKUP_FULL.WARN:"{#DBNAME}"}','b380d76b1055482ca8cd69c90611f1a5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18540','{22377}>{$MSSQL.BACKUP_LOG.CRIT:"{#DBNAME}"}','MSSQL DB \'{#DBNAME}\': Log backup is old','','0','4','The log backup has not been executed for a long time.',NULL,'0','2','0','','0','','1','Time since last backup: {ITEM.LASTVALUE1}','0','MSSQL DB \'{#DBNAME}\': Log backup older than {$MSSQL.BACKUP_LOG.CRIT:"{#DBNAME}"}','4a6e76dc9a5148649d07e35e962b5893');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18541','{22378}>{$MSSQL.BACKUP_LOG.WARN:"{#DBNAME}"}','MSSQL DB \'{#DBNAME}\': Log backup is old','','0','2','The log backup has not been executed for a long time.',NULL,'0','2','0','','0','','1','Time since last backup: {ITEM.LASTVALUE1}','0','MSSQL DB \'{#DBNAME}\': Log backup older than {$MSSQL.BACKUP_LOG.WARN:"{#DBNAME}"}','6000420450cf453bae3652c7f7d05e2b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18542','{22379}=0','MSSQL Job \'{#JOBNAME}\': Failed to run','','0','2','The last run of the job has failed.',NULL,'0','2','0','','0','','1','','0','','304f468605164fd2baa1905cedf2c897');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18543','{22380}>{$MSSQL.BACKUP_DURATION.WARN:"{#JOBNAME}"}','MSSQL Job \'{#JOBNAME}\': Job duration is high','','0','2','The job is taking too long.',NULL,'0','2','0','','0','','1','Job duration: {ITEM.LASTVALUE1}','0','MSSQL Job \'{#JOBNAME}\': Job duration is greater than {$MSSQL.BACKUP_DURATION.WARN:"{#JOBNAME}"}','7e45cb8f41114388ac8772006d929da2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18544','{22381}<{$MYSQL.BUFF_UTIL.MIN.WARN}','MySQL: Buffer pool utilization is too low','','0','2','The buffer pool utilization is less than {$MYSQL.BUFF_UTIL.MIN.WARN}% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment.',NULL,'0','0','0','','0','','0','','0','MySQL: Buffer pool utilization is too low (less than {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m)','0e8ea91d72a64507aaadf9ea5efa6412');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18545','{22382}<{$MYSQL.BUFF_UTIL.MIN.WARN}','MySQL: Buffer pool utilization is too low','','0','2','The buffer pool utilization is less than {$MYSQL.BUFF_UTIL.MIN.WARN}% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment.',NULL,'0','0','0','','0','','0','','0','MySQL: Buffer pool utilization is too low (less than {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m)','d785a37fe8d7484d9998e47e0e1d741f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18546','{22383}<{$MYSQL.BUFF_UTIL.MIN.WARN}','MySQL: Buffer pool utilization is too low','','0','2','The buffer pool utilization is less than {$MYSQL.BUFF_UTIL.MIN.WARN}% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment.',NULL,'0','0','0','','0','','0','','0','MySQL: Buffer pool utilization is too low (less than {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m)','f4c2e4edf0c34bb1856ed392f2bc7c87');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18547','{22384} > {$ORACLE.CONCURRENCY.MAX.WARN}','Oracle: Too high database concurrency','','0','2','Concurrency rate is over {$ORACLE.CONCURRENCY.MAX.WARN}%. A high contention value does not indicate the root cause of the problem, but is a signal to search for it. In the case of high competition, an analysis of resource consumption should be carried out, the most "heavy" queries made in the database, possibly - session tracing. All this will help determine the root cause and possible optimization points both in the database configuration and in the logic of building queries of the application itself.',NULL,'0','0','0','','0','','0','','0','Oracle: Too high database concurrency (over {$ORACLE.CONCURRENCY.MAX.WARN}% for 5 min)','ff16c7bbeaa5439f98ffe12ce7deff71');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18548','{22385} > {$ORACLE.CONCURRENCY.MAX.WARN}','Oracle: Too high database concurrency','','0','2','Concurrency rate is over {$ORACLE.CONCURRENCY.MAX.WARN}%. A high contention value does not indicate the root cause of the problem, but is a signal to search for it. In the case of high competition, an analysis of resource consumption should be carried out, the most "heavy" queries made in the database, possibly - session tracing. All this will help determine the root cause and possible optimization points both in the database configuration and in the logic of building queries of the application itself.',NULL,'0','0','0','','0','','0','','0','Oracle: Too high database concurrency (over {$ORACLE.CONCURRENCY.MAX.WARN}% for 5 min)','7099e4a160c1446395b9e5b721db7b38');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18549','{22386}=0','PD: Instance is not responding','','0','3','',NULL,'0','0','0','','0','','0','','0','','ab1d0d23dad844099e42debb71512887');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18550','{22387}<10m','PD: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','PD: has been restarted (uptime < 10m)','9f47a19f6f424df598e74c5a653ebf27');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18551','{23515}<>{23516} and length({23517})>0','PD: Version has changed','','0','1','PD version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','PD: Version has changed (new version: {ITEM.VALUE})','6fb6045405af4c89b09750f57ada472a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18552','{22390}/{22391}*100>{$PD.STORAGE_USAGE.MAX.WARN}','TiDB cluster: Current storage usage is too high','','0','2','Over {$PD.STORAGE_USAGE.MAX.WARN}% of the cluster space is occupied.',NULL,'0','2','0','','0','','0','','0','TiDB cluster: Current storage usage is too high (over {$PD.STORAGE_USAGE.MAX.WARN}% for 5m)','843d566b33bc401390c2a633d08bb033');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18553','{22392}>0','TiDB cluster: There are disconnected TiKV nodes','','0','2','PD does not receive a TiKV heartbeat within 20 seconds. Normally a TiKV heartbeat comes in every 10 seconds.',NULL,'0','2','0','','0','','0','','0','','077d39f8ea194081a9d0c5dfdec4d1b5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18554','{22393}>0','TiDB cluster: There are offline TiKV nodes','','0','3','PD has not received a TiKV heartbeat for a long time.',NULL,'0','2','0','','0','','0','','0','','526b935d3fa04825b7544eb6efd50ab5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18555','{22394}>0','TiDB cluster: There are low space TiKV nodes','','0','3','Indicates that there is no sufficient space on the TiKV node.',NULL,'0','2','0','','0','','0','','0','','87ef0f211afd4d58adec05007ef1d263');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18556','{22395}>0','TiDB cluster: There are unresponsive peers','','0','2','The number of Regions with an unresponsive peer reported by the Raft leader.',NULL,'0','2','0','','0','','0','','1','','2bc6b48bbfd8436e80903ea947571501');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18557','{22396}>{$PD.MISS_REGION.MAX.WARN}','TiDB cluster: Too many missed regions','','0','2','The number of Region replicas is smaller than the value of max-replicas. When a TiKV machine is down and its downtime exceeds max-down-time, it usually leads to missing replicas for some Regions during a period of time. When a TiKV node is made offline, it might result in a small number of Regions with missing replicas.',NULL,'0','2','0','','0','','0','','1','TiDB cluster: Too many missed regions (over {$PD.MISS_REGION.MAX.WARN} in 5m)','1f80bd81d11345f59699617113a0cad5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18558','{22397}/{22398}*100>{$TIDB.OPEN.FDS.MAX.WARN}','TiDB: Current number of open files is too high','','0','2','Heavy file descriptor usage (i.e., near the process\'s file descriptor limit) indicates a potential file descriptor exhaustion issue.',NULL,'0','0','0','','0','','0','','0','TiDB: Current number of open files is too high (over {$TIDB.OPEN.FDS.MAX.WARN}% for 5m)','cfd6ba0dbf294b9e9ab6afc7d44be7b3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18559','{22399}>{$TIDB.DDL.WAITING.MAX.WARN}','TiDB: Too many DDL waiting jobs','','0','2','',NULL,'0','0','0','','0','','0','','0','TiDB: Too many DDL waiting jobs (over {$TIDB.DDL.WAITING.MAX.WARN} for 5m)','4125d55d9931455091d2f3a0b25e9678');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18560','{22400}>{$TIDB.SCHEMA_LOAD_ERRORS.MAX.WARN}','TiDB: Too many schema lease errors','','0','3','',NULL,'0','0','0','','0','','0','','0','TiDB: Too many schema lease errors (over {$TIDB.SCHEMA_LOAD_ERRORS.MAX.WARN} for 5m)','b4948f37af804c01a2b8887f9e89ec90');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18561','{22401}>{$TIDB.HEAP.USAGE.MAX.WARN}','TiDB: Heap memory usage is too high','','0','2','',NULL,'0','0','0','','0','','0','','0','TiDB: Heap memory usage is too high (over {$TIDB.HEAP.USAGE.MAX.WARN} for 5m)','575a4821ed8c4a1881b7f9bd264b1929');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18562','{22402}<{$TIDB.MONITOR_KEEP_ALIVE.MAX.WARN}','TiDB: Too few keep alive operations','','0','3','Indicates whether the TiDB process still exists. If the number of times for tidb_monitor_keep_alive_total increases less than 10 per minute, the TiDB process might already exit and an alert is triggered.',NULL,'0','0','0','','0','','0','','0','TiDB: Too few keep alive operations (less {$TIDB.MONITOR_KEEP_ALIVE.MAX.WARN} for 5m)','eb3c09904fa843d78401b00eff4f6a08');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18563','{22403}>{$TIDB.TIME_JUMP_BACK.MAX.WARN}','TiDB: Too many time jump backs','','0','2','',NULL,'0','0','0','','0','','0','','0','TiDB: Too many time jump backs (over {$TIDB.TIME_JUMP_BACK.MAX.WARN} for 5m)','c3c1f6eab224453b92534d5393aca2b7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18564','{22404}>{$TIDB.SCHEMA_LEASE_ERRORS.MAX.WARN}','TiDB: Too many schema lease errors','','0','3','The latest schema information is not reloaded in TiDB within one lease.',NULL,'0','0','0','','0','','0','','0','TiDB: Too many schema lease errors (over {$TIDB.SCHEMA_LEASE_ERRORS.MAX.WARN} for 5m)','b077eb1afe6a4da79707987324fb40c8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18565','{22405}=0','TiDB: Instance is not responding','','0','3','',NULL,'0','0','0','','0','','0','','0','','82a638ac4a3f4b349ee7bb0d53bc1f29');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18566','{22406}>0','TiDB: There are panicked TiDB threads','','0','3','When a panic occurs, an alert is triggered. The thread is often recovered, otherwise, TiDB will frequently restart.',NULL,'0','0','0','','0','','0','','0','','c457465731c947eab7b477186d8ba876');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18567','{22407}>{$TIDB.REGION_ERROR.MAX.WARN}','TiDB: Too many region related errors','','0','3','',NULL,'0','0','0','','0','','0','','0','TiDB: Too many region related errors (over {$TIDB.REGION_ERROR.MAX.WARN} for 5m)','d3cb81c46e414ff2a7e411a877b899ef');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18568','{22408}<10m','TiDB: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','TiDB: has been restarted (uptime < 10m)','91adc4c6b9364693891faf58c8cced75');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18569','{23518}<>{23519} and length({23520})>0','TiDB: Version has changed','','0','1','TiDB version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','TiDB: Version has changed (new version: {ITEM.VALUE})','5f863fc0944848fdad145f42c94dbea3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18570','{22411}>{$TIDB.GC_ACTIONS.ERRORS.MAX.WARN}','TiDB: Too many failed GC-related operations','','0','2','',NULL,'0','2','0','','0','','0','','1','TiDB: Too many failed GC-related operations (over {$TIDB.GC_ACTIONS.ERRORS.MAX.WARN} in 5m)','2d24956d0a4f459fad155590376696c1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18571','{22412}>{$TIKV.COPOCESSOR.ERRORS.MAX.WARN}','TiKV: Too many coprocessor request error','','0','2','',NULL,'0','0','0','','0','','0','','0','TiKV: Too many coprocessor request error (over {$TIKV.COPOCESSOR.ERRORS.MAX.WARN} in 5m)','31eca27ff6ce4ed78ee428ed3b8d8806');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18573','{22414}>{$TIKV.PENDING_TASKS.MAX.WARN}','TiKV: Too many pending tasks','','0','3','',NULL,'0','0','0','','0','','0','','0','TiKV: Too many pending tasks (over {$TIKV.PENDING_TASKS.MAX.WARN} for 5m)','f26874f910e34933983685ae43a90bee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18574','{22415}<10m','TiKV: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','TiKV: has been restarted (uptime < 10m)','ca06602fa0b64a2ba0c51ed4835c52b2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18575','{22416}>{$TIKV.STORE.ERRORS.MAX.WARN}','TiKV: Store_id {#STORE_ID}: Too many failure messages "{#TYPE}"','','0','2','Indicates that the remote TiKV cannot be connected.',NULL,'0','2','0','','0','','0','','1','TiKV: Store_id {#STORE_ID}: Too many failure messages "{#TYPE}" (over {$TIKV.STORE.ERRORS.MAX.WARN} in 5m)','1f65b64824d64852aaa609df5f3e27fd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18576','{22417} < {$BATTERY.CAPACITY.MIN.WARN}','Battery has low capacity','','0','4','',NULL,'0','0','0','','0','','0','Current capacity: {ITEM.LASTVALUE1}','0','Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','1800690ba0504df9940a4e667c846132');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18577','{22418}=2','Battery needs replacement','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','b4d10f8908f4473facde6d2db1520e0f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18578','{22419}=4','Battery has an internal error condition','','0','3','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','d84ec0d0b8d84e3294cbe7ffaed0c83e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18579','{22420}=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','','8f569ce6c916456581e1cb2cdd8d4dba');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18580','{22421} > {$BATTERY.TEMP.MAX.WARN}','Battery has high temperature','','0','4','',NULL,'0','0','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','0e1f47f0604d4b1b8769e497d7f328b9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18581','{22422} > 0 and ({22422} > {$UPS.INPUT_FREQ.MAX.WARN} or {22423} < {$UPS.INPUT_FREQ.MIN.WARN})','Unacceptable input frequency','','0','4','',NULL,'0','0','0','','0','','0','Current frequency: {ITEM.LASTVALUE1}','0','Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','786d9928356e41ad9b6b2de3b4f3a96f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18582','{22424} > 0 and ({22424} > {$UPS.INPUT_VOLT.MAX.WARN} or {22425} < {$UPS.INPUT_VOLT.MIN.WARN})','Unacceptable input voltage','','0','4','',NULL,'0','0','0','','0','','0','Current voltage: {ITEM.LASTVALUE1}','0','Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','de88ed3b64644d3f9ad1cc3f965757bc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18583','{22426} > {$UPS.OUTPUT.MAX.WARN}','Output load is high','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','Current load: {ITEM.LASTVALUE1}','0','Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','fb7ca4b92e714fda95152b698cf1aa92');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18584','{22427}=16','UPS is Emergency Static Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','efed1ccf301740c1a29e71cd89e5659f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18585','{22428}=10','UPS is Hardware Failure Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','44394841911641c4972165b59b8f6a5b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18586','{22429}=7','UPS is Off','','0','3','',NULL,'0','0','0','','0','','0','','0','','d60b075bfaaa4aeea2398d058fb79c92');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18587','{22430}=3','UPS is on battery','','0','3','',NULL,'0','0','0','','0','','0','','0','','4d54e6e979f94801a3c1e9d6080886bb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18588','{22431}=4','UPS is on Smart Boost','','0','3','',NULL,'0','0','0','','0','','0','','0','','eb430f5409a24f89b0a9e56fb28087c4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18589','{22432}=12','UPS is On Smart Trim','','0','3','',NULL,'0','0','0','','0','','0','','0','','77dbd58283b542cfbca9a9255344e97e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18590','{22433}=8','UPS is Rebooting','','0','3','',NULL,'0','0','0','','0','','0','','0','','3856ff4ac1d64f8e80c4e0cbb1e04c1a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18591','{22434}=11','UPS is Sleeping Until Power Return','','0','3','',NULL,'0','0','0','','0','','0','','0','','10d8d392f93a492b9be767c7ccdf06ed');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18592','{22435}=6','UPS is Software Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','2ab92cb281754de6ad5245509c20056d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18593','{22436}=9','UPS is Switched Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','8fabe8958cfd4dbbabd70648dff1be06');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18594','{22437}=5','UPS is Timed Sleeping','','0','3','',NULL,'0','0','0','','0','','0','','0','','9846ac1bbf024e63a05a83e2c02de7ba');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18595','{24371}<>{24372} and length({24373})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','811ff6e90d904c8c98feadc89a18e733');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18596','({32483}>0 and {32483}<10m) or ({32483}=0 and {32484}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','5c50881846c649dbb47adcfb3dfc7d68');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18597','{22441}=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','','e12b11324a634eeba56db1aec1834d5f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18598','{22442}=1','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','','0','2','The battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','94e469f639cb4ae4ab3ac23918cfa651');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18599','{22443}=0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','','0','2','The battery cartridge status:\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','60bf7de80cd741caa1c622e797da1d69');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18600','{22444} > {$BATTERY.TEMP.MAX.WARN}','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','','0','4','',NULL,'0','2','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','bdd4bb9fac784bc0b0dc72db3ac9e040');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18601','{22445}=3','{#EXTERNAL_SENSOR1_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','','93d474d1badc45d5a48fe0e610744ff6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18602','{22446}=4','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','48fa5f120bd5495185a9d6f86fc823fd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18603','{22447}=2','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','b0652e627c10477c9e61786d85560d93');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18604','{22448}=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','','55acc85739e04ebea3414059907ef2e4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18605','{22449}=4','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','e8753aa5ca16449c8dc21af6c8c2a727');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18606','{22450}=2','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','d16c60a30b5d46459237eef4df38df9f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18607','{22451} > {$UPS.INPUT_VOLT.MAX.WARN} or {22452} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','1824f0be30284d13bad9f895f7adaa0e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18608','{22453} > {$UPS.INPUT_VOLT.MAX.WARN} or {22454} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','675dc7c59e974f7eadd5d1562dec00ce');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18609','{22455} < {$BATTERY.CAPACITY.MIN.WARN}','Battery has low capacity','','0','4','',NULL,'0','0','0','','0','','0','Current capacity: {ITEM.LASTVALUE1}','0','Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','58a0749ef9c94cf9802a62d274b6dad9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18610','{22456}=2','Battery needs replacement','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','8370727883de45dfa6b6d79f60cc86b3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18611','{22457}=4','Battery has an internal error condition','','0','3','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','2fb002b1a4584aa0bf0389360171893c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18612','{22458}=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','','05aa81dc53ab45ffaf46580c9f827759');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18613','{22459} > {$BATTERY.TEMP.MAX.WARN}','Battery has high temperature','','0','4','',NULL,'0','0','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','1e8c0b3d2d65487199e7fc3e1dde6e50');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18614','{22460} > 0 and ({22460} > {$UPS.INPUT_FREQ.MAX.WARN} or {22461} < {$UPS.INPUT_FREQ.MIN.WARN})','Unacceptable input frequency','','0','4','',NULL,'0','0','0','','0','','0','Current frequency: {ITEM.LASTVALUE1}','0','Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','b89b059a430842aebbd3e6af71514303');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18615','{22462} > 0 and ({22462} > {$UPS.INPUT_VOLT.MAX.WARN} or {22463} < {$UPS.INPUT_VOLT.MIN.WARN})','Unacceptable input voltage','','0','4','',NULL,'0','0','0','','0','','0','Current voltage: {ITEM.LASTVALUE1}','0','Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','2dbc2b96d332488cae4cbf87c985c6b0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18616','{22464} > {$UPS.OUTPUT.MAX.WARN}','Output load is high','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','Current load: {ITEM.LASTVALUE1}','0','Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','edb059eeee004d80a9b42154f16ab18a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18617','{22465}=16','UPS is Emergency Static Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','20ffc78c2f314ff58b5e75907605c82f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18618','{22466}=10','UPS is Hardware Failure Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','ec6e892f4c51414f887d428510d889e7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18619','{22467}=7','UPS is Off','','0','3','',NULL,'0','0','0','','0','','0','','0','','f4cb0ed7e65d4ea29394435cce7600f0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18620','{22468}=3','UPS is on battery','','0','3','',NULL,'0','0','0','','0','','0','','0','','e29c2a37586f474f87c388fa8eaf8b9c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18621','{22469}=4','UPS is on Smart Boost','','0','3','',NULL,'0','0','0','','0','','0','','0','','a07afe38040c4fd08488786ca3f529e5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18622','{22470}=12','UPS is On Smart Trim','','0','3','',NULL,'0','0','0','','0','','0','','0','','58f44a830386434db0f76553f64ebe67');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18623','{22471}=8','UPS is Rebooting','','0','3','',NULL,'0','0','0','','0','','0','','0','','eb99c49157a948769128bc9eeeaff3fc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18624','{22472}=11','UPS is Sleeping Until Power Return','','0','3','',NULL,'0','0','0','','0','','0','','0','','b3d77823096e4bf4a06db8f2307284db');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18625','{22473}=6','UPS is Software Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','000d6b412dd3467aaee40ce230cc059e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18626','{22474}=9','UPS is Switched Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','f1f86a1f23c745658d0c5d10557f67fc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18627','{22475}=5','UPS is Timed Sleeping','','0','3','',NULL,'0','0','0','','0','','0','','0','','434d70c967a9447a9fa927fc2867aa6d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18628','{24374}<>{24375} and length({24376})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','30153a623f0649e380de8f9ec5086b48');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18629','({32485}>0 and {32485}<10m) or ({32485}=0 and {32486}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','f23282a63bec4b1d951f80439947672d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18630','{22479}=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','','e9dc225935594e8aa25fb80fcfa68e4c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18631','{22480}=1','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','','0','2','The battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','02e19fb51d6949cdb99a6aafa71ff654');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18632','{22481}=0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','','0','2','The battery cartridge status:\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','a4f42d0a944f41349e0d206f1181bd3b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18633','{22482} > {$BATTERY.TEMP.MAX.WARN}','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','','0','4','',NULL,'0','2','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','cb9603c5b7674e12a1a1ac98d4b73a65');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18634','{22483}=3','{#EXTERNAL_SENSOR1_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','','603b13b89c7b4ad0bd51d63b93501174');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18635','{22484}=4','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','9e108d20e6c74e8b96d92f4ce0e7c840');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18636','{22485}=2','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','007b2f89fc1f445c8e5afb06a176748d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18637','{22486}=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','','7639c07a79054f9b99687f84db5c95a0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18638','{22487}=4','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','a499a1af78a04c77a21c424f3e790787');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18639','{22488}=2','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','c6fc64bbdb3845d5b80d868c392259ac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18640','{22489} > {$UPS.INPUT_VOLT.MAX.WARN} or {22490} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','0e9c22ab97cb4db8b96fb907e4b21e04');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18641','{22491} > {$UPS.INPUT_VOLT.MAX.WARN} or {22492} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','91ac886a5dda41cdb6a6912672d70625');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18642','{22493} < {$BATTERY.CAPACITY.MIN.WARN}','Battery has low capacity','','0','4','',NULL,'0','0','0','','0','','0','Current capacity: {ITEM.LASTVALUE1}','0','Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','13fe1336e40c4bafb8dbd409497abf8f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18643','{22494}=2','Battery needs replacement','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','4590ac935e044c19978fe01d117e2995');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18644','{22495}=4','Battery has an internal error condition','','0','3','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','e98ba83e63d246408aeeda76da62d5a4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18645','{22496}=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','','51e3281c49454cf997561c857a34a803');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18646','{22497} > {$BATTERY.TEMP.MAX.WARN}','Battery has high temperature','','0','4','',NULL,'0','0','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','1c67af712882479bbf7143bd3e16ed77');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18647','{22498} > 0 and ({22498} > {$UPS.INPUT_FREQ.MAX.WARN} or {22499} < {$UPS.INPUT_FREQ.MIN.WARN})','Unacceptable input frequency','','0','4','',NULL,'0','0','0','','0','','0','Current frequency: {ITEM.LASTVALUE1}','0','Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','78e47553d4bb488991067f53cc8f8a01');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18648','{22500} > 0 and ({22500} > {$UPS.INPUT_VOLT.MAX.WARN} or {22501} < {$UPS.INPUT_VOLT.MIN.WARN})','Unacceptable input voltage','','0','4','',NULL,'0','0','0','','0','','0','Current voltage: {ITEM.LASTVALUE1}','0','Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','28ad85fa6035433f9a7ec45a8393b603');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18649','{22502} > {$UPS.OUTPUT.MAX.WARN}','Output load is high','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','Current load: {ITEM.LASTVALUE1}','0','Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','f667172a5cf44ed6b98f2bb38a3f3806');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18650','{22503}=16','UPS is Emergency Static Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','80e30d37b1724c6ba1d58cedbcf6307f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18651','{22504}=10','UPS is Hardware Failure Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','9bb143ada4194c0084eb70af7bb2c5dc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18652','{22505}=7','UPS is Off','','0','3','',NULL,'0','0','0','','0','','0','','0','','7132f256542540acadb0caf90144a29c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18653','{22506}=3','UPS is on battery','','0','3','',NULL,'0','0','0','','0','','0','','0','','737693e5e4274823a9a21ff92a6ca98a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18654','{22507}=4','UPS is on Smart Boost','','0','3','',NULL,'0','0','0','','0','','0','','0','','c2fd31cfe3b8474f80b52a2340108b6a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18655','{22508}=12','UPS is On Smart Trim','','0','3','',NULL,'0','0','0','','0','','0','','0','','2c3a2e962c1e45f6858e5c1aaecee4a3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18656','{22509}=8','UPS is Rebooting','','0','3','',NULL,'0','0','0','','0','','0','','0','','59d415b15bbf43de85453f5b2ffb73d7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18657','{22510}=11','UPS is Sleeping Until Power Return','','0','3','',NULL,'0','0','0','','0','','0','','0','','6811d34cec57401089af9accfd66ca8f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18658','{22511}=6','UPS is Software Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','3c96ce14f54a4a59a2568f1f62117e7b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18659','{22512}=9','UPS is Switched Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','60e83c77157741cbb3d24920e87d7d59');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18660','{22513}=5','UPS is Timed Sleeping','','0','3','',NULL,'0','0','0','','0','','0','','0','','da442de0e8874736aaab88f009aabe76');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18661','{24377}<>{24378} and length({24379})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','c9b1f69a882148a180ec1e2600068671');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18662','({32487}>0 and {32487}<10m) or ({32487}=0 and {32488}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','15764a5819174d3fadc75436f42650fb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18663','{22517}=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','','71994587c45546bfb0950606d7f69936');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18664','{22518}=1','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','','0','2','The battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','400987be93b34a78865685fedb72a5ee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18665','{22519}=0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','','0','2','The battery cartridge status:\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','03a100c0bb8d457690e2467c502fcadb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18666','{22520} > {$BATTERY.TEMP.MAX.WARN}','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','','0','4','',NULL,'0','2','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','9760f6a951a64e3fa6c67a9dd751f79a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18667','{22521}=3','{#EXTERNAL_SENSOR1_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','','9ba51ee0398444e1bd12cb805c1f7452');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18668','{22522}=4','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','490e952dfac944afb23eb0e72e081db3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18669','{22523}=2','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','8b740b88389b457eaa4d1d6c768ec8ae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18670','{22524}=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','','944fd36a2ad14fd29dd063ad03197cd7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18671','{22525}=4','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','1a4473a5e1bf4fbbb5761fdb141769c0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18672','{22526}=2','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','af8e01a221b84c73a3f67ab84ed9cfa0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18673','{22527} > {$UPS.INPUT_VOLT.MAX.WARN} or {22528} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','709ad3894aca49f0be051d338d4ffaed');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18674','{22529} > {$UPS.INPUT_VOLT.MAX.WARN} or {22530} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','dbdf66b61dce4b6dbf49371e9b1f8146');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18675','{22531} < {$BATTERY.CAPACITY.MIN.WARN}','Battery has low capacity','','0','4','',NULL,'0','0','0','','0','','0','Current capacity: {ITEM.LASTVALUE1}','0','Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','8ab182b26a0443539a1a114767d8acd7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18676','{22532}=2','Battery needs replacement','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','ab0db1327cf04a9c9a9ee757f0869603');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18677','{22533}=4','Battery has an internal error condition','','0','3','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','c8787a09c2ea4aeb977b868ae0a3218b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18678','{22534}=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','','40d1fdcec63d4c3785b5ba77fbd14ee7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18679','{22535} > {$BATTERY.TEMP.MAX.WARN}','Battery has high temperature','','0','4','',NULL,'0','0','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','e2debe06675d4d4584b60b768633887b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18680','{22536} > 0 and ({22536} > {$UPS.INPUT_FREQ.MAX.WARN} or {22537} < {$UPS.INPUT_FREQ.MIN.WARN})','Unacceptable input frequency','','0','4','',NULL,'0','0','0','','0','','0','Current frequency: {ITEM.LASTVALUE1}','0','Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','b29cd7e33c1e4e16b10fe436c1f7e6d6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18681','{22538} > 0 and ({22538} > {$UPS.INPUT_VOLT.MAX.WARN} or {22539} < {$UPS.INPUT_VOLT.MIN.WARN})','Unacceptable input voltage','','0','4','',NULL,'0','0','0','','0','','0','Current voltage: {ITEM.LASTVALUE1}','0','Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','d38f2151f0eb486e8d44b72a2e361a5f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18682','{22540} > {$UPS.OUTPUT.MAX.WARN}','Output load is high','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','Current load: {ITEM.LASTVALUE1}','0','Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','57197c601f8a433d8ccdcb040d047f6f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18683','{22541}=16','UPS is Emergency Static Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','e9289d8f4e124097990e2af98e916368');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18684','{22542}=10','UPS is Hardware Failure Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','13735964f51d4d1bb17e6b0587a43020');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18685','{22543}=7','UPS is Off','','0','3','',NULL,'0','0','0','','0','','0','','0','','d74ae82199884a7fb4a20b48f3c7ff1f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18686','{22544}=3','UPS is on battery','','0','3','',NULL,'0','0','0','','0','','0','','0','','4df5271075904c228a0372d5f667530e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18687','{22545}=4','UPS is on Smart Boost','','0','3','',NULL,'0','0','0','','0','','0','','0','','3f02d9cb7f5142599e59e7781808e5c3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18688','{22546}=12','UPS is On Smart Trim','','0','3','',NULL,'0','0','0','','0','','0','','0','','515ad03892694fd4a2f2350a6bb8af6f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18689','{22547}=8','UPS is Rebooting','','0','3','',NULL,'0','0','0','','0','','0','','0','','2a2d35e4e4674b6aa49068a7970caa03');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18690','{22548}=11','UPS is Sleeping Until Power Return','','0','3','',NULL,'0','0','0','','0','','0','','0','','ef1ddb8869074847b70e8f669883c56b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18691','{22549}=6','UPS is Software Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','0d6e4e664ddf425e8c03155802fe45be');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18692','{22550}=9','UPS is Switched Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','12a3a33152824ffe863a8d79c1372195');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18693','{22551}=5','UPS is Timed Sleeping','','0','3','',NULL,'0','0','0','','0','','0','','0','','273c561c2afb4d78be86218e370c9a1f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18694','{24380}<>{24381} and length({24382})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','b13b087b9828426aac82a281071ceb8b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18695','({32489}>0 and {32489}<10m) or ({32489}=0 and {32490}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','87ebd137f2744ae6879d6fd9d51314ef');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18696','{22555}=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','','53263bf0536d479785b45883b9b7ab21');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18697','{22556}=1','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','','0','2','The battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','c1eefbeeb0d146c3bea5cae929d0c30b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18698','{22557}=0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','','0','2','The battery cartridge status:\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','28b8fb69a85549288cf0e26b9ca0a2cf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18699','{22558} > {$BATTERY.TEMP.MAX.WARN}','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','','0','4','',NULL,'0','2','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','fa007fcfbe7c499d8f97a808991f2800');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18700','{22559}=3','{#EXTERNAL_SENSOR1_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','','175c1def62ac412eb5f9ef015a9b8ac3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18701','{22560}=4','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','e7610cf822674591bea6ed7ba5e4198d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18702','{22561}=2','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','44353bbfcfbe42e59d2e58b544d32b43');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18703','{22562}=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','','5e937c991aa146fe98c1a4f868be6b70');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18704','{22563}=4','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','f8dd227322784a708ae6297e796177f9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18705','{22564}=2','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','b142607d33e9447d88f23fc3ff7dc11d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18706','{22565} > {$UPS.INPUT_VOLT.MAX.WARN} or {22566} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','971301abf4d6457da125fd7ebd903728');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18707','{22567} > {$UPS.INPUT_VOLT.MAX.WARN} or {22568} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','d7167a129de146d19218edb85c82c69b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18708','{22569} < {$BATTERY.CAPACITY.MIN.WARN}','Battery has low capacity','','0','4','',NULL,'0','0','0','','0','','0','Current capacity: {ITEM.LASTVALUE1}','0','Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','b5d618c6090447429191fe4d07e85afa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18709','{22570}=2','Battery needs replacement','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','dc92c19a5b7e43a4b155d6d51912aaf8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18710','{22571}=4','Battery has an internal error condition','','0','3','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','70c32834ea40487c8f13a55b7ed7c88f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18711','{22572}=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','','e7aeaae896664729b66b42a94f626f9b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18712','{22573} > {$BATTERY.TEMP.MAX.WARN}','Battery has high temperature','','0','4','',NULL,'0','0','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','33695c02cf6141f78e21ca899af10c03');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18713','{22574} > 0 and ({22574} > {$UPS.INPUT_FREQ.MAX.WARN} or {22575} < {$UPS.INPUT_FREQ.MIN.WARN})','Unacceptable input frequency','','0','4','',NULL,'0','0','0','','0','','0','Current frequency: {ITEM.LASTVALUE1}','0','Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','167de2d832984944878767571b0b5fe4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18714','{22576} > 0 and ({22576} > {$UPS.INPUT_VOLT.MAX.WARN} or {22577} < {$UPS.INPUT_VOLT.MIN.WARN})','Unacceptable input voltage','','0','4','',NULL,'0','0','0','','0','','0','Current voltage: {ITEM.LASTVALUE1}','0','Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','b8741bc0081a4a9db2824c9f93ecb399');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18715','{22578} > {$UPS.OUTPUT.MAX.WARN}','Output load is high','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','Current load: {ITEM.LASTVALUE1}','0','Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','a4faec3975134cd59e83f1ca7fa3ef7d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18716','{22579}=16','UPS is Emergency Static Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','deedd977f1ed4b9fbb5cc161dde0c116');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18717','{22580}=10','UPS is Hardware Failure Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','a7bbe6ca410743919f7c611a6faec9ba');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18718','{22581}=7','UPS is Off','','0','3','',NULL,'0','0','0','','0','','0','','0','','974042a124b945068c6c16c4a01433dc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18719','{22582}=3','UPS is on battery','','0','3','',NULL,'0','0','0','','0','','0','','0','','90e810043e41467b8460278fc7923397');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18720','{22583}=4','UPS is on Smart Boost','','0','3','',NULL,'0','0','0','','0','','0','','0','','656ae233f3a946799c3ed3d48914c0b0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18721','{22584}=12','UPS is On Smart Trim','','0','3','',NULL,'0','0','0','','0','','0','','0','','3fcbd14931854831ac603a254ffea0c3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18722','{22585}=8','UPS is Rebooting','','0','3','',NULL,'0','0','0','','0','','0','','0','','65085178eef54189afdaf4937de49177');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18723','{22586}=11','UPS is Sleeping Until Power Return','','0','3','',NULL,'0','0','0','','0','','0','','0','','0aa402907ee446c0a13fa086b500fa87');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18724','{22587}=6','UPS is Software Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','be6cdd1fc22a4f0eacdbce4361cd6788');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18725','{22588}=9','UPS is Switched Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','b4375fc980ae4bee87531d18ea9a5397');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18726','{22589}=5','UPS is Timed Sleeping','','0','3','',NULL,'0','0','0','','0','','0','','0','','7ae9e31ac32944928065d1cefb2c4e2f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18727','{24383}<>{24384} and length({24385})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','31bb0ff1ea334cd59d9f8b8f489611ef');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18728','({32491}>0 and {32491}<10m) or ({32491}=0 and {32492}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','860d3beb50c0400283a71c2c4b4ea5e2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18729','{22593}=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','','21fc3a198f3b423fa14676278f53a4be');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18730','{22594}=1','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','','0','2','The battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','c353d8e0b0584c6c8ba81514f5c66995');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18731','{22595}=0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','','0','2','The battery cartridge status:\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','26535b11c27b4fbe92285b56cbbf5a73');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18732','{22596} > {$BATTERY.TEMP.MAX.WARN}','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','','0','4','',NULL,'0','2','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','7f8613d752524d588e60aa1cab2c60bd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18733','{22597}=3','{#EXTERNAL_SENSOR1_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','','40e22c5379f34edf87d1ea52ffae60b8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18734','{22598}=4','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','a482de04a5d34807874fc7a7c506dd40');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18735','{22599}=2','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','dca875c511b04dc1857de74223c4f27b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18736','{22600}=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','','650a1d16e56c45188c6246e960d62857');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18737','{22601}=4','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','7518ae06e3a14866b9e6d90a224055f7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18738','{22602}=2','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','65aa8a5380f141498dd9c718972110b3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18739','{22603} > {$UPS.INPUT_VOLT.MAX.WARN} or {22604} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','8c9226411afb4b32ba3e9d6232ff4710');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18740','{22605} > {$UPS.INPUT_VOLT.MAX.WARN} or {22606} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','58e0697a9a9147a4b1dfda251f2b593e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18774','{22645} < {$BATTERY.CAPACITY.MIN.WARN}','Battery has low capacity','','0','4','',NULL,'0','0','0','','0','','0','Current capacity: {ITEM.LASTVALUE1}','0','Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','92e6a65ffc6d4a6bae62303ee2796580');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18775','{22646}=2','Battery needs replacement','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','0e8030c0028144728361153c2b47016b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18776','{22647}=4','Battery has an internal error condition','','0','3','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','cf186014cfd94ccbad3cc4cbd22b6aa1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18777','{22648}=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','','e1957ee82be847e7bfb171560fc59293');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18778','{22649} > {$BATTERY.TEMP.MAX.WARN}','Battery has high temperature','','0','4','',NULL,'0','0','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','1e883961b65e445997c57870734a58ca');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18779','{22650} > 0 and ({22650} > {$UPS.INPUT_FREQ.MAX.WARN} or {22651} < {$UPS.INPUT_FREQ.MIN.WARN})','Unacceptable input frequency','','0','4','',NULL,'0','0','0','','0','','0','Current frequency: {ITEM.LASTVALUE1}','0','Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','b9a134c942da46ffba1acdf85a7832e4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18780','{22652} > 0 and ({22652} > {$UPS.INPUT_VOLT.MAX.WARN} or {22653} < {$UPS.INPUT_VOLT.MIN.WARN})','Unacceptable input voltage','','0','4','',NULL,'0','0','0','','0','','0','Current voltage: {ITEM.LASTVALUE1}','0','Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','694ab76079b1447b99ef510d80faab6a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18781','{22654} > {$UPS.OUTPUT.MAX.WARN}','Output load is high','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','Current load: {ITEM.LASTVALUE1}','0','Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','68f92026e7b345c88bf4aa679f9b642c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18782','{22655}=16','UPS is Emergency Static Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','9952679fada845228bbbf05bcdada305');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18783','{22656}=10','UPS is Hardware Failure Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','ee306606159f4930bcf580b5084c846a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18784','{22657}=7','UPS is Off','','0','3','',NULL,'0','0','0','','0','','0','','0','','c4623dc4c6ae4c5b9ff4bdf4f43ed8b2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18785','{22658}=3','UPS is on battery','','0','3','',NULL,'0','0','0','','0','','0','','0','','26c0b9b62d864c1ead7b16e0076a7226');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18786','{22659}=4','UPS is on Smart Boost','','0','3','',NULL,'0','0','0','','0','','0','','0','','5c8408069c03421cb60b388451869b6f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18787','{22660}=12','UPS is On Smart Trim','','0','3','',NULL,'0','0','0','','0','','0','','0','','156c5260ed4444c19313ba491ce9352c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18788','{22661}=8','UPS is Rebooting','','0','3','',NULL,'0','0','0','','0','','0','','0','','c233bc86198140659ec3dd609c94ec94');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18789','{22662}=11','UPS is Sleeping Until Power Return','','0','3','',NULL,'0','0','0','','0','','0','','0','','944e49d1b6d44adc8d720bd689d8c8cf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18790','{22663}=6','UPS is Software Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','9b376dbd2d614878b681b42bb2c7fe4d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18791','{22664}=9','UPS is Switched Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','499ac46836c1454dad3c1ffc5714c073');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18792','{22665}=5','UPS is Timed Sleeping','','0','3','',NULL,'0','0','0','','0','','0','','0','','8a0a5af39647494681e52595d179c336');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18793','{24389}<>{24390} and length({24391})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','852083234a55441aa2fa57b202227bef');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18794','({32495}>0 and {32495}<10m) or ({32495}=0 and {32496}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','6f0fbe74ad4945e987e7ffdfa741d92f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18795','{22669}=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','','9a0cb26712c14045a18a0e86de4cdd54');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18796','{22670}=1','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','','0','2','The battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','2d9c4ef006994ebea581b895424203f3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18797','{22671}=0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','','0','2','The battery cartridge status:\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','5358b97f94aa47f59351be88673407a0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18798','{22672} > {$BATTERY.TEMP.MAX.WARN}','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','','0','4','',NULL,'0','2','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','b88678e600694bc19ebaf57472d8658f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18799','{22673}=3','{#EXTERNAL_SENSOR1_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','','33f4ac80a8d44752b97bc4f885a8c95f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18800','{22674}=4','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','1a2080a561394f8c8a0dc639cbf2c812');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18801','{22675}=2','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','a53d5dd33e8548d5bcb73ffb936af910');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18802','{22676}=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','','9247973676c44377a4fa550990384eeb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18803','{22677}=4','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','6b054505c2704c8d8e38b096885bbbe5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18804','{22678}=2','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','f56f165d71084b75a716d04337f5fcb1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18805','{22679} > {$UPS.INPUT_VOLT.MAX.WARN} or {22680} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','755f972a32904dbf81a6da77f4ba57f0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18806','{22681} > {$UPS.INPUT_VOLT.MAX.WARN} or {22682} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','5846a7a3d56f43de8394823ed64a11ae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18807','{22683} < {$BATTERY.CAPACITY.MIN.WARN}','Battery has low capacity','','0','4','',NULL,'0','0','0','','0','','0','Current capacity: {ITEM.LASTVALUE1}','0','Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','aa0bbfb321d440438fb421825f23e140');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18808','{24392}<>{24393} and length({24394})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','facbfd1f8bb04401b563c162d7fe13a5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18809','{22686}=0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','','0','2','The battery cartridge status:\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','834b1a48cbab46a3bfb0209fb4302674');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18810','{22687} > {$UPS.INPUT_VOLT.MAX.WARN} or {22688} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','feeb23a58ccb4ec1bed9d61f5d2ffc9e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18811','{22689} < {$BATTERY.CAPACITY.MIN.WARN}','Battery has low capacity','','0','4','',NULL,'0','0','0','','0','','0','Current capacity: {ITEM.LASTVALUE1}','0','Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','fdece80f2fc44ac1974fafe190ce186f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18812','{22690}=2','Battery needs replacement','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','a1bd434a249b48b2ac0ef69ede417a72');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18813','{22691}=4','Battery has an internal error condition','','0','3','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','955d79a0cf5447dd9a11d4608758e983');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18814','{22692}=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','','3ca8156ecc1c4ee4b5623c4a085b993f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18815','{22693} > {$BATTERY.TEMP.MAX.WARN}','Battery has high temperature','','0','4','',NULL,'0','0','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','5b43659a10644a51861282bc72116f9f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18816','{22694} > 0 and ({22694} > {$UPS.INPUT_FREQ.MAX.WARN} or {22695} < {$UPS.INPUT_FREQ.MIN.WARN})','Unacceptable input frequency','','0','4','',NULL,'0','0','0','','0','','0','Current frequency: {ITEM.LASTVALUE1}','0','Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','94a5c26b89e2416f96b61bbfc6e60a97');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18817','{22696} > 0 and ({22696} > {$UPS.INPUT_VOLT.MAX.WARN} or {22697} < {$UPS.INPUT_VOLT.MIN.WARN})','Unacceptable input voltage','','0','4','',NULL,'0','0','0','','0','','0','Current voltage: {ITEM.LASTVALUE1}','0','Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','2b640b94d48446609802ce6e57c7bd46');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18818','{22698} > {$UPS.OUTPUT.MAX.WARN}','Output load is high','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','Current load: {ITEM.LASTVALUE1}','0','Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','34562b5c734d492c89c386902dfd6e90');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18819','{22699}=16','UPS is Emergency Static Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','6ade2b9fb9ad432596d16b3df6237ec4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18820','{22700}=10','UPS is Hardware Failure Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','da9a0fa7669e454b8ba44c0458a94ea8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18821','{22701}=7','UPS is Off','','0','3','',NULL,'0','0','0','','0','','0','','0','','01a2bcb5f20b4fe889a48e4bed2a2a63');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18822','{22702}=3','UPS is on battery','','0','3','',NULL,'0','0','0','','0','','0','','0','','d0b154dd92424af8bb841d91d4e7ddd5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18823','{22703}=4','UPS is on Smart Boost','','0','3','',NULL,'0','0','0','','0','','0','','0','','afc071d0ccfb4226a3c5ee3058270937');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18824','{22704}=12','UPS is On Smart Trim','','0','3','',NULL,'0','0','0','','0','','0','','0','','12259f4a961a40b39de12d0202d41c56');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18825','{22705}=8','UPS is Rebooting','','0','3','',NULL,'0','0','0','','0','','0','','0','','ef9d1e4b1ec244f6bcf36d19a9e7c9c7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18826','{22706}=11','UPS is Sleeping Until Power Return','','0','3','',NULL,'0','0','0','','0','','0','','0','','c673928e7b764b5db0fa3168edd2cc67');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18827','{22707}=6','UPS is Software Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','c9b24aa16e124d8c9cd6cfb188ded816');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18828','{22708}=9','UPS is Switched Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','02904426801d4d42b3f634267f8697e7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18829','{22709}=5','UPS is Timed Sleeping','','0','3','',NULL,'0','0','0','','0','','0','','0','','fa08f8a60c2c4d88a3f9ebf317fcd06e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18830','{24395}<>{24396} and length({24397})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','61d0836efd33437894e1edd595373f1e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18831','({32499}>0 and {32499}<10m) or ({32499}=0 and {32500}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','9d0c32f93c0c44f69b54c91fabfa1529');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18832','{22713}=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','','aeaaa7e2bd2d46a481f9d8b33ec18cb5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18833','{22714}=1','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','','0','2','The battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','2ea1a8d2bd3746dabafed72e1f6216fd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18834','{22715}=0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','','0','2','The battery cartridge status:\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','3870634ad8c1414dabeebc10c510fba3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18835','{22716} > {$BATTERY.TEMP.MAX.WARN}','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','','0','4','',NULL,'0','2','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','730bdb68d90f4bc6aaf6cb22e04e1845');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18836','{22717}=3','{#EXTERNAL_SENSOR1_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','','97b4078788d244d0b501e9465c659ff7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18837','{22718}=4','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','86cd9908372045618672d6ff82bca705');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18838','{22719}=2','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','4ba13efc27da411785410109340b6a26');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18839','{22720}=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','','3155c8cf446c40d896755a25a46ec90b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18840','{22721}=4','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','9ef9a4dc80c84087b44b5f0e8aa94202');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18841','{22722}=2','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','74a3585b0cc74a4887eb3683fb1e6f64');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18842','{22723} > {$UPS.INPUT_VOLT.MAX.WARN} or {22724} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','90e3258375e047b594deb0ecf7300c22');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18843','{22725} > {$UPS.INPUT_VOLT.MAX.WARN} or {22726} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','b8c42d5d66d9403eba697920439ae956');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18844','{22727} < {$BATTERY.CAPACITY.MIN.WARN}','Battery has low capacity','','0','4','',NULL,'0','0','0','','0','','0','Current capacity: {ITEM.LASTVALUE1}','0','Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','dbfdc4e6eaca4d65adcde13b0682c1c2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18845','{22728}=2','Battery needs replacement','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','0af287bae1ee44ba997a02ae585bdd4b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18846','{22729}=4','Battery has an internal error condition','','0','3','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','aedb557acbe44390809a27b95919e10f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18847','{22730}=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','','1afe1859563f481faa623781028a38ca');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18848','{22731} > {$BATTERY.TEMP.MAX.WARN}','Battery has high temperature','','0','4','',NULL,'0','0','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','0b4490eaaf964fdabf228d34d2992d30');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18849','{22732} > 0 and ({22732} > {$UPS.INPUT_FREQ.MAX.WARN} or {22733} < {$UPS.INPUT_FREQ.MIN.WARN})','Unacceptable input frequency','','0','4','',NULL,'0','0','0','','0','','0','Current frequency: {ITEM.LASTVALUE1}','0','Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','af166242e3674f2da489a232c7bba6f1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18850','{22734} > 0 and ({22734} > {$UPS.INPUT_VOLT.MAX.WARN} or {22735} < {$UPS.INPUT_VOLT.MIN.WARN})','Unacceptable input voltage','','0','4','',NULL,'0','0','0','','0','','0','Current voltage: {ITEM.LASTVALUE1}','0','Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','3b51bbae66914b19a93e7a2da289b056');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18851','{22736} > {$UPS.OUTPUT.MAX.WARN}','Output load is high','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','Current load: {ITEM.LASTVALUE1}','0','Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','a25499c49d0043cda248136eb6307ef9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18852','{22737}=16','UPS is Emergency Static Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','f7b0e2f05c9b4b14916f99ecb89fcd49');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18853','{22738}=10','UPS is Hardware Failure Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','77081726414047a5a1c698fcfbf19e73');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18854','{22739}=7','UPS is Off','','0','3','',NULL,'0','0','0','','0','','0','','0','','87beb54ac57848e3896fd715a5918a88');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18855','{22740}=3','UPS is on battery','','0','3','',NULL,'0','0','0','','0','','0','','0','','5f46c436fab741ec86cb32339e8bd7b4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18856','{22741}=4','UPS is on Smart Boost','','0','3','',NULL,'0','0','0','','0','','0','','0','','a7457e3d6c6f4e99a3ccc08a1436d34a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18857','{22742}=12','UPS is On Smart Trim','','0','3','',NULL,'0','0','0','','0','','0','','0','','976395b6acea4f5cb4f7f3d4f0bc67af');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18858','{22743}=8','UPS is Rebooting','','0','3','',NULL,'0','0','0','','0','','0','','0','','72c9677a2157412ebd14004a5e024a3a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18859','{22744}=11','UPS is Sleeping Until Power Return','','0','3','',NULL,'0','0','0','','0','','0','','0','','75d189cd8b5944c4b7987931c834e949');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18860','{22745}=6','UPS is Software Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','24e1cfde22da48b0bf28ca2cdf8cd917');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18861','{22746}=9','UPS is Switched Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','4fff7b4a29b84cdea245b2704e357f5d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18862','{22747}=5','UPS is Timed Sleeping','','0','3','',NULL,'0','0','0','','0','','0','','0','','647178a4cb674815a65517c073b4adee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18863','{24398}<>{24399} and length({24400})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','e3cf119c19b54dddb3d26d9b789ea4f5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18864','({32501}>0 and {32501}<10m) or ({32501}=0 and {32502}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','fb2b4e564040422da234cdb309163b7b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18865','{22751}=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','','56f25581382a43efbddd4aba44aa86b3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18866','{22752}=1','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','','0','2','The battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','002caa5fac72437187ab9711eb2fc7ad');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18867','{22753}=0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','','0','2','The battery cartridge status:\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','9ca2e1e1a81e4e2388f735c03f9bc1de');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18868','{22754} > {$BATTERY.TEMP.MAX.WARN}','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','','0','4','',NULL,'0','2','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','b9a868a2f4a0410e9a03744eef9a5515');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18869','{22755}=3','{#EXTERNAL_SENSOR1_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','','1e6fa00989994e6f885c9ce2fde6ab24');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18870','{22756}=4','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','b8b78dcb3f6d47e583565b7588cf9f4c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18871','{22757}=2','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','ba421cf1871a4bcabb06f92be0a983dc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18872','{22758}=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','','97ef6f2fc4374174912b16db90b615a8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18873','{22759}=4','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','39db14da83714689b6bac140a9347c64');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18874','{22760}=2','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','d318122e192a401c95f24ad17d3bda93');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18875','{22761} > {$UPS.INPUT_VOLT.MAX.WARN} or {22762} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','341c10188b984ce7aac7bb995847b69e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18876','{22763} > {$UPS.INPUT_VOLT.MAX.WARN} or {22764} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','85551dd4ca0b4ef6994348891ad77b57');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18877','{22765} < {$BATTERY.CAPACITY.MIN.WARN}','Battery has low capacity','','0','4','',NULL,'0','0','0','','0','','0','Current capacity: {ITEM.LASTVALUE1}','0','Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','5626e87891ec4c28a17a6b5965b47e46');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18878','{22766}=2','Battery needs replacement','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','a74eccd4442c401a98ac3c80dd3baa13');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18879','{22767}=4','Battery has an internal error condition','','0','3','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','107454c372cb413bad4d4a807c254ae0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18880','{22768}=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','','4a410279dba04d37924eade4bb927228');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18881','{22769} > {$BATTERY.TEMP.MAX.WARN}','Battery has high temperature','','0','4','',NULL,'0','0','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','225ccc34992f4c718277b436bfecdc72');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18882','{22770} > 0 and ({22770} > {$UPS.INPUT_FREQ.MAX.WARN} or {22771} < {$UPS.INPUT_FREQ.MIN.WARN})','Unacceptable input frequency','','0','4','',NULL,'0','0','0','','0','','0','Current frequency: {ITEM.LASTVALUE1}','0','Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','03b674d215604dc8acc3449610b05878');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18883','{22772} > 0 and ({22772} > {$UPS.INPUT_VOLT.MAX.WARN} or {22773} < {$UPS.INPUT_VOLT.MIN.WARN})','Unacceptable input voltage','','0','4','',NULL,'0','0','0','','0','','0','Current voltage: {ITEM.LASTVALUE1}','0','Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','bf495f3ffefd4e65af488d91b360539c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18884','{22774} > {$UPS.OUTPUT.MAX.WARN}','Output load is high','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','Current load: {ITEM.LASTVALUE1}','0','Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','f2790aa869724c5bbeff6031561f2ca4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18885','{22775}=16','UPS is Emergency Static Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','48a2bee152664ede98bed55c05cc437d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18886','{22776}=10','UPS is Hardware Failure Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','ccd80d5877e0401b8f56f22ca2da2f94');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18887','{22777}=7','UPS is Off','','0','3','',NULL,'0','0','0','','0','','0','','0','','e54fd69ac4354716a107d4d094b387f0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18888','{22778}=3','UPS is on battery','','0','3','',NULL,'0','0','0','','0','','0','','0','','92df44ef170d471394f4cf8ff6882c39');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18889','{22779}=4','UPS is on Smart Boost','','0','3','',NULL,'0','0','0','','0','','0','','0','','b6f6c160466e43d8b7f210b2efdd8ca3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18890','{22780}=12','UPS is On Smart Trim','','0','3','',NULL,'0','0','0','','0','','0','','0','','7d6323e1a03a48efb9f349ecd7e10153');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18891','{22781}=8','UPS is Rebooting','','0','3','',NULL,'0','0','0','','0','','0','','0','','18a31f11313b47c8ab9e9cd4791c1532');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18892','{22782}=11','UPS is Sleeping Until Power Return','','0','3','',NULL,'0','0','0','','0','','0','','0','','142e25b05d1547f0a683f6caee773ef5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18893','{22783}=6','UPS is Software Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','b6e22e8295c84fbebb8061c96ddd75f9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18894','{22784}=9','UPS is Switched Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','1c97c8ca6d6640fe829bf896f989bd91');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18895','{22785}=5','UPS is Timed Sleeping','','0','3','',NULL,'0','0','0','','0','','0','','0','','0683dbba9f4b4480ba15e040b8b83211');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18896','{24401}<>{24402} and length({24403})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','5224767a1bee42738c49361ddabfed4b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18897','({32503}>0 and {32503}<10m) or ({32503}=0 and {32504}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','990c0545543c42a78022589838a8a1ff');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18898','{22789}=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','','c0ad0941746546aeb6de2fee087c8252');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18899','{22790}=1','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','','0','2','The battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','3a48257337a84a2296db92410a8aed8c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18900','{22791}=0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','','0','2','The battery cartridge status:\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','4498d376328e405bad7da5f1832cde8a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18901','{22792} > {$BATTERY.TEMP.MAX.WARN}','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','','0','4','',NULL,'0','2','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','f710e2b952054f35ab6e3e8e90ab7f83');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18902','{22793}=3','{#EXTERNAL_SENSOR1_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','','0de21ba7495d41f4834170122620c37d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18903','{22794}=4','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','69fbc11262f74fdfb49da43bb59c1810');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18904','{22795}=2','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','0ce46cad353c4299ad5540a831b5c467');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18905','{22796}=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','','f27f80f391a04927bb138ba66d48d364');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18906','{22797}=4','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','a84e1b5140b643ad8bee020d74821255');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18907','{22798}=2','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','b67ed4a3ce5a49e4ac4079e258d7fe7c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18908','{22799} > {$UPS.INPUT_VOLT.MAX.WARN} or {22800} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','212cf86650fc4c189115da565111f5d3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18909','{22801} > {$UPS.INPUT_VOLT.MAX.WARN} or {22802} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','47069f8d431f45d490674d7ba01d2bb2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18910','{23106}<10m','WildFly: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','WildFly: has been restarted (uptime < 10m)','926f1767aae74529a972c7b8b09f4442');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18911','{23284}<>{23285} and length({23286})>0','WildFly: Version has changed','','0','1','WildFly version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','WildFly: Version has changed (new version: {ITEM.VALUE})','76d500211fd9479fafbd0fb7d41ffd68');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18912','{23287}<>{23288} and length({23289})>0','WildFly domain: Server {#SERVER}: Server group has changed','','0','1','Server group has changed. Ack to close.',NULL,'0','2','0','','0','','1','','0','WildFly domain: Server {#SERVER}: Server group has changed (new group: {ITEM.VALUE})','da5368f2eec040bbb05f13faa6375052');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18913','{23290}<>{23291} and length({23292})>0','WildFly domain: Server {#SERVER}: Server status has changed','','0','2','Server status has changed. Ack to close.',NULL,'0','2','0','','0','','1','','0','WildFly domain: Server {#SERVER}: Server status has changed (new status: {ITEM.VALUE})','79409a9fae6442c9ad655655a752365d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18914','{23116}=1','WildFly: Failed to fetch info data','','0','2','Zabbix has not received data for items for the last 15 minutes',NULL,'0','0','0','','0','','0','','0','WildFly: Failed to fetch info data (or no data for 15m)','8a4fab49eb1e4ebbb1459d9b0f848771');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18915','{23117}<10m','WildFly: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','WildFly: has been restarted (uptime < 10m)','71db189440ec4355aa06262e3200d47e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18916','{23293}<>{23294} and length({23295})>0','WildFly: Version has changed','','0','1','WildFly version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','WildFly: Version has changed (new version: {ITEM.VALUE})','2923ab6f81d64579b6ba778bc0467042');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18917','{23121}=0','WildFly: Server needs to restart for configuration change.','','0','2','',NULL,'0','0','0','','0','','0','','0','','c5702304641748e4bb04be89f3a38326');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18918','{23122}=0','WildFly: Server controller is not in RUNNING state','','0','2','',NULL,'0','0','0','','0','','0','','0','','81de7058e3b64f73a14e03728dcf1c9b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18919','{23296}<>{23297} and length({23298})>0','WildFly deployment [{#DEPLOYMENT}]: Deployment status has changed','','0','2','Deployment status has changed. Ack to close.',NULL,'0','2','0','','0','','1','','0','WildFly deployment [{#DEPLOYMENT}]: Deployment status has changed (new status: {ITEM.VALUE})','6b432b25debe4277a971bc8a906e07b1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18920','{23126}/{23127}*100>{$WILDFLY.CONN.USAGE.WARN.MAX}','WildFly {#JMX_DATA_SOURCE}: Connection usage is too high','','0','4','',NULL,'0','2','0','','0','','0','','0','WildFly {#JMX_DATA_SOURCE}: Connection usage is too high (over {$WILDFLY.CONN.USAGE.WARN.MAX} in 5m)','6a40b3e94cc0441abc95fe3bc94397bf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18921','{23128}=0','WildFly {#JMX_DATA_SOURCE}: There are no active connections for 5m','','0','2','',NULL,'0','2','0','','0','','0','','0','','ea551068ebd04d349eba3f45a72f2610');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18922','{23129}=0','WildFly {#JMX_DATA_SOURCE}: JDBC monitoring statistic is not enabled','','0','1','',NULL,'0','2','0','','0','','0','','0','','2996a48892a640d69154de332c673755');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18923','{23130}=0','WildFly {#JMX_DATA_SOURCE}: Pools monitoring statistic is not enabled','','0','1','Zabbix has not received data for items for the last 15 minutes',NULL,'0','2','0','','0','','0','','0','','4ea71ba3572647b29a60077bc511052a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18924','{23131}>0','WildFly {#JMX_DATA_SOURCE}: There are timeout connections','','0','2','',NULL,'0','2','0','','0','','0','','0','','d70d1703fdc64926abe602324814ea4c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18925','{23132}>{$WILDFLY.CONN.WAIT.MAX.WARN}','WildFly {#JMX_DATA_SOURCE}: Too many waiting connections','','0','2','',NULL,'0','2','0','','0','','0','','0','WildFly {#JMX_DATA_SOURCE}: Too many waiting connections (over {$WILDFLY.CONN.WAIT.MAX.WARN} for 5m)','2e38504216d84f3b9fe43b0bea86e388');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18926','{23133}>0','WildFly listener {#HTTP_LISTENER}: There are 500 responses by this listener.','','0','2','',NULL,'0','2','0','','0','','0','','0','','504b88b04a204335a10f56cc3d852ba5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18927','{23134} < {$BATTERY.CAPACITY.MIN.WARN}','Battery has low capacity','','0','4','',NULL,'0','0','0','','0','','0','Current capacity: {ITEM.LASTVALUE1}','0','Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','0103da3d5f414d8ba1e9914d5c8d5f76');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18928','{23135}=2','Battery needs replacement','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','09573345f6ce4d648f56117c8755e368');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18929','{23136}=4','Battery has an internal error condition','','0','3','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','743aef1e53ee464da48d2953ddc3b85c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18930','{23137}=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','','d648d686ff994625bd17f959c311fddd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18931','{23138} > {$BATTERY.TEMP.MAX.WARN}','Battery has high temperature','','0','4','',NULL,'0','0','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','e47ba98e74c94bd3886ac65cd1075359');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18932','{30979} > 0 and ({30979} > {$UPS.INPUT_FREQ.MAX.WARN} or {30980} < {$UPS.INPUT_FREQ.MIN.WARN})','Unacceptable input frequency','','0','4','',NULL,'0','0','0','','0','','0','Current frequency: {ITEM.LASTVALUE1}','0','Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','3fa853edcebe42eba858e45f1a4465ee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18933','{30981} > 0 and ({30981} > {$UPS.INPUT_VOLT.MAX.WARN} or {30982} < {$UPS.INPUT_VOLT.MIN.WARN})','Unacceptable input voltage','','0','4','',NULL,'0','0','0','','0','','0','Current voltage: {ITEM.LASTVALUE1}','0','Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','74b42439050b48b6bf41abb5bb39808b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18934','{23143} > {$UPS.OUTPUT.MAX.WARN}','Output load is high','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','Current load: {ITEM.LASTVALUE1}','0','Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','e099efa7266f44008819979830147665');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18935','{23144}=16','UPS is Emergency Static Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','edcc1dc962fa4a228b2f5cd3617efbc6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18936','{23145}=10','UPS is Hardware Failure Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','869fed8cdd5a4f369e3b1ff2474280de');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18937','{23146}=7','UPS is Off','','0','3','',NULL,'0','0','0','','0','','0','','0','','378a246b34454d73b2248757be60a7ea');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18938','{23147}=3','UPS is on battery','','0','3','',NULL,'0','0','0','','0','','0','','0','','286dc25a245f45c3bdcc64925b41aef6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18939','{23148}=4','UPS is on Smart Boost','','0','3','',NULL,'0','0','0','','0','','0','','0','','4d02a4c4f25a4efda7bd30def8364972');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18940','{23149}=12','UPS is On Smart Trim','','0','3','',NULL,'0','0','0','','0','','0','','0','','ae91f99b089748cdaeb0185e31ffe82e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18941','{23150}=8','UPS is Rebooting','','0','3','',NULL,'0','0','0','','0','','0','','0','','0bb0ef56d82e4c2a9414468c61fb3a96');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18942','{23151}=11','UPS is Sleeping Until Power Return','','0','3','',NULL,'0','0','0','','0','','0','','0','','6a5a7e4b17384131a337619ec4a9c1e6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18943','{23152}=6','UPS is Software Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','232c98b7ca654c91a20d52ce6f21d7a1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18944','{23153}=9','UPS is Switched Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','65b8d109db8d4448a7ead131581fcbbe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18945','{23154}=5','UPS is Timed Sleeping','','0','3','',NULL,'0','0','0','','0','','0','','0','','917c1f3c82e044a89f2f56a2c8a602a6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18946','{24386}<>{24387} and length({24388})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','154aad534c35473cb4513cb4e3d4a082');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18947','({32493}>0 and {32493}<10m) or ({32493}=0 and {32494}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','7793a5e111c6466584ef6610aae707c1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18948','{23159}=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','','6e0f9b15effd4c9e9c416a99fd8f4517');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18949','{23160}=1','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','','0','2','The battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','b29f9bd2e80242be940682139f303121');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18950','{23161}=0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','','0','2','The battery cartridge status:\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','0a96a9726cdd4431ad6e6d52e7461d69');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18951','{23162} > {$BATTERY.TEMP.MAX.WARN}','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','','0','4','',NULL,'0','2','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','dbb191572a17451296ae4ee8d3aeec73');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18952','{23163}=3','{#EXTERNAL_SENSOR1_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','','fc448a3d2ae4462a903863364bec836d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18953','{23164}=4','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','3340123b060949a4b806a5a757862026');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18954','{23165}=2','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','5ac7c47c37804492947716e5857275c4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18955','{23166}=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','','8774e39abe784f6b9fe2f33c30f3fa05');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18956','{23167}=4','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','d41c9de571ea4b48a1213f98a058c550');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18957','{23168}=2','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','c9e751b9449f4616beeb36b51cf0a3b9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18958','{23169} > {$UPS.INPUT_VOLT.MAX.WARN} or {23170} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','b8d5cbee0bc14df58a217b33222aa75d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18959','{23171} > {$UPS.INPUT_VOLT.MAX.WARN} or {23172} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','176a3014124f4f23bedbad120cb2b69a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18960','({23185} - now()) / 86400 < {$CERT.EXPIRY.WARN}','Cert: SSL certificate expires soon','','0','2','The SSL certificate should be updated or it will become untrusted.',NULL,'0','0','0','','0','','0','','0','Cert: SSL certificate expires soon (less than {$CERT.EXPIRY.WARN} days)','8a0e3e73527a45618afe94707234f4c6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18961','{23186} <> {23187}','Cert: Fingerprint has changed','','0','1','The SSL certificate fingerprint has changed. If you did not update the certificate, it may mean your certificate has been hacked. Ack to close.\r\nThere could be multiple valid certificates on some installations. In this case, the trigger will have a false positive. You can ignore it or disable the trigger.',NULL,'0','0','0','','0','','1','','0','Cert: Fingerprint has changed (new version: {ITEM.VALUE})','7a4c69a5235e444cb7294e6b7189b2b6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18962','{23188}=1','Cert: SSL certificate is invalid','','0','4','SSL certificate has expired or it is issued for another domain.',NULL,'0','0','0','','0','','0','','0','','854c791b765a4ae2982ce6436d6e78ca');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18963','{23189} < {$CLOUDFLARE.CACHED_BANDWIDTH.MIN.WARN}','Cloudflare: Cached bandwidth is too low','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cloudflare: Cached bandwidth is too low (less than {$CLOUDFLARE.CACHED_BANDWIDTH.MIN.WARN}% for 3 last measurements)','acf573785c394924aae8ef74b2683fd1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18964','{23190} > {$CLOUDFLARE.ERRORS.MAX.WARN}','Cloudflare: Ratio of non-2xx responses is too high','','0','3','A large number of errors can indicate a malfunction of the site.',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cloudflare: Ratio of non-2xx responses is too high (more than {$CLOUDFLARE.ERRORS.MAX.WARN}% for 3 last measurements)','e76f4a61dd094419b6e0af706758e545');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18965','{23211}=0','HAProxy {#PXNAME} {#SVNAME}: Health check error','','0','2','Please check the server for faults.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','1378f45ad65a498aae7b571a69547352');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18966','{23217}=0','HAProxy {#PXNAME} {#SVNAME}: Health check error','','0','2','Please check the server for faults.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6c4f8cf76ab046aaa4bd51e41cc10de7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18967','{23237} > {$NGINX.DROP_RATE.MAX.WARN}','Nginx: High connections drop rate','','0','2','The dropping rate connections is greater than {$NGINX.DROP_RATE.MAX.WARN} for the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','Nginx: High connections drop rate (more than {$NGINX.DROP_RATE.MAX.WARN} for 5m)','91c9dab8147a4d0086019119e4e55b5e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18968','length({23238})>0','Nginx: Server response error','','0','4','',NULL,'0','0','0','','0','','0','','0','Nginx: Server response error (text: {ITEM.VALUE})','e444c708371748bd831bba6c8d9a92e0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18969','{23239}=1','Nginx: Failed to fetch info data','','0','2','Zabbix has not received data for metrics for the last 30 minutes',NULL,'0','0','0','','0','','1','','0','Nginx: Failed to fetch info data (or no data for 30m)','396fb4be618e45578566971d5399d611');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18970','{23240}<10m','Nginx: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','Nginx: has been restarted (uptime < 10m)','95622a29bd58444b9f0bd985db99f922');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18971','{23241}<>{23242} and length({23243})>0','Nginx: Version has changed','','0','1','Nginx version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Nginx: Version has changed (new version: {ITEM.VALUE})','a91ff018fe4f4a1495b08adeb2b0005f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18972','{23244} > ({23245}*({$NGINX.HTTP.UPSTREAM.4XX.MAX.WARN}/100))','Nginx: Too many HTTP requests with code 4xx','','0','2','',NULL,'0','2','0','','0','','0','','0','Nginx: Too many HTTP requests with code 4xx (over {$NGINX.HTTP.UPSTREAM.4XX.MAX.WARN}% for 5m)','e7b4782a796b4710b50a96f3d24c8208');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18973','{23246} > ({23247}*({$NGINX.HTTP.UPSTREAM.5XX.MAX.WARN}/100))','Nginx: Too many HTTP requests with code 5xx','','0','4','',NULL,'0','2','0','','0','','0','','0','Nginx: Too many HTTP requests with code 5xx (over {$NGINX.HTTP.UPSTREAM.5XX.MAX.WARN}% for 5m)','f542573d149547d3844f635bf2a87120');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18974','{23248}=0 and {23249}=0','Nginx: HTTP upstream server is not in UP or DOWN state.','','0','2','',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','fc6586fe2eef457bac1d71ce0313f95d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18975','{23250}=0 and {23251}=0','Nginx: Stream upstream server is not in UP or DOWN state.','','0','2','',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','20ef9b9e953246ef856dd46033595e52');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18976','{23273}<>1','{#UNIT.NAME}: Service is not running','','0','2','',NULL,'0','2','0','','0','','1','','0','','5237bd423307449b8a58f692082d2a0a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18977','{23274}<10m','{#UNIT.NAME}: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','2','0','','0','','1','','0','{#UNIT.NAME}: has been restarted (uptime < 10m)','e2292c5ead924500a06d38b6356930c7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18978','{23303}>75','Zabbix server: Utilization of service manager processes is high','','0','3','',NULL,'0','0','1','{23303}<65','0','','0','','0','Zabbix server: Utilization of service manager processes over 75%','c4cdbce205e843d6b882503961a15376');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18979','{23304}>75','Zabbix server: Utilization of trigger housekeeper processes is high','','0','3','',NULL,'0','0','1','{23304}<65','0','','0','','0','Zabbix server: Utilization of trigger housekeeper processes over 75%','5ffa02f393d34c49bcb9eed2b2b89704');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18980','{23305}<>{23306} and length({23307})>0','Zabbix server: Version has changed','','0','1','Zabbix server version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Zabbix server: Version has changed (new version: {ITEM.VALUE})','456403a2063c4e2298f9e3f60a7a3180');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18984','{23317}>75','Remote Zabbix server: Utilization of service manager processes is high','','0','3','',NULL,'0','0','1','{23317}<65','0','','0','','0','Remote Zabbix server: Utilization of service manager processes over 75%','001c9e2027ca4e7c8f5dc5b78681c573');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18985','{23318}>75','Remote Zabbix server: Utilization of trigger housekeeper processes is high','','0','3','',NULL,'0','0','1','{23318}<65','0','','0','','0','Remote Zabbix server: Utilization of trigger housekeeper processes over 75%','9c0daf6e85884122aa8c5b8432709c92');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18986','{23395}/{23396}*100>{$GRIDGAIN.CHECKPOINT.PUSED.MAX.HIGH}','Data region {#JMXNAME}: Checkpoint buffer utilization is too high','','0','4','Checkpoint buffer utilization is high. Threads will be throttled to avoid buffer overflow. It can be caused by high disk utilization.',NULL,'0','2','0','','0','','0','','0','Data region {#JMXNAME}: Checkpoint buffer utilization is too high (over {$GRIDGAIN.CHECKPOINT.PUSED.MAX.HIGH} in 5m)','9a7d7c745faa4f1fa4ffd1ca8c1ac602');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18987','{23397}/{23398}*100>{$GRIDGAIN.CHECKPOINT.PUSED.MAX.WARN}','Data region {#JMXNAME}: Checkpoint buffer utilization is too high','','0','2','Checkpoint buffer utilization is high. Threads will be throttled to avoid buffer overflow. It can be caused by high disk utilization.',NULL,'0','2','0','','0','','0','','0','Data region {#JMXNAME}: Checkpoint buffer utilization is too high (over {$GRIDGAIN.CHECKPOINT.PUSED.MAX.WARN} in 5m)','02ce52a2067147238969a4fd24f85bdc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18988','{23399}/{23400}*100>{$GRIDGAIN.DATA.REGION.PUSED.MAX.HIGH}','Data region {#JMXNAME}: Data region utilization is too high','','0','4','Data region utilization is high. Increase data region size or delete any data.',NULL,'0','2','0','','0','','0','','0','Data region {#JMXNAME}: Data region utilization is too high (over {$GRIDGAIN.DATA.REGION.PUSED.MAX.HIGH} in 5m)','92c2772aa8d7425e8bee5d760ba5b607');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18989','{23401}/{23402}*100>{$GRIDGAIN.DATA.REGION.PUSED.MAX.WARN}','Data region {#JMXNAME}: Data region utilization is too high','','0','2','Data region utilization is high. Increase data region size or delete any data.',NULL,'0','2','0','','0','','0','','0','Data region {#JMXNAME}: Data region utilization is too high (over {$GRIDGAIN.DATA.REGION.PUSED.MAX.WARN} in 5m)','3694e6d813b04b51a77c842de617503c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18990','{23403}>0','Data region {#JMXNAME}: Node started to evict pages','','0','1','You store more data than region can accommodate. Data started to move to disk it can make requests work slower. Ack to close.',NULL,'0','2','0','','0','','1','','0','','7e2fc41d632240b3869080d41ef5e639');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18991','{23404}>0','Data region {#JMXNAME}: Pages replace rate more than 0','','0','2','There is more data than DataRegionMaxSize. Cluster started to replace pages in memory. Page replacement can slow down operations.',NULL,'0','2','0','','0','','0','','0','','d2b012fdfe634526bb583d4ad18abe4d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18992','{23405} > {$GRIDGAIN.PME.DURATION.MAX.HIGH}','GridGain [{#JMXIGNITEINSTANCENAME}]: PME duration is too long','','0','4','PME duration is over {$GRIDGAIN.PME.DURATION.MAX.HIGH}ms. Looks like PME is hung.',NULL,'0','2','0','','0','','0','','0','GridGain [{#JMXIGNITEINSTANCENAME}]: PME duration is too long (over {$GRIDGAIN.PME.DURATION.MAX.HIGH} for 5 min)','a2672171fa374810b95b72f6014f3998');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18993','{23406} > {$GRIDGAIN.PME.DURATION.MAX.WARN}','GridGain [{#JMXIGNITEINSTANCENAME}]: PME duration is too long','','0','2','PME duration is over {$GRIDGAIN.PME.DURATION.MAX.WARN}ms.',NULL,'0','2','0','','0','','0','','0','GridGain [{#JMXIGNITEINSTANCENAME}]: PME duration is too long (over {$GRIDGAIN.PME.DURATION.MAX.WARN} for 5 min)','f21e1cee28354fcd945d58955831641b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18994','{23407} > {$GRIDGAIN.THREADS.COUNT.MAX.WARN}','GridGain [{#JMXIGNITEINSTANCENAME}]: Number of running threads is too high','','0','2','Number of running threads is over {$GRIDGAIN.THREADS.COUNT.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','GridGain [{#JMXIGNITEINSTANCENAME}]: Number of running threads is too high (over {$GRIDGAIN.THREADS.COUNT.MAX.WARN} for 15 min)','124c9738a384481fb39f5e8078cca0e4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18995','{23408} > {$GRIDGAIN.JOBS.QUEUE.MAX.WARN}','GridGain [{#JMXIGNITEINSTANCENAME}]: Number of queued jobs is too high','','0','2','Number of queued jobs is over {$GRIDGAIN.JOBS.QUEUE.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','GridGain [{#JMXIGNITEINSTANCENAME}]: Number of queued jobs is too high (over {$GRIDGAIN.JOBS.QUEUE.MAX.WARN} for 15 min)','71d259fbdcd74888a4bedc646fc4bc54');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18996','{23409}>{23410}','GridGain [{#JMXIGNITEINSTANCENAME}]: There are nodes is not in topology','','0','1','One or more server node left the topology. Ack to close.',NULL,'0','2','0','','0','','1','','0','','ea93cb34b6434f2e94095c28087fc18e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18997','{23411}>0','GridGain [{#JMXIGNITEINSTANCENAME}]: Server node added to the topology','','0','1','One or more server node added to the topology. Ack to close.',NULL,'0','2','0','','0','','1','','0','','bf1fbe1ea3754da59bd8a510fbcc6f54');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18998','{23412}<0','GridGain [{#JMXIGNITEINSTANCENAME}]: Server node left the topology','','0','2','One or more server node left the topology. Ack to close.',NULL,'0','2','0','','0','','1','','0','','db4cd7173ead4e878b79d55067d81300');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18999','{23413}<>{23414} and length({23415})>0','GridGain [{#JMXIGNITEINSTANCENAME}]: Version has changed','','0','1','GridGain [{#JMXIGNITEINSTANCENAME}] version has changed. Ack to close.',NULL,'0','2','0','','0','','1','','0','GridGain [{#JMXIGNITEINSTANCENAME}]: Version has changed (new version: {ITEM.VALUE})','4cc201fb67664fc49d36bbec95b574ce');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19000','{23416}=1','GridGain [{#JMXIGNITEINSTANCENAME}]: Failed to fetch info data','','0','2','Zabbix has not received data for items for the last 10 minutes.',NULL,'0','2','0','','0','','1','','0','GridGain [{#JMXIGNITEINSTANCENAME}]: Failed to fetch info data (or no data for 10m)','d7b2be3a707f49d2897e7cce356cafa5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19001','{23417}<10m','GridGain [{#JMXIGNITEINSTANCENAME}]: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','2','0','','0','','1','','0','GridGain [{#JMXIGNITEINSTANCENAME}]: has been restarted (uptime < 10m)','23cd9dbb498f4bb095ec8be1693fccf0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19002','{23418}<>{23419} and length({23420})>0','GridGain [{#JMXIGNITEINSTANCENAME}]: Coordinator has changed','','0','2','GridGain [{#JMXIGNITEINSTANCENAME}] version has changed. Ack to close.',NULL,'0','2','0','','0','','1','','0','GridGain [{#JMXIGNITEINSTANCENAME}]: Version has changed (new version: {ITEM.VALUE})','40641263a3d840e89e46ba6f57076a0a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19003','{23421}>={23422}','Cache group [{#JMXNAME}]: One or more backups are unavailable','','0','2','',NULL,'0','2','0','','0','','0','','0','','3ded54fcdad74c83b47543410a7d9b3c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19004','{23423}<>{23424} and length({23425})>0','Cache group [{#JMXNAME}]: List of caches has changed','','0','1','List of caches has changed. Significant changes have occurred in the cluster. Ack to close.',NULL,'0','2','0','','0','','1','','0','Cache group [{#JMXNAME}]: Version has changed (new version: {ITEM.VALUE})','94d82f9db4f449e491782e14f6973f9b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19005','{23426}>0','Cache group [{#JMXNAME}]: Rebalance in progress','','0','1','Ack to close.',NULL,'0','2','0','','0','','1','','0','','84e1402b3ae64960ad997d2610137927');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19006','{23427}=0','Cache group [{#JMXNAME}]: There is no copy for partitions','','0','2','',NULL,'0','2','0','','0','','0','','0','','63c244c02ace4ac4a8d6f60e5c533890');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19007','{23428} > {$GRIDGAIN.THREAD.QUEUE.MAX.WARN:"{#JMXNAME}"}','Thread pool [{#JMXNAME}]: Too many messages in queue','','0','3','Number of messages in queue more than {$GRIDGAIN.THREAD.QUEUE.MAX.WARN:"{#JMXNAME}"}.',NULL,'0','2','0','','0','','0','','0','Thread pool [{#JMXNAME}]: Too many messages in queue (over {$GRIDGAIN.THREAD.QUEUE.MAX.WARN:"{#JMXNAME}"} for 5 min)','f2a7aa098ed245f48b455ed747ee42c3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19008','{23429}={23430}','Cache group [{#JMXGROUP}]: All entries are in heap','','0','1','All entries are in heap. Possibly you use eager queries it may cause out of memory exceptions for big caches. Ack to close.',NULL,'0','2','0','','0','','1','','0','','cfe03901890a4377ad8d5dcc7be3e0c5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19009','{23431} > {23432}','Cache group [{#JMXGROUP}]: Success transactions less than rollbacks for 5m','','0','2','',NULL,'0','2','0','','0','','0','','0','','1c990b38154340a3aab678ac1365cf7e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19010','{23433}>0 and {23434}=0','Cache group [{#JMXGROUP}]: There are no success transactions for cache for 5m','','0','3','',NULL,'0','2','0','','0','','0','','0','','2caa406da4cf4d089705e5506fd589f1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19011','{23447}<>{23448}','MongoDB: Node in ReplicaSet changed the state','','0','2','Node in ReplicaSet changed the state. Ack to close.',NULL,'0','2','2','','0','','1','','0','MongoDB: Node in ReplicaSet changed the state (new state: {ITEM.VALUE})','f9f29647a3db426c9c303fc47cfc48eb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19012','{23734}<10m','Cisco ASAv: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','Cisco ASAv: has been restarted (uptime < 10m)','7fcf46583d2b42f4be6758e85784f28f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19013','{23735}=0','Cisco ASAv: 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','','9ee945a0b0b942d7a7e3fcf218f0e82f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19014','{23736}>{$CPU.UTIL.CRIT}','Cisco ASAv: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Cisco ASAv: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','2e90218795b94ee8b3c01dd79d2dd8b3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19015','{23737}>{$MEMORY.UTIL.MAX}','Cisco ASAv: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','Cisco ASAv: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','688975747f664a15a3bca9dd3e1e0b01');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19016','{23738}=2 and {23739}<>{23740}','Cisco ASAv: {#CISCO.IF.NAME} Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{23738}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','0aca9e16545a46f4a7b150d03cdb1df1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19017','{23741}<>{23742} and length({23743})>0','Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} has been replaced','','0','1','{#CISCO.ASAV.PHYS.NAME} serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} has been replaced (new serial number received)','c9f9bff9e9cd4519807c5be583670d02');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19018','{25022}<>{25023} and length({25024})>0','F5 BIG-IP: Chassis has been replaced','','0','1','Chassis serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','F5 BIG-IP: Chassis has been replaced (new serial number received)','8a55167ddebb43f2ac8f6d028aef87c2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19019','{23870}<10m','F5 BIG-IP: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','F5 BIG-IP: has been restarted (uptime < 10m)','551fd3b77d144ed58f138865e4862901');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19020','{23871}=0','F5 BIG-IP: 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','','9ec4425af8dd4cf59dcb3146e6a8263c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19021','{28248} - 86400 * {$BIGIP.CERT.MIN} < now()','F5 BIG-IP: Certificate expires ({#CERT.NAME})','','0','2','Please check certificate',NULL,'0','2','0','','0','','0','Expires: {ITEM.VALUE}','0','F5 BIG-IP: Less than {$BIGIP.CERT.MIN} days left until the certificate expires ({#CERT.NAME})','015ce3f5d10749aca1d871a1d26c51c5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19022','{23873}=0','F5 BIG-IP: Fan[{#FAN.INDEX}] is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','','0','','546745f6edf7470896d5bf251d760dfe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19023','{23874}=0','F5 BIG-IP: Power supply [{#POWER.INDEX}] is in critical state','','0','4','Please check the power supply unit',NULL,'0','2','0','','0','','0','','0','','1e85cee65875477b85f74aedba6e86c9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19024','{23875}>{$BIGIP.CPU.UTIL.WARN.MAX}','F5 BIG-IP: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','1','{23875}<{$BIGIP.CPU.UTIL.WARN.MIN}','0','','0','','0','F5 BIG-IP: High CPU utilization (over {$BIGIP.CPU.UTIL.WARN.MAX}% for 5m)','1163080e05d3433f884773fe1ee0271a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19025','{25029}/{25030}*100<{$BIGIP.FS.FREE.WARN.MIN:"{#PART.NAME}"}','F5 BIG-IP: Low free space in file system [{#PART.NAME}]','','0','2','The system is running out of free space.',NULL,'0','2','1','{25029}/{25030}*100>{$BIGIP.FS.FREE.WARN.MAX:"{#PART.NAME}"}','0','','1','','0','F5 BIG-IP: Low free space in file system [{#PART.NAME}] (less than {$BIGIP.FS.FREE.WARN.MIN}% for 5m)','32b87997dc0b4967bdb158f1dc0baad2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19026','{28249}/{28250}*100>{$BIGIP.MEMORY.UTIL.WARN.MAX}','F5 BIG-IP: High memory utilization in host [{#HOST.ID}]','','0','2','The system is running out of free memory.',NULL,'0','2','1','{28249}/{28250}*100<{$BIGIP.MEMORY.UTIL.WARN.MIN}','0','','0','','0','F5 BIG-IP: High memory utilization in host [{#HOST.ID}] (over {$BIGIP.MEMORY.UTIL.WARN.MAX}%)','e72f446075214129ab1d6269fcd87051');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19027','{28251}/{28252}*100>{$BIGIP.SWAP.UTIL.WARN.MAX}','F5 BIG-IP: High swap utilization in host [{#HOST.ID}]','','0','2','The system is running out of free swap memory.',NULL,'0','2','1','{28251}/{28252}*100>{$BIGIP.SWAP.UTIL.WARN.MIN}','0','','0','','0','F5 BIG-IP: High swap utilization in host [{#HOST.ID}] (over {$BIGIP.SWAP.UTIL.WARN.MAX}%)','5cf3e1f819ee46f49ba89156c53274ec');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19028','{23882}>{23883} or {23884}>{23885}','F5 BIG-IP: There are errors on the network interface','','0','3','',NULL,'0','2','0','','0','','0','','0','F5 BIG-IP: There are errors on the network interface ({#IF.NAME})','2d9214768b684ba880703d738ac52099');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19029','{23961}=0','ZYXEL AAM1212-51 / IES-612: 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','','40839f3008b84e3c9ffa8858bd2ab616');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19030','{23962}<>{23963} and length({23964})>0','ZYXEL AAM1212-51 / IES-612: Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','02ba3941993f48ca8d5f40b3b19804e8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19031','{23965}<>"AAM1212-51 / IES-612"','ZYXEL AAM1212-51 / IES-612: Template does not match hardware','','0','1','This template is for Zyxel AAM1212-51 / IES-612, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','5a3f459afc4f42fb90849e98c7639a96');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19032','{23966}<>{23967} and length({23968})>0','ZYXEL AAM1212-51 / IES-612: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','ZYXEL AAM1212-51 / IES-612: Device has been replaced (new serial number received)','7528520bca7c4524b7451aeaca440cc5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19033','{23969}=0','ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX} alarm','','0','3','The slot reported an error.',NULL,'0','0','0','','0','','0','','0','','eec541b07a434770b2a3301825cc5e82');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19034','({32451}>0 and {32451}<10m) or ({32451}=0 and {32452}<10m)','ZYXEL AAM1212-51 / IES-612: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL AAM1212-51 / IES-612: {HOST.NAME} has been restarted (uptime < 10m)','819190f68248439292fc4622c3eec5a9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19035','{23971}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL AAM1212-51 / IES-612: High the DSL line attenuation in Port {#SNMPINDEX}','','0','2','The reductions in amplitude of the downstream and upstream DSL signals.',NULL,'0','2','0','','0','','0','','0','ZYXEL AAM1212-51 / IES-612: High the DSL line attenuation in Port {#SNMPINDEX} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','0c78247a1003496abab584a526777a40');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19036','{23972}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL AAM1212-51 / IES-612: Low the DSL line noise margins in Port {#SNMPINDEX}','','0','2','Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed',NULL,'0','2','0','','0','','0','','0','ZYXEL AAM1212-51 / IES-612: Low the DSL line noise margins in Port {#SNMPINDEX} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','14cbae6c16c245b09ed46e0cc01a556c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19037','{23973}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL AAM1212-51 / IES-612: High the DSL line attenuation in Port {#SNMPINDEX}','','0','2','The reductions in amplitude of the downstream and upstream DSL signals.',NULL,'0','2','0','','0','','0','','0','ZYXEL AAM1212-51 / IES-612: High the DSL line attenuation in Port {#SNMPINDEX} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','e917c9a8d6bb4af3a40c6c5b41f90c22');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19038','{23974}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL AAM1212-51 / IES-612: Low the DSL line noise margins in Port {#SNMPINDEX}','','0','2','Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed',NULL,'0','2','0','','0','','0','','0','ZYXEL AAM1212-51 / IES-612: Low the DSL line noise margins in Port {#SNMPINDEX} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','125b08332e2f409985cade88ab3842f1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19039','{23975}=2 and {23976}<>{23977}','ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{23975}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','956fc99c2c5341a2b29ba2f302cc0a3a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19040','{23978}=2 and {23979}<>{23980}','ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{23978}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','805f49836f794aad9ee00f66dd90ffc1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19041','{23981}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL AAM1212-51 / IES-612: Temperature {#ZYXEL.TEMP.ID} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','321b2efb6e8e4117949b3644cc101ff2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19042','{23982}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL AAM1212-51 / IES-612: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a7aa1ae207bb462bb23d3f2fca2c3533');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19043','{23983}=0','ZYXEL ES3500-8PD: 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','','3bbbd93c114f4bf5b8f4788ca6825afd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19044','{23984}>{$CPU.UTIL.CRIT}','ZYXEL ES3500-8PD: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL ES3500-8PD: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','3cf67f911a854d2ebeb9e006f3f97738');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19045','{23985}<>{23986} and length({23987})>0','ZYXEL ES3500-8PD: Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','bd6d0fe201094c00b6c93d7c04c27729');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19046','{23988}<>"ES3500-8PD"','ZYXEL ES3500-8PD: Template does not match hardware','','0','1','This template is for Zyxel ES3500-8PD, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','e03ca45643354a18a9d6ffbb38a07654');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19047','{23989}<>{23990} and length({23991})>0','ZYXEL ES3500-8PD: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','ZYXEL ES3500-8PD: Device has been replaced (new serial number received)','83548aba74c148e28e6611d5abfb9694');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19048','({32453}>0 and {32453}<10m) or ({32453}=0 and {32454}<10m)','ZYXEL ES3500-8PD: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL ES3500-8PD: {HOST.NAME} has been restarted (uptime < 10m)','eb7a268bfa324366953221e3c1788127');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19049','{23993}>{$MEMORY.UTIL.MAX}','ZYXEL ES3500-8PD: High memory utilization in "{#ZYXEL.MEMORY.NAME}" pool','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','ZYXEL ES3500-8PD: High memory utilization in "{#ZYXEL.MEMORY.NAME}" pool (>{$MEMORY.UTIL.MAX}% for 5m)','c59c3730eea44cf7a842fe46aa12fa3d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19050','{23994}=2 and {23995}<>{23996}','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{23994}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','27ba4832c79d447186ae6de254aad9d7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19051','{23997} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL ES3500-8PD: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','','0','2','The upper threshold value of the parameter is exceeded',NULL,'0','2','0','','0','','0','','0','ZYXEL ES3500-8PD: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','8ce109a9f09b41458a4e9d8698238ad0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19052','{23998} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL ES3500-8PD: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','','0','2','The parameter values are less than the lower threshold',NULL,'0','2','0','','0','','0','','0','ZYXEL ES3500-8PD: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','6ecef48a1fdd4e16afe9472f59e0ad1a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19053','{23999}<>{24000} and length({24001})>0','ZYXEL ES3500-8PD: SFP {#SNMPINDEX} has been replaced','','0','1','SFP {#SNMPINDEX} serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','ZYXEL ES3500-8PD: SFP {#SNMPINDEX} has been replaced (new serial number received)','46739144d51b441886d544829749cf21');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19054','{24002}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL ES3500-8PD: Temperature {#ZYXEL.TEMP.ID} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','51fad2cd7daf49ad9027f44fd9ea81af');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19055','{24003}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL ES3500-8PD: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2cce1a60cfea4bb89e1b9582f6045d3c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19056','{24004}=0','ZYXEL GS-4012F: 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','','07b74d3face24c838c7efe8dfb87564e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19057','{24005}>{$CPU.UTIL.CRIT}','ZYXEL GS-4012F: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL GS-4012F: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','2052d9e6becd48e5a3aed8037eaf9e87');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19058','{24006}<>{24007} and length({24008})>0','ZYXEL GS-4012F: Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','ecde6db248674039a30874f29e704e65');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19059','{24009}<>"GS-4012F"','ZYXEL GS-4012F: Template does not match hardware','','0','1','This template is for Zyxel GS-4012F, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','1ba1faabe15c4d46adaa4dc74c5dc05c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19060','{24010}<>{24011} and length({24012})>0','ZYXEL GS-4012F: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','ZYXEL GS-4012F: Device has been replaced (new serial number received)','ae941404115d4b10809bce603528ceaa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19061','({32455}>0 and {32455}<10m) or ({32455}=0 and {32456}<10m)','ZYXEL GS-4012F: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL GS-4012F: {HOST.NAME} has been restarted (uptime < 10m)','93c70a5dd2504d0d9b13a17af942d45e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19062','{24014}<{#ZYXEL.FANRPM.THRESH.LOW}','ZYXEL GS-4012F: FAN{#SNMPINDEX} is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c91993daf9e44102a04b1ff2b72bf773');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19063','{24015}=2 and {24016}<>{24017}','ZYXEL GS-4012F: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24015}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','9c332411a6db46acaab2b49ccabd2970');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19064','{24018}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL GS-4012F: Temperature {#ZYXEL.TEMP.ID} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','719aad00708e4fd3b99997834c5d68b2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19065','{24019}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL GS-4012F: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7d28666404bd4cedb687214846f89d4a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19066','{24020}=0','ZYXEL IES-500x: 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','','73967d1d3d01458c8e947a1aacb838b0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19067','not({24021}="IES-5000" or {24021}="IES-5005")','ZYXEL IES-500x: Template does not match hardware','','0','1','This template is for Zyxel IES-500x, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','d4b378535f5c4299af1295029e94f9d1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19068','({32457}>0 and {32457}<10m) or ({32457}=0 and {32458}<10m)','ZYXEL IES-500x: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL IES-500x: {HOST.NAME} has been restarted (uptime < 10m)','d618295a763f42cd9063fad5cd600c34');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19069','{24023}>{#ZYXEL.BUFFERHIGHTHRESH}','ZYXEL IES-500x: High Packet buffer utilization in Slot {#ZYXEL.SLOT.ID}','','0','3','The system is running out of free buffer.',NULL,'0','2','0','','0','','0','','0','ZYXEL IES-500x: High Packet buffer utilization in Slot {#ZYXEL.SLOT.ID} (>{#ZYXEL.BUFFERHIGHTHRESH}% for 5m)','b02248180f314948bdbb68e8b940cb99');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19070','{24024}>{#ZYXEL.CPU.THRESH.HIGH}','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} high CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} high CPU utilization (over {#ZYXEL.CPU.THRESH.HIGH}% for 5m)','e2e689642a884509a5254e946deaf69f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19071','{24025}<{#ZYXEL.FANRPM.THRESH.LOW} or {24025}>{#ZYXEL.FANRPM.THRESH.HIGH}','ZYXEL IES-500x: FAN{#SNMPINDEX} is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9e249839db314f05a7a3cd16172ae9a7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19072','{24026}>{#ZYXEL.MEMORYHIGHTHRESH}','ZYXEL IES-500x: High memory utilization in Slot {#ZYXEL.SLOT.ID} pool','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','ZYXEL IES-500x: High memory utilization in Slot {#ZYXEL.SLOT.ID} pool (>{#ZYXEL.MEMORYHIGHTHRESH}% for 5m)','c3099861742f4303af838a0bf3921fac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19073','{24027}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL IES-500x: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','','0','2','The reductions in amplitude of the downstream and upstream DSL signals.',NULL,'0','2','0','','0','','0','','0','ZYXEL IES-500x: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','375982ea68ec4800aa27a50a89fd79d5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19074','{24028}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL IES-500x: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','','0','2','Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed',NULL,'0','2','0','','0','','0','','0','ZYXEL IES-500x: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','8d2f57548d4e47f2981a4fd79d065246');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19075','{24029}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL IES-500x: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','','0','2','The reductions in amplitude of the downstream and upstream DSL signals.',NULL,'0','2','0','','0','','0','','0','ZYXEL IES-500x: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','1dec7ed135a348b1a1cebb3b4319d77f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19076','{24030}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL IES-500x: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','','0','2','Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed',NULL,'0','2','0','','0','','0','','0','ZYXEL IES-500x: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','7f8f4a2bff14464fbe2f956be87ad56d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19077','{24031}=2 and {24032}<>{24033}','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24031}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','8afcc973a7e94a0782a057205cc1b8ed');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19078','{24034}=2 and {24035}<>{24036}','ZYXEL IES-500x: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24034}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','71a10836f3094184bba728a0cf4d005a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19079','{24037}=0','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} alarm','','0','3','The slot reported an error.',NULL,'0','2','0','','0','','0','','0','','d2dd1a23dbbb467e90ab99ff59a817a2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19080','{24038}<>{24039} and length({24040})>0','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: DSL modem code has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','1b163693dc87407db836021da67bdccc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19081','{24041}<>{24042} and length({24043})>0','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Driver has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','44f7087bcb524593a419887c199fb613');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19082','{24044}<>{24045} and length({24046})>0','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','6de6e5adadf04a79813ed7778b454043');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19083','{24047}<>{24048} and length({24049})>0','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Hardware version has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','42969016e9c846a8954ebf95d2ff0ffc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19084','{24050}<>{24051} and length({24052})>0','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} has been replaced','','0','1','Slot {#ZYXEL.SLOT.ID} serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} has been replaced (new serial number received)','0994c0ab8b004dc280d1a036e7043cc0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19085','{24053}<10m','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','2','0','','0','','1','','0','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} has been restarted (uptime < 10m)','6717069c115147b095321f2c4c5ec51b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19086','{24054}>{#ZYXEL.TEMP.THRESH.HIGH} or {24054}<{#ZYXEL.TEMP.THRESH.LOW}','ZYXEL IES-500x: Temperature Slot {#ZYXEL.SLOT.ID} Sensor: {#ZYXEL.TEMP.ID} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c4993b2d52e04808862ac0d043b0e982');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19087','{24055}<{#ZYXEL.VOLT.THRESH.LOW} or {24055}>{#ZYXEL.VOLT.THRESH.HIGH}','ZYXEL IES-500x: Voltage Slot {#ZYXEL.SLOT.ID} {#ZYXEL.VOLT.NOMINAL} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','55bc511ff2094a86b10c542e896d10e2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19088','{24056}=0','ZYXEL IES-6000: 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','','41eb76d6be3e47b8b0ca1296470372aa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19089','{24057}<>"IES-6000"','ZYXEL IES-6000: Template does not match hardware','','0','1','This template is for Zyxel IES-6000, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','7f6f8bdde2644182a892792ff2bb7c68');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19090','({32459}>0 and {32459}<10m) or ({32459}=0 and {32460}<10m)','ZYXEL IES-6000: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL IES-6000: {HOST.NAME} has been restarted (uptime < 10m)','7a52520cc3dc4350bd7aa14260899f1c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19091','{24059}>{#ZYXEL.BUFFERHIGHTHRESH}','ZYXEL IES-6000: High Packet buffer utilization in Slot {#ZYXEL.SLOT.ID}','','0','3','The system is running out of free buffer.',NULL,'0','2','0','','0','','0','','0','ZYXEL IES-6000: High Packet buffer utilization in Slot {#ZYXEL.SLOT.ID} (>{#ZYXEL.BUFFERHIGHTHRESH}% for 5m)','1173ae0cf9f440f595366a6da7a4c672');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19092','{24060}>{#ZYXEL.CPU.THRESH.HIGH}','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} high CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} high CPU utilization (over {#ZYXEL.CPU.THRESH.HIGH}% for 5m)','0d882e8f017e46c78727437bd55759d4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19093','{24061}<{#ZYXEL.FANRPM.THRESH.LOW} or {24061}>{#ZYXEL.FANRPM.THRESH.HIGH}','ZYXEL IES-6000: FAN{#SNMPINDEX} is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d5f65aebabf741798dcd0b452302aefb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19094','{24062}>{#ZYXEL.MEMORYHIGHTHRESH}','ZYXEL IES-6000: High memory utilization in Slot {#ZYXEL.SLOT.ID} pool','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','ZYXEL IES-6000: High memory utilization in Slot {#ZYXEL.SLOT.ID} pool (>{#ZYXEL.MEMORYHIGHTHRESH}% for 5m)','64108d56dc6d43148f67503383fc6705');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19095','{24063}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL IES-6000: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','','0','2','The reductions in amplitude of the downstream and upstream DSL signals.',NULL,'0','2','0','','0','','0','','0','ZYXEL IES-6000: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','e1233b29eb764b0bb5a2ce35f79060bf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19096','{24064}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL IES-6000: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','','0','2','Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed',NULL,'0','2','0','','0','','0','','0','ZYXEL IES-6000: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','d7392fd0c372459bb21b9a85a47ccb8c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19097','{24065}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL IES-6000: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','','0','2','The reductions in amplitude of the downstream and upstream DSL signals.',NULL,'0','2','0','','0','','0','','0','ZYXEL IES-6000: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','2ef5b800bb4148ce82bed8c4bf977a35');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19098','{24066}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL IES-6000: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','','0','2','Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed',NULL,'0','2','0','','0','','0','','0','ZYXEL IES-6000: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','ba6eb4b3b6904b5dac4c057d3f6f3c17');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19099','{24067}=2 and {24068}<>{24069}','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24067}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','3fbe4b16a94648089df78829ee7e683f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19100','{24070}=2 and ({24071}<>{24072})=1','ZYXEL IES-6000: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24070}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','a9aac7e6c66a4a69a77f8c165f9a9d5c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19101','{24073}=0','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} alarm','','0','3','The slot reported an error.',NULL,'0','2','0','','0','','0','','0','','c3f610ab856e42c7bb6460f552779e12');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19102','{24074}<>{24075} and length({24076})>0','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: DSL modem code has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','c62327e51d27445b893e80bf77c9696c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19103','{24077}<>{24078} and length({24079})>0','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Driver has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','63a4bdc73f8c49a7abb914f47e162dec');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19104','{24080}<>{24081} and length({24082})>0','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','7a2ef454d9624fd78416d2e1345be9a5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19105','{24083}<>{24084} and length({24085})>0','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Hardware version has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','537f28be56984664822b574a2064453b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19106','{24086}<>{24087} and length({24088})>0','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} has been replaced','','0','1','Slot {#ZYXEL.SLOT.ID} serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} has been replaced (new serial number received)','3fbbcffe1c46497d89fe0d987a5f6eff');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19107','{24089}<10m','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','2','0','','0','','1','','0','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} has been restarted (uptime < 10m)','50e43c41d0e241238b65da25c12d1616');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19108','{24090}>{#ZYXEL.TEMP.THRESH.HIGH} or {24090}<{#ZYXEL.TEMP.THRESH.LOW}','ZYXEL IES-6000: Temperature Slot {#ZYXEL.SLOT.ID} Sensor: {#ZYXEL.TEMP.ID} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c517b703b5084e9b8053fb139e3350ae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19109','{24091}<{#ZYXEL.VOLT.THRESH.LOW} or {24091}>{#ZYXEL.VOLT.THRESH.HIGH}','ZYXEL IES-6000: Voltage Slot {#ZYXEL.SLOT.ID} {#ZYXEL.VOLT.NOMINAL} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','14c98fc8b4864a3c87062510a079d948');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19110','{24092}=0','ZYXEL IES1248-51: 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','','40466f29b8e54dc88cb49e818fc48281');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19111','{24093}<>{24094} and length({24095})>0','ZYXEL IES1248-51: Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','b64e891456674457ab4abf994b097277');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19112','{24096}<>"IES1248-51"','ZYXEL IES1248-51: Template does not match hardware','','0','1','This template is for Zyxel IES1248-51, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','21b638f9f1154b6bb78a652d8e54c1c2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19113','{24097}<>{24098} and length({24099})>0','ZYXEL IES1248-51: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','ZYXEL IES1248-51: Device has been replaced (new serial number received)','2f2972169c164053a8d439b0e572b0c6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19114','{24100}=0','ZYXEL IES1248-51: Port {#SNMPINDEX} alarm','','0','3','The slot reported an error.',NULL,'0','0','0','','0','','0','','0','','6b1b1b27241f42229e8b159320371356');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19115','({32461}>0 and {32461}<10m) or ({32461}=0 and {32462}<10m)','ZYXEL IES1248-51: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL IES1248-51: {HOST.NAME} has been restarted (uptime < 10m)','bbccceac3dc24b9ab76a820fe5be4788');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19116','{24102}<{#ZYXEL.FANRPM.THRESH.LOW}','ZYXEL IES1248-51: FAN{#SNMPINDEX} is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','86f18f4e598443ab9e0ec30554d78e1a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19117','{24103}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL IES1248-51: High the DSL line attenuation in Port {#SNMPINDEX}','','0','2','The reductions in amplitude of the downstream and upstream DSL signals.',NULL,'0','2','0','','0','','0','','0','ZYXEL IES1248-51: High the DSL line attenuation in Port {#SNMPINDEX} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','23e50c0031c1457596b1366a40606ef9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19118','{24104}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL IES1248-51: Low the DSL line noise margins in Port {#SNMPINDEX}','','0','2','Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed',NULL,'0','2','0','','0','','0','','0','ZYXEL IES1248-51: Low the DSL line noise margins in Port {#SNMPINDEX} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','23bbc44b2f114afe99a8175a2b7f0ddd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19119','{24105}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL IES1248-51: High the DSL line attenuation in Port {#SNMPINDEX}','','0','2','The reductions in amplitude of the downstream and upstream DSL signals.',NULL,'0','2','0','','0','','0','','0','ZYXEL IES1248-51: High the DSL line attenuation in Port {#SNMPINDEX} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','2132fed26fe54a7daa017b7264c37f1c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19120','{24106}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL IES1248-51: Low the DSL line noise margins in Port {#SNMPINDEX}','','0','2','Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed',NULL,'0','2','0','','0','','0','','0','ZYXEL IES1248-51: Low the DSL line noise margins in Port {#SNMPINDEX} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','2d8f752b376f4c10bc8efbd39c8f45a9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19121','{24107}=2 and {24108}<>{24109}','ZYXEL IES1248-51: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24107}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','93a58c14939d4c3491646171910fe5ad');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19122','{24110}=2 and {24111}<>{24112}','ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24110}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','8d90a989c82a4890a3a1a0b8eeb53462');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19123','{24113}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL IES1248-51: Temperature {#ZYXEL.TEMP.ID} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f0d7f5282c784224b0cd5f76d3c2ad90');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19124','{24114}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL IES1248-51: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9815420fe46c45ce8731b9688b4a543e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19125','{24115}=0','ZYXEL MES-3528: 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','','0e38d148fc29439488b3b23ee308b1d9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19126','{24116}>{$CPU.UTIL.CRIT}','ZYXEL MES-3528: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL MES-3528: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','247a25a4976a45eca78853aea112cdd6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19127','{24117}<>{24118} and length({24119})>0','ZYXEL MES-3528: Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','7c4cfa75447a4eeda874d916d052eb6e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19128','{24120}<>"MES-3528"','ZYXEL MES-3528: Template does not match hardware','','0','1','This template is for Zyxel MES-3528, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','b98e244abe2a4bd481be50048234afe6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19129','{24121}<>{24122} and length({24123})>0','ZYXEL MES-3528: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','ZYXEL MES-3528: Device has been replaced (new serial number received)','d08bc1ffb11e4bbc98851c30595e996c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19130','({32463}>0 and {32463}<10m) or ({32463}=0 and {32464}<10m)','ZYXEL MES-3528: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL MES-3528: {HOST.NAME} has been restarted (uptime < 10m)','d138c874f4de4f3a97a0c615d589826a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19131','{24125}=2 and {24126}<>{24127}','ZYXEL MES-3528: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24125}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','c23272db35f44fe6958e3b5e31a52974');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19132','{24128} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL MES-3528: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','','0','2','The upper threshold value of the parameter is exceeded',NULL,'0','2','0','','0','','0','','0','ZYXEL MES-3528: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','f9e2991ea38343c8b2c9815bf733aef8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19133','{24129} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL MES-3528: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','','0','2','The parameter values are less than the lower threshold',NULL,'0','2','0','','0','','0','','0','ZYXEL MES-3528: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','341bff907cd943219bbed92773d9b005');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19134','{24130}<>{24131} and length({24132})>0','ZYXEL MES-3528: SFP {#SNMPINDEX} has been replaced','','0','1','SFP {#SNMPINDEX} serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','ZYXEL MES-3528: SFP {#SNMPINDEX} has been replaced (new serial number received)','5cd22f26211a428099d2a41c5c41efab');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19135','{24133}=0','ZYXEL MES3500-10: 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','','c33a4bffd5464934b4b9f1e7160806e1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19136','{24134}>{$CPU.UTIL.CRIT}','ZYXEL MES3500-10: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL MES3500-10: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','0d31c154f8f34ed18a99558f7839bbb6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19137','{24135}<>{24136} and length({24137})>0','ZYXEL MES3500-10: Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','db567c7693b6437e89ef7a5b78c889f9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19138','{24138}<>"MES3500-10"','ZYXEL MES3500-10: Template does not match hardware','','0','1','This template is for Zyxel MES3500-10, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','27f1cb5a297c4b1eafd4056317a37f01');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19139','{24139}<>{24140} and length({24141})>0','ZYXEL MES3500-10: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','ZYXEL MES3500-10: Device has been replaced (new serial number received)','ee14abdf61b04a90adf6e2afcc3d73f4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19140','({32465}>0 and {32465}<10m) or ({32465}=0 and {32466}<10m)','ZYXEL MES3500-10: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL MES3500-10: {HOST.NAME} has been restarted (uptime < 10m)','9899ada82b0e4507948a8a0068e5640d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19141','{24143}>{$MEMORY.UTIL.MAX}','ZYXEL MES3500-10: High memory utilization in "{#ZYXEL.MEMORY.NAME}" pool','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','ZYXEL MES3500-10: High memory utilization in "{#ZYXEL.MEMORY.NAME}" pool (>{$MEMORY.UTIL.MAX}% for 5m)','91609e57df4941faa9fee17051f8ac24');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19142','{24144}=2 and {24145}<>{24146}','ZYXEL MES3500-10: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24144}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','fb9bb0e2ceb643f495b93bbaf04b0cc1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19143','{24147} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL MES3500-10: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','','0','2','The upper threshold value of the parameter is exceeded',NULL,'0','2','0','','0','','0','','0','ZYXEL MES3500-10: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','bc09d6c1771d4d04afe86f49dbd98852');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19144','{24148} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL MES3500-10: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','','0','2','The parameter values are less than the lower threshold',NULL,'0','2','0','','0','','0','','0','ZYXEL MES3500-10: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','d05ae92b624347cc9a8fe1154995f3f9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19145','{24149}<>{24150} and length({24151})>0','ZYXEL MES3500-10: SFP {#SNMPINDEX} has been replaced','','0','1','SFP {#SNMPINDEX} serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','ZYXEL MES3500-10: SFP {#SNMPINDEX} has been replaced (new serial number received)','8832e1fa622449f582218cf5a7bf6b75');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19146','{24152}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL MES3500-10: Temperature {#ZYXEL.TEMP.ID} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6970c577993343dfaa97f4317acf0f08');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19147','{24153}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL MES3500-10: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c86b60bc2d0842e28f0718314db4cde0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19148','{24154}=0','ZYXEL MES3500-24: 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','','96435fde17384c6bb4f9811ad9ca184a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19149','{24155}>{$CPU.UTIL.CRIT}','ZYXEL MES3500-24: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL MES3500-24: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','911d1c7e921f43af8ab3c0035be57a27');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19150','{24156}<>{24157} and length({24158})>0','ZYXEL MES3500-24: Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','f3daea29a34b4cf992d3c23ba8a64d2e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19151','{24159}<>"MES3500-24"','ZYXEL MES3500-24: Template does not match hardware','','0','1','This template is for Zyxel MES3500-24, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','ab363c150ecd447ea4d3a3a9c311b992');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19152','{24160}<>{24161} and length({24162})>0','ZYXEL MES3500-24: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','ZYXEL MES3500-24: Device has been replaced (new serial number received)','a475d29129664eec82fc7ed85cb74df9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19153','({32467}>0 and {32467}<10m) or ({32467}=0 and {32468}<10m)','ZYXEL MES3500-24: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL MES3500-24: {HOST.NAME} has been restarted (uptime < 10m)','c389b0db83bc404e8cb84ce65db79700');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19154','{24164}>{$MEMORY.UTIL.MAX}','ZYXEL MES3500-24: High memory utilization in "{#ZYXEL.MEMORY.NAME}" pool','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','ZYXEL MES3500-24: High memory utilization in "{#ZYXEL.MEMORY.NAME}" pool (>{$MEMORY.UTIL.MAX}% for 5m)','66802198e0764ee29cdf557378b5566b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19155','{24165}=2 and {24166}<>{24167}','ZYXEL MES3500-24: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24165}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','5a9faa35f7d547a987e78075832cf38e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19156','{24168} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL MES3500-24: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','','0','2','The upper threshold value of the parameter is exceeded',NULL,'0','2','0','','0','','0','','0','ZYXEL MES3500-24: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','ef830e34f83347bebba87a72208d805b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19157','{24169} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL MES3500-24: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','','0','2','The parameter values are less than the lower threshold',NULL,'0','2','0','','0','','0','','0','ZYXEL MES3500-24: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','229f44666e6043a1a8e34437ad24e3ae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19158','{24170}<>{24171} and length({24172})>0','ZYXEL MES3500-24: SFP {#SNMPINDEX} has been replaced','','0','1','SFP {#SNMPINDEX} serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','ZYXEL MES3500-24: SFP {#SNMPINDEX} has been replaced (new serial number received)','f84b378d79b74174842cc49af29c2a0c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19159','{24173}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL MES3500-24: Temperature {#ZYXEL.TEMP.ID} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9963d3848c774563881689da1bcddefc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19160','{24174}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL MES3500-24: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2eef8cabb2e141dd8b6d1868ebc79db4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19161','{24175}=0','ZYXEL MGS-3712: 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','','60787fd1204b42bfb515b1b204c1d14f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19162','{24176}>{$CPU.UTIL.CRIT}','ZYXEL MGS-3712: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL MGS-3712: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','b1ca06637dbe4c9ca84e2811e780d5d5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19163','{24177}<>{24178} and length({24179})>0','ZYXEL MGS-3712: Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','de7d7e7d976c4b9894259c4e7fb5a4dd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19164','{24180}<>"MGS-3712"','ZYXEL MGS-3712: Template does not match hardware','','0','1','This template is for Zyxel MGS-3712, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','e0b4c4f09f6f496cb035af320fcf96a0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19165','{24181}<>{24182} and length({24183})>0','ZYXEL MGS-3712: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','ZYXEL MGS-3712: Device has been replaced (new serial number received)','4a9495748e09477ca5f12443fff533c9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19166','({32469}>0 and {32469}<10m) or ({32469}=0 and {32470}<10m)','ZYXEL MGS-3712: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL MGS-3712: {HOST.NAME} has been restarted (uptime < 10m)','eefe29ad784d40d3980a4cb1118dd816');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19167','{24185}<{#ZYXEL.FANRPM.THRESH.LOW}','ZYXEL MGS-3712: FAN{#SNMPINDEX} is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','edc0057dbdb64fd584cc968c5d8bb41f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19168','{24186}=2 and {24187}<>{24188}','ZYXEL MGS-3712: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24186}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','e21751b08fe740f2ad9ad6bde6b879c4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19169','{24189} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL MGS-3712: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','','0','2','The upper threshold value of the parameter is exceeded',NULL,'0','2','0','','0','','0','','0','ZYXEL MGS-3712: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','e9d242819d7345a0b44cc14a392f05fa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19170','{24190} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL MGS-3712: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','','0','2','The parameter values are less than the lower threshold',NULL,'0','2','0','','0','','0','','0','ZYXEL MGS-3712: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','177c2fe88ec24e3d9a5ea9f6b3f346d9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19171','{24191}<>{24192} and length({24193})>0','ZYXEL MGS-3712: SFP {#SNMPINDEX} has been replaced','','0','1','SFP {#SNMPINDEX} serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','ZYXEL MGS-3712: SFP {#SNMPINDEX} has been replaced (new serial number received)','aaa3492aa0c64e8a973d1a755fd24f50');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19172','{24194}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL MGS-3712: Temperature {#ZYXEL.TEMP.ID} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b5ba7daf05204f2b987b879a3d44fac2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19173','{24195}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL MGS-3712: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','02a7a32af7a440b6a7199b425305fdde');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19174','{24196}=0','ZYXEL MGS-3712F: 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','','c4244d60e8aa4cc380442992c031b2fd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19175','{24197}>{$CPU.UTIL.CRIT}','ZYXEL MGS-3712F: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL MGS-3712F: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','084cf3c89c9c48eeac9131d831a4f71b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19176','{24198}<>{24199} and length({24200})>0','ZYXEL MGS-3712F: Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','fbf62d3f9ce54baab9a16f3e123811ef');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19177','{24201}<>"MGS-3712F"','ZYXEL MGS-3712F: Template does not match hardware','','0','1','This template is for Zyxel MGS-3712F, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','bf3d28b088db48a59aaa9e88f6b13cb8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19178','{24202}<>{24203} and length({24204})>0','ZYXEL MGS-3712F: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','ZYXEL MGS-3712F: Device has been replaced (new serial number received)','ccb3fe676cd742af954b8c5e7898e5f0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19179','({32471}>0 and {32471}<10m) or ({32471}=0 and {32472}<10m)','ZYXEL MGS-3712F: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL MGS-3712F: {HOST.NAME} has been restarted (uptime < 10m)','6a31fdd61b9f4aa99c8ad15ff243c6b2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19180','{24206}<{#ZYXEL.FANRPM.THRESH.LOW}','ZYXEL MGS-3712F: FAN{#SNMPINDEX} is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4672af40f7434a419d063c6f00f4f9f8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19181','{24207}=2 and {24208}<>{24209}','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24207}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','d92c1f55c21e4780ada69269d95c5f45');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19182','{24210} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL MGS-3712F: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','','0','2','The upper threshold value of the parameter is exceeded',NULL,'0','2','0','','0','','0','','0','ZYXEL MGS-3712F: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','1ef8b878bd334f1eac9d9c4258d1f4f2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19183','{24211} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL MGS-3712F: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','','0','2','The parameter values are less than the lower threshold',NULL,'0','2','0','','0','','0','','0','ZYXEL MGS-3712F: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','6605455fa4764a578feff4ce12a20883');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19184','{24212}<>{24213} and length({24214})>0','ZYXEL MGS-3712F: SFP {#SNMPINDEX} has been replaced','','0','1','SFP {#SNMPINDEX} serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','ZYXEL MGS-3712F: SFP {#SNMPINDEX} has been replaced (new serial number received)','8fc46b61f7854893839a307700627d18');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19185','{24215}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL MGS-3712F: Temperature {#ZYXEL.TEMP.ID} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b0d3093a36984493a7ffe87c7c4d408e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19186','{24216}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL MGS-3712F: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9a15b78bae564c879a5c95290cde63fe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19187','{24217}=0','ZYXEL MES3500-24S: 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','','d80bc493096b4da4857651e7e28829e7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19188','{24218}>{$CPU.UTIL.CRIT}','ZYXEL MES3500-24S: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL MES3500-24S: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','7bf51ce2b7a64f3f8151edc224c601e8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19189','{24219}<>{24220} and length({24221})>0','ZYXEL MES3500-24S: Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','182e8b14935445268c096a3e4fdb5795');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19190','{24222}>{$MEMORY.UTIL.MAX}','ZYXEL MES3500-24S: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','ZYXEL MES3500-24S: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','d3a4dca93ad946589b1b83e0fe647dde');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19191','{24223}<>"MES3500-24S"','ZYXEL MES3500-24S: Template does not match hardware','','0','1','This template is for Zyxel MES3500-24S series, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','96c011542d5b4473934e0de9e442479c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19192','{24224}<>{24225} and length({24226})>0','ZYXEL MES3500-24S: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','ZYXEL MES3500-24S: Device has been replaced (new serial number received)','90268ffbf33049d6adc6ed96badd67ec');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19193','({32473}>0 and {32473}<10m) or ({32473}=0 and {32474}<10m)','ZYXEL ES3500-8PD: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL ES3500-8PD: {HOST.NAME} has been restarted (uptime < 10m)','6c8fce36fd9c49569be0ba2bfb70f478');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19194','{24228}<{#ZYXEL.FANRPM.THRESH.LOW}','ZYXEL MES3500-24S: {#ZYXEL.FAN.DESCRIPTION} is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','19846f8e671945c68b065ac53ebb2d38');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19195','{24229}=2 and {24230}<>{24231}','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24229}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','60f1b7c76a6b410db3f3a2ae40c3b74c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19196','{24232} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL MES3500-24S: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','','0','2','The upper threshold value of the parameter is exceeded',NULL,'0','2','0','','0','','0','','0','ZYXEL MES3500-24S: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','2a75ca5b7ef444d0a96dcf2d7c824f03');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19197','{24233} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL MES3500-24S: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','','0','2','The parameter values are less than the lower threshold',NULL,'0','2','0','','0','','0','','0','ZYXEL MES3500-24S: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','f2989317c3f847da84979dde3b4f4db4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19198','{24234}<>{24235} and length({24236})>0','ZYXEL MES3500-24S: SFP {#SNMPINDEX} has been replaced','','0','1','SFP {#SNMPINDEX} serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','ZYXEL MES3500-24S: SFP {#SNMPINDEX} has been replaced (new serial number received)','f6533a3fe07c4f0290e7758ac4183a1f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19199','{24237}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL MES3500-24S: Temperature {#ZYXEL.TEMPDESCRIPTION} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c6db10ac3bec446e9152545119b555bc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19200','{24238}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL MES3500-24S: Voltage {#ZYXEL.DESCRIPTION} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','52ac34f156aa434dace3447bb5745b34');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19201','{24239}=0','ZYXEL MGS3520-28x: 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','','3bf5d80d383e4e98853caa02063d69c9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19202','{24240}>{$CPU.UTIL.CRIT}','ZYXEL MGS3520-28x: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL MGS3520-28x: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','96ed7ee3906541ea9cb2c95cf4da1a62');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19203','{24241}<>{24242} and length({24243})>0','ZYXEL MGS3520-28x: Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','3785991565b948c2a1e1a2a140c42df4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19204','{24244}>{$MEMORY.UTIL.MAX}','ZYXEL MGS3520-28x: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','ZYXEL MGS3520-28x: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','1a999dff1dd9481083681741e71aba76');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19205','not({24245}="MGS3520-28" or {24245}="MGS3520-28F")','ZYXEL MGS3520-28x: Template does not match hardware','','0','1','This template is for Zyxel MGS3520-28x series, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','d72bc70a67014d818d593d6c484fc9ee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19206','{24246}<>{24247} and length({24248})>0','ZYXEL MGS3520-28x: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','ZYXEL MGS3520-28x: Device has been replaced (new serial number received)','e953886c5a464fc18bb1e221d801901c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19207','({32475}>0 and {32475}<10m) or ({32475}=0 and {32476}<10m)','ZYXEL MGS3520-28x: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL MGS3520-28x: {HOST.NAME} has been restarted (uptime < 10m)','308761b6dffb44c7b827f6ca76312233');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19208','{24250}<{#ZYXEL.FANRPM.THRESH.LOW}','ZYXEL MGS3520-28x: {#ZYXEL.FAN.DESCRIPTION} is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9eedeb7aaba943c0947896cd50b39c7f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19209','{24251}=2 and {24252}<>{24253}','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24251}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','abb9d47ee9624d6f9805e6eedd5532c5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19210','{24254} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL MGS3520-28x: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','','0','2','The upper threshold value of the parameter is exceeded',NULL,'0','2','0','','0','','0','','0','ZYXEL MGS3520-28x: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','27cd25ea30fa4f1c9b7b431218241d0c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19211','{24255} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL MGS3520-28x: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','','0','2','The parameter values are less than the lower threshold',NULL,'0','2','0','','0','','0','','0','ZYXEL MGS3520-28x: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','1188909e81c14c23aa9eefbb25a4c367');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19212','{24256}<>{24257} and length({24258})>0','ZYXEL MGS3520-28x: SFP {#SNMPINDEX} has been replaced','','0','1','SFP {#SNMPINDEX} serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','ZYXEL MGS3520-28x: SFP {#SNMPINDEX} has been replaced (new serial number received)','b9c3894fed8140c684be7c1fe2bbca8d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19213','{24259}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL MGS3520-28x: Temperature {#ZYXEL.TEMPDESCRIPTION} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c2d4142fb8934eb7b66f5a5e4fa04398');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19214','{24260}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL MGS3520-28x: Voltage {#ZYXEL.DESCRIPTION} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','22b6f2f48eae4167b31c8fe3ccbc138a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19215','{24261}=0','ZYXEL XGS-4728F: 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','','fd9a321842544253896e5a4c1a58ced3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19216','{24262}>{$CPU.UTIL.CRIT}','ZYXEL XGS-4728F: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL XGS-4728F: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','20f368f955f74fc9b8380b1bbff7e057');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19217','{24263}<>{24264} and length({24265})>0','ZYXEL XGS-4728F: Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','5da304609e8c45d980c46579f6848f0a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19218','{24266}<>"XGS-4728F"','ZYXEL XGS-4728F: Template does not match hardware','','0','1','This template is for Zyxel XGS-4728F, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','0329f3f5aa6a4315a4f3611ad662103e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19219','{24267}<>{24268} and length({24269})>0','ZYXEL XGS-4728F: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','ZYXEL XGS-4728F: Device has been replaced (new serial number received)','4df7c31c3079411baabd4ae66e580652');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19220','({32477}>0 and {32477}<10m) or ({32477}=0 and {32478}<10m)','ZYXEL XGS-4728F: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL XGS-4728F: {HOST.NAME} has been restarted (uptime < 10m)','36b9a7d3d3fb45f782a5ea05de6816f9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19221','{24271}<{#ZYXEL.FANRPM.THRESH.LOW}','ZYXEL XGS-4728F: FAN{#SNMPINDEX} is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','012219b8b16941b59d1f9a3f685e9f38');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19222','{24272}>{$MEMORY.UTIL.MAX}','ZYXEL XGS-4728F: High memory utilization in "{#ZYXEL.MEMORY.NAME}" pool','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','ZYXEL XGS-4728F: High memory utilization in "{#ZYXEL.MEMORY.NAME}" pool (>{$MEMORY.UTIL.MAX}% for 5m)','90b328c3b56c417eb938091338bd07fc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19223','{24273}=2 and {24274}<>{24275}','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24273}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','3f3ce5111d47490382cb0c18e2d36f77');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19224','{24276} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL XGS-4728F: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','','0','2','The upper threshold value of the parameter is exceeded',NULL,'0','2','0','','0','','0','','0','ZYXEL XGS-4728F: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','409c52cfed074352810bacfd52aa89f0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19225','{24277} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL XGS-4728F: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','','0','2','The parameter values are less than the lower threshold',NULL,'0','2','0','','0','','0','','0','ZYXEL XGS-4728F: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','a2c40df40a334f6da00a438eb70f8374');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19226','{24278}<>{24279} and length({24280})>0','ZYXEL XGS-4728F: SFP {#SNMPINDEX} has been replaced','','0','1','SFP {#SNMPINDEX} serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','ZYXEL XGS-4728F: SFP {#SNMPINDEX} has been replaced (new serial number received)','632be557ffed439e98425eaa59361e50');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19227','{24281}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL XGS-4728F: Temperature {#ZYXEL.TEMP.ID} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6181f094ae4c4cf4ae4b2e198e2f9b6e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19228','{24282}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL XGS-4728F: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','631202a132dc44afa90b0537f9957ee1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19229','{24447}<>{24448} and length({24449})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','622ac72c0e534bba94bb93636e4dc103');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19230','({32509}>0 and {32509}<10m) or ({32509}=0 and {32510}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','9026e680b409424e8fa29934878cb771');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19231','{24451}=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','','010a749e3a3242cd8e3ea30459fae5a4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19232','{24452}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery is in critical state!','','0','3','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0300b4bf4e0b42adb1b9e4985e80e356');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19233','{24453}<>{$DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery is not in optimal state','','0','2','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','158561ecab8b4bbd9c0a616f419bda10');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19234','{24454}={$DISK.ARRAY.STATUS.CRIT:"inoperable"}','{#DISKARRAY_LOCATION}: Disk array controller is in critical state','','0','4','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','28c32222815f47e193d09afe5aafae79');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19235','{24455}={$DISK.ARRAY.STATUS.WARN:"degraded"}','{#DISKARRAY_LOCATION}: Disk array controller is in warning state','','0','3','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4e758fac4df54388b5f4555bb170bdd3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19236','{24456}>{$DISK.ARRAY.STATUS.OK:"operable"}','{#DISKARRAY_LOCATION}: Disk array controller is not in optimal state','','0','2','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','264e15d04626432987c2193bf190c56c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19237','{24457}={$FAN.STATUS.CRIT:"inoperable"}','{#FAN_LOCATION}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7417bd7646c248eb9664875d7d19e9ea');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19238','{24458}={$FAN.STATUS.WARN:"degraded"}','{#FAN_LOCATION}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b3d6cb64470e4e4c9bf1d619c0015823');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19239','{24459}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {24460}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate on {#IFNAME}','','0','2','Recovers when value below {$IF.ERRORS.WARN:"{#IFNAME}"} threshold.',NULL,'0','2','0','','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate on {#IFNAME} ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','caaa61b8d89540c496678d739610ae38');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19240','{$IFCONTROL:"{#IFNAME}"}=1 and {24461}=2 and ({24462}<>{24463})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24461}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','edfbf339b2664fae88e2a9003383e37f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19241','{24464}<>{24465} and length({24466})>0','{#DISK_LOCATION}: Disk has been replaced','','0','1','Disk serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','{#DISK_LOCATION}: Disk has been replaced (new serial number received)','693cdcf58cb34def90ade23e2f2485cb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19242','{24467}={$DISK.STATUS.CRIT:"bad"} or {24467}={$DISK.STATUS.CRIT:"predictiveFailure"}','{#DISK_LOCATION}: Physical disk error','','0','3','Please check physical disk for warnings or errors',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','ba92b99606fa4bf0bc4f1b6a362c2cdb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19243','{24468}={$DISK.STATUS.FAIL:"failed"}','{#DISK_LOCATION}: Physical disk failed','','0','4','Please check physical disk for warnings or errors',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','eabf5aa62f004a2c996cc11bb5a6716a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19244','{24469}={$PSU.STATUS.CRIT:"inoperable"}','{#PSU_LOCATION}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0d2713cf2b72472c8d8896880476c20e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19245','{24470}={$PSU.STATUS.WARN:"degraded"}','{#PSU_LOCATION}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','468f08407a7448a384e5dcde589cb9d0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19246','{24471}>{$TEMP.MAX.CRIT:"CPU"}','{#SENSOR_LOCATION}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{24472}<{$TEMP.MAX.CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}: Temperature is above critical threshold: >{$TEMP.MAX.CRIT:"CPU"}','c3b3933ceb504207a87054a1f9773a76');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19247','{24473}>{$TEMP.MAX.WARN:"CPU"}','{#SENSOR_LOCATION}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{24474}<{$TEMP.MAX.WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}: Temperature is above warning threshold: >{$TEMP.MAX.WARN:"CPU"}','13b393265f59431687b776297cb0b104');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19248','{24475}>{$TEMP.MAX.CRIT:"Ambient"}','{#SENSOR_LOCATION}.IOH: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{24476}<{$TEMP.MAX.CRIT:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}.IOH: Temperature is above critical threshold: >{$TEMP.MAX.CRIT:"Ambient"}','aa4bf1c8b942462dbd21ccf8bd8c4a6b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19249','{24477}>{$TEMP.MAX.WARN:"Ambient"}','{#SENSOR_LOCATION}.IOH: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{24478}<{$TEMP.MAX.WARN:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}.IOH: Temperature is above warning threshold: >{$TEMP.MAX.WARN:"Ambient"}','7751dd6bf1394daa9d918005d2d99d10');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19250','{24479}>{$TEMP.MAX.CRIT:"Ambient"}','{#SENSOR_LOCATION}.Ambient: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{24480}<{$TEMP.MAX.CRIT:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}.Ambient: Temperature is above critical threshold: >{$TEMP.MAX.CRIT:"Ambient"}','230958b560374a118857b77418c6ba11');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19251','{24481}>{$TEMP.MAX.WARN:"Ambient"}','{#SENSOR_LOCATION}.Ambient: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{24482}<{$TEMP.MAX.WARN:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}.Ambient: Temperature is above warning threshold: >{$TEMP.MAX.WARN:"Ambient"}','4cdcddd04b0e4625893a1e20ce22a10f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19252','{24483}>{$TEMP.MAX.CRIT:"Ambient"}','{#SENSOR_LOCATION}.Front: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{24484}<{$TEMP.MAX.CRIT:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}.Front: Temperature is above critical threshold: >{$TEMP.MAX.CRIT:"Ambient"}','8ee1dfc360aa4aca84a03b452ead92ce');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19253','{24485}>{$TEMP.MAX.WARN:"Ambient"}','{#SENSOR_LOCATION}.Front: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{24486}<{$TEMP.MAX.WARN:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}.Front: Temperature is above warning threshold: >{$TEMP.MAX.WARN:"Ambient"}','196c9fe3facf4e3db348337714c77e17');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19254','{24487}>{$TEMP.MAX.CRIT:"Ambient"}','{#SENSOR_LOCATION}.Rear: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{24488}<{$TEMP.MAX.CRIT:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}.Rear: Temperature is above critical threshold: >{$TEMP.MAX.CRIT:"Ambient"}','a8714fcba51c46f9aa84fa02fba37743');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19255','{24489}>{$TEMP.MAX.WARN:"Ambient"}','{#SENSOR_LOCATION}.Rear: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{24490}<{$TEMP.MAX.WARN:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SENSOR_LOCATION}.Rear: Temperature is above warning threshold: >{$TEMP.MAX.WARN:"Ambient"}','87068c693e574cd3952ca90e95a7a681');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19256','{24491}<>{24492} and length({24493})>0','{#UNIT_LOCATION}: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','{#UNIT_LOCATION}: Device has been replaced (new serial number received)','27253665837647bb9c3be58f7d0881ae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19257','{24494}={$HEALTH.STATUS.CRIT:"computeFailed"} or {24494}={$HEALTH.STATUS.CRIT:"configFailure"} or {24494}={$HEALTH.STATUS.CRIT:"unconfigFailure"} or {24494}={$HEALTH.STATUS.CRIT:"inoperable"}','{#UNIT_LOCATION}: System status is in critical state','','0','4','Please check the device for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7f7c337f4f9f44a3a176acce5bf27f29');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19258','{24495}={$HEALTH.STATUS.WARN:"testFailed"} or {24495}={$HEALTH.STATUS.WARN:"thermalProblem"} or {24495}={$HEALTH.STATUS.WARN:"powerProblem"} or {24495}={$HEALTH.STATUS.WARN:"voltageProblem"} or {24495}={$HEALTH.STATUS.WARN:"diagnosticsFailed"}','{#UNIT_LOCATION}: System status is in warning state','','0','2','Please check the device for warnings',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','15ee6a98f2af4da4bcaa95821ffff524');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19259','{24496}<>{$VDISK.STATUS.OK:"equipped"}','{#VDISK_LOCATION}: Virtual disk is not in OK state','','0','2','Please check virtual disk for warnings or errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','63232b4e1f6b411a93ff8abad1ff3200');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19260','{24500}<>{24501} and length({24502})>0','Dell R720: Firmware has changed','','0','1','Firmware version has changed. Ack to close.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','c7c3d5301c8843528929123e1473af5f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19261','{24503}<>{24504} and length({24505})>0','Dell R720: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Dell R720: Device has been replaced (new serial number received)','53caaec2a0664e879f85c263a43715c3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19262','{24506}=1','Dell R720: Server is in a critical state','','0','4','Please check the device for faults.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','da2b7ee5a60948d582327e8a5a9169b9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19263','{24507}=1','Dell R720: Server is in warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b8294b60044c4549baa7c930ce8acc48');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19264','{24508}=0','Dell R720: Redfish API service is unavailable','','0','4','The service is unavailable or does not accept TCP connections.',NULL,'0','0','0','','0','','0','','0','','24004d9971ea4686b2941ecf8135b421');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19265','{24509}=1','Dell R720: {#BATTERY_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e4549547cb7747318895e6f237fc52b8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19266','{24510}=1','Dell R720: {#BATTERY_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','3788759c5f91471da7cac5560593be2b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19267','{24511}=1','Dell R720: {#CNTLR_NAME} in slot {#SLOT} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d8139731126649a8825550863b9ea832');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19268','{24512}=1','Dell R720: {#CNTLR_NAME} in slot {#SLOT} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6764e247bd64411692e09fe6618c5411');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19269','{24513}=1','Dell R720: {#SENSOR_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c856499a11124210811fec617dbdd8a8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19270','{24514}=1','Dell R720: {#SENSOR_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d97e44aad2e743759dcf486e73b6e141');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19271','{24515}=1','Dell R720: {#IFNAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c83b9b49f9bd4ddd9fb19033b5ad581c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19272','{24516}=1','Dell R720: {#IFNAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','db482b43f586470c9cf46e711954f148');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19273','{$IFCONTROL:"{#IFNAME}"}=1 and ({24517}="Down" and {24518}<>{24519})','Dell R720: {#IFNAME} Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. Condition of difference between last and previous value - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24517}<>"Down" or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','bf30aa7ff82e4d08b3b48ded248c4d46');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19274','{24520}<>{24521} and length({24522})>0','Dell R720: {#DISK_NAME} has been replaced','','0','1','{#DISK_NAME} serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','Dell R720: {#DISK_NAME} has been replaced (new serial number received)','efaef650ead54921b101e0fe4bb4381a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19275','{24523}=1','Dell R720: {#DISK_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','56757be1596c4b0189e5cd6fe0a8fa45');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19276','{24524}=1','Dell R720: {#DISK_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0e68f903e424472dac82f3cbd72ef248');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19277','{24525}=1','Dell R720: {#SENSOR_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1a9a063e006343c0bce9bf21ead9d93f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19278','{24526}=1','Dell R720: {#SENSOR_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c9b528eac8844abea4de8a53c0ff8893');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19279','{24527}=1','Dell R720: {#SENSOR_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c909cc04251c4b53bf512128476dc9ba');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19280','{24528}=1','Dell R720: {#SENSOR_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9d4bede243904a6aa92f96948d6f9ed7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19281','{24529}=1','Dell R720: {#DISK_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2284cde0da39410396fa7dd3d9151d85');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19282','{24530}=1','Dell R720: {#DISK_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ebd49db8ab2f491e9238dd60befe0b20');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19283','{24531}<>{24532} and length({24533})>0','Dell R720: Firmware has changed','','0','1','Firmware version has changed. Ack to close.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','8b88b49aa9584e0e99f1ac5933ece512');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19284','{24534}<>{24535} and length({24536})>0','Dell R720: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Dell R720: Device has been replaced (new serial number received)','7d8f8509b7c24cd495ca16f3b66311a2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19285','{24537}<>{24538} and length({24539})>0','Dell R720: System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Dell R720: System name has changed (new name: {ITEM.VALUE})','8223bb1771ff435eab1e2473073daf63');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19286','{24540}={$HEALTH.STATUS.DISASTER}','Dell R720: System is in unrecoverable state','','0','5','Please check the device for faults.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','8a3c959a946b4945848857b249b6384e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19287','{24541}={$HEALTH.STATUS.CRIT}','Dell R720: System status is in critical state','','0','4','Please check the device for errors.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','922bb76a936741aab560a6c7fdf1609f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19288','{24542}={$HEALTH.STATUS.WARN}','Dell R720: System status is in warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e5335391a2a74e87a4f9964e2b421150');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19289','{24543}<>{24544} and length({24545})>0','Dell R720: Operating system description has changed','','0','1','Operating system description has changed. Possibly, the system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','a9556b21495c4ee4acba1c7b2be8b5b6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19290','({32513}>0 and {32513}<10m) or ({32513}=0 and {32514}<10m)','Dell R720: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Dell R720: {HOST.NAME} has been restarted (uptime < 10m)','a5505bd8d3f64ea1ae02e421a4114d2f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19291','{24547}=0','Dell R720: 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','','ff70ec8e9ea64cbf9638e6d8f5282b0f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19292','{24548}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','Dell R720: {#BATTERY_NAME} is in critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','560ced8dc58a498db8f511e8ecbd7a7d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19293','{24549}={$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','Dell R720: {#BATTERY_NAME} is in warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c3f0750f9d0f4875b81a9381570a9cca');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19294','{24550}<>{$DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','Dell R720: {#BATTERY_NAME} is not in optimal state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d79579790be2485e9f8227be9f460b18');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19295','{24551}={$DISK.ARRAY.STATUS.CRIT}','Dell R720: {#CNTLR_NAME} is in critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','dfd11c71843c4d19b8c216864146217a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19296','{24552}={$DISK.ARRAY.STATUS.FAIL}','Dell R720: {#CNTLR_NAME} is in unrecoverable state','','0','5','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','73b701ac3ef448ceab5df956c9ebefe6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19297','{24553}={$DISK.ARRAY.STATUS.WARN}','Dell R720: {#CNTLR_NAME} is in warning state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4c17ab46f1624c81b5f6ccebaddf76e2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19298','{24554}={$FAN.STATUS.CRIT:"criticalUpper"} or {24554}={$FAN.STATUS.CRIT:"nonRecoverableUpper"} or {24554}={$FAN.STATUS.CRIT:"criticalLower"} or {24554}={$FAN.STATUS.CRIT:"nonRecoverableLower"} or {24554}={$FAN.STATUS.CRIT:"failed"}','Dell R720: {#FAN_DESCR} is in critical state','','0','3','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','02e8e8e511c04ce6b1ced1c9515e4960');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19299','{24555}={$FAN.STATUS.WARN:"nonCriticalUpper"} or {24555}={$FAN.STATUS.WARN:"nonCriticalLower"}','Dell R720: {#FAN_DESCR} is in warning state','','0','2','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','50a0052574744bc0870bfaab56637f16');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19300','{24556}<>{24557} and length({24558})>0','Dell R720: {#DISK_NAME} has been replaced','','0','1','{#DISK_NAME} serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','Dell R720: {#DISK_NAME} has been replaced (new serial number received)','10427c2fdc4243ff9735c3491c65e935');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19301','{24559}={$DISK.SMART.STATUS.FAIL:"replaceDrive"} or {24559}={$DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','Dell R720: {#DISK_NAME} S.M.A.R.T. failed','','0','4','Disk probably requires replacement.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7da1638a51604539a0e1c01b4b038504');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19302','{24560}={$DISK.STATUS.FAIL:"critical"} or {24560}={$DISK.STATUS.FAIL:"nonRecoverable"}','Dell R720: {#DISK_NAME} failed','','0','4','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','38cfba465f624cf897d0650e5a4290c3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19303','{24561}={$DISK.STATUS.WARN:"nonCritical"}','Dell R720: {#DISK_NAME} is in warning state','','0','2','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','779c4a8c62f24d238b53f0ed8ebfcf5b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19304','{24562}={$PSU.STATUS.CRIT:"critical"} or {24562}={$PSU.STATUS.CRIT:"nonRecoverable"}','Dell R720: Power supply {#PSU_DESCR} is in critical state','','0','3','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b40edbb84f174a98be55b659c7766554');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19305','{24563}={$PSU.STATUS.WARN:"nonCritical"}','Dell R720: Power supply {#PSU_DESCR} is in warning state','','0','2','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','217985fe9aed41338e8c2a48af3ceb99');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19306','{24564}={$SENSOR.TEMP.STATUS.CRIT:"criticalUpper"} or {24564}={$SENSOR.TEMP.STATUS.CRIT:"nonRecoverableUpper"} or {24564}={$SENSOR.TEMP.STATUS.CRIT:"criticalLower"} or {24564}={$SENSOR.TEMP.STATUS.CRIT:"nonRecoverableLower"}','Dell R720: Probe {#SENSOR_LOCALE} is in critical status','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','153e7512141f489b84dcc35a7350d6bf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19307','{24565}={$SENSOR.TEMP.STATUS.WARN:"nonCriticalUpper"} or {24565}={$SENSOR.TEMP.STATUS.WARN:"nonCriticalLower"}','Dell R720: Probe {#SENSOR_LOCALE} is in warning status','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','eec3e64901d44a60a268ed30a8394d36');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19308','{24566}<>{$SENSOR.TEMP.STATUS.OK}','Dell R720: Probe {#SENSOR_LOCALE} is not in optimal status','','0','1','Please check the device for faults.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE1}','0','','16dec7f89d9a44c0954bf29c3e32040b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19309','{24567}={$VDISK.STATUS.CRIT:"failed"}','Dell R720: {#DISK_NAME} failed','','0','4','Please check the virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','42bcb2a7d63a46e082f3b6a1c5997fee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19310','{24568}={$VDISK.STATUS.WARN:"degraded"}','Dell R720: {#DISK_NAME} is in warning state','','0','3','Please check the virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ea36db6addcf4bcb9f1c3b822e6c4422');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19311','{24569}<>{24570} and length({24571})>0','Dell R740: Firmware has changed','','0','1','Firmware version has changed. Ack to close.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','520e12fd48354982a1180e6a354b87e8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19312','{24572}<>{24573} and length({24574})>0','Dell R740: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Dell R740: Device has been replaced (new serial number received)','e3efa58c32b044d18675046006c69167');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19313','{24575}=1','Dell R740: Server is in a critical state','','0','4','Please check the device for faults.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','53eb2e16dc2b4b81806c826771da9e78');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19314','{24576}=1','Dell R740: Server is in warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','bce115852baf4fd5a3ddb3245b768eab');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19315','{24577}=0','Dell R740: Redfish API service is unavailable','','0','4','The service is unavailable or does not accept TCP connections.',NULL,'0','0','0','','0','','0','','0','','7da220a774f147b789c7b24d182c617e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19316','{24578}=1','Dell R740: {#BATTERY_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c2b65e66222d49ed9f068217a164a6ef');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19317','{24579}=1','Dell R740: {#BATTERY_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ebe5e46ada29484da840f1eb70a9e43c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19318','{24580}=1','Dell R740: {#CNTLR_NAME} in slot {#SLOT} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b95c92e679ec4f54a83d48f416d2f384');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19319','{24581}=1','Dell R740: {#CNTLR_NAME} in slot {#SLOT} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1251507dfe0c4b5287121436b1869205');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19320','{24582}=1','Dell R740: {#SENSOR_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','17598a47dfdc41558ab171a306c06685');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19321','{24583}=1','Dell R740: {#SENSOR_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ab2cfb7eeb8b439f8149814c986e2d46');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19322','{24584}=1','Dell R740: {#IFNAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9a08ad3f597549f0841678ba572669c4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19323','{24585}=1','Dell R740: {#IFNAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d7f205844d7a4ed3a34405aa184faa1d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19324','{$IFCONTROL:"{#IFNAME}"}=1 and ({24586}="Down" and {24587}<>{24588})','Dell R740: {#IFNAME} Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. Condition of difference between last and previous value - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24586}<>"Down" or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','6372dcbe18034e92b89c7e2503a378cb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19325','{24589}<>{24590} and length({24591})>0','Dell R740: {#DISK_NAME} has been replaced','','0','1','{#DISK_NAME} serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','Dell R740: {#DISK_NAME} has been replaced (new serial number received)','f1c78511b2ec49c29bf1e31d05826b98');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19326','{24592}=1','Dell R740: {#DISK_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c8a872dca90e4d6aaa5422726779acbd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19327','{24593}=1','Dell R740: {#DISK_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','aafddfabfc9c4866b60c8e2a9b267c85');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19328','{24594}=1','Dell R740: {#SENSOR_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0ad250b5037247ab971a266319989ec4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19329','{24595}=1','Dell R740: {#SENSOR_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6ca3f32810a04df2bed7e64df008451f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19330','{24596}=1','Dell R740: {#SENSOR_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','32134fb04cb3457abc98803d79007ea4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19331','{24597}=1','Dell R740: {#SENSOR_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f16bf4a4d5e140f7a6c1ea9112752710');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19332','{24598}=1','Dell R740: {#DISK_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','61f1fea5489a436790791636b3797837');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19333','{24599}=1','Dell R740: {#DISK_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','13929a816d8c4cb6abc24c681a154205');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19334','{24600}<>{24601} and length({24602})>0','Dell R740: Firmware has changed','','0','1','Firmware version has changed. Ack to close.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','fc9618eb512e4d9b9eddf21c2700582e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19335','{24603}<>{24604} and length({24605})>0','Dell R740: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Dell R740: Device has been replaced (new serial number received)','21ee92eed6f04ea59864dd09b1fac68a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19336','{24606}<>{24607} and length({24608})>0','Dell R740: System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Dell R740: System name has changed (new name: {ITEM.VALUE})','edc8087b2d2b423fb637b7caefeb50fb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19337','{24609}={$HEALTH.STATUS.DISASTER}','Dell R740: System is in unrecoverable state','','0','5','Please check the device for faults.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2a44b7a84ef84d25a40e58239cc305d1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19338','{24610}={$HEALTH.STATUS.CRIT}','Dell R740: System status is in critical state','','0','4','Please check the device for errors.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7efda5ac8a21449ba32ff3f005433fc1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19339','{24611}={$HEALTH.STATUS.WARN}','Dell R740: System status is in warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','5d3dd609897a4f9ba644db1916045a6f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19340','{24612}<>{24613} and length({24614})>0','Dell R740: Operating system description has changed','','0','1','Operating system description has changed. Possibly, the system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','9917b5d4d2684398b09ce42842b15146');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19341','({32515}>0 and {32515}<10m) or ({32515}=0 and {32516}<10m)','Dell R740: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Dell R740: {HOST.NAME} has been restarted (uptime < 10m)','91449180f6dd435f8104a51ae5645fc3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19342','{24616}=0','Dell R740: 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','','6c5688c758b64c2f91f2523855578be9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19343','{24617}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','Dell R740: {#BATTERY_NAME} is in critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','19f9217f3d3a4f98a516c3569d35bd21');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19344','{24618}={$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','Dell R740: {#BATTERY_NAME} is in warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b89350f48b354abf864372e3210cbb76');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19345','{24619}<>{$DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','Dell R740: {#BATTERY_NAME} is not in optimal state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','df1277db9cae4a10b18d08a38fefaec5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19346','{24620}={$DISK.ARRAY.STATUS.CRIT}','Dell R740: {#CNTLR_NAME} is in critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1be163a9cbf241deb9075ff06b596eb6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19347','{24621}={$DISK.ARRAY.STATUS.FAIL}','Dell R740: {#CNTLR_NAME} is in unrecoverable state','','0','5','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9ba11fff789445e69be1a53fa7d0e07e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19348','{24622}={$DISK.ARRAY.STATUS.WARN}','Dell R740: {#CNTLR_NAME} is in warning state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0c06b18258914e7c8dc9941d0b94f512');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19349','{24623}={$FAN.STATUS.CRIT:"criticalUpper"} or {24623}={$FAN.STATUS.CRIT:"nonRecoverableUpper"} or {24623}={$FAN.STATUS.CRIT:"criticalLower"} or {24623}={$FAN.STATUS.CRIT:"nonRecoverableLower"} or {24623}={$FAN.STATUS.CRIT:"failed"}','Dell R740: {#FAN_DESCR} is in critical state','','0','3','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','87d1cd50bf134d6e8bf30e1c97b63880');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19350','{24624}={$FAN.STATUS.WARN:"nonCriticalUpper"} or {24624}={$FAN.STATUS.WARN:"nonCriticalLower"}','Dell R740: {#FAN_DESCR} is in warning state','','0','2','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','79dc96ea76e44df9b7e0615c97bcd3a7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19351','{24625}<>{24626} and length({24627})>0','Dell R740: {#DISK_NAME} has been replaced','','0','1','{#DISK_NAME} serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','Dell R740: {#DISK_NAME} has been replaced (new serial number received)','6a99f1c73c9644369947c25d187e812c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19352','{24628}={$DISK.SMART.STATUS.FAIL:"replaceDrive"} or {24628}={$DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','Dell R740: {#DISK_NAME} S.M.A.R.T. failed','','0','4','Disk probably requires replacement.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b8d469d16cd7455a94daeeeafb1be82e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19353','{24629}={$DISK.STATUS.FAIL:"critical"} or {24629}={$DISK.STATUS.FAIL:"nonRecoverable"}','Dell R740: {#DISK_NAME} failed','','0','4','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','940630ac993842379dbd17168fcc3f4e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19354','{24630}={$DISK.STATUS.WARN:"nonCritical"}','Dell R740: {#DISK_NAME} is in warning state','','0','2','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4b252f24da774362a77be992e0c2e1da');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19355','{24631}={$PSU.STATUS.CRIT:"critical"} or {24631}={$PSU.STATUS.CRIT:"nonRecoverable"}','Dell R740: Power supply {#PSU_DESCR} is in critical state','','0','3','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6e055e9cf8e34d189b96c121f05cb529');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19356','{24632}={$PSU.STATUS.WARN:"nonCritical"}','Dell R740: Power supply {#PSU_DESCR} is in warning state','','0','2','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','65f2765b5b4e4297ac7cc93499466cc2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19357','{24633}={$SENSOR.TEMP.STATUS.CRIT:"criticalUpper"} or {24633}={$SENSOR.TEMP.STATUS.CRIT:"nonRecoverableUpper"} or {24633}={$SENSOR.TEMP.STATUS.CRIT:"criticalLower"} or {24633}={$SENSOR.TEMP.STATUS.CRIT:"nonRecoverableLower"}','Dell R740: Probe {#SENSOR_LOCALE} is in critical status','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','a145a8ebf20641b8b2907e1c3e4048d5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19358','{24634}={$SENSOR.TEMP.STATUS.WARN:"nonCriticalUpper"} or {24634}={$SENSOR.TEMP.STATUS.WARN:"nonCriticalLower"}','Dell R740: Probe {#SENSOR_LOCALE} is in warning status','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','fa01e3ea0b5e44739f5ceef4db36cf43');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19359','{24635}<>{$SENSOR.TEMP.STATUS.OK}','Dell R740: Probe {#SENSOR_LOCALE} is not in optimal status','','0','1','Please check the device for faults.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE1}','0','','128395cf2bbf43cf9311bb6dd6573f40');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19360','{24636}={$VDISK.STATUS.CRIT:"failed"}','Dell R740: {#DISK_NAME} failed','','0','4','Please check the virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','128bcdb7dc7b445390edd429d01dabf8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19361','{24637}={$VDISK.STATUS.WARN:"degraded"}','Dell R740: {#DISK_NAME} is in warning state','','0','3','Please check the virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ce63508ee9c64b80bfaf95568dd7954f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19362','{24638}<>{24639} and length({24640})>0','Dell R820: Firmware has changed','','0','1','Firmware version has changed. Ack to close.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','1aa78b67649f41418c5690637fb3216b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19363','{24641}<>{24642} and length({24643})>0','Dell R820: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Dell R820: Device has been replaced (new serial number received)','0d3a4dd2772f41029e599766fff1e651');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19364','{24644}=1','Dell R820: Server is in a critical state','','0','4','Please check the device for faults.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b622a90916554829bfcc8bc7be30db8e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19365','{24645}=1','Dell R820: Server is in warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4c9fe8b20c7d48988a921c1b35879a9b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19366','{24646}=0','Dell R820: Redfish API service is unavailable','','0','4','The service is unavailable or does not accept TCP connections.',NULL,'0','0','0','','0','','0','','0','','fd124cb97a6446b990898d0bd2380e9d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19367','{24647}=1','Dell R820: {#BATTERY_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f0ed031944d643a68b86f5712703b0c0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19368','{24648}=1','Dell R820: {#BATTERY_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7346dc1852864303b6c53497addc171f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19369','{24649}=1','Dell R820: {#CNTLR_NAME} in slot {#SLOT} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','bf1d53ff79c749639566841aadb21374');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19370','{24650}=1','Dell R820: {#CNTLR_NAME} in slot {#SLOT} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e0829f437b384ecf8edf531d56c20b17');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19371','{24651}=1','Dell R820: {#SENSOR_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','09acd6d995b84bacbb66eb643ec24cfa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19372','{24652}=1','Dell R820: {#SENSOR_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','df3aa4ffcf69431db20b454c5bb1e5a8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19373','{24653}=1','Dell R820: {#IFNAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d21bc28f75ac486b8f4ca06baaaecd9b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19374','{24654}=1','Dell R820: {#IFNAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','185495870adc40578145f18b7225c5fa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19375','{$IFCONTROL:"{#IFNAME}"}=1 and ({24655}="Down" and {24656}<>{24657})','Dell R820: {#IFNAME} Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. Condition of difference between last and previous value - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24655}<>"Down" or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','50c9fb7b16144f5d8d1cfe7e064d39d2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19376','{24658}<>{24659} and length({24660})>0','Dell R820: {#DISK_NAME} has been replaced','','0','1','{#DISK_NAME} serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','Dell R820: {#DISK_NAME} has been replaced (new serial number received)','6a2ad425b7654a58825a5032194204bd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19377','{24661}=1','Dell R820: {#DISK_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','39217fce69c84cd194e89543816ed35e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19378','{24662}=1','Dell R820: {#DISK_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','88db6b4134034b348d1c0f89fc14d1dd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19379','{24663}=1','Dell R820: {#SENSOR_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ef33d08d8aa94fa69343cc1235138590');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19380','{24664}=1','Dell R820: {#SENSOR_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','81984cf66e464b44bd37016ef8daa70f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19381','{24665}=1','Dell R820: {#SENSOR_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','618d67476d224291a89067e8050acfb6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19382','{24666}=1','Dell R820: {#SENSOR_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f95b940cf5654419b1a51f704bfb1830');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19383','{24667}=1','Dell R820: {#DISK_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','088ec5d991ed496884b22cd72c8ab891');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19384','{24668}=1','Dell R820: {#DISK_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f3c8763499994ee1b5750afaa54290d1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19385','{24669}<>{24670} and length({24671})>0','Dell R820: Firmware has changed','','0','1','Firmware version has changed. Ack to close.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','db34a06be1bc43e2a244148cb742bcea');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19386','{24672}<>{24673} and length({24674})>0','Dell R820: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Dell R820: Device has been replaced (new serial number received)','07b08a664af94a889e000aaf4d137bbb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19387','{24675}<>{24676} and length({24677})>0','Dell R820: System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Dell R820: System name has changed (new name: {ITEM.VALUE})','57624ace90564129926aadc7019452ff');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19388','{24678}={$HEALTH.STATUS.DISASTER}','Dell R820: System is in unrecoverable state','','0','5','Please check the device for faults.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ba4a8d9fc5ef43af959456a10c8f7daf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19389','{24679}={$HEALTH.STATUS.CRIT}','Dell R820: System status is in critical state','','0','4','Please check the device for errors.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6626cc1193d04c48be02de9b261d0d4e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19390','{24680}={$HEALTH.STATUS.WARN}','Dell R820: System status is in warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','535ea4f1ed6a44ebacbc94c899f60965');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19391','{24681}<>{24682} and length({24683})>0','Dell R820: Operating system description has changed','','0','1','Operating system description has changed. Possibly, the system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','f0331e24079347d58f3e5df328cfbd0c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19392','({32517}>0 and {32517}<10m) or ({32517}=0 and {32518}<10m)','Dell R820: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Dell R820: {HOST.NAME} has been restarted (uptime < 10m)','97c232039b0e441997642bb39cc7bf2b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19393','{24685}=0','Dell R820: 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','','85492273336d43219fa7e2eef4208359');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19394','{24686}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','Dell R820: {#BATTERY_NAME} is in critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e6e2bd66c55744b0854d95669c0aa626');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19395','{24687}={$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','Dell R820: {#BATTERY_NAME} is in warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','3a7bfd13ad224bb6b0d4a3d38aa0a319');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19396','{24688}<>{$DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','Dell R820: {#BATTERY_NAME} is not in optimal state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e7d512abbd204adc81e2f5a59f0e761b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19397','{24689}={$DISK.ARRAY.STATUS.CRIT}','Dell R820: {#CNTLR_NAME} is in critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','70087ca390524853bd80dd6906ed038d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19398','{24690}={$DISK.ARRAY.STATUS.FAIL}','Dell R820: {#CNTLR_NAME} is in unrecoverable state','','0','5','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b516a87aac0d48c285cf23c8a2d5e9be');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19399','{24691}={$DISK.ARRAY.STATUS.WARN}','Dell R820: {#CNTLR_NAME} is in warning state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a53035ca17604f69b2d878c50b69bbc1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19400','{24692}={$FAN.STATUS.CRIT:"criticalUpper"} or {24692}={$FAN.STATUS.CRIT:"nonRecoverableUpper"} or {24692}={$FAN.STATUS.CRIT:"criticalLower"} or {24692}={$FAN.STATUS.CRIT:"nonRecoverableLower"} or {24692}={$FAN.STATUS.CRIT:"failed"}','Dell R820: {#FAN_DESCR} is in critical state','','0','3','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','faf3982240ea4424af8b3c9135d240ca');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19401','{24693}={$FAN.STATUS.WARN:"nonCriticalUpper"} or {24693}={$FAN.STATUS.WARN:"nonCriticalLower"}','Dell R820: {#FAN_DESCR} is in warning state','','0','2','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6f80cea251574ed7895694de10f0742c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19402','{24694}<>{24695} and length({24696})>0','Dell R820: {#DISK_NAME} has been replaced','','0','1','{#DISK_NAME} serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','Dell R820: {#DISK_NAME} has been replaced (new serial number received)','2c5ca847d2ca41e199740645c74a2fd7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19403','{24697}={$DISK.SMART.STATUS.FAIL:"replaceDrive"} or {24697}={$DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','Dell R820: {#DISK_NAME} S.M.A.R.T. failed','','0','4','Disk probably requires replacement.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b2b1013ff96243d48b468213c56bf51f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19404','{24698}={$DISK.STATUS.FAIL:"critical"} or {24698}={$DISK.STATUS.FAIL:"nonRecoverable"}','Dell R820: {#DISK_NAME} failed','','0','4','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','a78f3f6171e748e695d464adefe1978c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19405','{24699}={$DISK.STATUS.WARN:"nonCritical"}','Dell R820: {#DISK_NAME} is in warning state','','0','2','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f62e8c34700e4b668af71da9a8d0c973');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19406','{24700}={$PSU.STATUS.CRIT:"critical"} or {24700}={$PSU.STATUS.CRIT:"nonRecoverable"}','Dell R820: Power supply {#PSU_DESCR} is in critical state','','0','3','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','8e28009ef16c441d93bc0fa794232b4c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19407','{24701}={$PSU.STATUS.WARN:"nonCritical"}','Dell R820: Power supply {#PSU_DESCR} is in warning state','','0','2','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1de5a20506d04b3a84deaa70b232101b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19408','{24702}={$SENSOR.TEMP.STATUS.CRIT:"criticalUpper"} or {24702}={$SENSOR.TEMP.STATUS.CRIT:"nonRecoverableUpper"} or {24702}={$SENSOR.TEMP.STATUS.CRIT:"criticalLower"} or {24702}={$SENSOR.TEMP.STATUS.CRIT:"nonRecoverableLower"}','Dell R820: Probe {#SENSOR_LOCALE} is in critical status','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','9a082c7fc18641fe8e2d42d9c2acc607');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19409','{24703}={$SENSOR.TEMP.STATUS.WARN:"nonCriticalUpper"} or {24703}={$SENSOR.TEMP.STATUS.WARN:"nonCriticalLower"}','Dell R820: Probe {#SENSOR_LOCALE} is in warning status','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','fdf4ccc98a894cabbdf4cbd4d32b2270');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19410','{24704}<>{$SENSOR.TEMP.STATUS.OK}','Dell R820: Probe {#SENSOR_LOCALE} is not in optimal status','','0','1','Please check the device for faults.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE1}','0','','c26c12068ec2429694491c3c74380091');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19411','{24705}={$VDISK.STATUS.CRIT:"failed"}','Dell R820: {#DISK_NAME} failed','','0','4','Please check the virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1c5a5635d0b548839e19d8272642f0aa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19412','{24706}={$VDISK.STATUS.WARN:"degraded"}','Dell R820: {#DISK_NAME} is in warning state','','0','3','Please check the virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6d35cf89f9a44498b25303811609ccdb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19413','{24707}<>{24708} and length({24709})>0','Dell R840: Firmware has changed','','0','1','Firmware version has changed. Ack to close.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','9fa14edc793842ba8858dd09d1c3058c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19414','{24710}<>{24711} and length({24712})>0','Dell R840: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Dell R840: Device has been replaced (new serial number received)','5932f468c8614187aefc284a5c2e1475');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19415','{24713}=1','Dell R840: Server is in a critical state','','0','4','Please check the device for faults.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','41fac4cfc084411081db8d7a4b81e18d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19416','{24714}=1','Dell R840: Server is in warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','60a19490be4142be800a8a9fc2c3917d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19417','{24715}=0','Dell R840: Redfish API service is unavailable','','0','4','The service is unavailable or does not accept TCP connections.',NULL,'0','0','0','','0','','0','','0','','bb504167936543818487aef62bb5bbb1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19418','{24716}=1','Dell R840: {#BATTERY_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4e8f7f543ff9448ba091117548a7957c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19419','{24717}=1','Dell R840: {#BATTERY_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','76035c29874c4ad5912737230b0fcfcb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19420','{24718}=1','Dell R840: {#CNTLR_NAME} in slot {#SLOT} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','94f468fe3f8142b4903a4e4f7186d5f8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19421','{24719}=1','Dell R840: {#CNTLR_NAME} in slot {#SLOT} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9b4f65ee67b748469d4226d556211de1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19422','{24720}=1','Dell R840: {#SENSOR_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','45d2e75c18b34f5aa1e46296d71debe4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19423','{24721}=1','Dell R840: {#SENSOR_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9b5b5fd923624f05bb7c9cce28f29116');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19424','{24722}=1','Dell R840: {#IFNAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f46e4a69e41a42d091f378d7dc0fa3c2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19425','{24723}=1','Dell R840: {#IFNAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e325ba5c20834fa6ad7db6cb2a12a927');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19426','{$IFCONTROL:"{#IFNAME}"}=1 and ({24724}="Down" and {24725}<>{24726})','Dell R840: {#IFNAME} Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. Condition of difference between last and previous value - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{24724}<>"Down" or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','b3c1ceb91dc342d9aa4c05ca4b55b10c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19427','{24727}<>{24728} and length({24729})>0','Dell R840: {#DISK_NAME} has been replaced','','0','1','{#DISK_NAME} serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','Dell R840: {#DISK_NAME} has been replaced (new serial number received)','859aeaa7bebb4958ac82b19d787a1d34');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19428','{24730}=1','Dell R840: {#DISK_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','92c13e7385be48f898a74ee54d8ec382');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19429','{24731}=1','Dell R840: {#DISK_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a1c432739ea942c7a7463531d4b268c9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19430','{24732}=1','Dell R840: {#SENSOR_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4b381c89bf0e41f1843eff537f20db34');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19431','{24733}=1','Dell R840: {#SENSOR_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4f72a8417a9048449ab56353c27fe0b7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19432','{24734}=1','Dell R840: {#SENSOR_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','8611c1a1594a45318da88cd556db6310');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19433','{24735}=1','Dell R840: {#SENSOR_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9f9ff19a71274eef890776c942b3dfa1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19434','{24736}=1','Dell R840: {#DISK_NAME} is in a critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6c9e68f155634b9e95beeaf4cbf06ce2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19435','{24737}=1','Dell R840: {#DISK_NAME} is in warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ceb271b06657474aa9a9b0c4c7462474');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19436','{24738}<>{24739} and length({24740})>0','Dell R840: Firmware has changed','','0','1','Firmware version has changed. Ack to close.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','c8e3831037544a87abbd671fe191ab98');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19437','{24741}<>{24742} and length({24743})>0','Dell R840: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Dell R840: Device has been replaced (new serial number received)','89f591b666d34aceb71715bfcdda6bff');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19438','{24744}<>{24745} and length({24746})>0','Dell R840: System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Dell R840: System name has changed (new name: {ITEM.VALUE})','7a56b961a858470d82c6fdef62f88f43');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19439','{24747}={$HEALTH.STATUS.DISASTER}','Dell R840: System is in unrecoverable state','','0','5','Please check the device for faults.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','db2cabad4c3048d692333ae02ec125fe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19440','{24748}={$HEALTH.STATUS.CRIT}','Dell R840: System status is in critical state','','0','4','Please check the device for errors.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','65c0bb42f06c463abbf667480cafa40f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19441','{24749}={$HEALTH.STATUS.WARN}','Dell R840: System status is in warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4f8b4ed834504bb5bb6d7c7b9d22700e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19442','{24750}<>{24751} and length({24752})>0','Dell R840: Operating system description has changed','','0','1','Operating system description has changed. Possibly, the system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','09a2b4ec3e1943b598347358b442b662');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19443','({32519}>0 and {32519}<10m) or ({32519}=0 and {32520}<10m)','Dell R840: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Dell R840: {HOST.NAME} has been restarted (uptime < 10m)','def9f4b7093f421893d2a65f6416cfe5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19444','{24754}=0','Dell R840: 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','','c428f917029346679f8763611f5357f0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19445','{24755}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','Dell R840: {#BATTERY_NAME} is in critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','8d4d468bddf14d659ecbf002e37dcafc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19446','{24756}={$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','Dell R840: {#BATTERY_NAME} is in warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','afcd3be7b0e343bdbeff78f87ba4f803');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19447','{24757}<>{$DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','Dell R840: {#BATTERY_NAME} is not in optimal state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ab4482d1d0244a25a5dccf787af77fe0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19448','{24758}={$DISK.ARRAY.STATUS.CRIT}','Dell R840: {#CNTLR_NAME} is in critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d3111ea966db4b4993d119eb92c5362b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19449','{24759}={$DISK.ARRAY.STATUS.FAIL}','Dell R840: {#CNTLR_NAME} is in unrecoverable state','','0','5','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ee5704a6f6fc4e5396a90fc51293fbe6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19450','{24760}={$DISK.ARRAY.STATUS.WARN}','Dell R840: {#CNTLR_NAME} is in warning state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','3bd0b53f65114218b4ce01b4923add3b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19451','{24761}={$FAN.STATUS.CRIT:"criticalUpper"} or {24761}={$FAN.STATUS.CRIT:"nonRecoverableUpper"} or {24761}={$FAN.STATUS.CRIT:"criticalLower"} or {24761}={$FAN.STATUS.CRIT:"nonRecoverableLower"} or {24761}={$FAN.STATUS.CRIT:"failed"}','Dell R840: {#FAN_DESCR} is in critical state','','0','3','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c35ca42a1b304ef6a279c959970ce205');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19452','{24762}={$FAN.STATUS.WARN:"nonCriticalUpper"} or {24762}={$FAN.STATUS.WARN:"nonCriticalLower"}','Dell R840: {#FAN_DESCR} is in warning state','','0','2','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c5f641ddfb9547188d937f9a5554931a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19453','{24763}<>{24764} and length({24765})>0','Dell R840: {#DISK_NAME} has been replaced','','0','1','{#DISK_NAME} serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','Dell R840: {#DISK_NAME} has been replaced (new serial number received)','98c1eb636c534d20ba14d19efe174d9c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19454','{24766}={$DISK.SMART.STATUS.FAIL:"replaceDrive"} or {24766}={$DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','Dell R840: {#DISK_NAME} S.M.A.R.T. failed','','0','4','Disk probably requires replacement.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f86285d7142e494998da999d56173dd7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19455','{24767}={$DISK.STATUS.FAIL:"critical"} or {24767}={$DISK.STATUS.FAIL:"nonRecoverable"}','Dell R840: {#DISK_NAME} failed','','0','4','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','034509befd5e497ba9c255034171b6c0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19456','{24768}={$DISK.STATUS.WARN:"nonCritical"}','Dell R840: {#DISK_NAME} is in warning state','','0','2','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','be7cfc31a83a4ab9a91150e480c2a1f0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19457','{24769}={$PSU.STATUS.CRIT:"critical"} or {24769}={$PSU.STATUS.CRIT:"nonRecoverable"}','Dell R840: Power supply {#PSU_DESCR} is in critical state','','0','3','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2228b8364d12446181b79a7d5efdc598');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19458','{24770}={$PSU.STATUS.WARN:"nonCritical"}','Dell R840: Power supply {#PSU_DESCR} is in warning state','','0','2','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c661b2832e1d4c0392e24bbb2c8eaca5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19459','{24771}={$SENSOR.TEMP.STATUS.CRIT:"criticalUpper"} or {24771}={$SENSOR.TEMP.STATUS.CRIT:"nonRecoverableUpper"} or {24771}={$SENSOR.TEMP.STATUS.CRIT:"criticalLower"} or {24771}={$SENSOR.TEMP.STATUS.CRIT:"nonRecoverableLower"}','Dell R840: Probe {#SENSOR_LOCALE} is in critical status','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','5b552c02873e4ae39b378362c083fb8b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19460','{24772}={$SENSOR.TEMP.STATUS.WARN:"nonCriticalUpper"} or {24772}={$SENSOR.TEMP.STATUS.WARN:"nonCriticalLower"}','Dell R840: Probe {#SENSOR_LOCALE} is in warning status','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','34638bcb7b3940e7ad69c7cf2f2c330d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19461','{24773}<>{$SENSOR.TEMP.STATUS.OK}','Dell R840: Probe {#SENSOR_LOCALE} is not in optimal status','','0','1','Please check the device for faults.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE1}','0','','0f7c75277fb64927943339a8b32d7dfb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19462','{24774}={$VDISK.STATUS.CRIT:"failed"}','Dell R840: {#DISK_NAME} failed','','0','4','Please check the virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','96f488d383e9445b9646ff18f69eea9a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19463','{24775}={$VDISK.STATUS.WARN:"degraded"}','Dell R840: {#DISK_NAME} is in warning state','','0','3','Please check the virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','37777a2664ea46399847736412b937c5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19464','{24788}<>{24789} and length({24790})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','1bc442ba67dc42d298d98feb845d8730');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19465','{24791}<>{24792} and length({24793})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','87570f607b174ebe887920034a1be1ef');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19466','{24794}={$HEALTH.STATUS.CRIT}','System status is in critical state','','0','4','Please check the device for errors.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4d7ac12aec954df2b369ddd0536d3bd5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19467','{24795}={$HEALTH.STATUS.WARN}','System status is in warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9ffbca9c012541b9a36956b4ae06d339');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19468','({32523}>0 and {32523}<10m) or ({32523}=0 and {32524}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','9159ee66dbe4498cba29daca24ddcb5f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19469','{24797}=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','','236a5d37e58a415aa81db6e59eb826dc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19470','{24798}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"failed"} or {24798}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"capacitorFailed"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','42c0ff05c06f47089322dface6c54778');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19471','{24799}={$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"degraded"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','28f83720bdd84ab3acb43cc8caac7507');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19472','{24800}={$DISK.ARRAY.CACHE.STATUS.CRIT:"cacheModCriticalFailure"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in critical state!','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d9fc0ecef7844e7190d89f4747f82661');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19473','{24801}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModDegradedFailsafeSpeed"} or {24801}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheReadCacheNotMapped"} or {24801}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModFlashMemNotAttached"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9b60ae9eec734644bcff9cbac9407b08');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19474','{24802}<>{$DISK.ARRAY.CACHE.STATUS.OK:"enabled"} and {24802}<>{$DISK.ARRAY.CACHE.STATUS.WARN:"invalid"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is not in optimal state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','61e28304c16f4855abfbcef8249a2fa6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19475','{24803}={$DISK.ARRAY.STATUS.CRIT}','{#CNTLR_LOCATION}: Disk array controller is in critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d0e8bcc0510c4e86bfcd3e9d601f83e0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19476','{24804}={$DISK.ARRAY.STATUS.WARN}','{#CNTLR_LOCATION}: Disk array controller is in warning state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a38ea92527b44599b690c068a62481ed');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19477','{24805}={$FAN.STATUS.CRIT}','Fan {#SNMPINDEX}: Fan is in critical state','','0','3','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ab33e6666fd14aac8f703c72fd9b760e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19478','{24806}={$FAN.STATUS.WARN}','Fan {#SNMPINDEX}: Fan is in warning state','','0','2','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a9098b4dcbe04b3a82f0353f115345d7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19479','{24807}=3','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has failed','','0','4','Please check the physical adapter.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','477f8237ed7c4d99af92e94f7563e01c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19480','{24808}=4','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has lost link','','0','3','Please check the cable connections to this adapter.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','5962382262854335bc42ae47203e44a7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19481','{24809}<>{24810} and length({24811})>0','{#DISK_LOCATION}: Disk has been replaced','','0','1','Disk serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','{#DISK_LOCATION}: Disk has been replaced (new serial number received)','d3dbef930bca4808ae3bf32ba84a987a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19482','{24812}={$DISK.SMART.STATUS.FAIL:"replaceDrive"} or {24812}={$DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','{#DISK_LOCATION}: Physical disk S.M.A.R.T. failed','','0','4','Disk probably requires replacement.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6fb9a3a867f74290974b106755763369');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19483','{24813}={$DISK.STATUS.FAIL}','{#DISK_LOCATION}: Physical disk failed','','0','4','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','21224423e69148a797e5ae4fcdda8ed5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19484','{24814}={$DISK.STATUS.WARN}','{#DISK_LOCATION}: Physical disk is in warning state','','0','2','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ff246b7598f24ab88aa6e7119750e57b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19485','{24815}={$PSU.STATUS.CRIT}','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in critical state','','0','3','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c0976740671a4ee1b524b2be84eac05f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19486','{24816}={$PSU.STATUS.WARN}','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in warning state','','0','2','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4245fe8df0ec42fb8698cd54810357d0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19487','{24817} = 1','Ambient: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','12ca340ef2cc4d639940375e84fc1384');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19488','{24818} = 4','Ambient: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','83775e86b0b6450399f0739bcd7aeb42');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19489','{24819} = 3','Ambient: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','1e61e8b2ba4346f2962a3498a147f65e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19490','{24820} = 1','CPU-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','b3b17ce8480f4ff5bbc4cba02e53190d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19491','{24821} = 4','CPU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','1d2cc0b823134b9b901a0292e731f882');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19492','{24822} = 3','CPU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','c9edcad3712d4915a5a3700916621525');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19493','{24823} = 1','{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','1978105618f44f439f40b7e6b7dbb5dc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19494','{24824} = 4','{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','feee1c3e792044ecbb07ffed47b2fddd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19495','{24825} = 3','{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','250291ba7b404dd287b14034145d7ee0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19496','{24826} = 1','I/O-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','2d06da621e5946ea88bf158cabd4fcbd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19497','{24827} = 4','I/O-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','5ca16e1ea7d84aa7bed31ba05f7df50e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19498','{24828} = 3','I/O-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','8a2468bf1cd14065af733b0d045c6031');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19499','{24829} = 1','Memory-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','997f65c5ee1d473dbe22a8517091cf3e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19500','{24830} = 4','Memory-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','8c3b5591160e4797ae1b49f9f14439ff');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19501','{24831} = 3','Memory-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','8665b434ba594073bc55f44b668dcee0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19502','{24832} = 1','PSU-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','a292c5aaa1b3428aa4b011854d9c5e1d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19503','{24833} = 4','PSU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','f557d93b186b42b4931e23640e54648f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19504','{24834} = 3','PSU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','e3cac6176199401181fbbeacf4838bad');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19505','{24835} = 1','System-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','1bad1b13dcdf4689b9a784e44726196b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19506','{24836} = 4','System-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','42fff974036d4fb6b9181adf1b3efa09');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19507','{24837} = 3','System-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','d184f774ab614a0b9f1f7ebc82cd1356');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19508','{24838}={$VDISK.STATUS.CRIT}','Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk failed','','0','4','Please check virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e11c5781a34642c49ad15cdcd71dacc3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19509','{24839}<>{$VDISK.STATUS.OK}','Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk is not in OK state','','0','2','Please check virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','10f0bdba64184a9389a46b9bab18719a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19510','{24840}<>{24841} and length({24842})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','9eb77df5f95149e49d63a7191e68756c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19511','{24843}<>{24844} and length({24845})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','c0eed9d2eccc4ae99128a318de92df8d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19512','{24846}={$HEALTH.STATUS.CRIT}','System status is in critical state','','0','4','Please check the device for errors.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','187f7a3872a2481f962f16c422911827');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19513','{24847}={$HEALTH.STATUS.WARN}','System status is in warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','51c633cbed0d4684b2e0619e2f0ab64d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19514','({32525}>0 and {32525}<10m) or ({32525}=0 and {32526}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','97f107c88b6048f1b74412e8dfedc857');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19515','{24849}=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','','35cce5a461c04163a0575d7f831ea3d9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19516','{24850}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"failed"} or {24850}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"capacitorFailed"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','507e925180034f2d97d09f9fd5c9e311');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19517','{24851}={$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"degraded"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','20625bb4b0b74d98818685991ac5df66');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19518','{24852}={$DISK.ARRAY.CACHE.STATUS.CRIT:"cacheModCriticalFailure"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in critical state!','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a470d994b661401882162dc2267eaa3d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19519','{24853}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModDegradedFailsafeSpeed"} or {24853}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheReadCacheNotMapped"} or {24853}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModFlashMemNotAttached"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','5d0fd4a9b8bc49aaaeb213b310b85606');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19520','{24854}<>{$DISK.ARRAY.CACHE.STATUS.OK:"enabled"} and {24854}<>{$DISK.ARRAY.CACHE.STATUS.WARN:"invalid"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is not in optimal state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1efe26e2e6a8404b86143b3fea812f23');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19521','{24855}={$DISK.ARRAY.STATUS.CRIT}','{#CNTLR_LOCATION}: Disk array controller is in critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a8c87ea0b6ba42e7ba6f97a2441237bb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19522','{24856}={$DISK.ARRAY.STATUS.WARN}','{#CNTLR_LOCATION}: Disk array controller is in warning state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1cb40d36fda945df940c39f0ea1adf22');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19523','{24857}={$FAN.STATUS.CRIT}','Fan {#SNMPINDEX}: Fan is in critical state','','0','3','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c2a1f0726e6e46658bf236c7daea432c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19524','{24858}={$FAN.STATUS.WARN}','Fan {#SNMPINDEX}: Fan is in warning state','','0','2','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f8e66a8a7df84962be215388d6fd567b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19525','{24859}=3','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has failed','','0','4','Please check the physical adapter.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','880d8c11080043f4a1b8e31823bee081');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19526','{24860}=4','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has lost link','','0','3','Please check the cable connections to this adapter.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7894c073515c42abac3a3704acaf124c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19527','{24861}<>{24862} and length({24863})>0','{#DISK_LOCATION}: Disk has been replaced','','0','1','Disk serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','{#DISK_LOCATION}: Disk has been replaced (new serial number received)','97b42a2ce49f4a1786cfa8db1f6477ac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19528','{24864}={$DISK.SMART.STATUS.FAIL:"replaceDrive"} or {24864}={$DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','{#DISK_LOCATION}: Physical disk S.M.A.R.T. failed','','0','4','Disk probably requires replacement.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','fdd888b4e72344eda1845fdfe7d261e4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19529','{24865}={$DISK.STATUS.FAIL}','{#DISK_LOCATION}: Physical disk failed','','0','4','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','1e8640dc080c4d19a94c6fcda2451cfb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19530','{24866}={$DISK.STATUS.WARN}','{#DISK_LOCATION}: Physical disk is in warning state','','0','2','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','74eef1a7f26145d7963d8801c8a625e7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19531','{24867}={$PSU.STATUS.CRIT}','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in critical state','','0','3','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a256fdd66c0043dfb337163bcf0c5ebe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19532','{24868}={$PSU.STATUS.WARN}','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in warning state','','0','2','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','18e8aca665b34fb5a2af5d94cdd40f84');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19533','{24869} = 1','Ambient: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','74b07fcf8ef34e20a142ae11f6dbfeb4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19534','{24870} = 4','Ambient: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','0df275f3b0dd4c6d93936b39a88052fa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19535','{24871} = 3','Ambient: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','1052d51569c543619e38b48318baaa29');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19536','{24872} = 1','CPU-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','602bbb3e632540d4a46830c2c67d3b1c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19537','{24873} = 4','CPU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','25ea3db9def64b21b08f25f019c15fbd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19538','{24874} = 3','CPU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','f5ecaae4989f4e249138916b3657210d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19539','{24875} = 1','{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','6ea76d08b1e64364b15a9daa95c72d7c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19540','{24876} = 4','{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','6287b204066e47d68871bc0783840b4c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19541','{24877} = 3','{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','8010259635ef4d92af61e935c9f62ff7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19542','{24878} = 1','I/O-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','5f7818d02b764218a481e59cbcfe5fd7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19543','{24879} = 4','I/O-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','fffdfe1c6d254f3fb096ab0561705223');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19544','{24880} = 3','I/O-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','a00a767a3b8349c2846139a6c76f826d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19545','{24881} = 1','Memory-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','78d936059d744eae8be8150dab2a6e5e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19546','{24882} = 4','Memory-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','a6db4978fa834a7facd46a76f45f92a3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19547','{24883} = 3','Memory-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','ee7cbf1997ca476283e3301856d22a5a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19548','{24884} = 1','PSU-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','809aea1302064232a321c12f2256414f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19549','{24885} = 4','PSU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','b70bb5f4fe4b4d3bb6fa7027200f2b25');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19550','{24886} = 3','PSU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','a4e3939f59a64dbfab377f68a62fa26b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19551','{24887} = 1','System-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','6848521afcb54d72b136ee53176bc01d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19552','{24888} = 4','System-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','6b15c19600f9433093aa8d7d624fb623');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19553','{24889} = 3','System-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','407c07a6d4f94ca1a8cf1f9db9d685db');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19554','{24890}={$VDISK.STATUS.CRIT}','Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk failed','','0','4','Please check virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7dadede9eb5640c5920b95dafc7191bb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19555','{24891}<>{$VDISK.STATUS.OK}','Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk is not in OK state','','0','2','Please check virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ffdd42c48a7b493a941887b46be64fb0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19556','{24892}<>{24893} and length({24894})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','1316d7def24a4a80adfdf4bc8ac5a12c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19557','{24895}<>{24896} and length({24897})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','6431a1a0b8494b50bcbd18e283e7158e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19558','{24898}={$HEALTH.STATUS.CRIT}','System status is in critical state','','0','4','Please check the device for errors.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6cc840d5bccc4f1abfd7df6a161154ad');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19559','{24899}={$HEALTH.STATUS.WARN}','System status is in warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','eab6760dda124629a9edcb2218ad3ad3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19560','({32527}>0 and {32527}<10m) or ({32527}=0 and {32528}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','383e0e2d556d4354ae50f68c94333ded');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19561','{24901}=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','','0b91663d4b684e46aaccdf480d1622f0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19562','{24902}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"failed"} or {24902}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"capacitorFailed"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a6cd582e11804f0f939e841287305edc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19563','{24903}={$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"degraded"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','bb1f9560a6d74bd9aaca3ffa04aec311');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19564','{24904}={$DISK.ARRAY.CACHE.STATUS.CRIT:"cacheModCriticalFailure"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in critical state!','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6a3002495b7540a981c9909c540ede36');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19565','{24905}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModDegradedFailsafeSpeed"} or {24905}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheReadCacheNotMapped"} or {24905}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModFlashMemNotAttached"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2ee4cf4ddd9944c985ac522a04371a13');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19566','{24906}<>{$DISK.ARRAY.CACHE.STATUS.OK:"enabled"} and {24906}<>{$DISK.ARRAY.CACHE.STATUS.WARN:"invalid"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is not in optimal state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2cbed500a4c34f138623c31a86e227c4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19567','{24907}={$DISK.ARRAY.STATUS.CRIT}','{#CNTLR_LOCATION}: Disk array controller is in critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1c518fee6dbc49228768b3dd61a98057');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19568','{24908}={$DISK.ARRAY.STATUS.WARN}','{#CNTLR_LOCATION}: Disk array controller is in warning state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2dd65457ec524248ac5b1c1cfd9f3821');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19569','{24909}={$FAN.STATUS.CRIT}','Fan {#SNMPINDEX}: Fan is in critical state','','0','3','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','90cc1704d8c340309e23deb78620c861');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19570','{24910}={$FAN.STATUS.WARN}','Fan {#SNMPINDEX}: Fan is in warning state','','0','2','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9b7692f49b604f0791934b58294881cd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19571','{24911}=3','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has failed','','0','4','Please check the physical adapter.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','aaf66f1530f74d59919a1c505a8ae147');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19572','{24912}=4','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has lost link','','0','3','Please check the cable connections to this adapter.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f943117ce7004390854a21c2e1cdb514');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19573','{24913}<>{24914} and length({24915})>0','{#DISK_LOCATION}: Disk has been replaced','','0','1','Disk serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','{#DISK_LOCATION}: Disk has been replaced (new serial number received)','ad74fc6568a0487e834b9e9da4127bb7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19574','{24916}={$DISK.SMART.STATUS.FAIL:"replaceDrive"} or {24916}={$DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','{#DISK_LOCATION}: Physical disk S.M.A.R.T. failed','','0','4','Disk probably requires replacement.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d0a86e4ee6ef46e8ade36dae70f69ad6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19575','{24917}={$DISK.STATUS.FAIL}','{#DISK_LOCATION}: Physical disk failed','','0','4','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','3eb8efcf6caa46ff892bd1d693996a4f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19576','{24918}={$DISK.STATUS.WARN}','{#DISK_LOCATION}: Physical disk is in warning state','','0','2','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1559184494d849cda3946a2b05b81cf3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19577','{24919}={$PSU.STATUS.CRIT}','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in critical state','','0','3','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e01e8d01d65a4ce7a2990ee30ab02d84');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19578','{24920}={$PSU.STATUS.WARN}','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in warning state','','0','2','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','cbd3d4d3d3e0427f89a0972fbef56f63');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19579','{24921} = 1','Ambient: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','7a56b1e7bc7a4464abdf3004a903020e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19580','{24922} = 4','Ambient: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','d0e3ccfb13a9489f877e07cccbecf89f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19581','{24923} = 3','Ambient: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','4f40a124d4c949a89e6c31796faf37ae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19582','{24924} = 1','CPU-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','a27ee21d95ff46f78807eaf31cdc0db4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19583','{24925} = 4','CPU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','97d97920b65c418186af30fdc8fea55e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19584','{24926} = 3','CPU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','f06e48cef80d4e13b8e1d1ba89b60d9d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19585','{24927} = 1','{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','fbbfe6536c1b4852916e93c6a6d8efd9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19586','{24928} = 4','{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','ef76129efb9a4744809682ff041cca21');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19587','{24929} = 3','{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','1a2dd7941efa4792b0e933c26e4e9802');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19588','{24930} = 1','I/O-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','1918208a434145668d0a196ad53bdefd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19589','{24931} = 4','I/O-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','e6d9e708b1704c229e010cb0ae3f53c1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19590','{24932} = 3','I/O-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','325bf55e8d374d97ab240873ea177636');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19591','{24933} = 1','Memory-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','3d335c0712dd40eaa085714cbac51cca');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19592','{24934} = 4','Memory-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','e4b619a640d549099ead16e2c5085746');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19593','{24935} = 3','Memory-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','7be4e1200cdf418497158e59979edf86');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19594','{24936} = 1','PSU-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','fc3a93d232b144b9b2f2d8b95538b941');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19595','{24937} = 4','PSU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','2f95466ff7ee4cf0bb45dfc800d680d3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19596','{24938} = 3','PSU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','147e9de1a91d4473be384c5951812d9f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19597','{24939} = 1','System-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','31a1d664064644cba700ef61e4602523');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19598','{24940} = 4','System-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','c51ac08efa464b91a44e01387a9c3a6d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19599','{24941} = 3','System-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','cca796d265034389afd8236ec26a1990');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19600','{24942}={$VDISK.STATUS.CRIT}','Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk failed','','0','4','Please check virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c49fb63092eb4764aae145d93f9daa33');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19601','{24943}<>{$VDISK.STATUS.OK}','Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk is not in OK state','','0','2','Please check virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','698ef7d90e95463c8ea7a14c5fa72be9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19602','{24944}<>{24945} and length({24946})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','bd81b8c420904f0bafa4fbf90d195967');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19603','{24947}<>{24948} and length({24949})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','168b1742abc340558631a577a1a3c4d9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19604','{24950}={$HEALTH.STATUS.CRIT}','System status is in critical state','','0','4','Please check the device for errors.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e9bf032edb2e45f0b64cb904bf8d8403');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19605','{24951}={$HEALTH.STATUS.WARN}','System status is in warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','537c411a3d454a8b9dc64378e0e9a6cd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19606','({32529}>0 and {32529}<10m) or ({32529}=0 and {32530}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','9612f37005e5420582d499d7cb84a24e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19607','{24953}=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','','97c3665497ae46eb91d81c14c5f4ac06');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19608','{24954}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"failed"} or {24954}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"capacitorFailed"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4eb29401f4c7400ca87bb2449eb0f8e2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19609','{24955}={$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"degraded"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0378b7339a3d482ea92f523f3d84c498');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19610','{24956}={$DISK.ARRAY.CACHE.STATUS.CRIT:"cacheModCriticalFailure"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in critical state!','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','26955f1b216a493c9faa95b95359aa79');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19611','{24957}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModDegradedFailsafeSpeed"} or {24957}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheReadCacheNotMapped"} or {24957}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModFlashMemNotAttached"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','fc24efc3b41f410e9b0e806692f3dcf6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19612','{24958}<>{$DISK.ARRAY.CACHE.STATUS.OK:"enabled"} and {24958}<>{$DISK.ARRAY.CACHE.STATUS.WARN:"invalid"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is not in optimal state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d5a1edb8f9ea46f08344a07a84bd8865');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19613','{24959}={$DISK.ARRAY.STATUS.CRIT}','{#CNTLR_LOCATION}: Disk array controller is in critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0e57c741a6d248b69cdc70b75fc63a0f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19614','{24960}={$DISK.ARRAY.STATUS.WARN}','{#CNTLR_LOCATION}: Disk array controller is in warning state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4a66354e25c949d4aaaad02114f09e44');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19615','{24961}={$FAN.STATUS.CRIT}','Fan {#SNMPINDEX}: Fan is in critical state','','0','3','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f246a5184ea94ae3a793efec27998d5f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19616','{24962}={$FAN.STATUS.WARN}','Fan {#SNMPINDEX}: Fan is in warning state','','0','2','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ba7f63e795764d77aae0b7ce62a19514');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19617','{24963}=3','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has failed','','0','4','Please check the physical adapter.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','917ab8f90c3e43b887eb7fd851cf3b25');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19618','{24964}=4','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has lost link','','0','3','Please check the cable connections to this adapter.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','51bb602b67624c5d932109a5e04068d3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19619','{24965}<>{24966} and length({24967})>0','{#DISK_LOCATION}: Disk has been replaced','','0','1','Disk serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','{#DISK_LOCATION}: Disk has been replaced (new serial number received)','2b173fa3eec941e3b3d73c732740e210');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19620','{24968}={$DISK.SMART.STATUS.FAIL:"replaceDrive"} or {24968}={$DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','{#DISK_LOCATION}: Physical disk S.M.A.R.T. failed','','0','4','Disk probably requires replacement.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','531875c8a5f54ca8ad2dabfa8a47b36b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19621','{24969}={$DISK.STATUS.FAIL}','{#DISK_LOCATION}: Physical disk failed','','0','4','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','12eac58ddff14f7dbbdba48eca464a5f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19622','{24970}={$DISK.STATUS.WARN}','{#DISK_LOCATION}: Physical disk is in warning state','','0','2','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','977a4d4fb6604877a0f02bb2455691c4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19623','{24971}={$PSU.STATUS.CRIT}','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in critical state','','0','3','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b42e415d5eb941989daaed3d1ac2e762');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19624','{24972}={$PSU.STATUS.WARN}','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in warning state','','0','2','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d5b8b12a72934bcfb7ad6675a68a5297');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19625','{24973} = 1','Ambient: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','1af0ddbc9ffd43b2b6800d634d8186bb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19626','{24974} = 4','Ambient: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','c49e51ac10c941798213d0f086e0631f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19627','{24975} = 3','Ambient: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','b1cfbc1702f54670b3f486da26c4887b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19628','{24976} = 1','CPU-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','039ab34804f446e580b779d1ab25ed4f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19629','{24977} = 4','CPU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','2cf8b917076440aa8209938cec69b905');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19630','{24978} = 3','CPU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','cf69b02334e541b7a912a14c182dd56a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19631','{24979} = 1','{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','6d7eb6bd348b43a2b584ceb1694c8bce');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19632','{24980} = 4','{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','43911269576b435db928e83901a16c5a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19633','{24981} = 3','{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','b26842b776c545449354ccafb809d115');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19634','{24982} = 1','I/O-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','c8f2ef7311804357bff65d2d5c7f5d90');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19635','{24983} = 4','I/O-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','dda9f8bf4a094b69bb30affb26e23dd3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19636','{24984} = 3','I/O-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','a0220dea091d4aca8d68a21a3d976496');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19637','{24985} = 1','Memory-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','eca9c54385084934b88f4dc9d914b2e2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19638','{24986} = 4','Memory-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','70b139e0c8c644918c7f01cd09604078');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19639','{24987} = 3','Memory-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','89aab6bad94e4d188475d6e36084593e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19640','{24988} = 1','PSU-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','e792b530014d45b6ac7fc819db776c37');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19641','{24989} = 4','PSU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','803317e9eaf04b519e63b7d1b9bfd610');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19642','{24990} = 3','PSU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','98616a3bae174922a0108b7c90339f08');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19643','{24991} = 1','System-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','2a0503b359904c71b355cb9e3da1b8fa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19644','{24992} = 4','System-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','09287730b82a47c4b365c09047d0b8e2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19645','{24993} = 3','System-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','5c7097cb91184a619fee33bd4faa296b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19646','{24994}={$VDISK.STATUS.CRIT}','Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk failed','','0','4','Please check virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a59f9e473b7a4afd900edce47b11443d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19647','{24995}<>{$VDISK.STATUS.OK}','Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk is not in OK state','','0','2','Please check virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','776bff7fb02e4948be7d81347c0c8624');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19648','{25008}>={$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:"IAX"}','Asterisk: Total number of active channels of IAX trunks is too high','','0','2','The IAX trunks may not be able to process new calls.',NULL,'0','0','0','','0','','0','','0','Asterisk: Total number of active channels of IAX trunks is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:"IAX"} for 10m)','0ae0a5b6123a42dd9722219e5e5839df');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19649','{25009}>={$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:"PJSIP"}','Asterisk: Total number of active channels of PJSIP trunks is too high','','0','2','The PJSIP trunks may not be able to process new calls.',NULL,'0','0','0','','0','','0','','0','Asterisk: Total number of active channels of PJSIP trunks is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:"PJSIP"} for 10m)','9b158fe0efb4416cb6ad5d53b38c3e38');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19650','{25010}>={$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:"SIP"}','Asterisk: Total number of active channels of SIP trunks is too high','','0','2','The SIP trunks may not be able to process new calls.',NULL,'0','0','0','','0','','0','','0','Asterisk: Total number of active channels of SIP trunks is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:"SIP"} for 10m)','d2fde5d26d284a129346a12ba0949b60');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19651','{25011}=1','Travis: Failed to fetch home page','','0','2','Zabbix has not received data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','Travis: Failed to fetch home page (or no data for 30m)','6baed695cac34d349a42ab6e8295910d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19652','{25012}=0','Travis: Service is unavailable','','0','4','Travis API is unavailable. Please check if the correct macros are set.',NULL,'0','0','0','','0','','1','','0','','e8398acab5a74505a85ade5d3ca5f590');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19653','{25013}<{$TRAVIS.BUILDS.SUCCESS.PERCENT}','Travis: Repo [{#SLUG}]: Percent of successful builds','','0','2','Low successful builds rate.',NULL,'0','2','0','','0','','1','','0','Travis: Repo [{#SLUG}]: Percent of successful builds are < {$TRAVIS.BUILDS.SUCCESS.PERCENT}%','8279ce31c4fe4cb7a03baa8a0149a557');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19654','{25014}=1','Travis: Repo [{#SLUG}]: Last build status is \'errored\'','','0','2','Last build status is errored.',NULL,'0','2','0','','0','','1','','0','','9b26f06ae3854aad8d2c0f4623bb1533');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19655','{25015}=0','InfluxDB: Health check was failed','','0','4','The InfluxDB instance is not available or unhealthy.',NULL,'0','0','0','','0','','0','','0','','de130833b4514481aa56d3ba06e648fc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19656','{25016}>{$INFLUXDB.TASK.RUN.FAIL.MAX.WARN}','InfluxDB: Too many tasks failure runs','','0','2','"Number of failure runs completed across all tasks is too high."',NULL,'0','0','0','','0','','0','','0','InfluxDB: Too many tasks failure runs (over {$INFLUXDB.TASK.RUN.FAIL.MAX.WARN} for 5m)','f0d2137905bc477f979d035c06111844');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19657','{25017}<10m','InfluxDB: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','InfluxDB: has been restarted (uptime < 10m)','335f27fb002544838f7150b11238d86b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19658','{25018}<>{25019} and length({25020})>0','InfluxDB: Version has changed','','0','1','InfluxDB version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','InfluxDB: Version has changed (new version: {ITEM.VALUE})','d2b02cc426c748608968ae08c0823461');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19659','{25021}>{$INFLUXDB.REQ.FAIL.MAX.WARN}','InfluxDB: [{#ORG_NAME}]: Too many requests failures','','0','2','Too many query requests failed.',NULL,'0','2','0','','0','','0','','0','InfluxDB: [{#ORG_NAME}]: Too many requests failures (over {$INFLUXDB.REQ.FAIL.MAX.WARN} for 5m)','893fa5755b514c36aa177c4f4e25b254');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19660','{25025}>8 and {25026}>6','F5 BIG-IP: Cluster not in sync','','0','2','',NULL,'0','0','0','','0','','1','{ITEM.LASTVALUE}','0','F5 BIG-IP: Cluster not in sync: {ITEM.VALUE}','f93a7ff7cc614c0b84789f325ebb662b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19661','{25027}=2','F5 BIG-IP: Changes have been made on the device not sync','','0','2','Changes have been made on the device not sync to the device group, requires user intervention',NULL,'0','0','0','','0','','1','{ITEM.LASTVALUE}','0','F5 BIG-IP: Changes have been made on the device not sync to the device group: {ITEM.VALUE}','098fe258e8cc4216b0c1800913ba8e18');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19662','{25028}=4','F5 BIG-IP: The device is inconsistent with the device group','','0','2','The device is inconsistent with the device group, requires user intervention',NULL,'0','0','0','','0','','1','{ITEM.LASTVALUE}','0','F5 BIG-IP: The device is inconsistent with the device group: {ITEM.VALUE}','eb3517626c6d425f9b88a2bc35641ab6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19663','{25031}=2','F5 BIG-IP: Fan[{#FAN.INDEX}] is not present','','0','1','Please check the fan unit',NULL,'0','2','0','','0','','0','','0','','d20c56720aa54efba37f5fcdfdde0225');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19664','{25032}=2','F5 BIG-IP: Power supply [{#POWER.INDEX}] is not present','','0','1','Please check the power supply unit',NULL,'0','2','0','','0','','0','','0','','84469f28c4bf47f790a85b9f1f37cff0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19665','{25033}>{$BIGIP.TEMP.HIGH}','F5 BIG-IP: Chassis temperature','','0','4','',NULL,'0','2','0','','0','','0','{ITEM.LASTVALUE}','0','F5 BIG-IP: Chassis temperature ({ITEM.LASTVALUE}) of sensor {#TEMP.INDEX} exceeds threshold of {$BIGIP.TEMP.HIGH} °C','452167aafe594e3faa3748e6dc470fb1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19666','{25034}>{$BIGIP.TEMP.WARN}','F5 BIG-IP: Chassis temperature','','0','2','',NULL,'0','2','0','','0','','0','{ITEM.LASTVALUE}','0','F5 BIG-IP: Chassis temperature ({ITEM.LASTVALUE}) of sensor {#TEMP.INDEX} exceeds threshold of {$BIGIP.TEMP.WARN} °C','00c0212fcb8049309bf0b3de2b2363b4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19667','{25035}>20','F5 BIG-IP: Pool {#POOL.NAME} is not available in some capacity: {ITEM.VALUE1}','','0','3','',NULL,'0','2','0','','0','','0','{ITEM.LASTVALUE}','0','','0b6e708075684cbab0d8c598f3467e0c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19668','{25036}>4','F5 BIG-IP: Pool {#POOL.NAME} is not enabled in some capacity: {ITEM.VALUE1}','','0','3','',NULL,'0','2','0','','0','','0','{ITEM.LASTVALUE}','0','','4d0431e2c4934f37be7302ffedd69e8a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19679','{25060}<>{25061} and length({25062})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','79b791b5ce1a4e5e8f68b561aeaac838');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19680','{25063}<>{25064} and length({25065})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','a981ac3d5e7843049eb581ab284edd04');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19681','{25066}<>{25067} and length({25068})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','f7e4983c483944869d44fe5ea4289786');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19682','{25069}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','6a571f6691ec459bbc63e1a8dece1c04');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19683','{25070}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','1586816e4cfe4060b9c2d4c305439e4d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19684','{25071}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25072}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','7662e3eded674ca996c98d5af253d767');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19685','{25073}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25074}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','ad69a0bc0507456787ef21628985e22f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19686','{25075}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{25076}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','d66e0fa34fbf4fc49ac5ebfed3f6dbb0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19687','{25077}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25078}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','d9e2f17aa26d47239ba7ee40d5b39759');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19688','{25079}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25080}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','f6bcaf561a23406e84a22549aed2485d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19689','{25081}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{25082}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','fcf0566a31b9400c9790638caad03e34');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19690','{25083} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','88449b36f96740349cd1e08127b7b39c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19691','{25084} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','cdab150de72d4e8bb2af4e412be6de27');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19692','{25085} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','5eb2071556a749b382e8d6668fc7c699');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19693','{25086} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','9e119f5f5ae74caeb58e9736f5e7e8b1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19694','{25087}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','f282823a66354c1aa88b2338efb376f0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19695','{31881}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({31882}-{31883})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31884}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','93eaacd1543d440c93faa4b7c4fcd02d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19696','{31885}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({31886}-{31887})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31888}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','70397fb0b0754a42a9c97c77c2037d2a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19707','{25119}<>{25120} and length({25121})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','7469aef39ea84a729b87d06d3dd0e9af');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19708','{25122}<>{25123} and length({25124})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','a30f1485711d4a649503638fd3a7d702');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19709','{25125}<>{25126} and length({25127})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','8574af8f375a4443bbf030ebf8d904b5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19710','{25128}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','18ae9503588a4d398f387ab0d9015e26');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19711','{25129}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','2f1676c21f7044a289a8fd3077f9c95f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19712','{25130}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25131}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','306d44e9256041089e0499678d0a9b6b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19713','{25132}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25133}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','3ef08416c6e649469b036b730f756a35');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19714','{25134}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{25135}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','db4a2f3baf9c44058e81df8924c51714');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19715','{25136}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25137}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','3de221d9357541e68cb0e949f58b0f3c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19716','{25138}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25139}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','21158d7b18b64861b373be6718006753');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19717','{25140}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{25141}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','c1c9783678e846ec88d1b68486abd5a0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19718','{25142} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','86e76d6d249a4f339ca2841d9b433204');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19719','{25143} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','4b5ad89e3ecf4d38a8bdb75b10028ba2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19720','{25144} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','404195780f234277874f9c1d88ce286a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19721','{25145} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','1e58c3aaa1a9469bb170fc50b75e1686');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19722','{25146}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','cb698e80cd15409bad16d476fc637a61');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19723','{31891}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({31892}-{31893})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31894}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','e6500e2d99fa46dea445d9cc469df81e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19724','{31895}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({31896}-{31897})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31898}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','33a9e94bff174f31978be450df1f3c40');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19735','{25178}<>{25179} and length({25180})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','de61b57b4fd54166a207bc040aa482a4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19736','{25181}<>{25182} and length({25183})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','1776f8b97fba4feb962b0a47e4780076');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19737','{25184}<>{25185} and length({25186})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','0b8bd128fed047c591b839f3f46412dd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19738','{25187}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','2dec63fe94b943549c8351fe1e737975');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19739','{25188}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','e25580100dde402eaf640b6653223a82');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19740','{25189}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25190}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','5b950c6be6494ba7b743a572a208fd42');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19741','{25191}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25192}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','f091c3d0b2754d1a883ad9e5f96f7037');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19742','{25193}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{25194}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','e9c78b7e0b0d4d64b420b5802c91f02a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19743','{25195}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25196}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','67f8c41b8c4748a6b5ab836821e79610');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19744','{25197}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25198}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','d18498b9f4df42fca625f01ec465d819');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19745','{25199}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{25200}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','b457b4345c694e3a9963b74c9c2992c6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19746','{25201} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','0f5a0e7593b447e2a9a5071f2ec4a30b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19747','{25202} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','932fe21bdb6c460581093fb523b3c4b2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19748','{25203} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','d6dcbaaaa89c4cfe80060830c595e4bb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19749','{25204} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','d6e15977be5242edb4dd4bb8dcd0fbd0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19750','{25205}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','36dc48462d28464787978c8e6f74cafe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19751','{31901}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({31902}-{31903})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31904}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','fc93929bd60542d3896fbcdd590479be');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19752','{31905}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({31906}-{31907})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31908}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','6aa796b2784848a7ab26a7e6da8993a9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19763','{25237}<>{25238} and length({25239})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','4ff0ad1fe7a043f28e46403ab4ce500b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19764','{25240}<>{25241} and length({25242})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','0abb489d471e414b84d9bfe5d6d0e453');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19765','{25243}<>{25244} and length({25245})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','3146fc39809741a09a46852ef392b694');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19766','{25246}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','4093f81ecb9f4320b5c5ca719a6b8574');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19767','{25247}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','20cfcbcae14b4b7fb9c86486f4e6b972');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19768','{25248}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25249}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','c84e4932a71849549be90027810335ea');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19769','{25250}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25251}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','67d43cb946d94556bb921b0b120d58ee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19770','{25252}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{25253}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','cd3aaf374f81487f98f0056920870782');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19771','{25254}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25255}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','1e6346dade484f4aad2a63c03ebf32d4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19772','{25256}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25257}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','9eafc6dc38614e26a301d943f4f8dd5d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19773','{25258}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{25259}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','d6cc20f91d5748fd85ab8743b5152be6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19774','{25260} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','6c73b57b26b1484c83d7a8185829bd85');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19775','{25261} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','5eafa20544ed463fad00fb233b34f92c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19776','{25262} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','0d079b01ba334fcd8f3e527ec7102c3b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19777','{25263} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','fddf1697f5c04bae95c4752d2627856f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19778','{25264}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','815c19538e7b48edb63bd46ad4d641d3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19779','{31911}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({31912}-{31913})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31914}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','79b2a705172743a88de436aa62be33ad');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19780','{31915}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({31916}-{31917})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31918}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','8c8e59c2079d4bfcbd775b0c38bbf253');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19791','{25296}<>{25297} and length({25298})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','8012e0275fc24d9e9688cfccb3134aae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19792','{25299}<>{25300} and length({25301})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','c6e011ff0a1f41c5b90bb8fba507fe7d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19793','{25302}<>{25303} and length({25304})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','f8ac6aaa8c06474d9a9b86e5e43b5ed5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19794','{25305}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','63e95c315b6f422e9d4f6e532e847e9c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19795','{25306}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a8920b239ceb42e6b3e26ffd310a409a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19796','{25307}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25308}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','c3b13c3d1f8c4d53b1fa67f9abc168bd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19797','{25309}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25310}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','80fd1bd8bf564aecbe37b77294c84ae6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19798','{25311}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{25312}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','335090c080c04b909f1b46b404dd025c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19799','{25313}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25314}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','5b86f67e1e184ef79b7023760d951747');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19800','{25315}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25316}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','c62972c2c47d403bb92d43ff7b9b5a20');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19801','{25317}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{25318}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','fc2ffec9e7054c82880a560da071781a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19802','{25319} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','42329cfbff37430f87adfefa852b39fe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19803','{25320} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','0259421d33e745d992e5eb03091b787a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19804','{25321} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','ac07e47a3ce447febb5049da33931109');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19805','{25322} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','ef75c9ab974c46a99579c544e43a2c2c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19806','{25323}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','ff2543e8251945f29036cb43fda69c72');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19807','{31921}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({31922}-{31923})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31924}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','7e201487d2ed496492eb2dbb1a169021');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19808','{31925}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({31926}-{31927})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31928}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','fcc24d6aa85a4ae4b104d9523afe073d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19819','{25355}<>{25356} and length({25357})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','e0decdba5c7a44ef9983da4d0912ba37');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19820','{25358}<>{25359} and length({25360})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','ee34d0bdac3f4b0489fc96a3feecb72b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19821','{25361}<>{25362} and length({25363})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','65ac535fb0114cc098bd89d1e2a5cfed');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19822','{25364}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','1ed5e95e003d4119bd578ac4f572ba16');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19823','{25365}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','519211164f324540a624c3f1046dbd44');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19824','{25366}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25367}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','09b73cf701ab4f4aac2fdbb4ff26e893');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19825','{25368}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25369}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','3e86bb9cfaa5410d8b932f80c413e340');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19826','{25370}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{25371}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','5f52e2e9403544b987568c00046deaea');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19827','{25372}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25373}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','6c46256f6d124cf9b3d602f7536a4788');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19828','{25374}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25375}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','8b61d889f30e43f28102163a6284c8d4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19829','{25376}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{25377}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','edbf42873c99405cb77d0eb3fd6986a8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19830','{25378} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','bbe7c7f1238649119b44e657c5f0d292');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19831','{25379} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','8f858819c89542bc88afa76981b4639a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19832','{25380} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','ad82b43ac27c44258f4a4f3ca212cdbf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19833','{25381} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','6a3ce63f84ef4df9b8e9cc231ddf3fe0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19834','{25382}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','4a5a914ac69f42eb8fa9ca5ef30e63cc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19835','{31931}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({31932}-{31933})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31934}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','07a38ca5caf7408fa0e61ec5bb2d2c9a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19836','{31935}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({31936}-{31937})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31938}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','313ea923495e4a0289519b8c228f018a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19847','{25414}<>{25415} and length({25416})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','565c94a00dde43c1af72f8c2d00edcb5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19848','{25417}<>{25418} and length({25419})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','6d02cc3ff4144efda53554446feb0058');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19849','{25420}<>{25421} and length({25422})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','18900918495f4dd99cbde564a071bf34');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19850','{25423}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','d89ab73e0c534f84ae9481a1a48d5064');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19851','{25424}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','24667b99976c417985bbb1a307184d88');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19852','{25425}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25426}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','aa6398ab43ec491ab5aa96c8d8422112');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19853','{25427}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25428}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','186b82ffb7934fe8a62a150970dc2468');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19854','{25429}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{25430}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','58357816e19b4c9986e8d26165c4f29a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19855','{25431}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25432}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','522ee0ddfd7e40a4b81612d4ba4266cf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19856','{25433}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25434}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','6a5b1f729c054ec7acc3665ffb831bcc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19857','{25435}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{25436}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','f4198424045742619f84410ee7a2939c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19858','{25437} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','b7d3eebe1d6944b88ed8afa923caf884');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19859','{25438} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','94c9e778f2a7471c8002dfa6918dde8f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19860','{25439} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','77e69f355f7348a4bc823a8428980356');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19861','{25440} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','c1926140ee5d4532adeecf590f740e96');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19862','{25441}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','d32004c5c1804105aee11b22722556e1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19863','{31941}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({31942}-{31943})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31944}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','73127568919e45ca9df89ab08285a3b5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19864','{31945}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({31946}-{31947})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31948}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','954903eaecf54c26874d9e5ce47e044b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19875','{25473}<>{25474} and length({25475})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','a42442ce9d7d4a378964296eed6a6b33');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19876','{25476}<>{25477} and length({25478})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','2da3a78731324233be1563691f353d04');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19877','{25479}<>{25480} and length({25481})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','855a1e17110e49eaaaf4dd263f16a591');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19878','{25482}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','9a83e6b6a0874a49a983cb610a7e0e50');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19879','{25483}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','bc07372dff2f4f72a6b1b7c0e02f79c7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19880','{25484}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25485}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','b3ce44c470a64dc49bc169c06bf9761d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19881','{25486}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25487}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','876a62a4aa6a449d888f1233c24c0dbc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19882','{25488}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{25489}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','79304fcbafe349d4adeebe277858d23a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19883','{25490}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25491}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','80af013716d944e8be4cef996aabfef2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19884','{25492}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25493}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','ab46cd19e709417ebeb5c3b9964e2eee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19885','{25494}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{25495}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','06e95d596af74a288b3787cb665255bb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19886','{25496} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','4f9b8def6c3e4d72b7afeb50808cae21');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19887','{25497} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','aa5d408235834a5e8492a55e178f5dc7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19888','{25498} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','5c4489b0d28649a9a487d65833043589');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19889','{25499} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','1d77ead6601b40d5b22afc9098a8a211');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19890','{25500}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','1b02cd1523474c949dcabd004a01089f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19891','{31951}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({31952}-{31953})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31954}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','768953b43aab47d0bfcf9eeef75625ad');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19892','{31955}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({31956}-{31957})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31958}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','74b9590a3e2448bc926fdd29bc6ec153');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19903','{25532}<>{25533} and length({25534})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','26d7b5b5fc4149d4869a4e3a94173172');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19904','{25535}<>{25536} and length({25537})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','79405589edba4a878d7d2ab5d0399076');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19905','{25538}<>{25539} and length({25540})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','1ed2e0368bb94a4fbfa8a82764b3b40d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19906','{25541}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','03cdc40813dd4d5093512db3c5e574ff');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19907','{25542}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a9f3354cf2044306ba8ca1aae227ee60');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19908','{25543}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25544}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','f399cf1f48d24ec3b3f33159cb7b4fe0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19909','{25545}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25546}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','0c240046f1434ffb8c2cba26e4b0e61d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19910','{25547}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{25548}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','f810f58531c54e3bbcf6d0e677100237');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19911','{25549}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25550}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','773c5f9316c44d8297b4fd3cdd236da1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19912','{25551}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25552}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','3d688fda4da843e192c26d955d8d8dd9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19913','{25553}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{25554}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','2a21380034244b29878bbb198cca6712');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19914','{25555} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','67152820f4884d51a16966f339947955');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19915','{25556} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','ca8b841c9830497dabd0138fafade175');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19916','{25557} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','e8f613b6301b43efa4a2e84d62ec520f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19917','{25558} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','c215c39df396474e865ae9b36c40545f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19918','{25559}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','587ccbe7d604489783b66411a3b21cb1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19919','{31961}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({31962}-{31963})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31964}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','72a2fc862c354ab0a3d8fb491aaed9e1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19920','{31965}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({31966}-{31967})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31968}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','d66a941be43a440fb13386d9a319a5b3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19931','{25591}<>{25592} and length({25593})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','385231b6c7eb4ce6a275969b437c8d44');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19932','{25594}<>{25595} and length({25596})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','bb2cc5758a154bc0ad07138e87f353a4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19933','{25597}<>{25598} and length({25599})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','ff7510d9e2d44057a089b9486af74971');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19934','{25600}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','a7fa3a261f0c4362938700ff8954cdc9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19935','{25601}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a47faa0771b348ed8fd040027deebd95');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19936','{25602}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25603}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','b32ecc16390c42bfbc0ad23305f59392');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19937','{25604}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25605}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','fb39a804a60e4154ad6602fad05c399d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19938','{25606}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{25607}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','e35e3256fd58439d923ca54b7e33e64c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19939','{25608}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25609}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','ea9da810d00445f3b4649f8aec0d9ef7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19940','{25610}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25611}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','28a883547a4449ea96c1168aef939a65');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19941','{25612}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{25613}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','760505068a3946edbd38294f867e08e5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19942','{25614} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','eacd5dec75404c9e80bd18d5ea0f3bff');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19943','{25615} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','0e79530582ee4e3aa270d8a43a96f7f0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19944','{25616} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','ddbe2cfcdd6f4d5895780fa6510acb73');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19945','{25617} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','5f8087b4f9ae4d3693d55d189c1f99f4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19946','{25618}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','e25c484ec45a4a01b51f961318813e30');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19947','{31971}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({31972}-{31973})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31974}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','044aabf4d95c4c9ba7ccec76446f50af');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19948','{31975}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({31976}-{31977})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31978}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','3a5a7043d1b64fe5a7fdefc341fcc22a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19959','{25650}<>{25651} and length({25652})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','6172f360bcca4bc6a105a5093be8665c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19960','{25653}<>{25654} and length({25655})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','80072866ba994094a279eb45020311d1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19961','{25656}<>{25657} and length({25658})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','d66d2b488b784574943c90f20d0153ce');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19962','{25659}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','02a8b7e7ebbb4d1baf5ee155167e36ba');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19963','{25660}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a81f9bcd4d4d4c4593654293b55f864d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19964','{25661}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25662}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','ac0cfe319121487fb2009436d27f4f2b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19965','{25663}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25664}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','c1c53cec6a204411b9739eac84447c2a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19966','{25665}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{25666}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','f0d3f01db5d44b74826326048bca05a8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19967','{25667}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25668}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','dbfb3ba672c944149aea12b3f4a1cdbe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19968','{25669}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25670}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','8c4ffcc25b254dc29928ac1ac0272b7a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19969','{25671}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{25672}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','df1aa24cf39947528099405c6cd311f4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19970','{25673} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','f929a190e2624171a7a4b80919ae025e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19971','{25674} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','dff7058dd39f4cb294533048160b3b75');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19972','{25675} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','e57c17fcddd04bdf921a9f1b6151ccb2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19973','{25676} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','95e376a33c1642c9a7d33b40bcda3389');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19974','{25677}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','569c6b51c3714d84bce3522093e442a6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19975','{31981}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({31982}-{31983})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31984}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','8ddf161b19eb4716b1ec7cb270970703');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19976','{31985}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({31986}-{31987})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31988}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','0a19983ae1d443bbb4224a61d46b62de');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19987','{25709}<>{25710} and length({25711})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','324d699f4767400e88e16f37ffcd2abd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19988','{25712}<>{25713} and length({25714})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','53e8fc3eac46426fbce375cc2ce983c8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19989','{25715}<>{25716} and length({25717})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','2a0736cbd3324122b51c4ac4629c1323');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19990','{25718}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','8246aab86f954be8968169f55889a842');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19991','{25719}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','bc2854ed0ff645ae9a932ab5baa62a91');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19992','{25720}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25721}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','b3d35f977375429a8a0f4b76dabf294c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19993','{25722}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25723}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','3be96603ac0a474694bf53d2b8aa8487');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19994','{25724}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{25725}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','809c702cedf749b6b53f591ee37c56ba');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19995','{25726}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25727}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','973e5d05599c4ee79d8cc210b004f38d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19996','{25728}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25729}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','58c9f09a52ed48f7b65a4ab6a7b19c35');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19997','{25730}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{25731}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','cfb884d37884407fbba3f93515020352');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19998','{25732} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','f5bf9d28bfb344728e481a3a478c6986');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('19999','{25733} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','0b427fe9c54d486792c9388b8c2968cc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20000','{25734} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','130cdbfb721646ef92c6c1664dffce72');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20001','{25735} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','2df17dc1ca8f4d9fb135c23f86fb50d3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20002','{25736}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','d1a52557a4f746da96893c3d1436b3f2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20003','{31991}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({31992}-{31993})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31994}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','dfcf03d83fb147b18be991b65d2298d6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20004','{31995}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({31996}-{31997})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31998}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','95f44fd2b533449593e2095edda00fc9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20015','{25768}<>{25769} and length({25770})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','6739b5af597443449dcfb946d2b89393');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20016','{25771}<>{25772} and length({25773})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','dfc2b8c7f27049a6bd51c283cc6a29ce');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20017','{25774}<>{25775} and length({25776})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','dc48fc089a314b7ebae646f2dfb925c5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20018','{25777}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','fdcc98f2475247f29fdf48c3a4a69058');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20019','{25778}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','08ca4ad1230144488299a8f4eaacef7f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20020','{25779}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25780}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','3f1ce913660a493387485d5dab3ebfc4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20021','{25781}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25782}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','e7a78d2798b44c438a81c308d1a1c0ed');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20022','{25783}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{25784}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','890865ebc7ea41ef8e9d3c794395092b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20023','{25785}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25786}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','0c035a51301746588e0bc01bb0bf425a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20024','{25787}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25788}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','efc19507ca614ef487d0a9a637a8f7a6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20025','{25789}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{25790}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','54b7d721900742acbb1548714c34c7c2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20026','{25791} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','9c9bab7ccb354d478ae1d5f7ab66f5ea');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20027','{25792} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','f44e31574a68494cbcefbc961662063b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20028','{25793} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','9ebee838e00c46bba067094ea9732f6d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20029','{25794} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','90fc1e486dd9409aacf0f68f86caf80c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20030','{25795}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','2e15eff553614e51a59590c6e3df4a42');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20031','{32001}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32002}-{32003})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32004}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','6a2a5c6ce51b4f6b912a01e45d1a5409');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20032','{32005}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32006}-{32007})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32008}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','0df7d927286d47998fcf15c41bce944f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20043','{25827}<>{25828} and length({25829})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','07248a02609a4964be773df77f86f30a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20044','{25830}<>{25831} and length({25832})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','a79318151008414cb9a0c3d788b76f76');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20045','{25833}<>{25834} and length({25835})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','829598b7b1b4404bbd959ae186734251');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20046','{25836}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','7f44b9ee964f4ae798f3af4c12799e12');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20047','{25837}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','37579561f5e74042827d0d3fc5dc85e7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20048','{25838}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25839}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','50a28d8380d64feca6fb2691e2477fed');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20049','{25840}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25841}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','6bd9170284ef49b4825cf347e1f43548');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20050','{25842}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{25843}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','ccda9a03941b42b0ac184e22aa23666c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20051','{25844}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25845}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','2c4b897afc03484fb7e435af025ac9a3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20052','{25846}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25847}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','8de55e3f0a2d46f69d430362b208654b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20053','{25848}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{25849}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','5d4582baab9b4b98ba6d6e3e78678280');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20054','{25850} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','b3abf2a74b1444d7af3cdfc8ac550ec4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20055','{25851} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','e3300b34a9f34bbd91af48f5b8e89d9e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20056','{25852} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','7a06e44d440b4b85ad3b102fccf24309');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20057','{25853} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','6950612291f84d1d805b2f250c133096');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20058','{25854}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','68fac07f6dd045ba8040c7fe813bdf2e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20059','{32011}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32012}-{32013})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32014}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','463c460bdff441ce9af1ea170ea4dbc2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20060','{32015}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32016}-{32017})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32018}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','a758c3e0841e4fff93ff4bcaa41505eb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20071','{25886}<>{25887} and length({25888})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','6729f53f42ff445c8ab26b91cdb811e2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20072','{25889}<>{25890} and length({25891})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','24e52c80e5544295b778c677d0de35b2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20073','{25892}<>{25893} and length({25894})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','8846801d462142938e7e0683dd481087');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20074','{25895}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','d9f9ee61646a4881bcb34a5e564738f3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20075','{25896}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','9fc63b1881da411baea0e78cd671606a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20076','{25897}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25898}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','9ab9bb63b838495f863feee9d62fcb72');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20077','{25899}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25900}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','1f68799afde34df49dd0d693872aa19a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20078','{25901}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{25902}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','21a3e86813114562a8e382bd3120030f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20079','{25903}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25904}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','52e3b8b493eb4ab09bacb707ed7454ab');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20080','{25905}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25906}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','00ed3d5d280f47a1b20073e87f6ec6f0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20081','{25907}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{25908}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','0e8120688a774b63823848119deaf4a5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20082','{25909} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','4d8a166e4cc8442c87c2989fa87b8e1d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20083','{25910} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','1affa10b3e2d477c92951193292f57d0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20084','{25911} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','bb085163f97341259cd0d42e38c1685e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20085','{25912} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','4b214d3637994c89816ef4f951ce8828');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20086','{25913}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','9b32c491ea3d41bca60ab53c664ee369');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20087','{32021}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32022}-{32023})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32024}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','572cb48de9bd4010b907cff6efa9f3a8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20088','{32025}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32026}-{32027})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32028}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','10639cc4b8de4879a99c70061d5d48ea');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20099','{25945}<>{25946} and length({25947})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','0f66010aec32455eb56414c1ba576982');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20100','{25948}<>{25949} and length({25950})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','59c929b470d342b691b01b5d12f87456');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20101','{25951}<>{25952} and length({25953})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','c9fb96d72f6942d1b4320014b2e40b0c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20102','{25954}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','72863d07fe654e78b740e2f48e0cebe5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20103','{25955}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a2148ac68e78401c81ea5ef66cddc04c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20104','{25956}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25957}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','0e9494a8018f4943a84c1e6b6304439f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20105','{25958}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25959}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','6877c6d086354b5eac351ddbe1dc5656');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20106','{25960}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{25961}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','608d5359e01148a2b8dcc507a11f5ea3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20107','{25962}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25963}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','5eff445458ec4f2f9b9b9085f9487f7d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20108','{25964}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{25965}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','3d9498b115df444981717267ccbe926b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20109','{25966}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{25967}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','c3b94c3a222746cc9f88c5f44c3e882b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20110','{25968} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','d3b264a57365416ba32dd5ee7f3b2c72');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20111','{25969} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','c69186a3c737437696414d1d1c434a3c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20112','{25970} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','8179d0962048402c9843878c34f3a45c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20113','{25971} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','fdb14600d90a448a83bdc51dd170296b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20114','{25972}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','f60557875559490a891eb81c11e0cf37');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20115','{32031}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32032}-{32033})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32034}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','2e7f4f0eaf384c68acaf1bafadc6296a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20116','{32035}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32036}-{32037})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32038}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','380f830e3e714a99b9c7b30c1fbce14b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20127','{26004}<>{26005} and length({26006})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','f0c59541e6df4c649e7c2ef76d7bda4b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20128','{26007}<>{26008} and length({26009})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','a1cf2d27ddc447988aa808318aef167f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20129','{26010}<>{26011} and length({26012})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','9bfebd1764bb4acc82fa8c7f175c0b87');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20130','{26013}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','9af92a1dddd0405587bb090b8fd5757d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20131','{26014}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','c06050c48eac4f8f90df94c6d125f369');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20132','{26015}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26016}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','9f6533c6505948abb10869f4d0a11070');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20133','{26017}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26018}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','e683521cc3de43eaa7c8ecbbb360fb7d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20134','{26019}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{26020}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','2d1bba8f19694737a6cb59e12289327c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20135','{26021}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26022}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','8db96c9e7d164b0fa6d2af61899ea427');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20136','{26023}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26024}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','33c12e280a464d20960ae73341ea3dbe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20137','{26025}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{26026}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','4fa5ef5d55fd4fc8a21516dbfb0ff7eb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20138','{26027} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','fd43c6f8ed834db3a69e6c30c29878ed');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20139','{26028} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','685f5eba5ddd4b2ba3173fc82367b476');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20140','{26029} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','4a4f14e171504413ae16d92597fe1024');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20141','{26030} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','ed070d7bccb649a49b29eda9b8a02192');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20142','{26031}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','89940e123e8c4c04b402a436c977d999');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20143','{32041}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32042}-{32043})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32044}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','e5df295edd2848329708aaf765a8e8be');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20144','{32045}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32046}-{32047})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32048}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','31ff4cd8ae95435193ecc37238327c4c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20155','{26063}<>{26064} and length({26065})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','70a98e004bd34fb48e9c410ca52f4bc0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20156','{26066}<>{26067} and length({26068})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','e4da63844b774f4eb9e0188f659f256d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20157','{26069}<>{26070} and length({26071})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','9f738a1caee34259a3d38e52ddb6c791');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20158','{26072}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','640203769816409d883d5ba38a6ff4e5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20159','{26073}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','087f5705a7ce4a88a8c699541ee704be');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20160','{26074}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26075}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','8aa17694ab184951b24093d8a765eae0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20161','{26076}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26077}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','3c33429067c84714b68c4bbd8f729bc7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20162','{26078}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{26079}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','100002ca08614467b16f313dfeda6e68');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20163','{26080}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26081}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','757ac3b43a62450f9e49885dd654167f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20164','{26082}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26083}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','71f8b72b4c7240a8a4e10b503a2aec9f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20165','{26084}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{26085}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','818f218a8ee3455db507dcded146c3ea');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20166','{26086} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','6a8f6966f59a45e48a68f0343c372973');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20167','{26087} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','0b4661e442014e21a98e56b8b332a6ba');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20168','{26088} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','d04782f202c44772b039867d744582de');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20169','{26089} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','d8d6a75db4de4ff7b8b2f4ab1f8d7258');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20170','{26090}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','6dfee746a74b4f96b103202b00ed3720');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20171','{32051}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32052}-{32053})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32054}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','2e330eb1ac0a4427ab150c2f1c3949b0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20172','{32055}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32056}-{32057})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32058}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','ba3b9fe3bb7041c5a2e7d9fec8bed517');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20183','{26122}<>{26123} and length({26124})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','66ea5bdabba4438ba8f9959e0c4b24ec');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20184','{26125}<>{26126} and length({26127})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','425777ce38e54daba1f6501bd4f6bf6b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20185','{26128}<>{26129} and length({26130})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','73aec359593a4ce9ae07e66a39ea2275');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20186','{26131}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','179753654a4849d48935c10417994eb7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20187','{26132}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','295ec169c36b482790f9091db3a39357');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20188','{26133}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26134}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','ae05e13963974301850e66f5e4f33a2c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20189','{26135}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26136}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','f5b55111b94e427082a07baa856bb4fb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20190','{26137}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{26138}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','1e19d78e1b394165ab9dc6da8c072ab8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20191','{26139}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26140}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','588874bb24d64ca6b10179eab36fa7c2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20192','{26141}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26142}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','40cd8afdf46a4d03aa426cedd7ce7d9a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20193','{26143}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{26144}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','ae2260c1ecdd44e48e72d43ce1936222');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20194','{26145} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','1e1893cd271a4b1f9d04afb520cd6925');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20195','{26146} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','c045d57678f4478cb6caf5fb0a80d0e9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20196','{26147} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','8125b0058dfd42e786bcf3cac7ab4c88');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20197','{26148} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','bf70869515ec4c35814efa05b8305403');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20198','{26149}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','9b78a081991540cda9aad21e6255b632');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20199','{32061}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32062}-{32063})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32064}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','7589fe3f0e3e4c26ac21cd314b1c07e7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20200','{32065}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32066}-{32067})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32068}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','30977d9643d6482c89fe5a08030c559a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20211','{26181}<>{26182} and length({26183})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','32127aca202644c5915255006e9544b5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20212','{26184}<>{26185} and length({26186})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','7bb01da1713c42c1ab28c1ae2adc1260');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20213','{26187}<>{26188} and length({26189})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','28568c2163ee4a0aa262241064922c7d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20214','{26190}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','7224d01c717a4dd3800fbd8d8e9399b8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20215','{26191}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','d6343a3648f0493bb786d598a8e51ab4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20216','{26192}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26193}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','6b909503dc46413fad04d4cf4d7b6939');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20217','{26194}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26195}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','94833673685645f68729a8f98b5a213e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20218','{26196}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{26197}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','aac8de5837494421a642793cc5a9009c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20219','{26198}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26199}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','3d4dc47de9db4049a4baebf68df16b1e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20220','{26200}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26201}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','cf105fee78774aa7ae119f2638528423');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20221','{26202}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{26203}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','1bf28981db8d414199c3fb7bd20e669a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20222','{26204} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','c27c37092c5f48f1944417cbd47f6c25');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20223','{26205} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','9525ed0ec7bb426587ffcf4879590d5b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20224','{26206} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','d7c501de314140aeb2b6f344bad2c501');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20225','{26207} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','f124b3bbba784fff966adef3c722eb70');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20226','{26208}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','aa16e2906256441bb0c6680e9c95f547');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20227','{32071}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32072}-{32073})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32074}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','2d873bbec47d4b3281b1aa33c87c60a0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20228','{32075}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32076}-{32077})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32078}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','6bab52e75f8e4286a7c4ec7336a4d417');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20239','{26240}<>{26241} and length({26242})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','58b860a92baa43158419a843ae89687f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20240','{26243}<>{26244} and length({26245})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','54368f9d9e9f494ba55f8f5fac20196b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20241','{26246}<>{26247} and length({26248})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','dd39ada0b3b14009968866d766e9e16d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20242','{26249}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','de55f957c95d404380cb490126f88e3d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20243','{26250}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','693899638cc1411a9f178cdf6d53b22a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20244','{26251}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26252}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','9084cab74227494d9ebd02ea9a4309d2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20245','{26253}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26254}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','5dc37a79bb254104a9a46383b14b0e3e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20246','{26255}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{26256}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','35fd07bdd3d84ccab6172255af3989ac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20247','{26257}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26258}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','d26213a8d92e4845a7767a0a7fe340b6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20248','{26259}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26260}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','47e2acacb8414731b56ec86e1a9e3e3c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20249','{26261}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{26262}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','69c54b6ef3a04343bd9df41153398067');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20250','{26263} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','6e805c219d884cb38bcd51dde95af1a4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20251','{26264} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','93ca96ceac4043fbbd88004165d94c3a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20252','{26265} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','0f7f11abdba9495fa4fa33ad1a872244');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20253','{26266} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','da0b1d4940d64a5c9b96c83600cb4963');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20254','{26267}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','b885a22b88114ea7a275f0758d82210c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20255','{32081}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32082}-{32083})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32084}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','49a1cefb001c47bbae541e71673d5eb5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20256','{32085}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32086}-{32087})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32088}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','5145ea5e4fb04f9c9dfc90d61ca65d1b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20267','{26299}<>{26300} and length({26301})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','0d646e6c03f14c259b81862187a6eec1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20268','{26302}<>{26303} and length({26304})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','992d3bd742224ad7abc375d20e60e1af');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20269','{26305}<>{26306} and length({26307})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','b3e063c9221d4bf69acb21a16859bb15');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20270','{26308}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','95ac8c277d8940ecb1545be2dc514c54');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20271','{26309}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','9e5d5b925a5c42a2af13b3a6727a4cb9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20272','{26310}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26311}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','ba13b39c8a6146bf9b3b6d46fb71fcc6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20273','{26312}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26313}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','3a469cd75bac4782b18aff3011c766b3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20274','{26314}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{26315}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','11f6f7f659a445e7930b7ab3532a8ebb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20275','{26316}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26317}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','3392f74fc5974701b62673f5c51700d4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20276','{26318}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26319}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','0e4acbc3bad54347a362cbf57c0464e3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20277','{26320}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{26321}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','42c7cd22b6c74fc7b36f5b6593db02e5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20278','{26322} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','027b0481f1de4967973208e3477c0094');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20279','{26323} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','7dc5c0d4f77441a5a29239b1aa77d00b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20280','{26324} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','95d3868b6d1c45629acc756865cf6f78');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20281','{26325} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','94cb13b08f4f46c2bccd3b5ac22ccb3e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20282','{26326}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','1317af27066547e2a07f2dd27923e22b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20283','{32091}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32092}-{32093})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32094}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','ee1e3d1444c947d2898cf120dc3fc53f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20284','{32095}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32096}-{32097})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32098}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','a6f92ac3ee824ef486a82f441fb60a67');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20295','{26358}<>{26359} and length({26360})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','65e43afe1d04447fb334d5efbd76c185');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20296','{26361}<>{26362} and length({26363})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','3a3ac7e0d5fc4feca67eb2447fcbcf34');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20297','{26364}<>{26365} and length({26366})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','2f18268819414337aca3f919343d6577');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20298','{26367}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','cfd67344627840a081d286d8188c0888');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20299','{26368}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','d9f63d9be04940949d9dd655cf1a7bd2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20300','{26369}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26370}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','bf5e439b3dfe4a5b82df00c0ed291895');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20301','{26371}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26372}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','bc428b5477294722a18477dc061a59e9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20302','{26373}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{26374}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','21aa13901d7449a39f64a41cb151d687');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20303','{26375}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26376}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','0a2cde44b8ea45178e0859ae7c1125e5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20304','{26377}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26378}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','0379f91f1b4e40d1b35c30ac538a8b61');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20305','{26379}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{26380}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','7d4b709e7b5c4e9aa68a9c6f8df69e75');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20306','{26381} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','4ae567c4a5be46a4a1a135a5f61aece8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20307','{26382} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','1e6aca20d3c140f69580920d37820c9a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20308','{26383} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','65a6c1de5d8e4a4d8857a4b97fcb1a7a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20309','{26384} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','df73d669f65940a79065915e11a3e3bf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20310','{26385}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','233fb21420794842b00c0fb12db86e51');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20311','{32101}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32102}-{32103})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32104}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','3e07aa63774040ef9369b3280cae156d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20312','{32105}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32106}-{32107})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32108}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','caae865a278946958a38fa40a41f180f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20323','{26417}<>{26418} and length({26419})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','f91e54b227304a688092ffcbabf88d41');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20324','{26420}<>{26421} and length({26422})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','aeb6d1d52ee24d7393a4a5a31f7267fb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20325','{26423}<>{26424} and length({26425})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','be2544b8b967408288a750c82a8f9059');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20326','{26426}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','4fbf859b65774291850b37f700945a36');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20327','{26427}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','6b4d22ac23db45beb398d591a157782e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20328','{26428}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26429}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','519c8f4f6a62492fbf739c2303f76aa5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20329','{26430}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26431}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','4b2e16580fe6436aa3e37813c83fde98');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20330','{26432}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{26433}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','6cf5bdc92724485ba64f5d06b01f4656');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20331','{26434}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26435}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','2218bd775d8c421992346f40d0b38fa4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20332','{26436}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26437}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','093386c3b35f45bab6cea6d6396064b1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20333','{26438}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{26439}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','17ac58cd999d49f1ae31bc6a9280f887');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20334','{26440} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','1f7f8781515a44b4b12db1a162e9a8f4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20335','{26441} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','79166253631142cf87660a658c77169e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20336','{26442} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','e5d37873211c44aca51f7926a9b2add6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20337','{26443} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','51c15917a456414ca6fef2cc86156484');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20338','{26444}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','e9057c50ee5148119a922bd170e7463f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20339','{32111}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32112}-{32113})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32114}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','c01561923734478abc70b7c02d2d9add');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20340','{32115}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32116}-{32117})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32118}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','e53a74871f2b4fadb8ff206f348fc90c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20351','{26476}<>{26477} and length({26478})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','db665e87151d441395fce421949a9bb0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20352','{26479}<>{26480} and length({26481})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','a5e267a8584a4d099f0d36d30ce17d0b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20353','{26482}<>{26483} and length({26484})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','9fe8a423c0a8411191337e48818cd835');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20354','{26485}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','ef73c971f14444f18a8b0956c8bd5796');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20355','{26486}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','887bf529d1aa43dbaec9a92a390fc0cd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20356','{26487}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26488}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','4ec904a360ff48668e5273ba4dd223fa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20357','{26489}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26490}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','c8dcfe797232437991ab8da001e9855e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20358','{26491}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{26492}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','90cea4e309944224abe0052a9eeb2e59');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20359','{26493}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26494}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','b0718bee8c8d422683e5f9f2915a35c0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20360','{26495}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26496}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','bb57907f2cec4eeda6e7ace60d90a2f3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20361','{26497}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{26498}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','7c1161969d7f490fba58d113a7cf9da2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20362','{26499} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','ce0b05960b714a03b34f626d262f410a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20363','{26500} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','e97689431f51481db6836b937214a926');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20364','{26501} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','de8a3e44f9494ae0b9506785386c0604');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20365','{26502} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','4c4e3d9b71974e3192070aa344e37221');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20366','{26503}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','034fd6289a4a4d549ea927ae48d8b225');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20367','{32121}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32122}-{32123})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32124}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','e6c0c2401c0940ef8edae9aa38aa49e3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20368','{32125}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32126}-{32127})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32128}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','d72e1d5537ec498788f6e7e57e18f65d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20379','{26535}<>{26536} and length({26537})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','98b8b373def34eec9e814c039dcfb20b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20380','{26538}<>{26539} and length({26540})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','da1a900485be412996f607b9669daf83');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20381','{26541}<>{26542} and length({26543})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','41ec834afc7a49409cc9996459b15452');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20382','{26544}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','86bc4c3dbd024d8d84a90f25fa8c0932');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20383','{26545}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','dfedf883e0e043a8924796421d0836da');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20384','{26546}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26547}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','cc60802009c449eaa49992f38c176f8c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20385','{26548}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26549}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','f83dac15be7a4f6a891406fe1e307074');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20386','{26550}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{26551}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','7044f89f39fd4fa7ba1bc790e86fc960');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20387','{26552}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26553}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','2cc0f3a6c39340b78e6b1795b90ee052');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20388','{26554}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26555}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','5f460952122241d5900e83f68e097e32');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20389','{26556}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{26557}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','e729643fce2d43d8b5de5a5f3d0fa184');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20390','{26558} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','de98377f082840a0929e2f9024eb873d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20391','{26559} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','4cf201a794cf48dfbaf574a04f8111b6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20392','{26560} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','3666c8cb456a4e4581c4ebac22db115a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20393','{26561} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','4b0a6c73bc1f4e7692cb9196dbdf059c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20394','{26562}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','26baba4f44aa436fbe96c86a4a511156');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20395','{32131}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32132}-{32133})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32134}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','e9f77bfbd9e64dc0a9549c0e54da0582');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20396','{32135}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32136}-{32137})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32138}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','ff9b2a577fc64bdeb0c8e1feaac80862');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20407','{26594}<>{26595} and length({26596})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','656a970a84fd4f65adc021b317f8db04');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20408','{26597}<>{26598} and length({26599})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','ba6f7f02b3dc47b6a15a40f81c86ee1e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20409','{26600}<>{26601} and length({26602})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','b720a6b27e14473db885682085ce07e1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20410','{26603}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','6d68e3acb5a34a9eb68f6ea1e329241d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20411','{26604}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','000c63d6cf4d44f28c2705098ce88918');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20412','{26605}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26606}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','23eaad92fd06421a94ed77347ed7805f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20413','{26607}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26608}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','e596c08e59974762a21d5e7c2bb06eb5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20414','{26609}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{26610}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','8faa5c80c64545b8bde41c02bf450288');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20415','{26611}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26612}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','6e77737e71a640b1b0832fb8a317a848');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20416','{26613}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26614}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','9ea2d3a683994dcc816d7210cfda6f38');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20417','{26615}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{26616}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','82fc4ea36e9e4a388e38bf4fb5d46148');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20418','{26617} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','eab50deb6a2e45e8b7bcd447dc6c28e9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20419','{26618} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','a12e8f4ef8c2496aacc7cbc35b9ede34');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20420','{26619} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','32cb826e59324b90910717b778a714f2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20421','{26620} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','4220c67e66074f048261a4b42092c381');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20422','{26621}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','bd6dc784f23746d19a09b6ea322ecf24');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20423','{32141}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32142}-{32143})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32144}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','708c6b4a613c4795bd2b3c8b10b9fed4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20424','{32145}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32146}-{32147})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32148}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','1220479e0e0b4dbbb7590ec2b8359009');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20435','{26653}<>{26654} and length({26655})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','7e708c7bf76445959909bf03adf676dc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20436','{26656}<>{26657} and length({26658})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','0b2e29ba173346248fb4d799f7e16cf1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20437','{26659}<>{26660} and length({26661})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','b0c3673f0aee4a23a7811f54416924bf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20438','{26662}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','5e104649223b40cdadeaa338321ca690');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20439','{26663}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','f8801c652f414d4b881715e10d1a69ac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20440','{26664}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26665}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','5e2a48b70bb5491791e1e796d9b57700');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20441','{26666}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26667}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','6064422d708f4ee3a54dd0dccd6c2ef4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20442','{26668}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{26669}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','b61c653ea25c47f397288e7a6c88c343');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20443','{26670}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26671}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','7f1abc774f4e48928a52a755f9655d33');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20444','{26672}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26673}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','4c3b3b0c4e4c4903856c673ed34c32b2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20445','{26674}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{26675}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','46ce97f9fd33406996e21d7c4cfe4615');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20446','{26676} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','5caa686e721a40e991d0f4b71eaecc7f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20447','{26677} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','ce67126d64254dabb9d5df68dcdb5a69');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20448','{26678} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','7401d1955be04599b1d0e5dfb3d2a4f5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20449','{26679} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','d668e892231d4614af5673f11d8070cf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20450','{26680}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','a5ac3a7a8ac447bdb1d35b9456351624');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20451','{32151}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32152}-{32153})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32154}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','adf6f10ebb2e42989ed41b69e3411431');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20452','{32155}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32156}-{32157})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32158}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','da4dd8436d6f4787801e6d2f10b59a47');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20463','{26712}<>{26713} and length({26714})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','9b20e7d8a4c844069a75adc95dcb6223');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20464','{26715}<>{26716} and length({26717})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','ec99b185eb1d4af2943cd49f4b1e3dcf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20465','{26718}<>{26719} and length({26720})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','54ca398b57a8450ba004aa15a310f599');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20466','{26721}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','a60e5b95514e4a6ba5bdc1d2bc95818c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20467','{26722}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','c5ddc3a0e73943ef939341972db502e1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20468','{26723}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26724}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','963f7342ba58427189be8e5d482bd1db');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20469','{26725}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26726}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','3bc320302ce64512bf5cabdddbf8827a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20470','{26727}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{26728}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','2341cc2581aa47629ba79efb0dde8f12');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20471','{26729}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26730}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','310fc63d695d4d79adb61b152467dc6b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20472','{26731}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26732}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','45d51b9e79ce4086934b7a93837855fd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20473','{26733}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{26734}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','84ea7da850864101a35eb96acb475dec');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20474','{26735} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','832ceaf8547b4395a4495ad2d64c9f3e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20475','{26736} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','64e8b603db0240bda81435df0ec8f275');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20476','{26737} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','8085843742774a44ada60c14cf33aeb4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20477','{26738} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','e315b7387f1943eb9432986565aee291');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20478','{26739}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','611cb0ad354a4ac0b52715483b4426ad');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20479','{32161}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32162}-{32163})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32164}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','63d24ac83bc24eb5b64ecc47c75c1c4a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20480','{32165}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32166}-{32167})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32168}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','ed3c082e9f264f20862f9cd20d4e9724');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20491','{26771}<>{26772} and length({26773})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','6be0e3bc49134d8c9823736e1c4dcb98');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20492','{26774}<>{26775} and length({26776})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','a6c0fe000ca34b7490c4a56f5c57346b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20493','{26777}<>{26778} and length({26779})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','660fbce28f334bb79afc6a9ba8596316');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20494','{26780}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','ac97984b2153426c89247bd88797b4a2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20495','{26781}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','62fb5cb70674493ea1c7db4df42cf8f4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20496','{26782}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26783}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','43a5c40a58f541faa120a514dc47451e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20497','{26784}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26785}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','bb4a5e936ba74269b8a8fa2e1ca2b27e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20498','{26786}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{26787}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','46754e9a44b04fdeabc9d6a1370505dc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20499','{26788}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26789}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','5b25032a33c3443585d74f3412f13d3e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20500','{26790}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26791}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','44f2b8515564492c9b2e68985f753cf9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20501','{26792}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{26793}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','cd9978c41951477c9d3ef44f7d4d717c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20502','{26794} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','889e25ecd5104014bd798cb577f59bd5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20503','{26795} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','8733d8912d8d400b9dafcc845854cb3a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20504','{26796} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','a801c0260917479f9f905a8b32085fc6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20505','{26797} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','cfcecfe761064f5baa312a0c54633261');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20506','{26798}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','0a36e10a866e455f98f1954b4c663d64');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20507','{32171}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32172}-{32173})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32174}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','7e550dcc8005425db0c20785d3818466');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20508','{32175}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32176}-{32177})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32178}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','92d4b209c4e249fcab9d72eae2da160d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20519','{26830}<>{26831} and length({26832})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','1a920e11feb447deba1aa2d8fbb24f85');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20520','{26833}<>{26834} and length({26835})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','1167a5bf26e24eb89479904841ef890b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20521','{26836}<>{26837} and length({26838})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','4a1aacf6350844e5858c3eed35b544eb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20522','{26839}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','f58eb093a57948f1bf674be6a207b0d3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20523','{26840}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','4a30b05ebe764253bfe646c3d68aef41');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20524','{26841}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26842}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','7475c0fe7374472db189a828aeca7b60');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20525','{26843}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26844}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','225e0c1c96c94a32a84511107b71ea6d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20526','{26845}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{26846}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','b5300fdf6fe8405d84fdd7a8821ac504');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20527','{26847}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26848}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','e208be80d815435ea6fc35df960bd2f6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20528','{26849}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26850}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','7153cf7699df438d8d04e5d3163e37b3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20529','{26851}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{26852}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','30adf35ae2764123a80f64e81c11c9dd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20530','{26853} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','35142b5bd9064d63a661b07b24381564');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20531','{26854} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','ddd0efc2e01e4b6ca2948a5d3973dcd5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20532','{26855} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','90f360f3394d49a19413dcbf0dc0eab6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20533','{26856} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','f753e8c0d5fe43779fc3c427fcb087dd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20534','{26857}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','0ec46a410f97442fb9308a0922d43648');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20535','{32181}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32182}-{32183})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32184}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','1f6e2a2bdf04499eabb18118fdbfcc4f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20536','{32185}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32186}-{32187})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32188}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','7fe3563d08ad470f909545c146b1b2c1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20547','{26889}<>{26890} and length({26891})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','2a00f0a84a274bf98254d1bbb9f1ad93');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20548','{26892}<>{26893} and length({26894})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','519f97f0275f4e9caf7e320e932ee911');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20549','{26895}<>{26896} and length({26897})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','97933a27c0eb4e0cb67fceb9877641d9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20550','{26898}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','72662034829d4d008f19cd3231b18bd1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20551','{26899}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','c5c743eec5fd430385a3ab3f1b9ccd61');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20552','{26900}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26901}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','788f637f7c28499cb0b8227bbcfddbf6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20553','{26902}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26903}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','f2952ccdadf0474a85e626eeae67ee8f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20554','{26904}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{26905}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','fbd7daacdcde41fa9395a3dba62c7365');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20555','{26906}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26907}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','732a162ce6aa424e8660882cccfaf40b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20556','{26908}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26909}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','64daf72dc6824976bbc28c0e76b9318c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20557','{26910}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{26911}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','3a6e8742e68d4e4cb77931acec6202f2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20558','{26912} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','89422cbc4e294e5392352b3daa42a27b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20559','{26913} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','1f5dbc7e06fb4a48a516f21095ad95eb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20560','{26914} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','13229b29783c42119d9242d4e2d795ef');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20561','{26915} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','acdd956a5d49476a86ced8d9ac561979');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20562','{26916}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','a6f2bfc1407f4b96ac51aa7ec69b234d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20563','{32191}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32192}-{32193})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32194}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','d48fafd1402e4774a5e7c2d854e3ebbc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20564','{32195}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32196}-{32197})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32198}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','802aa708fd8e42fdaa61d1aa3394c58b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20575','{26948}<>{26949} and length({26950})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','fe286c10b77a4178b53136d088c09977');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20576','{26951}<>{26952} and length({26953})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','b84f0bcdae4a4ef7887877b7f054ca3c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20577','{26954}<>{26955} and length({26956})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','8d2847030c154c958ae3cc72841f7b73');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20578','{26957}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','4e4df5360a9b40b5a4f6d1aa706d23d7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20579','{26958}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','4d838f76e7d14c73a89a6a8cab585e77');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20580','{26959}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26960}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','70bcead0c721429ea2140eb12e32e5a9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20581','{26961}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26962}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','04687ea5280b4448844b17afa9c655c6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20582','{26963}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{26964}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','62fd1bbcbe9e4db7851ad08b75d9f54f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20583','{26965}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26966}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','9d035691d2344fa0bd64e6724828626e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20584','{26967}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{26968}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','869eb891b56e4d499586a9e40fdb5f95');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20585','{26969}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{26970}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','5d18aa2f47154e999e9077f3cb06e3ed');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20586','{26971} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','bca448bbec634737adbc1935bfb96395');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20587','{26972} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','d7894ea315a24f42936eb44d85f60a8a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20588','{26973} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','fb73c03756734684b5b1078de2d485ab');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20589','{26974} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','c0bc438b1ee248109e3471d6af153c14');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20590','{26975}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','91ea1c2de293413c9b24932282a673ee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20591','{32201}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32202}-{32203})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32204}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','21b45f8f32344ed9a2323ef940fdb564');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20592','{32205}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32206}-{32207})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32208}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','13db9f1c26754199937d4447976591ce');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20603','{27007}<>{27008} and length({27009})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','2deae9223199442b895df43cb2b0904c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20604','{27010}<>{27011} and length({27012})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','ae8533bd4fa84d8f8e8969498d5530ed');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20605','{27013}<>{27014} and length({27015})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','b0b935a8197e4188962b7d859d2b412b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20606','{27016}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','f9d7f4390619408eb5a20baa5e4ebbfe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20607','{27017}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','acf19a5a27674b8db8b4913257534506');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20608','{27018}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27019}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','93deb16896994ddf8509332b293f078a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20609','{27020}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27021}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','bbe383abfe5a48ad8a0b4a9c943cfd11');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20610','{27022}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{27023}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','915d9a838c0945d0bad74aa2fb79da79');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20611','{27024}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27025}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','9b3e19c885d34128b47b87d071d959f1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20612','{27026}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27027}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','921ad5dc74e44e139a523ef11dd2743e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20613','{27028}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{27029}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','0501798bf83342c5ac1f960649163a58');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20614','{27030} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','c5709dbe38eb40e1ae8ae0cc564543b4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20615','{27031} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','96e644aa6f2c4399853ab05a7ada5afa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20616','{27032} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','d4e38db917ca40da8ebd3da22442696e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20617','{27033} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','5837ae05e1694017ad026d215af06683');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20618','{27034}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','722a78d3b55d4a66be1dba0b705704d8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20619','{32211}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32212}-{32213})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32214}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','3e812901cab94bbc9d5f15e8b70da4a0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20620','{32215}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32216}-{32217})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32218}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','bee86ff10a084f76b4b266aa5e20df22');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20631','{27066}<>{27067} and length({27068})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','9f571e3e7d7b4025a62cb4d61684a63f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20632','{27069}<>{27070} and length({27071})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','6c56d13df5a84f8c81e3b11b5979fe2f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20633','{27072}<>{27073} and length({27074})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','cbc5e573f7ff4d4186782e18abb18323');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20634','{27075}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','41dc7494d2d04e2e8fd9f31d744cdf94');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20635','{27076}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','40af64475bf54290b74ac2ed6f3183f2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20636','{27077}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27078}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','a1116b45b6e341dabc44b226c4741f97');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20637','{27079}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27080}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','7b61f191e2634044a81981627fb52483');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20638','{27081}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{27082}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','c62859952edc45fd8c09a267e6badab9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20639','{27083}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27084}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','9980a1f6561c4b16935e204dfdf67c65');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20640','{27085}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27086}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','c0be5c2bae7f45e780addd984a3f77c4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20641','{27087}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{27088}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','ee368004b1f24293b8162d78b456a6d0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20642','{27089} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','6b1a507739c940ffb528a41d5af76069');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20643','{27090} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','0b2b0b8cdf964cc48d7ece2be62d115e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20644','{27091} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','4d271b81500f4513a1408dfa8f0e1e29');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20645','{27092} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','8875480665294938bee208b23d416d34');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20646','{27093}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','c529624e4a254ecba9659fc9d43f9df4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20647','{32221}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32222}-{32223})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32224}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','47a1f1bee8f64507900f48de26bba052');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20648','{32225}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32226}-{32227})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32228}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','419bd5a8f90d4e879be3707a3ad3f551');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20659','{27125}<>{27126} and length({27127})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','9c552d88fc734c2d8b9976831396dcc4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20660','{27128}<>{27129} and length({27130})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','59393bfb9a2b4fe9acf09735ab9b6dd7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20661','{27131}<>{27132} and length({27133})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','d517281567044119bdc82dccb20c9724');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20662','{27134}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','ce1f7003b6dc4ca6a0e435c06aba6e1a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20663','{27135}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','8ab046f6fb47499ebe6d34ad8ce20f59');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20664','{27136}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27137}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','75e1b534632a42d08535fc863c280536');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20665','{27138}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27139}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','117c3a91044a4d6da15b235017caf99f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20666','{27140}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{27141}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','b20c703b353f444bb6d77d45433108fe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20667','{27142}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27143}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','f63a8665f1bb4fce930c8e6d68ca9bc4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20668','{27144}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27145}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','61ef8b6e39fa4dfa9ad0398acab924a9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20669','{27146}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{27147}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','92626f1037574adf9e25e175b6e5781b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20670','{27148} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','3a29ebeb278444eb9940c6840b2e0a4e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20671','{27149} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','4c0dfdccda7a4a0a9b889b4a643d02e4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20672','{27150} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','858fcf334125405aaed104a0f50d4097');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20673','{27151} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','d6e6ca097afd4c1fa12e1c67f9a575db');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20674','{27152}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','f0f924ded1064d70964e5669eb1e3a62');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20675','{32231}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32232}-{32233})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32234}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','e665c0343ae140d08b8ae96b6c28f4d4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20676','{32235}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32236}-{32237})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32238}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','c685347700044a78a38e4e892d3dfec4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20687','{27184}<>{27185} and length({27186})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','84b149555c7a4ba896260eef821e65e4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20688','{27187}<>{27188} and length({27189})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','5444e9d45fd5482b9913f33a0e46afac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20689','{27190}<>{27191} and length({27192})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','7297756962334a7e92bec8fba24cc346');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20690','{27193}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','3f856c135f7a4124b606a368ddbaea70');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20691','{27194}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','660252e504e242f39a8116ef95593088');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20692','{27195}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27196}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','8c905104ec08406bbb9eef074386d533');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20693','{27197}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27198}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','b78a65cb7a81475390b652bb998bad77');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20694','{27199}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{27200}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','d86c54c62fcd456aa879a23aa539fdc7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20695','{27201}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27202}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','0ce7d965b0ce4e259dad9ef1c964cf75');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20696','{27203}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27204}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','e6e1ac1371c8479a8c9b30513f10c57b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20697','{27205}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{27206}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','5f04a5beb30c4fc48c3553f41631ec8e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20698','{27207} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','9e5b175a657040acb532677e5e3efd4e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20699','{27208} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','3e5f0494aec9433ab7d7637fab2095f2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20700','{27209} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','52cfc831296f4ebbb9bb9d66a164c129');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20701','{27210} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','22da96573bbd471785f694bbdbca7cd1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20702','{27211}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','c5d53608ecb34d68a3d1ffbe5807dabb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20703','{32241}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32242}-{32243})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32244}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','388504f73df94d21bea32bdbda0fadb7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20704','{32245}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32246}-{32247})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32248}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','ef0ef8ddead24672adf8e65eed13f60f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20715','{27243}<>{27244} and length({27245})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','e0f5e6575df14242a14813cf95f763d2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20716','{27246}<>{27247} and length({27248})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','09d6eff5d5e24ba9801d29a594913c5e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20717','{27249}<>{27250} and length({27251})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','2cfe859d44ee4088b3a62f832391091f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20718','{27252}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','f32f4750dd6f469d84560e0a27dad550');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20719','{27253}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','544c2e61e9b0434e962823246974ede8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20720','{27254}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27255}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','1dc430575d5546c188615191fdc50ae7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20721','{27256}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27257}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','04ef546dd200411d84f167a5e1ffd8ce');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20722','{27258}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{27259}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','f24798b46eea407cb2bd9e38068e68d9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20723','{27260}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27261}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','81e424e84231418d888ca1a9126c29fa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20724','{27262}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27263}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','53bc0055eacf4e9d931498e89811e86e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20725','{27264}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{27265}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','9635cda9637b4216adb68675640639c2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20726','{27266} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','bd8b0cbb30b144bc82b91f508de543e1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20727','{27267} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','b2c222622bd8405a8f3f8138969e4d00');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20728','{27268} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','3fe7fc4d601143a58ebd8affe7ee78a5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20729','{27269} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','c70991ad8d2b460bb2b4860b16ba45b4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20730','{27270}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','555d5c8083fe42f09096097e1bb87499');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20731','{32251}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32252}-{32253})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32254}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','728a9e55d14b4b859caf170cc910879e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20732','{32255}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32256}-{32257})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32258}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','12ffbe36a2e14c139f5d662ea509912d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20743','{27302}<>{27303} and length({27304})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','0bc8753d55d047cd870eb7bd2db7849c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20744','{27305}<>{27306} and length({27307})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','4a87af156bc44861bcd76514d60183f5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20745','{27308}<>{27309} and length({27310})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','b5b061ff649547e6b63bdd9dc545c652');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20746','{27311}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','8e0b50b2687a4259ba9b9457c6a2d911');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20747','{27312}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','c90699faebaa41ccb0910a08ca56c014');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20748','{27313}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27314}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','216c4b7093ce4b1688c24031c61b9e53');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20749','{27315}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27316}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','2c1aefbb49d84198b9dc5b633cc510cb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20750','{27317}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{27318}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','e56cea52d6d64a62a02856a74e32601b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20751','{27319}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27320}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','77015cbdfaf8411ea08a78982b15885c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20752','{27321}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27322}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','c3a882d877f94cf7965984128c314f99');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20753','{27323}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{27324}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','9c97fd1e8cb94e53a8f8d1bd15b94dcf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20754','{27325} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','40ec9ac31c784b6f8de50945dff9f414');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20755','{27326} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','e29bb10956c64db1ba0809112449de26');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20756','{27327} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','ae6d45eb89244d67b38408dcaf20424f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20757','{27328} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','a02267b7d6d4497b98c1c2e465f92796');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20758','{27329}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','58d63b8b9c404a5382b44e25bf091feb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20759','{32261}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32262}-{32263})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32264}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','a140f5a63cba423c8f59439efd8d501f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20760','{32265}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32266}-{32267})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32268}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','c3e3d8a9bcac473e8c641f116355ccbb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20771','{27361}<>{27362} and length({27363})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','5924d076b0724fbcaa2090c786b20068');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20772','{27364}<>{27365} and length({27366})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','5df5c72272694a7f8a698ddda7b662cb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20773','{27367}<>{27368} and length({27369})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','18fce4771aad421e949e78ec9484a888');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20774','{27370}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','454c77360eb44d6aacf067327d1aecbe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20775','{27371}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','00f27ff850b046faabdaeeae1b2a2fcd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20776','{27372}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27373}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','d4d0bf767e7741fc98d9f930ade655f3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20777','{27374}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27375}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','4299f4f1519a46ed86d4727cefa01c1e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20778','{27376}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{27377}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','3cc5640941bc491e9cc23cc9b467952e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20779','{27378}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27379}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','420f9002f53646729666658f193c733e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20780','{27380}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27381}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','af33ef97881a4ab48686aa63676c7a2d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20781','{27382}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{27383}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','8aa51a89c64f4626aa8646f9e1717669');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20782','{27384} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','32cb8289aea54c4099ee36d58dd31b72');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20783','{27385} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','32764a33204e41bfb1c5395a52302c27');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20784','{27386} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','eab70beb20504b1d98be8d7cd82031fa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20785','{27387} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','c08f7ab1fb374e7db4f4c0525009cd93');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20786','{27388}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','04bd0420c7474d90b10045328c5027a0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20787','{32271}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32272}-{32273})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32274}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','a4a3e86a03684038ba779bac1041eaec');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20788','{32275}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32276}-{32277})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32278}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','7202bab5700444f58d4eabd9433f0efd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20799','{27420}<>{27421} and length({27422})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','2349e4eac44548349cc9f7806f8726db');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20800','{27423}<>{27424} and length({27425})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','f43a3aa77c8e4e9f81add08ac624be88');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20801','{27426}<>{27427} and length({27428})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','76d4c429deaf491982b7b1049634550a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20802','{27429}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','cfca5a71a1534e199e9c3b867b8c6c3b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20803','{27430}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','1edf137678504b9d8dced37d9a1d3f5a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20804','{27431}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27432}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','e9ab4a4bc78e47a19409d2bfe4d1d5fa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20805','{27433}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27434}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','1e81f6308a2748adbed17064d648b566');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20806','{27435}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{27436}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','3a679a3d653d42cabed24e238fa01c38');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20807','{27437}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27438}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','88fc1612d1b14108a1d90313fa1cb0e7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20808','{27439}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27440}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','048ffb5e510746e6b56daec287db6739');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20809','{27441}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{27442}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','fcc70d3662ac49499a0f5bb68a13c007');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20810','{27443} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','d9acbd875f514ce8a19638125c096aed');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20811','{27444} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','569c192c940a49f7b180162e4b83be24');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20812','{27445} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','7b31d412d15140d7be66d4b9963150de');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20813','{27446} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','7512216ac6e24d5f88a187621d0d7285');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20814','{27447}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','bcb6d9302db14ee3a7dd120304b7a5a5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20815','{32281}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32282}-{32283})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32284}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','c3e8a5f013f34395afeffc5eabbe01ac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20816','{32285}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32286}-{32287})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32288}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','2199168e964c4bd79ad06de3c1226f1d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20827','{27479}<>{27480} and length({27481})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','1f05ddb5fc1c4d18a5d9f5755b22a080');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20828','{27482}<>{27483} and length({27484})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','9bc744f5b70748e68b13933b618f9550');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20829','{27485}<>{27486} and length({27487})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','72cedbd4d23948c3941d5b2011f5cdab');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20830','{27488}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','971f8265db9348ce942f4e0adb49bd1a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20831','{27489}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','636401049a4e46c48e7b89e2b0c8c72b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20832','{27490}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27491}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','fac1eacc650b485faa1f05207a865ed6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20833','{27492}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27493}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','c604329ca3374ed5b29339c10070b9de');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20834','{27494}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{27495}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','37927a5941e245d9bce883ce155fefdf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20835','{27496}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27497}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','4f2a304aba6e45c7a0186d8b069be904');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20836','{27498}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27499}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','7ab0db29abff475d908e9db2e86ee16a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20837','{27500}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{27501}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','ae7e34f53a3d407d86484baffad515fe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20838','{27502} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','a7d31dad39524586ad9cca3c52ab0802');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20839','{27503} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','abae11ffeea140debcd8f32c34f10f31');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20840','{27504} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','f7804db0113d42a49322193872ddc616');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20841','{27505} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','73f6c8071582400b952f945388a181c2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20842','{27506}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','e159cf84958443ec9d148c3e83cf8e41');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20843','{32291}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32292}-{32293})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32294}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','c8c7b25b435e4157a22c8f4d6fce9ea5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20844','{32295}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32296}-{32297})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32298}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','e63fb086de874cfe86e0d03d2d57f157');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20855','{27538}<>{27539} and length({27540})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','a5f7839a9a0d4272ae0312b8954a9313');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20856','{27541}<>{27542} and length({27543})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','672fcd1d34374373b0992d80d46d885c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20857','{27544}<>{27545} and length({27546})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','7538c487e4f14cdcb6fc3a6b415ed559');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20858','{27547}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','6975f0abf1504caebd3a13193da1bdcc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20859','{27548}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','f6b89443734b4c79920496ff9244f6d3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20860','{27549}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27550}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','b9eee5f17d084ba7b6971aaf6165b313');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20861','{27551}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27552}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','64193d2ccc1c4813b8585b5d3d81f962');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20862','{27553}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{27554}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','be0ff2612a014f2db296b4066c22cfdd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20863','{27555}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27556}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','3035592657fe4a6a89fcacbd05f84573');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20864','{27557}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27558}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','5ae663e6743744bba8606334ab17eb60');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20865','{27559}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{27560}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','635d0ddc5ba6442bbb51ea451f502662');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20866','{27561} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','6eb10d964aaf44bb8849f35f39e6b909');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20867','{27562} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','c8c83d70279b461c95f5c8f4deb59d7e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20868','{27563} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','557d79e0013b4b91a16ce2a0c507256a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20869','{27564} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','fddeb17ef9dd4876b9ba818d732cbd40');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20870','{27565}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','cc74f3058c1945a59c95d49e3fdbb47b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20871','{32301}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32302}-{32303})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32304}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','67f66bb09eba4cb2b823fbf96391e0ca');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20872','{32305}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32306}-{32307})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32308}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','f28661579bf04f6eaa1bc06f92f8d8f2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20883','{27597}<>{27598} and length({27599})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','4a440903276347d9827dcfa3653d496c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20884','{27600}<>{27601} and length({27602})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','7b48c923659d4569b24692da4037b824');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20885','{27603}<>{27604} and length({27605})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','80b76f59fdfd407ea5c3294736113749');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20886','{27606}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','d55a4746f70a4d539a9fadd9a335794f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20887','{27607}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','e20e628acaae44d58c7f385f98cdb126');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20888','{27608}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27609}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','d009789ee3204089bbd1e60b23fa757f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20889','{27610}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27611}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','51d2ea964a684bfa85e509e549be251b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20890','{27612}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{27613}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','1cc47452c533402596797c5c6ae8351f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20891','{27614}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27615}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','49bf5605212f44e18a0a9f0e4afde82b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20892','{27616}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27617}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','d7d5fa71143e4601b41d24ce85031ed2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20893','{27618}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{27619}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','2478f32c04984bd8a53cb9211953d7c2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20894','{27620} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','6dcde689dccb4221bffd0c36f000dcf2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20895','{27621} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','d8d809f110c044bdab269c961b947f0a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20896','{27622} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','a935e2731aac466bb21fd0e3c092cb7c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20897','{27623} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','2193529f37424dc29976bae9681cfff9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20898','{27624}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','0f33b00af9164264b0d6fc91831a343e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20899','{32311}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32312}-{32313})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32314}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','ccbd9c9dab504a7bab4f403386e5178f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20900','{32315}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32316}-{32317})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32318}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','9b4adeaeed41450f839967a3d049b027');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20911','{27656}<>{27657} and length({27658})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','a61fd73d9dea4257bfbfc3d705475ae5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20912','{27659}<>{27660} and length({27661})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','c31be8015ce640629af6cd3ed09dc617');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20913','{27662}<>{27663} and length({27664})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','991217a368944e34abe41bd465921a47');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20914','{27665}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','5b0479439c444be284cac4c699f64b53');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20915','{27666}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','08f3a59bf7324ff4904737f2c6b94989');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20916','{27667}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27668}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','1c270c25cfdb4b44b35ad7115105dfbc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20917','{27669}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27670}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','3941319b74e64d8a921714b4748003f1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20918','{27671}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{27672}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','4b669ac2471b442dbfd82e70b0dba586');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20919','{27673}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27674}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','a3bcec91e98349fa9d53cb96aeb377ac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20920','{27675}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27676}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','9a03df6c9c3141e4845382ea5ae2d609');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20921','{27677}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{27678}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','f53807b0daa24b2f9bd3d6ab755008fb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20922','{27679} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','001e4d76e846438592bd8c7b76025e51');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20923','{27680} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','c8adfeee1f4b42b38ba756919d18ffce');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20924','{27681} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','c826e712355c4c40a4699346581c1032');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20925','{27682} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','ab44544163f14c31b2c45fe890b62ea4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20926','{27683}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','7830a4b9c5b24762ab083a24c978cf44');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20927','{32321}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32322}-{32323})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32324}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','7ec2dad6b1de421d800a086ad45e8fdd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20928','{32325}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32326}-{32327})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32328}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','e91014be808f40ceba0123f0e59e9975');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20939','{27715}<>{27716} and length({27717})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','d6de889ff3dc4c07a57bb5396a25a760');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20940','{27718}<>{27719} and length({27720})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','6c509b4e298e4df7b4e9cecc064dc8eb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20941','{27721}<>{27722} and length({27723})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','aafa92f02db4429b8ea5c43f1e13ad4e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20942','{27724}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','570f6f393cf24ee9b0731978bca9d7d7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20943','{27725}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','745e204551104bbca3a2db75f55f04cc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20944','{27726}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27727}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','f7f22555f0524fab8addb969f565b12b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20945','{27728}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27729}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','a291daa1248f4bfca3bdded26cdd3562');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20946','{27730}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{27731}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','4952d45ee57747de90b71e7073da13bc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20947','{27732}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27733}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','d6ae3c415fa842339e6f1085296fdca3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20948','{27734}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27735}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','3baba3844f1644e29fa20addb4c483e4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20949','{27736}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{27737}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','f81d3388b38845f1921e30332a487335');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20950','{27738} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','77565b5e0dbb4415b5f24ebe91d6e5b9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20951','{27739} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','271d7342775141cabcebb53ecb7e9a14');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20952','{27740} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','bea4466e83fd4733b269d92657e1107e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20953','{27741} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','53ef6c7af6114f5e8f76d15aa82d33d8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20954','{27742}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','67152198cf984ffeb453d6f149aae38f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20955','{32331}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32332}-{32333})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32334}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','da49d6b3b96c4c32b1439d13a289a2ef');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20956','{32335}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32336}-{32337})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32338}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','dd9a814580fd47be8982b9ca83217070');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20967','{27774}<>{27775} and length({27776})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','81f162170b3f4cf0a5376f43ba8c826d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20968','{27777}<>{27778} and length({27779})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','ba2f0b5e00a94aff9db6b436a64b91bd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20969','{27780}<>{27781} and length({27782})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','857cc7715ae243879509d5ba827f0533');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20970','{27783}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','f328399a209d4adaa8fed3dc9577539f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20971','{27784}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','ecb6b125d94643cf80b38078f1d42ad2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20972','{27785}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27786}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','b7ab6a1e8efd4accaeef15ed26b66308');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20973','{27787}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27788}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','5a24a5c02664439da2ee76753e25ec8a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20974','{27789}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{27790}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','c21ad0f3058d4a57a1dc137576217655');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20975','{27791}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27792}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','de90614e78854f81822379c9b5ffc74e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20976','{27793}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27794}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','11e619b8b2144751995926ecc71add69');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20977','{27795}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{27796}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','931a8a585db94a6eadbaa2cc6ef7c730');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20978','{27797} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','09762405d2114ec79510f7954dcdae86');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20979','{27798} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','3f6e42b8dbcb4cd4b47c067fe5b7d1ea');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20980','{27799} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','e4778ad9d8ee4568b212241439a79e27');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20981','{27800} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','3eb7aa8563c54b72b7193ef83793acc0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20982','{27801}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','c3737199ab5342829ca6fae6d1de74f9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20983','{32341}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32342}-{32343})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32344}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','b911cb33e9044a599d10c06e5b0f90fb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20984','{32345}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32346}-{32347})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32348}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','eada2d5bde184483bc0496677aff2c3c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20995','{27833}<>{27834} and length({27835})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','fe1e4e312e5a4ee48fecb03895b51201');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20996','{27836}<>{27837} and length({27838})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','250374059d8a45f78107f1f5b9bda7b1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20997','{27839}<>{27840} and length({27841})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','2615116273594f659184fdc9f2612c91');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20998','{27842}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','851e15f5b81a43b3be5d3eda921c9430');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('20999','{27843}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','87ea6ae2f5374f68acfbd4d368c8aae8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21000','{27844}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27845}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','89ccd80168694f6cb7742f79ab2f02ae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21001','{27846}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27847}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','a27c393597ac4618846b7c9d906167c7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21002','{27848}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{27849}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','648519d0cc5b4795ab917893a71f1872');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21003','{27850}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27851}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','48244ed562b144c192177e64b06d268c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21004','{27852}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27853}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','1b239ec1f0834b6ebe1ebc974121504b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21005','{27854}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{27855}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','d31b9428aef346d49ec00acd2388f657');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21006','{27856} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','573a668131014af2bc2989edbcdbf8b8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21007','{27857} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','8b6d36e582d34ed7bdec1aaa406d0939');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21008','{27858} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','7e8ac19ee7aa43d7bc849f5a093e846a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21009','{27859} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','36404ef697ea49329f0572be3940fbd6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21010','{27860}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','f75775427c074c83a1002b716733aa7f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21011','{32351}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32352}-{32353})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32354}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','6d5b2060b6c946c7835867727dec0f87');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21012','{32355}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32356}-{32357})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32358}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','e05e7d6b7b6c45f7974f39a258a754f8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21023','{27892}<>{27893} and length({27894})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','bdc6d6b5a4be4bba95f1635d8cf165d7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21024','{27895}<>{27896} and length({27897})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','9bcc039b8f1e4b3c84414d0d62d6c52d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21025','{27898}<>{27899} and length({27900})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','21dd8dc14526470493b31ebddf14574c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21026','{27901}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','bdd1ff379f214b1896c0e7ee5d6e6e16');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21027','{27902}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','ca6c0d5b13a24f6b9e28296818ae1624');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21028','{27903}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27904}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','21775fd4ca0143838ea2c2c7c16c4b75');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21029','{27905}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27906}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','7c75f3db8a8341819bb4455d4a6440e3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21030','{27907}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{27908}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','3247cd9062894b59bb736c3c75bf2f67');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21031','{27909}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27910}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','ce2928b0b45a4e74976c4ebb01f769b6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21032','{27911}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27912}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','9401397315604181973ac4a5e0c6a5ba');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21033','{27913}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{27914}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','466053cdfce44600bf1ff0ced3c4fce4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21034','{27915} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','9a48a8512ac74bff9c44733842d21693');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21035','{27916} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','c5e6899f9dee47d7812366a26e5191d9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21036','{27917} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','207bea70b82e4a6087f104cb1ec1f8a2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21037','{27918} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','3b7135afe54a4acfbf5d14510f6b22c1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21038','{27919}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','de36b7b78e8b4bea936347995a0eaeb1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21039','{32361}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32362}-{32363})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32364}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','f303b6ce2be34c8ca0f51e5c73e47715');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21040','{32365}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32366}-{32367})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32368}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','cdef153d2e914c12ba3303c938489359');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21051','{27951}<>{27952} and length({27953})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','8fb6d0748d5a4e589e397f0523944bc5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21052','{27954}<>{27955} and length({27956})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','c76bf7b6d13b49a4916a00709ee7c9ba');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21053','{27957}<>{27958} and length({27959})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','b5cddf34bbe74bb08663b85c83035f57');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21054','{27960}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','4a08a50891814c0d813c39a4615bffac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21055','{27961}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','4910a9cc5fdf4eefa05e1e0f339828c4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21056','{27962}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27963}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','0a16b13ef86e4b968690de77d4fdd851');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21057','{27964}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27965}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','26ad73c494494a83a6b7eab785efe3ce');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21058','{27966}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{27967}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','19c2754a812c48bd87fd250aac01b97b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21059','{27968}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27969}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','fada5a58781c4684b70e7aea77a96040');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21060','{27970}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{27971}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','87d04ed8af6040f1b2230244b7ffcc18');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21061','{27972}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{27973}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','e5ca03c450eb4ccfa4dc94de0d6eeaaf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21062','{27974} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','ef64375fbe9b456d895d5fa75b524bc4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21063','{27975} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','ccc2b5cabd164f2c94268bd8fbb17299');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21064','{27976} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','07ac669be6d14c878ed3824adbcaa035');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21065','{27977} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','e351a08588664f29aab5a784ff3bbc1c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21066','{27978}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','9361f7dd8cba43e4a237678d00eb26b6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21067','{32371}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32372}-{32373})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32374}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','cd0ef8f6c93340a1aadd0559ef302476');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21068','{32375}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32376}-{32377})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32378}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','0460d9d1f873497ea57430cf067c786e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21079','{28010}<>{28011} and length({28012})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','0c58b3a529a541c5813e6d374fb1af38');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21080','{28013}<>{28014} and length({28015})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','3a683df3455e4c3b9693f70d7cc2312c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21081','{28016}<>{28017} and length({28018})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','752e3b231fb9428baa28a7dffd90b2a5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21082','{28019}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','3887f8ec0f8a4eadb45b3d3388fdd3bf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21083','{28020}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','2d0e7e1624ef40de9a7ba351917ec339');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21084','{28021}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28022}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','3b40b247aeb14a6d833a3c67594938ae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21085','{28023}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28024}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','cf13c4a9be634dd09d1f14a9774a0009');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21086','{28025}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{28026}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','16f478f052aa47328ac6e23e778d353c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21087','{28027}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28028}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','8b2e3dedb9884c81a8370732a1f3a367');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21088','{28029}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28030}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','c5c22051e035432eba2ad5f77da002c0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21089','{28031}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{28032}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','9b49825517f44a7fa37d2d96abd8848b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21090','{28033} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','1491814409194648a9d98bcb18ac77cc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21091','{28034} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','e7a5fc01703c4474add6aac174ef5b16');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21092','{28035} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','d529f287404945b9a265fefff65768d5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21093','{28036} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','2f85f97d29774922b6fecc19379726d8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21094','{28037}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','92cf3f4cf7a64de58347d2e459321f92');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21095','{32381}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32382}-{32383})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32384}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','927bf28b0d7f4409ab7b2de288e59b66');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21096','{32385}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32386}-{32387})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32388}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','ca6639ac0950404da35738314aa3b88e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21107','{28069}<>{28070} and length({28071})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','86d3bc7830274e24b19f0b7120f9c957');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21108','{28072}<>{28073} and length({28074})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','8964055d1c7445e68b9ba2eb30faf1fc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21109','{28075}<>{28076} and length({28077})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','ad61f9029ba449aab240fee852d1e49e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21110','{28078}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','660db85a472349e7878bcdf41faa4689');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21111','{28079}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','6fa6e471c9594ea9a65d54a72a7a7b54');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21112','{28080}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28081}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','46615aebb0e2414b9094e5e25c0a6314');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21113','{28082}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28083}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','db07d94668634efca75ab714cc2cf083');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21114','{28084}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{28085}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','664ab6cc5ce044af8d6899473ea0a8b1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21115','{28086}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28087}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','f81db05dfee24aaaa8cc27aca30e7455');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21116','{28088}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28089}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','edab3732eb9a41f4b42da927ee8996a7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21117','{28090}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{28091}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','0ef1463290ce45ab83838acb51e9d5ab');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21118','{28092} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','30101628e09d4c67a1d4d7938b7b5674');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21119','{28093} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','179fb6a3947f4a4bad4d914dfbf2727e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21120','{28094} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','d92f9fa8a9a648ad817295ba5b26c254');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21121','{28095} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','df1dc76e73904e35850f1b104dca01ea');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21122','{28096}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','fb10d55898f74edbb7a1541481cbde49');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21123','{32391}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32392}-{32393})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32394}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','2ba297940326432dbbc91974ed99d53d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21124','{32395}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32396}-{32397})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32398}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','e3054ae302bd4c29b81b6f4c58c39021');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21135','{28128}<>{28129} and length({28130})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','4b2840d437844c54aa8328a2af6ab16a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21136','{28131}<>{28132} and length({28133})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','356423e8d963491c84c0ff910a324db9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21137','{28134}<>{28135} and length({28136})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','381ec628763d43e8a7f287d4bab024ee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21138','{28137}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','35b88fa6b15845e78a3a7211fe2ed0af');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21139','{28138}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','e40966f36f804bbab518eb0cbc711fca');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21140','{28139}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28140}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','725caccdc4fe495e93e2cfa438f52674');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21141','{28141}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28142}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','ea9e2193843d4a71bd24bead9394685d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21142','{28143}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{28144}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','ac521e5e0c9d416ba0f61563a85a66ff');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21143','{28145}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28146}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','b5a55e90742148ae91fb30394d79a50a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21144','{28147}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28148}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','f5ccdff135ee46ed81889d2882d54b3a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21145','{28149}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{28150}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','dd21e53afab64548ae180079d705dee5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21146','{28151} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','1119a5651b6b469199e6cd8484ea000b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21147','{28152} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','22c7a42c10524dfab69c6e9566a28150');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21148','{28153} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','14f69778aac0476290fd2ddff01693fd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21149','{28154} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','a6e1255d7904488788f4e5358b4b1a70');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21150','{28155}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','d332b384052e4538869186b6c44ae332');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21151','{32401}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32402}-{32403})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32404}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','5f17a45877b44fbab75b614db365db47');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21152','{32405}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32406}-{32407})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32408}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','c5c80f5a24484c05b62d7bb5474f2091');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21163','{28187}<>{28188} and length({28189})>0','Firmware has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','c9b18f3abf444a849606d278d9db0924');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21164','{28190}<>{28191} and length({28192})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','42d7e9c9f03e4b2a8af09b1c54913bba');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21165','{28193}<>{28194} and length({28195})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','4400b69762f948f78365b74569ed54af');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21166','{28196}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','348923e33c3049ea8b27a5d920528300');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21167','{28197}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','6c1a7d6fd11541fb93a8e73f8712db83');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21168','{28198}>{$TEMP_CRIT:"CPU"}','CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28199}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','e51ab41e7ac142afabac3ddbe622fc0b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21169','{28200}>{$TEMP_WARN:"CPU"}','CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28201}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','8046c8fbb72f4cf3afe0154fc2e41d6d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21170','{28202}<{$TEMP_CRIT_LOW:"CPU"}','CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{28203}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','3a4f8decfaf44650bb4066141e36f42a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21171','{28204}>{$TEMP_CRIT:"Device"}','Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28205}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','db6e52bc27714f51bc61e7cc3c3ebad1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21172','{28206}>{$TEMP_WARN:"Device"}','Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28207}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','9e1b2270bc144295a7b0edc2ba98c81b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21173','{28208}<{$TEMP_CRIT_LOW:"Device"}','Device: Temperature is too low','','0','3','',NULL,'0','2','1','{28209}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','27e033be9fd94be2bbc3969e9cb51ac4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21174','{28210} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','0161455f62224813a81ed396716437db');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21175','{28211} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','c54da31a0d9f4219b8f5a4f47e30fb4e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21176','{28212} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','5e1e679028cf499d80484e1fc11e8ba6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21177','{28213} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','e1610c79b6704dfc948f77117d928b5d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21178','{28214}<>"running-ap"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','0c4ff636a9834ee39a16032fd5cd2048');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21179','{32411}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and\r\n(({32412}-{32413})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {32414}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','1019a14b0998497daff1707692bc38ac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21180','{32415}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and\r\n(({32416}-{32417})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {32418}<1d)','Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','1c431594950944138617449b126c5d92');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21181','length({28223})>0','Velocloud: There are errors in aggregate script item','','0','2','There are errors in aggregate script item.',NULL,'0','0','0','','0','','0','','0','','a0623655a2fa4f60962ad560b8bb5a13');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21182','{28224}=1','Velocloud: Failed to fetch aggregate data','','0','3','Zabbix has not received data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','Velocloud: Failed to fetch aggregate data (or no data for 30m)','5a95d9c614e74c2c8b6181fc8dff2226');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21183','{28225}<>{28226} and length({28227})>0','Velocloud: Orchestrator build has been changed','','0','1','Velocloud Orchestrator build has been changed.',NULL,'0','0','0','','0','','1','','0','','37c16b3cbd8b4680ab85a1fea819611f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21184','{28228}<>{28229} and length({28230})>0','Velocloud: Orchestrator version has been changed','','0','1','Velocloud Orchestrator version has been changed.',NULL,'0','0','0','','0','','1','','0','','a1d8e4d61a804c8fb11b33f590f0885c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21185','{28231}<>{28232}','Velocloud: System properties have changed','','0','1','System properties have changed.',NULL,'0','0','0','','0','','1','','0','','58541dfe798843fa822276e84a32b919');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21186','{28233}=3','Edge [{#NAME}]: HA state is in "FAILED" state','','0','2','High availability state is "FAILED".',NULL,'0','2','0','','0','','0','','0','','075d35e3ed074b9daf01864b111945c7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21187','{28234}=0','Edge [{#NAME}]: Edge is in "OFFLINE" state','','0','2','Edge state is "OFFLINE".',NULL,'0','2','0','','0','','0','','0','','962d2d0c6f124424b2e5a7aca89d293f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21188','{28235}>0 and {28235}<600','Edge [{#NAME}]: Edge has been restarted','','0','2','Edge was restarted.',NULL,'0','2','0','','0','','0','','0','Edge [{#NAME}]: Edge has been restarted (uptime < 10m)','156d96052fd54606828cc53484794bb2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21189','{28236}<>{28237}','Gateway [{#NAME}]: The number of connected edges is changed','','0','2','The number of connected edges is changed.',NULL,'0','2','0','','0','','1','','0','','f0d7bdb2ac3540258ab6a276b43a382c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21190','{28238}>0 and {28238}<600','Gateway [{#NAME}]: Gateway has been restarted','','0','2','Gateway was restarted.',NULL,'0','2','0','','0','','0','','0','Gateway [{#NAME}]: Gateway has been restarted (uptime < 10m)','e51ea2da27284067bd3ec8fa4faffdde');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21191','{28239}<>1','Link [{#NAME}]:[{#IP}]: Link state is not "STABLE"','','0','2','Link state is not "STABLE".',NULL,'0','2','0','','0','','0','','0','','abceaab09aea4cb482dc4b554502429b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21194','{28242}<>{28243}','Cluster node [{#NODE.NAME}]: Status changed','','0','1','The state of the node has changed. Confirm to close.',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','8d48978fb5724d19a950aa6eb8a3dd75');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21196','{28246}<>{28247}','Cluster node [{#NODE.NAME}]: Status changed','','0','1','The state of the node has changed. Confirm to close.',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','5d68b55175924cb4adde600a019496c4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21197','{28253}>75','Zabbix server: Utilization of ODBC poller processes is high','','0','3','',NULL,'0','0','1','{28253}<65','0','','0','','0','Zabbix server: Utilization of ODBC poller processes over 75%','f536b921e9444c6eb0ac805ab9302af9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21199','{28255}>75','Remote Zabbix server: Utilization of ODBC poller processes is high','','0','3','',NULL,'0','0','1','{28255}<65','0','','0','','0','Remote Zabbix server: Utilization of ODBC poller processes over 75%','eadd70080005430c8b11666d7e93a095');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21200','{28406}>{$ZABBIX.PROXY.UTIL.MAX:"ODBC poller"}','Remote Zabbix proxy: Utilization of ODBC poller processes is high','','0','3','',NULL,'0','0','1','{28406}<{$ZABBIX.PROXY.UTIL.MIN:"ODBC poller"}','0','','0','','0','Remote Zabbix proxy: Utilization of ODBC poller processes over {$ZABBIX.PROXY.UTIL.MAX:"ODBC poller"}%','7f83ff01200c4862aa22057b079da6f8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21201','{28375}>{$ZABBIX.PROXY.UTIL.MAX:"ODBC poller"}','Zabbix proxy: Utilization of ODBC poller processes is high','','0','3','',NULL,'0','0','1','{28375}<{$ZABBIX.PROXY.UTIL.MIN:"ODBC poller"}','0','','0','','0','Zabbix proxy: Utilization of ODBC poller processes over {$ZABBIX.PROXY.UTIL.MAX:"ODBC poller"}%','3177430235ac4eeaa23b8c39987989cc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21202','{28259}>{$KUBE.API.HTTP.SERVER.ERROR}','Kubernetes API: Too many server errors','','0','2','"Kubernetes API server is experiencing high error rate (with 5xx HTTP code).',NULL,'0','0','0','','0','','0','','0','Kubernetes API: Too many server errors (over {$KUBE.API.HTTP.SERVER.ERROR} for 5m)','0e1ef1630b5d4cb98270564f324f5382');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21205','{28262}>{$KUBE.API.HTTP.CLIENT.ERROR}','Kubernetes API: Too many client errors','','0','2','"Kubernetes API client is experiencing high error rate (with 5xx HTTP code).',NULL,'0','0','0','','0','','0','','0','Kubernetes API: Too many client errors (over {$KUBE.API.HTTP.CLIENT.ERROR} for 5m)','4c79888da91448738092c86e5f427a6a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21206','{28263}>{$KUBE.CONTROLLER.HTTP.CLIENT.ERROR}','Kubernetes Controller Manager: Too many HTTP client errors','','0','2','"Kubernetes Controller manager is experiencing high error rate (with 5xx HTTP code).',NULL,'0','0','0','','0','','0','','0','Kubernetes Controller Manager: Too many HTTP client errors (over {$KUBE.CONTROLLER.HTTP.CLIENT.ERROR} for 5m)','13c32daebddd454bb5908a9a27c3a76f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21207','length({28264})>0','Kubernetes: Failed to get nodes','','0','2','',NULL,'0','0','0','','0','','0','','0','','827016cf41254f38aa58ff99e22f9e6f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21208','{28265} / {28266} > 0.9','Node [{#NAME}] Limits: Total CPU limits are too high','','0','2','',NULL,'0','2','0','','0','','0','Limits: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}','0','Node [{#NAME}] Limits: Total CPU limits are too high (more than 90% of allocatable)','f64efc13be2c4c53a48de40504cf064d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21209','{28267} / {28268} > 1','Node [{#NAME}] Limits: Total CPU limits are too high','','0','3','',NULL,'0','2','0','','0','','0','Limits: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}','0','Node [{#NAME}] Limits: Total CPU limits are too high (more than 100% of allocatable)','4c035b6c85574141832691e7ad264f40');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21210','{28269} / {28270} > 0.9','Node [{#NAME}] Limits: Total memory limits are too high','','0','2','',NULL,'0','2','0','','0','','0','Limits: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}','0','Node [{#NAME}] Limits: Total memory limits are too high (more than 90% of allocatable)','5d0d803cfbbe42edb7d32d731ae5f741');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21211','{28271} / {28272} > 1','Node [{#NAME}] Limits: Total memory limits are too high','','0','3','',NULL,'0','2','0','','0','','0','Limits: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}','0','Node [{#NAME}] Limits: Total memory limits are too high (more than 100% of allocatable)','4fa15174194c476899a96fcf233a5aea');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21212','{28273} / {28274} > 0.5','Node [{#NAME}] Requests: Total CPU requests are too high','','0','2','',NULL,'0','2','0','','0','','0','Requests: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}','0','Node [{#NAME}] Requests: Total CPU requests are too high (more than 50% of allocatable)','256cf876a4674dd09123bb388c1a9d32');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21213','{28275} / {28276} > 0.8','Node [{#NAME}] Requests: Total CPU requests are too high','','0','3','',NULL,'0','2','0','','0','','0','Requests: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}','0','Node [{#NAME}] Requests: Total CPU requests are too high (more than 80% of allocatable)','7fa6901f620c4b388d550c669089dde2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21214','{28277} / {28278} > 0.5','Node [{#NAME}] Requests: Total memory requests are too high','','0','2','',NULL,'0','2','0','','0','','0','Requests: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}','0','Node [{#NAME}] Requests: Total memory requests are too high (more than 50% of allocatable)','d73aa5aa2a9b424789181033630bb432');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21215','{28279} / {28280} > 0.8','Node [{#NAME}] Requests: Total memory requests are too high','','0','3','',NULL,'0','2','0','','0','','0','Requests: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}','0','Node [{#NAME}] Requests: Total memory requests are too high (more than 80% of allocatable)','ad9a65c4786e48b9a4b77c1214fa2e1f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21216','{28281}/ {28282} > 0.9','Node [{#NAME}] Used: Kubelet too many pods','','0','2','Kubelet is running at capacity.',NULL,'0','2','0','','0','','0','Used: {ITEM.LASTVALUE1}, Capacity: {ITEM.LASTVALUE2}','0','Node [{#NAME}] Used: Kubelet too many pods (more than 95% of capacity)','0126dfbfa9d949499e0f7689b714c855');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21217','{28283}=1','Node [{#NAME}] Conditions: Pressure exists on the disk size','','0','2','True - pressure exists on the disk size - that is, if the disk capacity is low; otherwise False.',NULL,'0','2','0','','0','','0','','0','Node [{#NAME}] Conditions: Pressure exists on the disk size (state: {ITEM.VALUE})','4e283f3f104a4239a0b1c24f0313ab95');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21218','{28284}=1','Node [{#NAME}] Conditions: Pressure exists on the node memory','','0','2','True - pressure exists on the node memory - that is, if the node memory is low; otherwise False',NULL,'0','2','0','','0','','0','','0','Node [{#NAME}] Conditions: Pressure exists on the node memory (state: {ITEM.VALUE})','f580b6534bf54281912515874ca46cdf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21219','{28285}=1','Node [{#NAME}] Conditions: Network is not correctly configured','','0','2','True - the network for the node is not correctly configured, otherwise False',NULL,'0','2','0','','0','','0','','0','Node [{#NAME}] Conditions: Network is not correctly configured (state: {ITEM.VALUE})','0da0db08077a42668efcc886c155bf4e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21220','{28286}=1','Node [{#NAME}] Conditions: Pressure exists on the processes','','0','2','True - pressure exists on the processes - that is, if there are too many processes on the node; otherwise False',NULL,'0','2','0','','0','','0','','0','Node [{#NAME}] Conditions: Pressure exists on the processes (state: {ITEM.VALUE})','5f6a7fce910e4cf79e9fc778519ad00f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21221','{28287}<>1','Node [{#NAME}] Conditions: Is not in Ready state','','0','2','False - if the node is not healthy and is not accepting pods.\r\nUnknown - if the node controller has not heard from the node in the last node-monitor-grace-period (default is 40 seconds).',NULL,'0','2','0','','0','','0','','0','Node [{#NAME}] Conditions: Is not in Ready state (state: {ITEM.VALUE})','02f873ab69fb4df49578cf5e1cbad1b8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21222','{28288}<10','Node [{#NAME}]: Has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','2','0','','0','','0','','0','Node [{#NAME}]: Has been restarted (uptime < 10m)','b322a8c9a4404da49c434e78822d6ac5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21223','({28289}-{28290})>2','Node [{#NODE}] Pod [{#POD}]: Pod is crash looping','','0','2','Pos restarts more than 2 times in the last 3 minutes.',NULL,'0','2','0','','0','','0','','0','','8f1808cd67614cda959ec70e92a59235');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21224','{28291}>=9','Node [{#NODE}] Pod [{#POD}] Status: Kubernetes Pod not healthy','','0','4','Pod has been in a non-ready state for longer than 10 minutes.',NULL,'0','2','0','','0','','0','','0','','e565d243bef84007b09addb22ea3d759');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21225','{28292}>{$KUBE.SCHEDULER.HTTP.CLIENT.ERROR}','Kubernetes Scheduler: Too many REST Client errors','','0','2','"Kubernetes Scheduler REST Client requests is experiencing high error rate (with 5xx HTTP code).',NULL,'0','0','0','','0','','0','','0','Kubernetes Scheduler: Too many REST Client errors (over {$KUBE.SCHEDULER.HTTP.CLIENT.ERROR} for 5m)','ea92474a61214053b2cd20775817010e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21226','{28293}>{$KUBE.SCHEDULER.ERROR}','Kubernetes Scheduler: Too many schedule attempts with errors','','0','2','"Number of attempts to schedule pods with \'error\' result is too high. \'error\' means an internal scheduler problem."',NULL,'0','0','0','','0','','0','','0','Kubernetes Scheduler: Too many schedule attempts with errors (over {$KUBE.SCHEDULER.ERROR} for 5m)','9116327bc14f4f189ca867b43187f6bd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21227','{28294}>{$KUBE.SCHEDULER.UNSCHEDULABLE}','Kubernetes Scheduler: Too many unschedulable pods','','0','2','"Number of attempts to schedule pods with \'unschedulable\' result is too high. \'unschedulable\' means a pod could not be scheduled."',NULL,'0','0','0','','0','','0','','0','Kubernetes Scheduler: Too many unschedulable pods (over {$KUBE.SCHEDULER.UNSCHEDULABLE} for 5m)','16efba4ba322416fa2b8986273b83904');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21228','{31101}<2 and length({31102})>0','Kubernetes: Component [{#NAME}] is unhealthy','','0','2','',NULL,'0','2','0','','0','','0','','0','','58828a692aa2418ba98c6d66a23f1506');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21229','({28296}-{28297})<>0','Kubernetes: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Deployment replicas mismatch','','0','2','',NULL,'0','2','0','','0','','0','','0','','aa9f828467d84252aecc00dd342b5661');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21230','{31103}<2 and length({31104})>0','Kubernetes: Livez [{#NAME}] is unhealthy','','0','2','',NULL,'0','2','0','','0','','0','','0','','9fcb23d29ac3481a8613515cc2cccfcf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21231','{28299}>0 or {28300}>0 or {28301}>0','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Pod is not healthy','','0','4','',NULL,'0','2','0','','0','','0','','0','','5bf79dee7b974064b5848a7dcf6428c2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21232','({31105}-{31106})>2','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Pod is crash looping','','0','2','',NULL,'0','2','0','','0','','0','','0','','4656457043d04f4a9b829222ad071d22');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21233','{28304}>0','Kubernetes: NS [{#NAMESPACE}] PVC [{#NAME}]: PVC is pending','','0','2','',NULL,'0','2','0','','0','','0','','0','','75a1b90ae3f14a52a0f5d7d073332042');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21234','{31107}<2 and length({31108})>0','Kubernetes: Readyz [{#NAME}] is unhealthy','','0','2','',NULL,'0','2','0','','0','','0','','0','','1a88c2cf94d3444c9e5320776b323ce6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21235','({28306}-{28307})<>0','Kubernetes: Namespace [{#NAMESPACE}] RS [{#NAME}]: ReplicasSet mismatch','','0','2','',NULL,'0','2','0','','0','','0','','0','','8046757dbd3b459c9cd9f7bd369dd416');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21236','({28308}-{28309})<>0','Kubernetes: Namespace [{#NAMESPACE}] RS [{#NAME}]: Statefulset replicas mismatch','','0','2','',NULL,'0','2','0','','0','','0','','0','','469d6933f5494ca48a212cdc364058e0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21237','({28310} / {28311})<>1','Kubernetes: Namespace [{#NAMESPACE}] StatefulSet [{#NAME}]: StatfulSet is down','','0','4','',NULL,'0','2','0','','0','','0','','0','','c29a27fe5a0345c8af9e0d4e99b22dcb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21241','{28315}=0','PFSense: DHCP server is not running','','0','3','Please check DHCP server settings https://docs.netgate.com/pfsense/en/latest/services/dhcp/index.html',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','80fc3672290d45d49c250ccc120f3606');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21242','{28316}=0','PFSense: DNS server is not running','','0','3','Please check DNS server settings https://docs.netgate.com/pfsense/en/latest/services/dns/index.html',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','67b862f6aa3a4833af44d513aad517b5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21243','{28317}=0','PFSense: Web server is not running','','0','3','Please check nginx service status.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9f7a47055ee64edcbb70b047a35f7774');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21244','{28318}<>1','PFSense: Packet filter is not running','','0','4','Please check PF status.',NULL,'0','0','0','','0','','0','Current running state: {ITEM.LASTVALUE1}','0','','4a7ff4c437054ce88c6c069ffcb6434f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21245','{28319}>{$SOURCE.TRACKING.TABLE.UTIL.MAX}','PFSense: Source tracking table usage is high','','0','2','Please check the number of sticky connections https://docs.netgate.com/pfsense/en/latest/monitoring/status/firewall-states-sources.html',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','PFSense: Source tracking table usage more than {$SOURCE.TRACKING.TABLE.UTIL.MAX}.','7983ee28646d4327ae0814c88c7b213f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21246','{28320}>{$STATE.TABLE.UTIL.MAX}','PFSense: State table usage is high','','0','2','Please check the number of connections https://docs.netgate.com/pfsense/en/latest/config/advanced-firewall-nat.html#config-advanced-firewall-maxstates',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','PFSense: State table usage more than {$STATE.TABLE.UTIL.MAX}.','ce0e7dec597e4148abd9b699c787decd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21250','{28326}=0','PFSense: 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','','d06bdb79a48c438798286a89680eb3e1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21255','{28336}<0 and {28337}>0\r\nand (\r\n{28338}=6 or\r\n{28338}=7 or\r\n{28338}=11 or\r\n{28338}=62 or\r\n{28338}=69 or\r\n{28338}=117\r\n)\r\nand\r\n({28339}<>2)','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({28336}>0 and {28340}>0) or\r\n({28339}=2)','0','','0','Current reported speed: {ITEM.LASTVALUE1}','0','','eb3090605ba14407a91736ac9768d65a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21256','({28341}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28342}) and\r\n{28342}>0','PFSense: Interface [{#IFNAME}({#IFALIAS})]: High inbound bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{28341}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28342}','0','','0','In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','PFSense: Interface [{#IFNAME}({#IFALIAS})]: High inbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','90c99a9c4ce44b3ca929c4b3200286fb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21257','({28343}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28344}) and\r\n{28344}>0','PFSense: Interface [{#IFNAME}({#IFALIAS})]: High outbound bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{28343}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28344}','0','','0','Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','PFSense: Interface [{#IFNAME}({#IFALIAS})]: High outbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','6be52ce31bab4250b421de1bfe84263c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21258','{28345}>{$IF.ERRORS.WARN:"{#IFNAME}"}','PFSense: Interface [{#IFNAME}({#IFALIAS})]: High input error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold.',NULL,'0','2','1','{28346}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors in: {ITEM.LASTVALUE1}','0','PFSense: Interface [{#IFNAME}({#IFALIAS})]: High input error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','f5cbc2b7d91f4fa5aab8eb96d8a0550f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21259','{28347}>{$IF.ERRORS.WARN:"{#IFNAME}"}','PFSense: Interface [{#IFNAME}({#IFALIAS})]: High output error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold.',NULL,'0','2','1','{28348}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors out: {ITEM.LASTVALUE2}','0','PFSense: Interface [{#IFNAME}({#IFALIAS})]: High output error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','5fb5f37490d04dbc8e0553c6aa881547');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21260','{$IFCONTROL:"{#IFNAME}"}=1 and ({28349}=2)','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d4392162d62541aeb148718ddd7f5d57');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21265','{28389}<10m','Zabbix proxy: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','Zabbix proxy: has been restarted (uptime < 10m)','b505a16c50f64adb8c5528907925f798');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21266','{28390}<>{28391} and length({28392})>0','Zabbix proxy: Version has changed','','0','1','Zabbix proxy version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Zabbix proxy: Version has changed (new version: {ITEM.VALUE})','bf7eef07faf14fc4b2603ae952f001da');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21267','{28418}>{$ZABBIX.PROXY.UTIL.MAX:"preprocessing manager"}','Remote Zabbix proxy: Utilization of preprocessing manager processes is high','','0','3','',NULL,'0','0','1','{28418}<{$ZABBIX.PROXY.UTIL.MIN:"preprocessing manager"}','0','','0','','0','Remote Zabbix proxy: Utilization of preprocessing manager processes over {$ZABBIX.PROXY.UTIL.MAX:"preprocessing manager"}%','4c681b0775b54fd79e4aba669e219967');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21268','{28419}>{$ZABBIX.PROXY.UTIL.MAX:"preprocessing worker"}','Remote Zabbix proxy: Utilization of preprocessing worker processes is high','','0','3','',NULL,'0','0','1','{28419}<{$ZABBIX.PROXY.UTIL.MIN:"preprocessing worker"}','0','','0','','0','Remote Zabbix proxy: Utilization of preprocessing worker processes over {$ZABBIX.PROXY.UTIL.MAX:"preprocessing worker"}%','f1c97c56e2d04cabaaa4c9b41e2bbad3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21269','{28420}<10m','Remote Zabbix proxy: has been restarted','','0','1','Uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','Remote Zabbix proxy: has been restarted (uptime < 10m)','8940efd3c68b4ded80ea1e89d55dfa7c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21270','{28423}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','085d6f785f1e46faa447d6921036d01d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21271','{28424}>{$ICMP_LOSS_WARN} and {28424}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','d1bd868814ba4ace9b5034ac4e303259');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21272','{28425}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','ecd74ec29b484a499414293bf671160b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21531','{28684}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','d1b02854c6cd473090735eabfbd4d908');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21534','{31195}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and\r\n(({31196}-{31197})<{$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"} or {31198}<1d)','{#FSNAME}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%)','8283f8b8663f444aad85633010615c15');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21535','{31199}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and\r\n(({31200}-{31201})<{$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"} or {31202}<1d)','{#FSNAME}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%)','2d9c475d718b4c2ba14b129f66014f75');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21536','{28695}>{$MEMORY.UTIL.MAX}','{#MEMNAME}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','{#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','730a76bd19a24a55be24f72175251046');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21543','{28714}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','72f8bcb4dfde4d338c31c83b72a36129');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21544','{28715}>{$ICMP_LOSS_WARN} and {28715}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','0c0a32b98df84c07acbe51caabc8c012');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21545','{28716}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','06fd317938784236b3e17b2b4080925d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21546','{28717}<>{28718} and length({28719})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','5f11cacfd4a94cf696897b3f3fa80601');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21547','({31831}>0 and {31831}<10m) or ({31831}=0 and {31832}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','3b6324116e5940b5aaea72adca4dbbf6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21548','{28721}=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','','60187191b268499784a70ef1dfe058ae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21549','{28722}<0 and {28723}>0\r\nand (\r\n{28724}=6 or\r\n{28724}=7 or\r\n{28724}=11 or\r\n{28724}=62 or\r\n{28724}=69 or\r\n{28724}=117\r\n)\r\nand\r\n({28725}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({28722}>0 and {28726}>0) or\r\n({28725}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','a9467162f7434b8e97cb6645b6a060ae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21550','({28727}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28728} or\r\n{28729}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28728}) and\r\n{28728}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{28727}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28728} and\r\n{28729}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28728}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','27e0b7fcaf664410962dc768e0ef7267');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21551','{28730}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {28731}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{28732}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {28733}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','ee8dccabf5df45b48a503320131b152e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21552','{$IFCONTROL:"{#IFNAME}"}=1 and {28734}=2 and ({28735}<>{28736})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{28734}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','a4bcc6d80080415698d8fd323ff5d484');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21553','{28737}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','1','','0','','e5d6ba20229044b98ee8cb33e00de8b0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21554','{28738}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','736dc5694fc741e6bcb96e2ba27a0898');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21555','{28739}>{$ICMP_LOSS_WARN} and {28739}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','dfa6f280b6304bfdb0063be94f7a4c5e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21556','{28740}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','18aeec70f72d43ceb4994501fb36d434');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21557','{28741}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','6737f0672c244e048509358d220874a6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21558','{28742}<>{28743} and length({28744})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','362d455c9d9944cea7c37d58bcabc0a0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21559','({31833}>0 and {31833}<10m) or ({31833}=0 and {31834}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','e3907a8b6aba4512a24a677ed31e4362');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21560','{28746}=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','','53501c72392a4bbc8fa0f5ed086d2591');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21561','{28747}<0 and {28748}>0\r\nand (\r\n{28749}=6 or\r\n{28749}=7 or\r\n{28749}=11 or\r\n{28749}=62 or\r\n{28749}=69 or\r\n{28749}=117\r\n)\r\nand\r\n({28750}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({28747}>0 and {28751}>0) or\r\n({28750}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','9715da7cb2404bf2a3cb3e80d4bb3bde');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21562','({28752}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28753} or\r\n{28754}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28753}) and\r\n{28753}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{28752}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28753} and\r\n{28754}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28753}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','32c978fecfcb42738cd179c19bcd2360');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21563','{28755}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {28756}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{28757}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {28758}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','47d5a599bc574ccea4baeebc3aad34f5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21564','{$IFCONTROL:"{#IFNAME}"}=1 and {28759}=2 and ({28760}<>{28761})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{28759}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','11c5b8073b3540e4b0698a8db9e3c33e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21565','{28762}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','1','','0','','c1bddd15c68243aeb69dc47f57eb6631');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21566','{31319}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and\r\n(({31320}-{31321})<{$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"} or {31322}<1d)','{#FSNAME}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%)','f4bfac8d247144b3bebac7245248553e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21567','{31323}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and\r\n(({31324}-{31325})<{$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"} or {31326}<1d)','{#FSNAME}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%)','9912ab9619ce46b88afe358ab50a2c4f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21568','{28771}>{$MEMORY.UTIL.MAX}','{#MEMNAME}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','{#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','6b9010e0ad4e4549ac91a91d4bb3983a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21569','{28772}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','0c73f37e7ffc4acf83a7edeb84398aba');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21570','{28773}>{$ICMP_LOSS_WARN} and {28773}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','eea2256c85764c12b1da83dd8d1a9fe3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21571','{28774}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','17df26093a5f42fdb19715371c85f733');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21572','{28775}<>{28776} and length({28777})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','0e624c73fdca490e809ffe9235cda610');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21573','({31835}>0 and {31835}<10m) or ({31835}=0 and {31836}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','42bb10d788484b92ac7290e171ee28a2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21574','{28779}=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','','1c67a764531b48f1a931a9a928a8708d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21575','{28780}<0 and {28781}>0\r\nand (\r\n{28782}=6 or\r\n{28782}=7 or\r\n{28782}=11 or\r\n{28782}=62 or\r\n{28782}=69 or\r\n{28782}=117\r\n)\r\nand\r\n({28783}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({28780}>0 and {28784}>0) or\r\n({28783}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','5a98171af6b342ab97e0c6c9de0bd589');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21576','({28785}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28786} or\r\n{28787}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28786}) and\r\n{28786}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{28785}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28786} and\r\n{28787}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28786}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','a16b52f43a224a11861813be5a11697c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21577','{28788}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {28789}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{28790}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {28791}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','9f42c5a5ed1341c1a26263642e4dabe4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21578','{$IFCONTROL:"{#IFNAME}"}=1 and {28792}=2 and ({28793}<>{28794})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{28792}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','e5391912a6b84c1bb41832e88df4fb96');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21579','{28795}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','3e93707bfbed4541a90548f64b2dfc18');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21580','{28796}>{$ICMP_LOSS_WARN} and {28796}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','3f3500c666bb47208115b6ca43fc8458');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21581','{28797}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','e1bcb2ad662f4e4fb0ff67f0f1fc39e5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21582','{28798}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','bf59d38703f44bcb9497dcbda684b071');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21583','{28799}<>{28800} and length({28801})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','ee0c67c575cb4b01bc3733d719baac4f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21584','({31837}>0 and {31837}<10m) or ({31837}=0 and {31838}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','99208318a05445518bebae305dd53d34');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21585','{28803}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','07bba62d70fa4e7b81f82fc44036ce6e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21586','{28804}=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','','fb3168f6539c4a55b5aab3efbcad117d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21587','{28805}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','06ed32e60b9d4fb387116b5bb9c1700a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21588','{28806}>{$ICMP_LOSS_WARN} and {28806}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','305f5a75aed34094a1721653ba6cafda');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21589','{28807}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','6e7e8f250fbb47778405daeea7a2b852');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21590','{28808}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','c390ed19b59a45b29f80cb95ee6e635a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21591','{28809}<>{28810} and length({28811})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','1e455a8b19994e9a9f9147d4c3abfa59');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21592','({31839}>0 and {31839}<10m) or ({31839}=0 and {31840}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','0fd4a268d6d34a2d925a97babe365b65');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21593','{28813}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','18623226ce15406488bc99f075cf2590');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21594','{28814}=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','','a4bb03ba3e4645fdb7ecab56ddde776f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21595','{28815}<0 and {28816}>0\r\nand (\r\n{28817}=6 or\r\n{28817}=7 or\r\n{28817}=11 or\r\n{28817}=62 or\r\n{28817}=69 or\r\n{28817}=117\r\n)\r\nand\r\n({28818}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({28815}>0 and {28819}>0) or\r\n({28818}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','e5f54206b19f4f589229c7137365351c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21596','({28820}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28821} or\r\n{28822}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28821}) and\r\n{28821}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{28820}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28821} and\r\n{28822}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28821}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','093696611acd4d75b00e83ce5b11df35');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21597','{28823}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {28824}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{28825}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {28826}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','5337b53e473248719eb502428a4bcc38');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21598','{$IFCONTROL:"{#IFNAME}"}=1 and {28827}=2 and ({28828}<>{28829})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{28827}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','3455100ce855445ab3806379fbdc0bbf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21599','{28830}<0 and {28831}>0\r\nand (\r\n{28832}=6 or\r\n{28832}=7 or\r\n{28832}=11 or\r\n{28832}=62 or\r\n{28832}=69 or\r\n{28832}=117\r\n)\r\nand\r\n({28833}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({28830}>0 and {28834}>0) or\r\n({28833}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','8a83aadcd4474f8d99a4712c2f49e737');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21600','({28835}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28836} or\r\n{28837}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28836}) and\r\n{28836}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{28835}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28836} and\r\n{28837}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28836}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','a1ec6d8bc0644db9be849d79e9f24ea1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21601','{28838}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {28839}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{28840}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {28841}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','acba5651b6dd4ed29166698a4faed7f8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21602','{$IFCONTROL:"{#IFNAME}"}=1 and {28842}=2 and ({28843}<>{28844})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{28842}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','4c175f17331942ae8342b0abf43f8fe2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21603','{28845}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','fd317d3e8d3d45bf97322b8578f30c04');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21604','{28846}>{$ICMP_LOSS_WARN} and {28846}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','3576c96601ef40abbeedbde11768141a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21605','{28847}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','2941d30058b14d52bd9a723889c8be26');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21606','{28848}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','74773fc279864e7daf89cffe9cb2067c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21607','{28849}<>{28850} and length({28851})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','d53c0d22a67544cf8a2fcd2c8de4d4eb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21608','{28852}<>{28853} and length({28854})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','33b42b1aa448408fa3fb5aadf7375cf8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21609','{28855}<>{28856} and length({28857})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','abe57415ff574b878a2ce2a318be86ee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21610','({31851}>0 and {31851}<10m) or ({31851}=0 and {31852}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','f278b8b4eb784107a6d8d3e8437e8a66');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21611','{28859}=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','','86d8603903504287b07a25530c8eda2b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21612','{28860}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','77e52d690bc043e389ad8d705dbb86b9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21613','{28861}>{$ICMP_LOSS_WARN} and {28861}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','62b3c0a2654f4372a1bad40a0fd2898d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21614','{28862}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','1ba34b5e344147d5b27431906037bc04');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21615','{28863}<>{28864} and length({28865})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','7d1460eaf7ad46fd8a1b5df3c20051ba');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21616','{28866}<>{28867} and length({28868})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','2105744d4efd4a239c5b6ab615746a40');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21617','{28869}<>{28870} and length({28871})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','2d97173405594074bfe2cc6f3d0cae70');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21618','({31853}>0 and {31853}<10m) or ({31853}=0 and {31854}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','b98092ddf87247ff91710e2f310dbfb9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21619','{28873}=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','','df7c9ed5d3164e73a792f82ecad6ba13');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21620','{28874}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','f6fae61d08644d5fa3929f526aee34e4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21621','{28875}>{$ICMP_LOSS_WARN} and {28875}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','5c7eae9701be4661a34bbcdb99c094fe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21622','{28876}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','9aebe4a1cfa34c5d92178abc8a6ce06e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21623','{28877}<>{28878} and length({28879})>0','Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','0','0','','0','','1','','0','Device has been replaced (new serial number received)','78723249679b4a288861f4ad8621fd77');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21624','{28880}<>{28881} and length({28882})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','3e09d5d308e449a4974393650b33e64d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21625','{28883}<>{28884} and length({28885})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','df85813bb6af4accab8d5191cd452329');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21626','({31855}>0 and {31855}<10m) or ({31855}=0 and {31856}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','806f54999d064eb68a3f46a0d84ee4df');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21627','{28887}=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','','778749b260bb45c3a926d6bb49c07257');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21628','{28888}<>{28889} and length({28890})>0','{#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','{#ENT_NAME}: Device has been replaced (new serial number received)','e8c328ad70a146219a8ae62f101cfc00');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21629','{28891}=1 or {28892}=1','{#SENSOR_INFO}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ddd7015dd3204514beea29edc45c3cd4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21630','{28893}=1 or {28894}=1','{#SENSOR_INFO}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4eb7ea3405d74740a12095a07d91d48f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21631','{28895}>{$MEMORY.UTIL.MAX}','{#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','8793ba7767cc415a80a6a206aaf01f11');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21632','{28896}=1 or {28897}=1','{#SENSOR_INFO}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','fc4b6f155d3646c3bb8b27d35c18604b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21633','{28898}=1 or {28899}=1','{#SENSOR_INFO}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','58e9514d75f84c989b052cfd76ceed4a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21634','{28900}>{$TEMP_CRIT:"{#SNMPVALUE}"}\r\nor\r\n{28901}={$TEMP_CRIT_STATUS}\r\nor\r\n{28901}={$TEMP_DISASTER_STATUS}','{#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28902}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','82fa9473dc7d49d4a3a230ef6238cd2c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21635','{28903}>{$TEMP_WARN:"{#SNMPVALUE}"}\r\nor\r\n{28904}={$TEMP_WARN_STATUS}','{#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28905}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','a0199088767f43c0990f5ac8793267b1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21636','{28906}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{28907}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','716dee103c9f4e9da5f83d6cc338617d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21637','{28908}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','89b292f6748f49fa8b0f23f5378944b2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21638','{28909}<>{28910} and length({28911})>0','{#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','{#ENT_NAME}: Device has been replaced (new serial number received)','e5477e6803974060ba3ce8a131d97d40');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21639','{28912}=1 or {28913}=1','{#SENSOR_INFO}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e64b0790509c4a21b7ead959fa1b7951');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21640','{28914}=1 or {28915}=1','{#SENSOR_INFO}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','33207a0c65e14a5d9355690c8d9d54e2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21641','{28916}>{$MEMORY.UTIL.MAX}','{#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','ee300a1f9f644bdbb545bd65d59d4837');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21642','{28917}<0 and {28918}>0\r\nand (\r\n{28919}=6 or\r\n{28919}=7 or\r\n{28919}=11 or\r\n{28919}=62 or\r\n{28919}=69 or\r\n{28919}=117\r\n)\r\nand\r\n({28920}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({28917}>0 and {28921}>0) or\r\n({28920}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','3783d41e790f4d1e9ebb7340d82edc1f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21643','({28922}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28923} or\r\n{28924}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28923}) and\r\n{28923}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{28922}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28923} and\r\n{28924}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28923}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','17a07d8b87c04874bfbf12009e1da65f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21644','{28925}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {28926}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{28927}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {28928}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','0c1c6f8fc17849a68a12813389da6373');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21645','{$IFCONTROL:"{#IFNAME}"}=1 and {28929}=2 and ({28930}<>{28931})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{28929}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','6bf13b6cac1b438bbfe384a746646597');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21646','{28932}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','1','','0','','251a80d2f6824e33b8edfca94e0f335d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21647','{28933}=1 or {28934}=1','{#SENSOR_INFO}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','3068fc8f0b0749d4b76d97d7f500e36d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21648','{28935}=1 or {28936}=1','{#SENSOR_INFO}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','194444afb5d143a0a0734120e26066e4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21649','{28937}>{$TEMP_CRIT:"{#SNMPVALUE}"}\r\nor\r\n{28938}={$TEMP_CRIT_STATUS}\r\nor\r\n{28938}={$TEMP_DISASTER_STATUS}','{#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28939}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','95f562a5b2fb4e17b091eaed07c77d4a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21650','{28940}>{$TEMP_WARN:"{#SNMPVALUE}"}\r\nor\r\n{28941}={$TEMP_WARN_STATUS}','{#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28942}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','5809893fb23a452ebad327c595322619');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21651','{28943}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{28944}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','64888770ef6a44089593e78d4d2c528d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21652','{28945}>{$CPU.UTIL.CRIT}','{#SNMPVALUE}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','b964834d4f6549c7ae0f0c0c2646dfbc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21653','{28946}<>{28947} and length({28948})>0','{#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Ack to close',NULL,'0','2','0','','0','','1','','0','{#ENT_NAME}: Device has been replaced (new serial number received)','75ee6ab1f0c84946a4f4d6e87007ec25');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21654','{28949}=1 or {28950}=1','{#SENSOR_INFO}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','907502bbdeee45bbbfb84d43c2dc4f20');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21655','{28951}=1 or {28952}=1','{#SENSOR_INFO}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4b2a4eb4cb2a43758048cc05d63f37a4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21656','{28953}>{$MEMORY.UTIL.MAX}','{#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','0f8d70ef5e704483a49d7b635e74dfc6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21657','{28954}<0 and {28955}>0\r\nand (\r\n{28956}=6 or\r\n{28956}=7 or\r\n{28956}=11 or\r\n{28956}=62 or\r\n{28956}=69 or\r\n{28956}=117\r\n)\r\nand\r\n({28957}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({28954}>0 and {28958}>0) or\r\n({28957}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','60809b6c94d74e34b5f29525d77c75b5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21658','({28959}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28960} or\r\n{28961}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28960}) and\r\n{28960}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{28959}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28960} and\r\n{28961}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28960}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','21d475be7fa24ba2b946e4ec31371df5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21659','{28962}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {28963}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{28964}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {28965}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','5a2bc4c9bf344948a52ce256daa1258e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21660','{$IFCONTROL:"{#IFNAME}"}=1 and {28966}=2 and ({28967}<>{28968})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{28966}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','c99f0efcc30749e79cce0efe2fdd574f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21661','{28969}=1 or {28970}=1','{#SENSOR_INFO}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7c5269ac98e847f28da8d3d97e52a28e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21662','{28971}=1 or {28972}=1','{#SENSOR_INFO}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','616059e289694181aea6a076ecb093c1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21663','{28973}>{$TEMP_CRIT:"{#SNMPVALUE}"}\r\nor\r\n{28974}={$TEMP_CRIT_STATUS}\r\nor\r\n{28974}={$TEMP_DISASTER_STATUS}','{#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28975}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','f138f708723a4ca49b21cb992798da7f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21664','{28976}>{$TEMP_WARN:"{#SNMPVALUE}"}\r\nor\r\n{28977}={$TEMP_WARN_STATUS}','{#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28978}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','281f7afca6ed4d3bb866430ec89e862e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21665','{28979}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','{#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{28980}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','67fad9e835f9466ab368bbdad6544e7e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21666','{28981}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','f186488b337f4b1b8971992e8118d9cc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21667','{28982}>{$ICMP_LOSS_WARN} and {28982}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','46798adec54c47a38cb599773767a2a7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21668','{28983}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','04828676081147b4bfad0ad03385986e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21669','{28984}<>{28985} and length({28986})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','2dc35c5813b042fd96f2ebc53f565799');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21670','({31857}>0 and {31857}<10m) or ({31857}=0 and {31858}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','4246a064d33f428c8441491402ae8090');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21671','{28988}=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','','da99689aa1394d17af5008e5678915bc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21672','{28989}<0 and {28990}>0\r\nand (\r\n{28991}=6 or\r\n{28991}=7 or\r\n{28991}=11 or\r\n{28991}=62 or\r\n{28991}=69 or\r\n{28991}=117\r\n)\r\nand\r\n({28992}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({28989}>0 and {28993}>0) or\r\n({28992}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','f4903edf173f470482174ee9937cbb32');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21673','({28994}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28995} or\r\n{28996}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28995}) and\r\n{28995}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{28994}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28995} and\r\n{28996}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28995}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','e85a287c2e0e48e19cb43bf74d3f3535');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21674','{28997}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {28998}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{28999}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29000}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','00d2988bdd084719ba781562920d20fa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21675','{$IFCONTROL:"{#IFNAME}"}=1 and {29001}=2 and ({29002}<>{29003})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29001}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','b7b55335f42b4ace8434588bc70f7e60');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21676','{29004}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','1','','0','','edc143c44b2d465cac94c4cf0fb588a6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21677','{29005}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','a568e0a3c0074e6dbad92890067976f3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21678','{29006}>{$ICMP_LOSS_WARN} and {29006}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','12dea4dbaa3c4ef1a53456090ae3eb0e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21679','{29007}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','88f2c517c1ba4f7881491a4b2b7f7ad0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21680','{29008}<>{29009} and length({29010})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','0c7a629e028e489c89647bf3ca51850e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21681','({31859}>0 and {31859}<10m) or ({31859}=0 and {31860}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','6b200163bfcd4899a82bcf98aa026aa2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21682','{29012}=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','','dc5b0dda2d684665a5444e39db5e2257');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21683','{29013}<0 and {29014}>0\r\nand (\r\n{29015}=6 or\r\n{29015}=7 or\r\n{29015}=11 or\r\n{29015}=62 or\r\n{29015}=69 or\r\n{29015}=117\r\n)\r\nand\r\n({29016}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29013}>0 and {29017}>0) or\r\n({29016}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','04d35a5ff5d34caf91f354b76677f78e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21684','({29018}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29019} or\r\n{29020}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29019}) and\r\n{29019}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29018}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29019} and\r\n{29020}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29019}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','76191d56356c4f389e3b7ca182ac28b2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21685','{29021}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29022}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29023}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29024}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','d9f6f23364c54fd1984fe049a4fc16e4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21686','{$IFCONTROL:"{#IFNAME}"}=1 and {29025}=2 and ({29026}<>{29027})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29025}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','8d5d2b10f5c541d9858b124ca3ea23aa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21687','{29028}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','5d134da7ad044ab591e1b96e1dca1641');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21688','{29029}>{$ICMP_LOSS_WARN} and {29029}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','9c48d97b5d4a4668ad382e1d0d9c8e87');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21689','{29030}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','3959884457a7420a9a9007c550d9b886');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21690','{29031}<>{29032} and length({29033})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','91e1a9f579c64954a89b6efbf6b523dd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21691','({31861}>0 and {31861}<10m) or ({31861}=0 and {31862}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','7a51877b860a479da9bc9f02ee36e01f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21692','{29035}=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','','2b56c7cfef454441863d2f7cc01a330f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21693','{29036}<0 and {29037}>0\r\nand (\r\n{29038}=6 or\r\n{29038}=7 or\r\n{29038}=11 or\r\n{29038}=62 or\r\n{29038}=69 or\r\n{29038}=117\r\n)\r\nand\r\n({29039}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29036}>0 and {29040}>0) or\r\n({29039}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','e645a0cf5e4f47a5af03f0108070d4e4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21694','({29041}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29042} or\r\n{29043}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29042}) and\r\n{29042}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29041}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29042} and\r\n{29043}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29042}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','8afaa3fc79404673880795d7d7dbabd8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21695','{29044}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29045}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29046}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29047}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','28ae5085f4ab432ea281658f1439ada1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21696','{$IFCONTROL:"{#IFNAME}"}=1 and {29048}=2 and ({29049}<>{29050})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29048}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','6a8f2b5cd5ec4b8a9e5d35f551a756e0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21697','{29051}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','1','','0','','d68607dce04f429ab8cd7e8adb5b60f1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21698','{29052}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','445766fc99c1480eac4d3d403c3ede2b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21699','{29053}>{$ICMP_LOSS_WARN} and {29053}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','fb0abe322fd644b4bb3c1255d564bb47');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21700','{29054}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','d29defd9360c489a892821989eeda10c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21701','{29055}<>{29056} and length({29057})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','2923c342e8474e3ea3d7411c104a6988');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21702','({31863}>0 and {31863}<10m) or ({31863}=0 and {31864}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','bb967f81aaad4a00ae7916ea80574ae0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21703','{29059}=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','','ecc42656a3d845ee8ad42d0fe45319c2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21704','{29060}<0 and {29061}>0\r\nand (\r\n{29062}=6 or\r\n{29062}=7 or\r\n{29062}=11 or\r\n{29062}=62 or\r\n{29062}=69 or\r\n{29062}=117\r\n)\r\nand\r\n({29063}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29060}>0 and {29064}>0) or\r\n({29063}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','eb704d12b7ef450a85a805392adb2e6b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21705','({29065}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29066} or\r\n{29067}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29066}) and\r\n{29066}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29065}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29066} and\r\n{29067}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29066}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','f61f3c59c1aa488d9ef19a67d46fb5e8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21706','{29068}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29069}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29070}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29071}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','ccf92f29e2564c0bbef6baf6daf93d86');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21707','{$IFCONTROL:"{#IFNAME}"}=1 and {29072}=2 and ({29073}<>{29074})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29072}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','706148cec9f24e81a96f44484d3829d3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21708','{29075}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','1','','0','','f82c0234ebbd4f2686ce97642f7bbcf8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21709','{29076}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','d08cae0e7fa54dfea41449f0adabe05d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21710','{29077}>{$ICMP_LOSS_WARN} and {29077}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','d70eb18878114ae69e5f5f95f4b898cc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21711','{29078}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','09bcfc7a9e3d45d99d37b56a404df610');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21712','{29079}<>{29080} and length({29081})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','5f11afa80f534add85dd03e06466fbc9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21713','({31865}>0 and {31865}<10m) or ({31865}=0 and {31866}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','536fafc0bb664fcb8b4c8acc18fe5c29');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21714','{29083}=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','','d534ea9f1ad34633bdd361f20733b749');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21715','{29084}<0 and {29085}>0\r\nand (\r\n{29086}=6 or\r\n{29086}=7 or\r\n{29086}=11 or\r\n{29086}=62 or\r\n{29086}=69 or\r\n{29086}=117\r\n)\r\nand\r\n({29087}<>2)','Interface {#IFDESCR}: Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29084}>0 and {29088}>0) or\r\n({29087}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','f06a612448bc4cc2b0b5641708e9153a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21716','({29089}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29090} or\r\n{29091}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29090}) and\r\n{29090}>0','Interface {#IFDESCR}: High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29089}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29090} and\r\n{29091}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29090}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFDESCR}: High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','e0b02506b47145a8bde6a19890a2e32b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21717','{29092}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29093}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFDESCR}: High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29094}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29095}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFDESCR}: High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','1a2e2ea2ecf047a68168bdcceb8d1e39');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21718','{$IFCONTROL:"{#IFNAME}"}=1 and {29096}=2 and ({29097}<>{29098})','Interface {#IFDESCR}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29096}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','9b5fdc0da9fa49918b3986d1eee02cfc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21719','{29099}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','1','','0','','58acb95392e845bdb2a7064af0228208');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21720','{29100}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','1bd6a4748e29498e99ccd3b23d83cdf7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21721','{29101}>{$ICMP_LOSS_WARN} and {29101}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','d41edaea369d40d2944af72a3ee76850');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21722','{29102}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','2698115b6f014e8cbdb11c2d5eeb8f08');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21723','{29103}<>{29104} and length({29105})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','cf1d0aa58a194904902899dbba814514');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21724','({31867}>0 and {31867}<10m) or ({31867}=0 and {31868}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','c1372deba2b148f4ac8be6493f0b9868');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21725','{29107}=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','','bc6e9c399c3d4d43aaeb5a1b03deb7d4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21726','{29108}<0 and {29109}>0\r\nand (\r\n{29110}=6 or\r\n{29110}=7 or\r\n{29110}=11 or\r\n{29110}=62 or\r\n{29110}=69 or\r\n{29110}=117\r\n)\r\nand\r\n({29111}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29108}>0 and {29112}>0) or\r\n({29111}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','b672a06043664dafa8f69d7d530a8723');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21727','({29113}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29114} or\r\n{29115}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29114}) and\r\n{29114}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29113}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29114} and\r\n{29115}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29114}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','98c74ed2d41941218802f4c472331f46');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21728','{29116}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29117}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29118}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29119}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','d7d8ad2b63ac41e6b84852c312c2a8d9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21729','{$IFCONTROL:"{#IFNAME}"}=1 and {29120}=2 and ({29121}<>{29122})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29120}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','d0a5ea31836946f28abe357440ebdbea');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21730','{29123}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','1','','0','','0ff624a6250b431498e4747678149e4b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21731','{29124}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','8fb33a256deb49a096b287493285e300');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21732','{29125}>{$ICMP_LOSS_WARN} and {29125}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','589e13a6ab084dd4b7d1456f7707f44d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21733','{29126}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','75bdd8a0cd664815aa3e4fa54d4f0b97');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21734','{29127}<>{29128} and length({29129})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','63f6f85bfed94821a8339c46544dde0e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21735','({31869}>0 and {31869}<10m) or ({31869}=0 and {31870}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','1395e02bc63e48daa779b8b685e91868');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21736','{29131}=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','','d64df6c48ce44bbcafcdd60a3102b41c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21737','{29132}<0 and {29133}>0\r\nand (\r\n{29134}=6 or\r\n{29134}=7 or\r\n{29134}=11 or\r\n{29134}=62 or\r\n{29134}=69 or\r\n{29134}=117\r\n)\r\nand\r\n({29135}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29132}>0 and {29136}>0) or\r\n({29135}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','97e6d8236ec04a7a91269819c89b2622');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21738','({29137}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29138} or\r\n{29139}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29138}) and\r\n{29138}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29137}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29138} and\r\n{29139}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29138}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','0f14cdc1b43a4325ba256645573a0905');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21739','{29140}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29141}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29142}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29143}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','61797acc8cb642038b1875a198d0a740');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21740','{$IFCONTROL:"{#IFNAME}"}=1 and {29144}=2 and ({29145}<>{29146})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29144}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','8f16d1db51ce4dceb0ed8753b74e8b7f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21741','{29147}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','1','','0','','1b117ed66a0c4b098606d1179e21f3f0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21742','{29148}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','49df55106af2439eb79e66caa2717ec9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21743','{29149}>{$ICMP_LOSS_WARN} and {29149}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','b7ca2b5273be4f50b5c20b422a534868');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21744','{29150}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','c322fda29bab4f99a0ea204814390551');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21745','{29151}<>{29152} and length({29153})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','740f78d69b20405da79525365fdc29fe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21746','({31871}>0 and {31871}<10m) or ({31871}=0 and {31872}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','c8c41677f4ba463b90cea501e9112483');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21747','{29155}=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','','cefe56d564434018b6a31c196cc7eb55');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21748','{29156}<0 and {29157}>0\r\nand (\r\n{29158}=6 or\r\n{29158}=7 or\r\n{29158}=11 or\r\n{29158}=62 or\r\n{29158}=69 or\r\n{29158}=117\r\n)\r\nand\r\n({29159}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29156}>0 and {29160}>0) or\r\n({29159}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','675512801cb5498887b8411c5afd5f0c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21749','({29161}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29162} or\r\n{29163}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29162}) and\r\n{29162}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29161}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29162} and\r\n{29163}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29162}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','9ebcd822aa6a4fb493c74c4d4759510b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21750','{29164}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29165}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29166}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29167}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','609c079cc7fd486fb4c938acd1c8b47f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21751','{$IFCONTROL:"{#IFNAME}"}=1 and {29168}=2 and ({29169}<>{29170})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29168}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','b67a4949e886409b89537338f657570e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21752','{29171}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','1','','0','','5f275f483fca402ba8f9aa485398d85b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21753','{29172}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','a3a6c95c0a32405d81b1bc7690f1bd1f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21754','{29173}>{$ICMP_LOSS_WARN} and {29173}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','9c78f78339724840b7ab6db4c62f5aa0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21755','{29174}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','3c5e0b2660764386ac162ed5d2778a56');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21756','{29175}<>{29176} and length({29177})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','cfcabcb7d9ca4fd59ed79775bcf059bb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21757','({31873}>0 and {31873}<10m) or ({31873}=0 and {31874}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','20166f9c8d5448a494b6b578471df8cc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21758','{29179}=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','','ccbd4c4da58f4b72a82371c2f3eaf4e1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21759','{29180}<0 and {29181}>0\r\nand (\r\n{29182}=6 or\r\n{29182}=7 or\r\n{29182}=11 or\r\n{29182}=62 or\r\n{29182}=69 or\r\n{29182}=117\r\n)\r\nand\r\n({29183}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29180}>0 and {29184}>0) or\r\n({29183}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','ead4b546caa5429197d566010e3a4a43');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21760','({29185}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29186} or\r\n{29187}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29186}) and\r\n{29186}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29185}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29186} and\r\n{29187}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29186}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','9d5d70c272a641c0ae63aca365cdb103');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21761','{29188}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29189}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29190}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29191}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','fba9e43d9fcb43fb9cf5128f1287ac7c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21762','{$IFCONTROL:"{#IFNAME}"}=1 and {29192}=2 and ({29193}<>{29194})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29192}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','18cef8eb4ade4e15bd04ad476e95a185');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21763','{29195}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','d90e80fd900246dcab90447ee2a6a7a1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21764','{29196}>{$ICMP_LOSS_WARN} and {29196}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','d3911ede372e4eb3b89b30e8e340a716');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21765','{29197}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','751d9855903f4f00b674b511fe992121');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21766','{29198}<>{29199} and length({29200})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','97157acd882944e29d6fb9fa1a2d9506');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21767','({31875}>0 and {31875}<10m) or ({31875}=0 and {31876}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','23e25e580543411ab8ffc2a4c1ca3c54');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21768','{29202}=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','','417527b3749c4a1c891d761c0978fb2e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21769','{29203}<0 and {29204}>0\r\nand (\r\n{29205}=6 or\r\n{29205}=7 or\r\n{29205}=11 or\r\n{29205}=62 or\r\n{29205}=69 or\r\n{29205}=117\r\n)\r\nand\r\n({29206}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29203}>0 and {29207}>0) or\r\n({29206}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','faabf122af7e4cca8fdc6e57060b2e69');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21770','({29208}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29209} or\r\n{29210}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29209}) and\r\n{29209}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29208}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29209} and\r\n{29210}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29209}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','f937622c6f7540579a60328398430f00');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21771','{29211}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29212}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29213}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29214}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','5731e4345a544b45b6a70a71284b878d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21772','{$IFCONTROL:"{#IFNAME}"}=1 and {29215}=2 and ({29216}<>{29217})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29215}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','c993121dca984691bd2cdf0d41c318b4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21773','{29218}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','1','','0','','a2f686bf06cc4e0a8aa24675abd5d557');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21774','{29219}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','feca40f53ed54c84afbb83d2650bbab6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21775','{29220}>{$ICMP_LOSS_WARN} and {29220}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','bca3c4bf4f89480e9c6ccfaaed0039bf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21776','{29221}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','b78ca1d148624deb95177f56eb738338');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21777','{29222}<>{29223} and length({29224})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','203415c1da0d4e36b1e52904c8f77ad7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21778','({31879}>0 and {31879}<10m) or ({31879}=0 and {31880}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','7cb3423e736d435b87a21687c09debf0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21779','{29226}=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','','c48e5ab4112d46898f219f4e9d2e4bae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21780','{29227}<0 and {29228}>0\r\nand (\r\n{29229}=6 or\r\n{29229}=7 or\r\n{29229}=11 or\r\n{29229}=62 or\r\n{29229}=69 or\r\n{29229}=117\r\n)\r\nand\r\n({29230}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29227}>0 and {29231}>0) or\r\n({29230}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','0ec14ed9e07441bc94331081b1eefea7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21781','({29232}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29233} or\r\n{29234}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29233}) and\r\n{29233}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29232}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29233} and\r\n{29234}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29233}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','6446f31cc81540c4967afe496edcc01b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21782','{29235}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29236}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29237}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29238}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','9a38ec2a71ac47e3afe4c7b65ee22b9f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21783','{$IFCONTROL:"{#IFNAME}"}=1 and {29239}=2 and ({29240}<>{29241})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29239}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','7310ec80c5ce4bd9a8d193ca10ffc636');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21784','{29242}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','5021ba3d848e4c0d80c9644ab70b313b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21785','{29243}>{$ICMP_LOSS_WARN} and {29243}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','b4c65c535f9841d98da1d32a9aaed7b8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21786','{29244}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','493e740c3b3a48c3a308492d67ea11f8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21787','{29245}<>{29246} and length({29247})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','cada2ef5e9b14392885a05f9d50186d8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21788','({31889}>0 and {31889}<10m) or ({31889}=0 and {31890}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','354a68e77ee043a684ab8be18628ffca');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21789','{29249}=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','','b19e8ce655fb48e389a384a78826d5d6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21790','{29250}<0 and {29251}>0\r\nand (\r\n{29252}=6 or\r\n{29252}=7 or\r\n{29252}=11 or\r\n{29252}=62 or\r\n{29252}=69 or\r\n{29252}=117\r\n)\r\nand\r\n({29253}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29250}>0 and {29254}>0) or\r\n({29253}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','597cab58269142b2bcf893e72baa9a0f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21791','({29255}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29256} or\r\n{29257}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29256}) and\r\n{29256}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29255}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29256} and\r\n{29257}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29256}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','ce9c951bfca14de29b0d0379c3da3b38');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21792','{29258}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29259}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29260}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29261}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','25d69f21627e49aab9fde89e3c1f8078');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21793','{$IFCONTROL:"{#IFNAME}"}=1 and {29262}=2 and ({29263}<>{29264})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29262}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','013ab2e8443a4380b29960f1eb748ff1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21794','{29265}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','fe75c4f4867942638e3d39face2aea7f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21795','{29266}>{$ICMP_LOSS_WARN} and {29266}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','ebb9113e215a4ab999b5faf043c3cdd3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21796','{29267}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','ac9ee5f5347945eaa12f8551ca54ec9b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21797','{29268}<>{29269} and length({29270})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','796b3caf5996404c93c8266fe7c5aa89');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21798','({31899}>0 and {31899}<10m) or ({31899}=0 and {31900}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','99da791be26943ec806a2c690f74a66d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21799','{29272}=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','','a6a88593c32342deb0b72e998872a3c9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21800','{29273}<0 and {29274}>0\r\nand (\r\n{29275}=6 or\r\n{29275}=7 or\r\n{29275}=11 or\r\n{29275}=62 or\r\n{29275}=69 or\r\n{29275}=117\r\n)\r\nand\r\n({29276}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29273}>0 and {29277}>0) or\r\n({29276}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','6cf5856a75df4190a0ba25ec62347194');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21801','({29278}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29279} or\r\n{29280}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29279}) and\r\n{29279}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29278}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29279} and\r\n{29280}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29279}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','7538c8f6c90f441cae42f030a34365f9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21802','{29281}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29282}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29283}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29284}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','6ac02e1d7b024c1ca4e3e19215d09c6b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21803','{$IFCONTROL:"{#IFNAME}"}=1 and {29285}=2 and ({29286}<>{29287})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29285}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','13d005d75c364bfd89008c30df81afc8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21804','{29288}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','81ff4b462e134758bf758ea598a89ac5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21805','{29289}>{$ICMP_LOSS_WARN} and {29289}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','5cf5ce1e93f54801a94370f4db68422a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21806','{29290}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','f9e60c1f73a24df5a9d84ebb81b28861');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21807','{29291}<>{29292} and length({29293})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','5a2e293b0f664c93ac675f925f0ee3e0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21808','({31909}>0 and {31909}<10m) or ({31909}=0 and {31910}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','4748e443639d47b2a969070386524eee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21809','{29295}=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','','f8bfaedd5b0f45ae9e91831865b2c1fa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21810','{29296}<0 and {29297}>0\r\nand (\r\n{29298}=6 or\r\n{29298}=7 or\r\n{29298}=11 or\r\n{29298}=62 or\r\n{29298}=69 or\r\n{29298}=117\r\n)\r\nand\r\n({29299}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29296}>0 and {29300}>0) or\r\n({29299}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','4246c08015084a69a8025aaa928efb3f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21811','({29301}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29302} or\r\n{29303}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29302}) and\r\n{29302}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29301}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29302} and\r\n{29303}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29302}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','b96a1bd98a964bc4b3aa10f1b723c256');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21812','{29304}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29305}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29306}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29307}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','b2999652071a4eecb8f7112b03168412');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21813','{$IFCONTROL:"{#IFNAME}"}=1 and {29308}=2 and ({29309}<>{29310})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29308}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','80c35372193e4616969d2e681a412606');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21814','{29311}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','ace4ead8482a47fea59f346d0cc41c62');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21815','{29312}>{$ICMP_LOSS_WARN} and {29312}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','e474571997454a96a7e86294c876c0a7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21816','{29313}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','d4e0d30eadce4dd5a37afd48a10ed379');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21817','{29314}<>{29315} and length({29316})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','1060d8c4dda547d9902dc94ac68f1b33');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21818','({31919}>0 and {31919}<10m) or ({31919}=0 and {31920}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','916fbb00982f4fb38b1942cf44daf5f2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21819','{29318}=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','','c98fffdacb89455aa6f4f62060d360de');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21820','{29319}<0 and {29320}>0\r\nand (\r\n{29321}=6 or\r\n{29321}=7 or\r\n{29321}=11 or\r\n{29321}=62 or\r\n{29321}=69 or\r\n{29321}=117\r\n)\r\nand\r\n({29322}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29319}>0 and {29323}>0) or\r\n({29322}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','837272175f904763bd4c0462946e9a0e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21821','({29324}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29325} or\r\n{29326}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29325}) and\r\n{29325}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29324}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29325} and\r\n{29326}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29325}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','d57a8a917c2a4ad89618acef7c5f1fcb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21822','{29327}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29328}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29329}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29330}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','d7b2ed63b7f941878d34b64ca7ffe21b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21823','{$IFCONTROL:"{#IFNAME}"}=1 and {29331}=2 and ({29332}<>{29333})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29331}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','b0bc658fd9654ca4802593051c5a368f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21824','{29334}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','f9fd5f6cd1a24a22ae48b0628193e0c4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21825','{29335}>{$ICMP_LOSS_WARN} and {29335}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','c72587594cfb49a6a8b39575e39ea8eb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21826','{29336}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','7d3593f5ee8f4350867de676743c4f60');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21827','{29337}<>{29338} and length({29339})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','10caf9fc68e14308a0dbe730e7e4199e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21828','({31929}>0 and {31929}<10m) or ({31929}=0 and {31930}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','8138034748544325bad6bdc90484ad21');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21829','{29341}=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','','d4932539ba7245ff8975cc8c224f8d36');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21830','{29342}<0 and {29343}>0\r\nand (\r\n{29344}=6 or\r\n{29344}=7 or\r\n{29344}=11 or\r\n{29344}=62 or\r\n{29344}=69 or\r\n{29344}=117\r\n)\r\nand\r\n({29345}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29342}>0 and {29346}>0) or\r\n({29345}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','f3c8a1a967524ca2bba4c646987e3fc8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21831','({29347}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29348} or\r\n{29349}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29348}) and\r\n{29348}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29347}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29348} and\r\n{29349}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29348}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','b810391bc8204730b88b3059e2eefa16');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21832','{29350}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29351}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29352}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29353}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','6f66143ac9064cdfa02884fde84a4c96');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21833','{$IFCONTROL:"{#IFNAME}"}=1 and {29354}=2 and ({29355}<>{29356})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29354}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','6aa1807ef8c94f09a7bd527f5c34fd1f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21834','{29357}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','65c639dc46a345da90e22ca0dc491d8c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21835','{29358}>{$ICMP_LOSS_WARN} and {29358}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','65eb4b94fead4b57acda0b7ac001c41c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21836','{29359}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','410faf17c1ca41408cb773270dc614b3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21837','{29360}<>{29361} and length({29362})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','ed7279478045454b809f46211c5c71b9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21838','({31939}>0 and {31939}<10m) or ({31939}=0 and {31940}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','ecf84d7e28504c23a40b013683d1cfee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21839','{29364}=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','','56f238340c7e40b39eb8cc04a67cf465');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21840','{29365}<0 and {29366}>0\r\nand (\r\n{29367}=6 or\r\n{29367}=7 or\r\n{29367}=11 or\r\n{29367}=62 or\r\n{29367}=69 or\r\n{29367}=117\r\n)\r\nand\r\n({29368}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29365}>0 and {29369}>0) or\r\n({29368}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','bc744a57d4e44fd187453b4b8f72538e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21841','({29370}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29371} or\r\n{29372}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29371}) and\r\n{29371}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29370}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29371} and\r\n{29372}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29371}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','4a4f855dd0744cd29c3d24eb7e00de35');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21842','{29373}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29374}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29375}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29376}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','f8e4afe44bc041e9b1853644d1b662f8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21843','{$IFCONTROL:"{#IFNAME}"}=1 and {29377}=2 and ({29378}<>{29379})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29377}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','7b8a57cb6eeb4eb5b2a6e270065f6032');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21844','{29380}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','151029088e374c23bb89abe498da70ef');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21845','{29381}>{$ICMP_LOSS_WARN} and {29381}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','f719d0a102d84edb8c2672502ee28b25');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21846','{29382}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','acba03a0cc9a40fb89258e1ece7dce30');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21847','{29383}<>{29384} and length({29385})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','f2d7211cd2ca476facec96075e06298c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21848','({31949}>0 and {31949}<10m) or ({31949}=0 and {31950}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','75e9434ddcb34c5489190d8b6de07e87');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21849','{29387}=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','','b14b41ca31c342be803852075ff5c9f9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21850','{29388}<0 and {29389}>0\r\nand (\r\n{29390}=6 or\r\n{29390}=7 or\r\n{29390}=11 or\r\n{29390}=62 or\r\n{29390}=69 or\r\n{29390}=117\r\n)\r\nand\r\n({29391}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29388}>0 and {29392}>0) or\r\n({29391}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','1d4bee528df346c6b9ac8e73352b0871');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21851','({29393}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29394} or\r\n{29395}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29394}) and\r\n{29394}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29393}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29394} and\r\n{29395}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29394}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','17ab3a7deafe4ffdbc33a1d3ebef3039');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21852','{29396}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29397}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29398}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29399}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','94fa2681675b4295ad1ee4d86e6f85f0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21853','{$IFCONTROL:"{#IFNAME}"}=1 and {29400}=2 and ({29401}<>{29402})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29400}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','80d625abfee747ffa6513c604aff983f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21854','{29403}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','00453dcba3e74c4cb1bfce45c0d29590');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21855','{29404}>{$ICMP_LOSS_WARN} and {29404}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','ef9c639da1fb4c7d9e9082b76468353e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21856','{29405}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','8a7a50a814854217bae736f9766a9f42');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21857','{29406}<>{29407} and length({29408})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','3d3902234c994181819a311b9f1947dd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21858','({31959}>0 and {31959}<10m) or ({31959}=0 and {31960}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','7b5ce136e1524c2c85febecb055e50f8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21859','{29410}=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','','2fdfcfe056e848f2b0a628d87ad4aa6c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21860','{29411}<0 and {29412}>0\r\nand (\r\n{29413}=6 or\r\n{29413}=7 or\r\n{29413}=11 or\r\n{29413}=62 or\r\n{29413}=69 or\r\n{29413}=117\r\n)\r\nand\r\n({29414}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29411}>0 and {29415}>0) or\r\n({29414}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','e9c85085a0d546ba910b139c99adee10');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21861','({29416}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29417} or\r\n{29418}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29417}) and\r\n{29417}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29416}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29417} and\r\n{29418}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29417}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','91c48f7aac824bfbb58d78bd791a60e2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21862','{29419}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29420}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29421}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29422}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','d7a049070a434aa5b3a9c320f25eb040');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21863','{$IFCONTROL:"{#IFNAME}"}=1 and {29423}=2 and ({29424}<>{29425})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29423}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','1f7c8669552d4890ac963f53aefcf100');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21864','{29426}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','2510c2fd36cf4379b15e3e18abffea95');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21865','{29427}>{$ICMP_LOSS_WARN} and {29427}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','48a93170038b41af9fd8b6f25500ee37');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21866','{29428}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','1e70b999e9854c4093a75a960f8282a2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21867','{29429}<>{29430} and length({29431})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','9e3ce4eb299547199e67c131556d5bc5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21868','({31969}>0 and {31969}<10m) or ({31969}=0 and {31970}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','be74bf6810694df98cd43a669e247aab');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21869','{29433}=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','','a2d66f40be294b8b81a96e11afcfe7ec');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21870','{29434}<0 and {29435}>0\r\nand (\r\n{29436}=6 or\r\n{29436}=7 or\r\n{29436}=11 or\r\n{29436}=62 or\r\n{29436}=69 or\r\n{29436}=117\r\n)\r\nand\r\n({29437}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29434}>0 and {29438}>0) or\r\n({29437}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','7a475a2472c64ee2b15b5f36c93e17db');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21871','({29439}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29440} or\r\n{29441}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29440}) and\r\n{29440}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29439}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29440} and\r\n{29441}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29440}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','2154cc56a5304ec5b6327852cf4eea8b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21872','{29442}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29443}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29444}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29445}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','450f5f3106cf4755b48cbfd9d0c2a287');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21873','{$IFCONTROL:"{#IFNAME}"}=1 and {29446}=2 and ({29447}<>{29448})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29446}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','24634d43d28146ca802ae4aee7af276a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21874','{29449}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','f37a32635c674102aaf1b7ceafa8532a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21875','{29450}>{$ICMP_LOSS_WARN} and {29450}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','1889f2943a044c49830914fd18846172');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21876','{29451}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','805b3e4698dc4c55a4cc40712e14e494');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21877','{29452}<>{29453} and length({29454})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','9ffbe2020d8b46f1ac730c038e9d1f51');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21878','({31979}>0 and {31979}<10m) or ({31979}=0 and {31980}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','a885ccc0d0e546fe8a970ff4876f9471');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21879','{29456}=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','','6c2ff9e7f39a46918bf5d1843c7bf615');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21880','{29457}<0 and {29458}>0\r\nand (\r\n{29459}=6 or\r\n{29459}=7 or\r\n{29459}=11 or\r\n{29459}=62 or\r\n{29459}=69 or\r\n{29459}=117\r\n)\r\nand\r\n({29460}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29457}>0 and {29461}>0) or\r\n({29460}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','ef8a1963f5e743bb921edaa2115c9076');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21881','({29462}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29463} or\r\n{29464}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29463}) and\r\n{29463}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29462}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29463} and\r\n{29464}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29463}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','5fe8afc5b0554c0f99b8fc4fe914deca');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21882','{29465}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29466}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29467}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29468}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','f4eec00173b3447080d0528805b31aef');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21883','{$IFCONTROL:"{#IFNAME}"}=1 and {29469}=2 and ({29470}<>{29471})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29469}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','7596859088f04a0785c6e5b07d446ba8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21884','{29472}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','d17f5a29c6104de78dd9b66ae8144e9b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21885','{29473}>{$ICMP_LOSS_WARN} and {29473}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','f3ad9f5ef4734e6da08c699d937a1521');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21886','{29474}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','831afefc75dc472ab3d010757abab4e2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21887','{29475}<>{29476} and length({29477})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','ed353db14a0742a7a865e9805025e9a9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21888','({31989}>0 and {31989}<10m) or ({31989}=0 and {31990}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','285c2be6116d4e5fae7d0cbad5ccecb2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21889','{29479}=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','','7a821734dc78455fa363bf7a8c2f2dc2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21890','{29480}<0 and {29481}>0\r\nand (\r\n{29482}=6 or\r\n{29482}=7 or\r\n{29482}=11 or\r\n{29482}=62 or\r\n{29482}=69 or\r\n{29482}=117\r\n)\r\nand\r\n({29483}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29480}>0 and {29484}>0) or\r\n({29483}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','127e4dfad7884ac782f9d31d0b84dfee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21891','({29485}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29486} or\r\n{29487}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29486}) and\r\n{29486}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29485}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29486} and\r\n{29487}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29486}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','839abcd582c340c8986edba7e8df360b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21892','{29488}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29489}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29490}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29491}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','32debbc2bfb546a0bcc3091494ee5b60');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21893','{$IFCONTROL:"{#IFNAME}"}=1 and {29492}=2 and ({29493}<>{29494})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29492}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','cb6f6e2bddc0454eb142cc35344e7082');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21894','{29495}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','93236f96ce364b1ab95c603503c6984f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21895','{29496}>{$ICMP_LOSS_WARN} and {29496}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','e7c3d84b4e3f4faabd28f36984116925');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21896','{29497}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','4219929d04dd4367bf82c0c97f85eae7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21897','{29498}<>{29499} and length({29500})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','3bbc3dcf8127414abb426c830e8fddee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21898','({31999}>0 and {31999}<10m) or ({31999}=0 and {32000}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','f445d5e35c2b4296a670165e332be78c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21899','{29502}=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','','e38ee3ff9c5a438fa7785db98162b84a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21900','{29503}<0 and {29504}>0\r\nand (\r\n{29505}=6 or\r\n{29505}=7 or\r\n{29505}=11 or\r\n{29505}=62 or\r\n{29505}=69 or\r\n{29505}=117\r\n)\r\nand\r\n({29506}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29503}>0 and {29507}>0) or\r\n({29506}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','b88f9f6974434f6ab26fbb747feb66e6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21901','({29508}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29509} or\r\n{29510}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29509}) and\r\n{29509}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29508}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29509} and\r\n{29510}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29509}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','7dd2c3c0a76649f097999376f6bd4bfc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21902','{29511}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29512}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29513}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29514}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','53652249393a485dab8db23696953e31');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21903','{$IFCONTROL:"{#IFNAME}"}=1 and {29515}=2 and ({29516}<>{29517})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29515}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','b9f20adf207c43d192921831fd5c882c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21904','{29518}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','04d896fcaf2c4573bb077432604ca2ad');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21905','{29519}>{$ICMP_LOSS_WARN} and {29519}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','c6468c0bef2c4ad2958d69df8364722a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21906','{29520}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','2b339fa462ce498fbf5d7557e8548930');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21907','{29521}<>{29522} and length({29523})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','3517d04dc5c34d07aad7ec73381deaaf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21908','({32009}>0 and {32009}<10m) or ({32009}=0 and {32010}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','40fac3f864c442f9bcbcbd5757070c38');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21909','{29525}=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','','bb5432b89f7248758d05d4c44cdf0d0a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21910','{29526}<0 and {29527}>0\r\nand (\r\n{29528}=6 or\r\n{29528}=7 or\r\n{29528}=11 or\r\n{29528}=62 or\r\n{29528}=69 or\r\n{29528}=117\r\n)\r\nand\r\n({29529}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29526}>0 and {29530}>0) or\r\n({29529}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','fac8789a47e44e1e98a047f9a8af8a16');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21911','({29531}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29532} or\r\n{29533}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29532}) and\r\n{29532}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29531}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29532} and\r\n{29533}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29532}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','6f683ec4b17642b6add94e73ea306f2f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21912','{29534}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29535}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29536}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29537}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','71e00ff03c6c46f6a4b5b986c67e3c2c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21913','{$IFCONTROL:"{#IFNAME}"}=1 and {29538}=2 and ({29539}<>{29540})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29538}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','518c5d16112b4b76a043d74e98748901');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21914','{29541}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','c63272b308134676a35c7b8311d71589');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21915','{29542}>{$ICMP_LOSS_WARN} and {29542}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','09d55f6987784bffb6024266e0895878');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21916','{29543}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','235acd3457814902b4bf316065d05e00');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21917','{29544}<>{29545} and length({29546})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','5431acc090c34d879e911cd90a52eb48');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21918','({32019}>0 and {32019}<10m) or ({32019}=0 and {32020}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','7bcd342f9c4f467a98ab38a5ea3e174b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21919','{29548}=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','','2f271102d58b4068b87eab5ff70b7798');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21920','{29549}<0 and {29550}>0\r\nand (\r\n{29551}=6 or\r\n{29551}=7 or\r\n{29551}=11 or\r\n{29551}=62 or\r\n{29551}=69 or\r\n{29551}=117\r\n)\r\nand\r\n({29552}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29549}>0 and {29553}>0) or\r\n({29552}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','f2b1a41fe508425cadd992422f9f2e1a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21921','({29554}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29555} or\r\n{29556}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29555}) and\r\n{29555}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29554}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29555} and\r\n{29556}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29555}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','89c85677363b4416a8718b6455c5e2ec');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21922','{29557}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29558}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29559}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29560}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','b1ae075b11a2481da6a64b65c5d0d4a8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21923','{$IFCONTROL:"{#IFNAME}"}=1 and {29561}=2 and ({29562}<>{29563})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29561}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','d9beebab41fd436fad7f54cfab6e5eb0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21924','{29564}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','16ef2e7fa1a949298407a0a0b4d77746');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21925','{29565}>{$ICMP_LOSS_WARN} and {29565}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','1dbb087e217944aebb6cd2ed14685a46');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21926','{29566}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','2dd9b73423b946f89dc7a421e12fd58e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21927','{29567}<>{29568} and length({29569})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','40ae2f08e95b4affab12454007f4bdc6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21928','({32029}>0 and {32029}<10m) or ({32029}=0 and {32030}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','d81cc3699a454ae3bd9bf813fff8e286');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21929','{29571}=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','','d720c3c0a669406cad47bf135de9be8c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21930','{29572}<0 and {29573}>0\r\nand (\r\n{29574}=6 or\r\n{29574}=7 or\r\n{29574}=11 or\r\n{29574}=62 or\r\n{29574}=69 or\r\n{29574}=117\r\n)\r\nand\r\n({29575}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29572}>0 and {29576}>0) or\r\n({29575}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','ba58df29a51d4ad6b415654f10968e27');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21931','({29577}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29578} or\r\n{29579}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29578}) and\r\n{29578}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29577}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29578} and\r\n{29579}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29578}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','29ca187c6d6941caab396f6b57e86746');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21932','{29580}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29581}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29582}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29583}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','72076d70d7b644b19e64bd55fab5e594');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21933','{$IFCONTROL:"{#IFNAME}"}=1 and {29584}=2 and ({29585}<>{29586})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29584}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','bdab20ca351f4d39a27c636b33df9de1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21934','{29587}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','eccaf3e02f9944638588b82322322c32');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21935','{29588}>{$ICMP_LOSS_WARN} and {29588}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','71286dd187734ee18b53fdf73602ef7d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21936','{29589}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','18e8caa0b7a44c64aaec1d5eecf76297');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21937','{29590}<>{29591} and length({29592})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','681af1da9ba7432aa407019b1ff5192f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21938','({32039}>0 and {32039}<10m) or ({32039}=0 and {32040}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','6cbc680faf50402a8aa5eb6b2b848f7b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21939','{29594}=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','','147de2ef3a3447cf9401f4197e911b17');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21940','{29595}<0 and {29596}>0\r\nand (\r\n{29597}=6 or\r\n{29597}=7 or\r\n{29597}=11 or\r\n{29597}=62 or\r\n{29597}=69 or\r\n{29597}=117\r\n)\r\nand\r\n({29598}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29595}>0 and {29599}>0) or\r\n({29598}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','7ff7bef321134c08bc70b8988abb91c4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21941','({29600}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29601} or\r\n{29602}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29601}) and\r\n{29601}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29600}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29601} and\r\n{29602}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29601}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','43f1d416170f493d825b087a88fd8b0e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21942','{29603}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29604}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29605}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29606}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','6e91f3d30c5a492dbb56b284594aa6ba');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21943','{$IFCONTROL:"{#IFNAME}"}=1 and {29607}=2 and ({29608}<>{29609})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29607}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','1f51aae95ee44368be4327fa0bb02c8a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21944','{29610}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','6883be571ae343a791670f2f0c36cd02');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21945','{29611}>{$ICMP_LOSS_WARN} and {29611}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','ea3e5695d49f4868bd6a83e67689e5d6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21946','{29612}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','4439b1b6d31d4824ba1ed448d9bda1b4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21947','{29613}<>{29614} and length({29615})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','ab81c691a90a409fa0d24ddac4ee455f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21948','({32049}>0 and {32049}<10m) or ({32049}=0 and {32050}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','1d5170eb0ba14c4e8799d712ee84d004');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21949','{29617}=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','','94b83963c4474cd5a8d21a8cdae584f4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21950','{29618}<0 and {29619}>0\r\nand (\r\n{29620}=6 or\r\n{29620}=7 or\r\n{29620}=11 or\r\n{29620}=62 or\r\n{29620}=69 or\r\n{29620}=117\r\n)\r\nand\r\n({29621}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29618}>0 and {29622}>0) or\r\n({29621}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','b34e8d6b7e81481bb19b3f39236c29e4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21951','({29623}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29624} or\r\n{29625}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29624}) and\r\n{29624}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29623}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29624} and\r\n{29625}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29624}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','3c74af72b29e4b8484ccf36539caf234');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21952','{29626}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29627}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29628}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29629}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','6fae861a027a4965b5b80500a218c0f1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21953','{$IFCONTROL:"{#IFNAME}"}=1 and {29630}=2 and ({29631}<>{29632})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29630}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','61ea7de46c3841c7a4fc04f67ef1448f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21954','{29633}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','31542fecf2794dcb8b96293087b71526');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21955','{29634}>{$ICMP_LOSS_WARN} and {29634}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','ded01e910a0046fa94a89c7011cc9514');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21956','{29635}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','5c9b3116dc4140bdb7903a094fbf098f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21957','{29636}<>{29637} and length({29638})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','1e2f2debb1cc4f13b133cbe6600c99cc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21958','({32059}>0 and {32059}<10m) or ({32059}=0 and {32060}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','a888ad0e55f14ba0803bf6923dc7d227');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21959','{29640}=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','','3efee76288274e42921647d5a1d82ab1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21960','{29641}<0 and {29642}>0\r\nand (\r\n{29643}=6 or\r\n{29643}=7 or\r\n{29643}=11 or\r\n{29643}=62 or\r\n{29643}=69 or\r\n{29643}=117\r\n)\r\nand\r\n({29644}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29641}>0 and {29645}>0) or\r\n({29644}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','19b7437f8a91461da91c77abec3ae9f2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21961','({29646}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29647} or\r\n{29648}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29647}) and\r\n{29647}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29646}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29647} and\r\n{29648}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29647}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','462f683cfd5d4c5096b23d7051440671');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21962','{29649}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29650}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29651}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29652}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','25641b52614a4e3b9a11af9212c47b4f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21963','{$IFCONTROL:"{#IFNAME}"}=1 and {29653}=2 and ({29654}<>{29655})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29653}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','979f432cdb8442faa8105b295b394dda');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21964','{29656}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','16bfb1a39fe54fa0b512ed93c8c3b00a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21965','{29657}>{$ICMP_LOSS_WARN} and {29657}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','d166ae7475f5416499b46a00cf5de374');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21966','{29658}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','a59d0752d5724f01a783ef8b4131b9d4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21967','{29659}<>{29660} and length({29661})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','01cb61daac1f42d3ab0a5fafd2b113a4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21968','({32069}>0 and {32069}<10m) or ({32069}=0 and {32070}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','a1d58fc2668b465a81a86536c1f646ad');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21969','{29663}=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','','a564c084ec414271b212db6c9b301db7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21970','{29664}<0 and {29665}>0\r\nand (\r\n{29666}=6 or\r\n{29666}=7 or\r\n{29666}=11 or\r\n{29666}=62 or\r\n{29666}=69 or\r\n{29666}=117\r\n)\r\nand\r\n({29667}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29664}>0 and {29668}>0) or\r\n({29667}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','370d7a702a62401ca9dd904b3c7ec39c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21971','({29669}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29670} or\r\n{29671}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29670}) and\r\n{29670}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29669}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29670} and\r\n{29671}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29670}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','b78e00216b3441fbb217d6b14cba2979');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21972','{29672}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29673}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29674}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29675}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','921716eadabd441d87d23a53ea1ffa8e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21973','{$IFCONTROL:"{#IFNAME}"}=1 and {29676}=2 and ({29677}<>{29678})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29676}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','b810190964d44084b2294ea56c7b5ee5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21974','{29679}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','db42c8af11744c5ab3f47f72ebc4a510');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21975','{29680}>{$ICMP_LOSS_WARN} and {29680}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','844a3542770748cf9a99070e6f55fba6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21976','{29681}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','4b4911507b374dfc9c1b105c4c09e3b8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21977','{29682}<>{29683} and length({29684})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','dc073a13e66f4d528af68db048184c2f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21978','({32079}>0 and {32079}<10m) or ({32079}=0 and {32080}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','1cfae25fa7b041b98b5b97a5bca0796a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21979','{29686}=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','','cb430613680b4bd087d79a4f1004f453');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21980','{29687}<0 and {29688}>0\r\nand (\r\n{29689}=6 or\r\n{29689}=7 or\r\n{29689}=11 or\r\n{29689}=62 or\r\n{29689}=69 or\r\n{29689}=117\r\n)\r\nand\r\n({29690}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29687}>0 and {29691}>0) or\r\n({29690}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','3aa76bfc278a484387be9ef760005d55');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21981','({29692}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29693} or\r\n{29694}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29693}) and\r\n{29693}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29692}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29693} and\r\n{29694}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29693}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','9b698eef38ca438383c7bc06c2589166');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21982','{29695}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29696}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29697}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29698}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','71f098c03cf945cd9a5a9a26f46bb54e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21983','{$IFCONTROL:"{#IFNAME}"}=1 and {29699}=2 and ({29700}<>{29701})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29699}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','b8325c85797b4b56a2ebb5f998751bcc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21984','{29702}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','f4acabb314ea4a38935ebb722bf47ed9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21985','{29703}>{$ICMP_LOSS_WARN} and {29703}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','629b35a8b5414240953062d4b4caad60');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21986','{29704}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','28ce838e43004acebc74c42e782b65cb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21987','{29705}<>{29706} and length({29707})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','f01bb34d5f30454bb72e6b00e187c066');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21988','({32089}>0 and {32089}<10m) or ({32089}=0 and {32090}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','bd172615c09147ed8deb102f88eb8900');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21989','{29709}=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','','1c20500d7efe42e59d3562c980201ef1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21990','{29710}<0 and {29711}>0\r\nand (\r\n{29712}=6 or\r\n{29712}=7 or\r\n{29712}=11 or\r\n{29712}=62 or\r\n{29712}=69 or\r\n{29712}=117\r\n)\r\nand\r\n({29713}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29710}>0 and {29714}>0) or\r\n({29713}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','53447bc4ecb04af7b4d9ef6a57c78a29');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21991','({29715}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29716} or\r\n{29717}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29716}) and\r\n{29716}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29715}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29716} and\r\n{29717}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29716}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','05e4dbc448fc431f90a831af90408113');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21992','{29718}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29719}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29720}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29721}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','0af66a5ab69448549374ef932be1d57b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21993','{$IFCONTROL:"{#IFNAME}"}=1 and {29722}=2 and ({29723}<>{29724})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29722}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','6251339e2940419994033e0689fa16a7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21994','{29725}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','d914dc20fb664be7832aae19f07df37f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21995','{29726}>{$ICMP_LOSS_WARN} and {29726}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','70d6789335b74cdd87a1a23bf4a3f875');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21996','{29727}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','49f77a9948164eb7aeffc3efe3f60ce1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21997','{29728}<>{29729} and length({29730})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','63f90de57f5f4b5b92d0db0b54d0b1d2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21998','({32099}>0 and {32099}<10m) or ({32099}=0 and {32100}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','b31c237e2046464c95b1ab70dc08e118');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21999','{29732}=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','','1b222c2531f140399fe94a54556c6422');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22000','{29733}<0 and {29734}>0\r\nand (\r\n{29735}=6 or\r\n{29735}=7 or\r\n{29735}=11 or\r\n{29735}=62 or\r\n{29735}=69 or\r\n{29735}=117\r\n)\r\nand\r\n({29736}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29733}>0 and {29737}>0) or\r\n({29736}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','c05d1756423841658946ffaddf78ef79');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22001','({29738}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29739} or\r\n{29740}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29739}) and\r\n{29739}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29738}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29739} and\r\n{29740}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29739}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','e08df3d8533c46a9aac0144486098b78');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22002','{29741}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29742}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29743}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29744}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','dcd307c6b1074213976f0f26cb699699');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22003','{$IFCONTROL:"{#IFNAME}"}=1 and {29745}=2 and ({29746}<>{29747})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29745}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','2eed9a625d3c45b4bfd4fdd70b58461d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22004','{29748}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','b74334acbba2407d8baff550f0db6d64');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22005','{29749}>{$ICMP_LOSS_WARN} and {29749}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','160e58bf2d05433882e3e0c8f187c42e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22006','{29750}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','ee3f5dbb8f5848c888c0d599be2dd4fa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22007','{29751}<>{29752} and length({29753})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','635b2c749af2495aa87688001bd73a6c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22008','({32109}>0 and {32109}<10m) or ({32109}=0 and {32110}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','869d6bd39ef1440193978c60518a91f7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22009','{29755}=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','','6ed1c046ba1a4246a6e30d5147e58250');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22010','{29756}<0 and {29757}>0\r\nand (\r\n{29758}=6 or\r\n{29758}=7 or\r\n{29758}=11 or\r\n{29758}=62 or\r\n{29758}=69 or\r\n{29758}=117\r\n)\r\nand\r\n({29759}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29756}>0 and {29760}>0) or\r\n({29759}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','4549b4a23bc24c0d8998f2dc6a77a520');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22011','({29761}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29762} or\r\n{29763}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29762}) and\r\n{29762}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29761}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29762} and\r\n{29763}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29762}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','676efabc192b4583b60c52ce440d00f2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22012','{29764}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29765}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29766}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29767}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','cd633c8e31824cb1b38c6e9dad58ca7e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22013','{$IFCONTROL:"{#IFNAME}"}=1 and {29768}=2 and ({29769}<>{29770})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29768}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','f32914fd53134704a5c11b501decb57e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22014','{29771}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','d81a92c3079b4d25be205b1e56b15a73');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22015','{29772}>{$ICMP_LOSS_WARN} and {29772}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','cd4376c2f8e449b9b4923720374198af');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22016','{29773}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','9e00ffd6364d4e238985a4f23601e1c6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22017','{29774}<>{29775} and length({29776})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','968c0bef31dc4ae89426b7dee5b76ea1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22018','({32119}>0 and {32119}<10m) or ({32119}=0 and {32120}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','119f36d60a1141f5a5dee9ee3aba894b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22019','{29778}=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','','cd1295131197495183bcc095622fb296');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22020','{29779}<0 and {29780}>0\r\nand (\r\n{29781}=6 or\r\n{29781}=7 or\r\n{29781}=11 or\r\n{29781}=62 or\r\n{29781}=69 or\r\n{29781}=117\r\n)\r\nand\r\n({29782}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29779}>0 and {29783}>0) or\r\n({29782}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','a14597e77d1a47cfae87df483df50d44');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22021','({29784}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29785} or\r\n{29786}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29785}) and\r\n{29785}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29784}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29785} and\r\n{29786}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29785}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','86aee07149c9403eba4e32030c52ae0e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22022','{29787}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29788}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29789}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29790}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','2fa427f9d66548ee9574495847cd521a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22023','{$IFCONTROL:"{#IFNAME}"}=1 and {29791}=2 and ({29792}<>{29793})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29791}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','066a5460a2964a7586a90494dcc29c4f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22024','{29794}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','0f59da9697304abd8c074c51ce3a4bef');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22025','{29795}>{$ICMP_LOSS_WARN} and {29795}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','14b723dee48541a3a8b36c128681a200');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22026','{29796}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','f8666db5e5a64d3fa7119deac48c317c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22027','{29797}<>{29798} and length({29799})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','375ba33fbee4425d97cbb15e410e52d3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22028','({32129}>0 and {32129}<10m) or ({32129}=0 and {32130}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','4e0a9fd604b04e6295108f8edf7910a9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22029','{29801}=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','','5ea3db8ebb2f49ab9fe7d38de50a4003');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22030','{29802}<0 and {29803}>0\r\nand (\r\n{29804}=6 or\r\n{29804}=7 or\r\n{29804}=11 or\r\n{29804}=62 or\r\n{29804}=69 or\r\n{29804}=117\r\n)\r\nand\r\n({29805}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29802}>0 and {29806}>0) or\r\n({29805}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','eaa731129de3470e830007ac7ce932f5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22031','({29807}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29808} or\r\n{29809}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29808}) and\r\n{29808}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29807}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29808} and\r\n{29809}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29808}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','4060d8dedaac41c8bce5b82df01eb53c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22032','{29810}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29811}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29812}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29813}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','294c29c25bae472fa13f20d6c75442bf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22033','{$IFCONTROL:"{#IFNAME}"}=1 and {29814}=2 and ({29815}<>{29816})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29814}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','073891fc4c8b4ec9b316deb9c4147cab');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22034','{29817}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','fa71a2bcc742439a8eb76923db6dd34c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22035','{29818}>{$ICMP_LOSS_WARN} and {29818}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','c315770210b94fe39126514c41d6fa5d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22036','{29819}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','fe1eba68b565403a968bec8561362376');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22037','{29820}<>{29821} and length({29822})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','caff4557fe8d4e0cb994c16a4d1c3eae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22038','({32139}>0 and {32139}<10m) or ({32139}=0 and {32140}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','661c463acbed4777b8269b9277a255fc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22039','{29824}=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','','eaa6f1c7bd334122af4cb08af35ebd86');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22040','{29825}<0 and {29826}>0\r\nand (\r\n{29827}=6 or\r\n{29827}=7 or\r\n{29827}=11 or\r\n{29827}=62 or\r\n{29827}=69 or\r\n{29827}=117\r\n)\r\nand\r\n({29828}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29825}>0 and {29829}>0) or\r\n({29828}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','332308663e4e478d97383a638b2b1d02');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22041','({29830}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29831} or\r\n{29832}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29831}) and\r\n{29831}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29830}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29831} and\r\n{29832}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29831}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','c854aedfd3594f21b40bd227de48c871');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22042','{29833}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29834}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29835}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29836}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','f74f365e18d64e2096a326456622b3e1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22043','{$IFCONTROL:"{#IFNAME}"}=1 and {29837}=2 and ({29838}<>{29839})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29837}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','d007eb009f2d4b699cf5af8a0ccedfe9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22044','{29840}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','987ae7ade202464ba51fd8fcc67d3a19');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22045','{29841}>{$ICMP_LOSS_WARN} and {29841}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','bf7a369d3b2a455496f8920177666d91');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22046','{29842}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','9a35ff4d142640e387f247a8ae5021bc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22047','{29843}<>{29844} and length({29845})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','135707c751764f9087ebd32e1fe0b7ba');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22048','({32149}>0 and {32149}<10m) or ({32149}=0 and {32150}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','1906ad6961664c74a2de31d20cd279b2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22049','{29847}=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','','239d876c15fe45ccb33ca87aba3a170f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22050','{29848}<0 and {29849}>0\r\nand (\r\n{29850}=6 or\r\n{29850}=7 or\r\n{29850}=11 or\r\n{29850}=62 or\r\n{29850}=69 or\r\n{29850}=117\r\n)\r\nand\r\n({29851}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29848}>0 and {29852}>0) or\r\n({29851}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','f1c3a3541f9948eb890816493e6251e5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22051','({29853}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29854} or\r\n{29855}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29854}) and\r\n{29854}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29853}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29854} and\r\n{29855}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29854}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','ec1a319bff034c6387ed43d083c0ca85');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22052','{29856}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29857}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29858}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29859}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','1d46257a2eb14abf8f3dddae5e3974ca');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22053','{$IFCONTROL:"{#IFNAME}"}=1 and {29860}=2 and ({29861}<>{29862})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29860}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','914bfdb045554132902dff8f910878d4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22054','{29863}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','94618414658d4f5bad5f1cf544fba55d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22055','{29864}>{$ICMP_LOSS_WARN} and {29864}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','ecb0d03f65144dbe8e8e22339576fe1a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22056','{29865}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','bb70a4e882224f9d8302f8726ff81a8d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22057','{29866}<>{29867} and length({29868})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','f4c43870fa484e4088c1d9c973387140');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22058','({32159}>0 and {32159}<10m) or ({32159}=0 and {32160}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','ec03a67de5ca4d8d834e1689a1cd28bf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22059','{29870}=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','','ce74c74936194791b8f8a09acd9d5501');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22060','{29871}<0 and {29872}>0\r\nand (\r\n{29873}=6 or\r\n{29873}=7 or\r\n{29873}=11 or\r\n{29873}=62 or\r\n{29873}=69 or\r\n{29873}=117\r\n)\r\nand\r\n({29874}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29871}>0 and {29875}>0) or\r\n({29874}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','0eca316085f046599bd3db8ce7b186f1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22061','({29876}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29877} or\r\n{29878}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29877}) and\r\n{29877}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29876}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29877} and\r\n{29878}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29877}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','417ef3b4a8814b01bcb4715248df543c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22062','{29879}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29880}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29881}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29882}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','a674f655342a42b094b0084fab1bde99');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22063','{$IFCONTROL:"{#IFNAME}"}=1 and {29883}=2 and ({29884}<>{29885})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29883}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','2426c10e34db430a946528f02ae605d4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22064','{29886}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','7c5ac0cbe19b4a119e8cd02802169849');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22065','{29887}>{$ICMP_LOSS_WARN} and {29887}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','4b63a258093a4b5f8c7f415c054e290c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22066','{29888}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','8d37fb7e0f32438ea1b1f55389c4c024');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22067','{29889}<>{29890} and length({29891})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','23b043f4b2344b8ea9140387454e6b02');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22068','({32169}>0 and {32169}<10m) or ({32169}=0 and {32170}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','e2283150bf9e4248aa9bb5bd9cc1881e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22069','{29893}=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','','8d9d64c66ffe48899e799bf720182b6c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22070','{29894}<0 and {29895}>0\r\nand (\r\n{29896}=6 or\r\n{29896}=7 or\r\n{29896}=11 or\r\n{29896}=62 or\r\n{29896}=69 or\r\n{29896}=117\r\n)\r\nand\r\n({29897}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29894}>0 and {29898}>0) or\r\n({29897}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','2215de4000e640c3b34a5333dfb3ec79');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22071','({29899}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29900} or\r\n{29901}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29900}) and\r\n{29900}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29899}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29900} and\r\n{29901}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29900}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','1b7348beb2044c2cbb59904cde8fc02b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22072','{29902}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29903}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29904}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29905}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','cd7fe7efe80241efae4e7dd2952313bc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22073','{$IFCONTROL:"{#IFNAME}"}=1 and {29906}=2 and ({29907}<>{29908})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29906}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','a0071a9d0e604160af201436b9879256');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22074','{29909}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','4c4560f84de94f36a3e7d4941ded2cba');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22075','{29910}>{$ICMP_LOSS_WARN} and {29910}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','44efdc627091496baa1fbe4bbe078e6f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22076','{29911}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','0a8c65b849dd4cb1a0d740d57323f76c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22077','{29912}<>{29913} and length({29914})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','56b334cfbcf54eba95c229b097e3cfd7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22078','({32179}>0 and {32179}<10m) or ({32179}=0 and {32180}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','3afcbbeb91004c2dae24efaf37fec710');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22079','{29916}=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','','a63e914da20a47ef9d478b53d5e18042');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22080','{29917}<0 and {29918}>0\r\nand (\r\n{29919}=6 or\r\n{29919}=7 or\r\n{29919}=11 or\r\n{29919}=62 or\r\n{29919}=69 or\r\n{29919}=117\r\n)\r\nand\r\n({29920}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29917}>0 and {29921}>0) or\r\n({29920}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','426f6a84191544c79eeabfbfb7590a35');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22081','({29922}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29923} or\r\n{29924}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29923}) and\r\n{29923}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29922}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29923} and\r\n{29924}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29923}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','69788ba37d1147c2b67d4dbbc9b33eff');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22082','{29925}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29926}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29927}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29928}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','376cee5b35f840d68db5d1daed510eb3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22083','{$IFCONTROL:"{#IFNAME}"}=1 and {29929}=2 and ({29930}<>{29931})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29929}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','a50ddafe680c447db056a9a9012faead');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22084','{29932}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','6a7f532a2e4a4b4cbe9435e560f8d281');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22085','{29933}>{$ICMP_LOSS_WARN} and {29933}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','17c92f554c45423eb5b44bd08f34ad7f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22086','{29934}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','3b093888ce154887afaa6f738218d718');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22087','{29935}<>{29936} and length({29937})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','dd116049df75471b8aacbedd082f2634');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22088','({32189}>0 and {32189}<10m) or ({32189}=0 and {32190}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','63045c3ca20d4cd390b1247dfd3876c4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22089','{29939}=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','','7b8af02b531842e2b7f50037a8b3679a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22090','{29940}<0 and {29941}>0\r\nand (\r\n{29942}=6 or\r\n{29942}=7 or\r\n{29942}=11 or\r\n{29942}=62 or\r\n{29942}=69 or\r\n{29942}=117\r\n)\r\nand\r\n({29943}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29940}>0 and {29944}>0) or\r\n({29943}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','9d517af24f104293b6ca6b2b8de70d3b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22091','({29945}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29946} or\r\n{29947}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29946}) and\r\n{29946}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29945}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29946} and\r\n{29947}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29946}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','a95105e0711543388452fdb960bd2caf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22092','{29948}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29949}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29950}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29951}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','1881f3af98ec450cb15b88ac749bacf6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22093','{$IFCONTROL:"{#IFNAME}"}=1 and {29952}=2 and ({29953}<>{29954})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29952}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','1dec7dd2894f4296963217dc13c78abe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22094','{29955}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','a3fbb030723c45208c51c923ca11fe1c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22095','{29956}>{$ICMP_LOSS_WARN} and {29956}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','6e46f7a198bb4cbcb4555e80a4ce7045');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22096','{29957}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','1ac1be3472d04dddaadfa68228997594');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22097','{29958}<>{29959} and length({29960})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','39c5e6d11d4c4866adac2a145a18dfb7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22098','({32199}>0 and {32199}<10m) or ({32199}=0 and {32200}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','b3004ef6450848c8bb55e7c802c2bd96');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22099','{29962}=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','','67cd4c3273394776a7e7497ec8c1a091');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22100','{29963}<0 and {29964}>0\r\nand (\r\n{29965}=6 or\r\n{29965}=7 or\r\n{29965}=11 or\r\n{29965}=62 or\r\n{29965}=69 or\r\n{29965}=117\r\n)\r\nand\r\n({29966}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29963}>0 and {29967}>0) or\r\n({29966}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','2a68840307594164a2ca408decd6dba5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22101','({29968}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29969} or\r\n{29970}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29969}) and\r\n{29969}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29968}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29969} and\r\n{29970}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29969}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','fe4d3130c3284b46b649a92b019a712b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22102','{29971}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29972}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29973}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29974}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','22d8b44c4e6d467298c3528d98b02e1d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22103','{$IFCONTROL:"{#IFNAME}"}=1 and {29975}=2 and ({29976}<>{29977})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29975}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','e2c87fe418e342699ac14d1f9755258c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22104','{29978}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','b1a43fa0251248fa897994575b8a27ac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22105','{29979}>{$ICMP_LOSS_WARN} and {29979}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','740b195a7246457ea28635c4b8ef0f83');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22106','{29980}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','d85b8d94139d44c69349898d2149e7bd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22107','{29981}<>{29982} and length({29983})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','90a6f09f02ba4a36b019c6624ad13812');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22108','({32209}>0 and {32209}<10m) or ({32209}=0 and {32210}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','2d0d281a078546959a644e758ede97d6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22109','{29985}=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','','36ee677a31184b738cd02b91aee5ff78');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22110','{29986}<0 and {29987}>0\r\nand (\r\n{29988}=6 or\r\n{29988}=7 or\r\n{29988}=11 or\r\n{29988}=62 or\r\n{29988}=69 or\r\n{29988}=117\r\n)\r\nand\r\n({29989}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({29986}>0 and {29990}>0) or\r\n({29989}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','6ca7d0731b294e1081e95cb6cf2a122d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22111','({29991}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29992} or\r\n{29993}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29992}) and\r\n{29992}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29991}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29992} and\r\n{29993}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29992}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','4d7141f9e9e34656a89b011b20453494');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22112','{29994}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {29995}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{29996}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {29997}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','01d85d1674674c7b9fc0fbaf96814160');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22113','{$IFCONTROL:"{#IFNAME}"}=1 and {29998}=2 and ({29999}<>{30000})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{29998}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','018a5f1c3af44b64a6d31e095fce0dfc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22114','{30001}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','c093758529824015be966f41e9e27757');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22115','{30002}>{$ICMP_LOSS_WARN} and {30002}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','05873e7bbc8347f48daf707af0a3a1df');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22116','{30003}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','f0a1435b054f46a3a496ab8c92591d96');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22117','{30004}<>{30005} and length({30006})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','64b6467c681f43f4954a24d7bc326588');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22118','({32219}>0 and {32219}<10m) or ({32219}=0 and {32220}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','81a1b9e9630c4b28b035da3b9fa7e6d7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22119','{30008}=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','','289a3d4d39e14627bb26817d21221c05');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22120','{30009}<0 and {30010}>0\r\nand (\r\n{30011}=6 or\r\n{30011}=7 or\r\n{30011}=11 or\r\n{30011}=62 or\r\n{30011}=69 or\r\n{30011}=117\r\n)\r\nand\r\n({30012}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30009}>0 and {30013}>0) or\r\n({30012}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','bf2dcee19ae44de98fed1b9f41d80ea9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22121','({30014}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30015} or\r\n{30016}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30015}) and\r\n{30015}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30014}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30015} and\r\n{30016}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30015}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','92470dac23d7480f817f1d903e6ba869');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22122','{30017}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30018}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30019}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30020}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','7ab169c391b142afa4fd1441d1cb7595');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22123','{$IFCONTROL:"{#IFNAME}"}=1 and {30021}=2 and ({30022}<>{30023})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30021}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','789cf81a742c41dfa356b253b01faeca');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22124','{30024}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','169edfa3b9c94c61899cc540a5f4bd5c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22125','{30025}>{$ICMP_LOSS_WARN} and {30025}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','cb4bbbd51e854ac5b6877b85fd7b8bf5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22126','{30026}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','01e6c7a1fc2243dcabfd5ac1dec841ad');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22127','{30027}<>{30028} and length({30029})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','53e27314562746fb803664ddbd13876f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22128','({32229}>0 and {32229}<10m) or ({32229}=0 and {32230}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','f71809adab344e60a2f6260548359167');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22129','{30031}=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','','a462a1b6a16e4636aa3a70bbed7cc1cd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22130','{30032}<0 and {30033}>0\r\nand (\r\n{30034}=6 or\r\n{30034}=7 or\r\n{30034}=11 or\r\n{30034}=62 or\r\n{30034}=69 or\r\n{30034}=117\r\n)\r\nand\r\n({30035}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30032}>0 and {30036}>0) or\r\n({30035}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','4558a208b2ef4376a1f33db1383c62b6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22131','({30037}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30038} or\r\n{30039}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30038}) and\r\n{30038}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30037}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30038} and\r\n{30039}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30038}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','13c5c29276ae4d2293dd3a178131608e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22132','{30040}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30041}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30042}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30043}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','e22b4649dbd94b3982636622b92212a8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22133','{$IFCONTROL:"{#IFNAME}"}=1 and {30044}=2 and ({30045}<>{30046})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30044}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','b41b12e1ed5148cbbd97a0bcf838ef44');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22134','{30047}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','f38f2bf1b3954e87afaae1b24f051705');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22135','{30048}>{$ICMP_LOSS_WARN} and {30048}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','2384103bcdef45e48026fbb913a09e41');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22136','{30049}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','492c760974924a489adf628a78facf20');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22137','{30050}<>{30051} and length({30052})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','2783c5306701462290c245ff68ce0804');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22138','({32239}>0 and {32239}<10m) or ({32239}=0 and {32240}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','f96b1dcd1cf84538a0d7729c5e4c683b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22139','{30054}=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','','8a6f02ead39b4b42be807585266c1fec');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22140','{30055}<0 and {30056}>0\r\nand (\r\n{30057}=6 or\r\n{30057}=7 or\r\n{30057}=11 or\r\n{30057}=62 or\r\n{30057}=69 or\r\n{30057}=117\r\n)\r\nand\r\n({30058}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30055}>0 and {30059}>0) or\r\n({30058}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','246b22c8fee74df3af90178f1015eabd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22141','({30060}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30061} or\r\n{30062}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30061}) and\r\n{30061}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30060}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30061} and\r\n{30062}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30061}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','80a39aa88bc14897ad94816f088fee1d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22142','{30063}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30064}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30065}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30066}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','5f15f82f958040f59ad31151a464d023');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22143','{$IFCONTROL:"{#IFNAME}"}=1 and {30067}=2 and ({30068}<>{30069})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30067}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','5ca938e575294b8283154e162968d00d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22144','{30070}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','ec9cc9ca00754d17a9ee8ff38e4aca2f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22145','{30071}>{$ICMP_LOSS_WARN} and {30071}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','1377c7e423284ac487afdeac6252f1e7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22146','{30072}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','143e8c34dc344611ace63e6bcfbfa556');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22147','{30073}<>{30074} and length({30075})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','ecfbc704498740ee89afbffd1a2db22d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22148','({32249}>0 and {32249}<10m) or ({32249}=0 and {32250}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','e2afe16e11e14b80aa4a228eb9182f6a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22149','{30077}=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','','7d47b1df3a984db891811b14832ba2ee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22150','{30078}<0 and {30079}>0\r\nand (\r\n{30080}=6 or\r\n{30080}=7 or\r\n{30080}=11 or\r\n{30080}=62 or\r\n{30080}=69 or\r\n{30080}=117\r\n)\r\nand\r\n({30081}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30078}>0 and {30082}>0) or\r\n({30081}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','48212db512234a48863444e08dd6ac8d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22151','({30083}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30084} or\r\n{30085}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30084}) and\r\n{30084}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30083}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30084} and\r\n{30085}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30084}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','d658285fc06f498dbdb4ff3e02fdbb9c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22152','{30086}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30087}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30088}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30089}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','49fc7dbdc2294a92a52a30125d4f12a5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22153','{$IFCONTROL:"{#IFNAME}"}=1 and {30090}=2 and ({30091}<>{30092})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30090}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','e3a3b7bdfec649dab8e51cf2ba9685d6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22154','{30093}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','5dea6d7aa1344f27b66dbdce2350e93a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22155','{30094}>{$ICMP_LOSS_WARN} and {30094}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','a8d51531113a4017b732eb8d7247c777');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22156','{30095}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','7acce40acf3a4eb28af79fc6d95bf190');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22157','{30096}<>{30097} and length({30098})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','e09f00f0ad144e7a96e3abb38e4ab109');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22158','({32259}>0 and {32259}<10m) or ({32259}=0 and {32260}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','27e64b9d917d4163b2f66c6f790b5a44');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22159','{30100}=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','','096f1ccc1fd24cffb48720def5297031');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22160','{30101}<0 and {30102}>0\r\nand (\r\n{30103}=6 or\r\n{30103}=7 or\r\n{30103}=11 or\r\n{30103}=62 or\r\n{30103}=69 or\r\n{30103}=117\r\n)\r\nand\r\n({30104}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30101}>0 and {30105}>0) or\r\n({30104}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','24edc4d534254e638458cb08d0fb7492');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22161','({30106}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30107} or\r\n{30108}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30107}) and\r\n{30107}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30106}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30107} and\r\n{30108}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30107}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','358f84761e004f48ba31aed484cdc947');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22162','{30109}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30110}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30111}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30112}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','c14516c2c7f24762af7d6555f9f38158');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22163','{$IFCONTROL:"{#IFNAME}"}=1 and {30113}=2 and ({30114}<>{30115})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30113}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','f5085ef8cfde4046a423c59d977258d4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22164','{30116}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','5ec7bb4a650f4c53a76ec3f89769952d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22165','{30117}>{$ICMP_LOSS_WARN} and {30117}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','66718f4417324cd7a88de35776b26c64');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22166','{30118}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','95b144dfafeb40be96155e0a6e53515e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22167','{30119}<>{30120} and length({30121})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','5d609e8337b94830a52752ef8db4fd75');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22168','({32269}>0 and {32269}<10m) or ({32269}=0 and {32270}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','0dcc036b17de4d00bf7d51b7b6076e3c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22169','{30123}=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','','c36eb285f1a94d29a40afb4bb8e923d4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22170','{30124}<0 and {30125}>0\r\nand (\r\n{30126}=6 or\r\n{30126}=7 or\r\n{30126}=11 or\r\n{30126}=62 or\r\n{30126}=69 or\r\n{30126}=117\r\n)\r\nand\r\n({30127}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30124}>0 and {30128}>0) or\r\n({30127}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','9f31bde8ab2e4edd8a142cdf0e4274d0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22171','({30129}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30130} or\r\n{30131}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30130}) and\r\n{30130}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30129}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30130} and\r\n{30131}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30130}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','794d401f1b66402cb9309d9acd63321c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22172','{30132}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30133}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30134}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30135}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','df2b99f9fcfc4df195b500cc637fb4d6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22173','{$IFCONTROL:"{#IFNAME}"}=1 and {30136}=2 and ({30137}<>{30138})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30136}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','72ef5c7b0bb74f1fb88085616293169c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22174','{30139}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','7257cb86a65547b5901cac08cacee3aa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22175','{30140}>{$ICMP_LOSS_WARN} and {30140}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','ae82608801a642d9b3ef8ddd06cee7f6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22176','{30141}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','d2f60c5c4a124a549eb02f62874dba8b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22177','{30142}<>{30143} and length({30144})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','f64be38a3557482087d75ed423ced500');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22178','({32279}>0 and {32279}<10m) or ({32279}=0 and {32280}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','2139aea23b214169a369b4776865f501');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22179','{30146}=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','','81af7d744ebf422ba065308fcb3c225a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22180','{30147}<0 and {30148}>0\r\nand (\r\n{30149}=6 or\r\n{30149}=7 or\r\n{30149}=11 or\r\n{30149}=62 or\r\n{30149}=69 or\r\n{30149}=117\r\n)\r\nand\r\n({30150}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30147}>0 and {30151}>0) or\r\n({30150}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','3ea926e679704c50b2a8b72bbdbb7136');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22181','({30152}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30153} or\r\n{30154}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30153}) and\r\n{30153}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30152}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30153} and\r\n{30154}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30153}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','544e37fe922d4b6aa28c05becbf6485b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22182','{30155}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30156}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30157}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30158}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','4f224bcc233c4a378d3af6e4b8ad7df9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22183','{$IFCONTROL:"{#IFNAME}"}=1 and {30159}=2 and ({30160}<>{30161})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30159}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','97aeb18c33b24e29acefa286a52e6815');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22184','{30162}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','247cdbc159624b33a4b415d3e048c087');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22185','{30163}>{$ICMP_LOSS_WARN} and {30163}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','4d4cde77c8324a88ac0798e2f096be69');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22186','{30164}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','0f9f0ffd9322422babb52a5a5058d97e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22187','{30165}<>{30166} and length({30167})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','a5fed81db3c7447c8c62b02974765f57');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22188','({32289}>0 and {32289}<10m) or ({32289}=0 and {32290}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','a3c432e1d04448d3940f69f8d9633c8f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22189','{30169}=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','','a82f1cafcb424685bb2f562c1c6dce11');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22190','{30170}<0 and {30171}>0\r\nand (\r\n{30172}=6 or\r\n{30172}=7 or\r\n{30172}=11 or\r\n{30172}=62 or\r\n{30172}=69 or\r\n{30172}=117\r\n)\r\nand\r\n({30173}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30170}>0 and {30174}>0) or\r\n({30173}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','6e11e178d1e2418fa94bd2718a6eccaf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22191','({30175}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30176} or\r\n{30177}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30176}) and\r\n{30176}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30175}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30176} and\r\n{30177}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30176}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','54be09c46d2e4c6694fbd4eef4f4e055');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22192','{30178}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30179}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30180}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30181}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','3c122a7c5e6348f28f8c04391f73f14b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22193','{$IFCONTROL:"{#IFNAME}"}=1 and {30182}=2 and ({30183}<>{30184})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30182}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','f0d3817bc7f243c591078b806f3ae712');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22194','{30185}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','4db071c60daf4a6a836754875b22d27d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22195','{30186}>{$ICMP_LOSS_WARN} and {30186}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','5ce287958dc743abaa50a18c8ad3f2a5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22196','{30187}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','314db7fe9ce6403785f737263ee87914');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22197','{30188}<>{30189} and length({30190})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','6f811bec794348e4937cbff22dbf5fb4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22198','({32299}>0 and {32299}<10m) or ({32299}=0 and {32300}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','44a2d709f4d0471997697905b8e3b456');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22199','{30192}=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','','9a5729d397ad431aa79048b69a65fbd9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22200','{30193}<0 and {30194}>0\r\nand (\r\n{30195}=6 or\r\n{30195}=7 or\r\n{30195}=11 or\r\n{30195}=62 or\r\n{30195}=69 or\r\n{30195}=117\r\n)\r\nand\r\n({30196}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30193}>0 and {30197}>0) or\r\n({30196}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','d29da0701e5346ac81450a6002bb53c4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22201','({30198}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30199} or\r\n{30200}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30199}) and\r\n{30199}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30198}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30199} and\r\n{30200}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30199}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','79709d95fe7a48d3a90b6a502788be89');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22202','{30201}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30202}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30203}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30204}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','b8470cef21e146b4b8ecfde73682d2ee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22203','{$IFCONTROL:"{#IFNAME}"}=1 and {30205}=2 and ({30206}<>{30207})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30205}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','1bb803809e6a4b66a4dabbaf7dada2c0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22204','{30208}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','4c7a404a7e7b413bbbac7a21c77b3fcc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22205','{30209}>{$ICMP_LOSS_WARN} and {30209}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','a9c3882f12d94b84a2cbed81db007011');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22206','{30210}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','20cb06fa668d459e80505b23501735a7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22207','{30211}<>{30212} and length({30213})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','bf71167252cf48c99477a03d09523aa0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22208','({32309}>0 and {32309}<10m) or ({32309}=0 and {32310}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','3dfea70b489141e1ba7e967a8de964b8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22209','{30215}=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','','7a790a7c2af34786838280924d2cb252');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22210','{30216}<0 and {30217}>0\r\nand (\r\n{30218}=6 or\r\n{30218}=7 or\r\n{30218}=11 or\r\n{30218}=62 or\r\n{30218}=69 or\r\n{30218}=117\r\n)\r\nand\r\n({30219}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30216}>0 and {30220}>0) or\r\n({30219}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','19c663970db044c39cc43028e7d0642d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22211','({30221}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30222} or\r\n{30223}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30222}) and\r\n{30222}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30221}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30222} and\r\n{30223}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30222}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','df9f785e1515408b8b3735a653673100');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22212','{30224}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30225}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30226}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30227}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','5f5b45aa0b4943d191670dcafe035707');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22213','{$IFCONTROL:"{#IFNAME}"}=1 and {30228}=2 and ({30229}<>{30230})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30228}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','8af0f04b3392466382d73d4986782c24');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22214','{30231}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','7651bd1c9c3b431eba1db692abe311a1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22215','{30232}>{$ICMP_LOSS_WARN} and {30232}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','433634cc1ce0426ba8337add07ee07f0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22216','{30233}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','a114fb9720bd429f8d406bac7b40a6d2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22217','{30234}<>{30235} and length({30236})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','58cd8a4c443e43d595a1afc5d045b67b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22218','({32319}>0 and {32319}<10m) or ({32319}=0 and {32320}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','7419d6e22c5d493ba843adf4f4f85529');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22219','{30238}=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','','463cc0b4e29d4dddba8ddb16b8faa12b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22220','{30239}<0 and {30240}>0\r\nand (\r\n{30241}=6 or\r\n{30241}=7 or\r\n{30241}=11 or\r\n{30241}=62 or\r\n{30241}=69 or\r\n{30241}=117\r\n)\r\nand\r\n({30242}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30239}>0 and {30243}>0) or\r\n({30242}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','0203940b08b54db982bafbfef0a8ab3c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22221','({30244}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30245} or\r\n{30246}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30245}) and\r\n{30245}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30244}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30245} and\r\n{30246}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30245}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','883a34a4a82a47f99b63703e3ecd2106');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22222','{30247}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30248}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30249}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30250}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','af6d0bf9ba9a4402bf9ec52b7bfe998f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22223','{$IFCONTROL:"{#IFNAME}"}=1 and {30251}=2 and ({30252}<>{30253})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30251}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','b56d0177668c4803b2de395f12c48070');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22224','{30254}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','afd45d5f0f1b48d68af5e58e5b13f7d2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22225','{30255}>{$ICMP_LOSS_WARN} and {30255}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','bea20e4b6a634c3bb4c3c3f2c0ae91ce');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22226','{30256}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','30e3c09970614f7eb6434aacdc427fcb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22227','{30257}<>{30258} and length({30259})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','78efe7ad5d8740f7ae087beb2952f74d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22228','({32329}>0 and {32329}<10m) or ({32329}=0 and {32330}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','f4c5126396ce4a07b9f0ef82aea599e3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22229','{30261}=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','','265226f23bfc4bd58cddd2a154c168ac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22230','{30262}<0 and {30263}>0\r\nand (\r\n{30264}=6 or\r\n{30264}=7 or\r\n{30264}=11 or\r\n{30264}=62 or\r\n{30264}=69 or\r\n{30264}=117\r\n)\r\nand\r\n({30265}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30262}>0 and {30266}>0) or\r\n({30265}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','0a611eb7adb546bcab8352199c9fc08b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22231','({30267}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30268} or\r\n{30269}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30268}) and\r\n{30268}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30267}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30268} and\r\n{30269}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30268}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','464770fa9e3b41399da04f251ff3a215');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22232','{30270}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30271}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30272}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30273}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','4bb5165672484ce0bea109fcef1cf62b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22233','{$IFCONTROL:"{#IFNAME}"}=1 and {30274}=2 and ({30275}<>{30276})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30274}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','33ce2abc89ee40b2bf88f30b9834ec8c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22234','{30277}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','9d1eaf8c440842b6867f539d8e4580b9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22235','{30278}>{$ICMP_LOSS_WARN} and {30278}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','bb1bddbd5b3b4c97a056a3030cb8220c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22236','{30279}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','4de979003a374346a66e18e0dc0ae8b3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22237','{30280}<>{30281} and length({30282})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','0b1965fc09b549f8a0301c3b560f6e04');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22238','({32339}>0 and {32339}<10m) or ({32339}=0 and {32340}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','f6de5bd6b737473fa0bb8adcd7388f2f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22239','{30284}=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','','7b2ebd40ed1f4e72ac77c9bc31eab800');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22240','{30285}<0 and {30286}>0\r\nand (\r\n{30287}=6 or\r\n{30287}=7 or\r\n{30287}=11 or\r\n{30287}=62 or\r\n{30287}=69 or\r\n{30287}=117\r\n)\r\nand\r\n({30288}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30285}>0 and {30289}>0) or\r\n({30288}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','0a6434fa071a47d4bbf9dfb922580cfa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22241','({30290}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30291} or\r\n{30292}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30291}) and\r\n{30291}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30290}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30291} and\r\n{30292}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30291}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','f07cc9964edc4a819717be63759a150d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22242','{30293}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30294}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30295}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30296}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','62a5f85871ca4fc3aed8e4cf0423649a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22243','{$IFCONTROL:"{#IFNAME}"}=1 and {30297}=2 and ({30298}<>{30299})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30297}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','101e11f167e64235aa2d5f7d06f43548');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22244','{30300}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','c187031a85c340219bf773e53b1eb70b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22245','{30301}>{$ICMP_LOSS_WARN} and {30301}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','c30d9d87e01d4a4fb5f859b9b96a9597');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22246','{30302}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','71bd6b58f328466fa8855e45f98d9148');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22247','{30303}<>{30304} and length({30305})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','689814337c114068a71c0d510b6ffdee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22248','({32349}>0 and {32349}<10m) or ({32349}=0 and {32350}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','6919d6afa065438b976979a4f782414e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22249','{30307}=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','','dbe7f9e93602427e81932c39b4383974');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22250','{30308}<0 and {30309}>0\r\nand (\r\n{30310}=6 or\r\n{30310}=7 or\r\n{30310}=11 or\r\n{30310}=62 or\r\n{30310}=69 or\r\n{30310}=117\r\n)\r\nand\r\n({30311}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30308}>0 and {30312}>0) or\r\n({30311}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','f65d4d21623e4b0cb8a98f088e304de7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22251','({30313}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30314} or\r\n{30315}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30314}) and\r\n{30314}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30313}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30314} and\r\n{30315}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30314}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','98c16c4da816482195fc9a3c43f4cc2b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22252','{30316}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30317}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30318}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30319}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','e24c732a680c4f7fac04eb4fd20e3839');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22253','{$IFCONTROL:"{#IFNAME}"}=1 and {30320}=2 and ({30321}<>{30322})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30320}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','28bc939657054f55a94e3818cba84344');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22254','{30323}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','99b9920681f941c187f81d1c91755891');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22255','{30324}>{$ICMP_LOSS_WARN} and {30324}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','530db893da94415db5fa5b1f26570bd5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22256','{30325}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','662e7c6a20bb4038b171f39f88bc5c5a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22257','{30326}<>{30327} and length({30328})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','ed72b3a73f5d498586ddfe57e9ad8638');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22258','({32359}>0 and {32359}<10m) or ({32359}=0 and {32360}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','3b0a33b89325422c90a05950eb7b4ece');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22259','{30330}=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','','e33c3d29eb9f41b49cc6002a5ee14058');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22260','{30331}<0 and {30332}>0\r\nand (\r\n{30333}=6 or\r\n{30333}=7 or\r\n{30333}=11 or\r\n{30333}=62 or\r\n{30333}=69 or\r\n{30333}=117\r\n)\r\nand\r\n({30334}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30331}>0 and {30335}>0) or\r\n({30334}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','8a7a6eb94ea24a819764bdcc5131238d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22261','({30336}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30337} or\r\n{30338}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30337}) and\r\n{30337}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30336}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30337} and\r\n{30338}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30337}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','0d59255268064ca68352411117f5e9cf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22262','{30339}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30340}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30341}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30342}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','062828dbf3964ca9bf6014b15ea13648');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22263','{$IFCONTROL:"{#IFNAME}"}=1 and {30343}=2 and ({30344}<>{30345})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30343}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','ef94e6ea0f0547ed9b67073d91a745ec');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22264','{30346}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','78f7c3cb9ad94841b6ef337df5a41914');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22265','{30347}>{$ICMP_LOSS_WARN} and {30347}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','899836cd67f74868954af828bcf35521');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22266','{30348}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','f5930e10af6e43d380c97f2522780a8e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22267','{30349}<>{30350} and length({30351})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','6aeb9e554ba1411f868668b8f31dca49');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22268','({32369}>0 and {32369}<10m) or ({32369}=0 and {32370}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','d893994cfe8145b8bb0cf294b8a49f1f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22269','{30353}=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','','fea996e6b5e14205ad6e41faa9f53263');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22270','{30354}<0 and {30355}>0\r\nand (\r\n{30356}=6 or\r\n{30356}=7 or\r\n{30356}=11 or\r\n{30356}=62 or\r\n{30356}=69 or\r\n{30356}=117\r\n)\r\nand\r\n({30357}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30354}>0 and {30358}>0) or\r\n({30357}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','775cb415657c4772aa345e886c33af52');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22271','({30359}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30360} or\r\n{30361}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30360}) and\r\n{30360}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30359}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30360} and\r\n{30361}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30360}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','5ca398d5648b46449d93b13ed69d24ab');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22272','{30362}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30363}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30364}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30365}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','51cc89abce1c45f4895d904fbf4c7a73');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22273','{$IFCONTROL:"{#IFNAME}"}=1 and {30366}=2 and ({30367}<>{30368})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30366}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','89186fdd35cd4300803d8cbfaa86fa71');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22274','{30369}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','2759e7d4eb114d0984aff53e6656e57e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22275','{30370}>{$ICMP_LOSS_WARN} and {30370}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','32d2897f2f1d42b0b2d4f40d6332cf48');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22276','{30371}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','138f10a500aa4b29abf9760c80e22b06');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22277','{30372}<>{30373} and length({30374})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','d6d2aa238d864cc1902b94e44e46b627');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22278','({32379}>0 and {32379}<10m) or ({32379}=0 and {32380}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','40869f938b4f470cad6f5d8996edd088');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22279','{30376}=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','','9a95ecc339b34b3a8713d62c68e2b330');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22280','{30377}<0 and {30378}>0\r\nand (\r\n{30379}=6 or\r\n{30379}=7 or\r\n{30379}=11 or\r\n{30379}=62 or\r\n{30379}=69 or\r\n{30379}=117\r\n)\r\nand\r\n({30380}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30377}>0 and {30381}>0) or\r\n({30380}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','1ebf4ecd3b254ace99f6738cd066035c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22281','({30382}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30383} or\r\n{30384}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30383}) and\r\n{30383}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30382}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30383} and\r\n{30384}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30383}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','01d1b416123541eaad013386e1605241');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22282','{30385}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30386}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30387}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30388}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','baa41e89c189448e9d9a5918ef4918be');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22283','{$IFCONTROL:"{#IFNAME}"}=1 and {30389}=2 and ({30390}<>{30391})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30389}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','c8fd70162f264509a4bd4898015f522f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22284','{30392}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','8b77ade2f79b4e3bafc22e7d8766e477');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22285','{30393}>{$ICMP_LOSS_WARN} and {30393}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','cf4a28f174764d20953c4dcbca1576b6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22286','{30394}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','5ab1684fe5f34e3faa06192f47562b86');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22287','{30395}<>{30396} and length({30397})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','a67b112302804d90931ea112d7412aa7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22288','({32389}>0 and {32389}<10m) or ({32389}=0 and {32390}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','6ca7b6f5acfb499b8ffbf5988a95616c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22289','{30399}=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','','f0686a8c2a6e42de980d6bca8ce4a0da');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22290','{30400}<0 and {30401}>0\r\nand (\r\n{30402}=6 or\r\n{30402}=7 or\r\n{30402}=11 or\r\n{30402}=62 or\r\n{30402}=69 or\r\n{30402}=117\r\n)\r\nand\r\n({30403}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30400}>0 and {30404}>0) or\r\n({30403}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','d01d880fa506470a85c4219963c6275d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22291','({30405}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30406} or\r\n{30407}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30406}) and\r\n{30406}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30405}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30406} and\r\n{30407}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30406}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','65d28a326c624b9da28eb0d0477138fb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22292','{30408}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30409}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30410}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30411}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','1dcf1776170c44b38acb30d3c20f62a8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22293','{$IFCONTROL:"{#IFNAME}"}=1 and {30412}=2 and ({30413}<>{30414})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30412}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','0aac9b47a3f04cc7bea4f118e66d2a2e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22294','{30415}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','ad75e791ea804015af4f056851d065e5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22295','{30416}>{$ICMP_LOSS_WARN} and {30416}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','53146df6198e4aa8a08ee2f5148b9273');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22296','{30417}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','d30292aa239f4b08866dd626bea719d4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22297','{30418}<>{30419} and length({30420})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','31d043884c104f02aabfc12edc7cca38');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22298','({32399}>0 and {32399}<10m) or ({32399}=0 and {32400}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','d721994d11d04783af8d3a474de35b1c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22299','{30422}=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','','5a3c6162200746f2b5fc1df3120dcc40');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22300','{30423}<0 and {30424}>0\r\nand (\r\n{30425}=6 or\r\n{30425}=7 or\r\n{30425}=11 or\r\n{30425}=62 or\r\n{30425}=69 or\r\n{30425}=117\r\n)\r\nand\r\n({30426}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30423}>0 and {30427}>0) or\r\n({30426}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','74b27cf9dbed4239bcbeb3967074fc2f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22301','({30428}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30429} or\r\n{30430}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30429}) and\r\n{30429}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30428}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30429} and\r\n{30430}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30429}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','487e923c839049718746d1875ffb4152');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22302','{30431}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30432}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30433}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30434}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','fe9c5bef78df4e0b84920a40d1549e6e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22303','{$IFCONTROL:"{#IFNAME}"}=1 and {30435}=2 and ({30436}<>{30437})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30435}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','7337464491af47fdae8202c1e68585ac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22304','{30438}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','9eba3716ff704612a9c498a7b5a72a15');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22305','{30439}>{$ICMP_LOSS_WARN} and {30439}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','c0069ca77aa140d3ad4559979ad0973d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22306','{30440}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','9b01547e80e84f16b017901233e1fddd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22307','{30441}<>{30442} and length({30443})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','146922ff45f24d7ea7d3b7b5f0631f77');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22308','({32409}>0 and {32409}<10m) or ({32409}=0 and {32410}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','06c5437331284cf1ae61668b8fd285b5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22309','{30445}=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','','d51c0c2689a14b41aed889d67ec596df');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22310','{30446}<0 and {30447}>0\r\nand (\r\n{30448}=6 or\r\n{30448}=7 or\r\n{30448}=11 or\r\n{30448}=62 or\r\n{30448}=69 or\r\n{30448}=117\r\n)\r\nand\r\n({30449}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30446}>0 and {30450}>0) or\r\n({30449}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','91828300121c45d49d9ec4b5e61d872f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22311','({30451}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30452} or\r\n{30453}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30452}) and\r\n{30452}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30451}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30452} and\r\n{30453}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30452}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','8d68e034bf6b4302ad4026fca4fd1e86');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22312','{30454}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30455}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30456}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30457}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','0f981e35c326480585104d8ed108bd70');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22313','{$IFCONTROL:"{#IFNAME}"}=1 and {30458}=2 and ({30459}<>{30460})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30458}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','532c7b90f432422398ad782959fb330c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22314','{30461}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','dc51a869c302440ba48d352545782e6e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22315','{30462}>{$ICMP_LOSS_WARN} and {30462}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','83fa0a00b298491a967e052ec0c3bafe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22316','{30463}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','7c027442ed3c44a0a26b4f35458a37f9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22317','{30464}<>{30465} and length({30466})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','0172b76bc48d4dcead140c4880499777');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22318','({32419}>0 and {32419}<10m) or ({32419}=0 and {32420}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','53e737a095a840df9abfcfd9c26007bf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22319','{30468}=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','','2cc6310f1a824d40903f497f155a7834');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22320','{30469}<0 and {30470}>0\r\nand (\r\n{30471}=6 or\r\n{30471}=7 or\r\n{30471}=11 or\r\n{30471}=62 or\r\n{30471}=69 or\r\n{30471}=117\r\n)\r\nand\r\n({30472}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30469}>0 and {30473}>0) or\r\n({30472}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','564e8f3f288a40e9926b75b2711f45d1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22321','({30474}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30475} or\r\n{30476}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30475}) and\r\n{30475}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30474}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30475} and\r\n{30476}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30475}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','25cc75fecfd1499ebc65ea434b98cb18');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22322','{30477}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30478}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30479}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30480}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','4c3aef072fcb47b98f0cdc3b651fae71');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22323','{$IFCONTROL:"{#IFNAME}"}=1 and {30481}=2 and ({30482}<>{30483})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30481}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','db74692dd86a428fba64e57751fce1ba');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22324','{30484}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','424d07aafe9f4e8c8f647db6a43363d0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22325','{30485}>{$ICMP_LOSS_WARN} and {30485}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','9d2efd0614ba4e16b3479ed515d3a9a2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22326','{30486}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','99888c77fc084d43b742a1f156d87832');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22327','{30487}<>{30488} and length({30489})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','61e82ab169374a51a1ebd876cc7813a8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22328','({32443}>0 and {32443}<10m) or ({32443}=0 and {32444}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','d68e4595fd4c4e5a9307b268cfe06b3e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22329','{30491}=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','','cc91cb171901433bbb35752127e54ad0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22330','{30492}<0 and {30493}>0\r\nand (\r\n{30494}=6 or\r\n{30494}=7 or\r\n{30494}=11 or\r\n{30494}=62 or\r\n{30494}=69 or\r\n{30494}=117\r\n)\r\nand\r\n({30495}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30492}>0 and {30496}>0) or\r\n({30495}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','443260352dec4467b6eafdd4c6a8ba9c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22331','({30497}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30498} or\r\n{30499}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30498}) and\r\n{30498}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30497}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30498} and\r\n{30499}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30498}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','8b33b079505846558c6ee4f0afb05c5d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22332','{30500}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30501}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30502}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30503}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','bfc9aaa24f17487184a8b88d4bf310a5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22333','{$IFCONTROL:"{#IFNAME}"}=1 and {30504}=2 and ({30505}<>{30506})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30504}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','8e06e74957de4467bb127e6f16cdd84c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22334','{30507}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','fd05f449cbc64dcba10029c246594568');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22335','{30508}>{$ICMP_LOSS_WARN} and {30508}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','4b2e2d168a0b4da3b5999263f52f3c36');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22336','{30509}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','18f41db36192463eabaa3797034e578a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22337','{30510}<>{30511} and length({30512})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','27fa16e646224f88ad3b35ce7a71a18a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22338','({32445}>0 and {32445}<10m) or ({32445}=0 and {32446}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','44d6c66a6a1641f8816031c0d5bf4040');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22339','{30514}=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','','7a7c0c7501ca484491394fe82c75b401');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22340','{30515}<0 and {30516}>0\r\nand (\r\n{30517}=6 or\r\n{30517}=7 or\r\n{30517}=11 or\r\n{30517}=62 or\r\n{30517}=69 or\r\n{30517}=117\r\n)\r\nand\r\n({30518}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30515}>0 and {30519}>0) or\r\n({30518}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','cb39728aac4940dda2b3a307d12be813');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22341','({30520}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30521} or\r\n{30522}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30521}) and\r\n{30521}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30520}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30521} and\r\n{30522}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30521}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','303873dbb6224b4abc2f678100a72eda');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22342','{30523}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30524}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30525}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30526}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','0e0544466c6845349078ca2a72d2cf6c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22343','{$IFCONTROL:"{#IFNAME}"}=1 and {30527}=2 and ({30528}<>{30529})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30527}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','efa56904fcf54fa5bbd0ba21381dc415');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22344','{30530}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','1','','0','','8688cff304604fd7b015e92ef9f98647');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22345','{30531}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','5b86c558f99d4ff5a8abca830df6e86e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22346','{30532}>{$ICMP_LOSS_WARN} and {30532}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','421d12d2c2a0405ba31c869c4d481b70');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22347','{30533}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','4d1df00b9476483fa77e6064708abf58');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22348','{30534}<>{30535} and length({30536})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','367bce2d38fe4ecbbe23c34bc7ec6226');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22349','({32447}>0 and {32447}<10m) or ({32447}=0 and {32448}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','63b45803131d4391abfa313a222339e5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22350','{30538}=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','','7b533ce3df8c4405a04f90dd1e850a32');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22351','{30539}<0 and {30540}>0\r\nand (\r\n{30541}=6 or\r\n{30541}=7 or\r\n{30541}=11 or\r\n{30541}=62 or\r\n{30541}=69 or\r\n{30541}=117\r\n)\r\nand\r\n({30542}<>2)','Interface {#IFDESCR}: Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30539}>0 and {30543}>0) or\r\n({30542}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','ebcdfd6d8c974c06810375d98e7d76c7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22352','({30544}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30545} or\r\n{30546}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30545}) and\r\n{30545}>0','Interface {#IFDESCR}: High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30544}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30545} and\r\n{30546}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30545}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFDESCR}: High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','ae472f99d7ab480c947293f09c4b9dbb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22353','{30547}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30548}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFDESCR}: High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30549}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30550}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFDESCR}: High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','ec28cbfaaf6245a194fe001555d05e5c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22354','{$IFCONTROL:"{#IFNAME}"}=1 and {30551}=2 and ({30552}<>{30553})','Interface {#IFDESCR}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30551}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','ce16733da6d24beb9cea97d61368e21b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22355','{30554}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','2a6711992f354095b056b628be78022c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22356','{30555}>{$ICMP_LOSS_WARN} and {30555}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','8e66ba0787b54af2897dd348e5453f10');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22357','{30556}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','4ae253aa403a42ad8cd4721e2ffdfbca');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22358','{30557}<>{30558} and length({30559})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','15523bce03a24cd6a4818ab655d1d2ad');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22359','({32449}>0 and {32449}<10m) or ({32449}=0 and {32450}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','2d9ed5a3b714461bbcdc4c530f955e5b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22360','{30561}=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','','7735f20ab7fd40b8b34cead6cb306b30');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22361','{30562}<0 and {30563}>0\r\nand (\r\n{30564}=6 or\r\n{30564}=7 or\r\n{30564}=11 or\r\n{30564}=62 or\r\n{30564}=69 or\r\n{30564}=117\r\n)\r\nand\r\n({30565}<>2)','Interface {#IFDESCR}: Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30562}>0 and {30566}>0) or\r\n({30565}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','9ccbb6859cd7422684e1946c1e321b3c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22362','({30567}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30568} or\r\n{30569}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30568}) and\r\n{30568}>0','Interface {#IFDESCR}: High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30567}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30568} and\r\n{30569}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30568}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFDESCR}: High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','80e37d44eddf49c89b39dacc8c88ac07');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22363','{30570}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30571}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFDESCR}: High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30572}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30573}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFDESCR}: High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','3d7c8f98d0c447038c630f4e2ad81c06');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22364','{$IFCONTROL:"{#IFNAME}"}=1 and {30574}=2 and ({30575}<>{30576})','Interface {#IFDESCR}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30574}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','c360a22671ea4dcda48fc49ec7847c2d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22365','{30577}=0','Zabbix agent is not available','','0','3','For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold.',NULL,'0','0','0','','0','','1','','0','Zabbix agent is not available (for {$AGENT.TIMEOUT})','f0b9ecafede8476b94fd8dcab74cea87');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22366','{30578}=0','Zabbix agent is not available','','0','3','For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold.',NULL,'0','0','0','','0','','1','','0','Zabbix agent is not available (for {$AGENT.TIMEOUT})','fd9d36aaedff45f59017b1e714a5db69');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22367','{30579}=0','Zabbix agent is not available','','0','3','For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold.',NULL,'0','0','0','','0','','1','','0','Zabbix agent is not available (for {$AGENT.TIMEOUT})','ce008290ad6341b98386adf9ea5c315b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22368','{30580}<{$KERNEL.MAXFILES.MIN}','Configured max number of open filedescriptors is too low','','0','1','',NULL,'0','0','0','','0','','0','','0','Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN})','b9bdcf42f54a409a9a9a616dbd0eaed2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22369','{30581}<{$KERNEL.MAXPROC.MIN}','Configured max number of processes is too low','','0','1','',NULL,'0','0','0','','0','','0','','0','Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN})','8cf253ca3eea4109a90443f9cb76fc5c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22370','{30582}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','b4e904559b694df0ad45bcce7930c3a6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22371','{30583}<>{30584} and length({30585})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','371a12f95a26438d8da659c84364631b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22372','{30586}=0','System time is out of sync','','0','2','The host system time is different from the Zabbix server time.',NULL,'0','0','0','','0','','1','','0','System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s)','fb77b6ac381c4b5289584bd91e7da7d5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22373','{30587}<>{30588} and length({30589})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','b1998f98c06b49dd8d71e1c6df409371');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22374','{30590}<10m','has been restarted','','0','2','The host uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','1dbab80d7b6847e5b5a676cffba0fd1d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22375','{30591}<>{30592}','/etc/passwd has been changed','','0','1','',NULL,'0','0','0','','0','','1','','0','','3a764881727b4e7eb01e137ccfc968a2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22376','{30593}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','cfd395b1cde74ef18a5e5f840bd5142a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22377','{30594}=0','Zabbix agent is not available','','0','3','For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold.',NULL,'0','0','0','','0','','1','','0','Zabbix agent is not available (for {$AGENT.TIMEOUT})','93594214371b4dc88b41663cad8537f0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22378','{30595}/{30596}*100>80','Getting closer to process limit','','0','2','',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit.','0','Getting closer to process limit (over 80% used)','ae5269e17d434927bfd6edc09a9a1f4d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22379','{30947}<{$SWAP.PFREE.MIN.WARN} and {30948}>0','High swap space usage','','0','2','This trigger is ignored, if there is no swap configured.',NULL,'0','0','0','','0','','0','Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','f49fc01c5ac945d59455563bdbcc6469');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22380','{30951}<{$MEMORY.AVAILABLE.MIN} and {30952}>0','Lack of available memory','','0','3','',NULL,'0','0','0','','0','','0','Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','686470cef97f48f6b017e9fc7a078afe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22381','{30601}/{30602}>{$LOAD_AVG_PER_CPU.MAX.WARN}\r\nand {30603}>0\r\nand {30604}>0','Load average is too high','','0','3','Per CPU load average is too high. Your system may be slow to respond.',NULL,'0','0','0','','0','','0','Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}','0','Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','695f0c352377409d95aca3fe76d1cae2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22396','{30985}<0 and {30986}>0\r\nand\r\n({30987}=6 or {30987}=1)\r\nand\r\n({30988}<>2)','Interface {#IFNAME}: Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30985}>0 and {30989}>0) or\r\n({30988}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','2ffdc1d5a318492bb497facd263843bd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22397','{30634}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30635}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}: High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30636}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30637}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}: High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','ad50aecf8e7746b2a85f24507f1d511d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22398','{$IFCONTROL:"{#IFNAME}"}=1 and {30638}=2 and ({30639}<>{30640})','Interface {#IFNAME}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30638}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','4d7f18ca132340b885c0692464dc429f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22399','{30641} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {30642} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}','{#DEVNAME}: Disk read/write request responses are too high','','0','2','This trigger might indicate disk {#DEVNAME} saturation.',NULL,'0','2','0','','0','','1','','0','{#DEVNAME}: Disk read/write request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} ms for 15m or write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} ms for 15m)','eb6230f786d04b658ce62c30a9309a34');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22400','{31425}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and\r\n(({31426}-{31427})<{$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"} or {31428}<1d)','{#FSNAME}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%)','9abccdfff8be4e14967ac917ca09afe1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22401','{31429}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and\r\n(({31430}-{31431})<{$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"} or {31432}<1d)','{#FSNAME}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%)','d6d348ea500c428da6ba718816c4b048');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22402','{30651}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}','{#FSNAME}: Running out of free inodes','','0','3','It may become impossible to write to disk if there are no index nodes left.\r\nAs symptoms, \'No space left on device\' or \'Disk is full\' errors may be seen even though free space is available.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%)','115b2d37807f476faf6d02ef406acabd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22403','{30652}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}','{#FSNAME}: Running out of free inodes','','0','2','It may become impossible to write to disk if there are no index nodes left.\r\nAs symptoms, \'No space left on device\' or \'Disk is full\' errors may be seen even though free space is available.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%)','ea012c7295344ffe8c66f7ea54d81042');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22412','{30676}=1','Zabbix agent is not available','','0','3','For active agents, nodata() with agent.ping is used with {$AGENT.NODATA_TIMEOUT} as time threshold.',NULL,'0','0','0','','0','','1','','0','Zabbix agent is not available (or nodata for {$AGENT.NODATA_TIMEOUT})','c1b9fdbe6a584d2cb25ff7077c667af1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22413','{30677}<{$KERNEL.MAXFILES.MIN}','Configured max number of open filedescriptors is too low','','0','1','',NULL,'0','0','0','','0','','0','','0','Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN})','a7716b62422243b991a2697752d7cb1f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22414','{30678}<{$KERNEL.MAXPROC.MIN}','Configured max number of processes is too low','','0','1','',NULL,'0','0','0','','0','','0','','0','Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN})','740ed348fb1d41dca7c410123b668a48');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22415','{30679}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','e299778a6fcc4805bd5806f3b2ffe1c2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22416','{30680}<>{30681} and length({30682})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','c2fc80044fa94f0d97c72bd1d749b731');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22417','{30683}=0','System time is out of sync','','0','2','The host system time is different from the Zabbix server time.',NULL,'0','0','0','','0','','1','','0','System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s)','10f29c3898cf41a0a2551349cd052413');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22418','{30684}<>{30685} and length({30686})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','e27cb7063ca841a2b78aa547ec0d001c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22419','{30687}<10m','has been restarted','','0','2','The host uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','64dbab85caf749f59f3da0c374746bc2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22420','{30688}<>{30689}','/etc/passwd has been changed','','0','1','',NULL,'0','0','0','','0','','1','','0','','c5a76894508c4f0e9dcc9f70e6f39f49');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22421','{30690}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','fb368aa704064a44b9a4ed8c129cf3e8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22422','{30691}/{30692}*100>80','Getting closer to process limit','','0','2','',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit.','0','Getting closer to process limit (over 80% used)','fa21b02aebe143b192a20cd9403a68d0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22423','{30959}<{$SWAP.PFREE.MIN.WARN} and {30960}>0','High swap space usage','','0','2','This trigger is ignored, if there is no swap configured.',NULL,'0','0','0','','0','','0','Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','722692e0703e4609852439a9b751826d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22424','{30963}<{$MEMORY.AVAILABLE.MIN} and {30964}>0','Lack of available memory','','0','3','',NULL,'0','0','0','','0','','0','Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','b3f51f3c63024d209fd01e17293127a6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22425','{30697}/{30698}>{$LOAD_AVG_PER_CPU.MAX.WARN}\r\nand {30699}>0\r\nand {30700}>0','Load average is too high','','0','3','Per CPU load average is too high. Your system may be slow to respond.',NULL,'0','0','0','','0','','0','Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}','0','Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','72825a0c706043429ed1ff6656763052');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22426','{31009}<0 and {31010}>0\r\nand\r\n({31011}=6 or {31011}=1)\r\nand\r\n({31012}<>2)','Interface {#IFNAME}: Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({31009}>0 and {31013}>0) or\r\n({31012}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','c0fd4630351f424aa6c8b7f2e85f0f9e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22427','{30705}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30706}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}: High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30707}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30708}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}: High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','58f4ba4b2795407896752da57462629d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22428','{$IFCONTROL:"{#IFNAME}"}=1 and {30709}=2 and ({30710}<>{30711})','Interface {#IFNAME}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30709}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','1b8e42925e1b48969f35d91800fe5229');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22429','{30712} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {30713} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}','{#DEVNAME}: Disk read/write request responses are too high','','0','2','This trigger might indicate disk {#DEVNAME} saturation.',NULL,'0','2','0','','0','','1','','0','{#DEVNAME}: Disk read/write request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} ms for 15m or write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} ms for 15m)','fd5732c3cf5249f9a05e3b6cedc2d2fd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22430','{31441}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and\r\n(({31442}-{31443})<{$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"} or {31444}<1d)','{#FSNAME}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%)','cf4079132a9d4124aa5e29d6839ae35b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22431','{31445}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and\r\n(({31446}-{31447})<{$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"} or {31448}<1d)','{#FSNAME}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%)','b56b8cad3bb34fab8132e07a32c432d9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22432','{30722}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}','{#FSNAME}: Running out of free inodes','','0','3','It may become impossible to write to disk if there are no index nodes left.\r\nAs symptoms, \'No space left on device\' or \'Disk is full\' errors may be seen even though free space is available.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%)','98e196ffb6f0422baf007fcff5f45b60');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22433','{30723}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}','{#FSNAME}: Running out of free inodes','','0','2','It may become impossible to write to disk if there are no index nodes left.\r\nAs symptoms, \'No space left on device\' or \'Disk is full\' errors may be seen even though free space is available.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%)','a17e14a65c53447a9ce607799a62e7dd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22434','{30724}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','28927c3715714a77a259d48943ddb8fe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22435','{30725}>{$ICMP_LOSS_WARN} and {30725}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','f6d63c03e6f34888897464102fa369ec');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22436','{30726}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','1c1b86790d6442e59f50d94f9844c337');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22437','{30727}<>{30728} and length({30729})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','eeb0355174d74892a4e3a078e6ac7952');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22438','({32479}>0 and {32479}<10m) or ({32479}=0 and {32480}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','e129fb90ec084a83806aec27141cd6eb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22439','{30731}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','063b87d246b04e74a439114a05f00fe5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22440','{30732}=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','','63d99e49b3584fb2bf61a7d56725fb3c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22441','{30973}<{$SWAP.PFREE.MIN.WARN} and {30974}>0','High swap space usage','','0','2','This trigger is ignored, if there is no swap configured.',NULL,'0','0','0','','0','','0','Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','8d66563ff7744cd6847325d473eaacfe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22442','{30977}<{$MEMORY.AVAILABLE.MIN} and {30978}>0','Lack of available memory','','0','3','',NULL,'0','0','0','','0','','0','Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','b0a04a6a01854d0eb6f9f225c1108261');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22443','{30737}/{30738}>{$LOAD_AVG_PER_CPU.MAX.WARN}\r\nand {30739}>0\r\nand {30740}>0','Load average is too high','','0','3','Per CPU load average is too high. Your system may be slow to respond.',NULL,'0','0','0','','0','','0','Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}','0','Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','33df3354161047f0b47ad7736b70a302');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22444','{30741}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','34b29a2e43b347d0ada6b80a472a659e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22445','{30742}<0 and {30743}>0\r\nand (\r\n{30744}=6 or\r\n{30744}=7 or\r\n{30744}=11 or\r\n{30744}=62 or\r\n{30744}=69 or\r\n{30744}=117\r\n)\r\nand\r\n({30745}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30742}>0 and {30746}>0) or\r\n({30745}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','02387536c92f449384c23a0744e71ee3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22446','({30747}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30748} or\r\n{30749}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30748}) and\r\n{30748}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30747}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30748} and\r\n{30749}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30748}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','efe5516d1c164a8cb243c4806b9684a2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22447','{30750}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30751}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30752}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30753}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','dbbd6222837345b891dd613f6d40f98f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22448','{$IFCONTROL:"{#IFNAME}"}=1 and {30754}=2 and ({30755}<>{30756})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30754}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','038c4ebc6bdf48f69b60fca856318638');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22449','{30757}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','1','','0','','1e1f12c0cf744fd3aaac6570325bd661');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22450','{31457}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and\r\n(({31458}-{31459})<{$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"} or {31460}<1d)','{#FSNAME}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%)','4e84d5b0e3bb4729a6eabd5882d2d603');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22451','{31461}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and\r\n(({31462}-{31463})<{$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"} or {31464}<1d)','{#FSNAME}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%)','210ae86feef14fa0a82c97331e522937');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22452','{30766}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}','{#FSNAME}: Running out of free inodes','','0','3','It may become impossible to write to disk if there are no index nodes left.\r\nAs symptoms, \'No space left on device\' or \'Disk is full\' errors may be seen even though free space is available.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%)','c2a464a9d8f24b1f96251feabeec8b6a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22453','{30767}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}','{#FSNAME}: Running out of free inodes','','0','2','It may become impossible to write to disk if there are no index nodes left.\r\nAs symptoms, \'No space left on device\' or \'Disk is full\' errors may be seen even though free space is available.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%)','396da67ae447497781d9f37215490b71');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22454','{30768}=0','Zabbix agent is not available','','0','3','For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold.',NULL,'0','0','0','','0','','1','','0','Zabbix agent is not available (for {$AGENT.TIMEOUT})','0766e9c2a02f46e7adbb86dbef67556f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22455','{30769}=0','Zabbix agent is not available','','0','3','For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold.',NULL,'0','0','0','','0','','1','','0','Zabbix agent is not available (for {$AGENT.TIMEOUT})','d046f431e11d4bd7be42e66e14a21663');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22456','{30770}=0','Zabbix agent is not available','','0','3','For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold.',NULL,'0','0','0','','0','','1','','0','Zabbix agent is not available (for {$AGENT.TIMEOUT})','4ca39fa4a86c45e19e03eff89edd239b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22457','{30771}<{$MEM.PAGE_TABLE_CRIT.MIN}','Number of free system page table entries is too low','','0','2','The Memory Free System Page Table Entries is less than {$MEM.PAGE_TABLE_CRIT.MIN} for 5 minutes. If the number is less than 5,000, there may well be a memory leak.',NULL,'0','0','0','','0','','0','','0','Number of free system page table entries is too low (less {$MEM.PAGE_TABLE_CRIT.MIN} for 5m)','e3118e2e6109460f80cc2d56795ed42f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22458','{30772}>{$MEM.PAGE_SEC.CRIT.MAX}','The Memory Pages/sec is too high','','0','2','The Memory Pages/sec in the last 5 minutes exceeds {$MEM.PAGE_SEC.CRIT.MAX}. If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak.',NULL,'0','0','0','','0','','0','','0','The Memory Pages/sec is too high (over {$MEM.PAGE_SEC.CRIT.MAX} for 5m)','ab4c9a66d16f42e6a32f6144f4d2a3ca');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22459','{30773}>{$CPU.INTERRUPT.CRIT.MAX}','CPU interrupt time is too high','','0','2','"The CPU Interrupt Time in the last 5 minutes exceeds {$CPU.INTERRUPT.CRIT.MAX}%."\r\nThe Processor Information\\% Interrupt Time is the time the processor spends receiving and servicing\r\nhardware interrupts during sample intervals. This value is an indirect indicator of the activity of\r\ndevices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication\r\nlines, network interface cards and other peripheral devices. This is an easy way to identify a potential\r\nhardware failure. This should never be higher than 20%.',NULL,'0','0','0','','0','','0','','0','CPU interrupt time is too high (over {$CPU.INTERRUPT.CRIT.MAX}% for 5m)','f67bedcb282349b2aac052baf4963480');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22460','{30774}>{$CPU.PRIV.CRIT.MAX}','CPU privileged time is too high','','0','2','The CPU privileged time in the last 5 minutes exceeds {$CPU.PRIV.CRIT.MAX}%.',NULL,'0','0','0','','0','','0','','0','CPU privileged time is too high (over {$CPU.PRIV.CRIT.MAX}% for 5m)','4d099256b3ba42f1b90143e2014900dd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22461','{30775}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','806aa232f56640ab98aacc79491fc4d7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22462','{30776}<>{30777} and length({30778})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','6b50d36a4e29468a9546e880f3004399');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22463','{30779}=0','System time is out of sync','','0','2','The host system time is different from the Zabbix server time.',NULL,'0','0','0','','0','','1','','0','System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s)','37ca2366c8474cc8a49a605e93377601');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22464','{30780}<10m','Host has been restarted','','0','2','The device uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Host has been restarted (uptime < 10m)','d27b9eab4034439f91dff41fe6f043ab');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22465','{30781}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','b442993bb2a6404a8ebcb7be39d16ce6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22466','{30782}=0','Zabbix agent is not available','','0','3','For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold.',NULL,'0','0','0','','0','','1','','0','Zabbix agent is not available (for {$AGENT.TIMEOUT})','05beb4500cae480892fad0739f99807d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22467','{30783} - {30784} * 2 > {$CPU.QUEUE.CRIT.MAX}','CPU queue length is too high','','0','2','The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. According to actual observations, PQL should not exceed the number of cores * 2. To fine-tune the conditions, use the macro {$CPU.QUEUE.CRIT.MAX }.',NULL,'0','0','0','','0','','0','','0','CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m)','8b1baeb26e154f99aefeaba3ea4fa63b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22468','{30785}<{$SWAP.PFREE.MIN.WARN} and {30786}>0','High swap space usage','','0','2','This trigger is ignored, if there is no swap configured',NULL,'0','0','0','','0','','0','Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','7c23e03060ce42b094aac2f8aea1a9ad');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22469','{30787}<0 and\r\n{30788}>0 and\r\n{30789}=2','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','0','','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','b2191521a7a54985a19740e3ee2674f2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22470','({30790}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30791} or\r\n{30792}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30791}) and\r\n{30791}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30790}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30791} and\r\n{30792}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30791}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','c93048183c3942808c60d6dd61963bc0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22471','{30793}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30794}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30795}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30796}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','a4fa6e161bb64b98b25b1a2a501a83f4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22472','{$IFCONTROL:"{#IFNAME}"}=1 and {30797}<>2 and ({30798}<>{30799})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:\\"{#IFNAME}\\"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important.\r\n No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status is different from Connected(2).\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30797}=2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','a9b1c61ac4a6481aab93d40c6fb93462');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22473','{30800}>{$VFS.DEV.UTIL.MAX.WARN}','{#DEVNAME}: Disk is overloaded','','0','2','The disk appears to be under heavy load',NULL,'0','2','0','','0','','1','','0','{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m)','4777fa000fa9460baab1fd7bc7e40604');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22474','{30801} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"}','{#DEVNAME}: Disk read request responses are too high','','0','2','This trigger might indicate disk {#DEVNAME} saturation.',NULL,'0','2','0','','0','','1','','0','{#DEVNAME}: Disk read request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"}s for 15m','85a8c002b3d84121ad2e73c8aced0987');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22475','{30802} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}','{#DEVNAME}: Disk write request responses are too high','','0','2','This trigger might indicate disk {#DEVNAME} saturation.',NULL,'0','2','0','','0','','1','','0','{#DEVNAME}: Disk write request responses are too high (write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}s for 15m)','db6809fd85e241948fb5ef76cb7cc17b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22476','{30803}<>0','"{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running','','0','3','The service has a state other than "Running" for the last three times.',NULL,'0','2','0','','0','','0','','0','"{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME})','4708592603db4577b26cb6daade41754');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22477','{31465}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and\r\n(({31466}-{31467})<{$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"} or {31468}<1d)','{#FSLABEL}({#FSNAME}): Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSLABEL}({#FSNAME}): Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%)','d3e99134a1d04894918f2c92ff38cb92');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22478','{31469}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and\r\n(({31470}-{31471})<{$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"} or {31472}<1d)','{#FSLABEL}({#FSNAME}): Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSLABEL}({#FSNAME}): Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%)','97115bbe4f6b4a8cb2873b8fa01f95d3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22479','{30812}=1','Zabbix agent is not available','','0','3','For active agents, nodata() with agent.ping is used with {$AGENT.NODATA_TIMEOUT} as time threshold.',NULL,'0','0','0','','0','','1','','0','Zabbix agent is not available (or nodata for {$AGENT.NODATA_TIMEOUT})','e77c3b1849b64d45a3078794057a2582');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22480','{30813}<{$MEM.PAGE_TABLE_CRIT.MIN}','Number of free system page table entries is too low','','0','2','The Memory Free System Page Table Entries is less than {$MEM.PAGE_TABLE_CRIT.MIN} for 5 minutes. If the number is less than 5,000, there may well be a memory leak.',NULL,'0','0','0','','0','','0','','0','Number of free system page table entries is too low (less {$MEM.PAGE_TABLE_CRIT.MIN} for 5m)','37d6b965dd184b66b37018d4375d3e56');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22481','{30814}>{$MEM.PAGE_SEC.CRIT.MAX}','The Memory Pages/sec is too high','','0','2','The Memory Pages/sec in the last 5 minutes exceeds {$MEM.PAGE_SEC.CRIT.MAX}. If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak.',NULL,'0','0','0','','0','','0','','0','The Memory Pages/sec is too high (over {$MEM.PAGE_SEC.CRIT.MAX} for 5m)','05da8b30835e440fb1228fb9a0bc24a4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22482','{30815}>{$CPU.INTERRUPT.CRIT.MAX}','CPU interrupt time is too high','','0','2','"The CPU Interrupt Time in the last 5 minutes exceeds {$CPU.INTERRUPT.CRIT.MAX}%."\r\nThe Processor Information\\% Interrupt Time is the time the processor spends receiving and servicing\r\nhardware interrupts during sample intervals. This value is an indirect indicator of the activity of\r\ndevices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication\r\nlines, network interface cards and other peripheral devices. This is an easy way to identify a potential\r\nhardware failure. This should never be higher than 20%.',NULL,'0','0','0','','0','','0','','0','CPU interrupt time is too high (over {$CPU.INTERRUPT.CRIT.MAX}% for 5m)','2eb661f6a42f40ce8cc25cef542763a9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22483','{30816}>{$CPU.PRIV.CRIT.MAX}','CPU privileged time is too high','','0','2','The CPU privileged time in the last 5 minutes exceeds {$CPU.PRIV.CRIT.MAX}%.',NULL,'0','0','0','','0','','0','','0','CPU privileged time is too high (over {$CPU.PRIV.CRIT.MAX}% for 5m)','cee69c70da6a415186b922305d0cabdc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22484','{30817}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','ab3cbf18088a4d7a82f6c678ce49ffce');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22485','{30818}<>{30819} and length({30820})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','3aea75603e584d2f9dc96e7f3cc2b7fa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22486','{30821}=0','System time is out of syn','','0','2','The host system time is different from the Zabbix server time.',NULL,'0','0','0','','0','','1','','0','System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s)','c5c52f75d4214a68b095e8bf55a6a934');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22487','{30822}<10m','Host has been restarted','','0','2','The device uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Host has been restarted (uptime < 10m)','4114e248a3b347f4a2fefc7816f2e940');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22488','{30823}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','610a0893be834c11b35a0472dcabab7c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22489','{30824} - {30825} * 2 > {$CPU.QUEUE.CRIT.MAX}','CPU queue length is too high','','0','2','The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. According to actual observations, PQL should not exceed the number of cores * 2. To fine-tune the conditions, use the macro {$CPU.QUEUE.CRIT.MAX }.',NULL,'0','0','0','','0','','0','','0','CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m)','384393bb344e497382ea10e7fce7fcb3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22490','{30826}<{$SWAP.PFREE.MIN.WARN} and {30827}>0','High swap space usage','','0','2','This trigger is ignored, if there is no swap configured',NULL,'0','0','0','','0','','0','Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','ac93631f79584e2d9909f4bb2f12c866');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22491','{30828}<0 and\r\n{30829}>0 and\r\n{30830}=2','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','0','','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','27a60f88cbd0457291153105ace75e4d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22492','({30831}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30832} or\r\n{30833}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30832}) and\r\n{30832}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30831}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30832} and\r\n{30833}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30832}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','a9ead42a45f5496a84a6a2bc619cece4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22493','{30834}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30835}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30836}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30837}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','1945fd9bc15c471fb050d0a5430245a6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22494','{$IFCONTROL:"{#IFNAME}"}=1 and {30838}<>2 and ({30839}<>{30840})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:\\"{#IFNAME}\\"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important.\r\n No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status is different from Connected(2).\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30838}=2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','f9d1ac2feb0e43249cc849166ca9014c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22495','{30841}>{$VFS.DEV.UTIL.MAX.WARN}','{#DEVNAME}: Disk is overloaded','','0','2','The disk appears to be under heavy load',NULL,'0','2','0','','0','','1','','0','{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m)','00031ae791d6424dbd29c91be91a249f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22496','{30842} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"}','{#DEVNAME}: Disk read request responses are too high','','0','2','This trigger might indicate disk {#DEVNAME} saturation.',NULL,'0','2','0','','0','','1','','0','{#DEVNAME}: Disk read request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"}s for 15m','f6c28fa8eef542a786b29d745dd2e56f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22497','{30843} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}','{#DEVNAME}: Disk write request responses are too high','','0','2','This trigger might indicate disk {#DEVNAME} saturation.',NULL,'0','2','0','','0','','1','','0','{#DEVNAME}: Disk write request responses are too high (write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}s for 15m)','9a0c7aa60e0e40d8abec9be6d6d49190');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22498','{30844}<>0','"{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running','','0','3','The service has a state other than "Running" for the last three times.',NULL,'0','2','0','','0','','0','','0','"{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME})','c6f2c1c32cdf401091e4439624a24fab');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22499','{31473}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and\r\n(({31474}-{31475})<{$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"} or {31476}<1d)','{#FSLABEL}({#FSNAME}): Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.\r\nSecond condition should be one of the following:\r\n- The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"}.\r\n- The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSLABEL}({#FSNAME}): Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%)','5bed682545044584852888d96454df86');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22500','{31477}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and\r\n(({31478}-{31479})<{$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"} or {31480}<1d)','{#FSLABEL}({#FSNAME}): Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.\r\nSecond condition should be one of the following:\r\n- The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"}.\r\n- The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSLABEL}({#FSNAME}): Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%)','1e5e9718c5a14099b9421ff7956b2f33');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22501','{30853}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','08e22bd77606469d9e03183ec70dc89d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22502','{30854}>{$ICMP_LOSS_WARN} and {30854}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','fa81e50132464ec486ea72929d18d778');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22503','{30855}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','fba819f734de4b469fb7851501e55b21');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22504','{30856}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','ad2261f1ab77449cb1279725e8cf02f9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22505','{30857}<>{30858} and length({30859})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','e257b5cf5d9949028c690722e4153612');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22506','({32481}>0 and {32481}<10m) or ({32481}=0 and {32482}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','b7a0b390f8844d2aa05ee849d12495f7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22507','{30861}=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','','a20254c09f7a4d4d9793da7b075121f3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22508','{30862}<0 and {30863}>0\r\nand (\r\n{30864}=6 or\r\n{30864}=7 or\r\n{30864}=11 or\r\n{30864}=62 or\r\n{30864}=69 or\r\n{30864}=117\r\n)\r\nand\r\n({30865}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({30862}>0 and {30866}>0) or\r\n({30865}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','fe3e2d20c6eb475ba9f0e8f0c5766720');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22509','({30867}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30868} or\r\n{30869}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30868}) and\r\n{30868}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30867}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30868} and\r\n{30869}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30868}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','5ab179badc3747438cf988c437b7b735');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22510','{30870}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30871}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold',NULL,'0','2','1','{30872}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30873}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','8acdf247d86b4b2785c92266291682ac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22511','{$IFCONTROL:"{#IFNAME}"}=1 and {30874}=2 and ({30875}<>{30876})','Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.',NULL,'0','2','1','{30874}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','101b888ea92348689bbc499bbe15b212');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22512','{31481}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and\r\n(({31482}-{31483})<{$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"} or {31484}<1d)','{#FSNAME}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%)','597ea2f6059746c0b2e5b7312f764224');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22513','{31485}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and\r\n(({31486}-{31487})<{$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"} or {31488}<1d)','{#FSNAME}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%)','028b24edaf9c4640a2316845f50a4a7e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22514','{30885}>{$MEMORY.UTIL.MAX}','{#MEMNAME}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','{#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','ab4b4ad08664454096f5e2cf3b7da1e9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22515','{30886}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','ef6b5dc40f9a49599aae97c2cf68d3cb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22516','{30887}>{$ICMP_LOSS_WARN} and {30887}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','c9765f7f271d46c99ad7dd45efa79849');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22517','{30888}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','b8815a9e952047e09d1e657cea5d538e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22518','{30889}<>{30890} and length({30891})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','72a31faa805b40e795a57649c724da1e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22519','({32505}>0 and {32505}<10m) or ({32505}=0 and {32506}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','0e3713bdf52e40d692cf256ac2a01988');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22520','{30893}=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','','b0c4103eac9447ee9f7f31627baf4eea');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22521','{30894}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','826eb817329249f59b7989c92ca62d99');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22522','{30895}>{$ICMP_LOSS_WARN} and {30895}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','4fb4b0022ca3433c8da1402f1d996760');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22523','{30896}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','bb13f4d369294c0d83f8e6d888cbb062');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22524','{30897}<>{30898} and length({30899})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','5266fcf7c9db457885c219385cfd5025');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22525','({32507}>0 and {32507}<10m) or ({32507}=0 and {32508}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','d33ca3f0d2f14feca01dce7bdf476776');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22526','{30901}=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','','e778b1ae80174f7aa82085b4882e1160');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22527','{30902}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','301541972752471e86046ce494a2febb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22528','{30903}>{$ICMP_LOSS_WARN} and {30903}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','e051db53cf32406bb0d5ff9cc8d5ce7b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22529','{30904}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','a11942dac3504b64977c2de3e575d2eb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22530','{30905}<>{30906} and length({30907})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','3544e4ac11b44d14a6161523081c470e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22531','({32511}>0 and {32511}<10m) or ({32511}=0 and {32512}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','a933ba0e5c7f4e908afaba4381f65482');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22532','{30909}=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','','3c487a6b20c746eca9a7efc6058a60d9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22533','{30910}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','a6e3c67a99104c6f8672e3826cba009f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22534','{30911}>{$ICMP_LOSS_WARN} and {30911}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','145ea57d03d3460cb86272493e99356a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22535','{30912}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','cd49c04001c74051b585f519503861d0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22536','{30913}<>{30914} and length({30915})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','ce1b064b2a07450d9b51b6b12bd752a9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22537','({32521}>0 and {32521}<10m) or ({32521}=0 and {32522}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','c0efbe61effc494a970e0e02b9ce8f55');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22538','{30917}=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','','22ae441fffdd48919be0041e1507a479');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22539','{30918}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','755a4c5e809d418cbb1162102b0d1c26');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22540','{30919}>{$ICMP_LOSS_WARN} and {30919}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','0492380bc6374f24b92b4661b27d8f2c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22541','{30920}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','a869db9f341c479c80dca50bac0ff309');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22542','{30921}<>{30922} and length({30923})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','df3c9e64b0f844ddac8f40f6df956595');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22543','({32531}>0 and {32531}<10m) or ({32531}=0 and {32532}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','261749b9936c4a26b48d660f01435fb7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22544','{30925}=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','','8870beab300f41ea8d54619fd2bf0371');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22545','{30926}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','937225d93eea44b3a8328eee03cf66f0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22546','{30927}>{$ICMP_LOSS_WARN} and {30927}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','ec37a141b33c46308b8d810069ce9142');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22547','{30928}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','0541700de60549da8439f9b75cf83e7f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22548','{30929}<>{30930} and length({30931})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','188852025e644d5ab583f9d7a9dea06c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22549','({32533}>0 and {32533}<10m) or ({32533}=0 and {32534}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','7dd529ec3f1a4a59846a3a76536a7fa0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22550','{30933}=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','','fbec2f12ac244723bb31dec5efcc6f85');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22551','{30934}=0','Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','680c72ab6bb441779553b198081e3bf4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22552','{30935}>{$ICMP_LOSS_WARN} and {30935}<100','High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','e2e4bfca2d0c4f8ebd64bef322d2a368');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22553','{30936}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','b6fb489c6a624b2994c5e50ba75539b2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22554','{30937}<>{30938} and length({30939})>0','System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','07b7a49bffea4c03a022eed632754f47');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22555','({32535}>0 and {32535}<10m) or ({32535}=0 and {32536}<10m)','Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','37aab043ea474548ab1e54e504720bed');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22556','{30941}=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','','caeb9732846b4ae586ee103ac0c4a65b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22557','{30943}>{$TIKV.PENDING_COMMANDS.MAX.WARN}','TiKV: Too many pending commands','','0','3','',NULL,'0','0','0','','0','','0','','0','TiKV: Too many pending commands (over {$TIKV.PENDING_COMMANDS.MAX.WARN} for 5m)','0f21c02b8e1c45d9bbe0c3313cea1a23');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22558','({31000}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{31001} or\r\n{31002}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{31001}) and\r\n{31001}>0','Interface {#IFNAME}: High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{31000}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{31001} and\r\n{31002}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{31001}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}: High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','f64186d30b4e4c4281fce84349cbd646');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22559','({31003}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{31004} or\r\n{31005}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{31004}) and\r\n{31004}>0','Interface {#IFNAME}: High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{31003}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{31004} and\r\n{31005}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{31004}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}: High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','678d795a043a4f5a84fc9690d0d29783');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22561','({31019}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{31020} or\r\n{31021}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{31020}) and\r\n{31020}>0','Interface {#IFNAME}: High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{31019}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{31020} and\r\n{31021}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{31020}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}: High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','5370cb085c454077a2dd6c39890f706a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22562','({31022}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{31023} or\r\n{31024}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{31023}) and\r\n{31023}>0','Interface {#IFNAME}: High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{31022}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{31023} and\r\n{31024}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{31023}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}: High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','57ff0d15e1634b88920cb6ddccd804c7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22563','{31027}="Red"','VMware: The {$VMWARE.HV.UUID} health is Red','','0','4','One or more components in the appliance might be in an unusable status and the appliance might become unresponsive soon. Security patches might be available.',NULL,'0','2','0','','0','','0','','0','','9f2a65161946436986aacf6c9a637673');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22564','{31028}="Yellow"','VMware: The {$VMWARE.HV.UUID} health is Yellow','','0','3','One or more components in the appliance might become overloaded soon.',NULL,'0','2','0','','0','','0','','0','','dc4f84eb8d2143bb80999fbc58f38928');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22583','{31094}>({31095}*{$JMX.MP.USAGE.MAX:"{#JMXNAME}"}/100) and {31095}>0','Memory pool: {#JMXNAME} memory usage is high','','0','2','',NULL,'0','2','0','','0','','0','','0','Memory pool: {#JMXNAME} memory usage more than {$JMX.MP.USAGE.MAX:"{#JMXNAME}"}% for {$JMX.MP.USAGE.TIME:"{#JMXNAME}"}','60a9825fc01f4cc9bd79d306bb19e8e0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22584','{31099} > 0 and {31099} < {$KUBE.API.CERT.EXPIRATION}*24*60*60','Kubernetes API: Kubernetes client certificate is expiring','','0','2','A client certificate used to authenticate to the apiserver is expiring in {$KUBE.API.CERT.EXPIRATION} days.',NULL,'0','2','0','','0','','0','','0','Kubernetes API: Kubernetes client certificate expires in {$KUBE.API.CERT.EXPIRATION} days','132d58724bd141afa3f28101326fe922');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22585','{31100} > 0 and {31100} < 24*60*60','Kubernetes API: Kubernetes client certificate expires soon','','0','2','A client certificate used to authenticate to the apiserver is expiring in less than 24.0 hours.',NULL,'0','2','0','','0','','0','','0','','1371958c0339430b8a333851766c01c0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22586','length({31109})>0','Openweathermap: There are errors in requests to OpenWeatherMap API','','0','3','Zabbix has received errors in requests to OpenWeatherMap API.',NULL,'0','0','0','','0','','1','{ITEM.LASTVALUE1}','0','','8c2c6f81e1e74f97a28538e714eee474');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22587','{31110}>{$TEMP.CRIT.HIGH}','[{#LOCATION}, {#COUNTRY}]: Temperature is too high','','0','3','Temperature value is too high.',NULL,'0','2','0','','0','','1','Current temp: {ITEM.LASTVALUE1}','0','[{#LOCATION}, {#COUNTRY}]: Temperature is too high (over {$TEMP.CRIT.HIGH} for 30m)','3b7e55f13c6a4ba2930709d5c51c8a09');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22588','{31111}<{$TEMP.CRIT.LOW}','[{#LOCATION}, {#COUNTRY}]: Temperature is too low','','0','3','Temperature value is too low.',NULL,'0','2','0','','0','','1','Current temp: {ITEM.LASTVALUE1}','0','[{#LOCATION}, {#COUNTRY}]: Temperature is too low (below {$TEMP.CRIT.LOW} for 30m)','7c98d2784a2e42faa76e67348a0df7ff');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22589','{31112}>{$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"}','DB {#DBNAME}: Too many slow queries','','0','2','',NULL,'0','2','0','','0','','0','','0','DB {#DBNAME}: Too many slow queries (over {$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"} in 5m)','2bb34a2a7dee451cb5419a146d883601');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22590','{31123} <> 200','Proxmox: API service not available','','0','4','The API service is not available. Check your network and authorization settings.',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','7ef8290fd6e242339d0e56d5e8eedb1a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22591','{31124} <> 1','Proxmox: Cluster [{#RESOURCE.NAME}] not quorum','','0','4','Proxmox VE use a quorum-based technique to provide a consistent state among all cluster nodes.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE}','0','','142e02d47b8a4ac9a9ad28b68b097ebd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22592','{31125} / {31126} * 100 >{$PVE.LXC.MEMORY.PUSE.MAX.WARN:"{#LXC.ID}"}','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})] high memory usage','','0','2','Memory usage.',NULL,'0','2','0','','0','','0','Current use: {ITEM.LASTVALUE1} of {ITEM.LASTVALUE2}','0','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})] high memory usage (over {$PVE.LXC.MEMORY.PUSE.MAX.WARN:"{#LXC.ID}"}% use)','f59e43f9de01419897aec1b9d4539b48');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22593','{31127} > {$PVE.LXC.CPU.PUSE.MAX.WARN:"{#LXC.ID}"}','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})] high CPU usage','','0','2','CPU usage.',NULL,'0','2','0','','0','','0','Current use: {ITEM.LASTVALUE1}','0','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})] high CPU usage (over {$PVE.LXC.CPU.PUSE.MAX.WARN:"{#LXC.ID}"}% use)','c0436342a19d4d6482fac70d2f04f530');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22594','{31128}<10m','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME}]: has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME}]: has been restarted (uptime < 10m)','0e55935a79b94bc096b6213d500f4f59');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22595','{31129}<>"running"','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Not running','','0','3','LXC state is not "running".',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','71623950edf44bcb9453b2e8e63cb97b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22596','{31130} / {31131} * 100 >{$PVE.MEMORY.PUSE.MAX.WARN:"{#NODE.NAME}"}','Proxmox: Node [{#NODE.NAME}] high memory usage','','0','2','Memory usage.',NULL,'0','2','0','','0','','0','Current use: {ITEM.LASTVALUE1} of {ITEM.LASTVALUE2}','0','Proxmox: Node [{#NODE.NAME}] high memory usage (over {$PVE.MEMORY.PUSE.MAX.WARN:"{#NODE.NAME}"}% use)','a0445b4e1ffd451595ecea0468b4a6a6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22597','{31132} / {31133} * 100 >{$PVE.ROOT.PUSE.MAX.WARN:"{#NODE.NAME}"}','Proxmox: Node [{#NODE.NAME}] high root filesystem space usage','','0','2','Root filesystem space usage.',NULL,'0','2','0','','0','','0','Current use: {ITEM.LASTVALUE1} of {ITEM.LASTVALUE2}','0','Proxmox: Node [{#NODE.NAME}] high root filesystem space usage (over {$PVE.ROOT.PUSE.MAX.WARN:"{#NODE.NAME}"}% use)','3f88526e10a14319983fe14621ef10f9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22598','{31134} / {31135} * 100 > {$PVE.SWAP.PUSE.MAX.WARN:"{#NODE.NAME}"} and {31135} > 0','Proxmox: Node [{#NODE.NAME}] high root filesystem space usage','','0','2','This trigger is ignored, if there is no swap configured.',NULL,'0','2','0','','0','','0','Current use: {ITEM.LASTVALUE1} of {ITEM.LASTVALUE2}','0','Proxmox: Node [{#NODE.NAME}] high root filesystem space usage (over {$PVE.SWAP.PUSE.MAX.WARN:"{#NODE.NAME}"}% use)','f38ccc2e0e40430e801bf98b488e12e4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22599','{31136} > {$PVE.CPU.PUSE.MAX.WARN:"{#NODE.NAME}"}','Proxmox: Node [{#NODE.NAME}] high CPU usage','','0','2','CPU usage.',NULL,'0','2','0','','0','','0','Current use: {ITEM.LASTVALUE1}','0','Proxmox: Node [{#NODE.NAME}] high CPU usage (over {$PVE.CPU.PUSE.MAX.WARN:"{#NODE.NAME}"}% use)','84041dcb7c84426dad538ab32375fdb1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22600','{31137}<>{31138} and length({31139})>0','Proxmox: Node [{#NODE.NAME}]: Kernel version has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','4020236474e840acb1bc480eb8c52a1f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22601','{31140} <> 1','Proxmox: Node [{#NODE.NAME}] offline','','0','4','Node offline.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE}','0','','41b7efb8822948b08de8adace2e124a9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22602','{31141}<>{31142} and length({31143})>0','Proxmox: Node [{#NODE.NAME}]: PVE manager has changed','','0','1','Firmware version has changed. Ack to close',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','5b92af55dbd84181bcab0f39e6effbe0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22603','{31144}<10m','Proxmox: Node [{#NODE.NAME}]: has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','Proxmox: Node [{#NODE.NAME}]: has been restarted (uptime < 10m)','529b69b98a86409d914d3464569b7901');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22604','{31145} / {31146} * 100 >{$PVE.VM.MEMORY.PUSE.MAX.WARN:"{#QEMU.ID}"}','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})] high memory usage','','0','2','Memory usage.',NULL,'0','2','0','','0','','0','Current use: {ITEM.LASTVALUE1} of {ITEM.LASTVALUE2}','0','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})] high memory usage (over {$PVE.VM.MEMORY.PUSE.MAX.WARN:"{#QEMU.ID}"}% use)','5305bf2b71aa4b74917379c6e1b3c065');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22605','{31147} > {$PVE.VM.CPU.PUSE.MAX.WARN:"{#QEMU.ID}"}','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})] high CPU usage','','0','2','CPU usage.',NULL,'0','2','0','','0','','0','Current use: {ITEM.LASTVALUE1}','0','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})] high CPU usage (over {$PVE.VM.CPU.PUSE.MAX.WARN:"{#QEMU.ID}"}% use)','84ed68d7cf2b48a48fc44e9c7a0d9b92');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22606','{31148}<10m','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME}]: has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME}]: has been restarted (uptime < 10m)','d4ba1faeb67940a192c1b50460793813');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22607','{31149}<>"running"','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Not running','','0','3','VM state is not "running".',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8f57d13f278b459299c565846b4091f5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22608','{31150} / {31151} * 100 >{$PVE.STORAGE.PUSE.MAX.WARN:"{#NODE.NAME}/{#STORAGE.NAME}"}','Proxmox: Storage [{#NODE.NAME}/{#STORAGE.NAME}] high filesystem space usage','','0','2','Root filesystem space usage.',NULL,'0','2','0','','0','','0','Current use: {ITEM.LASTVALUE1} of {ITEM.LASTVALUE2}','0','Proxmox: Storage [{#NODE.NAME}/{#STORAGE.NAME}] high filesystem space usage (over {$PVE.STORAGE.PUSE.MAX.WARN:"{#NODE.NAME}/{#STORAGE.NAME}"}% use)','404d9a8a6fa54d8c880006c9ec32f55a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22609','{31152}=0','TrueNAS: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','91468c2218da45b3b1de62575471094e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22610','{31153}>{$ICMP_LOSS_WARN} and {31153}<100','TrueNAS: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','e6a39a1bc5d54f49aacc811f6942ef2b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22611','{31154}>{$ICMP_RESPONSE_TIME_WARN}','TrueNAS: High ICMP ping response time','','0','2','Average ICMP response time is too big.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','4931e6a368b841eeb846b8bc59fea513');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22612','{31155}<>{31156} and length({31157})>0','TrueNAS: System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','TrueNAS: System name has changed (new name: {ITEM.VALUE})','d931601db9244884b6e411d4be2c297e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22613','{31158}<10m','TrueNAS: has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','TrueNAS: has been restarted (uptime < 10m)','7ea3e6590e28476ea9876e26546af2d3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22614','{31159}>{$MEMORY.UTIL.MAX}','TrueNAS: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','TrueNAS: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','3ee054e3d944441d9fd174e13b6a59ee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22615','{31160}=0','TrueNAS: 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','','207abb1786ea4a39a7d569e54ee7cdb2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22616','{31161}<{$SWAP.PFREE.MIN.WARN} and {31162}>0','TrueNAS: High swap space usage','','0','2','This trigger is ignored, if there is no swap configured.',NULL,'0','0','0','','0','','0','Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','TrueNAS: High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','6c1708d53693435c87cd27f1568345c1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22617','{31163}<{$MEMORY.AVAILABLE.MIN} and {31164}>0','TrueNAS: Lack of available memory','','0','3','The system is running out of memory.',NULL,'0','0','0','','0','','0','Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','TrueNAS: Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','0a04cc4789a14f1090232fce196c0e4d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22618','{31165}/{31166}>{$LOAD_AVG_PER_CPU.MAX.WARN}\r\nand {31167}>0\r\nand {31168}>0','TrueNAS: Load average is too high','','0','3','Per CPU load average is too high. Your system may be slow to respond.',NULL,'0','0','0','','0','','0','Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}','0','TrueNAS: Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','c923ea2cc04848de911ad9a41defaff6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22619','{31169}>{$CPU.UTIL.CRIT}','TrueNAS: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','TrueNAS: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','776551cd5322405e8d7c2b9c30b3a82b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22620','{31170}<0 and {31171}>0\r\nand (\r\n{31172}=6 or\r\n{31172}=7 or\r\n{31172}=11 or\r\n{31172}=62 or\r\n{31172}=69 or\r\n{31172}=117\r\n)\r\nand\r\n({31173}<>2)','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({31170}>0 and {31174}>0) or\r\n({31173}=2)','0','','0','Current reported speed: {ITEM.LASTVALUE1}','0','','fcc3734390c645f3a4ad5d694675fa3a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22621','({31175}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{31176}) and\r\n{31176}>0','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: High inbound bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{31175}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{31176}','0','','0','In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: High inbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','94adfef34fca4421b88f9253de55554e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22622','({31177}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{31178}) and\r\n{31178}>0','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: High outbound bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{31177}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{31178}','0','','0','Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: High outbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','9ed09a6968b0416d9ac556ca35a04db4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22623','{31179}>{$IF.ERRORS.WARN:"{#IFNAME}"}','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: High input error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold.',NULL,'0','2','1','{31180}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors in: {ITEM.LASTVALUE1}','0','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: High input error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','89a43ff26b204fceb91108740ece1ee3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22624','{31181}>{$IF.ERRORS.WARN:"{#IFNAME}"}','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: High output error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold.',NULL,'0','2','1','{31182}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors out: {ITEM.LASTVALUE2}','0','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: High output error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','c1cfeff568e2421ba06648ca55bcfef5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22625','{$IFCONTROL:"{#IFNAME}"}=1 and ({31183}=2)','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ba6767729f78405aba8d09bf14b3a0fa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22626','{31184} > {$TEMPERATURE.MAX.CRIT:"{#DISK_NAME}"}','TrueNAS: Disk [{#DISK_NAME}]: Average disk temperature is too high','','0','3','Disk temperature is high.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','TrueNAS: Disk [{#DISK_NAME}]: Average disk temperature is too high (over {$TEMPERATURE.MAX.CRIT:"{#DISK_NAME}"}C for 5m)','fda99a2e62064414af85c1137cbf0aef');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22627','{31185} > {$TEMPERATURE.MAX.WARN:"{#DISK_NAME}"}','TrueNAS: Disk [{#DISK_NAME}]: Average disk temperature is too high','','0','2','Disk temperature is high.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','TrueNAS: Disk [{#DISK_NAME}]: Average disk temperature is too high (over {$TEMPERATURE.MAX.WARN:"{#DISK_NAME}"}C for 5m)','73194e7637a84dca976b218e9f4248c2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22628','{31186} > {$DATASET.PUSED.MAX.WARN:"{#DATASET_NAME}"} and {31187} < {$DATASET.FREE.MIN.WARN:"{#POOLNAME}"}','TrueNAS: Dataset [{#DATASET_NAME}]: High space usage','','0','2','Two conditions should match: First, space utilization should be above {$DATASET.PUSED.MAX.WARN:"{#DATASET_NAME}"}%.\r\nSecond condition: The dataset free space is less than {$DATASET.FREE.MIN.WARN:"{#POOLNAME}"}.',NULL,'0','2','0','','0','','0','Current usage: {ITEM.LASTVALUE1}','0','TrueNAS: Dataset [{#DATASET_NAME}]: High space usage (more than {$DATASET.PUSED.MAX.WARN:"{#DATASET_NAME}"}% used)','f759e058ef5345d884662f51db0c222e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22629','{31188} > {$DATASET.PUSED.MAX.CRIT:"{#DATASET_NAME}"} and {31189} < {$DATASET.FREE.MIN.CRIT:"{#POOLNAME}"}','TrueNAS: Dataset [{#DATASET_NAME}]: Very high space usage','','0','3','Two conditions should match: First, space utilization should be above {$DATASET.PUSED.MAX.CRIT:"{#DATASET_NAME}"}%.\r\nSecond condition: The dataset free space is less than {$DATASET.FREE.MIN.CRIT:"{#POOLNAME}"}.',NULL,'0','2','0','','0','','0','Current usage: {ITEM.LASTVALUE1}','0','TrueNAS: Dataset [{#DATASET_NAME}]: Very high space usage (more than {$DATASET.PUSED.MAX.CRIT:"{#DATASET_NAME}"}% used)','f0e37c1f63aa4e3090c0dc8c4f0dfe9b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22630','{31190} > {$ZPOOL.PUSED.MAX.WARN:"{#POOLNAME}"} and {31191} < {$ZPOOL.FREE.MIN.WARN:"{#POOLNAME}"}','TrueNAS: Pool [{#POOLNAME}]: High space usage','','0','2','Two conditions should match: First, space utilization should be above {$ZPOOL.PUSED.MAX.WARN:"{#POOLNAME}"}%.\r\nSecond condition: The pool free space is less than {$ZPOOL.FREE.MIN.WARN:"{#POOLNAME}"}.',NULL,'0','2','0','','0','','0','Current usage: {ITEM.LASTVALUE1}','0','TrueNAS: Pool [{#POOLNAME}]: High space usage (more than {$ZPOOL.PUSED.MAX.WARN:"{#POOLNAME}"}% used)','18eef491c14b4f768400b4acca5c7e80');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22631','{31192} > {$ZPOOL.PUSED.MAX.CRIT:"{#POOLNAME}"} and {31193} < {$ZPOOL.FREE.MIN.CRIT:"{#POOLNAME}"}','TrueNAS: Pool [{#POOLNAME}]: Very high space usage','','0','3','Two conditions should match: First, space utilization should be above {$ZPOOL.PUSED.MAX.CRIT:"{#POOLNAME}"}%.\r\nSecond condition: The pool free space is less than {$ZPOOL.FREE.MIN.CRIT:"{#POOLNAME}"}.',NULL,'0','2','0','','0','','0','Current usage: {ITEM.LASTVALUE1}','0','TrueNAS: Pool [{#POOLNAME}]: Very high space usage (more than {$ZPOOL.PUSED.MAX.CRIT:"{#POOLNAME}"}% used)','ab01140b8a724c1cbb79be032de8c8b5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22632','{31194} <> 0','TrueNAS: Pool [{#POOLNAME}]: Status is not online','','0','3','Please check pool status.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','676c2abdd102484a92db3501ccc2ca51');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22633','( {31235} = 1 and bitand({31236},8) = 8 )\r\nor ( bitand({31236},8) = 8\r\nand bitand({31236},8) > bitand({31237},8) )','SMART [{#NAME}]: Check returned "DISK FAILING"','','0','4','SMART status check returned "DISK FAILING".',NULL,'0','2','2','','0','','1','','0','','c51b609f267c45c3bcb4a3f5f40b6d35');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22634','( {31238} = 1 and bitand({31239},1) = 1 )\r\nor ( bitand({31239},1) = 1\r\nand bitand({31239},1) > bitand({31240},1) )','SMART [{#NAME}]: Command line did not parse','','0','4','Command line did not parse.',NULL,'0','2','2','','0','','1','','0','','12ed61dfd27c4666883c4240a5726d06');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22635','( {31241} = 1 and bitand({31242},2) = 2 )\r\nor ( bitand({31242},2) = 2\r\nand bitand({31242},2) > bitand({31243},2) )','SMART [{#NAME}]: Device open failed','','0','4','Device open failed, device did not return an IDENTIFY DEVICE structure, or device is in a low-power mode.',NULL,'0','2','2','','0','','1','','0','','9b960cb324774b3fa5e3d39aeb3141e2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22636','( {31244} = 1 and bitand({31245},64) = 64 )\r\nor ( bitand({31245},64) = 64\r\nand bitand({31245},64) > bitand({31246},64) )','SMART [{#NAME}]: Error log contains records','','0','4','The device error log contains records of errors.',NULL,'0','2','2','','0','','1','','0','','ccff1b75f69a47cdbb5a04c58d201a0f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22637','( {31247} = 1 and bitand({31248},128) = 128 )\r\nor ( bitand({31248},128) = 128\r\nand bitand({31248},128) > bitand({31249},128) )','SMART [{#NAME}]: Self-test log contains records','','0','4','The device self-test log contains records of errors. [ATA only] Failed self-tests outdated by a newer successful extended self-test are ignored.',NULL,'0','2','2','','0','','1','','0','','69fb021abcc841b7b35cc93358ef085c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22638','( {31250} = 1 and bitand({31251},32) = 32 )\r\nor ( bitand({31251},32) = 32\r\nand bitand({31251},32) > bitand({31252},32) )','SMART [{#NAME}]: Some Attributes have been <= threshold','','0','4','SMART status check returned "DISK OK" but we found that some (usage or prefail) Attributes have been <= threshold at some time in the past.',NULL,'0','2','2','','0','','1','','0','','4ad2fbb5b6e349f6852a489b99a2760d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22639','( {31253} = 1 and bitand({31254},4) = 4 )\r\nor ( bitand({31254},4) = 4\r\nand bitand({31254},4) > bitand({31255},4) )','SMART [{#NAME}]: Some command to the disk failed','','0','4','Some SMART or other ATA command to the disk failed, or there was a checksum error in a SMART data structure.',NULL,'0','2','2','','0','','1','','0','','592e647842d048e3985e65726cdc838c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22640','( {31256} = 1 and bitand({31257},16) = 16 )\r\nor ( bitand({31257},16) = 16\r\nand bitand({31257},16) > bitand({31258},16) )','SMART [{#NAME}]: Some prefail Attributes <= threshold','','0','4','We found prefail Attributes <= threshold.',NULL,'0','2','2','','0','','1','','0','','ec137781d51249c89d8891a35a596445');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22641','{31259}>90','SMART [{#NAME}]: NVMe disk percentage using is over 90% of estimated endurance','','0','3','',NULL,'0','2','0','','0','','0','','0','','e2bc2b0e195446d7973037be8e41eb6f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22642','{31260}<>{31261} and length({31262})>0','SMART [{#NAME}]: Disk has been replaced','','0','1','Device serial number has changed. Ack to close.',NULL,'0','2','0','','0','','1','','0','SMART [{#NAME}]: Disk has been replaced (new serial number received)','7257c02f398f4338ace1eb3a07cb7362');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22643','{31263}>{$SMART.TEMPERATURE.MAX.CRIT}','SMART [{#NAME}]: Average disk temperature is critical','','0','3','',NULL,'0','2','0','','0','','0','','0','SMART [{#NAME}]: Average disk temperature is critical (over {$SMART.TEMPERATURE.MAX.CRIT}°C for 5m)','cd09aebe3ca146119cdf5b977bf6b018');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22644','{31264}>{$SMART.TEMPERATURE.MAX.WARN}','SMART [{#NAME}]: Average disk temperature is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','SMART [{#NAME}]: Average disk temperature is too high (over {$SMART.TEMPERATURE.MAX.WARN}°C for 5m)','aaa5acb3196b481f894998c0ca5ea165');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22645','{31265}="false"','SMART [{#NAME}]: Disk self-test is not passed','','0','4','',NULL,'0','2','0','','0','','0','','0','','5fa97df4012e45279fb55724f617ef4a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22646','( {31266} = 1 and bitand({31267},8) = 8 )\r\nor ( bitand({31267},8) = 8\r\nand bitand({31267},8) > bitand({31268},8) )','SMART [{#NAME}]: Check returned "DISK FAILING"','','0','4','SMART status check returned "DISK FAILING".',NULL,'0','2','2','','0','','1','','0','','ec00e4aa70fa4bea92c559e145ca2e18');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22647','( {31269} = 1 and bitand({31270},1) = 1 )\r\nor ( bitand({31270},1) = 1\r\nand bitand({31270},1) > bitand({31271},1) )','SMART [{#NAME}]: Command line did not parse','','0','4','Command line did not parse.',NULL,'0','2','2','','0','','1','','0','','612c964798d74ab2af23cc6ec5a1d754');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22648','( {31272} = 1 and bitand({31273},2) = 2 )\r\nor ( bitand({31273},2) = 2\r\nand bitand({31273},2) > bitand({31274},2) )','SMART [{#NAME}]: Device open failed','','0','4','Device open failed, device did not return an IDENTIFY DEVICE structure, or device is in a low-power mode.',NULL,'0','2','2','','0','','1','','0','','3591c8077a894f6b8deaaf8055ca940e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22649','( {31275} = 1 and bitand({31276},64) = 64 )\r\nor ( bitand({31276},64) = 64\r\nand bitand({31276},64) > bitand({31277},64) )','SMART [{#NAME}]: Error log contains records','','0','4','The device error log contains records of errors.',NULL,'0','2','2','','0','','1','','0','','b524364e077a4f898a93af34ef4e6e7f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22650','( {31278} = 1 and bitand({31279},128) = 128 )\r\nor ( bitand({31279},128) = 128\r\nand bitand({31279},128) > bitand({31280},128) )','SMART [{#NAME}]: Self-test log contains records','','0','4','The device self-test log contains records of errors. [ATA only] Failed self-tests outdated by a newer successful extended self-test are ignored.',NULL,'0','2','2','','0','','1','','0','','5e56f837d39b49a89d1f6ca3c45b5737');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22651','( {31281} = 1 and bitand({31282},32) = 32 )\r\nor ( bitand({31282},32) = 32\r\nand bitand({31282},32) > bitand({31283},32) )','SMART [{#NAME}]: Some Attributes have been <= threshold','','0','4','SMART status check returned "DISK OK" but we found that some (usage or prefail) Attributes have been <= threshold at some time in the past.',NULL,'0','2','2','','0','','1','','0','','541318ea2fd14fb4a6f8e8a8df1e4d36');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22652','( {31284} = 1 and bitand({31285},4) = 4 )\r\nor ( bitand({31285},4) = 4\r\nand bitand({31285},4) > bitand({31286},4) )','SMART [{#NAME}]: Some command to the disk failed','','0','4','Some SMART or other ATA command to the disk failed, or there was a checksum error in a SMART data structure.',NULL,'0','2','2','','0','','1','','0','','00eba731f9ae495f9fe38020897c9aef');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22653','( {31287} = 1 and bitand({31288},16) = 16 )\r\nor ( bitand({31288},16) = 16\r\nand bitand({31288},16) > bitand({31289},16) )','SMART [{#NAME}]: Some prefail Attributes <= threshold','','0','4','We found prefail Attributes <= threshold.',NULL,'0','2','2','','0','','1','','0','','04dc576b815e432a9cf6d8fee6b08bae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22654','{31290}>90','SMART [{#NAME}]: NVMe disk percentage using is over 90% of estimated endurance','','0','3','',NULL,'0','2','0','','0','','0','','0','','68f373252bee4f9e8f3b33d04fc1adbd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22655','{31291}<>{31292} and length({31293})>0','SMART [{#NAME}]: Disk has been replaced','','0','1','Device serial number has changed. Ack to close.',NULL,'0','2','0','','0','','1','','0','SMART [{#NAME}]: Disk has been replaced (new serial number received)','2d5cf100fe094c819d725ee598d37de8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22656','{31294}>{$SMART.TEMPERATURE.MAX.CRIT}','SMART [{#NAME}]: Average disk temperature is critical','','0','3','',NULL,'0','2','0','','0','','0','','0','SMART [{#NAME}]: Average disk temperature is critical (over {$SMART.TEMPERATURE.MAX.CRIT}°C for 5m)','7f46b24934854866849dd758cb5999d5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22657','{31295}>{$SMART.TEMPERATURE.MAX.WARN}','SMART [{#NAME}]: Average disk temperature is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','SMART [{#NAME}]: Average disk temperature is too high (over {$SMART.TEMPERATURE.MAX.WARN}°C for 5m)','c903a37f4b004e1593ef85ac893c3f6c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22658','{31296}="false"','SMART [{#NAME}]: Disk self-test is not passed','','0','4','',NULL,'0','2','0','','0','','0','','0','','304bd042b7644a31bb74a1e71808d196');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22659','length({31501})>0','Consul: Failed to get local services','','0','2','Failed to get local services. Check debug log for more information.',NULL,'0','0','0','','0','','0','','0','','5cf09b213c044033af1d8e1d8821bc38');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22660','{31502}>{$CONSUL.NODE.HEALTH_SCORE.MAX.HIGH}','Consul: Node\'s health score is critical','','0','3','This metric ranges from 0 to 8, where 0 indicates "totally healthy".\r\nThis health score is used to scale the time between outgoing probes, and higher scores translate into longer probing intervals.\r\nFor more details see section IV of the Lifeguard paper: https://arxiv.org/pdf/1707.00788.pdf',NULL,'0','0','0','','0','','0','','0','Consul: Node\'s health score is over {$CONSUL.NODE.HEALTH_SCORE.MAX.HIGH}','f964a907c55148bf80991352c7f2ae83');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22661','{31503}>{$CONSUL.NODE.HEALTH_SCORE.MAX.WARN}','Consul: Node\'s health score is warning','','0','2','This metric ranges from 0 to 8, where 0 indicates "totally healthy".\r\nThis health score is used to scale the time between outgoing probes, and higher scores translate into longer probing intervals.\r\nFor more details see section IV of the Lifeguard paper: https://arxiv.org/pdf/1707.00788.pdf',NULL,'0','0','0','','0','','0','','0','Consul: Node\'s health score is too high (over {$CONSUL.NODE.HEALTH_SCORE.MAX.WARN} for 3m)','1fedc58f33ed4b9797fb37acfceba192');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22662','{31504}<>{31505} and length({31506})>0','Consul: Version has been changed','','0','1','Consul version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Consul: Version has changed (new version: {ITEM.VALUE})','fa78d269c01548a083085a3a98e5a59b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22663','{31507}/{31508}*100>{$CONSUL.OPEN.FDS.MAX.WARN}','Consul: Current number of open files is too high','','0','2','"Heavy file descriptor usage (i.e., near the process’s file descriptor limit) indicates a potential file descriptor exhaustion issue."',NULL,'0','0','0','','0','','0','','0','Consul: Current number of open files is too high (over {$CONSUL.OPEN.FDS.MAX.WARN}% for 5m)','9e1a0b7f49844d1db525d00d5f1060f0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22664','{31509} = 2','Consul: Aggregated status is \'critical\'','','0','3','Aggregated state of service on the local agent is \'critical\'.',NULL,'0','2','0','','0','','0','','0','Consul: Node\'s health score is over {$CONSUL.NODE.HEALTH_SCORE.MAX.HIGH}','661551e1e9e94b25b7bd6ea876640b6d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22665','{31510} = 1','Consul: Aggregated status is \'warning\'','','0','2','Aggregated state of service on the local agent is \'warning\'.',NULL,'0','2','0','','0','','0','','0','','724f6a5e16f64a779a71ad9a9378fb60');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22666','{31511}<>{31512} and length({31513})>0','Consul cluster: Leader has been changed','','0','1','Consul cluster version has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Consul cluster: Leader has been changed (new value received: {ITEM.VALUE})','8f612c3cfbb74f55a7defed05039e2a5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22667','{31514}>0','Consul: One or more nodes in cluster in \'critical\' state','','0','3','One or more agents on current dc with serf health status \'critical\'.',NULL,'0','0','0','','0','','0','','0','','8660702ae3674eb083d6dacb81ec3a4d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22668','{31515}>0','Consul: One or more nodes in cluster in \'warning\' state','','0','2','One or more agents on current dc with serf health status \'warning\'.',NULL,'0','0','0','','0','','0','','0','','92136d6ee73b4bb5b88b9f1da1afe740');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22669','{31516}>{$CONSUL.CLUSTER.SERVICE_NODES.CRITICAL.MAX.AVG:"{#SERVICE_NAME}"}','Consul: Service ["{#SERVICE_NAME}"]: Too many nodes with service status \'critical\'','','0','3','One or more nodes with service status \'critical\'.',NULL,'0','2','0','','0','','0','','0','Consul: Service ["{#SERVICE_NAME}"]: Too many nodes with service status \'critical\' (over {$CONSUL.CLUSTER.SERVICE_NODES.CRITICAL.MAX.AVG:"{#SERVICE_NAME}"})','60919b58bd484597aa7ec03f308eb614');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22670','{31517}<{$ENVOY.CERT.MIN}','Envoy Proxy: SSL certificate expires soon','','0','2','Please check certificate. Less than {$ENVOY.CERT.MIN} days left until the next certificate being managed will expire.',NULL,'0','0','0','','0','','0','Expires: {ITEM.VALUE}','0','Envoy Proxy: SSL certificate expires soon (less than {$CERT.EXPIRY.MIN} days)','d025e1c521ee4f53acd896d96609beec');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22671','{31518} > 0','Envoy Proxy: Server state is not live','','0','3','',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b90a6241e1294fdc8502426b7582c1c2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22672','{31519}=1','Envoy Proxy: Failed to fetch metrics data','','0','2','Zabbix has not received data for items for the last 10 minutes.',NULL,'0','0','0','','0','','1','','0','Envoy Proxy: Failed to fetch metrics data (or no data for 10m)','173c90200dd1451db10b8ea8b018bc54');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22673','{31520}<10m','Envoy Proxy: Service has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Envoy Proxy: Service has been restarted (uptime < 10m)','01e29535e00143c9a64fe844f637f17e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22674','{31521} > 0','Envoy Proxy: There are unhealthy clusters','','0','3','',NULL,'0','2','0','','0','','0','Current number: {ITEM.LASTVALUE1}','0','','7542707fd247445cb9eaa51d01e76d5e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22675','{31522}=0','FTP service is down on {HOST.NAME}','','0','3','',NULL,'0','0','0','','0','','0','','0','','aee485c125f94e37ac97c3ce1a654757');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22676','({31523} - now()) / 86400 < {$COCKROACHDB.CERT.CA.EXPIRY.WARN}','CockroachDB: CA certificate expires soon','','0','2','CA certificate expires soon.',NULL,'0','0','0','','0','','0','','0','CockroachDB: CA certificate expires soon (less than {$COCKROACHDB.CERT.CA.EXPIRY.WARN} days)','76a2093eb0214185ab8e03986f3f1474');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22677','({31524} - now()) / 86400 < {$COCKROACHDB.CERT.NODE.EXPIRY.WARN}','CockroachDB: Node certificate expires soon','','0','2','Node certificate expires soon.',NULL,'0','0','0','','0','','0','','0','CockroachDB: Node certificate expires soon (less than {$COCKROACHDB.CERT.NODE.EXPIRY.WARN} days)','592152fe1dde4e81abd4bee76c3dae9d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22678','{31525} > {$COCKROACHDB.CLOCK.OFFSET.MAX.WARN} * 0.001','CockroachDB: Clock offset is too high','','0','2','Cockroach-measured clock offset is nearing limit (by default, servers kill themselves at 400ms from the mean).',NULL,'0','0','0','','0','','0','','0','CockroachDB: Clock offset is too high (over {$COCKROACHDB.CLOCK.OFFSET.MAX.WARN}ms for 5m)','bddc5c6ac7294bb4be9ed8a4f4d4f4a9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22679','{31526} = 500','CockroachDB: Node is unhealthy','','0','3','Node\'s /health endpoint has returned HTTP 500 Internal Server Error which indicates unhealthy mode.',NULL,'0','0','0','','0','','0','','0','','6ccd74acda004a738c3003af4526cd91');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22680','{31527} > {$COCKROACHDB.STATEMENTS.ERRORS.MAX.WARN}','CockroachDB: SQL statements errors rate is too high','','0','2','',NULL,'0','0','0','','0','','0','','0','CockroachDB: SQL statements errors rate is too high (over {$COCKROACHDB.STATEMENTS.ERRORS.MAX.WARN} per second for 5m)','7307fc4f2c29438e99eea0256a8755ce');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22681','{31528} = 1','CockroachDB: Failed to fetch node data','','0','2','Zabbix has not received data for items for the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','CockroachDB: Failed to fetch node data (or no data for 5m)','90f6cccaf3d94a3d853641482ccb5254');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22682','{31529} < 10m','CockroachDB: Node has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','0','','0','CockroachDB: Node has been restarted (uptime < 10m)','83802e38f1414ca9b40e2d2df2d94941');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22683','{31530} <> {31531} and length({31530}) > 0','CockroachDB: Version has changed','','0','1','',NULL,'0','0','0','','0','','0','','0','CockroachDB: Version has changed (new version: {ITEM.VALUE})','620aee1613e841acb44a438b4b9b68c9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22684','{31532} = 0','CockroachDB: Service is down','','0','3','',NULL,'0','0','0','','0','','0','','0','','d3c0d0a9e1f44c95a2246ab7081f581b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22685','{31533} / {31534} * 100 > {$COCKROACHDB.OPEN.FDS.MAX.WARN}','CockroachDB: Current number of open files is too high','','0','2','Getting close to open file descriptor limit.',NULL,'0','0','0','','0','','0','','0','CockroachDB: Current number of open files is too high (over {$COCKROACHDB.OPEN.FDS.MAX.WARN}% for 10m)','8c2035ad44ea44b2b690b086d11e8cfc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22686','{31535} > 0 and {31536} = 0','CockroachDB: Node is not executing SQL','','0','2','Node is not executing SQL despite having connections.',NULL,'0','0','0','','0','','0','','0','','b099e323ec974823bfd84317b152a1fb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22687','{31537} = 503 and {31538} > 5m','CockroachDB: Node is not ready','','0','3','Node\'s /health?ready=1 endpoint has returned HTTP 503 Service Unavailable. Possible reasons:\r\n- node is in the wait phase of the node shutdown sequence;\r\n- node is unable to communicate with a majority of the other nodes in the cluster, likely because the cluster is unavailable due to too many nodes being down.',NULL,'0','0','0','','0','','0','','0','','0d2fa3b6ea434a07867b9f4d6156ea81');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22688','{31539} < {$COCKROACHDB.STORE.USED.MIN.CRIT}','CockroachDB: Storage [{#STORE}]: Available storage capacity is critically low','','0','3','Storage is running critically low on free space (less than {$COCKROACHDB.STORE.USED.MIN.CRIT}% available).',NULL,'0','2','1','{31540} > {$COCKROACHDB.STORE.USED.MIN.CRIT}','0','','0','','0','CockroachDB: Storage [{#STORE}]: Available storage capacity is critically low (less than {$COCKROACHDB.STORE.USED.MIN.CRIT}%)','db07663014aa47a892faa2f9dbd97ec9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22689','{31541} < {$COCKROACHDB.STORE.USED.MIN.WARN}','CockroachDB: Storage [{#STORE}]: Available storage capacity is low','','0','2','Storage is running low on free space (less than {$COCKROACHDB.STORE.USED.MIN.WARN}% available).',NULL,'0','2','1','{31542} > {$COCKROACHDB.STORE.USED.MIN.WARN}','0','','0','','0','CockroachDB: Storage [{#STORE}]: Available storage capacity is low (less than {$COCKROACHDB.STORE.USED.MIN.WARN}%)','a58b694f4cf642228ec0633f0efb04a7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22690','length({31543})>0','There are errors in method requests to API','','0','3','There are errors in method requests to API.',NULL,'0','0','0','','0','','0','','0','','7f80562a0b4f4329be454c418de3f517');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22691','{31544}=1','System health is in degraded state','','0','2','System health is in degraded state.',NULL,'0','0','0','','0','','0','','0','','ee37a443b22a4161a88014a0c32dfdfa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22692','{31545}=2','System health is in fault state','','0','3','System health is in fault state.',NULL,'0','0','0','','0','','0','','0','','54472b6cdf84418baf10b4a7d5e16e5c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22693','{31546}=3','System health is in unknown state','','0','1','System health is in unknown state.',NULL,'0','0','0','','0','','0','','0','','ccb821dafad1404dbc1873561a69b7cc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22694','{31547}=0','Service is down or unavailable','','0','4','HTTP/HTTPS service is down or unable to establish TCP connection.',NULL,'0','0','0','','0','','0','','0','','b8d07373a0fb4051a0534891b255994a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22695','{31548}>{$HPE.MSA.CONTROLLER.CPU.UTIL.CRIT}','Controller [{#CONTROLLER.ID}]: High CPU utilization','','0','2','Controller CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','','0','Controller [{#CONTROLLER.ID}]: High CPU utilization (over {$HPE.MSA.CONTROLLER.CPU.UTIL.CRIT}% for 5m)','b94f1cfd6e6a48f8a18c644532b7a9c8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22696','{31549}=1','Controller [{#CONTROLLER.ID}]: Controller health is in degraded state','','0','2','Controller health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','381a5fe2adfd4f4ea15763cdf0a1bd0d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22697','{31550}=2','Controller [{#CONTROLLER.ID}]: Controller health is in fault state','','0','3','Controller health is in fault state.',NULL,'0','2','0','','0','','0','','0','','2082d12ff9c54a5ea709dba05c14ae00');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22698','{31551}=3','Controller [{#CONTROLLER.ID}]: Controller health is in unknown state','','0','1','Controller health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','0b2ed99c47a64210b198cc0a3a6b84b5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22699','{31552}=1','Controller [{#CONTROLLER.ID}]: Controller is down','','0','4','The controller is down.',NULL,'0','2','0','','0','','0','','0','','1524e80a37cb4b64a7360488e132a433');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22700','{31553}<10m','Controller [{#CONTROLLER.ID}]: Controller has been restarted','','0','2','The controller uptime is less than 10 minutes.',NULL,'0','2','0','','0','','0','','0','Controller [{#CONTROLLER.ID}]: Controller has been restarted (uptime < 10m)','136bb1ccd4114a529a99ddbf803fd974');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22701','{31554}=1','Disk [{#DURABLE.ID}]: Disk health is in degraded state','','0','2','Disk health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','58d2da30bfe74d05ad05e0b286fe0fae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22702','{31555}=2','Disk [{#DURABLE.ID}]: Disk health is in fault state','','0','3','Disk health is in fault state.',NULL,'0','2','0','','0','','0','','0','','1f0e81d23e1e423ba885425f33773f5b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22703','{31556}=3','Disk [{#DURABLE.ID}]: Disk health is in unknown state','','0','1','Disk health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','dc75dd0456a145b3ab0646c9403caeb6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22704','{31557}=2','Disk [{#DURABLE.ID}]: Disk temperature is critically high','','0','3','Disk temperature is critically high.',NULL,'0','2','0','','0','','0','','0','','b194f7b133274552823b66e44c88bd02');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22705','{31558}=3','Disk [{#DURABLE.ID}]: Disk temperature is high','','0','2','Disk temperature is high.',NULL,'0','2','0','','0','','0','','0','','aaabacd5f5194378b6c8388e2ef90abe');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22706','{31559}=4','Disk [{#DURABLE.ID}]: Disk temperature is unknown','','0','1','Disk temperature is unknown.',NULL,'0','2','0','','0','','0','','0','','60d0fc661aa140798f937a63fdd6e5f9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22707','{31560}>{$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT:"{#NAME}"}','Disk group [{#NAME}]: Disk group space is critically low','','0','3','Disk group is running low on free space (less than {$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT:"{#NAME}"}% available).',NULL,'0','2','0','','0','','0','','0','Disk group [{#NAME}]: Disk group space is critically low (used > {$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT:"{#NAME}"}%)','d6494d79dae94aeda2b78169f8960224');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22708','{31561}>{$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN:"{#NAME}"}','Disk group [{#NAME}]: Disk group space is low','','0','2','Disk group is running low on free space (less than {$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN:"{#NAME}"}% available).',NULL,'0','2','0','','0','','0','','0','Disk group [{#NAME}]: Disk group space is low (used > {$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN:"{#NAME}"}%)','ea04be93082640709ec6e58ae640575c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22709','{31562}=1','Disk group [{#NAME}]: Disk group health is in degraded state','','0','2','Disk group health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','ad99b0f4a6b14b1d9819ab63376e11e7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22710','{31563}=2','Disk group [{#NAME}]: Disk group health is in fault state','','0','3','Disk group health is in fault state.',NULL,'0','2','0','','0','','0','','0','','28f69da63b024079b8953165da6cbfdc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22711','{31564}=3','Disk group [{#NAME}]: Disk group health is in unknown state','','0','1','Disk group health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','94695c4222c94bd1b12d9ecb4b21e628');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22712','{31565}=9','Disk group [{#NAME}]: Disk group has damaged disks','','0','3','The disk group is online and fault tolerant, but some of it\'s disks are damaged.',NULL,'0','2','0','','0','','0','','0','','9bbf1f8a67564b769db5921a2023defd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22713','{31566}=8','Disk group [{#NAME}]: Disk group has missing disks','','0','3','The disk group is online and fault tolerant, but some of it\'s disks are missing.',NULL,'0','2','0','','0','','0','','0','','d4d5a63b514d4f1aaff9e8c68db9026e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22714','{31567}=1','Disk group [{#NAME}]: Disk group is fault tolerant with a down disk','','0','3','The disk group is online and fault tolerant, but some of it\'s disks are down.',NULL,'0','2','0','','0','','0','','0','','26b5b53b33c940d5a642ea13d670bf55');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22715','{31568}=3','Disk group [{#NAME}]: Disk group is offline','','0','3','Either the disk group is using offline initialization, or it\'s disks are down and data may be lost.',NULL,'0','2','0','','0','','0','','0','','b1e7e080f7264ae0be323a500abc211f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22716','{31569}=4','Disk group [{#NAME}]: Disk group is quarantined critical','','0','3','The disk group is critical with at least one inaccessible disk. For example, two disks are inaccessible in a RAID 6 disk group or one disk is inaccessible for other fault-tolerant RAID levels. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined.',NULL,'0','2','0','','0','','0','','0','','b8b5b248c275453d91c214c19d01f5d9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22717','{31570}=5','Disk group [{#NAME}]: Disk group is quarantined offline','','0','3','The disk group is offline with multiple inaccessible disks causing user data to be incomplete, or is an NRAID or RAID 0 disk group.',NULL,'0','2','0','','0','','0','','0','','bc1c2bbfffd541998099e695f9c98386');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22718','{31571}=5','Disk group [{#NAME}]: Disk group is quarantined unsupported','','0','3','The disk group contains data in a format that is not supported by this system. For example, this system does not support linear disk groups.',NULL,'0','2','0','','0','','0','','0','','7c4981f0b0fb4a3891b8a410501224d0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22719','{31572}=6','Disk group [{#NAME}]: Disk group is quarantined with an inaccessible disk','','0','3','The RAID6 disk group has one inaccessible disk. The disk group is fault tolerant but degraded. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined.',NULL,'0','2','0','','0','','0','','0','','9e762711ecf54f8691e6be32a3e92738');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22720','{31573}=7','Disk group [{#NAME}]: Disk group is stopped','','0','3','The disk group is stopped.',NULL,'0','2','0','','0','','0','','0','','191dbf4bdd294add8ed0815c21f6eadb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22721','{31574}=2','Disk group [{#NAME}]: Disk group status is critical','','0','3','The disk group is online but isn\'t fault tolerant because some of its disks are down.',NULL,'0','2','0','','0','','0','','0','','05480e1bc3ff4e7a8c5a20286d6f306c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22722','{31575}=1','Enclosure [{#DURABLE.ID}]: Enclosure health is in degraded state','','0','2','Enclosure health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','934c5f9e2d19499fab1d88ff9a36c9c9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22723','{31576}=2','Enclosure [{#DURABLE.ID}]: Enclosure health is in fault state','','0','3','Enclosure health is in fault state.',NULL,'0','2','0','','0','','0','','0','','3d06d5ce761c42e983a5eec029bb671e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22724','{31577}=3','Enclosure [{#DURABLE.ID}]: Enclosure health is in unknown state','','0','1','Enclosure health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','df1275bd16434b1ca77749930e1af3f8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22725','{31578}=2','Enclosure [{#DURABLE.ID}]: Enclosure has critical status','','0','4','Enclosure has critical status.',NULL,'0','2','0','','0','','0','','0','','db8329f956d94e74bb6379b29a000bf0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22726','{31579}=6','Enclosure [{#DURABLE.ID}]: Enclosure has unknown status','','0','1','Enclosure has unknown status.',NULL,'0','2','0','','0','','0','','0','','6a32b4a08bfb49939633b42a16041c7f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22727','{31580}=3','Enclosure [{#DURABLE.ID}]: Enclosure has warning status','','0','2','Enclosure has warning status.',NULL,'0','2','0','','0','','0','','0','','2fd78acd77804a1f8a474c973bf5c93e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22728','{31581}=7','Enclosure [{#DURABLE.ID}]: Enclosure is unavailable','','0','4','Enclosure is unavailable.',NULL,'0','2','0','','0','','0','','0','','8cecd9a3ecf14931b8b3ccffff4a4615');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22729','{31582}=4','Enclosure [{#DURABLE.ID}]: Enclosure is unrecoverable','','0','4','Enclosure is unrecoverable.',NULL,'0','2','0','','0','','0','','0','','458cfb2a9dfb476dae940b66342b12bf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22730','{31583}=1','Fan [{#DURABLE.ID}]: Fan health is in degraded state','','0','2','Fan health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','377a9c494a5443c0ba694ab78683da17');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22731','{31584}=2','Fan [{#DURABLE.ID}]: Fan health is in fault state','','0','3','Fan health is in fault state.',NULL,'0','2','0','','0','','0','','0','','4446cef7b06140e3a29018944201ebd7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22732','{31585}=3','Fan [{#DURABLE.ID}]: Fan health is in unknown state','','0','1','Fan health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','3273a1f3595046e69ef6c74ac6f56eeb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22733','{31586}=1','Fan [{#DURABLE.ID}]: Fan has error status','','0','3','Fan has error status.',NULL,'0','2','0','','0','','0','','0','','f8afe70029aa4cdfb1f68452eea27986');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22734','{31587}=3','Fan [{#DURABLE.ID}]: Fan is missing','','0','1','Fan is missing.',NULL,'0','2','0','','0','','0','','0','','8ad445006c51474fbee30a70971a97a5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22735','{31588}=2','Fan [{#DURABLE.ID}]: Fan is off','','0','2','Fan is off.',NULL,'0','2','0','','0','','0','','0','','fabe4e0bde194675a089db45125428b6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22736','{31589}=0','FRU [{#ENCLOSURE.ID}: {#LOCATION}]: FRU ID data is invalid','','0','2','The FRU ID data is invalid. The FRU\'s EEPROM is improperly programmed.',NULL,'0','2','0','','0','','0','','0','','8182ee0edeb94f4a845c7eda047718c8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22737','{31590}=1','FRU [{#ENCLOSURE.ID}: {#LOCATION}]: FRU status is Degraded or Fault','','0','3','FRU status is Degraded or Fault.',NULL,'0','2','0','','0','','0','','0','','8bef225423a548c3a289c67c40ffd906');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22738','{31591}>{$HPE.MSA.POOL.PUSED.MAX.CRIT:"{#NAME}"}','Pool [{#NAME}]: Pool space is critically low','','0','3','Pool is running low on free space (less than {$HPE.MSA.POOL.PUSED.MAX.CRIT:"{#NAME}"}% available).',NULL,'0','2','0','','0','','0','','0','Pool [{#NAME}]: Pool space is critically low (used > {$HPE.MSA.POOL.PUSED.MAX.CRIT:"{#NAME}"}%)','042ac4fedb00485c8c6f48016182b9dd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22739','{31592}>{$HPE.MSA.POOL.PUSED.MAX.WARN:"{#NAME}"}','Pool [{#NAME}]: Pool space is low','','0','2','Pool is running low on free space (less than {$HPE.MSA.POOL.PUSED.MAX.WARN:"{#NAME}"}% available).',NULL,'0','2','0','','0','','0','','0','Pool [{#NAME}]: Pool space is low (used > {$HPE.MSA.POOL.PUSED.MAX.WARN:"{#NAME}"}%)','f4c7a9ed832d4668be64acf9da3c9814');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22740','{31593}=1','Pool [{#NAME}]: Pool health is in degraded state','','0','2','Pool health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','7af3ccbf497c44adb907b6d15ecebe33');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22741','{31594}=2','Pool [{#NAME}]: Pool health is in fault state','','0','3','Pool health is in fault state.',NULL,'0','2','0','','0','','0','','0','','093fa03c7c3f4ac4adbd3234bf6007a0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22742','{31595}=3','Pool [{#NAME}]: Pool health is in unknown state','','0','1','Pool [{#NAME}] health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','2af3a0092d57420c95bf82adc39eae5f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22743','{31596}=1','Port [{#NAME}]: Port health is in degraded state','','0','2','Port health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','266d310dc71e4c60977668e330eec8df');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22744','{31597}=2','Port [{#NAME}]: Port health is in fault state','','0','3','Port health is in fault state.',NULL,'0','2','0','','0','','0','','0','','19a02ecfb5d242ff85e233961cc4a384');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22745','{31598}=3','Port [{#NAME}]: Port health is in unknown state','','0','1','Port health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','8461e41fdd2944f08d3b95c63df0fa9f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22746','{31599}=2','Port [{#NAME}]: Port has error status','','0','3','Port has error status.',NULL,'0','2','0','','0','','0','','0','','7ff86d50c241496d9bfa54359e17222e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22747','{31600}=4','Port [{#NAME}]: Port has unknown status','','0','1','Port has unknown status.',NULL,'0','2','0','','0','','0','','0','','bdad67d08b92447e9964ea6362c0989c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22748','{31601}=1','Port [{#NAME}]: Port has warning status','','0','2','Port has warning status.',NULL,'0','2','0','','0','','0','','0','','95ba19413bca495aba96f32fa91bc54b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22749','{31602}=1','Power supply [{#DURABLE.ID}]: Power supply health is in degraded state','','0','2','Power supply health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','2394f69a635a4072bd96494b8df8ae3e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22750','{31603}=2','Power supply [{#DURABLE.ID}]: Power supply health is in fault state','','0','3','Power supply health is in fault state.',NULL,'0','2','0','','0','','0','','0','','f390553cfe4646e0ab9a4fd9cab20886');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22751','{31604}=3','Power supply [{#DURABLE.ID}]: Power supply health is in unknown state','','0','1','Power supply health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','9499fbdcc6a946138fb6cd69d8be9a00');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22752','{31605}=2','Power supply [{#DURABLE.ID}]: Power supply has error status','','0','3','Power supply has error status.',NULL,'0','2','0','','0','','0','','0','','28896e70b14f463aae8c8af4786e52ff');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22753','{31606}=4','Power supply [{#DURABLE.ID}]: Power supply has unknown status','','0','1','Power supply has unknown status.',NULL,'0','2','0','','0','','0','','0','','ac6b0d55fbac4f338261f6a90b68e5b0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22754','{31607}=1','Power supply [{#DURABLE.ID}]: Power supply has warning status','','0','2','Power supply has warning status.',NULL,'0','2','0','','0','','0','','0','','c9cddccdeed34aa4a533f0ad07aab5ae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22755','length({31608})>0','There are errors in method requests to API','','0','3','There are errors in method requests to API.',NULL,'0','0','0','','0','','0','','0','','2133ddf10a3641d78e609948d6842687');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22756','{31609}=1','System health is in degraded state','','0','2','System health is in degraded state.',NULL,'0','0','0','','0','','0','','0','','49e8c1d8a14f40b5acb2723e370ccccb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22757','{31610}=2','System health is in fault state','','0','3','System health is in fault state.',NULL,'0','0','0','','0','','0','','0','','2709a971f2ce417d8e269a0e5ebdd964');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22758','{31611}=3','System health is in unknown state','','0','1','System health is in unknown state.',NULL,'0','0','0','','0','','0','','0','','fa35428a4f41453984bd0bfa566e0674');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22759','{31612}=0','Service is down or unavailable','','0','4','HTTP/HTTPS service is down or unable to establish TCP connection.',NULL,'0','0','0','','0','','0','','0','','9c1bf26f95d946f386bbf613d3d55779');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22760','{31613}>{$HPE.MSA.CONTROLLER.CPU.UTIL.CRIT}','Controller [{#CONTROLLER.ID}]: High CPU utilization','','0','2','Controller CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','','0','Controller [{#CONTROLLER.ID}]: High CPU utilization (over {$HPE.MSA.CONTROLLER.CPU.UTIL.CRIT}% for 5m)','0bf68b46b7644ad5ad0123df49c1da35');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22761','{31614}=1','Controller [{#CONTROLLER.ID}]: Controller health is in degraded state','','0','2','Controller health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','3988a5b897a34c84952fa573d7019879');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22762','{31615}=2','Controller [{#CONTROLLER.ID}]: Controller health is in fault state','','0','3','Controller health is in fault state.',NULL,'0','2','0','','0','','0','','0','','7256e023ac82427bb6ee923d4ff07786');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22763','{31616}=3','Controller [{#CONTROLLER.ID}]: Controller health is in unknown state','','0','1','Controller health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','15bc89e6c61549caaf5a66c85446ea9d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22764','{31617}=1','Controller [{#CONTROLLER.ID}]: Controller is down','','0','4','The controller is down.',NULL,'0','2','0','','0','','0','','0','','99de4f8de416485db5c3844d1c8d654b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22765','{31618}<10m','Controller [{#CONTROLLER.ID}]: Controller has been restarted','','0','2','The controller uptime is less than 10 minutes.',NULL,'0','2','0','','0','','0','','0','Controller [{#CONTROLLER.ID}]: Controller has been restarted (uptime < 10m)','255250aa4b75465a989bf8f3fd805667');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22766','{31619}=1','Disk [{#DURABLE.ID}]: Disk health is in degraded state','','0','2','Disk health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','f76f8eec05a94e2db9d4cd3bcbb43aa4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22767','{31620}=2','Disk [{#DURABLE.ID}]: Disk health is in fault state','','0','3','Disk health is in fault state.',NULL,'0','2','0','','0','','0','','0','','383181e44a114334ab28ff09f49b2d51');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22768','{31621}=3','Disk [{#DURABLE.ID}]: Disk health is in unknown state','','0','1','Disk health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','2b2d78c6c29f4bd58eff632809dee978');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22769','{31622}=2','Disk [{#DURABLE.ID}]: Disk temperature is critically high','','0','3','Disk temperature is critically high.',NULL,'0','2','0','','0','','0','','0','','d4b8f77421d744918e087f696b3f0fff');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22770','{31623}=3','Disk [{#DURABLE.ID}]: Disk temperature is high','','0','2','Disk temperature is high.',NULL,'0','2','0','','0','','0','','0','','fbbac4048fda477a99f00566624b6bdb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22771','{31624}=4','Disk [{#DURABLE.ID}]: Disk temperature is unknown','','0','1','Disk temperature is unknown.',NULL,'0','2','0','','0','','0','','0','','41e4f00446304206804da350a88ce3b9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22772','{31625}>{$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT:"{#NAME}"}','Disk group [{#NAME}]: Disk group space is critically low','','0','3','Disk group is running low on free space (less than {$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT:"{#NAME}"}% available).',NULL,'0','2','0','','0','','0','','0','Disk group [{#NAME}]: Disk group space is critically low (used > {$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT:"{#NAME}"}%)','df1af9dad6444821a86a26158469d0cb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22773','{31626}>{$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN:"{#NAME}"}','Disk group [{#NAME}]: Disk group space is low','','0','2','Disk group is running low on free space (less than {$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN:"{#NAME}"}% available).',NULL,'0','2','0','','0','','0','','0','Disk group [{#NAME}]: Disk group space is low (used > {$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN:"{#NAME}"}%)','713960711c324dc780998f8f263344a2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22774','{31627}=1','Disk group [{#NAME}]: Disk group health is in degraded state','','0','2','Disk group health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','7899b8a15b5042f3a4467a7cdee4c6ae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22775','{31628}=2','Disk group [{#NAME}]: Disk group health is in fault state','','0','3','Disk group health is in fault state.',NULL,'0','2','0','','0','','0','','0','','e7c6a3b20c424196854a5437aba4c3ec');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22776','{31629}=3','Disk group [{#NAME}]: Disk group health is in unknown state','','0','1','Disk group health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','177dd9d1cfa54b3e8c9e6479cb96af03');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22777','{31630}=9','Disk group [{#NAME}]: Disk group has damaged disks','','0','3','The disk group is online and fault tolerant, but some of it\'s disks are damaged.',NULL,'0','2','0','','0','','0','','0','','8deee88d964846598d5574d197694b17');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22778','{31631}=8','Disk group [{#NAME}]: Disk group has missing disks','','0','3','The disk group is online and fault tolerant, but some of it\'s disks are missing.',NULL,'0','2','0','','0','','0','','0','','c615e1bb1c824e7ba109b8a6580eb9b9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22779','{31632}=1','Disk group [{#NAME}]: Disk group is fault tolerant with a down disk','','0','3','The disk group is online and fault tolerant, but some of it\'s disks are down.',NULL,'0','2','0','','0','','0','','0','','bead3a0bb95342b3b3ceae7becff99b8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22780','{31633}=3','Disk group [{#NAME}]: Disk group is offline','','0','3','Either the disk group is using offline initialization, or it\'s disks are down and data may be lost.',NULL,'0','2','0','','0','','0','','0','','c89466e00c2b40c1933fde60332a428a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22781','{31634}=4','Disk group [{#NAME}]: Disk group is quarantined critical','','0','3','The disk group is critical with at least one inaccessible disk. For example, two disks are inaccessible in a RAID 6 disk group or one disk is inaccessible for other fault-tolerant RAID levels. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined.',NULL,'0','2','0','','0','','0','','0','','3dc5b3bc1128451491217639cf4e5115');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22782','{31635}=5','Disk group [{#NAME}]: Disk group is quarantined offline','','0','3','The disk group is offline with multiple inaccessible disks causing user data to be incomplete, or is an NRAID or RAID 0 disk group.',NULL,'0','2','0','','0','','0','','0','','6892c8c05331497ab37db2b2fe3673a1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22783','{31636}=5','Disk group [{#NAME}]: Disk group is quarantined unsupported','','0','3','The disk group contains data in a format that is not supported by this system. For example, this system does not support linear disk groups.',NULL,'0','2','0','','0','','0','','0','','8a8bda977e11462a906fd200f1b67a72');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22784','{31637}=6','Disk group [{#NAME}]: Disk group is quarantined with an inaccessible disk','','0','3','The RAID6 disk group has one inaccessible disk. The disk group is fault tolerant but degraded. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined.',NULL,'0','2','0','','0','','0','','0','','21f06dd8f8de49f58a64a638d24ff905');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22785','{31638}=7','Disk group [{#NAME}]: Disk group is stopped','','0','3','The disk group is stopped.',NULL,'0','2','0','','0','','0','','0','','1914fede726744829b2e41392b957857');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22786','{31639}=2','Disk group [{#NAME}]: Disk group status is critical','','0','3','The disk group is online but isn\'t fault tolerant because some of its disks are down.',NULL,'0','2','0','','0','','0','','0','','a79a6cf86bd44f55a7859808f632bf48');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22787','{31640}=1','Enclosure [{#DURABLE.ID}]: Enclosure health is in degraded state','','0','2','Enclosure health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','d15d460b8c924f609f5cdd055060f8ce');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22788','{31641}=2','Enclosure [{#DURABLE.ID}]: Enclosure health is in fault state','','0','3','Enclosure health is in fault state.',NULL,'0','2','0','','0','','0','','0','','7c2f6a7efbf245298c3ee0b137718dc8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22789','{31642}=3','Enclosure [{#DURABLE.ID}]: Enclosure health is in unknown state','','0','1','Enclosure health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','6732ced099d748daa5cbdf6d97580efd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22790','{31643}=2','Enclosure [{#DURABLE.ID}]: Enclosure has critical status','','0','4','Enclosure has critical status.',NULL,'0','2','0','','0','','0','','0','','ef763c350b2e4d20bdecbe50703ec8dd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22791','{31644}=6','Enclosure [{#DURABLE.ID}]: Enclosure has unknown status','','0','1','Enclosure has unknown status.',NULL,'0','2','0','','0','','0','','0','','e3a7198f287e4600a0abfa929ee183de');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22792','{31645}=3','Enclosure [{#DURABLE.ID}]: Enclosure has warning status','','0','2','Enclosure has warning status.',NULL,'0','2','0','','0','','0','','0','','27ba4d2474604caaa2712222cf621294');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22793','{31646}=7','Enclosure [{#DURABLE.ID}]: Enclosure is unavailable','','0','4','Enclosure is unavailable.',NULL,'0','2','0','','0','','0','','0','','53b61c7521d94161b063a5ea506b5466');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22794','{31647}=4','Enclosure [{#DURABLE.ID}]: Enclosure is unrecoverable','','0','4','Enclosure is unrecoverable.',NULL,'0','2','0','','0','','0','','0','','2218d1bf55aa4db0968dab804c0687e3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22795','{31648}=1','Fan [{#DURABLE.ID}]: Fan health is in degraded state','','0','2','Fan health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','3ee1b1d0d6b34c8eba02480e9e4d5be2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22796','{31649}=2','Fan [{#DURABLE.ID}]: Fan health is in fault state','','0','3','Fan health is in fault state.',NULL,'0','2','0','','0','','0','','0','','3e3785f9915d46068ebe2eff21bac813');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22797','{31650}=3','Fan [{#DURABLE.ID}]: Fan health is in unknown state','','0','1','Fan health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','4bf2e519b5484d338f997ea5dac462e0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22798','{31651}=1','Fan [{#DURABLE.ID}]: Fan has error status','','0','3','Fan has error status.',NULL,'0','2','0','','0','','0','','0','','183a1e1c4d444c9a8189035a2af22dc1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22799','{31652}=3','Fan [{#DURABLE.ID}]: Fan is missing','','0','1','Fan is missing.',NULL,'0','2','0','','0','','0','','0','','4d9e3d1bb22444f981295df07f0d9c24');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22800','{31653}=2','Fan [{#DURABLE.ID}]: Fan is off','','0','2','Fan is off.',NULL,'0','2','0','','0','','0','','0','','a6e4ea796b98432284a9fd9fff1d82f9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22801','{31654}=0','FRU [{#ENCLOSURE.ID}: {#LOCATION}]: FRU ID data is invalid','','0','2','The FRU ID data is invalid. The FRU\'s EEPROM is improperly programmed.',NULL,'0','2','0','','0','','0','','0','','2533eb2e4344494d9ec72629dab7b1a8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22802','{31655}=1','FRU [{#ENCLOSURE.ID}: {#LOCATION}]: FRU status is Degraded or Fault','','0','3','FRU status is Degraded or Fault.',NULL,'0','2','0','','0','','0','','0','','7a994469e45f467c8582c24258d0eb75');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22803','{31656}>{$HPE.MSA.POOL.PUSED.MAX.CRIT:"{#NAME}"}','Pool [{#NAME}]: Pool space is critically low','','0','3','Pool is running low on free space (less than {$HPE.MSA.POOL.PUSED.MAX.CRIT:"{#NAME}"}% available).',NULL,'0','2','0','','0','','0','','0','Pool [{#NAME}]: Pool space is critically low (used > {$HPE.MSA.POOL.PUSED.MAX.CRIT:"{#NAME}"}%)','c73b4a77e94a43f5951f6a541d65637e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22804','{31657}>{$HPE.MSA.POOL.PUSED.MAX.WARN:"{#NAME}"}','Pool [{#NAME}]: Pool space is low','','0','2','Pool is running low on free space (less than {$HPE.MSA.POOL.PUSED.MAX.WARN:"{#NAME}"}% available).',NULL,'0','2','0','','0','','0','','0','Pool [{#NAME}]: Pool space is low (used > {$HPE.MSA.POOL.PUSED.MAX.WARN:"{#NAME}"}%)','c7644beb62bc40e99d6045af6d4bc16f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22805','{31658}=1','Pool [{#NAME}]: Pool health is in degraded state','','0','2','Pool health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','20723e93add44447a5cab3c8cc4849a6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22806','{31659}=2','Pool [{#NAME}]: Pool health is in fault state','','0','3','Pool health is in fault state.',NULL,'0','2','0','','0','','0','','0','','1881bd0efca04c58a56effb8e232e734');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22807','{31660}=3','Pool [{#NAME}]: Pool health is in unknown state','','0','1','Pool [{#NAME}] health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','62db05047b5a4b8797eee5667bb3bdf4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22808','{31661}=1','Port [{#NAME}]: Port health is in degraded state','','0','2','Port health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','9775011d59a846669087e6c90c4a011a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22809','{31662}=2','Port [{#NAME}]: Port health is in fault state','','0','3','Port health is in fault state.',NULL,'0','2','0','','0','','0','','0','','a5dec537528f42e0948ea15f1a290f26');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22810','{31663}=3','Port [{#NAME}]: Port health is in unknown state','','0','1','Port health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','7025a0e6c93e4731be966c2a9e774581');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22811','{31664}=2','Port [{#NAME}]: Port has error status','','0','3','Port has error status.',NULL,'0','2','0','','0','','0','','0','','c1d2f824a3d4470abb6817753b1d4047');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22812','{31665}=4','Port [{#NAME}]: Port has unknown status','','0','1','Port has unknown status.',NULL,'0','2','0','','0','','0','','0','','6083cdfcb59848a6b5249147155996c2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22813','{31666}=1','Port [{#NAME}]: Port has warning status','','0','2','Port has warning status.',NULL,'0','2','0','','0','','0','','0','','dd32b960ce1544d880d94b2da4dba03e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22814','{31667}=1','Power supply [{#DURABLE.ID}]: Power supply health is in degraded state','','0','2','Power supply health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','1b512fda735440b5839a63fd26c19535');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22815','{31668}=2','Power supply [{#DURABLE.ID}]: Power supply health is in fault state','','0','3','Power supply health is in fault state.',NULL,'0','2','0','','0','','0','','0','','b75fb541ae0e43cc9cdb86e07dc3e394');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22816','{31669}=3','Power supply [{#DURABLE.ID}]: Power supply health is in unknown state','','0','1','Power supply health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','555ee9ef33b54d029df2f17d5f899539');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22817','{31670}=2','Power supply [{#DURABLE.ID}]: Power supply has error status','','0','3','Power supply has error status.',NULL,'0','2','0','','0','','0','','0','','49c9d2d61c45476da5564299b2eebdee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22818','{31671}=4','Power supply [{#DURABLE.ID}]: Power supply has unknown status','','0','1','Power supply has unknown status.',NULL,'0','2','0','','0','','0','','0','','d6cbaeb5aab84e5eb487af4bf319d640');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22819','{31672}=1','Power supply [{#DURABLE.ID}]: Power supply has warning status','','0','2','Power supply has warning status.',NULL,'0','2','0','','0','','0','','0','','b7e85e7a6c254aba930d7704c58adf47');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22820','length({31673})>0','HPE Primera: There are errors in requests to WSAPI','','0','3','Zabbix has received errors in requests to WSAPI.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','570d440e7ec9445585003208eca06e63');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22821','{31674}=0','HPE Primera: Service is unavailable','','0','4','',NULL,'0','0','0','','0','','1','','0','','8e7aa46322c643878e509461dbb9169d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22822','{31675}=2','CPG [{#NAME}]: Degraded','','0','3','CPG [{#NAME}] is in degraded state.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','32a29b7a4bf340ef8ab07a8db3bef309');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22823','{31676}=3','CPG [{#NAME}]: Failed','','0','4','CPG [{#NAME}] is in failed state.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','85c26e64c8074e8b9ab52f20394afeee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22824','{31677}=1','Disk [{#POSITION}]: Path A0 degraded','','0','3','Disk [{#POSITION}] path A0 in degraded state.',NULL,'0','2','0','','0','','0','','0','','f1672a33f9404216a1ffdbe3fcefd0bf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22825','{31678}=1','Disk [{#POSITION}]: Path A1 degraded','','0','3','Disk [{#POSITION}] path A1 in degraded state.',NULL,'0','2','0','','0','','0','','0','','a28b1b4cdc5d4cb4afd9b7dd5e5f4f46');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22826','{31679}=1','Disk [{#POSITION}]: Path B0 degraded','','0','3','Disk [{#POSITION}] path B0 in degraded state.',NULL,'0','2','0','','0','','0','','0','','0ff32326e7784111842198ac6457c5cc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22827','{31680}=1','Disk [{#POSITION}]: Path B1 degraded','','0','3','Disk [{#POSITION}] path B1 in degraded state.',NULL,'0','2','0','','0','','0','','0','','d55532408f3c40408dbd05671c66b5f3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22828','{31681}=2','Disk [{#POSITION}]: Degraded','','0','3','Disk [{#POSITION}] in degraded state.',NULL,'0','2','0','','0','','0','','0','','d8991103e26b4ffea5fb64dc3519eb63');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22829','{31682}=3','Disk [{#POSITION}]: Failed','','0','4','Disk [{#POSITION}] in failed state.',NULL,'0','2','0','','0','','0','','0','','bc8c8281c3ac4742ba8f570a56753dd3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22830','{31683}=99','Disk [{#POSITION}]: Unknown issue','','0','1','Disk [{#POSITION}] in unknown state.',NULL,'0','2','0','','0','','0','','0','','d4bda084df0b4a489fac08d1acae4e17');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22831','{31684}<>1 and {31684}<>4','Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Failover state is {ITEM.VALUE1}','','0','3','Port [{#NODE}:{#SLOT}:{#CARD.PORT}] has failover error.',NULL,'0','2','0','','0','','0','','0','','65f3f3b098984842b5246bfb5842bc78');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22832','{31685}<>4 and {31685}<>1 and {31685}<>3 and {31685}<>13 and {31685}<>15 and {31685}<>16','Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Link state is {ITEM.VALUE1}','','0','4','Port [{#NODE}:{#SLOT}:{#CARD.PORT}] not in ready state.',NULL,'0','2','0','','0','','0','','0','','c7ee19ea175d4c63a9ae67e0ab59253b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22833','{31686}=1 or {31686}=3 or {31686}=13 or {31686}=15 or {31686}=16','Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Link state is {ITEM.VALUE1}','','0','3','Port [{#NODE}:{#SLOT}:{#CARD.PORT}] not in ready state.',NULL,'0','2','0','','0','','0','','0','','f0c8851f843e41dcb6820c943efcbe2f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22834','{31687}=3','Task [{#NAME}]: Cancelled','','0','1','Task [{#NAME}] is cancelled.',NULL,'0','2','0','','0','','0','','0','','63340c376d86492198e00d7ae10f063c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22835','{31688}=4','Task [{#NAME}]: Failed','','0','3','Task [{#NAME}] is failed.',NULL,'0','2','0','','0','','0','','0','','af326c0f259144d28ebeb60e19bae903');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22836','{31689}=2','Volume [{#NAME}]: Degraded','','0','3','Volume [{#NAME}] is in degraded state.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','c91920ca3ceb457cb9e2db0bb70d7fe0');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22837','{31690}=3','Volume [{#NAME}]: Failed','','0','4','Volume [{#NAME}] is in failed state.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','394b5bd072ac41acb0702601c5d5f049');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22838','{31691}>0','Dbstat: Checksum failures detected','','0','3','Data page checksum failures were detected on that DB instance.\r\nhttps://www.postgresql.org/docs/current/checksums.html',NULL,'0','0','0','','0','','0','','0','','1d67b13f47134a538708c2a14dcfa6b1');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22839','{31692}>0','DB {#DBNAME}: Checksum failures detected','','0','3','Data page checksum failures were detected on that database.\r\nhttps://www.postgresql.org/docs/current/checksums.html',NULL,'0','2','0','','0','','0','','0','','5995403b904349d296227647ca318f5b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22840','length({31693})>0','HPE Synergy: There are errors in requests to API','','0','3','Zabbix has received errors in requests to API.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','dba8cff13328403dae2cbda8f106b384');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22841','{31694}=0','HPE Synergy: Service is unavailable','','0','4','',NULL,'0','0','0','','0','','1','','0','','165774c1ffab46899352a36dd32bb574');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22842','{31695}=0','Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has critical status','','0','4','Appliance [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','d79a138fe0cd4f918e664380af8da355');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22843','{31696}=4','Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has warning status','','0','2','Appliance [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','c4acd5d5451d437ab5366b24643577be');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22844','{31697}=1','Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is disabled','','0','1','Appliance [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] currently not operational.',NULL,'0','2','0','','0','','0','','0','','7b8b298e334e409da6dabf6476c80dbf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22845','{31698}=4','Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is subsumed','','0','3','The device slot is configured to be part of another device slot.',NULL,'0','2','0','','0','','0','','0','','b414be87e93f4f08a131d46b34b1b478');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22846','{31699}=0','Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has critical status','','0','4','Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','dd23cdf994c848d4b45baf4d1716f198');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22847','{31700}=4','Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has warning status','','0','2','Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','264dff5509fb4608b862bfd3e0510e32');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22848','{31701}=1','Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is disabled','','0','1','Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] currently not operational.',NULL,'0','2','0','','0','','0','','0','','89e007afab2b4331877b3a7c1b6a98fb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22849','{31702}=1','Datacenter [{#NAME}]: Add error','','0','3','Datacenter [{#NAME}] add failed.',NULL,'0','2','0','','0','','0','','0','','4f0d8ded588f4175911edff4efd4d1cd');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22850','{31703}=3','Datacenter [{#NAME}]: Has credential error','','0','3','Datacenter [{#NAME}] has credential error.',NULL,'0','2','0','','0','','0','','0','','896d145d3e3e49719a1b8e01117a5987');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22851','{31704}=5','Datacenter [{#NAME}]: Has refresh error','','0','3','Datacenter [{#NAME}] has refresh error.',NULL,'0','2','0','','0','','0','','0','','8ecd353d5f0742aaabd6f65d9a7b8897');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22852','{31705}=7','Datacenter [{#NAME}]: Has remove error','','0','3','Datacenter [{#NAME}] has remove error.',NULL,'0','2','0','','0','','0','','0','','091237538cab4e35a19c0f76b9c50539');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22853','{31706}=0','Datacenter [{#NAME}]: Has critical status','','0','4','Datacenter [{#NAME}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','5dbb654f17f345de8279c8249eae3207');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22854','{31707}=4','Datacenter [{#NAME}]: Has warning status','','0','2','Datacenter [{#NAME}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','d04a24eceaad4741a877fdf1c58141c5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22855','{31708}=1','Datacenter [{#NAME}]: Is disabled','','0','1','Datacenter [{#NAME}] currently not operational.',NULL,'0','2','0','','0','','0','','0','','7c70db1e75df47aeb8b4f87a634abde9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22856','{31709}=4','Device [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is subsumed','','0','3','The device slot is configured to be part of another device slot.',NULL,'0','2','0','','0','','0','','0','','37ccc7acfc56466cb1a0f31e11603bcc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22857','{31710}=3 and {31711}>-1','Enclosure [{#NAME}]: Is interrupted','','0','2','The previous operation on the enclosure did not complete. The operation should be re-attempted.',NULL,'0','2','0','','0','','0','Reason: {ITEM.LASTVALUE2}','0','','7cd90689dd8147949b1da375b055c71f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22858','{31712}=9 and {31713}>-1','Enclosure [{#NAME}]: Is unsupported','','0','3','The enclosure model or version is not currently supported by HPE OneView. It cannot be configured or monitored.',NULL,'0','2','0','','0','','0','Reason: {ITEM.LASTVALUE2}','0','','7bfc1a8cde3349cba772a6217df3e275');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22859','{31714}=6 and {31715}>-1','Enclosure [{#NAME}]: Remove failed','','0','2','The previous operation to remove the enclosure did not succeed. The operation should be re-attempted.',NULL,'0','2','0','','0','','0','Reason: {ITEM.LASTVALUE2}','0','','ef82fad1874d4dd5918d9c33323b6ae6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22860','{31716}=0','Enclosure [{#NAME}]: Is missing','','0','3','The enclosure is no longer connected into the frame link topology.',NULL,'0','2','0','','0','','0','','0','','61f81dcbb3c74f14982bd29b78f6a57b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22861','{31717}=5','Enclosure [{#NAME}]: Is unowned','','0','3','The enclosure reports not being under management.',NULL,'0','2','0','','0','','0','','0','','6101e612efa54715a72263b4ea9d5b7d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22862','{31718}=0','Enclosure [{#NAME}]: Has critical status','','0','4','Enclosure [{#NAME}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','862f37cbe3b144b5ae70998bf7406497');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22863','{31719}=4','Enclosure [{#NAME}]: Has warning status','','0','2','Enclosure [{#NAME}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','50f4cfc199564b26bf575d88ec5ba57e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22864','{31720}=1','Enclosure [{#NAME}]: Is disabled','','0','1','Enclosure [{#NAME}] currently not operational.',NULL,'0','2','0','','0','','0','','0','','c3ce50cdb5374904970903c082a98f72');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22865','{31721}=0','Ethernet network [{#NAME}]: Has critical status','','0','4','Ethernet network [{#NAME}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','c658a58285184a82969b520d5be1f9b2');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22866','{31722}=4','Ethernet network [{#NAME}]: Has warning status','','0','2','Ethernet network [{#NAME}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','6881808352bd4588b42debf5f2703f69');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22867','{31723}=1','Ethernet network [{#NAME}]: Is disabled','','0','1','Ethernet network [{#NAME}] currently not operational.',NULL,'0','2','0','','0','','0','','0','','eef185ab54584c069df2a4349dff9cc7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22868','{31724}=0','Fabric [{#NAME}]: Has critical status','','0','4','Fabric [{#NAME}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','5f67d217108d4e7fbfcaed29f0f8564f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22869','{31725}=4','Fabric [{#NAME}]: Has warning status','','0','2','Fabric [{#NAME}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','c546f87158ee42ba8d76aa3fd6767efa');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22870','{31726}=1','Fabric [{#NAME}]: Is disabled','','0','1','Fabric [{#NAME}] currently not operational.',NULL,'0','2','0','','0','','0','','0','','c963ad956b0644c394bd58dbbb05858a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22871','{31727}=0','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is degraded','','0','3','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is in degraded state.',NULL,'0','2','0','','0','','0','','0','','cc28f87bd5b445c3abd07af689d8ee74');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22872','{31728}=1','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is failed','','0','4','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is in failed state.',NULL,'0','2','0','','0','','0','','0','','113096666e074f8eadab59c0250968af');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22873','{31729}=2','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is misplaced','','0','2','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is misplaced.',NULL,'0','2','0','','0','','0','','0','','63589098cc6b4e9ea7e7855e5a6b980e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22874','{31730}=3','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is missing','','0','3','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is missing.',NULL,'0','2','0','','0','','0','','0','','6b89f74f468942f789f75fdbb2b6cee6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22875','{31731}=0','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has critical status','','0','4','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','6b7b21cc6a3144edaf5fb3da2b54370f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22876','{31732}=4','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has warning status','','0','2','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','168ea39107c748d0b7008b4525ff4504');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22877','{31733}=1','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is disabled','','0','1','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] currently not operational.',NULL,'0','2','0','','0','','0','','0','','41296079847b49d285e395e77f920e06');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22878','{31734}=0','FC network [{#NAME}]: Has critical status','','0','4','FC network [{#NAME}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','38b9aba3f57f4b779f26dcf3d53090cf');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22879','{31735}=4','FC network [{#NAME}]: Has warning status','','0','2','FC network [{#NAME}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','edf33e3c732442c6ac3327e995d0919e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22880','{31736}=1','FC network [{#NAME}]: Is disabled','','0','1','FC network [{#NAME}] currently not operational.',NULL,'0','2','0','','0','','0','','0','','518a795f68bf4b81ac17332f511ffdb5');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22881','{31737}=0','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Link port has critical status','','0','4','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] link port status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','d0a6196dc2984373916bbb857687d398');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22882','{31738}=4','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Link port has warning status','','0','2','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] link port status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','73fd558563794741b1416fb73ba4f173');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22883','{31739}=1','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Link port is disabled','','0','1','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] link port currently not operational.',NULL,'0','2','0','','0','','0','','0','','ab5f51fe1dcd4a859ffb3dff66450b33');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22884','{31740}=0','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: MGMT port has critical status','','0','4','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] mgmt port status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','514ecd9c1bbd4821ad84e5ddb042d0c6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22885','{31741}=4','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: MGMT port has warning status','','0','2','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] MGMT port status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','7dd75b26c54d41228199ee9e810272bc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22886','{31742}=1','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: MGMT port is disabled','','0','1','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] MGMT port currently not operational.',NULL,'0','2','0','','0','','0','','0','','1b7b8409bc394f22b940c09e56b3fa5c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22887','{31743}=4','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is subsumed','','0','3','The device slot is configured to be part of another device slot.',NULL,'0','2','0','','0','','0','','0','','d47706453e8944e497ff01feaaa19aab');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22888','{31744}=0','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has critical status','','0','4','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','c1d8fa7ff1fe444aaefdffdcda810e5c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22889','{31745}=4','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has warning status','','0','2','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','44b30472c18a49cf9c0f7bb2f30fd184');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22890','{31746}=1','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is disabled','','0','1','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] currently not operational.',NULL,'0','2','0','','0','','0','','0','','34dd6fb0ed264192b7d1b46ba2778b16');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22891','{31747}=3 and length({31748})>0','Hypervisor manager [{#NAME}]: Is in error state','','0','4','Hypervisor manager [{#NAME}] has error.',NULL,'0','2','0','','0','','0','Reason: {ITEM.LASTVALUE2}','0','','fd90d819f10d43cc9b18ae5e5ee96b66');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22892','{31749}=0','Hypervisor manager [{#NAME}]: Has critical status','','0','4','Hypervisor manager [{#NAME}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','a942a7ddfad14bb08915c7ba6c3248bc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22893','{31750}=4','Hypervisor manager [{#NAME}]: Has warning status','','0','2','Hypervisor manager [{#NAME}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','d81f11c478484d77a64049a2716865b4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22894','{31751}=1','Hypervisor manager [{#NAME}]: Is disabled','','0','1','Hypervisor manager [{#NAME}] currently not operational.',NULL,'0','2','0','','0','','0','','0','','ea85e02ebac94ab2821659c88eb5363c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22895','{31752}=0','Interconnect [{#NAME}]: Has critical status','','0','4','Interconnect [{#NAME}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','ccc001583dc6478aa3569b14b65be97d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22896','{31753}=4','Interconnect [{#NAME}]: Has warning status','','0','2','Interconnect [{#NAME}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','a6d1c63e2aa04c71bac2eaef5b693110');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22897','{31754}=1','Interconnect [{#NAME}]: Is disabled','','0','1','Interconnect [{#NAME}] currently not operational.',NULL,'0','2','0','','0','','0','','0','','6649436c06c345f8a394356e8a4fe546');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22898','{31755}=2','Logical enclosure [{#NAME}]: Delete failed','','0','3','Indicator that the deletion of a logical enclosure failed.',NULL,'0','2','0','','0','','0','','0','','1c17c2f49bea47bc978698e4b8d8281b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22899','{31756}=0','Logical enclosure [{#NAME}]: Is inconsistent','','0','3','The configuration of the logical enclosure differs from that of the enclosure group, or the configuration of the hardware resources is inconsistent with the logical enclosure configuration. Perform an Update from group, Reapply configuration, or Update firmware action as appropriate to bring the configuration back into consistency.',NULL,'0','2','0','','0','','0','','0','','85354d24f47d45f48c5dda86b9f22fe3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22900','{31757}=0','Logical enclosure [{#NAME}]: Has critical status','','0','4','Logical enclosure [{#NAME}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','b3af6beba595455eb7774b3c609e9108');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22901','{31758}=4','Logical enclosure [{#NAME}]: Has warning status','','0','2','Logical enclosure [{#NAME}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','32061fadb9c74abab1a1d1371e2cf3e8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22902','{31759}=1','Logical enclosure [{#NAME}]: Is disabled','','0','1','Logical enclosure [{#NAME}] currently not operational.',NULL,'0','2','0','','0','','0','','0','','c7ec2fb26b794b28b99eb321a3201fce');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22903','{31760}=0','Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Health is degraded','','0','4','One or more resources in the partition are unhealthy.',NULL,'0','2','0','','0','','0','','0','','1c85a47cfa96487f8c338afe21ad7ce3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22904','{31761}=1','Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Health is invalid','','0','3','Partition health is invalid.',NULL,'0','2','0','','0','','0','','0','','fdf5fa892eda46aaa2551168e36428bc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22905','{31762}=2','Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Is invalid','','0','3','Partition status is invalid.',NULL,'0','2','0','','0','','0','','0','','1a9c705957d34bfc976c23a8b1f38e14');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22906','{31763}=0','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has critical status','','0','4','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','ce96e032cf49415aa341b238abcabd1b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22907','{31764}=4','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has warning status','','0','2','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','711695d95bc14ddfbe54be917c5e3340');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22908','{31765}=1','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is disabled','','0','1','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] currently not operational.',NULL,'0','2','0','','0','','0','','0','','6d286b675b7546a5b429792345867d16');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22909','{31766}=1','Rack [{#NAME}]: Add error','','0','3','Rack [{#NAME}] add failed.',NULL,'0','2','0','','0','','0','','0','','3a4eebe27b2046d3af9f6b7dca4f1aeb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22910','{31767}=3','Rack [{#NAME}]: Has credential error','','0','3','Rack [{#NAME}] has credential error.',NULL,'0','2','0','','0','','0','','0','','73d7062711f4440dad2b20865dbc79f6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22911','{31768}=5','Rack [{#NAME}]: Has refresh error','','0','3','Rack [{#NAME}] has refresh error.',NULL,'0','2','0','','0','','0','','0','','32b884dfb5164ae78f6274dc6ca4e0cb');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22912','{31769}=7','Rack [{#NAME}]: Has remove error','','0','3','Rack [{#NAME}] has remove error.',NULL,'0','2','0','','0','','0','','0','','9ae1160a1bc242a9a1fe3fbf3b155ea7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22913','{31770}=0','Rack [{#NAME}]: Has critical status','','0','4','Rack [{#NAME}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','f03657d149374102837fef92efc0bf28');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22914','{31771}=4','Rack [{#NAME}]: Has warning status','','0','2','Rack [{#NAME}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','74b635c0c6a7412395f36ac71fe56ec8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22915','{31772}=1','Rack [{#NAME}]: Is disabled','','0','1','Rack [{#NAME}] currently not operational.',NULL,'0','2','0','','0','','0','','0','','1e4124bef22448f7b99b3b0ecd29a3ab');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22916','{31773}=0 and length({31774})>0','Server [{#SERVER_NAME}:{#LOCATION}]: Is in maintenance mode','','0','1','Disruptive maintenance operations like firmware update can cause many server hardware alerts to be generated in a short period of time. Ex: Network connectivity lost or Server reset detected.',NULL,'0','2','0','','0','','0','Reason: {ITEM.LASTVALUE2}','0','','cd1156d4df6e411690f94a2857beab16');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22917','{31775}=4 and length({31776})>0','Server [{#SERVER_NAME}:{#LOCATION}]: Is unmanaged','','0','3','Discovered a supported server.',NULL,'0','2','0','','0','','0','Reason: {ITEM.LASTVALUE2}','0','','f74bf53c1b394aad9019b603de9a2c09');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22918','{31777}=11','Server [{#SERVER_NAME}:{#LOCATION}]: Has profile error','','0','3','Unsuccessful profile apply or removal.',NULL,'0','2','0','','0','','0','','0','','ce0f72a3fe5e495cb8dd20b94a2779d6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22919','{31778}=0','Server [{#SERVER_NAME}:{#LOCATION}]: Is not initialized','','0','2','Server not initialized.',NULL,'0','2','0','','0','','0','','0','','5af93ca2f30d443ea18e8cf6ce139575');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22920','{31779}=12','Server [{#SERVER_NAME}:{#LOCATION}]: Is unsupported','','0','3','Server model or version not currently supported by the appliance.',NULL,'0','2','0','','0','','0','','0','','c03e5c9a910c4953bb18e6347a037ea6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22921','{31780}=6','Server [{#SERVER_NAME}:{#LOCATION}]: Remove failed','','0','3','The previous operation to remove the server hardware did not succeed. The operation should be re-attempted.',NULL,'0','2','0','','0','','0','','0','','1364b9806a104d6d8412329d47e3e505');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22922','{31781}=0','Server [{#SERVER_NAME}:{#LOCATION}]: Has critical status','','0','4','Server [{#SERVER_NAME}:{#LOCATION}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','7db1e7eff2624546a065863a2d821287');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22923','{31782}=4','Server [{#SERVER_NAME}:{#LOCATION}]: Has warning status','','0','2','Server [{#SERVER_NAME}:{#LOCATION}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','5c0da62e9a704d5ca556c04dbaa8e243');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22924','{31783}=1','Server [{#SERVER_NAME}:{#LOCATION}]: Is disabled','','0','1','Server [{#SERVER_NAME}:{#LOCATION}] currently not operational.',NULL,'0','2','0','','0','','0','','0','','79f661ed3a764515a915ba79a009ec4c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22925','{31784}=0','Storage pool [{#NAME}]: Add error','','0','3','Storage pool [{#NAME}] add failed.',NULL,'0','2','0','','0','','0','','0','','ae6ac88132f14763ba1ab0488d78d79d');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22926','{31785}=5','Storage pool [{#NAME}]: Create failed','','0','3','Storage pool [{#NAME}] create failed.',NULL,'0','2','0','','0','','0','','0','','439cee82cd6744d09b4597a6aeeda91a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22927','{31786}=7','Storage pool [{#NAME}]: Delete failed','','0','3','Storage pool [{#NAME}] delete failed.',NULL,'0','2','0','','0','','0','','0','','91031655fd16446995f316b20e2c0bed');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22928','{31787}=12','Storage pool [{#NAME}]: Update failed','','0','3','Storage pool [{#NAME}] update failed.',NULL,'0','2','0','','0','','0','','0','','d0a7155241b34e1f9dd3e01203aee3ba');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22929','{31788}=0','Storage pool [{#NAME}]: Has critical status','','0','4','Storage pool [{#NAME}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','bace21ba544d45b58541a3e2affde554');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22930','{31789}=4','Storage pool [{#NAME}]: Has warning status','','0','2','Storage pool [{#NAME}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','135683c55d81457e90ba97d8e02165a6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22931','{31790}=1','Storage pool [{#NAME}]: Is disabled','','0','1','Storage pool [{#NAME}] currently not operational.',NULL,'0','2','0','','0','','0','','0','','4d7c963326d54600b639ec2d14babeb7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22932','{31791}=0','Storage system [{#NAME}]: Add error','','0','3','Storage system [{#NAME}] add failed.',NULL,'0','2','0','','0','','0','','0','','cfdbabe4ff584b96a961e395b3a4cda8');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22933','{31792}=5','Storage system [{#NAME}]: Create failed','','0','3','Storage system [{#NAME}] create failed.',NULL,'0','2','0','','0','','0','','0','','e759872ffa334bc2b73335b612238c82');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22934','{31793}=7','Storage system [{#NAME}]: Delete failed','','0','3','Storage system [{#NAME}] delete failed.',NULL,'0','2','0','','0','','0','','0','','1df4613458b748b59d761d45f494920a');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22935','{31794}=12','Storage system [{#NAME}]: Update failed','','0','3','Storage system [{#NAME}] update failed.',NULL,'0','2','0','','0','','0','','0','','3c856acaa42e4ee0807713afba3937ac');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22936','{31795}=0','Storage system [{#NAME}]: Has critical status','','0','4','Storage system [{#NAME}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','f8533d36153b4269916c7a9843ea8d5c');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22937','{31796}=4','Storage system [{#NAME}]: Has warning status','','0','2','Storage system [{#NAME}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','fc278fec8e3d452bb953599a1cd42336');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22938','{31797}=1','Storage system [{#NAME}]: Is disabled','','0','1','Storage system [{#NAME}] currently not operational.',NULL,'0','2','0','','0','','0','','0','','4e60a92c30ed4cf7960d7979a8e2fb77');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22939','{31798}=0','Storage volume [{#NAME}]: Add error','','0','3','Storage volume [{#NAME}] add failed.',NULL,'0','2','0','','0','','0','','0','','b13d8a034a214bb5bd82d9e573d06e7b');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22940','{31799}=5','Storage volume [{#NAME}]: Create failed','','0','3','Storage volume [{#NAME}] create failed.',NULL,'0','2','0','','0','','0','','0','','15f5b0ded7d8430d9b6338d8ab4a26e7');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22941','{31800}=7','Storage volume [{#NAME}]: Delete failed','','0','3','Storage volume [{#NAME}] delete failed.',NULL,'0','2','0','','0','','0','','0','','d7b4d59197dc4471b3db746c527213ae');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22942','{31801}=12','Storage volume [{#NAME}]: Update failed','','0','3','Storage volume [{#NAME}] update failed.',NULL,'0','2','0','','0','','0','','0','','c0b2dc67758446fa82c6bf9c92c76e93');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22943','{31802}=0','Storage volume [{#NAME}]: Has critical status','','0','4','Storage volume [{#NAME}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','284d76cba28a4fc195b4b825665bc570');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22944','{31803}=4','Storage volume [{#NAME}]: Has warning status','','0','2','Storage volume [{#NAME}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','ab040784159040a1ad031015e9ebef73');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22945','{31804}=1','Storage volume [{#NAME}]: Is disabled','','0','1','Storage volume [{#NAME}] currently not operational.',NULL,'0','2','0','','0','','0','','0','','ea9c2c2993b74859b30caaeac8871982');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22946','{31805}=0','Uplink set [{#NAME}]: Has critical status','','0','4','Uplink set [{#NAME}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','89514e78b6e949278e83c3a2372d0fb9');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22947','{31806}=4','Uplink set [{#NAME}]: Has warning status','','0','2','Uplink set [{#NAME}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','09f23615c85f43758a05d89466b3ca31');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22948','{31807}=1','Uplink set [{#NAME}]: Is disabled','','0','1','Uplink set [{#NAME}] currently not operational.',NULL,'0','2','0','','0','','0','','0','','57187189c1bc4269873b51ef91a010c4');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22949','{31808}=0','OPNsense: DHCP server is not running','','0','3','Please check DHCP server settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','fba46d0094bc4f0e98537ceca27dd6bc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22950','{31809}=0','OPNsense: DNS server is not running','','0','3','Please check DNS server settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0e2cbbbd999d476a84cb93a9b7ef42d6');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22951','{31810}=0','OPNsense: Web server is not running','','0','3','Please check lighttpd service status.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7864dec91012436f89b728019bf99fda');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22952','{31811}<>1','OPNsense: Packet filter is not running','','0','4','Please check PF status.',NULL,'0','0','0','','0','','0','Current running state: {ITEM.LASTVALUE1}','0','','42d9a74d984d4ac2bf778be74cd8588f');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22953','{31812}>{$SOURCE.TRACKING.TABLE.UTIL.MAX}','OPNsense: Source tracking table usage is high','','0','2','Please check the number of sticky connections.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','OPNsense: Source tracking table usage more than {$SOURCE.TRACKING.TABLE.UTIL.MAX}.','d1f03d136f30401b8f70cbc3196446ee');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22954','{31813}>{$STATE.TABLE.UTIL.MAX}','OPNsense: State table usage is high','','0','2','Please check the number of connections.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','OPNsense: State table usage more than {$STATE.TABLE.UTIL.MAX}.','f31e301def314e9b81ee0f8a26dc1e37');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22955','{31814}=0','OPNsense: 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','','f2cb074945624a8184ceb1ab3d3b2f52');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22956','{31815}<0 and {31816}>0\r\nand (\r\n{31817}=6 or\r\n{31817}=7 or\r\n{31817}=11 or\r\n{31817}=62 or\r\n{31817}=69 or\r\n{31817}=117\r\n)\r\nand\r\n({31818}<>2)','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.',NULL,'0','2','1','({31815}>0 and {31819}>0) or\r\n({31818}=2)','0','','0','Current reported speed: {ITEM.LASTVALUE1}','0','','e351276dfe6a43db88bdb437d2ef4a8e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22957','({31820}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{31821}) and\r\n{31821}>0','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High inbound bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{31820}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{31821}','0','','0','In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High inbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','d9a23c4dee9c4fd0862748923d656023');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22958','({31822}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{31823}) and\r\n{31823}>0','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High outbound bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{31822}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{31823}','0','','0','Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High outbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','4c120cefd9dd4f8aa257023610b3ed19');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22959','{31824}>{$IF.ERRORS.WARN:"{#IFNAME}"}','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High input error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold.',NULL,'0','2','1','{31825}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors in: {ITEM.LASTVALUE1}','0','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High input error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','5a58e9ffee1f45c4a4f859c1f0b7c2dc');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22960','{31826}>{$IF.ERRORS.WARN:"{#IFNAME}"}','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High output error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold.',NULL,'0','2','1','{31827}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors out: {ITEM.LASTVALUE2}','0','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High output error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','9d6dafdae44343f1a4e0934ec44da7b3');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22961','{$IFCONTROL:"{#IFNAME}"}=1 and ({31828}=2)','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4a189b213b8e40589be007367361d70e');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13075','{12648}>95','Zabbix server: More than 95% used in the value cache','','0','3','Consider increasing ValueCacheSize in the zabbix_server.conf configuration file.','13074','0','0','0','','0','','0','','0','','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13436','{13205}>75','Zabbix server: Utilization of vmware collector processes is high','','0','3','','13097','0','0','1','{13205}<65','0','','0','','0','Zabbix server: Utilization of vmware collector processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13467','{13165}>75','Zabbix server: Utilization of alerter processes is high','','0','3','','13080','0','0','1','{13165}<65','0','','0','','0','Zabbix server: Utilization of alerter processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13468','{13171}>75','Zabbix server: Utilization of configuration syncer processes is high','','0','3','','13081','0','0','1','{13171}<65','0','','0','','0','Zabbix server: Utilization of configuration syncer processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13470','{13173}>75','Zabbix server: Utilization of discoverer processes is high','','0','3','','13083','0','0','1','{13173}<65','0','','0','','0','Zabbix server: Utilization of discoverer processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13471','{13175}>75','Zabbix server: Utilization of escalator processes is high','','0','3','','13084','0','0','1','{13175}<65','0','','0','','0','Zabbix server: Utilization of escalator processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13472','{13177}>75','Zabbix server: Utilization of history syncer processes is high','','0','3','','13085','0','0','1','{13177}<65','0','','0','','0','Zabbix server: Utilization of history syncer processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13473','{23301}>75','Zabbix server: Utilization of housekeeper processes is high','','0','3','','13086','0','0','1','{23301}<65','0','','0','','0','Zabbix server: Utilization of housekeeper processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13474','{13181}>75','Zabbix server: Utilization of http poller processes is high','','0','3','','13087','0','0','1','{13181}<65','0','','0','','0','Zabbix server: Utilization of http poller processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13475','{13183}>75','Zabbix server: Utilization of icmp pinger processes is high','','0','3','','13088','0','0','1','{13183}<65','0','','0','','0','Zabbix server: Utilization of icmp pinger processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13476','{13185}>75','Zabbix server: Utilization of ipmi poller processes is high','','0','3','','13089','0','0','1','{13185}<65','0','','0','','0','Zabbix server: Utilization of ipmi poller processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13477','{13187}>75','Zabbix server: Utilization of java poller processes is high','','0','3','','13275','0','0','1','{13187}<65','0','','0','','0','Zabbix server: Utilization of java poller processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13479','{13189}>75','Zabbix server: Utilization of poller processes is high','','0','3','','13091','0','0','1','{13189}<65','0','','0','','0','Zabbix server: Utilization of poller processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13480','{13191}>75','Zabbix server: Utilization of proxy poller processes is high','','0','3','','13092','0','0','1','{13191}<65','0','','0','','0','Zabbix server: Utilization of proxy poller processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13481','{23302}>75','Zabbix server: Utilization of self-monitoring processes is high','','0','3','','13093','0','0','1','{23302}<65','0','','0','','0','Zabbix server: Utilization of self-monitoring processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13482','{13195}>75','Zabbix server: Utilization of snmp trapper processes is high','','0','3','','13441','0','0','1','{13195}<65','0','','0','','0','Zabbix server: Utilization of snmp trapper processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13483','{13199}>75','Zabbix server: Utilization of timer processes is high','','0','3','','13094','0','0','1','{13199}<65','0','','0','','0','Zabbix server: Utilization of timer processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13484','{13201}>75','Zabbix server: Utilization of trapper processes is high','','0','3','','13095','0','0','1','{13201}<65','0','','0','','0','Zabbix server: Utilization of trapper processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13485','{13203}>75','Zabbix server: Utilization of unreachable poller processes is high','','0','3','','13096','0','0','1','{13203}<65','0','','0','','0','Zabbix server: Utilization of unreachable poller processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13486','{12895}>100','Zabbix server: More than 100 items having missing data for more than 10 minutes','','0','2','zabbix[stats,{$IP},{$PORT},queue,10m] item is collecting data about how many items are missing data for more than 10 minutes.','13023','0','0','0','','0','','0','','0','','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13487','{12896}>75','Zabbix server: More than 75% used in the configuration cache','','0','3','Consider increasing CacheSize in the zabbix_server.conf configuration file.','13015','0','0','0','','0','','0','','0','','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13488','{12897}>75','Zabbix server: More than 75% used in the history cache','','0','3','Consider increasing HistoryCacheSize in the zabbix_server.conf configuration file.','13073','0','0','0','','0','','0','','0','','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13489','{12898}>75','Zabbix server: More than 75% used in the history index cache','','0','3','Consider increasing HistoryIndexCacheSize in the zabbix_server.conf configuration file.','13017','0','0','0','','0','','0','','0','','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13490','{12899}>75','Zabbix server: More than 75% used in the trends cache','','0','3','Consider increasing TrendCacheSize in the zabbix_server.conf configuration file.','13019','0','0','0','','0','','0','','0','','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13537','{12966}>75','Zabbix server: More than 75% used in the vmware cache','','0','3','Consider increasing VMwareCacheSize in the zabbix_server.conf configuration file.','13536','0','0','0','','0','','0','','0','','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13558','{13161}=1','Zabbix server: Zabbix value cache working in low memory mode','','0','4','Once the low memory mode has been switched on, the value cache will remain in this state for 24 hours, even if the problem that triggered this mode is resolved sooner.','13557','0','0','0','','0','','0','','0','','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13560','{13197}>75','Zabbix server: Utilization of task manager processes is high','','0','3','','13559','0','0','1','{13197}<65','0','','0','','0','Zabbix server: Utilization of task manager processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13563','{13223}>75','Zabbix server: Utilization of ipmi manager processes is high','','0','3','','13562','0','0','1','{13223}<65','0','','0','','0','Zabbix server: Utilization of ipmi manager processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13567','{13227}>75','Zabbix server: Utilization of alert manager processes is high','','0','3','','13566','0','0','1','{13227}<65','0','','0','','0','Zabbix server: Utilization of alert manager processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13570','{13230}>75','Zabbix server: Utilization of preprocessing manager processes is high','','0','3','','13568','0','0','1','{13230}<65','0','','0','','0','Zabbix server: Utilization of preprocessing manager processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('13571','{13231}>75','Zabbix server: Utilization of preprocessing worker processes is high','','0','3','','13569','0','0','1','{13231}<65','0','','0','','0','Zabbix server: Utilization of preprocessing worker processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15854','{18077}>75','Zabbix server: Utilization of lld manager processes is high','','0','3','','15853','0','0','1','{18077}<65','0','','0','','0','Zabbix server: Utilization of lld manager processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('15856','{18079}>75','Zabbix server: Utilization of lld worker processes is high','','0','3','','15855','0','0','1','{18079}<65','0','','0','','0','Zabbix server: Utilization of lld worker processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('16274','{18736}>75','Zabbix server: Utilization of alert syncer processes is high','','0','3','','16273','0','0','1','{18736}<65','0','','0','','0','Zabbix server: Utilization of alert syncer processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17537','{20767}>75','Zabbix server: Utilization of availability manager processes is high','','0','3','','17535','0','0','1','{20767}<65','0','','0','','0','Zabbix server: Utilization of availability manager processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('17538','{20768}>75','Zabbix server: Utilization of history poller processes is high','','0','3','','17536','0','0','1','{20768}<65','0','','0','','0','Zabbix server: Utilization of history poller processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18532','{22369}>75','Zabbix server: Utilization of report manager processes is high','','0','3','','18530','0','0','1','{22369}<65','0','','0','','0','Zabbix server: Utilization of report manager processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18533','{22370}>75','Zabbix server: Utilization of report writer processes is high','','0','3','','18531','0','0','1','{22370}<65','0','','0','','0','Zabbix server: Utilization of report writer processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18981','{23308}>75','Zabbix server: Utilization of service manager processes is high','','0','3','','18978','0','0','1','{23308}<65','0','','0','','0','Zabbix server: Utilization of service manager processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18982','{23309}>75','Zabbix server: Utilization of trigger housekeeper processes is high','','0','3','','18979','0','0','1','{23309}<65','0','','0','','0','Zabbix server: Utilization of trigger housekeeper processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('18983','{23310}<>{23311} and length({23312})>0','Zabbix server: Version has changed','','0','1','Zabbix server version has changed. Ack to close.','18980','0','0','0','','0','','1','','0','Zabbix server: Version has changed (new version: {ITEM.VALUE})','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21195','{28244}<>{28245}','Cluster node [{#NODE.NAME}]: Status changed','','0','1','The state of the node has changed. Confirm to close.','21194','0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('21198','{28254}>75','Zabbix server: Utilization of ODBC poller processes is high','','0','3','','21197','0','0','1','{28254}<65','0','','0','','0','Zabbix server: Utilization of ODBC poller processes over 75%','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22382','{30605}<{$KERNEL.MAXFILES.MIN}','Configured max number of open filedescriptors is too low','','0','1','','22368','0','0','0','','0','','0','','0','Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN})','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22383','{30606}<{$KERNEL.MAXPROC.MIN}','Configured max number of processes is too low','','0','1','','22369','0','0','0','','0','','0','','0','Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN})','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22384','{30607}>{$CPU.UTIL.CRIT}','High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.','22370','0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22385','{30608}<>{30609} and length({30610})>0','System name has changed','','0','1','System name has changed. Ack to close.','22371','0','0','0','','0','','1','','0','System name has changed (new name: {ITEM.VALUE})','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22386','{30611}=0','System time is out of sync','','0','2','The host system time is different from the Zabbix server time.','22372','0','0','0','','0','','1','','0','System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s)','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22387','{30612}<>{30613} and length({30614})>0','Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','22373','0','0','0','','0','','1','','0','','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22388','{30615}<10m','has been restarted','','0','2','The host uptime is less than 10 minutes','22374','0','0','0','','0','','1','','0','{HOST.NAME} has been restarted (uptime < 10m)','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22389','{30616}<>{30617}','/etc/passwd has been changed','','0','1','','22375','0','0','0','','0','','1','','0','','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22390','{30618}>{$MEMORY.UTIL.MAX}','High memory utilization','','0','3','The system is running out of free memory.','22376','0','0','0','','0','','0','','0','High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22391','{30619}=0','Zabbix agent is not available','','0','3','For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold.','22377','0','0','0','','0','','1','','0','Zabbix agent is not available (for {$AGENT.TIMEOUT})','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22392','{30620}/{30621}*100>80','Getting closer to process limit','','0','2','','22378','0','0','0','','0','','0','{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit.','0','Getting closer to process limit (over 80% used)','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22393','{30955}<{$SWAP.PFREE.MIN.WARN} and {30956}>0','High swap space usage','','0','2','This trigger is ignored, if there is no swap configured.','22379','0','0','0','','0','','0','Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22394','{30957}<{$MEMORY.AVAILABLE.MIN} and {30958}>0','Lack of available memory','','0','3','','22380','0','0','0','','0','','0','Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22395','{30626}/{30627}>{$LOAD_AVG_PER_CPU.MAX.WARN}\r\nand {30628}>0\r\nand {30629}>0','Load average is too high','','0','3','Per CPU load average is too high. Your system may be slow to respond.','22381','0','0','0','','0','','0','Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}','0','Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22404','{30995}<0 and {30996}>0\r\nand\r\n({30997}=6 or {30997}=1)\r\nand\r\n({30998}<>2)','Interface {#IFNAME}: Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','22396','0','2','1','({30995}>0 and {30999}>0) or\r\n({30998}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22405','{30657}>{$IF.ERRORS.WARN:"{#IFNAME}"}\r\nor {30658}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Interface {#IFNAME}: High error rate','','0','2','Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold','22397','0','2','1','{30659}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8\r\nand {30660}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}: High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22406','{$IFCONTROL:"{#IFNAME}"}=1 and {30661}=2 and ({30662}<>{30663})','Interface {#IFNAME}: Link down','','0','3','This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','22398','0','2','1','{30661}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22407','{30664} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {30665} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}','{#DEVNAME}: Disk read/write request responses are too high','','0','2','This trigger might indicate disk {#DEVNAME} saturation.','22399','0','2','0','','0','','1','','0','{#DEVNAME}: Disk read/write request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} ms for 15m or write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} ms for 15m)','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22408','{31433}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and\r\n(({31434}-{31435})<{$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"} or {31436}<1d)','{#FSNAME}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.','22400','0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%)','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22409','{31437}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and\r\n(({31438}-{31439})<{$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"} or {31440}<1d)','{#FSNAME}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"}.\r\n - The disk will be full in less than 24 hours.','22401','0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%)','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22410','{30674}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}','{#FSNAME}: Running out of free inodes','','0','3','It may become impossible to write to disk if there are no index nodes left.\r\nAs symptoms, \'No space left on device\' or \'Disk is full\' errors may be seen even though free space is available.','22402','0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%)','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22411','{30675}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}','{#FSNAME}: Running out of free inodes','','0','2','It may become impossible to write to disk if there are no index nodes left.\r\nAs symptoms, \'No space left on device\' or \'Disk is full\' errors may be seen even though free space is available.','22403','0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%)','');
INSERT INTO `triggers` (`triggerid`,`expression`,`description`,`url`,`status`,`priority`,`comments`,`templateid`,`type`,`flags`,`recovery_mode`,`recovery_expression`,`correlation_mode`,`correlation_tag`,`manual_close`,`opdata`,`discover`,`event_name`,`uuid`) values ('22560','({31006}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{31007} or\r\n{31008}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{31007}) and\r\n{31007}>0','Interface {#IFNAME}: High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.','22558','0','2','1','{31006}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{31007} and\r\n{31008}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{31007}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Interface {#IFNAME}: High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53810','17412','17411');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53811','17414','17413');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53812','17416','17415');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53813','15944','15947');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53814','15944','15943');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53815','15943','15947');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53816','16888','15947');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53817','16888','15943');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53818','15948','15949');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53819','15950','15949');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53820','17429','17428');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53821','17431','17430');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53822','17433','17432');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53823','17355','17354');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53824','17358','17357');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53825','18960','18962');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53826','16743','16744');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53827','16784','16785');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53828','16790','16791');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53829','16892','16900');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53830','16894','16900');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53831','17459','17458');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53832','17463','17458');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53833','17471','17480');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53834','17476','17481');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53835','17478','17480');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53836','17479','17481');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53837','17483','17482');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53838','17486','17485');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53839','16646','16647');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53840','18965','16660');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53841','16809','16810');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53842','18966','16677');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53843','16902','16904');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53844','16904','16905');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53845','16906','16904');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53846','16909','16906');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53847','16910','16912');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53848','16912','16913');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53849','16914','16912');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53850','16917','16914');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53851','17962','17963');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53852','17962','17958');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53853','22584','22585');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53854','21208','21209');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53855','21210','21211');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53856','21212','21213');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53857','21214','21215');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53858','16752','16753');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53859','15955','15957');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53860','15955','15954');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53861','15954','15957');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53862','15956','15957');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53863','15956','15954');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53864','16678','15957');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53865','16678','15954');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53866','15961','15960');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53867','15962','15960');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53868','16679','15960');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53876','21255','21260');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53877','21256','21260');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53878','21257','21260');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53879','21258','21260');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53880','21259','21260');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53883','17090','17096');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53884','17093','17096');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53885','17101','17098');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53886','16257','16255');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53887','16257','16256');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53888','16256','16255');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53889','16251','16255');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53890','16251','16256');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53891','16443','16255');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53892','16443','16256');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53893','16270','16269');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53894','16448','16269');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53895','16265','16269');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53896','22610','22609');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53897','22611','22609');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53898','22614','22617');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53899','22615','22609');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53900','22616','22614');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53901','22616','22617');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53902','22619','22618');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53903','22620','22625');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53904','22621','22625');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53905','22622','22625');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53906','22623','22625');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53907','22624','22625');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53908','22628','22629');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53909','22630','22631');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53910','17503','17505');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53911','17512','17511');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53912','17513','17505');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53918','17519','17518');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53919','22563','17518');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53920','22564','22563');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53921','22564','17518');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53922','22564','17519');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53923','18918','18917');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53924','17973','17965');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53925','17974','17966');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53926','17540','17541');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53927','16833','16920');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53928','16920','16921');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53929','18987','18986');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53930','18989','18988');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53931','18993','18992');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53932','18994','18992');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53933','19009','19010');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53934','17978','17977');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53935','17980','17979');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53936','17984','17983');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53937','17985','17983');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53938','18000','18001');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53939','18225','18224');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53940','18237','18236');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53941','16929','16928');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53942','16940','17084');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53943','18537','18536');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53944','18539','18538');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53945','18541','18540');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53946','16719','16721');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53947','16975','16723');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53948','16729','16728');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53949','16730','16728');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53950','16756','16758');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53951','16979','16759');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53952','16765','16764');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53953','16766','16764');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53954','16734','16736');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53955','16983','16732');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53956','16741','16740');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53957','16742','16740');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53958','17192','17191');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53959','17194','17195');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53960','17199','17198');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53961','17546','17545');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53962','17547','17548');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53963','16997','16984');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53964','17002','17003');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53965','17006','17005');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53966','17011','17010');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53967','17550','17549');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53968','17551','17552');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53969','17391','17396');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53970','17395','17396');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53971','16683','16687');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53972','15347','15346');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53973','15345','15344');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53974','17567','17566');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53975','21271','21270');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53976','21272','21271');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53977','21272','21270');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53978','16287','16289');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53979','16289','21270');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53980','21535','21534');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53981','16631','16630');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53982','14252','14251');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53983','14253','14252');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53984','14253','14251');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53985','15695','16863');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53986','18242','16863');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53987','18243','16863');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53988','15671','16841');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53989','18250','16841');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53990','18251','16841');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53991','15698','16866');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53992','18294','16866');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53993','18295','16866');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53994','16031','16563');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53995','16039','16040');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53996','16042','16579');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53997','16041','16042');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53998','16041','16579');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('53999','18132','18452');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54000','18130','18132');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54001','18130','18452');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54002','16070','16069');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54003','16072','16071');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54004','16076','17024');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54005','22559','17024');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54006','18455','17024');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54007','17244','17243');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54008','17246','17240');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54009','17249','17247');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54010','17251','17249');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54011','17251','17247');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54012','18144','18458');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54013','18142','18144');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54014','18142','18458');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54015','17268','17267');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54016','17270','17269');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54017','17271','17273');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54018','22562','17273');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54019','18460','17273');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54020','18157','18156');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54021','18155','18157');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54022','18155','18156');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54023','16009','16008');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54024','16011','16010');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54025','22644','22643');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54026','22657','22656');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54027','16161','16160');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54028','16162','16161');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54029','16162','16160');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54030','16166','18162');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54031','16167','18162');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54032','17035','16160');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54033','18161','18162');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54034','16183','16182');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54035','17911','17042');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54036','18465','17042');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54037','18466','17042');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54038','17043','17912');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54039','17043','17913');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54040','17285','17287');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54041','17286','17285');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54042','17286','17287');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54043','17291','18170');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54044','17292','18170');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54045','17283','17287');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54046','18169','18170');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54047','17306','17305');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54048','17917','17310');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54049','18469','17310');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54050','18470','17310');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54051','17311','17918');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54052','17311','17919');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54053','21544','21543');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54054','21545','21544');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54055','21545','21543');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54056','16492','21546');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54057','21547','21548');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54058','21548','21543');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54059','21549','21552');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54060','21550','21552');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54061','21551','21552');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54062','14318','14319');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54063','21555','21554');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54064','21556','21555');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54065','21556','21554');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54066','21559','21560');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54067','21560','21554');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54068','17554','15717');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54069','17555','15717');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54070','17555','17554');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54071','17556','15717');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54072','17557','15717');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54073','17557','17556');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54074','21561','21564');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54075','21562','21564');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54076','21563','21564');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54077','17559','17558');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54078','17561','17560');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54079','21567','21566');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54080','17563','17562');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54081','17565','17564');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54082','21570','21569');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54083','21571','21570');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54084','21571','21569');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54085','15721','15720');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54086','21573','21574');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54087','21574','21569');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54088','15394','15393');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54089','21575','21578');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54090','21576','21578');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54091','21577','21578');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54092','15392','15391');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54093','17322','14339');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54094','21580','21579');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54095','21581','21580');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54096','21581','21579');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54097','21584','21586');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54098','21586','21579');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54099','21588','21587');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54100','21589','21588');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54101','21589','21587');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54102','21592','21594');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54103','21594','21587');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54104','15382','15381');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54105','21595','21598');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54106','21596','21598');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54107','21597','21598');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54108','15380','15379');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54109','16504','16505');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54110','14372','14373');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54111','15386','15385');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54112','21599','21602');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54113','21600','21602');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54114','21601','21602');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54115','15384','15383');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54116','14380','14381');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54117','18299','18298');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54118','18300','18299');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54119','18300','18298');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54120','18303','18302');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54121','18309','18308');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54122','18311','18316');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54123','18312','18316');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54124','18313','18316');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54125','18314','18316');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54126','18315','18316');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54127','18319','18318');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54128','18321','18320');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54129','18323','18322');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54130','18326','18325');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54131','18327','18326');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54132','18327','18325');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54133','18330','18329');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54134','18336','18335');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54135','18338','18343');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54136','18339','18343');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54137','18340','18343');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54138','18341','18343');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54139','18342','18343');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54140','18346','18345');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54141','18348','18347');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54142','18350','18349');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54143','18353','18352');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54144','18354','18353');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54145','18354','18352');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54146','18357','18356');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54147','18363','18362');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54148','18365','18370');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54149','18366','18370');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54150','18367','18370');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54151','18368','18370');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54152','18369','18370');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54153','18373','18372');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54154','18375','18374');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54155','18377','18376');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54156','18380','18379');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54157','18381','18380');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54158','18381','18379');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54159','18384','18383');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54160','18390','18389');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54161','18392','18397');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54162','18393','18397');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54163','18394','18397');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54164','18395','18397');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54165','18396','18397');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54166','18400','18399');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54167','18402','18401');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54168','18404','18403');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54169','18407','18406');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54170','18408','18407');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54171','18408','18406');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54172','18411','18410');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54173','18417','18416');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54174','18419','18424');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54175','18420','18424');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54176','18421','18424');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54177','18422','18424');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54178','18423','18424');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54179','18427','18426');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54180','18429','18428');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54181','18431','18430');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54182','21604','21603');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54183','21605','21604');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54184','21605','21603');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54185','21609','21608');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54186','21610','21611');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54187','21611','21603');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54188','21613','21612');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54189','21614','21613');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54190','21614','21612');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54191','21617','21616');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54192','21618','21619');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54193','21619','21612');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54194','21621','21620');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54195','21622','21621');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54196','21622','21620');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54197','21625','21624');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54198','21626','21627');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54199','21627','21620');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54200','21630','21629');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54201','21633','21632');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54202','21635','21634');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54203','21640','21639');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54204','21642','21645');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54205','21643','21645');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54206','21644','21645');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54207','21648','21647');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54208','21650','21649');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54209','21655','21654');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54210','21657','21660');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54211','21658','21660');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54212','21659','21660');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54213','21662','21661');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54214','21664','21663');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54215','21667','21666');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54216','21668','21667');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54217','21668','21666');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54218','21670','21671');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54219','21671','21666');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54220','15334','15333');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54221','21672','21675');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54222','21673','21675');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54223','21674','21675');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54224','15332','15331');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54225','14460','14461');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54226','16523','21669');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54227','21678','21677');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54228','21679','21678');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54229','21679','21677');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54230','16525','21680');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54231','21681','21682');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54232','21682','21677');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54233','21683','21686');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54234','21684','21686');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54235','21685','21686');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54236','14476','14477');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54237','21688','21687');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54238','21689','21688');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54239','21689','21687');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54240','21691','21692');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54241','21692','21687');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54242','21693','21696');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54243','21694','21696');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54244','21695','21696');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54245','14495','14496');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54246','21699','21698');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54247','21700','21699');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54248','21700','21698');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54249','14511','17574');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54250','16530','21701');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54251','21702','21703');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54252','21703','21698');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54253','21704','21707');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54254','21705','21707');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54255','21706','21707');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54256','19666','19665');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54257','19667','19668');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54258','21710','21709');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54259','21711','21710');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54260','21711','21709');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54261','21713','21714');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54262','21714','21709');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54263','21715','21718');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54264','21716','21718');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54265','21717','21718');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54266','21721','21720');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54267','21722','21721');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54268','21722','21720');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54269','21724','21725');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54270','21725','21720');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54271','16532','21723');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54272','21726','21729');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54273','21727','21729');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54274','21728','21729');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54275','14551','14552');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54276','21732','21731');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54277','21733','21732');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54278','21733','21731');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54279','21735','21736');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54280','21736','21731');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54281','15374','15373');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54282','21737','21740');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54283','21738','21740');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54284','21739','21740');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54285','15376','15375');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54286','14914','14915');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54287','21743','21742');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54288','21744','21743');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54289','21744','21742');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54290','21746','21747');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54291','21747','21742');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54292','14589','14590');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54293','16538','21745');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54294','21748','21751');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54295','21749','21751');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54296','21750','21751');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54297','21754','21753');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54298','21755','21754');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54299','21755','21753');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54300','21757','21758');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54301','21758','21753');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54302','21759','21762');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54303','21760','21762');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54304','21761','21762');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54305','15338','15337');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54306','17333','17332');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54307','21764','21763');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54308','21765','21764');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54309','21765','21763');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54310','16540','21766');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54311','21767','21768');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54312','21768','21763');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54313','14624','14625');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54314','21769','21772');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54315','21770','21772');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54316','21771','21772');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54317','18434','18433');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54318','18435','18434');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54319','18435','18433');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54320','18438','18439');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54321','18439','18433');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54322','18441','18444');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54323','18442','18444');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54324','18443','18444');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54325','18446','18447');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54326','18450','18449');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54327','21775','21774');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54328','21776','21775');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54329','21776','21774');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54330','19681','21777');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54331','21778','21779');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54332','21779','21774');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54333','19685','19684');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54334','19688','19687');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54335','21780','21783');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54336','21781','21783');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54337','21782','21783');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54338','19696','19695');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54339','21785','21784');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54340','21786','21785');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54341','21786','21784');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54342','19709','21787');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54343','21788','21789');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54344','21789','21784');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54345','19713','19712');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54346','19716','19715');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54347','21790','21793');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54348','21791','21793');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54349','21792','21793');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54350','19724','19723');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54351','21795','21794');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54352','21796','21795');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54353','21796','21794');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54354','19737','21797');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54355','21798','21799');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54356','21799','21794');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54357','19741','19740');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54358','19744','19743');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54359','21800','21803');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54360','21801','21803');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54361','21802','21803');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54362','19752','19751');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54363','21805','21804');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54364','21806','21805');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54365','21806','21804');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54366','19765','21807');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54367','21808','21809');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54368','21809','21804');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54369','19769','19768');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54370','19772','19771');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54371','21810','21813');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54372','21811','21813');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54373','21812','21813');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54374','19780','19779');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54375','21815','21814');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54376','21816','21815');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54377','21816','21814');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54378','19793','21817');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54379','21818','21819');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54380','21819','21814');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54381','19797','19796');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54382','19800','19799');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54383','21820','21823');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54384','21821','21823');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54385','21822','21823');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54386','19808','19807');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54387','21825','21824');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54388','21826','21825');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54389','21826','21824');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54390','19821','21827');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54391','21828','21829');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54392','21829','21824');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54393','19825','19824');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54394','19828','19827');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54395','21830','21833');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54396','21831','21833');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54397','21832','21833');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54398','19836','19835');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54399','21835','21834');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54400','21836','21835');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54401','21836','21834');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54402','19849','21837');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54403','21838','21839');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54404','21839','21834');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54405','19853','19852');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54406','19856','19855');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54407','21840','21843');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54408','21841','21843');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54409','21842','21843');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54410','19864','19863');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54411','21845','21844');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54412','21846','21845');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54413','21846','21844');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54414','19877','21847');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54415','21848','21849');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54416','21849','21844');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54417','19881','19880');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54418','19884','19883');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54419','21850','21853');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54420','21851','21853');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54421','21852','21853');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54422','19892','19891');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54423','21855','21854');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54424','21856','21855');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54425','21856','21854');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54426','19905','21857');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54427','21858','21859');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54428','21859','21854');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54429','19909','19908');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54430','19912','19911');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54431','21860','21863');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54432','21861','21863');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54433','21862','21863');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54434','19920','19919');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54435','21865','21864');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54436','21866','21865');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54437','21866','21864');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54438','19933','21867');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54439','21868','21869');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54440','21869','21864');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54441','19937','19936');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54442','19940','19939');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54443','21870','21873');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54444','21871','21873');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54445','21872','21873');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54446','19948','19947');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54447','21875','21874');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54448','21876','21875');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54449','21876','21874');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54450','19961','21877');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54451','21878','21879');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54452','21879','21874');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54453','19965','19964');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54454','19968','19967');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54455','21880','21883');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54456','21881','21883');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54457','21882','21883');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54458','19976','19975');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54459','21885','21884');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54460','21886','21885');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54461','21886','21884');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54462','19989','21887');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54463','21888','21889');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54464','21889','21884');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54465','19993','19992');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54466','19996','19995');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54467','21890','21893');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54468','21891','21893');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54469','21892','21893');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54470','20004','20003');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54471','21895','21894');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54472','21896','21895');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54473','21896','21894');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54474','20017','21897');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54475','21898','21899');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54476','21899','21894');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54477','20021','20020');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54478','20024','20023');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54479','21900','21903');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54480','21901','21903');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54481','21902','21903');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54482','20032','20031');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54483','21905','21904');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54484','21906','21905');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54485','21906','21904');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54486','20045','21907');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54487','21908','21909');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54488','21909','21904');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54489','20049','20048');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54490','20052','20051');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54491','21910','21913');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54492','21911','21913');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54493','21912','21913');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54494','20060','20059');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54495','21915','21914');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54496','21916','21915');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54497','21916','21914');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54498','20073','21917');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54499','21918','21919');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54500','21919','21914');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54501','20077','20076');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54502','20080','20079');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54503','21920','21923');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54504','21921','21923');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54505','21922','21923');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54506','20088','20087');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54507','21925','21924');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54508','21926','21925');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54509','21926','21924');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54510','20101','21927');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54511','21928','21929');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54512','21929','21924');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54513','20105','20104');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54514','20108','20107');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54515','21930','21933');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54516','21931','21933');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54517','21932','21933');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54518','20116','20115');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54519','21935','21934');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54520','21936','21935');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54521','21936','21934');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54522','20129','21937');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54523','21938','21939');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54524','21939','21934');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54525','20133','20132');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54526','20136','20135');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54527','21940','21943');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54528','21941','21943');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54529','21942','21943');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54530','20144','20143');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54531','21945','21944');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54532','21946','21945');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54533','21946','21944');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54534','20157','21947');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54535','21948','21949');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54536','21949','21944');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54537','20161','20160');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54538','20164','20163');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54539','21950','21953');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54540','21951','21953');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54541','21952','21953');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54542','20172','20171');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54543','21955','21954');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54544','21956','21955');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54545','21956','21954');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54546','20185','21957');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54547','21958','21959');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54548','21959','21954');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54549','20189','20188');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54550','20192','20191');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54551','21960','21963');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54552','21961','21963');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54553','21962','21963');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54554','20200','20199');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54555','21965','21964');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54556','21966','21965');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54557','21966','21964');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54558','20213','21967');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54559','21968','21969');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54560','21969','21964');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54561','20217','20216');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54562','20220','20219');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54563','21970','21973');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54564','21971','21973');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54565','21972','21973');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54566','20228','20227');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54567','21975','21974');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54568','21976','21975');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54569','21976','21974');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54570','20241','21977');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54571','21978','21979');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54572','21979','21974');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54573','20245','20244');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54574','20248','20247');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54575','21980','21983');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54576','21981','21983');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54577','21982','21983');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54578','20256','20255');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54579','21985','21984');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54580','21986','21985');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54581','21986','21984');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54582','20269','21987');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54583','21988','21989');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54584','21989','21984');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54585','20273','20272');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54586','20276','20275');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54587','21990','21993');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54588','21991','21993');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54589','21992','21993');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54590','20284','20283');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54591','21995','21994');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54592','21996','21995');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54593','21996','21994');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54594','20297','21997');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54595','21998','21999');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54596','21999','21994');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54597','20301','20300');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54598','20304','20303');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54599','22000','22003');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54600','22001','22003');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54601','22002','22003');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54602','20312','20311');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54603','22005','22004');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54604','22006','22005');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54605','22006','22004');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54606','20325','22007');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54607','22008','22009');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54608','22009','22004');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54609','20329','20328');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54610','20332','20331');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54611','22010','22013');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54612','22011','22013');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54613','22012','22013');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54614','20340','20339');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54615','22015','22014');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54616','22016','22015');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54617','22016','22014');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54618','20353','22017');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54619','22018','22019');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54620','22019','22014');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54621','20357','20356');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54622','20360','20359');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54623','22020','22023');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54624','22021','22023');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54625','22022','22023');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54626','20368','20367');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54627','22025','22024');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54628','22026','22025');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54629','22026','22024');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54630','20381','22027');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54631','22028','22029');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54632','22029','22024');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54633','20385','20384');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54634','20388','20387');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54635','22030','22033');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54636','22031','22033');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54637','22032','22033');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54638','20396','20395');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54639','22035','22034');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54640','22036','22035');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54641','22036','22034');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54642','20409','22037');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54643','22038','22039');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54644','22039','22034');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54645','20413','20412');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54646','20416','20415');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54647','22040','22043');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54648','22041','22043');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54649','22042','22043');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54650','20424','20423');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54651','22045','22044');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54652','22046','22045');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54653','22046','22044');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54654','20437','22047');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54655','22048','22049');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54656','22049','22044');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54657','20441','20440');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54658','20444','20443');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54659','22050','22053');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54660','22051','22053');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54661','22052','22053');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54662','20452','20451');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54663','22055','22054');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54664','22056','22055');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54665','22056','22054');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54666','20465','22057');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54667','22058','22059');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54668','22059','22054');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54669','20469','20468');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54670','20472','20471');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54671','22060','22063');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54672','22061','22063');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54673','22062','22063');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54674','20480','20479');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54675','22065','22064');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54676','22066','22065');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54677','22066','22064');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54678','20493','22067');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54679','22068','22069');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54680','22069','22064');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54681','20497','20496');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54682','20500','20499');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54683','22070','22073');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54684','22071','22073');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54685','22072','22073');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54686','20508','20507');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54687','22075','22074');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54688','22076','22075');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54689','22076','22074');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54690','20521','22077');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54691','22078','22079');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54692','22079','22074');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54693','20525','20524');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54694','20528','20527');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54695','22080','22083');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54696','22081','22083');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54697','22082','22083');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54698','20536','20535');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54699','22085','22084');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54700','22086','22085');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54701','22086','22084');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54702','20549','22087');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54703','22088','22089');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54704','22089','22084');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54705','20553','20552');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54706','20556','20555');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54707','22090','22093');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54708','22091','22093');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54709','22092','22093');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54710','20564','20563');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54711','22095','22094');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54712','22096','22095');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54713','22096','22094');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54714','20577','22097');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54715','22098','22099');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54716','22099','22094');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54717','20581','20580');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54718','20584','20583');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54719','22100','22103');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54720','22101','22103');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54721','22102','22103');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54722','20592','20591');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54723','22105','22104');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54724','22106','22105');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54725','22106','22104');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54726','20605','22107');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54727','22108','22109');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54728','22109','22104');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54729','20609','20608');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54730','20612','20611');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54731','22110','22113');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54732','22111','22113');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54733','22112','22113');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54734','20620','20619');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54735','22115','22114');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54736','22116','22115');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54737','22116','22114');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54738','20633','22117');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54739','22118','22119');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54740','22119','22114');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54741','20637','20636');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54742','20640','20639');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54743','22120','22123');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54744','22121','22123');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54745','22122','22123');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54746','20648','20647');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54747','22125','22124');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54748','22126','22125');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54749','22126','22124');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54750','20661','22127');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54751','22128','22129');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54752','22129','22124');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54753','20665','20664');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54754','20668','20667');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54755','22130','22133');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54756','22131','22133');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54757','22132','22133');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54758','20676','20675');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54759','22135','22134');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54760','22136','22135');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54761','22136','22134');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54762','20689','22137');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54763','22138','22139');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54764','22139','22134');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54765','20693','20692');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54766','20696','20695');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54767','22140','22143');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54768','22141','22143');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54769','22142','22143');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54770','20704','20703');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54771','22145','22144');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54772','22146','22145');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54773','22146','22144');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54774','20717','22147');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54775','22148','22149');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54776','22149','22144');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54777','20721','20720');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54778','20724','20723');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54779','22150','22153');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54780','22151','22153');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54781','22152','22153');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54782','20732','20731');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54783','22155','22154');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54784','22156','22155');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54785','22156','22154');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54786','20745','22157');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54787','22158','22159');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54788','22159','22154');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54789','20749','20748');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54790','20752','20751');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54791','22160','22163');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54792','22161','22163');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54793','22162','22163');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54794','20760','20759');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54795','22165','22164');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54796','22166','22165');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54797','22166','22164');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54798','20773','22167');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54799','22168','22169');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54800','22169','22164');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54801','20777','20776');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54802','20780','20779');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54803','22170','22173');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54804','22171','22173');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54805','22172','22173');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54806','20788','20787');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54807','22175','22174');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54808','22176','22175');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54809','22176','22174');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54810','20801','22177');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54811','22178','22179');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54812','22179','22174');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54813','20805','20804');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54814','20808','20807');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54815','22180','22183');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54816','22181','22183');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54817','22182','22183');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54818','20816','20815');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54819','22185','22184');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54820','22186','22185');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54821','22186','22184');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54822','20829','22187');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54823','22188','22189');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54824','22189','22184');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54825','20833','20832');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54826','20836','20835');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54827','22190','22193');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54828','22191','22193');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54829','22192','22193');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54830','20844','20843');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54831','22195','22194');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54832','22196','22195');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54833','22196','22194');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54834','20857','22197');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54835','22198','22199');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54836','22199','22194');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54837','20861','20860');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54838','20864','20863');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54839','22200','22203');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54840','22201','22203');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54841','22202','22203');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54842','20872','20871');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54843','22205','22204');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54844','22206','22205');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54845','22206','22204');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54846','20885','22207');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54847','22208','22209');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54848','22209','22204');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54849','20889','20888');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54850','20892','20891');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54851','22210','22213');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54852','22211','22213');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54853','22212','22213');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54854','20900','20899');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54855','22215','22214');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54856','22216','22215');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54857','22216','22214');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54858','20913','22217');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54859','22218','22219');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54860','22219','22214');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54861','20917','20916');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54862','20920','20919');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54863','22220','22223');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54864','22221','22223');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54865','22222','22223');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54866','20928','20927');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54867','22225','22224');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54868','22226','22225');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54869','22226','22224');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54870','20941','22227');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54871','22228','22229');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54872','22229','22224');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54873','20945','20944');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54874','20948','20947');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54875','22230','22233');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54876','22231','22233');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54877','22232','22233');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54878','20956','20955');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54879','22235','22234');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54880','22236','22235');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54881','22236','22234');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54882','20969','22237');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54883','22238','22239');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54884','22239','22234');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54885','20973','20972');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54886','20976','20975');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54887','22240','22243');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54888','22241','22243');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54889','22242','22243');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54890','20984','20983');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54891','22245','22244');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54892','22246','22245');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54893','22246','22244');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54894','20997','22247');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54895','22248','22249');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54896','22249','22244');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54897','21001','21000');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54898','21004','21003');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54899','22250','22253');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54900','22251','22253');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54901','22252','22253');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54902','21012','21011');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54903','22255','22254');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54904','22256','22255');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54905','22256','22254');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54906','21025','22257');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54907','22258','22259');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54908','22259','22254');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54909','21029','21028');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54910','21032','21031');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54911','22260','22263');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54912','22261','22263');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54913','22262','22263');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54914','21040','21039');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54915','22265','22264');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54916','22266','22265');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54917','22266','22264');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54918','21053','22267');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54919','22268','22269');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54920','22269','22264');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54921','21057','21056');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54922','21060','21059');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54923','22270','22273');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54924','22271','22273');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54925','22272','22273');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54926','21068','21067');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54927','22275','22274');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54928','22276','22275');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54929','22276','22274');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54930','21081','22277');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54931','22278','22279');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54932','22279','22274');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54933','21085','21084');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54934','21088','21087');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54935','22280','22283');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54936','22281','22283');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54937','22282','22283');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54938','21096','21095');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54939','22285','22284');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54940','22286','22285');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54941','22286','22284');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54942','21109','22287');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54943','22288','22289');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54944','22289','22284');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54945','21113','21112');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54946','21116','21115');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54947','22290','22293');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54948','22291','22293');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54949','22292','22293');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54950','21124','21123');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54951','22295','22294');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54952','22296','22295');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54953','22296','22294');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54954','21137','22297');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54955','22298','22299');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54956','22299','22294');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54957','21141','21140');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54958','21144','21143');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54959','22300','22303');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54960','22301','22303');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54961','22302','22303');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54962','21152','21151');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54963','22305','22304');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54964','22306','22305');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54965','22306','22304');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54966','21165','22307');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54967','22308','22309');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54968','22309','22304');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54969','21169','21168');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54970','21172','21171');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54971','22310','22313');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54972','22311','22313');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54973','22312','22313');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54974','21180','21179');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54975','22315','22314');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54976','22316','22315');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54977','22316','22314');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54978','16543','22317');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54979','22318','22319');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54980','22319','22314');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54981','14664','14665');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54982','17085','17086');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54983','22320','22323');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54984','22321','22323');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54985','22322','22323');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54986','16547','16546');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54987','17576','17575');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54988','17578','17577');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54989','17628','17626');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54990','17629','17627');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54991','17632','17630');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54992','17633','17631');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54993','17635','17634');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54994','17637','17636');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54995','17686','17684');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54996','17687','17685');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54997','17690','17688');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54998','17691','17689');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('54999','17693','17692');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55000','17695','17694');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55001','17730','17728');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55002','17731','17729');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55003','17734','17732');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55004','17735','17733');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55005','17737','17736');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55006','17754','17752');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55007','17755','17753');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55008','17757','17756');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55009','17819','17817');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55010','17820','17818');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55011','17823','17821');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55012','17824','17822');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55013','17826','17825');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55014','17860','17858');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55015','17861','17859');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55016','17864','17862');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55017','17865','17863');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55018','17899','17897');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55019','17900','17898');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55020','17903','17901');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55021','17904','17902');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55022','17906','17905');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55023','17908','17907');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55024','22325','22324');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55025','22326','22325');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55026','22326','22324');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55027','16549','22327');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55028','22328','22329');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55029','22329','22324');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55030','22330','22333');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55031','22331','22333');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55032','22332','22333');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55033','17910','17909');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55034','22335','22334');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55035','22336','22335');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55036','22336','22334');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55037','16551','16552');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55038','16555','22337');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55039','22338','22339');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55040','22339','22334');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55041','22340','22343');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55042','22341','22343');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55043','22342','22343');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55044','22346','22345');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55045','22347','22346');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55046','22347','22345');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55047','22349','22350');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55048','22350','22345');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55049','22351','22354');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55050','22352','22354');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55051','22353','22354');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55052','22356','22355');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55053','22357','22356');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55054','22357','22355');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55055','22359','22360');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55056','22360','22355');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55057','22361','22364');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55058','22362','22364');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55059','22363','22364');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55060','22369','22378');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55061','22383','22392');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55062','22370','22381');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55063','22384','22395');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55064','22373','22371');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55065','22387','22385');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55066','22375','22373');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55067','22389','22387');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55068','22375','22371');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55069','22389','22385');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55070','22376','22380');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55071','22390','22394');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55072','22379','22376');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55073','22393','22390');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55074','22379','22380');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55075','22393','22394');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55076','22396','22398');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55077','22558','22398');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55078','22397','22398');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55079','22401','22400');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55080','22403','22402');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55081','22404','22406');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55082','22560','22406');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55083','22405','22406');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55084','22409','22408');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55085','22411','22410');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55086','22414','22422');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55087','22415','22425');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55088','22418','22416');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55089','22420','22418');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55090','22420','22416');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55091','22421','22424');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55092','22423','22421');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55093','22423','22424');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55094','22426','22428');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55095','22561','22428');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55096','22427','22428');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55097','22431','22430');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55098','22433','22432');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55099','16141','16142');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55100','16146','16573');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55101','16143','16584');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55102','18152','18462');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55103','18150','18152');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55104','18150','18462');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55105','16152','16883');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55106','16153','16883');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55107','18463','16883');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55108','18464','16883');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55109','16156','16155');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55110','16158','16157');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55111','22435','22434');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55112','22436','22435');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55113','22436','22434');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55114','22438','22440');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55115','22439','22442');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55116','22440','22434');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55117','22441','22439');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55118','22441','22442');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55119','22445','22448');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55120','22446','22448');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55121','22447','22448');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55122','22451','22450');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55123','22453','22452');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55124','22457','22465');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55125','22458','22465');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55126','22459','22461');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55127','22460','22459');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55128','22460','22461');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55129','22467','22461');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55130','22468','22465');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55131','22469','22472');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55132','22470','22472');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55133','22471','22472');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55134','22473','22474');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55135','22473','22475');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55136','22478','22477');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55137','22480','22488');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55138','22481','22488');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55139','22482','22484');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55140','22483','22482');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55141','22483','22484');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55142','22489','22484');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55143','22490','22488');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55144','22491','22494');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55145','22492','22494');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55146','22493','22494');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55147','22495','22496');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55148','22495','22497');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55149','22500','22499');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55150','22502','22501');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55151','22503','22502');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55152','22503','22501');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55153','22506','22507');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55154','22507','22501');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55155','22508','22511');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55156','22509','22511');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55157','22510','22511');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55158','22513','22512');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55159','18596','18597');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55160','18629','18630');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55161','18662','18663');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55162','18695','18696');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55163','18728','18729');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55164','18947','18948');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55165','18794','18795');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55166','18495','18496');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55167','18831','18832');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55168','18864','18865');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55169','18897','18898');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55170','22516','22515');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55171','22517','22516');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55172','22517','22515');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55173','22519','22520');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55174','22520','22515');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55175','22522','22521');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55176','22523','22522');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55177','22523','22521');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55178','22525','22526');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55179','22526','22521');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55180','16772','16773');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55181','16771','16772');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55182','16771','16773');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55183','16769','16770');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55184','16768','16769');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55185','16768','16770');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55186','19230','19231');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55187','19233','19232');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55188','19235','19234');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55189','19236','19234');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55190','19236','19235');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55191','19238','19237');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55192','19239','19240');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55193','19242','19243');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55194','19245','19244');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55195','19247','19246');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55196','19249','19248');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55197','19251','19250');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55198','19253','19252');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55199','19255','19254');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55200','19258','19257');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55201','22528','22527');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55202','22529','22528');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55203','22529','22527');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55204','22531','22532');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55205','22532','22527');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55206','16488','16487');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55207','16485','16484');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55208','16486','16484');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55209','16486','16485');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55210','16480','16479');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55211','16482','16481');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55212','16475','16474');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55213','16471','16472');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55214','16468','16469');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55215','16459','16460');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55216','16462','16463');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55217','16465','16466');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55218','16477','16476');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55219','19263','19262');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55220','19266','19265');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55221','19268','19267');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55222','19270','19269');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55223','19272','19271');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55224','19276','19275');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55225','19278','19277');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55226','19280','19279');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55227','19282','19281');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55228','19288','19287');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55229','19293','19292');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55230','19294','19292');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55231','19294','19293');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55232','19295','19296');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55233','19297','19295');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55234','19297','19296');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55235','19299','19298');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55236','19301','19302');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55237','19303','19302');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55238','19305','19304');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55239','19307','19306');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55240','19308','19306');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55241','19308','19307');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55242','19310','19309');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55243','19314','19313');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55244','19317','19316');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55245','19319','19318');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55246','19321','19320');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55247','19323','19322');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55248','19327','19326');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55249','19329','19328');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55250','19331','19330');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55251','19333','19332');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55252','19339','19338');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55253','19344','19343');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55254','19345','19343');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55255','19345','19344');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55256','19346','19347');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55257','19348','19346');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55258','19348','19347');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55259','19350','19349');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55260','19352','19353');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55261','19354','19353');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55262','19356','19355');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55263','19358','19357');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55264','19359','19357');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55265','19359','19358');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55266','19361','19360');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55267','19365','19364');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55268','19368','19367');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55269','19370','19369');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55270','19372','19371');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55271','19374','19373');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55272','19378','19377');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55273','19380','19379');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55274','19382','19381');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55275','19384','19383');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55276','19390','19389');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55277','19395','19394');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55278','19396','19394');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55279','19396','19395');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55280','19397','19398');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55281','19399','19397');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55282','19399','19398');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55283','19401','19400');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55284','19403','19404');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55285','19405','19404');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55286','19407','19406');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55287','19409','19408');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55288','19410','19408');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55289','19410','19409');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55290','19412','19411');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55291','19416','19415');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55292','19419','19418');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55293','19421','19420');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55294','19423','19422');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55295','19425','19424');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55296','19429','19428');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55297','19431','19430');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55298','19433','19432');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55299','19435','19434');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55300','19441','19440');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55301','19446','19445');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55302','19447','19445');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55303','19447','19446');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55304','19448','19449');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55305','19450','19448');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55306','19450','19449');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55307','19452','19451');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55308','19454','19455');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55309','19456','19455');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55310','19458','19457');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55311','19460','19459');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55312','19461','19459');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55313','19461','19460');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55314','19463','19462');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55315','22534','22533');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55316','22535','22534');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55317','22535','22533');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55318','15729','15728');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55319','15730','15728');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55320','15730','15729');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55321','16577','22536');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55322','22537','22538');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55323','22538','22533');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55324','15752','15754');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55325','15753','15754');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55326','15753','15752');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55327','15742','15741');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55328','15750','15749');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55329','15751','15750');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55330','15751','15749');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55331','15746','15743');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55332','15744','15743');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55333','15740','15739');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55334','17946','17945');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55335','17948','17947');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55336','15748','15747');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55337','19467','19466');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55338','19471','19470');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55339','19473','19472');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55340','19474','19472');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55341','19474','19473');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55342','19476','19475');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55343','19478','19477');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55344','19480','19479');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55345','19482','19483');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55346','19484','19483');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55347','19486','19485');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55348','19509','19508');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55349','19513','19512');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55350','19517','19516');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55351','19519','19518');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55352','19520','19518');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55353','19520','19519');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55354','19522','19521');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55355','19524','19523');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55356','19526','19525');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55357','19528','19529');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55358','19530','19529');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55359','19532','19531');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55360','19555','19554');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55361','19559','19558');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55362','19563','19562');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55363','19565','19564');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55364','19566','19564');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55365','19566','19565');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55366','19568','19567');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55367','19570','19569');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55368','19572','19571');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55369','19574','19575');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55370','19576','19575');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55371','19578','19577');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55372','19601','19600');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55373','19605','19604');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55374','19609','19608');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55375','19611','19610');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55376','19612','19610');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55377','19612','19611');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55378','19614','19613');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55379','19616','19615');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55380','19618','19617');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55381','19620','19621');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55382','19622','19621');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55383','19624','19623');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55384','19647','19646');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55385','22540','22539');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55386','22541','22540');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55387','22541','22539');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55388','16440','16439');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55389','22543','22544');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55390','22544','22539');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55391','18003','15790');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55392','18004','15787');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55393','18005','15787');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55394','18005','18004');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55395','15786','15785');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55396','15784','15783');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55397','15794','15792');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55398','15793','15792');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55399','15782','15781');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55400','15797','15796');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55401','22546','22545');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55402','22547','22546');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55403','22547','22545');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55404','15825','15824');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55405','15826','15824');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55406','15826','15825');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55407','22549','22550');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55408','22550','22545');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55409','15828','15829');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55410','15831','15832');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55411','15834','15835');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55412','17141','17151');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55413','17142','17141');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55414','17142','17151');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55415','17143','17151');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55416','17144','17143');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55417','17144','17151');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55418','17146','17145');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55419','17147','17151');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55420','17148','17147');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55421','17148','17151');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55422','17150','17149');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55423','17152','17168');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55424','17153','17152');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55425','17153','17168');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55426','17154','17168');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55427','17155','17154');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55428','17155','17168');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55429','17156','17168');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55430','17157','17156');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55431','17157','17168');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55432','17158','17168');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55433','17159','17158');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55434','17159','17168');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55435','17160','17168');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55436','17161','17160');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55437','17161','17168');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55438','17163','17162');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55439','17164','17168');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55440','17165','17164');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55441','17165','17168');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55442','17166','17168');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55443','17167','17166');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55444','17167','17168');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55445','17169','17168');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55446','17170','17168');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55447','17170','17169');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55448','17171','17168');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55449','17172','17168');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55450','17172','17171');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55451','22552','22551');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55452','22553','22552');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55453','22553','22551');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55454','22555','22556');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55455','22556','22551');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55456','15845','15846');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55457','17223','17227');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55458','17226','17227');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55459','22661','22660');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55460','22679','22684');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55461','22681','22684');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55462','22687','22684');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55463','22689','22688');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55464','22690','22694');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55465','22696','22699');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55466','22697','22699');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55467','22698','22699');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55468','22708','22707');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55469','22739','22738');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55470','22755','22759');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55471','22761','22764');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55472','22762','22764');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55473','22763','22764');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55474','22773','22772');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55475','22804','22803');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55476','22820','22821');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55477','22840','22841');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55478','22956','22961');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55479','22957','22961');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55480','22958','22961');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55481','22959','22961');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55482','22960','22961');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55483','22594','22595');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55484','22603','22601');
INSERT INTO `trigger_depends` (`triggerdepid`,`triggerid_down`,`triggerid_up`) values ('55485','22606','22607');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('12641','22189','13015','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('12645','22183','13073','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('12646','22191','13074','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('12648','23620','13075','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('12649','22185','13019','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('12651','22396','13017','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('12653','22219','13023','min','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('12726','22859','13339','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('12742','22899','13355','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('12758','22939','13371','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('12790','23019','13403','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('12806','23059','13419','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('12895','23271','13486','min','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('12896','23273','13487','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('12897','23274','13488','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('12898','23275','13489','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('12899','23276','13490','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('12949','23359','13520','min','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('12965','23634','13536','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('12966','23635','13537','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('12996','23646','13546','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('12997','23647','13547','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('12998','23648','13548','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13068','23115','13367','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13069','22922','13366','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13070','22918','13365','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13071','22917','13364','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13072','22882','13350','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13073','22878','13349','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13074','22877','13348','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13075','22962','13382','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13086','23042','13414','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13087','22842','13334','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13088','22838','13333','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13089','22837','13332','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13090','23007','13399','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13091','23002','13398','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13092','22998','13397','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13093','22997','13396','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13152','23651','13551','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13154','23649','13549','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13156','23650','13550','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13157','23652','13552','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13158','23653','13553','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13159','23654','13285','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13160','23661','13557','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13161','23662','13558','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13164','22424','13080','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13165','23252','13467','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13170','22412','13081','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13171','23253','13468','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13172','22430','13083','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13173','23255','13470','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13174','22422','13084','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13175','23256','13471','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13176','22406','13085','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13177','23257','13472','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13180','22402','13087','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13181','23259','13474','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13182','22418','13088','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13183','23260','13475','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13184','22416','13089','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13185','23261','13476','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13186','22689','13275','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13187','23262','13477','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13188','22399','13091','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13189','23264','13479','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13190','22420','13092','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13191','23265','13480','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13194','23171','13441','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13195','23267','13482','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13196','23663','13559','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13197','23664','13560','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13198','22426','13094','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13199','23268','13483','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13200','22404','13095','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13201','23269','13484','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13202','22400','13096','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13203','23270','13485','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13204','22401','13097','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13205','23328','13436','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13222','25366','13562','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13223','25367','13563','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13226','25370','13566','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13227','25371','13567','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13228','25665','13568','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13229','25666','13569','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13230','25667','13570','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('13231','25668','13571','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('14378','27067','14251','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('14379','27066','14252','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('14380','27065','14253','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('15111','27905','14664','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('15112','27905','14664','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('15113','27905','14665','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('15114','27905','14665','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('15115','27905','14666','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('15116','27905','14666','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('15731','27032','14941','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16818','27213','15330','count','$,#1,"eq","{$FAN_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16819','27479','15331','count','$,#1,"eq","{$PSU_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16820','27479','15332','count','$,#1,"ne","{$PSU_OK_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16821','27480','15333','count','$,#1,"eq","{$FAN_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16822','27480','15334','count','$,#1,"ne","{$FAN_OK_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16829','27786','15337','count','$,#1,"eq","{$PSU_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16830','27786','15338','count','$,#1,"eq","{$PSU_WARN_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16831','27787','15339','count','$,#1,"eq","{$FAN_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16832','27554','15340','count','$,#1,"eq","{$PSU_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16833','27555','15341','count','$,#1,"eq","{$FAN_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16840','27422','15344','count','$,#1,"eq","{$PSU_CRIT_STATUS:\\"critical\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16841','27422','15344','count','$,#1,"eq","{$PSU_CRIT_STATUS:\\"shutdown\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16842','27422','15345','count','$,#1,"eq","{$PSU_WARN_STATUS:\\"warning\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16843','27422','15345','count','$,#1,"eq","{$PSU_WARN_STATUS:\\"notFunctioning\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16844','27423','15346','count','$,#1,"eq","{$FAN_CRIT_STATUS:\\"critical\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16845','27423','15346','count','$,#1,"eq","{$FAN_CRIT_STATUS:\\"shutdown\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16846','27423','15347','count','$,#1,"eq","{$FAN_WARN_STATUS:\\"warning\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16847','27423','15347','count','$,#1,"eq","{$FAN_WARN_STATUS:\\"notFunctioning\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16890','27518','15366','count','$,#1,"eq","{$PSU_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16891','27519','15367','count','$,#1,"eq","{$FAN_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16895','27593','15369','count','$,#1,"eq","{$PSU_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16896','27595','15370','count','$,#1,"eq","{$FAN_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16897','27673','15371','count','$,#1,"eq","{$FAN_CRIT_STATUS:\\"fanError\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16898','27673','15371','count','$,#1,"eq","{$FAN_CRIT_STATUS:\\"hardwareFaulty\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16899','27674','15372','count','$,#1,"eq","{$PSU_CRIT_STATUS:\\"psuError\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16900','27674','15372','count','$,#1,"eq","{$PSU_CRIT_STATUS:\\"rpsError\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16901','27674','15372','count','$,#1,"eq","{$PSU_CRIT_STATUS:\\"hardwareFaulty\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16902','28154','15373','count','$,#1,"eq","{$FAN_CRIT_STATUS:\\"bad\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16903','28154','15374','count','$,#1,"eq","{$FAN_WARN_STATUS:\\"warning\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16904','28155','15375','count','$,#1,"eq","{$PSU_CRIT_STATUS:\\"bad\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16905','28155','15376','count','$,#1,"eq","{$PSU_WARN_STATUS:\\"warning\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16906','27822','15377','count','$,#1,"eq","{$FAN_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16907','27823','15378','count','$,#1,"eq","{$PSU_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16908','27312','15379','count','$,#1,"eq","{$PSU_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16909','27312','15380','count','$,#1,"ne","{$PSU_OK_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16910','27313','15381','count','$,#1,"eq","{$FAN_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16911','27313','15382','count','$,#1,"ne","{$FAN_OK_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16912','27316','15383','count','$,#1,"eq","{$PSU_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16913','27316','15384','count','$,#1,"ne","{$PSU_OK_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16914','27317','15385','count','$,#1,"eq","{$FAN_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16915','27317','15386','count','$,#1,"ne","{$FAN_OK_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16924','27248','15391','count','$,#1,"eq","{$PSU_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16925','27248','15392','count','$,#1,"ne","{$PSU_OK_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16926','27250','15393','count','$,#1,"eq","{$FAN_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16927','27250','15394','count','$,#1,"ne","{$FAN_OK_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16928','27755','15395','count','$,#1,"eq","{$FAN_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16935','27942','15398','count','$,#1,"eq","{$FAN_CRIT_STATUS:\\"failed\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('16936','27943','15399','count','$,#1,"eq","{$PSU_CRIT_STATUS:\\"failed\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17692','27101','15671','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17693','27101','15671','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17694','27100','15671','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17695','27107','15671','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17696','27101','15671','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17812','27081','15695','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17813','27081','15695','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17814','27080','15695','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17815','27087','15695','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17816','27081','15695','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17827','27121','15698','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17828','27121','15698','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17829','27120','15698','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17830','27127','15698','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17831','27121','15698','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17866','28326','15717','count','$,#1,"eq","{$FAN_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17869','28329','15719','count','$,#1,"eq","{$PSU_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17870','27238','15720','count','$,#1,"eq","{$HEALTH_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17871','27238','15721','count','$,#1,"eq","{$HEALTH_WARN_STATUS:\\"offline\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17872','27238','15721','count','$,#1,"eq","{$HEALTH_WARN_STATUS:\\"testing\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17873','27814','15722','count','$,#1,"eq","{$HEALTH_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17879','28341','15728','count','$,#1,"eq","{$HEALTH_DISASTER_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17880','28341','15729','count','$,#1,"eq","{$HEALTH_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17881','28341','15730','count','$,#1,"eq","{$HEALTH_WARN_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17892','28354','15735','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17893','28354','15735','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17900','28356','15738','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17901','28356','15738','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17902','28358','15739','count','$,#1,"eq","{$PSU_CRIT_STATUS:\\"critical\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17903','28358','15739','count','$,#1,"eq","{$PSU_CRIT_STATUS:\\"nonRecoverable\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17904','28358','15740','count','$,#1,"eq","{$PSU_WARN_STATUS:\\"nonCritical\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17905','28359','15741','count','$,#1,"eq","{$FAN_CRIT_STATUS:\\"criticalUpper\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17906','28359','15741','count','$,#1,"eq","{$FAN_CRIT_STATUS:\\"nonRecoverableUpper\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17907','28359','15741','count','$,#1,"eq","{$FAN_CRIT_STATUS:\\"criticalLower\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17908','28359','15741','count','$,#1,"eq","{$FAN_CRIT_STATUS:\\"nonRecoverableLower\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17909','28359','15741','count','$,#1,"eq","{$FAN_CRIT_STATUS:\\"failed\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17910','28359','15742','count','$,#1,"eq","{$FAN_WARN_STATUS:\\"nonCriticalUpper\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17911','28359','15742','count','$,#1,"eq","{$FAN_WARN_STATUS:\\"nonCriticalLower\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17912','28361','15743','count','$,#1,"eq","{$DISK_FAIL_STATUS:\\"critical\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17913','28361','15743','count','$,#1,"eq","{$DISK_FAIL_STATUS:\\"nonRecoverable\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17914','28361','15744','count','$,#1,"eq","{$DISK_WARN_STATUS:\\"nonCritical\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17917','28363','15746','count','$,#1,"eq","{$DISK_SMART_FAIL_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17918','28373','15747','count','$,#1,"eq","{$VDISK_CRIT_STATUS:\\"failed\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17919','28373','15748','count','$,#1,"eq","{$VDISK_WARN_STATUS:\\"degraded\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17920','28374','15749','count','$,#1,"eq","{$DISK_ARRAY_FAIL_STATUS:\\"nonRecoverable\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17921','28374','15750','count','$,#1,"eq","{$DISK_ARRAY_CRIT_STATUS:\\"critical\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17922','28374','15751','count','$,#1,"eq","{$DISK_ARRAY_WARN_STATUS:\\"nonCritical\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17923','28376','15752','count','$,#1,"eq","{$DISK_ARRAY_CACHE_BATTERY_WARN_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17924','28376','15753','count','$,#1,"ne","{$DISK_ARRAY_CACHE_BATTERY_OK_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17925','28376','15754','count','$,#1,"eq","{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17971','28411','15781','count','$,#1,"eq","{$PSU_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17972','28411','15782','count','$,#1,"eq","{$PSU_WARN_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17973','28412','15783','count','$,#1,"eq","{$FAN_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17974','28412','15784','count','$,#1,"eq","{$FAN_WARN_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17975','28413','15785','count','$,#1,"eq","{$DISK_ARRAY_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17976','28413','15786','count','$,#1,"eq","{$DISK_ARRAY_WARN_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17977','28415','15787','count','$,#1,"eq","{$DISK_ARRAY_CACHE_CRIT_STATUS:\\"cacheModCriticalFailure\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17983','28416','15790','count','$,#1,"eq","{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS:\\"failed\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17984','28416','15790','count','$,#1,"eq","{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS:\\"capacitorFailed\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17987','28417','15792','count','$,#1,"eq","{$DISK_FAIL_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17988','28417','15793','count','$,#1,"eq","{$DISK_WARN_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17989','28418','15794','count','$,#1,"eq","{$DISK_SMART_FAIL_STATUS:\\"replaceDrive\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17990','28418','15794','count','$,#1,"eq","{$DISK_SMART_FAIL_STATUS:\\"replaceDriveSSDWearOut\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17993','28423','15796','count','$,#1,"eq","{$VDISK_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('17994','28423','15797','count','$,#1,"ne","{$VDISK_OK_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18031','28465','15824','count','$,#1,"eq","{$HEALTH_DISASTER_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18032','28465','15825','count','$,#1,"eq","{$HEALTH_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18033','28465','15826','count','$,#1,"eq","{$HEALTH_WARN_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18042','28475','15831','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18043','28475','15831','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18044','28475','15832','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18045','28475','15832','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18046','28475','15833','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18047','28475','15833','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18048','28476','15834','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18049','28476','15834','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18050','28476','15835','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18051','28476','15835','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18052','28476','15836','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18053','28476','15836','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18054','28477','15837','count','$,#1,"ne","{$PSU_OK_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18055','28478','15838','count','$,#1,"ne","{$FAN_OK_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18056','28480','15839','count','$,#1,"ne","{$DISK_OK_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18076','28535','15853','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18077','28536','15854','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18078','28537','15855','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18079','28538','15856','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18080','28543','15857','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18081','28549','15858','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18082','28542','15859','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18083','28551','15860','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18084','28548','15861','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18085','28544','15862','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18086','28541','15863','min','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18087','28561','15864','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18088','28563','15865','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18089','28564','15866','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18090','28565','15867','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18091','28566','15868','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18092','28567','15869','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18094','28569','15871','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18095','28570','15872','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18096','28562','15873','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18097','28571','15874','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18098','28573','15875','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18099','28574','15876','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18100','28575','15877','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18101','28576','15878','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18102','28577','15879','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18103','28578','15880','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18104','28579','15881','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18105','28580','15882','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18106','28572','15883','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18107','28581','15884','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18108','28552','15885','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18109','28547','15886','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18110','28559','15887','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18111','28582','15888','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18112','28583','15889','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18117','28587','15894','min','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18169','28743','15943','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18170','28748','15944','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18174','28746','15947','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18175','28775','15948','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18176','28776','15949','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18177','28777','15950','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18178','28791','15951','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18183','28810','15954','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18184','28805','15955','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18185','28816','15956','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18186','28809','15957','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18191','28822','15960','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18192','28823','15961','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18193','28827','15962','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18255','29048','16007','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18264','29030','16010','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18265','29030','16011','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18300','29198','16031','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18306','29110','16035','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18307','29112','16036','fuzzytime','$,{$SYSTEM.FUZZYTIME.MAX}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18310','29116','16038','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18311','29117','16039','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18312','29118','16040','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18313','29117','16040','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18363','29213','16071','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18364','29213','16072','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18501','29395','16138','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18502','29398','16139','fuzzytime','$,{$SYSTEM.FUZZYTIME.MAX}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18505','29424','16141','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18506','29423','16142','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18507','29424','16142','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18510','29421','16144','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18513','29427','16146','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18526','29442','16152','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18527','29442','16152','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18528','29443','16152','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18529','29444','16152','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18530','29442','16152','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18531','29443','16153','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18532','29443','16153','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18533','29444','16153','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18534','29443','16153','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18545','29447','16157','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18546','29447','16158','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18548','29454','16160','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18549','29455','16161','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18550','29457','16162','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18555','29467','16166','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18556','29469','16167','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18557','29472','16168','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18558','29473','16169','fuzzytime','$,{$SYSTEM.FUZZYTIME.MAX}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18620','29544','16196','max','$,{$AGENT.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18621','29547','16197','nodata','$,{$AGENT.NODATA_TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18711','29696','16250','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18712','29695','16251','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18715','29692','16254','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18716','29659','16255','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18717','29655','16256','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18718','29660','16257','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18719','29720','16258','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18720','29738','16259','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18726','29771','16264','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18727','29775','16265','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18730','29772','16268','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18731','29742','16269','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18732','29743','16270','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18733','29803','16271','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18734','29821','16272','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18735','29822','16273','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18736','29823','16274','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('18756','27154','16289','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19090','29994','16439','count','$,#1,"eq","{$HEALTH_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19091','29994','16440','count','$,#1,"eq","{$HEALTH_WARN_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19093','29998','16442','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19094','29654','16443','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19098','29693','16446','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19099','29688','16447','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19100','29741','16448','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19104','29774','16451','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19105','29773','16452','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19113','30066','16459','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19114','30066','16459','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19115','30066','16460','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19116','30066','16460','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19117','30066','16461','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19118','30066','16461','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19119','30067','16462','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19120','30067','16462','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19121','30067','16463','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19122','30067','16463','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19123','30067','16464','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19124','30067','16464','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19125','30068','16465','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19126','30068','16465','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19127','30068','16466','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19128','30068','16466','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19129','30068','16467','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19130','30068','16467','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19131','30069','16468','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19132','30069','16468','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19133','30069','16469','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19134','30069','16469','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19135','30069','16470','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19136','30069','16470','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19137','30070','16471','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19138','30070','16471','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19139','30070','16472','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19140','30070','16472','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19141','30070','16473','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19142','30070','16473','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19143','30071','16474','count','$,#1,"eq","{$PSU_CRIT_STATUS:\\"inoperable\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19144','30071','16475','count','$,#1,"eq","{$PSU_WARN_STATUS:\\"degraded\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19145','30072','16476','count','$,#1,"eq","{$HEALTH_CRIT_STATUS:\\"computeFailed\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19146','30072','16476','count','$,#1,"eq","{$HEALTH_CRIT_STATUS:\\"configFailure\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19147','30072','16476','count','$,#1,"eq","{$HEALTH_CRIT_STATUS:\\"unconfigFailure\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19148','30072','16476','count','$,#1,"eq","{$HEALTH_CRIT_STATUS:\\"inoperable\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19149','30072','16477','count','$,#1,"eq","{$HEALTH_WARN_STATUS:\\"testFailed\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19150','30072','16477','count','$,#1,"eq","{$HEALTH_WARN_STATUS:\\"thermalProblem\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19151','30072','16477','count','$,#1,"eq","{$HEALTH_WARN_STATUS:\\"powerProblem\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19152','30072','16477','count','$,#1,"eq","{$HEALTH_WARN_STATUS:\\"voltageProblem\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19153','30072','16477','count','$,#1,"eq","{$HEALTH_WARN_STATUS:\\"diagnosticsFailed\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19156','30075','16479','count','$,#1,"eq","{$FAN_CRIT_STATUS:\\"inoperable\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19157','30075','16480','count','$,#1,"eq","{$FAN_WARN_STATUS:\\"degraded\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19158','30076','16481','count','$,#1,"eq","{$DISK_FAIL_STATUS:\\"failed\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19159','30076','16482','count','$,#1,"eq","{$DISK_CRIT_STATUS:\\"bad\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19160','30076','16482','count','$,#1,"eq","{$DISK_CRIT_STATUS:\\"predictiveFailure\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19161','30080','16483','count','$,#1,"ne","{$VDISK_OK_STATUS:\\"equipped\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19162','30083','16484','count','$,#1,"eq","{$DISK_ARRAY_CRIT_STATUS:\\"inoperable\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19163','30083','16485','count','$,#1,"eq","{$DISK_ARRAY_WARN_STATUS:\\"degraded\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19164','30083','16486','count','$,#1,"ne","{$DISK_ARRAY_OK_STATUS:\\"operable\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19165','30085','16487','count','$,#1,"eq","{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19166','30085','16488','count','$,#1,"ne","{$DISK_ARRAY_CACHE_BATTERY_OK_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19171','27208','16491','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19175','30091','16494','count','$,#1,"eq","{$PSU_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19176','30092','16495','count','$,#1,"eq","{$PSU_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19177','27240','16496','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19179','27294','16498','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19185','27315','16504','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19186','27315','16504','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19187','27315','16505','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19188','27315','16505','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19189','27315','16506','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19190','27315','16506','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19193','27376','16508','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19202','28246','16514','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19203','27417','16515','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19209','27478','16521','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19213','27511','16524','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19217','27547','16527','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19219','27586','16529','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19225','27671','16533','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19227','28143','16535','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19229','27753','16537','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19235','28894','16541','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19240','27904','16545','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19249','27936','16548','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19259','27975','16554','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19263','30129','16557','count','$,#1,"eq","{$FAN_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19264','30130','16558','count','$,#1,"eq","{$PSU_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19265','28003','16559','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19267','28031','16561','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19269','29096','16563','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19270','29087','16563','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19271','29101','16563','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19272','29100','16563','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19299','29420','16573','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19300','29417','16573','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19301','29419','16573','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19302','29418','16573','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19305','28987','16575','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19306','28990','16575','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19307','28988','16575','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19308','28989','16575','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19406','30142','16624','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19456','30191','16644','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19459','30187','16646','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19460','30188','16647','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19461','30199','16648','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19462','30200','16649','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19463','30201','16650','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19464','30202','16651','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19466','30208','16653','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19467','30209','16654','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19468','30196','16655','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19469','30221','16656','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19470','30224','16657','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19471','30225','16658','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19472','30226','16659','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19474','30234','16661','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19479','30242','16665','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19480','30243','16666','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19481','30244','16667','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19482','30245','16668','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19484','30251','16670','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19485','30252','16671','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19486','30239','16672','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19487','30264','16673','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19488','30267','16674','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19489','30268','16675','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19490','30269','16676','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19492','28804','16678','find','$,,"like","HTTP/1.1 200"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19493','28804','16678','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19494','28821','16679','find','$,,"like","HTTP/1.1 200"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19495','28821','16679','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19497','30322','16681','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19498','30312','16681','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19501','30276','16683','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19502','30317','16684','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19503','30326','16685','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19504','30333','16686','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19505','30273','16687','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19511','30281','16691','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19512','30274','16692','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19513','30298','16693','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19514','30347','16694','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19517','30398','16696','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19548','29434','16710','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19549','29435','16710','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19552','30425','16713','min','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19558','30470','16719','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19560','30454','16721','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19562','30432','16723','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19563','30445','16724','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19564','30450','16725','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19567','30476','16727','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19568','30477','16728','count','$,#1,"eq","No"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19569','30477','16729','count','$,#1,"ne","Yes"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19570','30478','16730','count','$,#1,"eq","No"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19572','30481','16732','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19575','30505','16734','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19577','30514','16736','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19578','30495','16737','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19579','30519','16738','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19580','30524','16739','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19581','30525','16740','count','$,#1,"eq","No"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19582','30525','16741','count','$,#1,"ne","Yes"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19583','30526','16742','count','$,#1,"eq","No"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19584','30537','16743','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19585','30530','16744','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19588','30599','16746','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19589','30604','16746','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19592','30614','16748','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19593','30634','16748','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19594','30633','16749','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19595','30632','16749','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19596','30631','16750','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19597','30628','16751','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19598','30627','16752','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19599','30611','16753','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19600','30615','16754','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19603','30676','16756','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19605','30660','16758','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19606','30638','16759','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19607','30651','16760','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19608','30656','16761','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19611','30682','16763','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19612','30683','16764','count','$,#1,"eq","No"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19613','30683','16765','count','$,#1,"ne","Yes"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19614','30684','16766','count','$,#1,"eq","No"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19616','30689','16768','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19617','30689','16769','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19618','30689','16770','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19619','30689','16771','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19620','30689','16772','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19621','30689','16773','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19622','30697','16774','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19623','30698','16774','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19624','30709','16774','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19625','30710','16775','min','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19626','30708','16776','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19627','30708','16777','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19628','30705','16778','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19629','30705','16779','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19630','30705','16780','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19631','30712','16781','min','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19632','30699','16782','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19633','30696','16783','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19634','30692','16784','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19635','30690','16785','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19636','30715','16786','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19637','30716','16787','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19638','30717','16788','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19639','30714','16789','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19640','30724','16790','min','$,1h');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19641','30724','16791','min','$,1h');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19642','30725','16792','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19643','30729','16793','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19644','30733','16794','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19645','30758','16795','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19659','30789','16809','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19660','30790','16810','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19674','30854','16824','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19675','30858','16825','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19676','30864','16826','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19677','30862','16827','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19679','30827','16829','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19680','30837','16830','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19683','30846','16832','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19684','30846','16833','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19687','30843','16835','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19688','30880','16836','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19689','30891','16836','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19690','30883','16837','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19691','30884','16838','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19692','30885','16839','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19693','30890','16840','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19756','27421','16871','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19757','27421','16871','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19792','30912','16886','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19795','30896','16888','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19796','30927','16889','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19797','30944','16889','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19800','30945','16891','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19801','30924','16892','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19802','30954','16893','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19803','30956','16894','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19804','30960','16895','max','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19805','30930','16896','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19806','30931','16897','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19809','30939','16899','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19810','30923','16900','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19811','30963','16901','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19812','30968','16902','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19813','30975','16903','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19814','30984','16904','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19815','31004','16905','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19816','31006','16906','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19817','31007','16907','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19819','31009','16909','min','$,{$IIS.QUEUE.MAX.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19820','31010','16910','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19821','31017','16911','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19822','31026','16912','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19823','31046','16913','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19824','31048','16914','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19825','31049','16915','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19827','31051','16917','min','$,{$IIS.QUEUE.MAX.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19832','30821','16920','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19833','31054','16920','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19834','31054','16921','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19841','31092','16925','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19842','31095','16925','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19845','31056','16927','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19846','31096','16928','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19847','31096','16929','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19848','31106','16930','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19849','31114','16931','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19850','31115','16932','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19851','31116','16933','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19852','31118','16934','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19853','31062','16935','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19854','31064','16936','max','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19855','31066','16937','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19856','31068','16938','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19857','31082','16939','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19858','31082','16940','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19863','31088','16944','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19865','31133','16946','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19866','31135','16947','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19867','31136','16948','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19868','31136','16949','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19869','31142','16950','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19870','31143','16951','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19873','31148','16954','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19874','31149','16955','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19875','31152','16956','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19876','31153','16957','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19877','31153','16958','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19878','31157','16959','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19879','31157','16960','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19880','31157','16961','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19881','31158','16962','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19888','31161','16965','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19889','31166','16965','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19890','31164','16966','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19891','31164','16967','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19892','31164','16968','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19893','31165','16969','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19894','31167','16970','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19895','31167','16971','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19896','31169','16972','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19897','31170','16973','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19898','31171','16974','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19899','30450','16975','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19900','31173','16976','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19901','31174','16977','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19902','31175','16978','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19903','30656','16979','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19904','31177','16980','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19905','31179','16981','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19906','31178','16982','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19907','30519','16983','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19908','31183','16984','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19909','31184','16984','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19910','31192','16985','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19911','31193','16985','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19912','31200','16986','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19913','31202','16986','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19914','31233','16987','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19915','31234','16987','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19916','31216','16988','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19917','31237','16988','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19922','31194','16991','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19924','31190','16993','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19925','31203','16994','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19926','31211','16995','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19927','31217','16996','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19928','31217','16997','nodata','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19929','31218','16998','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19932','31184','17000','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19933','31260','17001','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19934','31263','17002','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19935','31263','17003','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19936','31264','17004','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19937','31265','17004','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19938','31266','17005','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19941','31268','17008','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19943','31272','17010','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19947','31329','17014','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19949','31282','17016','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19950','31287','17017','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19951','31357','17018','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19952','31356','17019','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19956','31370','17023','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19957','31371','17023','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19978','29459','17035','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('19979','31419','17035','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20000','31439','17043','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20078','31517','17075','min','$,{$JMX.FILE.DESCRIPTORS.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20079','31516','17075','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20080','31530','17076','find','$,,"like","Client"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20081','31518','17077','min','$,{$JMX.CPU.LOAD.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20082','31519','17078','nodata','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20083','31520','17079','find','$,,"like","Server"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20084','31070','17080','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20085','31066','17080','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20086','31554','17081','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20087','31556','17082','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20088','31555','17083','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20089','31057','17084','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20090','31560','17085','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20091','31560','17085','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20092','31560','17086','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20093','31560','17086','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20094','31560','17087','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20095','31560','17087','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20096','31569','17088','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20098','31587','17090','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20099','31587','17090','nodata','$,3m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20101','31577','17092','min','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20102','31579','17093','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20103','31579','17094','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20106','31572','17096','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20108','31603','17098','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20109','31603','17098','nodata','$,3m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20111','31600','17100','min','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20112','31598','17101','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20113','31598','17102','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20128','22942','17113','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20129','22952','17114','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20130','22949','17115','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20131','22875','17116','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20132','22876','17117','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20133','22902','17118','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20134','22896','17119','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20135','22912','17120','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20136','22909','17121','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20137','22982','17122','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20138','22992','17123','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20139','22989','17124','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20140','23035','17125','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20141','23036','17126','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20142','23062','17127','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20143','23072','17128','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20144','23069','17129','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20145','22835','17130','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20146','22836','17131','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20147','22862','17132','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20148','22856','17133','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20149','22872','17134','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20150','22869','17135','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20151','22996','17136','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20152','23022','17137','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20153','23016','17138','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20154','23032','17139','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20155','23029','17140','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20156','26932','17141','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20157','26932','17142','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20158','26930','17143','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20159','26930','17144','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20160','26931','17145','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20161','26931','17146','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20162','26929','17147','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20163','26929','17148','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20164','26928','17149','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20165','26928','17150','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20166','26925','17151','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20167','26943','17152','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20168','26943','17153','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20169','26939','17154','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20170','26939','17155','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20171','26940','17156','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20172','26940','17157','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20173','26941','17158','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20174','26941','17159','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20175','26942','17160','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20176','26942','17161','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20177','26938','17162','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20178','26938','17163','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20179','26937','17164','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20180','26937','17165','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20181','26933','17166','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20182','26933','17167','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20183','26934','17168','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20184','26935','17169','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20185','26935','17170','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20186','26936','17171','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20187','26936','17172','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20188','31687','17173','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20189','31710','17173','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20190','31705','17174','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20191','31708','17174','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20192','31685','17175','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20193','31738','17175','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20194','31723','17176','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20195','31757','17176','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20200','31684','17179','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20201','31695','17180','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20203','31709','17182','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20204','31712','17183','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20205','31718','17184','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20206','31724','17185','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20207','31724','17186','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20208','31696','17187','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20211','31768','17189','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20212','31769','17190','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20213','31770','17190','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20214','31771','17191','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20217','31775','17194','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20218','31775','17195','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20219','31776','17196','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20221','31780','17198','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20285','31788','17222','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20286','31788','17223','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20287','31787','17224','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20290','31783','17226','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20291','31782','17227','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20293','31808','17229','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20295','31810','17231','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20298','31815','17234','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20312','31838','17240','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20313','31837','17240','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20318','31829','17243','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20319','31832','17243','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20320','31833','17243','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20321','31834','17243','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20322','31892','17244','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20323','31836','17245','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20324','31837','17246','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20327','31842','17248','fuzzytime','$,{$SYSTEM.FUZZYTIME.MAX}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20330','31847','17250','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20354','31902','17266','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20355','31903','17266','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20364','31905','17269','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20365','31905','17270','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20399','31953','17283','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20400','31955','17283','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20403','31949','17285','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20404','31950','17286','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20405','31954','17287','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20408','31959','17289','fuzzytime','$,{$SYSTEM.FUZZYTIME.MAX}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20409','31962','17290','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20410','31964','17291','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20411','31966','17292','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20449','32021','17311','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20450','32025','17312','min','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20543','32166','17354','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20544','32166','17355','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20545','32120','17356','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20546','32170','17357','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20547','32153','17357','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20548','32170','17358','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20549','32160','17358','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20550','32175','17359','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20566','32272','17368','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20567','32259','17368','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20568','32261','17368','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20569','32272','17369','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20570','32260','17369','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20571','32261','17369','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20572','32239','17370','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20573','32274','17371','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20574','32263','17372','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20595','32392','17390','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20596','32375','17391','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20597','32374','17392','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20600','32402','17394','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20601','32366','17395','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20602','32367','17396','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20603','32370','17397','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20604','32372','17398','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20605','32377','17399','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20608','32408','17401','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20609','32422','17402','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20610','32434','17403','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20611','32409','17404','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20612','32417','17405','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20613','32436','17406','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20614','32437','17407','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20615','32438','17408','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20616','32439','17409','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20619','32444','17411','min','$,{$ACTIVEMQ.MEM.TIME:"{#JMXBROKERNAME}"}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20620','32444','17412','min','$,{$ACTIVEMQ.MEM.TIME:"{#JMXBROKERNAME}"}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20621','32446','17413','min','$,{$ACTIVEMQ.STORE.TIME:"{#JMXBROKERNAME}"}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20622','32446','17414','min','$,{$ACTIVEMQ.STORE.TIME:"{#JMXBROKERNAME}"}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20623','32448','17415','min','$,{$ACTIVEMQ.TEMP.TIME:"{#JMXBROKERNAME}"}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20624','32448','17416','min','$,{$ACTIVEMQ.TEMP.TIME:"{#JMXBROKERNAME}"}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20625','32449','17417','max','$,{$ACTIVEMQ.BROKER.CONSUMERS.MIN.TIME:"{#JMXBROKERNAME}"}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20627','32452','17419','max','$,{$ACTIVEMQ.BROKER.PRODUCERS.MIN.TIME:"{#JMXBROKERNAME}"}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20628','32453','17420','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20629','32456','17421','max','$,{$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.TIME:"{#JMXDESTINATIONNAME}"}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20630','32454','17421','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20631','32456','17421','min','$,{$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.TIME:"{#JMXDESTINATIONNAME}"}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20634','32461','17423','max','$,{$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.TIME:"{#JMXDESTINATIONNAME}"}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20635','32455','17423','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20636','32461','17423','min','$,{$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.TIME:"{#JMXDESTINATIONNAME}"}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20638','32460','17425','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20639','32460','17426','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20641','32486','17428','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20642','32486','17429','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20643','32487','17430','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20644','32487','17431','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20645','32491','17432','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20646','32491','17433','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20647','32493','17434','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20648','32537','17435','avg','$,{$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20649','32534','17435','avg','$,{$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20650','32529','17436','min','$,{$MS.EXCHANGE.DB.FAULTS.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20651','32530','17437','avg','$,{$MS.EXCHANGE.LOG.STALLS.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20652','32533','17438','min','$,{$MS.EXCHANGE.DB.ACTIVE.READ.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20653','32534','17439','min','$,{$MS.EXCHANGE.DB.PASSIVE.READ.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20654','32536','17440','min','$,{$MS.EXCHANGE.DB.ACTIVE.WRITE.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20655','32540','17441','min','$,{$MS.EXCHANGE.RPC.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20656','32542','17442','min','$,{$MS.EXCHANGE.RPC.COUNT.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20657','32543','17443','min','$,{$MS.EXCHANGE.LDAP.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20658','32544','17444','min','$,{$MS.EXCHANGE.LDAP.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20659','32567','17445','avg','$,{$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20660','32564','17445','avg','$,{$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20661','32559','17446','min','$,{$MS.EXCHANGE.DB.FAULTS.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20662','32560','17447','avg','$,{$MS.EXCHANGE.LOG.STALLS.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20663','32563','17448','min','$,{$MS.EXCHANGE.DB.ACTIVE.READ.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20664','32564','17449','min','$,{$MS.EXCHANGE.DB.PASSIVE.READ.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20665','32566','17450','min','$,{$MS.EXCHANGE.DB.ACTIVE.WRITE.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20666','32570','17451','min','$,{$MS.EXCHANGE.RPC.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20667','32572','17452','min','$,{$MS.EXCHANGE.RPC.COUNT.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20668','32573','17453','min','$,{$MS.EXCHANGE.LDAP.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20669','32574','17454','min','$,{$MS.EXCHANGE.LDAP.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20670','32584','17455','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20671','32579','17455','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20674','32610','17457','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20675','32576','17458','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20676','32577','17459','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20677','32599','17460','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20678','32588','17461','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20679','32597','17462','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20680','32593','17463','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20683','32626','17465','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20684','32631','17466','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20685','32633','17466','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20686','32632','17467','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20687','32642','17468','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20688','32656','17469','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20689','32663','17470','max','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20690','32667','17471','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20691','32667','17472','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20692','32657','17473','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20693','32655','17474','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20694','32649','17475','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20695','32647','17476','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20696','32647','17477','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20697','32638','17478','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20698','32637','17479','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20699','32636','17480','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20700','32640','17481','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20701','32678','17482','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20702','32680','17483','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20703','32680','17484','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20704','32689','17485','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20705','32690','17486','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20706','32690','17487','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20707','32724','17488','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20708','32727','17489','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20709','32732','17490','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20710','32696','17491','nodata','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20711','32696','17492','max','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20712','32697','17493','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20715','32694','17495','max','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20716','32714','17496','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20717','32715','17497','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20718','32717','17498','find','$,,"regexp","CONNECTED"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20721','32766','17500','find','$,,"like","off"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20722','32778','17501','min','$,{$TOMCAT.THREADS.MAX.TIME:"{#JMXNAME}"}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20723','32779','17501','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20724','32804','17502','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20725','32805','17502','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20726','32794','17503','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20727','32793','17504','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20728','32789','17505','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20731','32840','17507','max','$,1h');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20732','32848','17508','max','$,1h');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20733','32860','17509','max','$,1h');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20734','32802','17510','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20735','32872','17511','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20736','32873','17511','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20737','32872','17512','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20738','32873','17512','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20739','32871','17513','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20741','32909','17515','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20744','32913','17518','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20745','32913','17519','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20746','32912','17520','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20747','32970','17521','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20748','32980','17521','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20749','32966','17522','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20752','32977','17524','nodata','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20756','33009','17527','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20757','33008','17527','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20758','33007','17528','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20761','33016','17531','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20762','33017','17532','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20765','33022','17535','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20766','33023','17536','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20767','33026','17537','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20768','33027','17538','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20771','33091','17540','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20772','33091','17541','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20773','33079','17542','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20774','33061','17543','nodata','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20775','33059','17544','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20776','33169','17545','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20777','33169','17546','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20778','31781','17547','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20779','31781','17548','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20780','33171','17549','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20781','33171','17550','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20782','31273','17551','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20783','31273','17552','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20784','33174','17553','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20785','28325','17554','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20786','28325','17555','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20787','28325','17556','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20788','28325','17557','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20789','28323','17558','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20790','28323','17559','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20791','28323','17560','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20792','28323','17561','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20793','33183','17562','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20794','33183','17563','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20795','33183','17564','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20796','33183','17565','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20797','27421','17566','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20798','27420','17566','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20799','27421','17566','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20800','27421','17567','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20801','27420','17567','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20802','27421','17567','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20824','33199','17575','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20825','33199','17576','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20826','33185','17577','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20827','33185','17578','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20828','33192','17579','count','$,#3,"like","arrayCurrentOffset"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20829','33192','17580','count','$,#3,"like","batterySenseDisconnected"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20830','33192','17581','count','$,#3,"like","batterySenseOutOfRange"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20831','33192','17582','count','$,#3,"like","controllerReset"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20832','33192','17583','count','$,#3,"like","currentLimit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20833','33192','17584','count','$,#3,"like","currentMeasurementError"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20834','33192','17585','count','$,#3,"like","eepromAccessFailure"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20835','33192','17586','count','$,#3,"like","fp10SupplyOutOfRange"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20836','33192','17587','count','$,#3,"like","heatsinkTempLimit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20837','33192','17588','count','$,#3,"like","heatsinkTempSensorOpen"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20838','33192','17589','count','$,#3,"like","heatsinkTempSensorShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20839','33192','17590','count','$,#3,"like","hightInputVoltageLimit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20840','33192','17591','count','$,#3,"like","inductorTempLimit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20841','33192','17592','count','$,#3,"like","inductorTempSensorOpen"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20842','33192','17593','count','$,#3,"like","inductorTempSensorShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20843','33192','17594','count','$,#3,"like","loadCurrentOffset"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20844','33192','17595','count','$,#3,"like","loadLvd"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20845','33192','17596','count','$,#3,"like","logTimeout"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20846','33192','17597','count','$,#3,"like","mosfetOpen"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20847','33192','17598','count','$,#3,"like","p12SupplyOutOfRange"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20848','33192','17599','count','$,#3,"like","p33SupplyOutOfRange"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20849','33192','17600','count','$,#3,"like","rtsDisconnected"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20850','33192','17601','count','$,#3,"like","rtsShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20851','33192','17602','count','$,#3,"like","tb5v"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20852','33192','17603','count','$,#3,"like","uncalibrated"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20853','33191','17604','count','$,#3,"like","arrayHvd"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20854','33191','17605','count','$,#3,"like","batteryHvd"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20855','33191','17606','count','$,#3,"like","batteryLowVoltageDisconnect"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20856','33191','17607','count','$,#3,"like","customSettingsEdit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20857','33191','17608','count','$,#3,"like","dipSwitchChanged"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20858','33191','17609','count','$,#3,"like","localTempSensorDamaged"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20859','33191','17610','count','$,#3,"like","mosfetSShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20860','33191','17611','count','$,#3,"like","overcurrent"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20861','33191','17612','count','$,#3,"like","rtsNoLongerValid"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20862','33191','17613','count','$,#3,"like","rtsShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20863','33191','17614','count','$,#3,"like","slaveTimeout"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20864','33191','17615','count','$,#3,"like","software"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20865','33190','17616','count','$,#3,"like","customSettingsEdit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20866','33190','17617','count','$,#3,"like","dipSwitchChanged"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20867','33190','17618','count','$,#3,"like","externalShortCircuit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20868','33190','17619','count','$,#3,"like","highTempDisconnect"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20869','33190','17620','count','$,#3,"like","loadHvd"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20870','33190','17621','count','$,#3,"like","mosfetShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20871','33190','17622','count','$,#3,"like","overcurrent"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20872','33190','17623','count','$,#3,"like","software"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20874','33189','17625','nodata','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20875','33186','17626','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20876','33186','17627','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20877','33186','17628','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20878','33186','17629','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20879','33206','17630','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20880','33206','17631','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20881','33206','17632','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20882','33206','17633','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20883','33222','17634','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20884','33222','17635','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20885','33217','17636','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20886','33217','17637','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20887','33208','17638','count','$,#3,"like","arrayCurrentOffset"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20888','33208','17639','count','$,#3,"like","batterySenseDisconnected"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20889','33208','17640','count','$,#3,"like","batterySenseOutOfRange"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20890','33208','17641','count','$,#3,"like","batteryTempOutOfRange"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20891','33208','17642','count','$,#3,"like","controllerReset"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20892','33208','17643','count','$,#3,"like","currentLimit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20893','33208','17644','count','$,#3,"like","currentMeasurementError"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20894','33208','17645','count','$,#3,"like","eepromAccessFailure"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20895','33208','17646','count','$,#3,"like","fp10SupplyOutOfRange"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20896','33208','17647','count','$,#3,"like","heatsinkTempLimit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20897','33208','17648','count','$,#3,"like","heatsinkTempSensorOpen"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20898','33208','17649','count','$,#3,"like","heatsinkTempSensorShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20899','33208','17650','count','$,#3,"like","hightInputVoltageLimit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20900','33208','17651','count','$,#3,"like","loadCurrentOffset"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20901','33208','17652','count','$,#3,"like","loadLvd"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20902','33208','17653','count','$,#3,"like","logTimeout"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20903','33208','17654','count','$,#3,"like","mosfetOpen"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20904','33208','17655','count','$,#3,"like","p12SupplyOutOfRange"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20905','33208','17656','count','$,#3,"like","p33SupplyOutOfRange"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20906','33208','17657','count','$,#3,"like","rtsDisconnected"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20907','33208','17658','count','$,#3,"like","rtsShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20908','33208','17659','count','$,#3,"like","uncalibrated"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20909','33214','17660','count','$,#3,"like","arrayHvd"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20910','33214','17661','count','$,#3,"like","batteryHvd"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20911','33214','17662','count','$,#3,"like","batteryLowVoltageDisconnect"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20912','33214','17663','count','$,#3,"like","customSettingsEdit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20913','33214','17664','count','$,#3,"like","dipSwitchChanged"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20914','33214','17665','count','$,#3,"like","localTempSensorDamaged"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20915','33214','17666','count','$,#3,"like","mosfetSShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20916','33214','17667','count','$,#3,"like","overcurrent"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20917','33214','17668','count','$,#3,"like","p3Fault"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20918','33214','17669','count','$,#3,"like","rtsNoLongerValid"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20919','33214','17670','count','$,#3,"like","rtsShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20920','33214','17671','count','$,#3,"like","slaveTimeout"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20921','33214','17672','count','$,#3,"like","software"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20922','33213','17673','count','$,#3,"like","customSettingsEdit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20923','33213','17674','count','$,#3,"like","dipSwitchChanged"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20924','33213','17675','count','$,#3,"like","externalShortCircuit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20925','33213','17676','count','$,#3,"like","highTempDisconnect"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20926','33213','17677','count','$,#3,"like","loadHvd"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20927','33213','17678','count','$,#3,"like","mosfetShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20928','33213','17679','count','$,#3,"like","overcurrent"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20929','33213','17680','count','$,#3,"like","p3Fault"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20930','33213','17681','count','$,#3,"like","software"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20932','33212','17683','nodata','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20933','33209','17684','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20934','33209','17685','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20935','33209','17686','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20936','33209','17687','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20937','33226','17688','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20938','33226','17689','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20939','33226','17690','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20940','33226','17691','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20941','33242','17692','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20942','33242','17693','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20943','33228','17694','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20944','33228','17695','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20945','33235','17696','count','$,#3,"like","currentLimit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20946','33235','17697','count','$,#3,"like","currentOffset"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20947','33235','17698','count','$,#3,"like","heatsinkTempSensorOpen"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20948','33235','17699','count','$,#3,"like","heatsinkTempSensorShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20949','33235','17700','count','$,#3,"like","highVaCurrentLimit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20950','33235','17701','count','$,#3,"like","mosfetSOpen"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20951','33235','17702','count','$,#3,"like","p12VoltageReferenceOff"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20952','33235','17703','count','$,#3,"like","rtsDisconnected"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20953','33235','17704','count','$,#3,"like","rtsMiswire"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20954','33235','17705','count','$,#3,"like","rtsShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20955','33235','17706','count','$,#3,"like","sspptHot"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20956','33235','17707','count','$,#3,"like","systemMiswire"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20957','33235','17708','count','$,#3,"like","uncalibrated"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20958','33234','17709','count','$,#3,"like","arrayHvd"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20959','33234','17710','count','$,#3,"like","batteryHvd"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20960','33234','17711','count','$,#3,"like","customSettingsEdit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20961','33234','17712','count','$,#3,"like","localTempSensorDamaged"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20962','33234','17713','count','$,#3,"like","mosfetSShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20963','33234','17714','count','$,#3,"like","overcurrent"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20964','33234','17715','count','$,#3,"like","rtsNoLongerValid"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20965','33234','17716','count','$,#3,"like","rtsShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20966','33234','17717','count','$,#3,"like","softwareFault"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20967','33233','17718','count','$,#3,"like","customSettingsEdit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20968','33233','17719','count','$,#3,"like","externalShortCircuit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20969','33233','17720','count','$,#3,"like","highTempDisconnect"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20970','33233','17721','count','$,#3,"like","loadHvd"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20971','33233','17722','count','$,#3,"like","mosfetShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20972','33233','17723','count','$,#3,"like","overcurrent"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20973','33233','17724','count','$,#3,"like","software"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20974','33233','17725','count','$,#3,"like","unknownLoadFault"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20976','33232','17727','nodata','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20977','33229','17728','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20978','33229','17729','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20979','33229','17730','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20980','33229','17731','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20981','33249','17732','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20982','33249','17733','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20983','33249','17734','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20984','33249','17735','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20985','33252','17736','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20986','33252','17737','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20987','33253','17738','count','$,#3,"like","heatsinkTempSensorOpen"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20988','33253','17739','count','$,#3,"like","heatsinkTempSensorShort"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20989','33253','17740','count','$,#3,"like","suresineHot"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20990','33253','17741','count','$,#3,"like","unknownAlarm"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20991','33254','17742','count','$,#3,"like","customSettingsEdit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20992','33254','17743','count','$,#3,"like","dipSwitchChanged"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20993','33254','17744','count','$,#3,"like","highVoltageDisconnect"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20994','33254','17745','count','$,#3,"like","overcurrent"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20995','33254','17746','count','$,#3,"like","reset"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20996','33254','17747','count','$,#3,"like","software"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20997','33254','17748','count','$,#3,"like","suresineHot"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('20998','33254','17749','count','$,#3,"like","unknownFault"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21000','33255','17751','nodata','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21001','33258','17752','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21002','33258','17753','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21003','33258','17754','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21004','33258','17755','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21005','33267','17756','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21006','33267','17757','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21007','33265','17758','count','$,#3,"like","alarm21Internal"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21008','33265','17759','count','$,#3,"like","arrayCurrentOffset"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21009','33265','17760','count','$,#3,"like","batterySense"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21010','33265','17761','count','$,#3,"like","batterySenseDisconnected"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21011','33265','17762','count','$,#3,"like","controllerWasReset"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21012','33265','17763','count','$,#3,"like","currentLimit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21013','33265','17764','count','$,#3,"like","currentOffset"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21014','33265','17765','count','$,#3,"like","derateLimit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21015','33265','17766','count','$,#3,"like","ee-i2cRetryLimit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21016','33265','17767','count','$,#3,"like","ethernetAlarm"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21017','33265','17768','count','$,#3,"like","extflashFault"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21018','33265','17769','count','$,#3,"like","fp12VoltageOutOfRange"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21019','33265','17770','count','$,#3,"like","heatsinkTempSensorOpen"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21020','33265','17771','count','$,#3,"like","heatsinkTempSensorShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21021','33265','17772','count','$,#3,"like","highArrayVCurrentLimit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21022','33265','17773','count','$,#3,"like","highTemperatureCurrentLimit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21023','33265','17774','count','$,#3,"like","highVoltageDisconnect"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21024','33265','17775','count','$,#3,"like","lvd"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21025','33265','17776','count','$,#3,"like","maxAdcValueReached"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21026','33265','17777','count','$,#3,"like","mosfetSOpen"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21027','33265','17778','count','$,#3,"like","p3VoltageOutOfRange"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21028','33265','17779','count','$,#3,"like","p12VoltageOutOfRange"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21029','33265','17780','count','$,#3,"like","rtsDisconnected"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21030','33265','17781','count','$,#3,"like","rtsMiswire"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21031','33265','17782','count','$,#3,"like","rtsShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21032','33265','17783','count','$,#3,"like","slaveControlFault"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21033','33265','17784','count','$,#3,"like","software"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21034','33265','17785','count','$,#3,"like","systemMiswire"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21035','33265','17786','count','$,#3,"like","uncalibrated"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21036','33264','17787','count','$,#3,"like","arrayHvd"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21037','33264','17788','count','$,#3,"like","batteryHvd"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21038','33264','17789','count','$,#3,"like","batteryLvd"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21039','33264','17790','count','$,#3,"like","blockbusBoot"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21040','33264','17791','count','$,#3,"like","chargeSlaveControlTimeout"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21041','33264','17792','count','$,#3,"like","controllerWasReset"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21042','33264','17793','count','$,#3,"like","currentSensorReferenceOutOfRange"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21043','33264','17794','count','$,#3,"like","customSettingsEdit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21044','33264','17795','count','$,#3,"like","dipSwitchChange"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21045','33264','17796','count','$,#3,"like","eepromRetryLimit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21046','33264','17797','count','$,#3,"like","fault16Software"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21047','33264','17798','count','$,#3,"like","fault17Software"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21048','33264','17799','count','$,#3,"like","fault18Software"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21049','33264','17800','count','$,#3,"like","fault19Software"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21050','33264','17801','count','$,#3,"like","fault20Software"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21051','33264','17802','count','$,#3,"like","fault21Software"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21052','33264','17803','count','$,#3,"like","fetShort"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21053','33264','17804','count','$,#3,"like","fpgaVersion"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21054','33264','17805','count','$,#3,"like","hscomm"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21055','33264','17806','count','$,#3,"like","hscommMaster"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21056','33264','17807','count','$,#3,"like","ia-refSlaveModeTimeout"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21057','33264','17808','count','$,#3,"like","overcurrent"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21058','33264','17809','count','$,#3,"like","powerboardCommunicationFault"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21059','33264','17810','count','$,#3,"like","rs232SerialToMeterBridge"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21060','33264','17811','count','$,#3,"like","rtsDisconnected"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21061','33264','17812','count','$,#3,"like","rtsShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21062','33264','17813','count','$,#3,"like","slave"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21063','33264','17814','count','$,#3,"like","softwareFault"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21065','33263','17816','nodata','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21066','33261','17817','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21067','33261','17818','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21068','33261','17819','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21069','33261','17820','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21070','33277','17821','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21071','33277','17822','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21072','33277','17823','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21073','33277','17824','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21074','33286','17825','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21075','33286','17826','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21076','33284','17827','count','$,#3,"like","batterySense"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21077','33284','17828','count','$,#3,"like","batterySenseDisconnected"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21078','33284','17829','count','$,#3,"like","controllerWasReset"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21079','33284','17830','count','$,#3,"like","currentLimit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21080','33284','17831','count','$,#3,"like","currentOffset"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21081','33284','17832','count','$,#3,"like","heatsinkTempSensorOpen"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21082','33284','17833','count','$,#3,"like","heatsinkTempSensorShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21083','33284','17834','count','$,#3,"like","highArrayVCurrentLimit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21084','33284','17835','count','$,#3,"like","highTemperatureCurrentLimit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21085','33284','17836','count','$,#3,"like","highVoltageDisconnect"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21086','33284','17837','count','$,#3,"like","maxAdcValueReached"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21087','33284','17838','count','$,#3,"like","mosfetSOpen"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21088','33284','17839','count','$,#3,"like","p12VoltageReferenceOff"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21089','33284','17840','count','$,#3,"like","rtsDisconnected"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21090','33284','17841','count','$,#3,"like","rtsMiswire"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21091','33284','17842','count','$,#3,"like","rtsShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21092','33284','17843','count','$,#3,"like","systemMiswire"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21093','33284','17844','count','$,#3,"like","uncalibrated"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21094','33283','17845','count','$,#3,"like","arrayHvd"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21095','33283','17846','count','$,#3,"like","batteryHvd"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21096','33283','17847','count','$,#3,"like","customSettingsEdit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21097','33283','17848','count','$,#3,"like","dipSwitchChange"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21098','33283','17849','count','$,#3,"like","eepromRetryLimit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21099','33283','17850','count','$,#3,"like","fetShort"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21100','33283','17851','count','$,#3,"like","overcurrent"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21101','33283','17852','count','$,#3,"like","rtsDisconnected"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21102','33283','17853','count','$,#3,"like","rtsShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21103','33283','17854','count','$,#3,"like","slaveControlTimeout"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21104','33283','17855','count','$,#3,"like","softwareFault"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21106','33282','17857','nodata','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21107','33280','17858','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21108','33280','17859','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21109','33280','17860','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21110','33280','17861','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21111','33296','17862','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21112','33296','17863','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21113','33296','17864','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21114','33296','17865','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21115','33301','17866','count','$,#3,"like","batterySense"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21116','33301','17867','count','$,#3,"like","batterySenseDisconnected"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21117','33301','17868','count','$,#3,"like","currentLimit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21118','33301','17869','count','$,#3,"like","currentOffset"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21119','33301','17870','count','$,#3,"like","diversionLoadNearMax"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21120','33301','17871','count','$,#3,"like","heatsinkTempSensorOpen"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21121','33301','17872','count','$,#3,"like","heatsinkTempSensorShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21122','33301','17873','count','$,#3,"like","highVoltageDisconnect"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21123','33301','17874','count','$,#3,"like","loadDisconnectState"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21124','33301','17875','count','$,#3,"like","mosfetSOpen"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21125','33301','17876','count','$,#3,"like","p12VoltageReferenceOff"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21126','33301','17877','count','$,#3,"like","rtsDisconnected"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21127','33301','17878','count','$,#3,"like","rtsMiswire"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21128','33301','17879','count','$,#3,"like","rtsShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21129','33301','17880','count','$,#3,"like","systemMiswire"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21130','33301','17881','count','$,#3,"like","tristarHot"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21131','33301','17882','count','$,#3,"like","uncalibrated"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21132','33302','17883','count','$,#3,"like","customSettingsEdit"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21133','33302','17884','count','$,#3,"like","dipSwitchChange"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21134','33302','17885','count','$,#3,"like","externalShort"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21135','33302','17886','count','$,#3,"like","highVoltageDisconnect"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21136','33302','17887','count','$,#3,"like","mosfetSShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21137','33302','17888','count','$,#3,"like","overcurrent"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21138','33302','17889','count','$,#3,"like","reset"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21139','33302','17890','count','$,#3,"like","rtsDisconnected"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21140','33302','17891','count','$,#3,"like","rtsShorted"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21141','33302','17892','count','$,#3,"like","softwareFault"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21142','33302','17893','count','$,#3,"like","systemMiswire"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21143','33302','17894','count','$,#3,"like","tristarHot"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21145','33303','17896','nodata','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21146','33304','17897','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21147','33304','17898','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21148','33304','17899','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21149','33304','17900','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21150','33312','17901','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21151','33312','17902','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21152','33312','17903','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21153','33312','17904','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21154','33315','17905','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21155','33315','17906','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21156','33318','17907','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21157','33318','17908','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21164','31453','17911','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21165','31453','17911','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21166','31454','17911','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21167','33322','17912','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21168','33323','17913','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21174','32040','17917','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21175','32040','17917','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21176','32041','17917','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21177','33330','17918','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21178','33331','17919','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21193','33359','17930','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21194','33360','17930','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21195','33357','17931','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21196','33358','17931','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21197','33361','17932','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21198','33362','17933','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21199','33365','17934','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21200','33367','17935','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21201','33368','17936','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21202','33369','17937','min','$,{$FAS3220.FS.TIME:"{#FSNAME}"}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21203','33374','17938','max','$,{$FAS3220.FS.TIME:"{#FSNAME}"}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21204','33375','17939','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21205','33376','17940','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21206','33376','17941','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21211','33385','17943','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21212','33388','17943','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21213','33384','17944','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21214','33383','17944','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21215','28356','17945','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21216','28357','17945','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21217','28356','17945','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21218','28356','17946','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21219','28357','17946','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21220','28356','17946','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21221','28354','17947','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21222','28355','17947','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21223','28354','17947','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21224','28354','17948','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21225','28355','17948','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21226','28354','17948','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21227','31807','17949','min','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21228','31809','17950','min','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21229','31812','17951','min','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21230','31814','17952','min','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21231','33444','17953','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21232','33443','17953','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21233','33409','17954','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21234','33426','17954','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21235','33416','17955','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21236','33415','17955','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21237','33414','17956','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21238','33413','17956','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21239','33447','17957','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21240','33397','17958','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21241','33392','17959','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21242','33417','17960','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21245','33475','17962','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21246','33473','17962','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21247','33476','17963','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21248','33473','17963','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21249','33480','17964','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21250','33506','17965','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21251','33504','17965','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21252','33505','17965','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21253','33506','17966','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21254','33504','17966','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21255','33505','17966','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21256','33518','17967','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21262','33519','17971','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21266','33523','17973','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21267','33523','17974','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21268','33539','17975','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21269','33540','17975','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21275','33562','17977','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21276','33553','17977','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21277','33562','17978','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21278','33553','17978','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21279','33558','17979','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21280','33557','17979','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21281','33558','17980','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21282','33557','17980','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21283','33555','17981','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21284','33560','17982','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21285','33565','17983','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21286','33565','17984','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21287','33567','17985','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21288','33568','17986','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21289','33577','17987','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21290','33574','17987','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21291','33577','17988','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21292','33577','17989','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21295','33580','17991','nodata','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21296','33580','17992','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21303','33600','17996','max','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21304','33605','17997','max','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21305','33610','17998','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21306','33616','17999','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21307','33619','17999','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21308','33618','18000','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21309','33617','18000','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21310','33618','18001','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21311','33617','18001','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21312','30318','18002','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21313','30369','18002','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21314','28416','18003','count','$,#1,"eq","{$DISK_ARRAY_CACHE_BATTERY_WARN_STATUS:\\"degraded\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21315','28415','18004','count','$,#1,"eq","{$DISK_ARRAY_CACHE_WARN_STATUS:\\"cacheModDegradedFailsafeSpeed\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21316','28415','18004','count','$,#1,"eq","{$DISK_ARRAY_CACHE_WARN_STATUS:\\"cacheReadCacheNotMapped\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21317','28415','18004','count','$,#1,"eq","{$DISK_ARRAY_CACHE_WARN_STATUS:\\"cacheModFlashMemNotAttached\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21318','28415','18005','count','$,#1,"ne","{$DISK_ARRAY_CACHE_OK_STATUS:\\"enabled\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21319','28415','18005','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21320','33621','18006','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21321','33621','18007','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21322','33621','18008','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21323','33622','18009','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21324','33622','18010','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21325','33622','18011','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21326','33623','18012','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21327','33623','18013','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21328','33623','18014','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21329','33624','18015','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21330','33624','18016','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21331','33624','18017','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21332','33626','18018','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21333','33626','18019','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21334','33626','18020','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21335','33627','18021','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21336','33627','18022','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21337','33627','18023','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21338','33628','18024','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21339','33628','18025','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21340','33628','18026','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21341','33632','18027','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21342','33633','18028','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21343','33631','18029','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21345','33641','18031','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21348','33501','18033','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21349','33598','18034','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21350','33605','18034','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21351','30159','18035','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21566','30089','18108','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21567','30093','18109','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21568','30094','18110','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21571','30101','18113','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21575','30105','18117','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21576','30107','18118','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21577','30108','18119','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21578','30111','18120','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21579','30112','18121','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21580','30115','18122','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21581','30116','18123','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21582','30118','18124','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21583','30120','18125','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21584','30123','18126','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21585','30126','18127','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21586','30131','18128','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21587','30136','18129','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21592','31364','18132','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21619','31893','18144','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21637','29396','18152','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21649','28978','18157','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21655','31427','18161','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21656','29466','18161','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21657','29462','18162','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21675','32002','18169','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21676','31970','18169','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21677','31973','18170','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21704','33703','18184','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21705','33704','18185','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21706','33705','18186','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21707','33706','18187','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21708','33707','18188','min','$,{$HUAWEI.5300.MEM.MAX.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21710','33709','18190','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21711','33711','18191','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21712','33712','18192','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21713','33713','18193','min','$,{$HUAWEI.5300.DISK.TEMP.MAX.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21714','33714','18194','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21715','33715','18195','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21716','33716','18196','min','$,{$HUAWEI.5300.TEMP.MAX.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21717','33717','18197','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21718','33718','18198','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21719','33719','18199','min','$,{$HUAWEI.5300.LUN.IO.TIME.MAX.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21720','33729','18200','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21721','33730','18201','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21722','33731','18202','min','$,{$HUAWEI.5300.NODE.IO.DELAY.MAX.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21723','33739','18203','min','$,{$HUAWEI.5300.POOL.CAPACITY.THRESH.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21724','33740','18204','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21725','33741','18205','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21726','33378','18206','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21727','33381','18206','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21728','33378','18206','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21729','33381','18206','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21730','33747','18207','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21731','33748','18208','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21732','33749','18209','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21733','33750','18210','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21734','33751','18211','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21735','33752','18212','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21736','33753','18213','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21737','33757','18214','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21738','33758','18215','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21739','33759','18216','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21740','33760','18217','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21741','33761','18218','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21742','33762','18219','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21743','33763','18220','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21744','33801','18221','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21745','33800','18221','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21746','33801','18221','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21747','33798','18222','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21748','33786','18223','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21749','33766','18224','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21750','33784','18225','nodata','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21751','33784','18226','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21756','33863','18229','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21758','33875','18231','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21759','33872','18232','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21760','33918','18233','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21761','33908','18234','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21762','33907','18235','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21763','33888','18236','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21764','33901','18237','nodata','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21765','33901','18238','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21768','33942','18240','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21769','33942','18240','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21770','33942','18240','last','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21771','33943','18241','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21772','33943','18241','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21773','33943','18241','last','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21774','27084','18242','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21775','27081','18242','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21776','27085','18242','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21777','27086','18243','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21778','27083','18243','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21779','27086','18243','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21780','27083','18243','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21802','27104','18250','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21803','27101','18250','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21804','27105','18250','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21805','27106','18251','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21806','27103','18251','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21807','27106','18251','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21808','27103','18251','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21956','27124','18294','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21957','27121','18294','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21958','27125','18294','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21959','27126','18295','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21960','27123','18295','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21961','27126','18295','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21962','27123','18295','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21970','33944','18298','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21971','33945','18299','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21972','33946','18300','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21980','33957','18305','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21981','33966','18306','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21984','33968','18308','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21985','33968','18309','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21986','33971','18310','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21987','33978','18311','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21988','33978','18311','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21989','33980','18311','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21990','33979','18311','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21991','33978','18311','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21992','33974','18312','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21993','33978','18312','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21994','33977','18313','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21995','33978','18313','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21996','33973','18314','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21997','33973','18314','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21998','33976','18315','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('21999','33976','18315','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22000','33979','18316','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22001','33981','18317','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22002','33982','18318','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22003','33982','18318','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22004','33982','18319','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22005','33983','18320','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22006','33983','18321','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22007','33984','18322','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22008','33984','18322','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22009','33984','18323','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22010','33984','18323','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22011','33984','18324','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22012','33984','18324','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22013','33985','18325','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22014','33986','18326','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22015','33987','18327','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22023','33998','18332','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22024','34007','18333','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22027','34009','18335','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22028','34009','18336','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22029','34012','18337','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22030','34019','18338','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22031','34019','18338','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22032','34021','18338','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22033','34020','18338','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22034','34019','18338','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22035','34015','18339','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22036','34019','18339','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22037','34018','18340','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22038','34019','18340','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22039','34014','18341','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22040','34014','18341','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22041','34017','18342','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22042','34017','18342','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22043','34020','18343','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22044','34022','18344','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22045','34023','18345','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22046','34023','18345','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22047','34023','18346','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22048','34024','18347','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22049','34024','18348','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22050','34025','18349','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22051','34025','18349','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22052','34025','18350','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22053','34025','18350','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22054','34025','18351','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22055','34025','18351','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22056','34026','18352','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22057','34027','18353','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22058','34028','18354','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22066','34039','18359','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22067','34048','18360','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22070','34050','18362','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22071','34050','18363','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22072','34053','18364','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22073','34060','18365','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22074','34060','18365','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22075','34062','18365','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22076','34061','18365','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22077','34060','18365','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22078','34056','18366','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22079','34060','18366','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22080','34059','18367','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22081','34060','18367','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22082','34055','18368','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22083','34055','18368','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22084','34058','18369','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22085','34058','18369','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22086','34061','18370','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22087','34063','18371','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22088','34064','18372','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22089','34064','18372','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22090','34064','18373','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22091','34065','18374','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22092','34065','18375','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22093','34066','18376','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22094','34066','18376','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22095','34066','18377','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22096','34066','18377','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22097','34066','18378','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22098','34066','18378','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22099','34067','18379','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22100','34068','18380','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22101','34069','18381','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22109','34080','18386','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22110','34089','18387','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22113','34091','18389','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22114','34091','18390','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22115','34094','18391','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22116','34101','18392','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22117','34101','18392','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22118','34103','18392','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22119','34102','18392','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22120','34101','18392','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22121','34097','18393','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22122','34101','18393','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22123','34100','18394','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22124','34101','18394','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22125','34096','18395','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22126','34096','18395','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22127','34099','18396','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22128','34099','18396','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22129','34102','18397','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22130','34104','18398','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22131','34105','18399','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22132','34105','18399','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22133','34105','18400','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22134','34106','18401','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22135','34106','18402','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22136','34107','18403','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22137','34107','18403','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22138','34107','18404','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22139','34107','18404','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22140','34107','18405','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22141','34107','18405','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22142','34108','18406','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22143','34109','18407','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22144','34110','18408','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22152','34121','18413','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22153','34130','18414','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22156','34132','18416','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22157','34132','18417','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22158','34135','18418','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22159','34142','18419','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22160','34142','18419','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22161','34144','18419','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22162','34143','18419','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22163','34142','18419','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22164','34138','18420','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22165','34142','18420','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22166','34141','18421','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22167','34142','18421','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22168','34137','18422','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22169','34137','18422','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22170','34140','18423','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22171','34140','18423','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22172','34143','18424','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22173','34145','18425','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22174','34146','18426','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22175','34146','18426','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22176','34146','18427','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22177','34147','18428','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22178','34147','18429','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22179','34148','18430','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22180','34148','18430','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22181','34148','18431','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22182','34148','18431','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22183','34148','18432','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22184','34148','18432','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22185','34149','18433','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22188','34154','18436','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22192','34160','18439','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22194','34170','18441','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22195','34170','18441','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22196','34172','18441','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22197','34171','18441','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22198','34170','18441','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22199','34166','18442','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22200','34170','18442','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22201','34169','18442','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22202','34165','18443','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22203','34168','18443','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22204','34165','18443','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22205','34168','18443','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22208','28206','18445','count','$,#1,"eq","{$PSU.STATUS.CRIT}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22209','28201','18446','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22210','28200','18446','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22211','28201','18446','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22212','28201','18447','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22213','28201','18447','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22214','28201','18448','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22215','28201','18448','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22224','34178','18451','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22231','29219','18455','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22232','29218','18455','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22233','29219','18455','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22234','29218','18455','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22247','31910','18460','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22248','31913','18460','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22249','31910','18460','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22250','31913','18460','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22257','29436','18463','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22258','29442','18463','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22259','29437','18463','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22260','29439','18464','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22261','29438','18464','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22262','29439','18464','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22263','29438','18464','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22264','31435','18465','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22265','31453','18465','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22266','31438','18465','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22267','31434','18466','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22268','31437','18466','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22269','31434','18466','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22270','31437','18466','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22278','32017','18469','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22279','32040','18469','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22280','32020','18469','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22281','32016','18470','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22282','32019','18470','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22283','32016','18470','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22284','32019','18470','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22292','34204','18473','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22293','34202','18474','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22294','34202','18475','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22295','34201','18476','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22299','34195','18480','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22300','34195','18480','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22301','34194','18481','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22302','34194','18481','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22303','34180','18482','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22304','34191','18483','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22305','34191','18484','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22306','34191','18485','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22307','34191','18486','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22308','34191','18487','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22309','34191','18488','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22310','34191','18489','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22311','34191','18490','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22312','34191','18491','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22313','34191','18492','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22314','34191','18493','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22318','34206','18496','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22319','34214','18497','find','$,,"regexp","^(0)[0|1]{15}$"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22321','34216','18499','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22322','34219','18500','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22323','34219','18501','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22324','34219','18502','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22325','34222','18503','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22326','34222','18504','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22327','34222','18505','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22328','34225','18506','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22329','34225','18506','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22330','34240','18507','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22345','34281','18515','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22346','34284','18516','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22347','34285','18517','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22356','32451','18522','avg','$,{$ACTIVEMQ.MSG.RATE.WARN.TIME:"{#JMXBROKERNAME}"}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22357','32458','18523','avg','$,{$ACTIVEMQ.MSG.RATE.WARN.TIME:"{#JMXDESTINATIONNAME}"}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22358','32457','18523','avg','$,{$ACTIVEMQ.MSG.RATE.WARN.TIME:"{#JMXDESTINATIONNAME}"}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22360','32462','18525','min','$,{$ACTIVEMQ.QUEUE.TIME:"{#JMXDESTINATIONNAME}"}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22361','32621','18526','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22362','32624','18526','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22363','32262','18527','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22364','32251','18527','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22365','34314','18528','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22366','34315','18529','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22367','34317','18530','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22368','34316','18531','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22369','34319','18532','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22370','34318','18533','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22371','31086','18534','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22372','31087','18535','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22373','34326','18536','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22374','34326','18537','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22375','34329','18538','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22376','34329','18539','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22377','34327','18540','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22378','34327','18541','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22379','34334','18542','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22380','34335','18543','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22381','30434','18544','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22382','30640','18545','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22383','30483','18546','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22384','31704','18547','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22385','31199','18548','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22386','34339','18549','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22387','34340','18550','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22390','34351','18552','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22391','34350','18552','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22392','34352','18553','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22393','34353','18554','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22394','34354','18555','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22395','34365','18556','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22396','34365','18557','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22397','34387','18558','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22398','34388','18558','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22399','34385','18559','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22400','34397','18560','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22401','34393','18561','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22402','34392','18562','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22403','34391','18563','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22404','34381','18564','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22405','34379','18565','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22406','34376','18566','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22407','34373','18567','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22408','34371','18568','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22411','34410','18570','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22412','34436','18571','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22414','34422','18573','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22415','34439','18574','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22416','34450','18575','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22417','34451','18576','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22418','34473','18577','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22419','34471','18578','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22420','34471','18579','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22421','34470','18580','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22422','34467','18581','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22423','34467','18581','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22424','34466','18582','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22425','34466','18582','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22426','34463','18583','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22427','34452','18584','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22428','34452','18585','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22429','34452','18586','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22430','34452','18587','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22431','34452','18588','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22432','34452','18589','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22433','34452','18590','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22434','34452','18591','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22435','34452','18592','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22436','34452','18593','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22437','34452','18594','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22441','34475','18597','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22442','34484','18598','find','$,,"regexp","^(0)[0|1]{15}$"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22443','34485','18599','find','$,,"regexp","^(0{16})$"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22444','34486','18600','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22445','34489','18601','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22446','34489','18602','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22447','34489','18603','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22448','34492','18604','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22449','34492','18605','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22450','34492','18606','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22451','34495','18607','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22452','34495','18607','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22453','34498','18608','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22454','34498','18608','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22455','34499','18609','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22456','34521','18610','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22457','34519','18611','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22458','34519','18612','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22459','34518','18613','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22460','34515','18614','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22461','34515','18614','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22462','34514','18615','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22463','34514','18615','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22464','34511','18616','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22465','34500','18617','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22466','34500','18618','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22467','34500','18619','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22468','34500','18620','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22469','34500','18621','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22470','34500','18622','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22471','34500','18623','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22472','34500','18624','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22473','34500','18625','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22474','34500','18626','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22475','34500','18627','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22479','34523','18630','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22480','34532','18631','find','$,,"regexp","^(0)[0|1]{15}$"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22481','34533','18632','find','$,,"regexp","^(0{16})$"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22482','34534','18633','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22483','34537','18634','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22484','34537','18635','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22485','34537','18636','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22486','34540','18637','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22487','34540','18638','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22488','34540','18639','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22489','34543','18640','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22490','34543','18640','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22491','34546','18641','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22492','34546','18641','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22493','34547','18642','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22494','34569','18643','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22495','34567','18644','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22496','34567','18645','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22497','34566','18646','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22498','34563','18647','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22499','34563','18647','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22500','34562','18648','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22501','34562','18648','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22502','34559','18649','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22503','34548','18650','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22504','34548','18651','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22505','34548','18652','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22506','34548','18653','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22507','34548','18654','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22508','34548','18655','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22509','34548','18656','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22510','34548','18657','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22511','34548','18658','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22512','34548','18659','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22513','34548','18660','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22517','34571','18663','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22518','34580','18664','find','$,,"regexp","^(0)[0|1]{15}$"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22519','34581','18665','find','$,,"regexp","^(0{16})$"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22520','34582','18666','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22521','34585','18667','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22522','34585','18668','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22523','34585','18669','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22524','34588','18670','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22525','34588','18671','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22526','34588','18672','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22527','34591','18673','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22528','34591','18673','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22529','34594','18674','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22530','34594','18674','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22531','34595','18675','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22532','34617','18676','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22533','34615','18677','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22534','34615','18678','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22535','34614','18679','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22536','34611','18680','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22537','34611','18680','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22538','34610','18681','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22539','34610','18681','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22540','34607','18682','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22541','34596','18683','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22542','34596','18684','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22543','34596','18685','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22544','34596','18686','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22545','34596','18687','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22546','34596','18688','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22547','34596','18689','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22548','34596','18690','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22549','34596','18691','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22550','34596','18692','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22551','34596','18693','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22555','34619','18696','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22556','34628','18697','find','$,,"regexp","^(0)[0|1]{15}$"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22557','34629','18698','find','$,,"regexp","^(0{16})$"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22558','34630','18699','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22559','34633','18700','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22560','34633','18701','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22561','34633','18702','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22562','34636','18703','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22563','34636','18704','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22564','34636','18705','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22565','34639','18706','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22566','34639','18706','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22567','34642','18707','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22568','34642','18707','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22569','34643','18708','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22570','34665','18709','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22571','34663','18710','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22572','34663','18711','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22573','34662','18712','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22574','34659','18713','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22575','34659','18713','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22576','34658','18714','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22577','34658','18714','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22578','34655','18715','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22579','34644','18716','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22580','34644','18717','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22581','34644','18718','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22582','34644','18719','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22583','34644','18720','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22584','34644','18721','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22585','34644','18722','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22586','34644','18723','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22587','34644','18724','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22588','34644','18725','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22589','34644','18726','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22593','34667','18729','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22594','34676','18730','find','$,,"regexp","^(0)[0|1]{15}$"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22595','34677','18731','find','$,,"regexp","^(0{16})$"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22596','34678','18732','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22597','34681','18733','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22598','34681','18734','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22599','34681','18735','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22600','34684','18736','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22601','34684','18737','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22602','34684','18738','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22603','34687','18739','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22604','34687','18739','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22605','34690','18740','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22606','34690','18740','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22645','34739','18774','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22646','34761','18775','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22647','34759','18776','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22648','34759','18777','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22649','34758','18778','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22650','34755','18779','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22651','34755','18779','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22652','34754','18780','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22653','34754','18780','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22654','34751','18781','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22655','34740','18782','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22656','34740','18783','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22657','34740','18784','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22658','34740','18785','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22659','34740','18786','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22660','34740','18787','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22661','34740','18788','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22662','34740','18789','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22663','34740','18790','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22664','34740','18791','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22665','34740','18792','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22669','34763','18795','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22670','34772','18796','find','$,,"regexp","^(0)[0|1]{15}$"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22671','34773','18797','find','$,,"regexp","^(0{16})$"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22672','34774','18798','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22673','34777','18799','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22674','34777','18800','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22675','34777','18801','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22676','34780','18802','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22677','34780','18803','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22678','34780','18804','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22679','34783','18805','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22680','34783','18805','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22681','34786','18806','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22682','34786','18806','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22683','34787','18807','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22686','34215','18809','find','$,,"regexp","^(0{16})$"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22687','34792','18810','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22688','34792','18810','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22689','34793','18811','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22690','34815','18812','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22691','34813','18813','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22692','34813','18814','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22693','34812','18815','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22694','34809','18816','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22695','34809','18816','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22696','34808','18817','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22697','34808','18817','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22698','34805','18818','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22699','34794','18819','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22700','34794','18820','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22701','34794','18821','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22702','34794','18822','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22703','34794','18823','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22704','34794','18824','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22705','34794','18825','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22706','34794','18826','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22707','34794','18827','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22708','34794','18828','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22709','34794','18829','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22713','34817','18832','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22714','34826','18833','find','$,,"regexp","^(0)[0|1]{15}$"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22715','34827','18834','find','$,,"regexp","^(0{16})$"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22716','34828','18835','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22717','34831','18836','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22718','34831','18837','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22719','34831','18838','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22720','34834','18839','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22721','34834','18840','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22722','34834','18841','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22723','34837','18842','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22724','34837','18842','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22725','34840','18843','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22726','34840','18843','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22727','34841','18844','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22728','34863','18845','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22729','34861','18846','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22730','34861','18847','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22731','34860','18848','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22732','34857','18849','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22733','34857','18849','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22734','34856','18850','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22735','34856','18850','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22736','34853','18851','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22737','34842','18852','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22738','34842','18853','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22739','34842','18854','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22740','34842','18855','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22741','34842','18856','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22742','34842','18857','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22743','34842','18858','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22744','34842','18859','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22745','34842','18860','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22746','34842','18861','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22747','34842','18862','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22751','34865','18865','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22752','34874','18866','find','$,,"regexp","^(0)[0|1]{15}$"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22753','34875','18867','find','$,,"regexp","^(0{16})$"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22754','34876','18868','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22755','34879','18869','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22756','34879','18870','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22757','34879','18871','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22758','34882','18872','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22759','34882','18873','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22760','34882','18874','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22761','34885','18875','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22762','34885','18875','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22763','34888','18876','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22764','34888','18876','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22765','34889','18877','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22766','34911','18878','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22767','34909','18879','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22768','34909','18880','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22769','34908','18881','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22770','34905','18882','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22771','34905','18882','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22772','34904','18883','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22773','34904','18883','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22774','34901','18884','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22775','34890','18885','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22776','34890','18886','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22777','34890','18887','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22778','34890','18888','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22779','34890','18889','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22780','34890','18890','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22781','34890','18891','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22782','34890','18892','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22783','34890','18893','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22784','34890','18894','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22785','34890','18895','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22789','34913','18898','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22790','34922','18899','find','$,,"regexp","^(0)[0|1]{15}$"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22791','34923','18900','find','$,,"regexp","^(0{16})$"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22792','34924','18901','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22793','34927','18902','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22794','34927','18903','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22795','34927','18904','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22796','34930','18905','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22797','34930','18906','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22798','34930','18907','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22799','34933','18908','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22800','34933','18908','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22801','34936','18909','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22802','34936','18909','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('22977','30960','16895','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23029','32840','17507','min','$,1h');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23030','32848','17508','min','$,1h');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23031','32860','17509','min','$,1h');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23106','34937','18910','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23116','34949','18914','nodata','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23117','34949','18915','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23121','34961','18917','find','$,,"like","ok"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23122','34960','18918','find','$,,"like","running"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23126','35001','18920','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23127','34997','18920','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23128','34982','18921','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23129','34999','18922','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23130','34999','18923','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23131','34998','18924','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23132','34996','18925','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23133','35014','18926','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23134','35016','18927','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23135','35038','18928','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23136','35036','18929','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23137','35036','18930','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23138','35035','18931','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23143','35028','18934','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23144','35017','18935','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23145','35017','18936','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23146','35017','18937','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23147','35017','18938','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23148','35017','18939','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23149','35017','18940','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23150','35017','18941','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23151','35017','18942','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23152','35017','18943','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23153','35017','18944','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23154','35017','18945','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23159','35040','18948','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23160','35049','18949','find','$,,"regexp","^(0)[0|1]{15}$"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23161','35050','18950','find','$,,"regexp","^(0{16})$"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23162','35051','18951','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23163','35054','18952','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23164','35054','18953','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23165','35054','18954','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23166','35057','18955','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23167','35057','18956','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23168','35057','18957','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23169','35060','18958','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23170','35060','18958','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23171','35063','18959','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23172','35063','18959','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23173','32442','17410','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23174','32442','17410','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23175','32442','17410','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23176','30911','16887','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23177','30911','16887','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23178','30911','16887','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23179','28790','15952','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23180','28790','15952','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23181','28790','15952','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23182','32165','17353','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23183','32165','17353','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23184','32165','17353','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23185','35068','18960','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23186','35072','18961','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23187','35072','18961','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23188','35075','18962','find','$,,"like","invalid"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23189','35101','18963','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23190','35079','18964','min','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23191','30547','16745','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23192','30547','16745','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23193','30547','16745','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23194','30598','16747','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23195','30598','16747','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23196','30598','16747','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23197','30943','16890','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23198','30943','16890','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23199','30943','16890','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23200','30937','16898','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23201','30937','16898','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23202','30937','16898','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23203','32607','17456','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23204','32607','17456','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23205','32607','17456','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23206','30192','16645','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23207','30192','16645','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23208','30192','16645','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23209','30203','16652','count','$,#5,"eq","DOWN"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23210','30227','16660','count','$,#5,"eq","DOWN"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23211','35125','18965','find','$,#3,"regexp","(?:L[4-7]OK|^$)"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23212','30235','16662','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23213','30235','16662','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23214','30235','16662','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23215','30246','16669','count','$,#5,"eq","DOWN"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23216','30270','16677','count','$,#5,"eq","DOWN"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23217','35150','18966','find','$,#3,"regexp","(?:L[4-7]OK|^$)"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23218','31008','16908','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23219','31008','16908','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23220','31050','16916','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23221','31050','16916','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23222','33464','17961','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23223','33464','17961','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23224','33464','17961','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23225','32698','17494','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23226','32698','17494','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23227','32698','17494','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23228','30636','16755','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23229','30636','16755','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23230','30636','16755','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23231','28820','15958','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23232','28820','15958','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23233','28820','15958','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23234','28833','15963','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23235','28833','15963','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23236','28833','15963','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23237','35168','18967','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23238','35174','18968','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23239','35176','18969','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23240','35176','18970','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23241','35171','18971','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23242','35171','18971','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23243','35171','18971','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23244','35213','18972','sum','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23245','35211','18972','sum','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23246','35212','18973','sum','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23247','35211','18973','sum','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23248','35208','18974','find','$,,"like","up"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23249','35208','18974','find','$,,"like","down"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23250','35258','18975','find','$,,"like","up"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23251','35258','18975','find','$,,"like","down"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23252','31586','17091','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23253','31586','17091','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23254','31578','17095','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23255','31578','17095','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23256','31578','17095','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23257','31605','17099','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23258','31605','17099','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23259','31611','17103','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23260','31611','17103','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23261','31611','17103','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23262','30025','16445','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23263','30025','16445','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23264','30025','16445','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23265','30045','16450','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23266','30045','16450','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23267','30045','16450','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23268','33636','18030','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23269','33636','18030','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23270','32292','17373','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23271','32292','17373','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23272','32292','17373','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23273','35266','18976','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23274','35269','18977','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23275','28511','17499','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23276','28511','17499','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23277','28511','17499','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23278','32788','17506','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23279','32788','17506','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23280','32788','17506','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23281','33655','18032','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23282','33655','18032','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23283','33655','18032','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23284','34941','18911','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23285','34941','18911','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23286','34941','18911','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23287','34947','18912','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23288','34947','18912','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23289','34947','18912','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23290','34948','18913','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23291','34948','18913','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23292','34948','18913','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23293','34962','18916','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23294','34962','18916','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23295','34962','18916','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23296','34974','18919','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23297','34974','18919','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23298','34974','18919','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23299','22408','13086','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23300','22414','13093','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23301','23258','13473','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23302','23266','13481','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23303','35274','18978','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23304','35272','18979','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23305','35273','18980','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23306','35273','18980','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23307','35273','18980','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23308','35277','18981','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23309','35275','18982','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23310','35276','18983','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23311','35276','18983','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23312','35276','18983','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23313','28568','15870','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23314','31053','16919','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23315','31053','16919','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23316','31053','16919','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23317','35279','18984','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23318','35278','18985','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23319','32975','17523','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23320','32975','17523','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23321','32975','17523','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23322','32978','17526','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23323','32978','17526','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23324','32978','17526','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23325','33508','17968','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23326','33508','17968','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23327','33508','17968','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23328','33499','17970','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23329','33499','17970','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23330','33499','17970','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23331','33524','17972','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23332','33524','17972','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23333','33525','17972','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23334','33525','17972','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23335','33526','17972','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23336','33526','17972','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23337','33528','17976','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23338','33528','17976','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23339','33527','17976','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23340','33527','17976','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23341','33538','17976','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23342','33538','17976','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23343','33540','17976','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23344','33540','17976','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23345','33539','17976','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23346','33539','17976','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23347','31052','16918','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23348','31052','16918','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23349','31052','16918','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23350','22933','13368','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23351','22933','13368','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23352','22938','13370','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23353','22938','13370','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23354','22941','13372','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23355','22941','13372','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23356','22893','13352','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23357','22893','13352','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23358','22898','13354','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23359','22898','13354','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23360','22901','13356','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23361','22901','13356','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23362','22973','13384','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23363','22973','13384','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23364','22978','13386','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23365','22978','13386','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23366','22981','13388','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23367','22981','13388','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23368','23053','13416','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23369','23053','13416','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23370','23058','13418','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23371','23058','13418','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23372','23061','13420','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23373','23061','13420','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23374','22853','13336','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23375','22853','13336','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23376','22858','13338','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23377','22858','13338','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23378','22861','13340','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23379','22861','13340','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23380','23013','13400','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23381','23013','13400','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23382','23018','13402','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23383','23018','13402','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23384','23021','13404','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23385','23021','13404','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23386','33062','17539','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23387','33062','17539','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23388','33062','17539','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23389','30829','16831','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23390','30829','16831','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23391','30829','16831','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23392','30822','16834','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23393','30822','16834','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23394','30822','16834','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23395','35300','18986','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23396','35291','18986','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23397','35300','18987','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23398','35291','18987','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23399','35296','18988','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23400','35295','18988','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23401','35296','18989','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23402','35295','18989','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23403','35293','18990','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23404','35298','18991','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23405','35303','18992','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23406','35303','18993','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23407','35305','18994','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23408','35306','18995','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23409','35315','18996','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23410','35312','18996','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23411','35315','18997','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23412','35315','18998','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23413','35316','18999','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23414','35316','18999','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23415','35316','18999','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23416','35318','19000','nodata','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23417','35318','19001','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23418','35323','19002','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23419','35323','19002','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23420','35323','19002','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23421','35336','19003','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23422','35343','19003','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23423','35337','19004','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23424','35337','19004','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23425','35337','19004','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23426','35338','19005','max','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23427','35343','19006','max','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23428','35348','19007','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23429','35354','19008','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23430','35357','19008','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23431','35356','19009','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23432','35355','19009','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23433','35356','19010','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23434','35355','19010','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23435','33578','17990','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23436','33578','17990','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23437','33578','17990','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23438','33585','17993','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23439','33585','17993','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23440','33585','17993','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23441','33599','17995','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23442','33599','17995','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23443','33599','17995','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23444','33807','18227','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23445','33807','18227','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23446','33807','18227','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23447','33852','19011','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23448','33852','19011','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23449','33919','18239','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23450','33919','18239','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23451','33919','18239','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23452','31085','16941','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23453','31085','16941','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23454','31085','16941','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23455','30431','16726','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23456','30431','16726','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23457','30431','16726','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23458','30637','16762','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23459','30637','16762','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23460','30637','16762','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23461','30480','16733','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23462','30480','16733','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23463','30480','16733','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23464','31748','17177','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23465','31748','17177','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23466','31748','17177','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23467','31749','17178','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23468','31749','17178','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23469','31749','17178','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23470','31760','17188','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23471','31760','17188','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23472','31760','17188','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23473','31771','17192','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23474','31771','17192','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23475','31772','17193','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23476','31772','17193','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23477','31776','17197','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23478','31776','17197','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23479','31780','17199','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23480','31780','17199','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23481','31244','16989','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23482','31244','16989','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23483','31244','16989','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23484','31245','16990','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23485','31245','16990','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23486','31245','16990','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23487','31189','16999','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23488','31189','16999','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23489','31189','16999','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23490','31266','17006','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23491','31266','17006','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23492','31267','17007','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23493','31267','17007','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23494','31268','17009','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23495','31268','17009','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23496','31272','17011','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23497','31272','17011','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23498','32373','17393','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23499','32373','17393','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23500','32373','17393','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23501','32378','17400','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23502','32378','17400','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23503','32378','17400','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23504','30275','16682','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23505','30275','16682','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23506','30275','16682','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23507','30306','16688','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23508','30306','16688','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23509','30286','16689','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23510','30286','16689','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23511','30286','16689','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23512','30283','16690','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23513','30283','16690','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23514','30283','16690','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23515','34341','18551','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23516','34341','18551','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23517','34341','18551','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23518','34398','18569','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23519','34398','18569','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23520','34398','18569','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23521','27152','16593','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23522','27152','16593','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23523','27152','16593','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23620','27087','16863','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23621','27087','16863','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23622','27087','16863','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23632','27107','16841','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23633','27107','16841','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23634','27107','16841','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23695','27127','16866','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23696','27127','16866','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23697','27127','16866','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23707','30086','16492','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23708','30086','16492','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23709','30086','16492','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23710','27214','14322','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23711','27214','14322','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23712','27214','14322','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23713','28328','15718','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23714','28328','15718','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23715','28328','15718','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23716','27236','14337','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23717','27236','14337','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23718','27236','14337','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23719','27237','14336','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23720','27237','14336','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23721','27237','14336','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23722','27295','14364','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23723','27295','14364','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23724','27295','14364','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23725','27296','14363','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23726','27296','14363','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23727','27296','14363','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23728','27297','14365','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23729','27297','14365','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23730','27297','14365','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23731','27320','14383','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23732','27320','14383','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23733','27320','14383','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23734','35362','19012','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23735','35363','19013','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23736','35369','19014','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23737','35372','19015','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23738','35382','19016','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23739','35382','19016','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23740','35382','19016','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23741','35394','19017','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23742','35394','19017','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23743','35394','19017','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23744','33951','18301','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23745','33951','18301','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23746','33951','18301','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23747','33953','18302','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23748','33953','18302','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23749','33953','18302','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23750','33955','18303','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23751','33955','18303','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23752','33955','18303','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23753','33967','18307','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23754','33967','18307','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23755','33967','18307','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23756','33992','18328','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23757','33992','18328','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23758','33992','18328','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23759','33994','18329','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23760','33994','18329','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23761','33994','18329','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23762','33996','18330','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23763','33996','18330','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23764','33996','18330','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23765','34008','18334','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23766','34008','18334','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23767','34008','18334','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23768','34033','18355','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23769','34033','18355','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23770','34033','18355','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23771','34035','18356','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23772','34035','18356','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23773','34035','18356','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23774','34037','18357','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23775','34037','18357','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23776','34037','18357','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23777','34049','18361','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23778','34049','18361','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23779','34049','18361','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23780','34074','18382','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23781','34074','18382','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23782','34074','18382','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23783','34076','18383','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23784','34076','18383','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23785','34076','18383','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23786','34078','18384','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23787','34078','18384','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23788','34078','18384','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23789','34090','18388','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23790','34090','18388','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23791','34090','18388','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23792','34115','18409','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23793','34115','18409','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23794','34115','18409','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23795','34117','18410','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23796','34117','18410','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23797','34117','18410','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23798','34119','18411','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23799','34119','18411','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23800','34119','18411','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23801','34131','18415','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23802','34131','18415','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23803','34131','18415','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23804','27378','14409','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23805','27378','14409','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23806','27378','14409','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23807','30097','16507','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23808','30097','16507','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23809','30097','16507','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23828','27419','14417','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23829','27419','14417','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23830','27419','14417','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23840','27483','14463','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23841','27483','14463','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23842','27483','14463','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23843','27481','16523','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23844','27481','16523','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23845','27481','16523','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23846','27509','14474','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23847','27509','14474','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23848','27509','14474','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23849','30106','16525','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23850','30106','16525','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23851','30106','16525','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23852','27544','14493','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23853','27544','14493','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23854','27544','14493','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23855','27545','14492','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23856','27545','14492','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23857','27545','14492','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23858','27579','14515','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23859','27579','14515','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23860','27579','14515','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23861','27582','14514','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23862','27582','14514','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23863','27582','14514','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23864','30109','16530','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23865','30109','16530','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23866','30109','16530','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23870','35408','19019','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23871','35423','19020','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23873','35444','19022','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23874','35445','19023','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23875','35452','19024','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23882','35495','19028','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23883','35495','19028','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23884','35501','19028','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23885','35501','19028','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23886','27677','14557','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23887','27677','14557','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23888','27677','14557','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23889','27678','14556','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23890','27678','14556','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23891','27678','14556','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23892','27675','16532','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23893','27675','16532','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23894','27675','16532','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23895','28141','14913','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23896','28141','14913','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23897','28141','14913','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23898','28142','14912','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23899','28142','14912','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23900','28142','14912','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23901','27750','14592','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23902','27750','14592','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23903','27750','14592','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23904','27749','16538','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23905','27749','16538','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23906','27749','16538','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23907','27777','14603','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23908','27777','14603','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23909','27777','14603','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23910','27785','14607','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23911','27785','14607','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23912','27785','14607','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23913','27813','14621','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23914','27813','14621','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23915','27813','14621','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23916','30117','16540','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23917','30117','16540','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23918','30117','16540','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23919','34157','18437','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23920','34157','18437','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23921','34157','18437','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23922','28204','14937','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23923','28204','14937','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23924','28204','14937','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23925','34171','18444','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23926','34171','18444','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23927','34171','18444','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23928','27895','14662','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23929','27895','14662','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23930','27895','14662','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23931','27894','14661','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23932','27894','14661','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23933','27894','14661','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23934','30119','16543','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23935','30119','16543','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23936','30119','16543','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23937','27931','14680','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23938','27931','14680','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23939','27931','14680','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23940','30121','16549','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23941','30121','16549','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23942','30121','16549','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23943','27967','14699','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23944','27967','14699','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23945','27967','14699','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23946','27970','14698','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23947','27970','14698','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23948','27970','14698','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23949','30125','16555','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23950','30125','16555','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23951','30125','16555','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23952','27998','14710','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23953','27998','14710','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23954','27998','14710','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23955','27999','14709','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23956','27999','14709','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23957','27999','14709','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23958','28027','14724','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23959','28027','14724','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23960','28027','14724','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23961','35532','19029','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23962','35534','19030','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23963','35534','19030','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23964','35534','19030','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23965','35537','19031','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23966','35539','19032','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23967','35539','19032','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23968','35539','19032','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23969','35540','19033','find','$,,"like","moduleNoDefect"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23971','35547','19035','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23972','35549','19036','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23973','35550','19037','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23974','35552','19038','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23975','35555','19039','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23976','35555','19039','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23977','35555','19039','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23978','35560','19040','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23979','35560','19040','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23980','35560','19040','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23981','35562','19041','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23982','35563','19042','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23983','35564','19043','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23984','35566','19044','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23985','35567','19045','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23986','35567','19045','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23987','35567','19045','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23988','35570','19046','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23989','35572','19047','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23990','35572','19047','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23991','35572','19047','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23993','35580','19049','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23994','35588','19050','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23995','35588','19050','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23996','35588','19050','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23997','35598','19051','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23998','35598','19052','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('23999','35602','19053','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24000','35602','19053','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24001','35602','19053','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24002','35606','19054','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24003','35607','19055','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24004','35608','19056','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24005','35610','19057','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24006','35611','19058','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24007','35611','19058','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24008','35611','19058','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24009','35614','19059','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24010','35616','19060','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24011','35616','19060','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24012','35616','19060','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24014','35622','19062','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24015','35630','19063','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24016','35630','19063','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24017','35630','19063','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24018','35640','19064','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24019','35641','19065','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24020','35642','19066','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24021','35646','19067','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24023','35658','19069','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24024','35659','19070','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24025','35660','19071','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24026','35661','19072','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24027','35671','19073','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24028','35677','19074','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24029','35676','19075','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24030','35674','19076','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24031','35667','19077','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24032','35667','19077','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24033','35667','19077','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24034','35689','19078','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24035','35689','19078','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24036','35689','19078','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24037','35695','19079','find','$,,"like","moduleNoDefect"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24038','35696','19080','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24039','35696','19080','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24040','35696','19080','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24041','35698','19081','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24042','35698','19081','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24043','35698','19081','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24044','35699','19082','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24045','35699','19082','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24046','35699','19082','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24047','35700','19083','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24048','35700','19083','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24049','35700','19083','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24050','35703','19084','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24051','35703','19084','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24052','35703','19084','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24053','35706','19085','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24054','35707','19086','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24055','35708','19087','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24056','35709','19088','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24057','35713','19089','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24059','35725','19091','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24060','35726','19092','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24061','35727','19093','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24062','35728','19094','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24063','35738','19095','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24064','35744','19096','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24065','35743','19097','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24066','35741','19098','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24067','35734','19099','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24068','35734','19099','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24069','35734','19099','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24070','35756','19100','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24071','35756','19100','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24072','35756','19100','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24073','35762','19101','find','$,,"like","moduleNoDefect"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24074','35763','19102','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24075','35763','19102','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24076','35763','19102','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24077','35765','19103','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24078','35765','19103','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24079','35765','19103','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24080','35766','19104','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24081','35766','19104','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24082','35766','19104','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24083','35767','19105','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24084','35767','19105','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24085','35767','19105','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24086','35770','19106','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24087','35770','19106','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24088','35770','19106','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24089','35773','19107','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24090','35774','19108','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24091','35775','19109','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24092','35776','19110','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24093','35778','19111','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24094','35778','19111','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24095','35778','19111','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24096','35781','19112','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24097','35783','19113','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24098','35783','19113','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24099','35783','19113','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24100','35784','19114','find','$,,"like","moduleNoDefect"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24102','35791','19116','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24103','35793','19117','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24104','35795','19118','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24105','35796','19119','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24106','35798','19120','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24107','35801','19121','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24108','35801','19121','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24109','35801','19121','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24110','35806','19122','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24111','35806','19122','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24112','35806','19122','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24113','35808','19123','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24114','35809','19124','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24115','35810','19125','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24116','35812','19126','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24117','35813','19127','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24118','35813','19127','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24119','35813','19127','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24120','35816','19128','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24121','35818','19129','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24122','35818','19129','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24123','35818','19129','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24125','35830','19131','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24126','35830','19131','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24127','35830','19131','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24128','35840','19132','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24129','35840','19133','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24130','35844','19134','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24131','35844','19134','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24132','35844','19134','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24133','35848','19135','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24134','35850','19136','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24135','35851','19137','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24136','35851','19137','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24137','35851','19137','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24138','35854','19138','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24139','35856','19139','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24140','35856','19139','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24141','35856','19139','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24143','35864','19141','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24144','35872','19142','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24145','35872','19142','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24146','35872','19142','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24147','35882','19143','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24148','35882','19144','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24149','35886','19145','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24150','35886','19145','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24151','35886','19145','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24152','35890','19146','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24153','35891','19147','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24154','35892','19148','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24155','35894','19149','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24156','35895','19150','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24157','35895','19150','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24158','35895','19150','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24159','35898','19151','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24160','35900','19152','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24161','35900','19152','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24162','35900','19152','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24164','35908','19154','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24165','35916','19155','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24166','35916','19155','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24167','35916','19155','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24168','35926','19156','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24169','35926','19157','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24170','35930','19158','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24171','35930','19158','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24172','35930','19158','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24173','35934','19159','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24174','35935','19160','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24175','35936','19161','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24176','35938','19162','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24177','35939','19163','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24178','35939','19163','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24179','35939','19163','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24180','35942','19164','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24181','35944','19165','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24182','35944','19165','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24183','35944','19165','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24185','35952','19167','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24186','35960','19168','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24187','35960','19168','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24188','35960','19168','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24189','35970','19169','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24190','35970','19170','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24191','35974','19171','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24192','35974','19171','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24193','35974','19171','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24194','35978','19172','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24195','35979','19173','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24196','35980','19174','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24197','35982','19175','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24198','35983','19176','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24199','35983','19176','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24200','35983','19176','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24201','35986','19177','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24202','35988','19178','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24203','35988','19178','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24204','35988','19178','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24206','35996','19180','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24207','36004','19181','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24208','36004','19181','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24209','36004','19181','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24210','36014','19182','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24211','36014','19183','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24212','36018','19184','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24213','36018','19184','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24214','36018','19184','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24215','36022','19185','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24216','36023','19186','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24217','36024','19187','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24218','36026','19188','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24219','36027','19189','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24220','36027','19189','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24221','36027','19189','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24222','36030','19190','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24223','36031','19191','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24224','36033','19192','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24225','36033','19192','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24226','36033','19192','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24228','36041','19194','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24229','36049','19195','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24230','36049','19195','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24231','36049','19195','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24232','36059','19196','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24233','36059','19197','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24234','36063','19198','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24235','36063','19198','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24236','36063','19198','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24237','36067','19199','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24238','36068','19200','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24239','36069','19201','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24240','36071','19202','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24241','36072','19203','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24242','36072','19203','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24243','36072','19203','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24244','36075','19204','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24245','36076','19205','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24246','36078','19206','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24247','36078','19206','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24248','36078','19206','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24250','36086','19208','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24251','36094','19209','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24252','36094','19209','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24253','36094','19209','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24254','36104','19210','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24255','36104','19211','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24256','36108','19212','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24257','36108','19212','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24258','36108','19212','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24259','36112','19213','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24260','36113','19214','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24261','36114','19215','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24262','36116','19216','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24263','36117','19217','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24264','36117','19217','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24265','36117','19217','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24266','36120','19218','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24267','36122','19219','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24268','36122','19219','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24269','36122','19219','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24271','36131','19221','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24272','36132','19222','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24273','36140','19223','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24274','36140','19223','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24275','36140','19223','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24276','36150','19224','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24277','36150','19225','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24278','36154','19226','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24279','36154','19226','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24280','36154','19226','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24281','36158','19227','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24282','36159','19228','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24283','29113','16579','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24284','29113','16579','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24285','29113','16579','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24286','29121','16042','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24287','29121','16042','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24288','29121','16042','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24289','29120','16041','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24290','29120','16041','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24307','29222','17024','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24308','29222','17024','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24309','29222','17024','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24316','31841','17247','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24317','31841','17247','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24318','31841','17247','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24319','31844','17249','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24320','31844','17249','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24321','31844','17249','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24322','31849','17251','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24323','31849','17251','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24332','31915','17273','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24333','31915','17273','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24334','31915','17273','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24338','29414','16584','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24339','29414','16584','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24340','29414','16584','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24341','29428','16143','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24342','29428','16143','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24343','29428','16143','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24344','29444','16883','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24345','29444','16883','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24346','29444','16883','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24347','29474','16585','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24348','29474','16585','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24349','29474','16585','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24353','31454','17042','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24354','31454','17042','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24355','31454','17042','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24359','31958','17288','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24360','31958','17288','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24361','31958','17288','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24365','32041','17310','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24366','32041','17310','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24367','32041','17310','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24371','34456','18595','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24372','34456','18595','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24373','34456','18595','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24374','34504','18628','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24375','34504','18628','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24376','34504','18628','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24377','34552','18661','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24378','34552','18661','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24379','34552','18661','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24380','34600','18694','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24381','34600','18694','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24382','34600','18694','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24383','34648','18727','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24384','34648','18727','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24385','34648','18727','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24386','35021','18946','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24387','35021','18946','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24388','35021','18946','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24389','34744','18793','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24390','34744','18793','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24391','34744','18793','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24392','34788','18808','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24393','34788','18808','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24394','34788','18808','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24395','34798','18830','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24396','34798','18830','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24397','34798','18830','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24398','34846','18863','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24399','34846','18863','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24400','34846','18863','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24401','34894','18896','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24402','34894','18896','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24403','34894','18896','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24404','33694','18183','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24405','33694','18183','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24406','33694','18183','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24407','33708','18189','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24408','33708','18189','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24409','34248','18508','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24410','34248','18508','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24411','34248','18508','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24412','34273','18509','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24413','34273','18509','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24414','34273','18509','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24415','34274','18510','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24416','34274','18510','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24417','34274','18510','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24418','34275','18511','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24419','34275','18511','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24420','34275','18511','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24421','34278','18512','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24422','34278','18512','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24423','34278','18512','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24424','34279','18513','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24425','34279','18513','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24426','34279','18513','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24427','34280','18514','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24428','34280','18514','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24429','34280','18514','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24430','34286','18518','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24431','34286','18518','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24432','34286','18518','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24433','34288','18519','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24434','34288','18519','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24435','34288','18519','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24436','34290','18520','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24437','34290','18520','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24438','34290','18520','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24439','34310','18521','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24440','34310','18521','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24441','34310','18521','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24442','33348','17929','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24443','33349','17929','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24444','33349','17929','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24445','30688','16767','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24446','30688','16767','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24447','36163','19229','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24448','36163','19229','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24449','36163','19229','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24451','36167','19231','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24452','36178','19232','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24453','36178','19233','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24454','36180','19234','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24455','36180','19235','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24456','36180','19236','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24457','36181','19237','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24458','36181','19238','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24459','36185','19239','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24460','36190','19239','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24461','36194','19240','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24462','36194','19240','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24463','36194','19240','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24464','36198','19241','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24465','36198','19241','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24466','36198','19241','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24467','36200','19242','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24468','36200','19243','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24469','36201','19244','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24470','36201','19245','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24471','36202','19246','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24472','36202','19246','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24473','36202','19247','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24474','36202','19247','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24475','36203','19248','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24476','36203','19248','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24477','36203','19249','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24478','36203','19249','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24479','36204','19250','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24480','36204','19250','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24481','36204','19251','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24482','36204','19251','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24483','36205','19252','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24484','36205','19252','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24485','36205','19253','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24486','36205','19253','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24487','36206','19254','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24488','36206','19254','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24489','36206','19255','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24490','36206','19255','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24491','36208','19256','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24492','36208','19256','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24493','36208','19256','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24494','36209','19257','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24495','36209','19258','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24496','36212','19259','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24497','30074','16478','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24498','30074','16478','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24499','30074','16478','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24500','36215','19260','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24501','36215','19260','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24502','36215','19260','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24503','36217','19261','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24504','36217','19261','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24505','36217','19261','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24506','36218','19262','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24507','36218','19263','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24508','36214','19264','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24509','36227','19265','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24510','36227','19266','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24511','36228','19267','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24512','36228','19268','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24513','36236','19269','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24514','36236','19270','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24515','36237','19271','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24516','36237','19272','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24517','36240','19273','find','$,,"like"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24518','36240','19273','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24519','36240','19273','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24520','36243','19274','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24521','36243','19274','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24522','36243','19274','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24523','36245','19275','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24524','36245','19276','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24525','36246','19277','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24526','36246','19278','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24527','36247','19279','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24528','36247','19280','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24529','36253','19281','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24530','36253','19282','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24531','36257','19283','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24532','36257','19283','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24533','36257','19283','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24534','36259','19284','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24535','36259','19284','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24536','36259','19284','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24537','36261','19285','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24538','36261','19285','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24539','36261','19285','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24540','36263','19286','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24541','36263','19287','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24542','36263','19288','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24543','36264','19289','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24544','36264','19289','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24545','36264','19289','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24547','36267','19291','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24548','36275','19292','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24549','36275','19293','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24550','36275','19294','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24551','36277','19295','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24552','36277','19296','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24553','36277','19297','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24554','36279','19298','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24555','36279','19299','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24556','36282','19300','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24557','36282','19300','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24558','36282','19300','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24559','36284','19301','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24560','36285','19302','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24561','36285','19303','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24562','36286','19304','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24563','36286','19305','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24564','36287','19306','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24565','36287','19307','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24566','36287','19308','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24567','36293','19309','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24568','36293','19310','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24569','36297','19311','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24570','36297','19311','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24571','36297','19311','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24572','36299','19312','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24573','36299','19312','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24574','36299','19312','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24575','36300','19313','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24576','36300','19314','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24577','36296','19315','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24578','36309','19316','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24579','36309','19317','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24580','36310','19318','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24581','36310','19319','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24582','36318','19320','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24583','36318','19321','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24584','36319','19322','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24585','36319','19323','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24586','36322','19324','find','$,,"like"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24587','36322','19324','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24588','36322','19324','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24589','36325','19325','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24590','36325','19325','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24591','36325','19325','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24592','36327','19326','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24593','36327','19327','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24594','36328','19328','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24595','36328','19329','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24596','36329','19330','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24597','36329','19331','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24598','36335','19332','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24599','36335','19333','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24600','36339','19334','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24601','36339','19334','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24602','36339','19334','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24603','36341','19335','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24604','36341','19335','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24605','36341','19335','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24606','36343','19336','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24607','36343','19336','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24608','36343','19336','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24609','36345','19337','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24610','36345','19338','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24611','36345','19339','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24612','36346','19340','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24613','36346','19340','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24614','36346','19340','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24616','36349','19342','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24617','36357','19343','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24618','36357','19344','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24619','36357','19345','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24620','36359','19346','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24621','36359','19347','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24622','36359','19348','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24623','36361','19349','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24624','36361','19350','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24625','36364','19351','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24626','36364','19351','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24627','36364','19351','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24628','36366','19352','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24629','36367','19353','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24630','36367','19354','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24631','36368','19355','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24632','36368','19356','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24633','36369','19357','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24634','36369','19358','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24635','36369','19359','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24636','36375','19360','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24637','36375','19361','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24638','36379','19362','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24639','36379','19362','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24640','36379','19362','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24641','36381','19363','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24642','36381','19363','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24643','36381','19363','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24644','36382','19364','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24645','36382','19365','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24646','36378','19366','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24647','36391','19367','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24648','36391','19368','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24649','36392','19369','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24650','36392','19370','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24651','36400','19371','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24652','36400','19372','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24653','36401','19373','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24654','36401','19374','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24655','36404','19375','find','$,,"like"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24656','36404','19375','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24657','36404','19375','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24658','36407','19376','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24659','36407','19376','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24660','36407','19376','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24661','36409','19377','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24662','36409','19378','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24663','36410','19379','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24664','36410','19380','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24665','36411','19381','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24666','36411','19382','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24667','36417','19383','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24668','36417','19384','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24669','36421','19385','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24670','36421','19385','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24671','36421','19385','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24672','36423','19386','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24673','36423','19386','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24674','36423','19386','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24675','36425','19387','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24676','36425','19387','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24677','36425','19387','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24678','36427','19388','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24679','36427','19389','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24680','36427','19390','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24681','36428','19391','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24682','36428','19391','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24683','36428','19391','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24685','36431','19393','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24686','36439','19394','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24687','36439','19395','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24688','36439','19396','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24689','36441','19397','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24690','36441','19398','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24691','36441','19399','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24692','36443','19400','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24693','36443','19401','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24694','36446','19402','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24695','36446','19402','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24696','36446','19402','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24697','36448','19403','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24698','36449','19404','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24699','36449','19405','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24700','36450','19406','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24701','36450','19407','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24702','36451','19408','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24703','36451','19409','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24704','36451','19410','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24705','36457','19411','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24706','36457','19412','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24707','36461','19413','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24708','36461','19413','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24709','36461','19413','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24710','36463','19414','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24711','36463','19414','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24712','36463','19414','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24713','36464','19415','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24714','36464','19416','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24715','36460','19417','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24716','36473','19418','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24717','36473','19419','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24718','36474','19420','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24719','36474','19421','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24720','36482','19422','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24721','36482','19423','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24722','36483','19424','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24723','36483','19425','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24724','36486','19426','find','$,,"like"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24725','36486','19426','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24726','36486','19426','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24727','36489','19427','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24728','36489','19427','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24729','36489','19427','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24730','36491','19428','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24731','36491','19429','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24732','36492','19430','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24733','36492','19431','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24734','36493','19432','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24735','36493','19433','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24736','36499','19434','find','$,,"like","Critical"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24737','36499','19435','find','$,,"like","Warning"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24738','36503','19436','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24739','36503','19436','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24740','36503','19436','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24741','36505','19437','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24742','36505','19437','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24743','36505','19437','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24744','36507','19438','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24745','36507','19438','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24746','36507','19438','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24747','36509','19439','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24748','36509','19440','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24749','36509','19441','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24750','36510','19442','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24751','36510','19442','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24752','36510','19442','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24754','36513','19444','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24755','36521','19445','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24756','36521','19446','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24757','36521','19447','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24758','36523','19448','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24759','36523','19449','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24760','36523','19450','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24761','36525','19451','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24762','36525','19452','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24763','36528','19453','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24764','36528','19453','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24765','36528','19453','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24766','36530','19454','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24767','36531','19455','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24768','36531','19456','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24769','36532','19457','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24770','36532','19458','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24771','36533','19459','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24772','36533','19460','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24773','36533','19461','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24774','36539','19462','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24775','36539','19463','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24776','28345','15732','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24777','28345','15732','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24778','28345','15732','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24779','28344','15731','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24780','28344','15731','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24781','28344','15731','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24782','30141','16577','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24783','30141','16577','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24784','30141','16577','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24785','28362','15745','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24786','28362','15745','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24787','28362','15745','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24788','36544','19464','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24789','36544','19464','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24790','36544','19464','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24791','36546','19465','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24792','36546','19465','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24793','36546','19465','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24794','36549','19466','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24795','36549','19467','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24797','36552','19469','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24798','36567','19470','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24799','36567','19471','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24800','36568','19472','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24801','36568','19473','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24802','36568','19474','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24803','36570','19475','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24804','36570','19476','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24805','36571','19477','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24806','36571','19478','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24807','36572','19479','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24808','36572','19480','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24809','36575','19481','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24810','36575','19481','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24811','36575','19481','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24812','36577','19482','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24813','36578','19483','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24814','36578','19484','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24815','36579','19485','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24816','36579','19486','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24817','36580','19487','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24818','36580','19488','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24819','36580','19489','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24820','36582','19490','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24821','36582','19491','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24822','36582','19492','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24823','36584','19493','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24824','36584','19494','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24825','36584','19495','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24826','36587','19496','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24827','36587','19497','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24828','36587','19498','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24829','36589','19499','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24830','36589','19500','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24831','36589','19501','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24832','36591','19502','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24833','36591','19503','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24834','36591','19504','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24835','36593','19505','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24836','36593','19506','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24837','36593','19507','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24838','36597','19508','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24839','36597','19509','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24840','36601','19510','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24841','36601','19510','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24842','36601','19510','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24843','36603','19511','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24844','36603','19511','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24845','36603','19511','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24846','36606','19512','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24847','36606','19513','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24849','36609','19515','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24850','36624','19516','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24851','36624','19517','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24852','36625','19518','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24853','36625','19519','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24854','36625','19520','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24855','36627','19521','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24856','36627','19522','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24857','36628','19523','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24858','36628','19524','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24859','36629','19525','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24860','36629','19526','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24861','36632','19527','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24862','36632','19527','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24863','36632','19527','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24864','36634','19528','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24865','36635','19529','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24866','36635','19530','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24867','36636','19531','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24868','36636','19532','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24869','36637','19533','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24870','36637','19534','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24871','36637','19535','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24872','36639','19536','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24873','36639','19537','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24874','36639','19538','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24875','36641','19539','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24876','36641','19540','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24877','36641','19541','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24878','36644','19542','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24879','36644','19543','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24880','36644','19544','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24881','36646','19545','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24882','36646','19546','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24883','36646','19547','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24884','36648','19548','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24885','36648','19549','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24886','36648','19550','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24887','36650','19551','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24888','36650','19552','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24889','36650','19553','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24890','36654','19554','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24891','36654','19555','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24892','36658','19556','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24893','36658','19556','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24894','36658','19556','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24895','36660','19557','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24896','36660','19557','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24897','36660','19557','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24898','36663','19558','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24899','36663','19559','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24901','36666','19561','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24902','36681','19562','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24903','36681','19563','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24904','36682','19564','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24905','36682','19565','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24906','36682','19566','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24907','36684','19567','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24908','36684','19568','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24909','36685','19569','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24910','36685','19570','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24911','36686','19571','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24912','36686','19572','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24913','36689','19573','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24914','36689','19573','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24915','36689','19573','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24916','36691','19574','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24917','36692','19575','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24918','36692','19576','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24919','36693','19577','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24920','36693','19578','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24921','36694','19579','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24922','36694','19580','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24923','36694','19581','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24924','36696','19582','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24925','36696','19583','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24926','36696','19584','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24927','36698','19585','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24928','36698','19586','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24929','36698','19587','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24930','36701','19588','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24931','36701','19589','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24932','36701','19590','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24933','36703','19591','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24934','36703','19592','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24935','36703','19593','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24936','36705','19594','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24937','36705','19595','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24938','36705','19596','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24939','36707','19597','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24940','36707','19598','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24941','36707','19599','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24942','36711','19600','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24943','36711','19601','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24944','36715','19602','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24945','36715','19602','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24946','36715','19602','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24947','36717','19603','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24948','36717','19603','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24949','36717','19603','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24950','36720','19604','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24951','36720','19605','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24953','36723','19607','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24954','36738','19608','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24955','36738','19609','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24956','36739','19610','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24957','36739','19611','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24958','36739','19612','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24959','36741','19613','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24960','36741','19614','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24961','36742','19615','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24962','36742','19616','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24963','36743','19617','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24964','36743','19618','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24965','36746','19619','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24966','36746','19619','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24967','36746','19619','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24968','36748','19620','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24969','36749','19621','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24970','36749','19622','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24971','36750','19623','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24972','36750','19624','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24973','36751','19625','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24974','36751','19626','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24975','36751','19627','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24976','36753','19628','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24977','36753','19629','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24978','36753','19630','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24979','36755','19631','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24980','36755','19632','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24981','36755','19633','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24982','36758','19634','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24983','36758','19635','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24984','36758','19636','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24985','36760','19637','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24986','36760','19638','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24987','36760','19639','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24988','36762','19640','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24989','36762','19641','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24990','36762','19642','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24991','36764','19643','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24992','36764','19644','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24993','36764','19645','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24994','36768','19646','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24995','36768','19647','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24996','28391','15762','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24997','28391','15762','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24998','28391','15762','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('24999','28419','15795','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25000','28419','15795','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25001','28419','15795','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25002','28467','15827','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25003','28467','15827','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25004','28467','15827','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25005','31786','17225','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25006','31786','17225','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25007','31786','17225','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25008','36771','19648','min','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25009','36770','19649','min','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25010','36769','19650','min','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25011','36773','19651','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25012','36773','19652','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25013','36782','19653','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25014','36794','19654','find','$,,"like","errored"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25015','36796','19655','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25016','36805','19656','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25017','36798','19657','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25018','36812','19658','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25019','36812','19658','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25020','36812','19658','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25021','36816','19659','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25022','35414','19018','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25023','35414','19018','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25024','35414','19018','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25025','36823','19660','count','$,10m,"ne","3"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25026','36823','19660','count','$,10m,"ne","4"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25027','36822','19661','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25028','36822','19662','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25029','35478','19025','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25030','35480','19025','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25031','35444','19663','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25032','35445','19664','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25033','35446','19665','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25034','35446','19666','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25035','36824','19667','count','$,120m,"ne","1"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25036','36825','19668','count','$,120m,"ne","1"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25060','36847','19679','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25061','36847','19679','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25062','36847','19679','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25063','36849','19680','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25064','36849','19680','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25065','36849','19680','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25066','36850','19681','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25067','36850','19681','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25068','36850','19681','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25069','36853','19682','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25070','36861','19683','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25071','36862','19684','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25072','36862','19684','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25073','36862','19685','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25074','36862','19685','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25075','36862','19686','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25076','36862','19686','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25077','36863','19687','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25078','36863','19687','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25079','36863','19688','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25080','36863','19688','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25081','36863','19689','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25082','36863','19689','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25083','36864','19690','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25084','36865','19691','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25085','36866','19692','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25086','36867','19693','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25087','36876','19694','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25119','36901','19707','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25120','36901','19707','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25121','36901','19707','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25122','36903','19708','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25123','36903','19708','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25124','36903','19708','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25125','36904','19709','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25126','36904','19709','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25127','36904','19709','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25128','36907','19710','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25129','36915','19711','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25130','36916','19712','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25131','36916','19712','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25132','36916','19713','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25133','36916','19713','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25134','36916','19714','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25135','36916','19714','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25136','36917','19715','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25137','36917','19715','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25138','36917','19716','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25139','36917','19716','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25140','36917','19717','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25141','36917','19717','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25142','36918','19718','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25143','36919','19719','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25144','36920','19720','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25145','36921','19721','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25146','36930','19722','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25178','36955','19735','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25179','36955','19735','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25180','36955','19735','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25181','36957','19736','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25182','36957','19736','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25183','36957','19736','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25184','36958','19737','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25185','36958','19737','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25186','36958','19737','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25187','36961','19738','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25188','36969','19739','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25189','36970','19740','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25190','36970','19740','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25191','36970','19741','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25192','36970','19741','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25193','36970','19742','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25194','36970','19742','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25195','36971','19743','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25196','36971','19743','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25197','36971','19744','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25198','36971','19744','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25199','36971','19745','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25200','36971','19745','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25201','36972','19746','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25202','36973','19747','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25203','36974','19748','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25204','36975','19749','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25205','36984','19750','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25237','37009','19763','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25238','37009','19763','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25239','37009','19763','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25240','37011','19764','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25241','37011','19764','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25242','37011','19764','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25243','37012','19765','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25244','37012','19765','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25245','37012','19765','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25246','37015','19766','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25247','37023','19767','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25248','37024','19768','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25249','37024','19768','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25250','37024','19769','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25251','37024','19769','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25252','37024','19770','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25253','37024','19770','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25254','37025','19771','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25255','37025','19771','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25256','37025','19772','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25257','37025','19772','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25258','37025','19773','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25259','37025','19773','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25260','37026','19774','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25261','37027','19775','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25262','37028','19776','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25263','37029','19777','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25264','37038','19778','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25296','37063','19791','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25297','37063','19791','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25298','37063','19791','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25299','37065','19792','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25300','37065','19792','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25301','37065','19792','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25302','37066','19793','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25303','37066','19793','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25304','37066','19793','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25305','37069','19794','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25306','37077','19795','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25307','37078','19796','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25308','37078','19796','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25309','37078','19797','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25310','37078','19797','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25311','37078','19798','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25312','37078','19798','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25313','37079','19799','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25314','37079','19799','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25315','37079','19800','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25316','37079','19800','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25317','37079','19801','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25318','37079','19801','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25319','37080','19802','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25320','37081','19803','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25321','37082','19804','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25322','37083','19805','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25323','37092','19806','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25355','37117','19819','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25356','37117','19819','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25357','37117','19819','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25358','37119','19820','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25359','37119','19820','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25360','37119','19820','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25361','37120','19821','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25362','37120','19821','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25363','37120','19821','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25364','37123','19822','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25365','37131','19823','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25366','37132','19824','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25367','37132','19824','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25368','37132','19825','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25369','37132','19825','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25370','37132','19826','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25371','37132','19826','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25372','37133','19827','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25373','37133','19827','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25374','37133','19828','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25375','37133','19828','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25376','37133','19829','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25377','37133','19829','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25378','37134','19830','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25379','37135','19831','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25380','37136','19832','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25381','37137','19833','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25382','37146','19834','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25414','37171','19847','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25415','37171','19847','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25416','37171','19847','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25417','37173','19848','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25418','37173','19848','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25419','37173','19848','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25420','37174','19849','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25421','37174','19849','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25422','37174','19849','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25423','37177','19850','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25424','37185','19851','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25425','37186','19852','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25426','37186','19852','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25427','37186','19853','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25428','37186','19853','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25429','37186','19854','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25430','37186','19854','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25431','37187','19855','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25432','37187','19855','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25433','37187','19856','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25434','37187','19856','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25435','37187','19857','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25436','37187','19857','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25437','37188','19858','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25438','37189','19859','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25439','37190','19860','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25440','37191','19861','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25441','37200','19862','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25473','37225','19875','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25474','37225','19875','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25475','37225','19875','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25476','37227','19876','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25477','37227','19876','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25478','37227','19876','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25479','37228','19877','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25480','37228','19877','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25481','37228','19877','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25482','37231','19878','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25483','37239','19879','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25484','37240','19880','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25485','37240','19880','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25486','37240','19881','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25487','37240','19881','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25488','37240','19882','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25489','37240','19882','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25490','37241','19883','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25491','37241','19883','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25492','37241','19884','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25493','37241','19884','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25494','37241','19885','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25495','37241','19885','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25496','37242','19886','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25497','37243','19887','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25498','37244','19888','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25499','37245','19889','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25500','37254','19890','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25532','37279','19903','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25533','37279','19903','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25534','37279','19903','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25535','37281','19904','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25536','37281','19904','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25537','37281','19904','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25538','37282','19905','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25539','37282','19905','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25540','37282','19905','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25541','37285','19906','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25542','37293','19907','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25543','37294','19908','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25544','37294','19908','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25545','37294','19909','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25546','37294','19909','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25547','37294','19910','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25548','37294','19910','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25549','37295','19911','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25550','37295','19911','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25551','37295','19912','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25552','37295','19912','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25553','37295','19913','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25554','37295','19913','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25555','37296','19914','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25556','37297','19915','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25557','37298','19916','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25558','37299','19917','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25559','37308','19918','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25591','37333','19931','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25592','37333','19931','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25593','37333','19931','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25594','37335','19932','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25595','37335','19932','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25596','37335','19932','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25597','37336','19933','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25598','37336','19933','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25599','37336','19933','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25600','37339','19934','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25601','37347','19935','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25602','37348','19936','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25603','37348','19936','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25604','37348','19937','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25605','37348','19937','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25606','37348','19938','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25607','37348','19938','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25608','37349','19939','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25609','37349','19939','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25610','37349','19940','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25611','37349','19940','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25612','37349','19941','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25613','37349','19941','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25614','37350','19942','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25615','37351','19943','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25616','37352','19944','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25617','37353','19945','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25618','37362','19946','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25650','37387','19959','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25651','37387','19959','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25652','37387','19959','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25653','37389','19960','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25654','37389','19960','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25655','37389','19960','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25656','37390','19961','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25657','37390','19961','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25658','37390','19961','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25659','37393','19962','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25660','37401','19963','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25661','37402','19964','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25662','37402','19964','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25663','37402','19965','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25664','37402','19965','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25665','37402','19966','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25666','37402','19966','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25667','37403','19967','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25668','37403','19967','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25669','37403','19968','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25670','37403','19968','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25671','37403','19969','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25672','37403','19969','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25673','37404','19970','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25674','37405','19971','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25675','37406','19972','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25676','37407','19973','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25677','37416','19974','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25709','37441','19987','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25710','37441','19987','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25711','37441','19987','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25712','37443','19988','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25713','37443','19988','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25714','37443','19988','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25715','37444','19989','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25716','37444','19989','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25717','37444','19989','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25718','37447','19990','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25719','37455','19991','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25720','37456','19992','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25721','37456','19992','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25722','37456','19993','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25723','37456','19993','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25724','37456','19994','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25725','37456','19994','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25726','37457','19995','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25727','37457','19995','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25728','37457','19996','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25729','37457','19996','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25730','37457','19997','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25731','37457','19997','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25732','37458','19998','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25733','37459','19999','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25734','37460','20000','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25735','37461','20001','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25736','37470','20002','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25768','37495','20015','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25769','37495','20015','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25770','37495','20015','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25771','37497','20016','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25772','37497','20016','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25773','37497','20016','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25774','37498','20017','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25775','37498','20017','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25776','37498','20017','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25777','37501','20018','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25778','37509','20019','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25779','37510','20020','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25780','37510','20020','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25781','37510','20021','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25782','37510','20021','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25783','37510','20022','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25784','37510','20022','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25785','37511','20023','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25786','37511','20023','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25787','37511','20024','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25788','37511','20024','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25789','37511','20025','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25790','37511','20025','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25791','37512','20026','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25792','37513','20027','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25793','37514','20028','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25794','37515','20029','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25795','37524','20030','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25827','37549','20043','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25828','37549','20043','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25829','37549','20043','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25830','37551','20044','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25831','37551','20044','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25832','37551','20044','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25833','37552','20045','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25834','37552','20045','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25835','37552','20045','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25836','37555','20046','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25837','37563','20047','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25838','37564','20048','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25839','37564','20048','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25840','37564','20049','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25841','37564','20049','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25842','37564','20050','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25843','37564','20050','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25844','37565','20051','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25845','37565','20051','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25846','37565','20052','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25847','37565','20052','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25848','37565','20053','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25849','37565','20053','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25850','37566','20054','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25851','37567','20055','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25852','37568','20056','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25853','37569','20057','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25854','37578','20058','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25886','37603','20071','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25887','37603','20071','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25888','37603','20071','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25889','37605','20072','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25890','37605','20072','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25891','37605','20072','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25892','37606','20073','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25893','37606','20073','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25894','37606','20073','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25895','37609','20074','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25896','37617','20075','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25897','37618','20076','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25898','37618','20076','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25899','37618','20077','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25900','37618','20077','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25901','37618','20078','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25902','37618','20078','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25903','37619','20079','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25904','37619','20079','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25905','37619','20080','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25906','37619','20080','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25907','37619','20081','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25908','37619','20081','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25909','37620','20082','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25910','37621','20083','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25911','37622','20084','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25912','37623','20085','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25913','37632','20086','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25945','37657','20099','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25946','37657','20099','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25947','37657','20099','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25948','37659','20100','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25949','37659','20100','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25950','37659','20100','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25951','37660','20101','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25952','37660','20101','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25953','37660','20101','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25954','37663','20102','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25955','37671','20103','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25956','37672','20104','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25957','37672','20104','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25958','37672','20105','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25959','37672','20105','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25960','37672','20106','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25961','37672','20106','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25962','37673','20107','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25963','37673','20107','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25964','37673','20108','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25965','37673','20108','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25966','37673','20109','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25967','37673','20109','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25968','37674','20110','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25969','37675','20111','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25970','37676','20112','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25971','37677','20113','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('25972','37686','20114','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26004','37711','20127','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26005','37711','20127','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26006','37711','20127','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26007','37713','20128','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26008','37713','20128','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26009','37713','20128','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26010','37714','20129','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26011','37714','20129','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26012','37714','20129','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26013','37717','20130','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26014','37725','20131','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26015','37726','20132','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26016','37726','20132','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26017','37726','20133','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26018','37726','20133','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26019','37726','20134','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26020','37726','20134','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26021','37727','20135','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26022','37727','20135','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26023','37727','20136','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26024','37727','20136','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26025','37727','20137','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26026','37727','20137','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26027','37728','20138','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26028','37729','20139','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26029','37730','20140','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26030','37731','20141','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26031','37740','20142','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26063','37765','20155','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26064','37765','20155','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26065','37765','20155','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26066','37767','20156','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26067','37767','20156','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26068','37767','20156','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26069','37768','20157','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26070','37768','20157','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26071','37768','20157','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26072','37771','20158','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26073','37779','20159','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26074','37780','20160','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26075','37780','20160','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26076','37780','20161','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26077','37780','20161','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26078','37780','20162','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26079','37780','20162','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26080','37781','20163','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26081','37781','20163','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26082','37781','20164','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26083','37781','20164','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26084','37781','20165','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26085','37781','20165','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26086','37782','20166','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26087','37783','20167','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26088','37784','20168','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26089','37785','20169','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26090','37794','20170','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26122','37819','20183','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26123','37819','20183','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26124','37819','20183','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26125','37821','20184','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26126','37821','20184','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26127','37821','20184','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26128','37822','20185','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26129','37822','20185','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26130','37822','20185','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26131','37825','20186','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26132','37833','20187','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26133','37834','20188','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26134','37834','20188','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26135','37834','20189','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26136','37834','20189','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26137','37834','20190','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26138','37834','20190','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26139','37835','20191','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26140','37835','20191','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26141','37835','20192','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26142','37835','20192','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26143','37835','20193','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26144','37835','20193','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26145','37836','20194','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26146','37837','20195','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26147','37838','20196','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26148','37839','20197','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26149','37848','20198','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26181','37873','20211','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26182','37873','20211','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26183','37873','20211','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26184','37875','20212','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26185','37875','20212','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26186','37875','20212','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26187','37876','20213','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26188','37876','20213','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26189','37876','20213','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26190','37879','20214','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26191','37887','20215','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26192','37888','20216','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26193','37888','20216','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26194','37888','20217','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26195','37888','20217','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26196','37888','20218','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26197','37888','20218','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26198','37889','20219','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26199','37889','20219','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26200','37889','20220','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26201','37889','20220','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26202','37889','20221','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26203','37889','20221','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26204','37890','20222','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26205','37891','20223','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26206','37892','20224','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26207','37893','20225','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26208','37902','20226','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26240','37927','20239','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26241','37927','20239','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26242','37927','20239','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26243','37929','20240','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26244','37929','20240','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26245','37929','20240','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26246','37930','20241','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26247','37930','20241','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26248','37930','20241','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26249','37933','20242','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26250','37941','20243','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26251','37942','20244','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26252','37942','20244','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26253','37942','20245','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26254','37942','20245','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26255','37942','20246','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26256','37942','20246','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26257','37943','20247','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26258','37943','20247','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26259','37943','20248','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26260','37943','20248','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26261','37943','20249','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26262','37943','20249','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26263','37944','20250','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26264','37945','20251','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26265','37946','20252','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26266','37947','20253','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26267','37956','20254','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26299','37981','20267','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26300','37981','20267','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26301','37981','20267','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26302','37983','20268','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26303','37983','20268','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26304','37983','20268','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26305','37984','20269','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26306','37984','20269','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26307','37984','20269','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26308','37987','20270','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26309','37995','20271','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26310','37996','20272','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26311','37996','20272','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26312','37996','20273','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26313','37996','20273','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26314','37996','20274','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26315','37996','20274','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26316','37997','20275','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26317','37997','20275','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26318','37997','20276','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26319','37997','20276','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26320','37997','20277','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26321','37997','20277','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26322','37998','20278','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26323','37999','20279','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26324','38000','20280','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26325','38001','20281','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26326','38010','20282','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26358','38035','20295','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26359','38035','20295','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26360','38035','20295','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26361','38037','20296','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26362','38037','20296','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26363','38037','20296','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26364','38038','20297','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26365','38038','20297','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26366','38038','20297','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26367','38041','20298','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26368','38049','20299','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26369','38050','20300','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26370','38050','20300','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26371','38050','20301','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26372','38050','20301','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26373','38050','20302','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26374','38050','20302','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26375','38051','20303','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26376','38051','20303','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26377','38051','20304','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26378','38051','20304','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26379','38051','20305','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26380','38051','20305','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26381','38052','20306','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26382','38053','20307','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26383','38054','20308','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26384','38055','20309','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26385','38064','20310','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26417','38089','20323','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26418','38089','20323','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26419','38089','20323','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26420','38091','20324','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26421','38091','20324','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26422','38091','20324','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26423','38092','20325','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26424','38092','20325','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26425','38092','20325','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26426','38095','20326','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26427','38103','20327','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26428','38104','20328','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26429','38104','20328','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26430','38104','20329','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26431','38104','20329','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26432','38104','20330','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26433','38104','20330','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26434','38105','20331','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26435','38105','20331','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26436','38105','20332','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26437','38105','20332','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26438','38105','20333','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26439','38105','20333','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26440','38106','20334','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26441','38107','20335','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26442','38108','20336','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26443','38109','20337','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26444','38118','20338','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26476','38143','20351','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26477','38143','20351','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26478','38143','20351','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26479','38145','20352','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26480','38145','20352','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26481','38145','20352','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26482','38146','20353','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26483','38146','20353','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26484','38146','20353','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26485','38149','20354','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26486','38157','20355','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26487','38158','20356','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26488','38158','20356','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26489','38158','20357','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26490','38158','20357','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26491','38158','20358','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26492','38158','20358','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26493','38159','20359','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26494','38159','20359','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26495','38159','20360','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26496','38159','20360','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26497','38159','20361','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26498','38159','20361','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26499','38160','20362','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26500','38161','20363','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26501','38162','20364','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26502','38163','20365','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26503','38172','20366','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26535','38197','20379','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26536','38197','20379','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26537','38197','20379','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26538','38199','20380','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26539','38199','20380','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26540','38199','20380','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26541','38200','20381','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26542','38200','20381','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26543','38200','20381','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26544','38203','20382','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26545','38211','20383','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26546','38212','20384','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26547','38212','20384','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26548','38212','20385','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26549','38212','20385','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26550','38212','20386','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26551','38212','20386','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26552','38213','20387','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26553','38213','20387','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26554','38213','20388','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26555','38213','20388','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26556','38213','20389','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26557','38213','20389','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26558','38214','20390','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26559','38215','20391','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26560','38216','20392','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26561','38217','20393','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26562','38226','20394','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26594','38251','20407','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26595','38251','20407','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26596','38251','20407','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26597','38253','20408','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26598','38253','20408','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26599','38253','20408','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26600','38254','20409','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26601','38254','20409','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26602','38254','20409','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26603','38257','20410','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26604','38265','20411','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26605','38266','20412','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26606','38266','20412','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26607','38266','20413','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26608','38266','20413','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26609','38266','20414','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26610','38266','20414','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26611','38267','20415','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26612','38267','20415','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26613','38267','20416','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26614','38267','20416','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26615','38267','20417','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26616','38267','20417','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26617','38268','20418','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26618','38269','20419','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26619','38270','20420','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26620','38271','20421','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26621','38280','20422','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26653','38305','20435','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26654','38305','20435','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26655','38305','20435','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26656','38307','20436','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26657','38307','20436','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26658','38307','20436','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26659','38308','20437','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26660','38308','20437','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26661','38308','20437','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26662','38311','20438','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26663','38319','20439','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26664','38320','20440','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26665','38320','20440','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26666','38320','20441','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26667','38320','20441','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26668','38320','20442','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26669','38320','20442','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26670','38321','20443','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26671','38321','20443','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26672','38321','20444','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26673','38321','20444','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26674','38321','20445','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26675','38321','20445','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26676','38322','20446','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26677','38323','20447','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26678','38324','20448','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26679','38325','20449','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26680','38334','20450','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26712','38359','20463','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26713','38359','20463','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26714','38359','20463','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26715','38361','20464','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26716','38361','20464','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26717','38361','20464','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26718','38362','20465','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26719','38362','20465','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26720','38362','20465','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26721','38365','20466','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26722','38373','20467','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26723','38374','20468','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26724','38374','20468','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26725','38374','20469','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26726','38374','20469','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26727','38374','20470','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26728','38374','20470','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26729','38375','20471','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26730','38375','20471','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26731','38375','20472','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26732','38375','20472','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26733','38375','20473','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26734','38375','20473','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26735','38376','20474','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26736','38377','20475','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26737','38378','20476','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26738','38379','20477','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26739','38388','20478','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26771','38413','20491','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26772','38413','20491','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26773','38413','20491','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26774','38415','20492','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26775','38415','20492','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26776','38415','20492','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26777','38416','20493','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26778','38416','20493','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26779','38416','20493','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26780','38419','20494','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26781','38427','20495','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26782','38428','20496','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26783','38428','20496','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26784','38428','20497','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26785','38428','20497','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26786','38428','20498','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26787','38428','20498','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26788','38429','20499','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26789','38429','20499','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26790','38429','20500','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26791','38429','20500','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26792','38429','20501','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26793','38429','20501','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26794','38430','20502','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26795','38431','20503','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26796','38432','20504','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26797','38433','20505','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26798','38442','20506','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26830','38467','20519','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26831','38467','20519','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26832','38467','20519','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26833','38469','20520','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26834','38469','20520','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26835','38469','20520','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26836','38470','20521','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26837','38470','20521','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26838','38470','20521','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26839','38473','20522','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26840','38481','20523','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26841','38482','20524','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26842','38482','20524','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26843','38482','20525','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26844','38482','20525','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26845','38482','20526','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26846','38482','20526','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26847','38483','20527','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26848','38483','20527','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26849','38483','20528','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26850','38483','20528','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26851','38483','20529','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26852','38483','20529','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26853','38484','20530','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26854','38485','20531','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26855','38486','20532','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26856','38487','20533','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26857','38496','20534','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26889','38521','20547','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26890','38521','20547','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26891','38521','20547','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26892','38523','20548','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26893','38523','20548','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26894','38523','20548','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26895','38524','20549','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26896','38524','20549','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26897','38524','20549','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26898','38527','20550','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26899','38535','20551','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26900','38536','20552','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26901','38536','20552','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26902','38536','20553','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26903','38536','20553','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26904','38536','20554','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26905','38536','20554','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26906','38537','20555','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26907','38537','20555','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26908','38537','20556','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26909','38537','20556','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26910','38537','20557','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26911','38537','20557','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26912','38538','20558','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26913','38539','20559','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26914','38540','20560','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26915','38541','20561','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26916','38550','20562','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26948','38575','20575','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26949','38575','20575','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26950','38575','20575','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26951','38577','20576','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26952','38577','20576','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26953','38577','20576','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26954','38578','20577','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26955','38578','20577','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26956','38578','20577','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26957','38581','20578','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26958','38589','20579','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26959','38590','20580','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26960','38590','20580','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26961','38590','20581','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26962','38590','20581','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26963','38590','20582','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26964','38590','20582','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26965','38591','20583','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26966','38591','20583','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26967','38591','20584','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26968','38591','20584','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26969','38591','20585','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26970','38591','20585','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26971','38592','20586','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26972','38593','20587','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26973','38594','20588','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26974','38595','20589','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('26975','38604','20590','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27007','38629','20603','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27008','38629','20603','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27009','38629','20603','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27010','38631','20604','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27011','38631','20604','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27012','38631','20604','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27013','38632','20605','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27014','38632','20605','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27015','38632','20605','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27016','38635','20606','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27017','38643','20607','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27018','38644','20608','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27019','38644','20608','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27020','38644','20609','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27021','38644','20609','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27022','38644','20610','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27023','38644','20610','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27024','38645','20611','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27025','38645','20611','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27026','38645','20612','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27027','38645','20612','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27028','38645','20613','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27029','38645','20613','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27030','38646','20614','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27031','38647','20615','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27032','38648','20616','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27033','38649','20617','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27034','38658','20618','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27066','38683','20631','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27067','38683','20631','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27068','38683','20631','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27069','38685','20632','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27070','38685','20632','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27071','38685','20632','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27072','38686','20633','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27073','38686','20633','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27074','38686','20633','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27075','38689','20634','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27076','38697','20635','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27077','38698','20636','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27078','38698','20636','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27079','38698','20637','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27080','38698','20637','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27081','38698','20638','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27082','38698','20638','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27083','38699','20639','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27084','38699','20639','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27085','38699','20640','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27086','38699','20640','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27087','38699','20641','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27088','38699','20641','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27089','38700','20642','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27090','38701','20643','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27091','38702','20644','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27092','38703','20645','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27093','38712','20646','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27125','38737','20659','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27126','38737','20659','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27127','38737','20659','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27128','38739','20660','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27129','38739','20660','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27130','38739','20660','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27131','38740','20661','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27132','38740','20661','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27133','38740','20661','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27134','38743','20662','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27135','38751','20663','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27136','38752','20664','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27137','38752','20664','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27138','38752','20665','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27139','38752','20665','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27140','38752','20666','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27141','38752','20666','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27142','38753','20667','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27143','38753','20667','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27144','38753','20668','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27145','38753','20668','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27146','38753','20669','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27147','38753','20669','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27148','38754','20670','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27149','38755','20671','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27150','38756','20672','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27151','38757','20673','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27152','38766','20674','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27184','38791','20687','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27185','38791','20687','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27186','38791','20687','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27187','38793','20688','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27188','38793','20688','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27189','38793','20688','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27190','38794','20689','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27191','38794','20689','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27192','38794','20689','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27193','38797','20690','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27194','38805','20691','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27195','38806','20692','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27196','38806','20692','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27197','38806','20693','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27198','38806','20693','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27199','38806','20694','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27200','38806','20694','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27201','38807','20695','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27202','38807','20695','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27203','38807','20696','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27204','38807','20696','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27205','38807','20697','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27206','38807','20697','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27207','38808','20698','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27208','38809','20699','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27209','38810','20700','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27210','38811','20701','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27211','38820','20702','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27243','38845','20715','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27244','38845','20715','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27245','38845','20715','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27246','38847','20716','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27247','38847','20716','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27248','38847','20716','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27249','38848','20717','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27250','38848','20717','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27251','38848','20717','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27252','38851','20718','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27253','38859','20719','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27254','38860','20720','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27255','38860','20720','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27256','38860','20721','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27257','38860','20721','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27258','38860','20722','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27259','38860','20722','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27260','38861','20723','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27261','38861','20723','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27262','38861','20724','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27263','38861','20724','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27264','38861','20725','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27265','38861','20725','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27266','38862','20726','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27267','38863','20727','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27268','38864','20728','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27269','38865','20729','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27270','38874','20730','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27302','38899','20743','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27303','38899','20743','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27304','38899','20743','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27305','38901','20744','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27306','38901','20744','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27307','38901','20744','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27308','38902','20745','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27309','38902','20745','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27310','38902','20745','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27311','38905','20746','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27312','38913','20747','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27313','38914','20748','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27314','38914','20748','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27315','38914','20749','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27316','38914','20749','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27317','38914','20750','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27318','38914','20750','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27319','38915','20751','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27320','38915','20751','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27321','38915','20752','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27322','38915','20752','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27323','38915','20753','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27324','38915','20753','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27325','38916','20754','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27326','38917','20755','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27327','38918','20756','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27328','38919','20757','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27329','38928','20758','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27361','38953','20771','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27362','38953','20771','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27363','38953','20771','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27364','38955','20772','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27365','38955','20772','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27366','38955','20772','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27367','38956','20773','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27368','38956','20773','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27369','38956','20773','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27370','38959','20774','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27371','38967','20775','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27372','38968','20776','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27373','38968','20776','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27374','38968','20777','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27375','38968','20777','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27376','38968','20778','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27377','38968','20778','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27378','38969','20779','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27379','38969','20779','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27380','38969','20780','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27381','38969','20780','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27382','38969','20781','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27383','38969','20781','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27384','38970','20782','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27385','38971','20783','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27386','38972','20784','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27387','38973','20785','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27388','38982','20786','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27420','39007','20799','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27421','39007','20799','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27422','39007','20799','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27423','39009','20800','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27424','39009','20800','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27425','39009','20800','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27426','39010','20801','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27427','39010','20801','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27428','39010','20801','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27429','39013','20802','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27430','39021','20803','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27431','39022','20804','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27432','39022','20804','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27433','39022','20805','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27434','39022','20805','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27435','39022','20806','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27436','39022','20806','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27437','39023','20807','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27438','39023','20807','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27439','39023','20808','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27440','39023','20808','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27441','39023','20809','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27442','39023','20809','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27443','39024','20810','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27444','39025','20811','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27445','39026','20812','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27446','39027','20813','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27447','39036','20814','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27479','39061','20827','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27480','39061','20827','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27481','39061','20827','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27482','39063','20828','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27483','39063','20828','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27484','39063','20828','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27485','39064','20829','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27486','39064','20829','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27487','39064','20829','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27488','39067','20830','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27489','39075','20831','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27490','39076','20832','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27491','39076','20832','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27492','39076','20833','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27493','39076','20833','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27494','39076','20834','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27495','39076','20834','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27496','39077','20835','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27497','39077','20835','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27498','39077','20836','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27499','39077','20836','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27500','39077','20837','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27501','39077','20837','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27502','39078','20838','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27503','39079','20839','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27504','39080','20840','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27505','39081','20841','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27506','39090','20842','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27538','39115','20855','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27539','39115','20855','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27540','39115','20855','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27541','39117','20856','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27542','39117','20856','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27543','39117','20856','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27544','39118','20857','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27545','39118','20857','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27546','39118','20857','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27547','39121','20858','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27548','39129','20859','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27549','39130','20860','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27550','39130','20860','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27551','39130','20861','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27552','39130','20861','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27553','39130','20862','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27554','39130','20862','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27555','39131','20863','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27556','39131','20863','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27557','39131','20864','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27558','39131','20864','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27559','39131','20865','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27560','39131','20865','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27561','39132','20866','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27562','39133','20867','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27563','39134','20868','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27564','39135','20869','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27565','39144','20870','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27597','39169','20883','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27598','39169','20883','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27599','39169','20883','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27600','39171','20884','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27601','39171','20884','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27602','39171','20884','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27603','39172','20885','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27604','39172','20885','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27605','39172','20885','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27606','39175','20886','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27607','39183','20887','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27608','39184','20888','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27609','39184','20888','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27610','39184','20889','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27611','39184','20889','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27612','39184','20890','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27613','39184','20890','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27614','39185','20891','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27615','39185','20891','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27616','39185','20892','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27617','39185','20892','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27618','39185','20893','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27619','39185','20893','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27620','39186','20894','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27621','39187','20895','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27622','39188','20896','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27623','39189','20897','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27624','39198','20898','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27656','39223','20911','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27657','39223','20911','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27658','39223','20911','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27659','39225','20912','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27660','39225','20912','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27661','39225','20912','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27662','39226','20913','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27663','39226','20913','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27664','39226','20913','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27665','39229','20914','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27666','39237','20915','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27667','39238','20916','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27668','39238','20916','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27669','39238','20917','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27670','39238','20917','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27671','39238','20918','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27672','39238','20918','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27673','39239','20919','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27674','39239','20919','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27675','39239','20920','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27676','39239','20920','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27677','39239','20921','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27678','39239','20921','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27679','39240','20922','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27680','39241','20923','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27681','39242','20924','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27682','39243','20925','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27683','39252','20926','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27715','39277','20939','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27716','39277','20939','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27717','39277','20939','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27718','39279','20940','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27719','39279','20940','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27720','39279','20940','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27721','39280','20941','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27722','39280','20941','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27723','39280','20941','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27724','39283','20942','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27725','39291','20943','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27726','39292','20944','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27727','39292','20944','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27728','39292','20945','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27729','39292','20945','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27730','39292','20946','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27731','39292','20946','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27732','39293','20947','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27733','39293','20947','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27734','39293','20948','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27735','39293','20948','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27736','39293','20949','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27737','39293','20949','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27738','39294','20950','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27739','39295','20951','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27740','39296','20952','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27741','39297','20953','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27742','39306','20954','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27774','39331','20967','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27775','39331','20967','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27776','39331','20967','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27777','39333','20968','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27778','39333','20968','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27779','39333','20968','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27780','39334','20969','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27781','39334','20969','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27782','39334','20969','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27783','39337','20970','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27784','39345','20971','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27785','39346','20972','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27786','39346','20972','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27787','39346','20973','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27788','39346','20973','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27789','39346','20974','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27790','39346','20974','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27791','39347','20975','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27792','39347','20975','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27793','39347','20976','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27794','39347','20976','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27795','39347','20977','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27796','39347','20977','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27797','39348','20978','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27798','39349','20979','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27799','39350','20980','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27800','39351','20981','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27801','39360','20982','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27833','39385','20995','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27834','39385','20995','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27835','39385','20995','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27836','39387','20996','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27837','39387','20996','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27838','39387','20996','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27839','39388','20997','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27840','39388','20997','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27841','39388','20997','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27842','39391','20998','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27843','39399','20999','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27844','39400','21000','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27845','39400','21000','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27846','39400','21001','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27847','39400','21001','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27848','39400','21002','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27849','39400','21002','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27850','39401','21003','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27851','39401','21003','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27852','39401','21004','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27853','39401','21004','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27854','39401','21005','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27855','39401','21005','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27856','39402','21006','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27857','39403','21007','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27858','39404','21008','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27859','39405','21009','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27860','39414','21010','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27892','39439','21023','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27893','39439','21023','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27894','39439','21023','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27895','39441','21024','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27896','39441','21024','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27897','39441','21024','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27898','39442','21025','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27899','39442','21025','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27900','39442','21025','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27901','39445','21026','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27902','39453','21027','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27903','39454','21028','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27904','39454','21028','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27905','39454','21029','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27906','39454','21029','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27907','39454','21030','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27908','39454','21030','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27909','39455','21031','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27910','39455','21031','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27911','39455','21032','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27912','39455','21032','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27913','39455','21033','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27914','39455','21033','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27915','39456','21034','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27916','39457','21035','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27917','39458','21036','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27918','39459','21037','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27919','39468','21038','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27951','39493','21051','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27952','39493','21051','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27953','39493','21051','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27954','39495','21052','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27955','39495','21052','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27956','39495','21052','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27957','39496','21053','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27958','39496','21053','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27959','39496','21053','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27960','39499','21054','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27961','39507','21055','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27962','39508','21056','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27963','39508','21056','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27964','39508','21057','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27965','39508','21057','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27966','39508','21058','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27967','39508','21058','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27968','39509','21059','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27969','39509','21059','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27970','39509','21060','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27971','39509','21060','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27972','39509','21061','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27973','39509','21061','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27974','39510','21062','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27975','39511','21063','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27976','39512','21064','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27977','39513','21065','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('27978','39522','21066','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28010','39547','21079','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28011','39547','21079','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28012','39547','21079','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28013','39549','21080','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28014','39549','21080','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28015','39549','21080','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28016','39550','21081','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28017','39550','21081','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28018','39550','21081','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28019','39553','21082','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28020','39561','21083','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28021','39562','21084','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28022','39562','21084','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28023','39562','21085','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28024','39562','21085','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28025','39562','21086','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28026','39562','21086','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28027','39563','21087','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28028','39563','21087','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28029','39563','21088','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28030','39563','21088','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28031','39563','21089','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28032','39563','21089','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28033','39564','21090','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28034','39565','21091','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28035','39566','21092','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28036','39567','21093','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28037','39576','21094','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28069','39601','21107','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28070','39601','21107','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28071','39601','21107','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28072','39603','21108','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28073','39603','21108','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28074','39603','21108','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28075','39604','21109','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28076','39604','21109','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28077','39604','21109','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28078','39607','21110','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28079','39615','21111','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28080','39616','21112','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28081','39616','21112','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28082','39616','21113','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28083','39616','21113','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28084','39616','21114','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28085','39616','21114','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28086','39617','21115','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28087','39617','21115','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28088','39617','21116','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28089','39617','21116','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28090','39617','21117','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28091','39617','21117','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28092','39618','21118','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28093','39619','21119','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28094','39620','21120','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28095','39621','21121','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28096','39630','21122','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28128','39655','21135','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28129','39655','21135','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28130','39655','21135','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28131','39657','21136','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28132','39657','21136','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28133','39657','21136','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28134','39658','21137','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28135','39658','21137','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28136','39658','21137','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28137','39661','21138','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28138','39669','21139','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28139','39670','21140','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28140','39670','21140','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28141','39670','21141','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28142','39670','21141','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28143','39670','21142','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28144','39670','21142','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28145','39671','21143','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28146','39671','21143','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28147','39671','21144','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28148','39671','21144','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28149','39671','21145','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28150','39671','21145','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28151','39672','21146','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28152','39673','21147','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28153','39674','21148','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28154','39675','21149','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28155','39684','21150','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28187','39709','21163','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28188','39709','21163','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28189','39709','21163','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28190','39711','21164','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28191','39711','21164','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28192','39711','21164','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28193','39712','21165','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28194','39712','21165','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28195','39712','21165','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28196','39715','21166','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28197','39723','21167','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28198','39724','21168','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28199','39724','21168','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28200','39724','21169','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28201','39724','21169','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28202','39724','21170','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28203','39724','21170','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28204','39725','21171','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28205','39725','21171','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28206','39725','21172','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28207','39725','21172','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28208','39725','21173','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28209','39725','21173','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28210','39726','21174','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28211','39727','21175','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28212','39728','21176','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28213','39729','21177','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28214','39738','21178','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28223','39745','21181','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28224','39746','21182','nodata','$,30m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28225','39747','21183','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28226','39747','21183','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28227','39747','21183','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28228','39748','21184','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28229','39748','21184','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28230','39748','21184','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28231','39742','21185','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28232','39742','21185','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28233','39756','21186','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28234','39760','21187','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28235','39761','21188','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28236','39762','21189','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28237','39762','21189','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28238','39767','21190','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28239','39779','21191','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28242','39811','21194','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28243','39811','21194','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28244','39815','21195','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28245','39815','21195','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28246','39820','21196','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28247','39820','21196','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28248','35442','19021','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28249','35487','19026','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28250','35484','19026','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28251','35486','19027','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28252','35483','19027','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28253','39822','21197','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28254','39823','21198','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28255','39824','21199','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28258','32459','18524','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28259','39846','21202','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28262','39850','21205','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28263','39880','21206','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28264','39938','21207','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28265','39949','21208','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28266','39968','21208','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28267','39949','21209','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28268','39968','21209','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28269','39948','21210','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28270','39967','21210','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28271','39948','21211','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28272','39967','21211','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28273','39947','21212','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28274','39968','21212','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28275','39947','21213','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28276','39968','21213','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28277','39946','21214','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28278','39967','21214','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28279','39946','21215','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28280','39967','21215','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28281','39969','21216','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28282','39963','21216','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28283','39962','21217','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28284','39961','21218','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28285','39960','21219','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28286','39959','21220','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28287','39958','21221','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28288','39945','21222','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28289','39974','21223','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28290','39974','21223','min','$,3m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28291','39975','21224','count','$,10m, "regexp","^(1|4|5)$"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28292','39986','21225','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28293','39995','21226','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28294','39997','21227','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28296','40042','21229','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28297','40043','21229','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28299','40060','21231','min','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28300','40066','21231','min','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28301','40063','21231','min','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28304','40084','21233','min','$,2m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28306','40088','21235','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28307','40087','21235','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28308','40090','21236','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28309','40093','21236','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28310','40093','21237','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28311','40091','21237','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28315','40119','21241','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28316','40120','21242','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28317','40121','21243','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28318','40128','21244','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28319','40132','21245','min','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28320','40135','21246','min','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28326','40136','21250','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28336','40150','21255','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28337','40150','21255','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28338','40172','21255','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28339','40149','21255','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28340','40150','21255','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28341','40163','21256','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28342','40150','21256','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28343','40152','21257','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28344','40150','21257','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28345','40168','21258','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28346','40168','21258','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28347','40157','21259','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28348','40157','21259','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28349','40149','21260','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28360','31573','17089','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28361','31593','17097','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28362','33018','17533','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28363','23347','13521','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28364','23360','13534','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28365','23352','13522','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28366','23351','13535','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28367','33019','17534','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28368','23350','13523','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28369','23353','13524','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28370','23354','13525','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28371','23356','13526','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28372','25368','13564','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28373','23355','13527','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28374','23349','13528','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28375','39826','21201','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28376','23348','13529','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28377','28618','15913','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28378','28619','15914','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28379','23343','13530','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28380','23344','13531','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28381','25369','13565','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28382','23345','13532','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28383','23346','13533','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28384','28250','15641','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28385','23357','13517','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28386','28251','15640','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28387','23342','13518','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28388','23341','13519','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28389','40184','21265','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28390','40181','21266','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28391','40181','21266','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28392','40181','21266','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28393','33012','17529','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28394','28600','15895','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28395','28601','15896','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28396','28615','15897','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28397','28614','15898','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28398','33013','17530','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28399','28613','15899','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28400','28612','15900','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28401','28611','15901','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28402','28610','15902','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28403','28609','15903','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28404','28608','15904','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28405','28607','15905','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28406','39825','21200','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28407','28606','15906','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28408','28605','15907','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28409','28604','15908','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28410','28603','15909','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28411','28602','15910','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28412','28616','15911','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28413','28588','15912','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28414','28599','15890','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28415','28598','15893','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28416','28597','15891','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28417','28596','15892','max','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28418','40188','21267','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28419','40189','21268','avg','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28420','40186','21269','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28421','33868','18228','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28422','33850','18228','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28423','40190','21270','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28424','40191','21271','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28425','40192','21272','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28684','40451','21531','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28695','40465','21536','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28714','40478','21543','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28715','40482','21544','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28716','40487','21545','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28717','40481','21546','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28718','40481','21546','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28719','40481','21546','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28721','40488','21548','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28722','40497','21549','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28723','40497','21549','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28724','40499','21549','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28725','40498','21549','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28726','40497','21549','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28727','40493','21550','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28728','40497','21550','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28729','40496','21550','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28730','40492','21551','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28731','40495','21551','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28732','40492','21551','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28733','40495','21551','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28734','40498','21552','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28735','40498','21552','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28736','40498','21552','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28737','40500','21553','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28738','40501','21554','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28739','40502','21555','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28740','40503','21556','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28741','40506','21557','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28742','40509','21558','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28743','40509','21558','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28744','40509','21558','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28746','40512','21560','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28747','40523','21561','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28748','40523','21561','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28749','40525','21561','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28750','40524','21561','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28751','40523','21561','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28752','40519','21562','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28753','40523','21562','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28754','40522','21562','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28755','40518','21563','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28756','40521','21563','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28757','40518','21563','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28758','40521','21563','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28759','40524','21564','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28760','40524','21564','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28761','40524','21564','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28762','40526','21565','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28771','40532','21568','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28772','40533','21569','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28773','40534','21570','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28774','40535','21571','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28775','40540','21572','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28776','40540','21572','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28777','40540','21572','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28779','40543','21574','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28780','40551','21575','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28781','40551','21575','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28782','40553','21575','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28783','40552','21575','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28784','40551','21575','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28785','40547','21576','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28786','40551','21576','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28787','40550','21576','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28788','40546','21577','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28789','40549','21577','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28790','40546','21577','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28791','40549','21577','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28792','40552','21578','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28793','40552','21578','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28794','40552','21578','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28795','40554','21579','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28796','40555','21580','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28797','40556','21581','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28798','40559','21582','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28799','40562','21583','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28800','40562','21583','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28801','40562','21583','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28803','40565','21585','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28804','40566','21586','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28805','40567','21587','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28806','40568','21588','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28807','40569','21589','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28808','40572','21590','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28809','40575','21591','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28810','40575','21591','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28811','40575','21591','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28813','40578','21593','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28814','40579','21594','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28815','40588','21595','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28816','40588','21595','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28817','40590','21595','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28818','40589','21595','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28819','40588','21595','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28820','40584','21596','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28821','40588','21596','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28822','40587','21596','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28823','40583','21597','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28824','40586','21597','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28825','40583','21597','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28826','40586','21597','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28827','40589','21598','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28828','40589','21598','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28829','40589','21598','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28830','40597','21599','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28831','40597','21599','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28832','40599','21599','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28833','40598','21599','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28834','40597','21599','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28835','40593','21600','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28836','40597','21600','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28837','40596','21600','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28838','40592','21601','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28839','40595','21601','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28840','40592','21601','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28841','40595','21601','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28842','40598','21602','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28843','40598','21602','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28844','40598','21602','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28845','40600','21603','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28846','40601','21604','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28847','40602','21605','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28848','40605','21606','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28849','40608','21607','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28850','40608','21607','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28851','40608','21607','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28852','40610','21608','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28853','40610','21608','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28854','40610','21608','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28855','40612','21609','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28856','40612','21609','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28857','40612','21609','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28859','40614','21611','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28860','40615','21612','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28861','40616','21613','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28862','40617','21614','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28863','40622','21615','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28864','40622','21615','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28865','40622','21615','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28866','40624','21616','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28867','40624','21616','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28868','40624','21616','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28869','40626','21617','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28870','40626','21617','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28871','40626','21617','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28873','40628','21619','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28874','40629','21620','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28875','40630','21621','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28876','40631','21622','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28877','40636','21623','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28878','40636','21623','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28879','40636','21623','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28880','40638','21624','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28881','40638','21624','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28882','40638','21624','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28883','40640','21625','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28884','40640','21625','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28885','40640','21625','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28887','40642','21627','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28888','40663','21628','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28889','40663','21628','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28890','40663','21628','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28891','40664','21629','count','$,#1,"eq","{$FAN_CRIT_STATUS:\\"critical\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28892','40664','21629','count','$,#1,"eq","{$FAN_CRIT_STATUS:\\"shutdown\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28893','40664','21630','count','$,#1,"eq","{$FAN_WARN_STATUS:\\"warning\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28894','40664','21630','count','$,#1,"eq","{$FAN_WARN_STATUS:\\"notFunctioning\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28895','40667','21631','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28896','40668','21632','count','$,#1,"eq","{$PSU_CRIT_STATUS:\\"critical\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28897','40668','21632','count','$,#1,"eq","{$PSU_CRIT_STATUS:\\"shutdown\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28898','40668','21633','count','$,#1,"eq","{$PSU_WARN_STATUS:\\"warning\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28899','40668','21633','count','$,#1,"eq","{$PSU_WARN_STATUS:\\"notFunctioning\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28900','40670','21634','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28901','40669','21634','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28902','40670','21634','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28903','40670','21635','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28904','40669','21635','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28905','40670','21635','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28906','40670','21636','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28907','40670','21636','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28908','40671','21637','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28909','40672','21638','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28910','40672','21638','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28911','40672','21638','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28912','40673','21639','count','$,#1,"eq","{$FAN_CRIT_STATUS:\\"critical\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28913','40673','21639','count','$,#1,"eq","{$FAN_CRIT_STATUS:\\"shutdown\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28914','40673','21640','count','$,#1,"eq","{$FAN_WARN_STATUS:\\"warning\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28915','40673','21640','count','$,#1,"eq","{$FAN_WARN_STATUS:\\"notFunctioning\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28916','40676','21641','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28917','40683','21642','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28918','40683','21642','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28919','40685','21642','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28920','40684','21642','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28921','40683','21642','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28922','40679','21643','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28923','40683','21643','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28924','40682','21643','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28925','40678','21644','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28926','40681','21644','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28927','40678','21644','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28928','40681','21644','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28929','40684','21645','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28930','40684','21645','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28931','40684','21645','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28932','40686','21646','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28933','40687','21647','count','$,#1,"eq","{$PSU_CRIT_STATUS:\\"critical\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28934','40687','21647','count','$,#1,"eq","{$PSU_CRIT_STATUS:\\"shutdown\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28935','40687','21648','count','$,#1,"eq","{$PSU_WARN_STATUS:\\"warning\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28936','40687','21648','count','$,#1,"eq","{$PSU_WARN_STATUS:\\"notFunctioning\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28937','40689','21649','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28938','40688','21649','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28939','40689','21649','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28940','40689','21650','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28941','40688','21650','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28942','40689','21650','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28943','40689','21651','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28944','40689','21651','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28945','40690','21652','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28946','40691','21653','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28947','40691','21653','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28948','40691','21653','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28949','40692','21654','count','$,#1,"eq","{$FAN_CRIT_STATUS:\\"critical\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28950','40692','21654','count','$,#1,"eq","{$FAN_CRIT_STATUS:\\"shutdown\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28951','40692','21655','count','$,#1,"eq","{$FAN_WARN_STATUS:\\"warning\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28952','40692','21655','count','$,#1,"eq","{$FAN_WARN_STATUS:\\"notFunctioning\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28953','40695','21656','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28954','40702','21657','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28955','40702','21657','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28956','40704','21657','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28957','40703','21657','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28958','40702','21657','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28959','40698','21658','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28960','40702','21658','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28961','40701','21658','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28962','40697','21659','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28963','40700','21659','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28964','40697','21659','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28965','40700','21659','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28966','40703','21660','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28967','40703','21660','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28968','40703','21660','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28969','40705','21661','count','$,#1,"eq","{$PSU_CRIT_STATUS:\\"critical\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28970','40705','21661','count','$,#1,"eq","{$PSU_CRIT_STATUS:\\"shutdown\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28971','40705','21662','count','$,#1,"eq","{$PSU_WARN_STATUS:\\"warning\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28972','40705','21662','count','$,#1,"eq","{$PSU_WARN_STATUS:\\"notFunctioning\\"}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28973','40707','21663','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28974','40706','21663','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28975','40707','21663','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28976','40707','21664','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28977','40706','21664','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28978','40707','21664','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28979','40707','21665','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28980','40707','21665','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28981','40708','21666','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28982','40709','21667','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28983','40710','21668','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28984','40715','21669','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28985','40715','21669','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28986','40715','21669','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28988','40718','21671','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28989','40727','21672','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28990','40727','21672','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28991','40729','21672','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28992','40728','21672','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28993','40727','21672','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28994','40723','21673','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28995','40727','21673','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28996','40726','21673','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28997','40722','21674','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28998','40725','21674','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('28999','40722','21674','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29000','40725','21674','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29001','40728','21675','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29002','40728','21675','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29003','40728','21675','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29004','40730','21676','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29005','40731','21677','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29006','40732','21678','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29007','40733','21679','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29008','40738','21680','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29009','40738','21680','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29010','40738','21680','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29012','40741','21682','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29013','40749','21683','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29014','40749','21683','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29015','40751','21683','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29016','40750','21683','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29017','40749','21683','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29018','40745','21684','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29019','40749','21684','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29020','40748','21684','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29021','40744','21685','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29022','40747','21685','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29023','40744','21685','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29024','40747','21685','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29025','40750','21686','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29026','40750','21686','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29027','40750','21686','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29028','40752','21687','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29029','40753','21688','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29030','40754','21689','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29031','40759','21690','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29032','40759','21690','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29033','40759','21690','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29035','40762','21692','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29036','40771','21693','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29037','40771','21693','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29038','40773','21693','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29039','40772','21693','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29040','40771','21693','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29041','40767','21694','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29042','40771','21694','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29043','40770','21694','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29044','40766','21695','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29045','40769','21695','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29046','40766','21695','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29047','40769','21695','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29048','40772','21696','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29049','40772','21696','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29050','40772','21696','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29051','40774','21697','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29052','40775','21698','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29053','40780','21699','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29054','40784','21700','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29055','40778','21701','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29056','40778','21701','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29057','40778','21701','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29059','40785','21703','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29060','40794','21704','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29061','40794','21704','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29062','40796','21704','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29063','40795','21704','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29064','40794','21704','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29065','40790','21705','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29066','40794','21705','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29067','40793','21705','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29068','40789','21706','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29069','40792','21706','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29070','40789','21706','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29071','40792','21706','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29072','40795','21707','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29073','40795','21707','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29074','40795','21707','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29075','40797','21708','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29076','40798','21709','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29077','40799','21710','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29078','40800','21711','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29079','40805','21712','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29080','40805','21712','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29081','40805','21712','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29083','40808','21714','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29084','40817','21715','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29085','40817','21715','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29086','40819','21715','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29087','40818','21715','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29088','40817','21715','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29089','40813','21716','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29090','40817','21716','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29091','40816','21716','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29092','40812','21717','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29093','40815','21717','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29094','40812','21717','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29095','40815','21717','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29096','40818','21718','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29097','40818','21718','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29098','40818','21718','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29099','40820','21719','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29100','40821','21720','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29101','40822','21721','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29102','40823','21722','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29103','40828','21723','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29104','40828','21723','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29105','40828','21723','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29107','40831','21725','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29108','40840','21726','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29109','40840','21726','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29110','40842','21726','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29111','40841','21726','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29112','40840','21726','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29113','40836','21727','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29114','40840','21727','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29115','40839','21727','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29116','40835','21728','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29117','40838','21728','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29118','40835','21728','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29119','40838','21728','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29120','40841','21729','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29121','40841','21729','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29122','40841','21729','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29123','40843','21730','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29124','40844','21731','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29125','40845','21732','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29126','40846','21733','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29127','40851','21734','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29128','40851','21734','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29129','40851','21734','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29131','40854','21736','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29132','40863','21737','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29133','40863','21737','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29134','40865','21737','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29135','40864','21737','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29136','40863','21737','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29137','40859','21738','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29138','40863','21738','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29139','40862','21738','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29140','40858','21739','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29141','40861','21739','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29142','40858','21739','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29143','40861','21739','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29144','40864','21740','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29145','40864','21740','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29146','40864','21740','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29147','40866','21741','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29148','40867','21742','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29149','40868','21743','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29150','40869','21744','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29151','40874','21745','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29152','40874','21745','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29153','40874','21745','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29155','40877','21747','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29156','40886','21748','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29157','40886','21748','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29158','40888','21748','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29159','40887','21748','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29160','40886','21748','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29161','40882','21749','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29162','40886','21749','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29163','40885','21749','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29164','40881','21750','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29165','40884','21750','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29166','40881','21750','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29167','40884','21750','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29168','40887','21751','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29169','40887','21751','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29170','40887','21751','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29171','40889','21752','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29172','40890','21753','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29173','40891','21754','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29174','40892','21755','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29175','40897','21756','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29176','40897','21756','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29177','40897','21756','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29179','40900','21758','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29180','40908','21759','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29181','40908','21759','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29182','40910','21759','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29183','40909','21759','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29184','40908','21759','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29185','40904','21760','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29186','40908','21760','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29187','40907','21760','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29188','40903','21761','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29189','40906','21761','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29190','40903','21761','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29191','40906','21761','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29192','40909','21762','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29193','40909','21762','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29194','40909','21762','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29195','40911','21763','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29196','40912','21764','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29197','40913','21765','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29198','40918','21766','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29199','40918','21766','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29200','40918','21766','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29202','40921','21768','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29203','40930','21769','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29204','40930','21769','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29205','40932','21769','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29206','40931','21769','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29207','40930','21769','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29208','40926','21770','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29209','40930','21770','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29210','40929','21770','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29211','40925','21771','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29212','40928','21771','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29213','40925','21771','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29214','40928','21771','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29215','40931','21772','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29216','40931','21772','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29217','40931','21772','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29218','40933','21773','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29219','40934','21774','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29220','40939','21775','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29221','40943','21776','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29222','40935','21777','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29223','40935','21777','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29224','40935','21777','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29226','40944','21779','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29227','40952','21780','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29228','40952','21780','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29229','40954','21780','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29230','40953','21780','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29231','40952','21780','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29232','40948','21781','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29233','40952','21781','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29234','40951','21781','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29235','40947','21782','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29236','40950','21782','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29237','40947','21782','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29238','40950','21782','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29239','40953','21783','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29240','40953','21783','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29241','40953','21783','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29242','40955','21784','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29243','40960','21785','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29244','40964','21786','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29245','40956','21787','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29246','40956','21787','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29247','40956','21787','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29249','40965','21789','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29250','40973','21790','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29251','40973','21790','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29252','40975','21790','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29253','40974','21790','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29254','40973','21790','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29255','40969','21791','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29256','40973','21791','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29257','40972','21791','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29258','40968','21792','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29259','40971','21792','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29260','40968','21792','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29261','40971','21792','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29262','40974','21793','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29263','40974','21793','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29264','40974','21793','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29265','40976','21794','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29266','40981','21795','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29267','40985','21796','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29268','40977','21797','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29269','40977','21797','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29270','40977','21797','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29272','40986','21799','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29273','40994','21800','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29274','40994','21800','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29275','40996','21800','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29276','40995','21800','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29277','40994','21800','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29278','40990','21801','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29279','40994','21801','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29280','40993','21801','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29281','40989','21802','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29282','40992','21802','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29283','40989','21802','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29284','40992','21802','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29285','40995','21803','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29286','40995','21803','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29287','40995','21803','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29288','40997','21804','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29289','41002','21805','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29290','41006','21806','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29291','40998','21807','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29292','40998','21807','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29293','40998','21807','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29295','41007','21809','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29296','41015','21810','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29297','41015','21810','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29298','41017','21810','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29299','41016','21810','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29300','41015','21810','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29301','41011','21811','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29302','41015','21811','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29303','41014','21811','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29304','41010','21812','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29305','41013','21812','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29306','41010','21812','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29307','41013','21812','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29308','41016','21813','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29309','41016','21813','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29310','41016','21813','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29311','41018','21814','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29312','41023','21815','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29313','41027','21816','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29314','41019','21817','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29315','41019','21817','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29316','41019','21817','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29318','41028','21819','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29319','41036','21820','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29320','41036','21820','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29321','41038','21820','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29322','41037','21820','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29323','41036','21820','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29324','41032','21821','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29325','41036','21821','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29326','41035','21821','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29327','41031','21822','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29328','41034','21822','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29329','41031','21822','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29330','41034','21822','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29331','41037','21823','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29332','41037','21823','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29333','41037','21823','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29334','41039','21824','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29335','41044','21825','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29336','41048','21826','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29337','41040','21827','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29338','41040','21827','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29339','41040','21827','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29341','41049','21829','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29342','41057','21830','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29343','41057','21830','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29344','41059','21830','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29345','41058','21830','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29346','41057','21830','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29347','41053','21831','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29348','41057','21831','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29349','41056','21831','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29350','41052','21832','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29351','41055','21832','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29352','41052','21832','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29353','41055','21832','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29354','41058','21833','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29355','41058','21833','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29356','41058','21833','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29357','41060','21834','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29358','41065','21835','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29359','41069','21836','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29360','41061','21837','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29361','41061','21837','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29362','41061','21837','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29364','41070','21839','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29365','41078','21840','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29366','41078','21840','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29367','41080','21840','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29368','41079','21840','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29369','41078','21840','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29370','41074','21841','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29371','41078','21841','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29372','41077','21841','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29373','41073','21842','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29374','41076','21842','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29375','41073','21842','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29376','41076','21842','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29377','41079','21843','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29378','41079','21843','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29379','41079','21843','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29380','41081','21844','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29381','41086','21845','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29382','41090','21846','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29383','41082','21847','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29384','41082','21847','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29385','41082','21847','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29387','41091','21849','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29388','41099','21850','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29389','41099','21850','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29390','41101','21850','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29391','41100','21850','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29392','41099','21850','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29393','41095','21851','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29394','41099','21851','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29395','41098','21851','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29396','41094','21852','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29397','41097','21852','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29398','41094','21852','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29399','41097','21852','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29400','41100','21853','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29401','41100','21853','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29402','41100','21853','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29403','41102','21854','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29404','41107','21855','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29405','41111','21856','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29406','41103','21857','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29407','41103','21857','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29408','41103','21857','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29410','41112','21859','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29411','41120','21860','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29412','41120','21860','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29413','41122','21860','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29414','41121','21860','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29415','41120','21860','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29416','41116','21861','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29417','41120','21861','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29418','41119','21861','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29419','41115','21862','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29420','41118','21862','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29421','41115','21862','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29422','41118','21862','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29423','41121','21863','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29424','41121','21863','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29425','41121','21863','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29426','41123','21864','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29427','41128','21865','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29428','41132','21866','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29429','41124','21867','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29430','41124','21867','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29431','41124','21867','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29433','41133','21869','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29434','41141','21870','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29435','41141','21870','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29436','41143','21870','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29437','41142','21870','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29438','41141','21870','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29439','41137','21871','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29440','41141','21871','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29441','41140','21871','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29442','41136','21872','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29443','41139','21872','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29444','41136','21872','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29445','41139','21872','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29446','41142','21873','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29447','41142','21873','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29448','41142','21873','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29449','41144','21874','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29450','41149','21875','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29451','41153','21876','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29452','41145','21877','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29453','41145','21877','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29454','41145','21877','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29456','41154','21879','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29457','41162','21880','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29458','41162','21880','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29459','41164','21880','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29460','41163','21880','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29461','41162','21880','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29462','41158','21881','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29463','41162','21881','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29464','41161','21881','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29465','41157','21882','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29466','41160','21882','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29467','41157','21882','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29468','41160','21882','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29469','41163','21883','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29470','41163','21883','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29471','41163','21883','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29472','41165','21884','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29473','41170','21885','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29474','41174','21886','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29475','41166','21887','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29476','41166','21887','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29477','41166','21887','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29479','41175','21889','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29480','41183','21890','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29481','41183','21890','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29482','41185','21890','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29483','41184','21890','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29484','41183','21890','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29485','41179','21891','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29486','41183','21891','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29487','41182','21891','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29488','41178','21892','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29489','41181','21892','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29490','41178','21892','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29491','41181','21892','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29492','41184','21893','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29493','41184','21893','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29494','41184','21893','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29495','41186','21894','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29496','41191','21895','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29497','41195','21896','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29498','41187','21897','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29499','41187','21897','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29500','41187','21897','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29502','41196','21899','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29503','41204','21900','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29504','41204','21900','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29505','41206','21900','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29506','41205','21900','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29507','41204','21900','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29508','41200','21901','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29509','41204','21901','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29510','41203','21901','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29511','41199','21902','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29512','41202','21902','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29513','41199','21902','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29514','41202','21902','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29515','41205','21903','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29516','41205','21903','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29517','41205','21903','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29518','41207','21904','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29519','41212','21905','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29520','41216','21906','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29521','41208','21907','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29522','41208','21907','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29523','41208','21907','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29525','41217','21909','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29526','41225','21910','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29527','41225','21910','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29528','41227','21910','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29529','41226','21910','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29530','41225','21910','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29531','41221','21911','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29532','41225','21911','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29533','41224','21911','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29534','41220','21912','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29535','41223','21912','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29536','41220','21912','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29537','41223','21912','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29538','41226','21913','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29539','41226','21913','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29540','41226','21913','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29541','41228','21914','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29542','41233','21915','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29543','41237','21916','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29544','41229','21917','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29545','41229','21917','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29546','41229','21917','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29548','41238','21919','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29549','41246','21920','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29550','41246','21920','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29551','41248','21920','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29552','41247','21920','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29553','41246','21920','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29554','41242','21921','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29555','41246','21921','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29556','41245','21921','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29557','41241','21922','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29558','41244','21922','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29559','41241','21922','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29560','41244','21922','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29561','41247','21923','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29562','41247','21923','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29563','41247','21923','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29564','41249','21924','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29565','41254','21925','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29566','41258','21926','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29567','41250','21927','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29568','41250','21927','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29569','41250','21927','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29571','41259','21929','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29572','41267','21930','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29573','41267','21930','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29574','41269','21930','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29575','41268','21930','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29576','41267','21930','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29577','41263','21931','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29578','41267','21931','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29579','41266','21931','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29580','41262','21932','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29581','41265','21932','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29582','41262','21932','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29583','41265','21932','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29584','41268','21933','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29585','41268','21933','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29586','41268','21933','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29587','41270','21934','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29588','41275','21935','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29589','41279','21936','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29590','41271','21937','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29591','41271','21937','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29592','41271','21937','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29594','41280','21939','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29595','41288','21940','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29596','41288','21940','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29597','41290','21940','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29598','41289','21940','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29599','41288','21940','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29600','41284','21941','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29601','41288','21941','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29602','41287','21941','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29603','41283','21942','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29604','41286','21942','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29605','41283','21942','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29606','41286','21942','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29607','41289','21943','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29608','41289','21943','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29609','41289','21943','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29610','41291','21944','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29611','41296','21945','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29612','41300','21946','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29613','41292','21947','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29614','41292','21947','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29615','41292','21947','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29617','41301','21949','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29618','41309','21950','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29619','41309','21950','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29620','41311','21950','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29621','41310','21950','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29622','41309','21950','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29623','41305','21951','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29624','41309','21951','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29625','41308','21951','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29626','41304','21952','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29627','41307','21952','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29628','41304','21952','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29629','41307','21952','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29630','41310','21953','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29631','41310','21953','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29632','41310','21953','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29633','41312','21954','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29634','41317','21955','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29635','41321','21956','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29636','41313','21957','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29637','41313','21957','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29638','41313','21957','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29640','41322','21959','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29641','41330','21960','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29642','41330','21960','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29643','41332','21960','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29644','41331','21960','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29645','41330','21960','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29646','41326','21961','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29647','41330','21961','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29648','41329','21961','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29649','41325','21962','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29650','41328','21962','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29651','41325','21962','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29652','41328','21962','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29653','41331','21963','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29654','41331','21963','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29655','41331','21963','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29656','41333','21964','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29657','41338','21965','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29658','41342','21966','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29659','41334','21967','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29660','41334','21967','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29661','41334','21967','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29663','41343','21969','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29664','41351','21970','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29665','41351','21970','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29666','41353','21970','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29667','41352','21970','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29668','41351','21970','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29669','41347','21971','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29670','41351','21971','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29671','41350','21971','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29672','41346','21972','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29673','41349','21972','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29674','41346','21972','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29675','41349','21972','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29676','41352','21973','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29677','41352','21973','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29678','41352','21973','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29679','41354','21974','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29680','41359','21975','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29681','41363','21976','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29682','41355','21977','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29683','41355','21977','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29684','41355','21977','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29686','41364','21979','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29687','41372','21980','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29688','41372','21980','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29689','41374','21980','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29690','41373','21980','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29691','41372','21980','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29692','41368','21981','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29693','41372','21981','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29694','41371','21981','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29695','41367','21982','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29696','41370','21982','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29697','41367','21982','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29698','41370','21982','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29699','41373','21983','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29700','41373','21983','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29701','41373','21983','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29702','41375','21984','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29703','41380','21985','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29704','41384','21986','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29705','41376','21987','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29706','41376','21987','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29707','41376','21987','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29709','41385','21989','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29710','41393','21990','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29711','41393','21990','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29712','41395','21990','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29713','41394','21990','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29714','41393','21990','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29715','41389','21991','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29716','41393','21991','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29717','41392','21991','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29718','41388','21992','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29719','41391','21992','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29720','41388','21992','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29721','41391','21992','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29722','41394','21993','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29723','41394','21993','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29724','41394','21993','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29725','41396','21994','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29726','41401','21995','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29727','41405','21996','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29728','41397','21997','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29729','41397','21997','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29730','41397','21997','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29732','41406','21999','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29733','41414','22000','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29734','41414','22000','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29735','41416','22000','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29736','41415','22000','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29737','41414','22000','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29738','41410','22001','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29739','41414','22001','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29740','41413','22001','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29741','41409','22002','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29742','41412','22002','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29743','41409','22002','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29744','41412','22002','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29745','41415','22003','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29746','41415','22003','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29747','41415','22003','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29748','41417','22004','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29749','41422','22005','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29750','41426','22006','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29751','41418','22007','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29752','41418','22007','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29753','41418','22007','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29755','41427','22009','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29756','41435','22010','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29757','41435','22010','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29758','41437','22010','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29759','41436','22010','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29760','41435','22010','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29761','41431','22011','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29762','41435','22011','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29763','41434','22011','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29764','41430','22012','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29765','41433','22012','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29766','41430','22012','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29767','41433','22012','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29768','41436','22013','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29769','41436','22013','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29770','41436','22013','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29771','41438','22014','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29772','41443','22015','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29773','41447','22016','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29774','41439','22017','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29775','41439','22017','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29776','41439','22017','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29778','41448','22019','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29779','41456','22020','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29780','41456','22020','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29781','41458','22020','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29782','41457','22020','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29783','41456','22020','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29784','41452','22021','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29785','41456','22021','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29786','41455','22021','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29787','41451','22022','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29788','41454','22022','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29789','41451','22022','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29790','41454','22022','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29791','41457','22023','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29792','41457','22023','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29793','41457','22023','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29794','41459','22024','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29795','41464','22025','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29796','41468','22026','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29797','41460','22027','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29798','41460','22027','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29799','41460','22027','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29801','41469','22029','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29802','41477','22030','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29803','41477','22030','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29804','41479','22030','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29805','41478','22030','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29806','41477','22030','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29807','41473','22031','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29808','41477','22031','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29809','41476','22031','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29810','41472','22032','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29811','41475','22032','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29812','41472','22032','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29813','41475','22032','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29814','41478','22033','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29815','41478','22033','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29816','41478','22033','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29817','41480','22034','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29818','41485','22035','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29819','41489','22036','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29820','41481','22037','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29821','41481','22037','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29822','41481','22037','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29824','41490','22039','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29825','41498','22040','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29826','41498','22040','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29827','41500','22040','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29828','41499','22040','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29829','41498','22040','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29830','41494','22041','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29831','41498','22041','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29832','41497','22041','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29833','41493','22042','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29834','41496','22042','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29835','41493','22042','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29836','41496','22042','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29837','41499','22043','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29838','41499','22043','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29839','41499','22043','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29840','41501','22044','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29841','41506','22045','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29842','41510','22046','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29843','41502','22047','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29844','41502','22047','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29845','41502','22047','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29847','41511','22049','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29848','41519','22050','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29849','41519','22050','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29850','41521','22050','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29851','41520','22050','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29852','41519','22050','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29853','41515','22051','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29854','41519','22051','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29855','41518','22051','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29856','41514','22052','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29857','41517','22052','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29858','41514','22052','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29859','41517','22052','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29860','41520','22053','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29861','41520','22053','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29862','41520','22053','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29863','41522','22054','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29864','41527','22055','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29865','41531','22056','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29866','41523','22057','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29867','41523','22057','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29868','41523','22057','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29870','41532','22059','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29871','41540','22060','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29872','41540','22060','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29873','41542','22060','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29874','41541','22060','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29875','41540','22060','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29876','41536','22061','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29877','41540','22061','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29878','41539','22061','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29879','41535','22062','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29880','41538','22062','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29881','41535','22062','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29882','41538','22062','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29883','41541','22063','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29884','41541','22063','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29885','41541','22063','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29886','41543','22064','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29887','41548','22065','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29888','41552','22066','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29889','41544','22067','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29890','41544','22067','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29891','41544','22067','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29893','41553','22069','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29894','41561','22070','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29895','41561','22070','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29896','41563','22070','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29897','41562','22070','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29898','41561','22070','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29899','41557','22071','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29900','41561','22071','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29901','41560','22071','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29902','41556','22072','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29903','41559','22072','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29904','41556','22072','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29905','41559','22072','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29906','41562','22073','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29907','41562','22073','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29908','41562','22073','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29909','41564','22074','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29910','41569','22075','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29911','41573','22076','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29912','41565','22077','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29913','41565','22077','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29914','41565','22077','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29916','41574','22079','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29917','41582','22080','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29918','41582','22080','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29919','41584','22080','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29920','41583','22080','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29921','41582','22080','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29922','41578','22081','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29923','41582','22081','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29924','41581','22081','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29925','41577','22082','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29926','41580','22082','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29927','41577','22082','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29928','41580','22082','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29929','41583','22083','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29930','41583','22083','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29931','41583','22083','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29932','41585','22084','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29933','41590','22085','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29934','41594','22086','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29935','41586','22087','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29936','41586','22087','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29937','41586','22087','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29939','41595','22089','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29940','41603','22090','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29941','41603','22090','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29942','41605','22090','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29943','41604','22090','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29944','41603','22090','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29945','41599','22091','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29946','41603','22091','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29947','41602','22091','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29948','41598','22092','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29949','41601','22092','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29950','41598','22092','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29951','41601','22092','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29952','41604','22093','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29953','41604','22093','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29954','41604','22093','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29955','41606','22094','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29956','41611','22095','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29957','41615','22096','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29958','41607','22097','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29959','41607','22097','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29960','41607','22097','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29962','41616','22099','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29963','41624','22100','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29964','41624','22100','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29965','41626','22100','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29966','41625','22100','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29967','41624','22100','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29968','41620','22101','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29969','41624','22101','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29970','41623','22101','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29971','41619','22102','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29972','41622','22102','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29973','41619','22102','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29974','41622','22102','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29975','41625','22103','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29976','41625','22103','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29977','41625','22103','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29978','41627','22104','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29979','41632','22105','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29980','41636','22106','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29981','41628','22107','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29982','41628','22107','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29983','41628','22107','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29985','41637','22109','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29986','41645','22110','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29987','41645','22110','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29988','41647','22110','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29989','41646','22110','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29990','41645','22110','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29991','41641','22111','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29992','41645','22111','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29993','41644','22111','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29994','41640','22112','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29995','41643','22112','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29996','41640','22112','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29997','41643','22112','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29998','41646','22113','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('29999','41646','22113','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30000','41646','22113','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30001','41648','22114','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30002','41653','22115','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30003','41657','22116','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30004','41649','22117','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30005','41649','22117','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30006','41649','22117','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30008','41658','22119','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30009','41666','22120','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30010','41666','22120','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30011','41668','22120','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30012','41667','22120','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30013','41666','22120','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30014','41662','22121','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30015','41666','22121','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30016','41665','22121','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30017','41661','22122','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30018','41664','22122','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30019','41661','22122','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30020','41664','22122','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30021','41667','22123','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30022','41667','22123','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30023','41667','22123','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30024','41669','22124','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30025','41674','22125','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30026','41678','22126','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30027','41670','22127','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30028','41670','22127','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30029','41670','22127','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30031','41679','22129','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30032','41687','22130','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30033','41687','22130','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30034','41689','22130','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30035','41688','22130','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30036','41687','22130','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30037','41683','22131','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30038','41687','22131','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30039','41686','22131','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30040','41682','22132','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30041','41685','22132','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30042','41682','22132','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30043','41685','22132','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30044','41688','22133','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30045','41688','22133','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30046','41688','22133','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30047','41690','22134','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30048','41695','22135','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30049','41699','22136','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30050','41691','22137','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30051','41691','22137','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30052','41691','22137','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30054','41700','22139','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30055','41708','22140','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30056','41708','22140','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30057','41710','22140','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30058','41709','22140','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30059','41708','22140','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30060','41704','22141','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30061','41708','22141','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30062','41707','22141','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30063','41703','22142','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30064','41706','22142','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30065','41703','22142','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30066','41706','22142','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30067','41709','22143','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30068','41709','22143','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30069','41709','22143','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30070','41711','22144','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30071','41716','22145','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30072','41720','22146','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30073','41712','22147','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30074','41712','22147','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30075','41712','22147','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30077','41721','22149','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30078','41729','22150','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30079','41729','22150','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30080','41731','22150','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30081','41730','22150','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30082','41729','22150','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30083','41725','22151','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30084','41729','22151','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30085','41728','22151','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30086','41724','22152','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30087','41727','22152','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30088','41724','22152','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30089','41727','22152','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30090','41730','22153','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30091','41730','22153','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30092','41730','22153','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30093','41732','22154','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30094','41737','22155','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30095','41741','22156','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30096','41733','22157','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30097','41733','22157','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30098','41733','22157','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30100','41742','22159','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30101','41750','22160','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30102','41750','22160','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30103','41752','22160','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30104','41751','22160','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30105','41750','22160','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30106','41746','22161','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30107','41750','22161','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30108','41749','22161','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30109','41745','22162','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30110','41748','22162','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30111','41745','22162','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30112','41748','22162','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30113','41751','22163','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30114','41751','22163','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30115','41751','22163','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30116','41753','22164','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30117','41758','22165','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30118','41762','22166','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30119','41754','22167','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30120','41754','22167','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30121','41754','22167','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30123','41763','22169','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30124','41771','22170','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30125','41771','22170','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30126','41773','22170','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30127','41772','22170','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30128','41771','22170','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30129','41767','22171','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30130','41771','22171','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30131','41770','22171','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30132','41766','22172','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30133','41769','22172','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30134','41766','22172','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30135','41769','22172','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30136','41772','22173','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30137','41772','22173','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30138','41772','22173','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30139','41774','22174','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30140','41779','22175','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30141','41783','22176','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30142','41775','22177','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30143','41775','22177','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30144','41775','22177','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30146','41784','22179','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30147','41792','22180','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30148','41792','22180','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30149','41794','22180','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30150','41793','22180','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30151','41792','22180','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30152','41788','22181','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30153','41792','22181','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30154','41791','22181','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30155','41787','22182','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30156','41790','22182','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30157','41787','22182','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30158','41790','22182','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30159','41793','22183','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30160','41793','22183','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30161','41793','22183','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30162','41795','22184','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30163','41800','22185','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30164','41804','22186','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30165','41796','22187','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30166','41796','22187','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30167','41796','22187','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30169','41805','22189','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30170','41813','22190','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30171','41813','22190','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30172','41815','22190','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30173','41814','22190','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30174','41813','22190','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30175','41809','22191','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30176','41813','22191','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30177','41812','22191','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30178','41808','22192','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30179','41811','22192','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30180','41808','22192','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30181','41811','22192','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30182','41814','22193','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30183','41814','22193','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30184','41814','22193','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30185','41816','22194','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30186','41821','22195','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30187','41825','22196','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30188','41817','22197','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30189','41817','22197','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30190','41817','22197','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30192','41826','22199','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30193','41834','22200','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30194','41834','22200','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30195','41836','22200','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30196','41835','22200','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30197','41834','22200','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30198','41830','22201','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30199','41834','22201','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30200','41833','22201','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30201','41829','22202','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30202','41832','22202','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30203','41829','22202','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30204','41832','22202','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30205','41835','22203','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30206','41835','22203','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30207','41835','22203','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30208','41837','22204','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30209','41842','22205','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30210','41846','22206','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30211','41838','22207','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30212','41838','22207','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30213','41838','22207','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30215','41847','22209','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30216','41855','22210','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30217','41855','22210','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30218','41857','22210','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30219','41856','22210','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30220','41855','22210','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30221','41851','22211','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30222','41855','22211','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30223','41854','22211','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30224','41850','22212','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30225','41853','22212','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30226','41850','22212','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30227','41853','22212','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30228','41856','22213','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30229','41856','22213','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30230','41856','22213','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30231','41858','22214','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30232','41863','22215','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30233','41867','22216','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30234','41859','22217','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30235','41859','22217','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30236','41859','22217','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30238','41868','22219','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30239','41876','22220','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30240','41876','22220','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30241','41878','22220','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30242','41877','22220','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30243','41876','22220','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30244','41872','22221','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30245','41876','22221','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30246','41875','22221','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30247','41871','22222','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30248','41874','22222','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30249','41871','22222','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30250','41874','22222','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30251','41877','22223','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30252','41877','22223','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30253','41877','22223','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30254','41879','22224','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30255','41884','22225','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30256','41888','22226','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30257','41880','22227','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30258','41880','22227','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30259','41880','22227','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30261','41889','22229','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30262','41897','22230','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30263','41897','22230','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30264','41899','22230','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30265','41898','22230','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30266','41897','22230','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30267','41893','22231','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30268','41897','22231','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30269','41896','22231','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30270','41892','22232','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30271','41895','22232','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30272','41892','22232','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30273','41895','22232','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30274','41898','22233','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30275','41898','22233','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30276','41898','22233','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30277','41900','22234','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30278','41905','22235','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30279','41909','22236','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30280','41901','22237','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30281','41901','22237','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30282','41901','22237','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30284','41910','22239','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30285','41918','22240','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30286','41918','22240','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30287','41920','22240','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30288','41919','22240','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30289','41918','22240','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30290','41914','22241','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30291','41918','22241','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30292','41917','22241','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30293','41913','22242','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30294','41916','22242','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30295','41913','22242','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30296','41916','22242','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30297','41919','22243','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30298','41919','22243','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30299','41919','22243','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30300','41921','22244','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30301','41926','22245','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30302','41930','22246','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30303','41922','22247','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30304','41922','22247','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30305','41922','22247','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30307','41931','22249','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30308','41939','22250','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30309','41939','22250','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30310','41941','22250','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30311','41940','22250','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30312','41939','22250','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30313','41935','22251','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30314','41939','22251','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30315','41938','22251','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30316','41934','22252','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30317','41937','22252','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30318','41934','22252','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30319','41937','22252','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30320','41940','22253','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30321','41940','22253','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30322','41940','22253','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30323','41942','22254','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30324','41947','22255','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30325','41951','22256','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30326','41943','22257','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30327','41943','22257','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30328','41943','22257','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30330','41952','22259','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30331','41960','22260','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30332','41960','22260','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30333','41962','22260','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30334','41961','22260','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30335','41960','22260','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30336','41956','22261','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30337','41960','22261','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30338','41959','22261','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30339','41955','22262','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30340','41958','22262','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30341','41955','22262','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30342','41958','22262','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30343','41961','22263','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30344','41961','22263','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30345','41961','22263','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30346','41963','22264','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30347','41968','22265','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30348','41972','22266','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30349','41964','22267','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30350','41964','22267','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30351','41964','22267','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30353','41973','22269','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30354','41981','22270','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30355','41981','22270','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30356','41983','22270','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30357','41982','22270','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30358','41981','22270','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30359','41977','22271','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30360','41981','22271','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30361','41980','22271','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30362','41976','22272','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30363','41979','22272','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30364','41976','22272','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30365','41979','22272','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30366','41982','22273','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30367','41982','22273','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30368','41982','22273','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30369','41984','22274','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30370','41989','22275','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30371','41993','22276','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30372','41985','22277','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30373','41985','22277','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30374','41985','22277','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30376','41994','22279','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30377','42002','22280','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30378','42002','22280','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30379','42004','22280','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30380','42003','22280','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30381','42002','22280','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30382','41998','22281','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30383','42002','22281','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30384','42001','22281','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30385','41997','22282','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30386','42000','22282','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30387','41997','22282','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30388','42000','22282','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30389','42003','22283','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30390','42003','22283','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30391','42003','22283','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30392','42005','22284','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30393','42010','22285','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30394','42014','22286','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30395','42006','22287','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30396','42006','22287','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30397','42006','22287','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30399','42015','22289','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30400','42023','22290','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30401','42023','22290','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30402','42025','22290','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30403','42024','22290','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30404','42023','22290','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30405','42019','22291','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30406','42023','22291','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30407','42022','22291','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30408','42018','22292','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30409','42021','22292','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30410','42018','22292','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30411','42021','22292','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30412','42024','22293','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30413','42024','22293','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30414','42024','22293','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30415','42026','22294','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30416','42031','22295','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30417','42035','22296','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30418','42027','22297','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30419','42027','22297','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30420','42027','22297','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30422','42036','22299','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30423','42044','22300','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30424','42044','22300','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30425','42046','22300','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30426','42045','22300','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30427','42044','22300','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30428','42040','22301','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30429','42044','22301','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30430','42043','22301','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30431','42039','22302','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30432','42042','22302','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30433','42039','22302','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30434','42042','22302','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30435','42045','22303','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30436','42045','22303','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30437','42045','22303','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30438','42047','22304','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30439','42052','22305','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30440','42056','22306','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30441','42048','22307','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30442','42048','22307','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30443','42048','22307','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30445','42057','22309','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30446','42065','22310','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30447','42065','22310','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30448','42067','22310','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30449','42066','22310','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30450','42065','22310','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30451','42061','22311','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30452','42065','22311','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30453','42064','22311','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30454','42060','22312','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30455','42063','22312','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30456','42060','22312','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30457','42063','22312','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30458','42066','22313','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30459','42066','22313','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30460','42066','22313','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30461','42068','22314','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30462','42073','22315','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30463','42077','22316','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30464','42069','22317','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30465','42069','22317','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30466','42069','22317','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30468','42078','22319','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30469','42086','22320','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30470','42086','22320','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30471','42088','22320','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30472','42087','22320','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30473','42086','22320','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30474','42082','22321','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30475','42086','22321','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30476','42085','22321','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30477','42081','22322','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30478','42084','22322','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30479','42081','22322','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30480','42084','22322','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30481','42087','22323','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30482','42087','22323','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30483','42087','22323','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30484','42089','22324','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30485','42094','22325','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30486','42098','22326','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30487','42090','22327','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30488','42090','22327','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30489','42090','22327','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30491','42099','22329','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30492','42107','22330','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30493','42107','22330','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30494','42109','22330','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30495','42108','22330','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30496','42107','22330','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30497','42103','22331','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30498','42107','22331','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30499','42106','22331','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30500','42102','22332','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30501','42105','22332','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30502','42102','22332','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30503','42105','22332','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30504','42108','22333','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30505','42108','22333','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30506','42108','22333','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30507','42110','22334','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30508','42115','22335','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30509','42119','22336','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30510','42113','22337','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30511','42113','22337','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30512','42113','22337','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30514','42120','22339','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30515','42129','22340','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30516','42129','22340','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30517','42131','22340','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30518','42130','22340','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30519','42129','22340','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30520','42125','22341','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30521','42129','22341','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30522','42128','22341','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30523','42124','22342','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30524','42127','22342','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30525','42124','22342','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30526','42127','22342','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30527','42130','22343','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30528','42130','22343','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30529','42130','22343','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30530','42132','22344','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30531','42133','22345','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30532','42134','22346','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30533','42135','22347','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30534','42140','22348','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30535','42140','22348','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30536','42140','22348','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30538','42143','22350','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30539','42151','22351','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30540','42151','22351','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30541','42153','22351','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30542','42152','22351','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30543','42151','22351','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30544','42147','22352','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30545','42151','22352','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30546','42150','22352','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30547','42146','22353','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30548','42149','22353','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30549','42146','22353','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30550','42149','22353','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30551','42152','22354','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30552','42152','22354','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30553','42152','22354','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30554','42154','22355','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30555','42159','22356','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30556','42163','22357','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30557','42155','22358','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30558','42155','22358','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30559','42155','22358','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30561','42164','22360','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30562','42172','22361','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30563','42172','22361','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30564','42174','22361','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30565','42173','22361','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30566','42172','22361','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30567','42168','22362','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30568','42172','22362','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30569','42171','22362','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30570','42167','22363','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30571','42170','22363','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30572','42167','22363','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30573','42170','22363','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30574','42173','22364','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30575','42173','22364','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30576','42173','22364','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30577','42178','22365','max','$,{$AGENT.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30578','42182','22366','max','$,{$AGENT.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30579','42186','22367','max','$,{$AGENT.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30580','42211','22368','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30581','42212','22369','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30582','42267','22370','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30583','42191','22371','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30584','42191','22371','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30585','42191','22371','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30586','42192','22372','fuzzytime','$,{$SYSTEM.FUZZYTIME.MAX}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30587','42194','22373','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30588','42194','22373','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30589','42194','22373','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30590','42200','22374','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30591','42202','22375','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30592','42202','22375','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30593','42268','22376','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30594','42226','22377','max','$,{$AGENT.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30595','42213','22378','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30596','42212','22378','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30601','42209','22381','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30602','42220','22381','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30603','42217','22381','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30604','42219','22381','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30605','42251','22382','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30606','42252','22383','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30607','42269','22384','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30608','42231','22385','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30609','42231','22385','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30610','42231','22385','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30611','42232','22386','fuzzytime','$,{$SYSTEM.FUZZYTIME.MAX}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30612','42234','22387','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30613','42234','22387','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30614','42234','22387','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30615','42240','22388','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30616','42242','22389','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30617','42242','22389','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30618','42270','22390','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30619','42266','22391','max','$,{$AGENT.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30620','42253','22392','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30621','42252','22392','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30626','42249','22395','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30627','42260','22395','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30628','42257','22395','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30629','42259','22395','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30634','42278','22397','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30635','42281','22397','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30636','42278','22397','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30637','42281','22397','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30638','42283','22398','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30639','42283','22398','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30640','42283','22398','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30641','42285','22399','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30642','42286','22399','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30651','42288','22402','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30652','42288','22403','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30657','42293','22405','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30658','42296','22405','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30659','42293','22405','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30660','42296','22405','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30661','42298','22406','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30662','42298','22406','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30663','42298','22406','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30664','42300','22407','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30665','42301','22407','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30674','42303','22410','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30675','42303','22411','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30676','42340','22412','nodata','$,{$AGENT.NODATA_TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30677','42343','22413','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30678','42344','22414','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30679','42358','22415','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30680','42323','22416','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30681','42323','22416','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30682','42323','22416','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30683','42324','22417','fuzzytime','$,{$SYSTEM.FUZZYTIME.MAX}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30684','42326','22418','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30685','42326','22418','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30686','42326','22418','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30687','42332','22419','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30688','42334','22420','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30689','42334','22420','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30690','42359','22421','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30691','42345','22422','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30692','42344','22422','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30697','42341','22425','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30698','42352','22425','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30699','42349','22425','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30700','42351','22425','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30705','42364','22427','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30706','42367','22427','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30707','42364','22427','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30708','42367','22427','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30709','42369','22428','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30710','42369','22428','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30711','42369','22428','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30712','42371','22429','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30713','42372','22429','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30722','42374','22432','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30723','42374','22433','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30724','42384','22434','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30725','42397','22435','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30726','42408','22436','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30727','42396','22437','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30728','42396','22437','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30729','42396','22437','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30731','42386','22439','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30732','42409','22440','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30737','42404','22443','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30738','42401','22443','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30739','42403','22443','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30740','42402','22443','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30741','42442','22444','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30742','42431','22445','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30743','42431','22445','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30744','42433','22445','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30745','42432','22445','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30746','42431','22445','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30747','42427','22446','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30748','42431','22446','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30749','42430','22446','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30750','42426','22447','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30751','42429','22447','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30752','42426','22447','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30753','42429','22447','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30754','42432','22448','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30755','42432','22448','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30756','42432','22448','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30757','42434','22449','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30766','42438','22452','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30767','42438','22453','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30768','42446','22454','max','$,{$AGENT.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30769','42450','22455','max','$,{$AGENT.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30770','42454','22456','max','$,{$AGENT.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30771','42482','22457','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30772','42480','22458','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30773','42476','22459','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30774','42475','22460','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30775','42469','22461','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30776','42468','22462','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30777','42468','22462','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30778','42468','22462','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30779','42467','22463','fuzzytime','$,{$SYSTEM.FUZZYTIME.MAX}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30780','42462','22464','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30781','42459','22465','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30782','42485','22466','max','$,{$AGENT.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30783','42472','22467','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30784','42457','22467','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30785','42486','22468','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30786','42464','22468','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30787','42509','22469','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30788','42509','22469','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30789','42510','22469','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30790','42493','22470','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30791','42509','22470','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30792','42496','22470','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30793','42492','22471','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30794','42495','22471','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30795','42492','22471','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30796','42495','22471','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30797','42510','22472','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30798','42510','22472','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30799','42510','22472','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30800','42497','22473','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30801','42499','22474','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30802','42500','22475','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30803','42505','22476','min','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30812','42527','22479','nodata','$,{$AGENT.NODATA_TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30813','42538','22480','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30814','42536','22481','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30815','42532','22482','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30816','42531','22483','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30817','42525','22484','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30818','42524','22485','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30819','42524','22485','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30820','42524','22485','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30821','42523','22486','fuzzytime','$,{$SYSTEM.FUZZYTIME.MAX}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30822','42518','22487','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30823','42515','22488','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30824','42528','22489','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30825','42541','22489','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30826','42542','22490','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30827','42520','22490','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30828','42565','22491','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30829','42565','22491','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30830','42566','22491','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30831','42549','22492','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30832','42565','22492','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30833','42552','22492','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30834','42548','22493','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30835','42551','22493','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30836','42548','22493','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30837','42551','22493','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30838','42566','22494','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30839','42566','22494','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30840','42566','22494','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30841','42553','22495','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30842','42555','22496','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30843','42556','22497','min','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30844','42561','22498','min','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30853','42568','22501','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30854','42569','22502','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30855','42570','22503','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30856','42573','22504','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30857','42576','22505','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30858','42576','22505','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30859','42576','22505','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30861','42579','22507','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30862','42589','22508','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30863','42589','22508','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30864','42591','22508','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30865','42590','22508','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30866','42589','22508','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30867','42585','22509','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30868','42589','22509','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30869','42588','22509','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30870','42584','22510','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30871','42587','22510','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30872','42584','22510','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30873','42587','22510','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30874','42590','22511','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30875','42590','22511','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30876','42590','22511','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30885','42597','22514','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30886','42598','22515','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30887','42599','22516','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30888','42600','22517','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30889','42605','22518','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30890','42605','22518','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30891','42605','22518','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30893','42608','22520','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30894','42609','22521','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30895','42610','22522','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30896','42611','22523','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30897','42616','22524','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30898','42616','22524','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30899','42616','22524','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30901','42619','22526','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30902','42620','22527','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30903','42621','22528','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30904','42622','22529','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30905','42627','22530','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30906','42627','22530','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30907','42627','22530','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30909','42630','22532','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30910','42631','22533','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30911','42632','22534','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30912','42633','22535','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30913','42638','22536','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30914','42638','22536','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30915','42638','22536','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30917','42641','22538','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30918','42642','22539','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30919','42643','22540','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30920','42644','22541','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30921','42649','22542','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30922','42649','22542','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30923','42649','22542','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30925','42652','22544','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30926','42653','22545','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30927','42654','22546','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30928','42655','22547','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30929','42660','22548','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30930','42660','22548','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30931','42660','22548','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30933','42663','22550','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30934','42664','22551','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30935','42665','22552','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30936','42666','22553','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30937','42671','22554','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30938','42671','22554','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30939','42671','22554','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30941','42674','22556','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30943','42676','22557','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30944','34150','18434','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30945','34151','18435','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30946','28202','18440','count','$,#1,"eq","{$FAN_CRIT_STATUS}"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30947','42196','22379','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30948','42198','22379','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30949','29108','18130','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30950','29106','18130','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30951','42203','22380','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30952','42205','22380','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30953','29105','18452','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30954','29104','18452','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30955','42236','22393','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30956','42238','22393','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30957','42243','22394','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30958','42245','22394','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30959','42328','22423','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30960','42330','22423','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30961','31851','18142','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30962','31852','18142','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30963','42335','22424','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30964','42337','22424','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30965','31853','18458','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30966','31855','18458','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30967','29397','18150','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30968','29401','18150','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30969','29402','18462','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30970','29403','18462','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30971','28986','18155','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30972','28984','18155','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30973','42394','22441','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30974','42393','22441','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30975','28983','18156','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30976','28982','18156','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30977','42391','22442','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30978','42387','22442','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30979','35032','18932','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30980','35032','18932','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30981','35031','18933','min','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30982','35031','18933','max','$,{$TIME.PERIOD}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30985','42679','22396','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30986','42679','22396','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30987','42284','22396','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30988','42283','22396','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30989','42679','22396','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30990','42680','16076','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30991','42680','16076','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30992','29223','16076','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30993','29222','16076','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30994','42680','16076','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30995','42681','22404','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30996','42681','22404','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30997','42299','22404','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30998','42298','22404','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('30999','42681','22404','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31000','42279','22558','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31001','42679','22558','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31002','42282','22558','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31003','29216','22559','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31004','42680','22559','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31005','29217','22559','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31006','42294','22560','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31007','42681','22560','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31008','42297','22560','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31009','42682','22426','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31010','42682','22426','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31011','42370','22426','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31012','42369','22426','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31013','42682','22426','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31014','42683','17271','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31015','42683','17271','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31016','31916','17271','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31017','31915','17271','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31018','42683','17271','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31019','42365','22561','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31020','42682','22561','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31021','42368','22561','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31022','31911','22562','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31023','42683','22562','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31024','31914','22562','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31027','42686','22563','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31028','42686','22564','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31090','31546','17066','min','$,{$JMX.HEAP.MEM.USAGE.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31091','31545','17066','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31092','31549','17067','min','$,{$JMX.NONHEAP.MEM.USAGE.TIME}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31093','31548','17067','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31094','42695','22583','min','$,{$JMX.MP.USAGE.TIME:"{#JMXNAME}"}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31095','42694','22583','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31099','42696','22584','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31100','42696','22585','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31101','40036','21228','count','$,#3,,"True"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31102','40036','21228','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31103','40052','21230','count','$,#3,,"ok"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31104','40052','21230','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31105','40071','21232','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31106','40071','21232','min','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31107','40085','21234','count','$,#3,,"ok"');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31108','40085','21234','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31109','42730','22586','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31110','42739','22587','min','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31111','42739','22588','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31112','42747','22589','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31114','42675','13544','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31123','42753','22590','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31124','42766','22591','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31125','42771','22592','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31126','42770','22592','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31127','42767','22593','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31128','42774','22594','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31129','42775','22595','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31130','42788','22596','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31131','42789','22596','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31132','42782','22597','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31133','42777','22597','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31134','42780','22598','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31135','42781','22598','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31136','42776','22599','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31137','42792','22600','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31138','42792','22600','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31139','42792','22600','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31140','42785','22601','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31141','42783','22602','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31142','42783','22602','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31143','42783','22602','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31144','42778','22603','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31145','42798','22604','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31146','42797','22604','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31147','42794','22605','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31148','42801','22606','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31149','42802','22607','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31150','42804','22608','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31151','42805','22608','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31152','42807','22609','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31153','42828','22610','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31154','42830','22611','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31155','42840','22612','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31156','42840','22612','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31157','42840','22612','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31158','42845','22613','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31159','42825','22614','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31160','42848','22615','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31161','42843','22616','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31162','42844','22616','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31163','42820','22617','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31164','42824','22617','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31165','42833','22618','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31166','42836','22618','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31167','42834','22618','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31168','42835','22618','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31169','42891','22619','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31170','42868','22620','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31171','42868','22620','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31172','42870','22620','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31173','42869','22620','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31174','42868','22620','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31175','42864','22621','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31176','42868','22621','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31177','42867','22622','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31178','42868','22622','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31179','42863','22623','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31180','42863','22623','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31181','42866','22624','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31182','42866','22624','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31183','42869','22625','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31184','42871','22626','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31185','42871','22627','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31186','42873','22628','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31187','42872','22628','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31188','42873','22629','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31189','42872','22629','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31190','42878','22630','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31191','42876','22630','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31192','42878','22631','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31193','42876','22631','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31194','42877','22632','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31195','40460','21534','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31196','40461','21534','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31197','40462','21534','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31198','40460','21534','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31199','40460','21535','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31200','40461','21535','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31201','40462','21535','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31202','40460','21535','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31203','30160','16630','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31204','30161','16630','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31205','30162','16630','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31206','30160','16630','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31207','30160','16631','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31208','30161','16631','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31209','30162','16631','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31210','30160','16631','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31211','29212','16069','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31212','29211','16069','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31213','29210','16069','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31214','29212','16069','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31215','29212','16070','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31216','29211','16070','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31217','29210','16070','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31218','29212','16070','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31219','31906','17267','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31220','31907','17267','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31221','31908','17267','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31222','31906','17267','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31223','31906','17268','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31224','31907','17268','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31225','31908','17268','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31226','31906','17268','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31227','29029','16008','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31228','29028','16008','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31229','29027','16008','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31230','29029','16008','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31231','29029','16009','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31232','29028','16009','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31233','29027','16009','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31234','29029','16009','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31235','42894','22633','count','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31236','42894','22633','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31237','42894','22633','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31238','42894','22634','count','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31239','42894','22634','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31240','42894','22634','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31241','42894','22635','count','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31242','42894','22635','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31243','42894','22635','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31244','42894','22636','count','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31245','42894','22636','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31246','42894','22636','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31247','42894','22637','count','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31248','42894','22637','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31249','42894','22637','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31250','42894','22638','count','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31251','42894','22638','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31252','42894','22638','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31253','42894','22639','count','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31254','42894','22639','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31255','42894','22639','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31256','42894','22640','count','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31257','42894','22640','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31258','42894','22640','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31259','42897','22641','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31260','42896','22642','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31261','42896','22642','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31262','42896','22642','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31263','42895','22643','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31264','42895','22644','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31265','42911','22645','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31266','42914','22646','count','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31267','42914','22646','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31268','42914','22646','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31269','42914','22647','count','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31270','42914','22647','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31271','42914','22647','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31272','42914','22648','count','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31273','42914','22648','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31274','42914','22648','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31275','42914','22649','count','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31276','42914','22649','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31277','42914','22649','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31278','42914','22650','count','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31279','42914','22650','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31280','42914','22650','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31281','42914','22651','count','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31282','42914','22651','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31283','42914','22651','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31284','42914','22652','count','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31285','42914','22652','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31286','42914','22652','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31287','42914','22653','count','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31288','42914','22653','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31289','42914','22653','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31290','42917','22654','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31291','42916','22655','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31292','42916','22655','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31293','42916','22655','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31294','42915','22656','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31295','42915','22657','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31296','42931','22658','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31297','29514','16182','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31298','29513','16182','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31299','29512','16182','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31300','29514','16182','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31301','29514','16183','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31302','29513','16183','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31303','29512','16183','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31304','29514','16183','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31305','32012','17305','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31306','32013','17305','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31307','32014','17305','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31308','32012','17305','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31309','32012','17306','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31310','32013','17306','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31311','32014','17306','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31312','32012','17306','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31313','27212','14319','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31314','27212','14319','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31315','27212','14318','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31316','27212','14318','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31317','27212','14320','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31318','27212','14320','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31319','40527','21566','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31320','40528','21566','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31321','40529','21566','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31322','40527','21566','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31323','40527','21567','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31324','40528','21567','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31325','40529','21567','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31326','40527','21567','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31327','27247','17322','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31328','27246','17322','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31329','27247','17322','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31330','27247','14339','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31331','27247','14339','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31332','27247','14340','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31333','27247','14340','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31334','27314','14373','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31335','27314','14373','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31336','27314','14372','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31337','27314','14372','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31338','27314','14374','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31339','27314','14374','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31340','27318','14381','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31341','27318','14381','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31342','27318','14380','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31343','27318','14380','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31344','27318','14382','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31345','27318','14382','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31346','27485','14461','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31347','27485','14461','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31348','27485','14460','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31349','27485','14460','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31350','27485','14462','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31351','27485','14462','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31352','27517','14477','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31353','27517','14477','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31354','27517','14476','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31355','27517','14476','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31356','27517','14478','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31357','27517','14478','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31358','27553','14496','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31359','27553','14496','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31360','27553','14495','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31361','27553','14495','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31362','27553','14497','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31363','27553','14497','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31364','27584','14511','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31365','27584','14511','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31366','27584','14513','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31367','27584','14513','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31368','27584','17574','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31369','27585','17574','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31370','27584','17574','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31371','27672','14552','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31372','27672','14552','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31373','27672','14551','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31374','27672','14551','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31375','27672','14553','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31376','27672','14553','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31377','28150','14915','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31378','28150','14915','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31379','28150','14914','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31380','28150','14914','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31381','28150','14916','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31382','28150','14916','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31383','27751','14590','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31384','27751','14590','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31385','27751','14589','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31386','27751','14589','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31387','27751','14591','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31388','27751','14591','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31389','27784','17332','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31390','27783','17332','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31391','27784','17332','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31392','27784','17333','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31393','27783','17333','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31394','27784','17333','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31395','27784','14606','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31396','27784','14606','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31397','27821','14625','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31398','27821','14625','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31399','27821','14624','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31400','27821','14624','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31401','27821','14626','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31402','27821','14626','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31403','34173','18449','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31404','34174','18449','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31405','34175','18449','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31406','34173','18449','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31407','34173','18450','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31408','34174','18450','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31409','34175','18450','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31410','34173','18450','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31411','27941','17909','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31412','27940','17909','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31413','27941','17909','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31414','27941','17910','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31415','27940','17910','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31416','27941','17910','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31417','27941','14683','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31418','27941','14683','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31419','30124','16552','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31420','30124','16552','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31421','30124','16551','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31422','30124','16551','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31423','30124','16553','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31424','30124','16553','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31425','42289','22400','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31426','42290','22400','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31427','42291','22400','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31428','42289','22400','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31429','42289','22401','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31430','42290','22401','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31431','42291','22401','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31432','42289','22401','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31433','42304','22408','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31434','42305','22408','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31435','42306','22408','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31436','42304','22408','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31437','42304','22409','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31438','42305','22409','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31439','42306','22409','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31440','42304','22409','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31441','42375','22430','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31442','42376','22430','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31443','42377','22430','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31444','42375','22430','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31445','42375','22431','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31446','42376','22431','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31447','42377','22431','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31448','42375','22431','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31449','29433','16155','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31450','29446','16155','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31451','29432','16155','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31452','29433','16155','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31453','29433','16156','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31454','29446','16156','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31455','29432','16156','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31456','29433','16156','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31457','42439','22450','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31458','42440','22450','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31459','42441','22450','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31460','42439','22450','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31461','42439','22451','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31462','42440','22451','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31463','42441','22451','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31464','42439','22451','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31465','42506','22477','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31466','42507','22477','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31467','42508','22477','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31468','42506','22477','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31469','42506','22478','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31470','42507','22478','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31471','42508','22478','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31472','42506','22478','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31473','42562','22499','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31474','42563','22499','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31475','42564','22499','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31476','42562','22499','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31477','42562','22500','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31478','42563','22500','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31479','42564','22500','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31480','42562','22500','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31481','42592','22512','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31482','42593','22512','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31483','42594','22512','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31484','42592','22512','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31485','42592','22513','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31486','42593','22513','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31487','42594','22513','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31488','42592','22513','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31489','28474','15829','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31490','28474','15829','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31491','28474','15828','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31492','28474','15828','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31493','28474','15830','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31494','28474','15830','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31495','28495','15846','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31496','28495','15846','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31497','28495','15845','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31498','28495','15845','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31499','28495','15847','avg','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31500','28495','15847','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31501','42970','22659','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31502','42978','22660','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31503','42978','22661','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31504','42957','22662','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31505','42957','22662','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31506','42957','22662','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31507','42941','22663','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31508','42940','22663','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31509','42991','22664','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31510','42991','22665','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31511','43009','22666','last','$,#1');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31512','43009','22666','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31513','43009','22666','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31514','43012','22667','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31515','43015','22668','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31516','43021','22669','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31517','43034','22670','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31518','43028','22671','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31519','43052','22672','nodata','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31520','43052','22673','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31521','43056','22674','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31522','23644','22675','max','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31523','43112','22676','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31524','43126','22677','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31525','43115','22678','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31526','43084','22679','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31527','43095','22680','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31528','43109','22681','nodata','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31529','43109','22682','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31530','43110','22683','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31531','43110','22683','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31532','43083','22684','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31533','43120','22685','min','$,10m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31534','43119','22685','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31535','43090','22686','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31536','43096','22686','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31537','43085','22687','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31538','43109','22687','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31539','43140','22688','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31540','43140','22688','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31541','43140','22689','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31542','43140','22689','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31543','43173','22690','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31544','43175','22691','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31545','43175','22692','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31546','43175','22693','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31547','43172','22694','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31548','43210','22695','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31549','43200','22696','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31550','43200','22697','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31551','43200','22698','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31552','43195','22699','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31553','43215','22700','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31554','43219','22701','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31555','43219','22702','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31556','43219','22703','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31557','43224','22704','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31558','43224','22705','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31559','43224','22706','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31560','43191','22707','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31561','43191','22708','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31562','43229','22709','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31563','43229','22710','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31564','43229','22711','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31565','43242','22712','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31566','43242','22713','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31567','43242','22714','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31568','43242','22715','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31569','43242','22716','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31570','43242','22717','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31571','43242','22718','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31572','43242','22719','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31573','43242','22720','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31574','43242','22721','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31575','43243','22722','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31576','43243','22723','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31577','43243','22724','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31578','43248','22725','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31579','43248','22726','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31580','43248','22727','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31581','43248','22728','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31582','43248','22729','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31583','43249','22730','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31584','43249','22731','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31585','43249','22732','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31586','43251','22733','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31587','43251','22734','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31588','43251','22735','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31589','43254','22736','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31590','43254','22737','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31591','43192','22738','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31592','43192','22739','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31593','43257','22740','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31594','43257','22741','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31595','43257','22742','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31596','43258','22743','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31597','43258','22744','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31598','43258','22745','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31599','43259','22746','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31600','43259','22747','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31601','43259','22748','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31602','43261','22749','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31603','43261','22750','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31604','43261','22751','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31605','43264','22752','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31606','43264','22753','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31607','43264','22754','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31608','43280','22755','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31609','43282','22756','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31610','43282','22757','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31611','43282','22758','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31612','43279','22759','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31613','43324','22760','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31614','43314','22761','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31615','43314','22762','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31616','43314','22763','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31617','43309','22764','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31618','43329','22765','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31619','43334','22766','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31620','43334','22767','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31621','43334','22768','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31622','43339','22769','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31623','43339','22770','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31624','43339','22771','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31625','43299','22772','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31626','43299','22773','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31627','43344','22774','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31628','43344','22775','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31629','43344','22776','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31630','43358','22777','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31631','43358','22778','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31632','43358','22779','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31633','43358','22780','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31634','43358','22781','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31635','43358','22782','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31636','43358','22783','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31637','43358','22784','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31638','43358','22785','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31639','43358','22786','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31640','43359','22787','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31641','43359','22788','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31642','43359','22789','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31643','43364','22790','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31644','43364','22791','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31645','43364','22792','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31646','43364','22793','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31647','43364','22794','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31648','43365','22795','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31649','43365','22796','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31650','43365','22797','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31651','43367','22798','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31652','43367','22799','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31653','43367','22800','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31654','43370','22801','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31655','43370','22802','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31656','43304','22803','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31657','43304','22804','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31658','43374','22805','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31659','43374','22806','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31660','43374','22807','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31661','43375','22808','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31662','43375','22809','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31663','43375','22810','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31664','43376','22811','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31665','43376','22812','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31666','43376','22813','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31667','43378','22814','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31668','43378','22815','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31669','43378','22816','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31670','43381','22817','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31671','43381','22818','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31672','43381','22819','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31673','43403','22820','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31674','43395','22821','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31675','43421','22822','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31676','43421','22823','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31677','43444','22824','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31678','43445','22825','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31679','43446','22826','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31680','43447','22827','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31681','43452','22828','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31682','43452','22829','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31683','43452','22830','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31684','43460','22831','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31685','43462','22832','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31686','43462','22833','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31687','43466','22834','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31688','43466','22835','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31689','43470','22836','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31690','43470','22837','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31691','31303','22838','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31692','31358','22839','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31693','43497','22840','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31694','43495','22841','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31695','43526','22842','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31696','43526','22843','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31697','43526','22844','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31698','43529','22845','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31699','43531','22846','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31700','43531','22847','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31701','43531','22848','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31702','43532','22849','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31703','43532','22850','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31704','43532','22851','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31705','43532','22852','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31706','43533','22853','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31707','43533','22854','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31708','43533','22855','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31709','43536','22856','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31710','43542','22857','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31711','43541','22857','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31712','43542','22858','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31713','43541','22858','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31714','43542','22859','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31715','43541','22859','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31716','43541','22860','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31717','43541','22861','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31718','43540','22862','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31719','43540','22863','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31720','43540','22864','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31721','43560','22865','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31722','43560','22866','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31723','43560','22867','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31724','43562','22868','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31725','43562','22869','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31726','43562','22870','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31727','43569','22871','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31728','43569','22872','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31729','43569','22873','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31730','43569','22874','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31731','43570','22875','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31732','43570','22876','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31733','43570','22877','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31734','43572','22878','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31735','43572','22879','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31736','43572','22880','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31737','43575','22881','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31738','43575','22882','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31739','43575','22883','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31740','43577','22884','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31741','43577','22885','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31742','43577','22886','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31743','43580','22887','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31744','43583','22888','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31745','43583','22889','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31746','43583','22890','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31747','43584','22891','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31748','43585','22891','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31749','43586','22892','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31750','43586','22893','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31751','43586','22894','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31752','43594','22895','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31753','43594','22896','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31754','43594','22897','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31755','43595','22898','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31756','43595','22899','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31757','43596','22900','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31758','43596','22901','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31759','43596','22902','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31760','43598','22903','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31761','43598','22904','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31762','43601','22905','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31763','43608','22906','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31764','43608','22907','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31765','43608','22908','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31766','43609','22909','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31767','43609','22910','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31768','43609','22911','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31769','43609','22912','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31770','43610','22913','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31771','43610','22914','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31772','43610','22915','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31773','43615','22916','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31774','43616','22916','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31775','43623','22917','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31776','43624','22917','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31777','43623','22918','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31778','43623','22919','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31779','43623','22920','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31780','43623','22921','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31781','43625','22922','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31782','43625','22923','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31783','43625','22924','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31784','43630','22925','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31785','43630','22926','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31786','43630','22927','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31787','43630','22928','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31788','43631','22929','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31789','43631','22930','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31790','43631','22931','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31791','43635','22932','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31792','43635','22933','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31793','43635','22934','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31794','43635','22935','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31795','43636','22936','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31796','43636','22937','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31797','43636','22938','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31798','43639','22939','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31799','43639','22940','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31800','43639','22941','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31801','43639','22942','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31802','43640','22943','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31803','43640','22944','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31804','43640','22945','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31805','43642','22946','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31806','43642','22947','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31807','43642','22948','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31808','43643','22949','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31809','43652','22950','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31810','43659','22951','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31811','43651','22952','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31812','43648','22953','min','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31813','43645','22954','min','$,#3');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31814','43660','22955','max','$,{$SNMP.TIMEOUT}');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31815','43665','22956','change','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31816','43665','22956','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31817','43687','22956','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31818','43664','22956','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31819','43665','22956','last','$,#2');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31820','43678','22957','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31821','43665','22957','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31822','43667','22958','avg','$,15m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31823','43665','22958','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31824','43683','22959','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31825','43683','22959','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31826','43672','22960','min','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31827','43672','22960','max','$,5m');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31828','43664','22961','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31829','43688','16287','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31830','29844','16287','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31831','43689','21547','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31832','40480','21547','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31833','43690','21559','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31834','40511','21559','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31835','43691','21573','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31836','40542','21573','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31837','43692','21584','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31838','40564','21584','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31839','43693','21592','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31840','40577','21592','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31841','43694','18304','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31842','33956','18304','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31843','43695','18331','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31844','33997','18331','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31845','43696','18358','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31846','34038','18358','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31847','43697','18385','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31848','34079','18385','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31849','43698','18412','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31850','34120','18412','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31851','43699','21610','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31852','40613','21610','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31853','43700','21618','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31854','40627','21618','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31855','43701','21626','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31856','40641','21626','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31857','43702','21670','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31858','40717','21670','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31859','43703','21681','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31860','40740','21681','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31861','43704','21691','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31862','40761','21691','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31863','43705','21702','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31864','40776','21702','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31865','43706','21713','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31866','40807','21713','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31867','43707','21724','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31868','40830','21724','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31869','43708','21735','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31870','40853','21735','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31871','43709','21746','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31872','40876','21746','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31873','43710','21757','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31874','40899','21757','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31875','43711','21767','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31876','40920','21767','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31877','43712','18438','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31878','34159','18438','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31879','43713','21778','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31880','40936','21778','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31881','36877','19695','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31882','36878','19695','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31883','36879','19695','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31884','36877','19695','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31885','36877','19696','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31886','36878','19696','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31887','36879','19696','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31888','36877','19696','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31889','43714','21788','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31890','40957','21788','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31891','36931','19723','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31892','36932','19723','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31893','36933','19723','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31894','36931','19723','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31895','36931','19724','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31896','36932','19724','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31897','36933','19724','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31898','36931','19724','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31899','43715','21798','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31900','40978','21798','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31901','36985','19751','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31902','36986','19751','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31903','36987','19751','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31904','36985','19751','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31905','36985','19752','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31906','36986','19752','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31907','36987','19752','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31908','36985','19752','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31909','43716','21808','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31910','40999','21808','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31911','37039','19779','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31912','37040','19779','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31913','37041','19779','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31914','37039','19779','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31915','37039','19780','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31916','37040','19780','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31917','37041','19780','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31918','37039','19780','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31919','43717','21818','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31920','41020','21818','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31921','37093','19807','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31922','37094','19807','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31923','37095','19807','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31924','37093','19807','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31925','37093','19808','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31926','37094','19808','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31927','37095','19808','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31928','37093','19808','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31929','43718','21828','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31930','41041','21828','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31931','37147','19835','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31932','37148','19835','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31933','37149','19835','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31934','37147','19835','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31935','37147','19836','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31936','37148','19836','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31937','37149','19836','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31938','37147','19836','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31939','43719','21838','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31940','41062','21838','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31941','37201','19863','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31942','37202','19863','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31943','37203','19863','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31944','37201','19863','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31945','37201','19864','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31946','37202','19864','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31947','37203','19864','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31948','37201','19864','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31949','43720','21848','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31950','41083','21848','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31951','37255','19891','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31952','37256','19891','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31953','37257','19891','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31954','37255','19891','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31955','37255','19892','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31956','37256','19892','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31957','37257','19892','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31958','37255','19892','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31959','43721','21858','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31960','41104','21858','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31961','37309','19919','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31962','37310','19919','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31963','37311','19919','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31964','37309','19919','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31965','37309','19920','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31966','37310','19920','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31967','37311','19920','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31968','37309','19920','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31969','43722','21868','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31970','41125','21868','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31971','37363','19947','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31972','37364','19947','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31973','37365','19947','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31974','37363','19947','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31975','37363','19948','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31976','37364','19948','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31977','37365','19948','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31978','37363','19948','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31979','43723','21878','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31980','41146','21878','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31981','37417','19975','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31982','37418','19975','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31983','37419','19975','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31984','37417','19975','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31985','37417','19976','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31986','37418','19976','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31987','37419','19976','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31988','37417','19976','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31989','43724','21888','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31990','41167','21888','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31991','37471','20003','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31992','37472','20003','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31993','37473','20003','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31994','37471','20003','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31995','37471','20004','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31996','37472','20004','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31997','37473','20004','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31998','37471','20004','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('31999','43725','21898','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32000','41188','21898','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32001','37525','20031','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32002','37526','20031','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32003','37527','20031','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32004','37525','20031','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32005','37525','20032','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32006','37526','20032','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32007','37527','20032','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32008','37525','20032','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32009','43726','21908','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32010','41209','21908','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32011','37579','20059','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32012','37580','20059','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32013','37581','20059','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32014','37579','20059','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32015','37579','20060','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32016','37580','20060','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32017','37581','20060','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32018','37579','20060','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32019','43727','21918','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32020','41230','21918','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32021','37633','20087','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32022','37634','20087','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32023','37635','20087','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32024','37633','20087','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32025','37633','20088','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32026','37634','20088','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32027','37635','20088','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32028','37633','20088','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32029','43728','21928','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32030','41251','21928','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32031','37687','20115','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32032','37688','20115','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32033','37689','20115','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32034','37687','20115','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32035','37687','20116','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32036','37688','20116','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32037','37689','20116','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32038','37687','20116','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32039','43729','21938','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32040','41272','21938','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32041','37741','20143','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32042','37742','20143','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32043','37743','20143','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32044','37741','20143','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32045','37741','20144','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32046','37742','20144','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32047','37743','20144','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32048','37741','20144','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32049','43730','21948','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32050','41293','21948','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32051','37795','20171','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32052','37796','20171','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32053','37797','20171','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32054','37795','20171','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32055','37795','20172','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32056','37796','20172','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32057','37797','20172','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32058','37795','20172','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32059','43731','21958','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32060','41314','21958','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32061','37849','20199','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32062','37850','20199','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32063','37851','20199','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32064','37849','20199','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32065','37849','20200','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32066','37850','20200','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32067','37851','20200','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32068','37849','20200','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32069','43732','21968','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32070','41335','21968','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32071','37903','20227','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32072','37904','20227','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32073','37905','20227','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32074','37903','20227','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32075','37903','20228','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32076','37904','20228','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32077','37905','20228','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32078','37903','20228','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32079','43733','21978','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32080','41356','21978','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32081','37957','20255','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32082','37958','20255','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32083','37959','20255','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32084','37957','20255','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32085','37957','20256','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32086','37958','20256','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32087','37959','20256','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32088','37957','20256','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32089','43734','21988','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32090','41377','21988','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32091','38011','20283','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32092','38012','20283','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32093','38013','20283','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32094','38011','20283','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32095','38011','20284','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32096','38012','20284','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32097','38013','20284','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32098','38011','20284','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32099','43735','21998','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32100','41398','21998','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32101','38065','20311','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32102','38066','20311','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32103','38067','20311','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32104','38065','20311','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32105','38065','20312','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32106','38066','20312','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32107','38067','20312','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32108','38065','20312','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32109','43736','22008','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32110','41419','22008','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32111','38119','20339','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32112','38120','20339','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32113','38121','20339','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32114','38119','20339','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32115','38119','20340','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32116','38120','20340','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32117','38121','20340','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32118','38119','20340','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32119','43737','22018','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32120','41440','22018','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32121','38173','20367','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32122','38174','20367','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32123','38175','20367','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32124','38173','20367','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32125','38173','20368','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32126','38174','20368','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32127','38175','20368','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32128','38173','20368','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32129','43738','22028','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32130','41461','22028','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32131','38227','20395','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32132','38228','20395','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32133','38229','20395','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32134','38227','20395','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32135','38227','20396','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32136','38228','20396','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32137','38229','20396','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32138','38227','20396','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32139','43739','22038','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32140','41482','22038','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32141','38281','20423','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32142','38282','20423','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32143','38283','20423','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32144','38281','20423','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32145','38281','20424','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32146','38282','20424','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32147','38283','20424','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32148','38281','20424','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32149','43740','22048','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32150','41503','22048','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32151','38335','20451','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32152','38336','20451','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32153','38337','20451','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32154','38335','20451','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32155','38335','20452','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32156','38336','20452','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32157','38337','20452','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32158','38335','20452','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32159','43741','22058','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32160','41524','22058','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32161','38389','20479','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32162','38390','20479','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32163','38391','20479','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32164','38389','20479','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32165','38389','20480','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32166','38390','20480','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32167','38391','20480','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32168','38389','20480','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32169','43742','22068','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32170','41545','22068','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32171','38443','20507','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32172','38444','20507','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32173','38445','20507','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32174','38443','20507','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32175','38443','20508','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32176','38444','20508','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32177','38445','20508','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32178','38443','20508','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32179','43743','22078','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32180','41566','22078','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32181','38497','20535','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32182','38498','20535','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32183','38499','20535','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32184','38497','20535','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32185','38497','20536','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32186','38498','20536','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32187','38499','20536','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32188','38497','20536','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32189','43744','22088','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32190','41587','22088','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32191','38551','20563','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32192','38552','20563','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32193','38553','20563','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32194','38551','20563','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32195','38551','20564','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32196','38552','20564','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32197','38553','20564','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32198','38551','20564','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32199','43745','22098','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32200','41608','22098','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32201','38605','20591','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32202','38606','20591','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32203','38607','20591','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32204','38605','20591','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32205','38605','20592','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32206','38606','20592','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32207','38607','20592','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32208','38605','20592','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32209','43746','22108','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32210','41629','22108','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32211','38659','20619','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32212','38660','20619','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32213','38661','20619','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32214','38659','20619','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32215','38659','20620','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32216','38660','20620','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32217','38661','20620','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32218','38659','20620','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32219','43747','22118','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32220','41650','22118','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32221','38713','20647','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32222','38714','20647','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32223','38715','20647','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32224','38713','20647','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32225','38713','20648','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32226','38714','20648','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32227','38715','20648','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32228','38713','20648','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32229','43748','22128','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32230','41671','22128','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32231','38767','20675','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32232','38768','20675','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32233','38769','20675','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32234','38767','20675','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32235','38767','20676','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32236','38768','20676','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32237','38769','20676','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32238','38767','20676','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32239','43749','22138','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32240','41692','22138','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32241','38821','20703','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32242','38822','20703','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32243','38823','20703','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32244','38821','20703','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32245','38821','20704','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32246','38822','20704','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32247','38823','20704','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32248','38821','20704','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32249','43750','22148','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32250','41713','22148','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32251','38875','20731','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32252','38876','20731','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32253','38877','20731','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32254','38875','20731','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32255','38875','20732','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32256','38876','20732','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32257','38877','20732','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32258','38875','20732','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32259','43751','22158','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32260','41734','22158','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32261','38929','20759','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32262','38930','20759','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32263','38931','20759','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32264','38929','20759','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32265','38929','20760','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32266','38930','20760','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32267','38931','20760','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32268','38929','20760','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32269','43752','22168','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32270','41755','22168','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32271','38983','20787','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32272','38984','20787','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32273','38985','20787','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32274','38983','20787','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32275','38983','20788','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32276','38984','20788','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32277','38985','20788','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32278','38983','20788','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32279','43753','22178','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32280','41776','22178','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32281','39037','20815','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32282','39038','20815','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32283','39039','20815','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32284','39037','20815','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32285','39037','20816','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32286','39038','20816','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32287','39039','20816','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32288','39037','20816','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32289','43754','22188','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32290','41797','22188','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32291','39091','20843','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32292','39092','20843','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32293','39093','20843','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32294','39091','20843','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32295','39091','20844','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32296','39092','20844','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32297','39093','20844','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32298','39091','20844','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32299','43755','22198','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32300','41818','22198','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32301','39145','20871','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32302','39146','20871','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32303','39147','20871','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32304','39145','20871','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32305','39145','20872','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32306','39146','20872','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32307','39147','20872','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32308','39145','20872','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32309','43756','22208','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32310','41839','22208','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32311','39199','20899','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32312','39200','20899','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32313','39201','20899','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32314','39199','20899','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32315','39199','20900','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32316','39200','20900','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32317','39201','20900','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32318','39199','20900','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32319','43757','22218','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32320','41860','22218','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32321','39253','20927','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32322','39254','20927','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32323','39255','20927','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32324','39253','20927','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32325','39253','20928','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32326','39254','20928','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32327','39255','20928','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32328','39253','20928','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32329','43758','22228','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32330','41881','22228','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32331','39307','20955','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32332','39308','20955','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32333','39309','20955','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32334','39307','20955','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32335','39307','20956','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32336','39308','20956','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32337','39309','20956','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32338','39307','20956','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32339','43759','22238','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32340','41902','22238','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32341','39361','20983','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32342','39362','20983','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32343','39363','20983','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32344','39361','20983','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32345','39361','20984','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32346','39362','20984','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32347','39363','20984','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32348','39361','20984','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32349','43760','22248','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32350','41923','22248','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32351','39415','21011','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32352','39416','21011','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32353','39417','21011','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32354','39415','21011','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32355','39415','21012','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32356','39416','21012','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32357','39417','21012','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32358','39415','21012','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32359','43761','22258','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32360','41944','22258','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32361','39469','21039','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32362','39470','21039','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32363','39471','21039','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32364','39469','21039','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32365','39469','21040','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32366','39470','21040','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32367','39471','21040','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32368','39469','21040','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32369','43762','22268','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32370','41965','22268','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32371','39523','21067','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32372','39524','21067','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32373','39525','21067','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32374','39523','21067','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32375','39523','21068','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32376','39524','21068','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32377','39525','21068','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32378','39523','21068','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32379','43763','22278','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32380','41986','22278','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32381','39577','21095','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32382','39578','21095','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32383','39579','21095','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32384','39577','21095','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32385','39577','21096','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32386','39578','21096','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32387','39579','21096','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32388','39577','21096','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32389','43764','22288','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32390','42007','22288','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32391','39631','21123','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32392','39632','21123','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32393','39633','21123','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32394','39631','21123','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32395','39631','21124','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32396','39632','21124','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32397','39633','21124','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32398','39631','21124','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32399','43765','22298','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32400','42028','22298','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32401','39685','21151','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32402','39686','21151','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32403','39687','21151','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32404','39685','21151','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32405','39685','21152','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32406','39686','21152','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32407','39687','21152','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32408','39685','21152','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32409','43766','22308','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32410','42049','22308','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32411','39739','21179','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32412','39740','21179','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32413','39741','21179','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32414','39739','21179','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32415','39739','21180','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32416','39740','21180','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32417','39741','21180','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32418','39739','21180','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32419','43767','22318','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32420','42070','22318','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32421','27906','16546','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32422','27907','16546','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32423','27908','16546','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32424','27906','16546','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32425','27906','16547','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32426','27907','16547','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32427','27908','16547','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32428','27906','16547','timeleft','$,1h,100');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32429','43768','17624','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32430','33189','17624','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32431','43769','17682','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32432','33212','17682','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32433','43770','17726','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32434','33232','17726','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32435','43771','17750','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32436','33255','17750','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32437','43772','17815','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32438','33263','17815','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32439','43773','17856','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32440','33282','17856','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32441','43774','17895','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32442','33303','17895','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32443','43775','22328','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32444','42091','22328','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32445','43776','22338','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32446','42111','22338','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32447','43777','22349','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32448','42142','22349','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32449','43778','22359','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32450','42156','22359','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32451','43779','19034','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32452','35541','19034','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32453','43780','19048','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32454','35573','19048','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32455','43781','19061','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32456','35617','19061','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32457','43782','19068','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32458','35648','19068','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32459','43783','19090','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32460','35715','19090','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32461','43784','19115','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32462','35785','19115','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32463','43785','19130','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32464','35819','19130','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32465','43786','19140','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32466','35857','19140','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32467','43787','19153','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32468','35901','19153','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32469','43788','19166','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32470','35945','19166','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32471','43789','19179','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32472','35989','19179','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32473','43790','19193','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32474','36034','19193','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32475','43791','19207','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32476','36079','19207','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32477','43792','19220','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32478','36123','19220','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32479','43793','22438','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32480','42392','22438','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32481','43794','22506','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32482','42578','22506','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32483','43795','18596','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32484','34453','18596','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32485','43796','18629','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32486','34501','18629','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32487','43797','18662','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32488','34549','18662','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32489','43798','18695','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32490','34597','18695','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32491','43799','18728','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32492','34645','18728','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32493','43800','18947','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32494','35018','18947','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32495','43801','18794','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32496','34741','18794','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32497','43802','18495','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32498','34181','18495','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32499','43803','18831','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32500','34795','18831','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32501','43804','18864','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32502','34843','18864','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32503','43805','18897','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32504','34891','18897','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32505','43806','22519','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32506','42607','22519','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32507','43807','22525','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32508','42618','22525','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32509','43808','19230','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32510','36165','19230','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32511','43809','22531','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32512','42629','22531','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32513','43810','19290','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32514','36265','19290','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32515','43811','19341','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32516','36347','19341','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32517','43812','19392','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32518','36429','19392','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32519','43813','19443','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32520','36511','19443','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32521','43814','22537','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32522','42640','22537','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32523','43815','19468','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32524','36550','19468','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32525','43816','19514','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32526','36607','19514','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32527','43817','19560','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32528','36664','19560','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32529','43818','19606','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32530','36721','19606','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32531','43819','22543','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32532','42651','22543','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32533','43820','22549','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32534','42662','22549','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32535','43821','22555','last','$');
INSERT INTO `functions` (`functionid`,`itemid`,`triggerid`,`name`,`parameter`) values ('32536','42673','22555','last','$');
INSERT INTO `graphs` (`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`,`uuid`) values ('392','Zabbix server: Zabbix server performance','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3d256a358da74f469700eea05173343a');
INSERT INTO `graphs` (`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`,`uuid`) values ('404','Zabbix server: Zabbix data gathering process busy %','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','99fbcd47f72148f486f3b5e7d49596b8');
INSERT INTO `graphs` (`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`,`uuid`) values ('406','Zabbix server: Zabbix internal process busy %','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','630f638ad0054d3380f941e72805ea1d');
INSERT INTO `graphs` (`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`,`uuid`) values ('410','Zabbix server: Zabbix cache usage, % free','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','0432df37a8f34cf7978531642037c1a1');
INSERT INTO `graphs` (`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`,`uuid`) values ('456','CPU utilization','900','200','0','100',NULL,'1','0','1','1','0','0','0','1','1',NULL,NULL,'0','0','512ed29b170642d285b14a7e9b2d43de');
INSERT INTO `graphs` (`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`,`uuid`) values ('457','CPU load','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','765b83f3f7a246aa893eff4f19600326');
INSERT INTO `graphs` (`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`,`uuid`) values ('458','Swap usage','600','340','0','100',NULL,'0','0','2','1','1','0','0','0','0',NULL,NULL,'0','0','8a422a49defb413ca16b1e8515b59e00');
INSERT INTO `graphs` (`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`,`uuid`) values ('459','CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','947de3b0729948b0ae2f03342a7e3f9f');
INSERT INTO `graphs` (`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`,`uuid`) values ('461','Filesystems: Disk space usage {#FSNAME}','600','340','0','100',NULL,'0','0','2','1','1','0','0','0','0',NULL,NULL,'2','0','ef0e881cfc3f4552a163a653cd52869c');
INSERT INTO `graphs` (`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`,`uuid`) values ('462','CPU utilization','900','200','0','100',NULL,'1','0','1','1','0','0','0','1','1',NULL,NULL,'0','0','ecdccd78d75d4255948995b510acfefb');
INSERT INTO `graphs` (`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`,`uuid`) values ('463','CPU load','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','ac8b187522904c0880ea16a2b8727dfc');
INSERT INTO `graphs` (`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`,`uuid`) values ('464','Swap usage','600','340','0','100',NULL,'0','0','2','1','1','0','0','0','0',NULL,NULL,'0','0','23ade54acd87415080578379ab2cca6b');
INSERT INTO `graphs` (`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`,`uuid`) values ('465','CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3ed928729f2d41139a42ca3ee0204551');
INSERT INTO `graphs` (`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`,`uuid`) values ('467','Filesystems: Disk space usage {#FSNAME}','600','340','0','100',NULL,'0','0','2','1','1','0','0','0','0',NULL,NULL,'2','0','5f8ff96d3ea744bba849c9dc1464632f');
INSERT INTO `graphs` (`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`,`uuid`) values ('469','CPU load','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','260417d4613d405986406c272f54a5aa');
INSERT INTO `graphs` (`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`,`uuid`) values ('471','CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a3a5bc3b07f34793bb1c8cfc688ba8a9');
INSERT INTO `graphs` (`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`,`uuid`) values ('472','Interface {#IFNAME}: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','366a988491344fd487561d02ed499fe0');
INSERT INTO `graphs` (`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`,`uuid`) values ('473','{#FSNAME}: Disk space usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','460b553fcd924b6abbde0b00a5525445');
INSERT INTO `graphs` (`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`,`uuid`) values ('474','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8c47ac69fba642f4827fcad01b3a0379');
INSERT INTO `graphs` (`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`,`uuid`) values ('475','CPU load','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','808ceffbcb844def962b03d6fa7a3496');
INSERT INTO `graphs` (`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`,`uuid`) values ('478','Interface {#IFNAME}: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','dec3568ab5e7457da4a81d32a8ba2b72');
INSERT INTO `graphs` (`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`,`uuid`) values ('479','{#FSNAME}: Disk space usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','92f6b017c10640b6bfe7cd68a949d2d5');
INSERT INTO `graphs` (`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`,`uuid`) values ('480','CPU utilization','900','200','0','100',NULL,'1','0','1','1','0','0','0','1','1',NULL,NULL,'0','0','2b7e4221d79e4db8bf0463e0bb347eb0');
INSERT INTO `graphs` (`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`,`uuid`) values ('481','CPU load','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','f66887f0152c484d80b8fe77d5fd2cdd');
INSERT INTO `graphs` (`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`,`uuid`) values ('482','Swap usage','600','340','0','100',NULL,'0','0','2','1','1','0','0','0','0',NULL,NULL,'0','0','061e20f2db6e4a43b35780702b3ebbfa');
INSERT INTO `graphs` (`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`,`uuid`) values ('483','CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','9a3df2f49bf24b4597c6e488e1016f78');
INSERT INTO `graphs` (`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`,`uuid`) values ('484','Interface {#IFNAME}: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','61d0d627f36e4b1b97fec7857ac99ac1');
INSERT INTO `graphs` (`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`,`uuid`) values ('485','{#FSNAME}: Disk space usage','600','340','0','100',NULL,'0','0','2','1','1','0','0','0','0',NULL,NULL,'2','0','ba1e86d39b2d4f61892228add27101f2');
INSERT INTO `graphs` (`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`,`uuid`) values ('487','CPU load','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','f0e648fb4c5345748b11a7bdb05f6526');
INSERT INTO `graphs` (`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`,`uuid`) values ('491','{#FSNAME}: Disk space usage','600','340','0','100',NULL,'0','0','2','1','1','0','0','0','0',NULL,NULL,'2','0','6ce28b13df4e4494a4d39750afb25290');
INSERT INTO `graphs` (`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`,`uuid`) values ('492','Network interfaces: Network traffic on {#IFNAME}','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','1f52d0c9ee934eb3a5198ab53fdf4679');
INSERT INTO `graphs` (`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`,`uuid`) values ('493','Network interfaces: Network traffic on {#IFNAME}','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','c79845ab3101451c8f0fe033b5b2166e');
INSERT INTO `graphs` (`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`,`uuid`) values ('494','Network traffic on en0','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','5c4b08f992c541dbb02835bbd4f0a55e');
INSERT INTO `graphs` (`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`,`uuid`) values ('498','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a2eeb8269edf4de7ac13b7ceb1260b75');
INSERT INTO `graphs` (`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`,`uuid`) values ('527','Zabbix server: Value cache effectiveness','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','d2841f4fbb33411d9ab1b1b48e7e959f');
INSERT INTO `graphs` (`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`,`uuid`) values ('529','Zabbix proxy: Zabbix cache usage, % used','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','40b649050cb8420888abcae129eafe27');
INSERT INTO `graphs` (`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`,`uuid`) values ('530','Zabbix proxy: Zabbix data gathering process busy %','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','7635642bf94249e39d420a6eba1f6649');
INSERT INTO `graphs` (`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`,`uuid`) values ('531','Zabbix proxy: Zabbix internal process busy %','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','60a3dcc84e494c17b656395d78d9b9e9');
INSERT INTO `graphs` (`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`,`uuid`) values ('532','Zabbix proxy: Zabbix proxy performance','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d03bdc914520474084d6809312cdf097');
INSERT INTO `graphs` (`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`,`uuid`) values ('540','Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2664343cd69444e0a16850083845838f');
INSERT INTO `graphs` (`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`,`uuid`) values ('541','Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','191f6c7b63204fd091d2e82c4f4b678a');
INSERT INTO `graphs` (`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`,`uuid`) values ('542','Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4cf12f1ea3934cb99f76c20916067a71');
INSERT INTO `graphs` (`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`,`uuid`) values ('543','Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','2',NULL,'23063','0','0','5c942cb1fe5b440aa9428d45ee85e09c');
INSERT INTO `graphs` (`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`,`uuid`) values ('544','Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','18bbcc8bba0840fc8353b90caa3e657f');
INSERT INTO `graphs` (`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`,`uuid`) values ('545','Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','2',NULL,'23023','0','0','150f0e2062a844a9a8bfcaca92ffbf39');
INSERT INTO `graphs` (`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`,`uuid`) values ('651','Fan speed and ambient temperature','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e1fff55999a6420f987659ca0dc8c102');
INSERT INTO `graphs` (`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`,`uuid`) values ('652','Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','bec82c29b93c4841a89d0978a899c70b');
INSERT INTO `graphs` (`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`,`uuid`) values ('653','Fan speed and temperature','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','aab06155f8aa4bc991603a3c8c335d6e');
INSERT INTO `graphs` (`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`,`uuid`) values ('654','Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d4e77359d3fe4a75b0bbf9d7919834da');
INSERT INTO `graphs` (`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`,`uuid`) values ('668','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','7300eff1609b497aa7628ed83b36a481');
INSERT INTO `graphs` (`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`,`uuid`) values ('671','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','8d1edf299fde462bbca5ceaf1b439223');
INSERT INTO `graphs` (`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`,`uuid`) values ('675','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','ed536efa5baa4d5ca8ee1af4fc813e72');
INSERT INTO `graphs` (`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`,`uuid`) values ('687','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','6fed03a2555949178f96550fcdb449ca');
INSERT INTO `graphs` (`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`,`uuid`) values ('691','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','c998de5517bd45f19719dbe7d6cb371e');
INSERT INTO `graphs` (`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`,`uuid`) values ('694','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','d5ec0b9ce1f04b0abd0b4bfe6aa28f6b');
INSERT INTO `graphs` (`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`,`uuid`) values ('698','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','7d05108847574098a7a15db5faf12b7c');
INSERT INTO `graphs` (`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`,`uuid`) values ('701','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','cd6d0f71490c4bbe82a72ca52d9d3044');
INSERT INTO `graphs` (`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`,`uuid`) values ('704','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','9dc8bc10d4044889bd53c56f1da45c60');
INSERT INTO `graphs` (`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`,`uuid`) values ('708','{#MODULE_NAME}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','2f7801aa39bd486bb9d2ff751c98559b');
INSERT INTO `graphs` (`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`,`uuid`) values ('714','{#ENT_NAME}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','29cf1159b56b4cf086a980609efaf046');
INSERT INTO `graphs` (`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`,`uuid`) values ('724','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','1e6e64b461dc4010a582d2f39fcfa4f8');
INSERT INTO `graphs` (`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`,`uuid`) values ('727','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','bcd1db5068794edd9a3d74f32bd018ed');
INSERT INTO `graphs` (`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`,`uuid`) values ('730','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','037fef94d6d64392b0ed9143f8623586');
INSERT INTO `graphs` (`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`,`uuid`) values ('733','#{#SNMPVALUE}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','6ec1580dfdcb46ec933cf2e4ef3122da');
INSERT INTO `graphs` (`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`,`uuid`) values ('736','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','acb2b7447a6449a591db186a4db81643');
INSERT INTO `graphs` (`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`,`uuid`) values ('741','Interface {#IFDESCR}: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','80ae528968304d06a676f69c4e321c07');
INSERT INTO `graphs` (`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`,`uuid`) values ('745','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','748719ae10ea43da9efec7225dac54cb');
INSERT INTO `graphs` (`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`,`uuid`) values ('766','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a6a274c68cb94f9fac0920858806054b');
INSERT INTO `graphs` (`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`,`uuid`) values ('775','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','d282b8d685c547a58645c1cc63b00571');
INSERT INTO `graphs` (`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`,`uuid`) values ('786','{#SNMPVALUE}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','8e045ff24e564afc9a55d4bd08529d22');
INSERT INTO `graphs` (`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`,`uuid`) values ('788','Zabbix server: Zabbix internal queues','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b053dc416ee3422b94e46fb415ea87e6');
INSERT INTO `graphs` (`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`,`uuid`) values ('797','Remote Zabbix server: Value cache effectiveness','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','0b1efe2dd8044ed19822bc15f34a6e67');
INSERT INTO `graphs` (`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`,`uuid`) values ('798','Remote Zabbix server: Zabbix cache usage, % free','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','3b9bfc5fdc904721b154a011b15adde1');
INSERT INTO `graphs` (`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`,`uuid`) values ('799','Remote Zabbix server: Zabbix data gathering process busy %','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','a0cd0a1f4dc14209ae3e140fc2dad135');
INSERT INTO `graphs` (`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`,`uuid`) values ('800','Remote Zabbix server: Zabbix internal process busy %','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','dcf8ef4ebaf54a599aca040a0f6cd722');
INSERT INTO `graphs` (`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`,`uuid`) values ('801','Remote Zabbix server: Zabbix internal queues','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','63004d5061324a90b247209977de9cbd');
INSERT INTO `graphs` (`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`,`uuid`) values ('802','Remote Zabbix server: Zabbix server performance','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','954f8afba30d45b99e3404114f0fe3b0');
INSERT INTO `graphs` (`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`,`uuid`) values ('803','Remote Zabbix proxy: Zabbix cache usage, % used','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','4cc55dd64cab48cc92fbde98135d7f7f');
INSERT INTO `graphs` (`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`,`uuid`) values ('804','Remote Zabbix proxy: Zabbix data gathering process busy %','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','1daa58364c74486ba4038e56cecf1a41');
INSERT INTO `graphs` (`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`,`uuid`) values ('805','Remote Zabbix proxy: Zabbix internal process busy %','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','87379405c456407ebab6e033c3cae37a');
INSERT INTO `graphs` (`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`,`uuid`) values ('806','Remote Zabbix proxy: Zabbix proxy performance','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ee5c00806cad4a5bb65bd3bcd734c88f');
INSERT INTO `graphs` (`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`,`uuid`) values ('807','Zabbix proxy: Zabbix internal queues','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','787ad6ca2967415c8a1daa4a4400c12d');
INSERT INTO `graphs` (`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`,`uuid`) values ('835','Apache: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d317a2ccde4f4a2ab20e983b27ae64e2');
INSERT INTO `graphs` (`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`,`uuid`) values ('836','Apache: Current async connections{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','066b53ed2244414ca3090498eb035c27');
INSERT INTO `graphs` (`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`,`uuid`) values ('837','Apache: Current async processes{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','dbaa0c2468cc40fca977fb382d19cb78');
INSERT INTO `graphs` (`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`,`uuid`) values ('838','Apache: Requests per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a3998992f7504a12826e3c4d592836b5');
INSERT INTO `graphs` (`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`,`uuid`) values ('839','Apache: Workers total','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','78e59f1b5eb747019f92921ac5ef48b0');
INSERT INTO `graphs` (`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`,`uuid`) values ('840','Apache: Worker states','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1629062b5cd74b67af9a60226a79f8f1');
INSERT INTO `graphs` (`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`,`uuid`) values ('841','Nginx: Connections by state','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ba234158aeca468a8592d944f9aae691');
INSERT INTO `graphs` (`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`,`uuid`) values ('842','Nginx: Connections per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b82a5b89864a47638421458f3e74563d');
INSERT INTO `graphs` (`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`,`uuid`) values ('843','Nginx: Requests per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a2d2fec823514df09731381304c245e9');
INSERT INTO `graphs` (`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`,`uuid`) values ('844','Nginx: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','69ca908afa1d468d983a263d06910925');
INSERT INTO `graphs` (`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`,`uuid`) values ('845','Nginx: Connections by state','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','aedcbacee74f4b0c861546c56e0fa9ab');
INSERT INTO `graphs` (`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`,`uuid`) values ('846','Nginx: Connections per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6feb26e5eb3246c0adb8d151b1443859');
INSERT INTO `graphs` (`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`,`uuid`) values ('847','Nginx: Requests per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','43a87936b35d4d28a658f810c2162a72');
INSERT INTO `graphs` (`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`,`uuid`) values ('856','{#SNMPVALUE}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','7cc53c92b6be4fc59d2928e73f6fe8c3');
INSERT INTO `graphs` (`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`,`uuid`) values ('866','{#DEVNAME}: Disk read/write rates','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','15f4080e061d4b86a253709d56f444a5');
INSERT INTO `graphs` (`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`,`uuid`) values ('868','CPU usage{#SINGLETON}','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','1',NULL,NULL,'2','0','1ed285cca7774aad9335101f373eb642');
INSERT INTO `graphs` (`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`,`uuid`) values ('870','CPU utilization{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','27556abf8985458f9d300ab5981f6e96');
INSERT INTO `graphs` (`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`,`uuid`) values ('872','{#FSNAME}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','f1000d7a017f4954a32103b345ae4fdf');
INSERT INTO `graphs` (`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`,`uuid`) values ('874','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','edd17c68085b4a328c24ebd8d37fd30c');
INSERT INTO `graphs` (`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`,`uuid`) values ('876','Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','6af175b5899946c5bae1e7ab4e8f0635');
INSERT INTO `graphs` (`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`,`uuid`) values ('878','Swap usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','24bd0481e30a49a78410fef4e1470546');
INSERT INTO `graphs` (`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`,`uuid`) values ('880','System load','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','1ec155ff28e14859b26e9804e96c7fb8');
INSERT INTO `graphs` (`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`,`uuid`) values ('882','CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1b06aa0505e94191bce3bf15d41ad113');
INSERT INTO `graphs` (`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`,`uuid`) values ('887','{#FSNAME}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','3ccd5c1a0e15489c9b57030ee634b8e3');
INSERT INTO `graphs` (`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`,`uuid`) values ('899','Interface {#IFNAME}: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4b1489e1d06a4443a4f379854936cfee');
INSERT INTO `graphs` (`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`,`uuid`) values ('902','System load','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','479ffa370eef48caba68f06e63e73344');
INSERT INTO `graphs` (`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`,`uuid`) values ('905','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','4c14e3706a3c4c48b1fabf7d8d0991a8');
INSERT INTO `graphs` (`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`,`uuid`) values ('908','CPU usage','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','1',NULL,NULL,'0','0','345236549e004d4da84b47bc797d248e');
INSERT INTO `graphs` (`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`,`uuid`) values ('911','CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7036809e95be49b4959fefe8e89a5e90');
INSERT INTO `graphs` (`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`,`uuid`) values ('914','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','83c385fe3aef4aa9b862ed4718e428d3');
INSERT INTO `graphs` (`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`,`uuid`) values ('917','Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','b089fd66c95b4e8ca923820a13f8dd16');
INSERT INTO `graphs` (`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`,`uuid`) values ('920','Swap usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','71e4089be866400a9f0a520ba271c243');
INSERT INTO `graphs` (`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`,`uuid`) values ('923','Processes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','644864fece6e4c0c9484c57e24808691');
INSERT INTO `graphs` (`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`,`uuid`) values ('952','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','cf143a7bb6d548fc9d3b089dcbb47ccf');
INSERT INTO `graphs` (`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`,`uuid`) values ('953','{#FSNAME}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','aa350a426fcd40af96cd15f778cdf62d');
INSERT INTO `graphs` (`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`,`uuid`) values ('954','{#DEVNAME}: Disk read/write rates','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','bad3d3ba32534ef194a4837d666ddccb');
INSERT INTO `graphs` (`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`,`uuid`) values ('955','{#DEVNAME}: Disk average waiting time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','13a5a74a99734449b08075bbb25bb498');
INSERT INTO `graphs` (`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`,`uuid`) values ('956','{#DEVNAME}: Disk utilization and queue','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','aa53b66adaac4e62863ea2dd59ba3ea1');
INSERT INTO `graphs` (`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`,`uuid`) values ('957','System load','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','f9cbf136d01040ffa18753fb40d55f79');
INSERT INTO `graphs` (`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`,`uuid`) values ('958','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','9cd184535b6b4fd5978a302bdedeac0b');
INSERT INTO `graphs` (`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`,`uuid`) values ('959','CPU usage','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','1',NULL,NULL,'0','0','09ebf28dc8504ab2bfd07130d1f6ca91');
INSERT INTO `graphs` (`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`,`uuid`) values ('960','CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','bb8bb267b32b46bfa2a6277b65730396');
INSERT INTO `graphs` (`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`,`uuid`) values ('961','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','81e79ef1219a4c48af1f740017bbde6a');
INSERT INTO `graphs` (`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`,`uuid`) values ('962','Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','1383a8b57e6743de946c8a43016ee2f7');
INSERT INTO `graphs` (`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`,`uuid`) values ('963','Swap usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','567684533d2442b286119c7d392e2bb7');
INSERT INTO `graphs` (`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`,`uuid`) values ('964','{#FSLABEL}({#FSNAME}): Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','78d604a4bde244c38bcfbabd7ef5e09d');
INSERT INTO `graphs` (`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`,`uuid`) values ('972','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','d7543150b21e4678a29ca1072c8660df');
INSERT INTO `graphs` (`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`,`uuid`) values ('974','CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e3029427b9124e30a9aa06000219f572');
INSERT INTO `graphs` (`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`,`uuid`) values ('976','CPU usage','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','1',NULL,NULL,'0','0','0b520e68348e4c17983672c5ca4dffb1');
INSERT INTO `graphs` (`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`,`uuid`) values ('978','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','61a375b6875641bf93145be801809ece');
INSERT INTO `graphs` (`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`,`uuid`) values ('980','Swap usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8891c435d3df489ea18847abb82054ca');
INSERT INTO `graphs` (`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`,`uuid`) values ('1000','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages status','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','03c88aa9d8b94389aafcf607dff1756f');
INSERT INTO `graphs` (`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`,`uuid`) values ('1001','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a6223df79d334c29ada36ba20729b885');
INSERT INTO `graphs` (`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`,`uuid`) values ('1007','RabbitMQ: File descriptors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','132133fc0fd04002a5a50fc0d5169e6a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1008','RabbitMQ: Disk free','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','72472749150041d59a52ce5abb3dc03e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1009','RabbitMQ: Memory used','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a5949ccf83434f1fb26cfe0a3671085e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1010','RabbitMQ: Sockets','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7e5fec850547465091a38f78268a207f');
INSERT INTO `graphs` (`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`,`uuid`) values ('1011','RabbitMQ: Node status','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','358fb67c294d4486a79797818ebde851');
INSERT INTO `graphs` (`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`,`uuid`) values ('1012','RabbitMQ: Uptime','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','bf2b0b66f4d94549aae9cbe04dfe9bd2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1013','RabbitMQ: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','180a5d36d48f44fbaf6f86c5cf9e10f9');
INSERT INTO `graphs` (`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`,`uuid`) values ('1014','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages status','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','adba8787c1d14670a5ca3bf07d9dc663');
INSERT INTO `graphs` (`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`,`uuid`) values ('1015','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4e6b194fd13f4b97a66ee4d335958003');
INSERT INTO `graphs` (`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`,`uuid`) values ('1016','RabbitMQ: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2d72cf70b71a414680cc667c27141653');
INSERT INTO `graphs` (`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`,`uuid`) values ('1017','RabbitMQ: Queues','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','987d5621410d4dc6b66fb72e9aca2357');
INSERT INTO `graphs` (`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`,`uuid`) values ('1018','RabbitMQ: Messages','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6a66846adab54906800f80ac025b2003');
INSERT INTO `graphs` (`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`,`uuid`) values ('1019','RabbitMQ: Messages status','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a4a33e6004f34a8cb2709aae632f456d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1020','RabbitMQ: Messages per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fe3139da95aa4fc7a7db4aac87c52c03');
INSERT INTO `graphs` (`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`,`uuid`) values ('1021','RabbitMQ: File descriptors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','71eff9e96a8b46acbe1cf00d1e0cc388');
INSERT INTO `graphs` (`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`,`uuid`) values ('1022','RabbitMQ: Disk free','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','02f7ec07b4384795bbf5212e9ea06fb0');
INSERT INTO `graphs` (`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`,`uuid`) values ('1023','RabbitMQ: Memory used','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d4e9c478e03c4ecab7538c3baa77f61f');
INSERT INTO `graphs` (`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`,`uuid`) values ('1024','RabbitMQ: Sockets','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f3c071a0c20340f1bf86ecd66b911bb2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1025','RabbitMQ: Node status','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e6497c3e2847407ca8f912e34d9357b4');
INSERT INTO `graphs` (`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`,`uuid`) values ('1026','RabbitMQ: Uptime','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','415ce1917ecc4575bcbeeaf3b01df4cb');
INSERT INTO `graphs` (`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`,`uuid`) values ('1027','RabbitMQ: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2dbd4f9285a34786a210c6e16d87ed85');
INSERT INTO `graphs` (`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`,`uuid`) values ('1028','RabbitMQ: Queues','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3205b991eb5443e680b571b23b4a1721');
INSERT INTO `graphs` (`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`,`uuid`) values ('1029','RabbitMQ: Messages','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','dca08567e6ce4dcbb60f72a431de5ddf');
INSERT INTO `graphs` (`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`,`uuid`) values ('1030','RabbitMQ: Messages status','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','94fa39136a0d42b2997dd3b9a7581621');
INSERT INTO `graphs` (`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`,`uuid`) values ('1031','RabbitMQ: Messages per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ad303b1816a84248a347ef4773bf2c44');
INSERT INTO `graphs` (`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`,`uuid`) values ('1032','Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','e404b522555e4f9092930ce870649828');
INSERT INTO `graphs` (`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`,`uuid`) values ('1033','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','111cde007d8342f9b743f08f12380ec3');
INSERT INTO `graphs` (`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`,`uuid`) values ('1034','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','d1e06bb17c2f458699664bfa61c12496');
INSERT INTO `graphs` (`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`,`uuid`) values ('1035','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','8e5d8b8e81d2473c99df3d7ad5c147c3');
INSERT INTO `graphs` (`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`,`uuid`) values ('1038','{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','754f4378d0fb43c288e891285efee8a5');
INSERT INTO `graphs` (`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`,`uuid`) values ('1042','#{#SNMPINDEX}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','69c63b7fb65347cc9301b02e1f9cd45e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1043','{#SNMPINDEX}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','b1d8dafbce0c4b6abc0ad18f2a91d1e3');
INSERT INTO `graphs` (`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`,`uuid`) values ('1044','#{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','769bb6f6d6cd455fbbcd1e75e44d24ec');
INSERT INTO `graphs` (`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`,`uuid`) values ('1045','#{#SNMPVALUE}: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','672315e9b8dc4858be7a991bed4f06fc');
INSERT INTO `graphs` (`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`,`uuid`) values ('1046','#{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','886d032483584e379210c9f05f65b98e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1047','{#MODULE_NAME}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','ff71369f73174bc0baf98f6da6f82d97');
INSERT INTO `graphs` (`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`,`uuid`) values ('1048','#{#SNMPVALUE}: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','aebb1527b1264e319bce23354c4ff200');
INSERT INTO `graphs` (`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`,`uuid`) values ('1049','#{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','87cafd79e372498a87bd6fa283482256');
INSERT INTO `graphs` (`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`,`uuid`) values ('1050','{#ENT_NAME}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','ff65fc169cd343bbb866033bccd51abf');
INSERT INTO `graphs` (`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`,`uuid`) values ('1051','{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','646779d729d8417383eb0e1240a69767');
INSERT INTO `graphs` (`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`,`uuid`) values ('1052','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','82acee070ff1461ba0cdff337184da97');
INSERT INTO `graphs` (`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`,`uuid`) values ('1053','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','42efab7c7fae46729b2ad410b0be57cc');
INSERT INTO `graphs` (`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`,`uuid`) values ('1054','Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','1cb7d7036dfe4999b0489cc8bfa254aa');
INSERT INTO `graphs` (`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`,`uuid`) values ('1055','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','88124449b8984ee6bca46269d1d3f1ae');
INSERT INTO `graphs` (`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`,`uuid`) values ('1056','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','2d662728c6ca4ff1a690a3eb2ab2e51b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1057','#{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','7c0b7c99942e41348c2dc3350f2323cc');
INSERT INTO `graphs` (`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`,`uuid`) values ('1058','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','cbce9bb057b14b8eb81f8cbb463442d6');
INSERT INTO `graphs` (`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`,`uuid`) values ('1060','{#MEMNAME}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','47a47f92e42047fe937e01ad163ca665');
INSERT INTO `graphs` (`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`,`uuid`) values ('1065','{#FSNAME}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','c5af27b4061c4e9795489f7bc25c42dd');
INSERT INTO `graphs` (`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`,`uuid`) values ('1070','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','fe501ac6688d4165a645ef804644cf93');
INSERT INTO `graphs` (`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`,`uuid`) values ('1075','HAProxy: Backend {#PXNAME} Redispatched requests and retried connections per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a8518997e8ce40339f5d2384a011f3ba');
INSERT INTO `graphs` (`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`,`uuid`) values ('1076','HAProxy: Frontend {#PXNAME} Errors and denials per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','30141ef1c5bf4c4a9cca0f8ce2ea3373');
INSERT INTO `graphs` (`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`,`uuid`) values ('1077','HAProxy: Frontend {#PXNAME} In/Out traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f6a6bb900b4e45c9af863e6e0aa9af8a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1078','HAProxy: Frontend {#PXNAME} Requests and sessions per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','065d1ef09a404cf1bcc67f0e987482ab');
INSERT INTO `graphs` (`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`,`uuid`) values ('1079','HAProxy: Frontend {#PXNAME} Responses by HTTP code','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'2','0','3ce6177d02a045219cec0d348b970860');
INSERT INTO `graphs` (`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`,`uuid`) values ('1080','HAProxy: {#PXNAME} {#SVNAME} Response time and time in queue','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e3e10b66deb14b33a436481cc34eeb84');
INSERT INTO `graphs` (`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`,`uuid`) values ('1081','HAProxy: Backend {#PXNAME} Redispatched requests and retried connections per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2160a789b142498cb2d3e401ee992edb');
INSERT INTO `graphs` (`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`,`uuid`) values ('1082','HAProxy: Frontend {#PXNAME} Errors and denials per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','29c858f57e5447758c9bb39008ba7aa9');
INSERT INTO `graphs` (`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`,`uuid`) values ('1083','HAProxy: Frontend {#PXNAME} In/Out traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b7db5c68269b46d4b009f5a6c769e13e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1084','HAProxy: Frontend {#PXNAME} Requests and sessions per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1550af17c1fe4509922b87dd7d60e8b7');
INSERT INTO `graphs` (`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`,`uuid`) values ('1085','HAProxy: Frontend {#PXNAME} Responses by HTTP code','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'2','0','82817ba44621444c90f7b4dc8abb3107');
INSERT INTO `graphs` (`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`,`uuid`) values ('1086','HAProxy: {#PXNAME} {#SVNAME} Response time and time in queue','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5e1c8f6bf6c04ef6a60ce221c44c6ab6');
INSERT INTO `graphs` (`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`,`uuid`) values ('1087','Redis: Memory usage{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e26f8c31c3654febbeda2ffb97438c36');
INSERT INTO `graphs` (`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`,`uuid`) values ('1088','DB {#DB}: Keys','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3271f3a143dc43f38a674b6cbae8cd0d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1089','Redis slave {#SLAVE_IP}:{#SLAVE_PORT}: Replication lag bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0bce553a5a1240e2b097754dba8f6939');
INSERT INTO `graphs` (`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`,`uuid`) values ('1090','Redis: Replication lag time{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','bbc5fb3021be4c3381e48fe623b611f0');
INSERT INTO `graphs` (`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`,`uuid`) values ('1091','Redis: Clients','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c04e813d482a4709b13aa2a98911e11d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1092','Redis: Commands','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8643a1b690dc456b8daacc4b2b0810d4');
INSERT INTO `graphs` (`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`,`uuid`) values ('1093','Redis: CPU','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','765c0125e8d549dc88279f65f38b6ed9');
INSERT INTO `graphs` (`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`,`uuid`) values ('1094','Redis: Expired keys','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fd25ac6239064cd29dc1939cd15005de');
INSERT INTO `graphs` (`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`,`uuid`) values ('1095','Redis: Keyspace','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','24cff7af388e41a8899e2916f12224d1');
INSERT INTO `graphs` (`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`,`uuid`) values ('1096','Redis: Memory','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a3ea32878f25481998e0fde7ba00a11b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1097','Redis: Memory fragmentation','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ff8d6320a8e246a39d35ccb93220eb3a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1098','Redis: Network','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b3db4cc8247647faae0d3c2389f37d80');
INSERT INTO `graphs` (`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`,`uuid`) values ('1099','Redis: Persistence','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','81fde2046d2340119b2002da2b75df16');
INSERT INTO `graphs` (`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`,`uuid`) values ('1100','Redis: Slaves','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1ace370516b74875977788d44ab478e5');
INSERT INTO `graphs` (`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`,`uuid`) values ('1101','Redis: Slowlog','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8dd9935cb7a24004b9783c3f1a445f1b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1102','Redis: Uptime','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','32d954e849e64fe99bd8846b54aadede');
INSERT INTO `graphs` (`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`,`uuid`) values ('1109','MySQL: Bandwidth','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6ebb6f300b4a4ada80908ce11cae9e95');
INSERT INTO `graphs` (`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`,`uuid`) values ('1110','MySQL: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ea03bd4cc0f948f38ea638fe93f2ac69');
INSERT INTO `graphs` (`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`,`uuid`) values ('1111','MySQL: InnoDB buffer pool','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ee3890503acf44c58fcfedf3c5008656');
INSERT INTO `graphs` (`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`,`uuid`) values ('1112','MySQL: Operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a6296310a0cf4ffcad7b119c5089ef1f');
INSERT INTO `graphs` (`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`,`uuid`) values ('1113','MySQL: Queries','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ce723556c4974152a8eda029dbdad1bc');
INSERT INTO `graphs` (`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`,`uuid`) values ('1114','MySQL: Threads','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e7653013a2d94596a89c93f5352220df');
INSERT INTO `graphs` (`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`,`uuid`) values ('1115','MySQL: Bandwidth','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3522a11cae374d08a751f419e51748e1');
INSERT INTO `graphs` (`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`,`uuid`) values ('1116','MySQL: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','51a6827371434314b76eaed17db0e09e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1117','MySQL: InnoDB buffer pool','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','07edad9e34394a689dc294c8ec27a37e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1118','MySQL: Operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','93bb7077e60047e59ac3fd308044722a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1119','MySQL: Queries','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','172ad44d7cef4c20b08b4babf8969805');
INSERT INTO `graphs` (`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`,`uuid`) values ('1120','MySQL: Threads','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1ce62612e1174b3fa91bde29ccaa27ef');
INSERT INTO `graphs` (`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`,`uuid`) values ('1121','Container {#NAME}: CPU usage','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'2','0','72e32a60dc064affb3bb6785bae50e37');
INSERT INTO `graphs` (`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`,`uuid`) values ('1122','Container {#NAME}: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ef48f834b7d543169b21caff1e1d2ade');
INSERT INTO `graphs` (`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`,`uuid`) values ('1123','Container {#NAME}: Network packets','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5cc619d6da2046928ad6d0c28a0e4186');
INSERT INTO `graphs` (`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`,`uuid`) values ('1124','Container {#NAME}: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1952afdd7ab54a65b7f839fd6490f9ff');
INSERT INTO `graphs` (`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`,`uuid`) values ('1125','Docker: Containers','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5959831c9ec840f3af4ec7031f5213aa');
INSERT INTO `graphs` (`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`,`uuid`) values ('1126','Docker: Goroutines','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b9131437fcc24587b47ef6dd5d51e15b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1127','Docker: Images','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','130ff603f0cd4ac4844817ccede8cfac');
INSERT INTO `graphs` (`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`,`uuid`) values ('1128','Docker: Memory total','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5115b03abf71402db63c59b570e83dba');
INSERT INTO `graphs` (`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`,`uuid`) values ('1129','Docker: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','815866ae9f77447bbf15a1b91f7c7708');
INSERT INTO `graphs` (`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`,`uuid`) values ('1130','Memcached: Commands','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','72cf2b87802c4eeca5411946e6b1a29b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1131','Memcached: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3d738b083ce04ffa8d4bd9bf2e394f6a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1132','Memcached: Connections rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','195f209046ba426c9e57c6a317c76ef4');
INSERT INTO `graphs` (`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`,`uuid`) values ('1133','Memcached: Keyspace','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8ace604110bf4a4d9eb7a4b6add0492d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1134','Memcached: Network','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','bb6305e9a84749669433e53cd2b7b8b8');
INSERT INTO `graphs` (`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`,`uuid`) values ('1135','Memcached: Uptime','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','599a96c18e214610a41afadef8f11e11');
INSERT INTO `graphs` (`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`,`uuid`) values ('1136','MySQL: Bandwidth','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b744bfe679fc48afbad8fe219fe88bb5');
INSERT INTO `graphs` (`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`,`uuid`) values ('1137','MySQL: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5fea4f7834644e0a80562c92b61c68d2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1138','MySQL: InnoDB buffer pool','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d54d16a2b4d54bbd9a2a6669631ef96d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1139','MySQL: Operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2e962ad1647d4ccfb6db420a4c196d23');
INSERT INTO `graphs` (`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`,`uuid`) values ('1140','MySQL: Queries','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','04e6ec47b0de4476b5c7a65ae012ca23');
INSERT INTO `graphs` (`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`,`uuid`) values ('1141','MySQL: Threads','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','974ac20701394b60823abbb84420d166');
INSERT INTO `graphs` (`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`,`uuid`) values ('1142','IPMI: {#SENSOR_ID}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','85099badf8d547d89f498cf29bcd51a8');
INSERT INTO `graphs` (`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`,`uuid`) values ('1143','ES {#ES.NODE}: Latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0725d91f63b64346bbef2c20d2901e9b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1144','ES {#ES.NODE}: Query load','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5196ed75f24d48f7ae55b564b8d925e5');
INSERT INTO `graphs` (`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`,`uuid`) values ('1145','ES {#ES.NODE}: Refresh thread pool','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6d0e4fde0eeb47b6af4c9f40311b384d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1146','ES {#ES.NODE}: Search thread pool','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9abe085b960d40bf8a99c88ec3564a8d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1147','ES {#ES.NODE}: Write thread pool','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','689492a2614642a1a5d3279c42b29e85');
INSERT INTO `graphs` (`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`,`uuid`) values ('1148','ES: Cluster health','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','50f90b092fa24658b83b131fa7a3f2ce');
INSERT INTO `graphs` (`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`,`uuid`) values ('1159','ClickHouse: {#DB}.{#TABLE}: Replica log activity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','131e0d19c35f4d87aa62b7766e6e1db3');
INSERT INTO `graphs` (`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`,`uuid`) values ('1160','ClickHouse: {#DB}.{#TABLE}: Replica queues','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','195f5d50a1f0488b9db5d2f1e6a6e8c3');
INSERT INTO `graphs` (`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`,`uuid`) values ('1161','ClickHouse: Current activity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fc2f8de59c874876addb08ec633338d4');
INSERT INTO `graphs` (`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`,`uuid`) values ('1162','ClickHouse: Current connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b1b66d510e424965b7e82b902e0f2e58');
INSERT INTO `graphs` (`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`,`uuid`) values ('1163','ClickHouse: Distributed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','59935d9f612f468b97288d9a0dc62b26');
INSERT INTO `graphs` (`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`,`uuid`) values ('1164','ClickHouse: Insert/Merge bytes rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','edd18c769edd442cba00adf97ae4192a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1165','ClickHouse: Insert/Merge rows rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0fd813049e7449b69366021ffa0d3ec7');
INSERT INTO `graphs` (`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`,`uuid`) values ('1166','ClickHouse: Memory Usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5a688818d4fa44f687aa8415abddc7c0');
INSERT INTO `graphs` (`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`,`uuid`) values ('1167','ClickHouse: Memory Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ba22cf13ef6f46299651d15fb860016d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1168','ClickHouse: Queries rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','9593c61ecdfa4c83ab9421ed85a82f36');
INSERT INTO `graphs` (`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`,`uuid`) values ('1169','ClickHouse: Syscalls in fly','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','eaa80cf006e84d26903cf1004a268a31');
INSERT INTO `graphs` (`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`,`uuid`) values ('1170','ClickHouse: Uptime','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','eda00404a372434ea4f511c219bf3295');
INSERT INTO `graphs` (`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`,`uuid`) values ('1172','Apache: Current async connections{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4845e6716bd74e7698406e6d8389eba5');
INSERT INTO `graphs` (`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`,`uuid`) values ('1173','Apache: Current async processes{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','19ecb4e04c3742daac1a0e06d5f98c0c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1174','Apache: Requests per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','dfc5334e77ce45d286145cc08d036f38');
INSERT INTO `graphs` (`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`,`uuid`) values ('1175','Apache: Worker states','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6f646e8c11b04e8a835b81bc17824593');
INSERT INTO `graphs` (`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`,`uuid`) values ('1176','Apache: Workers total','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','121c2d4feb0b4b53b027f1566107ab29');
INSERT INTO `graphs` (`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`,`uuid`) values ('1177','Etcd: File descriptors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','18baccd03c0f4814a42d32b51334787d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1178','Etcd: gRPC client traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','eefd07cf30d84cc4b84f802468363200');
INSERT INTO `graphs` (`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`,`uuid`) values ('1179','Etcd: gRPC requests rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c53ee0dba42d4a1f8afedbe0f6e42785');
INSERT INTO `graphs` (`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`,`uuid`) values ('1180','Etcd: HTTP requests rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','520ff92815d84e0f84e9296d249c04ae');
INSERT INTO `graphs` (`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`,`uuid`) values ('1181','Etcd: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','90af5b2f75b7402693bad7a8f371ab8e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1182','Etcd: Proposals rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','59cd15292ad04ebd902a7d3080b53838');
INSERT INTO `graphs` (`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`,`uuid`) values ('1183','Etcd: Read/Write rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b374fab55bcc452e9279214ddb2c8024');
INSERT INTO `graphs` (`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`,`uuid`) values ('1184','IIS: Cache hits percentage','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','3a0454724c9a444cbeb3ad0da2a3a560');
INSERT INTO `graphs` (`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`,`uuid`) values ('1185','IIS: Cache misses','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4a0a6a0b83f34a88aa753206227304da');
INSERT INTO `graphs` (`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`,`uuid`) values ('1186','IIS: Requests rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','16cfe68447114012bd93fef6dac80be9');
INSERT INTO `graphs` (`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`,`uuid`) values ('1187','IIS: Cache hits percentage','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','e3b3f8f973204070a37b9eb861e2a079');
INSERT INTO `graphs` (`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`,`uuid`) values ('1188','IIS: Cache misses','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2ac5f3ee169b4e79ad6f08e4dffbffeb');
INSERT INTO `graphs` (`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`,`uuid`) values ('1189','IIS: Requests rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4c488d9247ca49ac8b33d655ccbca2b3');
INSERT INTO `graphs` (`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`,`uuid`) values ('1190','MSSQL DB \'{#DBNAME}\': Log size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ac52c952ba954065bbbb5c722630cd0b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1191','MSSQL DB \'{#DBNAME}\': Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9553b9169f5e441abecfde1c07ca1a4e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1192','MSSQL Mirroring \'{#DBNAME}\': States','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9bf9203bd4b449b39e288fbb79f9d627');
INSERT INTO `graphs` (`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`,`uuid`) values ('1193','MSSQL: Access methods','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d2db0e08beb6445a8b5dd9fb46249265');
INSERT INTO `graphs` (`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`,`uuid`) values ('1194','MSSQL: Auto-params','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f22186d86d9346fe9e1f3292e1f0017c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1195','MSSQL: Cache objects','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','24ef7368fb364616892c4928ba6167c6');
INSERT INTO `graphs` (`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`,`uuid`) values ('1196','MSSQL: Compilations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1f713999d38745b6bb2828e397a32970');
INSERT INTO `graphs` (`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`,`uuid`) values ('1197','MSSQL: Database pages','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','91af398cfb86472ba4a69e3df0816be7');
INSERT INTO `graphs` (`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`,`uuid`) values ('1198','MSSQL: Errors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0c9aaf223d6f4ba9bd17b0289af4bbe2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1199','MSSQL: Locks','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e35985317393409b9a764adcb05f07d0');
INSERT INTO `graphs` (`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`,`uuid`) values ('1200','MSSQL: Logins per second and Logouts per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8796ad9cc04f48cdbe8ef2cb5f429997');
INSERT INTO `graphs` (`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`,`uuid`) values ('1201','MSSQL: Memory/cache load','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','bc588f8933d846a19accdb66eb29ccb9');
INSERT INTO `graphs` (`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`,`uuid`) values ('1202','MSSQL: Memory grants outstanding and pending','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3d431f6cc6d34ef5820f2a24f3872b41');
INSERT INTO `graphs` (`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`,`uuid`) values ('1203','MSSQL: Page life expectancy','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0f0bc58e0c18421591d265f81c000021');
INSERT INTO `graphs` (`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`,`uuid`) values ('1204','MSSQL: Pages','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2b1d0e42f61a4312998775d21f7cabb7');
INSERT INTO `graphs` (`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`,`uuid`) values ('1205','MSSQL: Processes blocked','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2e9273b0472c4a3e9049bea3548301d5');
INSERT INTO `graphs` (`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`,`uuid`) values ('1206','MSSQL: Server memory','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f124ce3778bd4722bf0d2d598ac31b0f');
INSERT INTO `graphs` (`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`,`uuid`) values ('1207','MSSQL: Transactions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','59ffd52c5c334d20870fc209c6c61398');
INSERT INTO `graphs` (`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`,`uuid`) values ('1208','MSSQL: Waits per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6979c0bcba0e4ac08c6bfefa0c648d40');
INSERT INTO `graphs` (`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`,`uuid`) values ('1209','MSSQL: Wait times','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','41cc736d93ce45d6aeb6dede77c97f08');
INSERT INTO `graphs` (`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`,`uuid`) values ('1210','ASM \'{#DG_NAME}\': ASM disk group \'{#DG_NAME}\'','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','75f9f07dbae84443900aad10095e37f9');
INSERT INTO `graphs` (`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`,`uuid`) values ('1211','Oracle TBS \'{#TABLESPACE}\': Tablespace \'{#TABLESPACE}\'','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a9f3bc52aa0340feb35600ad249e82d3');
INSERT INTO `graphs` (`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`,`uuid`) values ('1212','Oracle: Datafiles','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','72ad9e81bb5147e6827499143d256068');
INSERT INTO `graphs` (`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`,`uuid`) values ('1213','Oracle: PGA','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','dba3f3b856114d50b826a15cacd1d896');
INSERT INTO `graphs` (`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`,`uuid`) values ('1214','Oracle: Physical Read\\Write Rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3d1c6ffe69f34695b30d132d99d41dbb');
INSERT INTO `graphs` (`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`,`uuid`) values ('1215','Oracle: Physical Read\\Write Rate, Bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5002e9a128524991b16dbea89e0f4b07');
INSERT INTO `graphs` (`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`,`uuid`) values ('1216','Oracle: Processes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','044e0b3a485547b7b41939a78be80784');
INSERT INTO `graphs` (`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`,`uuid`) values ('1217','Oracle: Sessions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','eef29b959d334e4b9ba3a4d83a571f1f');
INSERT INTO `graphs` (`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`,`uuid`) values ('1218','Oracle: SGA Memory Usage','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','dd6a3c604ba446e793526564527c5c2f');
INSERT INTO `graphs` (`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`,`uuid`) values ('1219','DB {#DBNAME}: Locks','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','af6eac83efc94d2a9f4a3501207fb5ce');
INSERT INTO `graphs` (`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`,`uuid`) values ('1220','DB {#DBNAME}: Number of bloating tables','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9a518b4bf0f04609863bf9dc4c7f1ea2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1221','DB {#DBNAME}: pg_stat_database metrics','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4d46d39a1d1146c19a57b2b5b8086708');
INSERT INTO `graphs` (`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`,`uuid`) values ('1222','DB {#DBNAME}: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','86853d8590344bad84aab1deb3d1cffc');
INSERT INTO `graphs` (`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`,`uuid`) values ('1223','{#DEVNAME}: Disk average waiting time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','96ca565847ac46ffb7456fbfa4513922');
INSERT INTO `graphs` (`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`,`uuid`) values ('1226','{#DEVNAME}: Disk read/write rates','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','15b73630b3224b5a87ef3631dfdfe566');
INSERT INTO `graphs` (`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`,`uuid`) values ('1229','{#DEVNAME}: Disk utilization and queue','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8f7b0b21edeb4bf6b340852a3ace455c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1238','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','08ea837e8c2448018cff873dacd95dcb');
INSERT INTO `graphs` (`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`,`uuid`) values ('1240','{#DEVNAME}: Disk read/write rates','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','83dee3e21b2f4b3c8c7552f87ebec81c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1242','{#DEVNAME}: Disk utilization and queue','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d3b5ccf4530447c2aee84fb23a6934d0');
INSERT INTO `graphs` (`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`,`uuid`) values ('1250','ClassLoading: Class Loader','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','69184fc10a914cc78637625cc6cc554c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1259','OperatingSystem: File Descriptors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','39c14cff77694bddb836b63609d9ae92');
INSERT INTO `graphs` (`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`,`uuid`) values ('1260','Threading: Threads','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','397d90097f3f4237ac45d929ffd513e5');
INSERT INTO `graphs` (`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`,`uuid`) values ('1261','MSSQL DB \'{#DBNAME}\': Number of Log changes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','49d3be5c3ce34cfc9c13456a2ae301f6');
INSERT INTO `graphs` (`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`,`uuid`) values ('1262','PHP-FPM: Process','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','36cd028132d94585877ad5726f0f9e3d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1263','PHP-FPM: Queue','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','768a3e8aaa4741239887b55be5842f4a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1264','PHP-FPM: Process','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6c69974487f34fea9850ac63fd45adbc');
INSERT INTO `graphs` (`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`,`uuid`) values ('1265','PHP-FPM: Queue','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','250e7f6e07064675872b81a8881f4f31');
INSERT INTO `graphs` (`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`,`uuid`) values ('1266','ASM \'{#DG_NAME}\': ASM disk group \'{#DG_NAME}\'','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f42e49e6743f4b08b5bdc3ab284b26f3');
INSERT INTO `graphs` (`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`,`uuid`) values ('1267','Oracle TBS \'{#TABLESPACE}\': Tablespace \'{#TABLESPACE}\'','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4b20cce21abb453f9aab0dbce75ff060');
INSERT INTO `graphs` (`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`,`uuid`) values ('1268','Oracle: Datafiles','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','292f08d249d344db882a3447cc268ca6');
INSERT INTO `graphs` (`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`,`uuid`) values ('1269','Oracle: PGA','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4b4d2430750c4885b4764c3b602dc091');
INSERT INTO `graphs` (`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`,`uuid`) values ('1270','Oracle: Physical Read\\Write Rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4e02f667b98042f6ac538692a074a982');
INSERT INTO `graphs` (`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`,`uuid`) values ('1271','Oracle: Physical Read\\Write Rate, Bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2bfd6cda93da4201a73c3d16caea8284');
INSERT INTO `graphs` (`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`,`uuid`) values ('1272','Oracle: Processes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e51ad4ba7cca491faf7564a8d26bc1da');
INSERT INTO `graphs` (`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`,`uuid`) values ('1273','Oracle: Sessions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3323be96dd454a92ade913ab6c2b589c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1274','Oracle: SGA Memory Usage','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','ad7c9a7b4c7a4b4885cb1e91e7e79d3d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1275','Asterisk: Calls stats','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','92b561a0aee24da9a7d9875f2293316d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1276','Asterisk: IAX peers','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0e5d56155a1240108a4ffc2f3dc041be');
INSERT INTO `graphs` (`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`,`uuid`) values ('1277','Asterisk: PJSIP peers','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fd5b051daaf64df89856bec400bbc3a0');
INSERT INTO `graphs` (`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`,`uuid`) values ('1278','Asterisk: SIP peers','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2781590218fe4cc9ade68446e5d11aa2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1279','{#DEVNAME}: Disk average waiting time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8748136db91b499da7516cb6fde881fb');
INSERT INTO `graphs` (`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`,`uuid`) values ('1281','{#DEVNAME}: Disk read/write rates','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','00756c13228340d7b4483b796dc8f79f');
INSERT INTO `graphs` (`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`,`uuid`) values ('1283','{#DEVNAME}: Disk utilization and queue','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7cf1fd3334f543c8b44fb131890eb87e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1285','{#FSNAME}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','361d0714ef994ffb8ee037ae7a952fce');
INSERT INTO `graphs` (`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`,`uuid`) values ('1287','Interface {#IFNAME}: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','97e93dc9e93f4e299dee1d1424180c6a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1289','CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c82ee8589e5a4aa0b5e2a94293cefada');
INSERT INTO `graphs` (`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`,`uuid`) values ('1291','CPU usage','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','1',NULL,NULL,'0','0','2b52abbb5839463093fcd894f1252ff7');
INSERT INTO `graphs` (`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`,`uuid`) values ('1293','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','0ef46c547fb84b47857d6fc0a3e1d1b6');
INSERT INTO `graphs` (`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`,`uuid`) values ('1295','Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','a4654a31b6664d02bf8ec0a4ac4d968b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1297','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','ead8371cd5194410820f03d0a5732233');
INSERT INTO `graphs` (`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`,`uuid`) values ('1299','Processes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c96b7c45ae7c4ab3a544cbbd4a0e374c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1301','Swap usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d3169f2fa1b341e3a7527a305814a0ab');
INSERT INTO `graphs` (`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`,`uuid`) values ('1303','System load','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','aa2447f0256d4985af78af8e1cf7e7bd');
INSERT INTO `graphs` (`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`,`uuid`) values ('1305','{#FSLABEL}({#FSNAME}): Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','112006f664834dcf932373b57900425c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1307','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5042d069d9364413bc594f2a22a31cb6');
INSERT INTO `graphs` (`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`,`uuid`) values ('1309','{#DEVNAME}: Disk read/write rates','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','681afbf26ef340c682f8deffd921ae2d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1311','{#DEVNAME}: Disk utilization and queue','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','58fb9ac4f2864730aaeda6a035b1591e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1313','CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','12c859baa46044a0a439f26d2eb50436');
INSERT INTO `graphs` (`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`,`uuid`) values ('1315','CPU usage','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','1',NULL,NULL,'0','0','523969311486483e93b4704c544861d6');
INSERT INTO `graphs` (`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`,`uuid`) values ('1317','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','33392bbdf1d146e2ad347fafa4f9a5d2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1319','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','3c50693dde6c4f6fa1487e3969a1c87d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1321','Swap usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1d27499155b04933a51e4e0f419ea9e8');
INSERT INTO `graphs` (`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`,`uuid`) values ('1339','Ceph: [osd.{#OSDNAME}] OSD latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c88d53bfa7b8456aa70b4d7a2cb63ef5');
INSERT INTO `graphs` (`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`,`uuid`) values ('1343','Ceph: Cluster bandwidth','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fac43ab599344f1da374bd091f6b618b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1344','Ceph: Cluster I/O','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4191a30a9a7c4e5aa48d96238ca8f20c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1345','Ceph: Free space','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','515e2c5239f94ee7a52ecdb834079e06');
INSERT INTO `graphs` (`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`,`uuid`) values ('1346','Ceph: Overall OSD latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8714a8cf50bd43c2b54e410a439d320b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1347','Ceph: Overall OSD utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','716d959b255a47779b9aaf376be8ba03');
INSERT INTO `graphs` (`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`,`uuid`) values ('1356','Squid: DNS lookup statistics','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d8bb2c1dac8a4cb5999d29227a8510e6');
INSERT INTO `graphs` (`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`,`uuid`) values ('1357','Squid: Domain name (FQDN) cache statistics','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e301cc76e0ff4e22bc66a46b19230c33');
INSERT INTO `graphs` (`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`,`uuid`) values ('1358','Squid: File descriptor usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','22556883f0a04b6999013d1a5ce58382');
INSERT INTO `graphs` (`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`,`uuid`) values ('1359','Squid: HTTP Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','647af850b9914d7b803c7f509f4c4f71');
INSERT INTO `graphs` (`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`,`uuid`) values ('1360','Squid: IP address cache statistics','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c3d9ac16b3e24067b1041b93ee8aaebe');
INSERT INTO `graphs` (`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`,`uuid`) values ('1361','Squid: Memory','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7b9f0d0f6558432b83375e2fcd082812');
INSERT INTO `graphs` (`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`,`uuid`) values ('1362','Squid: Objects cache statistics','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d4b916fb3ea14e55b3e9799b85d8e40b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1363','Squid: Service timing statistics','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','af823298924d47b09e17eeff093da448');
INSERT INTO `graphs` (`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`,`uuid`) values ('1380','DB {#DBNAME}: Block hit/read','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','3f8124b817f2437096c620d62ec2e055');
INSERT INTO `graphs` (`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`,`uuid`) values ('1381','DB {#DBNAME}: Database size','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','6bd0a0d65b8d43ad946b145cf8a8b533');
INSERT INTO `graphs` (`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`,`uuid`) values ('1382','DB {#DBNAME}: Events','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','41e765d906324595a396d8985b204ff5');
INSERT INTO `graphs` (`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`,`uuid`) values ('1383','DB {#DBNAME}: Locks','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','2b260fdf7623476095429434b5c79041');
INSERT INTO `graphs` (`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`,`uuid`) values ('1384','DB {#DBNAME}: Queries','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','8a60a92b41b146f49145b86bab559b2e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1385','DB {#DBNAME}: Slow queries','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','93518b06f71e46ada3dabefa1726b867');
INSERT INTO `graphs` (`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`,`uuid`) values ('1386','DB {#DBNAME}: Temp files','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','779b872280ad46c7a6cdf95c2df7c646');
INSERT INTO `graphs` (`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`,`uuid`) values ('1387','DB {#DBNAME}: Tuples','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','f10be22e3bac4d66936c34ec99446c64');
INSERT INTO `graphs` (`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`,`uuid`) values ('1388','PostgreSQL bgwriter','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','6b4b92c62cb94e10b11f218ed35f6211');
INSERT INTO `graphs` (`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`,`uuid`) values ('1389','PostgreSQL checkpoints','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','4a105d193df64be7898ac19a2f07faa4');
INSERT INTO `graphs` (`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`,`uuid`) values ('1390','PostgreSQL connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','8d41d719832049a5a1fcd6f4da67fb6a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1391','PostgreSQL ping','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','1e9a55ee61824779a9f46f42ec21abef');
INSERT INTO `graphs` (`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`,`uuid`) values ('1392','PostgreSQL replication lag','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','d8cf31fc39584a63b9384d9c3ebf40ee');
INSERT INTO `graphs` (`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`,`uuid`) values ('1393','PostgreSQL transactions','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','10d1de74e9d848399ca038055e5cc8ce');
INSERT INTO `graphs` (`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`,`uuid`) values ('1394','PostgreSQL uptime','900','200','0','100',NULL,'1','0','0','1','0','0','0','1','0',NULL,NULL,'0','0','45fe7967596741129b4f2462922636bf');
INSERT INTO `graphs` (`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`,`uuid`) values ('1395','PostgreSQL WAL','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','93ca2dc7a3ff4a458c45e2a56390ce72');
INSERT INTO `graphs` (`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`,`uuid`) values ('1396','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4f6bc67c40eb441189ec233f926f19ec');
INSERT INTO `graphs` (`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`,`uuid`) values ('1397','Broker {#JMXBROKERNAME}: Messages rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','465b9319e0dc4728a2733c69521e9e81');
INSERT INTO `graphs` (`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`,`uuid`) values ('1398','Broker {#JMXBROKERNAME}: Producers and consumers','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9cdb5b2bed724f45a305a8434d28c105');
INSERT INTO `graphs` (`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`,`uuid`) values ('1399','Broker {#JMXBROKERNAME}: Resources usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6b018bbe9d154d2d865b7922eaa7ae28');
INSERT INTO `graphs` (`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`,`uuid`) values ('1400','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','006f397fbb664f9981b9228808870239');
INSERT INTO `graphs` (`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`,`uuid`) values ('1401','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Messages rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1c9a999ec2b94942ad10f408b470b1a2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1402','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers and consumers','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0854230a67bc4d29b3b3dc2cb7eeaefa');
INSERT INTO `graphs` (`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`,`uuid`) values ('1403','Ceph: [{#POOLNAME}] Pool bandwidth','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1a469f2c99214b1ba7fe3a7520e43439');
INSERT INTO `graphs` (`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`,`uuid`) values ('1404','Ceph: [{#POOLNAME}] Pool I/O','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7870932ea335481db1c23224dfb33f60');
INSERT INTO `graphs` (`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`,`uuid`) values ('1405','Ceph: [{#POOLNAME}] Pool Usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3da48042fdaa4c01825c3eea7ab5af6b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1406','Database Counters [{#INSTANCE}]: Read and write stats','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d3de0d2651bf49bc856c3354437cea70');
INSERT INTO `graphs` (`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`,`uuid`) values ('1407','Domain Controller [{#INSTANCE}]: Timings','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','68caa8f72b21476f8f18695843c14328');
INSERT INTO `graphs` (`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`,`uuid`) values ('1408','MS Exchange [Client Access Server]: Request rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','47dd0ffded994286a6110082c1693433');
INSERT INTO `graphs` (`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`,`uuid`) values ('1409','Database Counters [{#INSTANCE}]: Read and write stats','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3749d38f7b7f478486c1181aeabd19c1');
INSERT INTO `graphs` (`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`,`uuid`) values ('1410','Domain Controller [{#INSTANCE}]: Timings','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','004b61b0e602483780f7c944219cf110');
INSERT INTO `graphs` (`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`,`uuid`) values ('1411','MS Exchange [Client Access Server]: Request rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d1e720c28aba4d48a522d509bdd7d324');
INSERT INTO `graphs` (`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`,`uuid`) values ('1412','GitLab: Database: Connection pool','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f6c30e56b54e478ea2708e302197b83b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1413','GitLab: HTTP requests rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ebffb6f63cf5400ab6a518612c5e857f');
INSERT INTO `graphs` (`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`,`uuid`) values ('1414','GitLab: Redis requests rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','14d4a4cc843e4c15bd72b680c18ffdd6');
INSERT INTO `graphs` (`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`,`uuid`) values ('1415','GitLab: Ruby: File descriptors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2eafabff82a240258c50a77655f77fd9');
INSERT INTO `graphs` (`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`,`uuid`) values ('1416','GitLab: Ruby: RSS memory','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1c6b8a24e76f4b7390e8e8742afbedec');
INSERT INTO `graphs` (`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`,`uuid`) values ('1417','{#HOSTNAME}: DataNode {#HOSTNAME} DFS size','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'2','0','c497416bcce1416ebcede7fc491ccdba');
INSERT INTO `graphs` (`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`,`uuid`) values ('1418','Kafka: Broker throughput','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0371c1e9aa924fb89bffa87c26e88481');
INSERT INTO `graphs` (`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`,`uuid`) values ('1419','Kafka: ISR shrinks/expands rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7a7ce78d88bc483ca07efb5c4e639c1f');
INSERT INTO `graphs` (`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`,`uuid`) values ('1420','Kafka: Leader election rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','bd0b892058df48d5939f2ab9de9c2768');
INSERT INTO `graphs` (`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`,`uuid`) values ('1421','Kafka: Pending deletes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','de66fc0c0dc44fbca5fa44f9cd4716ff');
INSERT INTO `graphs` (`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`,`uuid`) values ('1422','Kafka: Purgatory size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','451bd85a6db249f1a43ac38d4361f925');
INSERT INTO `graphs` (`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`,`uuid`) values ('1423','Kafka: Requests failed rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','aaef8edde7e34c33acad4e0820991bd6');
INSERT INTO `graphs` (`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`,`uuid`) values ('1424','Kafka: Requests performance','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','35b4211374b74b68aceec66cc875816d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1425','Kafka: Temporary memory size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3b531111e8194edd87d497b9fee7084c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1426','Kafka: ZooKeeper connections rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e5f69b35415b49168fba4ffa10e75f25');
INSERT INTO `graphs` (`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`,`uuid`) values ('1427','{#JMXNAME}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','87de97d55baa4be1964652957a051fc2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1428','{#JMXHOST}{#JMXCONTEXT}: Sessions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','dfd46f5443f9438fb21ae23dfd4010c0');
INSERT INTO `graphs` (`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`,`uuid`) values ('1429','{#JMXNAME}: Worker threads','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d8236335204a42488c6221c8b2d31e77');
INSERT INTO `graphs` (`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`,`uuid`) values ('1430','Vault: Cache rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b4fc517d099340558fe813c6fb8c6be2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1431','Vault: Expiring leases','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','81fa6888cef7496eb46a15f11e8a238c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1432','Vault: K/V secret engine entries','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a96e30071bef4da6839e405ae5b183c5');
INSERT INTO `graphs` (`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`,`uuid`) values ('1433','Vault: Requests rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e7e470ee9e914d4d9fc81b598889f873');
INSERT INTO `graphs` (`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`,`uuid`) values ('1434','Vault: Runtime memory','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2e4eda3a71b74e14a0c4843a96a53dbc');
INSERT INTO `graphs` (`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`,`uuid`) values ('1435','Vault: Token checks','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','db2043aa454a440995a178e342d3eca5');
INSERT INTO `graphs` (`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`,`uuid`) values ('1436','Vault: Token lookup','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','39770778f73c49b0a333d313b76f4020');
INSERT INTO `graphs` (`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`,`uuid`) values ('1437','Vault: Tokens count','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6b23dff0bd364416b520cca9dab56b47');
INSERT INTO `graphs` (`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`,`uuid`) values ('1438','Zookeeper client {#TYPE} [{#CLIENT}]: Latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9ea4e5af47124317ba7f4502af97bc9c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1439','Zookeeper client {#TYPE} [{#CLIENT}]: Packets','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b41e4ca001fe4a6789b1b4490861bd26');
INSERT INTO `graphs` (`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`,`uuid`) values ('1440','Zookeeper: File descriptors usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0553c91abfac4f8fb452b6b367055261');
INSERT INTO `graphs` (`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`,`uuid`) values ('1441','Zookeeper: Latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e4a53bcc70fa4688832dce28ca5f9c4a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1442','Zookeeper: Nodes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','34d7f20585404aabac415c832c09a7ed');
INSERT INTO `graphs` (`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`,`uuid`) values ('1443','Zookeeper: Packets','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8724517184844ee79c47f36b895cd564');
INSERT INTO `graphs` (`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`,`uuid`) values ('1444','Remote Zabbix server: Data gathering processes','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','11e19e2e56fb4fb1ab0094a7c2906ed6');
INSERT INTO `graphs` (`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`,`uuid`) values ('1445','Zabbix server: Data gathering processes','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','a6eb4d7df7ec4388bc37f7d27cc26a9f');
INSERT INTO `graphs` (`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`,`uuid`) values ('1447','{#JMXKEYSPACE}.{#JMXSCOPE}: Read\\Write latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5e293f31be1e46e2ac406afda9ba4d95');
INSERT INTO `graphs` (`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`,`uuid`) values ('1448','{#JMXKEYSPACE}.{#JMXSCOPE}: Requests rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1db58a329f9c4306921fbeb6a089cfcf');
INSERT INTO `graphs` (`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`,`uuid`) values ('1449','Client connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','445735b15ac84e42b21dbe7c44dce812');
INSERT INTO `graphs` (`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`,`uuid`) values ('1450','Client requests rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2ce1833420ba4abc9bdea906d2c1238b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1451','Client requests Read\\Write latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c30ffc0f46304bf6aab699d39d8d6d4c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1452','Dropped Messages','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5397e6b2349f45169b155e9a99b2b295');
INSERT INTO `graphs` (`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`,`uuid`) values ('1453','KeyCache Hit rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f82e4d8e2f84434e90baff030d46d10e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1454','Nodes state','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0f0f2544748d460b9d526573f7b11d70');
INSERT INTO `graphs` (`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`,`uuid`) values ('1455','Tables Read\\Write latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f499150da9ad4376ba528cd4be3af89a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1456','Application {#APPLICATION_NAME}: Replication lag','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e79dfe2d436d49da898772a9e7345825');
INSERT INTO `graphs` (`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`,`uuid`) values ('1457','Voltage: Battery/Load{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','480e4c11060a4e34851b48bf7b9c5bb1');
INSERT INTO `graphs` (`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`,`uuid`) values ('1458','Array: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0662dc480c2b487e9f9afc389166a15b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1459','Current: Charge/Load','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','94bbfd8a60a8412998ff617011db9372');
INSERT INTO `graphs` (`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`,`uuid`) values ('1460','Temperature: Ambient/Battery/Heatsink','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','02652b1251244702bf28f691e72ba27e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1461','Voltage: Battery/Load{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8ecd4f88627a4dadb132fdbb6d911b6b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1462','Array: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','730d1e1e43224d1ea7b08f53988a7a60');
INSERT INTO `graphs` (`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`,`uuid`) values ('1463','Current: Charge/Load','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','252a40cfba4242deac69f8ed77a04b84');
INSERT INTO `graphs` (`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`,`uuid`) values ('1464','Temperature: Ambient/Battery/Heatsink','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','94e4d2db752b4c54a8b497516b515fe0');
INSERT INTO `graphs` (`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`,`uuid`) values ('1465','Voltage: Battery/Load{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b3520796c85a45df954633bc5f87d80b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1466','Array: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6090c266226d431193b00fb3db49ae07');
INSERT INTO `graphs` (`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`,`uuid`) values ('1467','Current: Charge/Load','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ad5b73c7352747a6930c9d8647f70bf1');
INSERT INTO `graphs` (`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`,`uuid`) values ('1468','Temperature: Ambient/Battery/Heatsink','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7b96265600a748728d881f5dfee485d2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1469','Voltage: Battery{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6cdc54f509c045b0880af6f7f901b6ab');
INSERT INTO `graphs` (`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`,`uuid`) values ('1470','Current: A/C Load','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','45df99d33eb0472e946d2f6f7a5a2745');
INSERT INTO `graphs` (`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`,`uuid`) values ('1471','Temperature: Heatsink','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e15d5c71b19444f18d5917519d3fdb74');
INSERT INTO `graphs` (`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`,`uuid`) values ('1472','Battery: Voltage{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','592990e094e842f68463ab542878d5a9');
INSERT INTO `graphs` (`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`,`uuid`) values ('1473','Array: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6627675fc86645a88d7be9a80c91a8b4');
INSERT INTO `graphs` (`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`,`uuid`) values ('1474','Battery: Current','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','711c5f397c5e4031b36070d20debcc13');
INSERT INTO `graphs` (`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`,`uuid`) values ('1475','Battery: Output Power (Watts)','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','12163228805449dcb48116a1a0b470d9');
INSERT INTO `graphs` (`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`,`uuid`) values ('1476','Temperature: Battery/Heatsink','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','09e9cd48bb6241e8b667e6e1b9f7c3ad');
INSERT INTO `graphs` (`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`,`uuid`) values ('1477','Battery: Voltage{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f95cafe8c2a744908e3a290b0b2f6252');
INSERT INTO `graphs` (`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`,`uuid`) values ('1478','Array: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8cdd58f62fcc4ca89d114fbe7eddc26d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1479','Battery: Current','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','067062eca2b34488a9defc3aa002c88c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1480','Battery: Output Power (Watts)','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1889ace5679d4f63b59237812b5d0718');
INSERT INTO `graphs` (`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`,`uuid`) values ('1481','Temperature: Battery/Heatsink','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','87918502df2743e1be04a02b02c44b61');
INSERT INTO `graphs` (`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`,`uuid`) values ('1482','Battery: Voltage{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','bbdea967f4f34a299dd8d9bee43f2841');
INSERT INTO `graphs` (`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`,`uuid`) values ('1483','Array: Voltage{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9886a05be4a74a82a208e3a5950f022d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1484','Battery: Charge Current{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','cd64c57669314d2e9526fbc580034c81');
INSERT INTO `graphs` (`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`,`uuid`) values ('1485','Load: Current{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','91ee10b435144218ab3dfac8f6bf7bdd');
INSERT INTO `graphs` (`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`,`uuid`) values ('1486','Load: Voltage{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b4b595193e0c40a2b390f7ce6eefba4a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1487','Temperature: Battery/Heatsink','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ce3aa40eac5f4ee199ed214752304e19');
INSERT INTO `graphs` (`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`,`uuid`) values ('1488','{#DEVNAME}: Disk average queue length','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5fcd9dc53cd34e4981bf5e48a88951a0');
INSERT INTO `graphs` (`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`,`uuid`) values ('1490','{#DEVNAME}: Disk average waiting time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6561058a9cd748728bb46d8d04a5b74b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1492','{#DEVNAME}: Disk average queue length','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b84e9fa116434ec8ba9ab9bb7a2aa6d2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1494','{#DEVNAME}: Disk average waiting time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ece6c5cbff6e4997b52ea1d7652b7680');
INSERT INTO `graphs` (`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`,`uuid`) values ('1496','Node {#NODE.NAME}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','5e87cb453b3f41138d75783eabeeb17b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1497','{#VSERVER}{#FSNAME}: Free space','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'2','0','938f484a19454b8d9c80be5dbc1887df');
INSERT INTO `graphs` (`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`,`uuid`) values ('1498','Node {#NODE}: port {#IFNAME} ({#TYPE}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','252ef20da69f43fd90afd5a560fdbd1e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1499','Jenkins: Computer [{#DISPLAY_NAME}]: Physical memory','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6296f12b13934006bd462eb4937ca248');
INSERT INTO `graphs` (`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`,`uuid`) values ('1500','Jenkins: Computer [{#DISPLAY_NAME}]: Swap space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b8dcbbaf33d54a0fab3780a5fdd541e0');
INSERT INTO `graphs` (`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`,`uuid`) values ('1501','Jenkins: Executors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3fdcf5d5d81f4bf3b854984917cb3d32');
INSERT INTO `graphs` (`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`,`uuid`) values ('1502','Jenkins: Queues','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6278f5e2def74f2ba8e92872d26a8940');
INSERT INTO `graphs` (`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`,`uuid`) values ('1503','Hikvision camera: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','30cfa75b2afb490f8448a63366577144');
INSERT INTO `graphs` (`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`,`uuid`) values ('1504','Hikvision camera: Memory','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','0cd19b0f8f57435e8b3e1284574e4b79');
INSERT INTO `graphs` (`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`,`uuid`) values ('1505','Data region {#JMXNAME}: Checkpoint buffer utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0ac5a59cc5a64e2ea6bc6e266919ecca');
INSERT INTO `graphs` (`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`,`uuid`) values ('1506','Data region {#JMXNAME}: DataRegion utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','330be15755ca4b5dbee88e21b2e58df2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1507','Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs current state','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','40e5feb97990445da11d8d8f49643882');
INSERT INTO `graphs` (`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`,`uuid`) values ('1508','Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','cd3eedf54f44492d83138e3f8adf2564');
INSERT INTO `graphs` (`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`,`uuid`) values ('1509','Ignite [{#JMXIGNITEINSTANCENAME}]: Communication messages rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9a116cfc05bc46d1bab248048f125a78');
INSERT INTO `graphs` (`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`,`uuid`) values ('1510','Ignite [{#JMXIGNITEINSTANCENAME}]: Discovery messages rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','348631d78d0644209001b054f18b2dc9');
INSERT INTO `graphs` (`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`,`uuid`) values ('1511','Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a10ff3fbfd92437ca24cddd82afe3572');
INSERT INTO `graphs` (`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`,`uuid`) values ('1512','Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0f84dd85e01d475fa1257085814800da');
INSERT INTO `graphs` (`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`,`uuid`) values ('1513','Cache group [{#JMXNAME}]: Partitions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ffb5efed84144196a631b0bdef33a13e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1514','Thread pool [{#JMXNAME}]: Thread pool size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','112c375ee9264c1996ea8c35e467f4a4');
INSERT INTO `graphs` (`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`,`uuid`) values ('1515','Cache group [{#JMXGROUP}]: Cache hits','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','50482d45d20a42e581cfdb0a40a9a9dc');
INSERT INTO `graphs` (`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`,`uuid`) values ('1516','Cache group [{#JMXGROUP}]: Cache ops','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1ce594e3eed64627a337e690b772a741');
INSERT INTO `graphs` (`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`,`uuid`) values ('1517','Cache group [{#JMXGROUP}]: Cache transactions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','91e7fb726cf24bbf9aab6467b9e3a217');
INSERT INTO `graphs` (`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`,`uuid`) values ('1518','Controller {#ID}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','ac083f05484846e6a8c4799410e1f566');
INSERT INTO `graphs` (`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`,`uuid`) values ('1519','LUN {#NAME}: LUN I/O','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','36d1eb7893f54db28afb1f4725aef1a1');
INSERT INTO `graphs` (`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`,`uuid`) values ('1520','LUN {#NAME}: LUN I/O latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f86ef671d9454bb8878835ba1c96ba20');
INSERT INTO `graphs` (`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`,`uuid`) values ('1521','LUN {#NAME}: LUN traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','eb10b5b56a964c2ba7870d2dc7cf787b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1522','Node {#NODE}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','62f3a059a92a454eba1a71fb3a62b787');
INSERT INTO `graphs` (`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`,`uuid`) values ('1523','Node {#NODE}: Node I/O','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1061657e43594c139c49125c1710a10a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1524','Node {#NODE}: Node traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','81b69fee1dde49e0b0fbe5c06077d289');
INSERT INTO `graphs` (`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`,`uuid`) values ('1525','Pool {#NAME}: Capacity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6a2ef2bf36e44139b8550d7f1950669a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1526','OceanStor 5300 V5: Capacity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','9401d60314c441a5a04d7a9709c6970e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1527','MongoDB {#DBNAME}.{#COLLECTION}: Locks','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','76e921eae63a49b99102d880d5844a46');
INSERT INTO `graphs` (`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`,`uuid`) values ('1528','MongoDB {#DBNAME}.{#COLLECTION}: Locks time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ab97504abcc844d5a408d4b7cf85e5a5');
INSERT INTO `graphs` (`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`,`uuid`) values ('1529','MongoDB {#DBNAME}.{#COLLECTION}: Operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','dcfc8fcc0b484c8baea14525aa212dc2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1530','MongoDB {#DBNAME}.{#COLLECTION}: Operations time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','554ac3ac477c47cfbaaba3d6419109f0');
INSERT INTO `graphs` (`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`,`uuid`) values ('1531','MongoDB {#DBNAME}: Collections stats','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e65fcfed4eca4d518b5e6b5b6085ede8');
INSERT INTO `graphs` (`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`,`uuid`) values ('1532','MongoDB {#DBNAME}: Disk usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5dc13b4aebf24a1b8448c26d93b42d7a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1533','MongoDB: Replication lag time [{#RS_NAME}]','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','52724c49dd544470916eab1301be30da');
INSERT INTO `graphs` (`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`,`uuid`) values ('1534','MongoDB: Active clients','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b018e24581464b0282df09fb9d6fc129');
INSERT INTO `graphs` (`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`,`uuid`) values ('1535','MongoDB: Activity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','815c7f2a6dd941df9bc10bc9153e0e97');
INSERT INTO `graphs` (`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`,`uuid`) values ('1536','MongoDB: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d7787063a8614cb4afdf41811a8ade59');
INSERT INTO `graphs` (`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`,`uuid`) values ('1537','MongoDB: Cursors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','230bda1ddd4a45b6a2f11dbea252276e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1538','MongoDB: Documents','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','509211f5f33d4c57a49c5416b2f33937');
INSERT INTO `graphs` (`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`,`uuid`) values ('1539','MongoDB: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f47175a50c6f488b993d3b04ecb28af4');
INSERT INTO `graphs` (`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`,`uuid`) values ('1540','MongoDB: Network','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f1311a6b0d5f4564898d6679a45c438d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1541','MongoDB: Operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','27c36a56bdca436d8a0fe43c9ee8233b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1542','MongoDB: Queued operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e228af86d0a34bd4b494cb6b8cda2ad8');
INSERT INTO `graphs` (`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`,`uuid`) values ('1543','MongoDB {#DBNAME}: Disk usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','44e0e02d1e9a420b9dc917d8cf4bf983');
INSERT INTO `graphs` (`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`,`uuid`) values ('1544','MongoDB cluster: Connection pool','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','311d33ada96e4910a350e62abc6d5321');
INSERT INTO `graphs` (`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`,`uuid`) values ('1545','MongoDB cluster: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','71a5a2d563d64bceacd564fe25b4d49e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1546','MongoDB cluster: Cursors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b4277ddaf3c5486cacba0f9b7208c5b2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1547','MongoDB cluster: Network','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d612246739784b9b9403dee6024493ce');
INSERT INTO `graphs` (`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`,`uuid`) values ('1548','MongoDB cluster: Operations rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4228deefccae4cd2959b183ba3e36295');
INSERT INTO `graphs` (`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`,`uuid`) values ('1549','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','00035facb3f3457fb24582f664c2401d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1550','{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','4c4a6a5124eb4cc0b32de032f4e9e3db');
INSERT INTO `graphs` (`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`,`uuid`) values ('1551','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','00ed7485a75e4192979c950b279593d8');
INSERT INTO `graphs` (`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`,`uuid`) values ('1552','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','ab67e338f5784971b7b5a1cac20097fb');
INSERT INTO `graphs` (`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`,`uuid`) values ('1553','{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','e86ef2331d1644ca80b28f0855a7a7e9');
INSERT INTO `graphs` (`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`,`uuid`) values ('1554','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f277c62e4c614924a79715beae06a63b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1555','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','e032e542ed064edc8a5b5a297a0f4839');
INSERT INTO `graphs` (`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`,`uuid`) values ('1556','{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','25de5d0bebc34c5d9bdf8e181c53588c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1557','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6be27bc4e258470bb324ef8f90295e92');
INSERT INTO `graphs` (`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`,`uuid`) values ('1558','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','54afe104c5dc41f18b6cee29e505463c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1559','{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','2d34cc29f3f24decb910e5e99bad064a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1560','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','bc8d1b63791943aabb62d861a86e2754');
INSERT INTO `graphs` (`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`,`uuid`) values ('1561','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','af1ac970bce54108bec634e986711c65');
INSERT INTO `graphs` (`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`,`uuid`) values ('1562','{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','5d8987ea729748048c3fb5381c6930aa');
INSERT INTO `graphs` (`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`,`uuid`) values ('1563','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2f07fa8de9f94fdfab762af30d7ac17a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1564','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','cabe6db1b71f42d9bc3cef730221a14b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1565','{#FSNAME}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','323ae8e8795543958fe6affc78a3853c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1566','{#MEMNAME}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','bc2042eaf8244d28891e6d71414847da');
INSERT INTO `graphs` (`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`,`uuid`) values ('1567','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','89bf34a1c3db423caa4fbeae774fa9cf');
INSERT INTO `graphs` (`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`,`uuid`) values ('1569','Output','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d4b2320e0515407cb32afa388f91cd29');
INSERT INTO `graphs` (`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`,`uuid`) values ('1570','Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4988c266dc15493592112371b061f9e2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1571','{#VOLUMENAME}: Volume latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5f9bc8697c9c4e22ab55781366fbb9c4');
INSERT INTO `graphs` (`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`,`uuid`) values ('1572','{#VOLUMENAME}: Volume size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2d38bfca52f14cd1a16eafef531c2a05');
INSERT INTO `graphs` (`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`,`uuid`) values ('1573','Cluster IOPS','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','840b4c30198c48e1b161d1b2deee26c8');
INSERT INTO `graphs` (`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`,`uuid`) values ('1574','Cluster latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','34c781f1f9e944ca8010118483470ad9');
INSERT INTO `graphs` (`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`,`uuid`) values ('1575','Cluster throughput','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8754fe099580424b84a4b51031a09fa1');
INSERT INTO `graphs` (`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`,`uuid`) values ('1576','ClickHouse: Zookeeper exceptions rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c90d0b21105e42bd9f4399d77ba0a81a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1577','TiDB cluster: Storage Usage[{#SINGLETON}]','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','270de7aa73cf454cb147a3f5b39ebb35');
INSERT INTO `graphs` (`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`,`uuid`) values ('1578','TiDB: File descriptors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ee25671d0b5446348341be56967a74b2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1579','TiDB: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fb29a5ea3a62416f8eeee804a6f83c46');
INSERT INTO `graphs` (`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`,`uuid`) values ('1580','TiDB: Server query rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5ab746ad86ef4710948263d4d6157742');
INSERT INTO `graphs` (`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`,`uuid`) values ('1581','TiKV: Scheduler priority commands rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','cdca8a2bb2bb486da8c57740acc431d6');
INSERT INTO `graphs` (`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`,`uuid`) values ('1582','TiKV: Snapshot state count','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','93a38153ed8b44a49849cb1f920f50a4');
INSERT INTO `graphs` (`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`,`uuid`) values ('1583','Capacity of the UPS batteries','900','200','0','100',NULL,'1','1','2','1','0','0','0','0','0',NULL,NULL,'0','0','c4f0ae3090394d1d8918227f1a002702');
INSERT INTO `graphs` (`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`,`uuid`) values ('1584','Output','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d8c7c0451bfd40bf9feb085fb6c5fcf0');
INSERT INTO `graphs` (`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`,`uuid`) values ('1585','Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ad9f9b407ae24dd8ba7d2a652bb21fe7');
INSERT INTO `graphs` (`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`,`uuid`) values ('1586','Capacity of the UPS batteries','900','200','0','100',NULL,'1','1','2','1','0','0','0','0','0',NULL,NULL,'0','0','3ea53e2a8a4b4d6e80cd991a20f20ce8');
INSERT INTO `graphs` (`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`,`uuid`) values ('1587','Output','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3d687b2515494fe191fccaaca5c40333');
INSERT INTO `graphs` (`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`,`uuid`) values ('1588','Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','17a289b5764947758d8eb20425e229d2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1589','Capacity of the UPS batteries','900','200','0','100',NULL,'1','1','2','1','0','0','0','0','0',NULL,NULL,'0','0','a7185c07025e46c6a3b86c29d9f749b0');
INSERT INTO `graphs` (`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`,`uuid`) values ('1590','Output','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3c778f0c837d4979abb39aabe0cb321e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1591','Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5f44db14cfc94ae7adf98f8cf1f4b647');
INSERT INTO `graphs` (`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`,`uuid`) values ('1592','Capacity of the UPS batteries','900','200','0','100',NULL,'1','1','2','1','0','0','0','0','0',NULL,NULL,'0','0','566f3eed2c324e5faa80f4170cb40b5b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1593','Output','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','09da5776f4ff4e978e488a12f33dc8bc');
INSERT INTO `graphs` (`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`,`uuid`) values ('1594','Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','df0833759bae450e8125c3fb76519775');
INSERT INTO `graphs` (`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`,`uuid`) values ('1595','Capacity of the UPS batteries','900','200','0','100',NULL,'1','1','2','1','0','0','0','0','0',NULL,NULL,'0','0','a0d8e0338b8d4fd2bd6fdf537373d63c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1596','Output','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0817d2550d9642fe95ce182dce5cefd8');
INSERT INTO `graphs` (`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`,`uuid`) values ('1597','Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ce2f4070e7a14d8283d0a8aff0fcd5e6');
INSERT INTO `graphs` (`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`,`uuid`) values ('1601','Capacity of the UPS batteries','900','200','0','100',NULL,'1','1','2','1','0','0','0','0','0',NULL,NULL,'0','0','e040a4ac7b024c4c878c8145b34969aa');
INSERT INTO `graphs` (`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`,`uuid`) values ('1602','Output','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7cd3c6f5dcaf40e28cbc0ac9e3c35d7a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1603','Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2fe4eba0af2745c994ad3d6abfe30140');
INSERT INTO `graphs` (`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`,`uuid`) values ('1604','Capacity of the UPS batteries','900','200','0','100',NULL,'1','1','2','1','0','0','0','0','0',NULL,NULL,'0','0','2f54cf3da7be49108736e46afe0b5904');
INSERT INTO `graphs` (`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`,`uuid`) values ('1605','Capacity of the UPS batteries','900','200','0','100',NULL,'1','1','2','1','0','0','0','0','0',NULL,NULL,'0','0','265f3050b3b94cbeae6fefdae02ea992');
INSERT INTO `graphs` (`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`,`uuid`) values ('1606','Output','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2ef61780d42c4d61bcb89faf08691d08');
INSERT INTO `graphs` (`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`,`uuid`) values ('1607','Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4432ed7ca97d4d989b253383037f48ee');
INSERT INTO `graphs` (`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`,`uuid`) values ('1608','Capacity of the UPS batteries','900','200','0','100',NULL,'1','1','2','1','0','0','0','0','0',NULL,NULL,'0','0','ea7ef2682549402eb23b0d9df313ee25');
INSERT INTO `graphs` (`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`,`uuid`) values ('1609','Output','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d340e1d477bc4bc4b099c94b1fe6d2da');
INSERT INTO `graphs` (`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`,`uuid`) values ('1610','Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','42f5e7154634464fabafe352508b50db');
INSERT INTO `graphs` (`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`,`uuid`) values ('1611','Capacity of the UPS batteries','900','200','0','100',NULL,'1','1','2','1','0','0','0','0','0',NULL,NULL,'0','0','69ef37f00b0249bb98f381b483280dd1');
INSERT INTO `graphs` (`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`,`uuid`) values ('1612','Output','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','782c8a349b7f4f93a65aeaa058454b14');
INSERT INTO `graphs` (`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`,`uuid`) values ('1613','Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8bc9d8e4bb284134b67498daccb85d5e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1614','WildFly {#JMX_DATA_SOURCE}: Cache operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','322b26787ab444db90a1be3da2717dd2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1615','WildFly {#JMX_DATA_SOURCE}: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','65db851d241b4fe4b6a5d9796d475e55');
INSERT INTO `graphs` (`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`,`uuid`) values ('1616','WildFly listener {#HTTP_LISTENER}: Requests','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','980c07db8fc5450db560a94df1250bf5');
INSERT INTO `graphs` (`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`,`uuid`) values ('1617','WildFly listener {#HTTP_LISTENER}: Throughput','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7d982b6efde6432f9d3f96a4300eae00');
INSERT INTO `graphs` (`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`,`uuid`) values ('1618','WildFly: Transactions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','69e213dfd33d49a8b057068a89e4cef1');
INSERT INTO `graphs` (`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`,`uuid`) values ('1619','Capacity of the UPS batteries','900','200','0','100',NULL,'1','1','2','1','0','0','0','0','0',NULL,NULL,'0','0','fb922a035a6748e28dc892af3331dae4');
INSERT INTO `graphs` (`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`,`uuid`) values ('1620','Output','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4317390560354b369a884abcbce9a026');
INSERT INTO `graphs` (`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`,`uuid`) values ('1621','Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','595018e4c5d8406a805aed647cd2f5d1');
INSERT INTO `graphs` (`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`,`uuid`) values ('1622','Cloudflare: Bandwidth','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','09e113216680490c9dd15805474bcac7');
INSERT INTO `graphs` (`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`,`uuid`) values ('1623','Cloudflare: Caching','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ed4ef5ce4a6a4c5692c22079d8879e0e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1624','Cloudflare: DNS requests','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','25df26cece41403d864f1ced5901bffa');
INSERT INTO `graphs` (`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`,`uuid`) values ('1625','Cloudflare: HTTP response codes over time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3fb3b089a115420bbc051c14fcd2f3aa');
INSERT INTO `graphs` (`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`,`uuid`) values ('1626','Cloudflare: HTTP responses ratio over time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c9e1708427a84182a406faec327bb6f1');
INSERT INTO `graphs` (`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`,`uuid`) values ('1627','Cloudflare: IPs and threats','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6a0da78eec23423ab084a0760f1691be');
INSERT INTO `graphs` (`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`,`uuid`) values ('1628','Cloudflare: Web requests','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','659df99629a341449c77baf7a9b99b77');
INSERT INTO `graphs` (`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`,`uuid`) values ('1629','HAProxy: Backend {#PXNAME} In/Out traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','70bf1a17304e495dae74b86b93ac9773');
INSERT INTO `graphs` (`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`,`uuid`) values ('1630','HAProxy: Backend {#PXNAME} Responses by HTTP code','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'2','0','50d592985cd74d0a95904971dc40767d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1631','HAProxy: {#PXNAME} {#SVNAME} In/Out traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','15210cbf31ab459ca77d35206255f317');
INSERT INTO `graphs` (`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`,`uuid`) values ('1632','HAProxy: {#PXNAME} {#SVNAME} Responses by HTTP code','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'2','0','09fb856698f441b29103e3b8c8bcb8dd');
INSERT INTO `graphs` (`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`,`uuid`) values ('1633','HAProxy: Backend {#PXNAME} In/Out traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','47e7dc2c8ff2424eb81f396f83dbb2c0');
INSERT INTO `graphs` (`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`,`uuid`) values ('1634','HAProxy: Backend {#PXNAME} Responses by HTTP code','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'2','0','816e4062fc7b45bea96c2a2fbc171088');
INSERT INTO `graphs` (`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`,`uuid`) values ('1635','HAProxy: {#PXNAME} {#SVNAME} In/Out traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b7170d909b78413daa7057320d4280d8');
INSERT INTO `graphs` (`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`,`uuid`) values ('1636','HAProxy: {#PXNAME} {#SVNAME} Responses by HTTP code','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'2','0','d9b0d6babaf04daa942f121aab2d5b9c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1637','Nginx: HTTP location zone [{#NAME}]: Requests','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','85880c097a1c47bfafa35de05304abbc');
INSERT INTO `graphs` (`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`,`uuid`) values ('1638','Nginx: HTTP location zone [{#NAME}]: Responses','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6b05907e4c544986b977a1b496ca92e2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1639','Nginx: HTTP server zone [{#NAME}]: Requests','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ba4bc0201f0741078e1512fd79bddf59');
INSERT INTO `graphs` (`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`,`uuid`) values ('1640','Nginx: HTTP server zone [{#NAME}]: Responses','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5870e9a861f046b3946c2464c6c5007d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1641','Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','63582bcbe4c741e88cd64a43ff1b7d9d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1642','Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','49cd8f25969d486ab4482b4986b1815a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1643','Nginx: Resolver [{#NAME}]: Requests','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7c91ca5b8477468fa19c56b621e0c32a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1644','Nginx: Resolver [{#NAME}]: Responses','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e3535ce974114e6188752937c1bdb2c7');
INSERT INTO `graphs` (`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`,`uuid`) values ('1645','Nginx: Stream server zone [{#NAME}]: Sessions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f833112506e941d791057925c58bd1d9');
INSERT INTO `graphs` (`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`,`uuid`) values ('1646','Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','abb23d681d0a461db00648b412b176c8');
INSERT INTO `graphs` (`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`,`uuid`) values ('1647','Nginx: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a8b239f2f21a471fa3ac6a10a0419e9c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1648','Nginx: Requests','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4be7153e244b4c28a53c527aa9fd5706');
INSERT INTO `graphs` (`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`,`uuid`) values ('1649','Nginx: SSL','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b1c647610c974bc8aad4fb55e1e3c8d3');
INSERT INTO `graphs` (`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`,`uuid`) values ('1650','Nginx: Uptime','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b2da29d4951745db8a66a076eb99d0aa');
INSERT INTO `graphs` (`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`,`uuid`) values ('1651','Zabbix server: Data handling processes','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','ee66abf6d914407c8133b00acad77f17');
INSERT INTO `graphs` (`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`,`uuid`) values ('1652','Zabbix server: Internal processes','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','df8944bf1e2f4149b5fbfe945548d1d8');
INSERT INTO `graphs` (`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`,`uuid`) values ('1653','Zabbix server: Reporting processes','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','821dc2e1b416449ca0d356a0a34f58ac');
INSERT INTO `graphs` (`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`,`uuid`) values ('1654','Zabbix server: Trend function cache effectiveness','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','739c5a4a46e949c69c46073c39ce3ef8');
INSERT INTO `graphs` (`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`,`uuid`) values ('1659','Remote Zabbix server: Data handling processes','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','e15b35d8270e4085812b9b74369fb048');
INSERT INTO `graphs` (`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`,`uuid`) values ('1660','Remote Zabbix server: Internal processes','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','d35b696819e3402e9a9f8bd98da01bde');
INSERT INTO `graphs` (`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`,`uuid`) values ('1661','Remote Zabbix server: Reporting processes','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','c0a947a13faa422b9f4b96602b93a1c2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1662','Remote Zabbix server: Trend function cache effectiveness','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f90ef248dc4a4f0c9527fd95af1c6a9e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1663','Data region {#JMXNAME}: Checkpoint buffer utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f9410067b582451aa0b2675391504a65');
INSERT INTO `graphs` (`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`,`uuid`) values ('1664','Data region {#JMXNAME}: DataRegion utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6f2ffd3ba45c4803864d049e7bfbbf18');
INSERT INTO `graphs` (`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`,`uuid`) values ('1665','GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs current state','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ca84e5c7fc76473392a30a3073e9cb25');
INSERT INTO `graphs` (`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`,`uuid`) values ('1666','GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','93e01a53b9054a83a6461e3526f63ee3');
INSERT INTO `graphs` (`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`,`uuid`) values ('1667','GridGain [{#JMXIGNITEINSTANCENAME}]: Communication messages rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ca090aa6d7e449e880b43cdbbd80d991');
INSERT INTO `graphs` (`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`,`uuid`) values ('1668','GridGain [{#JMXIGNITEINSTANCENAME}]: Discovery messages rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a44983a855934d3ea5d2eaa1421df147');
INSERT INTO `graphs` (`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`,`uuid`) values ('1669','GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','82d772972cec4454b95d69343040b2b5');
INSERT INTO `graphs` (`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`,`uuid`) values ('1670','GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ad74079d5ef741918d25f059c1950839');
INSERT INTO `graphs` (`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`,`uuid`) values ('1671','Cache group [{#JMXNAME}]: Partitions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','da32480debef4e2baec58a7cf1131357');
INSERT INTO `graphs` (`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`,`uuid`) values ('1672','Thread pool [{#JMXNAME}]: Thread pool size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d3db21cd80664dc4b6847456e15b2b3e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1673','Cache group [{#JMXGROUP}]: Cache hits','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8c453a6631b34c96b39375aff2e51ac3');
INSERT INTO `graphs` (`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`,`uuid`) values ('1674','Cache group [{#JMXGROUP}]: Cache ops','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','de80d7645ec347c3a547e9d8d41edc3a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1675','Cache group [{#JMXGROUP}]: Cache transactions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','20b825d52d8241a79405768faf0e202d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1676','Cisco ASAv: CPU[{#SNMPINDEX}] Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c3d95f2670f346cda44b3def5a835379');
INSERT INTO `graphs` (`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`,`uuid`) values ('1677','Cisco ASAv: Memory[{#SNMPVALUE}] Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','388a69f2dfad42ac934d3f09c5e0efd1');
INSERT INTO `graphs` (`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`,`uuid`) values ('1678','Cisco ASAv: {#CISCO.IF.NAME}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5e94c9468d7d40ba9705bcfe01f7c24e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1679','Cisco ASAv: {#CISCO.IF.NAME}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','1e252a00f1a14e99b06498a659a0d1d5');
INSERT INTO `graphs` (`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`,`uuid`) values ('1680','Cisco ASAv: {#CISCO.IF.NAME} Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4609522ac9a545b3a5b38129e5110174');
INSERT INTO `graphs` (`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`,`uuid`) values ('1681','Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','bed8a06cbbc24144813d0c515bd09328');
INSERT INTO `graphs` (`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`,`uuid`) values ('1682','F5 BIG-IP: Sensor [{#SLOT.INDEX}:{#TEMP.INDEX}] temperature','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1b43fb6913274a34ab6ad122d5db38ba');
INSERT INTO `graphs` (`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`,`uuid`) values ('1683','F5 BIG-IP: Voltage [{#VOLT.INDEX}] value','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b5b1a26c3c9043d79eff63272c3e4b8d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1684','F5 BIG-IP: FAN [{#FAN.INDEX}] speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f0a043ed6fb249e489f143350b681a63');
INSERT INTO `graphs` (`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`,`uuid`) values ('1685','F5 BIG-IP: Sensor [{#TEMP.INDEX}] temperature','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ceea250c715948f3907290738451c328');
INSERT INTO `graphs` (`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`,`uuid`) values ('1686','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 1m','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','64c251a6b0384d2ea7d5b498c7fe6422');
INSERT INTO `graphs` (`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`,`uuid`) values ('1687','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 5m','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3fd0ca58d8f14e06afa2c58f9d1b46f3');
INSERT INTO `graphs` (`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`,`uuid`) values ('1688','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 5s','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','dba5e4f4c3714f438eacba4b213ce640');
INSERT INTO `graphs` (`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`,`uuid`) values ('1689','F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}] FAN speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','714b13fd29ec47009f183d44ddaa8df6');
INSERT INTO `graphs` (`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`,`uuid`) values ('1690','F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}] temperature','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','be756734cec74d9fb427fb1d515c7888');
INSERT INTO `graphs` (`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`,`uuid`) values ('1691','F5 BIG-IP: Mount point [{#PART.NAME}]: Blocks','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ed63eb409eb2497bb9dc7721ac789022');
INSERT INTO `graphs` (`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`,`uuid`) values ('1692','F5 BIG-IP: Host [{#HOST.ID}]: Memory','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3414dd36b37e434f9c28eacc0e8c58b9');
INSERT INTO `graphs` (`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`,`uuid`) values ('1693','F5 BIG-IP: Host [{#HOST.ID}]: Swap','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4b7815c72f264209b288c019541a09e6');
INSERT INTO `graphs` (`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`,`uuid`) values ('1694','F5 BIG-IP: Module [{#MODULE.NAME}] resource usage ratio','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','cfc1606bfbdd40b095620e32e646e2fd');
INSERT INTO `graphs` (`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`,`uuid`) values ('1695','F5 BIG-IP: Interface [{#IF.NAME}]','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f784ab335a314bd7b328c0fe5053f5f7');
INSERT INTO `graphs` (`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`,`uuid`) values ('1696','F5 BIG-IP: Node [{#NODE.NAME}] network ratio','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','920bf6830fae4d168a3d9fc772a8f25c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1697','F5 BIG-IP: Pool [{#POOL.NAME}] network ratio','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a077af6d72a447a99a35f2daa8b0205e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1698','F5 BIG-IP: Virtual server [{#VSERVER.NAME}] network','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b49ee8a27f634c238317663d7cc9d426');
INSERT INTO `graphs` (`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`,`uuid`) values ('1699','F5 BIG-IP: Virtual server [{#VSERVER.NAME}] usage ratio','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','17d18d4117f943d18873972584f3374e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1700','F5 BIG-IP: TCP/UDP statistics','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','9530ea135466433cb25f73ed78960960');
INSERT INTO `graphs` (`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`,`uuid`) values ('1701','ZYXEL AAM1212-51 / IES-612: ADSL port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','09d34a6f9dd2499b8759e15301eefdb5');
INSERT INTO `graphs` (`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`,`uuid`) values ('1702','ZYXEL AAM1212-51 / IES-612: Ethernet port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4f5b714c04a44fbb9a64399c831b2980');
INSERT INTO `graphs` (`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`,`uuid`) values ('1703','ZYXEL AAM1212-51 / IES-612: "Temperature {#ZYXEL.TEMP.ID}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','00cd199f1e114fcbafbd3dd19c1b2f47');
INSERT INTO `graphs` (`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`,`uuid`) values ('1704','ZYXEL AAM1212-51 / IES-612: Nominal "{#ZYXEL.VOLT.NOMINAL}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','afdd9501f85c4c9f9a81b8f16968990b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1705','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a4b7fd4158464655a71732de5ebc9a9d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1706','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4e20dd0297a94188a6e4032df91432dc');
INSERT INTO `graphs` (`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`,`uuid`) values ('1707','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','c57f41ad6c084a358668e4d7a57b902e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1708','ZYXEL ES3500-8PD: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c114cc7fee5c4c8fa3301db0eb3b60f7');
INSERT INTO `graphs` (`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`,`uuid`) values ('1709','ZYXEL ES3500-8PD: Temperature "{#ZYXEL.TEMP.ID}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a1931b48befb4c76a4d5a7ff6c15cbaf');
INSERT INTO `graphs` (`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`,`uuid`) values ('1710','ZYXEL ES3500-8PD: Nominal "{#ZYXEL.VOLT.NOMINAL}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','94ee588ae558416da5bcf4c199797d93');
INSERT INTO `graphs` (`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`,`uuid`) values ('1711','ZYXEL ES3500-8PD: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','2d266c1cab6e462b89975538acc18266');
INSERT INTO `graphs` (`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`,`uuid`) values ('1712','ZYXEL GS-4012F: Fan #{#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9c17e54a98324a9bb35c3a4234efe55f');
INSERT INTO `graphs` (`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`,`uuid`) values ('1713','ZYXEL GS-4012F: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1cad0c1a40a8472da2edee9cd889e6cf');
INSERT INTO `graphs` (`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`,`uuid`) values ('1714','ZYXEL GS-4012F: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ca2e18634f87486987251a2894eabaa0');
INSERT INTO `graphs` (`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`,`uuid`) values ('1715','ZYXEL GS-4012F: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','3223519ee24947c5a82b584fc3f2dd3d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1716','ZYXEL GS-4012F: Temperature "{#ZYXEL.TEMP.ID}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f2dbed78c1d2440480cff0d1b243a546');
INSERT INTO `graphs` (`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`,`uuid`) values ('1717','ZYXEL GS-4012F: Nominal "{#ZYXEL.VOLT.NOMINAL}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','021bf935acc542d89a0a26120e995671');
INSERT INTO `graphs` (`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`,`uuid`) values ('1718','ZYXEL GS-4012F: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','966ba518f4e045ed98d2edf65df45078');
INSERT INTO `graphs` (`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`,`uuid`) values ('1719','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Packet buffer utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','83573a387ef24596bf7e4171506a9ea5');
INSERT INTO `graphs` (`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`,`uuid`) values ('1720','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c9a9a54478ba46bbb91b4945c977a823');
INSERT INTO `graphs` (`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`,`uuid`) values ('1721','ZYXEL IES-500x: Fan #{#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','79f318a961b5418e888de36f8ffe17e7');
INSERT INTO `graphs` (`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`,`uuid`) values ('1722','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0b72c4f49d434e0c9a7de3a6617511ea');
INSERT INTO `graphs` (`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`,`uuid`) values ('1723','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a98704946d534a06909de85a05d75224');
INSERT INTO `graphs` (`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`,`uuid`) values ('1724','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','184fddf8b22047e6a7ff4c5837642e60');
INSERT INTO `graphs` (`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`,`uuid`) values ('1725','ZYXEL IES-500x: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','cb09087451b3472ab5d04f18c829acc9');
INSERT INTO `graphs` (`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`,`uuid`) values ('1726','ZYXEL IES-500x: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','82fd413110454b88ab811229cc598eeb');
INSERT INTO `graphs` (`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`,`uuid`) values ('1727','ZYXEL IES-500x: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','c4cbf45592f8421eacc85a833509a819');
INSERT INTO `graphs` (`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`,`uuid`) values ('1728','ZYXEL IES-500x: "Temperature Slot {#ZYXEL.SLOT.ID} Sensor: {#ZYXEL.TEMP.ID}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3b8799c609344e749de0da409b666714');
INSERT INTO `graphs` (`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`,`uuid`) values ('1729','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Nominal "{#ZYXEL.VOLT.NOMINAL}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','bf0cfa212f934287b8dd3e405f8d1de3');
INSERT INTO `graphs` (`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`,`uuid`) values ('1730','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Packet buffer utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','fcb46fd73a884e60b1ba3d4e8873bbce');
INSERT INTO `graphs` (`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`,`uuid`) values ('1731','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6c3837433afe4a1cb64038c62743be15');
INSERT INTO `graphs` (`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`,`uuid`) values ('1732','ZYXEL IES-6000: Fan #{#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','48736da52a8947e6a69cef3a9980bfbb');
INSERT INTO `graphs` (`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`,`uuid`) values ('1733','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c85c2345f80448feb2253a10ec16778a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1734','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e8a72d0fe2d745ffbffae11b379297e4');
INSERT INTO `graphs` (`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`,`uuid`) values ('1735','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','60c44917db2045c19efd64718a9f37cf');
INSERT INTO `graphs` (`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`,`uuid`) values ('1736','ZYXEL IES-6000: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','006679b6dfd64b65ad13de41be74783d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1737','ZYXEL IES-6000: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6c545945185743b2929edf1b81fe0872');
INSERT INTO `graphs` (`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`,`uuid`) values ('1738','ZYXEL IES-6000: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','b7085154d7694b9aba49b56bc412d458');
INSERT INTO `graphs` (`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`,`uuid`) values ('1739','ZYXEL IES-6000: "Temperature Slot {#ZYXEL.SLOT.ID} Sensor: {#ZYXEL.TEMP.ID}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8e885ce1061b4400abce9eaad1271ea1');
INSERT INTO `graphs` (`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`,`uuid`) values ('1740','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Nominal "{#ZYXEL.VOLT.NOMINAL}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d7f01a58a08a4403818242a907152f78');
INSERT INTO `graphs` (`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`,`uuid`) values ('1741','ZYXEL IES1248-51: Fan #{#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f8d2136dab70403a98da660bcf4c02a2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1742','ZYXEL IES1248-51: ADSL port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7c9c5ff332394b97a311225de08b6bc6');
INSERT INTO `graphs` (`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`,`uuid`) values ('1743','ZYXEL IES1248-51: Ethernet port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1988adb1e96b423a8df3c55ea2f63d47');
INSERT INTO `graphs` (`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`,`uuid`) values ('1744','ZYXEL IES1248-51: "Temperature {#ZYXEL.TEMP.ID}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a5ec11a8936746c492fcf2e4462c7ca7');
INSERT INTO `graphs` (`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`,`uuid`) values ('1745','ZYXEL IES1248-51: Nominal "{#ZYXEL.VOLT.NOMINAL}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ebbc2726558c4504aa6bd22844d0bc83');
INSERT INTO `graphs` (`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`,`uuid`) values ('1746','ZYXEL MES-3528: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d021344604284e9ca127851ae1cb95ff');
INSERT INTO `graphs` (`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`,`uuid`) values ('1747','ZYXEL MES-3528: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','936c27e914044b0eb31f874995c0571c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1748','ZYXEL MES-3528: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','f50ceeef9c6446a685127383176fe811');
INSERT INTO `graphs` (`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`,`uuid`) values ('1749','ZYXEL MES-3528: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ed8f780aa61845309aebfa522e3e9f3d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1750','ZYXEL MES-3528: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','6a05d499aec2421e9a7e758fba82255a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1751','ZYXEL MES3500-10: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','914bb954a2ef42939825074378d001bc');
INSERT INTO `graphs` (`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`,`uuid`) values ('1752','ZYXEL MES3500-10: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9b6213d6ab0248bd9bfd62a5af0846a7');
INSERT INTO `graphs` (`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`,`uuid`) values ('1753','ZYXEL MES3500-10: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','c209a6e8cdb748978b90584432f0a09e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1754','ZYXEL MES3500-10: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1b5db1876c0a4acf9d45ac26a9739778');
INSERT INTO `graphs` (`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`,`uuid`) values ('1755','ZYXEL MES3500-10: Temperature "{#ZYXEL.TEMP.ID}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0c7b7b235f174e048bd3da37d1ed0913');
INSERT INTO `graphs` (`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`,`uuid`) values ('1756','ZYXEL MES3500-10: Nominal "{#ZYXEL.VOLT.NOMINAL}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','909d64e8063647de90f9fd61375c40a9');
INSERT INTO `graphs` (`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`,`uuid`) values ('1757','ZYXEL MES3500-10: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','d44501ff36e1430da2080397868bb8aa');
INSERT INTO `graphs` (`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`,`uuid`) values ('1758','ZYXEL MES3500-24: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2b07fe7c9bd14177b8cc8c05e3975ac9');
INSERT INTO `graphs` (`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`,`uuid`) values ('1759','ZYXEL MES3500-24: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b4c385f72ca243c8a7681c8220229d8d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1760','ZYXEL MES3500-24: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','ae845a9a10204c40a1a044002f5b1a72');
INSERT INTO `graphs` (`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`,`uuid`) values ('1761','ZYXEL MES3500-24: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','14b916383368427cad794b92d5d706e9');
INSERT INTO `graphs` (`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`,`uuid`) values ('1762','ZYXEL MES3500-24: Temperature "{#ZYXEL.TEMP.ID}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5e06e88aca5b492aa9c623e4ef727b5d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1763','ZYXEL MES3500-24: Nominal "{#ZYXEL.VOLT.NOMINAL}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','40f7ab2435d345279b8a7a52bad06dcd');
INSERT INTO `graphs` (`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`,`uuid`) values ('1764','ZYXEL MES3500-24: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','ae7d968e6ec942efb4e0b20fd75a5eac');
INSERT INTO `graphs` (`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`,`uuid`) values ('1765','ZYXEL MGS-3712: Fan #{#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','06d4f886b788464fad9f0da91d78b0e4');
INSERT INTO `graphs` (`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`,`uuid`) values ('1766','ZYXEL MGS-3712: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b2bed2a4ab7b42119009f4aabd979656');
INSERT INTO `graphs` (`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`,`uuid`) values ('1767','ZYXEL MGS-3712: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','489edc6b24844d8cb5c718a8a4d45a3c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1768','ZYXEL MGS-3712: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','1466f28d9f014bb39396cda181630fc4');
INSERT INTO `graphs` (`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`,`uuid`) values ('1769','ZYXEL MGS-3712: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2d432abf28354f4193d93b21bc5f1507');
INSERT INTO `graphs` (`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`,`uuid`) values ('1770','ZYXEL MGS-3712: Temperature "{#ZYXEL.TEMP.ID}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','952122594bf14cad9ce00e202209388a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1771','ZYXEL MGS-3712: Nominal "{#ZYXEL.VOLT.NOMINAL}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','67b6c6c6085e45cbbb58fb93c1b6eb2f');
INSERT INTO `graphs` (`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`,`uuid`) values ('1772','ZYXEL MGS-3712: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','21c2da2f53e44f6a8b3fc722e415b4c8');
INSERT INTO `graphs` (`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`,`uuid`) values ('1773','ZYXEL MGS-3712F: Fan #{#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','09b10e607e14466d8c49512955f6f30e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1774','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6d6da920b3b841d2a348016bfa4fd529');
INSERT INTO `graphs` (`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`,`uuid`) values ('1775','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','337c2059cb87491fbacae5690da55ca7');
INSERT INTO `graphs` (`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`,`uuid`) values ('1776','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','3e75d1f6271943eaaf19644716fe4e40');
INSERT INTO `graphs` (`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`,`uuid`) values ('1777','ZYXEL MGS-3712F: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1ea36937222d40b0a714b47fb0fceb36');
INSERT INTO `graphs` (`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`,`uuid`) values ('1778','ZYXEL MGS-3712F: Temperature "{#ZYXEL.TEMP.ID}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','75294455e2ce4c2cb902c6b58549c8d8');
INSERT INTO `graphs` (`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`,`uuid`) values ('1779','ZYXEL MGS-3712F: Nominal "{#ZYXEL.VOLT.NOMINAL}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','fd954391176a47728eec01caed2234b5');
INSERT INTO `graphs` (`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`,`uuid`) values ('1780','ZYXEL MGS-3712F: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','85bd11f116ef4e3b9695dc783c625f05');
INSERT INTO `graphs` (`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`,`uuid`) values ('1781','ZYXEL MES3500-24S: Fan #{#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ed81cba771d34db3b50262ff0bbc73b4');
INSERT INTO `graphs` (`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`,`uuid`) values ('1782','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','86f5f836fba94de9aed70cf58c6cf1d4');
INSERT INTO `graphs` (`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`,`uuid`) values ('1783','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f9f04b1fffeb49d3995957c026a5de5b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1784','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','a9d922236e12416a85f07c7caff3e3cb');
INSERT INTO `graphs` (`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`,`uuid`) values ('1785','ZYXEL MES3500-24S: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e5e5d83e9f9e429fb51ff79245335065');
INSERT INTO `graphs` (`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`,`uuid`) values ('1786','ZYXEL MES3500-24S: Temperature "{#ZYXEL.TEMPDESCRIPTION}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c238ae64f1ca4e948b36cb423669c864');
INSERT INTO `graphs` (`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`,`uuid`) values ('1787','ZYXEL MES3500-24S: Nominal "{#ZYXEL.DESCRIPTION}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a94a590eed624cac8ece4ff2956419d8');
INSERT INTO `graphs` (`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`,`uuid`) values ('1788','ZYXEL MES3500-24S: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','055310b8a5c94d94aeeaf75ff5d2de55');
INSERT INTO `graphs` (`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`,`uuid`) values ('1789','ZYXEL MGS3520-28x: Fan #{#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8599554de97e46e2bb7d3575d97f9453');
INSERT INTO `graphs` (`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`,`uuid`) values ('1790','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a7a2aec27f0045eba26e86e8cb08853a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1791','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b5446d1f3394422d81ca94dd617d6e95');
INSERT INTO `graphs` (`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`,`uuid`) values ('1792','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','7314e57ea54c42d2ac6a341943204c04');
INSERT INTO `graphs` (`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`,`uuid`) values ('1793','ZYXEL MGS3520-28x: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5d6e873606684351a68d649a8f7cd5d4');
INSERT INTO `graphs` (`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`,`uuid`) values ('1794','ZYXEL MGS3520-28x: Temperature "{#ZYXEL.TEMPDESCRIPTION}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','96fcc6df9a324347a550dd0df84ac15a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1795','ZYXEL MGS3520-28x: Nominal "{#ZYXEL.DESCRIPTION}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','74f0c4aba0db42869c1797c0631b7d03');
INSERT INTO `graphs` (`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`,`uuid`) values ('1796','ZYXEL MGS3520-28x: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','13d4a0c9f81647c8ba9f712617c45402');
INSERT INTO `graphs` (`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`,`uuid`) values ('1797','ZYXEL XGS-4728F: Fan #{#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','96aed516a0254866b0d0b43095b8a5b7');
INSERT INTO `graphs` (`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`,`uuid`) values ('1798','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','18c2bd830caa49308459d64ef85cfc71');
INSERT INTO `graphs` (`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`,`uuid`) values ('1799','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a8c07b7801d64c24bfedf10ea193f697');
INSERT INTO `graphs` (`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`,`uuid`) values ('1800','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','37e8454c3fa04f88be36d875638110c6');
INSERT INTO `graphs` (`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`,`uuid`) values ('1801','ZYXEL XGS-4728F: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','109ff7d258524b82bdbf4662e612795b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1802','ZYXEL XGS-4728F: Temperature "{#ZYXEL.TEMP.ID}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1068300241bb430b8c51048303922e55');
INSERT INTO `graphs` (`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`,`uuid`) values ('1803','ZYXEL XGS-4728F: Nominal "{#ZYXEL.VOLT.NOMINAL}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','560c37d174e741a6a2590d17574123ed');
INSERT INTO `graphs` (`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`,`uuid`) values ('1804','ZYXEL XGS-4728F: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','dfd68fb23bf349068005997de6b0515a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1805','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d5e5f60602cc41ba8e0b79a63644bf08');
INSERT INTO `graphs` (`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`,`uuid`) values ('1806','Travis: Repo [{#SLUG}]: Builds','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b13d986ae110458a80d74f32bb267ed7');
INSERT INTO `graphs` (`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`,`uuid`) values ('1807','InfluxDB: [{#ORG_NAME}]: Query requests','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','925d6b2f79b2479ab031118d795811fb');
INSERT INTO `graphs` (`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`,`uuid`) values ('1808','InfluxDB: [{#ORG_NAME}]: Query traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','01921ee545c540bd8c0d51429bcce11b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1809','InfluxDB: Tasks runs','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','dd6b62b969594ddbb82895a8f8fc5623');
INSERT INTO `graphs` (`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`,`uuid`) values ('1811','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','473d7e39becc4c56bef6687d3e197dd8');
INSERT INTO `graphs` (`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`,`uuid`) values ('1812','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','38deeca2121f4698834d9f8c984be4bf');
INSERT INTO `graphs` (`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`,`uuid`) values ('1813','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','bff3cf781de1430d81a20a71a055e35d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1814','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','852cd213b59640f09cd62303fa4c0d9d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1816','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','5154454506aa483b8683638345709c0f');
INSERT INTO `graphs` (`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`,`uuid`) values ('1817','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7cbf0b34c2154834b34f25ef18c70748');
INSERT INTO `graphs` (`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`,`uuid`) values ('1818','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','ec4206d099ad41b79c2c65f1c684a8ae');
INSERT INTO `graphs` (`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`,`uuid`) values ('1819','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','5ba0ddfa9e4444bca1221b9ba2f833ce');
INSERT INTO `graphs` (`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`,`uuid`) values ('1821','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','d8eb7cb6b67348c0911756a89bfffe99');
INSERT INTO `graphs` (`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`,`uuid`) values ('1822','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','15c4b3a688e4485ca2ab76a990e43ce1');
INSERT INTO `graphs` (`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`,`uuid`) values ('1823','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','ee6f2f6f632a4e04849e64251bcd7eeb');
INSERT INTO `graphs` (`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`,`uuid`) values ('1824','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','0d8972aadf0f4e19bb93ce9bed6723fa');
INSERT INTO `graphs` (`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`,`uuid`) values ('1826','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','4bd6447ec4e54e45b12893adf4a92bc3');
INSERT INTO `graphs` (`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`,`uuid`) values ('1827','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3048504b46b7470ca54ef976cf973411');
INSERT INTO `graphs` (`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`,`uuid`) values ('1828','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','7fb9b943f8ce49a88f48095d24f9efda');
INSERT INTO `graphs` (`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`,`uuid`) values ('1829','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','7c3a67d410e44adc9ec226715dcbe88d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1831','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','0c73159da76a4b61bbc7c8116af9d7fc');
INSERT INTO `graphs` (`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`,`uuid`) values ('1832','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','43b1fee8802d46ed838db745daff8be1');
INSERT INTO `graphs` (`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`,`uuid`) values ('1833','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','8a71589751e94467973c7f52af45f440');
INSERT INTO `graphs` (`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`,`uuid`) values ('1834','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','745d4ccb40fc47299aa0fce0d534ff7d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1836','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','7ad0424405ea4a1d9e9269d3f4c70fdd');
INSERT INTO `graphs` (`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`,`uuid`) values ('1837','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','687618f8d1c74502b6cf0fa90bd634a1');
INSERT INTO `graphs` (`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`,`uuid`) values ('1838','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','07380c601c834361b6ccec958d64a643');
INSERT INTO `graphs` (`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`,`uuid`) values ('1839','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','e1b400bae7da404e8e808dfeb54bc2ce');
INSERT INTO `graphs` (`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`,`uuid`) values ('1841','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','29baf5d5e81846de97fd1dd470d55583');
INSERT INTO `graphs` (`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`,`uuid`) values ('1842','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','610a541bb14d4913bf2da6621c34e374');
INSERT INTO `graphs` (`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`,`uuid`) values ('1843','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','d9d444f2cfd5498d857d74aed0678406');
INSERT INTO `graphs` (`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`,`uuid`) values ('1844','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','4ed5a17cbf3b46d2a68d6e29a71147c9');
INSERT INTO `graphs` (`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`,`uuid`) values ('1846','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','01ef650a4abb4a1f9ff59f507ba15528');
INSERT INTO `graphs` (`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`,`uuid`) values ('1847','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','594db09a7c024245a5eead39296b3c2c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1848','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','2cd5ec756edb4c189a003a1cfa4f5cb4');
INSERT INTO `graphs` (`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`,`uuid`) values ('1849','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','4e79fe4d16424ead95e1d5ea25382120');
INSERT INTO `graphs` (`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`,`uuid`) values ('1851','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','58020e927fcb4113a0339a9f2458f711');
INSERT INTO `graphs` (`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`,`uuid`) values ('1852','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e95ab4bef8354ea2bd66e421a2c63460');
INSERT INTO `graphs` (`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`,`uuid`) values ('1853','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','f724179d92fa44b4adc25a2808522fc6');
INSERT INTO `graphs` (`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`,`uuid`) values ('1854','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','0dc1b1e2370940a2974ce4e00c2aa27e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1856','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','3370f88daa5947b3b23514c98202cd48');
INSERT INTO `graphs` (`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`,`uuid`) values ('1857','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','cfccdd73e3b246c9b2b4f9b242964699');
INSERT INTO `graphs` (`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`,`uuid`) values ('1858','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','719dcbc5a85e4d3e99a7906e8b9ee28d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1859','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','b7c290c65f1b4af7b22627824350bb21');
INSERT INTO `graphs` (`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`,`uuid`) values ('1861','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','1695386899b54ad5b5b3e9268f323801');
INSERT INTO `graphs` (`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`,`uuid`) values ('1862','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6c9bc962ee1040c8b1c0a3b3d2353b61');
INSERT INTO `graphs` (`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`,`uuid`) values ('1863','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','90c58f1e92914a32a4189f0029a5a5fc');
INSERT INTO `graphs` (`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`,`uuid`) values ('1864','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','7b8e1c45b866470fb94ead58b60e852c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1866','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','13064af8424048bca2e925c4bc050700');
INSERT INTO `graphs` (`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`,`uuid`) values ('1867','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2d92488ff5874fbb9b13065df937a315');
INSERT INTO `graphs` (`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`,`uuid`) values ('1868','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','379200cf5dd64fcf8986b18d9ecc4cd5');
INSERT INTO `graphs` (`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`,`uuid`) values ('1869','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','9bda3903ad57436e831cfabedbf8295f');
INSERT INTO `graphs` (`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`,`uuid`) values ('1871','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','9be53d92e0294bd095ee45b175187503');
INSERT INTO `graphs` (`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`,`uuid`) values ('1872','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','512de641fee14826b8c0f7c3d16e176f');
INSERT INTO `graphs` (`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`,`uuid`) values ('1873','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','a58c6530ebe04f54ad52abca0629ca3d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1874','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','68f84aa153e54bc29be28a81d70f99e8');
INSERT INTO `graphs` (`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`,`uuid`) values ('1876','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','f5d0c8258423411d86e9daf1a14418b1');
INSERT INTO `graphs` (`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`,`uuid`) values ('1877','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8099417bb7b44a5da8e0d7d05fc3c6e4');
INSERT INTO `graphs` (`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`,`uuid`) values ('1878','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','1ef7e8e42a954db4b7293a080a00bc9d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1879','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','f06f354dfd2b4ca881efdece1f8ed149');
INSERT INTO `graphs` (`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`,`uuid`) values ('1881','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','f3bb0b7df1904d698e1ec9e5c6b1254d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1882','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','68b35ab5b6314e7c919cbcb7a6a5983c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1883','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','a3cb6c6211b745469b2e42d7f10d2fda');
INSERT INTO `graphs` (`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`,`uuid`) values ('1884','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','c16ba646be654f1ba85a9fa5955e15de');
INSERT INTO `graphs` (`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`,`uuid`) values ('1886','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','f4d14cb6ccdd44ccb5e43d449baa8d65');
INSERT INTO `graphs` (`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`,`uuid`) values ('1887','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5cdf7db912de4880950b91606659976a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1888','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','3923f122da254a36b7c89cf96d85dc02');
INSERT INTO `graphs` (`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`,`uuid`) values ('1889','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','f68d99090e0c421288deee125650eba0');
INSERT INTO `graphs` (`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`,`uuid`) values ('1891','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','7af56504cad442c68f801cbfff17952b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1892','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','efcb23bafcdc48f1b64090c437c18799');
INSERT INTO `graphs` (`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`,`uuid`) values ('1893','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','e4d5a4fb28804aacb284c58ce3b8cc09');
INSERT INTO `graphs` (`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`,`uuid`) values ('1894','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','468ff969bf854e30b118c517caa85d82');
INSERT INTO `graphs` (`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`,`uuid`) values ('1896','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','acbf5458996a46428574c0a90df0958b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1897','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','52ae7c9217d64fc89821768bb16df21c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1898','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','712ea2b949224520bcde3bc03428d21e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1899','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','c8af9bb0fa0f47d1a1ee3a36d346483f');
INSERT INTO `graphs` (`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`,`uuid`) values ('1901','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','aec4c254cd944a1f8ac6bc911e6ab77c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1902','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','15a4213a18ae489f8f11aa948a075e68');
INSERT INTO `graphs` (`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`,`uuid`) values ('1903','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','7924cfc798e048918fc496133557bea2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1904','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','cc0355295c4545f08e2499321ac6a787');
INSERT INTO `graphs` (`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`,`uuid`) values ('1906','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','00464f2edb3f47cdbd60b0801ffeff2a');
INSERT INTO `graphs` (`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`,`uuid`) values ('1907','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2c2721344ed74562912a7c7526f84314');
INSERT INTO `graphs` (`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`,`uuid`) values ('1908','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','9a733d07f30643769872935987fbbc14');
INSERT INTO `graphs` (`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`,`uuid`) values ('1909','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','ae3d51bc351f4da7a17565928cfe6e0b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1911','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','57470db47a7543ae906b1a567f31b0df');
INSERT INTO `graphs` (`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`,`uuid`) values ('1912','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6223ee7e40ed4b0ebfeb64a48d8401b9');
INSERT INTO `graphs` (`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`,`uuid`) values ('1913','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','71de1b81db87432bbd66eafdc123e767');
INSERT INTO `graphs` (`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`,`uuid`) values ('1914','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','a586c06ba9ad4299a4f26cde5c14478d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1916','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','cd07ebaa31e84139be82ee2f018656ca');
INSERT INTO `graphs` (`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`,`uuid`) values ('1917','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3691a1aa1379413ea25118524890d3be');
INSERT INTO `graphs` (`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`,`uuid`) values ('1918','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','94e91ae74ed048fdaee82856f500f28b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1919','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','bc108737d87842138ef5e53d50950722');
INSERT INTO `graphs` (`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`,`uuid`) values ('1921','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','5add7060d926465da9707003ba6e69e7');
INSERT INTO `graphs` (`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`,`uuid`) values ('1922','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b19bb2dd693444b8b1cfc5b3e53ef8e8');
INSERT INTO `graphs` (`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`,`uuid`) values ('1923','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','ae2d847c53c14a619217843f10c9695e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1924','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','1db45fd5a6664e6e954ba08a305faaa4');
INSERT INTO `graphs` (`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`,`uuid`) values ('1926','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','355ef2168d414a4ebce1cc754e9f53e8');
INSERT INTO `graphs` (`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`,`uuid`) values ('1927','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','97b0559a53d64cd1aa0e0dfd1720c15b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1928','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','228fb326e5f94c4f8df119f610be831f');
INSERT INTO `graphs` (`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`,`uuid`) values ('1929','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','33edde1a5a2946b9aef99e55e6bea4fa');
INSERT INTO `graphs` (`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`,`uuid`) values ('1931','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','22d8af79856d488a947501bb351d3431');
INSERT INTO `graphs` (`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`,`uuid`) values ('1932','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','895e92a3343f40a393cfae577148bc73');
INSERT INTO `graphs` (`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`,`uuid`) values ('1933','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','f93f28ba09be4fadac28a304b1050c00');
INSERT INTO `graphs` (`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`,`uuid`) values ('1934','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','1dae33c6c10340ffa674ad86d3eded57');
INSERT INTO `graphs` (`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`,`uuid`) values ('1936','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','50d486acb91e4c3d801caa22b74d46d3');
INSERT INTO `graphs` (`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`,`uuid`) values ('1937','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','badd6b852574497db920e2fd65c42cf6');
INSERT INTO `graphs` (`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`,`uuid`) values ('1938','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','5d51c5894f3745c58fbd83fe408b38f8');
INSERT INTO `graphs` (`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`,`uuid`) values ('1939','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','24acb886bb9343bcaf125e58419e67a9');
INSERT INTO `graphs` (`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`,`uuid`) values ('1941','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','8153f104b6d54637a07df2a38faade77');
INSERT INTO `graphs` (`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`,`uuid`) values ('1942','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e95b0db7e92b43fa8bd9c357027c4fcb');
INSERT INTO `graphs` (`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`,`uuid`) values ('1943','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','3ce597bd788841829b006adfc17034a2');
INSERT INTO `graphs` (`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`,`uuid`) values ('1944','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','2fbbbe5c78d14824a1a2234769e4e687');
INSERT INTO `graphs` (`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`,`uuid`) values ('1946','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','f44de058c1ac47a182203d3ebb97e1ad');
INSERT INTO `graphs` (`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`,`uuid`) values ('1947','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','417c7efde3d44f27894d47ac2f6ce025');
INSERT INTO `graphs` (`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`,`uuid`) values ('1948','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','f85b7f7ab6a4454ebd777f5b8cc00900');
INSERT INTO `graphs` (`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`,`uuid`) values ('1949','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','4c949d698efc46ca8b4db208fbffbf79');
INSERT INTO `graphs` (`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`,`uuid`) values ('1951','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','c23045bfa1ef442490ecc2d3c9120018');
INSERT INTO `graphs` (`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`,`uuid`) values ('1952','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5e4a66d716554e8da4f9d85f5a5ba138');
INSERT INTO `graphs` (`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`,`uuid`) values ('1953','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','17e8f43e55f74e8a9d648003153eae55');
INSERT INTO `graphs` (`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`,`uuid`) values ('1954','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','00dee725174d41488e156ed07764be15');
INSERT INTO `graphs` (`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`,`uuid`) values ('1956','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','b14c854295504c2fbbb0481bebd5db00');
INSERT INTO `graphs` (`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`,`uuid`) values ('1957','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0e692d0869b14d84a2aafd12aa424d29');
INSERT INTO `graphs` (`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`,`uuid`) values ('1958','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','a6a6dffb9d24445aaf4de5d0c5f386e0');
INSERT INTO `graphs` (`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`,`uuid`) values ('1959','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','7a77d8dfe791413ea16222e4159c7ef4');
INSERT INTO `graphs` (`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`,`uuid`) values ('1961','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','1d1ce73e95dc4ad9b20d19010e524344');
INSERT INTO `graphs` (`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`,`uuid`) values ('1962','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d1ff1951fe214755acf84088b44616cd');
INSERT INTO `graphs` (`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`,`uuid`) values ('1963','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','b3730be1499f4aa094217acb7a84148f');
INSERT INTO `graphs` (`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`,`uuid`) values ('1964','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','c03e4e6d267d4529a68fd193f9f4923d');
INSERT INTO `graphs` (`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`,`uuid`) values ('1966','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','cc63e64026b24e5ea1324ecc1049f5e9');
INSERT INTO `graphs` (`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`,`uuid`) values ('1967','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c0d3b6d20f554a9c8014d9cf9d0f9055');
INSERT INTO `graphs` (`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`,`uuid`) values ('1968','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','2a6511d5067b4377936d922609939d6c');
INSERT INTO `graphs` (`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`,`uuid`) values ('1969','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','9e157495c5ef4961beff72c4f500c2a1');
INSERT INTO `graphs` (`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`,`uuid`) values ('1971','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','b98fcdee076b497e84bb8613d2697b6e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1972','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1a664f38671a469793eab15850dda3a5');
INSERT INTO `graphs` (`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`,`uuid`) values ('1973','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','35d96744ce7f47e292c09f85c114c549');
INSERT INTO `graphs` (`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`,`uuid`) values ('1974','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','a7d7e7246e46435ea688b55a66652dfd');
INSERT INTO `graphs` (`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`,`uuid`) values ('1976','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','ff17c33d5a8743f8aff8a2b2a0ab314e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1977','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','72f1bbbe190e48d8a45c4b2bf13e9f19');
INSERT INTO `graphs` (`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`,`uuid`) values ('1978','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','d2c0b6dba77f4a9b99dc4e3693227514');
INSERT INTO `graphs` (`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`,`uuid`) values ('1979','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','8704623362864987b9f699a2c8fff1d0');
INSERT INTO `graphs` (`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`,`uuid`) values ('1981','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','e1da6708532c4582a7404ccce8e5f1c0');
INSERT INTO `graphs` (`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`,`uuid`) values ('1982','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1bc26beb83ed42d1a5818082ca17e1e5');
INSERT INTO `graphs` (`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`,`uuid`) values ('1983','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','c64a26d248d344d5bf8f64d7265fd7f9');
INSERT INTO `graphs` (`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`,`uuid`) values ('1984','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','443e4ca5308d4e839fce0b7fc1da4932');
INSERT INTO `graphs` (`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`,`uuid`) values ('1986','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','ee998c9684054b1299161b15b243729f');
INSERT INTO `graphs` (`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`,`uuid`) values ('1987','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','bc3bcbb9babe4f3d8a27de335ab2352e');
INSERT INTO `graphs` (`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`,`uuid`) values ('1988','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','15c1c509c03540449b26d7ae9ce99cdd');
INSERT INTO `graphs` (`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`,`uuid`) values ('1989','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','f74fdb024a054e26881e5e90804f9fee');
INSERT INTO `graphs` (`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`,`uuid`) values ('1991','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','ae1265d4feac404f874035b440c0704b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1992','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ab60feb4736e4a50988b1d721e1caacf');
INSERT INTO `graphs` (`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`,`uuid`) values ('1993','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','34f9709c906243f0bc22557121a55f03');
INSERT INTO `graphs` (`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`,`uuid`) values ('1994','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','94e38f4bb3614d12917ffd17a0d544a1');
INSERT INTO `graphs` (`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`,`uuid`) values ('1996','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','7fe947fc9d9e480a8d0fa0eac5c893ba');
INSERT INTO `graphs` (`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`,`uuid`) values ('1997','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a48cfa3fb1e443448d7b2a2d5f93ac3b');
INSERT INTO `graphs` (`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`,`uuid`) values ('1998','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','9f02d5eaea4c4b7cbc3211d80841fa58');
INSERT INTO `graphs` (`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`,`uuid`) values ('1999','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','ebe8e5c8da874fdebb1f42864ca6b3e2');
INSERT INTO `graphs` (`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`,`uuid`) values ('2001','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','9334f197c1014cdcbc079895467af3dc');
INSERT INTO `graphs` (`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`,`uuid`) values ('2002','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','847089ea1c2245b198b3a176b2d27fab');
INSERT INTO `graphs` (`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`,`uuid`) values ('2003','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','3e3f290cf0054136af76e39706d521ad');
INSERT INTO `graphs` (`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`,`uuid`) values ('2004','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','6b29037c9b0143c883790da6cc9c2a28');
INSERT INTO `graphs` (`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`,`uuid`) values ('2006','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','d49245850291438f9eb06c588a2f28cd');
INSERT INTO `graphs` (`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`,`uuid`) values ('2007','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f1de2d4d636e4fafa6ec513988f3eac2');
INSERT INTO `graphs` (`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`,`uuid`) values ('2008','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','1c6cfa9ff24044cebe60949a50aae44d');
INSERT INTO `graphs` (`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`,`uuid`) values ('2009','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','a444848444fc4c06bdec32a9bf7fcf17');
INSERT INTO `graphs` (`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`,`uuid`) values ('2011','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','28b696fbb7ce4cf4941932ceb04700cb');
INSERT INTO `graphs` (`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`,`uuid`) values ('2012','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','360063285da04ed29523562086c769c4');
INSERT INTO `graphs` (`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`,`uuid`) values ('2013','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','baa457270f57426da7d271df998f8c83');
INSERT INTO `graphs` (`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`,`uuid`) values ('2014','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','8a6c7b5e3e4d4cc580e3f323fbc623b4');
INSERT INTO `graphs` (`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`,`uuid`) values ('2016','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','32c572f1f36545299c21cb9a3b46365f');
INSERT INTO `graphs` (`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`,`uuid`) values ('2017','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','00e2b89ffee645e4ac3d95a4219d63ab');
INSERT INTO `graphs` (`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`,`uuid`) values ('2018','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','eafa602b8f4a4d6883fcd65555057190');
INSERT INTO `graphs` (`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`,`uuid`) values ('2019','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','5a5125a0a5554baa842e1f41fcba86cb');
INSERT INTO `graphs` (`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`,`uuid`) values ('2021','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','9fc1b8a3fef146648e8e34ad5be8f5e3');
INSERT INTO `graphs` (`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`,`uuid`) values ('2022','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7972b1fd0ffc46148f1a8f27bf4ac1b6');
INSERT INTO `graphs` (`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`,`uuid`) values ('2023','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','2854850c8c14498b9256fd64027455d6');
INSERT INTO `graphs` (`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`,`uuid`) values ('2024','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','ee6f5b2202f14999b71f5713fdbf15fa');
INSERT INTO `graphs` (`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`,`uuid`) values ('2026','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','2567831d8429484887c61f9606cee3aa');
INSERT INTO `graphs` (`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`,`uuid`) values ('2027','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3faa534c23d641348044d56d871307f0');
INSERT INTO `graphs` (`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`,`uuid`) values ('2028','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','15a9b60d61574e46a0684cf9ec893347');
INSERT INTO `graphs` (`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`,`uuid`) values ('2029','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','36790292e1ba4b8db9cd6f9420e8ef06');
INSERT INTO `graphs` (`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`,`uuid`) values ('2031','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','7e342bf419d54f9081e0447dbd3d40ae');
INSERT INTO `graphs` (`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`,`uuid`) values ('2032','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c2d5d609a81e41c0b16f1537239761cd');
INSERT INTO `graphs` (`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`,`uuid`) values ('2033','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','a552f5e0c0cc44cfaf344d581d522885');
INSERT INTO `graphs` (`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`,`uuid`) values ('2034','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','9d12a71550b440b4b4b9574a523b5b5b');
INSERT INTO `graphs` (`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`,`uuid`) values ('2036','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','36b36fdd03504844b5df446a542abc10');
INSERT INTO `graphs` (`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`,`uuid`) values ('2037','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e00f330b8e514a87b6d08c298b7d03f6');
INSERT INTO `graphs` (`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`,`uuid`) values ('2038','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','2bcf421df683424fa9bff018ec7135b7');
INSERT INTO `graphs` (`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`,`uuid`) values ('2039','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','00b301e0452b4c43abdba945529c667d');
INSERT INTO `graphs` (`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`,`uuid`) values ('2041','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','150c76d3d44a4025904f4b0b57ff37be');
INSERT INTO `graphs` (`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`,`uuid`) values ('2042','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','aa8108d017b74c4e81bc5bb4c659ff18');
INSERT INTO `graphs` (`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`,`uuid`) values ('2043','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','edc8dcfebff945e6b3131aa3d12e497c');
INSERT INTO `graphs` (`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`,`uuid`) values ('2044','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','a927d6e3b4f7401281acf19a4f83dae9');
INSERT INTO `graphs` (`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`,`uuid`) values ('2046','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','1646642b07fd4dcaa99e1ad91cf34b52');
INSERT INTO `graphs` (`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`,`uuid`) values ('2047','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d96cc35ffec845a0bfdc742d9c789011');
INSERT INTO `graphs` (`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`,`uuid`) values ('2048','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','afe07c8019d5460f9624577328d8c3a6');
INSERT INTO `graphs` (`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`,`uuid`) values ('2049','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','c80620de3cdf4e42820898df686e2935');
INSERT INTO `graphs` (`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`,`uuid`) values ('2051','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','37edfa6825394b30b3742eac201a3a58');
INSERT INTO `graphs` (`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`,`uuid`) values ('2052','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','709b83b504d5409091a71fc4351f06f7');
INSERT INTO `graphs` (`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`,`uuid`) values ('2053','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','b5b0436352614bf1ab0f84731dc4f627');
INSERT INTO `graphs` (`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`,`uuid`) values ('2054','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','1df82d3644a941869ea2fe632982e2aa');
INSERT INTO `graphs` (`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`,`uuid`) values ('2056','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','2c545076c11b4783b2bd951b38a58618');
INSERT INTO `graphs` (`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`,`uuid`) values ('2057','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3336863bfebf4480aeac28755c770954');
INSERT INTO `graphs` (`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`,`uuid`) values ('2058','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','277327e948d24186a0723bc0fe4debf4');
INSERT INTO `graphs` (`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`,`uuid`) values ('2059','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','e05047c0d48043218995a5342d291480');
INSERT INTO `graphs` (`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`,`uuid`) values ('2061','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','8dd00c34191d4daab61d4b9b9abe76af');
INSERT INTO `graphs` (`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`,`uuid`) values ('2062','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','70a56aeed598461e8d41997d056b83fd');
INSERT INTO `graphs` (`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`,`uuid`) values ('2063','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','a7e05919813b4ebb9fc0e4535d342807');
INSERT INTO `graphs` (`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`,`uuid`) values ('2064','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','60d570c2447d418f90d0a64842f970b0');
INSERT INTO `graphs` (`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`,`uuid`) values ('2066','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','308c726fa1ac419490b645f68bde63de');
INSERT INTO `graphs` (`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`,`uuid`) values ('2067','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3282106194e14f4e935d10a97d85a536');
INSERT INTO `graphs` (`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`,`uuid`) values ('2068','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','9d68b0bd14fb432bb730cf1c69098dd7');
INSERT INTO `graphs` (`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`,`uuid`) values ('2069','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','0840a833bec844fcbbbda3398b8f2d81');
INSERT INTO `graphs` (`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`,`uuid`) values ('2071','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','d8f0a7f28ec647eebdeb1db630e63249');
INSERT INTO `graphs` (`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`,`uuid`) values ('2072','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','955940cc271f48b89a14caebc9cd7adf');
INSERT INTO `graphs` (`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`,`uuid`) values ('2073','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','37977ee583bd41ba95521c2907457999');
INSERT INTO `graphs` (`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`,`uuid`) values ('2074','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','91052db6edb34215856dfe7479114987');
INSERT INTO `graphs` (`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`,`uuid`) values ('2076','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','29d6c58dd153437a9a62c95fdaa0d016');
INSERT INTO `graphs` (`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`,`uuid`) values ('2077','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0d03f46cbb0c44b99e6369bd256a6cfb');
INSERT INTO `graphs` (`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`,`uuid`) values ('2078','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','43b64db05b454192adb237afed0b7b02');
INSERT INTO `graphs` (`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`,`uuid`) values ('2079','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','7416ed490d2649a19930540ed8bfff7d');
INSERT INTO `graphs` (`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`,`uuid`) values ('2080','Gateway [{#NAME}]: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d8d9b176f439436ba6fe69ec8bc6409e');
INSERT INTO `graphs` (`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`,`uuid`) values ('2081','Link [{#NAME}]:[{#IP}]: Best loss','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d117ffc6c5f245099209ca3a471cc63f');
INSERT INTO `graphs` (`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`,`uuid`) values ('2082','Link [{#NAME}]:[{#IP}]: Bytes summary','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','951febf02caa4d4aa1417f8b8d11d89c');
INSERT INTO `graphs` (`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`,`uuid`) values ('2083','Link [{#NAME}]:[{#IP}]: Packets summary','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c656365e5c77496fac4c0a7d80d6cfd3');
INSERT INTO `graphs` (`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`,`uuid`) values ('2084','SDWAN Peer [{#NAME}]:[{#TYPE}]: {#EDGE.ID}: Path overview','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','36438b5369794ea8a9147ec7675bc1a6');
INSERT INTO `graphs` (`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`,`uuid`) values ('2085','Kubernetes API: ["{#VERB}"] Requests latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a974cb068f184b7385bf5eb2e4ba084a');
INSERT INTO `graphs` (`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`,`uuid`) values ('2086','Kubernetes API: HTTP requests rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','749ed49ec625449db0a345d639f7d8fd');
INSERT INTO `graphs` (`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`,`uuid`) values ('2087','Kubernetes Controller Manager: ["{#NAME}"] Workqueue add rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','40113b2f3fe04e9dbfd4d6dc204be7ce');
INSERT INTO `graphs` (`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`,`uuid`) values ('2088','Kubernetes Controller Manager: ["{#NAME}"] Workqueue depth','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','99bd6b4904964738a2ba7f165cc78d9c');
INSERT INTO `graphs` (`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`,`uuid`) values ('2089','Kubernetes Controller Manager: ["{#NAME}"] Workqueue latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4f823f87056b42d29a284f8e2614b76f');
INSERT INTO `graphs` (`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`,`uuid`) values ('2090','Kubernetes Controller Manager: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','23af35d1d9af40e2ace1915ab8df7eec');
INSERT INTO `graphs` (`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`,`uuid`) values ('2091','Kubernetes Controller Manager: REST Client query rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','908af34b10044af9b028e5e024eb89b3');
INSERT INTO `graphs` (`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`,`uuid`) values ('2092','Kubernetes: [{#OP_TYPE}] Operations latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3a32d1b4253b48078279b24fdf8f3476');
INSERT INTO `graphs` (`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`,`uuid`) values ('2093','Node [{#NAME}] Allocatable: Pod limits','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','646efb7b19f5408dba2f3fe2d6a92213');
INSERT INTO `graphs` (`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`,`uuid`) values ('2094','Kubernetes Scheduler: ["{#RESULT}"] E2e latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','be0cb738e2a346f8a24cabf0f76a6e6a');
INSERT INTO `graphs` (`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`,`uuid`) values ('2096','Kubernetes Scheduler: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','dd98f209541449f4a476718c46a0e721');
INSERT INTO `graphs` (`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`,`uuid`) values ('2097','Kubernetes Scheduler: REST Client query rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fd57f67690424eb6a2e5bee610c305ad');
INSERT INTO `graphs` (`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`,`uuid`) values ('2099','Kubernetes Scheduler: Scheduling attempts rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4ee3ca9852a2440ea100e21291ac9103');
INSERT INTO `graphs` (`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`,`uuid`) values ('2102','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound packet filter traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4679de2da218418e9564f0cc5a13e31a');
INSERT INTO `graphs` (`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`,`uuid`) values ('2103','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3acc01b7ad11441ca2ea4dab13274efa');
INSERT INTO `graphs` (`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`,`uuid`) values ('2104','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound packet filter traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','58b7aa7618274c9e9285d4c0b63c2ca8');
INSERT INTO `graphs` (`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`,`uuid`) values ('2110','PFSense: Packet filter reason codes','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','0',NULL,NULL,'0','0','cd45a63b52d7470db6b4574027433c8e');
INSERT INTO `graphs` (`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`,`uuid`) values ('2113','Remote Zabbix proxy: Zabbix internal queues','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','40e3574cc0ca4877b331156ff7d1a941');
INSERT INTO `graphs` (`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`,`uuid`) values ('2114','{#FSNAME}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','347d802fcd114cad882a2299eb2b02de');
INSERT INTO `graphs` (`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`,`uuid`) values ('2115','{#MEMNAME}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','ce1f2938b1da4b1c9d78b99e9e1e3435');
INSERT INTO `graphs` (`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`,`uuid`) values ('2120','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','f55018667c2242c5a9bb969bbcaf4770');
INSERT INTO `graphs` (`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`,`uuid`) values ('2123','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','58eba6a5a57f49608fb62b9d270e98c6');
INSERT INTO `graphs` (`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`,`uuid`) values ('2124','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ecce7b4f1bf844239328705e46958c85');
INSERT INTO `graphs` (`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`,`uuid`) values ('2125','{#FSNAME}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','9d5287bdf6cb4bbb9cada4c24b9ecd17');
INSERT INTO `graphs` (`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`,`uuid`) values ('2126','{#MEMNAME}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','1094490b59674fb58ca36cf6543b3bdb');
INSERT INTO `graphs` (`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`,`uuid`) values ('2127','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','9d75893b596e448e9fe0fb3a851b0ab2');
INSERT INTO `graphs` (`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`,`uuid`) values ('2128','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0ca148aeaadd45b6bd32e9ecde4127df');
INSERT INTO `graphs` (`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`,`uuid`) values ('2129','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','96d099e3a5c142ce8c3bc1e88cb65d5e');
INSERT INTO `graphs` (`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`,`uuid`) values ('2130','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6367b40612f94d9b9a3b2d4276268190');
INSERT INTO `graphs` (`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`,`uuid`) values ('2131','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','569601f45b394cc68ddf75f37c086ec2');
INSERT INTO `graphs` (`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`,`uuid`) values ('2132','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','d999400f4c7c43c7a1f0af7bbc82bd36');
INSERT INTO `graphs` (`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`,`uuid`) values ('2133','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','e9b341d71fde4609b1e38d917042fd3b');
INSERT INTO `graphs` (`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`,`uuid`) values ('2134','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','06183d560def4fcb8ba81469e4d53c67');
INSERT INTO `graphs` (`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`,`uuid`) values ('2135','{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','dd0520d162fe4230900d33472944677f');
INSERT INTO `graphs` (`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`,`uuid`) values ('2136','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','e93fccb08b3a4150b986a54eaccbd1c5');
INSERT INTO `graphs` (`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`,`uuid`) values ('2137','{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','9b18855195cc45a8a84550544bc6d7e7');
INSERT INTO `graphs` (`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`,`uuid`) values ('2138','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','171ff5fe2b1543aa869ab56f800b52a5');
INSERT INTO `graphs` (`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`,`uuid`) values ('2139','{#SNMPVALUE}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','9e61506351cf4f16be21dcbed8875293');
INSERT INTO `graphs` (`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`,`uuid`) values ('2140','{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','bf9a1faae91243b18133486b0421314b');
INSERT INTO `graphs` (`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`,`uuid`) values ('2141','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','fc6dd0ab86e7496d9b43103c13ba6a65');
INSERT INTO `graphs` (`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`,`uuid`) values ('2142','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','8c8379b8b21048d4b2ba3781a2392b69');
INSERT INTO `graphs` (`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`,`uuid`) values ('2143','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2841f46964a74c56b5d16233c924bc58');
INSERT INTO `graphs` (`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`,`uuid`) values ('2144','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','688599e428b04777be52f49a860d8ba6');
INSERT INTO `graphs` (`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`,`uuid`) values ('2145','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5742d0a3c579424e951c8b48f626fe4e');
INSERT INTO `graphs` (`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`,`uuid`) values ('2146','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','910004d1f3354f80bf57a36efc1b7156');
INSERT INTO `graphs` (`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`,`uuid`) values ('2147','Interface {#IFDESCR}: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','22241d9edde64631a50cea85c11f4433');
INSERT INTO `graphs` (`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`,`uuid`) values ('2148','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','220602812c8e4507a236a945fe3ec539');
INSERT INTO `graphs` (`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`,`uuid`) values ('2149','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','79cf619c4c4947a2be6bd0d1440d3ca9');
INSERT INTO `graphs` (`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`,`uuid`) values ('2150','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2a0d7c12dc4146399cda6b80a1b75f26');
INSERT INTO `graphs` (`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`,`uuid`) values ('2151','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','148e429035204c199b146850c94dae71');
INSERT INTO `graphs` (`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`,`uuid`) values ('2152','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','bdb09ef524a34b65aaee2c574cd77bde');
INSERT INTO `graphs` (`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`,`uuid`) values ('2153','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f8bbfd7785b54c6c8d48bb23340748c9');
INSERT INTO `graphs` (`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`,`uuid`) values ('2154','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e717bd84cf5f4d02b80537b10483af81');
INSERT INTO `graphs` (`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`,`uuid`) values ('2155','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','625ca63a5c744a3896af126018dccfd1');
INSERT INTO `graphs` (`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`,`uuid`) values ('2156','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0594fca19f084adaaab11ab876ab303a');
INSERT INTO `graphs` (`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`,`uuid`) values ('2157','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a6b64d432afc465d9816a55de2cb4a79');
INSERT INTO `graphs` (`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`,`uuid`) values ('2158','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','acb45b1477594e53a0fbc1af74c0ef2d');
INSERT INTO `graphs` (`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`,`uuid`) values ('2159','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','877800605f9f473e93ca08ea1e0fa25d');
INSERT INTO `graphs` (`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`,`uuid`) values ('2160','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','244bb4d31f8240959e1496d3ed88ca95');
INSERT INTO `graphs` (`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`,`uuid`) values ('2161','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','93da4c226ca84d9ca20e4496b2e2201f');
INSERT INTO `graphs` (`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`,`uuid`) values ('2162','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','18284f037cd04993b3eb236ab3616781');
INSERT INTO `graphs` (`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`,`uuid`) values ('2163','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','84a67bfc0ec444dfaba6eef5e651c244');
INSERT INTO `graphs` (`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`,`uuid`) values ('2164','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c78f1a22b8a540e2a0d2b2f5672d4810');
INSERT INTO `graphs` (`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`,`uuid`) values ('2165','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3e3ce3b1ea2f40eb9d32244326247a16');
INSERT INTO `graphs` (`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`,`uuid`) values ('2166','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','939d3dd20774413386677ddee8eab5eb');
INSERT INTO `graphs` (`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`,`uuid`) values ('2167','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a4e49eeebc8e4129b586f92ee8a0c51e');
INSERT INTO `graphs` (`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`,`uuid`) values ('2168','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','490128f059d24904ab5e6ef0454ea3d4');
INSERT INTO `graphs` (`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`,`uuid`) values ('2169','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','748a89b01346486f8241d73272e2c669');
INSERT INTO `graphs` (`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`,`uuid`) values ('2170','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b9376c60bb114fc4b6c018d068dd6d7b');
INSERT INTO `graphs` (`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`,`uuid`) values ('2171','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4262ac5550524146acac664b0bd65f3f');
INSERT INTO `graphs` (`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`,`uuid`) values ('2172','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5781cd59d9864144817fbe3a258d9cb6');
INSERT INTO `graphs` (`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`,`uuid`) values ('2173','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','cfa3941d81bb423bb0d282cd87ffc599');
INSERT INTO `graphs` (`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`,`uuid`) values ('2174','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','defce00a7d8e47abbf3f3126d138c6bb');
INSERT INTO `graphs` (`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`,`uuid`) values ('2175','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','35c60c8ed9ad40b3ae44021cb50649c6');
INSERT INTO `graphs` (`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`,`uuid`) values ('2176','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8063d2bd97224c4794ac9af17a724f85');
INSERT INTO `graphs` (`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`,`uuid`) values ('2177','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b88abc1dd12d46ce86ca491699c6bddf');
INSERT INTO `graphs` (`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`,`uuid`) values ('2178','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6d1f89e29e334ce885510f21e327cec1');
INSERT INTO `graphs` (`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`,`uuid`) values ('2179','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','447b17f420a143e0ace94d75858e28fd');
INSERT INTO `graphs` (`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`,`uuid`) values ('2180','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7b2f6006d6a64efe96366c1dfa220f1e');
INSERT INTO `graphs` (`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`,`uuid`) values ('2181','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5921d8fc6ee94d1d9d8f96ba34215c1c');
INSERT INTO `graphs` (`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`,`uuid`) values ('2182','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2db7e672a25341008a6928fca2bb0c81');
INSERT INTO `graphs` (`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`,`uuid`) values ('2183','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a99459605b774ff19684b24f62b1c5fd');
INSERT INTO `graphs` (`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`,`uuid`) values ('2184','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ff833b0eb23a4e5d9ae1eb534d7ef0f3');
INSERT INTO `graphs` (`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`,`uuid`) values ('2185','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1dde48f425814a8391c26327dab3d9e3');
INSERT INTO `graphs` (`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`,`uuid`) values ('2186','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d87bbff565484898a444d2015bcefd56');
INSERT INTO `graphs` (`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`,`uuid`) values ('2187','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','aaaa92c62d944ee9a09f600af7ec1e03');
INSERT INTO `graphs` (`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`,`uuid`) values ('2188','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','aeecc40859234efd954770c664faabc4');
INSERT INTO `graphs` (`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`,`uuid`) values ('2189','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f0e06f6423b4486f8d56c7fb7cf210d6');
INSERT INTO `graphs` (`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`,`uuid`) values ('2190','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7352b3dabe82417b9dc31bafdd28e555');
INSERT INTO `graphs` (`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`,`uuid`) values ('2191','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','53a5526a801b4c01853a7bcfac8245be');
INSERT INTO `graphs` (`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`,`uuid`) values ('2192','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','977ce93695aa468b88f4cf33d2fdc79d');
INSERT INTO `graphs` (`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`,`uuid`) values ('2193','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8a0efdf4dfd94a398a09d2df1037802d');
INSERT INTO `graphs` (`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`,`uuid`) values ('2194','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6f6c52b8c09140358b7c058d397903d0');
INSERT INTO `graphs` (`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`,`uuid`) values ('2195','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','20e634246d814e808e00940e9606607e');
INSERT INTO `graphs` (`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`,`uuid`) values ('2196','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d23b57867776455cb272851a73ea227f');
INSERT INTO `graphs` (`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`,`uuid`) values ('2197','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','73c5e6335b24436f82f141c0c0f4fec5');
INSERT INTO `graphs` (`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`,`uuid`) values ('2198','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9133b7a0e09d4f248dfb8b6a0f4dabd5');
INSERT INTO `graphs` (`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`,`uuid`) values ('2199','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e5f8b95c8bbc479ebad65e967591956b');
INSERT INTO `graphs` (`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`,`uuid`) values ('2200','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','50f1876239d24cfc93478d4839fa2956');
INSERT INTO `graphs` (`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`,`uuid`) values ('2201','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0b818f0991254d05b2e7434e1a4e3f31');
INSERT INTO `graphs` (`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`,`uuid`) values ('2202','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','66f5c80600ec4220bf365e5f138948a1');
INSERT INTO `graphs` (`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`,`uuid`) values ('2203','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','29c240aec2bf440c9e69751f16c6aec8');
INSERT INTO `graphs` (`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`,`uuid`) values ('2204','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6744532b53474f93944f103e71a61612');
INSERT INTO `graphs` (`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`,`uuid`) values ('2205','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','37f70e8457bc4c8c8578bb63d9243843');
INSERT INTO `graphs` (`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`,`uuid`) values ('2206','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e68556274dda430aa646c2c299d26c6a');
INSERT INTO `graphs` (`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`,`uuid`) values ('2207','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6c0e720cb0f24bf4a8cfbebb2759dde9');
INSERT INTO `graphs` (`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`,`uuid`) values ('2208','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7edcc1da1c1343a094028153e8f74fdb');
INSERT INTO `graphs` (`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`,`uuid`) values ('2209','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','986751c7fdb14537a5b525a0829f3b63');
INSERT INTO `graphs` (`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`,`uuid`) values ('2210','Interface {#IFDESCR}: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','bd2e806179a24ca6bd4b2a8d13810061');
INSERT INTO `graphs` (`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`,`uuid`) values ('2211','Interface {#IFDESCR}: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','756cecebd5e04ffc8f535fa20412734d');
INSERT INTO `graphs` (`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`,`uuid`) values ('2212','Interface {#IFNAME}: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','50ced0f22d9d478eb4b639ef64e242ab');
INSERT INTO `graphs` (`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`,`uuid`) values ('2213','{#DEVNAME}: Disk average waiting time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5e9b35b27b90489390d397758fbfdf64');
INSERT INTO `graphs` (`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`,`uuid`) values ('2214','{#DEVNAME}: Disk read/write rates','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d436d6d5456c44f0a534bf1f681d5039');
INSERT INTO `graphs` (`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`,`uuid`) values ('2215','{#DEVNAME}: Disk utilization and queue','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c42e4045e0974e89a306c57fb188c4fa');
INSERT INTO `graphs` (`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`,`uuid`) values ('2216','{#FSNAME}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','1e0889c551584013acbb97c84ae89d1c');
INSERT INTO `graphs` (`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`,`uuid`) values ('2222','CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4a72646168d545c398c92e09c975a966');
INSERT INTO `graphs` (`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`,`uuid`) values ('2223','CPU usage','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','1',NULL,NULL,'0','0','f217c30162b24c9190785fad1ec83b73');
INSERT INTO `graphs` (`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`,`uuid`) values ('2224','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','668ae470ea33444bb40e3b83b97659c3');
INSERT INTO `graphs` (`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`,`uuid`) values ('2225','Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','f260a63bc3b04c3b80b47f83bb05ed9c');
INSERT INTO `graphs` (`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`,`uuid`) values ('2226','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','bac7a8fb7e014696b54d262bf40e5b12');
INSERT INTO `graphs` (`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`,`uuid`) values ('2227','Processes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fa49531c9c3d4087b2205bed6ed0469f');
INSERT INTO `graphs` (`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`,`uuid`) values ('2228','Swap usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1ca6e2d883114853bd402110c3fd211e');
INSERT INTO `graphs` (`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`,`uuid`) values ('2229','System load','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','1b8cc9470a5040d79090a3e5dfcb0a76');
INSERT INTO `graphs` (`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`,`uuid`) values ('2238','Interface {#IFNAME}: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6e2814a0ef824df7b418bbd86b260181');
INSERT INTO `graphs` (`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`,`uuid`) values ('2239','{#DEVNAME}: Disk average waiting time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','feca6a365b8d49d2a66ff4bfac089fc8');
INSERT INTO `graphs` (`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`,`uuid`) values ('2240','{#DEVNAME}: Disk read/write rates','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b136583f822a4d48a52a17f4bb0d07d9');
INSERT INTO `graphs` (`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`,`uuid`) values ('2241','{#DEVNAME}: Disk utilization and queue','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8863772fb82b49a891ea50cbec5cdd05');
INSERT INTO `graphs` (`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`,`uuid`) values ('2242','{#FSNAME}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','9e2c288e9475446890f7c101214cca8a');
INSERT INTO `graphs` (`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`,`uuid`) values ('2243','CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2e4890b0db694721b1e903ecf01c612c');
INSERT INTO `graphs` (`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`,`uuid`) values ('2244','CPU usage','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','1',NULL,NULL,'0','0','27b4612871004ca282f7d91057150800');
INSERT INTO `graphs` (`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`,`uuid`) values ('2245','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','3bebe4d0071441f4b95170fd0278a4dd');
INSERT INTO `graphs` (`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`,`uuid`) values ('2246','Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','a4d67a1cd253431faaedf888dad90e72');
INSERT INTO `graphs` (`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`,`uuid`) values ('2247','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','4aaf22daf96b4b29ad3a2e935f4e2d4c');
INSERT INTO `graphs` (`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`,`uuid`) values ('2248','Processes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','60078a7b24494a41a3595650b113ee1d');
INSERT INTO `graphs` (`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`,`uuid`) values ('2249','Swap usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a70c0c13381a4fb68eaeb66226ffe2bb');
INSERT INTO `graphs` (`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`,`uuid`) values ('2250','System load','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','d47109e977ec4362a3f3bb5e7708b48a');
INSERT INTO `graphs` (`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`,`uuid`) values ('2251','CPU usage{#SINGLETON}','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','1',NULL,NULL,'2','0','fe9835f96dfd4912933e1c3db7943fdf');
INSERT INTO `graphs` (`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`,`uuid`) values ('2252','CPU utilization{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','22a742f192bb42a3b80e62b214eab9a8');
INSERT INTO `graphs` (`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`,`uuid`) values ('2253','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c09b8ad9356741fcb9560446b50d8cf0');
INSERT INTO `graphs` (`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`,`uuid`) values ('2254','{#DEVNAME}: Disk read/write rates','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','76f7583a5256463a82d60c0fef3c6a7f');
INSERT INTO `graphs` (`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`,`uuid`) values ('2255','{#FSNAME}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','10878869ac0641bc96b9898820a4f3ea');
INSERT INTO `graphs` (`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`,`uuid`) values ('2256','CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ff743a3e32e7497b9b98173b3611687f');
INSERT INTO `graphs` (`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`,`uuid`) values ('2257','Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','16b11e6079864c71a7d068276a8e8650');
INSERT INTO `graphs` (`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`,`uuid`) values ('2258','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','5cd95425d8fe4705833995ccfb484c66');
INSERT INTO `graphs` (`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`,`uuid`) values ('2259','Swap usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','421c99e9076c4f24931206255577c988');
INSERT INTO `graphs` (`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`,`uuid`) values ('2260','System load','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','feff7234e6cc420e94acc3c0dab0a61e');
INSERT INTO `graphs` (`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`,`uuid`) values ('2261','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5cbfad75590746718cf4eabbeeea43f3');
INSERT INTO `graphs` (`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`,`uuid`) values ('2262','{#DEVNAME}: Disk average queue length','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6d37f811023b4f65a071b1deb9b1b8ec');
INSERT INTO `graphs` (`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`,`uuid`) values ('2263','{#DEVNAME}: Disk average waiting time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f54bdfb7e0c7471f80b8ca599bc4f904');
INSERT INTO `graphs` (`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`,`uuid`) values ('2264','{#DEVNAME}: Disk read/write rates','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','339a20ba0d3f4ba4a05aee0611124819');
INSERT INTO `graphs` (`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`,`uuid`) values ('2265','{#DEVNAME}: Disk utilization and queue','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','bc71dc24634742028a5c8384dcaa0f32');
INSERT INTO `graphs` (`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`,`uuid`) values ('2266','{#FSLABEL}({#FSNAME}): Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','f80e47b8d4db4c378f25056c02b72382');
INSERT INTO `graphs` (`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`,`uuid`) values ('2267','CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','02ec085b49614b30a45287a7e88a8da1');
INSERT INTO `graphs` (`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`,`uuid`) values ('2268','CPU usage','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','1',NULL,NULL,'0','0','0c2db401fe574282ab0beb6955049330');
INSERT INTO `graphs` (`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`,`uuid`) values ('2269','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','5de711b16f3845659289483f6deb4761');
INSERT INTO `graphs` (`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`,`uuid`) values ('2270','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','1b86c8f6fe3343e6838c5d02f4f64b2b');
INSERT INTO `graphs` (`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`,`uuid`) values ('2271','Swap usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','518f6bcdcefc4cf493244798ccd09ec1');
INSERT INTO `graphs` (`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`,`uuid`) values ('2272','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1181f5ffedb643d4953c9fd5df14a21e');
INSERT INTO `graphs` (`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`,`uuid`) values ('2273','{#DEVNAME}: Disk average queue length','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e249ca7462a14508bdbdbf748102015a');
INSERT INTO `graphs` (`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`,`uuid`) values ('2274','{#DEVNAME}: Disk average waiting time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','790265fa66e14e97badadfce392ef8df');
INSERT INTO `graphs` (`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`,`uuid`) values ('2275','{#DEVNAME}: Disk read/write rates','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','024945537eab4facb18483b6f3ce8d3e');
INSERT INTO `graphs` (`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`,`uuid`) values ('2276','{#DEVNAME}: Disk utilization and queue','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','70de55df5604410d8a67cdca31957b03');
INSERT INTO `graphs` (`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`,`uuid`) values ('2277','{#FSLABEL}({#FSNAME}): Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','8d0581d07b92406aa9f007f6d03ad24e');
INSERT INTO `graphs` (`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`,`uuid`) values ('2278','CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','133a9930f45b448abbf35fe3a00d10c6');
INSERT INTO `graphs` (`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`,`uuid`) values ('2279','CPU usage','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','1',NULL,NULL,'0','0','2a650f6de7804835a9a02db021649fca');
INSERT INTO `graphs` (`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`,`uuid`) values ('2280','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','0865f60b2cd845aea2f2daad93c3bf83');
INSERT INTO `graphs` (`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`,`uuid`) values ('2281','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','f09c95d4637140c89a7b43165906db96');
INSERT INTO `graphs` (`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`,`uuid`) values ('2282','Swap usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','441075d89a7045c283a7da9dd74e2a1b');
INSERT INTO `graphs` (`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`,`uuid`) values ('2283','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','616105fbea704079b1257feb370367a5');
INSERT INTO `graphs` (`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`,`uuid`) values ('2284','{#FSNAME}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','2c1a1d995f8646dd82739a56e411ccf4');
INSERT INTO `graphs` (`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`,`uuid`) values ('2285','{#MEMNAME}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','864bc9c487984f68b4da443b8af6c448');
INSERT INTO `graphs` (`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`,`uuid`) values ('2286','CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','1be13ea06a404fc88ced6c6a972290c8');
INSERT INTO `graphs` (`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`,`uuid`) values ('2287','GarbageCollector: Garbage Collector {#JMXNAME} collections per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4794916f3ad84955a5406f9c6aea2792');
INSERT INTO `graphs` (`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`,`uuid`) values ('2288','Memory pool: Memory pool {#JMXNAME}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','70552d982dfa4455ac8c5c5c847f6248');
INSERT INTO `graphs` (`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`,`uuid`) values ('2289','Kubernetes Scheduler: [{#SINGLETON}]Binding latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1c8da2cb32ae4dfaa0d16cff0cecfc43');
INSERT INTO `graphs` (`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`,`uuid`) values ('2290','Kubernetes Scheduler: [{#SINGLETON}]Scheduling algorithm duration','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','94607df22a1c49e5aa290fd50e9c2238');
INSERT INTO `graphs` (`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`,`uuid`) values ('2291','[{#LOCATION}, {#COUNTRY}]: Atmospheric pressure','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','62ba0562f77d46e0b04a387d82c1a51e');
INSERT INTO `graphs` (`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`,`uuid`) values ('2292','[{#LOCATION}, {#COUNTRY}]: Rain volume','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6196267a6d974ef2acbebdb9b33f6b71');
INSERT INTO `graphs` (`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`,`uuid`) values ('2293','[{#LOCATION}, {#COUNTRY}]: Snow volume','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','27b47b89606e43f5a4180e9dde29d7d6');
INSERT INTO `graphs` (`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`,`uuid`) values ('2294','[{#LOCATION}, {#COUNTRY}]: Temperature','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3561e247237548f3a26c702924d05894');
INSERT INTO `graphs` (`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`,`uuid`) values ('2295','DB {#DBNAME}: Queries','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','98f4c88e15b742fb80e1ecd8aeab970d');
INSERT INTO `graphs` (`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`,`uuid`) values ('2296','DB {#DBNAME}: Slow queries','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','918a6fd8bd0e49c98f759778f44ab606');
INSERT INTO `graphs` (`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`,`uuid`) values ('2297','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: CPU usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','faad4c399e6047ea9fd95ffea40ce511');
INSERT INTO `graphs` (`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`,`uuid`) values ('2298','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Disk usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2a850f53e5064ee3b4fb99aa191d411d');
INSERT INTO `graphs` (`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`,`uuid`) values ('2299','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','54e79a1949ed40988a3901acf21bc3af');
INSERT INTO `graphs` (`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`,`uuid`) values ('2300','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Network usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c6f2970f22294c7d8de7548a177596de');
INSERT INTO `graphs` (`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`,`uuid`) values ('2301','Proxmox: Node [{#NODE.NAME}]: CPU usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6c4fddd2a12d4e87987e47611e4a925f');
INSERT INTO `graphs` (`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`,`uuid`) values ('2302','Proxmox: Node [{#NODE.NAME}]: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0d59c329f12b494ebc8ff458a6b4714a');
INSERT INTO `graphs` (`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`,`uuid`) values ('2303','Proxmox: Node [{#NODE.NAME}]: Network usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f07213b83a964aac9f51e2857936bef2');
INSERT INTO `graphs` (`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`,`uuid`) values ('2304','Proxmox: Node [{#NODE.NAME}]: Root filesystem usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f24340ea09324dd594f84c140f2797cc');
INSERT INTO `graphs` (`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`,`uuid`) values ('2305','Proxmox: Node [{#NODE.NAME}]: Swap usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f47c4c734737403d97a630f5f10b7d84');
INSERT INTO `graphs` (`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`,`uuid`) values ('2306','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: CPU usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','602ae1d9d65149ada7aa56cc2d7d9309');
INSERT INTO `graphs` (`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`,`uuid`) values ('2307','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Network usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','391421ce25c74c14abe35723965f3357');
INSERT INTO `graphs` (`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`,`uuid`) values ('2308','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8522e98f30104f67bfdd1aff8b94d280');
INSERT INTO `graphs` (`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`,`uuid`) values ('2310','Proxmox: Storage [{#NODE.NAME}/{#STORAGE.NAME}]: Usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','726dbf7dd13b40c8b240cb58f753a9bf');
INSERT INTO `graphs` (`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`,`uuid`) values ('2311','TrueNAS: CPU usage{#SINGLETON}','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','1',NULL,NULL,'2','0','ef6bd369fc964266a4324f314d5dbdc2');
INSERT INTO `graphs` (`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`,`uuid`) values ('2312','TrueNAS: CPU utilization{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','11de3174f0e24212bedd1ef81429db9d');
INSERT INTO `graphs` (`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`,`uuid`) values ('2313','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','bff9db9816624e2e89975084afa60323');
INSERT INTO `graphs` (`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`,`uuid`) values ('2314','TrueNAS: Dataset [{#DATASET_NAME}]: Space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','38637298316543bdb9f2c291285f8077');
INSERT INTO `graphs` (`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`,`uuid`) values ('2315','TrueNAS: Pool [{#POOLNAME}]: Read/write rates','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8c2ed6ea842941b3b306efe87df844be');
INSERT INTO `graphs` (`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`,`uuid`) values ('2316','TrueNAS: Pool [{#POOLNAME}]: Space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','497e60420e314ec3a3de904042ae4756');
INSERT INTO `graphs` (`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`,`uuid`) values ('2317','TrueNAS: ZFS volume [{#ZVOL_NAME}]: Space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','18746b4b3cfb4d1baf06df7b05a047f9');
INSERT INTO `graphs` (`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`,`uuid`) values ('2318','TrueNAS: [{#DEVNAME}]: Read/write rates','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c6e277b4a9e949df9e7bfd6adefc65b5');
INSERT INTO `graphs` (`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`,`uuid`) values ('2319','TrueNAS: ARC hit ratio','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','0',NULL,NULL,'0','0','621f703356cb4522bef8f1c89732c9cb');
INSERT INTO `graphs` (`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`,`uuid`) values ('2320','TrueNAS: CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','977c98430b1241988206b56b3fc40091');
INSERT INTO `graphs` (`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`,`uuid`) values ('2321','TrueNAS: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','5c95f63eaaf049cab4884b2785c5d382');
INSERT INTO `graphs` (`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`,`uuid`) values ('2322','TrueNAS: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','a36f52864942457894638adef660a775');
INSERT INTO `graphs` (`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`,`uuid`) values ('2323','TrueNAS: Swap usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','bd67954025d145c8a0eb2f21d53a52f5');
INSERT INTO `graphs` (`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`,`uuid`) values ('2324','TrueNAS: System load','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','f7a0b78f1f814e2b94cec941168eafaa');
INSERT INTO `graphs` (`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`,`uuid`) values ('2325','Consul: Catalog operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2411147c0f4a425394a64fcd3dc231f0');
INSERT INTO `graphs` (`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`,`uuid`) values ('2326','Consul: File descriptors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','929c2527abaf447f9909003e6a43d799');
INSERT INTO `graphs` (`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`,`uuid`) values ('2327','Consul: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6a987c1499f145ff8b68281f4fef3424');
INSERT INTO `graphs` (`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`,`uuid`) values ('2328','Consul: Serf member operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ba792478fe3140709a06a852560307fd');
INSERT INTO `graphs` (`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`,`uuid`) values ('2329','Envoy Proxy: [{#CLUSTER_NAME}] HTTP requests','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a1ecd91cb0a44c39923d4b806aae4039');
INSERT INTO `graphs` (`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`,`uuid`) values ('2330','Envoy Proxy: [{#CLUSTER_NAME}] Upstream traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','46f4d9b835274a7dafdda64563f482a9');
INSERT INTO `graphs` (`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`,`uuid`) values ('2331','Envoy Proxy: [{#CLUSTER_NAME}] Downstream traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','71b114ee64d34d74a32b18e2f7d25d8c');
INSERT INTO `graphs` (`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`,`uuid`) values ('2332','Envoy Proxy: Clusters','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','9cf06c8169944ee2974499a4f2764903');
INSERT INTO `graphs` (`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`,`uuid`) values ('2333','Envoy Proxy: Clusters operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6453eec1ce9141b0a505d278f842ea1c');
INSERT INTO `graphs` (`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`,`uuid`) values ('2334','Envoy Proxy: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0ac65256c79e4eb992afae8fdb7035c9');
INSERT INTO `graphs` (`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`,`uuid`) values ('2335','Envoy Proxy: Filesystem operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d06a958289aa4c7a84851f5c9333e746');
INSERT INTO `graphs` (`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`,`uuid`) values ('2336','Envoy Proxy: Listener manager','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d3d8733f333942849eadabb86049b5bf');
INSERT INTO `graphs` (`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`,`uuid`) values ('2337','Envoy Proxy: Listeners operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','90ef97d5dfd44349bc08c89acc0b7ec3');
INSERT INTO `graphs` (`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`,`uuid`) values ('2338','Envoy Proxy: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ca3646c18e79468d884af478afab7b0e');
INSERT INTO `graphs` (`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`,`uuid`) values ('2339','CockroachDB: Storage [{#STORE}]: Bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4cd837e243f14174a6d259b359e4f90d');
INSERT INTO `graphs` (`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`,`uuid`) values ('2340','CockroachDB: Storage [{#STORE}]: Capacity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f5054466f5834071ad9e3bd50764ba29');
INSERT INTO `graphs` (`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`,`uuid`) values ('2341','CockroachDB: Storage [{#STORE}]: Queue processing failures','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e6763dafd3c54e0787eae612921e35f8');
INSERT INTO `graphs` (`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`,`uuid`) values ('2342','CockroachDB: Storage [{#STORE}]: Ranges','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0c4977666e5e4af1b5e1f840284fe7d0');
INSERT INTO `graphs` (`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`,`uuid`) values ('2343','CockroachDB: Storage [{#STORE}]: Replica quiescence','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','811d38ab09494628ae6ac36aa54c1795');
INSERT INTO `graphs` (`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`,`uuid`) values ('2344','CockroachDB: CPU Time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4706e010045343cfa5a6d211ec6c0efd');
INSERT INTO `graphs` (`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`,`uuid`) values ('2345','CockroachDB: Disk: r/w, rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5d194c6e35c64bfd88a801668bc5ac49');
INSERT INTO `graphs` (`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`,`uuid`) values ('2346','CockroachDB: Disk: r/w IOPS, rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7808c1bcbf8b4672b5d8a7c26ec97745');
INSERT INTO `graphs` (`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`,`uuid`) values ('2347','CockroachDB: File descriptors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1206fc26b6c342b9a85b4a9ea4b1f8b5');
INSERT INTO `graphs` (`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`,`uuid`) values ('2348','CockroachDB: KV transactions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','919586b301534623b16d5aadef0de5a6');
INSERT INTO `graphs` (`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`,`uuid`) values ('2349','CockroachDB: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0bc7a266933e407c85e903cfb6b2b7c9');
INSERT INTO `graphs` (`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`,`uuid`) values ('2350','CockroachDB: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4f02255476334f79a9373c1966a1b787');
INSERT INTO `graphs` (`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`,`uuid`) values ('2351','CockroachDB: SQL: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b6f9d3cda4a5451da3d90107960e91b7');
INSERT INTO `graphs` (`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`,`uuid`) values ('2352','CockroachDB: SQL statements','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','76bfd0743c63481db9793e3c55181bc9');
INSERT INTO `graphs` (`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`,`uuid`) values ('2353','CockroachDB: SQL transactions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','53151cd0e61d487485f8d201c6881d59');
INSERT INTO `graphs` (`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`,`uuid`) values ('2354','CockroachDB: Time series','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0c313bd2041942649c1f1c441e812388');
INSERT INTO `graphs` (`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`,`uuid`) values ('2355','Controller [{#CONTROLLER.ID}]: Cache: Write utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','93aeac1a193e43d3a93a3892bd26b0ff');
INSERT INTO `graphs` (`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`,`uuid`) values ('2356','Controller [{#CONTROLLER.ID}]: Cache usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a7432b24cd834aa0be9dec3935641dfb');
INSERT INTO `graphs` (`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`,`uuid`) values ('2357','Controller [{#CONTROLLER.ID}]: Controller CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','fca4007d4dd1491dbceba1644b50e1b5');
INSERT INTO `graphs` (`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`,`uuid`) values ('2358','Controller [{#CONTROLLER.ID}]: Data transfer rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0b2598db582546308d092c9e7889e698');
INSERT INTO `graphs` (`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`,`uuid`) values ('2359','Controller [{#CONTROLLER.ID}]: Disk operations rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0793bb861e874a2c8e7e60a4c40bc34e');
INSERT INTO `graphs` (`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`,`uuid`) values ('2360','Disk group [{#NAME}]: Average response time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1d5b8a7246a845678a938da75b7e32cc');
INSERT INTO `graphs` (`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`,`uuid`) values ('2361','Disk group [{#NAME}]: Data transfer rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b718bd4950f64abb892ba3bfe738ad49');
INSERT INTO `graphs` (`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`,`uuid`) values ('2362','Disk group [{#NAME}]: Disk operations rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','55d7871c891446b086860f8c861fc3f7');
INSERT INTO `graphs` (`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`,`uuid`) values ('2363','Disk group [{#NAME}]: Space utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','234be7ebf50e42f6a098662f1fffba03');
INSERT INTO `graphs` (`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`,`uuid`) values ('2364','Fan [{#DURABLE.ID}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','44c2c9cdec6247cf8f4d0e2bd7e0e372');
INSERT INTO `graphs` (`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`,`uuid`) values ('2365','Pool [{#NAME}]: Space utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','001c0a805d3a40bf86632b498883519d');
INSERT INTO `graphs` (`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`,`uuid`) values ('2366','Power supply [{#DURABLE.ID}]: Temperature','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','538040f8853648058e10830ddc2cba70');
INSERT INTO `graphs` (`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`,`uuid`) values ('2367','Volume [{#NAME}]: Cache usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','20d2047e3f024e5197362375601415eb');
INSERT INTO `graphs` (`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`,`uuid`) values ('2368','Volume [{#NAME}]: Data transfer rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0b11191f26464e79add18302e245a9cc');
INSERT INTO `graphs` (`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`,`uuid`) values ('2369','Volume [{#NAME}]: Disk operations rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','133ef12b0cbc49a1a37c594f5c498643');
INSERT INTO `graphs` (`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`,`uuid`) values ('2370','Volume [{#NAME}]: Space utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f8c4f07925404bc0b1e3ada45358580a');
INSERT INTO `graphs` (`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`,`uuid`) values ('2371','Controller [{#CONTROLLER.ID}]: Cache: Write utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a0bac1256ecf42fb9e980a49e52f008e');
INSERT INTO `graphs` (`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`,`uuid`) values ('2372','Controller [{#CONTROLLER.ID}]: Cache usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2b3343a641304872a82c84e1b918f8b3');
INSERT INTO `graphs` (`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`,`uuid`) values ('2373','Controller [{#CONTROLLER.ID}]: Controller CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ed2117af47d94be9bed0632a0b662a25');
INSERT INTO `graphs` (`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`,`uuid`) values ('2374','Controller [{#CONTROLLER.ID}]: Data transfer rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','27b53c540cae45da9b2e13cbbb1ab821');
INSERT INTO `graphs` (`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`,`uuid`) values ('2375','Controller [{#CONTROLLER.ID}]: Disk operations rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ce3c794ac9424be5a104b812680cc77b');
INSERT INTO `graphs` (`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`,`uuid`) values ('2376','Disk group [{#NAME}]: Average response time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e1f7331965524670b8c44c0b0d8eb99b');
INSERT INTO `graphs` (`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`,`uuid`) values ('2377','Disk group [{#NAME}]: Data transfer rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1354b947316a46be8dc696c29f408a6b');
INSERT INTO `graphs` (`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`,`uuid`) values ('2378','Disk group [{#NAME}]: Disk operations rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f7f556011add4cd6b0fe8e4545c607a0');
INSERT INTO `graphs` (`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`,`uuid`) values ('2379','Disk group [{#NAME}]: Space utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','495a941dc4ef45e8b60d6a94bb1fbdcd');
INSERT INTO `graphs` (`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`,`uuid`) values ('2380','Fan [{#DURABLE.ID}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1def9fd4627d4552bf34e8ce35f3cd46');
INSERT INTO `graphs` (`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`,`uuid`) values ('2381','Pool [{#NAME}]: Space utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','93151c5760fb405498d1df049185ffe7');
INSERT INTO `graphs` (`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`,`uuid`) values ('2382','Volume [{#NAME}]: Cache usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8905b826b774473991f74b927716322e');
INSERT INTO `graphs` (`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`,`uuid`) values ('2383','Volume [{#NAME}]: Data transfer rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1bd9df7bab9c4f3a978810c82cc61f42');
INSERT INTO `graphs` (`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`,`uuid`) values ('2384','Volume [{#NAME}]: Disk operations rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','24dfc70c5d724f13ac1cec6b229c7fe9');
INSERT INTO `graphs` (`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`,`uuid`) values ('2385','Volume [{#NAME}]: Space utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5a316cdf8c6f42acb3cb7a158861145a');
INSERT INTO `graphs` (`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`,`uuid`) values ('2386','CPG [{#NAME}]: CPG space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c5d1e864f752465eae8822c06d635aeb');
INSERT INTO `graphs` (`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`,`uuid`) values ('2387','CPG [{#NAME}]: Number of virtual volumes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1ef5d5b0090c4f168da6f842972af688');
INSERT INTO `graphs` (`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`,`uuid`) values ('2388','CPG [{#NAME}]: Raw space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4c15694d488f42d6bc5b9caf4fe9e049');
INSERT INTO `graphs` (`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`,`uuid`) values ('2389','CPG [{#NAME}]: Snapshot administration space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0ffb02e0b9144e0583489ca1d1c8d2dd');
INSERT INTO `graphs` (`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`,`uuid`) values ('2390','CPG [{#NAME}]: Snapshot data space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d64484828dda48cbbf7dc0f8a9c2f34d');
INSERT INTO `graphs` (`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`,`uuid`) values ('2391','CPG [{#NAME}]: User data space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','dd590898a3644130b897f57e8837cb3a');
INSERT INTO `graphs` (`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`,`uuid`) values ('2392','Volume [{#NAME}]: Administrative space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8c7139d2b7d94773ad6ef813c7fa59c9');
INSERT INTO `graphs` (`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`,`uuid`) values ('2393','Volume [{#NAME}]: Capacity efficiency: Ratio','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c74b88d4e61d4264b804965854eb1da1');
INSERT INTO `graphs` (`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`,`uuid`) values ('2394','Volume [{#NAME}]: Capacity efficiency: Space saved','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d2a75ebb20c94eb4ab5e6a9b13d1d439');
INSERT INTO `graphs` (`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`,`uuid`) values ('2395','Volume [{#NAME}]: Snapshot space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7214605009354fd382368ec8699d5474');
INSERT INTO `graphs` (`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`,`uuid`) values ('2396','Volume [{#NAME}]: User space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0ad9f609419340168bf7f49de98e0135');
INSERT INTO `graphs` (`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`,`uuid`) values ('2397','HPE Primera: Capacity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','79e292a64d9247c486812db7a62c0eda');
INSERT INTO `graphs` (`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`,`uuid`) values ('2398','Enclosure [{#NAME}]: Power capacity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1f9d74b503f14765ad6a054f604f3e28');
INSERT INTO `graphs` (`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`,`uuid`) values ('2399','Storage pool [{#NAME}]: Capacity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a248b84392c44b4bbf9594550b35b8f8');
INSERT INTO `graphs` (`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`,`uuid`) values ('2400','Storage system [{#NAME}]: Capacity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c5c21884eb714c009dc0289f426b62e7');
INSERT INTO `graphs` (`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`,`uuid`) values ('2401','Storage volume [{#NAME}]: Capacity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f5530d63e0704ad884731cffc3a50051');
INSERT INTO `graphs` (`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`,`uuid`) values ('2402','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound packet filter traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d9c786ac274149ac9145499a85d25c35');
INSERT INTO `graphs` (`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`,`uuid`) values ('2403','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ab44b919a9d94955b27bf9a4499e4bf5');
INSERT INTO `graphs` (`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`,`uuid`) values ('2404','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound packet filter traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','21b603de7402416fb2f472e56010f5f6');
INSERT INTO `graphs` (`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`,`uuid`) values ('2405','OPNsense: Packet filter reason codes','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','0',NULL,NULL,'0','0','45c34572c76f4128a3aa779a4ccda241');
INSERT INTO `graphs` (`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`,`uuid`) values ('517','Zabbix server: Zabbix internal process busy %','900','200','0','100','406','1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','');
INSERT INTO `graphs` (`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`,`uuid`) values ('518','Zabbix server: Zabbix data gathering process busy %','900','200','0','100','404','1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','');
INSERT INTO `graphs` (`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`,`uuid`) values ('519','Zabbix server: Zabbix server performance','900','200','0','100','392','1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','');
INSERT INTO `graphs` (`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`,`uuid`) values ('520','Zabbix server: Zabbix cache usage, % free','900','200','0','100','410','1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','');
INSERT INTO `graphs` (`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`,`uuid`) values ('528','Zabbix server: Value cache effectiveness','900','200','0','100','527','1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','');
INSERT INTO `graphs` (`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`,`uuid`) values ('789','Zabbix server: Zabbix internal queues','900','200','0','100','788','1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','');
INSERT INTO `graphs` (`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`,`uuid`) values ('1446','Zabbix server: Data gathering processes','900','200','0','100','1445','1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','');
INSERT INTO `graphs` (`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`,`uuid`) values ('1655','Zabbix server: Data handling processes','900','200','0','100','1651','1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','');
INSERT INTO `graphs` (`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`,`uuid`) values ('1656','Zabbix server: Internal processes','900','200','0','100','1652','1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','');
INSERT INTO `graphs` (`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`,`uuid`) values ('1657','Zabbix server: Reporting processes','900','200','0','100','1653','1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','');
INSERT INTO `graphs` (`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`,`uuid`) values ('1658','Zabbix server: Trend function cache effectiveness','900','200','0','100','1654','1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','');
INSERT INTO `graphs` (`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`,`uuid`) values ('2217','Interface {#IFNAME}: Network traffic','900','200','0','100','2212','1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','');
INSERT INTO `graphs` (`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`,`uuid`) values ('2218','{#DEVNAME}: Disk average waiting time','900','200','0','100','2213','1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','');
INSERT INTO `graphs` (`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`,`uuid`) values ('2219','{#DEVNAME}: Disk read/write rates','900','200','0','100','2214','1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','');
INSERT INTO `graphs` (`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`,`uuid`) values ('2220','{#DEVNAME}: Disk utilization and queue','900','200','0','100','2215','1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','');
INSERT INTO `graphs` (`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`,`uuid`) values ('2221','{#FSNAME}: Disk space usage','600','340','0','100','2216','1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','');
INSERT INTO `graphs` (`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`,`uuid`) values ('2230','CPU jumps','900','200','0','100','2222','1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','');
INSERT INTO `graphs` (`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`,`uuid`) values ('2231','CPU usage','900','200','0','100','2223','1','1','1','1','0','0','0','1','1',NULL,NULL,'0','0','');
INSERT INTO `graphs` (`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`,`uuid`) values ('2232','CPU utilization','900','200','0','100','2224','1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','');
INSERT INTO `graphs` (`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`,`uuid`) values ('2233','Memory usage','900','200','0','100','2225','1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','');
INSERT INTO `graphs` (`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`,`uuid`) values ('2234','Memory utilization','900','200','0','100','2226','1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','');
INSERT INTO `graphs` (`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`,`uuid`) values ('2235','Processes','900','200','0','100','2227','1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','');
INSERT INTO `graphs` (`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`,`uuid`) values ('2236','Swap usage','900','200','0','100','2228','1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','');
INSERT INTO `graphs` (`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`,`uuid`) values ('2237','System load','900','200','0','100','2229','1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59179','1446','23269','0','0','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59180','1446','23264','0','1','990000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59183','528','23628','0','0','C80000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59184','528','23625','0','1','00C800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59191','520','23276','0','0','009900','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59192','520','23273','0','1','DD0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59193','520','23275','0','2','00DDDD','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59194','520','23274','0','3','3333FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59195','520','23620','0','4','999900','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59196','520','23635','0','5','00FF00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59209','518','23269','0','0','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59210','518','23264','0','1','990000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59211','518','23261','0','2','0000EE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59212','518','23255','0','3','FF33FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59213','518','23260','0','4','009600','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59214','518','23259','0','5','003300','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59215','518','23265','0','6','CCCC00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59216','518','23270','0','7','33FFFF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59217','518','23262','0','8','DD0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59218','518','23267','0','9','000099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59219','518','23328','0','10','00FF00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59220','518','33027','0','11','5A2B57','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59239','517','23268','0','0','00EE00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59240','517','23256','0','1','0000EE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59241','517','23258','0','2','FFAA00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59242','517','23252','0','3','00EEEE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59243','517','23253','0','4','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59244','517','23257','0','5','EE0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59245','517','23266','0','6','FF66FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59246','517','23664','0','7','009999','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59247','517','25367','0','8','BBBB00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59248','517','25371','0','9','AA0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59249','517','25667','0','10','990000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59250','517','25668','0','11','008800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59251','517','28536','0','12','80B0E0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59252','517','28538','0','13','4080B0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59253','517','29823','0','14','8000FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59254','517','33026','0','15','2B5429','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59255','517','34319','0','16','8048B4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59256','517','34318','0','17','FD5434','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59259','789','28249','0','0','008800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59260','789','28534','0','1','EE0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59263','519','23277','5','0','00C800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('59264','519','23272','0','1','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61379','1446','23261','0','2','0000EE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61380','1446','25367','0','3','FF33FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61381','1446','23260','0','4','009600','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61382','1446','23259','0','5','003300','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61383','1446','23270','0','6','33FFFF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61384','1446','23262','0','7','DD0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61385','1446','23267','0','8','000099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61386','1446','23328','0','9','00FF00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61387','1446','33027','0','10','5A2B57','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61388','517','35277','0','18','790E1F','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61389','517','35275','0','19','87AC4D','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61411','1655','23257','0','0','00EE00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61412','1655','25667','0','1','0000EE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61413','1655','25668','0','2','FFAA00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61414','1655','28538','0','3','00EEEE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61415','1655','28536','0','4','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61416','1656','23268','0','0','00EE00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61417','1656','23258','0','1','FFAA00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61418','1656','23253','0','2','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61419','1656','23266','0','3','FF66FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61420','1656','23664','0','4','009999','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61421','1656','33026','0','5','2B5429','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61422','1656','23255','0','6','8048B4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61423','1656','23265','0','7','FD5434','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61424','1657','23256','0','0','00EE00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61425','1657','23252','0','1','0000EE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61426','1657','25371','0','2','FFAA00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61427','1657','29823','0','3','00EEEE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61428','1657','34319','0','4','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61429','1657','34318','0','5','EE0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61430','1658','33025','0','0','C80000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('61431','1658','33024','0','1','00C800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('81634','1446','39823','0','11','9FA8DA','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('81635','518','39823','0','12','9FA8DA','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86612','2217','42294','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86613','2217','42297','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86614','2217','42296','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86615','2217','42293','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86616','2217','42295','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86617','2217','42292','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86618','2218','42300','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86619','2218','42301','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86620','2219','42314','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86621','2219','42317','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86622','2220','42313','0','0','1A7C11','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86623','2220','42316','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86624','2221','42305','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86625','2221','42306','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86674','2230','42261','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86675','2230','42256','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86676','2231','42229','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86677','2231','42230','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86678','2231','42248','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86679','2231','42258','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86680','2231','42246','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86681','2231','42265','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86682','2231','42247','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86683','2231','42262','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86684','2231','42263','0','8','F230E0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86685','2232','42269','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86686','2233','42245','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86687','2233','42243','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86688','2234','42270','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86689','2235','42253','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86690','2235','42254','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86691','2235','42252','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86692','2236','42228','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86693','2236','42238','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86694','2237','42249','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86695','2237','42257','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86696','2237','42259','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('86697','2237','42260','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133318','1397','32451','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133319','1397','32450','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133320','1398','32452','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133321','1398','32449','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133322','1399','32444','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133323','1399','32446','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133324','1399','32448','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133325','1400','32460','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133326','1401','32458','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133327','1401','32457','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133328','1402','32461','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133329','1402','32456','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133330','1172','30918','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133331','1172','30919','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133332','1172','30920','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133333','1172','30921','2','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133334','1173','30922','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133335','835','28744','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133336','835','28745','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133337','1174','30913','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133338','1175','30906','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133339','1175','30908','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133340','1175','30915','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133341','1175','30897','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133342','1175','30901','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133343','1175','30899','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133344','1175','30907','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133345','1175','30905','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133346','1175','30904','0','8','F230E0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133347','1175','30900','0','9','FFAD40','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133348','1175','30898','0','10','40CDFF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133349','1176','30910','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133350','1176','30909','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133351','836','28798','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133352','836','28799','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133353','836','28800','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133354','836','28801','2','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133355','837','28803','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133356','838','28793','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133357','840','28787','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133358','840','28784','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133359','840','28782','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133360','840','28781','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133361','840','28780','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133362','840','28778','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133363','840','28786','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133364','840','28785','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133365','840','28783','0','8','F230E0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133366','840','28779','0','9','FFAD40','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133367','840','28796','0','10','40CDFF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133368','839','28789','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133369','839','28788','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133370','1339','32172','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133371','1339','32173','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133372','1403','32511','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133373','1403','32514','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133374','1404','32512','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133375','1404','32515','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133376','1405','32507','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133377','1405','32508','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133378','1405','32513','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133379','1343','32135','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133380','1343','32142','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133381','1344','32167','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133382','1344','32136','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133383','1345','32141','1','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133384','1345','32138','1','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133385','1346','32156','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133386','1346','32158','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133387','1346','32159','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133388','1346','32154','2','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133389','1346','32155','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133390','1346','32146','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133391','1347','32150','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133392','1347','32151','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133393','1347','32152','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133394','1622','35078','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133395','1622','35091','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133396','1622','35098','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133397','1622','35100','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133398','1622','35099','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133399','1623','35090','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133400','1623','35101','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133401','1624','35097','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133402','1624','35096','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133403','1624','35095','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133404','1625','35089','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133405','1625','35088','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133406','1625','35087','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133407','1625','35086','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133408','1625','35085','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133409','1626','35079','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133410','1626','35082','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133411','1627','35080','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133412','1627','35102','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133413','1628','35093','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133414','1628','35092','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133415','1628','35081','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133416','1628','35084','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133417','1628','35083','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133418','2325','42962','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133419','2325','42972','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133420','2326','42941','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133421','2326','42940','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133422','2327','42983','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133423','2327','42942','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133424','2328','42949','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133425','2328','42947','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133426','2328','42935','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133427','2328','42944','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133428','2328','42945','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133429','1121','30606','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133430','1121','30590','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133431','1121','30582','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133432','1122','30580','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133433','1122','30578','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133434','1123','30586','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133435','1123','30608','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133436','1123','30585','2','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133437','1123','30589','2','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133438','1123','30584','2','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133439','1123','30588','2','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133440','1124','30583','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133441','1124','30587','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133442','1125','30555','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133443','1125','30554','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133444','1125','30556','2','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133445','1125','30557','2','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133446','1126','30565','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133447','1127','30567','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133448','1127','30568','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133449','1128','30536','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133450','1129','30566','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133451','1129','30549','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133452','1129','30553','2','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133453','1129','30570','2','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133454','1143','30714','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133455','1143','30716','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133456','1143','30717','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133457','1143','30715','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133458','1144','30753','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133459','1144','30738','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133460','1145','30718','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133461','1145','30737','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133462','1145','30727','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133463','1145','30729','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133464','1146','30730','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133465','1146','30732','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133466','1146','30731','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133467','1146','30733','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133468','1147','30734','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133469','1147','30736','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133470','1147','30735','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133471','1147','30758','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133472','1148','30711','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133473','1148','30706','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133474','1148','30710','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133475','1148','30712','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133476','1148','30702','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133477','1148','30707','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133478','1148','30704','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133479','2329','43064','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133480','2329','43065','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133481','2329','43058','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133482','2329','43063','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133483','2329','43072','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133484','2330','43069','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133485','2330','43067','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133486','2331','43074','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133487','2331','43076','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133488','2332','43025','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133489','2332','43048','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133490','2333','43050','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133491','2333','43049','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133492','2333','43051','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133493','2333','43040','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133494','2334','43029','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133495','2334','43031','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133496','2335','43046','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133497','2335','43047','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133498','2335','43045','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133499','2335','43044','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133500','2336','43037','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133501','2336','43026','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133502','2336','43039','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133503','2337','43042','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133504','2337','43041','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133505','2337','43043','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133506','2337','43038','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133507','2338','43030','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133508','2338','43031','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133509','2338','43032','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133510','1177','30927','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133511','1177','30944','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133512','1178','30935','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133513','1178','30942','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133514','1179','30949','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133515','1179','30950','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133516','1179','30951','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133517','1180','30952','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133518','1180','30954','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133519','1180','30955','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133520','1181','30936','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133521','1181','30940','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133522','1182','30930','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133523','1182','30929','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133524','1182','30928','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133525','1182','30931','2','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133526','1183','30934','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133527','1183','30941','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133528','1406','32532','0','0','1A7C11','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133529','1406','32535','0','1','2774A4','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133530','1406','32533','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133531','1406','32534','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133532','1406','32536','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133533','1406','32537','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133534','1407','32543','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133535','1407','32544','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133536','1408','32518','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133537','1408','32521','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133538','1408','32523','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133539','1408','32524','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133540','1409','32562','0','0','1A7C11','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133541','1409','32565','0','1','2774A4','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133542','1409','32563','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133543','1409','32564','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133544','1409','32566','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133545','1409','32567','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133546','1410','32573','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133547','1410','32574','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133548','1411','32548','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133549','1411','32551','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133550','1411','32553','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133551','1411','32554','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133552','2287','42691','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133553','2288','42694','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133554','2288','42693','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133555','2288','42695','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133556','1250','31527','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133557','1250','31529','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133558','1250','31499','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133559','1259','31516','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133560','1259','31517','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133561','1260','31523','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133562','1260','31522','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133563','1260','31524','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133564','1412','32601','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133565','1412','32602','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133566','1412','32603','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133567','1412','32604','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133568','1412','32606','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133569','1412','32606','2','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133570','1413','32608','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133571','1413','32610','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133572','1413','32611','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133573','1414','32582','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133574','1414','32580','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133575','1414','32581','2','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133576','1414','32597','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133577','1414','32599','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133578','1414','32588','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133579','1415','32583','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133580','1415','32584','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133581','1415','32585','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133582','1415','32579','2','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133583','1416','32587','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133584','1416','32590','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133585','1416','32589','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133586','1417','32673','1','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133587','1417','32679','1','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133588','1629','35114','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133589','1629','35113','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133590','1075','30204','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133591','1075','30205','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133592','1630','35112','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133593','1630','35111','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133594','1630','35110','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133595','1630','35108','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133596','1630','35105','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133597','1076','30209','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133598','1076','30208','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133599','1077','30206','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133600','1077','30207','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133601','1078','30216','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133602','1078','30215','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133603','1079','30210','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133604','1079','30211','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133605','1079','30212','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133606','1079','30213','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133607','1079','30214','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133608','1631','35127','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133609','1631','35126','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133610','1632','35124','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133611','1632','35123','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133612','1632','35122','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133613','1632','30222','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133614','1632','30223','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133615','1080','30226','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133616','1080','30225','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133617','1633','35139','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133618','1633','35138','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133619','1081','30247','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133620','1081','30248','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133621','1634','35137','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133622','1634','35136','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133623','1634','35135','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133624','1634','35133','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133625','1634','35130','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133626','1082','30252','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133627','1082','30251','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133628','1083','30249','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133629','1083','30250','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133630','1084','30259','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133631','1084','30258','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133632','1085','30253','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133633','1085','30254','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133634','1085','30255','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133635','1085','30256','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133636','1085','30257','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133637','1635','35152','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133638','1635','35151','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133639','1636','35149','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133640','1636','35148','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133641','1636','35147','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133642','1636','30265','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133643','1636','30266','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133644','1086','30269','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133645','1086','30268','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133646','1184','30982','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133647','1184','30980','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133648','1185','30983','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133649','1185','30981','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133650','1186','30976','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133651','1186','30985','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133652','1186','30997','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133653','1186','30970','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133654','1186','30973','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133655','1186','30995','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133656','1186','30998','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133657','1186','30978','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133658','1187','31024','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133659','1187','31022','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133660','1188','31025','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133661','1188','31023','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133662','1189','31018','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133663','1189','31027','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133664','1189','31039','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133665','1189','31012','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133666','1189','31015','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133667','1189','31037','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133668','1189','31040','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133669','1189','31020','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133670','1499','33478','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133671','1499','33467','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133672','1500','33468','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133673','1500','33479','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133674','1501','33442','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133675','1501','33441','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133676','1501','33440','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133677','1502','33423','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133678','1502','33419','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133679','1502','33422','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133680','1502','33421','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133681','1502','33412','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133682','1418','32700','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133683','1418','32699','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133684','1419','32710','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133685','1419','32709','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133686','1420','32693','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133687','1420','32724','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133688','1421','32730','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133689','1421','32731','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133690','1421','32728','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133691','1421','32729','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133692','1422','32705','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133693','1422','32706','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133694','1423','32702','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133695','1423','32703','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133696','1424','32708','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133697','1424','32722','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133698','1424','32695','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133699','1424','32753','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133700','1424','32740','2','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133701','1424','32723','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133702','1424','32747','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133703','1424','32748','2','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133704','1424','32749','0','8','F230E0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133705','1424','32750','0','9','FFAD40','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133706','1424','32751','2','10','40CDFF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133707','1424','32752','0','11','40FFA0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133708','1425','32746','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133709','1425','32745','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133710','1425','32744','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133711','1425','32743','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133712','1425','32742','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133713','1426','32720','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133714','1426','32721','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133715','1426','32719','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133716','1426','32718','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133717','2085','39861','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133718','2085','39863','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133719','2085','39864','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133720','2085','39862','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133721','2086','39849','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133722','2086','39833','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133723','2086','39848','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133724','2086','39832','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133725','2086','39847','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133726','2086','39831','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133727','2086','39846','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133728','2086','39850','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133729','2086','39841','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133730','2087','39900','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133731','2088','39901','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133732','2089','39892','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133733','2089','39893','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133734','2089','39890','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133735','2089','39891','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133736','2089','39896','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133737','2089','39897','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133738','2089','39895','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133739','2089','39894','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133740','2090','39888','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133741','2090','39887','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133742','2091','39880','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133743','2091','39879','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133744','2091','39878','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133745','2091','39877','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133746','2092','39922','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133747','2092','39923','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133748','2092','39924','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133749','2092','39921','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133750','2093','39966','2','0','4CAF50','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133751','2093','39963','2','1','AB47BC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133752','2093','39969','5','2','1E88E5','0','4','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133753','2094','40004','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133754','2094','40003','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133755','2094','40005','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133756','2094','40006','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133757','2289','42698','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133758','2289','42697','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133759','2289','42699','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133760','2289','42700','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133761','2290','42702','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133762','2290','42701','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133763','2290','42703','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133764','2290','42704','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133765','2096','39994','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133766','2096','39993','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133767','2097','39986','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133768','2097','39988','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133769','2097','39990','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133770','2097','39998','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133771','2099','39996','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133772','2099','39997','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133773','2099','39995','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133774','1130','30613','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133775','1130','30635','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133776','1130','30625','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133777','1131','30632','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133778','1131','30633','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133779','1131','30629','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133780','1132','30630','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133781','1132','30628','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133782','1132','30631','2','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133783','1133','30619','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133784','1133','30618','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133785','1134','30623','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133786','1134','30622','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133787','1135','30615','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133788','841','28813','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133789','841','28811','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133790','841','28812','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133791','841','28814','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133792','842','28817','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133793','842','28815','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133794','842','28816','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133795','844','28808','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133796','844','28807','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133797','843','28818','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133798','845','28829','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133799','845','28831','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133800','845','28832','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133801','845','28830','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133802','846','28826','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133803','846','28828','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133804','846','28827','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133805','847','28825','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133806','1637','35187','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133807','1638','35189','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133808','1638','35188','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133809','1638','35190','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133810','1638','35191','5','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133811','1638','35192','5','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133812','1639','35198','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133813','1640','35200','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133814','1640','35199','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133815','1640','35201','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133816','1640','35202','5','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133817','1640','35203','5','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133818','1641','35221','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133819','1641','35220','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133820','1641','35219','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133821','1642','35214','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133822','1642','35216','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133823','1642','35207','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133824','1642','35213','5','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133825','1642','35212','5','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133826','1643','35228','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133827','1643','35229','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133828','1643','35227','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133829','1644','35231','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133830','1644','35230','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133831','1644','35235','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133832','1644','35233','5','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133833','1644','35232','5','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133834','1644','35234','5','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133835','1644','35236','5','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133836','1644','35237','5','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133837','1645','35243','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133838','1645','35244','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133839','1645','35245','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133840','1646','35252','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133841','1646','35253','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133842','1646','35254','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133843','1647','35172','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133844','1647','35168','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133845','1647','35164','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133846','1647','35163','5','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133847','1648','35170','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133848','1649','35167','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133849','1649','35166','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133850','1649','35165','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133851','1650','35176','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133852','2291','42736','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133853','2292','42737','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133854','2293','42738','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133855','2294','42739','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133856','2402','43682','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133857','2402','43662','0','1','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133858','2402','43680','0','2','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133859','2402','43686','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133860','2402','43681','0','4','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133861','2402','43675','0','5','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133862','2402','43679','0','6','AC8C14','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133863','2402','43685','0','7','611F27','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133864','2403','43678','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133865','2403','43667','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133866','2403','43672','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133867','2403','43683','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133868','2403','43673','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133869','2403','43684','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133870','2404','43671','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133871','2404','43677','0','1','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133872','2404','43669','0','2','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133873','2404','43674','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133874','2404','43670','0','4','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133875','2404','43676','0','5','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133876','2404','43668','0','6','AC8C14','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133877','2404','43663','0','7','611F27','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133878','2405','43656','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133879','2405','43658','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133880','2405','43657','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133881','2405','43653','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133882','2405','43654','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133883','2405','43655','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133884','2102','40167','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133885','2102','40147','0','1','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133886','2102','40165','0','2','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133887','2102','40171','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133888','2102','40166','0','4','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133889','2102','40160','0','5','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133890','2102','40164','0','6','AC8C14','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133891','2102','40170','0','7','611F27','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133892','2103','40163','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133893','2103','40152','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133894','2103','40157','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133895','2103','40168','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133896','2103','40158','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133897','2103','40169','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133898','2104','40156','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133899','2104','40162','0','1','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133900','2104','40154','0','2','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133901','2104','40159','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133902','2104','40155','0','4','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133903','2104','40161','0','5','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133904','2104','40153','0','6','AC8C14','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133905','2104','40148','0','7','611F27','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133906','2110','40124','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133907','2110','40122','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133908','2110','40123','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133909','2110','40126','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133910','2110','40117','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133911','2110','40125','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133912','1262','31592','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133913','1262','31584','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133914','1262','31582','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133915','1262','31585','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133916','1263','31591','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133917','1263','31583','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133918','1263','31590','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133919','1264','31602','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133920','1264','31597','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133921','1264','31601','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133922','1264','31604','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133923','1265','31609','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133924','1265','31610','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133925','1265','31608','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133926','2297','42767','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133927','2298','42769','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133928','2298','42768','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133929','2299','42771','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133930','2299','42770','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133931','2300','42772','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133932','2300','42773','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133933','2301','42776','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133934','2301','42784','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133935','2301','42791','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133936','2302','42788','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133937','2302','42789','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133938','2303','42787','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133939','2303','42786','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133940','2304','42782','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133941','2304','42777','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133942','2305','42780','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133943','2305','42781','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133944','2306','42794','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133945','2307','42796','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133946','2307','42795','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133947','2308','42798','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133948','2308','42797','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133949','2307','42799','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133950','2307','42800','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133951','2310','42804','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133952','2310','42805','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133953','1001','29729','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133954','1001','29728','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133955','1001','29727','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133956','1001','29725','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133957','1001','29723','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133958','1001','29733','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133959','1001','29737','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133960','1001','29731','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133961','1000','29720','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133962','1000','29730','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133963','1000','29721','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133964','1000','29726','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133965','1000','29724','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133966','1000','29734','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133967','1000','29722','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133968','1000','29732','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133969','1027','30022','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133970','1027','30021','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133971','1027','30019','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133972','1008','29698','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133973','1008','29700','2','1','FF0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133974','1007','29691','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133975','1013','29657','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133976','1013','29658','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133977','1009','29687','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133978','1009','29694','2','1','FF0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133979','1029','30017','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133980','1029','30016','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133981','1029','30015','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133982','1031','30007','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133983','1031','30013','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133984','1031','30011','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133985','1031','30009','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133986','1031','30005','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133987','1031','30003','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133988','1031','30023','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133989','1031','30001','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133990','1030','30008','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133991','1030','30014','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133992','1030','30012','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133993','1030','30010','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133994','1030','30006','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133995','1030','30004','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133996','1030','30000','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133997','1030','30002','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133998','1011','29695','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('133999','1028','30020','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134000','1010','29701','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134001','1010','29697','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134002','1012','29692','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134003','1015','29812','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134004','1015','29811','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134005','1015','29810','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134006','1015','29808','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134007','1015','29806','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134008','1015','29816','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134009','1015','29820','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134010','1015','29814','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134011','1014','29803','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134012','1014','29813','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134013','1014','29804','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134014','1014','29809','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134015','1014','29807','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134016','1014','29817','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134017','1014','29805','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134018','1014','29815','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134019','1016','29768','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134020','1016','29767','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134021','1016','29765','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134022','1022','29782','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134023','1022','29781','2','1','FF0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134024','1021','29783','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134025','1023','29780','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134026','1023','29784','2','1','FF0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134027','1018','29763','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134028','1018','29762','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134029','1018','29761','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134030','1020','29753','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134031','1020','29759','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134032','1020','29757','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134033','1020','29755','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134034','1020','29751','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134035','1020','29749','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134036','1020','29769','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134037','1020','29747','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134038','1019','29754','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134039','1019','29760','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134040','1019','29758','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134041','1019','29756','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134042','1019','29752','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134043','1019','29750','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134044','1019','29746','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134045','1019','29748','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134046','1025','29775','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134047','1017','29766','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134048','1024','29776','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134049','1024','29777','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134050','1026','29772','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134051','1356','32276','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134052','1356','32275','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134053','1357','32281','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134054','1357','32267','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134055','1357','32279','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134056','1358','32268','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134057','1358','32274','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134058','1358','32271','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134059','1359','32288','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134060','1359','32291','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134061','1360','32247','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134062','1360','32245','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134063','1360','32246','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134064','1361','32248','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134065','1361','32249','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134066','1361','32250','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134067','1362','32240','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134068','1362','32273','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134069','1363','32282','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134070','1363','32283','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134071','1363','32289','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134072','1363','32290','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134073','1363','32286','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134074','1363','32287','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134075','1363','32241','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134076','1363','32242','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134077','1363','32243','0','8','F230E0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134078','1363','32244','0','9','FFAD40','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134079','1363','32277','0','10','40CDFF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134080','1363','32278','0','11','40FFA0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134081','1427','32768','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134082','1427','32767','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134083','1428','32774','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134084','1428','32772','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134085','1428','32775','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134086','1428','32773','5','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134087','1429','32779','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134088','1429','32777','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134089','1429','32778','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134090','1806','36785','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134091','1806','36786','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134092','1806','36787','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134093','2311','42860','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134094','2311','42861','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134095','2311','42859','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134096','2311','42858','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134097','2311','42857','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134098','2312','42891','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134099','2313','42864','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134100','2313','42867','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134101','2313','42866','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134102','2313','42863','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134103','2313','42865','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134104','2313','42862','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134105','2314','42874','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134106','2314','42875','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134107','2315','42879','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134108','2315','42883','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134109','2316','42881','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134110','2316','42882','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134111','2317','42886','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134112','2317','42887','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134113','2318','42888','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134114','2318','42890','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134115','2319','42839','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134116','2319','42826','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134117','2320','42837','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134118','2320','42832','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134119','2321','42824','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134120','2321','42820','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134121','2322','42825','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134122','2323','42842','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134123','2323','42844','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134124','2324','42833','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134125','2324','42834','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134126','2324','42835','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134127','2324','42836','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134128','1430','32837','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134129','1430','32836','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134130','1430','32835','2','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134131','1431','32856','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134132','1432','32828','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134133','1433','32847','5','0','34bdeb','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134134','1434','32797','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134135','1434','32796','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134136','1434','32801','2','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134137','1435','32834','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134138','1436','32819','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134139','1437','32826','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134140','1614','34976','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134141','1614','34975','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134142','1614','34978','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134143','1614','34979','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134144','1614','34980','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134145','1615','34982','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134146','1615','34997','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134147','1615','35001','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134148','1615','35000','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134149','1615','34998','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134150','1615','34996','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134151','1616','35015','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134152','1616','35014','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134153','1617','35012','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134154','1617','35013','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134155','1618','34951','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134156','1618','34952','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134157','1618','34953','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134158','1618','34954','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134159','1618','34956','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134160','1618','34950','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134161','1618','34957','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134162','1618','34959','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134163','1618','34965','0','8','F230E0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134164','529','23357','0','0','DD0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134165','529','23341','0','1','00DDDD','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134166','529','23342','0','2','3333FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134167','529','28251','0','3','00FF00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134168','530','23345','0','0','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134169','530','23348','0','1','990000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134170','530','23355','0','2','0000EE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134171','530','23352','0','3','FF33FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134172','530','23356','0','4','007700','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134173','530','23354','0','5','003300','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134174','530','23346','0','6','33FFFF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134175','530','23349','0','7','DD0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134176','530','23344','0','8','000099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134177','530','28250','0','9','00FF00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134178','530','33019','0','10','5A2B57','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134179','530','39826','0','11','9FA8DA','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134180','531','23353','0','0','FFAA00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134181','531','23347','0','1','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134182','531','23350','0','2','EE0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134183','531','23343','0','3','FF66FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134184','531','23351','0','4','0000EE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134185','531','23360','0','5','00EE00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134186','531','25369','0','6','009999','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134187','531','25368','0','7','BBBB00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134188','531','28618','0','8','990000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134189','531','28619','0','9','008800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134190','531','33018','0','10','2B5429','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134191','807','28617','0','0','008800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134192','532','23340','5','0','00C800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134193','532','23358','0','1','C80000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134194','803','28599','0','0','DD0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134195','803','28596','0','1','00DDDD','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134196','803','28597','0','2','3333FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134197','803','28598','0','3','00FF00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134198','804','28602','0','0','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134199','804','28606','0','1','990000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134200','804','28608','0','2','0000EE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134201','804','28615','0','3','FF33FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134202','804','28610','0','4','007700','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134203','804','28611','0','5','003300','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134204','804','28616','0','6','33FFFF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134205','804','28607','0','7','DD0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134206','804','28604','0','8','000099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134207','804','28588','0','9','00FF00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134208','804','33013','0','10','5A2B57','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134209','804','39825','0','11','9FA8DA','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134210','805','28612','0','0','FFAA00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134211','805','28600','0','1','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134212','805','28613','0','2','EE0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134213','805','28605','0','3','FF66FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134214','805','28614','0','4','0000EE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134215','805','28601','0','5','00EE00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134216','805','28603','0','6','009999','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134217','805','28609','0','7','BBBB00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134218','805','40188','0','8','990000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134219','805','40189','0','9','008800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134220','805','33012','0','10','2B5429','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134221','2113','40187','0','0','008800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134222','806','28595','5','0','00C800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134223','806','28586','0','1','C80000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134224','1445','22404','0','0','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134225','1445','22399','0','1','990000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134226','1445','22416','0','2','0000EE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134227','1445','25366','0','3','FF33FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134228','1445','22418','0','4','009600','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134229','1445','22402','0','5','003300','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134230','1445','22400','0','6','33FFFF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134231','1445','22689','0','7','DD0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134232','1445','23171','0','8','000099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134233','1445','22401','0','9','00FF00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134234','1445','33023','0','10','5A2B57','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134235','1445','39822','0','11','9FA8DA','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134236','1651','22406','0','0','00EE00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134237','1651','25665','0','1','0000EE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134238','1651','25666','0','2','FFAA00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134239','1651','28537','0','3','00EEEE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134240','1651','28535','0','4','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134241','1652','22426','0','0','00EE00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134242','1652','22408','0','1','FFAA00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134243','1652','22412','0','2','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134244','1652','22414','0','3','FF66FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134245','1652','23663','0','4','009999','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134246','1652','33022','0','5','2B5429','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134247','1652','22430','0','6','8048B4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134248','1652','22420','0','7','FD5434','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134249','1653','22422','0','0','00EE00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134250','1653','22424','0','1','0000EE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134251','1653','25370','0','2','FFAA00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134252','1653','29822','0','3','00EEEE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134253','1653','34317','0','4','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134254','1653','34316','0','5','EE0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134255','1654','33021','0','0','C80000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134256','1654','33020','0','1','00C800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134257','527','22199','0','0','C80000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134258','527','22196','0','1','00C800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134259','410','22185','0','0','009900','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134260','410','22189','0','1','DD0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134261','410','22396','0','2','00DDDD','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134262','410','22183','0','3','3333FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134263','410','22191','0','4','999900','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134264','410','23634','0','5','00FF00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134265','404','22404','0','0','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134266','404','22399','0','1','990000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134267','404','22416','0','2','0000EE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134268','404','22430','0','3','FF33FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134269','404','22418','0','4','009600','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134270','404','22402','0','5','003300','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134271','404','22420','0','6','CCCC00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134272','404','22400','0','7','33FFFF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134273','404','22689','0','8','DD0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134274','404','23171','0','9','000099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134275','404','22401','0','10','00FF00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134276','404','33023','0','11','5A2B57','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134277','404','39822','0','12','9FA8DA','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134278','406','22426','0','0','00EE00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134279','406','22422','0','1','0000EE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134280','406','22408','0','2','FFAA00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134281','406','22424','0','3','00EEEE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134282','406','22412','0','4','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134283','406','22406','0','5','EE0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134284','406','22414','0','6','FF66FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134285','406','23663','0','7','009999','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134286','406','25366','0','8','BBBB00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134287','406','25370','0','9','AA0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134288','406','25665','0','10','990000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134289','406','25666','0','11','008800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134290','406','28535','0','12','80B0E0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134291','406','28537','0','13','4080B0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134292','406','29822','0','14','8000FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134293','406','33022','0','15','2B5429','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134294','406','34317','0','16','8048B4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134295','406','34316','0','17','FD5434','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134296','406','35274','0','18','790E1F','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134297','406','35272','0','19','87AC4D','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134298','788','28248','0','0','008800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134299','788','28533','0','1','EE0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134300','392','22187','5','0','00C800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134301','392','23251','0','1','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134302','1444','28581','0','0','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134303','1444','28574','0','1','990000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134304','1444','28571','0','2','0000EE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134305','1444','28562','0','3','FF33FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134306','1444','28570','0','4','009600','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134307','1444','28569','0','5','003300','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134308','1444','28552','0','6','33FFFF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134309','1444','28573','0','7','DD0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134310','1444','28579','0','8','000099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134311','1444','28559','0','9','00FF00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134312','1444','33017','0','10','5A2B57','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134313','1444','39824','0','11','9FA8DA','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134314','1659','28567','0','0','00EE00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134315','1659','28575','0','1','0000EE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134316','1659','28576','0','2','FFAA00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134317','1659','28583','0','3','00EEEE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134318','1659','28582','0','4','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134319','1660','28572','0','0','00EE00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134320','1660','28568','0','1','FFAA00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134321','1660','28564','0','2','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134322','1660','28578','0','3','FF66FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134323','1660','28580','0','4','009999','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134324','1660','33016','0','5','2B5429','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134325','1660','28565','0','6','8048B4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134326','1660','28577','0','7','FD5434','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134327','1661','28566','0','0','00EE00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134328','1661','28561','0','1','0000EE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134329','1661','28563','0','2','FFAA00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134330','1661','29821','0','3','00EEEE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134331','1661','34314','0','4','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134332','1661','34315','0','5','EE0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134333','1662','33015','0','0','C80000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134334','1662','33014','0','1','00C800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134335','797','28546','0','0','C80000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134336','797','28545','0','1','00C800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134337','798','28551','0','0','009900','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134338','798','28543','0','1','DD0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134339','798','28542','0','2','00DDDD','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134340','798','28549','0','3','3333FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134341','798','28544','0','4','999900','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134342','798','28548','0','5','00FF00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134343','799','28581','0','0','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134344','799','28574','0','1','990000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134345','799','28571','0','2','0000EE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134346','799','28565','0','3','FF33FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134347','799','28570','0','4','009600','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134348','799','28569','0','5','003300','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134349','799','28577','0','6','CCCC00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134350','799','28552','0','7','33FFFF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134351','799','28573','0','8','DD0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134352','799','28579','0','9','000099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134353','799','28559','0','10','00FF00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134354','799','33017','0','11','5A2B57','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134355','799','39824','0','12','9FA8DA','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134356','800','28572','0','0','00EE00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134357','800','28566','0','1','0000EE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134358','800','28568','0','2','FFAA00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134359','800','28561','0','3','00EEEE','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134360','800','28564','0','4','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134361','800','28567','0','5','EE0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134362','800','28578','0','6','FF66FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134363','800','28580','0','7','009999','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134364','800','28562','0','8','BBBB00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134365','800','28563','0','9','AA0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134366','800','28575','0','10','990000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134367','800','28576','0','11','008800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134368','800','28582','0','12','80B0E0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134369','800','28583','0','13','4080B0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134370','800','29821','0','14','8000FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134371','800','33016','0','15','2B5429','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134372','800','34314','0','16','8048B4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134373','800','34315','0','17','FD5434','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134374','800','35279','0','18','790E1F','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134375','800','35278','0','19','87AC4D','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134376','801','28560','0','0','008800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134377','801','28584','0','1','EE0000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134378','802','28550','5','0','00C800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134379','802','28540','0','1','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134380','1438','33001','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134381','1438','33002','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134382','1438','33000','2','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134383','1439','33005','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134384','1439','33004','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134385','1440','32980','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134386','1440','32970','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134387','1441','32967','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134388','1441','32968','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134389','1441','32995','2','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134390','1442','32997','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134391','1442','32984','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134392','1443','32973','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134393','1443','32971','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134394','1503','33518','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134395','1504','33501','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134396','1447','33113','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134397','1447','33112','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134398','1447','33099','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134399','1447','33098','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134400','1448','33125','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134401','1448','33110','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134402','1449','33080','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134403','1449','33081','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134404','1450','33089','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134405','1450','33085','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134406','1451','33082','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134407','1451','33086','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134408','1451','33083','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134409','1451','33084','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134410','1451','33087','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134411','1451','33088','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134412','1452','33093','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134413','1452','33092','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134414','1453','33077','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134415','1453','33063','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134416','1454','33094','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134417','1454','33059','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134418','1455','33066','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134419','1455','33071','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134420','1455','33067','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134421','1455','33068','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134422','1455','33072','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134423','1455','33073','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134424','1159','30886','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134425','1159','30887','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134426','1160','30888','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134427','1160','30882','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134428','1160','30890','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134429','1160','30881','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134430','1160','30889','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134431','1161','30847','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134432','1161','30872','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134433','1162','30853','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134434','1162','30849','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134435','1162','30852','2','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134436','1162','30851','2','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134437','1162','30848','2','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134438','1163','30856','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134439','1163','30855','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134440','1163','30854','2','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134441','1164','30859','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134442','1164','30870','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134443','1165','30860','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134444','1165','30871','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134445','1166','30868','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134446','1166','30869','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134447','1166','30867','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134448','1166','30866','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134449','1166','30865','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134450','1167','30850','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134451','1167','30863','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134452','1167','30861','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134453','1168','30833','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134454','1168','30841','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134455','1168','30857','2','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134456','1169','30834','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134457','1169','30831','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134458','1170','30846','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134459','1576','34320','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134460','1576','30845','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134461','1576','30842','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134462','1576','30873','2','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134463','2339','43148','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134464','2339','43146','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134465','2340','43144','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134466','2340','43145','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134467','2340','43170','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134468','2341','43142','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134469','2341','43156','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134470','2341','43168','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134471','2341','43167','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134472','2341','43169','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134473','2341','43166','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134474','2341','43165','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134475','2341','43164','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134476','2342','43163','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134477','2342','43155','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134478','2342','43162','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134479','2342','43161','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134480','2343','43158','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134481','2343','43157','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134482','2344','43117','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134483','2344','43116','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134484','2345','43124','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134485','2345','43114','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134486','2346','43122','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134487','2346','43123','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134488','2347','43119','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134489','2347','43120','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134490','2348','43131','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134491','2348','43130','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134492','2349','43138','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134493','2349','43135','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134494','2349','43136','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134495','2349','43133','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134496','2349','43134','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134497','2350','43113','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134498','2350','43098','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134499','2351','43087','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134500','2351','43088','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134501','2352','43101','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134502','2352','43100','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134503','2352','43099','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134504','2352','43093','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134505','2353','43104','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134506','2353','43103','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134507','2353','43106','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134508','2353','43102','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134509','2354','43108','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134510','2354','43107','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134511','1663','35291','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134512','1663','35300','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134513','1664','35295','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134514','1664','35296','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134515','1665','35301','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134516','1665','35306','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134517','1665','35304','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134518','1665','35302','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134519','1666','35308','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134520','1666','35310','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134521','1666','35309','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134522','1667','35322','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134523','1667','35320','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134524','1668','35329','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134525','1668','35330','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134526','1669','35332','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134527','1669','35334','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134528','1670','35335','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134529','1670','35333','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134530','1671','35338','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134531','1671','35341','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134532','1671','35339','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134533','1671','35340','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134534','1672','35347','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134535','1672','35346','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134536','1672','35345','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134537','1673','35350','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134538','1673','35351','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134539','1674','35349','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134540','1674','35352','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134541','1674','35353','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134542','1675','35355','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134543','1675','35356','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134544','1505','33553','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134545','1505','33562','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134546','1506','33557','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134547','1506','33558','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134548','1507','33563','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134549','1507','33568','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134550','1507','33566','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134551','1507','33564','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134552','1508','33570','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134553','1508','33572','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134554','1508','33571','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134555','1509','33584','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134556','1509','33582','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134557','1510','33591','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134558','1510','33592','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134559','1511','33594','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134560','1511','33596','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134561','1512','33597','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134562','1512','33595','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134563','1513','33600','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134564','1513','33603','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134565','1513','33601','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134566','1513','33602','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134567','1514','33609','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134568','1514','33608','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134569','1514','33607','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134570','1515','33612','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134571','1515','33613','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134572','1516','33611','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134573','1516','33614','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134574','1516','33615','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134575','1517','33617','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134576','1517','33618','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134577','1807','36817','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134578','1807','36816','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134579','1808','36815','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134580','1808','36814','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134581','1808','36818','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134582','1808','36819','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134583','1809','36805','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134584','1809','36804','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134585','1527','33819','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134586','1527','33839','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134587','1528','33820','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134588','1528','33816','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134589','1529','33826','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134590','1529','33831','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134591','1529','33829','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134592','1529','33821','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134593','1529','33825','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134594','1529','33833','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134595','1529','33823','2','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134596','1530','33828','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134597','1530','33832','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134598','1530','33830','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134599','1530','33822','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134600','1530','33815','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134601','1530','33834','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134602','1530','33824','2','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134603','1531','33840','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134604','1531','33845','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134605','1532','33844','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134606','1532','33847','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134607','1532','33843','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134608','1532','33841','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134609','1533','33863','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134610','1534','33792','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134611','1534','33791','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134612','1534','33793','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134613','1535','33802','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134614','1535','33770','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134615','1536','33800','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134616','1536','33799','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134617','1536','33801','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134618','1537','33798','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134619','1537','33806','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134620','1537','33774','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134621','1538','33769','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134622','1538','33787','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134623','1538','33789','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134624','1538','33790','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134625','1539','33785','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134626','1539','33772','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134627','1539','33773','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134628','1539','33771','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134629','1540','33776','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134630','1540','33775','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134631','1541','33782','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134632','1541','33781','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134633','1541','33780','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134634','1541','33783','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134635','1541','33777','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134636','1541','33778','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134637','1542','33804','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134638','1542','33803','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134639','1542','33805','2','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134640','1543','33937','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134641','1543','33940','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134642','1543','33936','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134643','1543','33934','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134644','1544','33915','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134645','1544','33911','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134646','1544','33912','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134647','1544','33910','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134648','1544','33914','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134649','1545','33918','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134650','1545','33905','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134651','1545','33917','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134652','1545','33916','2','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134653','1546','33908','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134654','1546','33909','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134655','1546','33902','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134656','1547','33893','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134657','1547','33892','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134658','1548','33899','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134659','1548','33898','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134660','1548','33895','2','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134661','1548','33900','2','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134662','1548','33896','2','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134663','1548','33891','2','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134664','1190','31140','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134665','1190','31141','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134666','1261','31145','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134667','1261','31146','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134668','1261','31147','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134669','1191','31138','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134670','1192','31157','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134671','1192','31158','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134672','1193','31092','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134673','1193','31108','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134674','1193','31110','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134675','1193','31067','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134676','1193','31086','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134677','1193','31087','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134678','1194','31120','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134679','1194','31105','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134680','1194','31071','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134681','1194','31081','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134682','1195','31098','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134683','1195','31099','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134684','1196','31072','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134685','1196','31072','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134686','1197','31103','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134687','1197','31074','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134688','1198','31104','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134689','1198','31063','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134690','1198','31111','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134691','1198','31112','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134692','1198','31084','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134693','1199','31115','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134694','1199','31116','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134695','1199','31062','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134696','1199','31118','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134697','1199','31056','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134698','1200','31107','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134699','1200','31090','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134700','1201','31097','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134701','1201','31096','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134702','1202','31089','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134703','1202','31061','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134704','1203','31064','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134705','1204','31065','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134706','1204','31066','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134707','1204','31068','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134708','1204','31070','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134709','1204','31101','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134710','1204','31106','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134711','1204','31114','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134712','1205','31069','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134713','1206','31076','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134714','1206','31078','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134715','1206','31109','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134716','1206','31075','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134717','1207','31080','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134718','1207','31095','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134719','1208','31113','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134720','1208','31118','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134721','1209','31058','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134722','1209','31077','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134723','1209','31056','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134724','1209','31117','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134725','1109','30453','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134726','1109','30455','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134727','1110','30471','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134728','1110','30470','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134729','1110','30466','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134730','1110','30441','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134731','1111','30463','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134732','1111','30452','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134733','1111','30451','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134734','1111','30437','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134735','1112','30456','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134736','1112','30457','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134737','1112','30458','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134738','1112','30459','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134739','1113','30442','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134740','1113','30444','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134741','1113','30445','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134742','1114','30446','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134743','1114','30447','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134744','1114','31168','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134745','1114','30449','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134746','1136','30659','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134747','1136','30661','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134748','1137','30677','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134749','1137','30676','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134750','1137','30672','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134751','1137','30647','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134752','1138','30669','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134753','1138','30658','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134754','1138','30657','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134755','1138','30643','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134756','1139','30662','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134757','1139','30663','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134758','1139','30664','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134759','1139','30665','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134760','1140','30648','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134761','1140','30650','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134762','1140','30651','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134763','1141','30652','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134764','1141','30653','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134765','1141','31172','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134766','1141','30655','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134767','1115','30506','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134768','1115','30507','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134769','1116','30504','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134770','1116','30505','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134771','1116','30518','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134772','1116','30492','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134773','1117','30493','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134774','1117','30500','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134775','1117','30486','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134776','1117','30488','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134777','1118','30508','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134778','1118','30509','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134779','1118','30503','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134780','1118','30510','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134781','1119','30491','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134782','1119','30494','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134783','1119','30495','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134784','1120','30496','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134785','1120','30497','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134786','1120','31176','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134787','1120','30499','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134788','1266','31773','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134789','1266','31774','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134790','1267','31777','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134791','1267','31779','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134792','1267','33168','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134793','1268','31685','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134794','1268','31738','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134795','1269','31723','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134796','1269','31757','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134797','1269','31721','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134798','1270','31728','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134799','1270','31759','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134800','1271','31745','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134801','1271','31727','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134802','1272','31687','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134803','1272','31710','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134804','1273','31705','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134805','1273','31703','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134806','1273','31706','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134807','1273','31701','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134808','1273','31708','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134809','1274','31715','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134810','1274','31726','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134811','1274','31717','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134812','1274','31716','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134813','1274','31714','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134814','1274','31713','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134815','1210','31261','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134816','1210','31262','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134817','1211','31269','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134818','1211','31271','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134819','1211','33170','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134820','1212','31233','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134821','1212','31234','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134822','1213','31216','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134823','1213','31237','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134824','1213','31214','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134825','1214','31191','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134826','1214','31221','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134827','1215','31206','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134828','1215','31220','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134829','1216','31192','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134830','1216','31193','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134831','1217','31200','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134832','1217','31197','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134833','1217','31201','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134834','1217','31198','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134835','1217','31202','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134836','1218','31207','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134837','1218','31208','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134838','1218','31210','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134839','1218','31209','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134840','1218','31219','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134841','1218','31205','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134842','1380','32423','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134843','1380','32421','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134844','1381','32405','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134845','1382','32426','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134846','1382','32408','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134847','1382','32422','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134848','1382','32425','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134849','1383','32409','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134850','1384','32419','0','0','1A7C11','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134851','1384','32416','0','1','2774A4','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134852','1384','32413','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134853','1384','32418','5','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134854','1384','32415','5','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134855','1384','32412','5','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134856','1385','32420','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134857','1385','32417','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134858','1385','32414','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134859','1386','32433','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134860','1386','32432','0','1','2774A4','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134861','1387','32431','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134862','1387','32430','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134863','1387','32429','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134864','1387','32428','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134865','1387','32427','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134866','1388','32386','0','0','1A7C11','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134867','1388','32391','0','1','2774A4','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134868','1388','32387','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134869','1388','32390','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134870','1388','32395','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134871','1388','32389','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134872','1389','32393','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134873','1389','32392','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134874','1389','32394','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134875','1389','32388','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134876','1390','32401','5','0','1A7C11','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134877','1390','32402','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134878','1390','32397','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134879','1390','32398','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134880','1390','32399','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134881','1390','32400','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134882','1390','32396','0','6','AC8C14','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134883','1391','32367','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134884','1391','32366','0','1','2774A4','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134885','1392','32370','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134886','1393','32382','0','0','1A7C11','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134887','1393','32381','0','1','2774A4','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134888','1393','32383','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134889','1393','32384','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134890','1394','32377','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134891','1394','32374','0','1','2774A4','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134892','1395','32403','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134893','1395','32385','0','1','2774A4','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134894','1219','31363','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134895','1219','31346','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134896','1219','31345','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134897','1219','31344','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134898','1219','31343','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134899','1219','31342','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134900','1219','31340','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134901','1219','31339','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134902','1219','31341','0','8','F230E0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134903','1219','31341','0','9','FFAD40','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134904','1220','31337','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134905','1221','31360','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134906','1221','31359','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134907','1221','31357','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134908','1221','31356','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134909','1221','31354','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134910','1221','31353','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134911','1221','31352','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134912','1221','31350','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134913','1221','31351','0','8','F230E0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134914','1221','31338','0','9','FFAD40','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134915','1221','31349','0','10','40CDFF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134916','1221','31348','0','11','40FFA0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134917','1221','31347','0','12','AE4500','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134918','2295','42744','0','0','1A7C11','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134919','2295','42748','0','1','2774A4','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134920','2295','42751','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134921','2295','42746','5','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134922','2295','42749','5','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134923','2295','42752','5','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134924','1222','31336','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134925','2296','42745','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134926','2296','42747','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134927','2296','42750','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134928','1456','33178','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134929','1456','33179','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134930','1456','33180','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134931','1087','30346','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134932','1087','30345','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134933','1088','30350','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134934','1088','30349','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134935','1089','30396','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134936','1090','30398','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134937','1091','30322','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134938','1091','30277','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134939','1092','30284','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134940','1093','30313','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134941','1093','30314','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134942','1093','30315','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134943','1093','30316','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134944','1094','30279','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134945','1094','30280','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134946','1095','30290','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134947','1095','30293','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134948','1096','30318','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134949','1096','30308','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134950','1096','30320','2','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134951','1097','30317','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134952','1098','30289','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134953','1098','30291','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134954','1099','30334','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134955','1099','30325','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134956','1100','30306','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134957','1101','30274','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134958','1102','30281','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134959','1577','34351','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134960','1577','34350','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134961','1578','34387','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134962','1578','34388','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134963','1579','34393','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134964','1579','34386','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134965','1580','34370','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134966','1580','34384','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134967','1580','34383','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134968','1581','34438','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134969','1581','34413','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134970','1581','34427','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134971','1582','34420','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134972','1582','34419','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134973','1582','34418','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134974','675','27294','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134975','1035','30094','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134976','1038','30101','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134977','786','28246','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134978','687','27417','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134979','691','27376','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134980','1060','30159','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134981','2114','40461','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134982','2114','40462','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134983','2115','40465','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134984','1065','30161','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134985','1065','30162','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134986','2120','40451','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134987','1070','30142','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134988','741','27084','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134989','741','27085','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134990','741','27083','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134991','741','27086','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134992','741','27082','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134993','741','27079','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134994','745','27104','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134995','745','27105','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134996','745','27103','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134997','745','27106','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134998','745','27102','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('134999','745','27099','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135000','766','27124','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135001','766','27125','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135002','766','27123','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135003','766','27126','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135004','766','27122','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135005','766','27119','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135006','1223','31370','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135007','1223','31371','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135008','1226','31380','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135009','1226','31383','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135010','1229','31379','0','0','1A7C11','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135011','1229','31382','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135012','887','29211','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135013','887','29210','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135014','899','29216','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135015','899','29217','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135016','899','29218','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135017','899','29219','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135018','899','29220','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135019','899','29221','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135020','911','29089','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135021','911','29102','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135022','908','29098','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135023','908','29097','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135024','908','29095','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135025','908','29088','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135026','908','29094','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135027','908','29093','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135028','908','29092','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135029','908','29091','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135030','908','29090','0','8','F230E0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135031','905','29198','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135032','917','29104','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135033','917','29105','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135034','914','31364','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135035','923','29118','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135036','923','29119','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135037','923','29117','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135038','920','29107','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135039','920','29106','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135040','902','29096','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135041','902','29101','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135042','902','29100','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135043','902','29087','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135044','1279','31902','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135045','1279','31903','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135046','1281','31933','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135047','1281','31936','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135048','1283','31932','0','0','1A7C11','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135049','1283','31935','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135050','1285','31907','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135051','1285','31908','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135052','1287','31911','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135053','1287','31914','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135054','1287','31913','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135055','1287','31910','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135056','1287','31912','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135057','1287','31909','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135058','1289','31831','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135059','1289','31820','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135060','1291','31822','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135061','1291','31835','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135062','1291','31825','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135063','1291','31826','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135064','1291','31823','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135065','1291','31827','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135066','1291','31824','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135067','1291','31828','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135068','1291','31830','0','8','F230E0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135069','1293','31892','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135070','1295','31855','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135071','1295','31853','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135072','1297','31893','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135073','1299','31838','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135074','1299','31839','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135075','1299','31837','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135076','1301','31850','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135077','1301','31852','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135078','1303','31829','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135079','1303','31833','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135080','1303','31834','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135081','1303','31832','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135082','866','29014','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135083','866','29015','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135084','868','29018','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135085','868','29019','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135086','868','29022','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135087','868','29023','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135088','868','29020','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135089','868','29024','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135090','868','29021','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135091','868','29025','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135092','868','29026','0','8','F230E0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135093','870','29048','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135094','872','29028','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135095','872','29027','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135096','882','28992','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135097','882','28991','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135098','876','28982','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135099','876','28983','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135100','874','28978','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135101','878','28985','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135102','878','28984','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135103','880','28987','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135104','880','28988','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135105','880','28989','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135106','880','28990','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135107','964','29513','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135108','964','29512','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135109','1238','31435','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135110','1238','31438','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135111','1238','31437','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135112','1238','31434','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135113','1238','31436','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135114','1238','31433','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135115','1488','33321','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135116','1488','33324','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135117','1490','33322','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135118','1490','33323','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135119','1240','31441','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135120','1240','31442','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135121','1242','31440','0','0','1A7C11','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135122','1242','31439','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135123','974','29456','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135124','974','29455','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135125','976','29458','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135126','976','29457','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135127','972','29454','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135128','978','29462','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135129','980','31421','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135130','980','29466','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135131','1305','32013','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135132','1305','32014','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135133','1307','32017','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135134','1307','32020','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135135','1307','32019','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135136','1307','32016','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135137','1307','32018','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135138','1307','32015','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135139','1492','33329','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135140','1492','33332','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135141','1494','33330','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135142','1494','33331','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135143','1309','32023','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135144','1309','32024','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135145','1311','32022','0','0','1A7C11','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135146','1311','32021','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135147','1313','31952','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135148','1313','31949','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135149','1315','31951','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135150','1315','31950','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135151','1317','31954','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135152','1319','31973','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135153','1321','31969','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135154','1321','31970','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135155','2123','40493','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135156','2123','40496','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135157','2123','40495','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135158','2123','40492','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135159','2123','40494','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135160','2123','40491','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135161','668','27208','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135162','1032','30088','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135163','1032','30087','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135164','1033','30089','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135165','2124','40519','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135166','2124','40522','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135167','2124','40521','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135168','2124','40518','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135169','2124','40520','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135170','2124','40517','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135171','2125','40528','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135172','2125','40529','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135173','2126','40532','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135174','2127','40506','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135175','2128','40547','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135176','2128','40550','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135177','2128','40549','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135178','2128','40546','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135179','2128','40548','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135180','2128','40545','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135181','671','27240','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135182','1034','30093','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135183','2129','40584','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135184','2129','40587','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135185','2129','40586','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135186','2129','40583','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135187','2129','40585','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135188','2129','40582','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135189','2130','40593','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135190','2130','40596','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135191','2130','40595','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135192','2130','40592','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135193','2130','40594','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135194','2130','40591','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135195','2131','40559','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135196','2132','40572','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135197','2133','40565','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135198','2134','40578','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135199','1676','35369','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135200','1677','35372','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135201','1678','35379','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135202','1678','35386','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135203','1678','35377','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135204','1678','35384','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135205','1678','35376','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135206','1678','35383','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135207','1679','35387','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135208','1679','35380','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135209','1680','35378','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135210','1680','35385','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135211','1681','35403','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135212','1681','35404','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135213','1549','33966','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135214','1550','33971','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135215','1551','33974','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135216','1551','33977','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135217','1551','33976','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135218','1551','33973','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135219','1551','33975','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135220','1551','33972','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135221','1552','34007','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135222','1553','34012','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135223','1554','34015','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135224','1554','34018','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135225','1554','34017','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135226','1554','34014','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135227','1554','34016','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135228','1554','34013','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135229','1555','34048','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135230','1556','34053','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135231','1557','34056','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135232','1557','34059','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135233','1557','34058','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135234','1557','34055','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135235','1557','34057','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135236','1557','34054','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135237','1558','34089','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135238','1559','34094','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135239','1560','34097','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135240','1560','34100','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135241','1560','34099','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135242','1560','34096','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135243','1560','34098','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135244','1560','34095','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135245','1561','34130','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135246','1562','34135','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135247','1563','34138','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135248','1563','34141','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135249','1563','34140','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135250','1563','34137','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135251','1563','34139','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135252','1563','34136','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135253','2135','40667','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135254','2136','40671','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135255','2137','40676','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135256','2138','40679','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135257','2138','40682','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135258','2138','40681','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135259','2138','40678','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135260','2138','40680','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135261','2138','40677','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135262','2139','40690','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135263','2140','40695','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135264','2141','40698','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135265','2141','40701','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135266','2141','40700','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135267','2141','40697','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135268','2141','40699','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135269','2141','40696','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135270','2142','40605','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135271','694','27478','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135272','1042','30105','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135273','2143','40723','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135274','2143','40726','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135275','2143','40725','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135276','2143','40722','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135277','2143','40724','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135278','2143','40721','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135279','1043','30107','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135280','2144','40745','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135281','2144','40748','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135282','2144','40747','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135283','2144','40744','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135284','2144','40746','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135285','2144','40743','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135286','698','27511','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135287','1044','30108','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135288','2145','40767','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135289','2145','40770','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135290','2145','40769','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135291','2145','40766','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135292','2145','40768','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135293','2145','40765','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135294','701','27547','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135295','1045','27591','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135296','1045','30110','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135297','1046','30111','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135298','2146','40790','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135299','2146','40793','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135300','2146','40792','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135301','2146','40789','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135302','2146','40791','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135303','2146','40788','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135304','704','27586','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135305','1682','35439','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135306','1683','35441','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135307','1684','35443','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135308','1685','35446','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135309','1686','35450','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135310','1686','35465','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135311','1686','35456','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135312','1686','35447','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135313','1686','35468','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135314','1686','35471','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135315','1686','35459','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135316','1687','35449','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135317','1687','35464','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135318','1687','35455','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135319','1687','35461','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135320','1687','35467','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135321','1687','35470','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135322','1687','35457','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135323','1688','35473','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135324','1688','35463','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135325','1688','35454','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135326','1688','35472','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135327','1688','35466','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135328','1688','35469','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135329','1688','35458','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135330','1689','35474','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135331','1690','35476','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135332','1691','35478','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135333','1691','35480','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135334','1692','35487','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135335','1692','35484','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135336','1693','35486','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135337','1693','35483','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135338','1694','35490','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135339','1694','35488','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135340','1694','35489','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135341','1695','35497','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135342','1695','35493','0','1','2774A4','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135343','1695','35503','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135344','1695','35499','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135345','1695','35496','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135346','1695','35502','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135347','1696','35508','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135348','1696','35507','0','1','2774A4','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135349','1696','35510','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135350','1696','35509','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135351','1697','35516','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135352','1697','35515','0','1','2774A4','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135353','1697','35518','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135354','1697','35517','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135355','1698','35524','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135356','1698','35523','0','1','2774A4','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135357','1698','35526','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135358','1698','35525','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135359','1699','35531','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135360','1699','35529','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135361','1699','35530','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135362','1700','35411','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135363','1700','35409','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135364','1700','35407','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135365','1700','35413','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135366','1700','35412','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135367','1700','35410','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135368','2147','40813','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135369','2147','40816','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135370','2147','40815','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135371','2147','40812','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135372','2147','40814','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135373','2147','40811','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135374','708','27671','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135375','1047','30112','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135376','2148','40836','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135377','2148','40839','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135378','2148','40838','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135379','2148','40835','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135380','2148','40837','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135381','2148','40834','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135382','1048','30114','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135383','1048','30113','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135384','1049','30115','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135385','2149','40859','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135386','2149','40862','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135387','2149','40861','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135388','2149','40858','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135389','2149','40860','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135390','2149','40857','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135391','775','28143','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135392','714','27753','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135393','1050','30116','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135394','2150','40882','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135395','2150','40885','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135396','2150','40884','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135397','2150','40881','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135398','2150','40883','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135399','2150','40880','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135400','2151','40904','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135401','2151','40907','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135402','2151','40906','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135403','2151','40903','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135404','2151','40905','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135405','2151','40902','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135406','856','28894','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135407','1051','30118','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135408','2152','40926','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135409','2152','40929','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135410','2152','40928','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135411','2152','40925','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135412','2152','40927','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135413','2152','40924','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135414','1564','34166','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135415','1564','34169','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135416','1564','34168','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135417','1564','34165','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135418','1564','34167','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135419','1564','34164','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135420','1565','34174','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135421','1565','34175','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135422','1566','34178','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135423','1567','34154','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135424','1811','36861','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135425','1812','36867','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135426','1812','36865','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135427','1812','36864','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135428','1812','36866','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135429','2153','40948','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135430','2153','40951','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135431','2153','40950','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135432','2153','40947','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135433','2153','40949','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135434','2153','40946','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135435','1813','36878','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135436','1813','36879','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135437','1814','36853','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135438','1816','36915','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135439','1817','36921','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135440','1817','36919','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135441','1817','36918','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135442','1817','36920','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135443','2154','40969','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135444','2154','40972','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135445','2154','40971','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135446','2154','40968','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135447','2154','40970','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135448','2154','40967','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135449','1818','36932','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135450','1818','36933','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135451','1819','36907','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135452','1821','36969','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135453','1822','36975','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135454','1822','36973','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135455','1822','36972','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135456','1822','36974','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135457','2155','40990','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135458','2155','40993','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135459','2155','40992','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135460','2155','40989','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135461','2155','40991','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135462','2155','40988','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135463','1823','36986','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135464','1823','36987','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135465','1824','36961','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135466','1826','37023','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135467','1827','37029','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135468','1827','37027','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135469','1827','37026','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135470','1827','37028','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135471','2156','41011','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135472','2156','41014','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135473','2156','41013','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135474','2156','41010','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135475','2156','41012','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135476','2156','41009','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135477','1828','37040','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135478','1828','37041','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135479','1829','37015','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135480','1831','37077','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135481','1832','37083','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135482','1832','37081','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135483','1832','37080','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135484','1832','37082','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135485','2157','41032','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135486','2157','41035','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135487','2157','41034','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135488','2157','41031','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135489','2157','41033','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135490','2157','41030','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135491','1833','37094','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135492','1833','37095','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135493','1834','37069','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135494','1836','37131','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135495','1837','37137','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135496','1837','37135','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135497','1837','37134','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135498','1837','37136','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135499','2158','41053','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135500','2158','41056','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135501','2158','41055','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135502','2158','41052','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135503','2158','41054','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135504','2158','41051','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135505','1838','37148','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135506','1838','37149','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135507','1839','37123','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135508','1841','37185','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135509','1842','37191','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135510','1842','37189','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135511','1842','37188','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135512','1842','37190','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135513','2159','41074','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135514','2159','41077','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135515','2159','41076','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135516','2159','41073','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135517','2159','41075','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135518','2159','41072','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135519','1843','37202','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135520','1843','37203','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135521','1844','37177','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135522','1846','37239','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135523','1847','37245','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135524','1847','37243','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135525','1847','37242','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135526','1847','37244','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135527','2160','41095','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135528','2160','41098','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135529','2160','41097','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135530','2160','41094','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135531','2160','41096','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135532','2160','41093','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135533','1848','37256','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135534','1848','37257','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135535','1849','37231','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135536','1851','37293','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135537','1852','37299','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135538','1852','37297','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135539','1852','37296','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135540','1852','37298','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135541','2161','41116','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135542','2161','41119','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135543','2161','41118','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135544','2161','41115','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135545','2161','41117','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135546','2161','41114','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135547','1853','37310','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135548','1853','37311','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135549','1854','37285','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135550','1856','37347','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135551','1857','37353','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135552','1857','37351','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135553','1857','37350','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135554','1857','37352','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135555','2162','41137','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135556','2162','41140','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135557','2162','41139','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135558','2162','41136','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135559','2162','41138','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135560','2162','41135','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135561','1858','37364','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135562','1858','37365','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135563','1859','37339','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135564','1861','37401','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135565','1862','37407','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135566','1862','37405','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135567','1862','37404','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135568','1862','37406','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135569','2163','41158','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135570','2163','41161','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135571','2163','41160','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135572','2163','41157','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135573','2163','41159','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135574','2163','41156','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135575','1863','37418','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135576','1863','37419','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135577','1864','37393','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135578','1866','37455','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135579','1867','37461','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135580','1867','37459','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135581','1867','37458','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135582','1867','37460','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135583','2164','41179','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135584','2164','41182','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135585','2164','41181','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135586','2164','41178','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135587','2164','41180','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135588','2164','41177','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135589','1868','37472','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135590','1868','37473','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135591','1869','37447','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135592','1871','37509','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135593','1872','37515','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135594','1872','37513','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135595','1872','37512','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135596','1872','37514','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135597','2165','41200','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135598','2165','41203','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135599','2165','41202','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135600','2165','41199','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135601','2165','41201','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135602','2165','41198','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135603','1873','37526','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135604','1873','37527','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135605','1874','37501','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135606','1876','37563','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135607','1877','37569','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135608','1877','37567','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135609','1877','37566','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135610','1877','37568','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135611','2166','41221','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135612','2166','41224','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135613','2166','41223','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135614','2166','41220','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135615','2166','41222','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135616','2166','41219','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135617','1878','37580','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135618','1878','37581','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135619','1879','37555','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135620','1881','37617','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135621','1882','37623','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135622','1882','37621','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135623','1882','37620','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135624','1882','37622','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135625','2167','41242','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135626','2167','41245','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135627','2167','41244','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135628','2167','41241','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135629','2167','41243','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135630','2167','41240','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135631','1883','37634','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135632','1883','37635','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135633','1884','37609','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135634','1886','37671','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135635','1887','37677','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135636','1887','37675','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135637','1887','37674','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135638','1887','37676','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135639','2168','41263','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135640','2168','41266','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135641','2168','41265','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135642','2168','41262','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135643','2168','41264','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135644','2168','41261','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135645','1888','37688','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135646','1888','37689','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135647','1889','37663','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135648','1891','37725','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135649','1892','37731','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135650','1892','37729','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135651','1892','37728','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135652','1892','37730','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135653','2169','41284','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135654','2169','41287','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135655','2169','41286','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135656','2169','41283','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135657','2169','41285','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135658','2169','41282','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135659','1893','37742','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135660','1893','37743','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135661','1894','37717','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135662','1896','37779','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135663','1897','37785','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135664','1897','37783','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135665','1897','37782','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135666','1897','37784','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135667','2170','41305','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135668','2170','41308','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135669','2170','41307','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135670','2170','41304','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135671','2170','41306','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135672','2170','41303','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135673','1898','37796','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135674','1898','37797','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135675','1899','37771','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135676','1901','37833','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135677','1902','37839','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135678','1902','37837','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135679','1902','37836','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135680','1902','37838','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135681','2171','41326','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135682','2171','41329','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135683','2171','41328','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135684','2171','41325','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135685','2171','41327','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135686','2171','41324','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135687','1903','37850','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135688','1903','37851','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135689','1904','37825','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135690','1906','37887','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135691','1907','37893','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135692','1907','37891','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135693','1907','37890','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135694','1907','37892','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135695','2172','41347','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135696','2172','41350','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135697','2172','41349','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135698','2172','41346','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135699','2172','41348','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135700','2172','41345','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135701','1908','37904','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135702','1908','37905','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135703','1909','37879','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135704','1911','37941','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135705','1912','37947','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135706','1912','37945','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135707','1912','37944','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135708','1912','37946','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135709','2173','41368','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135710','2173','41371','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135711','2173','41370','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135712','2173','41367','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135713','2173','41369','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135714','2173','41366','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135715','1913','37958','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135716','1913','37959','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135717','1914','37933','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135718','1916','37995','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135719','1917','38001','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135720','1917','37999','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135721','1917','37998','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135722','1917','38000','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135723','2174','41389','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135724','2174','41392','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135725','2174','41391','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135726','2174','41388','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135727','2174','41390','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135728','2174','41387','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135729','1918','38012','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135730','1918','38013','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135731','1919','37987','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135732','1921','38049','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135733','1922','38055','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135734','1922','38053','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135735','1922','38052','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135736','1922','38054','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135737','2175','41410','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135738','2175','41413','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135739','2175','41412','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135740','2175','41409','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135741','2175','41411','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135742','2175','41408','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135743','1923','38066','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135744','1923','38067','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135745','1924','38041','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135746','1926','38103','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135747','1927','38109','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135748','1927','38107','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135749','1927','38106','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135750','1927','38108','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135751','2176','41431','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135752','2176','41434','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135753','2176','41433','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135754','2176','41430','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135755','2176','41432','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135756','2176','41429','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135757','1928','38120','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135758','1928','38121','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135759','1929','38095','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135760','1931','38157','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135761','1932','38163','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135762','1932','38161','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135763','1932','38160','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135764','1932','38162','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135765','2177','41452','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135766','2177','41455','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135767','2177','41454','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135768','2177','41451','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135769','2177','41453','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135770','2177','41450','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135771','1933','38174','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135772','1933','38175','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135773','1934','38149','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135774','1936','38211','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135775','1937','38217','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135776','1937','38215','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135777','1937','38214','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135778','1937','38216','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135779','2178','41473','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135780','2178','41476','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135781','2178','41475','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135782','2178','41472','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135783','2178','41474','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135784','2178','41471','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135785','1938','38228','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135786','1938','38229','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135787','1939','38203','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135788','1941','38265','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135789','1942','38271','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135790','1942','38269','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135791','1942','38268','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135792','1942','38270','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135793','2179','41494','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135794','2179','41497','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135795','2179','41496','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135796','2179','41493','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135797','2179','41495','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135798','2179','41492','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135799','1943','38282','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135800','1943','38283','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135801','1944','38257','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135802','1946','38319','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135803','1947','38325','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135804','1947','38323','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135805','1947','38322','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135806','1947','38324','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135807','2180','41515','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135808','2180','41518','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135809','2180','41517','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135810','2180','41514','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135811','2180','41516','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135812','2180','41513','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135813','1948','38336','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135814','1948','38337','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135815','1949','38311','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135816','1951','38373','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135817','1952','38379','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135818','1952','38377','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135819','1952','38376','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135820','1952','38378','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135821','2181','41536','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135822','2181','41539','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135823','2181','41538','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135824','2181','41535','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135825','2181','41537','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135826','2181','41534','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135827','1953','38390','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135828','1953','38391','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135829','1954','38365','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135830','1956','38427','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135831','1957','38433','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135832','1957','38431','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135833','1957','38430','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135834','1957','38432','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135835','2182','41557','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135836','2182','41560','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135837','2182','41559','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135838','2182','41556','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135839','2182','41558','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135840','2182','41555','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135841','1958','38444','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135842','1958','38445','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135843','1959','38419','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135844','1961','38481','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135845','1962','38487','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135846','1962','38485','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135847','1962','38484','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135848','1962','38486','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135849','2183','41578','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135850','2183','41581','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135851','2183','41580','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135852','2183','41577','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135853','2183','41579','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135854','2183','41576','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135855','1963','38498','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135856','1963','38499','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135857','1964','38473','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135858','1966','38535','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135859','1967','38541','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135860','1967','38539','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135861','1967','38538','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135862','1967','38540','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135863','2184','41599','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135864','2184','41602','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135865','2184','41601','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135866','2184','41598','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135867','2184','41600','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135868','2184','41597','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135869','1968','38552','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135870','1968','38553','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135871','1969','38527','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135872','1971','38589','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135873','1972','38595','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135874','1972','38593','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135875','1972','38592','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135876','1972','38594','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135877','2185','41620','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135878','2185','41623','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135879','2185','41622','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135880','2185','41619','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135881','2185','41621','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135882','2185','41618','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135883','1973','38606','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135884','1973','38607','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135885','1974','38581','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135886','1976','38643','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135887','1977','38649','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135888','1977','38647','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135889','1977','38646','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135890','1977','38648','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135891','2186','41641','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135892','2186','41644','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135893','2186','41643','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135894','2186','41640','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135895','2186','41642','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135896','2186','41639','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135897','1978','38660','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135898','1978','38661','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135899','1979','38635','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135900','1981','38697','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135901','1982','38703','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135902','1982','38701','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135903','1982','38700','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135904','1982','38702','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135905','2187','41662','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135906','2187','41665','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135907','2187','41664','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135908','2187','41661','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135909','2187','41663','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135910','2187','41660','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135911','1983','38714','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135912','1983','38715','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135913','1984','38689','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135914','1986','38751','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135915','1987','38757','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135916','1987','38755','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135917','1987','38754','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135918','1987','38756','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135919','2188','41683','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135920','2188','41686','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135921','2188','41685','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135922','2188','41682','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135923','2188','41684','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135924','2188','41681','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135925','1988','38768','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135926','1988','38769','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135927','1989','38743','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135928','1991','38805','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135929','1992','38811','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135930','1992','38809','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135931','1992','38808','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135932','1992','38810','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135933','2189','41704','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135934','2189','41707','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135935','2189','41706','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135936','2189','41703','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135937','2189','41705','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135938','2189','41702','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135939','1993','38822','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135940','1993','38823','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135941','1994','38797','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135942','1996','38859','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135943','1997','38865','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135944','1997','38863','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135945','1997','38862','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135946','1997','38864','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135947','2190','41725','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135948','2190','41728','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135949','2190','41727','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135950','2190','41724','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135951','2190','41726','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135952','2190','41723','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135953','1998','38876','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135954','1998','38877','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135955','1999','38851','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135956','2001','38913','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135957','2002','38919','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135958','2002','38917','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135959','2002','38916','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135960','2002','38918','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135961','2191','41746','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135962','2191','41749','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135963','2191','41748','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135964','2191','41745','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135965','2191','41747','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135966','2191','41744','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135967','2003','38930','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135968','2003','38931','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135969','2004','38905','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135970','2006','38967','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135971','2007','38973','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135972','2007','38971','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135973','2007','38970','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135974','2007','38972','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135975','2192','41767','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135976','2192','41770','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135977','2192','41769','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135978','2192','41766','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135979','2192','41768','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135980','2192','41765','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135981','2008','38984','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135982','2008','38985','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135983','2009','38959','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135984','2011','39021','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135985','2012','39027','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135986','2012','39025','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135987','2012','39024','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135988','2012','39026','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135989','2193','41788','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135990','2193','41791','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135991','2193','41790','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135992','2193','41787','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135993','2193','41789','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135994','2193','41786','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135995','2013','39038','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135996','2013','39039','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135997','2014','39013','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135998','2016','39075','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('135999','2017','39081','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136000','2017','39079','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136001','2017','39078','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136002','2017','39080','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136003','2194','41809','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136004','2194','41812','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136005','2194','41811','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136006','2194','41808','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136007','2194','41810','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136008','2194','41807','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136009','2018','39092','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136010','2018','39093','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136011','2019','39067','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136012','2021','39129','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136013','2022','39135','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136014','2022','39133','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136015','2022','39132','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136016','2022','39134','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136017','2195','41830','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136018','2195','41833','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136019','2195','41832','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136020','2195','41829','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136021','2195','41831','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136022','2195','41828','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136023','2023','39146','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136024','2023','39147','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136025','2024','39121','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136026','2026','39183','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136027','2027','39189','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136028','2027','39187','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136029','2027','39186','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136030','2027','39188','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136031','2196','41851','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136032','2196','41854','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136033','2196','41853','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136034','2196','41850','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136035','2196','41852','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136036','2196','41849','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136037','2028','39200','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136038','2028','39201','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136039','2029','39175','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136040','2031','39237','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136041','2032','39243','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136042','2032','39241','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136043','2032','39240','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136044','2032','39242','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136045','2197','41872','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136046','2197','41875','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136047','2197','41874','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136048','2197','41871','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136049','2197','41873','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136050','2197','41870','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136051','2033','39254','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136052','2033','39255','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136053','2034','39229','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136054','2036','39291','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136055','2037','39297','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136056','2037','39295','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136057','2037','39294','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136058','2037','39296','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136059','2198','41893','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136060','2198','41896','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136061','2198','41895','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136062','2198','41892','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136063','2198','41894','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136064','2198','41891','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136065','2038','39308','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136066','2038','39309','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136067','2039','39283','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136068','2041','39345','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136069','2042','39351','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136070','2042','39349','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136071','2042','39348','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136072','2042','39350','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136073','2199','41914','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136074','2199','41917','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136075','2199','41916','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136076','2199','41913','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136077','2199','41915','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136078','2199','41912','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136079','2043','39362','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136080','2043','39363','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136081','2044','39337','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136082','2046','39399','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136083','2047','39405','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136084','2047','39403','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136085','2047','39402','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136086','2047','39404','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136087','2200','41935','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136088','2200','41938','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136089','2200','41937','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136090','2200','41934','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136091','2200','41936','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136092','2200','41933','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136093','2048','39416','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136094','2048','39417','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136095','2049','39391','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136096','2051','39453','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136097','2052','39459','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136098','2052','39457','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136099','2052','39456','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136100','2052','39458','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136101','2201','41956','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136102','2201','41959','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136103','2201','41958','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136104','2201','41955','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136105','2201','41957','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136106','2201','41954','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136107','2053','39470','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136108','2053','39471','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136109','2054','39445','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136110','2056','39507','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136111','2057','39513','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136112','2057','39511','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136113','2057','39510','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136114','2057','39512','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136115','2202','41977','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136116','2202','41980','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136117','2202','41979','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136118','2202','41976','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136119','2202','41978','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136120','2202','41975','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136121','2058','39524','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136122','2058','39525','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136123','2059','39499','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136124','2061','39561','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136125','2062','39567','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136126','2062','39565','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136127','2062','39564','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136128','2062','39566','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136129','2203','41998','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136130','2203','42001','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136131','2203','42000','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136132','2203','41997','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136133','2203','41999','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136134','2203','41996','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136135','2063','39578','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136136','2063','39579','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136137','2064','39553','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136138','2066','39615','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136139','2067','39621','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136140','2067','39619','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136141','2067','39618','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136142','2067','39620','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136143','2204','42019','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136144','2204','42022','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136145','2204','42021','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136146','2204','42018','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136147','2204','42020','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136148','2204','42017','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136149','2068','39632','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136150','2068','39633','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136151','2069','39607','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136152','2071','39669','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136153','2072','39675','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136154','2072','39673','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136155','2072','39672','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136156','2072','39674','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136157','2205','42040','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136158','2205','42043','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136159','2205','42042','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136160','2205','42039','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136161','2205','42041','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136162','2205','42038','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136163','2073','39686','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136164','2073','39687','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136165','2074','39661','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136166','2076','39723','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136167','2077','39729','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136168','2077','39727','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136169','2077','39726','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136170','2077','39728','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136171','2206','42061','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136172','2206','42064','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136173','2206','42063','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136174','2206','42060','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136175','2206','42062','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136176','2206','42059','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136177','2078','39740','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136178','2078','39741','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136179','2079','39715','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136180','724','27904','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136181','1396','32439','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136182','1396','32437','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136183','1396','32436','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136184','1396','32438','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136185','2207','42082','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136186','2207','42085','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136187','2207','42084','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136188','2207','42081','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136189','2207','42083','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136190','2207','42080','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136191','1052','27907','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136192','1052','27908','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136193','1053','30120','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136194','1457','33206','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136195','1457','33193','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136196','1458','33195','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136197','1458','33203','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136198','1458','33202','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136199','1459','33200','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136200','1459','33194','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136201','1460','33187','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136202','1460','33186','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136203','1460','33204','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136204','1461','33226','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136205','1461','33215','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136206','1462','33207','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136207','1463','33223','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136208','1463','33218','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136209','1464','33210','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136210','1464','33209','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136211','1464','33224','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136212','1465','33249','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136213','1465','33236','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136214','1466','33238','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136215','1466','33246','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136216','1466','33245','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136217','1467','33243','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136218','1467','33237','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136219','1468','33230','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136220','1468','33229','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136221','1468','33247','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136222','1469','33258','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136223','1470','33251','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136224','1471','33256','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136225','1472','33277','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136226','1473','33274','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136227','1473','33273','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136228','1473','33272','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136229','1474','33270','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136230','1475','33269','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136231','1476','33261','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136232','1476','33275','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136233','1477','33296','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136234','1478','33293','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136235','1478','33292','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136236','1478','33291','5','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136237','1479','33289','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136238','1480','33288','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136239','1481','33280','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136240','1481','33294','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136241','1482','33312','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136242','1483','33313','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136243','1484','33314','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136244','1485','33319','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136245','1486','33320','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136246','1487','33304','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136247','1487','33305','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136248','2208','42103','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136249','2208','42106','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136250','2208','42105','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136251','2208','42102','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136252','2208','42104','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136253','2208','42101','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136254','727','27936','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136255','1054','27935','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136256','1054','30122','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136257','1055','30123','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136258','2209','42125','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136259','2209','42128','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136260','2209','42127','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136261','2209','42124','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136262','2209','42126','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136263','2209','42123','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136264','730','27975','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136265','1056','30126','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136266','733','28003','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136267','1057','30131','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136268','2210','42147','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136269','2210','42150','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136270','2210','42149','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136271','2210','42146','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136272','2210','42148','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136273','2210','42145','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136274','2211','42168','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136275','2211','42171','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136276','2211','42170','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136277','2211','42167','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136278','2211','42169','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136279','2211','42166','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136280','736','28031','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136281','1058','30136','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136282','2080','39768','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136283','2080','39769','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136284','2080','39770','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136285','2080','39771','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136286','2081','39772','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136287','2081','39773','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136288','2082','39774','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136289','2082','39775','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136290','2082','39780','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136291','2083','39777','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136292','2083','39778','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136293','2083','39781','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136294','2084','39792','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136295','2084','39790','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136296','2084','39793','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136297','2084','39795','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136298','2084','39796','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136299','1701','35553','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136300','1701','35556','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136301','1702','35558','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136302','1702','35561','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136303','1703','35562','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136304','1704','35563','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136305','1705','35592','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136306','1705','35584','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136307','1705','35594','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136308','1705','35586','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136309','1705','35595','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136310','1705','35587','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136311','1706','35593','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136312','1706','35585','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136313','1707','35583','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136314','1707','35591','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136315','1708','35598','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136316','1709','35606','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136317','1710','35607','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136318','1711','35566','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136319','1712','35622','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136320','1713','35634','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136321','1713','35626','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136322','1713','35636','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136323','1713','35628','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136324','1713','35637','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136325','1713','35629','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136326','1714','35635','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136327','1714','35627','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136328','1715','35625','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136329','1715','35633','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136330','1716','35640','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136331','1717','35641','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136332','1718','35610','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136333','1719','35658','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136334','1720','35659','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136335','1721','35660','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136336','1722','35661','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136337','1723','35669','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136338','1723','35679','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136339','1723','35670','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136340','1723','35665','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136341','1723','35672','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136342','1723','35666','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136343','1724','35663','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136344','1724','35664','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136345','1725','35686','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136346','1725','35693','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136347','1725','35684','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136348','1725','35691','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136349','1725','35683','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136350','1725','35690','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136351','1726','35685','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136352','1726','35692','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136353','1727','35694','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136354','1727','35687','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136355','1728','35707','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136356','1729','35708','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136357','1730','35725','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136358','1731','35726','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136359','1732','35727','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136360','1733','35728','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136361','1734','35736','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136362','1734','35746','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136363','1734','35737','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136364','1734','35732','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136365','1734','35739','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136366','1734','35733','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136367','1735','35730','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136368','1735','35731','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136369','1736','35753','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136370','1736','35760','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136371','1736','35751','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136372','1736','35758','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136373','1736','35750','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136374','1736','35757','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136375','1737','35752','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136376','1737','35759','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136377','1738','35761','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136378','1738','35754','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136379','1739','35774','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136380','1740','35775','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136381','1741','35791','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136382','1742','35799','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136383','1742','35802','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136384','1743','35804','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136385','1743','35807','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136386','1744','35808','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136387','1745','35809','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136388','1746','35834','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136389','1746','35826','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136390','1746','35836','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136391','1746','35828','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136392','1746','35837','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136393','1746','35829','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136394','1747','35835','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136395','1747','35827','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136396','1748','35825','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136397','1748','35833','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136398','1749','35840','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136399','1750','35812','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136400','1751','35876','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136401','1751','35868','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136402','1751','35878','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136403','1751','35870','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136404','1751','35879','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136405','1751','35871','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136406','1752','35877','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136407','1752','35869','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136408','1753','35867','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136409','1753','35875','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136410','1754','35882','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136411','1755','35890','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136412','1756','35891','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136413','1757','35850','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136414','1758','35920','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136415','1758','35912','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136416','1758','35922','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136417','1758','35914','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136418','1758','35923','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136419','1758','35915','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136420','1759','35921','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136421','1759','35913','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136422','1760','35911','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136423','1760','35919','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136424','1761','35926','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136425','1762','35934','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136426','1763','35935','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136427','1764','35894','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136428','1765','35952','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136429','1766','35964','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136430','1766','35956','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136431','1766','35966','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136432','1766','35958','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136433','1766','35967','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136434','1766','35959','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136435','1767','35965','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136436','1767','35957','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136437','1768','35955','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136438','1768','35963','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136439','1769','35970','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136440','1770','35978','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136441','1771','35979','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136442','1772','35938','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136443','1773','35996','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136444','1774','36008','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136445','1774','36000','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136446','1774','36010','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136447','1774','36002','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136448','1774','36011','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136449','1774','36003','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136450','1775','36009','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136451','1775','36001','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136452','1776','35999','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136453','1776','36007','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136454','1777','36014','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136455','1778','36022','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136456','1779','36023','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136457','1780','35982','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136458','1781','36041','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136459','1782','36053','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136460','1782','36045','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136461','1782','36055','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136462','1782','36047','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136463','1782','36056','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136464','1782','36048','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136465','1783','36054','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136466','1783','36046','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136467','1784','36044','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136468','1784','36052','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136469','1785','36059','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136470','1786','36067','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136471','1787','36068','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136472','1788','36026','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136473','1789','36086','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136474','1790','36098','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136475','1790','36090','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136476','1790','36100','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136477','1790','36092','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136478','1790','36101','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136479','1790','36093','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136480','1791','36099','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136481','1791','36091','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136482','1792','36089','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136483','1792','36097','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136484','1793','36104','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136485','1794','36112','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136486','1795','36113','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136487','1796','36071','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136488','1797','36131','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136489','1798','36144','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136490','1798','36136','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136491','1798','36146','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136492','1798','36138','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136493','1798','36147','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136494','1798','36139','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136495','1799','36145','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136496','1799','36137','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136497','1800','36135','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136498','1800','36143','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136499','1801','36150','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136500','1802','36158','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136501','1803','36159','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136502','1804','36116','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136503','472','22945','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136504','472','22946','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136505','473','22950','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136506','473','22948','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136507','471','22924','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136508','471','22920','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136509','469','22922','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136510','469','22923','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136511','469','22921','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136512','498','23109','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136513','498','23112','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136514','498','23115','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136515','498','23113','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136516','498','23114','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136517','498','23110','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136518','540','22942','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136519','492','23073','5','0','00AA00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136520','492','23074','5','1','3333FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136521','467','22910','0','0','C80000','0','2','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136522','467','22908','0','1','00C800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136523','465','22884','0','0','009900','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136524','465','22880','0','1','000099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136525','463','22882','0','0','009900','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136526','463','22883','0','1','000099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136527','463','22881','0','2','990000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136528','462','22886','1','0','009999','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136529','462','22888','1','1','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136530','462','22891','1','2','990000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136531','462','22892','1','3','000099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136532','462','22885','1','4','009900','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136533','541','22902','5','0','00C800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136534','464','22897','0','0','AA0000','0','2','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136535','464','22895','0','1','00AA00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136536','478','22985','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136537','478','22986','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136538','479','22990','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136539','479','22988','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136540','475','22962','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136541','475','22963','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136542','475','22961','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136543','474','22968','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136544','474','22971','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136545','474','22972','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136546','474','22965','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136547','542','22982','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136548','2212','42279','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136549','2212','42282','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136550','2212','42281','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136551','2212','42278','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136552','2212','42280','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136553','2212','42277','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136554','2213','42285','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136555','2213','42286','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136556','2214','42308','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136557','2214','42311','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136558','2215','42307','0','0','1A7C11','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136559','2215','42310','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136560','2216','42290','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136561','2216','42291','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136562','2222','42221','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136563','2222','42216','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136564','2223','42189','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136565','2223','42190','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136566','2223','42208','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136567','2223','42218','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136568','2223','42206','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136569','2223','42225','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136570','2223','42207','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136571','2223','42222','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136572','2223','42223','0','8','F230E0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136573','2224','42267','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136574','2225','42205','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136575','2225','42203','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136576','2226','42268','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136577','2227','42213','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136578','2227','42214','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136579','2227','42212','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136580','2228','42188','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136581','2228','42198','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136582','2229','42209','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136583','2229','42217','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136584','2229','42219','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136585','2229','42220','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136586','2238','42365','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136587','2238','42368','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136588','2238','42367','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136589','2238','42364','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136590','2238','42366','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136591','2238','42363','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136592','2239','42371','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136593','2239','42372','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136594','2240','42379','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136595','2240','42382','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136596','2241','42378','0','0','1A7C11','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136597','2241','42381','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136598','2242','42376','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136599','2242','42377','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136600','2243','42353','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136601','2243','42348','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136602','2244','42321','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136603','2244','42322','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136604','2244','42339','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136605','2244','42350','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136606','2244','42338','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136607','2244','42357','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136608','2244','42329','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136609','2244','42354','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136610','2244','42355','0','8','F230E0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136611','2245','42358','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136612','2246','42337','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136613','2246','42335','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136614','2247','42359','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136615','2248','42345','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136616','2248','42346','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136617','2248','42344','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136618','2249','42320','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136619','2249','42330','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136620','2250','42341','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136621','2250','42349','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136622','2250','42351','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136623','2250','42352','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136624','952','29436','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136625','952','29437','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136626','952','29438','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136627','952','29439','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136628','952','29441','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136629','952','29440','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136630','955','29434','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136631','955','29435','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136632','954','29448','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136633','954','29449','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136634','956','29452','0','0','1A7C11','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136635','956','29453','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136636','953','29446','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136637','953','29432','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136638','960','29405','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136639','960','29406','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136640','959','29426','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136641','959','29413','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136642','959','29411','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136643','959','29410','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136644','959','29399','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136645','959','29409','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136646','959','29412','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136647','959','29408','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136648','959','29407','0','8','F230E0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136649','958','29427','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136650','962','29403','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136651','962','29402','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136652','961','29396','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136653','963','29400','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136654','963','29401','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136655','957','29420','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136656','957','29419','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136657','957','29418','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136658','957','29417','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136659','2251','42423','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136660','2251','42424','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136661','2251','42420','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136662','2251','42419','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136663','2251','42422','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136664','2251','42418','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136665','2251','42421','0','6','AC8C14','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136666','2251','42415','0','7','611F27','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136667','2251','42416','0','8','F230E0','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136668','2252','42442','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136669','2253','42427','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136670','2253','42430','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136671','2253','42429','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136672','2253','42426','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136673','2253','42428','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136674','2253','42425','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136675','2254','42435','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136676','2254','42437','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136677','2255','42440','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136678','2255','42441','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136679','2256','42400','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136680','2256','42405','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136681','2257','42387','2','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136682','2257','42391','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136683','2258','42386','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136684','2259','42395','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136685','2259','42393','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136686','2260','42404','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136687','2260','42403','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136688','2260','42402','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136689','2260','42401','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136690','491','23070','0','0','C80000','0','2','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136691','491','23068','0','1','00C800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136692','487','23042','0','0','009900','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136693','487','23043','0','1','000099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136694','487','23041','0','2','990000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136695','543','23062','5','0','00C800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136696','494','23077','5','0','00AA00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136697','494','23078','5','1','3333FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136698','493','23075','5','0','00AA00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136699','493','23076','5','1','3333FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136700','461','22870','0','0','C80000','0','2','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136701','461','22868','0','1','00C800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136702','459','22844','0','0','009900','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136703','459','22840','0','1','000099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136704','457','22842','0','0','009900','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136705','457','22843','0','1','000099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136706','457','22841','0','2','990000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136707','456','22846','1','0','009999','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136708','456','22848','1','1','990099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136709','456','22851','1','2','990000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136710','456','22852','1','3','000099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136711','456','22845','1','4','009900','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136712','544','22862','5','0','00C800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136713','458','22857','0','0','AA0000','0','2','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136714','458','22855','0','1','00AA00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136715','484','23025','5','0','00AA00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136716','484','23026','5','1','3333FF','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136717','485','23030','0','0','C80000','0','2','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136718','485','23028','0','1','00C800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136719','483','23004','0','0','009900','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136720','483','23000','0','1','000099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136721','481','23002','0','0','009900','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136722','481','23003','0','1','000099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136723','481','23001','0','2','990000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136724','480','23007','1','0','999900','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136725','480','23011','1','1','990000','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136726','480','23012','1','2','000099','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136727','480','23005','1','3','009900','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136728','545','23022','5','0','00C800','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136729','482','23017','0','0','AA0000','0','2','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136730','482','23015','0','1','00AA00','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136731','2261','42493','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136732','2261','42496','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136733','2261','42495','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136734','2261','42492','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136735','2261','42494','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136736','2261','42491','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136737','2262','42498','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136738','2262','42501','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136739','2263','42499','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136740','2263','42500','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136741','2264','42503','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136742','2264','42504','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136743','2265','42502','0','0','1A7C11','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136744','2265','42497','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136745','2266','42507','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136746','2266','42508','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136747','2267','42473','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136748','2267','42476','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136749','2268','42474','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136750','2268','42475','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136751','2269','42469','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136752','2270','42459','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136753','2271','42465','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136754','2271','42464','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136755','2272','42549','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136756','2272','42552','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136757','2272','42551','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136758','2272','42548','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136759','2272','42550','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136760','2272','42547','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136761','2273','42554','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136762','2273','42557','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136763','2274','42555','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136764','2274','42556','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136765','2275','42559','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136766','2275','42560','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136767','2276','42558','0','0','1A7C11','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136768','2276','42553','5','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136769','2277','42563','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136770','2277','42564','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136771','2278','42529','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136772','2278','42532','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136773','2279','42530','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136774','2279','42531','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136775','2280','42525','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136776','2281','42515','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136777','2282','42521','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136778','2282','42520','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136779','2283','42585','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136780','2283','42588','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136781','2283','42587','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136782','2283','42584','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136783','2283','42586','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136784','2283','42583','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136785','2284','42593','0','0','969696','0','9','2');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136786','2284','42594','0','1','C80000','0','9','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136787','2285','42597','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136788','2286','42573','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136789','1583','34451','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136790','1584','34465','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136791','1584','34463','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136792','1585','34466','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136793','1585','34462','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136794','1586','34499','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136795','1587','34513','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136796','1587','34511','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136797','1588','34514','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136798','1588','34510','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136799','1589','34547','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136800','1590','34561','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136801','1590','34559','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136802','1591','34562','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136803','1591','34558','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136804','1592','34595','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136805','1593','34609','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136806','1593','34607','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136807','1594','34610','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136808','1594','34606','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136809','1595','34643','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136810','1596','34657','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136811','1596','34655','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136812','1597','34658','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136813','1597','34654','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136814','1619','35016','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136815','1620','35030','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136816','1620','35028','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136817','1621','35031','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136818','1621','35027','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136819','1601','34739','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136820','1602','34753','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136821','1602','34751','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136822','1603','34754','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136823','1603','34750','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136824','1604','34787','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136825','1569','34192','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136826','1569','34180','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136827','1570','34194','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136828','1570','34190','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136829','1605','34793','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136830','1606','34807','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136831','1606','34805','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136832','1607','34808','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136833','1607','34804','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136834','1608','34841','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136835','1609','34855','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136836','1609','34853','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136837','1610','34856','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136838','1610','34852','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136839','1611','34889','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136840','1612','34903','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136841','1612','34901','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136842','1613','34904','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136843','1613','34900','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136844','2355','43212','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136845','2356','43193','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136846','2356','43205','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136847','2356','43214','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136848','2356','43213','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136849','2357','43210','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136850','2358','43209','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136851','2358','43207','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136852','2359','43206','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136853','2359','43194','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136854','2360','43227','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136855','2360','43241','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136856','2361','43240','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136857','2361','43238','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136858','2362','43237','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136859','2362','43234','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136860','2363','43233','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136861','2363','43231','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136862','2364','43250','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136863','2365','43255','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136864','2365','43256','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136865','2366','43265','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136866','2367','43266','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136867','2367','43267','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136868','2367','43268','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136869','2367','43269','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136870','2368','43270','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136871','2368','43272','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136872','2369','43273','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136873','2369','43275','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136874','2370','43276','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136875','2370','43277','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136876','2371','43326','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136877','2372','43307','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136878','2372','43319','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136879','2372','43328','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136880','2372','43327','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136881','2373','43324','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136882','2374','43323','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136883','2374','43321','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136884','2375','43320','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136885','2375','43308','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136886','2376','43342','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136887','2376','43357','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136888','2377','43353','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136889','2377','43351','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136890','2378','43350','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136891','2378','43343','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136892','2379','43301','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136893','2379','43300','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136894','2380','43366','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136895','2381','43302','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136896','2381','43303','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136897','2382','43385','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136898','2382','43386','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136899','2382','43387','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136900','2382','43388','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136901','2383','43389','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136902','2383','43391','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136903','2384','43392','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136904','2384','43394','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136905','2385','43306','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136906','2385','43305','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136907','2386','43426','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136908','2386','43425','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136909','2386','43424','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136910','2387','43418','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136911','2387','43441','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136912','2387','43420','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136913','2388','43430','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136914','2388','43440','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136915','2388','43439','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136916','2389','43436','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136917','2389','43435','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136918','2389','43438','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136919','2389','43437','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136920','2390','43432','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136921','2390','43431','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136922','2390','43434','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136923','2390','43433','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136924','2391','43428','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136925','2391','43427','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136926','2391','43429','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136927','2391','43419','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136928','2392','43489','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136929','2392','43488','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136930','2392','43487','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136931','2392','43486','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136932','2393','43468','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136933','2393','43491','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136934','2394','43481','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136935','2394','43492','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136936','2394','43490','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136937','2395','43485','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136938','2395','43484','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136939','2395','43483','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136940','2395','43482','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136941','2396','43478','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136942','2396','43477','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136943','2396','43476','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136944','2396','43475','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136945','2397','43409','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136946','2397','43408','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136947','2397','43407','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136948','2397','43406','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136949','1518','33705','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136950','1519','33724','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136951','1519','33722','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136952','1519','33726','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136953','1520','33719','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136954','1520','33720','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136955','1520','33721','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136956','1521','33725','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136957','1521','33723','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136958','1521','33727','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136959','1522','33730','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136960','1523','33734','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136961','1523','33732','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136962','1523','33736','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136963','1524','33735','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136964','1524','33733','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136965','1524','33737','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136966','1525','33743','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136967','1525','33742','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136968','1525','33738','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136969','1526','33692','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136970','1526','33693','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136971','1571','34269','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136972','1571','34270','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136973','1571','34271','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136974','1571','34272','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136975','1572','34311','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136976','1572','34301','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136977','1573','34243','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136978','1573','34244','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136979','1573','34246','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136980','1573','34245','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136981','1574','34239','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136982','1574','34227','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136983','1574','34236','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136984','1574','34237','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136985','1575','34253','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136986','1575','34252','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136987','1575','34249','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136988','1575','34251','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136989','1496','33368','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136990','1497','33371','1','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136991','1497','33371','1','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136992','1498','33379','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136993','1498','33382','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136994','1498','33381','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136995','1498','33378','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136996','1498','33380','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136997','1498','33377','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136998','1142','30689','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('136999','1805','36187','5','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137000','1805','36192','2','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137001','1805','36190','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137002','1805','36185','0','3','A54F10','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137003','1805','36189','0','4','FC6EA3','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137004','1805','36184','0','5','6C59DC','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137005','2398','43547','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137006','2398','43546','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137007','2398','43545','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137008','2398','43556','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137009','2398','43557','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137010','2398','43552','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137011','2399','43626','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137012','2399','43627','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137013','2399','43628','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137014','2400','43632','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137015','2400','43633','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137016','2400','43634','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137017','2401','43637','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137018','2401','43638','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137019','651','26928','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137020','651','26927','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137021','652','26925','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137022','652','26932','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137023','652','26930','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137024','652','26931','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137025','652','26929','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137026','652','26926','0','5','6C59DC','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137027','653','26933','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137028','653','26943','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137029','653','26935','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137030','653','26936','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137031','654','26934','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137032','654','26939','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137033','654','26942','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137034','654','26938','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137035','654','26937','0','4','FC6EA3','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137036','1275','31794','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137037','1275','31792','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137038','1275','31800','0','2','F63100','1','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137039','1276','36771','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137040','1276','33390','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137041','1276','31799','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137042','1276','31797','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137043','1277','36770','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137044','1277','33389','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137045','1277','31795','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137046','1278','36769','0','0','1A7C11','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137047','1278','31793','0','1','2774A4','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137048','1278','31802','0','2','F63100','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137049','1278','31790','0','3','A54F10','0','2','0');
INSERT INTO `graphs_items` (`gitemid`,`graphid`,`itemid`,`drawtype`,`sortorder`,`color`,`yaxisside`,`calc_fnc`,`type`) values ('137050','1278','31791','0','4','FC6EA3','0','2','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('365','10186','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('366','10186','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('370','10188','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('376','10190','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('382','10192','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('393','10207','{$TEMP_CRIT}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('394','10207','{$TEMP_WARN}','65','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('395','10207','{$PSU_CRIT_STATUS}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('396','10207','{$FAN_CRIT_STATUS}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('399','10207','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('402','10208','{$TEMP_CRIT}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('403','10208','{$TEMP_WARN}','65','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('404','10208','{$HEALTH_CRIT_STATUS}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('405','10208','{$HEALTH_WARN_STATUS:"offline"}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('406','10208','{$HEALTH_WARN_STATUS:"testing"}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('407','10208','{$TEMP_WARN_STATUS}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('408','10208','{$PSU_CRIT_STATUS}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('409','10208','{$FAN_CRIT_STATUS}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('410','10208','{$PSU_OK_STATUS}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('411','10208','{$FAN_OK_STATUS}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('414','10208','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('417','10210','{$TEMP_CRIT}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('418','10210','{$TEMP_WARN}','65','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('419','10210','{$PSU_CRIT_STATUS}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('420','10210','{$FAN_CRIT_STATUS}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('421','10210','{$PSU_OK_STATUS}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('422','10210','{$FAN_OK_STATUS}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('425','10210','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('428','10211','{$TEMP_CRIT}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('429','10211','{$TEMP_WARN}','65','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('430','10211','{$PSU_CRIT_STATUS}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('431','10211','{$FAN_CRIT_STATUS}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('432','10211','{$PSU_OK_STATUS}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('433','10211','{$FAN_OK_STATUS}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('436','10211','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('439','10217','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('440','10217','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('441','10217','{$TEMP_WARN_STATUS}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('442','10217','{$TEMP_CRIT_STATUS}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('443','10217','{$TEMP_DISASTER_STATUS}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('469','10221','{$TEMP_CRIT}','65','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('470','10221','{$TEMP_WARN}','55','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('471','10221','{$PSU_CRIT_STATUS}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('472','10221','{$FAN_CRIT_STATUS}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('473','10221','{$PSU_OK_STATUS}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('474','10221','{$FAN_OK_STATUS}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('477','10221','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('480','10222','{$TEMP_CRIT}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('481','10222','{$TEMP_WARN}','65','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('482','10222','{$PSU_CRIT_STATUS}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('483','10222','{$FAN_CRIT_STATUS}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('486','10222','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('489','10223','{$TEMP_CRIT}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('490','10223','{$TEMP_WARN}','65','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('491','10223','{$PSU_CRIT_STATUS}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('492','10223','{$FAN_CRIT_STATUS}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('495','10223','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('498','10224','{$TEMP_CRIT}','65','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('499','10224','{$TEMP_WARN}','55','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('500','10224','{$TEMP_CRIT_STATUS}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('501','10224','{$PSU_CRIT_STATUS}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('502','10224','{$FAN_CRIT_STATUS}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('507','10224','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('510','10227','{$FAN_CRIT_STATUS:"fanError"}','41','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('511','10227','{$FAN_CRIT_STATUS:"hardwareFaulty"}','91','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('512','10227','{$PSU_CRIT_STATUS:"psuError"}','51','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('513','10227','{$PSU_CRIT_STATUS:"rpsError"}','61','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('514','10227','{$PSU_CRIT_STATUS:"hardwareFaulty"}','91','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('517','10227','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('518','10227','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('519','10227','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('533','10229','{$FAN_CRIT_STATUS}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('536','10229','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('537','10229','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('538','10229','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('541','10230','{$TEMP_CRIT_STATUS}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('542','10230','{$TEMP_WARN_STATUS}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('543','10230','{$PSU_CRIT_STATUS}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('544','10230','{$FAN_CRIT_STATUS}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('547','10230','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('548','10230','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('549','10230','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('552','10231','{$TEMP_CRIT:"Routing Engine"}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('553','10231','{$TEMP_WARN:"Routing Engine"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('554','10231','{$HEALTH_CRIT_STATUS}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('555','10231','{$FAN_CRIT_STATUS}','6','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('556','10231','{$PSU_CRIT_STATUS}','6','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('559','10231','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('560','10231','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('561','10231','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('572','10233','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('573','10233','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('576','10233','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('577','10233','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('578','10233','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('581','10234','{$TEMP_WARN_STATUS}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('582','10234','{$TEMP_CRIT_STATUS}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('583','10234','{$PSU_CRIT_STATUS:"failed"}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('584','10234','{$FAN_CRIT_STATUS:"failed"}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('587','10234','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('588','10234','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('589','10234','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('592','10235','{$TEMP_CRIT}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('593','10235','{$TEMP_WARN}','65','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('594','10235','{$PSU_CRIT_STATUS}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('595','10235','{$FAN_CRIT_STATUS}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('619','10250','{$FAN_CRIT_STATUS:"bad"}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('620','10250','{$PSU_CRIT_STATUS:"bad"}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('625','10250','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('626','10250','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('627','10250','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('647','10230','{$PSU_WARN_STATUS}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('648','10217','{$PSU_CRIT_STATUS:"critical"}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('649','10217','{$PSU_CRIT_STATUS:"shutdown"}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('650','10217','{$PSU_WARN_STATUS:"warning"}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('651','10217','{$PSU_WARN_STATUS:"notFunctioning"}','6','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('652','10217','{$FAN_CRIT_STATUS:"critical"}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('653','10217','{$FAN_CRIT_STATUS:"shutdown"}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('654','10217','{$FAN_WARN_STATUS:"warning"}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('655','10217','{$FAN_WARN_STATUS:"notFunctioning"}','6','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('656','10250','{$FAN_WARN_STATUS:"warning"}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('657','10250','{$PSU_WARN_STATUS:"warning"}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('659','10254','{$FAN_CRIT_STATUS}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('661','10254','{$PSU_CRIT_STATUS}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('674','10217','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('675','10217','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('676','10217','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('677','10255','{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('678','10255','{$DISK_ARRAY_CACHE_BATTERY_OK_STATUS}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('679','10255','{$DISK_ARRAY_CACHE_BATTERY_WARN_STATUS}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('680','10255','{$DISK_ARRAY_CRIT_STATUS:"critical"}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('681','10255','{$DISK_ARRAY_FAIL_STATUS:"nonRecoverable"}','6','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('682','10255','{$DISK_ARRAY_WARN_STATUS:"nonCritical"}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('683','10255','{$DISK_FAIL_STATUS:"critical"}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('684','10255','{$DISK_FAIL_STATUS:"nonRecoverable"}','6','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('685','10255','{$DISK_SMART_FAIL_STATUS}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('686','10255','{$DISK_WARN_STATUS:"nonCritical"}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('687','10255','{$FAN_CRIT_STATUS:"criticalLower"}','8','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('688','10255','{$FAN_CRIT_STATUS:"criticalUpper"}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('689','10255','{$FAN_CRIT_STATUS:"failed"}','10','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('690','10255','{$FAN_CRIT_STATUS:"nonRecoverableLower"}','9','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('691','10255','{$FAN_CRIT_STATUS:"nonRecoverableUpper"}','6','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('692','10255','{$FAN_WARN_STATUS:"nonCriticalLower"}','7','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('693','10255','{$FAN_WARN_STATUS:"nonCriticalUpper"}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('694','10255','{$HEALTH_CRIT_STATUS}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('695','10255','{$HEALTH_DISASTER_STATUS}','6','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('696','10255','{$HEALTH_WARN_STATUS}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('697','10255','{$PSU_CRIT_STATUS:"critical"}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('698','10255','{$PSU_CRIT_STATUS:"nonRecoverable"}','6','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('699','10255','{$PSU_WARN_STATUS:"nonCritical"}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('700','10255','{$TEMP_CRIT:"Ambient"}','35','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('701','10255','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('702','10255','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('703','10255','{$TEMP_CRIT_STATUS}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('704','10255','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('705','10255','{$TEMP_DISASTER_STATUS}','6','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('706','10255','{$TEMP_WARN:"Ambient"}','30','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('707','10255','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('708','10255','{$TEMP_WARN_STATUS}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('709','10255','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('710','10255','{$VDISK_CRIT_STATUS:"failed"}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('711','10255','{$VDISK_WARN_STATUS:"degraded"}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('712','10256','{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS:"capacitorFailed"}','7','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('713','10256','{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS:"failed"}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('714','10256','{$DISK_ARRAY_CACHE_BATTERY_WARN_STATUS:"degraded"}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('715','10256','{$DISK_ARRAY_CACHE_BATTERY_WARN_STATUS:"notPresent"}','6','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('716','10256','{$DISK_ARRAY_CACHE_CRIT_STATUS:"cacheModCriticalFailure"}','8','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('717','10256','{$DISK_ARRAY_CACHE_OK_STATUS:"enabled"}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('718','10256','{$DISK_ARRAY_CACHE_WARN_STATUS:"cacheModDegradedFailsafeSpeed"}','7','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('719','10256','{$DISK_ARRAY_CACHE_WARN_STATUS:"cacheModFlashMemNotAttached"}','6','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('720','10256','{$DISK_ARRAY_CACHE_WARN_STATUS:"cacheReadCacheNotMapped"}','9','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('721','10256','{$DISK_ARRAY_CACHE_WARN_STATUS:"invalid"}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('722','10256','{$DISK_ARRAY_CRIT_STATUS}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('723','10256','{$DISK_ARRAY_WARN_STATUS}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('724','10256','{$DISK_FAIL_STATUS}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('725','10256','{$DISK_SMART_FAIL_STATUS:"replaceDrive"}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('726','10256','{$DISK_SMART_FAIL_STATUS:"replaceDriveSSDWearOut"}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('727','10256','{$DISK_WARN_STATUS}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('728','10256','{$FAN_CRIT_STATUS}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('729','10256','{$FAN_WARN_STATUS}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('730','10256','{$HEALTH_CRIT_STATUS}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('731','10256','{$HEALTH_WARN_STATUS}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('732','10256','{$PSU_CRIT_STATUS}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('733','10256','{$PSU_WARN_STATUS}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('739','10256','{$VDISK_CRIT_STATUS}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('740','10256','{$VDISK_OK_STATUS}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('752','10258','{$DISK_OK_STATUS}','Normal','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('753','10258','{$FAN_OK_STATUS}','Normal','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('754','10258','{$HEALTH_CRIT_STATUS}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('755','10258','{$HEALTH_DISASTER_STATUS}','0','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('756','10258','{$HEALTH_WARN_STATUS}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('757','10258','{$PSU_OK_STATUS}','Normal','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('758','10258','{$TEMP_CRIT:"Ambient"}','35','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('759','10258','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('760','10258','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('761','10258','{$TEMP_WARN:"Ambient"}','30','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('762','10258','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('763','10259','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('764','10259','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('765','10259','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('769','10261','{$ADDRESS}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('770','10261','{$PORT}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('808','10264','{$APACHE.PROCESS_NAME}','httpd','Apache server process name','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('809','10264','{$APACHE.RESPONSE_TIME.MAX.WARN}','10','Maximum Apache response time in seconds for trigger expression','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('810','10264','{$APACHE.STATUS.HOST}','127.0.0.1','Hostname or IP address of the Apache status page','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('811','10264','{$APACHE.STATUS.PATH}','server-status?auto','The URL path','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('812','10264','{$APACHE.STATUS.PORT}','80','The port of Apache status page','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('813','10265','{$APACHE.RESPONSE_TIME.MAX.WARN}','10','Maximum Apache response time in seconds for trigger expression','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('814','10265','{$APACHE.STATUS.PATH}','server-status?auto','The URL path','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('815','10265','{$APACHE.STATUS.PORT}','80','The port of Apache status page','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('816','10265','{$APACHE.STATUS.SCHEME}','http','Request scheme which may be http or https','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('817','10266','{$NGINX.DROP_RATE.MAX.WARN}','1','The critical rate of the dropped connections for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('818','10266','{$NGINX.RESPONSE_TIME.MAX.WARN}','10','The Nginx maximum response time in seconds for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('819','10266','{$NGINX.STUB_STATUS.HOST}','localhost','Hostname or IP of Nginx stub_status host or container.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('820','10266','{$NGINX.STUB_STATUS.PATH}','basic_status','The path of Nginx stub_status page.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('821','10266','{$NGINX.STUB_STATUS.PORT}','80','The port of Nginx stub_status host or container.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('822','10267','{$NGINX.DROP_RATE.MAX.WARN}','1','The critical rate of the dropped connections for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('823','10267','{$NGINX.RESPONSE_TIME.MAX.WARN}','10','The Nginx maximum response time in seconds for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('824','10267','{$NGINX.STUB_STATUS.PATH}','basic_status','The path of Nginx stub_status page.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('825','10267','{$NGINX.STUB_STATUS.PORT}','80','The port of Nginx stub_status host or container.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('826','10267','{$NGINX.STUB_STATUS.SCHEME}','http','The protocol http or https of Nginx stub_status host or container.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('832','10268','{$MEMORY.AVAILABLE.MIN}','20M','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('833','10268','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('834','10268','{$SWAP.PFREE.MIN.WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('835','10269','{$VFS.DEV.DEVNAME.MATCHES}','.+','This macro is used in block devices discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('836','10269','{$VFS.DEV.DEVNAME.NOT_MATCHES}','^(loop[0-9]*|sd[a-z][0-9]+|nbd[0-9]+|sr[0-9]+|fd[0-9]+|dm-[0-9]+|ram[0-9]+|ploop[a-z0-9]+|md[0-9]*|hcp[0-9]*|zram[0-9]*)','This macro is used in block devices discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('837','10270','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('838','10270','{$LOAD_AVG_PER_CPU.MAX.WARN}','1.5','Load per CPU considered sustainable. Tune if needed.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('839','10271','{$VFS.FS.FSNAME.MATCHES}','.+','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('840','10271','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('841','10271','{$VFS.FS.FSTYPE.MATCHES}','.*(\\.4|\\.9|hrStorageFixedDisk|hrStorageFlashMemory)$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('842','10271','{$VFS.FS.FSTYPE.NOT_MATCHES}','^\\s$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('843','10271','{$VFS.FS.INODE.PFREE.MIN.CRIT}','10','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('844','10271','{$VFS.FS.INODE.PFREE.MIN.WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('845','10271','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('846','10271','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('847','10272','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('848','10272','{$LOAD_AVG_PER_CPU.MAX.WARN}','1.5','Load per CPU considered sustainable. Tune if needed.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('849','10273','{$VFS.FS.FSNAME.MATCHES}','.+','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('850','10273','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('851','10273','{$VFS.FS.FSTYPE.MATCHES}','^(btrfs|ext2|ext3|ext4|reiser|xfs|ffs|ufs|jfs|jfs2|vxfs|hfs|apfs|refs|ntfs|fat32|zfs)$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('852','10273','{$VFS.FS.FSTYPE.NOT_MATCHES}','^\\s$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('853','10273','{$VFS.FS.INODE.PFREE.MIN.CRIT}','10','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('854','10273','{$VFS.FS.INODE.PFREE.MIN.WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('855','10273','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('856','10273','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('857','10274','{$MEMORY.AVAILABLE.MIN}','20M','This macro is used as a threshold in memory available trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('858','10274','{$MEMORY.UTIL.MAX}','90','This macro is used as a threshold in memory utilization trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('859','10274','{$SWAP.PFREE.MIN.WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('860','10275','{$VFS.DEV.DEVNAME.MATCHES}','.+','This macro is used in block devices discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('861','10275','{$VFS.DEV.DEVNAME.NOT_MATCHES}','^(loop[0-9]*|sd[a-z][0-9]+|nbd[0-9]+|sr[0-9]+|fd[0-9]+|dm-[0-9]+|ram[0-9]+|ploop[a-z0-9]+|md[0-9]*|hcp[0-9]*|zram[0-9]*)','This macro is used in block devices discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('862','10275','{$VFS.DEV.READ.AWAIT.WARN}','20','Disk read average response time (in ms) before the trigger would fire','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('863','10275','{$VFS.DEV.WRITE.AWAIT.WARN}','20','Disk write average response time (in ms) before the trigger would fire','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('864','10276','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('866','10276','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('867','10276','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('868','10276','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9A-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('869','10277','{$KERNEL.MAXFILES.MIN}','256','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('870','10277','{$KERNEL.MAXPROC.MIN}','1024','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('871','10277','{$SYSTEM.FUZZYTIME.MAX}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('897','10285','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('898','10285','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('899','10285','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('900','10285','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('901','10285','{$KERNEL.MAXFILES.MIN}','256','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('902','10285','{$LOAD_AVG_PER_CPU.MAX.WARN}','1.5','Load per CPU considered sustainable. Tune if needed.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('903','10285','{$MEMORY.AVAILABLE.MIN}','20M','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('904','10285','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('905','10285','{$NET.IF.IFALIAS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('906','10285','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('907','10285','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('908','10285','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9A-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('909','10285','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('910','10285','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^7$','Ignore notPresent(7).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('911','10285','{$NODE_EXPORTER_PORT}','9100','TCP Port node_exporter is listening on.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('912','10285','{$SWAP.PFREE.MIN.WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('913','10285','{$SYSTEM.FUZZYTIME.MAX}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('914','10285','{$VFS.DEV.DEVNAME.MATCHES}','.+','This macro is used in block devices discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('915','10285','{$VFS.DEV.DEVNAME.NOT_MATCHES}','^(loop[0-9]*|sd[a-z][0-9]+|nbd[0-9]+|sr[0-9]+|fd[0-9]+|dm-[0-9]+|ram[0-9]+|ploop[a-z0-9]+|md[0-9]*|hcp[0-9]*|zram[0-9]*)','This macro is used in block devices discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('916','10285','{$VFS.DEV.READ.AWAIT.WARN}','20','Disk read average response time (in ms) before the trigger would fire.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('917','10285','{$VFS.DEV.WRITE.AWAIT.WARN}','20','Disk write average response time (in ms) before the trigger would fire.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('918','10285','{$VFS.FS.FSDEVICE.MATCHES}','^.+$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('919','10285','{$VFS.FS.FSDEVICE.NOT_MATCHES}','^\\s$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('920','10285','{$VFS.FS.FSNAME.MATCHES}','.+','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('921','10285','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('922','10285','{$VFS.FS.FSTYPE.MATCHES}','^(btrfs|ext2|ext3|ext4|reiser|xfs|ffs|ufs|jfs|jfs2|vxfs|hfs|apfs|refs|ntfs|fat32|zfs)$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('923','10285','{$VFS.FS.FSTYPE.NOT_MATCHES}','^\\s$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('924','10285','{$VFS.FS.INODE.PFREE.MIN.CRIT}','10','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('925','10285','{$VFS.FS.INODE.PFREE.MIN.WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('926','10285','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('927','10285','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('928','10286','{$CPU.INTERRUPT.CRIT.MAX}','50','The critical threshold of the % Interrupt Time counter.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('929','10286','{$CPU.PRIV.CRIT.MAX}','30','The threshold of the % Privileged Time counter.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('930','10286','{$CPU.QUEUE.CRIT.MAX}','3','The threshold of the Processor Queue Length counter.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('931','10286','{$CPU.UTIL.CRIT}','90','The critical threshold of the CPU utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('932','10287','{$MEM.PAGE_SEC.CRIT.MAX}','1000','The warning threshold of the Memory Pages/sec counter.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('933','10287','{$MEM.PAGE_TABLE_CRIT.MIN}','5000','The warning threshold of the Free System Page Table Entries counter.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('934','10287','{$MEMORY.UTIL.MAX}','90','The warning threshold of the Memory util item.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('935','10287','{$SWAP.PFREE.MIN.WARN}','20','The warning threshold of the minimum free swap.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('936','10288','{$VFS.FS.FSDRIVETYPE.MATCHES}','fixed','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('937','10288','{$VFS.FS.FSDRIVETYPE.NOT_MATCHES}','^\\s$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('938','10288','{$VFS.FS.FSNAME.MATCHES}','.*','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('939','10288','{$VFS.FS.FSNAME.NOT_MATCHES}','^(?:/dev|/sys|/run|/proc|.+/shm$)','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('940','10288','{$VFS.FS.FSTYPE.MATCHES}','.*','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('941','10288','{$VFS.FS.FSTYPE.NOT_MATCHES}','^\\s$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('942','10288','{$VFS.FS.PUSED.MAX.CRIT}','90','The critical threshold of the filesystem utilization in percent.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('943','10288','{$VFS.FS.PUSED.MAX.WARN}','80','The warning threshold of the filesystem utilization in percent.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('944','10289','{$VFS.DEV.DEVNAME.MATCHES}','.*','This macro is used in physical disks discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('945','10289','{$VFS.DEV.DEVNAME.NOT_MATCHES}','_Total','This macro is used in physical disks discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('946','10289','{$VFS.DEV.UTIL.MAX.WARN}','95','The warning threshold of disk time utilization in percent.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('947','10290','{$SYSTEM.FUZZYTIME.MAX}','60','The threshold for difference of system time in seconds.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('948','10291','{$NET.IF.IFALIAS.MATCHES}','.*','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('949','10291','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_THIS','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('950','10291','{$NET.IF.IFDESCR.MATCHES}','.*','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('951','10291','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_THIS','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('952','10291','{$NET.IF.IFNAME.MATCHES}','.*','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('953','10291','{$NET.IF.IFNAME.NOT_MATCHES}','Miniport|Virtual|Teredo|Kernel|Loopback|Bluetooth|HTTPS|6to4|QoS|Layer','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('958','10292','{$AGENT.NODATA_TIMEOUT}','30m','No data timeout for active agents. Consider to keep it relatively high.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('959','10050','{$AGENT.TIMEOUT}','3m','Timeout after which agent is considered unavailable. Works only for agents reachable from Zabbix server/proxy (passive mode).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('991','10300','{$RABBITMQ.API.PASSWORD}','zabbix','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('992','10300','{$RABBITMQ.API.PORT}','15672','The port of RabbitMQ API endpoint','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('993','10300','{$RABBITMQ.API.USER}','zbx_monitor','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('995','10300','{$RABBITMQ.LLD.FILTER.EXCHANGE.MATCHES}','.*','Filter of discoverable exchanges','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('996','10300','{$RABBITMQ.LLD.FILTER.EXCHANGE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered exchanges','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('997','10301','{$RABBITMQ.API.HOST}','127.0.0.1','The hostname or IP of RabbitMQ API endpoint','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('998','10301','{$RABBITMQ.API.PASSWORD}','zabbix','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('999','10301','{$RABBITMQ.API.PORT}','15672','The port of RabbitMQ API endpoint','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1000','10301','{$RABBITMQ.API.USER}','zbx_monitor','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1001','10301','{$RABBITMQ.CLUSTER.NAME}','rabbit','The name of RabbitMQ cluster','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1002','10301','{$RABBITMQ.LLD.FILTER.QUEUE.MATCHES}','.*','Filter of discoverable queues','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1003','10301','{$RABBITMQ.LLD.FILTER.QUEUE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered queues','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1004','10301','{$RABBITMQ.MESSAGES.MAX.WARN}','1000','Maximum number of messages in the queue for trigger expression','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1005','10301','{$RABBITMQ.PROCESS_NAME}','beam.smp','RabbitMQ server process name','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1006','10301','{$RABBITMQ.RESPONSE_TIME.MAX.WARN}','10','Maximum RabbitMQ response time in seconds for trigger expression','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1007','10302','{$RABBITMQ.API.PASSWORD}','zabbix','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1008','10302','{$RABBITMQ.API.PORT}','15672','The port of RabbitMQ API endpoint','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1009','10302','{$RABBITMQ.API.SCHEME}','http','Request scheme which may be http or https','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1010','10302','{$RABBITMQ.API.USER}','zbx_monitor','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1012','10302','{$RABBITMQ.LLD.FILTER.EXCHANGE.MATCHES}','.*','Filter of discoverable exchanges','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1013','10302','{$RABBITMQ.LLD.FILTER.EXCHANGE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered exchanges','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1014','10303','{$RABBITMQ.API.PASSWORD}','zabbix','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1015','10303','{$RABBITMQ.API.PORT}','15672','The port of RabbitMQ API endpoint','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1016','10303','{$RABBITMQ.API.SCHEME}','http','Request scheme which may be http or https','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1017','10303','{$RABBITMQ.API.USER}','zbx_monitor','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1018','10303','{$RABBITMQ.CLUSTER.NAME}','rabbit','The name of RabbitMQ cluster','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1019','10303','{$RABBITMQ.LLD.FILTER.QUEUE.MATCHES}','.*','Filter of discoverable queues','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1020','10303','{$RABBITMQ.LLD.FILTER.QUEUE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered queues','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1021','10303','{$RABBITMQ.MESSAGES.MAX.WARN}','1000','Maximum number of messages in the queue for trigger expression','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1022','10303','{$RABBITMQ.RESPONSE_TIME.MAX.WARN}','10','Maximum RabbitMQ response time in seconds for trigger expression','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1024','10204','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1039','10190','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1040','10190','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1041','10190','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1042','10190','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1043','10190','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1044','10190','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1045','10190','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1046','10190','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1047','10190','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1048','10190','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1049','10190','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1050','10190','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1051','10190','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1052','10190','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1065','10188','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1066','10188','{$IF.UTIL.MAX}','95','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1067','10188','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1068','10188','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1069','10188','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1070','10188','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1071','10188','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1072','10188','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1073','10188','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1074','10188','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1075','10188','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1076','10188','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1077','10192','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1078','10192','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1079','10192','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1080','10192','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1081','10192','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1082','10192','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1083','10192','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1084','10192','{$NET.IF.IFDESCR.NOT_MATCHES}','Miniport|Virtual|Teredo|Kernel|Loopback|Bluetooth|HTTPS|6to4|QoS|Layer|isatap|ISATAP','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1085','10192','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1086','10192','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1087','10192','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1088','10192','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1089','10192','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1090','10192','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1091','10300','{$RABBITMQ.API.CLUSTER_HOST}','127.0.0.1','The hostname or IP of RabbitMQ cluster API endpoint','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1092','10304','{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1093','10304','{$DISK_ARRAY_CACHE_BATTERY_OK_STATUS}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1094','10304','{$DISK_ARRAY_CRIT_STATUS:"inoperable"}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1095','10304','{$DISK_ARRAY_OK_STATUS:"operable"}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1096','10304','{$DISK_ARRAY_WARN_STATUS:"degraded"}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1097','10304','{$DISK_CRIT_STATUS:"bad"}','16','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1098','10304','{$DISK_CRIT_STATUS:"predictiveFailure"}','11','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1099','10304','{$DISK_FAIL_STATUS:"failed"}','9','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1100','10304','{$FAN_CRIT_STATUS:"inoperable"}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1101','10304','{$FAN_WARN_STATUS:"degraded"}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1102','10304','{$HEALTH_CRIT_STATUS:"computeFailed"}','30','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1103','10304','{$HEALTH_CRIT_STATUS:"configFailure"}','33','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1104','10304','{$HEALTH_CRIT_STATUS:"inoperable"}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1105','10304','{$HEALTH_CRIT_STATUS:"unconfigFailure"}','34','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1106','10304','{$HEALTH_WARN_STATUS:"diagnosticsFailed"}','204','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1107','10304','{$HEALTH_WARN_STATUS:"powerProblem"}','62','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1108','10304','{$HEALTH_WARN_STATUS:"testFailed"}','35','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1109','10304','{$HEALTH_WARN_STATUS:"thermalProblem"}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1110','10304','{$HEALTH_WARN_STATUS:"voltageProblem"}','62','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1111','10304','{$PSU_CRIT_STATUS:"inoperable"}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1112','10304','{$PSU_WARN_STATUS:"degraded"}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1113','10304','{$TEMP_CRIT:"Ambient"}','35','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1114','10304','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1115','10304','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1116','10304','{$TEMP_WARN:"Ambient"}','30','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1117','10304','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1118','10304','{$VDISK_OK_STATUS:"equipped"}','10','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1119','10207','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1120','10207','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1121','10208','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1122','10208','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1123','10209','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1124','10209','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1125','10212','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1126','10252','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1127','10213','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1128','10215','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1129','10221','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1130','10221','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1131','10222','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1132','10222','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1133','10223','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1134','10223','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1135','10224','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1136','10224','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1137','10227','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1138','10227','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1139','10250','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1140','10250','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1141','10229','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1142','10229','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1143','10231','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1144','10231','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1145','10233','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1146','10233','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1147','10233','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1148','10233','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1149','10234','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1150','10234','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1151','10235','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1152','10235','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1153','10235','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1154','10236','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1155','10236','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1156','10237','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1157','10237','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1158','10254','{$MEMORY.NAME.NOT_MATCHES}','(Buffer|Cache)','Filter is overridden to ignore RAM(Cache) and RAM(Buffers) memory objects.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1159','10254','{$VFS.FS.PUSED.MAX.CRIT}','95','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1160','10254','{$VFS.FS.PUSED.MAX.WARN}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1161','10305','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1162','10306','{$MEMORY.NAME.MATCHES}','.*','This macro is used in memory discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1163','10306','{$MEMORY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in memory discovery. Can be overridden on the host or linked template level if you need to filter out results.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1164','10306','{$MEMORY.TYPE.MATCHES}','.*(\\.2|hrStorageRam)$','This macro is used in memory discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1165','10306','{$MEMORY.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in memory discovery. Can be overridden on the host or linked template level if you need to filter out results.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1166','10306','{$MEMORY.UTIL.MAX}','90','The warning threshold of the "Physical memory: Memory utilization" item.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1167','10307','{$VFS.FS.FSNAME.MATCHES}','.+','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1168','10307','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1169','10307','{$VFS.FS.FSTYPE.MATCHES}','.*(\\.4|\\.9|hrStorageFixedDisk|hrStorageFlashMemory)$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1170','10307','{$VFS.FS.FSTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1171','10307','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1172','10307','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1173','10308','{$HAPROXY.BACK_ERESP.MAX.WARN}','10','Maximum of responses with error on BACKEND for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1174','10308','{$HAPROXY.BACK_QCUR.MAX.WARN}','10','Maximum number of requests on BACKEND unassigned in queue for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1175','10308','{$HAPROXY.BACK_QTIME.MAX.WARN}','10s','Maximum of average time spent in queue on BACKEND for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1176','10308','{$HAPROXY.BACK_RTIME.MAX.WARN}','10s','Maximum of average BACKEND response time for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1177','10308','{$HAPROXY.FRONT_DREQ.MAX.WARN}','10','The HAProxy maximum denied requests for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1178','10308','{$HAPROXY.FRONT_EREQ.MAX.WARN}','10','The HAProxy maximum number of request errors for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1179','10308','{$HAPROXY.FRONT_SUTIL.MAX.WARN}','80','Maximum of session usage percentage on frontend for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1180','10308','{$HAPROXY.RESPONSE_TIME.MAX.WARN}','10s','The HAProxy stats page maximum response time in seconds for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1181','10308','{$HAPROXY.SERVER_ERESP.MAX.WARN}','10','Maximum of responses with error on server for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1182','10308','{$HAPROXY.SERVER_QCUR.MAX.WARN}','10','Maximum number of requests on server unassigned in queue for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1183','10308','{$HAPROXY.SERVER_QTIME.MAX.WARN}','10s','Maximum of average time spent in queue on server for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1184','10308','{$HAPROXY.SERVER_RTIME.MAX.WARN}','10s','Maximum of average server response time for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1185','10308','{$HAPROXY.STATS.PATH}','stats','The path of HAProxy stats page.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1186','10308','{$HAPROXY.STATS.PORT}','8404','The port of the HAProxy stats host or container.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1187','10308','{$HAPROXY.STATS.SCHEME}','http','The scheme of HAProxy stats page(http/https).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1188','10309','{$HAPROXY.BACK_ERESP.MAX.WARN}','10','Maximum of responses with error on Backend for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1189','10309','{$HAPROXY.BACK_QCUR.MAX.WARN}','10','Maximum number of requests on Backend unassigned in queue for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1190','10309','{$HAPROXY.BACK_QTIME.MAX.WARN}','10s','Maximum of average time spent in queue on Backend for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1191','10309','{$HAPROXY.BACK_RTIME.MAX.WARN}','10s','Maximum of average Backend response time for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1192','10309','{$HAPROXY.FRONT_DREQ.MAX.WARN}','10','The HAProxy maximum denied requests for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1193','10309','{$HAPROXY.FRONT_EREQ.MAX.WARN}','10','The HAProxy maximum number of request errors for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1194','10309','{$HAPROXY.FRONT_SUTIL.MAX.WARN}','80','Maximum of session usage percentage on frontend for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1195','10309','{$HAPROXY.PASSWORD}','','The password of the HAProxy stats page.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1196','10309','{$HAPROXY.RESPONSE_TIME.MAX.WARN}','10s','The HAProxy stats page maximum response time in seconds for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1197','10309','{$HAPROXY.SERVER_ERESP.MAX.WARN}','10','Maximum of responses with error on server for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1198','10309','{$HAPROXY.SERVER_QCUR.MAX.WARN}','10','Maximum number of requests on server unassigned in queue for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1199','10309','{$HAPROXY.SERVER_QTIME.MAX.WARN}','10s','Maximum of average time spent in queue on server for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1200','10309','{$HAPROXY.SERVER_RTIME.MAX.WARN}','10s','Maximum of average server response time for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1202','10309','{$HAPROXY.STATS.PATH}','stats','The path of the HAProxy stats page.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1203','10309','{$HAPROXY.STATS.PORT}','8404','The port of the HAProxy stats host or container.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1204','10309','{$HAPROXY.STATS.SCHEME}','http','The scheme of HAProxy stats page(http/https).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1205','10309','{$HAPROXY.USERNAME}','','The username of the HAProxy stats page.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1206','10310','{$REDIS.CLIENTS.PRC.MAX.WARN}','80','Maximum percentage of connected clients','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1207','10310','{$REDIS.CONN.URI}','tcp://localhost:6379','Connection string in the URI format (password is not used). This param overwrites a value configured in the "Server" option of the configuration file (if it\'s set), otherwise, the plugin\'s default value is used: "tcp://localhost:6379"','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1208','10310','{$REDIS.LLD.FILTER.DB.MATCHES}','.*','Filter of discoverable databases','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1209','10310','{$REDIS.LLD.FILTER.DB.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered databases','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1210','10310','{$REDIS.LLD.PROCESS_NAME}','redis-server','Redis server process name for LLD','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1211','10310','{$REDIS.MEM.FRAG_RATIO.MAX.WARN}','1.5','Maximum memory fragmentation ratio','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1212','10310','{$REDIS.MEM.PUSED.MAX.WARN}','90','Maximum percentage of memory used','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1213','10310','{$REDIS.PROCESS_NAME}','redis-server','Redis server process name','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1214','10310','{$REDIS.REPL.LAG.MAX.WARN}','30s','Maximum replication lag in seconds','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1215','10310','{$REDIS.SLOWLOG.COUNT.MAX.WARN}','1','Maximum number of slowlog entries per second','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1228','10314','{$SERVICE.NAME.MATCHES}','^.*$','This macro is used in Service discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1229','10314','{$SERVICE.NAME.NOT_MATCHES}','^(?:RemoteRegistry|MMCSS|gupdate|SysmonLog|clr_optimization_v.+|sppsvc|gpsvc|Pml Driver HPZ12|Net Driver HPZ12|MapsBroker|IntelAudioService|Intel\\(R\\) TPM Provisioning Service|dbupdate|DoSvc|CDPUserSvc_.+|WpnUserService_.+|OneSyncSvc_.+|WbioSrvc|BITS|tiledatamodelsvc|GISvc|ShellHWDetection|TrustedInstaller|TabletInputService|CDPSvc|wuauserv)$','This macro is used in Service discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1230','10314','{$SERVICE.STARTUPNAME.MATCHES}','^(?:automatic|automatic delayed)$','This macro is used in Service discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1231','10314','{$SERVICE.STARTUPNAME.NOT_MATCHES}','^(?:manual|disabled)$','This macro is used in Service discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1232','10291','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1233','10291','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1234','10291','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1242','10316','{$MYSQL.ABORTED_CONN.MAX.WARN}','3','The number of failed attempts to connect to the MySQL server for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1243','10316','{$MYSQL.BUFF_UTIL.MIN.WARN}','50','The minimum buffer pool utilization in percentage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1244','10316','{$MYSQL.HOST}','127.0.0.1','Hostname or IP of MySQL host or container.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1245','10316','{$MYSQL.PORT}','3306','MySQL service port.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1246','10316','{$MYSQL.REPL_LAG.MAX.WARN}','30m','The lag of slave from master for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1247','10316','{$MYSQL.SLOW_QUERIES.MAX.WARN}','3','The number of slow queries for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1248','10317','{$MYSQL.ABORTED_CONN.MAX.WARN}','3','Number of failed attempts to connect to the MySQL server for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1249','10317','{$MYSQL.BUFF_UTIL.MIN.WARN}','50','The minimum buffer pool utilization in percentage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1250','10317','{$MYSQL.DSN}','','System data source name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1251','10317','{$MYSQL.PASSWORD}','','MySQL user password.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1252','10317','{$MYSQL.REPL_LAG.MAX.WARN}','30m','The lag of slave from master for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1253','10317','{$MYSQL.SLOW_QUERIES.MAX.WARN}','3','Number of slow queries for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1254','10317','{$MYSQL.USER}','','MySQL username.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1255','10318','{$DOCKER.LLD.FILTER.CONTAINER.MATCHES}','.*','Filter of discoverable containers','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1256','10318','{$DOCKER.LLD.FILTER.CONTAINER.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered containers','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1257','10318','{$DOCKER.LLD.FILTER.IMAGE.MATCHES}','.*','Filter of discoverable images','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1258','10318','{$DOCKER.LLD.FILTER.IMAGE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered images','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1259','10319','{$MEMCACHED.CONN.PRC.MAX.WARN}','80','Maximum percentage of connected clients','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1260','10319','{$MEMCACHED.CONN.QUEUED.MAX.WARN}','1','Maximum number of queued connections per second','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1261','10319','{$MEMCACHED.CONN.THROTTLED.MAX.WARN}','1','Maximum number of throttled connections per second','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1262','10319','{$MEMCACHED.CONN.URI}','tcp://localhost:11211','Connection string in the URI format (password is not used). This param overwrites a value configured in the "Plugins.Memcached.Uri" option of the configuration file (if it\'s set), otherwise, the plugin\'s default value is used: "tcp://localhost:11211"','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1263','10319','{$MEMCACHED.MEM.PUSED.MAX.WARN}','90','Maximum percentage of memory used','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1264','10320','{$MYSQL.ABORTED_CONN.MAX.WARN}','3','Number of failed attempts to connect to the MySQL server for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1265','10320','{$MYSQL.BUFF_UTIL.MIN.WARN}','50','The minimum buffer pool utilization percentage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1266','10320','{$MYSQL.DSN}','','System data source name such as .','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1267','10320','{$MYSQL.PASSWORD}','','MySQL user password.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1268','10320','{$MYSQL.REPL_LAG.MAX.WARN}','30m','The lag of slave from master for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1269','10320','{$MYSQL.SLOW_QUERIES.MAX.WARN}','3','The number of slow queries for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1270','10320','{$MYSQL.USER}','','MySQL user name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1271','10321','{$IPMI.PASSWORD}','','This macro is used for access to BMC. It can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1272','10321','{$IPMI.SENSOR_TYPE.MATCHES}','.*','This macro is used in sensors discovery. It can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1273','10321','{$IPMI.SENSOR_TYPE.NOT_MATCHES}','invalid','This macro is used in sensors discovery. It can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1274','10321','{$IPMI.USER}','','This macro is used for access to BMC. It can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1275','10322','{$ELASTICSEARCH.FETCH_LATENCY.MAX.WARN}','100','Maximum of fetch latency in milliseconds for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1276','10322','{$ELASTICSEARCH.FLUSH_LATENCY.MAX.WARN}','100','Maximum of flush latency in milliseconds for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1277','10322','{$ELASTICSEARCH.HEAP_USED.MAX.CRIT}','95','The maximum percent in the use of JVM heap for critically trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1278','10322','{$ELASTICSEARCH.HEAP_USED.MAX.WARN}','85','The maximum percent in the use of JVM heap for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1279','10322','{$ELASTICSEARCH.INDEXING_LATENCY.MAX.WARN}','100','Maximum of indexing latency in milliseconds for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1280','10322','{$ELASTICSEARCH.PASSWORD}','','The password of the Elasticsearch.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1281','10322','{$ELASTICSEARCH.PORT}','9200','The port of the Elasticsearch host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1282','10322','{$ELASTICSEARCH.QUERY_LATENCY.MAX.WARN}','100','Maximum of query latency in milliseconds for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1283','10322','{$ELASTICSEARCH.RESPONSE_TIME.MAX.WARN}','10s','The ES cluster maximum response time in seconds for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1284','10322','{$ELASTICSEARCH.SCHEME}','http','The scheme of the Elasticsearch (http/https).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1285','10322','{$ELASTICSEARCH.USERNAME}','','The username of the Elasticsearch.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1286','10323','{$CLICKHOUSE.DELAYED.FILES.DISTRIBUTED.COUNT.MAX.WARN}','600','Maximum size of distributed files queue to insert for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1287','10323','{$CLICKHOUSE.DELAYED.INSERTS.MAX.WARN}','0','Maximum number of delayed inserts for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1288','10323','{$CLICKHOUSE.LLD.FILTER.DB.MATCHES}','.*','Filter of discoverable databases','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1289','10323','{$CLICKHOUSE.LLD.FILTER.DB.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered databases','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1290','10323','{$CLICKHOUSE.LLD.FILTER.DICT.MATCHES}','.*','Filter of discoverable dictionaries','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1291','10323','{$CLICKHOUSE.LLD.FILTER.DICT.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered dictionaries','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1292','10323','{$CLICKHOUSE.LOG_POSITION.DIFF.MAX.WARN}','30','Maximum diff between log_pointer and log_max_index.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1293','10323','{$CLICKHOUSE.NETWORK.ERRORS.MAX.WARN}','5','Maximum number of smth for trigger expression','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1294','10323','{$CLICKHOUSE.PARTS.PER.PARTITION.WARN}','300','Maximum number of parts per partition for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1295','10323','{$CLICKHOUSE.PASSWORD}','zabbix_pass','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1296','10323','{$CLICKHOUSE.PORT}','8123','The port of ClickHouse HTTP endpoint','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1297','10323','{$CLICKHOUSE.QUERY_TIME.MAX.WARN}','600','Maximum ClickHouse query time in seconds for trigger expression','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1298','10323','{$CLICKHOUSE.QUEUE.SIZE.MAX.WARN}','20','Maximum size of the queue for operations waiting to be performed for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1299','10323','{$CLICKHOUSE.REPLICA.MAX.WARN}','600','Replication lag across all tables for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1300','10323','{$CLICKHOUSE.SCHEME}','http','Request scheme which may be http or https','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1301','10323','{$CLICKHOUSE.USER}','zabbix','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1302','10264','{$APACHE.STATUS.SCHEME}','http','Request scheme which may be http or https','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1303','10324','{$ETCD.GRPC_CODE.MATCHES}','.*','Filter of discoverable gRPC codes https://github.com/grpc/grpc/blob/master/doc/statuscodes.md.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1304','10324','{$ETCD.GRPC_CODE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered gRPC codes https://github.com/grpc/grpc/blob/master/doc/statuscodes.md.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1305','10324','{$ETCD.GRPC_CODE.TRIGGER.MATCHES}','Aborted|Unavailable','Filter of discoverable gRPC codes which will create triggers.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1306','10324','{$ETCD.GRPC.ERRORS.MAX.WARN}','1','Maximum number of gRPC requests failures.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1307','10324','{$ETCD.HTTP.FAIL.MAX.WARN}','2','Maximum number of HTTP requests failures.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1308','10324','{$ETCD.LEADER.CHANGES.MAX.WARN}','5','Maximum number of leader changes.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1309','10324','{$ETCD.OPEN.FDS.MAX.WARN}','90','Maximum percentage of used file descriptors.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1310','10324','{$ETCD.PASSWORD}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1311','10324','{$ETCD.PORT}','2379','The port of Etcd API endpoint.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1312','10324','{$ETCD.PROPOSAL.FAIL.MAX.WARN}','2','Maximum number of proposal failures.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1313','10324','{$ETCD.PROPOSAL.PENDING.MAX.WARN}','5','Maximum number of proposals in queue.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1314','10324','{$ETCD.SCHEME}','http','Request scheme which may be http or https.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1315','10324','{$ETCD.USER}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1316','10325','{$IIS.APPPOOL.MATCHES}','.+','This macro is used in application pools discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1317','10325','{$IIS.APPPOOL.MONITORED}','1','Monitoring status for discovered application pools. Use context to avoid trigger firing for specific application pools. "1" - enabled, "0" - disabled.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1318','10325','{$IIS.APPPOOL.NOT_MATCHES}','','This macro is used in application pools discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1319','10325','{$IIS.PORT}','80','Listening port.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1320','10325','{$IIS.QUEUE.MAX.TIME}','5m','The time during which the queue length may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1321','10325','{$IIS.QUEUE.MAX.WARN}','','Maximum application pool\'s request queue length for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1322','10325','{$IIS.SERVICE}','http','The service (http/https/etc) for port check. See "net.tcp.service" documentation page for more information: https://www.zabbix.com/documentation/6.0/manual/config/items/itemtypes/simple_checks','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1323','10326','{$IIS.APPPOOL.MATCHES}','.+','This macro is used in application pools discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1324','10326','{$IIS.APPPOOL.MONITORED}','1','Monitoring status for discovered application pools. Use context to avoid trigger firing for specific application pools. "1" - enabled, "0" - disabled.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1325','10326','{$IIS.APPPOOL.NOT_MATCHES}','','This macro is used in application pools discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1326','10326','{$IIS.PORT}','80','Listening port.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1327','10326','{$IIS.QUEUE.MAX.TIME}','5m','The time during which the queue length may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1328','10326','{$IIS.QUEUE.MAX.WARN}','','Maximum application pool\'s request queue length for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1329','10326','{$IIS.SERVICE}','http','The service (http/https/etc) for port check. See "net.tcp.service" documentation page for more information: https://www.zabbix.com/documentation/6.0/manual/config/items/itemtypes/simple_checks','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1330','10327','{$MSSQL.AVERAGE_WAIT_TIME.MAX}','500','The maximum average wait time in ms - for the trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1331','10327','{$MSSQL.BUFFER_CACHE_RATIO.MIN.CRIT}','30','The minimum % buffer cache hit ratio - for the High trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1332','10327','{$MSSQL.BUFFER_CACHE_RATIO.MIN.WARN}','50','The minimum % buffer cache hit ratio - for the Warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1333','10327','{$MSSQL.DBNAME.MATCHES}','.*','This macro is used in database discovery. It can be overridden on a host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1334','10327','{$MSSQL.DBNAME.NOT_MATCHES}','master|tempdb|model|msdb','This macro is used in database discovery. It can be overridden on a host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1335','10327','{$MSSQL.DEADLOCKS.MAX}','1','The maximum deadlocks per second - for the trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1336','10327','{$MSSQL.DSN}','','System data source name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1337','10327','{$MSSQL.FREE_LIST_STALLS.MAX}','2','The maximum free list stalls per second - for the trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1338','10327','{$MSSQL.INSTANCE}','SQLServer','The instance name for the default instance is SQLServer. For named instance set the macro value as MSSQL$instance name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1339','10327','{$MSSQL.LAZY_WRITES.MAX}','20','The maximum lazy writes per second - for the trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1340','10327','{$MSSQL.LOCK_REQUESTS.MAX}','1000','The maximum lock requests per second - for the trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1341','10327','{$MSSQL.LOCK_TIMEOUTS.MAX}','1','The maximum lock timeouts per second - for the trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1342','10327','{$MSSQL.LOG_FLUSH_WAIT_TIME.MAX}','1','The maximum log flush wait time in ms - for the trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1343','10327','{$MSSQL.LOG_FLUSH_WAITS.MAX}','1','The maximum log flush waits per second - for the trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1346','10327','{$MSSQL.PAGE_LIFE_EXPECTANCY.MIN}','300','The minimum page life expectancy - for the trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1347','10327','{$MSSQL.PAGE_READS.MAX}','90','The maximum page reads per second - for the trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1348','10327','{$MSSQL.PAGE_WRITES.MAX}','90','The maximum page writes per second - for the trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1349','10327','{$MSSQL.PASSWORD}','','MSSQL user password.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1350','10327','{$MSSQL.PERCENT_COMPILATIONS.MAX}','10','The maximum percentage of Transact-SQL compilations - for the trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1351','10327','{$MSSQL.PERCENT_LOG_USED.MAX}','80','The maximum percentage of log used - for the trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1352','10327','{$MSSQL.PERCENT_READAHEAD.MAX}','20','The maximum percentage of pages read/sec in anticipation of use - for the trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1353','10327','{$MSSQL.PERCENT_RECOMPILATIONS.MAX}','10','The maximum percentage of Transact-SQL recompilations - for the trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1354','10327','{$MSSQL.PORT}','1433','MSSQL TCP port.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1355','10327','{$MSSQL.USER}','','MSSQL username.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1356','10327','{$MSSQL.WORK_FILES.MAX}','20','The maximum number of work files created per second - for the trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1357','10327','{$MSSQL.WORK_TABLES.MAX}','20','The maximum number of work tables created per second - for the trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1358','10327','{$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT}','90','The minimum percentage of the worktables from cache ratio - for the High trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1359','10316','{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN}','10','The maximum number of created tmp tables on a disk per second for trigger expressions.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1360','10316','{$MYSQL.CREATED_TMP_FILES.MAX.WARN}','10','The maximum number of created tmp files on a disk per second for trigger expressions.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1361','10316','{$MYSQL.CREATED_TMP_TABLES.MAX.WARN}','30','The maximum number of created tmp tables in memory per second for trigger expressions.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1362','10320','{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN}','10','The maximum number of created tmp tables on a disk per second for trigger expressions.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1363','10320','{$MYSQL.CREATED_TMP_FILES.MAX.WARN}','10','The maximum number of created tmp files on a disk per second for trigger expressions.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1364','10320','{$MYSQL.CREATED_TMP_TABLES.MAX.WARN}','30','The maximum number of created tmp tables in memory per second for trigger expressions.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1365','10317','{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN}','10','The maximum number of created tmp tables on a disk per second for trigger expressions.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1366','10317','{$MYSQL.CREATED_TMP_FILES.MAX.WARN}','10','The maximum number of created tmp files on a disk per second for trigger expressions.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1367','10317','{$MYSQL.CREATED_TMP_TABLES.MAX.WARN}','30','The maximum number of created tmp tables in memory per second for trigger expressions.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1368','10328','{$ORACLE.ASM.USED.PCT.MAX.HIGH}','95','Maximum percentage of used ASM disk group for high trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1369','10328','{$ORACLE.ASM.USED.PCT.MAX.WARN}','90','Maximum percentage of used ASM disk group for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1370','10328','{$ORACLE.CONCURRENCY.MAX.WARN}','80','Maximum percentage of sessions concurrency usage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1371','10328','{$ORACLE.DB.FILE.MAX.WARN}','80','Maximum percentage of database files for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1372','10328','{$ORACLE.DBNAME.MATCHES}','.*','This macro is used in database discovery. It can be overridden on a host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1373','10328','{$ORACLE.DBNAME.NOT_MATCHES}','PDB\\$SEED','This macro is used in database discovery. It can be overridden on a host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1375','10328','{$ORACLE.EXPIRE.PASSWORD.MIN.WARN}','7','Number of days of warning before password expires (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1376','10328','{$ORACLE.PASSWORD}','','Oracle user password.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1377','10328','{$ORACLE.PGA.USE.MAX.WARN}','90','Maximum percentage of PGA usage alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1378','10328','{$ORACLE.PORT}','1521','Oracle DB TCP port.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1379','10328','{$ORACLE.PROCESSES.MAX.WARN}','80','Maximum percentage of active processes alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1380','10328','{$ORACLE.REDO.MIN.WARN}','3','Minimum number of REDO logs alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1381','10328','{$ORACLE.SESSION.LOCK.MAX.TIME}','600','Maximum session lock duration in seconds for count the session as a prolongedly locked query.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1382','10328','{$ORACLE.SESSION.LONG.LOCK.MAX.WARN}','3','Maximum number of the prolongedly locked sessions alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1383','10328','{$ORACLE.SESSIONS.LOCK.MAX.WARN}','20','Maximum percentage of locked sessions alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1384','10328','{$ORACLE.SESSIONS.MAX.WARN}','80','Maximum percentage of active sessions alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1385','10328','{$ORACLE.SHARED.FREE.MIN.WARN}','5','Minimum percentage of free shared pool alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1386','10328','{$ORACLE.TABLESPACE.NAME.MATCHES}','.*','This macro is used in tablespace discovery. It can be overridden on a host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1387','10328','{$ORACLE.TABLESPACE.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in tablespace discovery. It can be overridden on a host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1388','10328','{$ORACLE.TBS.USED.PCT.MAX.HIGH}','95','Maximum percentage of used (Used bytes/Allocated bytes) tablespace high severity alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1389','10328','{$ORACLE.TBS.USED.PCT.MAX.WARN}','90','Maximum percentage of used (Used bytes/Allocated bytes) tablespace warning severity alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1390','10328','{$ORACLE.USER}','','Oracle username.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1391','10329','{$PG.CONFLICTS.MAX.WARN}','0','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1392','10329','{$PG.CONN_TOTAL_PCT.MAX.WARN}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1393','10329','{$PG.DEADLOCKS.MAX.WARN}','0','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1394','10329','{$PG.LLD.FILTER.DBNAME}','(.+)','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1395','10329','{$PG.PASSWORD}','postgres','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1396','10329','{$PG.URI}','tcp://localhost:5432','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1397','10329','{$PG.USER}','postgres','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1398','10169','{$JMX.CPU.LOAD.MAX}','85','A threshold in percent for CPU utilization trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1399','10169','{$JMX.CPU.LOAD.TIME}','5m','The time during which the CPU utilization may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1400','10169','{$JMX.FILE.DESCRIPTORS.MAX}','85','A threshold in percent for file descriptors count trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1401','10169','{$JMX.FILE.DESCRIPTORS.TIME}','3m','The time during which the file descriptors count may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1402','10169','{$JMX.HEAP.MEM.USAGE.MAX}','85','A threshold in percent for Heap memory utilization trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1403','10169','{$JMX.HEAP.MEM.USAGE.TIME}','10m','The time during which the Heap memory utilization may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1404','10169','{$JMX.MP.USAGE.MAX}','85','A threshold in percent for memory pools utilization trigger. Use a context to change the threshold for a specific pool.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1405','10169','{$JMX.MP.USAGE.TIME}','10m','The time during which the memory pools utilization may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1406','10169','{$JMX.NONHEAP.MEM.USAGE.MAX}','85','A threshold in percent for Non-heap memory utilization trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1407','10169','{$JMX.NONHEAP.MEM.USAGE.TIME}','10m','The time during which the Non-heap memory utilization may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1408','10330','{$PHP_FPM.HOST}','localhost','Hostname or IP of PHP-FPM status host or container.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1409','10330','{$PHP_FPM.PING.PAGE}','ping','The path of PHP-FPM ping page.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1410','10330','{$PHP_FPM.PING.REPLY}','pong','Expected reply to the ping.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1411','10330','{$PHP_FPM.PORT}','80','The port of PHP-FPM status host or container.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1412','10330','{$PHP_FPM.PROCESS_NAME}','php-fpm','PHP-FPM process name','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1413','10330','{$PHP_FPM.QUEUE.WARN.MAX}','80','The maximum PHP-FPM queue usage percent for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1414','10330','{$PHP_FPM.STATUS.PAGE}','status','The path of PHP-FPM status page.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1415','10331','{$PHP_FPM.HOST}','localhost','Hostname or IP of PHP-FPM status host or container.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1416','10331','{$PHP_FPM.PING.PAGE}','ping','The path of PHP-FPM ping page.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1417','10331','{$PHP_FPM.PING.REPLY}','pong','Expected reply to the ping.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1418','10331','{$PHP_FPM.PORT}','80','The port of PHP-FPM status host or container.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1419','10331','{$PHP_FPM.QUEUE.WARN.MAX}','80','The maximum PHP-FPM queue usage percent for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1420','10331','{$PHP_FPM.SCHEME}','http','Request scheme which may be http or https','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1421','10331','{$PHP_FPM.STATUS.PAGE}','status','The path of PHP-FPM status page.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1425','10335','{$ORACLE.ASM.USED.PCT.MAX.HIGH}','95','Maximum percentage of used ASM disk group for high trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1426','10335','{$ORACLE.ASM.USED.PCT.MAX.WARN}','90','Maximum percentage of used ASM disk group for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1427','10335','{$ORACLE.CONCURRENCY.MAX.WARN}','80','Maximum percentage of sessions concurrency usage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1428','10335','{$ORACLE.CONNSTRING}','tcp://localhost:1521','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1429','10335','{$ORACLE.DB.FILE.MAX.WARN}','80','Maximum percentage of database files for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1430','10335','{$ORACLE.DBNAME.MATCHES}','.*','This macro is used in database discovery. It can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1431','10335','{$ORACLE.DBNAME.NOT_MATCHES}','PDB\\$SEED','This macro is used in database discovery. It can be overridden on a host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1432','10335','{$ORACLE.EXPIRE.PASSWORD.MIN.WARN}','7','Number of days of warning before password expires (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1433','10335','{$ORACLE.PASSWORD}','zabbix_password','Oracle user password.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1434','10335','{$ORACLE.PGA.USE.MAX.WARN}','90','Maximum percentage of PGA usage alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1435','10335','{$ORACLE.PROCESSES.MAX.WARN}','80','Maximum percentage of active processes alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1436','10335','{$ORACLE.REDO.MIN.WARN}','3','Minimum number of REDO logs alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1437','10335','{$ORACLE.SERVICE}','ORA','Oracle Service Name','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1438','10335','{$ORACLE.SESSION.LOCK.MAX.TIME}','600','Maximum session lock duration in seconds for count the session as a prolongedly locked query.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1439','10335','{$ORACLE.SESSION.LONG.LOCK.MAX.WARN}','3','Maximum number of the prolongedly locked sessions alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1440','10335','{$ORACLE.SESSIONS.LOCK.MAX.WARN}','20','Maximum percentage of locked sessions alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1441','10335','{$ORACLE.SESSIONS.MAX.WARN}','80','Maximum percentage of active sessions alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1442','10335','{$ORACLE.SHARED.FREE.MIN.WARN}','5','Minimum percentage of free shared pool alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1443','10335','{$ORACLE.TABLESPACE.NAME.MATCHES}','.*','This macro is used in tablespace discovery. It can be overridden on a host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1444','10335','{$ORACLE.TABLESPACE.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in tablespace discovery. It can be overridden on a host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1445','10335','{$ORACLE.TBS.USED.PCT.MAX.HIGH}','95','Maximum percentage of used (Used bytes/Allocated bytes) tablespace high severity alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1446','10335','{$ORACLE.TBS.USED.PCT.MAX.WARN}','90','Maximum percentage of used (Used bytes/Allocated bytes) tablespace warning severity alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1447','10335','{$ORACLE.USER}','zabbix','Oracle username.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1448','10336','{$AMI.PORT}','5038','AMI port number for checking service availability.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1449','10336','{$AMI.QUEUE_CALLERS.MAX.WARN}','10','The maximum number of callers in a queue for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1450','10336','{$AMI.RESPONSE_TIME.MAX.WARN}','10s','The Asterisk Manager API page maximum response time in seconds for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1451','10336','{$AMI.SECRET}','zabbix','The Asterisk Manager secret.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1452','10336','{$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN}','28','The maximum number of busy channels of a trunk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1453','10336','{$AMI.TRUNK_REGEXP}','trunk','The regexp for the identification of trunk peers.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1454','10336','{$AMI.URL}','http://asterisk:8088/asterisk/rawman','The Asterisk Manager API URL in the format `://://rawman`.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1455','10336','{$AMI.USERNAME}','zabbix','The Asterisk Manager name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1456','10337','{$VFS.DEV.DEVNAME.MATCHES}','.+','This macro is used in block devices discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1457','10337','{$VFS.DEV.DEVNAME.NOT_MATCHES}','^(loop[0-9]*|sd[a-z][0-9]+|nbd[0-9]+|sr[0-9]+|fd[0-9]+|dm-[0-9]+|ram[0-9]+|ploop[a-z0-9]+|md[0-9]*|hcp[0-9]*|zram[0-9]*)','This macro is used in block devices discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1458','10337','{$VFS.DEV.READ.AWAIT.WARN}','20','Disk read average response time (in ms) before the trigger would fire','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1459','10337','{$VFS.DEV.WRITE.AWAIT.WARN}','20','Disk write average response time (in ms) before the trigger would fire','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1460','10338','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1461','10338','{$LOAD_AVG_PER_CPU.MAX.WARN}','1.5','Load per CPU considered sustainable. Tune if needed.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1462','10339','{$VFS.FS.FSNAME.MATCHES}','.+','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1463','10339','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1464','10339','{$VFS.FS.FSTYPE.MATCHES}','^(btrfs|ext2|ext3|ext4|reiser|xfs|ffs|ufs|jfs|jfs2|vxfs|hfs|apfs|refs|ntfs|fat32|zfs)$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1465','10339','{$VFS.FS.FSTYPE.NOT_MATCHES}','^\\s$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1466','10339','{$VFS.FS.INODE.PFREE.MIN.CRIT}','10','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1467','10339','{$VFS.FS.INODE.PFREE.MIN.WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1468','10339','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1469','10339','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1470','10340','{$KERNEL.MAXFILES.MIN}','256','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1471','10340','{$KERNEL.MAXPROC.MIN}','1024','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1472','10340','{$SYSTEM.FUZZYTIME.MAX}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1473','10341','{$MEMORY.AVAILABLE.MIN}','20M','This macro is used as a threshold in memory available trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1474','10341','{$MEMORY.UTIL.MAX}','90','This macro is used as a threshold in memory utilization trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1475','10341','{$SWAP.PFREE.MIN.WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1476','10342','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1477','10342','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1478','10342','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1479','10342','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9A-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1480','10344','{$CPU.INTERRUPT.CRIT.MAX}','50','The critical threshold of the % Interrupt Time counter.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1481','10344','{$CPU.PRIV.CRIT.MAX}','30','The threshold of the % Privileged Time counter.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1482','10344','{$CPU.QUEUE.CRIT.MAX}','3','The threshold of the Processor Queue Length counter.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1483','10344','{$CPU.UTIL.CRIT}','90','The critical threshold of the CPU utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1484','10345','{$VFS.FS.FSDRIVETYPE.MATCHES}','fixed','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1485','10345','{$VFS.FS.FSDRIVETYPE.NOT_MATCHES}','^\\s$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1486','10345','{$VFS.FS.FSNAME.MATCHES}','.*','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1487','10345','{$VFS.FS.FSNAME.NOT_MATCHES}','^(?:/dev|/sys|/run|/proc|.+/shm$)','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1488','10345','{$VFS.FS.FSTYPE.MATCHES}','.*','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1489','10345','{$VFS.FS.FSTYPE.NOT_MATCHES}','^\\s$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1490','10345','{$VFS.FS.PUSED.MAX.CRIT}','90','The critical threshold of the filesystem utilization in percent.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1491','10345','{$VFS.FS.PUSED.MAX.WARN}','80','The warning threshold of the filesystem utilization in percent.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1492','10346','{$SYSTEM.FUZZYTIME.MAX}','60','The threshold for difference of system time in seconds.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1493','10347','{$MEM.PAGE_SEC.CRIT.MAX}','1000','The warning threshold of the Memory Pages/sec counter.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1494','10347','{$MEM.PAGE_TABLE_CRIT.MIN}','5000','The warning threshold of the Free System Page Table Entries counter.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1495','10347','{$MEMORY.UTIL.MAX}','90','The warning threshold of the Memory util item.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1496','10347','{$SWAP.PFREE.MIN.WARN}','20','The warning threshold of the minimum free swap.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1497','10348','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1498','10348','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1499','10348','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1500','10348','{$NET.IF.IFALIAS.MATCHES}','.*','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1501','10348','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_THIS','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1502','10348','{$NET.IF.IFDESCR.MATCHES}','.*','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1503','10348','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_THIS','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1504','10348','{$NET.IF.IFNAME.MATCHES}','.*','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1505','10348','{$NET.IF.IFNAME.NOT_MATCHES}','Miniport|Virtual|Teredo|Kernel|Loopback|Bluetooth|HTTPS|6to4|QoS|Layer','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1506','10349','{$VFS.DEV.DEVNAME.MATCHES}','.*','This macro is used in physical disks discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1507','10349','{$VFS.DEV.DEVNAME.NOT_MATCHES}','_Total','This macro is used in physical disks discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1508','10349','{$VFS.DEV.UTIL.MAX.WARN}','95','The warning threshold of disk time utilization in percent.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1509','10350','{$SERVICE.NAME.MATCHES}','^.*$','This macro is used in Service discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1510','10350','{$SERVICE.NAME.NOT_MATCHES}','^(?:RemoteRegistry|MMCSS|gupdate|SysmonLog|clr_optimization_v.+|sppsvc|gpsvc|Pml Driver HPZ12|Net Driver HPZ12|MapsBroker|IntelAudioService|Intel\\(R\\) TPM Provisioning Service|dbupdate|DoSvc|CDPUserSvc_.+|WpnUserService_.+|OneSyncSvc_.+|WbioSrvc|BITS|tiledatamodelsvc|GISvc|ShellHWDetection|TrustedInstaller|TabletInputService|CDPSvc|wuauserv)$','This macro is used in Service discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1511','10350','{$SERVICE.STARTUPNAME.MATCHES}','^(?:automatic|automatic delayed)$','This macro is used in Service discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1512','10350','{$SERVICE.STARTUPNAME.NOT_MATCHES}','^(?:manual|disabled)$','This macro is used in Service discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1534','10353','{$CEPH.API.KEY}','zabbix_pass','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1535','10353','{$CEPH.CONNSTRING}','https://localhost:8003','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1536','10353','{$CEPH.USER}','zabbix','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1542','10355','{$SQUID.FILE.DESC.WARN.MIN}','100','The threshold for minimum number of available file descriptors','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1543','10355','{$SQUID.HTTP.PORT}','3128','http_port configured in squid.conf (Default: 3128)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1544','10355','{$SQUID.PAGE.FAULT.WARN}','90','The threshold for sys page faults rate in percent of received HTTP requests','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1545','10355','{$SQUID.SNMP.COMMUNITY}','public','SNMP community allowed by ACL in squid.conf','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1546','10355','{$SQUID.SNMP.PORT}','3401','snmp_port configured in squid.conf (Default: 3401)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1568','10357','{$PG.CACHE_HITRATIO.MIN.WARN}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1569','10357','{$PG.CHECKPOINTS_REQ.MAX.WARN}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1570','10357','{$PG.CONFLICTS.MAX.WARN}','0','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1571','10357','{$PG.CONN_IDLE_IN_TRANS.MAX.WARN}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1572','10357','{$PG.CONN_TOTAL_PCT.MAX.WARN}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1573','10357','{$PG.CONN_WAIT.MAX.WARN}','0','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1574','10357','{$PG.DB}','postgres','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1575','10357','{$PG.DEADLOCKS.MAX.WARN}','0','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1576','10357','{$PG.FROZENXID_PCT_STOP.MIN.HIGH}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1577','10357','{$PG.HOST}','127.0.0.1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1578','10357','{$PG.LLD.FILTER.DBNAME}','(.*)','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1579','10357','{$PG.LOCKS.MAX.WARN}','100','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1580','10357','{$PG.PING_TIME.MAX.WARN}','1s','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1581','10357','{$PG.PORT}','5432','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1582','10357','{$PG.QUERY_ETIME.MAX.WARN}','30','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1583','10357','{$PG.REPL_LAG.MAX.WARN}','10m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1584','10357','{$PG.SLOW_QUERIES.MAX.WARN}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1585','10357','{$PG.TRANS_ACTIVE.MAX.WARN}','30s','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1586','10357','{$PG.TRANS_IDLE.MAX.WARN}','30s','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1587','10357','{$PG.TRANS_WAIT.MAX.WARN}','30s','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1588','10357','{$PG.USER}','zbx_monitor','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1589','10233','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1590','10233','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1591','10233','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1592','10233','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1593','10233','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1594','10233','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1595','10358','{$ACTIVEMQ.BROKER.CONSUMERS.MIN.HIGH}','1','Minimum amount of consumers for broker. Can be used with broker name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1596','10358','{$ACTIVEMQ.BROKER.CONSUMERS.MIN.TIME}','5m','Time during which there may be no consumers on destination. Can be used with broker name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1597','10358','{$ACTIVEMQ.BROKER.PRODUCERS.MIN.HIGH}','1','Minimum amount of producers for broker. Can be used with broker name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1598','10358','{$ACTIVEMQ.BROKER.PRODUCERS.MIN.TIME}','5m','Time during which there may be no producers on broker. Can be used with broker name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1599','10358','{$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.HIGH}','1','Minimum amount of consumers for destination. Can be used with destination name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1600','10358','{$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.TIME}','10m','Time during which there may be no consumers in destination. Can be used with destination name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1601','10358','{$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.HIGH}','1','Minimum amount of producers for destination. Can be used with destination name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1602','10358','{$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.TIME}','10m','Time during which there may be no producers on destination. Can be used with destination name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1604','10358','{$ACTIVEMQ.LLD.FILTER.BROKER.MATCHES}','.*','Filter of discoverable discovered brokers','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1605','10358','{$ACTIVEMQ.LLD.FILTER.BROKER.NOT_MATCHES}','CHANGE IF NEEDED','Filter to exclude discovered brokers','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1606','10358','{$ACTIVEMQ.LLD.FILTER.DESTINATION.MATCHES}','.*','Filter of discoverable discovered destinations','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1607','10358','{$ACTIVEMQ.LLD.FILTER.DESTINATION.NOT_MATCHES}','CHANGE IF NEEDED','Filter to exclude discovered destinations','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1608','10358','{$ACTIVEMQ.MEM.MAX.HIGH}','90','Memory threshold for HIGH trigger. Can be used with destination or broker name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1609','10358','{$ACTIVEMQ.MEM.MAX.WARN}','75','Memory threshold for AVERAGE trigger. Can be used with destination or broker name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1610','10358','{$ACTIVEMQ.MEM.TIME}','5m','Time during which the metric can be above the threshold. Can be used with destination or broker name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1611','10358','{$ACTIVEMQ.MSG.RATE.WARN.TIME}','15m','The time for message enqueue/dequeue rate. Can be used with destination or broker name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1612','10358','{$ACTIVEMQ.PASSWORD}','activemq','Password for JMX','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1613','10358','{$ACTIVEMQ.PORT}','1099','Port for JMX','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1614','10358','{$ACTIVEMQ.QUEUE.ENABLED}','1','Use this to disable alerting for specific destination. 1 = enabled, 0 = disabled. Can be used with destination name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1615','10358','{$ACTIVEMQ.QUEUE.TIME}','10m','Time during which the QueueSize can be higher than threshold. Can be used with destination name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1616','10358','{$ACTIVEMQ.QUEUE.WARN}','100','Threshold for QueueSize. Can be used with destination name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1617','10358','{$ACTIVEMQ.STORE.MAX.HIGH}','90','Storage threshold for HIGH trigger. Can be used with broker name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1618','10358','{$ACTIVEMQ.STORE.MAX.WARN}','75','Storage threshold for AVERAGE trigger. Can be used with broker name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1619','10358','{$ACTIVEMQ.STORE.TIME}','5m','Time during which the metric can be above the threshold. Can be used with destination or broker name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1620','10358','{$ACTIVEMQ.TEMP.MAX.HIGH}','90','Temp threshold for HIGH trigger. Can be used with broker name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1621','10358','{$ACTIVEMQ.TEMP.MAX.WARN}','75','Temp threshold for AVERAGE trigger. Can be used with broker name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1622','10358','{$ACTIVEMQ.TEMP.TIME}','5m','Time during which the metric can be above the threshold. Can be used with destination or broker name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1623','10358','{$ACTIVEMQ.TOTAL.CONSUMERS.COUNT}','TotalConsumerCount','Attribute for TotalConsumerCount per destination. Used to suppress destination\'s triggers when the count of consumers on the broker is lower than threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1624','10358','{$ACTIVEMQ.TOTAL.PRODUCERS.COUNT}','TotalProducerCount','Attribute for TotalProducerCount per destination. Used to suppress destination\'s triggers when the count of consumers on the broker is lower than threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1625','10358','{$ACTIVEMQ.USER}','admin','User for JMX','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1626','10359','{$ARANET.API.ENDPOINT}','https://aranet.cloud/api','Aranet Cloud API endpoint.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1627','10359','{$ARANET.API.PASSWORD}','','Aranet Cloud password.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1628','10359','{$ARANET.API.SPACE_NAME}','','Aranet Cloud organization name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1629','10359','{$ARANET.API.USERNAME}','','Aranet Cloud username.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1630','10359','{$ARANET.BATT.VOLTAGE.MIN.CRIT}','2','Battery voltage critical threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1631','10359','{$ARANET.BATT.VOLTAGE.MIN.WARN}','1','Battery voltage warning threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1632','10359','{$ARANET.CO2.MAX.CRIT}','1000','CO2 critical threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1633','10359','{$ARANET.CO2.MAX.WARN}','600','CO2 warning threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1634','10359','{$ARANET.HUMIDITY.MAX.WARN}','70','Maximum humidity threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1635','10359','{$ARANET.HUMIDITY.MIN.WARN}','20','Minimum humidity threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1636','10359','{$ARANET.LAST_UPDATE.MAX.WARN}','1h','Data update delay threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1637','10359','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}','.+','Filter of discoverable sensors by gateway id.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1638','10359','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}','.+','Filter of discoverable sensors by gateway name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1639','10359','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable sensors by gateway name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1640','10359','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}','.+','Filter of discoverable sensors by id.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1641','10359','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}','.+','Filter of discoverable sensors by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1642','10359','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable sensors by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1643','10360','{$MS.EXCHANGE.DB.ACTIVE.READ.TIME}','5m','The time during which the active database read operations latency may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1644','10360','{$MS.EXCHANGE.DB.ACTIVE.READ.WARN}','0.02','Threshold for active database read operations latency trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1645','10360','{$MS.EXCHANGE.DB.ACTIVE.WRITE.TIME}','10m','The time during which the active database write operations latency may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1646','10360','{$MS.EXCHANGE.DB.ACTIVE.WRITE.WARN}','0.05','Threshold for active database write operations latency trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1647','10360','{$MS.EXCHANGE.DB.FAULTS.TIME}','5m','The time during which the database page faults may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1648','10360','{$MS.EXCHANGE.DB.FAULTS.WARN}','0','Threshold for database page faults trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1649','10360','{$MS.EXCHANGE.DB.PASSIVE.READ.TIME}','5m','The time during which the passive database read operations latency may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1650','10360','{$MS.EXCHANGE.DB.PASSIVE.READ.WARN}','0.2','Threshold for passive database read operations latency trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1651','10360','{$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME}','10m','The time during which the passive database write operations latency may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1652','10360','{$MS.EXCHANGE.LDAP.TIME}','5m','The time during which the LDAP metrics may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1653','10360','{$MS.EXCHANGE.LDAP.WARN}','0.05','Threshold for LDAP triggers.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1654','10360','{$MS.EXCHANGE.LOG.STALLS.TIME}','10m','The time during which the log records stalled may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1655','10360','{$MS.EXCHANGE.LOG.STALLS.WARN}','100','Threshold for log records stalled trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1656','10360','{$MS.EXCHANGE.PERF.INTERVAL}','60','Update interval for perf_counter_en items.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1657','10360','{$MS.EXCHANGE.RPC.COUNT.TIME}','5m','The time during which the RPC total requests may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1658','10360','{$MS.EXCHANGE.RPC.COUNT.WARN}','70','Threshold for LDAP triggers.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1659','10360','{$MS.EXCHANGE.RPC.TIME}','10m','The time during which the RPC requests latency may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1660','10360','{$MS.EXCHANGE.RPC.WARN}','0.05','Threshold for RPC requests latency trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1661','10361','{$MS.EXCHANGE.DB.ACTIVE.READ.TIME}','5m','The time during which the active database read operations latency may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1662','10361','{$MS.EXCHANGE.DB.ACTIVE.READ.WARN}','0.02','Threshold for active database read operations latency trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1663','10361','{$MS.EXCHANGE.DB.ACTIVE.WRITE.TIME}','10m','The time during which the active database write operations latency may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1664','10361','{$MS.EXCHANGE.DB.ACTIVE.WRITE.WARN}','0.05','Threshold for active database write operations latency trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1665','10361','{$MS.EXCHANGE.DB.FAULTS.TIME}','5m','The time during which the database page faults may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1666','10361','{$MS.EXCHANGE.DB.FAULTS.WARN}','0','Threshold for database page faults trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1667','10361','{$MS.EXCHANGE.DB.PASSIVE.READ.TIME}','5m','The time during which the passive database read operations latency may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1668','10361','{$MS.EXCHANGE.DB.PASSIVE.READ.WARN}','0.2','Threshold for passive database read operations latency trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1669','10361','{$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME}','10m','The time during which the passive database write operations latency may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1670','10361','{$MS.EXCHANGE.LDAP.TIME}','5m','The time during which the LDAP metrics may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1671','10361','{$MS.EXCHANGE.LDAP.WARN}','0.05','Threshold for LDAP triggers.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1672','10361','{$MS.EXCHANGE.LOG.STALLS.TIME}','10m','The time during which the log records stalled may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1673','10361','{$MS.EXCHANGE.LOG.STALLS.WARN}','100','Threshold for log records stalled trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1674','10361','{$MS.EXCHANGE.PERF.INTERVAL}','60','Update interval for perf_counter_en items.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1675','10361','{$MS.EXCHANGE.RPC.COUNT.TIME}','5m','The time during which the RPC total requests may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1676','10361','{$MS.EXCHANGE.RPC.COUNT.WARN}','70','Threshold for LDAP triggers.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1677','10361','{$MS.EXCHANGE.RPC.TIME}','10m','The time during which the RPC requests latency may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1678','10361','{$MS.EXCHANGE.RPC.WARN}','0.05','Threshold for RPC requests latency trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1679','10362','{$GITLAB.HTTP.FAIL.MAX.WARN}','2','Maximum number of HTTP requests failures for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1680','10362','{$GITLAB.OPEN.FDS.MAX.WARN}','90','Maximum percentage of used file descriptors for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1682','10362','{$GITLAB.PUMA.QUEUE.MAX.WARN}','1','Maximum number of Puma queued requests for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1683','10362','{$GITLAB.PUMA.UTILIZATION.MAX.WARN}','90','Maximum percentage of used Puma thread utilization for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1684','10362','{$GITLAB.REDIS.FAIL.MAX.WARN}','2','Maximum number of Redis client exceptions for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1685','10362','{$GITLAB.UNICORN.QUEUE.MAX.WARN}','1','Maximum number of Unicorn queued requests for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1686','10362','{$GITLAB.UNICORN.UTILIZATION.MAX.WARN}','90','Maximum percentage of used Unicorn workers utilization for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1687','10362','{$GITLAB.URL}','http://localhost','GitLab instance URL','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1688','10363','{$HADOOP.CAPACITY_REMAINING.MIN.WARN}','20','The Hadoop cluster capacity remaining percent for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1689','10363','{$HADOOP.NAMENODE.HOST}','NameNode','The Hadoop NameNode host IP address or FQDN.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1690','10363','{$HADOOP.NAMENODE.PORT}','9870','The Hadoop NameNode Web-UI port.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1691','10363','{$HADOOP.NAMENODE.RESPONSE_TIME.MAX.WARN}','10s','The Hadoop NameNode API page maximum response time in seconds for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1692','10363','{$HADOOP.RESOURCEMANAGER.HOST}','ResourceManager','The Hadoop ResourceManager host IP address or FQDN.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1693','10363','{$HADOOP.RESOURCEMANAGER.PORT}','8088','The Hadoop ResourceManager Web-UI port.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1694','10363','{$HADOOP.RESOURCEMANAGER.RESPONSE_TIME.MAX.WARN}','10s','The Hadoop ResourceManager API page maximum response time in seconds for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1695','10364','{$KAFKA.NET_PROC_AVG_IDLE.MIN.WARN}','30','The minimum Network processor average idle percent for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1696','10364','{$KAFKA.PASSWORD}','zabbix','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1697','10364','{$KAFKA.REQUEST_HANDLER_AVG_IDLE.MIN.WARN}','30','The minimum Request handler average idle percent for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1698','10364','{$KAFKA.TOPIC.MATCHES}','.*','Filter of discoverable topics','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1699','10364','{$KAFKA.TOPIC.NOT_MATCHES}','__consumer_offsets','Filter to exclude discovered topics','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1700','10364','{$KAFKA.USER}','zabbix','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1701','10260','{$TOMCAT.LLD.FILTER.MATCHES}','.*','Filter for discoverable objects. Can be used with following contexts: "GlobalRequestProcessor", "ThreadPool", "Manager"','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1702','10260','{$TOMCAT.LLD.FILTER.NOT_MATCHES}','CHANGE IF NEEDED','Filter to exclude discovered objects. Can be used with following contexts: "GlobalRequestProcessor", "ThreadPool", "Manager"','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1703','10260','{$TOMCAT.PASSWORD}','','Password for JMX','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1704','10260','{$TOMCAT.THREADS.MAX.PCT}','75','Threshold for busy worker threads trigger. Can be used with {#JMXNAME} as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1705','10260','{$TOMCAT.THREADS.MAX.TIME}','5m','The time during which the number of busy threads can exceed the threshold. Can be used with {#JMXNAME} as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1706','10260','{$TOMCAT.USER}','','User for JMX','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1707','10365','{$VAULT.API.PORT}','8200','Vault port.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1708','10365','{$VAULT.API.SCHEME}','http','Vault API scheme.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1709','10365','{$VAULT.HOST}','','Vault host name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1710','10365','{$VAULT.LEADERSHIP.LOSSES.MAX.WARN}','5','Maximum number of Vault leadership losses.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1711','10365','{$VAULT.LEADERSHIP.SETUP.FAILED.MAX.WARN}','5','Maximum number of Vault leadership setup failed.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1712','10365','{$VAULT.LEADERSHIP.STEPDOWNS.MAX.WARN}','5','Maximum number of Vault leadership step downs.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1713','10365','{$VAULT.LLD.FILTER.STORAGE.MATCHES}','.+','Filter of discoverable storage backends.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1714','10365','{$VAULT.OPEN.FDS.MAX.WARN}','90','Maximum percentage of used file descriptors for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1715','10365','{$VAULT.TOKEN}','','Vault auth token.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1716','10365','{$VAULT.TOKEN.ACCESSORS}','','Vault accessors separated by spaces for monitoring token expiration time.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1717','10365','{$VAULT.TOKEN.TTL.MIN.CRIT}','3d','Token TTL critical threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1718','10365','{$VAULT.TOKEN.TTL.MIN.WARN}','7d','Token TTL warning threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1719','10333','{$VMWARE.HV.UUID}','{#HV.UUID}','UUID of hypervisor.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1720','10334','{$VMWARE.VM.UUID}','{#VM.UUID}','UUID of guest virtual machine.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1721','10367','{$VMWARE.HV.UUID}','{#HV.UUID}','UUID of hypervisor.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1722','10368','{$VMWARE.VM.UUID}','{#VM.UUID}','UUID of guest virtual machine.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1723','10369','{$ZOOKEEPER.COMMAND_URL}','commands','The URL for listing and issuing commands relative to the root URL (admin.commandURL).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1724','10369','{$ZOOKEEPER.FILE_DESCRIPTORS.MAX.WARN}','85','Maximum percentage of file descriptors usage alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1725','10369','{$ZOOKEEPER.OUTSTANDING_REQ.MAX.WARN}','10','Maximum number of outstanding requests (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1726','10369','{$ZOOKEEPER.PENDING_SYNCS.MAX.WARN}','10','Maximum number of pending syncs from the followers (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1727','10369','{$ZOOKEEPER.PORT}','8080','The port the embedded Jetty server listens on (admin.serverPort).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1728','10369','{$ZOOKEEPER.SCHEME}','http','Request scheme which may be http or https','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1729','10370','{$CASSANDRA.KEY_SPACE.MATCHES}','.*','Filter of discoverable key spaces','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1730','10370','{$CASSANDRA.KEY_SPACE.NOT_MATCHES}','(system|system_auth|system_distributed|system_schema)','Filter to exclude discovered key spaces','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1731','10370','{$CASSANDRA.PASSWORD}','zabbix','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1732','10370','{$CASSANDRA.PENDING_TASKS.MAX.HIGH}','500','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1733','10370','{$CASSANDRA.PENDING_TASKS.MAX.WARN}','350','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1734','10370','{$CASSANDRA.USER}','zabbix','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1735','10316','{$MYSQL.INNODB_LOG_FILES}','2','Number of physical files in the InnoDB redo log for calculating innodb_log_file_size.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1736','10320','{$MYSQL.INNODB_LOG_FILES}','2','Number of physical files in the InnoDB redo log for calculating innodb_log_file_size.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1737','10317','{$MYSQL.INNODB_LOG_FILES}','2','Number of physical files in the InnoDB redo log for calculating innodb_log_file_size.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1738','10335','{$ORACLE.TBS.UTIL.PCT.MAX.HIGH}','90','Maximum percentage of utilization (Allocated bytes/Max bytes) tablespace high severity alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1739','10335','{$ORACLE.TBS.UTIL.PCT.MAX.WARN}','80','Maximum percentage of utilization (Allocated bytes/Max bytes) tablespace warning severity alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1740','10328','{$ORACLE.TBS.UTIL.PCT.MAX.HIGH}','90','Maximum percentage of utilization (Allocated bytes/Max bytes) tablespace high severity alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1741','10328','{$ORACLE.TBS.UTIL.PCT.MAX.WARN}','80','Maximum percentage of utilization (Allocated bytes/Max bytes) tablespace warning severity alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1742','10329','{$PG.DATABASE}','postgres','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1743','10329','{$PG.LLD.FILTER.APPLICATION}','(.+)','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1744','10371','{$BATTERY.TEMP.MAX.CRIT}','60','Battery high temperature critical value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1745','10371','{$BATTERY.TEMP.MAX.WARN}','45','Battery high temperature warning value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1746','10371','{$BATTERY.TEMP.MIN.CRIT}','-20','Battery low temperature critical value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1747','10371','{$BATTERY.TEMP.MIN.WARN}','0','Battery low temperature warning value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1748','10371','{$CHARGE.STATE.CRIT}','4','fault','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1749','10371','{$CHARGE.STATE.WARN}','2','disconnect','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1750','10371','{$LOAD.STATE.CRIT:"fault"}','4','fault','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1751','10371','{$LOAD.STATE.CRIT:"lvd"}','3','lvd','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1752','10371','{$LOAD.STATE.WARN:"disconnect"}','5','disconnect','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1753','10371','{$LOAD.STATE.WARN:"lvdWarning"}','2','lvdWarning','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1754','10371','{$LOAD.STATE.WARN:"override"}','7','override','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1755','10371','{$VOLTAGE.MAX.CRIT}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1756','10371','{$VOLTAGE.MAX.WARN}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1757','10371','{$VOLTAGE.MIN.CRIT}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1758','10371','{$VOLTAGE.MIN.WARN}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1759','10372','{$BATTERY.TEMP.MAX.CRIT}','60','Battery high temperature critical value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1760','10372','{$BATTERY.TEMP.MAX.WARN}','45','Battery high temperature warning value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1761','10372','{$BATTERY.TEMP.MIN.CRIT}','-20','Battery low temperature critical value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1762','10372','{$BATTERY.TEMP.MIN.WARN}','0','Battery low temperature warning value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1763','10372','{$CHARGE.STATE.CRIT}','4','fault','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1764','10372','{$CHARGE.STATE.WARN}','2','disconnect','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1765','10372','{$LOAD.STATE.CRIT:"fault"}','4','fault','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1766','10372','{$LOAD.STATE.CRIT:"lvd"}','3','lvd','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1767','10372','{$LOAD.STATE.WARN:"disconnect"}','5','disconnect','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1768','10372','{$LOAD.STATE.WARN:"lvdWarning"}','2','lvdWarning','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1769','10372','{$LOAD.STATE.WARN:"override"}','7','override','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1770','10372','{$VOLTAGE.MAX.CRIT}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1771','10372','{$VOLTAGE.MAX.WARN}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1772','10372','{$VOLTAGE.MIN.CRIT}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1773','10372','{$VOLTAGE.MIN.WARN}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1774','10373','{$BATTERY.TEMP.MAX.CRIT}','60','Battery high temperature critical value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1775','10373','{$BATTERY.TEMP.MAX.WARN}','45','Battery high temperature warning value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1776','10373','{$BATTERY.TEMP.MIN.CRIT}','-20','Battery low temperature critical value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1777','10373','{$BATTERY.TEMP.MIN.WARN}','0','Battery low temperature warning value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1778','10373','{$CHARGE.STATE.CRIT}','4','fault','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1779','10373','{$CHARGE.STATE.WARN}','2','disconnect','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1780','10373','{$LOAD.STATE.CRIT:"fault"}','4','fault','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1781','10373','{$LOAD.STATE.CRIT:"lvd"}','3','lvd','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1782','10373','{$LOAD.STATE.WARN:"disconnect"}','5','disconnect','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1783','10373','{$LOAD.STATE.WARN:"lvdWarning"}','2','lvdWarning','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1784','10373','{$LOAD.STATE.WARN:"override"}','7','override','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1785','10373','{$VOLTAGE.MAX.CRIT}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1786','10373','{$VOLTAGE.MAX.WARN}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1787','10373','{$VOLTAGE.MIN.CRIT}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1788','10373','{$VOLTAGE.MIN.WARN}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1789','10374','{$BATTERY.TEMP.MAX.CRIT}','60','Battery high temperature critical value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1790','10374','{$BATTERY.TEMP.MAX.WARN}','45','Battery high temperature warning value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1791','10374','{$BATTERY.TEMP.MIN.CRIT}','-20','Battery low temperature critical value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1792','10374','{$BATTERY.TEMP.MIN.WARN}','0','Battery low temperature warning value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1793','10374','{$CHARGE.STATE.CRIT}','4','fault','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1794','10374','{$CHARGE.STATE.WARN}','2','disconnect','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1795','10374','{$LOAD.STATE.CRIT:"fault"}','4','fault','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1796','10374','{$LOAD.STATE.CRIT:"lvd"}','3','lvd','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1797','10374','{$LOAD.STATE.WARN:"disconnect"}','5','disconnect','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1798','10374','{$LOAD.STATE.WARN:"lvdWarning"}','2','lvdWarning','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1799','10374','{$LOAD.STATE.WARN:"override"}','7','override','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1800','10374','{$VOLTAGE.MAX.CRIT}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1801','10374','{$VOLTAGE.MAX.WARN}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1802','10374','{$VOLTAGE.MIN.CRIT}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1803','10374','{$VOLTAGE.MIN.WARN}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1804','10375','{$BATTERY.TEMP.MAX.CRIT}','60','Battery high temperature critical value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1805','10375','{$BATTERY.TEMP.MAX.WARN}','45','Battery high temperature warning value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1806','10375','{$BATTERY.TEMP.MIN.CRIT}','-20','Battery low temperature critical value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1807','10375','{$BATTERY.TEMP.MIN.WARN}','0','Battery low temperature warning value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1808','10375','{$CHARGE.STATE.CRIT}','4','fault','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1809','10375','{$CHARGE.STATE.WARN}','2','disconnect','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1810','10375','{$LOAD.STATE.CRIT:"fault"}','4','fault','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1811','10375','{$LOAD.STATE.CRIT:"lvd"}','3','lvd','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1812','10375','{$LOAD.STATE.WARN:"disconnect"}','5','disconnect','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1813','10375','{$LOAD.STATE.WARN:"lvdWarning"}','2','lvdWarning','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1814','10375','{$LOAD.STATE.WARN:"override"}','7','override','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1815','10375','{$VOLTAGE.MAX.CRIT}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1816','10375','{$VOLTAGE.MAX.WARN}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1817','10375','{$VOLTAGE.MIN.CRIT}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1818','10375','{$VOLTAGE.MIN.WARN}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1819','10376','{$BATTERY.TEMP.MAX.CRIT}','60','Battery high temperature critical value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1820','10376','{$BATTERY.TEMP.MAX.WARN}','45','Battery high temperature warning value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1821','10376','{$BATTERY.TEMP.MIN.CRIT}','-20','Battery low temperature critical value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1822','10376','{$BATTERY.TEMP.MIN.WARN}','0','Battery low temperature warning value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1823','10376','{$CHARGE.STATE.CRIT}','4','fault','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1824','10376','{$CHARGE.STATE.WARN}','2','disconnect','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1825','10376','{$LOAD.STATE.CRIT:"fault"}','4','fault','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1826','10376','{$LOAD.STATE.CRIT:"lvd"}','3','lvd','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1827','10376','{$LOAD.STATE.WARN:"disconnect"}','5','disconnect','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1828','10376','{$LOAD.STATE.WARN:"lvdWarning"}','2','lvdWarning','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1829','10376','{$LOAD.STATE.WARN:"override"}','7','override','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1830','10376','{$VOLTAGE.MAX.CRIT}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1831','10376','{$VOLTAGE.MAX.WARN}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1832','10376','{$VOLTAGE.MIN.CRIT}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1833','10376','{$VOLTAGE.MIN.WARN}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1834','10377','{$BATTERY.TEMP.MAX.CRIT}','60','Battery high temperature critical value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1835','10377','{$BATTERY.TEMP.MAX.WARN}','45','Battery high temperature warning value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1836','10377','{$BATTERY.TEMP.MIN.CRIT}','-20','Battery low temperature critical value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1837','10377','{$BATTERY.TEMP.MIN.WARN}','0','Battery low temperature warning value','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1838','10377','{$CHARGE.STATE.CRIT}','4','fault','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1839','10377','{$CHARGE.STATE.WARN}','2','disconnect','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1840','10377','{$LOAD.STATE.CRIT:"fault"}','4','fault','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1841','10377','{$LOAD.STATE.CRIT:"lvd"}','3','lvd','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1842','10377','{$LOAD.STATE.WARN:"disconnect"}','5','disconnect','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1843','10377','{$LOAD.STATE.WARN:"lvdWarning"}','2','lvdWarning','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1844','10377','{$LOAD.STATE.WARN:"override"}','7','override','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1845','10377','{$VOLTAGE.MAX.CRIT}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1846','10377','{$VOLTAGE.MAX.WARN}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1847','10377','{$VOLTAGE.MIN.CRIT}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1848','10377','{$VOLTAGE.MIN.WARN}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1849','10289','{$VFS.DEV.READ.AWAIT.WARN}','0.02','Disk read average response time (in s) before the trigger would fire.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1850','10289','{$VFS.DEV.WRITE.AWAIT.WARN}','0.02','Disk write average response time (in s) before the trigger would fire.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1851','10349','{$VFS.DEV.READ.AWAIT.WARN}','0.02','Disk read average response time (in s) before the trigger would fire.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1852','10349','{$VFS.DEV.WRITE.AWAIT.WARN}','0.02','Disk write average response time (in s) before the trigger would fire.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1853','10378','{$CPU.UTIL.CRIT}','90','The critical threshold of the CPU utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1854','10378','{$FAS3220.FS.AVAIL.MIN.CRIT}','10G','Minimum available space on the disk. Can be used with {#FSNAME} as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1855','10378','{$FAS3220.FS.NAME.MATCHES}','.*','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1856','10378','{$FAS3220.FS.NAME.NOT_MATCHES}','snapshot','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1857','10378','{$FAS3220.FS.PUSED.MAX.CRIT}','90','Maximum percentage of disk used. Can be used with {#FSNAME} as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1858','10378','{$FAS3220.FS.TIME}','10m','The time during which disk usage may exceed the threshold. Can be used with {#FSNAME} as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1859','10378','{$FAS3220.FS.TYPE.MATCHES}','.*','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.\r\nValue should be integer:\r\n 2 - flexibleVolume,\r\n 3 - aggregate,\r\n 4 - stripedAggregate,\r\n 5 - stripedVolume.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1860','10378','{$FAS3220.FS.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.\r\nValue should be integer:\r\n 2 - flexibleVolume,\r\n 3 - aggregate,\r\n 4 - stripedAggregate,\r\n 5 - stripedVolume.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1861','10378','{$FAS3220.FS.USE.PCT}','1','Macro define what threshold will be used for disk space trigger:\r\n 0 - use Bytes ({$FAS3220.FS.AVAIL.MIN.CRIT})\r\n 1 - use percents ({$FAS3220.FS.PUSED.MAX.CRIT})\r\nCan be used with {#FSNAME} as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1862','10378','{$FAS3220.NET.PORT.NAME.MATCHES}','.*','This macro is used in net ports discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1863','10378','{$FAS3220.NET.PORT.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in net ports discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1864','10378','{$FAS3220.NET.PORT.ROLE.MATCHES}','.*','This macro is used in net ports discovery. Can be overridden on the host or linked template level.\r\n{#ROLE} is integer. Possible values:\r\n 0 - undef\r\n 1 - cluster\r\n 2 - data\r\n 3 - node-mgmt\r\n 4 - intercluster\r\n 5 - cluster-mgmt','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1865','10378','{$FAS3220.NET.PORT.ROLE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in net ports discovery. Can be overridden on the host or linked template level.\r\n{#ROLE} is integer. Possible values:\r\n 0 - undef\r\n 1 - cluster\r\n 2 - data\r\n 3 - node-mgmt\r\n 4 - intercluster\r\n 5 - cluster-mgmt','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1866','10378','{$FAS3220.NET.PORT.TYPE.MATCHES}','.*','This macro is used in net ports discovery. Can be overridden on the host or linked template level.\r\n{#TYPE} is integer. Possible values: physical, if-group, vlan, undef.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1867','10378','{$FAS3220.NET.PORT.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in net ports discovery. Can be overridden on the host or linked template level.\r\n{#TYPE} is integer. Possible values: physical, if-group, vlan, undef.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1868','10378','{$IF.ERRORS.WARN}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1869','10378','{$IF.UTIL.MAX}','95','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1870','10379','{$JENKINS.API.KEY}','','API key to access Metrics Servlet','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1871','10379','{$JENKINS.API.TOKEN}','','API token for HTTP BASIC authentication.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1872','10379','{$JENKINS.FILE_DESCRIPTORS.MAX.WARN}','85','Maximum percentage of file descriptors usage alert threshold (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1873','10379','{$JENKINS.JOB.HEALTH.SCORE.MIN.WARN}','50','Minimum job\'s health score (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1874','10379','{$JENKINS.PING.REPLY}','pong','Expected reply to the ping.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1875','10379','{$JENKINS.URL}','','Jenkins URL in the format `://:`','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1876','10379','{$JENKINS.USER}','zabbix','Username for HTTP BASIC authentication','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1877','10380','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1878','10380','{$HIKVISION_ISAPI_PORT}','80','ISAPI port on device','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1879','10380','{$HIKVISION_MAIN_CHANNEL_ID}','101','Main video stream ID','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1880','10380','{$HIKVISION_STREAM_HEIGHT}','1080','Main video stream image height','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1881','10380','{$HIKVISION_STREAM_WIDTH}','1920','Main video stream image width','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1882','10380','{$MEMORY.UTIL.MAX}','95','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1883','10380','{$PASSWORD}','','','1');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1884','10380','{$USER}','admin','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1885','10381','{$IGNITE.CHECKPOINT.PUSED.MAX.HIGH}','80','The maximum percent of checkpoint buffer utilization for high trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1886','10381','{$IGNITE.CHECKPOINT.PUSED.MAX.WARN}','66','The maximum percent of checkpoint buffer utilization for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1887','10381','{$IGNITE.DATA.REGION.PUSED.MAX.HIGH}','90','The maximum percent of data region utilization for high trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1888','10381','{$IGNITE.DATA.REGION.PUSED.MAX.WARN}','80','The maximum percent of data region utilization for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1889','10381','{$IGNITE.JOBS.QUEUE.MAX.WARN}','10','The maximum number of queued jobs for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1890','10381','{$IGNITE.LLD.FILTER.CACHE.MATCHES}','.*','Filter of discoverable cache groups.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1891','10381','{$IGNITE.LLD.FILTER.CACHE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered cache groups.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1892','10381','{$IGNITE.LLD.FILTER.DATA.REGION.MATCHES}','.*','Filter of discoverable data regions.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1893','10381','{$IGNITE.LLD.FILTER.DATA.REGION.NOT_MATCHES}','^(sysMemPlc|TxLog)$','Filter to exclude discovered data regions.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1894','10381','{$IGNITE.LLD.FILTER.THREAD.POOL.MATCHES}','.*','Filter of discoverable thread pools.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1895','10381','{$IGNITE.LLD.FILTER.THREAD.POOL.NOT_MATCHES}','^(GridCallbackExecutor|GridRebalanceStripedExecutor|GridDataStreamExecutor|StripedExecutor)$','Filter to exclude discovered thread pools.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1896','10381','{$IGNITE.PASSWORD}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1897','10381','{$IGNITE.PME.DURATION.MAX.HIGH}','60000','The maximum PME duration in ms for high trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1898','10381','{$IGNITE.PME.DURATION.MAX.WARN}','10000','The maximum PME duration in ms for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1899','10381','{$IGNITE.THREAD.QUEUE.MAX.WARN}','1000','Threshold for thread pool queue size. Can be used with thread pool name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1900','10381','{$IGNITE.THREADS.COUNT.MAX.WARN}','1000','The maximum number of running threads for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1901','10381','{$IGNITE.USER}','zabbix','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1902','10382','{$SHAREPOINT.GET_INTERVAL}','1m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1903','10382','{$SHAREPOINT.LLD.FILTER.FULL_PATH.MATCHES}','^/','Filter of discoverable dictionaries by full path.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1904','10382','{$SHAREPOINT.LLD.FILTER.FULL_PATH.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered dictionaries by full path.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1905','10382','{$SHAREPOINT.LLD.FILTER.NAME.MATCHES}','.*','Filter of discoverable dictionaries by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1906','10382','{$SHAREPOINT.LLD.FILTER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered dictionaries by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1907','10382','{$SHAREPOINT.LLD.FILTER.TYPE.MATCHES}','FOLDER','Filter of discoverable types.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1908','10382','{$SHAREPOINT.LLD.FILTER.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered types.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1909','10382','{$SHAREPOINT.LLD_INTERVAL}','3h','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1910','10382','{$SHAREPOINT.MAX_HEALT_SCORE}','5','Must be in the range from 0 to 10\r\nin details: https://docs.microsoft.com/en-us/openspecs/sharepoint_protocols/ms-wsshp/c60ddeb6-4113-4a73-9e97-26b5c3907d33','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1911','10382','{$SHAREPOINT.PASSWORD}','','','1');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1912','10382','{$SHAREPOINT.ROOT}','/Shared Documents','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1913','10382','{$SHAREPOINT.URL}','','Portal page URL. For example http://sharepoint.companyname.local/','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1914','10382','{$SHAREPOINT.USER}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1916','10383','{$SMART.DISK.NAME.MATCHES}','^.*$','This macro is used in the filter of attribute and disk discoveries. It can be overridden on the host or linked on the template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1917','10383','{$SMART.TEMPERATURE.MAX.CRIT}','65','This macro is used for trigger expression. It can be overridden on the host or linked on the template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1918','10383','{$SMART.TEMPERATURE.MAX.WARN}','50','This macro is used for trigger expression. It can be overridden on the host or linked on the template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1920','10384','{$SMART.DISK.NAME.MATCHES}','^.*$','This macro is used in the filter of attribute and disk discoveries. It can be overridden on the host or linked on the template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1921','10384','{$SMART.TEMPERATURE.MAX.CRIT}','65','This macro is used for trigger expression. It can be overridden on the host or linked on the template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1922','10384','{$SMART.TEMPERATURE.MAX.WARN}','50','This macro is used for trigger expression. It can be overridden on the host or linked on the template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1923','10385','{$CPU.UTIL.CRIT}','90','The critical threshold of the CPU utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1924','10385','{$HUAWEI.5300.DISK.TEMP.MAX.TIME}','5m','The time during which temperature of disk may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1925','10385','{$HUAWEI.5300.DISK.TEMP.MAX.WARN}','45','Maximum temperature of disk. Can be used with {#MODEL} as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1926','10385','{$HUAWEI.5300.LUN.IO.TIME.MAX.TIME}','5m','The time during which average I/O response time of LUN may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1927','10385','{$HUAWEI.5300.LUN.IO.TIME.MAX.WARN}','100','Maximum average I/O response time of LUN in milliseconds.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1928','10385','{$HUAWEI.5300.MEM.MAX.TIME}','5m','The time during which memory usage may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1929','10385','{$HUAWEI.5300.MEM.MAX.WARN}','90','Maximum percentage of memory used','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1930','10385','{$HUAWEI.5300.NODE.IO.DELAY.MAX.TIME}','5m','The time during which average I/O latency of node may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1931','10385','{$HUAWEI.5300.NODE.IO.DELAY.MAX.WARN}','20','Maximum average I/O latency of node in milliseconds.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1932','10385','{$HUAWEI.5300.POOL.CAPACITY.THRESH.TIME}','5m','The time during which free capacity may exceed the {#THRESHOLD} from hwInfoStoragePoolFullThreshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1933','10385','{$HUAWEI.5300.TEMP.MAX.TIME}','3m','The time during which temperature of enclosure may exceed the threshold.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1934','10385','{$HUAWEI.5300.TEMP.MAX.WARN}','35','Maximum temperature of enclosure','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1935','10386','{$MONGODB.CONNS.PCT.USED.MAX.WARN}','80','Maximum percentage of used connections','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1936','10386','{$MONGODB.CONNSTRING}','tcp://localhost:27017','Connection string in the URI format (password is not used). This param overwrites a value configured in the "Server" option of the configuration file (if it\'s set), otherwise, the plugin\'s default value is used: "tcp://localhost:27017"','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1937','10386','{$MONGODB.CURSOR.OPEN.MAX.WARN}','10000','Maximum number of open cursors','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1938','10386','{$MONGODB.CURSOR.TIMEOUT.MAX.WARN}','1','Maximum number of cursors timing out per second','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1939','10386','{$MONGODB.LLD.FILTER.COLLECTION.MATCHES}','.*','Filter of discoverable collections','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1940','10386','{$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered collections','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1941','10386','{$MONGODB.LLD.FILTER.DB.MATCHES}','.*','Filter of discoverable databases','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1942','10386','{$MONGODB.LLD.FILTER.DB.NOT_MATCHES}','(admin|config|local)','Filter to exclude discovered databases','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1943','10386','{$MONGODB.PASSWORD}','','MongoDB user password','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1944','10386','{$MONGODB.REPL.LAG.MAX.WARN}','10s','Maximum replication lag in seconds','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1945','10386','{$MONGODB.USER}','','MongoDB username','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1946','10386','{$MONGODB.WIRED_TIGER.TICKETS.AVAILABLE.MIN.WARN}','5','Minimum number of available WiredTiger read or write tickets remaining','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1947','10387','{$MONGODB.CONNS.AVAILABLE.MIN.WARN}','1000','Minimum number of available connections','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1948','10387','{$MONGODB.CONNSTRING}','tcp://localhost:27017','Connection string in the URI format (password is not used). This param overwrites a value configured in the "Server" option of the configuration file (if it\'s set), otherwise, the plugin\'s default value is used: "tcp://localhost:27017"','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1949','10387','{$MONGODB.CURSOR.OPEN.MAX.WARN}','10000','Maximum number of open cursors','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1950','10387','{$MONGODB.CURSOR.TIMEOUT.MAX.WARN}','1','Maximum number of cursors timing out per second','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1951','10387','{$MONGODB.LLD.FILTER.COLLECTION.MATCHES}','.*','Filter of discoverable collections','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1952','10387','{$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered collections','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1953','10387','{$MONGODB.LLD.FILTER.DB.MATCHES}','.*','Filter of discoverable databases','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1954','10387','{$MONGODB.LLD.FILTER.DB.NOT_MATCHES}','(admin|config|local)','Filter to exclude discovered databases','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1955','10387','{$MONGODB.PASSWORD}','','MongoDB user password','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1956','10387','{$MONGODB.USER}','','MongoDB username','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1957','10388','{$MONGODB.CONNSTRING}','{#MONGOD_URI}','Connection string in the URI format (password is not used).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1958','10389','{$MONGODB.CONNSTRING}','{#MONGOD_URI}','Connection string in the URI format (password is not used).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1959','10390','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1960','10390','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1961','10390','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1962','10390','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1963','10390','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1964','10390','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1965','10390','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1966','10390','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1967','10390','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1968','10390','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1969','10390','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1970','10390','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1971','10390','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1972','10390','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1973','10390','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1974','10390','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1975','10390','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1976','10390','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1977','10390','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1978','10390','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1979','10390','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1980','10390','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1981','10390','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1982','10391','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1983','10391','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1984','10391','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1985','10391','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1986','10391','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1987','10391','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1988','10391','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1989','10391','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1990','10391','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1991','10391','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1992','10391','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1993','10391','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1994','10391','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1995','10391','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1996','10391','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1997','10391','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1998','10391','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('1999','10391','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2000','10391','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2001','10391','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2002','10391','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2003','10391','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2004','10391','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2005','10392','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2006','10392','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2007','10392','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2008','10392','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2009','10392','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2010','10392','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2011','10392','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2012','10392','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2013','10392','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2014','10392','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2015','10392','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2016','10392','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2017','10392','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2018','10392','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2019','10392','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2020','10392','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2021','10392','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2022','10392','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2023','10392','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2024','10392','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2025','10392','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2026','10392','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2027','10392','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2028','10393','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2029','10393','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2030','10393','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2031','10393','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2032','10393','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2033','10393','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2034','10393','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2035','10393','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2036','10393','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2037','10393','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2038','10393','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2039','10393','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2040','10393','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2041','10393','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2042','10393','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2043','10393','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2044','10393','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2045','10393','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2046','10393','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2047','10393','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2048','10393','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2049','10393','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2050','10393','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2051','10394','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2052','10394','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2053','10394','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2054','10394','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2055','10394','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2056','10394','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2057','10394','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2058','10394','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2059','10394','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2060','10394','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2061','10394','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2062','10394','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2063','10394','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2064','10394','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2065','10394','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2066','10394','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2067','10394','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2068','10394','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2069','10394','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2070','10394','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2071','10394','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2072','10394','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2073','10394','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2074','10251','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2076','10251','{$ICMP.LOSS.WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2077','10251','{$ICMP.RESPONSE_TIME.WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2078','10251','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2079','10251','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2080','10251','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2081','10251','{$MEMORY.NAME.MATCHES}','.*','This macro is used in memory discovery. Can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2082','10251','{$MEMORY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in memory discovery. Can be overridden on the host level if you need to filter out results.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2083','10251','{$MEMORY.TYPE.MATCHES}','.*(\\.2|hrStorageRam)$','This macro is used in memory discovery. Can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2084','10251','{$MEMORY.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in memory discovery. Can be overridden on the host level if you need to filter out results.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2085','10251','{$MEMORY.UTIL.MAX}','90','The warning threshold of the "Physical memory: Memory utilization" item.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2086','10251','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2087','10251','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2088','10251','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2089','10251','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2090','10251','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2091','10251','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2092','10251','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2093','10251','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2094','10251','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2095','10251','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2096','10251','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2097','10251','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2098','10251','{$PSU.STATUS.CRIT}','2','The critical value of the PSU sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2099','10251','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2100','10251','{$TEMP.MAX.CRIT}','60','The temperature maximum critical value for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2101','10251','{$TEMP.MAX.WARN}','50','The temperature maximum warning value for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2102','10251','{$TEMP.MIN.CRIT}','5','The temperature minimum critical value for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2103','10251','{$TEMP.STATUS.WARN}','3','The critical value of the TEMP sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2104','10251','{$VFS.FS.FSNAME.MATCHES}','.+','This macro is used in filesystems discovery. Can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2105','10251','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/$|/run|/proc|.+/shm$)','This macro is used in filesystems discovery. Can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2106','10251','{$VFS.FS.FSTYPE.MATCHES}','.*(\\.4|\\.9|hrStorageFixedDisk|hrStorageFlashMemory)$','This macro is used in filesystems discovery. Can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2107','10251','{$VFS.FS.FSTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in filesystems discovery. Can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2108','10251','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2109','10251','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2110','10395','{$BATTERY.TEMP.MAX.WARN}','55','Maximum battery temperature for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2113','10395','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2114','10395','{$TIME.PERIOD}','15m','Time period for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2115','10395','{$UPS.INPUT_FREQ.MAX.WARN}','50.3','Maximum input frequency for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2116','10395','{$UPS.INPUT_FREQ.MIN.WARN}','49.7','Minimum input frequency for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2117','10395','{$UPS.INPUT_VOLT.MAX.WARN}','243','Maximum input voltage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2118','10395','{$UPS.INPUT_VOLT.MIN.WARN}','197','Minimum input voltage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2119','10395','{$UPS.OUTPUT.MAX.WARN}','80','Maximum output load in % for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2120','10396','{$HTTP.AGENT.TIMEOUT}','3s','The HTTP agent timeout to wait for a response from AFF700.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2121','10396','{$PASSWORD}','','AFF700 user password.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2122','10396','{$URL}','','AFF700 cluster URL address.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2123','10396','{$USERNAME}','','AFF700 user name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2124','10327','{$MSSQL.BACKUP_DIFF.CRIT}','6d','The maximum days without a differential backup - for the High trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2125','10327','{$MSSQL.BACKUP_DIFF.WARN}','3d','The maximum days without a differential backup - for the Warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2126','10327','{$MSSQL.BACKUP_DURATION.WARN}','1h','The maximum job duration - for the Warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2127','10327','{$MSSQL.BACKUP_FULL.CRIT}','10d','The maximum days without a full backup - for the High trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2128','10327','{$MSSQL.BACKUP_FULL.WARN}','9d','The maximum days without a full backup - for the Warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2129','10327','{$MSSQL.BACKUP_LOG.CRIT}','8h','The maximum days without a log backup - for the High trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2130','10327','{$MSSQL.BACKUP_LOG.WARN}','4h','The maximum days without a log backup - for the Warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2131','10327','{$MSSQL.JOB.MATCHES}','.*','This macro is used in job discovery. It can be overridden on a host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2132','10327','{$MSSQL.JOB.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in job discovery. It can be overridden on a host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2133','10397','{$PD.MISS_REGION.MAX.WARN}','100','Maximum number of missed regions','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2134','10397','{$PD.PORT}','2379','The port of PD server metrics web endpoint','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2135','10397','{$PD.STORAGE_USAGE.MAX.WARN}','80','Maximum percentage of cluster space used','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2136','10397','{$PD.URL}','localhost','PD server URL','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2137','10398','{$TIDB.DDL.WAITING.MAX.WARN}','5','Maximum number of DDL tasks that are waiting','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2138','10398','{$TIDB.GC_ACTIONS.ERRORS.MAX.WARN}','1','Maximum number of GC-related operations failures','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2139','10398','{$TIDB.HEAP.USAGE.MAX.WARN}','10G','Maximum heap memory used','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2140','10398','{$TIDB.MONITOR_KEEP_ALIVE.MAX.WARN}','10','Minimum number of keep alive operations','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2141','10398','{$TIDB.OPEN.FDS.MAX.WARN}','90','Maximum percentage of used file descriptors','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2142','10398','{$TIDB.PORT}','10080','The port of TiDB server metrics web endpoint','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2143','10398','{$TIDB.REGION_ERROR.MAX.WARN}','50','Maximum number of region related errors','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2144','10398','{$TIDB.SCHEMA_LEASE_ERRORS.MAX.WARN}','0','Maximum number of schema lease errors','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2145','10398','{$TIDB.SCHEMA_LOAD_ERRORS.MAX.WARN}','1','Maximum number of load schema errors','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2146','10398','{$TIDB.TIME_JUMP_BACK.MAX.WARN}','1','Maximum number of times that the operating system rewinds every second','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2147','10398','{$TIDB.URL}','localhost','TiDB server URL','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2148','10399','{$TIKV.COPOCESSOR.ERRORS.MAX.WARN}','1','Maximum number of coprocessor request errors','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2149','10399','{$TIKV.PENDING_COMMANDS.MAX.WARN}','1','Maximum number of pending commands','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2150','10399','{$TIKV.PENDING_TASKS.MAX.WARN}','1','Maximum number of tasks currently running by the worker or pending','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2151','10399','{$TIKV.PORT}','20180','The port of TiKV server metrics web endpoint','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2152','10399','{$TIKV.STORE.ERRORS.MAX.WARN}','1','Maximum number of failure messages','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2153','10399','{$TIKV.URL}','localhost','TiKV server URL','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2154','10400','{$BATTERY.CAPACITY.MIN.WARN}','50','Minimum battery capacity percentage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2155','10400','{$BATTERY.TEMP.MAX.WARN}','55','Maximum battery temperature for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2156','10400','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2157','10400','{$TIME.PERIOD}','15m','Time period for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2158','10400','{$UPS.INPUT_FREQ.MAX.WARN}','50.3','Maximum input frequency for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2159','10400','{$UPS.INPUT_FREQ.MIN.WARN}','49.7','Minimum input frequency for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2160','10400','{$UPS.INPUT_VOLT.MAX.WARN}','243','Maximum input voltage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2161','10400','{$UPS.INPUT_VOLT.MIN.WARN}','197','Minimum input voltage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2162','10400','{$UPS.OUTPUT.MAX.WARN}','80','Maximum output load in % for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2163','10401','{$BATTERY.CAPACITY.MIN.WARN}','50','Minimum battery capacity percentage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2164','10401','{$BATTERY.TEMP.MAX.WARN}','55','Maximum battery temperature for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2165','10401','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2166','10401','{$TIME.PERIOD}','15m','Time period for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2167','10401','{$UPS.INPUT_FREQ.MAX.WARN}','50.3','Maximum input frequency for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2168','10401','{$UPS.INPUT_FREQ.MIN.WARN}','49.7','Minimum input frequency for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2169','10401','{$UPS.INPUT_VOLT.MAX.WARN}','243','Maximum input voltage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2170','10401','{$UPS.INPUT_VOLT.MIN.WARN}','197','Minimum input voltage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2171','10401','{$UPS.OUTPUT.MAX.WARN}','80','Maximum output load in % for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2172','10402','{$BATTERY.CAPACITY.MIN.WARN}','50','Minimum battery capacity percentage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2173','10402','{$BATTERY.TEMP.MAX.WARN}','55','Maximum battery temperature for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2174','10402','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2175','10402','{$TIME.PERIOD}','15m','Time period for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2176','10402','{$UPS.INPUT_FREQ.MAX.WARN}','50.3','Maximum input frequency for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2177','10402','{$UPS.INPUT_FREQ.MIN.WARN}','49.7','Minimum input frequency for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2178','10402','{$UPS.INPUT_VOLT.MAX.WARN}','243','Maximum input voltage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2179','10402','{$UPS.INPUT_VOLT.MIN.WARN}','197','Minimum input voltage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2180','10402','{$UPS.OUTPUT.MAX.WARN}','80','Maximum output load in % for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2181','10403','{$BATTERY.CAPACITY.MIN.WARN}','50','Minimum battery capacity percentage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2182','10403','{$BATTERY.TEMP.MAX.WARN}','55','Maximum battery temperature for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2183','10403','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2184','10403','{$TIME.PERIOD}','15m','Time period for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2185','10403','{$UPS.INPUT_FREQ.MAX.WARN}','50.3','Maximum input frequency for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2186','10403','{$UPS.INPUT_FREQ.MIN.WARN}','49.7','Minimum input frequency for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2187','10403','{$UPS.INPUT_VOLT.MAX.WARN}','243','Maximum input voltage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2188','10403','{$UPS.INPUT_VOLT.MIN.WARN}','197','Minimum input voltage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2189','10403','{$UPS.OUTPUT.MAX.WARN}','80','Maximum output load in % for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2190','10404','{$BATTERY.CAPACITY.MIN.WARN}','50','Minimum battery capacity percentage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2191','10404','{$BATTERY.TEMP.MAX.WARN}','55','Maximum battery temperature for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2192','10404','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2193','10404','{$TIME.PERIOD}','15m','Time period for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2194','10404','{$UPS.INPUT_FREQ.MAX.WARN}','50.3','Maximum input frequency for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2195','10404','{$UPS.INPUT_FREQ.MIN.WARN}','49.7','Minimum input frequency for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2196','10404','{$UPS.INPUT_VOLT.MAX.WARN}','243','Maximum input voltage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2197','10404','{$UPS.INPUT_VOLT.MIN.WARN}','197','Minimum input voltage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2198','10404','{$UPS.OUTPUT.MAX.WARN}','80','Maximum output load in % for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2208','10406','{$BATTERY.CAPACITY.MIN.WARN}','50','Minimum battery capacity percentage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2209','10406','{$BATTERY.TEMP.MAX.WARN}','55','Maximum battery temperature for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2210','10406','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2211','10406','{$TIME.PERIOD}','15m','Time period for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2212','10406','{$UPS.INPUT_FREQ.MAX.WARN}','50.3','Maximum input frequency for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2213','10406','{$UPS.INPUT_FREQ.MIN.WARN}','49.7','Minimum input frequency for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2214','10406','{$UPS.INPUT_VOLT.MAX.WARN}','243','Maximum input voltage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2215','10406','{$UPS.INPUT_VOLT.MIN.WARN}','197','Minimum input voltage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2216','10406','{$UPS.OUTPUT.MAX.WARN}','80','Maximum output load in % for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2217','10395','{$BATTERY.CAPACITY.MIN.WARN}','50','Minimum battery capacity percentage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2218','10407','{$BATTERY.CAPACITY.MIN.WARN}','50','Minimum battery capacity percentage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2219','10407','{$BATTERY.TEMP.MAX.WARN}','55','Maximum battery temperature for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2220','10407','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2221','10407','{$TIME.PERIOD}','15m','Time period for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2222','10407','{$UPS.INPUT_FREQ.MAX.WARN}','50.3','Maximum input frequency for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2223','10407','{$UPS.INPUT_FREQ.MIN.WARN}','49.7','Minimum input frequency for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2224','10407','{$UPS.INPUT_VOLT.MAX.WARN}','243','Maximum input voltage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2225','10407','{$UPS.INPUT_VOLT.MIN.WARN}','197','Minimum input voltage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2226','10407','{$UPS.OUTPUT.MAX.WARN}','80','Maximum output load in % for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2227','10408','{$BATTERY.CAPACITY.MIN.WARN}','50','Minimum battery capacity percentage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2228','10408','{$BATTERY.TEMP.MAX.WARN}','55','Maximum battery temperature for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2229','10408','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2230','10408','{$TIME.PERIOD}','15m','Time period for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2231','10408','{$UPS.INPUT_FREQ.MAX.WARN}','50.3','Maximum input frequency for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2232','10408','{$UPS.INPUT_FREQ.MIN.WARN}','49.7','Minimum input frequency for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2233','10408','{$UPS.INPUT_VOLT.MAX.WARN}','243','Maximum input voltage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2234','10408','{$UPS.INPUT_VOLT.MIN.WARN}','197','Minimum input voltage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2235','10408','{$UPS.OUTPUT.MAX.WARN}','80','Maximum output load in % for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2236','10409','{$BATTERY.CAPACITY.MIN.WARN}','50','Minimum battery capacity percentage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2237','10409','{$BATTERY.TEMP.MAX.WARN}','55','Maximum battery temperature for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2238','10409','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2239','10409','{$TIME.PERIOD}','15m','Time period for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2240','10409','{$UPS.INPUT_FREQ.MAX.WARN}','50.3','Maximum input frequency for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2241','10409','{$UPS.INPUT_FREQ.MIN.WARN}','49.7','Minimum input frequency for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2242','10409','{$UPS.INPUT_VOLT.MAX.WARN}','243','Maximum input voltage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2243','10409','{$UPS.INPUT_VOLT.MIN.WARN}','197','Minimum input voltage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2244','10409','{$UPS.OUTPUT.MAX.WARN}','80','Maximum output load in % for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2245','10410','{$WILDFLY.DEPLOYMENT.MATCHES}','.*','Filter of discoverable deployments','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2246','10410','{$WILDFLY.DEPLOYMENT.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered deployments','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2247','10410','{$WILDFLY.JMX.PROTOCOL}','remote+http','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2248','10410','{$WILDFLY.PASSWORD}','zabbix','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2249','10410','{$WILDFLY.SERVER.MATCHES}','.*','Filter of discoverable servers','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2250','10410','{$WILDFLY.SERVER.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered servers','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2251','10410','{$WILDFLY.USER}','zabbix','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2252','10411','{$WILDFLY.CONN.USAGE.WARN.MAX}','80','The maximum connection usage percent for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2253','10411','{$WILDFLY.CONN.WAIT.MAX.WARN}','300','The maximum number of waiting connections for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2254','10411','{$WILDFLY.DEPLOYMENT.MATCHES}','.*','Filter of discoverable deployments','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2255','10411','{$WILDFLY.DEPLOYMENT.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered deployments','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2256','10411','{$WILDFLY.JMX.PROTOCOL}','remote+http','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2257','10411','{$WILDFLY.PASSWORD}','zabbix','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2258','10411','{$WILDFLY.USER}','zabbix','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2259','10412','{$BATTERY.CAPACITY.MIN.WARN}','50','Minimum battery capacity percentage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2260','10412','{$BATTERY.TEMP.MAX.WARN}','55','Maximum battery temperature for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2261','10412','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2262','10412','{$TIME.PERIOD}','15m','Time period for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2263','10412','{$UPS.INPUT_FREQ.MAX.WARN}','50.3','Maximum input frequency for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2264','10412','{$UPS.INPUT_FREQ.MIN.WARN}','49.7','Minimum input frequency for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2265','10412','{$UPS.INPUT_VOLT.MAX.WARN}','243','Maximum input voltage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2266','10412','{$UPS.INPUT_VOLT.MIN.WARN}','197','Minimum input voltage for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2267','10412','{$UPS.OUTPUT.MAX.WARN}','80','Maximum output load in % for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2268','10413','{$CERT.EXPIRY.WARN}','7','Number of days until the certificate expires.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2269','10413','{$CERT.WEBSITE.HOSTNAME}','','The website DNS name for the connection.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2270','10413','{$CERT.WEBSITE.IP}','','The website IP address for the connection.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2271','10413','{$CERT.WEBSITE.PORT}','443','The TLS/SSL port number of the website.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2272','10414','{$CLOUDFLARE.API.TOKEN}','','Your Cloudflare API Token.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2273','10414','{$CLOUDFLARE.API.URL}','https://api.cloudflare.com/client/v4','The URL of Cloudflare API endpoint.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2274','10414','{$CLOUDFLARE.CACHED_BANDWIDTH.MIN.WARN}','50','Minimum of cached bandwidth in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2275','10414','{$CLOUDFLARE.ERRORS.MAX.WARN}','30','Maximum responses with errors in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2276','10414','{$CLOUDFLARE.GET_DATA.TIMEOUT}','3s','Response timeout for Cloudflare API.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2277','10414','{$CLOUDFLARE.ZONE_ID}','','Your Cloudflare Site Zone ID.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2278','10415','{$NGINX.API.ENDPOINT}','','NGINX Plus API URL in the format `://://`','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2279','10415','{$NGINX.DROP_RATE.MAX.WARN}','1','The critical rate of the dropped connections for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2280','10415','{$NGINX.HTTP.UPSTREAM.4XX.MAX.WARN}','5','Maximum percentage of errors with status code 4xx (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2281','10415','{$NGINX.HTTP.UPSTREAM.5XX.MAX.WARN}','5','Maximum percentage of errors with status code 4xx (for trigger expression).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2282','10415','{$NGINX.LLD.FILTER.HTTP.LOCATION.ZONE.MATCHES}','.*','Filter of discoverable HTTP location zones','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2283','10415','{$NGINX.LLD.FILTER.HTTP.LOCATION.ZONE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered HTTP location zones','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2284','10415','{$NGINX.LLD.FILTER.HTTP.UPSTREAM.MATCHES}','.*','Filter of discoverable HTTP upstreams','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2285','10415','{$NGINX.LLD.FILTER.HTTP.UPSTREAM.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered HTTP upstreams','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2286','10415','{$NGINX.LLD.FILTER.HTTP.ZONE.MATCHES}','.*','Filter of discoverable HTTP server zones','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2287','10415','{$NGINX.LLD.FILTER.HTTP.ZONE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered HTTP server zones','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2288','10415','{$NGINX.LLD.FILTER.RESOLVER.MATCHES}','.*','Filter of discoverable Resolvers','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2289','10415','{$NGINX.LLD.FILTER.RESOLVER.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered Resolvers','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2290','10415','{$NGINX.LLD.FILTER.STREAM.UPSTREAM.MATCHES}','.*','Filter of discoverable Stream upstreams','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2291','10415','{$NGINX.LLD.FILTER.STREAM.UPSTREAM.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered Stream upstreams','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2292','10415','{$NGINX.LLD.FILTER.STREAM.ZONE.MATCHES}','.*','Filter of discoverable Stream server zones','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2293','10415','{$NGINX.LLD.FILTER.STREAM.ZONE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered Stream server zones','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2294','10416','{$SYSTEMD.ACTIVESTATE.SERVICE.MATCHES}','active','Filter of systemd service units by active state','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2295','10416','{$SYSTEMD.ACTIVESTATE.SERVICE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter of systemd service units by active state','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2296','10416','{$SYSTEMD.ACTIVESTATE.SOCKET.MATCHES}','active','Filter of systemd socket units by active state','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2297','10416','{$SYSTEMD.ACTIVESTATE.SOCKET.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter of systemd socket units by active state','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2298','10416','{$SYSTEMD.NAME.SERVICE.MATCHES}','.*','Filter of systemd service units by name','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2299','10416','{$SYSTEMD.NAME.SERVICE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter of systemd service units by name','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2300','10416','{$SYSTEMD.NAME.SOCKET.MATCHES}','.*','Filter of systemd socket units by name','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2301','10416','{$SYSTEMD.NAME.SOCKET.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter of systemd socket units by name','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2302','10416','{$SYSTEMD.UNITFILESTATE.SERVICE.MATCHES}','enabled','Filter of systemd service units by unit file state','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2303','10416','{$SYSTEMD.UNITFILESTATE.SERVICE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter of systemd service units by unit file state','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2304','10416','{$SYSTEMD.UNITFILESTATE.SOCKET.MATCHES}','enabled','Filter of systemd socket units by unit file state','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2305','10416','{$SYSTEMD.UNITFILESTATE.SOCKET.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter of systemd socket units by unit file state','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2306','10417','{$GRIDGAIN.CHECKPOINT.PUSED.MAX.HIGH}','80','The maximum percent of checkpoint buffer utilization for high trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2307','10417','{$GRIDGAIN.CHECKPOINT.PUSED.MAX.WARN}','66','The maximum percent of checkpoint buffer utilization for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2308','10417','{$GRIDGAIN.DATA.REGION.PUSED.MAX.HIGH}','90','The maximum percent of data region utilization for high trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2309','10417','{$GRIDGAIN.DATA.REGION.PUSED.MAX.WARN}','80','The maximum percent of data region utilization for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2310','10417','{$GRIDGAIN.JOBS.QUEUE.MAX.WARN}','10','The maximum number of queued jobs for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2311','10417','{$GRIDGAIN.LLD.FILTER.CACHE.MATCHES}','.*','Filter of discoverable cache groups.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2312','10417','{$GRIDGAIN.LLD.FILTER.CACHE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered cache groups.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2313','10417','{$GRIDGAIN.LLD.FILTER.DATA.REGION.MATCHES}','.*','Filter of discoverable data regions.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2314','10417','{$GRIDGAIN.LLD.FILTER.DATA.REGION.NOT_MATCHES}','^(sysMemPlc|TxLog)$','Filter to exclude discovered data regions.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2315','10417','{$GRIDGAIN.LLD.FILTER.THREAD.POOL.MATCHES}','.*','Filter of discoverable thread pools.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2316','10417','{$GRIDGAIN.LLD.FILTER.THREAD.POOL.NOT_MATCHES}','^(GridCallbackExecutor|GridRebalanceStripedExecutor|GridDataStreamExecutor|StripedExecutor)$','Filter to exclude discovered thread pools.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2317','10417','{$GRIDGAIN.PASSWORD}','','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2318','10417','{$GRIDGAIN.PME.DURATION.MAX.HIGH}','60000','The maximum PME duration in ms for high trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2319','10417','{$GRIDGAIN.PME.DURATION.MAX.WARN}','10000','The maximum PME duration in ms for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2320','10417','{$GRIDGAIN.THREAD.QUEUE.MAX.WARN}','1000','Threshold for thread pool queue size. Can be used with thread pool name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2321','10417','{$GRIDGAIN.THREADS.COUNT.MAX.WARN}','1000','The maximum number of running threads for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2322','10417','{$GRIDGAIN.USER}','zabbix','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2323','10418','{$CISCO.LLD.FILTER.IF.ADMIN.MATCHES}','1','Filter of discoverable interfaces by admin status.\r\n1 - Up\r\n2 - Down\r\n3 - Testing','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2324','10418','{$CISCO.LLD.FILTER.IF.ADMIN.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by admin status.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2325','10418','{$CISCO.LLD.FILTER.IF.CONTROL.MATCHES}','.*','Filter triggers by discoverable interface names.\r\nUsed in overrides. Triggers will only be created for interfaces whose names contain the value of the macro.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2326','10418','{$CISCO.LLD.FILTER.IF.DESC.MATCHES}','.*','Filter by discoverable interface description.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2327','10418','{$CISCO.LLD.FILTER.IF.DESC.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by description.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2328','10418','{$CISCO.LLD.FILTER.IF.NAME.MATCHES}','.*','Filter by discoverable interface names.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2329','10418','{$CISCO.LLD.FILTER.IF.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2330','10418','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2331','10418','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2332','10418','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2333','10419','{$BIGIP.CERT.MIN}','7','Minimum number of days before certificate expiration.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2334','10419','{$BIGIP.CPU.UTIL.WARN.MAX}','85','The warning threshold of the CPU utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2335','10419','{$BIGIP.CPU.UTIL.WARN.MIN}','65','The recovery threshold of the CPU utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2336','10419','{$BIGIP.FS.FREE.WARN.MAX}','20','The recovery threshold of the file system utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2337','10419','{$BIGIP.FS.FREE.WARN.MIN}','10','The warning threshold of the file system utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2338','10419','{$BIGIP.LLD.FILTER.PART.NAME.MATCHES}','.*','Filter of discoverable mount point names.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2339','10419','{$BIGIP.LLD.FILTER.PART.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by mount point names.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2340','10419','{$BIGIP.MEMORY.UTIL.WARN.MAX}','85','The warning threshold of the memory utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2341','10419','{$BIGIP.MEMORY.UTIL.WARN.MIN}','65','The recovery threshold of the memory utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2342','10419','{$BIGIP.SWAP.UTIL.WARN.MAX}','85','The warning threshold of the swap utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2343','10419','{$BIGIP.SWAP.UTIL.WARN.MIN}','65','The recovery threshold of the swap utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2344','10419','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2345','10420','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2346','10420','{$ZYXEL.ADSL.ATN.MAX}','40','Type the maximum signal attenuation','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2347','10420','{$ZYXEL.ADSL.SNR.MIN}','8','Type the minimum signal to noise margin (0-31 dB)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2348','10420','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2349','10420','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}','.*','Filter of discoverable link types.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2350','10420','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}','2','Filter to exclude discovered by link types.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2351','10421','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2352','10421','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2353','10421','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2354','10421','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2355','10421','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}','1|2','Filter of discoverable link types.\r\n0 - Down link\r\n1 - Cooper link\r\n2 - Fiber link','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2356','10421','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by link types.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2357','10421','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}','.*','Filter by discoverable interface names.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2358','10421','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2359','10421','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}','1|2','Filter of discoverable status.\r\n0 - OK with DDM\r\n1 - OK without DDM\r\n2 - nonoperational','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2360','10421','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by status.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2361','10421','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}','.*','Filter by discoverable SFP modules name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2362','10421','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}','N/A','Filter to exclude discovered SFP modules by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2363','10421','{$ZYXEL.LLD.SFP.UPDATE}','10m','Receiving data from the SFP module is slow, we do not recommend setting the interval less than 10 minutes.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2364','10422','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2365','10422','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2366','10422','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2367','10422','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}','1|2','Filter of discoverable link types.\r\n0 - Down link\r\n1 - Cooper link\r\n2 - Fiber link','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2368','10422','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by link types.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2369','10422','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}','.*','Filter by discoverable interface names.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2370','10422','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2371','10423','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2372','10423','{$ZYXEL.ADSL.ATN.MAX}','40','Type the maximum signal attenuation','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2373','10423','{$ZYXEL.ADSL.SNR.MIN}','8','Type the minimum signal to noise margin (0-31 dB)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2374','10423','{$ZYXEL.LLD.FILTER.SLOT.STATUS.NOT_MATCHES}','1','Filter to exclude discovered slots by status.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2375','10423','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2376','10423','{$ZYXEL.LLD.FILTER.IF.DESC.MATCHES}','.*','Filter by discoverable interface names.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2377','10423','{$ZYXEL.LLD.FILTER.IF.DESC.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2378','10423','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}','.*','Filter of discoverable link types.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2379','10423','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}','2','Filter to exclude discovered by link types.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2380','10423','{$ZYXEL.LLD.FILTER.SLOT.STATUS.MATCHES}','.*','Filter by discoverable slot status.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2381','10424','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2382','10424','{$ZYXEL.ADSL.ATN.MAX}','40','Type the maximum signal attenuation','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2383','10424','{$ZYXEL.ADSL.SNR.MIN}','8','Type the minimum signal to noise margin (0-31 dB)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2384','10424','{$ZYXEL.LLD.FILTER.SLOT.STATUS.NOT_MATCHES}','1','Filter to exclude discovered slots by status.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2385','10424','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2386','10424','{$ZYXEL.LLD.FILTER.IF.DESC.MATCHES}','.*','Filter by discoverable interface names.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2387','10424','{$ZYXEL.LLD.FILTER.IF.DESC.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2388','10424','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}','.*','Filter of discoverable link types.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2389','10424','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}','2','Filter to exclude discovered by link types.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2390','10424','{$ZYXEL.LLD.FILTER.SLOT.STATUS.MATCHES}','.*','Filter by discoverable slot status.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2391','10425','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2392','10425','{$ZYXEL.ADSL.ATN.MAX}','40','Type the maximum signal attenuation','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2393','10425','{$ZYXEL.ADSL.SNR.MIN}','8','Type the minimum signal to noise margin (0-31 dB)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2394','10425','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2395','10425','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}','.*','Filter of discoverable link types.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2396','10425','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}','2','Filter to exclude discovered by link types.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2397','10426','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2398','10426','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2399','10426','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2400','10426','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}','1|2','Filter of discoverable link types.\r\n0 - Down link\r\n1 - Cooper link\r\n2 - Fiber link','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2401','10426','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by link types.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2402','10426','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}','.*','Filter by discoverable interface names.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2403','10426','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2404','10426','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}','1|2','Filter of discoverable status.\r\n0 - OK with DDM\r\n1 - OK without DDM\r\n2 - nonoperational','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2405','10426','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by status.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2406','10426','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}','.*','Filter by discoverable SFP modules name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2407','10426','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}','N/A','Filter to exclude discovered SFP modules by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2408','10426','{$ZYXEL.LLD.SFP.UPDATE}','10m','Receiving data from the SFP module is slow, we do not recommend setting the interval less than 10 minutes.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2409','10427','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2410','10427','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2411','10427','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2412','10427','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2413','10427','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}','1|2','Filter of discoverable link types.\r\n0 - Down link\r\n1 - Cooper link\r\n2 - Fiber link','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2414','10427','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by link types.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2415','10427','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}','.*','Filter by discoverable interface names.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2416','10427','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2417','10427','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}','1|2','Filter of discoverable status.\r\n0 - OK with DDM\r\n1 - OK without DDM\r\n2 - nonoperational','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2418','10427','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by status.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2419','10427','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}','.*','Filter by discoverable SFP modules name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2420','10427','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}','N/A','Filter to exclude discovered SFP modules by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2421','10427','{$ZYXEL.LLD.SFP.UPDATE}','10m','Receiving data from the SFP module is slow, we do not recommend setting the interval less than 10 minutes.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2422','10428','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2423','10428','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2424','10428','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2425','10428','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2426','10428','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}','1|2','Filter of discoverable link types.\r\n0 - Down link\r\n1 - Cooper link\r\n2 - Fiber link','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2427','10428','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by link types.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2428','10428','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}','.*','Filter by discoverable interface names.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2429','10428','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2430','10428','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}','1|2','Filter of discoverable status.\r\n0 - OK with DDM\r\n1 - OK without DDM\r\n2 - nonoperational','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2431','10428','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by status.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2432','10428','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}','.*','Filter by discoverable SFP modules name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2433','10428','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}','N/A','Filter to exclude discovered SFP modules by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2434','10428','{$ZYXEL.LLD.SFP.UPDATE}','10m','Receiving data from the SFP module is slow, we do not recommend setting the interval less than 10 minutes.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2435','10429','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2436','10429','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2437','10429','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2438','10429','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}','1|2','Filter of discoverable link types.\r\n0 - Down link\r\n1 - Cooper link\r\n2 - Fiber link','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2439','10429','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by link types.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2440','10429','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}','.*','Filter by discoverable interface names.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2441','10429','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2442','10429','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}','1|2','Filter of discoverable status.\r\n0 - OK with DDM\r\n1 - OK without DDM\r\n2 - nonoperational','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2443','10429','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by status.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2444','10429','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}','.*','Filter by discoverable SFP modules name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2445','10429','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}','N/A','Filter to exclude discovered SFP modules by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2446','10429','{$ZYXEL.LLD.SFP.UPDATE}','10m','Receiving data from the SFP module is slow, we do not recommend setting the interval less than 10 minutes.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2447','10430','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2448','10430','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2449','10430','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2450','10430','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}','1|2','Filter of discoverable link types.\r\n0 - Down link\r\n1 - Cooper link\r\n2 - Fiber link','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2451','10430','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by link types.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2452','10430','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}','.*','Filter by discoverable interface names.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2453','10430','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2454','10430','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}','1|2','Filter of discoverable status.\r\n0 - OK with DDM\r\n1 - OK without DDM\r\n2 - nonoperational','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2455','10430','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by status.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2456','10430','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}','.*','Filter by discoverable SFP modules name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2457','10430','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}','N/A','Filter to exclude discovered SFP modules by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2458','10430','{$ZYXEL.LLD.SFP.UPDATE}','10m','Receiving data from the SFP module is slow, we do not recommend setting the interval less than 10 minutes.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2459','10431','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2460','10431','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2461','10431','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2462','10431','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2463','10431','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}','1|2|3|4','Filter of discoverable link types.\r\n0 - Down link\r\n1 - Cooper link\r\n2 - Fiber link\r\n3 - XFP\r\n4 - CX4','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2464','10431','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by link types.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2465','10431','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}','.*','Filter by discoverable interface names.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2466','10431','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2467','10431','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}','1|2','Filter of discoverable status.\r\n0 - OK with DDM\r\n1 - OK without DDM\r\n2 - nonoperational','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2468','10431','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by status.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2469','10431','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}','.*','Filter by discoverable SFP modules name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2470','10431','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}','N/A','Filter to exclude discovered SFP modules by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2471','10431','{$ZYXEL.LLD.SFP.UPDATE}','10m','Receiving data from the SFP module is slow, we do not recommend setting the interval less than 10 minutes.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2472','10432','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2473','10432','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2474','10432','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2475','10432','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2476','10432','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}','1|2|3|4','Filter of discoverable link types.\r\n0 - Down link\r\n1 - Cooper link\r\n2 - Fiber link\r\n3 - XFP\r\n4 - CX4','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2477','10432','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by link types.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2478','10432','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}','.*','Filter by discoverable interface names.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2479','10432','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2480','10432','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}','1|2','Filter of discoverable status.\r\n0 - OK with DDM\r\n1 - OK without DDM\r\n2 - nonoperational','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2481','10432','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by status.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2482','10432','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}','.*','Filter by discoverable SFP modules name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2483','10432','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}','N/A','Filter to exclude discovered SFP modules by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2484','10432','{$ZYXEL.LLD.SFP.UPDATE}','10m','Receiving data from the SFP module is slow, we do not recommend setting the interval less than 10 minutes.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2485','10433','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2486','10433','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2487','10433','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2488','10433','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2489','10433','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}','1|2','Filter of discoverable link types.\r\n0 - Down link\r\n1 - Cooper link\r\n2 - Fiber link','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2490','10433','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by link types.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2491','10433','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}','.*','Filter by discoverable interface names.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2492','10433','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2493','10433','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}','1|2','Filter of discoverable status.\r\n0 - OK with DDM\r\n1 - OK without DDM\r\n2 - nonoperational','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2494','10433','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by status.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2495','10433','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}','.*','Filter by discoverable SFP modules name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2496','10433','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}','N/A','Filter to exclude discovered SFP modules by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2497','10433','{$ZYXEL.LLD.SFP.UPDATE}','10m','Receiving data from the SFP module is slow, we do not recommend setting the interval less than 10 minutes.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2498','10434','{$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','2','The cache battery critical state for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2499','10434','{$DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','1','The cache battery normal state for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2500','10434','{$DISK.ARRAY.STATUS.CRIT:"inoperable"}','2','The array controller critical state for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2501','10434','{$DISK.ARRAY.STATUS.OK:"operable"}','1','The array controller normal state for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2502','10434','{$DISK.ARRAY.STATUS.WARN:"degraded"}','3','The array controller warning state for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2503','10434','{$DISK.STATUS.CRIT:"bad"}','16','The disk critical state for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2504','10434','{$DISK.STATUS.CRIT:"predictiveFailure"}','11','The disk critical state for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2505','10434','{$DISK.STATUS.FAIL:"failed"}','9','The disk fail state for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2506','10434','{$FAN.STATUS.CRIT:"inoperable"}','2','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2507','10434','{$FAN.STATUS.WARN:"degraded"}','3','The warning value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2508','10434','{$HEALTH.STATUS.CRIT:"computeFailed"}','30','The unit health critical state for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2509','10434','{$HEALTH.STATUS.CRIT:"configFailure"}','33','The unit health critical state for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2510','10434','{$HEALTH.STATUS.CRIT:"inoperable"}','60','The unit health critical state for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2511','10434','{$HEALTH.STATUS.CRIT:"unconfigFailure"}','34','The unit health critical state for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2512','10434','{$HEALTH.STATUS.WARN:"diagnosticsFailed"}','204','The unit health warning state for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2513','10434','{$HEALTH.STATUS.WARN:"powerProblem"}','62','The unit health warning state for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2514','10434','{$HEALTH.STATUS.WARN:"testFailed"}','35','The unit health warning state for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2515','10434','{$HEALTH.STATUS.WARN:"thermalProblem"}','60','The unit health warning state for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2516','10434','{$HEALTH.STATUS.WARN:"voltageProblem"}','62','The unit health warning state for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2517','10434','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2518','10434','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2519','10434','{$NET.IFADMINSTATUS.MATCHES}','^.*','This macro is used in network interface discovery. Can be overridden on the host level. Ignore notPresent(6) by default.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2520','10434','{$NET.IFADMINSTATUS.NOT_MATCHES}','^2$','This macro is used in network interface discovery. Can be overridden on the host level. Ignore down(2) administrative status by default.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2521','10434','{$NET.IFALIAS.MATCHES}','.*','This macro is used in network interface discovery. Can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2522','10434','{$NET.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in network interface discovery. Can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2523','10434','{$NET.IFDESCR.MATCHES}','.*','This macro is used in network interface discovery. Can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2524','10434','{$NET.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in network interface discovery. Can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2525','10434','{$NET.IFNAME.MATCHES}','^.*$','This macro is used in network interface discovery. Can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2526','10434','{$NET.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12}|sup-fc0)','This macro is used in network interface discovery. Can be overridden on the host level. Filter out loopbacks, sup-fc0, nulls, docker veth links and docker0 bridge by default.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2527','10434','{$NET.IFOPERSTATUS.MATCHES}','^.*$','This macro is used in network interface discovery. Can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2528','10434','{$NET.IFOPERSTATUS.NOT_MATCHES}','^6$','This macro is used in network interface discovery. Can be overridden on the host level. Ignore notPresent(6) by default.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2529','10434','{$NET.IFTYPE.MATCHES}','.*','This macro is used in network interface discovery. Can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2530','10434','{$NET.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in network interface discovery. Can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2531','10434','{$PSU.STATUS.CRIT:"inoperable"}','2','The critical value of the PSU sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2532','10434','{$PSU.STATUS.WARN:"degraded"}','3','The warning value of the PSU sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2533','10434','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2534','10434','{$TEMP.MAX.CRIT:"Ambient"}','35','The temperature maximum critical value for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2535','10434','{$TEMP.MAX.WARN:"Ambient"}','30','The temperature maximum warning value for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2536','10434','{$VDISK.STATUS.OK:"equipped"}','10','The vdisk normal state for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2537','10435','{$API.PASSWORD}','','The Dell iDRAC user password.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2538','10435','{$API.URL}','','The Dell iDRAC Redfish API URL in the format `://:`.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2539','10435','{$API.USER}','','The Dell iDRAC username.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2540','10435','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces that have the context macro equaled 1.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2541','10436','{$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','3','The critical status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2542','10436','{$DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','2','The OK status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2543','10436','{$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','4','The warning status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2544','10436','{$DISK.ARRAY.STATUS.CRIT}','5','The critical status of the disk array for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2545','10436','{$DISK.ARRAY.STATUS.FAIL}','6','The disaster status of the disk array for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2546','10436','{$DISK.ARRAY.STATUS.WARN}','4','The warning status of the disk array for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2547','10436','{$DISK.SMART.STATUS.FAIL}','1','The critical S.M.A.R.T status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2548','10436','{$DISK.STATUS.FAIL:"critical"}','5','The critical status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2549','10436','{$DISK.STATUS.FAIL:"nonRecoverable"}','6','The critical status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2550','10436','{$DISK.STATUS.WARN:"nonCritical"}','4','The warning status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2551','10436','{$FAN.STATUS.CRIT:"criticalLower"}','8','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2552','10436','{$FAN.STATUS.CRIT:"criticalUpper"}','5','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2553','10436','{$FAN.STATUS.CRIT:"failed"}','10','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2554','10436','{$FAN.STATUS.CRIT:"nonRecoverableLower"}','9','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2555','10436','{$FAN.STATUS.CRIT:"nonRecoverableUpper"}','6','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2556','10436','{$FAN.STATUS.WARN:"nonCriticalLower"}','7','The warning value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2557','10436','{$FAN.STATUS.WARN:"nonCriticalUpper"}','4','The warning value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2558','10436','{$HEALTH.STATUS.CRIT}','5','The critical status of the health for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2559','10436','{$HEALTH.STATUS.DISASTER}','6','The disaster status of the health for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2560','10436','{$HEALTH.STATUS.WARN}','4','The warning status of the health for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2561','10436','{$PSU.STATUS.CRIT:"critical"}','5','The critical value of the PSU sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2562','10436','{$PSU.STATUS.CRIT:"nonRecoverable"}','6','The critical value of the PSU sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2563','10436','{$PSU.STATUS.WARN:"nonCritical"}','4','The warning value of the PSU sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2564','10436','{$SENSOR.TEMP.STATUS.CRIT:"criticalLower"}','8','The critical status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2565','10436','{$SENSOR.TEMP.STATUS.CRIT:"criticalUpper"}','5','The critical status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2566','10436','{$SENSOR.TEMP.STATUS.CRIT:"nonRecoverableLower"}','9','The critical status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2567','10436','{$SENSOR.TEMP.STATUS.CRIT:"nonRecoverableUpper"}','6','The critical status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2568','10436','{$SENSOR.TEMP.STATUS.OK}','3','The OK status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2569','10436','{$SENSOR.TEMP.STATUS.WARN:"nonCriticalLower"}','7','The warning status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2570','10436','{$SENSOR.TEMP.STATUS.WARN:"nonCriticalUpper"}','4','The warning status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2571','10436','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2572','10436','{$VDISK.STATUS.CRIT:"failed"}','3','The critical status of the virtual disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2573','10436','{$VDISK.STATUS.WARN:"degraded"}','4','The warning status of the virtual disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2574','10437','{$API.PASSWORD}','','The Dell iDRAC user password.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2575','10437','{$API.URL}','','The Dell iDRAC Redfish API URL in the format `://:`.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2576','10437','{$API.USER}','','The Dell iDRAC username.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2577','10437','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces that have the context macro equaled 1.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2578','10438','{$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','3','The critical status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2579','10438','{$DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','2','The OK status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2580','10438','{$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','4','The warning status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2581','10438','{$DISK.ARRAY.STATUS.CRIT}','5','The critical status of the disk array for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2582','10438','{$DISK.ARRAY.STATUS.FAIL}','6','The disaster status of the disk array for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2583','10438','{$DISK.ARRAY.STATUS.WARN}','4','The warning status of the disk array for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2584','10438','{$DISK.SMART.STATUS.FAIL}','1','The critical S.M.A.R.T status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2585','10438','{$DISK.STATUS.FAIL:"critical"}','5','The critical status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2586','10438','{$DISK.STATUS.FAIL:"nonRecoverable"}','6','The critical status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2587','10438','{$DISK.STATUS.WARN:"nonCritical"}','4','The warning status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2588','10438','{$FAN.STATUS.CRIT:"criticalLower"}','8','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2589','10438','{$FAN.STATUS.CRIT:"criticalUpper"}','5','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2590','10438','{$FAN.STATUS.CRIT:"failed"}','10','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2591','10438','{$FAN.STATUS.CRIT:"nonRecoverableLower"}','9','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2592','10438','{$FAN.STATUS.CRIT:"nonRecoverableUpper"}','6','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2593','10438','{$FAN.STATUS.WARN:"nonCriticalLower"}','7','The warning value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2594','10438','{$FAN.STATUS.WARN:"nonCriticalUpper"}','4','The warning value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2595','10438','{$HEALTH.STATUS.CRIT}','5','The critical status of the health for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2596','10438','{$HEALTH.STATUS.DISASTER}','6','The disaster status of the health for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2597','10438','{$HEALTH.STATUS.WARN}','4','The warning status of the health for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2598','10438','{$PSU.STATUS.CRIT:"critical"}','5','The critical value of the PSU sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2599','10438','{$PSU.STATUS.CRIT:"nonRecoverable"}','6','The critical value of the PSU sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2600','10438','{$PSU.STATUS.WARN:"nonCritical"}','4','The warning value of the PSU sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2601','10438','{$SENSOR.TEMP.STATUS.CRIT:"criticalLower"}','8','The critical status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2602','10438','{$SENSOR.TEMP.STATUS.CRIT:"criticalUpper"}','5','The critical status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2603','10438','{$SENSOR.TEMP.STATUS.CRIT:"nonRecoverableLower"}','9','The critical status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2604','10438','{$SENSOR.TEMP.STATUS.CRIT:"nonRecoverableUpper"}','6','The critical status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2605','10438','{$SENSOR.TEMP.STATUS.OK}','3','The OK status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2606','10438','{$SENSOR.TEMP.STATUS.WARN:"nonCriticalLower"}','7','The warning status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2607','10438','{$SENSOR.TEMP.STATUS.WARN:"nonCriticalUpper"}','4','The warning status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2608','10438','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2609','10438','{$VDISK.STATUS.CRIT:"failed"}','3','The critical status of the virtual disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2610','10438','{$VDISK.STATUS.WARN:"degraded"}','4','The warning status of the virtual disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2611','10439','{$API.PASSWORD}','','The Dell iDRAC user password.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2612','10439','{$API.URL}','','The Dell iDRAC Redfish API URL in the format `://:`.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2613','10439','{$API.USER}','','The Dell iDRAC username.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2614','10439','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces that have the context macro equaled 1.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2615','10440','{$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','3','The critical status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2616','10440','{$DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','2','The OK status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2617','10440','{$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','4','The warning status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2618','10440','{$DISK.ARRAY.STATUS.CRIT}','5','The critical status of the disk array for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2619','10440','{$DISK.ARRAY.STATUS.FAIL}','6','The disaster status of the disk array for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2620','10440','{$DISK.ARRAY.STATUS.WARN}','4','The warning status of the disk array for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2621','10440','{$DISK.SMART.STATUS.FAIL}','1','The critical S.M.A.R.T status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2622','10440','{$DISK.STATUS.FAIL:"critical"}','5','The critical status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2623','10440','{$DISK.STATUS.FAIL:"nonRecoverable"}','6','The critical status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2624','10440','{$DISK.STATUS.WARN:"nonCritical"}','4','The warning status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2625','10440','{$FAN.STATUS.CRIT:"criticalLower"}','8','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2626','10440','{$FAN.STATUS.CRIT:"criticalUpper"}','5','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2627','10440','{$FAN.STATUS.CRIT:"failed"}','10','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2628','10440','{$FAN.STATUS.CRIT:"nonRecoverableLower"}','9','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2629','10440','{$FAN.STATUS.CRIT:"nonRecoverableUpper"}','6','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2630','10440','{$FAN.STATUS.WARN:"nonCriticalLower"}','7','The warning value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2631','10440','{$FAN.STATUS.WARN:"nonCriticalUpper"}','4','The warning value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2632','10440','{$HEALTH.STATUS.CRIT}','5','The critical status of the health for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2633','10440','{$HEALTH.STATUS.DISASTER}','6','The disaster status of the health for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2634','10440','{$HEALTH.STATUS.WARN}','4','The warning status of the health for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2635','10440','{$PSU.STATUS.CRIT:"critical"}','5','The critical value of the PSU sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2636','10440','{$PSU.STATUS.CRIT:"nonRecoverable"}','6','The critical value of the PSU sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2637','10440','{$PSU.STATUS.WARN:"nonCritical"}','4','The warning value of the PSU sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2638','10440','{$SENSOR.TEMP.STATUS.CRIT:"criticalLower"}','8','The critical status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2639','10440','{$SENSOR.TEMP.STATUS.CRIT:"criticalUpper"}','5','The critical status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2640','10440','{$SENSOR.TEMP.STATUS.CRIT:"nonRecoverableLower"}','9','The critical status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2641','10440','{$SENSOR.TEMP.STATUS.CRIT:"nonRecoverableUpper"}','6','The critical status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2642','10440','{$SENSOR.TEMP.STATUS.OK}','3','The OK status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2643','10440','{$SENSOR.TEMP.STATUS.WARN:"nonCriticalLower"}','7','The warning status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2644','10440','{$SENSOR.TEMP.STATUS.WARN:"nonCriticalUpper"}','4','The warning status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2645','10440','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2646','10440','{$VDISK.STATUS.CRIT:"failed"}','3','The critical status of the virtual disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2647','10440','{$VDISK.STATUS.WARN:"degraded"}','4','The warning status of the virtual disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2648','10441','{$API.PASSWORD}','','The Dell iDRAC user password.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2649','10441','{$API.URL}','','The Dell iDRAC Redfish API URL in the format `://:`.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2650','10441','{$API.USER}','','The Dell iDRAC username.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2651','10441','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces that have the context macro equaled 1.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2652','10442','{$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','3','The critical status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2653','10442','{$DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','2','The OK status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2654','10442','{$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','4','The warning status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2655','10442','{$DISK.ARRAY.STATUS.CRIT}','5','The critical status of the disk array for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2656','10442','{$DISK.ARRAY.STATUS.FAIL}','6','The disaster status of the disk array for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2657','10442','{$DISK.ARRAY.STATUS.WARN}','4','The warning status of the disk array for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2658','10442','{$DISK.SMART.STATUS.FAIL}','1','The critical S.M.A.R.T status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2659','10442','{$DISK.STATUS.FAIL:"critical"}','5','The critical status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2660','10442','{$DISK.STATUS.FAIL:"nonRecoverable"}','6','The critical status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2661','10442','{$DISK.STATUS.WARN:"nonCritical"}','4','The warning status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2662','10442','{$FAN.STATUS.CRIT:"criticalLower"}','8','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2663','10442','{$FAN.STATUS.CRIT:"criticalUpper"}','5','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2664','10442','{$FAN.STATUS.CRIT:"failed"}','10','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2665','10442','{$FAN.STATUS.CRIT:"nonRecoverableLower"}','9','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2666','10442','{$FAN.STATUS.CRIT:"nonRecoverableUpper"}','6','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2667','10442','{$FAN.STATUS.WARN:"nonCriticalLower"}','7','The warning value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2668','10442','{$FAN.STATUS.WARN:"nonCriticalUpper"}','4','The warning value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2669','10442','{$HEALTH.STATUS.CRIT}','5','The critical status of the health for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2670','10442','{$HEALTH.STATUS.DISASTER}','6','The disaster status of the health for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2671','10442','{$HEALTH.STATUS.WARN}','4','The warning status of the health for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2672','10442','{$PSU.STATUS.CRIT:"critical"}','5','The critical value of the PSU sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2673','10442','{$PSU.STATUS.CRIT:"nonRecoverable"}','6','The critical value of the PSU sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2674','10442','{$PSU.STATUS.WARN:"nonCritical"}','4','The warning value of the PSU sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2675','10442','{$SENSOR.TEMP.STATUS.CRIT:"criticalLower"}','8','The critical status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2676','10442','{$SENSOR.TEMP.STATUS.CRIT:"criticalUpper"}','5','The critical status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2677','10442','{$SENSOR.TEMP.STATUS.CRIT:"nonRecoverableLower"}','9','The critical status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2678','10442','{$SENSOR.TEMP.STATUS.CRIT:"nonRecoverableUpper"}','6','The critical status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2679','10442','{$SENSOR.TEMP.STATUS.OK}','3','The OK status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2680','10442','{$SENSOR.TEMP.STATUS.WARN:"nonCriticalLower"}','7','The warning status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2681','10442','{$SENSOR.TEMP.STATUS.WARN:"nonCriticalUpper"}','4','The warning status of the temperature probe for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2682','10442','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2683','10442','{$VDISK.STATUS.CRIT:"failed"}','3','The critical status of the virtual disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2684','10442','{$VDISK.STATUS.WARN:"degraded"}','4','The warning status of the virtual disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2685','10443','{$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"capacitorFailed"}','7','The critical status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2686','10443','{$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"failed"}','4','The critical status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2687','10443','{$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"degraded"}','5','The warning status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2688','10443','{$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"notPresent"}','6','The warning status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2689','10443','{$DISK.ARRAY.CACHE.STATUS.CRIT:"cacheModCriticalFailure"}','8','The critical status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2690','10443','{$DISK.ARRAY.CACHE.STATUS.OK:"enabled"}','3','The normal status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2691','10443','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModDegradedFailsafeSpeed"}','7','The warning status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2692','10443','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModFlashMemNotAttached"}','6','The warning status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2693','10443','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheReadCacheNotMapped"}','9','The warning status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2694','10443','{$DISK.ARRAY.CACHE.STATUS.WARN:"invalid"}','2','The warning status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2695','10443','{$DISK.ARRAY.STATUS.CRIT}','4','The critical status of the disk array for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2696','10443','{$DISK.ARRAY.STATUS.WARN}','3','The warning status of the disk array for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2697','10443','{$DISK.SMART.STATUS.FAIL:"replaceDrive"}','3','The critical S.M.A.R.T status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2698','10443','{$DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','4','The critical S.M.A.R.T status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2699','10443','{$DISK.STATUS.FAIL}','3','The critical status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2700','10443','{$DISK.STATUS.WARN}','4','The warning status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2701','10443','{$FAN.STATUS.CRIT}','4','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2702','10443','{$FAN.STATUS.WARN}','3','The warning value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2703','10443','{$HEALTH.STATUS.CRIT}','4','The critical status of the health for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2704','10443','{$HEALTH.STATUS.WARN}','3','The warning status of the health for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2705','10443','{$PSU.STATUS.CRIT}','4','The critical value of the PSU sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2706','10443','{$PSU.STATUS.WARN}','3','The warning value of the PSU sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2707','10443','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2708','10443','{$VDISK.STATUS.CRIT}','3','The critical status of the virtual disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2709','10443','{$VDISK.STATUS.OK}','2','The normal status of the virtual disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2710','10444','{$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"capacitorFailed"}','7','The critical status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2711','10444','{$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"failed"}','4','The critical status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2712','10444','{$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"degraded"}','5','The warning status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2713','10444','{$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"notPresent"}','6','The warning status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2714','10444','{$DISK.ARRAY.CACHE.STATUS.CRIT:"cacheModCriticalFailure"}','8','The critical status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2715','10444','{$DISK.ARRAY.CACHE.STATUS.OK:"enabled"}','3','The normal status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2716','10444','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModDegradedFailsafeSpeed"}','7','The warning status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2717','10444','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModFlashMemNotAttached"}','6','The warning status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2718','10444','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheReadCacheNotMapped"}','9','The warning status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2719','10444','{$DISK.ARRAY.CACHE.STATUS.WARN:"invalid"}','2','The warning status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2720','10444','{$DISK.ARRAY.STATUS.CRIT}','4','The critical status of the disk array for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2721','10444','{$DISK.ARRAY.STATUS.WARN}','3','The warning status of the disk array for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2722','10444','{$DISK.SMART.STATUS.FAIL:"replaceDrive"}','3','The critical S.M.A.R.T status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2723','10444','{$DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','4','The critical S.M.A.R.T status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2724','10444','{$DISK.STATUS.FAIL}','3','The critical status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2725','10444','{$DISK.STATUS.WARN}','4','The warning status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2726','10444','{$FAN.STATUS.CRIT}','4','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2727','10444','{$FAN.STATUS.WARN}','3','The warning value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2728','10444','{$HEALTH.STATUS.CRIT}','4','The critical status of the health for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2729','10444','{$HEALTH.STATUS.WARN}','3','The warning status of the health for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2730','10444','{$PSU.STATUS.CRIT}','4','The critical value of the PSU sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2731','10444','{$PSU.STATUS.WARN}','3','The warning value of the PSU sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2732','10444','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2733','10444','{$VDISK.STATUS.CRIT}','3','The critical status of the virtual disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2734','10444','{$VDISK.STATUS.OK}','2','The normal status of the virtual disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2735','10445','{$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"capacitorFailed"}','7','The critical status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2736','10445','{$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"failed"}','4','The critical status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2737','10445','{$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"degraded"}','5','The warning status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2738','10445','{$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"notPresent"}','6','The warning status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2739','10445','{$DISK.ARRAY.CACHE.STATUS.CRIT:"cacheModCriticalFailure"}','8','The critical status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2740','10445','{$DISK.ARRAY.CACHE.STATUS.OK:"enabled"}','3','The normal status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2741','10445','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModDegradedFailsafeSpeed"}','7','The warning status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2742','10445','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModFlashMemNotAttached"}','6','The warning status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2743','10445','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheReadCacheNotMapped"}','9','The warning status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2744','10445','{$DISK.ARRAY.CACHE.STATUS.WARN:"invalid"}','2','The warning status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2745','10445','{$DISK.ARRAY.STATUS.CRIT}','4','The critical status of the disk array for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2746','10445','{$DISK.ARRAY.STATUS.WARN}','3','The warning status of the disk array for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2747','10445','{$DISK.SMART.STATUS.FAIL:"replaceDrive"}','3','The critical S.M.A.R.T status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2748','10445','{$DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','4','The critical S.M.A.R.T status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2749','10445','{$DISK.STATUS.FAIL}','3','The critical status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2750','10445','{$DISK.STATUS.WARN}','4','The warning status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2751','10445','{$FAN.STATUS.CRIT}','4','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2752','10445','{$FAN.STATUS.WARN}','3','The warning value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2753','10445','{$HEALTH.STATUS.CRIT}','4','The critical status of the health for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2754','10445','{$HEALTH.STATUS.WARN}','3','The warning status of the health for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2755','10445','{$PSU.STATUS.CRIT}','4','The critical value of the PSU sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2756','10445','{$PSU.STATUS.WARN}','3','The warning value of the PSU sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2757','10445','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2758','10445','{$VDISK.STATUS.CRIT}','3','The critical status of the virtual disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2759','10445','{$VDISK.STATUS.OK}','2','The normal status of the virtual disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2760','10446','{$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"capacitorFailed"}','7','The critical status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2761','10446','{$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"failed"}','4','The critical status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2762','10446','{$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"degraded"}','5','The warning status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2763','10446','{$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"notPresent"}','6','The warning status of the disk array cache battery for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2764','10446','{$DISK.ARRAY.CACHE.STATUS.CRIT:"cacheModCriticalFailure"}','8','The critical status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2765','10446','{$DISK.ARRAY.CACHE.STATUS.OK:"enabled"}','3','The normal status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2766','10446','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModDegradedFailsafeSpeed"}','7','The warning status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2767','10446','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModFlashMemNotAttached"}','6','The warning status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2768','10446','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheReadCacheNotMapped"}','9','The warning status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2769','10446','{$DISK.ARRAY.CACHE.STATUS.WARN:"invalid"}','2','The warning status of the disk array cache for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2770','10446','{$DISK.ARRAY.STATUS.CRIT}','4','The critical status of the disk array for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2771','10446','{$DISK.ARRAY.STATUS.WARN}','3','The warning status of the disk array for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2772','10446','{$DISK.SMART.STATUS.FAIL:"replaceDrive"}','3','The critical S.M.A.R.T status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2773','10446','{$DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','4','The critical S.M.A.R.T status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2774','10446','{$DISK.STATUS.FAIL}','3','The critical status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2775','10446','{$DISK.STATUS.WARN}','4','The warning status of the disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2776','10446','{$FAN.STATUS.CRIT}','4','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2777','10446','{$FAN.STATUS.WARN}','3','The warning value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2778','10446','{$HEALTH.STATUS.CRIT}','4','The critical status of the health for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2779','10446','{$HEALTH.STATUS.WARN}','3','The warning status of the health for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2780','10446','{$PSU.STATUS.CRIT}','4','The critical value of the PSU sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2781','10446','{$PSU.STATUS.WARN}','3','The warning value of the PSU sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2782','10446','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2783','10446','{$VDISK.STATUS.CRIT}','3','The critical status of the virtual disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2784','10446','{$VDISK.STATUS.OK}','2','The normal status of the virtual disk for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2785','10336','{$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:"IAX"}','28','The total maximum number of busy channels of IAX trunks for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2786','10336','{$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:"PJSIP"}','28','The total maximum number of busy channels of PJSIP trunks for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2787','10336','{$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:"SIP"}','28','The total maximum number of busy channels of SIP trunks for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2788','10447','{$TRAVIS.API.TOKEN}','','Travis API Token','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2789','10447','{$TRAVIS.API.URL}','api.travis-ci.com','Travis API URL','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2790','10447','{$TRAVIS.BUILDS.SUCCESS.PERCENT}','80','Percent of successful builds in the repo (for trigger expression)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2791','10448','{$INFLUXDB.API.TOKEN}','','InfluxDB API Authorization Token','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2792','10448','{$INFLUXDB.ORG_NAME.MATCHES}','.*','Filter of discoverable organizations','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2793','10448','{$INFLUXDB.ORG_NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered organizations','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2794','10448','{$INFLUXDB.REQ.FAIL.MAX.WARN}','2','Maximum number of query requests failures for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2795','10448','{$INFLUXDB.TASK.RUN.FAIL.MAX.WARN}','2','Maximum number of tasks runs failures for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2796','10448','{$INFLUXDB.URL}','http://localhost:8086','InfluxDB instance URL','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2797','10419','{$BIGIP.TEMP.HIGH}','50','The critical threshold of the temperature in °C','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2798','10419','{$BIGIP.TEMP.WARN}','45','The warning threshold of the temperature in °C','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2799','10449','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2800','10449','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2801','10449','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2802','10449','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2803','10449','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2804','10449','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2805','10449','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2806','10449','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2807','10449','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2808','10449','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2809','10449','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2810','10449','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2811','10449','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2812','10449','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2813','10449','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2814','10450','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2815','10450','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2816','10450','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2817','10450','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2818','10450','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2819','10450','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2820','10450','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2821','10450','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2822','10450','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2823','10450','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2824','10450','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2825','10450','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2826','10450','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2827','10450','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2828','10450','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2829','10451','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2830','10451','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2831','10451','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2832','10451','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2833','10451','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2834','10451','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2835','10451','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2836','10451','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2837','10451','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2838','10451','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2839','10451','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2840','10451','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2841','10451','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2842','10451','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2843','10451','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2844','10452','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2845','10452','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2846','10452','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2847','10452','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2848','10452','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2849','10452','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2850','10452','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2851','10452','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2852','10452','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2853','10452','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2854','10452','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2855','10452','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2856','10452','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2857','10452','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2858','10452','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2859','10453','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2860','10453','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2861','10453','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2862','10453','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2863','10453','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2864','10453','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2865','10453','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2866','10453','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2867','10453','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2868','10453','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2869','10453','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2870','10453','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2871','10453','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2872','10453','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2873','10453','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2874','10454','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2875','10454','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2876','10454','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2877','10454','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2878','10454','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2879','10454','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2880','10454','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2881','10454','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2882','10454','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2883','10454','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2884','10454','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2885','10454','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2886','10454','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2887','10454','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2888','10454','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2889','10455','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2890','10455','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2891','10455','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2892','10455','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2893','10455','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2894','10455','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2895','10455','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2896','10455','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2897','10455','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2898','10455','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2899','10455','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2900','10455','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2901','10455','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2902','10455','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2903','10455','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2904','10456','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2905','10456','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2906','10456','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2907','10456','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2908','10456','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2909','10456','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2910','10456','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2911','10456','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2912','10456','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2913','10456','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2914','10456','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2915','10456','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2916','10456','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2917','10456','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2918','10456','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2919','10457','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2920','10457','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2921','10457','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2922','10457','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2923','10457','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2924','10457','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2925','10457','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2926','10457','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2927','10457','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2928','10457','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2929','10457','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2930','10457','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2931','10457','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2932','10457','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2933','10457','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2934','10458','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2935','10458','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2936','10458','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2937','10458','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2938','10458','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2939','10458','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2940','10458','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2941','10458','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2942','10458','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2943','10458','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2944','10458','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2945','10458','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2946','10458','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2947','10458','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2948','10458','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2949','10459','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2950','10459','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2951','10459','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2952','10459','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2953','10459','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2954','10459','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2955','10459','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2956','10459','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2957','10459','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2958','10459','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2959','10459','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2960','10459','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2961','10459','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2962','10459','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2963','10459','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2964','10460','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2965','10460','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2966','10460','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2967','10460','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2968','10460','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2969','10460','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2970','10460','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2971','10460','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2972','10460','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2973','10460','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2974','10460','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2975','10460','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2976','10460','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2977','10460','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2978','10460','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2979','10461','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2980','10461','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2981','10461','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2982','10461','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2983','10461','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2984','10461','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2985','10461','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2986','10461','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2987','10461','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2988','10461','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2989','10461','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2990','10461','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2991','10461','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2992','10461','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2993','10461','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2994','10462','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2995','10462','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2996','10462','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2997','10462','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2998','10462','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('2999','10462','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3000','10462','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3001','10462','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3002','10462','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3003','10462','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3004','10462','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3005','10462','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3006','10462','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3007','10462','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3008','10462','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3009','10463','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3010','10463','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3011','10463','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3012','10463','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3013','10463','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3014','10463','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3015','10463','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3016','10463','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3017','10463','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3018','10463','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3019','10463','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3020','10463','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3021','10463','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3022','10463','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3023','10463','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3024','10464','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3025','10464','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3026','10464','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3027','10464','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3028','10464','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3029','10464','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3030','10464','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3031','10464','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3032','10464','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3033','10464','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3034','10464','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3035','10464','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3036','10464','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3037','10464','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3038','10464','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3039','10465','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3040','10465','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3041','10465','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3042','10465','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3043','10465','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3044','10465','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3045','10465','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3046','10465','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3047','10465','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3048','10465','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3049','10465','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3050','10465','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3051','10465','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3052','10465','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3053','10465','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3054','10466','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3055','10466','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3056','10466','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3057','10466','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3058','10466','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3059','10466','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3060','10466','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3061','10466','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3062','10466','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3063','10466','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3064','10466','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3065','10466','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3066','10466','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3067','10466','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3068','10466','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3069','10467','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3070','10467','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3071','10467','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3072','10467','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3073','10467','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3074','10467','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3075','10467','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3076','10467','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3077','10467','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3078','10467','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3079','10467','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3080','10467','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3081','10467','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3082','10467','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3083','10467','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3084','10468','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3085','10468','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3086','10468','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3087','10468','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3088','10468','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3089','10468','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3090','10468','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3091','10468','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3092','10468','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3093','10468','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3094','10468','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3095','10468','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3096','10468','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3097','10468','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3098','10468','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3099','10469','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3100','10469','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3101','10469','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3102','10469','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3103','10469','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3104','10469','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3105','10469','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3106','10469','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3107','10469','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3108','10469','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3109','10469','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3110','10469','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3111','10469','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3112','10469','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3113','10469','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3114','10470','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3115','10470','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3116','10470','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3117','10470','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3118','10470','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3119','10470','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3120','10470','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3121','10470','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3122','10470','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3123','10470','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3124','10470','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3125','10470','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3126','10470','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3127','10470','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3128','10470','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3129','10471','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3130','10471','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3131','10471','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3132','10471','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3133','10471','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3134','10471','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3135','10471','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3136','10471','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3137','10471','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3138','10471','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3139','10471','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3140','10471','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3141','10471','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3142','10471','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3143','10471','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3144','10472','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3145','10472','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3146','10472','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3147','10472','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3148','10472','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3149','10472','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3150','10472','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3151','10472','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3152','10472','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3153','10472','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3154','10472','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3155','10472','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3156','10472','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3157','10472','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3158','10472','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3159','10473','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3160','10473','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3161','10473','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3162','10473','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3163','10473','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3164','10473','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3165','10473','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3166','10473','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3167','10473','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3168','10473','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3169','10473','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3170','10473','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3171','10473','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3172','10473','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3173','10473','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3174','10474','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3175','10474','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3176','10474','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3177','10474','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3178','10474','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3179','10474','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3180','10474','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3181','10474','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3182','10474','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3183','10474','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3184','10474','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3185','10474','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3186','10474','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3187','10474','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3188','10474','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3189','10475','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3190','10475','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3191','10475','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3192','10475','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3193','10475','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3194','10475','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3195','10475','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3196','10475','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3197','10475','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3198','10475','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3199','10475','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3200','10475','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3201','10475','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3202','10475','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3203','10475','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3204','10476','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3205','10476','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3206','10476','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3207','10476','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3208','10476','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3209','10476','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3210','10476','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3211','10476','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3212','10476','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3213','10476','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3214','10476','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3215','10476','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3216','10476','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3217','10476','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3218','10476','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3219','10477','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3220','10477','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3221','10477','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3222','10477','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3223','10477','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3224','10477','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3225','10477','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3226','10477','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3227','10477','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3228','10477','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3229','10477','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3230','10477','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3231','10477','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3232','10477','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3233','10477','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3234','10478','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3235','10478','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3236','10478','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3237','10478','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3238','10478','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3239','10478','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3240','10478','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3241','10478','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3242','10478','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3243','10478','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3244','10478','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3245','10478','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3246','10478','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3247','10478','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3248','10478','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3249','10479','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3250','10479','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3251','10479','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3252','10479','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3253','10479','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3254','10479','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3255','10479','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3256','10479','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3257','10479','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3258','10479','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3259','10479','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3260','10479','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3261','10479','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3262','10479','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3263','10479','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3264','10480','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3265','10480','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3266','10480','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3267','10480','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3268','10480','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3269','10480','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3270','10480','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3271','10480','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3272','10480','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3273','10480','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3274','10480','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3275','10480','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3276','10480','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3277','10480','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3278','10480','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3279','10481','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3280','10481','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3281','10481','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3282','10481','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3283','10481','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3284','10481','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3285','10481','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3286','10481','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3287','10481','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3288','10481','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3289','10481','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3290','10481','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3291','10481','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3292','10481','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3293','10481','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3294','10482','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3295','10482','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3296','10482','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3297','10482','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3298','10482','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3299','10482','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3300','10482','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3301','10482','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3302','10482','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3303','10482','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3304','10482','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3305','10482','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3306','10482','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3307','10482','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3308','10482','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3309','10483','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3310','10483','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3311','10483','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3312','10483','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3313','10483','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3314','10483','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3315','10483','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3316','10483','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3317','10483','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3318','10483','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3319','10483','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3320','10483','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3321','10483','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3322','10483','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3323','10483','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3324','10484','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3325','10484','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3326','10484','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3327','10484','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3328','10484','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3329','10484','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3330','10484','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3331','10484','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3332','10484','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3333','10484','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3334','10484','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3335','10484','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3336','10484','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3337','10484','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3338','10484','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3339','10485','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3340','10485','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3341','10485','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3342','10485','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3343','10485','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3344','10485','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3345','10485','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3346','10485','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3347','10485','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3348','10485','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3349','10485','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3350','10485','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3351','10485','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3352','10485','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3353','10485','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3354','10486','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3355','10486','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3356','10486','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3357','10486','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3358','10486','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3359','10486','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3360','10486','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3361','10486','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3362','10486','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3363','10486','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3364','10486','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3365','10486','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3366','10486','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3367','10486','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3368','10486','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3369','10487','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3370','10487','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3371','10487','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3372','10487','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3373','10487','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3374','10487','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3375','10487','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3376','10487','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3377','10487','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3378','10487','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3379','10487','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3380','10487','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3381','10487','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3382','10487','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3383','10487','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3384','10488','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3385','10488','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3386','10488','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3387','10488','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3388','10488','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3389','10488','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3390','10488','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3391','10488','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3392','10488','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3393','10488','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3394','10488','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3395','10488','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3396','10488','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3397','10488','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3398','10488','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3399','10489','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3400','10489','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3401','10489','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3402','10489','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3403','10489','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3404','10489','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3405','10489','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3406','10489','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3407','10489','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3408','10489','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3409','10489','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3410','10489','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3411','10489','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3412','10489','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3413','10489','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3414','10490','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3415','10490','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3416','10490','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3417','10490','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3418','10490','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3419','10490','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3420','10490','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3421','10490','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3422','10490','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3423','10490','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3424','10490','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3425','10490','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3426','10490','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3427','10490','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3428','10490','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3429','10491','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3430','10491','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3431','10491','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3432','10491','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3433','10491','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3434','10491','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3435','10491','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3436','10491','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3437','10491','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3438','10491','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3439','10491','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3440','10491','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3441','10491','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3442','10491','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3443','10491','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3444','10492','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3445','10492','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3446','10492','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3447','10492','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3448','10492','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3449','10492','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3450','10492','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3451','10492','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3452','10492','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3453','10492','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3454','10492','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3455','10492','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3456','10492','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3457','10492','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3458','10492','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3459','10493','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3460','10493','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3461','10493','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3462','10493','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3463','10493','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3464','10493','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3465','10493','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3466','10493','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3467','10493','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3468','10493','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3469','10493','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3470','10493','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3471','10493','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3472','10493','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3473','10493','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3474','10494','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3475','10494','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3476','10494','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3477','10494','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3478','10494','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3479','10494','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3480','10494','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3481','10494','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3482','10494','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3483','10494','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3484','10494','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3485','10494','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3486','10494','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3487','10494','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3488','10494','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3489','10495','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3490','10495','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3491','10495','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3492','10495','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3493','10495','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3494','10495','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3495','10495','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3496','10495','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3497','10495','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3498','10495','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3499','10495','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3500','10495','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3501','10495','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3502','10495','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3503','10495','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3504','10496','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3505','10496','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3506','10496','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3507','10496','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3508','10496','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3509','10496','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3510','10496','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3511','10496','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3512','10496','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3513','10496','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3514','10496','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3515','10496','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3516','10496','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3517','10496','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3518','10496','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3519','10497','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3520','10497','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3521','10497','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3522','10497','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3523','10497','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3524','10497','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3525','10497','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3526','10497','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3527','10497','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3528','10497','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3529','10497','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3530','10497','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3531','10497','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3532','10497','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3533','10497','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3534','10498','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3535','10498','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3536','10498','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3537','10498','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3538','10498','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3539','10498','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3540','10498','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3541','10498','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3542','10498','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3543','10498','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3544','10498','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3545','10498','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3546','10498','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3547','10498','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3548','10498','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3549','10499','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3550','10499','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3551','10499','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3552','10499','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3553','10499','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3554','10499','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3555','10499','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3556','10499','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3557','10499','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3558','10499','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3559','10499','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3560','10499','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3561','10499','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3562','10499','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3563','10499','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3564','10500','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3565','10500','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3566','10500','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3567','10500','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3568','10500','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3569','10500','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3570','10500','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3571','10500','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3572','10500','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3573','10500','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3574','10500','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3575','10500','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3576','10500','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3577','10500','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3578','10500','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3579','10501','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3580','10501','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3581','10501','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3582','10501','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3583','10501','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3584','10501','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3585','10501','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3586','10501','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3587','10501','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3588','10501','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3589','10501','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3590','10501','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3591','10501','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3592','10501','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3593','10501','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3594','10502','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3595','10502','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3596','10502','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3597','10502','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3598','10502','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3599','10502','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3600','10502','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3601','10502','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3602','10502','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3603','10502','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3604','10502','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3605','10502','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3606','10502','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3607','10502','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3608','10502','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3609','10503','{$VELOCLOUD.LLD.EDGES.FILTER.MATCHES}','.*','Filter for discoverable edges.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3610','10503','{$VELOCLOUD.LLD.EDGES.FILTER.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered edges.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3611','10503','{$VELOCLOUD.LLD.GATEWAYS.FILTER.MATCHES}','.*','Filter for discoverable gateways.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3612','10503','{$VELOCLOUD.LLD.GATEWAYS.FILTER.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered gateways.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3613','10503','{$VELOCLOUD.LLD.LINKS.FILTER.MATCHES}','.*','Filter for discoverable links.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3614','10503','{$VELOCLOUD.LLD.LINKS.FILTER.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered links.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3615','10503','{$VELOCLOUD.TOKEN}','','VMware SD-WAN Orchestrator API Token.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3616','10503','{$VELOCLOUD.URL}','','VMware SD-WAN Orchestrator URL. e.g vco.velocloud.net.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3617','10328','{$ORACLE.DRIVER}','','Oracle driver path. e.g /usr/lib/oracle/21/client64/lib/libsqora.so.21.1','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3618','10328','{$ORACLE.SERVICE}','','Oracle service name','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3619','10358','{$ACTIVEMQ.EXPIRED.WARN}','0','Threshold for expired messages count. Can be used with destination name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3620','10504','{$KUBE.API.CERT.EXPIRATION}','7','Number of days for alert of client certificate used for trigger','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3621','10504','{$KUBE.API.HTTP.CLIENT.ERROR}','2','Maximum number of HTTP client requests failures used for trigger','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3622','10504','{$KUBE.API.HTTP.SERVER.ERROR}','2','Maximum number of HTTP client requests failures used for trigger','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3623','10504','{$KUBE.API.SERVER.URL}','http://localhost:8086/metrics','instance URL','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3624','10504','{$KUBE.API.TOKEN}','','API Authorization Token','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3625','10505','{$KUBE.CONTROLLER.HTTP.CLIENT.ERROR}','2','Maximum number of HTTP client requests failures used for trigger','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3626','10505','{$KUBE.CONTROLLER.SERVER.URL}','http://localhost:10252/metrics','Instance URL','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3628','10506','{$KUBE.API.TOKEN}','','Service account bearer token','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3629','10506','{$KUBE.KUBELET.URL}','https://localhost:10250','Instance URL','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3631','10507','{$KUBE.API.TOKEN}','','Service account bearer token','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3632','10507','{$KUBE.LLD.FILTER.NODE.MATCHES}','.*','Filter of discoverable nodes','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3633','10507','{$KUBE.LLD.FILTER.NODE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered nodes','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3634','10507','{$KUBE.LLD.FILTER.NODE.ROLE.MATCHES}','.*','Filter of discoverable nodes by role','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3635','10507','{$KUBE.LLD.FILTER.NODE.ROLE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered node by role','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3636','10507','{$KUBE.LLD.FILTER.NODE_HOST.MATCHES}','.*','Filter of discoverable cluster nodes','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3637','10507','{$KUBE.LLD.FILTER.NODE_HOST.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered cluster nodes','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3638','10507','{$KUBE.LLD.FILTER.NODE_HOST.ROLE.MATCHES}','.*','Filter of discoverable nodes hosts by role','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3639','10507','{$KUBE.LLD.FILTER.NODE_HOST.ROLE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered cluster nodes by role','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3640','10507','{$KUBE.LLD.FILTER.POD.NAMESPACE.MATCHES}','.*','Filter of discoverable pods by namespace','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3641','10507','{$KUBE.LLD.FILTER.POD.NAMESPACE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered pods by namespace','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3642','10507','{$KUBE.NODE.FILTER.ANNOTATIONS}','','Annotations to filter nodes (regex in values are supported)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3643','10507','{$KUBE.NODE.FILTER.LABELS}','','Labels to filter nodes (regex in values are supported)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3644','10507','{$KUBE.POD.FILTER.ANNOTATIONS}','','Annotations to filter pods (regex in values are supported)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3645','10507','{$KUBE.POD.FILTER.LABELS}','','Labels to filter Pods (regex in values are supported)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3646','10508','{$VFS.FS.FSNAME.NOT_MATCHES}','^/(dev|sys|run|proc|etc/.+|.+/shm|hostfs/root/var/lib/docker/.+)$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3647','10508','{$VFS.FS.FSTYPE.NOT_MATCHES}','^(autofs|binfmt_misc|cgroup|configfs|debugfs|devpts|devtmpfs|fusectl|hugetlbfs|mqueue|overlay|proc|procfs|pstore|rpc_pipefs|securityfs|sysfs|tracefs)$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3648','10509','{$KUBE.SCHEDULER.ERROR}','2','Maximum number of scheduling failures with \'error\' used for trigger','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3649','10509','{$KUBE.SCHEDULER.HTTP.CLIENT.ERROR}','2','Maximum number of HTTP client requests failures used for trigger','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3650','10509','{$KUBE.SCHEDULER.SERVER.URL}','http://localhost:10251/metrics','Instance URL','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3652','10509','{$KUBE.SCHEDULER.UNSCHEDULABLE}','2','Maximum number of scheduling failures with \'unschedulable\' used for trigger','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3655','10510','{$KUBE.API.TOKEN}','','Service account bearer token','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3656','10510','{$KUBE.API_SERVER.PORT}','6443','Kubernetes API servers metrics endpoint port. Used in ControlPlane LLD.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3657','10510','{$KUBE.API_SERVER.SCHEME}','https','Kubernetes API servers metrics endpoint scheme. Used in ControlPlane LLD.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3658','10510','{$KUBE.CONTROLLER_MANAGER.PORT}','10252','Kubernetes Controller manager metrics endpoint port. Used in ControlPlane LLD.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3659','10510','{$KUBE.CONTROLLER_MANAGER.SCHEME}','http','Kubernetes Controller manager metrics endpoint scheme. Used in ControlPlane LLD.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3660','10510','{$KUBE.KUBELET.PORT}','10250','Kubernetes Kubelet manager metrics endpoint port. Used in Kubelet LLD.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3661','10510','{$KUBE.KUBELET.SCHEME}','https','Kubernetes Kubelet manager metrics endpoint scheme. Used in Kubelet LLD.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3662','10510','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}','.*','Filter of discoverable pods by namespace','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3663','10510','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered pods by namespace','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3664','10510','{$KUBE.LLD.FILTER.NODE.MATCHES}','.*','Filter of discoverable nodes by nodename','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3665','10510','{$KUBE.LLD.FILTER.NODE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered nodes by nodename','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3666','10510','{$KUBE.LLD.FILTER.WORKER_NODE.MATCHES}','.*','Filter of discoverable worker nodes by nodename','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3667','10510','{$KUBE.LLD.FILTER.WORKER_NODE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered worker nodes by nodename','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3668','10510','{$KUBE.SCHEDULER.PORT}','10251','Kubernetes Scheduler manager metrics endpoint port. Used in ControlPlane LLD.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3669','10510','{$KUBE.SCHEDULER.SCHEME}','http','Kubernetes Scheduler manager metrics endpoint scheme. Used in ControlPlane LLD.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3670','10510','{$KUBE.STATE.ENDPOINT.NAME}','zabbix-kube-state-metrics','Kubernetes state endpoint name','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3671','10511','{$KUBE.API.SERVER.URL}','{#KUBE.API.SERVER.URL}','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3672','10512','{$KUBE.CONTROLLER.SERVER.URL}','{#KUBE.CONTROLLER.SERVER.URL}','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3673','10513','{$KUBE.SCHEDULER.SERVER.URL}','{#KUBE.SCHEDULER.SERVER.URL}','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3674','10514','{$KUBE.KUBELET.URL}','{#KUBE.KUBELET.URL}','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3678','10515','{$IF.ERRORS.WARN}','2','Threshold of error packets rate for warning trigger. Can be used with interface name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3679','10515','{$IF.UTIL.MAX}','90','Threshold of interface bandwidth utilization for warning trigger in %. Can be used with interface name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3680','10515','{$IFCONTROL}','1','Macro for operational state of the interface for link down trigger. Can be used with interface name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3684','10515','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','This macro is used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3685','10515','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3686','10515','{$NET.IF.IFALIAS.MATCHES}','.*','This macro is used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3687','10515','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3688','10515','{$NET.IF.IFDESCR.MATCHES}','.*','This macro used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3689','10515','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3690','10515','{$NET.IF.IFNAME.MATCHES}','^em[0-9]+$','This macro used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3691','10515','{$NET.IF.IFNAME.NOT_MATCHES}','^$','This macro used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3692','10515','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','This macro used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3693','10515','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3694','10515','{$NET.IF.IFTYPE.MATCHES}','.*','This macro used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3695','10515','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3696','10515','{$SNMP.TIMEOUT}','5m','The time interval for SNMP availability trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3697','10515','{$SOURCE.TRACKING.TABLE.UTIL.MAX}','90','Threshold of source tracking table utilization trigger in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3698','10515','{$STATE.TABLE.UTIL.MAX}','90','Threshold of state table utilization trigger in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3710','10173','{$VMWARE.PASSWORD}','','VMware service {$USERNAME} user password','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3711','10173','{$VMWARE.URL}','','VMware service (vCenter or ESX hypervisor) SDK URL (https://servername/sdk)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3712','10173','{$VMWARE.USERNAME}','','VMware service user name','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3713','10174','{$VMWARE.PASSWORD}','','VMware service {$USERNAME} user password','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3714','10174','{$VMWARE.URL}','','VMware service (vCenter or ESX hypervisor) SDK URL (https://servername/sdk)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3715','10174','{$VMWARE.USERNAME}','','VMware service user name','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3716','10175','{$VMWARE.PASSWORD}','','VMware service {$USERNAME} user password','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3717','10175','{$VMWARE.URL}','','VMware service (vCenter or ESX hypervisor) SDK URL (https://servername/sdk)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3718','10175','{$VMWARE.USERNAME}','','VMware service user name','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3719','10366','{$VMWARE.PASSWORD}','','VMware service {$USERNAME} user password','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3720','10366','{$VMWARE.URL}','','VMware service (vCenter or ESX hypervisor) SDK URL (https://servername/sdk)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3721','10366','{$VMWARE.USERNAME}','','VMware service user name','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3722','10048','{$ZABBIX.PROXY.UTIL.MAX}','75','Maximum average percentage of time processes busy in the last minute (default is 75).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3723','10048','{$ZABBIX.PROXY.UTIL.MIN}','65','Minimum average percentage of time processes busy in the last minute (default is 65).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3724','10262','{$ZABBIX.PROXY.ADDRESS}','127.0.0.1','IP/DNS/network mask list of proxies to be remotely queried (default is 127.0.0.1).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3725','10262','{$ZABBIX.PROXY.PORT}','10051','Port of proxy to be remotely queried (default is 10051).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3726','10262','{$ZABBIX.PROXY.UTIL.MAX}','75','Maximum average percentage of time processes busy in the last minute (default is 75).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3727','10262','{$ZABBIX.PROXY.UTIL.MIN}','65','Minimum average percentage of time processes busy in the last minute (default is 65).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3728','10357','{$PG.PASSWORD}','','Please set user\'s password in this macro.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3729','10204','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3730','10204','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3731','10185','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3732','10185','{$MEMORY.NAME.MATCHES}','.*','This macro is used in memory discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3733','10185','{$MEMORY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in memory discovery. Can be overridden on the host or linked template level if you need to filter out results.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3734','10185','{$MEMORY.TYPE.MATCHES}','.*(\\.2|hrStorageRam)$','This macro is used in memory discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3735','10185','{$MEMORY.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in memory discovery. Can be overridden on the host or linked template level if you need to filter out results.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3736','10185','{$MEMORY.UTIL.MAX}','90','The warning threshold of the "Physical memory: Memory utilization" item.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3737','10185','{$VFS.FS.FSNAME.MATCHES}','.+','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3738','10185','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3739','10185','{$VFS.FS.FSTYPE.MATCHES}','.*(\\.4|\\.9|hrStorageFixedDisk|hrStorageFlashMemory)$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3740','10185','{$VFS.FS.FSTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3741','10185','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3742','10185','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3743','10207','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3744','10207','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3745','10207','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3746','10207','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3747','10207','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3748','10207','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3749','10207','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3750','10207','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3751','10207','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3752','10207','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3753','10207','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3754','10207','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3755','10207','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3756','10207','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3757','10207','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3758','10207','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3759','10207','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3760','10207','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3761','10254','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3762','10254','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3763','10254','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3764','10254','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3765','10254','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3766','10254','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3767','10254','{$MEMORY.NAME.MATCHES}','.*','This macro is used in memory discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3768','10254','{$MEMORY.TYPE.MATCHES}','.*(\\.2|hrStorageRam)$','This macro is used in memory discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3769','10254','{$MEMORY.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in memory discovery. Can be overridden on the host or linked template level if you need to filter out results.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3770','10254','{$MEMORY.UTIL.MAX}','90','The warning threshold of the "Physical memory: Memory utilization" item.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3771','10254','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3772','10254','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3773','10254','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3774','10254','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3775','10254','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3776','10254','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3777','10254','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3778','10254','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3779','10254','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3780','10254','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3781','10254','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3782','10254','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3783','10254','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3784','10254','{$VFS.FS.FSNAME.MATCHES}','.+','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3785','10254','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3786','10254','{$VFS.FS.FSTYPE.MATCHES}','.*(\\.4|\\.9|hrStorageFixedDisk|hrStorageFlashMemory)$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3787','10254','{$VFS.FS.FSTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3788','10208','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3789','10208','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3790','10208','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3791','10208','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3792','10208','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3793','10208','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3794','10208','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3795','10208','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3796','10208','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3797','10208','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3798','10208','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3799','10208','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3800','10208','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3801','10208','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3802','10208','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3803','10208','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3804','10208','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3805','10208','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3806','10210','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3807','10210','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3808','10210','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3809','10210','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3810','10210','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3811','10210','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3812','10210','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3813','10210','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3814','10210','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3815','10210','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3816','10210','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3817','10210','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3818','10210','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3819','10210','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3820','10210','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3821','10210','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3822','10210','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3823','10210','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3824','10210','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3825','10210','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3826','10211','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3827','10211','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3828','10211','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3829','10211','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3830','10211','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3831','10211','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3832','10211','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3833','10211','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3834','10211','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3835','10211','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3836','10211','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3837','10211','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3838','10211','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3839','10211','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3840','10211','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3841','10211','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3842','10211','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3843','10211','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3844','10211','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3845','10211','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3846','10220','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3847','10220','{$FAN_CRIT_STATUS:"critical"}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3848','10220','{$FAN_CRIT_STATUS:"shutdown"}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3849','10220','{$FAN_WARN_STATUS:"notFunctioning"}','6','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3850','10220','{$FAN_WARN_STATUS:"warning"}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3851','10220','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3852','10220','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3853','10220','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3854','10220','{$PSU_CRIT_STATUS:"critical"}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3855','10220','{$PSU_CRIT_STATUS:"shutdown"}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3856','10220','{$PSU_WARN_STATUS:"notFunctioning"}','6','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3857','10220','{$PSU_WARN_STATUS:"warning"}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3858','10220','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3859','10220','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3860','10220','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3861','10220','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3862','10220','{$TEMP_CRIT_STATUS}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3863','10220','{$TEMP_DISASTER_STATUS}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3864','10220','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3865','10220','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3866','10220','{$TEMP_WARN_STATUS}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3867','10218','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3868','10218','{$FAN_CRIT_STATUS:"critical"}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3869','10218','{$FAN_CRIT_STATUS:"shutdown"}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3870','10218','{$FAN_WARN_STATUS:"notFunctioning"}','6','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3871','10218','{$FAN_WARN_STATUS:"warning"}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3872','10218','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3873','10218','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3874','10218','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3875','10218','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3876','10218','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3877','10218','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3878','10218','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3879','10218','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3880','10218','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3881','10218','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3882','10218','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3883','10218','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3884','10218','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3885','10218','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3886','10218','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3887','10218','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3888','10218','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3889','10218','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3890','10218','{$PSU_CRIT_STATUS:"critical"}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3891','10218','{$PSU_CRIT_STATUS:"shutdown"}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3892','10218','{$PSU_WARN_STATUS:"notFunctioning"}','6','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3893','10218','{$PSU_WARN_STATUS:"warning"}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3894','10218','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3895','10218','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3896','10218','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3897','10218','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3898','10218','{$TEMP_CRIT_STATUS}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3899','10218','{$TEMP_DISASTER_STATUS}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3900','10218','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3901','10218','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3902','10218','{$TEMP_WARN_STATUS}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3903','10253','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3904','10253','{$FAN_CRIT_STATUS:"critical"}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3905','10253','{$FAN_CRIT_STATUS:"shutdown"}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3906','10253','{$FAN_WARN_STATUS:"notFunctioning"}','6','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3907','10253','{$FAN_WARN_STATUS:"warning"}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3908','10253','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3909','10253','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3910','10253','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3911','10253','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3912','10253','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3913','10253','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3914','10253','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3915','10253','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3916','10253','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3917','10253','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3918','10253','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3919','10253','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3920','10253','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3921','10253','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3922','10253','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3923','10253','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3924','10253','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3925','10253','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3926','10253','{$PSU_CRIT_STATUS:"critical"}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3927','10253','{$PSU_CRIT_STATUS:"shutdown"}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3928','10253','{$PSU_WARN_STATUS:"notFunctioning"}','6','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3929','10253','{$PSU_WARN_STATUS:"warning"}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3930','10253','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3931','10253','{$TEMP_CRIT}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3932','10253','{$TEMP_CRIT:"CPU"}','75','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3933','10253','{$TEMP_CRIT_LOW}','5','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3934','10253','{$TEMP_CRIT_STATUS}','3','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3935','10253','{$TEMP_DISASTER_STATUS}','4','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3936','10253','{$TEMP_WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3937','10253','{$TEMP_WARN:"CPU"}','70','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3938','10253','{$TEMP_WARN_STATUS}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3939','10221','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3940','10221','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3941','10221','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3942','10221','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3943','10221','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3944','10221','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3945','10221','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3946','10221','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3947','10221','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3948','10221','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3949','10221','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3950','10221','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3951','10221','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3952','10221','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3953','10221','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3954','10221','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3955','10221','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3956','10221','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3957','10222','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3958','10222','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3959','10222','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3960','10222','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3961','10222','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3962','10222','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3963','10222','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3964','10222','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3965','10222','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3966','10222','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3967','10222','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3968','10222','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3969','10222','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3970','10222','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3971','10222','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3972','10222','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3973','10222','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3974','10222','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3975','10223','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3976','10223','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3977','10223','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3978','10223','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3979','10223','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3980','10223','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3981','10223','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3982','10223','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3983','10223','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3984','10223','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3985','10223','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3986','10223','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3987','10223','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3988','10223','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3989','10223','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3990','10223','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3991','10223','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3992','10223','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3993','10224','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3994','10224','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3995','10224','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3996','10224','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3997','10224','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3998','10224','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('3999','10224','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4000','10224','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4001','10224','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4002','10224','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4003','10224','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4004','10224','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4005','10224','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4006','10224','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4007','10224','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4008','10224','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4009','10224','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4010','10224','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4011','10226','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4012','10226','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4013','10226','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4014','10226','{$IF.UTIL.MAX}','95','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4015','10226','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4016','10226','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4017','10226','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4018','10226','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4019','10226','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4020','10226','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4021','10226','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4022','10226','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4023','10226','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4024','10226','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4025','10226','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4026','10226','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4027','10227','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4028','10227','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4029','10227','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4030','10227','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4031','10227','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4032','10227','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4033','10227','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4034','10227','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4035','10227','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4036','10227','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4037','10227','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4038','10227','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4039','10227','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4040','10227','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4041','10227','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4042','10227','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4043','10227','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4044','10227','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4045','10250','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4046','10250','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4047','10250','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4048','10250','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4049','10250','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4050','10250','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4051','10250','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4052','10250','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4053','10250','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4054','10250','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4055','10250','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4056','10250','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4057','10250','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4058','10250','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4059','10250','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4060','10250','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4061','10250','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4062','10250','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4063','10229','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4064','10229','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4065','10229','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4066','10229','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4067','10229','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4068','10229','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4069','10229','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4070','10229','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4071','10229','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4072','10229','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4073','10229','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4074','10229','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4075','10229','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4076','10229','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4077','10229','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4078','10229','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4079','10229','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4080','10229','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4081','10230','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4082','10230','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4083','10230','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4084','10230','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4085','10230','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4086','10230','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4087','10230','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4088','10230','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4089','10230','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4090','10230','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4091','10230','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4092','10230','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4093','10230','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4094','10230','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4095','10230','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4096','10230','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4097','10230','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4098','10230','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4099','10231','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4100','10231','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4101','10231','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4102','10231','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4103','10231','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4104','10231','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4105','10231','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4106','10231','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4107','10231','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4108','10231','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4109','10231','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4110','10231','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4111','10231','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4112','10231','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4113','10231','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4114','10231','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4115','10231','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4116','10231','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4117','10449','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4118','10449','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4119','10449','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4120','10449','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4121','10449','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4122','10449','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4123','10449','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4124','10449','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4125','10449','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4126','10449','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4127','10449','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4128','10449','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4129','10449','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4130','10449','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4131','10449','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4132','10449','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4133','10449','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4134','10449','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4135','10450','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4136','10450','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4137','10450','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4138','10450','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4139','10450','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4140','10450','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4141','10450','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4142','10450','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4143','10450','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4144','10450','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4145','10450','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4146','10450','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4147','10450','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4148','10450','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4149','10450','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4150','10450','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4151','10450','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4152','10450','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4153','10451','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4154','10451','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4155','10451','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4156','10451','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4157','10451','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4158','10451','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4159','10451','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4160','10451','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4161','10451','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4162','10451','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4163','10451','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4164','10451','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4165','10451','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4166','10451','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4167','10451','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4168','10451','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4169','10451','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4170','10451','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4171','10452','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4172','10452','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4173','10452','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4174','10452','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4175','10452','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4176','10452','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4177','10452','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4178','10452','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4179','10452','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4180','10452','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4181','10452','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4182','10452','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4183','10452','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4184','10452','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4185','10452','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4186','10452','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4187','10452','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4188','10452','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4189','10453','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4190','10453','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4191','10453','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4192','10453','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4193','10453','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4194','10453','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4195','10453','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4196','10453','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4197','10453','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4198','10453','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4199','10453','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4200','10453','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4201','10453','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4202','10453','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4203','10453','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4204','10453','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4205','10453','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4206','10453','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4207','10454','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4208','10454','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4209','10454','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4210','10454','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4211','10454','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4212','10454','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4213','10454','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4214','10454','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4215','10454','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4216','10454','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4217','10454','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4218','10454','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4219','10454','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4220','10454','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4221','10454','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4222','10454','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4223','10454','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4224','10454','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4225','10455','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4226','10455','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4227','10455','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4228','10455','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4229','10455','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4230','10455','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4231','10455','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4232','10455','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4233','10455','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4234','10455','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4235','10455','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4236','10455','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4237','10455','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4238','10455','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4239','10455','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4240','10455','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4241','10455','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4242','10455','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4243','10456','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4244','10456','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4245','10456','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4246','10456','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4247','10456','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4248','10456','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4249','10456','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4250','10456','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4251','10456','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4252','10456','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4253','10456','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4254','10456','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4255','10456','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4256','10456','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4257','10456','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4258','10456','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4259','10456','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4260','10456','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4261','10457','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4262','10457','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4263','10457','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4264','10457','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4265','10457','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4266','10457','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4267','10457','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4268','10457','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4269','10457','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4270','10457','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4271','10457','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4272','10457','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4273','10457','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4274','10457','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4275','10457','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4276','10457','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4277','10457','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4278','10457','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4279','10458','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4280','10458','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4281','10458','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4282','10458','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4283','10458','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4284','10458','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4285','10458','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4286','10458','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4287','10458','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4288','10458','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4289','10458','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4290','10458','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4291','10458','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4292','10458','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4293','10458','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4294','10458','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4295','10458','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4296','10458','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4297','10459','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4298','10459','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4299','10459','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4300','10459','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4301','10459','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4302','10459','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4303','10459','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4304','10459','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4305','10459','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4306','10459','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4307','10459','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4308','10459','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4309','10459','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4310','10459','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4311','10459','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4312','10459','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4313','10459','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4314','10459','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4315','10460','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4316','10460','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4317','10460','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4318','10460','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4319','10460','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4320','10460','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4321','10460','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4322','10460','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4323','10460','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4324','10460','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4325','10460','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4326','10460','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4327','10460','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4328','10460','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4329','10460','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4330','10460','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4331','10460','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4332','10460','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4333','10461','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4334','10461','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4335','10461','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4336','10461','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4337','10461','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4338','10461','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4339','10461','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4340','10461','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4341','10461','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4342','10461','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4343','10461','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4344','10461','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4345','10461','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4346','10461','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4347','10461','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4348','10461','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4349','10461','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4350','10461','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4351','10462','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4352','10462','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4353','10462','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4354','10462','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4355','10462','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4356','10462','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4357','10462','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4358','10462','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4359','10462','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4360','10462','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4361','10462','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4362','10462','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4363','10462','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4364','10462','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4365','10462','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4366','10462','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4367','10462','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4368','10462','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4369','10463','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4370','10463','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4371','10463','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4372','10463','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4373','10463','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4374','10463','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4375','10463','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4376','10463','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4377','10463','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4378','10463','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4379','10463','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4380','10463','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4381','10463','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4382','10463','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4383','10463','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4384','10463','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4385','10463','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4386','10463','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4387','10464','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4388','10464','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4389','10464','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4390','10464','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4391','10464','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4392','10464','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4393','10464','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4394','10464','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4395','10464','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4396','10464','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4397','10464','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4398','10464','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4399','10464','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4400','10464','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4401','10464','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4402','10464','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4403','10464','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4404','10464','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4405','10465','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4406','10465','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4407','10465','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4408','10465','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4409','10465','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4410','10465','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4411','10465','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4412','10465','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4413','10465','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4414','10465','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4415','10465','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4416','10465','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4417','10465','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4418','10465','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4419','10465','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4420','10465','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4421','10465','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4422','10465','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4423','10466','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4424','10466','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4425','10466','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4426','10466','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4427','10466','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4428','10466','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4429','10466','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4430','10466','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4431','10466','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4432','10466','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4433','10466','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4434','10466','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4435','10466','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4436','10466','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4437','10466','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4438','10466','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4439','10466','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4440','10466','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4441','10467','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4442','10467','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4443','10467','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4444','10467','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4445','10467','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4446','10467','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4447','10467','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4448','10467','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4449','10467','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4450','10467','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4451','10467','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4452','10467','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4453','10467','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4454','10467','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4455','10467','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4456','10467','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4457','10467','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4458','10467','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4459','10468','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4460','10468','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4461','10468','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4462','10468','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4463','10468','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4464','10468','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4465','10468','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4466','10468','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4467','10468','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4468','10468','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4469','10468','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4470','10468','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4471','10468','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4472','10468','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4473','10468','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4474','10468','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4475','10468','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4476','10468','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4477','10469','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4478','10469','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4479','10469','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4480','10469','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4481','10469','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4482','10469','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4483','10469','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4484','10469','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4485','10469','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4486','10469','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4487','10469','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4488','10469','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4489','10469','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4490','10469','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4491','10469','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4492','10469','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4493','10469','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4494','10469','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4495','10470','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4496','10470','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4497','10470','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4498','10470','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4499','10470','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4500','10470','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4501','10470','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4502','10470','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4503','10470','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4504','10470','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4505','10470','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4506','10470','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4507','10470','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4508','10470','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4509','10470','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4510','10470','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4511','10470','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4512','10470','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4513','10471','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4514','10471','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4515','10471','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4516','10471','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4517','10471','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4518','10471','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4519','10471','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4520','10471','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4521','10471','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4522','10471','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4523','10471','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4524','10471','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4525','10471','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4526','10471','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4527','10471','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4528','10471','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4529','10471','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4530','10471','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4531','10472','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4532','10472','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4533','10472','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4534','10472','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4535','10472','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4536','10472','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4537','10472','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4538','10472','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4539','10472','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4540','10472','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4541','10472','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4542','10472','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4543','10472','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4544','10472','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4545','10472','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4546','10472','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4547','10472','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4548','10472','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4549','10473','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4550','10473','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4551','10473','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4552','10473','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4553','10473','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4554','10473','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4555','10473','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4556','10473','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4557','10473','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4558','10473','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4559','10473','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4560','10473','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4561','10473','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4562','10473','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4563','10473','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4564','10473','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4565','10473','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4566','10473','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4567','10474','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4568','10474','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4569','10474','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4570','10474','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4571','10474','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4572','10474','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4573','10474','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4574','10474','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4575','10474','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4576','10474','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4577','10474','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4578','10474','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4579','10474','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4580','10474','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4581','10474','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4582','10474','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4583','10474','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4584','10474','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4585','10475','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4586','10475','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4587','10475','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4588','10475','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4589','10475','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4590','10475','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4591','10475','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4592','10475','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4593','10475','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4594','10475','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4595','10475','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4596','10475','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4597','10475','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4598','10475','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4599','10475','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4600','10475','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4601','10475','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4602','10475','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4603','10476','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4604','10476','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4605','10476','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4606','10476','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4607','10476','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4608','10476','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4609','10476','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4610','10476','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4611','10476','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4612','10476','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4613','10476','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4614','10476','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4615','10476','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4616','10476','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4617','10476','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4618','10476','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4619','10476','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4620','10476','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4621','10477','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4622','10477','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4623','10477','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4624','10477','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4625','10477','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4626','10477','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4627','10477','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4628','10477','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4629','10477','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4630','10477','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4631','10477','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4632','10477','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4633','10477','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4634','10477','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4635','10477','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4636','10477','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4637','10477','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4638','10477','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4639','10478','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4640','10478','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4641','10478','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4642','10478','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4643','10478','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4644','10478','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4645','10478','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4646','10478','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4647','10478','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4648','10478','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4649','10478','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4650','10478','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4651','10478','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4652','10478','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4653','10478','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4654','10478','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4655','10478','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4656','10478','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4657','10479','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4658','10479','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4659','10479','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4660','10479','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4661','10479','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4662','10479','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4663','10479','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4664','10479','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4665','10479','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4666','10479','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4667','10479','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4668','10479','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4669','10479','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4670','10479','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4671','10479','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4672','10479','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4673','10479','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4674','10479','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4675','10480','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4676','10480','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4677','10480','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4678','10480','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4679','10480','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4680','10480','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4681','10480','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4682','10480','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4683','10480','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4684','10480','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4685','10480','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4686','10480','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4687','10480','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4688','10480','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4689','10480','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4690','10480','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4691','10480','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4692','10480','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4693','10481','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4694','10481','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4695','10481','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4696','10481','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4697','10481','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4698','10481','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4699','10481','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4700','10481','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4701','10481','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4702','10481','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4703','10481','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4704','10481','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4705','10481','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4706','10481','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4707','10481','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4708','10481','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4709','10481','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4710','10481','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4711','10482','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4712','10482','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4713','10482','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4714','10482','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4715','10482','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4716','10482','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4717','10482','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4718','10482','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4719','10482','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4720','10482','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4721','10482','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4722','10482','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4723','10482','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4724','10482','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4725','10482','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4726','10482','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4727','10482','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4728','10482','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4729','10483','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4730','10483','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4731','10483','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4732','10483','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4733','10483','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4734','10483','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4735','10483','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4736','10483','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4737','10483','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4738','10483','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4739','10483','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4740','10483','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4741','10483','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4742','10483','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4743','10483','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4744','10483','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4745','10483','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4746','10483','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4747','10484','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4748','10484','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4749','10484','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4750','10484','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4751','10484','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4752','10484','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4753','10484','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4754','10484','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4755','10484','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4756','10484','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4757','10484','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4758','10484','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4759','10484','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4760','10484','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4761','10484','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4762','10484','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4763','10484','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4764','10484','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4765','10485','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4766','10485','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4767','10485','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4768','10485','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4769','10485','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4770','10485','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4771','10485','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4772','10485','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4773','10485','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4774','10485','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4775','10485','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4776','10485','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4777','10485','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4778','10485','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4779','10485','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4780','10485','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4781','10485','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4782','10485','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4783','10486','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4784','10486','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4785','10486','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4786','10486','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4787','10486','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4788','10486','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4789','10486','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4790','10486','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4791','10486','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4792','10486','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4793','10486','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4794','10486','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4795','10486','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4796','10486','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4797','10486','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4798','10486','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4799','10486','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4800','10486','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4801','10487','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4802','10487','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4803','10487','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4804','10487','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4805','10487','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4806','10487','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4807','10487','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4808','10487','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4809','10487','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4810','10487','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4811','10487','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4812','10487','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4813','10487','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4814','10487','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4815','10487','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4816','10487','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4817','10487','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4818','10487','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4819','10488','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4820','10488','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4821','10488','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4822','10488','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4823','10488','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4824','10488','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4825','10488','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4826','10488','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4827','10488','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4828','10488','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4829','10488','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4830','10488','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4831','10488','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4832','10488','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4833','10488','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4834','10488','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4835','10488','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4836','10488','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4837','10489','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4838','10489','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4839','10489','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4840','10489','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4841','10489','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4842','10489','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4843','10489','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4844','10489','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4845','10489','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4846','10489','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4847','10489','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4848','10489','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4849','10489','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4850','10489','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4851','10489','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4852','10489','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4853','10489','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4854','10489','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4855','10490','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4856','10490','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4857','10490','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4858','10490','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4859','10490','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4860','10490','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4861','10490','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4862','10490','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4863','10490','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4864','10490','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4865','10490','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4866','10490','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4867','10490','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4868','10490','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4869','10490','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4870','10490','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4871','10490','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4872','10490','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4873','10491','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4874','10491','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4875','10491','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4876','10491','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4877','10491','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4878','10491','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4879','10491','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4880','10491','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4881','10491','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4882','10491','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4883','10491','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4884','10491','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4885','10491','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4886','10491','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4887','10491','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4888','10491','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4889','10491','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4890','10491','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4891','10492','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4892','10492','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4893','10492','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4894','10492','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4895','10492','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4896','10492','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4897','10492','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4898','10492','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4899','10492','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4900','10492','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4901','10492','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4902','10492','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4903','10492','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4904','10492','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4905','10492','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4906','10492','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4907','10492','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4908','10492','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4909','10493','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4910','10493','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4911','10493','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4912','10493','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4913','10493','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4914','10493','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4915','10493','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4916','10493','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4917','10493','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4918','10493','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4919','10493','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4920','10493','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4921','10493','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4922','10493','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4923','10493','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4924','10493','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4925','10493','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4926','10493','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4927','10494','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4928','10494','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4929','10494','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4930','10494','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4931','10494','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4932','10494','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4933','10494','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4934','10494','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4935','10494','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4936','10494','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4937','10494','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4938','10494','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4939','10494','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4940','10494','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4941','10494','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4942','10494','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4943','10494','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4944','10494','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4945','10495','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4946','10495','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4947','10495','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4948','10495','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4949','10495','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4950','10495','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4951','10495','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4952','10495','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4953','10495','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4954','10495','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4955','10495','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4956','10495','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4957','10495','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4958','10495','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4959','10495','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4960','10495','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4961','10495','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4962','10495','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4963','10496','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4964','10496','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4965','10496','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4966','10496','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4967','10496','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4968','10496','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4969','10496','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4970','10496','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4971','10496','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4972','10496','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4973','10496','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4974','10496','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4975','10496','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4976','10496','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4977','10496','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4978','10496','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4979','10496','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4980','10496','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4981','10497','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4982','10497','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4983','10497','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4984','10497','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4985','10497','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4986','10497','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4987','10497','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4988','10497','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4989','10497','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4990','10497','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4991','10497','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4992','10497','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4993','10497','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4994','10497','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4995','10497','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4996','10497','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4997','10497','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4998','10497','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('4999','10498','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5000','10498','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5001','10498','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5002','10498','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5003','10498','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5004','10498','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5005','10498','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5006','10498','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5007','10498','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5008','10498','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5009','10498','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5010','10498','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5011','10498','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5012','10498','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5013','10498','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5014','10498','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5015','10498','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5016','10498','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5017','10499','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5018','10499','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5019','10499','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5020','10499','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5021','10499','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5022','10499','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5023','10499','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5024','10499','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5025','10499','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5026','10499','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5027','10499','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5028','10499','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5029','10499','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5030','10499','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5031','10499','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5032','10499','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5033','10499','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5034','10499','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5035','10500','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5036','10500','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5037','10500','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5038','10500','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5039','10500','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5040','10500','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5041','10500','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5042','10500','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5043','10500','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5044','10500','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5045','10500','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5046','10500','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5047','10500','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5048','10500','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5049','10500','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5050','10500','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5051','10500','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5052','10500','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5053','10501','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5054','10501','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5055','10501','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5056','10501','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5057','10501','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5058','10501','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5059','10501','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5060','10501','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5061','10501','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5062','10501','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5063','10501','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5064','10501','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5065','10501','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5066','10501','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5067','10501','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5068','10501','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5069','10501','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5070','10501','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5071','10502','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5072','10502','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5073','10502','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5074','10502','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5075','10502','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5076','10502','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5077','10502','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5078','10502','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5079','10502','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5080','10502','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5081','10502','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5082','10502','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5083','10502','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5084','10502','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5085','10502','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5086','10502','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5087','10502','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5088','10502','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5089','10233','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5090','10233','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5091','10233','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5092','10233','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5093','10233','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5094','10233','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5095','10233','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5096','10233','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5097','10233','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5098','10233','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5099','10233','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5100','10233','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5101','10233','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5102','10233','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5103','10233','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5104','10233','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5105','10233','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5106','10233','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5107','10234','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5108','10234','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5109','10234','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5110','10234','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5111','10234','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5112','10234','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5113','10234','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5114','10234','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5115','10234','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5116','10234','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5117','10234','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5118','10234','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5119','10234','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5120','10234','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5121','10234','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5122','10234','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5123','10234','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5124','10234','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5125','10235','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5126','10235','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5127','10235','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5128','10235','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5129','10235','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5130','10235','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5131','10235','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5132','10235','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5133','10235','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5134','10235','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5135','10235','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5136','10235','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5137','10235','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5138','10235','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5139','10235','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5140','10235','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5141','10235','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5142','10235','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5143','10236','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5144','10236','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5145','10236','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5146','10236','{$IF.UTIL.MAX}','95','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5147','10236','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5148','10236','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5149','10236','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5150','10236','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5151','10236','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5152','10236','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5153','10236','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5154','10236','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5155','10236','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5156','10236','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5157','10236','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5158','10236','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5159','10237','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5160','10237','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5161','10237','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5162','10237','{$IF.UTIL.MAX}','95','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5163','10237','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5164','10237','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5165','10237','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5166','10237','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5167','10237','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5168','10237','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5169','10237','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5170','10237','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5171','10237','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5172','10237','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5173','10237','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5174','10237','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5175','10076','{$AGENT.TIMEOUT}','3m','Timeout after which agent is considered unavailable. Works only for agents reachable from Zabbix server/proxy (passive mode).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5176','10075','{$AGENT.TIMEOUT}','3m','Timeout after which agent is considered unavailable. Works only for agents reachable from Zabbix server/proxy (passive mode).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5177','10077','{$AGENT.TIMEOUT}','3m','Timeout after which agent is considered unavailable. Works only for agents reachable from Zabbix server/proxy (passive mode).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5178','10001','{$AGENT.TIMEOUT}','3m','Timeout after which agent is considered unavailable. Works only for agents reachable from Zabbix server/proxy (passive mode).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5179','10001','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5180','10001','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5181','10001','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5182','10001','{$KERNEL.MAXFILES.MIN}','256','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5183','10001','{$KERNEL.MAXPROC.MIN}','1024','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5184','10001','{$LOAD_AVG_PER_CPU.MAX.WARN}','1.5','Load per CPU considered sustainable. Tune if needed.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5185','10001','{$MEMORY.AVAILABLE.MIN}','20M','This macro is used as a threshold in memory available trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5186','10001','{$MEMORY.UTIL.MAX}','90','This macro is used as a threshold in memory utilization trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5187','10001','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5188','10001','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9A-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5189','10001','{$SWAP.PFREE.MIN.WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5190','10001','{$SYSTEM.FUZZYTIME.MAX}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5191','10001','{$VFS.DEV.DEVNAME.MATCHES}','.+','This macro is used in block devices discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5192','10001','{$VFS.DEV.DEVNAME.NOT_MATCHES}','^(loop[0-9]*|sd[a-z][0-9]+|nbd[0-9]+|sr[0-9]+|fd[0-9]+|dm-[0-9]+|ram[0-9]+|ploop[a-z0-9]+|md[0-9]*|hcp[0-9]*|zram[0-9]*)','This macro is used in block devices discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5193','10001','{$VFS.DEV.READ.AWAIT.WARN}','20','Disk read average response time (in ms) before the trigger would fire','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5194','10001','{$VFS.DEV.WRITE.AWAIT.WARN}','20','Disk write average response time (in ms) before the trigger would fire','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5195','10001','{$VFS.FS.FSNAME.MATCHES}','.+','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5196','10001','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5197','10001','{$VFS.FS.FSTYPE.MATCHES}','^(btrfs|ext2|ext3|ext4|reiser|xfs|ffs|ufs|jfs|jfs2|vxfs|hfs|apfs|refs|ntfs|fat32|zfs)$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5198','10001','{$VFS.FS.FSTYPE.NOT_MATCHES}','^\\s$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5199','10001','{$VFS.FS.INODE.PFREE.MIN.CRIT}','10','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5200','10001','{$VFS.FS.INODE.PFREE.MIN.WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5201','10001','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5202','10001','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5203','10343','{$AGENT.NODATA_TIMEOUT}','30m','No data timeout for active agents. Consider to keep it relatively high.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5204','10343','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5205','10343','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5206','10343','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5207','10343','{$KERNEL.MAXFILES.MIN}','256','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5208','10343','{$KERNEL.MAXPROC.MIN}','1024','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5209','10343','{$LOAD_AVG_PER_CPU.MAX.WARN}','1.5','Load per CPU considered sustainable. Tune if needed.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5210','10343','{$MEMORY.AVAILABLE.MIN}','20M','This macro is used as a threshold in memory available trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5211','10343','{$MEMORY.UTIL.MAX}','90','This macro is used as a threshold in memory utilization trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5212','10343','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5213','10343','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9A-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5214','10343','{$SWAP.PFREE.MIN.WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5215','10343','{$SYSTEM.FUZZYTIME.MAX}','60','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5216','10343','{$VFS.DEV.DEVNAME.MATCHES}','.+','This macro is used in block devices discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5217','10343','{$VFS.DEV.DEVNAME.NOT_MATCHES}','^(loop[0-9]*|sd[a-z][0-9]+|nbd[0-9]+|sr[0-9]+|fd[0-9]+|dm-[0-9]+|ram[0-9]+|ploop[a-z0-9]+|md[0-9]*|hcp[0-9]*|zram[0-9]*)','This macro is used in block devices discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5218','10343','{$VFS.DEV.READ.AWAIT.WARN}','20','Disk read average response time (in ms) before the trigger would fire','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5219','10343','{$VFS.DEV.WRITE.AWAIT.WARN}','20','Disk write average response time (in ms) before the trigger would fire','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5220','10343','{$VFS.FS.FSNAME.MATCHES}','.+','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5221','10343','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5222','10343','{$VFS.FS.FSTYPE.MATCHES}','^(btrfs|ext2|ext3|ext4|reiser|xfs|ffs|ufs|jfs|jfs2|vxfs|hfs|apfs|refs|ntfs|fat32|zfs)$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5223','10343','{$VFS.FS.FSTYPE.NOT_MATCHES}','^\\s$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5224','10343','{$VFS.FS.INODE.PFREE.MIN.CRIT}','10','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5225','10343','{$VFS.FS.INODE.PFREE.MIN.WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5226','10343','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5227','10343','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5228','10248','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5229','10248','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5230','10248','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5231','10248','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5232','10248','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5233','10248','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5234','10248','{$LOAD_AVG_PER_CPU.MAX.WARN}','1.5','Load per CPU considered sustainable. Tune if needed.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5235','10248','{$MEMORY.AVAILABLE.MIN}','20M','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5236','10248','{$MEMORY.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5237','10248','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5238','10248','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5239','10248','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5240','10248','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5241','10248','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5242','10248','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5243','10248','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5244','10248','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5245','10248','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5246','10248','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5247','10248','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5248','10248','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5249','10248','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5250','10248','{$SWAP.PFREE.MIN.WARN}','50','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5251','10248','{$VFS.DEV.DEVNAME.MATCHES}','.+','This macro is used in block devices discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5252','10248','{$VFS.DEV.DEVNAME.NOT_MATCHES}','^(loop[0-9]*|sd[a-z][0-9]+|nbd[0-9]+|sr[0-9]+|fd[0-9]+|dm-[0-9]+|ram[0-9]+|ploop[a-z0-9]+|md[0-9]*|hcp[0-9]*|zram[0-9]*)','This macro is used in block devices discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5253','10248','{$VFS.FS.FSNAME.MATCHES}','.+','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5254','10248','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5255','10248','{$VFS.FS.FSTYPE.MATCHES}','.*(\\.4|\\.9|hrStorageFixedDisk|hrStorageFlashMemory)$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5256','10248','{$VFS.FS.FSTYPE.NOT_MATCHES}','^\\s$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5257','10248','{$VFS.FS.INODE.PFREE.MIN.CRIT}','10','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5258','10248','{$VFS.FS.INODE.PFREE.MIN.WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5259','10248','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5260','10248','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5261','10079','{$AGENT.TIMEOUT}','3m','Timeout after which agent is considered unavailable. Works only for agents reachable from Zabbix server/proxy (passive mode).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5262','10074','{$AGENT.TIMEOUT}','3m','Timeout after which agent is considered unavailable. Works only for agents reachable from Zabbix server/proxy (passive mode).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5263','10078','{$AGENT.TIMEOUT}','3m','Timeout after which agent is considered unavailable. Works only for agents reachable from Zabbix server/proxy (passive mode).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5264','10081','{$AGENT.TIMEOUT}','3m','Timeout after which agent is considered unavailable. Works only for agents reachable from Zabbix server/proxy (passive mode).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5265','10081','{$CPU.INTERRUPT.CRIT.MAX}','50','The critical threshold of the % Interrupt Time counter.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5266','10081','{$CPU.PRIV.CRIT.MAX}','30','The threshold of the % Privileged Time counter.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5267','10081','{$CPU.QUEUE.CRIT.MAX}','3','The threshold of the Processor Queue Length counter.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5268','10081','{$CPU.UTIL.CRIT}','90','The critical threshold of the CPU utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5269','10081','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5270','10081','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5271','10081','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5272','10081','{$MEM.PAGE_SEC.CRIT.MAX}','1000','The warning threshold of the Memory Pages/sec counter.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5273','10081','{$MEM.PAGE_TABLE_CRIT.MIN}','5000','The warning threshold of the Free System Page Table Entries counter.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5274','10081','{$MEMORY.UTIL.MAX}','90','The warning threshold of the Memory util item.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5275','10081','{$NET.IF.IFALIAS.MATCHES}','.*','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5276','10081','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_THIS','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5277','10081','{$NET.IF.IFDESCR.MATCHES}','.*','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5278','10081','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_THIS','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5279','10081','{$NET.IF.IFNAME.MATCHES}','.*','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5280','10081','{$NET.IF.IFNAME.NOT_MATCHES}','Miniport|Virtual|Teredo|Kernel|Loopback|Bluetooth|HTTPS|6to4|QoS|Layer','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5281','10081','{$SERVICE.NAME.MATCHES}','^.*$','This macro is used in Service discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5282','10081','{$SERVICE.NAME.NOT_MATCHES}','^(?:RemoteRegistry|MMCSS|gupdate|SysmonLog|clr_optimization_v.+|sppsvc|gpsvc|Pml Driver HPZ12|Net Driver HPZ12|MapsBroker|IntelAudioService|Intel\\(R\\) TPM Provisioning Service|dbupdate|DoSvc|CDPUserSvc_.+|WpnUserService_.+|OneSyncSvc_.+|WbioSrvc|BITS|tiledatamodelsvc|GISvc|ShellHWDetection|TrustedInstaller|TabletInputService|CDPSvc|wuauserv)$','This macro is used in Service discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5283','10081','{$SERVICE.STARTUPNAME.MATCHES}','^(?:automatic|automatic delayed)$','This macro is used in Service discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5284','10081','{$SERVICE.STARTUPNAME.NOT_MATCHES}','^(?:manual|disabled)$','This macro is used in Service discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5285','10081','{$SWAP.PFREE.MIN.WARN}','20','The warning threshold of the minimum free swap.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5286','10081','{$SYSTEM.FUZZYTIME.MAX}','60','The threshold for difference of system time in seconds.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5287','10081','{$VFS.DEV.DEVNAME.MATCHES}','.*','This macro is used in physical disks discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5288','10081','{$VFS.DEV.DEVNAME.NOT_MATCHES}','_Total','This macro is used in physical disks discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5289','10081','{$VFS.DEV.READ.AWAIT.WARN}','0.02','Disk read average response time (in s) before the trigger would fire.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5290','10081','{$VFS.DEV.UTIL.MAX.WARN}','95','The warning threshold of disk time utilization in percent.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5291','10081','{$VFS.DEV.WRITE.AWAIT.WARN}','0.02','Disk write average response time (in s) before the trigger would fire.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5292','10081','{$VFS.FS.FSDRIVETYPE.MATCHES}','fixed','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5293','10081','{$VFS.FS.FSDRIVETYPE.NOT_MATCHES}','^\\s$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5294','10081','{$VFS.FS.FSNAME.MATCHES}','.*','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5295','10081','{$VFS.FS.FSNAME.NOT_MATCHES}','^(?:/dev|/sys|/run|/proc|.+/shm$)','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5296','10081','{$VFS.FS.FSTYPE.MATCHES}','.*','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5297','10081','{$VFS.FS.FSTYPE.NOT_MATCHES}','^\\s$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5298','10081','{$VFS.FS.PUSED.MAX.CRIT}','90','The critical threshold of the filesystem utilization in percent.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5299','10081','{$VFS.FS.PUSED.MAX.WARN}','80','The warning threshold of the filesystem utilization in percent.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5300','10351','{$AGENT.NODATA_TIMEOUT}','30m','No data timeout for active agents. Consider to keep it relatively high.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5301','10351','{$CPU.INTERRUPT.CRIT.MAX}','50','The critical threshold of the % Interrupt Time counter.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5302','10351','{$CPU.PRIV.CRIT.MAX}','30','The threshold of the % Privileged Time counter.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5303','10351','{$CPU.QUEUE.CRIT.MAX}','3','The threshold of the Processor Queue Length counter.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5304','10351','{$CPU.UTIL.CRIT}','90','The critical threshold of the CPU utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5305','10351','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5306','10351','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5307','10351','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5308','10351','{$MEM.PAGE_SEC.CRIT.MAX}','1000','The warning threshold of the Memory Pages/sec counter.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5309','10351','{$MEM.PAGE_TABLE_CRIT.MIN}','5000','The warning threshold of the Free System Page Table Entries counter.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5310','10351','{$MEMORY.UTIL.MAX}','90','The warning threshold of the Memory util item.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5311','10351','{$NET.IF.IFALIAS.MATCHES}','.*','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5312','10351','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_THIS','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5313','10351','{$NET.IF.IFDESCR.MATCHES}','.*','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5314','10351','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_THIS','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5315','10351','{$NET.IF.IFNAME.MATCHES}','.*','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5316','10351','{$NET.IF.IFNAME.NOT_MATCHES}','Miniport|Virtual|Teredo|Kernel|Loopback|Bluetooth|HTTPS|6to4|QoS|Layer','This macro is used in Network interface discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5317','10351','{$SERVICE.NAME.MATCHES}','^.*$','This macro is used in Service discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5318','10351','{$SERVICE.NAME.NOT_MATCHES}','^(?:RemoteRegistry|MMCSS|gupdate|SysmonLog|clr_optimization_v.+|sppsvc|gpsvc|Pml Driver HPZ12|Net Driver HPZ12|MapsBroker|IntelAudioService|Intel\\(R\\) TPM Provisioning Service|dbupdate|DoSvc|CDPUserSvc_.+|WpnUserService_.+|OneSyncSvc_.+|WbioSrvc|BITS|tiledatamodelsvc|GISvc|ShellHWDetection|TrustedInstaller|TabletInputService|CDPSvc|wuauserv)$','This macro is used in Service discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5319','10351','{$SERVICE.STARTUPNAME.MATCHES}','^(?:automatic|automatic delayed)$','This macro is used in Service discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5320','10351','{$SERVICE.STARTUPNAME.NOT_MATCHES}','^(?:manual|disabled)$','This macro is used in Service discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5321','10351','{$SWAP.PFREE.MIN.WARN}','20','The warning threshold of the minimum free swap.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5322','10351','{$SYSTEM.FUZZYTIME.MAX}','60','The threshold for difference of system time in seconds.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5323','10351','{$VFS.DEV.DEVNAME.MATCHES}','.*','This macro is used in physical disks discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5324','10351','{$VFS.DEV.DEVNAME.NOT_MATCHES}','_Total','This macro is used in physical disks discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5325','10351','{$VFS.DEV.READ.AWAIT.WARN}','0.02','Disk read average response time (in s) before the trigger would fire.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5326','10351','{$VFS.DEV.UTIL.MAX.WARN}','95','The warning threshold of disk time utilization in percent.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5327','10351','{$VFS.DEV.WRITE.AWAIT.WARN}','0.02','Disk write average response time (in s) before the trigger would fire.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5328','10351','{$VFS.FS.FSDRIVETYPE.MATCHES}','fixed','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5329','10351','{$VFS.FS.FSDRIVETYPE.NOT_MATCHES}','^\\s$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5330','10351','{$VFS.FS.FSNAME.MATCHES}','.*','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5331','10351','{$VFS.FS.FSNAME.NOT_MATCHES}','^(?:/dev|/sys|/run|/proc|.+/shm$)','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5332','10351','{$VFS.FS.FSTYPE.MATCHES}','.*','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5333','10351','{$VFS.FS.FSTYPE.NOT_MATCHES}','^\\s$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5334','10351','{$VFS.FS.PUSED.MAX.CRIT}','90','The critical threshold of the filesystem utilization in percent.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5335','10351','{$VFS.FS.PUSED.MAX.WARN}','80','The warning threshold of the filesystem utilization in percent.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5336','10249','{$CPU.UTIL.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5337','10249','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5338','10249','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5339','10249','{$IF.ERRORS.WARN}','2','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5340','10249','{$IF.UTIL.MAX}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5341','10249','{$IFCONTROL}','1','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5342','10249','{$MEMORY.NAME.MATCHES}','.*','This macro is used in memory discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5343','10249','{$MEMORY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in memory discovery. Can be overridden on the host or linked template level if you need to filter out results.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5344','10249','{$MEMORY.TYPE.MATCHES}','.*(\\.2|hrStorageRam)$','This macro is used in memory discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5345','10249','{$MEMORY.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in memory discovery. Can be overridden on the host or linked template level if you need to filter out results.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5346','10249','{$MEMORY.UTIL.MAX}','90','The warning threshold of the "Physical memory: Memory utilization" item.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5347','10249','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5348','10249','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5349','10249','{$NET.IF.IFALIAS.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5350','10249','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5351','10249','{$NET.IF.IFDESCR.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5352','10249','{$NET.IF.IFDESCR.NOT_MATCHES}','Miniport|Virtual|Teredo|Kernel|Loopback|Bluetooth|HTTPS|6to4|QoS|Layer|isatap|ISATAP','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5353','10249','{$NET.IF.IFNAME.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5354','10249','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5355','10249','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5356','10249','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5357','10249','{$NET.IF.IFTYPE.MATCHES}','.*','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5358','10249','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5359','10249','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5360','10249','{$VFS.FS.FSNAME.MATCHES}','.+','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5361','10249','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5362','10249','{$VFS.FS.FSTYPE.MATCHES}','.*(\\.4|\\.9|hrStorageFixedDisk|hrStorageFlashMemory)$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5363','10249','{$VFS.FS.FSTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5364','10249','{$VFS.FS.PUSED.MAX.CRIT}','90','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5365','10249','{$VFS.FS.PUSED.MAX.WARN}','80','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5366','10385','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5367','10385','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5368','10385','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5369','10378','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5370','10378','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5371','10378','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5372','10304','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5373','10304','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5374','10304','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5375','10255','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5376','10255','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5377','10255','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5378','10256','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5379','10256','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5380','10256','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5381','10258','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5382','10258','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5383','10258','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5384','10259','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5385','10259','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5386','10259','{$SNMP.TIMEOUT}','5m','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5387','10251','{$FAN_CRIT_STATUS}','3','The critical value of the FAN sensor for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5388','10251','{$ICMP_LOSS_WARN}','20','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5389','10251','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5390','10507','{$KUBE.NODES.ENDPOINT.NAME}','zabbix-zabbix-helm-chrt-agent','Kubernetes nodes endpoint name. See kubectl -n monitoring get ep','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5391','10001','{$IF.UTIL.MAX}','90','This macro is used as a threshold in interface utilization trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5392','10276','{$IF.UTIL.MAX}','90','This macro is used as a threshold in interface utilization trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5393','10343','{$IF.UTIL.MAX}','90','This macro is used as a threshold in interface utilization trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5394','10342','{$IF.UTIL.MAX}','90','This macro is used as a threshold in interface utilization trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5395','10300','{$RABBITMQ.API.SCHEME}','http','Request scheme which may be http or https','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5396','10301','{$RABBITMQ.API.SCHEME}','http','Request scheme which may be http or https','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5398','10383','{$SMART.DISK.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in the filter of attribute and disk discoveries. It can be overridden on the host or linked on the template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5402','10384','{$SMART.DISK.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in the filter of attribute and disk discoveries. It can be overridden on the host or linked on the template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5405','10169','{$JMX.MEM.POOL.NAME.MATCHES}','Old Gen|G1|Perm Gen|Code Cache|Tenured Gen','This macro used in memory pool discovery as a filter.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5406','10169','{$JMX.PASSWORD}','','JMX password.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5407','10169','{$JMX.USER}','','JMX username.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5408','10505','{$KUBE.API.TOKEN}','','API Authorization Token','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5409','10506','{$KUBE.KUBELET.CADVISOR.ENDPOINT}','/metrics/cadvisor','cAdvisor metrics from Kubelet /metrics/cadvisor endpoint','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5410','10506','{$KUBE.KUBELET.METRIC.ENDPOINT}','/metrics','Kubelet /metrics endpoint','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5411','10506','{$KUBE.KUBELET.PODS.ENDPOINT}','/pods','Kubelet /pods endpoint','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5412','10507','{$KUBE.API.ENDPOINT.URL}','https://localhost:6443/api','Kubernetes API endpoint URL in the format ://:/api','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5413','10509','{$KUBE.API.TOKEN}','','API Authorization Token','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5414','10510','{$KUBE.API.COMPONENTSTATUSES.ENDPOINT}','/api/v1/componentstatuses','Kubernetes API componentstatuses endpoint /api/v1/componentstatuses','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5415','10510','{$KUBE.API.LIVEZ.ENDPOINT}','/livez','Kubernetes API livez endpoint /livez','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5416','10510','{$KUBE.API.READYZ.ENDPOINT}','/readyz','Kubernetes API readyz endpoint /readyz','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5417','10510','{$KUBE.API.URL}','https://localhost:6443','Kubernetes API endpoint URL in the format ://:','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5418','10516','{$LANG}','en','List of available languages https://openweathermap.org/current#multi.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5419','10516','{$LOCATION}','Riga','Locations can be set by few ways:\r\n1. by geo coordinates (for example: 56.95,24.0833)\r\n2. by location name (for example: Riga)\r\n3. by location ID. Link to the list of city ID: http://bulk.openweathermap.org/sample/city.list.json.gz\r\n4. by zip/post code with a country code (for example: 94040,us)\r\nA few locations can be added to the macro at the same time by `|` delimiter. \r\nFor example: `43.81821,7.76115|Riga|2643743|94040,us`.\r\nPlease note that API requests by city name, zip-codes and city id will be deprecated soon.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5420','10516','{$OPENWEATHERMAP.API.ENDPOINT}','api.openweathermap.org/data/2.5/weather?','OpenWeatherMap API endpoint.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5421','10516','{$OPENWEATHERMAP.API.TOKEN}','','Specify openweathermap API key.','1');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5422','10516','{$OPENWEATHERMAP.DATA.TIMEOUT}','3s','Response timeout for OpenWeatherMap API.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5423','10516','{$TEMP.CRIT.HIGH}','30','Threshold for high temperature trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5424','10516','{$TEMP.CRIT.LOW}','-20','Threshold for low temperature trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5425','10516','{$UNITS}','metric','Available units of measurement are standard, metric and imperial https://openweathermap.org/current#data.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5426','10329','{$PG.QUERY_ETIME.MAX.WARN}','30','Execution time limit for count of slow queries.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5427','10329','{$PG.SLOW_QUERIES.MAX.WARN}','5','Slow queries count threshold for a trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5430','10517','{$PVE.CPU.PUSE.MAX.WARN}','90','Maximum used CPU in percentage.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5431','10517','{$PVE.LXC.CPU.PUSE.MAX.WARN}','90','Maximum used CPU in percentage.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5432','10517','{$PVE.LXC.MEMORY.PUSE.MAX.WARN}','90','Maximum used memory in percentage.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5433','10517','{$PVE.MEMORY.PUSE.MAX.WARN}','90','Maximum used memory in percentage.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5434','10517','{$PVE.ROOT.PUSE.MAX.WARN}','90','Maximum used root space in percentage.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5435','10517','{$PVE.STORAGE.PUSE.MAX.WARN}','90','Maximum used storage space in percentage.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5436','10517','{$PVE.SWAP.PUSE.MAX.WARN}','90','Maximum used swap space in percentage.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5437','10517','{$PVE.TOKEN.ID}','USER@REALM!TOKENID','API tokens allow stateless access to most parts of the REST API by another system, software or API client.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5438','10517','{$PVE.TOKEN.SECRET}','xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx','Secret key.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5439','10517','{$PVE.URL.PORT}','8006','The API uses the HTTPS protocol and the server listens to port 8006 by default.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5440','10517','{$PVE.VM.CPU.PUSE.MAX.WARN}','90','Maximum used CPU in percentage.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5441','10517','{$PVE.VM.MEMORY.PUSE.MAX.WARN}','90','Maximum used memory in percentage.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5442','10518','{$CPU.UTIL.CRIT}','90','Threshold of CPU utilization for warning trigger in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5443','10518','{$DATASET.FREE.MIN.CRIT}','5G','This macro is used for trigger expression. It can be overridden on the host or linked on the template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5444','10518','{$DATASET.FREE.MIN.WARN}','5G','This macro is used for trigger expression. It can be overridden on the host or linked on the template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5445','10518','{$DATASET.NAME.MATCHES}','.+','This macro is used in datasets discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5446','10518','{$DATASET.NAME.NOT_MATCHES}','^(boot|.+\\.system(.+)?$)','This macro is used in datasets discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5447','10518','{$DATASET.PUSED.MAX.CRIT}','90','Threshold of used dataset space for average severity trigger in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5448','10518','{$DATASET.PUSED.MAX.WARN}','80','Threshold of used dataset space for warning trigger in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5449','10518','{$ICMP_LOSS_WARN}','20','Threshold of ICMP packets loss for warning trigger in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5450','10518','{$ICMP_RESPONSE_TIME_WARN}','0.15','Threshold of average ICMP response time for warning trigger in seconds.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5451','10518','{$IF.ERRORS.WARN}','2','Threshold of error packets rate for warning trigger. Can be used with interface name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5452','10518','{$IF.UTIL.MAX}','90','Threshold of interface bandwidth utilization for warning trigger in %. Can be used with interface name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5453','10518','{$IFCONTROL}','1','Macro for operational state of the interface for link down trigger. Can be used with interface name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5454','10518','{$LOAD_AVG_PER_CPU.MAX.WARN}','1.5','Load per CPU considered sustainable. Tune if needed.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5455','10518','{$MEMORY.AVAILABLE.MIN}','20M','Threshold of available memory for trigger in bytes.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5456','10518','{$MEMORY.UTIL.MAX}','90','Threshold of memory utilization for trigger in %','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5457','10518','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','This macro is used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5458','10518','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5459','10518','{$NET.IF.IFALIAS.MATCHES}','.*','This macro is used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5460','10518','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5461','10518','{$NET.IF.IFDESCR.MATCHES}','.*','This macro used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5462','10518','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5463','10518','{$NET.IF.IFNAME.MATCHES}','^em[0-9]+$','This macro used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5464','10518','{$NET.IF.IFNAME.NOT_MATCHES}','^$','This macro used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5465','10518','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','This macro used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5466','10518','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5467','10518','{$NET.IF.IFTYPE.MATCHES}','.*','This macro used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5468','10518','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5469','10518','{$SNMP.TIMEOUT}','5m','The time interval for SNMP availability trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5470','10518','{$SWAP.PFREE.MIN.WARN}','50','Threshold of free swap space for warning trigger in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5471','10518','{$TEMPERATURE.MAX.CRIT}','65','This macro is used for trigger expression. It can be overridden on the host or linked on the template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5472','10518','{$TEMPERATURE.MAX.WARN}','50','This macro is used for trigger expression. It can be overridden on the host or linked on the template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5473','10518','{$VFS.DEV.DEVNAME.MATCHES}','.+','This macro is used in block devices discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5474','10518','{$VFS.DEV.DEVNAME.NOT_MATCHES}','^(loop[0-9]*|sd[a-z][0-9]+|nbd[0-9]+|sr[0-9]+|fd[0-9]+|dm-[0-9]+|ram[0-9]+|ploop[a-z0-9]+|md[0-9]*|hcp[0-9]*|cd[0-9]*|pass[0-9]*|zram[0-9]*)','This macro is used in block devices discovery. Can be overridden on the host or linked template level','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5475','10518','{$ZPOOL.FREE.MIN.CRIT}','5G','This macro is used for trigger expression. It can be overridden on the host or linked on the template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5476','10518','{$ZPOOL.FREE.MIN.WARN}','5G','This macro is used for trigger expression. It can be overridden on the host or linked on the template level.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5477','10518','{$ZPOOL.PUSED.MAX.CRIT}','90','Threshold of used pool space for average severity trigger in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5478','10518','{$ZPOOL.PUSED.MAX.WARN}','80','Threshold of used pool space for warning trigger in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5479','10185','{$VFS.FS.FREE.MIN.CRIT}','5G','The critical threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5480','10185','{$VFS.FS.FREE.MIN.WARN}','10G','The warning threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5481','10307','{$VFS.FS.FREE.MIN.CRIT}','5G','The critical threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5482','10307','{$VFS.FS.FREE.MIN.WARN}','10G','The warning threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5483','10273','{$VFS.FS.FREE.MIN.CRIT}','5G','The critical threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5484','10273','{$VFS.FS.FREE.MIN.WARN}','10G','The warning threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5485','10339','{$VFS.FS.FREE.MIN.CRIT}','5G','The critical threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5486','10339','{$VFS.FS.FREE.MIN.WARN}','10G','The warning threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5487','10271','{$VFS.FS.FREE.MIN.CRIT}','5G','The critical threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5488','10271','{$VFS.FS.FREE.MIN.WARN}','10G','The warning threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5489','10288','{$VFS.FS.FREE.MIN.CRIT}','5G','The critical threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5490','10288','{$VFS.FS.FREE.MIN.WARN}','10G','The warning threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5491','10345','{$VFS.FS.FREE.MIN.CRIT}','5G','The critical threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5492','10345','{$VFS.FS.FREE.MIN.WARN}','10G','The warning threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5493','10254','{$VFS.FS.FREE.MIN.CRIT}','5G','The critical threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5494','10254','{$VFS.FS.FREE.MIN.WARN}','10G','The warning threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5495','10251','{$VFS.FS.FREE.MIN.CRIT}','5G','The critical threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5496','10251','{$VFS.FS.FREE.MIN.WARN}','10G','The warning threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5497','10001','{$VFS.FS.FREE.MIN.CRIT}','5G','The critical threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5498','10001','{$VFS.FS.FREE.MIN.WARN}','10G','The warning threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5499','10343','{$VFS.FS.FREE.MIN.CRIT}','5G','The critical threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5500','10343','{$VFS.FS.FREE.MIN.WARN}','10G','The warning threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5501','10285','{$VFS.FS.FREE.MIN.CRIT}','5G','The critical threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5502','10285','{$VFS.FS.FREE.MIN.WARN}','10G','The warning threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5503','10248','{$VFS.FS.FREE.MIN.CRIT}','5G','The critical threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5504','10248','{$VFS.FS.FREE.MIN.WARN}','10G','The warning threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5505','10081','{$VFS.FS.FREE.MIN.CRIT}','5G','The critical threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5506','10081','{$VFS.FS.FREE.MIN.WARN}','10G','The warning threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5507','10351','{$VFS.FS.FREE.MIN.CRIT}','5G','The critical threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5508','10351','{$VFS.FS.FREE.MIN.WARN}','10G','The warning threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5509','10249','{$VFS.FS.FREE.MIN.CRIT}','5G','The critical threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5510','10249','{$VFS.FS.FREE.MIN.WARN}','10G','The warning threshold of the filesystem utilization.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5511','10519','{$CONSUL.LLD.FILTER.LOCAL_SERVICE_NAME.MATCHES}','.*','Filter of discoverable discovered services on local node.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5512','10519','{$CONSUL.LLD.FILTER.LOCAL_SERVICE_NAME.NOT_MATCHES}','CHANGE IF NEEDED','Filter to exclude discovered services on local node.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5515','10519','{$CONSUL.NODE.API.URL}','http://localhost:8500','Consul instance URL.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5516','10519','{$CONSUL.NODE.HEALTH_SCORE.MAX.HIGH}','4','Maximum acceptable value of node\'s health score for AVERAGE trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5517','10519','{$CONSUL.NODE.HEALTH_SCORE.MAX.WARN}','2','Maximum acceptable value of node\'s health score for WARNING trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5518','10519','{$CONSUL.OPEN.FDS.MAX.WARN}','90','Maximum percentage of used file descriptors.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5519','10519','{$CONSUL.TOKEN}','','Consul auth token.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5520','10520','{$CONSUL.API.PORT}','8500','Consul API port. Using in node LLD.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5521','10520','{$CONSUL.API.SCHEME}','http','Consul API scheme. Using in node LLD.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5522','10520','{$CONSUL.CLUSTER.URL}','http://localhost:8500','Consul cluster URL.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5523','10520','{$CONSUL.LLD.FILTER.NODE_NAME.MATCHES}','.*','Filter of discoverable discovered nodes.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5524','10520','{$CONSUL.LLD.FILTER.NODE_NAME.NOT_MATCHES}','CHANGE IF NEEDED','Filter to exclude discovered nodes.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5525','10520','{$CONSUL.LLD.FILTER.SERVICE_NAME.MATCHES}','.*','Filter of discoverable discovered services.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5526','10520','{$CONSUL.LLD.FILTER.SERVICE_NAME.NOT_MATCHES}','CHANGE IF NEEDED','Filter to exclude discovered services.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5527','10520','{$CONSUL.SERVICE_NODES.CRITICAL.MAX.AVG}','0','Maximum number of service nodes in status \'critical\' for trigger expression. Can be used with context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5528','10520','{$CONSUL.TOKEN}','','Consul auth token.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5529','10521','{$CONSUL.NODE.API.URL}','{#NODE_API_URL}','Consul instance URL','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5530','10522','{$ENVOY.CERT.MIN}','7','Minimum number of days before certificate expiration used for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5531','10522','{$ENVOY.METRICS.PATH}','/stats/prometheus','The path Zabbix will scrape metrics in prometheus format from.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5532','10522','{$ENVOY.URL}','http://localhost:9901','Instance URL.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5533','10523','{$COCKROACHDB.API.PORT}','8080','The port of CockroachDB API and Prometheus endpoint.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5534','10523','{$COCKROACHDB.API.SCHEME}','http','Request scheme which may be http or https.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5535','10523','{$COCKROACHDB.CERT.CA.EXPIRY.WARN}','90','Number of days until the CA certificate expires.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5536','10523','{$COCKROACHDB.CERT.NODE.EXPIRY.WARN}','30','Number of days until the node certificate expires.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5537','10523','{$COCKROACHDB.CLOCK.OFFSET.MAX.WARN}','300','Maximum clock offset of the node against the rest of the cluster in milliseconds for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5538','10523','{$COCKROACHDB.OPEN.FDS.MAX.WARN}','80','Maximum percentage of used file descriptors.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5539','10523','{$COCKROACHDB.STATEMENTS.ERRORS.MAX.WARN}','2','Maximum number of SQL statements errors for trigger expression.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5540','10523','{$COCKROACHDB.STORE.USED.MIN.CRIT}','10','The critical threshold of the available disk space in percent.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5541','10523','{$COCKROACHDB.STORE.USED.MIN.WARN}','20','The warning threshold of the available disk space in percent.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5542','10524','{$HPE.MSA.API.PASSWORD}','','Specify password for API.','1');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5543','10524','{$HPE.MSA.API.PORT}','443','Connection port for API.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5544','10524','{$HPE.MSA.API.SCHEME}','https','Connection scheme for API.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5545','10524','{$HPE.MSA.API.USERNAME}','zabbix','Specify user name for API.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5546','10524','{$HPE.MSA.CONTROLLER.CPU.UTIL.CRIT}','90','The critical threshold of the CPU utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5547','10524','{$HPE.MSA.DATA.TIMEOUT}','30s','Response timeout for API.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5548','10524','{$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT}','90','The critical threshold of the disk group space utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5549','10524','{$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN}','80','The warning threshold of the disk group space utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5550','10524','{$HPE.MSA.POOL.PUSED.MAX.CRIT}','90','The critical threshold of the pool space utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5551','10524','{$HPE.MSA.POOL.PUSED.MAX.WARN}','80','The warning threshold of the pool space utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5552','10525','{$HPE.MSA.API.PASSWORD}','','Specify password for API.','1');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5553','10525','{$HPE.MSA.API.PORT}','443','Connection port for API.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5554','10525','{$HPE.MSA.API.SCHEME}','https','Connection scheme for API.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5555','10525','{$HPE.MSA.API.USERNAME}','zabbix','Specify user name for API.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5556','10525','{$HPE.MSA.CONTROLLER.CPU.UTIL.CRIT}','90','The critical threshold of the CPU utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5557','10525','{$HPE.MSA.DATA.TIMEOUT}','30s','Response timeout for API.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5558','10525','{$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT}','90','The critical threshold of the disk group space utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5559','10525','{$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN}','80','The warning threshold of the disk group space utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5560','10525','{$HPE.MSA.POOL.PUSED.MAX.CRIT}','90','The critical threshold of the pool space utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5561','10525','{$HPE.MSA.POOL.PUSED.MAX.WARN}','80','The warning threshold of the pool space utilization in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5562','10526','{$HPE.PRIMERA.API.PASSWORD}','','Specify password for WSAPI.','1');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5563','10526','{$HPE.PRIMERA.API.PORT}','443','The WSAPI port.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5564','10526','{$HPE.PRIMERA.API.SCHEME}','https','The WSAPI scheme (http/https).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5565','10526','{$HPE.PRIMERA.API.USERNAME}','zabbix','Specify user name for WSAPI.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5566','10526','{$HPE.PRIMERA.CPG.NAME.MATCHES}','.*','This macro is used in filters of CPGs discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5567','10526','{$HPE.PRIMERA.CPG.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in filters of CPGs discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5568','10526','{$HPE.PRIMERA.DATA.TIMEOUT}','15s','Response timeout for WSAPI.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5569','10526','{$HPE.PRIMERA.LLD.FILTER.TASK.NAME.MATCHES}','CHANGE_IF_NEEDED','Filter of discoverable tasks by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5570','10526','{$HPE.PRIMERA.LLD.FILTER.TASK.NAME.NOT_MATCHES}','.*','Filter to exclude discovered tasks by name.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5571','10526','{$HPE.PRIMERA.LLD.FILTER.TASK.TYPE.MATCHES}','.*','Filter of discoverable tasks by type.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5572','10526','{$HPE.PRIMERA.LLD.FILTER.TASK.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered tasks by type.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5573','10526','{$HPE.PRIMERA.VOLUME.NAME.MATCHES}','.*','This macro is used in filters of volume discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5574','10526','{$HPE.PRIMERA.VOLUME.NAME.NOT_MATCHES}','^(admin|.srdata|.mgmtdata)$','This macro is used in filters of volume discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5575','10519','{$CONSUL.LLD.FILTER.SERVICE_NAMESPACE.MATCHES}','.*','Filter of discoverable discovered service by namespace on local node. Enterprise only, in case of Open Source version Namespace will be set to \'None\'.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5576','10519','{$CONSUL.LLD.FILTER.SERVICE_NAMESPACE.NOT_MATCHES}','CHANGE IF NEEDED','Filter to exclude discovered service by namespace on local node. Enterprise only, in case of Open Source version Namespace will be set to \'None\'.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5577','10520','{$CONSUL.NAMESPACE}','','Consul service namespace. Enterprise only, in case of Open Source version leave this macro empty. Do not specify this macro to get all of services.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5578','10527','{$HPE.SYNERGY.API.PASSWORD}','','Specify password for API.','1');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5579','10527','{$HPE.SYNERGY.API.PORT}','443','The API port.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5580','10527','{$HPE.SYNERGY.API.SCHEME}','https','The API scheme (http/https).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5581','10527','{$HPE.SYNERGY.API.USERNAME}','zabbix','Specify user name for API.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5582','10527','{$HPE.SYNERGY.DATA.TIMEOUT}','15s','Response timeout for API.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5583','10528','{$IF.ERRORS.WARN}','2','Threshold of error packets rate for warning trigger. Can be used with interface name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5584','10528','{$IF.UTIL.MAX}','90','Threshold of interface bandwidth utilization for warning trigger in %. Can be used with interface name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5585','10528','{$IFCONTROL}','1','Macro for operational state of the interface for link down trigger. Can be used with interface name as context.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5586','10528','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','This macro is used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5587','10528','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5588','10528','{$NET.IF.IFALIAS.MATCHES}','.*','This macro is used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5589','10528','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5590','10528','{$NET.IF.IFDESCR.MATCHES}','.*','This macro is used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5591','10528','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5592','10528','{$NET.IF.IFNAME.MATCHES}','^em[0-9]+$','This macro is used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5593','10528','{$NET.IF.IFNAME.NOT_MATCHES}','^$','This macro is used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5594','10528','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','This macro is used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5595','10528','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6).','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5596','10528','{$NET.IF.IFTYPE.MATCHES}','.*','This macro is used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5597','10528','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in filters of network interfaces discovery rule.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5598','10528','{$SNMP.TIMEOUT}','5m','The time interval for SNMP availability trigger.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5599','10528','{$SOURCE.TRACKING.TABLE.UTIL.MAX}','90','Threshold of source tracking table utilization trigger in %.','0');
INSERT INTO `hostmacro` (`hostmacroid`,`hostid`,`macro`,`value`,`description`,`type`) values ('5600','10528','{$STATE.TABLE.UTIL.MAX}','90','Threshold of state table utilization trigger in %.','0');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('92','10084','4');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('175','10093','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('176','10169','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('177','10095','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('178','10094','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('179','10096','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('180','10097','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('181','10098','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('182','10099','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('183','10100','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('184','10101','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('185','10102','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('186','10103','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('187','10050','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('188','10048','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('189','10047','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('191','10076','10');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('192','10075','10');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('193','10077','10');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('194','10001','10');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('195','10079','10');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('196','10074','10');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('197','10078','10');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('198','10081','10');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('199','10171','11');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('200','10172','11');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('209','10183','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('211','10185','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('212','10186','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('214','10188','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('216','10190','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('218','10192','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('230','10204','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('233','10207','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('234','10208','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('235','10209','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('236','10210','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('237','10211','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('238','10212','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('239','10213','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('241','10215','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('242','10216','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('243','10217','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('244','10218','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('246','10220','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('247','10221','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('248','10222','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('249','10223','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('250','10224','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('252','10226','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('253','10227','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('255','10229','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('256','10230','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('257','10231','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('259','10233','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('260','10234','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('261','10235','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('262','10236','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('263','10237','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('274','10248','10');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('275','10249','10');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('276','10250','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('277','10251','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('278','10252','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('279','10253','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('280','10254','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('281','10255','11');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('282','10256','11');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('284','10258','11');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('285','10259','11');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('286','10260','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('287','10261','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('288','10262','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('290','10264','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('291','10265','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('292','10266','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('293','10267','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('294','10268','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('295','10269','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('296','10270','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('297','10271','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('298','10272','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('299','10273','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('300','10274','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('301','10275','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('302','10276','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('303','10277','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('311','10285','10');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('312','10286','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('313','10287','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('314','10288','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('315','10289','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('316','10290','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('317','10291','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('318','10292','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('326','10300','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('327','10301','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('328','10302','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('329','10303','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('330','10304','11');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('331','10305','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('332','10306','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('333','10307','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('334','10308','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('335','10309','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('336','10310','13');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('340','10314','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('342','10316','13');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('343','10317','13');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('344','10318','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('345','10319','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('346','10320','13');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('347','10321','11');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('348','10322','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('349','10323','13');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('350','10324','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('351','10325','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('352','10326','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('353','10327','13');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('354','10328','13');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('355','10329','13');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('356','10330','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('357','10331','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('359','10173','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('360','10174','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('361','10175','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('362','10335','13');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('363','10336','15');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('364','10337','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('365','10338','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('366','10339','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('367','10340','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('368','10341','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('369','10342','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('370','10343','10');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('371','10344','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('372','10345','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('373','10346','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('374','10347','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('375','10348','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('376','10349','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('377','10350','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('378','10351','10');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('380','10353','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('384','10357','13');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('385','10358','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('386','10359','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('387','10360','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('388','10361','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('389','10362','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('390','10363','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('391','10364','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('392','10365','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('393','10366','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('394','10369','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('395','10370','13');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('403','10378','16');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('404','10379','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('405','10380','17');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('406','10381','13');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('407','10382','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('408','10383','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('409','10384','8');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('410','10385','16');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('411','10386','13');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('412','10387','13');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('418','10395','18');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('419','10396','16');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('420','10397','13');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('421','10398','13');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('422','10399','13');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('423','10400','18');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('424','10401','18');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('425','10402','18');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('426','10403','18');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('427','10404','18');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('429','10406','18');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('430','10407','18');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('431','10408','18');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('432','10409','18');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('433','10410','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('434','10411','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('435','10412','18');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('436','10413','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('437','10414','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('438','10415','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('439','10416','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('440','10417','13');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('441','10418','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('442','10419','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('443','10420','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('444','10421','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('445','10422','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('446','10423','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('447','10424','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('448','10425','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('449','10426','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('450','10427','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('451','10428','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('452','10429','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('453','10430','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('454','10431','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('455','10432','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('456','10433','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('457','10434','11');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('458','10435','11');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('459','10436','11');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('460','10437','11');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('461','10438','11');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('462','10439','11');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('463','10440','11');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('464','10441','11');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('465','10442','11');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('466','10443','11');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('467','10444','11');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('468','10445','11');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('469','10446','11');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('470','10447','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('471','10448','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('472','10449','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('473','10450','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('474','10451','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('475','10452','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('476','10453','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('477','10454','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('478','10455','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('479','10456','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('480','10457','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('481','10458','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('482','10459','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('483','10460','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('484','10461','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('485','10462','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('486','10463','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('487','10464','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('488','10465','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('489','10466','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('490','10467','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('491','10468','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('492','10469','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('493','10470','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('494','10471','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('495','10472','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('496','10473','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('497','10474','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('498','10475','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('499','10476','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('500','10477','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('501','10478','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('502','10479','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('503','10480','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('504','10481','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('505','10482','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('506','10483','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('507','10484','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('508','10485','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('509','10486','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('510','10487','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('511','10488','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('512','10489','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('513','10490','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('514','10491','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('515','10492','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('516','10493','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('517','10494','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('518','10495','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('519','10496','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('520','10497','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('521','10498','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('522','10499','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('523','10500','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('524','10501','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('525','10502','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('526','10503','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('527','10504','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('528','10505','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('529','10506','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('530','10507','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('531','10509','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('532','10510','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('533','10515','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('534','10390','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('535','10391','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('536','10392','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('537','10393','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('538','10394','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('539','10355','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('540','10371','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('541','10372','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('542','10373','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('543','10374','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('544','10375','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('545','10376','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('546','10377','9');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('547','10516','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('548','10517','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('549','10518','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('550','10519','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('551','10520','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('552','10522','12');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('553','10523','13');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('554','10524','16');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('555','10525','16');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('556','10526','16');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('557','10527','11');
INSERT INTO `hosts_groups` (`hostgroupid`,`hostid`,`groupid`) values ('558','10528','12');
INSERT INTO `hosts_templates` (`hosttemplateid`,`hostid`,`templateid`) values ('38','10084','10047');
INSERT INTO `hosts_templates` (`hosttemplateid`,`hostid`,`templateid`) values ('39','10084','10001');
INSERT INTO `hosts_templates` (`hosttemplateid`,`hostid`,`templateid`) values ('290','10333','10175');
INSERT INTO `hosts_templates` (`hosttemplateid`,`hostid`,`templateid`) values ('291','10334','10174');
INSERT INTO `hosts_templates` (`hosttemplateid`,`hostid`,`templateid`) values ('308','10367','10175');
INSERT INTO `hosts_templates` (`hosttemplateid`,`hostid`,`templateid`) values ('309','10368','10174');
INSERT INTO `hosts_templates` (`hosttemplateid`,`hostid`,`templateid`) values ('312','10388','10386');
INSERT INTO `hosts_templates` (`hosttemplateid`,`hostid`,`templateid`) values ('313','10389','10386');
INSERT INTO `hosts_templates` (`hosttemplateid`,`hostid`,`templateid`) values ('424','10508','10001');
INSERT INTO `hosts_templates` (`hosttemplateid`,`hostid`,`templateid`) values ('425','10511','10504');
INSERT INTO `hosts_templates` (`hosttemplateid`,`hostid`,`templateid`) values ('426','10512','10505');
INSERT INTO `hosts_templates` (`hosttemplateid`,`hostid`,`templateid`) values ('427','10513','10509');
INSERT INTO `hosts_templates` (`hosttemplateid`,`hostid`,`templateid`) values ('428','10514','10506');
INSERT INTO `hosts_templates` (`hosttemplateid`,`hostid`,`templateid`) values ('429','10521','10519');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1','1','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2','1','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3','2','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4','2','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5','3','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6','3','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7','4','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8','4','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9','5','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10','5','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11','6','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12','6','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13','7','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14','7','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15','8','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16','8','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17','9','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18','9','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19','10','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20','10','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21','11','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22','11','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23','12','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24','12','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25','13','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26','13','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27','14','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28','14','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29','15','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30','15','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31','16','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('32','16','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('33','17','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('34','17','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('35','18','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('36','18','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('37','19','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('38','19','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('39','20','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('40','20','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('41','21','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('42','21','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('43','22','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('44','22','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('45','23','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('46','23','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('47','24','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('48','24','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('49','25','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('50','25','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('51','26','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('52','26','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('53','27','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('54','27','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('55','28','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('56','28','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('57','29','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('58','29','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('59','30','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('60','30','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('61','31','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('62','31','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('63','32','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('64','32','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('65','33','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('66','33','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('67','34','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('68','34','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('69','35','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('70','35','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('71','36','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('72','36','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('73','37','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('74','37','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('75','38','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('76','38','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('77','39','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('78','39','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('79','40','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('80','40','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('81','41','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('82','41','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('83','42','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('84','42','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('85','43','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('86','43','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('87','44','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('88','44','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('89','45','0','Running','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('90','45','1','Paused','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('91','45','3','Pause pending','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('92','45','4','Continue pending','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('93','45','5','Stop pending','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('94','45','6','Stopped','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('95','45','7','Unknown','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('96','45','255','No such service','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('97','45','2','Start pending','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('98','46','0','Running','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('99','46','1','Paused','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('100','46','3','Pause pending','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('101','46','4','Continue pending','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('102','46','5','Stop pending','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('103','46','6','Stopped','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('104','46','7','Unknown','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('105','46','255','No such service','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('106','46','2','Start pending','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('107','47','0','Running','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('108','47','1','Paused','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('109','47','3','Pause pending','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('110','47','4','Continue pending','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('111','47','5','Stop pending','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('112','47','6','Stopped','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('113','47','7','Unknown','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('114','47','255','No such service','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('115','47','2','Start pending','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('116','48','0','Running','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('117','48','1','Paused','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('118','48','3','Pause pending','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('119','48','4','Continue pending','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('120','48','5','Stop pending','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('121','48','6','Stopped','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('122','48','7','Unknown','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('123','48','255','No such service','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('124','48','2','Start pending','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('125','49','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('126','50','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('127','51','0','poweredOff','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('128','51','1','poweredOn','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('129','51','2','suspended','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('130','52','0','gray','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('131','52','1','green','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('132','52','2','yellow','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('133','52','3','red','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('134','53','0','gray','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('135','53','1','green','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('136','53','2','yellow','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('137','53','3','red','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('138','54','0','gray','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('139','54','1','green','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('140','54','2','yellow','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('141','54','3','red','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('142','55','0','Normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('143','55','1','Low memory','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('144','56','0','Normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('145','56','1','Low memory','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('146','57','1','ok','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('147','57','2','unavailable','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('148','57','3','nonoperational','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('149','58','1','ok','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('150','58','2','unavailable','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('151','58','3','nonoperational','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('152','59','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('153','59','2','halfDuplex','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('154','59','3','fullDuplex','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('155','60','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('156','60','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('157','60','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('158','60','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('159','60','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('160','60','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('161','61','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('162','61','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('163','61','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('164','61','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('165','61','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('166','61','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('167','62','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('168','62','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('169','62','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('170','62','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('171','62','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('172','62','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('173','63','1','notpresent','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('174','63','2','down','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('175','63','4','testing','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('176','63','5','dormant','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('177','63','6','up','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('179','64','1','notpresent','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('180','64','2','down','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('181','64','4','testing','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('182','64','5','dormant','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('183','64','6','up','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('185','65','1','notpresent','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('186','65','2','down','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('187','65','4','testing','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('188','65','5','dormant','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('189','65','6','up','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('191','66','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('192','66','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('193','66','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('194','66','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('195','66','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('196','66','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('197','66','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('198','66','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('199','66','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('200','66','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('201','66','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('202','66','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('203','66','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('204','66','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('205','66','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('206','66','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('207','66','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('208','66','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('209','66','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('210','66','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('211','66','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('212','66','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('213','66','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('214','66','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('215','66','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('216','66','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('217','66','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('218','66','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('219','66','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('220','66','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('221','66','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('222','66','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('223','66','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('224','66','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('225','66','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('226','66','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('227','66','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('228','66','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('229','66','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('230','66','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('231','66','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('232','66','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('233','66','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('234','66','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('235','66','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('236','66','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('237','66','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('238','66','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('239','66','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('240','66','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('241','66','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('242','66','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('243','66','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('244','66','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('245','66','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('246','66','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('247','66','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('248','66','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('249','66','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('250','66','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('251','66','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('252','66','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('253','66','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('254','66','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('255','66','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('256','66','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('257','66','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('258','66','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('259','66','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('260','66','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('261','66','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('262','66','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('263','66','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('264','66','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('265','66','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('266','66','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('267','66','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('268','66','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('269','66','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('270','66','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('271','66','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('272','66','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('273','66','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('274','66','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('275','66','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('276','66','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('277','66','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('278','66','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('279','66','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('280','66','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('281','66','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('282','66','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('283','66','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('284','66','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('285','66','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('286','66','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('287','66','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('288','66','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('289','66','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('290','66','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('291','66','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('292','66','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('293','66','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('294','66','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('295','66','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('296','66','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('297','66','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('298','66','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('299','66','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('300','66','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('301','66','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('302','66','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('303','66','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('304','66','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('305','66','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('306','66','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('307','66','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('308','66','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('309','66','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('310','66','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('311','66','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('312','66','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('313','66','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('314','66','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('315','66','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('316','66','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('317','66','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('318','66','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('319','66','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('320','66','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('321','66','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('322','66','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('323','66','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('324','66','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('325','66','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('326','66','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('327','66','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('328','66','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('329','66','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('330','66','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('331','66','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('332','66','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('333','66','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('334','66','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('335','66','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('336','66','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('337','66','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('338','66','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('339','66','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('340','66','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('341','66','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('342','66','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('343','66','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('344','66','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('345','66','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('346','66','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('347','66','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('348','66','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('349','66','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('350','66','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('351','66','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('352','66','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('353','66','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('354','66','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('355','66','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('356','66','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('357','66','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('358','66','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('359','66','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('360','66','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('361','66','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('362','66','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('363','66','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('364','66','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('365','66','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('366','66','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('367','66','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('368','66','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('369','66','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('370','66','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('371','66','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('372','66','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('373','66','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('374','66','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('375','66','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('376','66','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('377','66','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('378','66','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('379','66','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('380','66','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('381','66','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('382','66','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('383','66','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('384','66','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('385','66','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('386','66','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('387','66','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('388','66','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('389','66','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('390','66','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('391','66','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('392','66','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('393','66','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('394','66','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('395','66','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('396','66','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('397','66','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('398','66','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('399','66','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('400','66','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('401','66','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('402','66','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('403','66','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('404','66','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('405','66','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('406','66','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('407','66','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('408','66','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('409','66','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('410','66','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('411','66','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('412','66','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('413','66','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('414','66','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('415','66','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('416','66','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('417','66','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('418','66','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('419','66','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('420','66','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('421','66','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('422','66','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('423','66','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('424','66','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('425','66','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('426','66','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('427','66','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('428','66','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('429','66','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('430','66','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('431','66','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('432','66','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('433','66','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('434','66','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('435','66','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('436','66','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('437','66','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('438','66','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('439','66','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('440','66','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('441','66','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('442','66','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('443','66','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('444','66','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('445','66','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('446','66','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('447','66','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('448','66','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('449','66','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('450','66','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('451','66','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('452','66','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('453','66','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('454','66','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('455','66','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('456','66','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('457','66','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('458','66','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('459','66','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('460','66','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('461','66','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('462','66','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('463','66','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('464','66','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('465','66','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('466','66','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('467','66','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('468','66','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('469','66','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('470','66','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('471','66','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('472','66','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('473','66','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('474','66','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('475','66','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('476','66','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('477','67','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('478','67','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('479','67','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('480','67','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('481','67','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('482','67','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('483','67','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('484','67','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('485','67','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('486','67','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('487','67','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('488','67','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('489','67','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('490','67','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('491','67','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('492','67','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('493','67','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('494','67','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('495','67','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('496','67','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('497','67','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('498','67','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('499','67','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('500','67','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('501','67','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('502','67','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('503','67','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('504','67','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('505','67','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('506','67','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('507','67','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('508','67','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('509','67','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('510','67','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('511','67','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('512','67','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('513','67','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('514','67','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('515','67','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('516','67','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('517','67','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('518','67','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('519','67','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('520','67','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('521','67','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('522','67','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('523','67','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('524','67','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('525','67','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('526','67','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('527','67','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('528','67','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('529','67','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('530','67','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('531','67','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('532','67','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('533','67','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('534','67','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('535','67','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('536','67','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('537','67','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('538','67','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('539','67','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('540','67','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('541','67','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('542','67','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('543','67','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('544','67','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('545','67','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('546','67','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('547','67','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('548','67','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('549','67','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('550','67','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('551','67','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('552','67','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('553','67','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('554','67','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('555','67','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('556','67','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('557','67','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('558','67','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('559','67','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('560','67','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('561','67','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('562','67','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('563','67','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('564','67','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('565','67','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('566','67','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('567','67','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('568','67','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('569','67','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('570','67','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('571','67','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('572','67','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('573','67','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('574','67','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('575','67','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('576','67','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('577','67','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('578','67','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('579','67','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('580','67','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('581','67','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('582','67','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('583','67','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('584','67','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('585','67','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('586','67','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('587','67','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('588','67','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('589','67','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('590','67','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('591','67','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('592','67','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('593','67','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('594','67','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('595','67','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('596','67','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('597','67','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('598','67','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('599','67','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('600','67','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('601','67','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('602','67','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('603','67','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('604','67','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('605','67','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('606','67','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('607','67','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('608','67','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('609','67','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('610','67','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('611','67','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('612','67','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('613','67','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('614','67','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('615','67','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('616','67','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('617','67','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('618','67','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('619','67','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('620','67','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('621','67','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('622','67','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('623','67','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('624','67','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('625','67','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('626','67','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('627','67','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('628','67','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('629','67','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('630','67','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('631','67','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('632','67','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('633','67','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('634','67','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('635','67','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('636','67','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('637','67','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('638','67','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('639','67','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('640','67','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('641','67','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('642','67','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('643','67','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('644','67','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('645','67','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('646','67','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('647','67','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('648','67','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('649','67','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('650','67','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('651','67','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('652','67','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('653','67','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('654','67','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('655','67','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('656','67','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('657','67','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('658','67','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('659','67','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('660','67','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('661','67','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('662','67','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('663','67','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('664','67','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('665','67','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('666','67','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('667','67','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('668','67','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('669','67','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('670','67','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('671','67','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('672','67','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('673','67','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('674','67','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('675','67','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('676','67','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('677','67','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('678','67','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('679','67','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('680','67','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('681','67','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('682','67','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('683','67','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('684','67','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('685','67','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('686','67','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('687','67','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('688','67','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('689','67','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('690','67','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('691','67','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('692','67','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('693','67','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('694','67','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('695','67','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('696','67','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('697','67','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('698','67','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('699','67','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('700','67','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('701','67','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('702','67','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('703','67','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('704','67','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('705','67','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('706','67','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('707','67','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('708','67','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('709','67','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('710','67','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('711','67','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('712','67','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('713','67','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('714','67','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('715','67','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('716','67','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('717','67','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('718','67','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('719','67','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('720','67','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('721','67','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('722','67','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('723','67','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('724','67','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('725','67','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('726','67','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('727','67','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('728','67','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('729','67','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('730','67','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('731','67','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('732','67','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('733','67','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('734','67','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('735','67','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('736','67','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('737','67','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('738','67','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('739','67','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('740','67','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('741','67','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('742','67','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('743','67','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('744','67','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('745','67','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('746','67','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('747','67','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('748','67','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('749','67','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('750','67','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('751','67','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('752','67','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('753','67','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('754','67','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('755','67','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('756','67','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('757','67','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('758','67','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('759','67','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('760','67','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('761','67','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('762','67','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('763','68','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('764','68','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('765','68','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('766','68','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('767','68','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('768','68','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('769','68','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('770','68','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('771','68','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('772','68','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('773','68','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('774','68','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('775','68','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('776','68','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('777','68','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('778','68','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('779','68','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('780','68','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('781','68','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('782','68','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('783','68','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('784','68','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('785','68','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('786','68','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('787','68','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('788','68','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('789','68','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('790','68','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('791','68','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('792','68','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('793','68','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('794','68','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('795','68','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('796','68','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('797','68','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('798','68','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('799','68','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('800','68','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('801','68','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('802','68','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('803','68','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('804','68','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('805','68','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('806','68','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('807','68','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('808','68','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('809','68','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('810','68','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('811','68','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('812','68','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('813','68','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('814','68','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('815','68','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('816','68','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('817','68','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('818','68','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('819','68','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('820','68','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('821','68','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('822','68','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('823','68','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('824','68','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('825','68','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('826','68','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('827','68','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('828','68','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('829','68','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('830','68','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('831','68','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('832','68','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('833','68','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('834','68','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('835','68','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('836','68','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('837','68','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('838','68','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('839','68','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('840','68','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('841','68','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('842','68','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('843','68','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('844','68','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('845','68','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('846','68','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('847','68','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('848','68','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('849','68','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('850','68','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('851','68','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('852','68','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('853','68','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('854','68','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('855','68','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('856','68','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('857','68','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('858','68','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('859','68','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('860','68','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('861','68','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('862','68','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('863','68','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('864','68','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('865','68','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('866','68','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('867','68','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('868','68','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('869','68','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('870','68','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('871','68','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('872','68','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('873','68','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('874','68','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('875','68','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('876','68','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('877','68','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('878','68','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('879','68','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('880','68','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('881','68','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('882','68','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('883','68','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('884','68','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('885','68','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('886','68','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('887','68','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('888','68','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('889','68','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('890','68','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('891','68','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('892','68','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('893','68','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('894','68','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('895','68','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('896','68','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('897','68','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('898','68','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('899','68','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('900','68','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('901','68','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('902','68','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('903','68','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('904','68','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('905','68','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('906','68','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('907','68','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('908','68','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('909','68','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('910','68','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('911','68','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('912','68','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('913','68','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('914','68','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('915','68','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('916','68','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('917','68','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('918','68','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('919','68','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('920','68','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('921','68','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('922','68','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('923','68','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('924','68','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('925','68','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('926','68','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('927','68','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('928','68','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('929','68','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('930','68','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('931','68','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('932','68','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('933','68','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('934','68','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('935','68','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('936','68','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('937','68','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('938','68','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('939','68','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('940','68','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('941','68','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('942','68','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('943','68','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('944','68','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('945','68','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('946','68','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('947','68','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('948','68','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('949','68','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('950','68','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('951','68','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('952','68','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('953','68','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('954','68','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('955','68','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('956','68','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('957','68','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('958','68','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('959','68','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('960','68','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('961','68','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('962','68','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('963','68','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('964','68','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('965','68','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('966','68','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('967','68','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('968','68','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('969','68','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('970','68','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('971','68','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('972','68','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('973','68','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('974','68','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('975','68','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('976','68','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('977','68','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('978','68','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('979','68','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('980','68','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('981','68','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('982','68','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('983','68','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('984','68','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('985','68','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('986','68','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('987','68','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('988','68','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('989','68','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('990','68','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('991','68','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('992','68','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('993','68','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('994','68','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('995','68','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('996','68','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('997','68','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('998','68','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('999','68','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1000','68','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1001','68','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1002','68','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1003','68','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1004','68','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1005','68','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1006','68','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1007','68','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1008','68','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1009','68','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1010','68','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1011','68','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1012','68','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1013','68','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1014','68','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1015','68','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1016','68','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1017','68','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1018','68','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1019','68','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1020','68','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1021','68','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1022','68','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1023','68','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1024','68','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1025','68','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1026','68','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1027','68','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1028','68','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1029','68','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1030','68','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1031','68','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1032','68','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1033','68','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1034','68','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1035','68','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1036','68','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1037','68','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1038','68','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1039','68','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1040','68','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1041','68','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1042','68','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1043','68','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1044','68','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1045','68','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1046','68','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1047','68','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1048','68','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1049','69','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1050','69','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1051','69','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1052','70','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1053','70','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1054','70','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1055','71','1','deviceStateUnknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1056','71','2','deviceNotEquipped','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1057','71','3','deviceStateOk','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1058','71','4','deviceStateFailed','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1059','71','5','deviceStateOutOfService','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1060','72','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1061','72','2','faulty','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1062','72','3','below-min','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1063','72','4','nominal','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1064','72','5','above-max','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1065','72','6','absent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1066','73','1','online','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1067','73','2','offline','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1068','73','3','testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1069','73','4','faulty','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1070','74','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1071','74','2','normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1072','74','3','failure','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1073','75','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1074','75','2','normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1075','75','3','failure','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1076','76','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1077','76','2','normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1078','76','3','failure','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1079','77','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1080','77','2','normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1081','77','3','failure','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1082','78','1','normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1083','78','2','warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1084','78','3','critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1085','78','4','shutdown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1086','78','5','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1087','78','6','notFunctioning','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1088','79','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1089','79','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1090','79','3','absent','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1091','80','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1092','80','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1093','80','3','absent','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1094','81','1','noexist','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1095','81','2','existnopower','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1096','81','3','existreadypower','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1097','81','4','normal','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1098','81','5','powerbutabnormal','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1099','81','6','unknown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1100','82','0','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1101','82','1','working','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1102','82','2','fail','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1103','82','3','speed-0','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1104','82','4','speed-low','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1105','82','5','speed-middle','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1106','82','6','speed-high','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1107','83','0','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1108','83','1','lowVoltage','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1109','83','2','overCurrent','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1110','83','3','working','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1111','83','4','fail','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1112','83','5','connect','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1113','83','6','disconnect','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1114','84','1','true - on','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1115','84','2','false - off','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1116','85','1','alarm','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1117','85','2','normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1118','86','1','notPresent','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1119','86','2','presentOK','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1120','86','3','presentNotOK','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1121','86','4','presentPowerOff','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1122','87','1','notSupported','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1123','87','2','normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1124','87','3','postFailure','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1125','87','4','entityAbsent','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1126','87','11','poeError','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1127','87','21','stackError','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1128','87','22','stackPortBlocked','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1129','87','23','stackPortFailed','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1130','87','31','sfpRecvError','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1131','87','32','sfpSendError','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1132','87','33','sfpBothError','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1133','87','41','fanError','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1134','87','51','psuError','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1135','87','61','rpsError','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1136','87','71','moduleFaulty','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1137','87','81','sensorError','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1138','87','91','hardwareFaulty','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1139','88','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1140','88','2','bad','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1141','88','3','warning','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1142','88','4','good','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1143','88','5','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1144','89','1','normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1145','89','2','abnormal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1146','90','1','online','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1147','90','2','operational','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1148','90','3','failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1149','90','4','offline','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1150','91','1','invalid','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1151','91','2','bad','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1152','91','3','warning','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1153','91','4','good','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1154','91','5','disabled','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1155','92','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1156','92','2','disabled','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1157','92','3','failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1158','92','4','warning','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1159','92','5','standby','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1160','92','6','engaged','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1161','92','7','redundant','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1162','92','8','notPresent','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1163','93','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1164','93','2','off','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1165','93','3','on - RedAlarm','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1166','94','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1167','94','2','running','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1168','94','3','ready','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1169','94','4','reset','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1170','94','5','runningAtFullSpeed','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1171','94','6','down or off','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1172','94','7','standby','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1173','95','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1174','95','2','disabled','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1175','95','3','enabled','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1176','95','4','testing','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1177','96','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1178','96','2','disabled','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1179','96','3','enabled','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1180','96','4','testing','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1181','97','1','operational','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1182','97','2','failed','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1183','97','3','powering','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1184','97','4','notpowering','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1185','97','5','notpresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1186','98','1','operational','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1187','98','2','failed','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1188','98','3','powering','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1189','98','4','notpowering','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1190','98','5','notpresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1191','99','1','normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1192','99','2','warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1193','99','3','critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1194','99','4','shutdown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1195','99','5','notpresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1196','99','6','notoperational','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1197','100','0','normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1198','100','1','abnormal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1199','101','0','normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1200','101','1','abnormal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1201','101','2','not available','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1202','102','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1203','102','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1204','102','3','degraded','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1205','102','4','failed','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1206','103','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1207','103','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1208','103','3','system','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1209','103','4','systemBoard','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1210','103','5','ioBoard','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1211','103','6','cpu','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1212','103','7','memory','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1213','103','8','storage','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1214','103','9','removableMedia','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1215','103','10','powerSupply','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1216','103','11','ambient','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1217','103','12','chassis','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1218','103','13','bridgeCard','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1219','104','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1220','104','2','ida','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1221','104','3','idaExpansion','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1222','104','4','ida-2','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1223','104','5','smart','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1224','104','6','smart-2e','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1225','104','7','smart-2p','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1226','104','8','smart-2sl','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1227','104','9','smart-3100es','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1228','104','10','smart-3200','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1229','104','11','smart-2dh','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1230','104','12','smart-221','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1231','104','13','sa-4250es','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1232','104','14','sa-4200','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1233','104','15','sa-integrated','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1234','104','16','sa-431','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1235','104','17','sa-5300','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1236','104','18','raidLc2','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1237','104','19','sa-5i','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1238','104','20','sa-532','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1239','104','21','sa-5312','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1240','104','22','sa-641','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1241','104','23','sa-642','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1242','104','24','sa-6400','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1243','104','25','sa-6400em','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1244','104','26','sa-6i','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1245','104','27','sa-generic','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1246','104','29','sa-p600','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1247','104','30','sa-p400','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1248','104','31','sa-e200','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1249','104','32','sa-e200i','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1250','104','33','sa-p400i','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1251','104','34','sa-p800','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1252','104','35','sa-e500','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1253','104','36','sa-p700m','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1254','104','37','sa-p212','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1255','104','38','sa-p410','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1256','104','39','sa-p410i','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1257','104','40','sa-p411','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1258','104','41','sa-b110i','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1259','104','42','sa-p712m','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1260','104','43','sa-p711m','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1261','104','44','sa-p812','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1262','104','45','sw-1210m','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1263','104','46','sa-p220i','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1264','104','47','sa-p222','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1265','104','48','sa-p420','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1266','104','49','sa-p420i','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1267','104','50','sa-p421','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1268','104','51','sa-b320i','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1269','104','52','sa-p822','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1270','104','53','sa-p721m','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1271','104','54','sa-b120i','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1272','104','55','hps-1224','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1273','104','56','hps-1228','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1274','104','57','hps-1228m','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1275','104','58','sa-p822se','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1276','104','59','hps-1224e','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1277','104','60','hps-1228e','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1278','104','61','hps-1228em','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1279','104','62','sa-p230i','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1280','104','63','sa-p430i','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1281','104','64','sa-p430','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1282','104','65','sa-p431','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1283','104','66','sa-p731m','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1284','104','67','sa-p830i','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1285','104','68','sa-p830','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1286','104','69','sa-p831','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1287','104','70','sa-p530','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1288','104','71','sa-p531','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1289','104','72','sa-p244br','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1290','104','73','sa-p246br','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1291','104','74','sa-p440','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1292','104','75','sa-p440ar','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1293','104','76','sa-p441','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1294','104','77','sa-p741m','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1295','104','78','sa-p840','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1296','104','79','sa-p841','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1297','104','80','sh-h240ar','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1298','104','81','sh-h244br','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1299','104','82','sh-h240','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1300','104','83','sh-h241','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1301','104','84','sa-b140i','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1302','104','85','sh-generic','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1303','104','88','sa-p840ar','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1304','105','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1305','105','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1306','105','3','failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1307','105','4','predictiveFailure','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1308','106','0','nonRecoverable','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1309','106','2','critical','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1310','106','4','nonCritical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1311','106','255','normal','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1312','107','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1313','107','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1314','107','3','ok','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1315','107','4','nonCritical','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1316','107','5','critical','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1317','107','6','nonRecoverable','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1318','108','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1319','108','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1320','108','3','ok','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1321','108','4','nonCriticalUpper','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1322','108','5','criticalUpper','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1323','108','6','nonRecoverableUpper','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1324','108','7','nonCriticalLower','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1325','108','8','criticalLower','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1326','108','9','nonRecoverableLower','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1327','108','10','failed','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1328','109','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1329','109','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1330','109','3','ok','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1331','109','4','nonCritical','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1332','109','5','critical','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1333','109','6','nonRecoverable','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1334','110','0','ok','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1335','110','1','failed','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1336','111','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1337','111','2','HDD','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1338','111','3','SSD','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1339','112','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1340','112','2','Ready','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1341','112','3','Failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1342','112','4','Degraded','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1343','112','5','Missing','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1344','112','6','Charging','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1345','112','7','Below threshold','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1346','113','1','Other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1347','113','2','RAID-0','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1348','113','3','RAID-1','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1349','113','4','RAID-5','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1350','113','5','RAID-6','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1351','113','6','RAID-10','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1352','113','7','RAID-50','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1353','113','8','RAID-60','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1354','113','9','Concatenated RAID 1','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1355','113','10','Concatenated RAID 5','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1356','114','1','Not applicable','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1357','114','2','Reconstructing','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1358','114','3','Resynching','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1359','114','4','Initializing','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1360','114','5','Background init','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1361','115','1','Write Through','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1362','115','2','Write Back','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1363','115','3','Force Write Back','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1364','116','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1365','116','2','Online','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1366','116','3','Failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1367','116','4','Degraded','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1368','117','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1369','117','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1370','117','3','replaceDrive','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1371','117','4','replaceDriveSSDWearOut','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1372','118','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1373','118','2','invalid','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1374','118','3','enabled','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1375','118','4','tmpDisabled','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1376','118','5','permDisabled','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1377','118','6','cacheModFlashMemNotAttached','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1378','118','7','cacheModDegradedFailsafeSpeed','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1379','118','8','cacheModCriticalFailure','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1380','118','9','cacheReadCacheNotMapped','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1381','119','1','Other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1382','119','2','Ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1383','119','3','Recharging','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1384','119','4','Failed','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1385','119','5','Degraded','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1386','119','6','Not Present','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1387','119','7','Capacitor failed','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1388','120','1','Other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1389','120','2','rotatingPlatters','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1390','120','3','solidState','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1391','121','0','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1392','121','2','none','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1393','121','3','RAID-1/RAID-10','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1394','121','4','RAID-4','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1395','121','5','RAID-5','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1396','121','7','RAID-6','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1397','121','8','RAID-50','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1398','121','9','RAID-60','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1399','121','10','RAID-1 ADM','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1400','121','11','RAID-10 ADM','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1401','122','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1402','122','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1403','122','3','failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1404','122','4','unconfigured','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1405','122','5','recovering','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1406','122','6','readyForRebuild','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1407','122','7','rebuilding','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1408','122','8','wrongDrive','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1409','122','9','badConnect','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1410','122','10','overheating','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1411','122','11','shutdown','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1412','122','12','expanding','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1413','122','13','notAvailable','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1414','122','14','queuedForExpansion','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1415','122','15','multipathAccessDegraded','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1416','122','16','erasing','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1417','122','17','predictiveSpareRebuildReady','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1418','122','18','rapidParityInitInProgress','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1419','122','19','rapidParityInitPending','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1420','122','20','noAccessEncryptedNoCntlrKey','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1421','122','21','unencryptedToEncryptedInProgress','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1422','122','22','newLogDrvKeyRekeyInProgress','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1423','122','23','noAccessEncryptedCntlrEncryptnNotEnbld','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1424','122','24','unencryptedToEncryptedNotStarted','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1425','122','25','newLogDrvKeyRekeyRequestReceived','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1426','123','0','Master','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1427','123','1','Standby','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1428','124','0','Master','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1429','124','1','Standby','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1430','125','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1431','125','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1432','125','2','Master','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1433','126','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1434','126','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1435','126','2','Master','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1436','127','0','from KA9Q: NET/ROM pseudo','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1437','127','1','Ethernet','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1438','127','2','Experimental Ethernet','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1439','127','3','AX.25 Level 2','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1440','127','4','PROnet token ring','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1441','127','5','Chaosnet','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1442','127','6','IEEE 802.2 Ethernet/TR/TB','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1443','127','7','ARCnet','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1444','127','8','APPLEtalk','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1445','127','15','Frame Relay DLCI','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1446','127','19','ATM','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1447','127','23','Metricom STRIP (new IANA id)','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1448','127','24','IEEE 1394 IPv4 - RFC 2734','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1449','127','27','EUI-64','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1450','127','32','InfiniBand','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1451','127','256','ARPHRD_SLIP','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1452','127','257','ARPHRD_CSLIP','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1453','127','258','ARPHRD_SLIP6','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1454','127','259','ARPHRD_CSLIP6','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1455','127','260','Notional KISS type','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1456','127','264','ARPHRD_ADAPT','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1457','127','270','ARPHRD_ROSE','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1458','127','271','CCITT X.25','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1459','127','272','Boards with X.25 in firmware','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1460','127','280','Controller Area Network','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1461','127','512','ARPHRD_PPP','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1462','127','513','Cisco HDLC','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1463','127','516','LAPB','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1464','127','517','Digital\'s DDCMP protocol','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1465','127','518','Raw HDLC','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1466','127','519','Raw IP','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1467','127','768','IPIP tunnel','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1468','127','769','IP6IP6 tunnel','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1469','127','770','Frame Relay Access Device','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1470','127','771','SKIP vif','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1471','127','772','Loopback device','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1472','127','773','Localtalk device','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1473','127','774','Fiber Distributed Data Interface','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1474','127','775','AP1000 BIF','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1475','127','776','sit0 device - IPv6-in-IPv4','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1476','127','777','IP over DDP tunneller','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1477','127','778','GRE over IP','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1478','127','779','PIMSM register interface','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1479','127','780','High Performance Parallel Interface','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1480','127','781','Nexus 64Mbps Ash','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1481','127','782','Acorn Econet','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1482','127','783','Linux-IrDA','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1483','127','784','Point to point fibrechannel','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1484','127','785','Fibrechannel arbitrated loop','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1485','127','786','Fibrechannel public loop','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1486','127','787','Fibrechannel fabric','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1487','127','800','Magic type ident for TR','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1488','127','801','IEEE 802.11','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1489','127','802','IEEE 802.11 + Prism2 header','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1490','127','803','IEEE 802.11 + radiotap header','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1491','127','804','ARPHRD_IEEE802154','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1492','127','805','IEEE 802.15.4 network monitor','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1493','127','820','PhoNet media type','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1494','127','821','PhoNet pipe header','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1495','127','822','CAIF media type','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1496','127','823','GRE over IPv6','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1497','127','824','Netlink header','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1498','127','825','IPv6 over LoWPAN','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1499','127','826','Vsock monitor header','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1500','128','0','from KA9Q: NET/ROM pseudo','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1501','128','1','Ethernet','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1502','128','2','Experimental Ethernet','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1503','128','3','AX.25 Level 2','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1504','128','4','PROnet token ring','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1505','128','5','Chaosnet','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1506','128','6','IEEE 802.2 Ethernet/TR/TB','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1507','128','7','ARCnet','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1508','128','8','APPLEtalk','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1509','128','15','Frame Relay DLCI','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1510','128','19','ATM','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1511','128','23','Metricom STRIP (new IANA id)','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1512','128','24','IEEE 1394 IPv4 - RFC 2734','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1513','128','27','EUI-64','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1514','128','32','InfiniBand','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1515','128','256','ARPHRD_SLIP','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1516','128','257','ARPHRD_CSLIP','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1517','128','258','ARPHRD_SLIP6','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1518','128','259','ARPHRD_CSLIP6','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1519','128','260','Notional KISS type','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1520','128','264','ARPHRD_ADAPT','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1521','128','270','ARPHRD_ROSE','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1522','128','271','CCITT X.25','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1523','128','272','Boards with X.25 in firmware','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1524','128','280','Controller Area Network','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1525','128','512','ARPHRD_PPP','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1526','128','513','Cisco HDLC','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1527','128','516','LAPB','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1528','128','517','Digital\'s DDCMP protocol','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1529','128','518','Raw HDLC','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1530','128','519','Raw IP','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1531','128','768','IPIP tunnel','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1532','128','769','IP6IP6 tunnel','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1533','128','770','Frame Relay Access Device','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1534','128','771','SKIP vif','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1535','128','772','Loopback device','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1536','128','773','Localtalk device','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1537','128','774','Fiber Distributed Data Interface','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1538','128','775','AP1000 BIF','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1539','128','776','sit0 device - IPv6-in-IPv4','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1540','128','777','IP over DDP tunneller','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1541','128','778','GRE over IP','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1542','128','779','PIMSM register interface','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1543','128','780','High Performance Parallel Interface','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1544','128','781','Nexus 64Mbps Ash','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1545','128','782','Acorn Econet','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1546','128','783','Linux-IrDA','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1547','128','784','Point to point fibrechannel','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1548','128','785','Fibrechannel arbitrated loop','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1549','128','786','Fibrechannel public loop','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1550','128','787','Fibrechannel fabric','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1551','128','800','Magic type ident for TR','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1552','128','801','IEEE 802.11','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1553','128','802','IEEE 802.11 + Prism2 header','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1554','128','803','IEEE 802.11 + radiotap header','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1555','128','804','ARPHRD_IEEE802154','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1556','128','805','IEEE 802.15.4 network monitor','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1557','128','820','PhoNet media type','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1558','128','821','PhoNet pipe header','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1559','128','822','CAIF media type','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1560','128','823','GRE over IPv6','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1561','128','824','Netlink header','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1562','128','825','IPv6 over LoWPAN','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1563','128','826','Vsock monitor header','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1564','129','0','from KA9Q: NET/ROM pseudo','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1565','129','1','Ethernet','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1566','129','2','Experimental Ethernet','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1567','129','3','AX.25 Level 2','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1568','129','4','PROnet token ring','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1569','129','5','Chaosnet','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1570','129','6','IEEE 802.2 Ethernet/TR/TB','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1571','129','7','ARCnet','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1572','129','8','APPLEtalk','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1573','129','15','Frame Relay DLCI','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1574','129','19','ATM','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1575','129','23','Metricom STRIP (new IANA id)','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1576','129','24','IEEE 1394 IPv4 - RFC 2734','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1577','129','27','EUI-64','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1578','129','32','InfiniBand','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1579','129','256','ARPHRD_SLIP','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1580','129','257','ARPHRD_CSLIP','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1581','129','258','ARPHRD_SLIP6','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1582','129','259','ARPHRD_CSLIP6','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1583','129','260','Notional KISS type','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1584','129','264','ARPHRD_ADAPT','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1585','129','270','ARPHRD_ROSE','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1586','129','271','CCITT X.25','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1587','129','272','Boards with X.25 in firmware','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1588','129','280','Controller Area Network','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1589','129','512','ARPHRD_PPP','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1590','129','513','Cisco HDLC','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1591','129','516','LAPB','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1592','129','517','Digital\'s DDCMP protocol','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1593','129','518','Raw HDLC','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1594','129','519','Raw IP','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1595','129','768','IPIP tunnel','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1596','129','769','IP6IP6 tunnel','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1597','129','770','Frame Relay Access Device','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1598','129','771','SKIP vif','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1599','129','772','Loopback device','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1600','129','773','Localtalk device','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1601','129','774','Fiber Distributed Data Interface','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1602','129','775','AP1000 BIF','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1603','129','776','sit0 device - IPv6-in-IPv4','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1604','129','777','IP over DDP tunneller','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1605','129','778','GRE over IP','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1606','129','779','PIMSM register interface','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1607','129','780','High Performance Parallel Interface','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1608','129','781','Nexus 64Mbps Ash','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1609','129','782','Acorn Econet','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1610','129','783','Linux-IrDA','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1611','129','784','Point to point fibrechannel','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1612','129','785','Fibrechannel arbitrated loop','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1613','129','786','Fibrechannel public loop','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1614','129','787','Fibrechannel fabric','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1615','129','800','Magic type ident for TR','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1616','129','801','IEEE 802.11','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1617','129','802','IEEE 802.11 + Prism2 header','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1618','129','803','IEEE 802.11 + radiotap header','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1619','129','804','ARPHRD_IEEE802154','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1620','129','805','IEEE 802.15.4 network monitor','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1621','129','820','PhoNet media type','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1622','129','821','PhoNet pipe header','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1623','129','822','CAIF media type','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1624','129','823','GRE over IPv6','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1625','129','824','Netlink header','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1626','129','825','IPv6 over LoWPAN','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1627','129','826','Vsock monitor header','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1628','130','0','Ethernet 802.3','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1629','130','1','Token Ring 802.5','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1630','130','2','Fiber Distributed Data Interface (FDDI)','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1631','130','3','Wide Area Network (WAN)','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1632','130','4','LocalTalk','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1633','130','5','Ethernet using DIX header format','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1634','130','6','ARCNET','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1635','130','7','ARCNET (878.2)','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1636','130','8','ATM','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1637','130','9','Wireless','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1638','130','10','Infrared Wireless','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1639','130','11','Bpc','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1640','130','12','CoWan','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1641','130','13','1394','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1642','131','0','Ethernet 802.3','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1643','131','1','Token Ring 802.5','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1644','131','2','Fiber Distributed Data Interface (FDDI)','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1645','131','3','Wide Area Network (WAN)','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1646','131','4','LocalTalk','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1647','131','5','Ethernet using DIX header format','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1648','131','6','ARCNET','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1649','131','7','ARCNET (878.2)','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1650','131','8','ATM','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1651','131','9','Wireless','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1652','131','10','Infrared Wireless','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1653','131','11','Bpc','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1654','131','12','CoWan','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1655','131','13','1394','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1656','132','0','Disconnected','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1657','132','1','Connecting','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1658','132','2','Connected','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1659','132','3','Disconnecting','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1660','132','4','Hardware Not Present','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1661','132','5','Hardware Disabled','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1662','132','6','Hardware Malfunction','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1663','132','7','Media Disconnected','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1664','132','8','Authenticating','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1665','132','9','Authentication Succeeded','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1666','132','10','Authentication Failed','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1667','132','11','Invalid Address','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1668','132','12','Credentials Required','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1669','133','0','Disconnected','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1670','133','1','Connecting','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1671','133','2','Connected','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1672','133','3','Disconnecting','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1673','133','4','Hardware Not Present','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1674','133','5','Hardware Disabled','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1675','133','6','Hardware Malfunction','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1676','133','7','Media Disconnected','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1677','133','8','Authenticating','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1678','133','9','Authentication Succeeded','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1679','133','10','Authentication Failed','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1680','133','11','Invalid Address','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1681','133','12','Credentials Required','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1682','134','0','Failed','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1683','134','1','Ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1684','135','0','Failed','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1685','135','1','Ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1686','136','0','Ok','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1687','136','1','Alarm','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1688','137','0','Ok','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1689','137','1','Alarm','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1690','138','0','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1691','138','1','operable','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1692','138','2','inoperable','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1693','138','3','degraded','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1694','138','4','poweredOff','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1695','138','5','powerProblem','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1696','138','6','removed','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1697','138','7','voltageProblem','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1698','138','8','thermalProblem','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1699','138','9','performanceProblem','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1700','138','10','accessibilityProblem','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1701','138','11','identityUnestablishable','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1702','138','12','biosPostTimeout','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1703','138','13','disabled','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1704','138','14','malformedFru','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1705','138','15','backplanePortProblem','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1706','138','16','chassisIntrusion','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1707','138','51','fabricConnProblem','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1708','138','52','fabricUnsupportedConn','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1709','138','81','config','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1710','138','82','equipmentProblem','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1711','138','83','decommissioning','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1712','138','84','chassisLimitExceeded','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1713','138','100','notSupported','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1714','138','101','discovery','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1715','138','102','discoveryFailed','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1716','138','103','identify','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1717','138','104','postFailure','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1718','138','105','upgradeProblem','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1719','138','106','peerCommProblem','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1720','138','107','autoUpgrade','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1721','138','108','linkActivateBlocked','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1722','139','0','indeterminate','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1723','139','1','unassociated','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1724','139','10','ok','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1725','139','11','discovery','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1726','139','12','config','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1727','139','13','unconfig','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1728','139','14','powerOff','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1729','139','15','restart','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1730','139','20','maintenance','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1731','139','21','test','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1732','139','29','computeMismatch','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1733','139','30','computeFailed','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1734','139','31','degraded','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1735','139','32','discoveryFailed','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1736','139','33','configFailure','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1737','139','34','unconfigFailed','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1738','139','35','testFailed','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1739','139','36','maintenanceFailed','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1740','139','40','removed','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1741','139','41','disabled','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1742','139','50','inaccessible','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1743','139','60','thermalProblem','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1744','139','61','powerProblem','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1745','139','62','voltageProblem','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1746','139','63','inoperable','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1747','139','101','decommissioning','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1748','139','201','biosRestore','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1749','139','202','cmosReset','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1750','139','203','diagnostics','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1751','139','204','diagnosticsFailed','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1752','139','210','pendingReboot','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1753','139','211','pendingReassociation','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1754','139','212','svnicNotPresent','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1755','140','0','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1756','140','1','online','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1757','140','2','unconfiguredGood','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1758','140','3','globalHotSpare','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1759','140','4','dedicatedHotSpare','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1760','140','5','jbod','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1761','140','6','offline','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1762','140','7','rebuilding','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1763','140','8','copyback','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1764','140','9','failed','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1765','140','10','unconfiguredBad','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1766','140','11','predictiveFailure','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1767','140','12','disabledForRemoval','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1768','140','13','foreignConfiguration','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1769','140','14','zeroing','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1770','140','15','good','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1771','140','16','bad','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1772','140','17','lockedForeignConfiguration','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1773','141','0','unspecified','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1774','141','1','simple','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1775','141','2','mirror','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1776','141','3','stripe','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1777','141','4','raid','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1778','141','5','stripeParity','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1779','141','6','stripeDualParity','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1780','141','7','mirrorStripe','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1781','141','8','stripeParityStripe','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1782','141','9','stripeDualParityStripe','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1783','142','0','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1784','142','1','empty','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1785','142','10','equipped','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1786','142','11','missing','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1787','142','12','mismatch','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1788','142','13','equippedNotPrimary','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1789','142','14','equippedSlave','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1790','142','15','mismatchSlave','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1791','142','16','missingSlave','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1792','142','20','equippedIdentityUnestablishable','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1793','142','21','mismatchIdentityUnestablishable','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1794','142','22','equippedWithMalformedFru','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1795','142','30','inaccessible','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1796','142','40','unauthorized','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1797','142','100','notSupported','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1798','142','101','equippedUnsupported','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1799','142','102','equippedDiscNotStarted','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1800','142','103','equippedDiscInProgress','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1801','142','104','equippedDiscError','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1802','142','105','equippedDiscUnknown','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1803','143','0','Error','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1804','143','1','Ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1805','144','0','No','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1806','144','1','Yes','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1807','145','-1 B','Undefined','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1808','146','- 1s','Inactive','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1809','147','0','False','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1810','147','1','True','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1811','148','0','green','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1812','148','1','yellow','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1813','148','2','red','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1814','148','255','unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1815','149','0','False','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1816','149','1','True','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1817','150','0','Failed','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1818','150','1','Ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1819','151','0','No','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1820','151','1','Yes','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1821','152','1','Uninitialized','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1822','152','2','Initialized','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1823','152','3','Running','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1824','152','4','Disabling','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1825','152','5','Disabled','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1826','152','6','Shutdown Pending','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1827','152','7','Delete Pending','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1828','153','1','Uninitialized','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1829','153','2','Initialized','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1830','153','3','Running','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1831','153','4','Disabling','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1832','153','5','Disabled','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1833','153','6','Shutdown Pending','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1834','153','7','Delete Pending','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1835','154','0','ONLINE','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1836','154','1','RESTORING','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1837','154','2','RECOVERING','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1838','154','3','RECOVERY_PENDING','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1839','154','4','SUSPECT','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1840','154','5','EMERGENCY','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1841','154','6','OFFLINE','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1842','154','7','COPYING','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1843','154','10','OFFLINE_SECONDARY','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1844','155','0','Disconnected','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1845','155','1','Connected','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1846','156','0','Not joined','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1847','156','1','Joined, standalone instance','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1848','156','2','Joined, failover cluster instance','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1849','157','0','Pending failover','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1850','157','1','Pending','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1851','157','2','Online','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1852','157','3','Offline','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1853','157','4','Failed','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1854','157','5','Failed, no quorum','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1855','157','6','Replica is not local','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1856','158','0','In progress','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1857','158','1','Online','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1858','158','2','Replica is not local','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1859','159','0','Resolving','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1860','159','1','Primary','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1861','159','2','Secondary','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1862','160','0','Not healthy','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1863','160','1','Partially healthy','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1864','160','2','Healthy','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1865','161','0','No','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1866','161','1','Yes','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1867','162','0','Suspended','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1868','162','1','Disconnected from the other partner','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1869','162','2','Synchronizing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1870','162','3','Pending Failover','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1871','162','4','Synchronized','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1872','162','5','The partners are not synchronized. Failover is not possible now.','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1873','162','6','The partners are synchronized. Failover is potentially possible.','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1874','162','7','Database is inaccessible or is not mirrored','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1875','163','0','Database is inaccessible or is not mirrored','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1876','163','1','Principal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1877','163','2','Mirror','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1878','164','0','Unknown state','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1879','164','1','Off [asynchronous]','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1880','164','2','Full [synchronous]','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1881','164','3','Database is inaccessible or is not mirrored','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1882','165','0','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1883','165','1','Connected','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1884','165','2','Disconnected','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1885','165','3','No witness exists','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1886','166','0','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1887','166','1','Mounted','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1888','166','2','Read Only','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1889','166','3','Read-Write','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1890','166','4','Read Only with Apply','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1891','167','0','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1892','167','1','Mounted','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1893','167','2','Read Only','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1894','167','3','Read-Write','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1895','167','4','Read Only with Apply','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1896','168','0','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1897','168','1','Snapshot standby','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1898','168','2','Logical standby','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1899','168','3','Physical standby','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1900','168','4','Primary','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1901','168','5','Far sync','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1902','169','0','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1903','169','1','Snapshot standby','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1904','169','2','Logical standby','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1905','169','3','Physical standby','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1906','169','4','Primary','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1907','169','5','Far sync','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1908','170','0','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1909','170','1','Started','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1910','170','2','Mounted','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1911','170','3','Open','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1912','170','4','Open migrate','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1913','171','0','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1914','171','1','Started','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1915','171','2','Mounted','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1916','171','3','Open','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1917','171','4','Open migrate','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1918','172','0','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1919','172','1','Primary','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1920','172','2','Secondary','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1921','173','0','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1922','173','1','Primary','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1923','173','2','Secondary','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1924','174','0','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1925','174','1','Stopped','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1926','174','2','Started','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1927','174','3','Failed','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1928','175','0','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1929','175','1','Stopped','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1930','175','2','Started','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1931','175','3','Failed','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1932','176','0','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1933','176','1','Online','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1934','176','2','Offline','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1935','176','3','Read-Only','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1936','177','0','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1937','177','1','Online','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1938','177','2','Offline','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1939','177','3','Read-Only','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1940','178','0','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1941','178','1','Error','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1942','178','2','Deferred','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1943','178','3','Valid','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1944','179','0','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1945','179','1','Error','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1946','179','2','Deferred','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1947','179','3','Valid','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1948','180','0','No','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1949','180','1','Yes','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1950','181','0','No','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1951','181','1','Yes','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1952','182','0','NOARCHIVELOG','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1953','182','1','ARCHIVELOG','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1954','182','2','MANUAL','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1955','183','0','NOARCHIVELOG','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1956','183','1','ARCHIVELOG','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1957','183','2','MANUAL','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1958','184','0','HEALTH_OK','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1959','184','1','HEALTH_WARN','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1960','184','2','HEALTH_ERR','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1961','185','0','Passive','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1962','185','1','Active','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1963','186','0','Passive','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1964','186','1','Active','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1965','187','0','Dismounted','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1966','187','1','Mounted','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1967','187','2','Healthy','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1968','188','0','Dismounted','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1969','188','1','Mounted','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1970','188','2','Healthy','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1971','189','0','Failed','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1972','189','1','Ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1973','190','0','Inactive','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1974','190','1','Active','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1975','191','0','False','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1976','191','1','True','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1977','192','0','Start','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1978','192','1','NightCheck','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1979','192','2','Disconnect','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1980','192','3','Night','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1981','192','4','Fault','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1982','192','5','BulkMppt','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1983','192','6','Absorption','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1984','192','7','Float','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1985','192','8','Equalize','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1986','192','9','Slave','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1987','192','10','Fixed','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1988','193','0','Start','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1989','193','1','Normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1990','193','2','LvdWarning','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1991','193','3','Lvd','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1992','193','4','Fault','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1993','193','5','Disconnect','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1994','193','6','NormalOff','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1995','193','7','Override','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1996','193','8','NotUsed','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1997','194','0','Start','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1998','194','1','NightCheck','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('1999','194','2','Disconnect','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2000','194','3','Night','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2001','194','4','Fault','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2002','194','5','Bulk','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2003','194','6','Pwm','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2004','194','7','Float','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2005','194','8','Equalize','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2006','195','0','Start','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2007','195','1','Normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2008','195','2','LvdWarning','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2009','195','3','Lvd','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2010','195','4','Fault','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2011','195','5','Disconnect','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2012','195','6','NormalOff','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2013','195','7','Override','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2014','195','8','NotUsed','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2015','196','0','Start','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2016','196','1','NightCheck','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2017','196','2','Disconnect','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2018','196','3','Night','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2019','196','4','Fault','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2020','196','5','BulkMppt','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2021','196','6','Pwm','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2022','196','7','Float','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2023','196','8','Equalize','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2024','197','0','Start','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2025','197','1','Normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2026','197','2','LvdWarning','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2027','197','3','Lvd','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2028','197','4','Fault','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2029','197','5','Disconnect','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2030','197','6','NormalOff','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2031','197','7','Override','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2032','197','8','NotUsed','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2033','198','0','Start','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2034','198','1','LoadOn','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2035','198','2','LvdWarning','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2036','198','3','LowVoltageDisconnect','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2037','198','4','Fault','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2038','198','5','Disconnect','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2039','198','6','NormalOff','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2040','198','7','UnknownState','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2041','198','8','Standby','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2042','199','0','Start','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2043','199','1','NightCheck','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2044','199','2','Disconnect','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2045','199','3','Night','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2046','199','4','Fault','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2047','199','5','Mppt','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2048','199','6','Absorption','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2049','199','7','Float','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2050','199','8','Equalize','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2051','199','9','Slave','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2052','199','10','Fixed','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2053','200','0','Start','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2054','200','1','NightCheck','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2055','200','2','Disconnect','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2056','200','3','Night','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2057','200','4','Fault','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2058','200','5','Mppt','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2059','200','6','Absorption','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2060','200','7','Float','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2061','200','8','Equalize','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2062','200','9','Slave','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2063','201','0','Start','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2064','201','1','NightCheck','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2065','201','2','Disconnect','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2066','201','3','Night','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2067','201','4','Fault','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2068','201','5','Bulk','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2069','201','6','Absorption','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2070','201','7','Float','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2071','201','8','Equalize','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2072','202','0','Charge','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2073','202','1','LoadControl','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2074','202','2','Diversion','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2075','202','3','Lighting','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2076','203','0','Start','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2077','203','1','Normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2078','203','2','LvdWarning','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2079','203','3','Lvd','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2080','203','4','Fault','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2081','203','5','Disconnect','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2082','203','6','LvdWarning1','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2083','203','7','OverrideLvd','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2084','203','8','Equalize','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2085','204','1','OK','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2086','204','2','Unknown reason','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2087','204','3','Disabled by operator','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2088','204','4','Interconnect offline','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2089','204','5','Disabled by partner','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2090','204','6','Takeover failed','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2091','204','7','Mailbox is in degraded state','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2092','204','8','Partner mailbox is in uninitialised state','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2093','204','9','Mailbox version mismatch','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2094','204','10','NVRAM size mismatch','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2095','204','11','Kernel version mismatch','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2096','204','12','Partner is in booting stage','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2097','204','13','Disk shelf is too hot','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2098','204','14','Partner is performing revert','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2099','204','15','Node is performing revert','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2100','204','16','Same time partner is also trying to take us over','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2101','204','17','Already in takenover mode','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2102','204','18','NVRAM log unsynchronized','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2103','204','19','State of backup mailbox is doubtful','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2104','205','1','Not configured','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2105','205','2','Enabled','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2106','205','3','Disabled','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2107','205','4','Takeover by partner disabled','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2108','205','5','This node dead','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2109','206','1','OK','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2110','206','2','Partially discharged','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2111','206','3','Fully discharged','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2112','206','4','Not present','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2113','206','5','Near end of life','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2114','206','6','At end of life','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2115','206','7','Unknown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2116','206','8','Overcharged','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2117','206','9','Fully charged','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2118','207','0','Healthy','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2119','207','1','Degraded','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2120','208','0','Undef','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2121','208','1','Off','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2122','208','2','UP','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2123','208','3','DOWN','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2124','209','0','Undef','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2125','209','1','Cluster','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2126','209','2','Data','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2127','209','3','Node-MGMT','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2128','209','4','Intercluster','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2129','209','5','Cluster-MGMT','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2130','210','0','Undef','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2131','210','1','Auto','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2132','210','2','10 Mb/s','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2133','210','3','100 Mb/s','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2134','210','4','10 Gb/s','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2135','210','5','100 Gb/s','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2136','211','0','False','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2137','211','1','True','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2138','212','0','Online','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2139','212','1','Offline','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2140','213','0','False','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2141','213','1','True','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2142','214','0','Failed','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2143','214','1','Ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2144','215','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2145','215','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2146','216','0','OK','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2147','216','1','Unauthorized','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2148','216','2','Connection error','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2149','217','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2150','217','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2151','217','3','degraded','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2152','217','4','failed','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2153','218','100','Continue','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2154','218','101','Switching Protocols','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2155','218','102','Processing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2156','218','200','OK','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2157','218','201','Created','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2158','218','202','Accepted','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2159','218','203','Non-Authoritative Information','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2160','218','204','No Content','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2161','218','205','Reset Content','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2162','218','206','Partial Content','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2163','218','207','Multi-Status','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2164','218','208','Already Reported','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2165','218','226','IM Used','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2166','218','300','Multiple Choices','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2167','218','301','Moved Permanently','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2168','218','302','Found','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2169','218','303','See Other','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2170','218','304','Not Modified','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2171','218','305','Use Proxy','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2172','218','306','Switch Proxy','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2173','218','307','Temporary Redirect','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2174','218','308','Permanent Redirect/Resume Incomplete','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2175','218','400','Bad Request','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2176','218','401','Unauthorized','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2177','218','402','Payment Required','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2178','218','403','Forbidden','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2179','218','404','Not Found','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2180','218','405','Method Not Allowed','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2181','218','406','Not Acceptable','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2182','218','407','Proxy Authentication Required','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2183','218','408','Request Timeout','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2184','218','409','Conflict','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2185','218','410','Gone','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2186','218','411','Length Required','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2187','218','412','Precondition Failed','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2188','218','413','Payload Too Large','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2189','218','414','Request-URI Too Long','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2190','218','415','Unsupported Media Type','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2191','218','416','Requested Range Not Satisfiable','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2192','218','417','Expectation Failed','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2193','218','418','I\'m a Teapot','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2194','218','419','Authentication Timeout','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2195','218','420','Method Failure/Enhance Your Calm','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2196','218','421','Misdirected Request','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2197','218','422','Unprocessable Entity','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2198','218','423','Locked','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2199','218','424','Failed Dependency','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2200','218','426','Upgrade Required','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2201','218','428','Precondition Required','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2202','218','429','Too Many Requests','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2203','218','431','Request Header Fields Too Large','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2204','218','440','Login Timeout','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2205','218','444','No Response','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2206','218','449','Retry With','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2207','218','450','Blocked by Windows Parental Controls','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2208','218','451','Unavailable for Legal Reasons/Redirect','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2209','218','494','Request Header Too Large','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2210','218','495','Cert Error','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2211','218','496','No Cert','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2212','218','497','HTTP to HTTPS','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2213','218','498','Token Expired/Invalid','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2214','218','499','Client Closed Request/Token Required','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2215','218','500','Internal Server Error','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2216','218','501','Not Implemented','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2217','218','502','Bad Gateway','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2218','218','503','Service Unavailable','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2219','218','504','Gateway Timeout','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2220','218','505','HTTP Version Not Supported','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2221','218','506','Variant Also Negotiates','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2222','218','507','Insufficient Storage','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2223','218','508','Loop Detected','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2224','218','509','Bandwidth Limit Exceeded','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2225','218','510','Not Extended','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2226','218','511','Network Authentication Required','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2227','218','520','Unknown Error','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2228','218','598','Network Read Timeout Error','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2229','218','599','Network Connect Timeout Error','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2230','219','0','Normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2231','219','1','Master','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2232','219','2','Slave','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2233','220','0','Undefined','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2234','220','1','Normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2235','220','2','Fault','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2236','220','3','Pre-fail','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2237','220','4','Partially broken','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2238','220','5','Degraded','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2239','220','6','Bad sectors found','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2240','220','7','Bit errors found','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2241','220','8','Consistent','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2242','220','9','Inconsistent','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2243','220','10','Busy','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2244','220','11','No input','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2245','220','12','Low battery','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2246','220','13','Single link fault','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2247','220','14','Invalid','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2248','220','15','Write protect','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2249','221','1','Normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2250','221','2','Faulty','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2251','221','3','Unformatted','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2252','221','4','Formatting','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2253','222','0','Undefined','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2254','222','1','Normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2255','222','2','Running','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2256','222','3','Not running','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2257','222','4','Not existed','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2258','222','5','Sleep in high temperature','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2259','222','6','Starting','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2260','222','7','Power failure rotection','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2261','222','8','Spin down','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2262','222','9','Started','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2263','222','10','Link Up','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2264','222','11','Link Down','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2265','222','12','Powering on','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2266','222','13','Powered off','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2267','222','14','Pre-copy','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2268','222','15','Copyback','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2269','222','16','Reconstruction','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2270','222','17','Expansion','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2271','222','18','Unformatted','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2272','222','19','Formatting','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2273','222','20','Unmapped','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2274','222','21','Initial synchronizing','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2275','222','22','Consistent','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2276','222','23','Synchronizing','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2277','222','24','Synchronized','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2278','222','25','Unsynchronized','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2279','222','26','Split','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2280','222','27','Online','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2281','222','28','Offline','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2282','222','29','Locked','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2283','222','30','Enabled','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2284','222','31','Disabled','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2285','222','32','Balancing','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2286','222','33','To be recovered','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2287','222','34','Interrupted','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2288','222','35','Invalid','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2289','222','36','Not start','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2290','222','37','Queuing','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2291','222','38','Stopped','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2292','222','39','Copying','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2293','222','40','Completed','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2294','222','41','Paused','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2295','222','42','Reverse synchronizing','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2296','222','43','Activated','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2297','222','44','Restore','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2298','222','45','Inactive','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2299','222','46','Idle','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2300','222','47','Powering off','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2301','222','48','Charging','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2302','222','49','Charging completed','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2303','222','50','Discharging','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2304','222','51','Upgrading','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2305','222','52','Power Lost','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2306','222','53','Initializing','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2307','222','54','Apply change','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2308','222','55','Online disable','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2309','222','56','Offline disable','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2310','222','57','Online frozen','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2311','222','58','Offline frozen','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2312','222','59','Closed','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2313','222','60','Removing','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2314','222','61','In service','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2315','222','62','Out of service','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2316','222','63','Running normal','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2317','222','64','Running fail','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2318','222','65','Running success','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2319','222','66','Running success','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2320','222','67','Running failed','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2321','222','68','Waiting','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2322','222','69','Canceling','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2323','222','70','Canceled','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2324','222','71','About to synchronize','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2325','222','72','Synchronizing data','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2326','222','73','Failed to synchronize','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2327','222','74','Fault','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2328','222','75','Migrating','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2329','222','76','Migrated','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2330','222','77','Activating','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2331','222','78','Deactivating','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2332','222','79','Start failed','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2333','222','80','Stop failed','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2334','222','81','Decommissioning','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2335','222','82','Decommissioned','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2336','222','83','Recommissioning','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2337','222','84','Replacing node','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2338','222','85','Scheduling','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2339','222','86','Pausing','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2340','222','87','Suspending','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2341','222','88','Suspended','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2342','222','89','Overload','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2343','222','90','To be switch','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2344','222','91','Switching','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2345','222','92','To be cleanup','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2346','222','93','Forced start','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2347','222','94','Error','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2348','222','95','Job completed','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2349','222','96','Partition Migrating','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2350','222','97','Mount','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2351','222','98','Umount','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2352','222','99','INSTALLING','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2353','222','100','To Be Synchronized','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2354','222','101','Connecting','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2355','222','102','Service Switching','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2356','222','103','Power-on failed','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2357','222','104','REPAIRING','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2358','222','105','abnormal','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2359','222','106','Deleting','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2360','222','107','Modifying','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2361','222','108','Running(clearing data)','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2362','222','109','Running(synchronizing data)','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2363','223','0','Failed','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2364','223','1','Ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2365','223','2','Error','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2366','134','2','Error','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2367','224','0','Failed','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2368','224','1','Ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2369','224','2','Error','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2370','135','2','Error','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2371','225','0','False','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2372','225','1','True','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2373','226','0','STARTUP','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2374','226','1','PRIMARY','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2375','226','2','SECONDARY','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2376','226','3','RECOVERING','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2377','226','5','STARTUP2','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2378','226','6','UNKNOWN','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2379','226','7','ARBITER','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2380','226','8','DOWN','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2381','226','9','ROLLBACK','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2382','226','10','REMOVED','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2383','227','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2384','227','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2385','228','0','False','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2386','228','1','True','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2387','229','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2388','229','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2389','230','1','normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2390','230','2','warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2391','230','3','critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2392','230','4','shutdown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2393','230','5','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2394','230','6','notFunctioning','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2395','231','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2396','231','2','halfDuplex','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2397','231','3','fullDuplex','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2398','232','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2399','232','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2400','232','3','testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2401','232','4','unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2402','232','5','dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2403','232','6','notPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2404','232','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2405','233','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2406','233','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2407','233','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2408','233','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2409','233','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2410','233','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2411','233','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2412','233','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2413','233','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2414','233','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2415','233','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2416','233','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2417','233','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2418','233','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2419','233','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2420','233','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2421','233','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2422','233','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2423','233','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2424','233','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2425','233','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2426','233','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2427','233','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2428','233','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2429','233','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2430','233','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2431','233','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2432','233','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2433','233','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2434','233','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2435','233','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2436','233','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2437','233','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2438','233','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2439','233','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2440','233','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2441','233','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2442','233','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2443','233','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2444','233','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2445','233','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2446','233','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2447','233','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2448','233','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2449','233','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2450','233','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2451','233','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2452','233','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2453','233','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2454','233','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2455','233','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2456','233','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2457','233','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2458','233','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2459','233','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2460','233','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2461','233','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2462','233','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2463','233','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2464','233','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2465','233','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2466','233','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2467','233','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2468','233','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2469','233','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2470','233','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2471','233','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2472','233','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2473','233','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2474','233','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2475','233','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2476','233','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2477','233','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2478','233','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2479','233','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2480','233','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2481','233','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2482','233','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2483','233','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2484','233','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2485','233','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2486','233','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2487','233','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2488','233','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2489','233','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2490','233','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2491','233','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2492','233','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2493','233','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2494','233','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2495','233','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2496','233','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2497','233','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2498','233','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2499','233','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2500','233','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2501','233','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2502','233','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2503','233','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2504','233','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2505','233','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2506','233','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2507','233','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2508','233','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2509','233','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2510','233','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2511','233','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2512','233','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2513','233','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2514','233','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2515','233','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2516','233','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2517','233','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2518','233','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2519','233','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2520','233','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2521','233','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2522','233','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2523','233','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2524','233','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2525','233','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2526','233','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2527','233','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2528','233','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2529','233','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2530','233','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2531','233','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2532','233','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2533','233','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2534','233','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2535','233','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2536','233','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2537','233','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2538','233','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2539','233','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2540','233','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2541','233','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2542','233','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2543','233','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2544','233','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2545','233','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2546','233','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2547','233','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2548','233','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2549','233','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2550','233','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2551','233','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2552','233','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2553','233','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2554','233','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2555','233','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2556','233','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2557','233','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2558','233','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2559','233','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2560','233','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2561','233','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2562','233','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2563','233','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2564','233','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2565','233','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2566','233','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2567','233','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2568','233','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2569','233','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2570','233','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2571','233','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2572','233','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2573','233','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2574','233','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2575','233','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2576','233','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2577','233','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2578','233','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2579','233','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2580','233','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2581','233','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2582','233','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2583','233','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2584','233','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2585','233','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2586','233','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2587','233','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2588','233','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2589','233','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2590','233','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2591','233','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2592','233','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2593','233','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2594','233','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2595','233','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2596','233','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2597','233','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2598','233','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2599','233','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2600','233','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2601','233','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2602','233','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2603','233','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2604','233','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2605','233','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2606','233','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2607','233','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2608','233','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2609','233','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2610','233','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2611','233','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2612','233','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2613','233','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2614','233','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2615','233','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2616','233','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2617','233','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2618','233','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2619','233','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2620','233','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2621','233','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2622','233','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2623','233','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2624','233','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2625','233','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2626','233','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2627','233','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2628','233','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2629','233','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2630','233','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2631','233','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2632','233','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2633','233','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2634','233','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2635','233','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2636','233','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2637','233','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2638','233','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2639','233','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2640','233','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2641','233','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2642','233','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2643','233','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2644','233','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2645','233','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2646','233','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2647','233','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2648','233','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2649','233','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2650','233','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2651','233','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2652','233','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2653','233','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2654','233','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2655','233','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2656','233','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2657','233','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2658','233','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2659','233','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2660','233','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2661','233','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2662','233','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2663','233','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2664','233','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2665','233','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2666','233','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2667','233','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2668','233','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2669','233','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2670','233','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2671','233','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2672','233','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2673','233','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2674','233','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2675','233','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2676','233','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2677','233','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2678','233','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2679','233','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2680','233','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2681','233','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2682','233','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2683','233','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2684','233','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2685','233','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2686','233','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2687','233','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2688','233','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2689','233','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2690','233','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2691','234','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2692','234','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2693','235','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2694','235','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2695','235','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2696','236','1','normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2697','236','2','warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2698','236','3','critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2699','236','4','shutdown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2700','236','5','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2701','236','6','notFunctioning','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2702','237','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2703','237','2','halfDuplex','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2704','237','3','fullDuplex','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2705','238','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2706','238','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2707','238','3','testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2708','238','4','unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2709','238','5','dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2710','238','6','notPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2711','238','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2712','239','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2713','239','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2714','239','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2715','239','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2716','239','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2717','239','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2718','239','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2719','239','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2720','239','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2721','239','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2722','239','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2723','239','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2724','239','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2725','239','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2726','239','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2727','239','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2728','239','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2729','239','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2730','239','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2731','239','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2732','239','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2733','239','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2734','239','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2735','239','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2736','239','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2737','239','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2738','239','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2739','239','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2740','239','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2741','239','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2742','239','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2743','239','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2744','239','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2745','239','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2746','239','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2747','239','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2748','239','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2749','239','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2750','239','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2751','239','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2752','239','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2753','239','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2754','239','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2755','239','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2756','239','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2757','239','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2758','239','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2759','239','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2760','239','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2761','239','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2762','239','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2763','239','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2764','239','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2765','239','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2766','239','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2767','239','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2768','239','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2769','239','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2770','239','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2771','239','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2772','239','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2773','239','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2774','239','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2775','239','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2776','239','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2777','239','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2778','239','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2779','239','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2780','239','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2781','239','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2782','239','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2783','239','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2784','239','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2785','239','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2786','239','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2787','239','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2788','239','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2789','239','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2790','239','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2791','239','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2792','239','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2793','239','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2794','239','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2795','239','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2796','239','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2797','239','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2798','239','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2799','239','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2800','239','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2801','239','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2802','239','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2803','239','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2804','239','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2805','239','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2806','239','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2807','239','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2808','239','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2809','239','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2810','239','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2811','239','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2812','239','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2813','239','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2814','239','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2815','239','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2816','239','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2817','239','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2818','239','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2819','239','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2820','239','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2821','239','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2822','239','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2823','239','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2824','239','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2825','239','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2826','239','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2827','239','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2828','239','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2829','239','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2830','239','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2831','239','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2832','239','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2833','239','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2834','239','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2835','239','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2836','239','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2837','239','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2838','239','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2839','239','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2840','239','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2841','239','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2842','239','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2843','239','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2844','239','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2845','239','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2846','239','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2847','239','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2848','239','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2849','239','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2850','239','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2851','239','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2852','239','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2853','239','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2854','239','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2855','239','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2856','239','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2857','239','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2858','239','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2859','239','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2860','239','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2861','239','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2862','239','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2863','239','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2864','239','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2865','239','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2866','239','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2867','239','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2868','239','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2869','239','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2870','239','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2871','239','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2872','239','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2873','239','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2874','239','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2875','239','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2876','239','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2877','239','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2878','239','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2879','239','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2880','239','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2881','239','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2882','239','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2883','239','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2884','239','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2885','239','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2886','239','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2887','239','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2888','239','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2889','239','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2890','239','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2891','239','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2892','239','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2893','239','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2894','239','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2895','239','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2896','239','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2897','239','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2898','239','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2899','239','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2900','239','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2901','239','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2902','239','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2903','239','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2904','239','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2905','239','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2906','239','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2907','239','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2908','239','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2909','239','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2910','239','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2911','239','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2912','239','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2913','239','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2914','239','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2915','239','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2916','239','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2917','239','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2918','239','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2919','239','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2920','239','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2921','239','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2922','239','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2923','239','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2924','239','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2925','239','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2926','239','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2927','239','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2928','239','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2929','239','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2930','239','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2931','239','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2932','239','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2933','239','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2934','239','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2935','239','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2936','239','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2937','239','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2938','239','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2939','239','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2940','239','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2941','239','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2942','239','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2943','239','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2944','239','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2945','239','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2946','239','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2947','239','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2948','239','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2949','239','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2950','239','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2951','239','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2952','239','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2953','239','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2954','239','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2955','239','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2956','239','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2957','239','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2958','239','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2959','239','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2960','239','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2961','239','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2962','239','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2963','239','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2964','239','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2965','239','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2966','239','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2967','239','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2968','239','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2969','239','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2970','239','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2971','239','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2972','239','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2973','239','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2974','239','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2975','239','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2976','239','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2977','239','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2978','239','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2979','239','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2980','239','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2981','239','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2982','239','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2983','239','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2984','239','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2985','239','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2986','239','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2987','239','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2988','239','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2989','239','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2990','239','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2991','239','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2992','239','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2993','239','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2994','239','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2995','239','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2996','239','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2997','239','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2998','240','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('2999','240','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3000','241','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3001','241','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3002','241','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3003','242','1','normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3004','242','2','warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3005','242','3','critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3006','242','4','shutdown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3007','242','5','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3008','242','6','notFunctioning','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3009','243','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3010','243','2','halfDuplex','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3011','243','3','fullDuplex','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3012','244','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3013','244','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3014','244','3','testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3015','244','4','unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3016','244','5','dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3017','244','6','notPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3018','244','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3019','245','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3020','245','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3021','245','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3022','245','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3023','245','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3024','245','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3025','245','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3026','245','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3027','245','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3028','245','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3029','245','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3030','245','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3031','245','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3032','245','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3033','245','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3034','245','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3035','245','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3036','245','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3037','245','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3038','245','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3039','245','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3040','245','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3041','245','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3042','245','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3043','245','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3044','245','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3045','245','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3046','245','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3047','245','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3048','245','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3049','245','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3050','245','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3051','245','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3052','245','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3053','245','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3054','245','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3055','245','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3056','245','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3057','245','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3058','245','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3059','245','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3060','245','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3061','245','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3062','245','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3063','245','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3064','245','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3065','245','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3066','245','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3067','245','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3068','245','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3069','245','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3070','245','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3071','245','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3072','245','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3073','245','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3074','245','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3075','245','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3076','245','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3077','245','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3078','245','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3079','245','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3080','245','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3081','245','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3082','245','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3083','245','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3084','245','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3085','245','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3086','245','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3087','245','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3088','245','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3089','245','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3090','245','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3091','245','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3092','245','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3093','245','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3094','245','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3095','245','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3096','245','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3097','245','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3098','245','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3099','245','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3100','245','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3101','245','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3102','245','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3103','245','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3104','245','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3105','245','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3106','245','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3107','245','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3108','245','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3109','245','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3110','245','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3111','245','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3112','245','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3113','245','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3114','245','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3115','245','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3116','245','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3117','245','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3118','245','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3119','245','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3120','245','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3121','245','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3122','245','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3123','245','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3124','245','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3125','245','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3126','245','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3127','245','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3128','245','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3129','245','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3130','245','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3131','245','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3132','245','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3133','245','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3134','245','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3135','245','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3136','245','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3137','245','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3138','245','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3139','245','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3140','245','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3141','245','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3142','245','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3143','245','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3144','245','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3145','245','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3146','245','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3147','245','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3148','245','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3149','245','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3150','245','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3151','245','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3152','245','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3153','245','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3154','245','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3155','245','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3156','245','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3157','245','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3158','245','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3159','245','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3160','245','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3161','245','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3162','245','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3163','245','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3164','245','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3165','245','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3166','245','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3167','245','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3168','245','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3169','245','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3170','245','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3171','245','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3172','245','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3173','245','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3174','245','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3175','245','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3176','245','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3177','245','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3178','245','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3179','245','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3180','245','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3181','245','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3182','245','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3183','245','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3184','245','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3185','245','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3186','245','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3187','245','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3188','245','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3189','245','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3190','245','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3191','245','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3192','245','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3193','245','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3194','245','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3195','245','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3196','245','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3197','245','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3198','245','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3199','245','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3200','245','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3201','245','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3202','245','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3203','245','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3204','245','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3205','245','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3206','245','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3207','245','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3208','245','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3209','245','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3210','245','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3211','245','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3212','245','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3213','245','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3214','245','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3215','245','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3216','245','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3217','245','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3218','245','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3219','245','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3220','245','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3221','245','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3222','245','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3223','245','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3224','245','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3225','245','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3226','245','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3227','245','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3228','245','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3229','245','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3230','245','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3231','245','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3232','245','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3233','245','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3234','245','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3235','245','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3236','245','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3237','245','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3238','245','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3239','245','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3240','245','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3241','245','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3242','245','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3243','245','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3244','245','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3245','245','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3246','245','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3247','245','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3248','245','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3249','245','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3250','245','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3251','245','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3252','245','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3253','245','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3254','245','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3255','245','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3256','245','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3257','245','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3258','245','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3259','245','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3260','245','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3261','245','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3262','245','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3263','245','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3264','245','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3265','245','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3266','245','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3267','245','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3268','245','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3269','245','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3270','245','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3271','245','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3272','245','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3273','245','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3274','245','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3275','245','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3276','245','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3277','245','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3278','245','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3279','245','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3280','245','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3281','245','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3282','245','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3283','245','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3284','245','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3285','245','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3286','245','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3287','245','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3288','245','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3289','245','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3290','245','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3291','245','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3292','245','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3293','245','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3294','245','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3295','245','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3296','245','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3297','245','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3298','245','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3299','245','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3300','245','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3301','245','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3302','245','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3303','245','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3304','245','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3305','246','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3306','246','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3307','247','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3308','247','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3309','247','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3310','248','1','normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3311','248','2','warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3312','248','3','critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3313','248','4','shutdown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3314','248','5','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3315','248','6','notFunctioning','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3316','249','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3317','249','2','halfDuplex','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3318','249','3','fullDuplex','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3319','250','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3320','250','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3321','250','3','testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3322','250','4','unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3323','250','5','dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3324','250','6','notPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3325','250','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3326','251','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3327','251','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3328','251','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3329','251','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3330','251','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3331','251','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3332','251','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3333','251','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3334','251','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3335','251','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3336','251','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3337','251','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3338','251','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3339','251','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3340','251','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3341','251','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3342','251','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3343','251','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3344','251','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3345','251','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3346','251','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3347','251','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3348','251','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3349','251','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3350','251','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3351','251','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3352','251','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3353','251','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3354','251','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3355','251','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3356','251','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3357','251','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3358','251','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3359','251','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3360','251','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3361','251','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3362','251','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3363','251','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3364','251','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3365','251','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3366','251','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3367','251','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3368','251','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3369','251','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3370','251','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3371','251','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3372','251','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3373','251','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3374','251','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3375','251','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3376','251','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3377','251','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3378','251','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3379','251','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3380','251','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3381','251','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3382','251','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3383','251','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3384','251','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3385','251','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3386','251','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3387','251','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3388','251','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3389','251','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3390','251','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3391','251','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3392','251','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3393','251','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3394','251','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3395','251','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3396','251','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3397','251','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3398','251','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3399','251','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3400','251','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3401','251','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3402','251','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3403','251','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3404','251','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3405','251','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3406','251','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3407','251','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3408','251','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3409','251','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3410','251','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3411','251','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3412','251','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3413','251','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3414','251','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3415','251','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3416','251','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3417','251','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3418','251','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3419','251','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3420','251','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3421','251','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3422','251','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3423','251','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3424','251','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3425','251','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3426','251','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3427','251','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3428','251','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3429','251','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3430','251','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3431','251','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3432','251','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3433','251','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3434','251','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3435','251','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3436','251','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3437','251','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3438','251','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3439','251','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3440','251','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3441','251','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3442','251','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3443','251','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3444','251','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3445','251','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3446','251','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3447','251','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3448','251','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3449','251','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3450','251','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3451','251','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3452','251','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3453','251','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3454','251','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3455','251','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3456','251','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3457','251','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3458','251','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3459','251','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3460','251','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3461','251','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3462','251','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3463','251','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3464','251','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3465','251','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3466','251','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3467','251','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3468','251','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3469','251','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3470','251','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3471','251','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3472','251','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3473','251','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3474','251','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3475','251','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3476','251','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3477','251','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3478','251','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3479','251','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3480','251','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3481','251','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3482','251','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3483','251','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3484','251','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3485','251','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3486','251','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3487','251','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3488','251','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3489','251','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3490','251','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3491','251','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3492','251','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3493','251','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3494','251','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3495','251','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3496','251','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3497','251','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3498','251','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3499','251','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3500','251','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3501','251','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3502','251','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3503','251','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3504','251','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3505','251','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3506','251','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3507','251','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3508','251','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3509','251','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3510','251','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3511','251','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3512','251','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3513','251','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3514','251','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3515','251','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3516','251','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3517','251','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3518','251','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3519','251','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3520','251','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3521','251','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3522','251','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3523','251','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3524','251','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3525','251','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3526','251','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3527','251','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3528','251','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3529','251','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3530','251','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3531','251','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3532','251','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3533','251','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3534','251','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3535','251','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3536','251','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3537','251','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3538','251','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3539','251','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3540','251','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3541','251','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3542','251','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3543','251','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3544','251','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3545','251','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3546','251','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3547','251','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3548','251','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3549','251','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3550','251','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3551','251','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3552','251','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3553','251','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3554','251','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3555','251','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3556','251','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3557','251','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3558','251','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3559','251','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3560','251','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3561','251','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3562','251','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3563','251','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3564','251','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3565','251','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3566','251','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3567','251','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3568','251','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3569','251','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3570','251','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3571','251','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3572','251','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3573','251','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3574','251','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3575','251','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3576','251','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3577','251','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3578','251','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3579','251','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3580','251','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3581','251','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3582','251','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3583','251','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3584','251','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3585','251','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3586','251','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3587','251','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3588','251','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3589','251','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3590','251','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3591','251','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3592','251','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3593','251','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3594','251','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3595','251','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3596','251','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3597','251','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3598','251','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3599','251','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3600','251','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3601','251','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3602','251','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3603','251','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3604','251','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3605','251','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3606','251','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3607','251','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3608','251','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3609','251','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3610','251','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3611','251','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3612','252','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3613','252','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3614','253','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3615','253','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3616','253','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3617','254','1','normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3618','254','2','warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3619','254','3','critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3620','254','4','shutdown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3621','254','5','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3622','254','6','notFunctioning','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3623','255','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3624','255','2','halfDuplex','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3625','255','3','fullDuplex','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3626','256','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3627','256','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3628','256','3','testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3629','256','4','unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3630','256','5','dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3631','256','6','notPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3632','256','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3633','257','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3634','257','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3635','257','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3636','257','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3637','257','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3638','257','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3639','257','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3640','257','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3641','257','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3642','257','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3643','257','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3644','257','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3645','257','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3646','257','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3647','257','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3648','257','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3649','257','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3650','257','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3651','257','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3652','257','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3653','257','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3654','257','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3655','257','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3656','257','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3657','257','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3658','257','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3659','257','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3660','257','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3661','257','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3662','257','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3663','257','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3664','257','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3665','257','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3666','257','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3667','257','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3668','257','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3669','257','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3670','257','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3671','257','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3672','257','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3673','257','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3674','257','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3675','257','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3676','257','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3677','257','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3678','257','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3679','257','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3680','257','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3681','257','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3682','257','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3683','257','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3684','257','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3685','257','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3686','257','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3687','257','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3688','257','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3689','257','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3690','257','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3691','257','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3692','257','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3693','257','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3694','257','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3695','257','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3696','257','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3697','257','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3698','257','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3699','257','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3700','257','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3701','257','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3702','257','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3703','257','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3704','257','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3705','257','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3706','257','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3707','257','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3708','257','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3709','257','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3710','257','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3711','257','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3712','257','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3713','257','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3714','257','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3715','257','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3716','257','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3717','257','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3718','257','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3719','257','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3720','257','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3721','257','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3722','257','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3723','257','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3724','257','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3725','257','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3726','257','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3727','257','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3728','257','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3729','257','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3730','257','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3731','257','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3732','257','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3733','257','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3734','257','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3735','257','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3736','257','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3737','257','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3738','257','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3739','257','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3740','257','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3741','257','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3742','257','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3743','257','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3744','257','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3745','257','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3746','257','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3747','257','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3748','257','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3749','257','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3750','257','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3751','257','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3752','257','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3753','257','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3754','257','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3755','257','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3756','257','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3757','257','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3758','257','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3759','257','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3760','257','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3761','257','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3762','257','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3763','257','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3764','257','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3765','257','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3766','257','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3767','257','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3768','257','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3769','257','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3770','257','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3771','257','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3772','257','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3773','257','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3774','257','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3775','257','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3776','257','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3777','257','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3778','257','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3779','257','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3780','257','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3781','257','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3782','257','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3783','257','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3784','257','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3785','257','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3786','257','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3787','257','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3788','257','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3789','257','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3790','257','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3791','257','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3792','257','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3793','257','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3794','257','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3795','257','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3796','257','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3797','257','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3798','257','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3799','257','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3800','257','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3801','257','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3802','257','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3803','257','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3804','257','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3805','257','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3806','257','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3807','257','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3808','257','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3809','257','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3810','257','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3811','257','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3812','257','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3813','257','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3814','257','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3815','257','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3816','257','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3817','257','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3818','257','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3819','257','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3820','257','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3821','257','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3822','257','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3823','257','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3824','257','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3825','257','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3826','257','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3827','257','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3828','257','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3829','257','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3830','257','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3831','257','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3832','257','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3833','257','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3834','257','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3835','257','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3836','257','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3837','257','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3838','257','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3839','257','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3840','257','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3841','257','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3842','257','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3843','257','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3844','257','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3845','257','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3846','257','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3847','257','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3848','257','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3849','257','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3850','257','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3851','257','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3852','257','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3853','257','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3854','257','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3855','257','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3856','257','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3857','257','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3858','257','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3859','257','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3860','257','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3861','257','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3862','257','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3863','257','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3864','257','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3865','257','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3866','257','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3867','257','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3868','257','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3869','257','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3870','257','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3871','257','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3872','257','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3873','257','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3874','257','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3875','257','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3876','257','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3877','257','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3878','257','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3879','257','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3880','257','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3881','257','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3882','257','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3883','257','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3884','257','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3885','257','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3886','257','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3887','257','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3888','257','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3889','257','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3890','257','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3891','257','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3892','257','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3893','257','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3894','257','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3895','257','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3896','257','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3897','257','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3898','257','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3899','257','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3900','257','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3901','257','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3902','257','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3903','257','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3904','257','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3905','257','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3906','257','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3907','257','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3908','257','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3909','257','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3910','257','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3911','257','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3912','257','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3913','257','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3914','257','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3915','257','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3916','257','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3917','257','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3918','257','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3919','258','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3920','258','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3921','259','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3922','259','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3923','259','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3924','260','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3925','260','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3926','260','4','unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3927','260','5','dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3928','260','6','notPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3929','260','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3930','261','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3931','261','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3932','261','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3933','261','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3934','261','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3935','261','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3936','261','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3937','261','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3938','261','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3939','261','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3940','261','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3941','261','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3942','261','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3943','261','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3944','261','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3945','261','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3946','261','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3947','261','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3948','261','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3949','261','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3950','261','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3951','261','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3952','261','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3953','261','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3954','261','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3955','261','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3956','261','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3957','261','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3958','261','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3959','261','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3960','261','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3961','261','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3962','261','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3963','261','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3964','261','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3965','261','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3966','261','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3967','261','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3968','261','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3969','261','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3970','261','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3971','261','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3972','261','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3973','261','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3974','261','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3975','261','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3976','261','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3977','261','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3978','261','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3979','261','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3980','261','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3981','261','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3982','261','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3983','261','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3984','261','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3985','261','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3986','261','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3987','261','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3988','261','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3989','261','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3990','261','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3991','261','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3992','261','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3993','261','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3994','261','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3995','261','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3996','261','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3997','261','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3998','261','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('3999','261','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4000','261','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4001','261','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4002','261','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4003','261','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4004','261','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4005','261','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4006','261','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4007','261','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4008','261','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4009','261','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4010','261','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4011','261','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4012','261','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4013','261','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4014','261','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4015','261','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4016','261','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4017','261','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4018','261','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4019','261','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4020','261','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4021','261','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4022','261','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4023','261','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4024','261','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4025','261','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4026','261','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4027','261','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4028','261','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4029','261','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4030','261','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4031','261','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4032','261','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4033','261','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4034','261','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4035','261','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4036','261','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4037','261','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4038','261','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4039','261','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4040','261','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4041','261','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4042','261','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4043','261','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4044','261','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4045','261','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4046','261','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4047','261','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4048','261','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4049','261','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4050','261','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4051','261','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4052','261','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4053','261','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4054','261','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4055','261','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4056','261','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4057','261','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4058','261','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4059','261','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4060','261','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4061','261','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4062','261','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4063','261','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4064','261','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4065','261','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4066','261','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4067','261','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4068','261','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4069','261','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4070','261','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4071','261','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4072','261','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4073','261','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4074','261','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4075','261','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4076','261','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4077','261','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4078','261','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4079','261','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4080','261','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4081','261','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4082','261','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4083','261','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4084','261','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4085','261','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4086','261','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4087','261','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4088','261','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4089','261','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4090','261','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4091','261','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4092','261','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4093','261','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4094','261','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4095','261','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4096','261','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4097','261','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4098','261','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4099','261','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4100','261','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4101','261','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4102','261','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4103','261','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4104','261','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4105','261','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4106','261','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4107','261','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4108','261','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4109','261','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4110','261','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4111','261','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4112','261','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4113','261','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4114','261','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4115','261','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4116','261','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4117','261','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4118','261','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4119','261','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4120','261','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4121','261','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4122','261','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4123','261','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4124','261','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4125','261','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4126','261','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4127','261','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4128','261','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4129','261','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4130','261','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4131','261','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4132','261','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4133','261','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4134','261','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4135','261','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4136','261','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4137','261','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4138','261','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4139','261','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4140','261','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4141','261','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4142','261','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4143','261','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4144','261','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4145','261','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4146','261','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4147','261','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4148','261','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4149','261','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4150','261','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4151','261','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4152','261','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4153','261','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4154','261','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4155','261','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4156','261','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4157','261','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4158','261','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4159','261','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4160','261','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4161','261','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4162','261','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4163','261','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4164','261','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4165','261','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4166','261','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4167','261','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4168','261','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4169','261','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4170','261','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4171','261','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4172','261','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4173','261','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4174','261','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4175','261','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4176','261','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4177','261','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4178','261','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4179','261','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4180','261','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4181','261','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4182','261','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4183','261','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4184','261','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4185','261','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4186','261','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4187','261','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4188','261','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4189','261','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4190','261','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4191','261','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4192','261','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4193','261','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4194','261','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4195','261','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4196','261','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4197','261','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4198','261','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4199','261','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4200','261','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4201','261','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4202','261','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4203','261','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4204','261','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4205','261','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4206','261','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4207','261','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4208','261','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4209','261','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4210','261','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4211','261','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4212','261','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4213','261','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4214','261','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4215','261','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4216','262','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4217','262','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4218','263','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4219','263','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4220','263','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4221','264','1','Normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4222','264','2','Warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4223','264','3','Critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4224','264','4','Not applicable','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4225','265','1','no Battery Needs Replacing','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4226','265','2','battery Needs Replacing','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4227','266','1','no Transfer','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4228','266','2','High Line Voltage','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4229','266','3','Brownout','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4230','266','4','Blackout','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4231','266','5','Small Momentary Sag','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4232','266','6','Deep Momentary Sag','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4233','266','7','Small Momentary Spike','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4234','266','8','Large Momentary Spike','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4235','266','9','Self Test','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4236','266','10','Rate of Voltage Change','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4237','267','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4238','267','2','Normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4239','267','3','Low','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4240','267','4','In Fault Condition','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4241','268','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4242','268','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4243','269','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4244','269','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4245','269','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4246','270','0','Failed','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4247','270','1','Succeeded','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4248','270','2','Retry','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4249','270','3','Canceled','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4250','270','4','Running','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4251','270','5','Unknown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4252','271','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4253','271','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4254','272','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4255','272','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4256','273','1','Normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4257','273','2','Warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4258','273','3','Critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4259','273','4','Not applicable','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4260','274','1','no Battery Needs Replacing','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4261','274','2','battery Needs Replacing','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4262','275','1','no Transfer','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4263','275','2','High Line Voltage','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4264','275','3','Brownout','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4265','275','4','Blackout','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4266','275','5','Small Momentary Sag','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4267','275','6','Deep Momentary Sag','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4268','275','7','Small Momentary Spike','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4269','275','8','Large Momentary Spike','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4270','275','9','Self Test','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4271','275','10','Rate of Voltage Change','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4272','276','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4273','276','2','Normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4274','276','3','Low','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4275','276','4','In Fault Condition','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4276','277','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4277','277','2','Online','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4278','277','3','On Battery','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4279','277','4','On Smart Boost','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4280','277','5','Timed Sleeping','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4281','277','6','Software Bypass','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4282','277','7','Off','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4283','277','8','Rebooting','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4284','277','9','Switched Bypass','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4285','277','10','Hardware Failure Bypass','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4286','277','11','Sleeping Until Power Return','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4287','277','12','On Smart Trim','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4288','277','13','Eco Mode','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4289','277','14','Hot Standby','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4290','277','15','On Battery Test','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4291','277','16','Emergency Static Bypass','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4292','277','17','Static Bypass Standby','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4293','277','18','Power Saving Mode','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4294','277','19','Spot Mode','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4295','277','20','E-Conversion','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4296','277','21','Charger Spotmode','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4297','277','22','Inverter Spotmode','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4298','277','23','Active Load','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4299','277','24','Battery Discharge Spotmode','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4300','277','25','Inverter Standby','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4301','277','26','Charger Only','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4302','278','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4303','278','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4304','278','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4305','279','1','Normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4306','279','2','Warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4307','279','3','Critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4308','279','4','Not applicable','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4309','280','1','no Battery Needs Replacing','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4310','280','2','battery Needs Replacing','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4311','281','1','no Transfer','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4312','281','2','High Line Voltage','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4313','281','3','Brownout','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4314','281','4','Blackout','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4315','281','5','Small Momentary Sag','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4316','281','6','Deep Momentary Sag','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4317','281','7','Small Momentary Spike','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4318','281','8','Large Momentary Spike','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4319','281','9','Self Test','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4320','281','10','Rate of Voltage Change','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4321','282','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4322','282','2','Normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4323','282','3','Low','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4324','282','4','In Fault Condition','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4325','283','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4326','283','2','Online','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4327','283','3','On Battery','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4328','283','4','On Smart Boost','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4329','283','5','Timed Sleeping','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4330','283','6','Software Bypass','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4331','283','7','Off','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4332','283','8','Rebooting','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4333','283','9','Switched Bypass','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4334','283','10','Hardware Failure Bypass','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4335','283','11','Sleeping Until Power Return','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4336','283','12','On Smart Trim','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4337','283','13','Eco Mode','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4338','283','14','Hot Standby','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4339','283','15','On Battery Test','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4340','283','16','Emergency Static Bypass','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4341','283','17','Static Bypass Standby','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4342','283','18','Power Saving Mode','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4343','283','19','Spot Mode','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4344','283','20','E-Conversion','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4345','283','21','Charger Spotmode','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4346','283','22','Inverter Spotmode','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4347','283','23','Active Load','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4348','283','24','Battery Discharge Spotmode','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4349','283','25','Inverter Standby','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4350','283','26','Charger Only','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4351','284','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4352','284','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4353','284','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4354','285','1','Normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4355','285','2','Warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4356','285','3','Critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4357','285','4','Not applicable','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4358','286','1','no Battery Needs Replacing','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4359','286','2','battery Needs Replacing','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4360','287','1','no Transfer','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4361','287','2','High Line Voltage','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4362','287','3','Brownout','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4363','287','4','Blackout','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4364','287','5','Small Momentary Sag','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4365','287','6','Deep Momentary Sag','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4366','287','7','Small Momentary Spike','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4367','287','8','Large Momentary Spike','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4368','287','9','Self Test','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4369','287','10','Rate of Voltage Change','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4370','288','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4371','288','2','Normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4372','288','3','Low','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4373','288','4','In Fault Condition','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4374','289','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4375','289','2','Online','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4376','289','3','On Battery','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4377','289','4','On Smart Boost','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4378','289','5','Timed Sleeping','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4379','289','6','Software Bypass','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4380','289','7','Off','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4381','289','8','Rebooting','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4382','289','9','Switched Bypass','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4383','289','10','Hardware Failure Bypass','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4384','289','11','Sleeping Until Power Return','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4385','289','12','On Smart Trim','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4386','289','13','Eco Mode','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4387','289','14','Hot Standby','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4388','289','15','On Battery Test','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4389','289','16','Emergency Static Bypass','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4390','289','17','Static Bypass Standby','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4391','289','18','Power Saving Mode','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4392','289','19','Spot Mode','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4393','289','20','E-Conversion','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4394','289','21','Charger Spotmode','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4395','289','22','Inverter Spotmode','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4396','289','23','Active Load','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4397','289','24','Battery Discharge Spotmode','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4398','289','25','Inverter Standby','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4399','289','26','Charger Only','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4400','290','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4401','290','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4402','290','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4403','291','1','Normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4404','291','2','Warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4405','291','3','Critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4406','291','4','Not applicable','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4407','292','1','no Battery Needs Replacing','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4408','292','2','battery Needs Replacing','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4409','293','1','no Transfer','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4410','293','2','High Line Voltage','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4411','293','3','Brownout','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4412','293','4','Blackout','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4413','293','5','Small Momentary Sag','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4414','293','6','Deep Momentary Sag','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4415','293','7','Small Momentary Spike','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4416','293','8','Large Momentary Spike','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4417','293','9','Self Test','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4418','293','10','Rate of Voltage Change','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4419','294','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4420','294','2','Normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4421','294','3','Low','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4422','294','4','In Fault Condition','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4423','295','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4424','295','2','Online','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4425','295','3','On Battery','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4426','295','4','On Smart Boost','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4427','295','5','Timed Sleeping','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4428','295','6','Software Bypass','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4429','295','7','Off','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4430','295','8','Rebooting','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4431','295','9','Switched Bypass','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4432','295','10','Hardware Failure Bypass','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4433','295','11','Sleeping Until Power Return','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4434','295','12','On Smart Trim','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4435','295','13','Eco Mode','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4436','295','14','Hot Standby','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4437','295','15','On Battery Test','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4438','295','16','Emergency Static Bypass','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4439','295','17','Static Bypass Standby','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4440','295','18','Power Saving Mode','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4441','295','19','Spot Mode','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4442','295','20','E-Conversion','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4443','295','21','Charger Spotmode','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4444','295','22','Inverter Spotmode','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4445','295','23','Active Load','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4446','295','24','Battery Discharge Spotmode','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4447','295','25','Inverter Standby','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4448','295','26','Charger Only','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4449','296','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4450','296','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4451','296','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4452','297','1','Normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4453','297','2','Warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4454','297','3','Critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4455','297','4','Not applicable','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4456','298','1','no Battery Needs Replacing','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4457','298','2','battery Needs Replacing','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4458','299','1','no Transfer','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4459','299','2','High Line Voltage','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4460','299','3','Brownout','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4461','299','4','Blackout','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4462','299','5','Small Momentary Sag','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4463','299','6','Deep Momentary Sag','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4464','299','7','Small Momentary Spike','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4465','299','8','Large Momentary Spike','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4466','299','9','Self Test','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4467','299','10','Rate of Voltage Change','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4468','300','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4469','300','2','Normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4470','300','3','Low','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4471','300','4','In Fault Condition','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4472','301','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4473','301','2','Online','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4474','301','3','On Battery','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4475','301','4','On Smart Boost','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4476','301','5','Timed Sleeping','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4477','301','6','Software Bypass','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4478','301','7','Off','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4479','301','8','Rebooting','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4480','301','9','Switched Bypass','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4481','301','10','Hardware Failure Bypass','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4482','301','11','Sleeping Until Power Return','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4483','301','12','On Smart Trim','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4484','301','13','Eco Mode','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4485','301','14','Hot Standby','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4486','301','15','On Battery Test','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4487','301','16','Emergency Static Bypass','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4488','301','17','Static Bypass Standby','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4489','301','18','Power Saving Mode','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4490','301','19','Spot Mode','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4491','301','20','E-Conversion','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4492','301','21','Charger Spotmode','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4493','301','22','Inverter Spotmode','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4494','301','23','Active Load','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4495','301','24','Battery Discharge Spotmode','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4496','301','25','Inverter Standby','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4497','301','26','Charger Only','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4498','302','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4499','302','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4500','302','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4550','309','1','Normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4551','309','2','Warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4552','309','3','Critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4553','309','4','Not applicable','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4554','310','1','no Battery Needs Replacing','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4555','310','2','battery Needs Replacing','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4556','311','1','no Transfer','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4557','311','2','High Line Voltage','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4558','311','3','Brownout','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4559','311','4','Blackout','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4560','311','5','Small Momentary Sag','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4561','311','6','Deep Momentary Sag','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4562','311','7','Small Momentary Spike','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4563','311','8','Large Momentary Spike','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4564','311','9','Self Test','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4565','311','10','Rate of Voltage Change','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4566','312','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4567','312','2','Normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4568','312','3','Low','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4569','312','4','In Fault Condition','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4570','313','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4571','313','2','Online','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4572','313','3','On Battery','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4573','313','4','On Smart Boost','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4574','313','5','Timed Sleeping','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4575','313','6','Software Bypass','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4576','313','7','Off','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4577','313','8','Rebooting','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4578','313','9','Switched Bypass','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4579','313','10','Hardware Failure Bypass','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4580','313','11','Sleeping Until Power Return','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4581','313','12','On Smart Trim','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4582','313','13','Eco Mode','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4583','313','14','Hot Standby','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4584','313','15','On Battery Test','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4585','313','16','Emergency Static Bypass','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4586','313','17','Static Bypass Standby','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4587','313','18','Power Saving Mode','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4588','313','19','Spot Mode','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4589','313','20','E-Conversion','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4590','313','21','Charger Spotmode','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4591','313','22','Inverter Spotmode','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4592','313','23','Active Load','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4593','313','24','Battery Discharge Spotmode','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4594','313','25','Inverter Standby','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4595','313','26','Charger Only','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4596','314','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4597','314','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4598','314','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4599','315','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4600','315','2','Online','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4601','315','3','On Battery','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4602','315','4','On Smart Boost','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4603','315','5','Timed Sleeping','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4604','315','6','Software Bypass','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4605','315','7','Off','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4606','315','8','Rebooting','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4607','315','9','Switched Bypass','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4608','315','10','Hardware Failure Bypass','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4609','315','11','Sleeping Until Power Return','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4610','315','12','On Smart Trim','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4611','315','13','Eco Mode','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4612','315','14','Hot Standby','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4613','315','15','On Battery Test','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4614','315','16','Emergency Static Bypass','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4615','315','17','Static Bypass Standby','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4616','315','18','Power Saving Mode','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4617','315','19','Spot Mode','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4618','315','20','E-Conversion','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4619','315','21','Charger Spotmode','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4620','315','22','Inverter Spotmode','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4621','315','23','Active Load','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4622','315','24','Battery Discharge Spotmode','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4623','315','25','Inverter Standby','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4624','315','26','Charger Only','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4625','316','1','Normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4626','316','2','Warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4627','316','3','Critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4628','316','4','Not applicable','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4629','317','1','no Battery Needs Replacing','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4630','317','2','battery Needs Replacing','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4631','318','1','no Transfer','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4632','318','2','High Line Voltage','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4633','318','3','Brownout','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4634','318','4','Blackout','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4635','318','5','Small Momentary Sag','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4636','318','6','Deep Momentary Sag','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4637','318','7','Small Momentary Spike','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4638','318','8','Large Momentary Spike','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4639','318','9','Self Test','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4640','318','10','Rate of Voltage Change','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4641','319','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4642','319','2','Normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4643','319','3','Low','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4644','319','4','In Fault Condition','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4645','320','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4646','320','2','Online','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4647','320','3','On Battery','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4648','320','4','On Smart Boost','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4649','320','5','Timed Sleeping','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4650','320','6','Software Bypass','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4651','320','7','Off','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4652','320','8','Rebooting','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4653','320','9','Switched Bypass','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4654','320','10','Hardware Failure Bypass','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4655','320','11','Sleeping Until Power Return','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4656','320','12','On Smart Trim','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4657','320','13','Eco Mode','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4658','320','14','Hot Standby','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4659','320','15','On Battery Test','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4660','320','16','Emergency Static Bypass','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4661','320','17','Static Bypass Standby','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4662','320','18','Power Saving Mode','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4663','320','19','Spot Mode','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4664','320','20','E-Conversion','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4665','320','21','Charger Spotmode','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4666','320','22','Inverter Spotmode','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4667','320','23','Active Load','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4668','320','24','Battery Discharge Spotmode','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4669','320','25','Inverter Standby','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4670','320','26','Charger Only','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4671','321','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4672','321','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4673','321','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4674','322','1','Normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4675','322','2','Warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4676','322','3','Critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4677','322','4','Not applicable','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4678','323','1','no Battery Needs Replacing','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4679','323','2','battery Needs Replacing','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4680','324','1','no Transfer','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4681','324','2','High Line Voltage','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4682','324','3','Brownout','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4683','324','4','Blackout','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4684','324','5','Small Momentary Sag','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4685','324','6','Deep Momentary Sag','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4686','324','7','Small Momentary Spike','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4687','324','8','Large Momentary Spike','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4688','324','9','Self Test','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4689','324','10','Rate of Voltage Change','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4690','325','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4691','325','2','Normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4692','325','3','Low','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4693','325','4','In Fault Condition','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4694','326','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4695','326','2','Online','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4696','326','3','On Battery','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4697','326','4','On Smart Boost','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4698','326','5','Timed Sleeping','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4699','326','6','Software Bypass','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4700','326','7','Off','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4701','326','8','Rebooting','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4702','326','9','Switched Bypass','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4703','326','10','Hardware Failure Bypass','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4704','326','11','Sleeping Until Power Return','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4705','326','12','On Smart Trim','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4706','326','13','Eco Mode','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4707','326','14','Hot Standby','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4708','326','15','On Battery Test','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4709','326','16','Emergency Static Bypass','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4710','326','17','Static Bypass Standby','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4711','326','18','Power Saving Mode','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4712','326','19','Spot Mode','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4713','326','20','E-Conversion','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4714','326','21','Charger Spotmode','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4715','326','22','Inverter Spotmode','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4716','326','23','Active Load','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4717','326','24','Battery Discharge Spotmode','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4718','326','25','Inverter Standby','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4719','326','26','Charger Only','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4720','327','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4721','327','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4722','327','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4723','328','1','Normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4724','328','2','Warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4725','328','3','Critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4726','328','4','Not applicable','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4727','329','1','no Battery Needs Replacing','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4728','329','2','battery Needs Replacing','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4729','330','1','no Transfer','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4730','330','2','High Line Voltage','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4731','330','3','Brownout','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4732','330','4','Blackout','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4733','330','5','Small Momentary Sag','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4734','330','6','Deep Momentary Sag','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4735','330','7','Small Momentary Spike','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4736','330','8','Large Momentary Spike','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4737','330','9','Self Test','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4738','330','10','Rate of Voltage Change','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4739','331','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4740','331','2','Normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4741','331','3','Low','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4742','331','4','In Fault Condition','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4743','332','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4744','332','2','Online','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4745','332','3','On Battery','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4746','332','4','On Smart Boost','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4747','332','5','Timed Sleeping','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4748','332','6','Software Bypass','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4749','332','7','Off','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4750','332','8','Rebooting','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4751','332','9','Switched Bypass','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4752','332','10','Hardware Failure Bypass','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4753','332','11','Sleeping Until Power Return','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4754','332','12','On Smart Trim','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4755','332','13','Eco Mode','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4756','332','14','Hot Standby','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4757','332','15','On Battery Test','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4758','332','16','Emergency Static Bypass','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4759','332','17','Static Bypass Standby','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4760','332','18','Power Saving Mode','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4761','332','19','Spot Mode','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4762','332','20','E-Conversion','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4763','332','21','Charger Spotmode','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4764','332','22','Inverter Spotmode','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4765','332','23','Active Load','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4766','332','24','Battery Discharge Spotmode','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4767','332','25','Inverter Standby','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4768','332','26','Charger Only','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4769','333','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4770','333','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4771','333','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4772','334','0','False','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4773','334','1','True','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4774','335','0','False','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4775','335','1','True','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4776','336','1','Normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4777','336','2','Warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4778','336','3','Critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4779','336','4','Not applicable','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4780','337','1','no Battery Needs Replacing','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4781','337','2','battery Needs Replacing','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4782','338','1','no Transfer','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4783','338','2','High Line Voltage','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4784','338','3','Brownout','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4785','338','4','Blackout','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4786','338','5','Small Momentary Sag','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4787','338','6','Deep Momentary Sag','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4788','338','7','Small Momentary Spike','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4789','338','8','Large Momentary Spike','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4790','338','9','Self Test','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4791','338','10','Rate of Voltage Change','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4792','339','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4793','339','2','Normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4794','339','3','Low','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4795','339','4','In Fault Condition','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4796','340','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4797','340','2','Online','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4798','340','3','On Battery','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4799','340','4','On Smart Boost','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4800','340','5','Timed Sleeping','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4801','340','6','Software Bypass','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4802','340','7','Off','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4803','340','8','Rebooting','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4804','340','9','Switched Bypass','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4805','340','10','Hardware Failure Bypass','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4806','340','11','Sleeping Until Power Return','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4807','340','12','On Smart Trim','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4808','340','13','Eco Mode','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4809','340','14','Hot Standby','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4810','340','15','On Battery Test','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4811','340','16','Emergency Static Bypass','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4812','340','17','Static Bypass Standby','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4813','340','18','Power Saving Mode','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4814','340','19','Spot Mode','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4815','340','20','E-Conversion','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4816','340','21','Charger Spotmode','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4817','340','22','Inverter Spotmode','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4818','340','23','Active Load','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4819','340','24','Battery Discharge Spotmode','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4820','340','25','Inverter Standby','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4821','340','26','Charger Only','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4822','341','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4823','341','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4824','341','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4825','342','0','-','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4826','342','1','Y','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4827','343','0','-','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4828','343','1','Y','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4829','344','0','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4830','344','1','active','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4831','344','2','reloading','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4832','344','3','inactive','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4833','344','4','failed','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4834','344','5','activating','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4835','344','6','deactivating','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4836','345','0','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4837','345','1','enabled','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4838','345','2','enabled-runtime','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4839','345','3','linked','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4840','345','4','linked-runtime','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4841','345','5','masked','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4842','345','6','masked-runtime','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4843','345','7','static','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4844','345','8','disabled','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4845','345','9','invalid','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4846','346','0','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4847','346','1','loaded','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4848','346','2','error','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4849','346','3','masked','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4850','347','1','none','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4851','347','2','other','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4852','347','3','hmacMd5','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4853','347','4','hmacSha','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4854','348','1','none','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4855','348','2','des','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4856','348','3','des3','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4857','348','4','rc4','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4858','348','5','rc5','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4859','348','6','idea','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4860','348','7','cast','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4861','348','8','blowfish','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4862','348','9','aes','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4863','349','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4864','349','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4865','349','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4866','350','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4867','350','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4868','350','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4869','350','4','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4870','350','5','Dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4871','350','6','NotPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4872','350','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4873','351','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4874','351','2','ipsec','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4875','351','3','l2tp','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4876','351','4','l2tpoveripsxe','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4877','351','5','pptp','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4878','351','6','l2f','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4879','351','7','ssl','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4880','352','1','none','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4881','352','2','other','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4882','352','3','radius','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4883','352','4','tacacsplus','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4884','352','5','kerberos','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4885','352','6','local','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4886','352','7','ldap','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4887','352','8','ntlm','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4888','352','9','sdi','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4889','353','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4890','353','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4891','353','3','chassis','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4892','353','4','backplane','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4893','353','5','container','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4894','353','6','powerSupply','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4895','353','7','fan','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4896','353','8','sensor','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4897','353','9','module','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4898','353','10','port','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4899','353','11','stack','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4900','353','12','cpu','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4901','354','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4902','354','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4903','354','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4904','355','0','bad','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4905','355','1','good','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4906','355','2','notpresent','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4907','356','1','none','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4908','356','2','minimum','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4909','356','3','nominal','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4910','356','4','dedicated','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4911','356','5','custom','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4912','357','0','none','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4913','357','1','txrx','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4914','357','2','tx','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4915','357','3','rx','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4916','358','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4917','358','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4918','358','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4919','359','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4920','359','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4921','359','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4922','360','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4923','360','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4924','360','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4925','361','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4926','361','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4927','361','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4928','361','4','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4929','361','5','Dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4930','361','6','NotPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4931','361','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4932','362','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4933','362','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4934','362','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4935','363','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4936','363','1','Cooper','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4937','363','2','Fiber','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4938','364','0','auto','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4939','364','1','10M half','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4940','364','2','10M full','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4941','364','3','100M half','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4942','364','4','100M full','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4943','364','5','1G full','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4944','365','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4945','365','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4946','365','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4947','366','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4948','366','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4949','366','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4950','366','4','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4951','366','5','Dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4952','366','6','NotPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4953','366','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4954','367','1','OK with DDM','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4955','367','2','OK without DDM','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4956','367','3','nonoperational','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4957','368','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4958','368','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4959','368','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4960','369','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4961','369','1','Cooper','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4962','369','2','Fiber','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4963','370','0','auto','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4964','370','1','10M half','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4965','370','2','10M full','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4966','370','3','100M half','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4967','370','4','100M full','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4968','370','5','1G full','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4969','371','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4970','371','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4971','371','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4972','372','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4973','372','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4974','372','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4975','372','4','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4976','372','5','Dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4977','372','6','NotPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4978','372','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4979','373','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4980','373','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4981','373','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4982','374','1','Empty','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4983','374','2','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4984','374','3','Down','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4985','374','4','Testing','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4986','374','5','Standby','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4987','375','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4988','375','101','msc1000G','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4989','375','102','alc1248G_51','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4990','375','103','alc1248G_53','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4991','375','104','slc1248G_22','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4992','375','105','vlc1224G_41','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4993','375','106','msc1024G','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4994','375','107','alc1272G_51','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4995','375','108','vop1248G_61_SIP','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4996','375','109','msc1000GA','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4997','375','110','vlc1324G_51','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4998','375','111','msc1224G','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('4999','375','112','vop1248G_61_H248','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5000','375','113','vlc1348G_51','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5001','375','114','elc1220G_55','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5002','375','115','msc1024GA','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5003','375','116','vlc1324G_53','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5004','375','117','ima1408G_81','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5005','375','118','vlc1424G_56','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5006','375','119','slc1348G_22','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5007','375','120','vlc1348G_53','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5008','375','121','alc1372G_51','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5009','375','122','msc1024GB','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5010','375','123','msc1224GB','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5011','375','124','vop1372G_61_H248','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5012','376','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5013','376','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5014','376','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5015','377','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5016','377','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5017','377','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5018','377','4','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5019','377','5','Dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5020','377','6','NotPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5021','377','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5022','378','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5023','378','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5024','378','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5025','379','1','Empty','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5026','379','2','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5027','379','3','Down','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5028','379','4','Testing','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5029','379','5','Standby','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5030','380','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5031','380','101','msc1000G','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5032','380','102','alc1248G_51','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5033','380','103','alc1248G_53','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5034','380','104','slc1248G_22','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5035','380','105','vlc1224G_41','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5036','380','106','msc1024G','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5037','380','107','alc1272G_51','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5038','380','108','vop1248G_61_SIP','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5039','380','109','msc1000GA','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5040','380','110','vlc1324G_51','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5041','380','111','msc1224G','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5042','380','112','vop1248G_61_H248','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5043','380','113','vlc1348G_51','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5044','380','114','elc1220G_55','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5045','380','115','msc1024GA','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5046','380','116','vlc1324G_53','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5047','380','117','ima1408G_81','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5048','380','118','vlc1424G_56','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5049','380','119','slc1348G_22','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5050','380','120','vlc1348G_53','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5051','380','121','alc1372G_51','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5052','380','122','msc1024GB','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5053','380','123','msc1224GB','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5054','380','124','vop1372G_61_H248','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5055','381','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5056','381','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5057','381','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5058','382','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5059','382','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5060','382','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5061','382','4','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5062','382','5','Dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5063','382','6','NotPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5064','382','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5065','383','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5066','383','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5067','383','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5068','384','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5069','384','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5070','384','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5071','385','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5072','385','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5073','385','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5074','385','4','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5075','385','5','Dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5076','385','6','NotPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5077','385','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5078','386','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5079','386','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5080','386','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5081','387','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5082','387','1','Cooper','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5083','387','2','Fiber','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5084','388','0','auto','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5085','388','1','10M half','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5086','388','2','10M full','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5087','388','3','100M half','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5088','388','4','100M full','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5089','388','5','1G full','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5090','389','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5091','389','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5092','389','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5093','390','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5094','390','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5095','390','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5096','390','4','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5097','390','5','Dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5098','390','6','NotPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5099','390','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5100','391','1','OK with DDM','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5101','391','2','OK without DDM','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5102','391','3','nonoperational','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5103','392','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5104','392','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5105','392','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5106','393','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5107','393','1','Cooper','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5108','393','2','Fiber','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5109','394','0','auto','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5110','394','1','10M half','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5111','394','2','10M full','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5112','394','3','100M half','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5113','394','4','100M full','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5114','394','5','1G full','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5115','395','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5116','395','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5117','395','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5118','396','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5119','396','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5120','396','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5121','396','4','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5122','396','5','Dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5123','396','6','NotPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5124','396','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5125','397','1','OK with DDM','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5126','397','2','OK without DDM','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5127','397','3','nonoperational','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5128','398','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5129','398','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5130','398','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5131','399','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5132','399','1','Cooper','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5133','399','2','Fiber','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5134','400','0','auto','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5135','400','1','10M half','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5136','400','2','10M full','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5137','400','3','100M half','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5138','400','4','100M full','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5139','400','5','1G full','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5140','401','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5141','401','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5142','401','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5143','402','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5144','402','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5145','402','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5146','402','4','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5147','402','5','Dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5148','402','6','NotPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5149','402','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5150','403','1','OK with DDM','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5151','403','2','OK without DDM','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5152','403','3','nonoperational','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5153','404','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5154','404','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5155','404','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5156','405','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5157','405','1','Cooper','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5158','405','2','Fiber','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5159','406','0','auto','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5160','406','1','10M half','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5161','406','2','10M full','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5162','406','3','100M half','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5163','406','4','100M full','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5164','406','5','1G full','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5165','407','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5166','407','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5167','407','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5168','408','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5169','408','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5170','408','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5171','408','4','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5172','408','5','Dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5173','408','6','NotPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5174','408','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5175','409','1','OK with DDM','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5176','409','2','OK without DDM','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5177','409','3','nonoperational','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5178','410','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5179','410','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5180','410','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5181','411','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5182','411','1','Cooper','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5183','411','2','Fiber','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5184','412','0','auto','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5185','412','1','10M half','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5186','412','2','10M full','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5187','412','3','100M half','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5188','412','4','100M full','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5189','412','5','1G full','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5190','413','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5191','413','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5192','413','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5193','414','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5194','414','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5195','414','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5196','414','4','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5197','414','5','Dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5198','414','6','NotPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5199','414','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5200','415','1','OK with DDM','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5201','415','2','OK without DDM','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5202','415','3','nonoperational','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5203','416','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5204','416','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5205','416','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5206','417','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5207','417','1','Cooper','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5208','417','2','Fiber','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5209','417','3','XFP','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5210','417','4','CX4','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5211','418','0','auto','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5212','418','1','10M half','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5213','418','2','10M full','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5214','418','3','100M half','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5215','418','4','100M full','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5216','418','5','1G full','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5217','418','6','10G full','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5218','418','7','12G full','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5219','418','8','40G full','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5220','418','9','1G auto','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5221','419','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5222','419','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5223','419','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5224','420','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5225','420','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5226','420','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5227','420','4','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5228','420','5','Dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5229','420','6','NotPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5230','420','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5231','421','1','OK with DDM','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5232','421','2','OK without DDM','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5233','421','3','nonoperational','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5234','422','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5235','422','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5236','422','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5237','423','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5238','423','1','Cooper','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5239','423','2','Fiber','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5240','423','3','XFP','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5241','423','4','CX4','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5242','424','0','auto','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5243','424','1','10M half','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5244','424','2','10M full','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5245','424','3','100M half','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5246','424','4','100M full','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5247','424','5','1G full','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5248','424','6','10G full','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5249','424','7','12G full','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5250','424','8','40G full','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5251','424','9','1G auto','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5252','425','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5253','425','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5254','425','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5255','426','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5256','426','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5257','426','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5258','426','4','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5259','426','5','Dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5260','426','6','NotPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5261','426','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5262','427','1','OK with DDM','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5263','427','2','OK without DDM','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5264','427','3','nonoperational','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5265','428','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5266','428','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5267','428','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5268','429','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5269','429','1','Cooper','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5270','429','2','Fiber','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5271','429','3','XFP','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5272','429','4','CX4','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5273','430','0','auto','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5274','430','1','10M half','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5275','430','2','10M full','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5276','430','3','100M half','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5277','430','4','100M full','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5278','430','5','1G full','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5279','431','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5280','431','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5281','431','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5282','432','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5283','432','2','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5284','432','3','Testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5285','432','4','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5286','432','5','Dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5287','432','6','NotPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5288','432','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5289','433','1','OK with DDM','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5290','433','2','OK without DDM','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5291','433','3','nonoperational','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5292','434','0','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5293','434','1','operable','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5294','434','2','inoperable','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5295','434','3','degraded','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5296','434','4','poweredOff','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5297','434','5','powerProblem','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5298','434','6','removed','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5299','434','7','voltageProblem','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5300','434','8','thermalProblem','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5301','434','9','performanceProblem','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5302','434','10','accessibilityProblem','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5303','434','11','identityUnestablishable','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5304','434','12','biosPostTimeout','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5305','434','13','disabled','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5306','434','14','malformedFru','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5307','434','15','backplanePortProblem','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5308','434','16','chassisIntrusion','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5309','434','51','fabricConnProblem','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5310','434','52','fabricUnsupportedConn','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5311','434','81','config','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5312','434','82','equipmentProblem','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5313','434','83','decommissioning','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5314','434','84','chassisLimitExceeded','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5315','434','100','notSupported','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5316','434','101','discovery','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5317','434','102','discoveryFailed','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5318','434','103','identify','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5319','434','104','postFailure','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5320','434','105','upgradeProblem','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5321','434','106','peerCommProblem','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5322','434','107','autoUpgrade','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5323','434','108','linkActivateBlocked','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5324','435','0','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5325','435','1','empty','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5326','435','10','equipped','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5327','435','11','missing','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5328','435','12','mismatch','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5329','435','13','equippedNotPrimary','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5330','435','14','equippedSlave','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5331','435','15','mismatchSlave','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5332','435','16','missingSlave','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5333','435','20','equippedIdentityUnestablishable','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5334','435','21','mismatchIdentityUnestablishable','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5335','435','22','equippedWithMalformedFru','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5336','435','30','inaccessible','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5337','435','40','unauthorized','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5338','435','100','notSupported','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5339','435','101','equippedUnsupported','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5340','435','102','equippedDiscNotStarted','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5341','435','103','equippedDiscInProgress','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5342','435','104','equippedDiscError','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5343','435','105','equippedDiscUnknown','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5344','436','0','indeterminate','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5345','436','1','unassociated','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5346','436','10','ok','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5347','436','11','discovery','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5348','436','12','config','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5349','436','13','unconfig','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5350','436','14','powerOff','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5351','436','15','restart','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5352','436','20','maintenance','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5353','436','21','test','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5354','436','29','computeMismatch','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5355','436','30','computeFailed','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5356','436','31','degraded','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5357','436','32','discoveryFailed','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5358','436','33','configFailure','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5359','436','34','unconfigFailed','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5360','436','35','testFailed','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5361','436','36','maintenanceFailed','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5362','436','40','removed','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5363','436','41','disabled','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5364','436','50','inaccessible','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5365','436','60','thermalProblem','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5366','436','61','powerProblem','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5367','436','62','voltageProblem','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5368','436','63','inoperable','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5369','436','101','decommissioning','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5370','436','201','biosRestore','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5371','436','202','cmosReset','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5372','436','203','diagnostics','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5373','436','204','diagnosticsFailed','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5374','436','210','pendingReboot','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5375','436','211','pendingReassociation','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5376','436','212','svnicNotPresent','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5377','437','0','unspecified','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5378','437','1','simple','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5379','437','2','mirror','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5380','437','3','stripe','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5381','437','4','raid','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5382','437','5','stripeParity','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5383','437','6','stripeDualParity','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5384','437','7','mirrorStripe','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5385','437','8','stripeParityStripe','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5386','437','9','stripeDualParityStripe','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5387','438','0','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5388','438','1','online','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5389','438','2','unconfiguredGood','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5390','438','3','globalHotSpare','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5391','438','4','dedicatedHotSpare','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5392','438','5','jbod','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5393','438','6','offline','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5394','438','7','rebuilding','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5395','438','8','copyback','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5396','438','9','failed','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5397','438','10','unconfiguredBad','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5398','438','11','predictiveFailure','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5399','438','12','disabledForRemoval','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5400','438','13','foreignConfiguration','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5401','438','14','zeroing','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5402','438','15','good','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5403','438','16','bad','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5404','438','17','lockedForeignConfiguration','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5405','439','0','unspecified','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5406','439','1','hdd','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5407','439','2','ssd','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5408','439','3','nvme','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5409','440','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5410','440','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5411','440','3','testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5412','440','4','unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5413','440','5','dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5414','440','6','notPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5415','440','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5416','441','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5417','441','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5418','441','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5419','441','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5420','441','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5421','441','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5422','441','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5423','441','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5424','441','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5425','441','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5426','441','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5427','441','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5428','441','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5429','441','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5430','441','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5431','441','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5432','441','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5433','441','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5434','441','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5435','441','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5436','441','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5437','441','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5438','441','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5439','441','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5440','441','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5441','441','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5442','441','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5443','441','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5444','441','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5445','441','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5446','441','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5447','441','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5448','441','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5449','441','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5450','441','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5451','441','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5452','441','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5453','441','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5454','441','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5455','441','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5456','441','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5457','441','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5458','441','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5459','441','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5460','441','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5461','441','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5462','441','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5463','441','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5464','441','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5465','441','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5466','441','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5467','441','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5468','441','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5469','441','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5470','441','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5471','441','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5472','441','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5473','441','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5474','441','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5475','441','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5476','441','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5477','441','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5478','441','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5479','441','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5480','441','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5481','441','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5482','441','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5483','441','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5484','441','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5485','441','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5486','441','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5487','441','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5488','441','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5489','441','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5490','441','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5491','441','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5492','441','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5493','441','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5494','441','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5495','441','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5496','441','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5497','441','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5498','441','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5499','441','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5500','441','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5501','441','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5502','441','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5503','441','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5504','441','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5505','441','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5506','441','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5507','441','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5508','441','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5509','441','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5510','441','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5511','441','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5512','441','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5513','441','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5514','441','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5515','441','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5516','441','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5517','441','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5518','441','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5519','441','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5520','441','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5521','441','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5522','441','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5523','441','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5524','441','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5525','441','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5526','441','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5527','441','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5528','441','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5529','441','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5530','441','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5531','441','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5532','441','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5533','441','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5534','441','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5535','441','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5536','441','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5537','441','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5538','441','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5539','441','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5540','441','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5541','441','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5542','441','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5543','441','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5544','441','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5545','441','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5546','441','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5547','441','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5548','441','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5549','441','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5550','441','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5551','441','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5552','441','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5553','441','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5554','441','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5555','441','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5556','441','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5557','441','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5558','441','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5559','441','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5560','441','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5561','441','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5562','441','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5563','441','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5564','441','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5565','441','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5566','441','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5567','441','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5568','441','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5569','441','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5570','441','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5571','441','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5572','441','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5573','441','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5574','441','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5575','441','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5576','441','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5577','441','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5578','441','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5579','441','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5580','441','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5581','441','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5582','441','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5583','441','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5584','441','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5585','441','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5586','441','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5587','441','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5588','441','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5589','441','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5590','441','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5591','441','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5592','441','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5593','441','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5594','441','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5595','441','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5596','441','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5597','441','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5598','441','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5599','441','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5600','441','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5601','441','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5602','441','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5603','441','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5604','441','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5605','441','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5606','441','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5607','441','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5608','441','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5609','441','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5610','441','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5611','441','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5612','441','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5613','441','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5614','441','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5615','441','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5616','441','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5617','441','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5618','441','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5619','441','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5620','441','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5621','441','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5622','441','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5623','441','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5624','441','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5625','441','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5626','441','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5627','441','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5628','441','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5629','441','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5630','441','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5631','441','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5632','441','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5633','441','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5634','441','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5635','441','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5636','441','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5637','441','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5638','441','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5639','441','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5640','441','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5641','441','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5642','441','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5643','441','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5644','441','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5645','441','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5646','441','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5647','441','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5648','441','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5649','441','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5650','441','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5651','441','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5652','441','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5653','441','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5654','441','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5655','441','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5656','441','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5657','441','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5658','441','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5659','441','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5660','441','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5661','441','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5662','441','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5663','441','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5664','441','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5665','441','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5666','441','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5667','441','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5668','441','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5669','441','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5670','441','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5671','441','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5672','441','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5673','441','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5674','441','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5675','441','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5676','441','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5677','441','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5678','441','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5679','441','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5680','441','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5681','441','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5682','441','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5683','441','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5684','441','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5685','441','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5686','441','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5687','441','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5688','441','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5689','441','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5690','441','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5691','441','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5692','441','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5693','441','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5694','441','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5695','441','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5696','441','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5697','441','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5698','441','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5699','441','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5700','441','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5701','441','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5702','442','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5703','442','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5704','442','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5705','443','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5706','443','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5707','443','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5708','444','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5709','444','2','Ready','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5710','444','3','Failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5711','444','4','Degraded','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5712','444','5','Missing','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5713','444','6','Charging','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5714','444','7','Below threshold','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5715','445','0','ok','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5716','445','1','failed','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5717','446','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5718','446','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5719','446','3','ok','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5720','446','4','nonCritical','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5721','446','5','critical','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5722','446','6','nonRecoverable','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5723','447','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5724','447','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5725','447','3','ok','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5726','447','4','nonCritical','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5727','447','5','critical','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5728','447','6','nonRecoverable','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5729','448','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5730','448','2','HDD','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5731','448','3','SSD','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5732','449','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5733','449','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5734','449','3','ok','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5735','449','4','nonCriticalUpper','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5736','449','5','criticalUpper','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5737','449','6','nonRecoverableUpper','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5738','449','7','nonCriticalLower','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5739','449','8','criticalLower','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5740','449','9','nonRecoverableLower','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5741','449','10','failed','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5742','450','1','Other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5743','450','2','RAID-0','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5744','450','3','RAID-1','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5745','450','4','RAID-5','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5746','450','5','RAID-6','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5747','450','6','RAID-10','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5748','450','7','RAID-50','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5749','450','8','RAID-60','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5750','450','9','Concatenated RAID 1','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5751','450','10','Concatenated RAID 5','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5752','451','1','Not applicable','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5753','451','2','Reconstructing','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5754','451','3','Resynching','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5755','451','4','Initializing','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5756','451','5','Background init','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5757','452','1','No Read Ahead','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5758','452','2','Read Ahead','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5759','452','3','Adaptive Read Ahead','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5760','453','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5761','453','2','Online','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5762','453','3','Failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5763','453','4','Degraded','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5764','454','1','Write Through','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5765','454','2','Write Back','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5766','454','3','Force Write Back','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5767','455','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5768','455','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5769','455','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5770','456','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5771','456','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5772','456','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5773','457','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5774','457','2','Ready','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5775','457','3','Failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5776','457','4','Degraded','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5777','457','5','Missing','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5778','457','6','Charging','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5779','457','7','Below threshold','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5780','458','0','ok','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5781','458','1','failed','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5782','459','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5783','459','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5784','459','3','ok','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5785','459','4','nonCritical','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5786','459','5','critical','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5787','459','6','nonRecoverable','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5788','460','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5789','460','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5790','460','3','ok','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5791','460','4','nonCritical','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5792','460','5','critical','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5793','460','6','nonRecoverable','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5794','461','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5795','461','2','HDD','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5796','461','3','SSD','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5797','462','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5798','462','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5799','462','3','ok','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5800','462','4','nonCriticalUpper','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5801','462','5','criticalUpper','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5802','462','6','nonRecoverableUpper','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5803','462','7','nonCriticalLower','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5804','462','8','criticalLower','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5805','462','9','nonRecoverableLower','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5806','462','10','failed','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5807','463','1','Other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5808','463','2','RAID-0','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5809','463','3','RAID-1','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5810','463','4','RAID-5','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5811','463','5','RAID-6','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5812','463','6','RAID-10','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5813','463','7','RAID-50','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5814','463','8','RAID-60','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5815','463','9','Concatenated RAID 1','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5816','463','10','Concatenated RAID 5','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5817','464','1','Not applicable','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5818','464','2','Reconstructing','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5819','464','3','Resynching','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5820','464','4','Initializing','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5821','464','5','Background init','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5822','465','1','No Read Ahead','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5823','465','2','Read Ahead','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5824','465','3','Adaptive Read Ahead','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5825','466','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5826','466','2','Online','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5827','466','3','Failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5828','466','4','Degraded','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5829','467','1','Write Through','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5830','467','2','Write Back','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5831','467','3','Force Write Back','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5832','468','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5833','468','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5834','468','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5835','469','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5836','469','2','Ready','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5837','469','3','Failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5838','469','4','Degraded','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5839','469','5','Missing','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5840','469','6','Charging','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5841','469','7','Below threshold','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5842','470','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5843','470','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5844','470','3','ok','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5845','470','4','nonCritical','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5846','470','5','critical','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5847','470','6','nonRecoverable','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5848','471','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5849','471','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5850','471','3','ok','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5851','471','4','nonCritical','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5852','471','5','critical','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5853','471','6','nonRecoverable','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5854','472','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5855','472','2','HDD','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5856','472','3','SSD','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5857','473','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5858','473','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5859','473','3','ok','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5860','473','4','nonCriticalUpper','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5861','473','5','criticalUpper','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5862','473','6','nonRecoverableUpper','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5863','473','7','nonCriticalLower','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5864','473','8','criticalLower','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5865','473','9','nonRecoverableLower','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5866','473','10','failed','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5867','474','1','Not applicable','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5868','474','2','Reconstructing','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5869','474','3','Resynching','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5870','474','4','Initializing','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5871','474','5','Background init','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5872','475','1','No Read Ahead','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5873','475','2','Read Ahead','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5874','475','3','Adaptive Read Ahead','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5875','476','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5876','476','2','Online','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5877','476','3','Failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5878','476','4','Degraded','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5879','477','1','Write Through','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5880','477','2','Write Back','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5881','477','3','Force Write Back','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5882','478','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5883','478','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5884','478','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5885','479','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5886','479','2','Ready','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5887','479','3','Failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5888','479','4','Degraded','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5889','479','5','Missing','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5890','479','6','Charging','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5891','479','7','Below threshold','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5892','480','0','ok','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5893','480','1','failed','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5894','481','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5895','481','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5896','481','3','ok','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5897','481','4','nonCritical','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5898','481','5','critical','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5899','481','6','nonRecoverable','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5900','482','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5901','482','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5902','482','3','ok','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5903','482','4','nonCritical','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5904','482','5','critical','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5905','482','6','nonRecoverable','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5906','483','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5907','483','2','HDD','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5908','483','3','SSD','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5909','484','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5910','484','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5911','484','3','ok','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5912','484','4','nonCriticalUpper','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5913','484','5','criticalUpper','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5914','484','6','nonRecoverableUpper','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5915','484','7','nonCriticalLower','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5916','484','8','criticalLower','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5917','484','9','nonRecoverableLower','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5918','484','10','failed','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5919','485','1','Other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5920','485','2','RAID-0','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5921','485','3','RAID-1','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5922','485','4','RAID-5','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5923','485','5','RAID-6','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5924','485','6','RAID-10','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5925','485','7','RAID-50','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5926','485','8','RAID-60','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5927','485','9','Concatenated RAID 1','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5928','485','10','Concatenated RAID 5','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5929','486','1','Not applicable','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5930','486','2','Reconstructing','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5931','486','3','Resynching','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5932','486','4','Initializing','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5933','486','5','Background init','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5934','487','1','No Read Ahead','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5935','487','2','Read Ahead','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5936','487','3','Adaptive Read Ahead','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5937','488','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5938','488','2','Online','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5939','488','3','Failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5940','488','4','Degraded','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5941','489','1','Write Through','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5942','489','2','Write Back','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5943','489','3','Force Write Back','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5944','490','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5945','490','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5946','490','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5947','491','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5948','491','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5949','491','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5950','492','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5951','492','2','Ready','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5952','492','3','Failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5953','492','4','Degraded','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5954','492','5','Missing','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5955','492','6','Charging','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5956','492','7','Below threshold','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5957','493','0','ok','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5958','493','1','failed','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5959','494','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5960','494','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5961','494','3','ok','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5962','494','4','nonCritical','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5963','494','5','critical','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5964','494','6','nonRecoverable','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5965','495','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5966','495','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5967','495','3','ok','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5968','495','4','nonCritical','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5969','495','5','critical','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5970','495','6','nonRecoverable','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5971','496','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5972','496','2','HDD','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5973','496','3','SSD','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5974','497','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5975','497','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5976','497','3','ok','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5977','497','4','nonCriticalUpper','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5978','497','5','criticalUpper','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5979','497','6','nonRecoverableUpper','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5980','497','7','nonCriticalLower','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5981','497','8','criticalLower','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5982','497','9','nonRecoverableLower','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5983','497','10','failed','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5984','498','1','Other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5985','498','2','RAID-0','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5986','498','3','RAID-1','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5987','498','4','RAID-5','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5988','498','5','RAID-6','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5989','498','6','RAID-10','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5990','498','7','RAID-50','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5991','498','8','RAID-60','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5992','498','9','Concatenated RAID 1','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5993','498','10','Concatenated RAID 5','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5994','499','1','Not applicable','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5995','499','2','Reconstructing','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5996','499','3','Resynching','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5997','499','4','Initializing','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5998','499','5','Background init','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('5999','500','1','No Read Ahead','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6000','500','2','Read Ahead','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6001','500','3','Adaptive Read Ahead','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6002','501','1','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6003','501','2','Online','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6004','501','3','Failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6005','501','4','Degraded','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6006','502','1','Write Through','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6007','502','2','Write Back','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6008','502','3','Force Write Back','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6009','503','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6010','503','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6011','503','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6012','504','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6013','504','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6014','504','3','degraded','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6015','504','4','failed','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6016','505','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6017','505','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6018','505','3','system','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6019','505','4','systemBoard','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6020','505','5','ioBoard','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6021','505','6','cpu','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6022','505','7','memory','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6023','505','8','storage','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6024','505','9','removableMedia','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6025','505','10','powerSupply','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6026','505','11','ambient','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6027','505','12','chassis','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6028','505','13','bridgeCard','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6029','506','1','Other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6030','506','2','Ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6031','506','3','Recharging','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6032','506','4','Failed','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6033','506','5','Degraded','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6034','506','6','Not Present','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6035','506','7','Capacitor failed','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6036','507','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6037','507','2','invalid','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6038','507','3','enabled','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6039','507','4','tmpDisabled','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6040','507','5','permDisabled','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6041','507','6','cacheModFlashMemNotAttached','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6042','507','7','cacheModDegradedFailsafeSpeed','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6043','507','8','cacheModCriticalFailure','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6044','507','9','cacheReadCacheNotMapped','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6045','508','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6046','508','2','ida','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6047','508','3','idaExpansion','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6048','508','4','ida-2','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6049','508','5','smart','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6050','508','6','smart-2e','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6051','508','7','smart-2p','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6052','508','8','smart-2sl','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6053','508','9','smart-3100es','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6054','508','10','smart-3200','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6055','508','11','smart-2dh','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6056','508','12','smart-221','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6057','508','13','sa-4250es','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6058','508','14','sa-4200','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6059','508','15','sa-integrated','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6060','508','16','sa-431','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6061','508','17','sa-5300','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6062','508','18','raidLc2','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6063','508','19','sa-5i','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6064','508','20','sa-532','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6065','508','21','sa-5312','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6066','508','22','sa-641','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6067','508','23','sa-642','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6068','508','24','sa-6400','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6069','508','25','sa-6400em','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6070','508','26','sa-6i','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6071','508','27','sa-generic','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6072','508','29','sa-p600','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6073','508','30','sa-p400','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6074','508','31','sa-e200','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6075','508','32','sa-e200i','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6076','508','33','sa-p400i','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6077','508','34','sa-p800','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6078','508','35','sa-e500','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6079','508','36','sa-p700m','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6080','508','37','sa-p212','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6081','508','38','sa-p410','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6082','508','39','sa-p410i','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6083','508','40','sa-p411','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6084','508','41','sa-b110i','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6085','508','42','sa-p712m','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6086','508','43','sa-p711m','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6087','508','44','sa-p812','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6088','508','45','sw-1210m','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6089','508','46','sa-p220i','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6090','508','47','sa-p222','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6091','508','48','sa-p420','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6092','508','49','sa-p420i','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6093','508','50','sa-p421','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6094','508','51','sa-b320i','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6095','508','52','sa-p822','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6096','508','53','sa-p721m','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6097','508','54','sa-b120i','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6098','508','55','hps-1224','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6099','508','56','hps-1228','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6100','508','57','hps-1228m','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6101','508','58','sa-p822se','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6102','508','59','hps-1224e','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6103','508','60','hps-1228e','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6104','508','61','hps-1228em','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6105','508','62','sa-p230i','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6106','508','63','sa-p430i','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6107','508','64','sa-p430','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6108','508','65','sa-p431','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6109','508','66','sa-p731m','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6110','508','67','sa-p830i','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6111','508','68','sa-p830','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6112','508','69','sa-p831','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6113','508','70','sa-p530','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6114','508','71','sa-p531','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6115','508','72','sa-p244br','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6116','508','73','sa-p246br','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6117','508','74','sa-p440','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6118','508','75','sa-p440ar','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6119','508','76','sa-p441','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6120','508','77','sa-p741m','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6121','508','78','sa-p840','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6122','508','79','sa-p841','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6123','508','80','sh-h240ar','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6124','508','81','sh-h244br','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6125','508','82','sh-h240','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6126','508','83','sh-h241','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6127','508','84','sa-b140i','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6128','508','85','sh-generic','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6129','508','86','sa-p240nr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6130','508','87','sh-h240nr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6131','508','88','sa-p840ar','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6132','508','89','sa-p542d','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6133','508','90','s100i','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6134','508','91','e208i-p','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6135','508','92','e208i-a','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6136','508','93','e208i-c','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6137','508','94','e208e-p','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6138','508','95','p204i-b','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6139','508','96','p204i-c','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6140','508','97','p408i-p','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6141','508','98','p408i-a','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6142','508','99','p408e-p','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6143','508','100','p408i-c','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6144','508','101','p408e-m','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6145','508','102','p416ie-m','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6146','508','103','p816i-a','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6147','508','104','p408i-sb','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6148','509','0','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6149','509','2','none','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6150','509','3','RAID-1/RAID-10','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6151','509','4','RAID-4','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6152','509','5','RAID-5','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6153','509','7','RAID-6','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6154','509','8','RAID-50','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6155','509','9','RAID-60','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6156','509','10','RAID-1 ADM','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6157','509','11','RAID-10 ADM','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6158','510','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6159','510','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6160','510','3','failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6161','510','4','unconfigured','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6162','510','5','recovering','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6163','510','6','readyForRebuild','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6164','510','7','rebuilding','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6165','510','8','wrongDrive','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6166','510','9','badConnect','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6167','510','10','overheating','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6168','510','11','shutdown','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6169','510','12','expanding','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6170','510','13','notAvailable','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6171','510','14','queuedForExpansion','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6172','510','15','multipathAccessDegraded','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6173','510','16','erasing','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6174','510','17','predictiveSpareRebuildReady','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6175','510','18','rapidParityInitInProgress','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6176','510','19','rapidParityInitPending','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6177','510','20','noAccessEncryptedNoCntlrKey','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6178','510','21','unencryptedToEncryptedInProgress','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6179','510','22','newLogDrvKeyRekeyInProgress','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6180','510','23','noAccessEncryptedCntlrEncryptnNotEnbld','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6181','510','24','unencryptedToEncryptedNotStarted','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6182','510','25','newLogDrvKeyRekeyRequestReceived','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6183','511','1','Other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6184','511','2','rotatingPlatters','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6185','511','3','solidState','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6186','512','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6187','512','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6188','512','3','replaceDrive','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6189','512','4','replaceDriveSSDWearOut','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6190','513','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6191','513','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6192','513','3','failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6193','513','4','predictiveFailure','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6194','514','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6195','514','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6196','514','3','generalFailure','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6197','514','4','linkFailure','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6198','515','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6199','515','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6200','515','3','degraded','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6201','515','4','failed','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6202','516','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6203','516','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6204','516','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6205','517','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6206','517','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6207','517','3','degraded','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6208','517','4','failed','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6209','518','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6210','518','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6211','518','3','system','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6212','518','4','systemBoard','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6213','518','5','ioBoard','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6214','518','6','cpu','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6215','518','7','memory','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6216','518','8','storage','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6217','518','9','removableMedia','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6218','518','10','powerSupply','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6219','518','11','ambient','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6220','518','12','chassis','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6221','518','13','bridgeCard','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6222','519','1','Other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6223','519','2','Ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6224','519','3','Recharging','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6225','519','4','Failed','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6226','519','5','Degraded','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6227','519','6','Not Present','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6228','519','7','Capacitor failed','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6229','520','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6230','520','2','invalid','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6231','520','3','enabled','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6232','520','4','tmpDisabled','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6233','520','5','permDisabled','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6234','520','6','cacheModFlashMemNotAttached','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6235','520','7','cacheModDegradedFailsafeSpeed','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6236','520','8','cacheModCriticalFailure','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6237','520','9','cacheReadCacheNotMapped','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6238','521','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6239','521','2','ida','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6240','521','3','idaExpansion','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6241','521','4','ida-2','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6242','521','5','smart','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6243','521','6','smart-2e','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6244','521','7','smart-2p','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6245','521','8','smart-2sl','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6246','521','9','smart-3100es','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6247','521','10','smart-3200','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6248','521','11','smart-2dh','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6249','521','12','smart-221','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6250','521','13','sa-4250es','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6251','521','14','sa-4200','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6252','521','15','sa-integrated','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6253','521','16','sa-431','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6254','521','17','sa-5300','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6255','521','18','raidLc2','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6256','521','19','sa-5i','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6257','521','20','sa-532','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6258','521','21','sa-5312','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6259','521','22','sa-641','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6260','521','23','sa-642','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6261','521','24','sa-6400','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6262','521','25','sa-6400em','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6263','521','26','sa-6i','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6264','521','27','sa-generic','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6265','521','29','sa-p600','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6266','521','30','sa-p400','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6267','521','31','sa-e200','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6268','521','32','sa-e200i','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6269','521','33','sa-p400i','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6270','521','34','sa-p800','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6271','521','35','sa-e500','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6272','521','36','sa-p700m','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6273','521','37','sa-p212','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6274','521','38','sa-p410','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6275','521','39','sa-p410i','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6276','521','40','sa-p411','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6277','521','41','sa-b110i','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6278','521','42','sa-p712m','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6279','521','43','sa-p711m','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6280','521','44','sa-p812','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6281','521','45','sw-1210m','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6282','521','46','sa-p220i','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6283','521','47','sa-p222','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6284','521','48','sa-p420','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6285','521','49','sa-p420i','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6286','521','50','sa-p421','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6287','521','51','sa-b320i','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6288','521','52','sa-p822','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6289','521','53','sa-p721m','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6290','521','54','sa-b120i','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6291','521','55','hps-1224','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6292','521','56','hps-1228','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6293','521','57','hps-1228m','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6294','521','58','sa-p822se','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6295','521','59','hps-1224e','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6296','521','60','hps-1228e','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6297','521','61','hps-1228em','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6298','521','62','sa-p230i','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6299','521','63','sa-p430i','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6300','521','64','sa-p430','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6301','521','65','sa-p431','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6302','521','66','sa-p731m','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6303','521','67','sa-p830i','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6304','521','68','sa-p830','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6305','521','69','sa-p831','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6306','521','70','sa-p530','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6307','521','71','sa-p531','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6308','521','72','sa-p244br','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6309','521','73','sa-p246br','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6310','521','74','sa-p440','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6311','521','75','sa-p440ar','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6312','521','76','sa-p441','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6313','521','77','sa-p741m','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6314','521','78','sa-p840','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6315','521','79','sa-p841','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6316','521','80','sh-h240ar','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6317','521','81','sh-h244br','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6318','521','82','sh-h240','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6319','521','83','sh-h241','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6320','521','84','sa-b140i','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6321','521','85','sh-generic','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6322','521','86','sa-p240nr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6323','521','87','sh-h240nr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6324','521','88','sa-p840ar','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6325','521','89','sa-p542d','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6326','521','90','s100i','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6327','521','91','e208i-p','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6328','521','92','e208i-a','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6329','521','93','e208i-c','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6330','521','94','e208e-p','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6331','521','95','p204i-b','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6332','521','96','p204i-c','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6333','521','97','p408i-p','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6334','521','98','p408i-a','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6335','521','99','p408e-p','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6336','521','100','p408i-c','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6337','521','101','p408e-m','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6338','521','102','p416ie-m','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6339','521','103','p816i-a','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6340','521','104','p408i-sb','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6341','522','0','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6342','522','2','none','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6343','522','3','RAID-1/RAID-10','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6344','522','4','RAID-4','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6345','522','5','RAID-5','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6346','522','7','RAID-6','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6347','522','8','RAID-50','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6348','522','9','RAID-60','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6349','522','10','RAID-1 ADM','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6350','522','11','RAID-10 ADM','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6351','523','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6352','523','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6353','523','3','failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6354','523','4','unconfigured','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6355','523','5','recovering','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6356','523','6','readyForRebuild','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6357','523','7','rebuilding','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6358','523','8','wrongDrive','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6359','523','9','badConnect','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6360','523','10','overheating','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6361','523','11','shutdown','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6362','523','12','expanding','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6363','523','13','notAvailable','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6364','523','14','queuedForExpansion','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6365','523','15','multipathAccessDegraded','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6366','523','16','erasing','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6367','523','17','predictiveSpareRebuildReady','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6368','523','18','rapidParityInitInProgress','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6369','523','19','rapidParityInitPending','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6370','523','20','noAccessEncryptedNoCntlrKey','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6371','523','21','unencryptedToEncryptedInProgress','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6372','523','22','newLogDrvKeyRekeyInProgress','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6373','523','23','noAccessEncryptedCntlrEncryptnNotEnbld','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6374','523','24','unencryptedToEncryptedNotStarted','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6375','523','25','newLogDrvKeyRekeyRequestReceived','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6376','524','1','Other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6377','524','2','rotatingPlatters','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6378','524','3','solidState','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6379','525','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6380','525','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6381','525','3','replaceDrive','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6382','525','4','replaceDriveSSDWearOut','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6383','526','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6384','526','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6385','526','3','failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6386','526','4','predictiveFailure','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6387','527','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6388','527','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6389','527','3','generalFailure','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6390','527','4','linkFailure','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6391','528','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6392','528','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6393','528','3','degraded','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6394','528','4','failed','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6395','529','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6396','529','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6397','529','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6398','530','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6399','530','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6400','530','3','degraded','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6401','530','4','failed','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6402','531','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6403','531','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6404','531','3','system','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6405','531','4','systemBoard','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6406','531','5','ioBoard','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6407','531','6','cpu','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6408','531','7','memory','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6409','531','8','storage','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6410','531','9','removableMedia','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6411','531','10','powerSupply','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6412','531','11','ambient','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6413','531','12','chassis','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6414','531','13','bridgeCard','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6415','532','1','Other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6416','532','2','Ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6417','532','3','Recharging','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6418','532','4','Failed','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6419','532','5','Degraded','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6420','532','6','Not Present','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6421','532','7','Capacitor failed','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6422','533','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6423','533','2','invalid','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6424','533','3','enabled','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6425','533','4','tmpDisabled','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6426','533','5','permDisabled','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6427','533','6','cacheModFlashMemNotAttached','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6428','533','7','cacheModDegradedFailsafeSpeed','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6429','533','8','cacheModCriticalFailure','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6430','533','9','cacheReadCacheNotMapped','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6431','534','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6432','534','2','ida','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6433','534','3','idaExpansion','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6434','534','4','ida-2','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6435','534','5','smart','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6436','534','6','smart-2e','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6437','534','7','smart-2p','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6438','534','8','smart-2sl','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6439','534','9','smart-3100es','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6440','534','10','smart-3200','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6441','534','11','smart-2dh','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6442','534','12','smart-221','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6443','534','13','sa-4250es','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6444','534','14','sa-4200','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6445','534','15','sa-integrated','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6446','534','16','sa-431','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6447','534','17','sa-5300','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6448','534','18','raidLc2','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6449','534','19','sa-5i','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6450','534','20','sa-532','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6451','534','21','sa-5312','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6452','534','22','sa-641','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6453','534','23','sa-642','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6454','534','24','sa-6400','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6455','534','25','sa-6400em','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6456','534','26','sa-6i','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6457','534','27','sa-generic','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6458','534','29','sa-p600','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6459','534','30','sa-p400','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6460','534','31','sa-e200','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6461','534','32','sa-e200i','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6462','534','33','sa-p400i','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6463','534','34','sa-p800','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6464','534','35','sa-e500','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6465','534','36','sa-p700m','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6466','534','37','sa-p212','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6467','534','38','sa-p410','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6468','534','39','sa-p410i','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6469','534','40','sa-p411','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6470','534','41','sa-b110i','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6471','534','42','sa-p712m','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6472','534','43','sa-p711m','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6473','534','44','sa-p812','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6474','534','45','sw-1210m','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6475','534','46','sa-p220i','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6476','534','47','sa-p222','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6477','534','48','sa-p420','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6478','534','49','sa-p420i','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6479','534','50','sa-p421','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6480','534','51','sa-b320i','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6481','534','52','sa-p822','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6482','534','53','sa-p721m','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6483','534','54','sa-b120i','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6484','534','55','hps-1224','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6485','534','56','hps-1228','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6486','534','57','hps-1228m','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6487','534','58','sa-p822se','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6488','534','59','hps-1224e','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6489','534','60','hps-1228e','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6490','534','61','hps-1228em','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6491','534','62','sa-p230i','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6492','534','63','sa-p430i','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6493','534','64','sa-p430','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6494','534','65','sa-p431','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6495','534','66','sa-p731m','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6496','534','67','sa-p830i','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6497','534','68','sa-p830','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6498','534','69','sa-p831','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6499','534','70','sa-p530','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6500','534','71','sa-p531','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6501','534','72','sa-p244br','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6502','534','73','sa-p246br','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6503','534','74','sa-p440','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6504','534','75','sa-p440ar','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6505','534','76','sa-p441','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6506','534','77','sa-p741m','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6507','534','78','sa-p840','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6508','534','79','sa-p841','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6509','534','80','sh-h240ar','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6510','534','81','sh-h244br','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6511','534','82','sh-h240','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6512','534','83','sh-h241','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6513','534','84','sa-b140i','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6514','534','85','sh-generic','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6515','534','86','sa-p240nr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6516','534','87','sh-h240nr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6517','534','88','sa-p840ar','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6518','534','89','sa-p542d','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6519','534','90','s100i','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6520','534','91','e208i-p','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6521','534','92','e208i-a','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6522','534','93','e208i-c','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6523','534','94','e208e-p','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6524','534','95','p204i-b','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6525','534','96','p204i-c','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6526','534','97','p408i-p','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6527','534','98','p408i-a','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6528','534','99','p408e-p','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6529','534','100','p408i-c','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6530','534','101','p408e-m','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6531','534','102','p416ie-m','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6532','534','103','p816i-a','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6533','534','104','p408i-sb','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6534','535','0','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6535','535','2','none','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6536','535','3','RAID-1/RAID-10','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6537','535','4','RAID-4','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6538','535','5','RAID-5','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6539','535','7','RAID-6','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6540','535','8','RAID-50','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6541','535','9','RAID-60','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6542','535','10','RAID-1 ADM','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6543','535','11','RAID-10 ADM','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6544','536','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6545','536','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6546','536','3','failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6547','536','4','unconfigured','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6548','536','5','recovering','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6549','536','6','readyForRebuild','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6550','536','7','rebuilding','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6551','536','8','wrongDrive','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6552','536','9','badConnect','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6553','536','10','overheating','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6554','536','11','shutdown','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6555','536','12','expanding','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6556','536','13','notAvailable','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6557','536','14','queuedForExpansion','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6558','536','15','multipathAccessDegraded','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6559','536','16','erasing','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6560','536','17','predictiveSpareRebuildReady','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6561','536','18','rapidParityInitInProgress','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6562','536','19','rapidParityInitPending','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6563','536','20','noAccessEncryptedNoCntlrKey','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6564','536','21','unencryptedToEncryptedInProgress','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6565','536','22','newLogDrvKeyRekeyInProgress','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6566','536','23','noAccessEncryptedCntlrEncryptnNotEnbld','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6567','536','24','unencryptedToEncryptedNotStarted','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6568','536','25','newLogDrvKeyRekeyRequestReceived','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6569','537','1','Other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6570','537','2','rotatingPlatters','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6571','537','3','solidState','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6572','538','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6573','538','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6574','538','3','replaceDrive','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6575','538','4','replaceDriveSSDWearOut','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6576','539','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6577','539','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6578','539','3','failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6579','539','4','predictiveFailure','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6580','540','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6581','540','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6582','540','3','generalFailure','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6583','540','4','linkFailure','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6584','541','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6585','541','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6586','541','3','degraded','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6587','541','4','failed','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6588','542','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6589','542','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6590','542','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6591','543','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6592','543','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6593','543','3','degraded','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6594','543','4','failed','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6595','544','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6596','544','2','unknown','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6597','544','3','system','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6598','544','4','systemBoard','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6599','544','5','ioBoard','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6600','544','6','cpu','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6601','544','7','memory','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6602','544','8','storage','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6603','544','9','removableMedia','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6604','544','10','powerSupply','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6605','544','11','ambient','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6606','544','12','chassis','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6607','544','13','bridgeCard','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6608','545','1','Other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6609','545','2','Ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6610','545','3','Recharging','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6611','545','4','Failed','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6612','545','5','Degraded','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6613','545','6','Not Present','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6614','545','7','Capacitor failed','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6615','546','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6616','546','2','invalid','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6617','546','3','enabled','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6618','546','4','tmpDisabled','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6619','546','5','permDisabled','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6620','546','6','cacheModFlashMemNotAttached','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6621','546','7','cacheModDegradedFailsafeSpeed','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6622','546','8','cacheModCriticalFailure','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6623','546','9','cacheReadCacheNotMapped','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6624','547','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6625','547','2','ida','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6626','547','3','idaExpansion','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6627','547','4','ida-2','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6628','547','5','smart','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6629','547','6','smart-2e','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6630','547','7','smart-2p','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6631','547','8','smart-2sl','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6632','547','9','smart-3100es','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6633','547','10','smart-3200','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6634','547','11','smart-2dh','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6635','547','12','smart-221','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6636','547','13','sa-4250es','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6637','547','14','sa-4200','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6638','547','15','sa-integrated','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6639','547','16','sa-431','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6640','547','17','sa-5300','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6641','547','18','raidLc2','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6642','547','19','sa-5i','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6643','547','20','sa-532','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6644','547','21','sa-5312','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6645','547','22','sa-641','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6646','547','23','sa-642','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6647','547','24','sa-6400','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6648','547','25','sa-6400em','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6649','547','26','sa-6i','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6650','547','27','sa-generic','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6651','547','29','sa-p600','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6652','547','30','sa-p400','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6653','547','31','sa-e200','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6654','547','32','sa-e200i','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6655','547','33','sa-p400i','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6656','547','34','sa-p800','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6657','547','35','sa-e500','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6658','547','36','sa-p700m','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6659','547','37','sa-p212','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6660','547','38','sa-p410','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6661','547','39','sa-p410i','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6662','547','40','sa-p411','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6663','547','41','sa-b110i','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6664','547','42','sa-p712m','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6665','547','43','sa-p711m','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6666','547','44','sa-p812','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6667','547','45','sw-1210m','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6668','547','46','sa-p220i','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6669','547','47','sa-p222','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6670','547','48','sa-p420','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6671','547','49','sa-p420i','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6672','547','50','sa-p421','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6673','547','51','sa-b320i','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6674','547','52','sa-p822','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6675','547','53','sa-p721m','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6676','547','54','sa-b120i','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6677','547','55','hps-1224','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6678','547','56','hps-1228','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6679','547','57','hps-1228m','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6680','547','58','sa-p822se','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6681','547','59','hps-1224e','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6682','547','60','hps-1228e','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6683','547','61','hps-1228em','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6684','547','62','sa-p230i','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6685','547','63','sa-p430i','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6686','547','64','sa-p430','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6687','547','65','sa-p431','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6688','547','66','sa-p731m','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6689','547','67','sa-p830i','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6690','547','68','sa-p830','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6691','547','69','sa-p831','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6692','547','70','sa-p530','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6693','547','71','sa-p531','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6694','547','72','sa-p244br','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6695','547','73','sa-p246br','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6696','547','74','sa-p440','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6697','547','75','sa-p440ar','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6698','547','76','sa-p441','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6699','547','77','sa-p741m','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6700','547','78','sa-p840','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6701','547','79','sa-p841','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6702','547','80','sh-h240ar','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6703','547','81','sh-h244br','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6704','547','82','sh-h240','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6705','547','83','sh-h241','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6706','547','84','sa-b140i','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6707','547','85','sh-generic','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6708','547','86','sa-p240nr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6709','547','87','sh-h240nr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6710','547','88','sa-p840ar','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6711','547','89','sa-p542d','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6712','547','90','s100i','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6713','547','91','e208i-p','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6714','547','92','e208i-a','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6715','547','93','e208i-c','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6716','547','94','e208e-p','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6717','547','95','p204i-b','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6718','547','96','p204i-c','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6719','547','97','p408i-p','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6720','547','98','p408i-a','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6721','547','99','p408e-p','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6722','547','100','p408i-c','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6723','547','101','p408e-m','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6724','547','102','p416ie-m','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6725','547','103','p816i-a','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6726','547','104','p408i-sb','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6727','548','0','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6728','548','2','none','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6729','548','3','RAID-1/RAID-10','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6730','548','4','RAID-4','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6731','548','5','RAID-5','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6732','548','7','RAID-6','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6733','548','8','RAID-50','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6734','548','9','RAID-60','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6735','548','10','RAID-1 ADM','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6736','548','11','RAID-10 ADM','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6737','549','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6738','549','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6739','549','3','failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6740','549','4','unconfigured','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6741','549','5','recovering','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6742','549','6','readyForRebuild','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6743','549','7','rebuilding','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6744','549','8','wrongDrive','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6745','549','9','badConnect','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6746','549','10','overheating','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6747','549','11','shutdown','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6748','549','12','expanding','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6749','549','13','notAvailable','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6750','549','14','queuedForExpansion','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6751','549','15','multipathAccessDegraded','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6752','549','16','erasing','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6753','549','17','predictiveSpareRebuildReady','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6754','549','18','rapidParityInitInProgress','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6755','549','19','rapidParityInitPending','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6756','549','20','noAccessEncryptedNoCntlrKey','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6757','549','21','unencryptedToEncryptedInProgress','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6758','549','22','newLogDrvKeyRekeyInProgress','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6759','549','23','noAccessEncryptedCntlrEncryptnNotEnbld','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6760','549','24','unencryptedToEncryptedNotStarted','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6761','549','25','newLogDrvKeyRekeyRequestReceived','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6762','550','1','Other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6763','550','2','rotatingPlatters','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6764','550','3','solidState','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6765','551','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6766','551','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6767','551','3','replaceDrive','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6768','551','4','replaceDriveSSDWearOut','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6769','552','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6770','552','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6771','552','3','failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6772','552','4','predictiveFailure','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6773','553','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6774','553','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6775','553','3','generalFailure','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6776','553','4','linkFailure','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6777','554','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6778','554','2','ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6779','554','3','degraded','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6780','554','4','failed','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6781','555','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6782','555','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6783','555','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6784','556','0','Failed','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6785','556','1','Ok','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6786','557','0','none','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6787','557','1','enabled','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6788','557','2','disabled','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6789','557','3','disabledbyparent','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6790','558','0','none','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6791','558','1','green','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6792','558','2','yellow','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6793','558','3','red','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6794','558','4','blue','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6795','558','5','gray','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6796','559','0','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6797','559','1','offline','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6798','559','2','forcedOffline','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6799','559','3','standby','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6800','559','4','active','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6801','560','0','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6802','560','1','syncing','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6803','560','2','needManualSync','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6804','560','3','inSync','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6805','560','4','syncFailed','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6806','560','5','syncDisconnected','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6807','560','6','standalone','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6808','560','7','awaitingInitialSync','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6809','560','8','incompatibleVersion','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6810','560','9','partialSync','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6811','561','0','PENDING','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6812','561','1','ACTIVATED','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6813','561','10','UNKNOWN','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6814','562','0','UNCONFIGURED','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6815','562','1','READY','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6816','562','2','PENDING_INIT','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6817','562','3','FAILED','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6818','562','10','UNKNOWN','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6819','563','0','OFFLINE','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6820','563','1','CONNECTED','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6821','563','2','NEVER_ACTIVATED','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6822','563','10','UNKNOWN','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6823','564','0','UNSTABLE','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6824','564','1','STABLE','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6825','564','2','DISCONNECTED','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6826','564','10','UNKNOWN','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6827','63','0','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6828','63','3','lowerlayerdown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6829','65','0','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6830','65','3','lowerlayerdown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6831','64','0','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6832','64','3','lowerlayerdown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6833','565','0','Standby','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6834','565','1','Stopped','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6835','565','2','Unavailable','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6836','565','3','Active','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6837','566','0','Standby','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6838','566','1','Stopped','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6839','566','2','Unavailable','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6840','566','3','Active','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6841','260','3','testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6842','567','0','backup','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6843','567','1','master','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6844','568','1','True','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6845','568','2','False','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6846','568','3','Unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6847','569','1','True','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6848','569','2','False','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6849','569','3','Unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6850','570','1','Pending','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6851','570','2','Running','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6852','570','3','Succeeded','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6853','570','4','Failed','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6854','570','5','Unknown','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6855','571','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6856','571','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6857','571','3','testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6858','571','4','unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6859','571','5','dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6860','571','6','notPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6861','571','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6862','572','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6863','572','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6864','572','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6865','572','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6866','572','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6867','572','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6868','572','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6869','572','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6870','572','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6871','572','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6872','572','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6873','572','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6874','572','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6875','572','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6876','572','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6877','572','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6878','572','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6879','572','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6880','572','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6881','572','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6882','572','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6883','572','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6884','572','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6885','572','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6886','572','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6887','572','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6888','572','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6889','572','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6890','572','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6891','572','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6892','572','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6893','572','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6894','572','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6895','572','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6896','572','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6897','572','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6898','572','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6899','572','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6900','572','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6901','572','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6902','572','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6903','572','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6904','572','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6905','572','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6906','572','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6907','572','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6908','572','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6909','572','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6910','572','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6911','572','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6912','572','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6913','572','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6914','572','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6915','572','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6916','572','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6917','572','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6918','572','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6919','572','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6920','572','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6921','572','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6922','572','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6923','572','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6924','572','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6925','572','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6926','572','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6927','572','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6928','572','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6929','572','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6930','572','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6931','572','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6932','572','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6933','572','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6934','572','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6935','572','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6936','572','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6937','572','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6938','572','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6939','572','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6940','572','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6941','572','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6942','572','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6943','572','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6944','572','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6945','572','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6946','572','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6947','572','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6948','572','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6949','572','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6950','572','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6951','572','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6952','572','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6953','572','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6954','572','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6955','572','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6956','572','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6957','572','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6958','572','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6959','572','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6960','572','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6961','572','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6962','572','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6963','572','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6964','572','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6965','572','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6966','572','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6967','572','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6968','572','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6969','572','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6970','572','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6971','572','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6972','572','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6973','572','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6974','572','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6975','572','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6976','572','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6977','572','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6978','572','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6979','572','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6980','572','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6981','572','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6982','572','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6983','572','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6984','572','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6985','572','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6986','572','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6987','572','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6988','572','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6989','572','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6990','572','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6991','572','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6992','572','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6993','572','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6994','572','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6995','572','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6996','572','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6997','572','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6998','572','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('6999','572','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7000','572','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7001','572','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7002','572','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7003','572','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7004','572','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7005','572','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7006','572','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7007','572','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7008','572','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7009','572','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7010','572','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7011','572','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7012','572','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7013','572','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7014','572','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7015','572','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7016','572','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7017','572','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7018','572','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7019','572','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7020','572','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7021','572','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7022','572','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7023','572','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7024','572','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7025','572','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7026','572','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7027','572','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7028','572','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7029','572','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7030','572','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7031','572','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7032','572','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7033','572','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7034','572','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7035','572','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7036','572','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7037','572','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7038','572','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7039','572','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7040','572','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7041','572','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7042','572','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7043','572','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7044','572','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7045','572','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7046','572','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7047','572','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7048','572','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7049','572','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7050','572','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7051','572','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7052','572','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7053','572','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7054','572','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7055','572','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7056','572','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7057','572','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7058','572','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7059','572','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7060','572','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7061','572','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7062','572','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7063','572','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7064','572','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7065','572','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7066','572','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7067','572','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7068','572','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7069','572','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7070','572','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7071','572','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7072','572','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7073','572','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7074','572','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7075','572','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7076','572','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7077','572','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7078','572','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7079','572','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7080','572','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7081','572','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7082','572','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7083','572','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7084','572','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7085','572','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7086','572','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7087','572','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7088','572','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7089','572','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7090','572','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7091','572','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7092','572','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7093','572','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7094','572','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7095','572','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7096','572','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7097','572','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7098','572','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7099','572','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7100','572','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7101','572','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7102','572','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7103','572','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7104','572','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7105','572','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7106','572','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7107','572','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7108','572','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7109','572','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7110','572','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7111','572','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7112','572','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7113','572','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7114','572','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7115','572','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7116','572','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7117','572','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7118','572','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7119','572','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7120','572','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7121','572','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7122','572','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7123','572','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7124','572','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7125','572','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7126','572','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7127','572','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7128','572','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7129','572','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7130','572','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7131','572','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7132','572','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7133','572','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7134','572','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7135','572','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7136','572','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7137','572','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7138','572','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7139','572','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7140','572','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7141','572','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7142','572','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7143','572','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7144','572','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7145','572','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7146','572','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7147','572','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7148','573','0','not running','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7149','573','2','running','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7150','574','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7151','574','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7152','575','1','true','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7153','575','2','false','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7154','576','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7155','576','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7156','576','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7157','577','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7158','577','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7159','578','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7160','578','2','halfDuplex','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7161','578','3','fullDuplex','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7162','579','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7163','579','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7164','579','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7165','579','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7166','579','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7167','579','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7168','580','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7169','580','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7170','580','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7171','580','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7172','580','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7173','580','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7174','580','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7175','580','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7176','580','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7177','580','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7178','580','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7179','580','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7180','580','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7181','580','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7182','580','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7183','580','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7184','580','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7185','580','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7186','580','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7187','580','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7188','580','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7189','580','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7190','580','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7191','580','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7192','580','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7193','580','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7194','580','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7195','580','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7196','580','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7197','580','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7198','580','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7199','580','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7200','580','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7201','580','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7202','580','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7203','580','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7204','580','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7205','580','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7206','580','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7207','580','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7208','580','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7209','580','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7210','580','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7211','580','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7212','580','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7213','580','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7214','580','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7215','580','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7216','580','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7217','580','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7218','580','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7219','580','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7220','580','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7221','580','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7222','580','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7223','580','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7224','580','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7225','580','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7226','580','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7227','580','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7228','580','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7229','580','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7230','580','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7231','580','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7232','580','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7233','580','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7234','580','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7235','580','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7236','580','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7237','580','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7238','580','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7239','580','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7240','580','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7241','580','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7242','580','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7243','580','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7244','580','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7245','580','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7246','580','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7247','580','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7248','580','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7249','580','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7250','580','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7251','580','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7252','580','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7253','580','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7254','580','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7255','580','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7256','580','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7257','580','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7258','580','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7259','580','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7260','580','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7261','580','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7262','580','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7263','580','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7264','580','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7265','580','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7266','580','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7267','580','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7268','580','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7269','580','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7270','580','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7271','580','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7272','580','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7273','580','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7274','580','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7275','580','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7276','580','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7277','580','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7278','580','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7279','580','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7280','580','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7281','580','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7282','580','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7283','580','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7284','580','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7285','580','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7286','580','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7287','580','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7288','580','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7289','580','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7290','580','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7291','580','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7292','580','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7293','580','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7294','580','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7295','580','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7296','580','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7297','580','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7298','580','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7299','580','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7300','580','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7301','580','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7302','580','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7303','580','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7304','580','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7305','580','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7306','580','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7307','580','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7308','580','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7309','580','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7310','580','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7311','580','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7312','580','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7313','580','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7314','580','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7315','580','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7316','580','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7317','580','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7318','580','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7319','580','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7320','580','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7321','580','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7322','580','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7323','580','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7324','580','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7325','580','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7326','580','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7327','580','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7328','580','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7329','580','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7330','580','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7331','580','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7332','580','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7333','580','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7334','580','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7335','580','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7336','580','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7337','580','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7338','580','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7339','580','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7340','580','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7341','580','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7342','580','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7343','580','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7344','580','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7345','580','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7346','580','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7347','580','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7348','580','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7349','580','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7350','580','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7351','580','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7352','580','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7353','580','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7354','580','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7355','580','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7356','580','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7357','580','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7358','580','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7359','580','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7360','580','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7361','580','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7362','580','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7363','580','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7364','580','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7365','580','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7366','580','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7367','580','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7368','580','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7369','580','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7370','580','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7371','580','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7372','580','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7373','580','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7374','580','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7375','580','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7376','580','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7377','580','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7378','580','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7379','580','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7380','580','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7381','580','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7382','580','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7383','580','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7384','580','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7385','580','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7386','580','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7387','580','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7388','580','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7389','580','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7390','580','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7391','580','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7392','580','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7393','580','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7394','580','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7395','580','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7396','580','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7397','580','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7398','580','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7399','580','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7400','580','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7401','580','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7402','580','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7403','580','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7404','580','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7405','580','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7406','580','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7407','580','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7408','580','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7409','580','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7410','580','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7411','580','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7412','580','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7413','580','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7414','580','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7415','580','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7416','580','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7417','580','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7418','580','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7419','580','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7420','580','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7421','580','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7422','580','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7423','580','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7424','580','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7425','580','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7426','580','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7427','580','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7428','580','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7429','580','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7430','580','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7431','580','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7432','580','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7433','580','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7434','580','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7435','580','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7436','580','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7437','580','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7438','580','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7439','580','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7440','580','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7441','580','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7442','580','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7443','580','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7444','580','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7445','580','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7446','580','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7447','580','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7448','580','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7449','580','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7450','580','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7451','580','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7452','580','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7453','580','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7454','581','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7455','581','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7456','582','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7457','582','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7458','582','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7459','583','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7460','583','2','halfDuplex','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7461','583','3','fullDuplex','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7462','584','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7463','584','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7464','584','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7465','584','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7466','584','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7467','584','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7468','585','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7469','585','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7470','585','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7471','585','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7472','585','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7473','585','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7474','585','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7475','585','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7476','585','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7477','585','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7478','585','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7479','585','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7480','585','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7481','585','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7482','585','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7483','585','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7484','585','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7485','585','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7486','585','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7487','585','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7488','585','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7489','585','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7490','585','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7491','585','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7492','585','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7493','585','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7494','585','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7495','585','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7496','585','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7497','585','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7498','585','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7499','585','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7500','585','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7501','585','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7502','585','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7503','585','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7504','585','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7505','585','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7506','585','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7507','585','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7508','585','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7509','585','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7510','585','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7511','585','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7512','585','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7513','585','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7514','585','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7515','585','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7516','585','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7517','585','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7518','585','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7519','585','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7520','585','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7521','585','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7522','585','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7523','585','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7524','585','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7525','585','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7526','585','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7527','585','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7528','585','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7529','585','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7530','585','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7531','585','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7532','585','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7533','585','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7534','585','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7535','585','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7536','585','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7537','585','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7538','585','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7539','585','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7540','585','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7541','585','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7542','585','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7543','585','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7544','585','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7545','585','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7546','585','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7547','585','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7548','585','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7549','585','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7550','585','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7551','585','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7552','585','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7553','585','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7554','585','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7555','585','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7556','585','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7557','585','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7558','585','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7559','585','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7560','585','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7561','585','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7562','585','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7563','585','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7564','585','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7565','585','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7566','585','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7567','585','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7568','585','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7569','585','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7570','585','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7571','585','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7572','585','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7573','585','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7574','585','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7575','585','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7576','585','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7577','585','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7578','585','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7579','585','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7580','585','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7581','585','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7582','585','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7583','585','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7584','585','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7585','585','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7586','585','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7587','585','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7588','585','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7589','585','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7590','585','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7591','585','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7592','585','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7593','585','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7594','585','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7595','585','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7596','585','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7597','585','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7598','585','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7599','585','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7600','585','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7601','585','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7602','585','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7603','585','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7604','585','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7605','585','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7606','585','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7607','585','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7608','585','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7609','585','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7610','585','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7611','585','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7612','585','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7613','585','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7614','585','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7615','585','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7616','585','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7617','585','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7618','585','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7619','585','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7620','585','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7621','585','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7622','585','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7623','585','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7624','585','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7625','585','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7626','585','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7627','585','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7628','585','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7629','585','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7630','585','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7631','585','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7632','585','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7633','585','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7634','585','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7635','585','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7636','585','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7637','585','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7638','585','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7639','585','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7640','585','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7641','585','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7642','585','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7643','585','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7644','585','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7645','585','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7646','585','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7647','585','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7648','585','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7649','585','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7650','585','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7651','585','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7652','585','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7653','585','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7654','585','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7655','585','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7656','585','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7657','585','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7658','585','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7659','585','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7660','585','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7661','585','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7662','585','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7663','585','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7664','585','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7665','585','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7666','585','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7667','585','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7668','585','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7669','585','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7670','585','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7671','585','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7672','585','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7673','585','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7674','585','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7675','585','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7676','585','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7677','585','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7678','585','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7679','585','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7680','585','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7681','585','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7682','585','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7683','585','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7684','585','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7685','585','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7686','585','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7687','585','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7688','585','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7689','585','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7690','585','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7691','585','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7692','585','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7693','585','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7694','585','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7695','585','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7696','585','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7697','585','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7698','585','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7699','585','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7700','585','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7701','585','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7702','585','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7703','585','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7704','585','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7705','585','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7706','585','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7707','585','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7708','585','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7709','585','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7710','585','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7711','585','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7712','585','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7713','585','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7714','585','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7715','585','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7716','585','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7717','585','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7718','585','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7719','585','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7720','585','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7721','585','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7722','585','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7723','585','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7724','585','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7725','585','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7726','585','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7727','585','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7728','585','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7729','585','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7730','585','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7731','585','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7732','585','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7733','585','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7734','585','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7735','585','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7736','585','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7737','585','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7738','585','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7739','585','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7740','585','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7741','585','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7742','585','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7743','585','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7744','585','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7745','585','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7746','585','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7747','585','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7748','585','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7749','585','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7750','585','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7751','585','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7752','585','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7753','585','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7754','586','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7755','586','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7756','587','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7757','587','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7758','587','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7759','588','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7760','588','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7761','588','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7762','588','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7763','588','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7764','588','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7765','589','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7766','589','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7767','589','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7768','589','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7769','589','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7770','589','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7771','589','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7772','589','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7773','589','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7774','589','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7775','589','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7776','589','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7777','589','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7778','589','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7779','589','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7780','589','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7781','589','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7782','589','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7783','589','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7784','589','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7785','589','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7786','589','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7787','589','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7788','589','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7789','589','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7790','589','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7791','589','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7792','589','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7793','589','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7794','589','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7795','589','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7796','589','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7797','589','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7798','589','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7799','589','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7800','589','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7801','589','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7802','589','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7803','589','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7804','589','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7805','589','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7806','589','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7807','589','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7808','589','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7809','589','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7810','589','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7811','589','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7812','589','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7813','589','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7814','589','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7815','589','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7816','589','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7817','589','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7818','589','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7819','589','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7820','589','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7821','589','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7822','589','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7823','589','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7824','589','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7825','589','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7826','589','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7827','589','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7828','589','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7829','589','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7830','589','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7831','589','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7832','589','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7833','589','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7834','589','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7835','589','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7836','589','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7837','589','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7838','589','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7839','589','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7840','589','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7841','589','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7842','589','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7843','589','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7844','589','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7845','589','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7846','589','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7847','589','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7848','589','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7849','589','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7850','589','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7851','589','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7852','589','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7853','589','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7854','589','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7855','589','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7856','589','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7857','589','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7858','589','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7859','589','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7860','589','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7861','589','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7862','589','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7863','589','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7864','589','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7865','589','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7866','589','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7867','589','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7868','589','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7869','589','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7870','589','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7871','589','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7872','589','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7873','589','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7874','589','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7875','589','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7876','589','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7877','589','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7878','589','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7879','589','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7880','589','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7881','589','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7882','589','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7883','589','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7884','589','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7885','589','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7886','589','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7887','589','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7888','589','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7889','589','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7890','589','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7891','589','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7892','589','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7893','589','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7894','589','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7895','589','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7896','589','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7897','589','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7898','589','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7899','589','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7900','589','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7901','589','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7902','589','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7903','589','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7904','589','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7905','589','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7906','589','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7907','589','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7908','589','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7909','589','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7910','589','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7911','589','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7912','589','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7913','589','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7914','589','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7915','589','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7916','589','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7917','589','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7918','589','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7919','589','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7920','589','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7921','589','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7922','589','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7923','589','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7924','589','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7925','589','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7926','589','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7927','589','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7928','589','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7929','589','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7930','589','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7931','589','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7932','589','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7933','589','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7934','589','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7935','589','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7936','589','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7937','589','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7938','589','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7939','589','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7940','589','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7941','589','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7942','589','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7943','589','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7944','589','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7945','589','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7946','589','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7947','589','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7948','589','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7949','589','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7950','589','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7951','589','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7952','589','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7953','589','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7954','589','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7955','589','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7956','589','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7957','589','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7958','589','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7959','589','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7960','589','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7961','589','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7962','589','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7963','589','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7964','589','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7965','589','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7966','589','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7967','589','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7968','589','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7969','589','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7970','589','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7971','589','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7972','589','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7973','589','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7974','589','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7975','589','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7976','589','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7977','589','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7978','589','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7979','589','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7980','589','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7981','589','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7982','589','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7983','589','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7984','589','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7985','589','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7986','589','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7987','589','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7988','589','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7989','589','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7990','589','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7991','589','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7992','589','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7993','589','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7994','589','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7995','589','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7996','589','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7997','589','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7998','589','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('7999','589','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8000','589','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8001','589','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8002','589','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8003','589','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8004','589','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8005','589','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8006','589','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8007','589','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8008','589','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8009','589','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8010','589','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8011','589','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8012','589','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8013','589','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8014','589','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8015','589','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8016','589','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8017','589','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8018','589','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8019','589','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8020','589','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8021','589','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8022','589','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8023','589','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8024','589','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8025','589','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8026','589','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8027','589','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8028','589','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8029','589','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8030','589','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8031','589','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8032','589','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8033','589','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8034','589','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8035','589','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8036','589','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8037','589','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8038','589','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8039','589','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8040','589','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8041','589','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8042','589','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8043','589','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8044','589','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8045','589','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8046','589','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8047','589','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8048','589','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8049','589','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8050','589','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8051','590','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8052','590','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8053','591','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8054','591','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8055','591','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8056','592','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8057','592','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8058','592','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8059','592','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8060','592','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8061','592','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8062','593','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8063','593','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8064','593','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8065','593','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8066','593','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8067','593','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8068','593','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8069','593','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8070','593','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8071','593','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8072','593','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8073','593','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8074','593','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8075','593','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8076','593','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8077','593','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8078','593','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8079','593','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8080','593','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8081','593','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8082','593','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8083','593','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8084','593','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8085','593','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8086','593','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8087','593','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8088','593','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8089','593','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8090','593','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8091','593','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8092','593','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8093','593','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8094','593','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8095','593','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8096','593','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8097','593','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8098','593','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8099','593','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8100','593','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8101','593','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8102','593','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8103','593','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8104','593','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8105','593','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8106','593','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8107','593','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8108','593','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8109','593','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8110','593','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8111','593','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8112','593','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8113','593','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8114','593','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8115','593','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8116','593','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8117','593','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8118','593','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8119','593','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8120','593','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8121','593','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8122','593','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8123','593','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8124','593','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8125','593','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8126','593','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8127','593','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8128','593','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8129','593','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8130','593','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8131','593','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8132','593','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8133','593','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8134','593','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8135','593','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8136','593','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8137','593','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8138','593','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8139','593','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8140','593','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8141','593','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8142','593','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8143','593','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8144','593','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8145','593','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8146','593','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8147','593','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8148','593','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8149','593','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8150','593','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8151','593','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8152','593','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8153','593','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8154','593','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8155','593','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8156','593','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8157','593','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8158','593','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8159','593','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8160','593','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8161','593','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8162','593','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8163','593','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8164','593','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8165','593','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8166','593','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8167','593','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8168','593','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8169','593','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8170','593','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8171','593','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8172','593','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8173','593','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8174','593','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8175','593','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8176','593','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8177','593','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8178','593','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8179','593','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8180','593','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8181','593','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8182','593','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8183','593','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8184','593','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8185','593','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8186','593','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8187','593','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8188','593','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8189','593','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8190','593','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8191','593','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8192','593','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8193','593','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8194','593','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8195','593','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8196','593','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8197','593','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8198','593','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8199','593','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8200','593','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8201','593','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8202','593','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8203','593','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8204','593','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8205','593','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8206','593','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8207','593','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8208','593','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8209','593','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8210','593','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8211','593','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8212','593','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8213','593','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8214','593','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8215','593','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8216','593','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8217','593','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8218','593','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8219','593','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8220','593','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8221','593','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8222','593','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8223','593','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8224','593','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8225','593','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8226','593','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8227','593','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8228','593','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8229','593','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8230','593','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8231','593','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8232','593','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8233','593','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8234','593','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8235','593','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8236','593','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8237','593','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8238','593','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8239','593','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8240','593','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8241','593','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8242','593','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8243','593','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8244','593','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8245','593','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8246','593','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8247','593','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8248','593','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8249','593','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8250','593','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8251','593','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8252','593','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8253','593','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8254','593','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8255','593','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8256','593','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8257','593','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8258','593','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8259','593','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8260','593','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8261','593','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8262','593','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8263','593','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8264','593','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8265','593','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8266','593','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8267','593','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8268','593','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8269','593','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8270','593','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8271','593','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8272','593','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8273','593','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8274','593','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8275','593','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8276','593','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8277','593','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8278','593','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8279','593','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8280','593','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8281','593','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8282','593','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8283','593','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8284','593','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8285','593','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8286','593','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8287','593','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8288','593','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8289','593','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8290','593','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8291','593','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8292','593','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8293','593','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8294','593','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8295','593','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8296','593','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8297','593','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8298','593','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8299','593','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8300','593','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8301','593','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8302','593','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8303','593','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8304','593','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8305','593','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8306','593','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8307','593','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8308','593','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8309','593','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8310','593','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8311','593','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8312','593','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8313','593','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8314','593','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8315','593','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8316','593','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8317','593','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8318','593','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8319','593','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8320','593','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8321','593','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8322','593','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8323','593','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8324','593','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8325','593','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8326','593','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8327','593','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8328','593','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8329','593','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8330','593','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8331','593','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8332','593','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8333','593','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8334','593','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8335','593','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8336','593','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8337','593','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8338','593','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8339','593','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8340','593','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8341','593','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8342','593','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8343','593','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8344','593','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8345','593','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8346','593','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8347','593','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8348','594','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8349','594','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8350','595','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8351','595','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8352','595','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8353','596','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8354','596','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8355','596','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8356','596','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8357','596','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8358','596','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8359','597','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8360','597','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8361','597','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8362','597','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8363','597','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8364','597','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8365','597','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8366','597','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8367','597','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8368','597','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8369','597','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8370','597','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8371','597','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8372','597','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8373','597','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8374','597','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8375','597','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8376','597','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8377','597','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8378','597','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8379','597','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8380','597','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8381','597','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8382','597','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8383','597','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8384','597','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8385','597','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8386','597','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8387','597','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8388','597','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8389','597','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8390','597','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8391','597','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8392','597','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8393','597','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8394','597','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8395','597','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8396','597','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8397','597','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8398','597','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8399','597','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8400','597','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8401','597','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8402','597','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8403','597','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8404','597','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8405','597','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8406','597','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8407','597','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8408','597','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8409','597','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8410','597','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8411','597','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8412','597','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8413','597','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8414','597','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8415','597','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8416','597','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8417','597','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8418','597','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8419','597','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8420','597','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8421','597','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8422','597','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8423','597','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8424','597','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8425','597','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8426','597','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8427','597','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8428','597','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8429','597','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8430','597','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8431','597','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8432','597','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8433','597','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8434','597','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8435','597','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8436','597','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8437','597','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8438','597','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8439','597','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8440','597','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8441','597','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8442','597','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8443','597','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8444','597','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8445','597','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8446','597','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8447','597','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8448','597','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8449','597','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8450','597','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8451','597','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8452','597','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8453','597','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8454','597','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8455','597','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8456','597','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8457','597','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8458','597','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8459','597','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8460','597','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8461','597','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8462','597','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8463','597','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8464','597','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8465','597','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8466','597','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8467','597','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8468','597','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8469','597','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8470','597','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8471','597','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8472','597','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8473','597','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8474','597','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8475','597','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8476','597','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8477','597','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8478','597','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8479','597','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8480','597','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8481','597','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8482','597','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8483','597','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8484','597','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8485','597','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8486','597','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8487','597','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8488','597','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8489','597','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8490','597','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8491','597','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8492','597','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8493','597','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8494','597','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8495','597','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8496','597','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8497','597','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8498','597','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8499','597','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8500','597','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8501','597','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8502','597','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8503','597','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8504','597','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8505','597','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8506','597','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8507','597','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8508','597','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8509','597','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8510','597','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8511','597','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8512','597','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8513','597','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8514','597','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8515','597','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8516','597','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8517','597','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8518','597','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8519','597','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8520','597','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8521','597','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8522','597','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8523','597','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8524','597','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8525','597','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8526','597','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8527','597','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8528','597','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8529','597','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8530','597','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8531','597','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8532','597','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8533','597','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8534','597','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8535','597','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8536','597','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8537','597','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8538','597','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8539','597','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8540','597','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8541','597','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8542','597','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8543','597','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8544','597','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8545','597','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8546','597','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8547','597','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8548','597','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8549','597','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8550','597','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8551','597','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8552','597','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8553','597','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8554','597','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8555','597','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8556','597','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8557','597','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8558','597','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8559','597','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8560','597','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8561','597','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8562','597','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8563','597','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8564','597','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8565','597','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8566','597','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8567','597','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8568','597','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8569','597','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8570','597','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8571','597','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8572','597','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8573','597','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8574','597','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8575','597','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8576','597','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8577','597','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8578','597','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8579','597','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8580','597','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8581','597','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8582','597','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8583','597','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8584','597','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8585','597','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8586','597','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8587','597','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8588','597','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8589','597','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8590','597','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8591','597','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8592','597','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8593','597','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8594','597','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8595','597','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8596','597','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8597','597','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8598','597','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8599','597','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8600','597','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8601','597','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8602','597','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8603','597','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8604','597','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8605','597','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8606','597','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8607','597','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8608','597','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8609','597','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8610','597','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8611','597','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8612','597','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8613','597','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8614','597','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8615','597','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8616','597','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8617','597','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8618','597','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8619','597','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8620','597','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8621','597','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8622','597','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8623','597','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8624','597','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8625','597','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8626','597','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8627','597','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8628','597','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8629','597','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8630','597','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8631','597','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8632','597','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8633','597','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8634','597','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8635','597','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8636','597','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8637','597','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8638','597','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8639','597','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8640','597','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8641','597','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8642','597','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8643','597','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8644','597','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8645','598','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8646','598','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8647','599','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8648','599','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8649','599','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8650','600','1','normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8651','600','2','warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8652','600','3','critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8653','600','4','shutdown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8654','600','5','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8655','600','6','notFunctioning','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8656','601','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8657','601','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8658','602','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8659','602','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8660','602','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8661','603','1','normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8662','603','2','warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8663','603','3','critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8664','603','4','shutdown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8665','603','5','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8666','603','6','notFunctioning','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8667','604','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8668','604','2','halfDuplex','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8669','604','3','fullDuplex','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8670','605','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8671','605','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8672','605','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8673','605','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8674','605','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8675','605','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8676','606','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8677','606','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8678','606','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8679','606','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8680','606','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8681','606','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8682','606','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8683','606','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8684','606','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8685','606','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8686','606','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8687','606','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8688','606','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8689','606','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8690','606','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8691','606','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8692','606','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8693','606','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8694','606','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8695','606','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8696','606','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8697','606','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8698','606','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8699','606','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8700','606','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8701','606','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8702','606','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8703','606','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8704','606','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8705','606','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8706','606','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8707','606','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8708','606','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8709','606','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8710','606','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8711','606','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8712','606','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8713','606','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8714','606','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8715','606','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8716','606','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8717','606','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8718','606','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8719','606','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8720','606','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8721','606','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8722','606','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8723','606','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8724','606','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8725','606','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8726','606','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8727','606','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8728','606','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8729','606','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8730','606','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8731','606','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8732','606','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8733','606','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8734','606','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8735','606','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8736','606','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8737','606','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8738','606','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8739','606','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8740','606','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8741','606','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8742','606','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8743','606','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8744','606','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8745','606','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8746','606','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8747','606','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8748','606','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8749','606','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8750','606','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8751','606','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8752','606','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8753','606','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8754','606','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8755','606','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8756','606','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8757','606','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8758','606','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8759','606','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8760','606','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8761','606','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8762','606','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8763','606','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8764','606','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8765','606','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8766','606','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8767','606','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8768','606','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8769','606','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8770','606','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8771','606','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8772','606','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8773','606','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8774','606','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8775','606','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8776','606','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8777','606','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8778','606','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8779','606','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8780','606','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8781','606','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8782','606','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8783','606','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8784','606','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8785','606','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8786','606','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8787','606','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8788','606','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8789','606','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8790','606','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8791','606','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8792','606','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8793','606','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8794','606','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8795','606','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8796','606','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8797','606','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8798','606','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8799','606','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8800','606','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8801','606','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8802','606','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8803','606','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8804','606','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8805','606','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8806','606','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8807','606','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8808','606','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8809','606','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8810','606','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8811','606','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8812','606','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8813','606','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8814','606','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8815','606','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8816','606','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8817','606','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8818','606','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8819','606','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8820','606','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8821','606','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8822','606','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8823','606','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8824','606','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8825','606','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8826','606','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8827','606','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8828','606','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8829','606','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8830','606','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8831','606','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8832','606','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8833','606','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8834','606','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8835','606','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8836','606','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8837','606','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8838','606','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8839','606','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8840','606','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8841','606','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8842','606','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8843','606','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8844','606','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8845','606','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8846','606','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8847','606','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8848','606','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8849','606','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8850','606','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8851','606','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8852','606','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8853','606','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8854','606','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8855','606','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8856','606','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8857','606','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8858','606','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8859','606','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8860','606','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8861','606','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8862','606','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8863','606','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8864','606','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8865','606','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8866','606','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8867','606','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8868','606','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8869','606','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8870','606','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8871','606','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8872','606','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8873','606','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8874','606','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8875','606','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8876','606','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8877','606','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8878','606','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8879','606','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8880','606','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8881','606','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8882','606','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8883','606','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8884','606','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8885','606','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8886','606','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8887','606','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8888','606','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8889','606','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8890','606','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8891','606','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8892','606','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8893','606','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8894','606','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8895','606','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8896','606','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8897','606','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8898','606','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8899','606','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8900','606','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8901','606','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8902','606','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8903','606','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8904','606','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8905','606','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8906','606','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8907','606','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8908','606','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8909','606','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8910','606','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8911','606','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8912','606','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8913','606','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8914','606','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8915','606','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8916','606','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8917','606','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8918','606','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8919','606','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8920','606','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8921','606','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8922','606','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8923','606','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8924','606','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8925','606','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8926','606','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8927','606','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8928','606','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8929','606','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8930','606','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8931','606','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8932','606','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8933','606','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8934','606','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8935','606','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8936','606','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8937','606','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8938','606','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8939','606','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8940','606','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8941','606','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8942','606','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8943','606','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8944','606','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8945','606','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8946','606','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8947','606','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8948','606','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8949','606','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8950','606','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8951','606','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8952','606','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8953','606','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8954','606','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8955','606','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8956','606','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8957','606','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8958','606','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8959','606','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8960','606','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8961','606','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8962','607','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8963','607','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8964','608','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8965','608','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8966','608','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8967','609','1','normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8968','609','2','warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8969','609','3','critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8970','609','4','shutdown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8971','609','5','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8972','609','6','notFunctioning','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8973','610','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8974','610','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8975','610','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8976','610','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8977','610','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8978','610','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8979','611','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8980','611','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8981','611','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8982','611','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8983','611','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8984','611','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8985','611','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8986','611','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8987','611','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8988','611','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8989','611','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8990','611','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8991','611','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8992','611','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8993','611','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8994','611','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8995','611','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8996','611','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8997','611','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8998','611','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('8999','611','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9000','611','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9001','611','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9002','611','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9003','611','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9004','611','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9005','611','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9006','611','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9007','611','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9008','611','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9009','611','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9010','611','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9011','611','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9012','611','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9013','611','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9014','611','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9015','611','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9016','611','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9017','611','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9018','611','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9019','611','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9020','611','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9021','611','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9022','611','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9023','611','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9024','611','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9025','611','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9026','611','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9027','611','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9028','611','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9029','611','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9030','611','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9031','611','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9032','611','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9033','611','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9034','611','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9035','611','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9036','611','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9037','611','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9038','611','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9039','611','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9040','611','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9041','611','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9042','611','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9043','611','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9044','611','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9045','611','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9046','611','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9047','611','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9048','611','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9049','611','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9050','611','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9051','611','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9052','611','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9053','611','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9054','611','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9055','611','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9056','611','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9057','611','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9058','611','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9059','611','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9060','611','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9061','611','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9062','611','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9063','611','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9064','611','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9065','611','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9066','611','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9067','611','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9068','611','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9069','611','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9070','611','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9071','611','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9072','611','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9073','611','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9074','611','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9075','611','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9076','611','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9077','611','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9078','611','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9079','611','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9080','611','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9081','611','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9082','611','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9083','611','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9084','611','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9085','611','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9086','611','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9087','611','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9088','611','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9089','611','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9090','611','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9091','611','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9092','611','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9093','611','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9094','611','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9095','611','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9096','611','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9097','611','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9098','611','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9099','611','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9100','611','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9101','611','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9102','611','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9103','611','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9104','611','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9105','611','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9106','611','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9107','611','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9108','611','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9109','611','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9110','611','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9111','611','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9112','611','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9113','611','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9114','611','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9115','611','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9116','611','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9117','611','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9118','611','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9119','611','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9120','611','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9121','611','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9122','611','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9123','611','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9124','611','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9125','611','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9126','611','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9127','611','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9128','611','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9129','611','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9130','611','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9131','611','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9132','611','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9133','611','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9134','611','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9135','611','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9136','611','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9137','611','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9138','611','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9139','611','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9140','611','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9141','611','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9142','611','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9143','611','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9144','611','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9145','611','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9146','611','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9147','611','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9148','611','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9149','611','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9150','611','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9151','611','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9152','611','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9153','611','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9154','611','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9155','611','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9156','611','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9157','611','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9158','611','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9159','611','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9160','611','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9161','611','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9162','611','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9163','611','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9164','611','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9165','611','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9166','611','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9167','611','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9168','611','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9169','611','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9170','611','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9171','611','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9172','611','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9173','611','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9174','611','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9175','611','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9176','611','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9177','611','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9178','611','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9179','611','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9180','611','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9181','611','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9182','611','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9183','611','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9184','611','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9185','611','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9186','611','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9187','611','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9188','611','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9189','611','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9190','611','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9191','611','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9192','611','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9193','611','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9194','611','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9195','611','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9196','611','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9197','611','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9198','611','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9199','611','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9200','611','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9201','611','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9202','611','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9203','611','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9204','611','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9205','611','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9206','611','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9207','611','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9208','611','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9209','611','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9210','611','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9211','611','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9212','611','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9213','611','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9214','611','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9215','611','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9216','611','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9217','611','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9218','611','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9219','611','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9220','611','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9221','611','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9222','611','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9223','611','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9224','611','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9225','611','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9226','611','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9227','611','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9228','611','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9229','611','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9230','611','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9231','611','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9232','611','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9233','611','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9234','611','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9235','611','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9236','611','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9237','611','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9238','611','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9239','611','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9240','611','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9241','611','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9242','611','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9243','611','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9244','611','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9245','611','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9246','611','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9247','611','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9248','611','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9249','611','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9250','611','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9251','611','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9252','611','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9253','611','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9254','611','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9255','611','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9256','611','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9257','611','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9258','611','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9259','611','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9260','611','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9261','611','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9262','611','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9263','611','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9264','611','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9265','612','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9266','612','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9267','613','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9268','613','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9269','613','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9270','614','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9271','614','2','halfDuplex','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9272','614','3','fullDuplex','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9273','615','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9274','615','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9275','615','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9276','615','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9277','615','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9278','615','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9279','616','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9280','616','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9281','616','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9282','616','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9283','616','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9284','616','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9285','616','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9286','616','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9287','616','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9288','616','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9289','616','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9290','616','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9291','616','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9292','616','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9293','616','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9294','616','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9295','616','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9296','616','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9297','616','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9298','616','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9299','616','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9300','616','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9301','616','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9302','616','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9303','616','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9304','616','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9305','616','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9306','616','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9307','616','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9308','616','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9309','616','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9310','616','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9311','616','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9312','616','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9313','616','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9314','616','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9315','616','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9316','616','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9317','616','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9318','616','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9319','616','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9320','616','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9321','616','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9322','616','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9323','616','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9324','616','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9325','616','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9326','616','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9327','616','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9328','616','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9329','616','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9330','616','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9331','616','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9332','616','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9333','616','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9334','616','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9335','616','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9336','616','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9337','616','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9338','616','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9339','616','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9340','616','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9341','616','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9342','616','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9343','616','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9344','616','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9345','616','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9346','616','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9347','616','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9348','616','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9349','616','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9350','616','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9351','616','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9352','616','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9353','616','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9354','616','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9355','616','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9356','616','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9357','616','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9358','616','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9359','616','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9360','616','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9361','616','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9362','616','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9363','616','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9364','616','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9365','616','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9366','616','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9367','616','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9368','616','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9369','616','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9370','616','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9371','616','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9372','616','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9373','616','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9374','616','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9375','616','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9376','616','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9377','616','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9378','616','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9379','616','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9380','616','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9381','616','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9382','616','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9383','616','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9384','616','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9385','616','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9386','616','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9387','616','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9388','616','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9389','616','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9390','616','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9391','616','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9392','616','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9393','616','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9394','616','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9395','616','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9396','616','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9397','616','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9398','616','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9399','616','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9400','616','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9401','616','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9402','616','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9403','616','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9404','616','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9405','616','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9406','616','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9407','616','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9408','616','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9409','616','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9410','616','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9411','616','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9412','616','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9413','616','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9414','616','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9415','616','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9416','616','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9417','616','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9418','616','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9419','616','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9420','616','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9421','616','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9422','616','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9423','616','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9424','616','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9425','616','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9426','616','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9427','616','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9428','616','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9429','616','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9430','616','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9431','616','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9432','616','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9433','616','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9434','616','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9435','616','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9436','616','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9437','616','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9438','616','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9439','616','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9440','616','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9441','616','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9442','616','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9443','616','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9444','616','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9445','616','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9446','616','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9447','616','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9448','616','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9449','616','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9450','616','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9451','616','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9452','616','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9453','616','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9454','616','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9455','616','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9456','616','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9457','616','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9458','616','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9459','616','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9460','616','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9461','616','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9462','616','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9463','616','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9464','616','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9465','616','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9466','616','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9467','616','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9468','616','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9469','616','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9470','616','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9471','616','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9472','616','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9473','616','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9474','616','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9475','616','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9476','616','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9477','616','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9478','616','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9479','616','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9480','616','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9481','616','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9482','616','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9483','616','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9484','616','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9485','616','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9486','616','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9487','616','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9488','616','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9489','616','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9490','616','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9491','616','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9492','616','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9493','616','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9494','616','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9495','616','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9496','616','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9497','616','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9498','616','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9499','616','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9500','616','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9501','616','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9502','616','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9503','616','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9504','616','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9505','616','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9506','616','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9507','616','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9508','616','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9509','616','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9510','616','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9511','616','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9512','616','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9513','616','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9514','616','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9515','616','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9516','616','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9517','616','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9518','616','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9519','616','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9520','616','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9521','616','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9522','616','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9523','616','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9524','616','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9525','616','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9526','616','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9527','616','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9528','616','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9529','616','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9530','616','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9531','616','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9532','616','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9533','616','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9534','616','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9535','616','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9536','616','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9537','616','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9538','616','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9539','616','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9540','616','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9541','616','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9542','616','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9543','616','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9544','616','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9545','616','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9546','616','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9547','616','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9548','616','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9549','616','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9550','616','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9551','616','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9552','616','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9553','616','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9554','616','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9555','616','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9556','616','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9557','616','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9558','616','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9559','616','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9560','616','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9561','616','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9562','616','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9563','616','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9564','616','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9565','617','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9566','617','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9567','618','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9568','618','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9569','618','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9570','619','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9571','619','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9572','619','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9573','619','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9574','619','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9575','619','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9576','620','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9577','620','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9578','620','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9579','620','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9580','620','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9581','620','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9582','620','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9583','620','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9584','620','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9585','620','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9586','620','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9587','620','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9588','620','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9589','620','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9590','620','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9591','620','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9592','620','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9593','620','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9594','620','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9595','620','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9596','620','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9597','620','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9598','620','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9599','620','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9600','620','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9601','620','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9602','620','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9603','620','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9604','620','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9605','620','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9606','620','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9607','620','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9608','620','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9609','620','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9610','620','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9611','620','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9612','620','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9613','620','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9614','620','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9615','620','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9616','620','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9617','620','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9618','620','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9619','620','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9620','620','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9621','620','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9622','620','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9623','620','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9624','620','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9625','620','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9626','620','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9627','620','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9628','620','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9629','620','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9630','620','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9631','620','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9632','620','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9633','620','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9634','620','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9635','620','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9636','620','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9637','620','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9638','620','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9639','620','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9640','620','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9641','620','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9642','620','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9643','620','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9644','620','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9645','620','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9646','620','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9647','620','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9648','620','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9649','620','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9650','620','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9651','620','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9652','620','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9653','620','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9654','620','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9655','620','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9656','620','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9657','620','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9658','620','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9659','620','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9660','620','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9661','620','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9662','620','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9663','620','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9664','620','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9665','620','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9666','620','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9667','620','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9668','620','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9669','620','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9670','620','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9671','620','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9672','620','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9673','620','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9674','620','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9675','620','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9676','620','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9677','620','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9678','620','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9679','620','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9680','620','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9681','620','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9682','620','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9683','620','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9684','620','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9685','620','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9686','620','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9687','620','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9688','620','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9689','620','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9690','620','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9691','620','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9692','620','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9693','620','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9694','620','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9695','620','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9696','620','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9697','620','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9698','620','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9699','620','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9700','620','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9701','620','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9702','620','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9703','620','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9704','620','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9705','620','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9706','620','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9707','620','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9708','620','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9709','620','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9710','620','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9711','620','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9712','620','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9713','620','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9714','620','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9715','620','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9716','620','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9717','620','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9718','620','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9719','620','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9720','620','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9721','620','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9722','620','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9723','620','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9724','620','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9725','620','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9726','620','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9727','620','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9728','620','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9729','620','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9730','620','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9731','620','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9732','620','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9733','620','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9734','620','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9735','620','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9736','620','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9737','620','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9738','620','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9739','620','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9740','620','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9741','620','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9742','620','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9743','620','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9744','620','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9745','620','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9746','620','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9747','620','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9748','620','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9749','620','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9750','620','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9751','620','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9752','620','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9753','620','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9754','620','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9755','620','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9756','620','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9757','620','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9758','620','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9759','620','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9760','620','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9761','620','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9762','620','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9763','620','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9764','620','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9765','620','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9766','620','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9767','620','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9768','620','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9769','620','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9770','620','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9771','620','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9772','620','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9773','620','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9774','620','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9775','620','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9776','620','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9777','620','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9778','620','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9779','620','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9780','620','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9781','620','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9782','620','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9783','620','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9784','620','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9785','620','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9786','620','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9787','620','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9788','620','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9789','620','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9790','620','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9791','620','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9792','620','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9793','620','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9794','620','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9795','620','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9796','620','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9797','620','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9798','620','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9799','620','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9800','620','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9801','620','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9802','620','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9803','620','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9804','620','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9805','620','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9806','620','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9807','620','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9808','620','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9809','620','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9810','620','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9811','620','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9812','620','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9813','620','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9814','620','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9815','620','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9816','620','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9817','620','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9818','620','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9819','620','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9820','620','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9821','620','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9822','620','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9823','620','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9824','620','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9825','620','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9826','620','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9827','620','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9828','620','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9829','620','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9830','620','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9831','620','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9832','620','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9833','620','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9834','620','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9835','620','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9836','620','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9837','620','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9838','620','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9839','620','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9840','620','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9841','620','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9842','620','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9843','620','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9844','620','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9845','620','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9846','620','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9847','620','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9848','620','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9849','620','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9850','620','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9851','620','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9852','620','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9853','620','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9854','620','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9855','620','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9856','620','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9857','620','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9858','620','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9859','620','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9860','620','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9861','620','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9862','621','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9863','621','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9864','622','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9865','622','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9866','622','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9867','623','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9868','623','2','halfDuplex','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9869','623','3','fullDuplex','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9870','624','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9871','624','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9872','624','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9873','624','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9874','624','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9875','624','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9876','625','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9877','625','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9878','625','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9879','625','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9880','625','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9881','625','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9882','625','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9883','625','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9884','625','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9885','625','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9886','625','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9887','625','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9888','625','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9889','625','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9890','625','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9891','625','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9892','625','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9893','625','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9894','625','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9895','625','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9896','625','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9897','625','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9898','625','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9899','625','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9900','625','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9901','625','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9902','625','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9903','625','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9904','625','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9905','625','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9906','625','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9907','625','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9908','625','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9909','625','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9910','625','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9911','625','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9912','625','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9913','625','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9914','625','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9915','625','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9916','625','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9917','625','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9918','625','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9919','625','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9920','625','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9921','625','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9922','625','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9923','625','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9924','625','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9925','625','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9926','625','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9927','625','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9928','625','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9929','625','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9930','625','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9931','625','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9932','625','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9933','625','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9934','625','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9935','625','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9936','625','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9937','625','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9938','625','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9939','625','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9940','625','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9941','625','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9942','625','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9943','625','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9944','625','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9945','625','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9946','625','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9947','625','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9948','625','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9949','625','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9950','625','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9951','625','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9952','625','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9953','625','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9954','625','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9955','625','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9956','625','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9957','625','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9958','625','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9959','625','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9960','625','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9961','625','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9962','625','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9963','625','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9964','625','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9965','625','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9966','625','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9967','625','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9968','625','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9969','625','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9970','625','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9971','625','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9972','625','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9973','625','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9974','625','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9975','625','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9976','625','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9977','625','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9978','625','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9979','625','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9980','625','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9981','625','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9982','625','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9983','625','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9984','625','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9985','625','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9986','625','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9987','625','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9988','625','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9989','625','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9990','625','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9991','625','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9992','625','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9993','625','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9994','625','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9995','625','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9996','625','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9997','625','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9998','625','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('9999','625','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10000','625','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10001','625','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10002','625','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10003','625','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10004','625','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10005','625','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10006','625','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10007','625','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10008','625','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10009','625','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10010','625','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10011','625','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10012','625','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10013','625','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10014','625','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10015','625','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10016','625','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10017','625','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10018','625','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10019','625','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10020','625','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10021','625','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10022','625','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10023','625','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10024','625','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10025','625','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10026','625','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10027','625','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10028','625','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10029','625','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10030','625','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10031','625','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10032','625','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10033','625','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10034','625','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10035','625','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10036','625','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10037','625','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10038','625','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10039','625','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10040','625','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10041','625','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10042','625','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10043','625','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10044','625','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10045','625','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10046','625','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10047','625','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10048','625','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10049','625','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10050','625','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10051','625','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10052','625','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10053','625','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10054','625','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10055','625','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10056','625','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10057','625','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10058','625','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10059','625','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10060','625','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10061','625','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10062','625','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10063','625','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10064','625','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10065','625','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10066','625','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10067','625','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10068','625','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10069','625','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10070','625','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10071','625','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10072','625','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10073','625','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10074','625','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10075','625','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10076','625','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10077','625','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10078','625','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10079','625','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10080','625','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10081','625','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10082','625','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10083','625','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10084','625','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10085','625','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10086','625','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10087','625','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10088','625','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10089','625','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10090','625','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10091','625','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10092','625','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10093','625','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10094','625','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10095','625','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10096','625','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10097','625','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10098','625','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10099','625','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10100','625','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10101','625','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10102','625','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10103','625','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10104','625','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10105','625','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10106','625','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10107','625','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10108','625','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10109','625','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10110','625','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10111','625','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10112','625','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10113','625','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10114','625','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10115','625','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10116','625','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10117','625','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10118','625','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10119','625','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10120','625','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10121','625','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10122','625','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10123','625','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10124','625','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10125','625','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10126','625','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10127','625','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10128','625','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10129','625','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10130','625','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10131','625','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10132','625','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10133','625','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10134','625','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10135','625','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10136','625','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10137','625','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10138','625','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10139','625','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10140','625','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10141','625','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10142','625','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10143','625','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10144','625','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10145','625','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10146','625','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10147','625','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10148','625','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10149','625','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10150','625','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10151','625','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10152','625','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10153','625','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10154','625','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10155','625','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10156','625','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10157','625','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10158','625','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10159','625','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10160','625','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10161','625','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10162','626','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10163','626','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10164','627','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10165','627','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10166','627','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10167','628','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10168','628','2','halfDuplex','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10169','628','3','fullDuplex','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10170','629','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10171','629','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10172','629','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10173','629','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10174','629','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10175','629','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10176','630','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10177','630','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10178','630','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10179','630','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10180','630','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10181','630','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10182','630','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10183','630','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10184','630','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10185','630','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10186','630','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10187','630','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10188','630','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10189','630','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10190','630','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10191','630','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10192','630','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10193','630','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10194','630','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10195','630','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10196','630','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10197','630','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10198','630','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10199','630','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10200','630','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10201','630','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10202','630','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10203','630','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10204','630','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10205','630','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10206','630','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10207','630','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10208','630','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10209','630','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10210','630','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10211','630','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10212','630','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10213','630','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10214','630','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10215','630','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10216','630','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10217','630','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10218','630','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10219','630','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10220','630','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10221','630','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10222','630','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10223','630','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10224','630','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10225','630','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10226','630','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10227','630','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10228','630','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10229','630','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10230','630','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10231','630','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10232','630','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10233','630','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10234','630','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10235','630','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10236','630','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10237','630','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10238','630','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10239','630','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10240','630','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10241','630','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10242','630','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10243','630','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10244','630','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10245','630','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10246','630','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10247','630','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10248','630','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10249','630','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10250','630','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10251','630','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10252','630','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10253','630','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10254','630','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10255','630','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10256','630','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10257','630','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10258','630','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10259','630','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10260','630','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10261','630','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10262','630','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10263','630','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10264','630','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10265','630','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10266','630','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10267','630','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10268','630','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10269','630','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10270','630','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10271','630','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10272','630','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10273','630','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10274','630','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10275','630','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10276','630','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10277','630','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10278','630','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10279','630','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10280','630','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10281','630','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10282','630','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10283','630','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10284','630','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10285','630','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10286','630','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10287','630','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10288','630','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10289','630','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10290','630','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10291','630','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10292','630','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10293','630','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10294','630','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10295','630','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10296','630','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10297','630','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10298','630','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10299','630','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10300','630','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10301','630','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10302','630','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10303','630','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10304','630','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10305','630','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10306','630','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10307','630','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10308','630','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10309','630','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10310','630','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10311','630','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10312','630','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10313','630','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10314','630','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10315','630','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10316','630','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10317','630','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10318','630','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10319','630','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10320','630','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10321','630','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10322','630','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10323','630','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10324','630','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10325','630','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10326','630','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10327','630','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10328','630','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10329','630','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10330','630','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10331','630','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10332','630','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10333','630','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10334','630','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10335','630','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10336','630','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10337','630','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10338','630','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10339','630','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10340','630','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10341','630','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10342','630','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10343','630','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10344','630','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10345','630','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10346','630','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10347','630','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10348','630','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10349','630','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10350','630','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10351','630','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10352','630','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10353','630','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10354','630','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10355','630','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10356','630','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10357','630','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10358','630','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10359','630','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10360','630','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10361','630','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10362','630','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10363','630','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10364','630','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10365','630','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10366','630','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10367','630','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10368','630','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10369','630','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10370','630','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10371','630','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10372','630','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10373','630','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10374','630','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10375','630','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10376','630','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10377','630','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10378','630','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10379','630','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10380','630','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10381','630','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10382','630','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10383','630','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10384','630','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10385','630','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10386','630','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10387','630','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10388','630','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10389','630','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10390','630','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10391','630','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10392','630','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10393','630','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10394','630','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10395','630','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10396','630','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10397','630','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10398','630','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10399','630','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10400','630','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10401','630','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10402','630','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10403','630','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10404','630','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10405','630','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10406','630','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10407','630','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10408','630','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10409','630','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10410','630','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10411','630','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10412','630','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10413','630','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10414','630','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10415','630','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10416','630','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10417','630','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10418','630','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10419','630','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10420','630','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10421','630','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10422','630','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10423','630','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10424','630','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10425','630','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10426','630','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10427','630','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10428','630','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10429','630','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10430','630','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10431','630','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10432','630','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10433','630','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10434','630','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10435','630','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10436','630','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10437','630','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10438','630','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10439','630','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10440','630','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10441','630','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10442','630','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10443','630','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10444','630','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10445','630','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10446','630','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10447','630','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10448','630','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10449','630','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10450','630','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10451','630','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10452','630','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10453','630','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10454','630','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10455','630','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10456','630','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10457','630','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10458','630','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10459','630','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10460','630','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10461','630','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10462','631','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10463','631','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10464','632','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10465','632','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10466','632','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10467','633','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10468','633','2','halfDuplex','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10469','633','3','fullDuplex','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10470','634','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10471','634','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10472','634','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10473','634','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10474','634','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10475','634','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10476','635','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10477','635','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10478','635','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10479','635','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10480','635','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10481','635','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10482','635','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10483','635','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10484','635','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10485','635','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10486','635','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10487','635','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10488','635','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10489','635','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10490','635','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10491','635','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10492','635','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10493','635','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10494','635','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10495','635','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10496','635','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10497','635','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10498','635','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10499','635','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10500','635','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10501','635','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10502','635','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10503','635','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10504','635','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10505','635','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10506','635','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10507','635','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10508','635','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10509','635','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10510','635','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10511','635','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10512','635','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10513','635','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10514','635','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10515','635','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10516','635','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10517','635','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10518','635','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10519','635','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10520','635','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10521','635','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10522','635','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10523','635','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10524','635','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10525','635','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10526','635','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10527','635','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10528','635','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10529','635','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10530','635','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10531','635','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10532','635','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10533','635','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10534','635','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10535','635','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10536','635','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10537','635','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10538','635','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10539','635','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10540','635','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10541','635','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10542','635','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10543','635','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10544','635','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10545','635','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10546','635','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10547','635','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10548','635','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10549','635','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10550','635','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10551','635','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10552','635','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10553','635','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10554','635','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10555','635','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10556','635','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10557','635','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10558','635','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10559','635','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10560','635','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10561','635','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10562','635','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10563','635','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10564','635','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10565','635','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10566','635','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10567','635','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10568','635','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10569','635','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10570','635','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10571','635','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10572','635','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10573','635','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10574','635','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10575','635','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10576','635','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10577','635','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10578','635','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10579','635','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10580','635','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10581','635','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10582','635','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10583','635','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10584','635','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10585','635','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10586','635','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10587','635','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10588','635','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10589','635','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10590','635','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10591','635','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10592','635','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10593','635','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10594','635','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10595','635','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10596','635','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10597','635','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10598','635','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10599','635','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10600','635','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10601','635','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10602','635','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10603','635','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10604','635','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10605','635','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10606','635','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10607','635','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10608','635','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10609','635','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10610','635','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10611','635','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10612','635','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10613','635','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10614','635','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10615','635','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10616','635','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10617','635','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10618','635','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10619','635','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10620','635','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10621','635','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10622','635','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10623','635','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10624','635','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10625','635','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10626','635','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10627','635','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10628','635','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10629','635','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10630','635','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10631','635','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10632','635','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10633','635','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10634','635','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10635','635','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10636','635','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10637','635','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10638','635','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10639','635','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10640','635','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10641','635','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10642','635','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10643','635','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10644','635','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10645','635','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10646','635','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10647','635','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10648','635','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10649','635','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10650','635','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10651','635','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10652','635','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10653','635','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10654','635','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10655','635','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10656','635','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10657','635','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10658','635','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10659','635','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10660','635','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10661','635','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10662','635','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10663','635','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10664','635','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10665','635','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10666','635','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10667','635','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10668','635','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10669','635','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10670','635','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10671','635','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10672','635','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10673','635','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10674','635','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10675','635','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10676','635','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10677','635','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10678','635','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10679','635','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10680','635','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10681','635','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10682','635','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10683','635','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10684','635','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10685','635','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10686','635','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10687','635','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10688','635','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10689','635','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10690','635','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10691','635','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10692','635','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10693','635','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10694','635','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10695','635','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10696','635','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10697','635','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10698','635','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10699','635','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10700','635','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10701','635','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10702','635','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10703','635','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10704','635','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10705','635','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10706','635','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10707','635','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10708','635','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10709','635','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10710','635','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10711','635','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10712','635','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10713','635','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10714','635','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10715','635','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10716','635','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10717','635','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10718','635','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10719','635','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10720','635','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10721','635','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10722','635','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10723','635','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10724','635','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10725','635','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10726','635','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10727','635','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10728','635','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10729','635','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10730','635','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10731','635','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10732','635','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10733','635','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10734','635','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10735','635','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10736','635','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10737','635','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10738','635','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10739','635','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10740','635','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10741','635','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10742','635','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10743','635','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10744','635','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10745','635','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10746','635','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10747','635','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10748','635','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10749','635','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10750','635','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10751','635','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10752','635','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10753','635','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10754','635','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10755','635','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10756','635','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10757','635','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10758','635','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10759','635','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10760','635','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10761','635','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10762','636','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10763','636','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10764','637','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10765','637','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10766','637','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10767','638','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10768','638','2','halfDuplex','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10769','638','3','fullDuplex','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10770','639','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10771','639','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10772','639','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10773','639','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10774','639','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10775','639','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10776','640','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10777','640','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10778','640','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10779','640','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10780','640','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10781','640','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10782','640','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10783','640','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10784','640','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10785','640','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10786','640','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10787','640','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10788','640','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10789','640','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10790','640','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10791','640','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10792','640','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10793','640','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10794','640','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10795','640','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10796','640','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10797','640','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10798','640','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10799','640','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10800','640','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10801','640','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10802','640','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10803','640','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10804','640','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10805','640','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10806','640','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10807','640','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10808','640','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10809','640','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10810','640','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10811','640','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10812','640','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10813','640','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10814','640','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10815','640','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10816','640','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10817','640','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10818','640','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10819','640','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10820','640','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10821','640','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10822','640','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10823','640','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10824','640','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10825','640','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10826','640','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10827','640','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10828','640','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10829','640','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10830','640','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10831','640','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10832','640','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10833','640','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10834','640','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10835','640','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10836','640','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10837','640','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10838','640','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10839','640','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10840','640','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10841','640','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10842','640','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10843','640','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10844','640','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10845','640','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10846','640','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10847','640','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10848','640','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10849','640','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10850','640','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10851','640','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10852','640','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10853','640','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10854','640','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10855','640','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10856','640','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10857','640','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10858','640','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10859','640','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10860','640','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10861','640','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10862','640','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10863','640','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10864','640','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10865','640','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10866','640','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10867','640','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10868','640','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10869','640','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10870','640','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10871','640','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10872','640','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10873','640','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10874','640','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10875','640','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10876','640','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10877','640','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10878','640','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10879','640','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10880','640','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10881','640','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10882','640','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10883','640','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10884','640','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10885','640','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10886','640','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10887','640','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10888','640','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10889','640','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10890','640','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10891','640','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10892','640','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10893','640','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10894','640','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10895','640','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10896','640','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10897','640','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10898','640','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10899','640','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10900','640','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10901','640','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10902','640','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10903','640','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10904','640','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10905','640','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10906','640','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10907','640','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10908','640','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10909','640','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10910','640','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10911','640','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10912','640','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10913','640','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10914','640','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10915','640','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10916','640','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10917','640','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10918','640','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10919','640','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10920','640','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10921','640','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10922','640','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10923','640','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10924','640','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10925','640','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10926','640','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10927','640','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10928','640','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10929','640','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10930','640','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10931','640','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10932','640','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10933','640','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10934','640','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10935','640','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10936','640','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10937','640','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10938','640','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10939','640','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10940','640','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10941','640','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10942','640','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10943','640','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10944','640','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10945','640','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10946','640','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10947','640','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10948','640','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10949','640','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10950','640','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10951','640','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10952','640','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10953','640','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10954','640','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10955','640','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10956','640','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10957','640','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10958','640','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10959','640','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10960','640','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10961','640','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10962','640','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10963','640','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10964','640','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10965','640','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10966','640','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10967','640','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10968','640','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10969','640','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10970','640','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10971','640','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10972','640','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10973','640','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10974','640','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10975','640','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10976','640','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10977','640','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10978','640','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10979','640','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10980','640','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10981','640','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10982','640','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10983','640','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10984','640','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10985','640','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10986','640','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10987','640','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10988','640','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10989','640','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10990','640','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10991','640','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10992','640','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10993','640','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10994','640','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10995','640','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10996','640','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10997','640','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10998','640','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('10999','640','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11000','640','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11001','640','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11002','640','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11003','640','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11004','640','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11005','640','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11006','640','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11007','640','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11008','640','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11009','640','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11010','640','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11011','640','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11012','640','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11013','640','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11014','640','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11015','640','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11016','640','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11017','640','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11018','640','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11019','640','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11020','640','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11021','640','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11022','640','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11023','640','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11024','640','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11025','640','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11026','640','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11027','640','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11028','640','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11029','640','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11030','640','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11031','640','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11032','640','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11033','640','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11034','640','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11035','640','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11036','640','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11037','640','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11038','640','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11039','640','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11040','640','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11041','640','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11042','640','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11043','640','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11044','640','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11045','640','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11046','640','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11047','640','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11048','640','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11049','640','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11050','640','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11051','640','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11052','640','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11053','640','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11054','640','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11055','640','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11056','640','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11057','640','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11058','640','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11059','640','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11060','640','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11061','640','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11062','641','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11063','641','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11064','642','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11065','642','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11066','642','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11067','643','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11068','643','2','halfDuplex','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11069','643','3','fullDuplex','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11070','644','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11071','644','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11072','644','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11073','644','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11074','644','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11075','644','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11076','645','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11077','645','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11078','645','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11079','645','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11080','645','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11081','645','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11082','645','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11083','645','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11084','645','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11085','645','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11086','645','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11087','645','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11088','645','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11089','645','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11090','645','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11091','645','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11092','645','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11093','645','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11094','645','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11095','645','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11096','645','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11097','645','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11098','645','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11099','645','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11100','645','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11101','645','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11102','645','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11103','645','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11104','645','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11105','645','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11106','645','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11107','645','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11108','645','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11109','645','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11110','645','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11111','645','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11112','645','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11113','645','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11114','645','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11115','645','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11116','645','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11117','645','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11118','645','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11119','645','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11120','645','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11121','645','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11122','645','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11123','645','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11124','645','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11125','645','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11126','645','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11127','645','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11128','645','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11129','645','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11130','645','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11131','645','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11132','645','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11133','645','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11134','645','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11135','645','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11136','645','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11137','645','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11138','645','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11139','645','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11140','645','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11141','645','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11142','645','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11143','645','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11144','645','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11145','645','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11146','645','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11147','645','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11148','645','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11149','645','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11150','645','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11151','645','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11152','645','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11153','645','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11154','645','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11155','645','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11156','645','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11157','645','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11158','645','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11159','645','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11160','645','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11161','645','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11162','645','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11163','645','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11164','645','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11165','645','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11166','645','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11167','645','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11168','645','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11169','645','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11170','645','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11171','645','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11172','645','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11173','645','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11174','645','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11175','645','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11176','645','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11177','645','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11178','645','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11179','645','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11180','645','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11181','645','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11182','645','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11183','645','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11184','645','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11185','645','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11186','645','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11187','645','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11188','645','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11189','645','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11190','645','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11191','645','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11192','645','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11193','645','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11194','645','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11195','645','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11196','645','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11197','645','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11198','645','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11199','645','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11200','645','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11201','645','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11202','645','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11203','645','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11204','645','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11205','645','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11206','645','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11207','645','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11208','645','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11209','645','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11210','645','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11211','645','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11212','645','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11213','645','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11214','645','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11215','645','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11216','645','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11217','645','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11218','645','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11219','645','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11220','645','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11221','645','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11222','645','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11223','645','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11224','645','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11225','645','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11226','645','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11227','645','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11228','645','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11229','645','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11230','645','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11231','645','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11232','645','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11233','645','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11234','645','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11235','645','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11236','645','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11237','645','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11238','645','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11239','645','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11240','645','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11241','645','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11242','645','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11243','645','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11244','645','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11245','645','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11246','645','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11247','645','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11248','645','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11249','645','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11250','645','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11251','645','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11252','645','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11253','645','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11254','645','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11255','645','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11256','645','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11257','645','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11258','645','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11259','645','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11260','645','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11261','645','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11262','645','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11263','645','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11264','645','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11265','645','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11266','645','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11267','645','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11268','645','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11269','645','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11270','645','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11271','645','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11272','645','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11273','645','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11274','645','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11275','645','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11276','645','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11277','645','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11278','645','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11279','645','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11280','645','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11281','645','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11282','645','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11283','645','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11284','645','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11285','645','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11286','645','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11287','645','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11288','645','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11289','645','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11290','645','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11291','645','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11292','645','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11293','645','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11294','645','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11295','645','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11296','645','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11297','645','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11298','645','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11299','645','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11300','645','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11301','645','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11302','645','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11303','645','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11304','645','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11305','645','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11306','645','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11307','645','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11308','645','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11309','645','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11310','645','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11311','645','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11312','645','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11313','645','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11314','645','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11315','645','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11316','645','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11317','645','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11318','645','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11319','645','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11320','645','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11321','645','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11322','645','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11323','645','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11324','645','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11325','645','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11326','645','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11327','645','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11328','645','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11329','645','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11330','645','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11331','645','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11332','645','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11333','645','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11334','645','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11335','645','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11336','645','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11337','645','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11338','645','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11339','645','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11340','645','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11341','645','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11342','645','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11343','645','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11344','645','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11345','645','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11346','645','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11347','645','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11348','645','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11349','645','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11350','645','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11351','645','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11352','645','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11353','645','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11354','645','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11355','645','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11356','645','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11357','645','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11358','645','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11359','645','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11360','645','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11361','645','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11362','646','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11363','646','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11364','647','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11365','647','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11366','647','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11367','648','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11368','648','2','halfDuplex','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11369','648','3','fullDuplex','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11370','649','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11371','649','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11372','649','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11373','649','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11374','649','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11375','649','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11376','650','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11377','650','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11378','650','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11379','650','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11380','650','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11381','650','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11382','650','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11383','650','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11384','650','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11385','650','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11386','650','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11387','650','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11388','650','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11389','650','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11390','650','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11391','650','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11392','650','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11393','650','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11394','650','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11395','650','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11396','650','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11397','650','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11398','650','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11399','650','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11400','650','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11401','650','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11402','650','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11403','650','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11404','650','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11405','650','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11406','650','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11407','650','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11408','650','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11409','650','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11410','650','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11411','650','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11412','650','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11413','650','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11414','650','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11415','650','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11416','650','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11417','650','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11418','650','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11419','650','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11420','650','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11421','650','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11422','650','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11423','650','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11424','650','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11425','650','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11426','650','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11427','650','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11428','650','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11429','650','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11430','650','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11431','650','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11432','650','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11433','650','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11434','650','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11435','650','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11436','650','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11437','650','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11438','650','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11439','650','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11440','650','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11441','650','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11442','650','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11443','650','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11444','650','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11445','650','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11446','650','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11447','650','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11448','650','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11449','650','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11450','650','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11451','650','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11452','650','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11453','650','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11454','650','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11455','650','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11456','650','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11457','650','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11458','650','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11459','650','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11460','650','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11461','650','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11462','650','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11463','650','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11464','650','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11465','650','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11466','650','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11467','650','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11468','650','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11469','650','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11470','650','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11471','650','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11472','650','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11473','650','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11474','650','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11475','650','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11476','650','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11477','650','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11478','650','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11479','650','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11480','650','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11481','650','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11482','650','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11483','650','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11484','650','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11485','650','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11486','650','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11487','650','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11488','650','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11489','650','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11490','650','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11491','650','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11492','650','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11493','650','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11494','650','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11495','650','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11496','650','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11497','650','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11498','650','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11499','650','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11500','650','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11501','650','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11502','650','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11503','650','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11504','650','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11505','650','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11506','650','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11507','650','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11508','650','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11509','650','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11510','650','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11511','650','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11512','650','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11513','650','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11514','650','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11515','650','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11516','650','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11517','650','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11518','650','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11519','650','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11520','650','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11521','650','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11522','650','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11523','650','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11524','650','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11525','650','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11526','650','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11527','650','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11528','650','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11529','650','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11530','650','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11531','650','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11532','650','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11533','650','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11534','650','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11535','650','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11536','650','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11537','650','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11538','650','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11539','650','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11540','650','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11541','650','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11542','650','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11543','650','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11544','650','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11545','650','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11546','650','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11547','650','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11548','650','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11549','650','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11550','650','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11551','650','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11552','650','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11553','650','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11554','650','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11555','650','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11556','650','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11557','650','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11558','650','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11559','650','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11560','650','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11561','650','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11562','650','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11563','650','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11564','650','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11565','650','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11566','650','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11567','650','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11568','650','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11569','650','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11570','650','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11571','650','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11572','650','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11573','650','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11574','650','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11575','650','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11576','650','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11577','650','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11578','650','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11579','650','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11580','650','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11581','650','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11582','650','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11583','650','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11584','650','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11585','650','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11586','650','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11587','650','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11588','650','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11589','650','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11590','650','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11591','650','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11592','650','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11593','650','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11594','650','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11595','650','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11596','650','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11597','650','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11598','650','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11599','650','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11600','650','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11601','650','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11602','650','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11603','650','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11604','650','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11605','650','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11606','650','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11607','650','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11608','650','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11609','650','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11610','650','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11611','650','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11612','650','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11613','650','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11614','650','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11615','650','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11616','650','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11617','650','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11618','650','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11619','650','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11620','650','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11621','650','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11622','650','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11623','650','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11624','650','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11625','650','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11626','650','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11627','650','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11628','650','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11629','650','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11630','650','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11631','650','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11632','650','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11633','650','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11634','650','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11635','650','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11636','650','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11637','650','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11638','650','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11639','650','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11640','650','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11641','650','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11642','650','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11643','650','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11644','650','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11645','650','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11646','650','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11647','650','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11648','650','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11649','650','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11650','650','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11651','650','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11652','650','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11653','650','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11654','650','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11655','650','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11656','650','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11657','650','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11658','650','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11659','650','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11660','650','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11661','650','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11662','651','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11663','651','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11664','652','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11665','652','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11666','652','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11667','653','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11668','653','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11669','653','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11670','653','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11671','653','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11672','653','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11673','654','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11674','654','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11675','654','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11676','654','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11677','654','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11678','654','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11679','654','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11680','654','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11681','654','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11682','654','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11683','654','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11684','654','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11685','654','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11686','654','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11687','654','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11688','654','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11689','654','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11690','654','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11691','654','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11692','654','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11693','654','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11694','654','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11695','654','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11696','654','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11697','654','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11698','654','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11699','654','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11700','654','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11701','654','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11702','654','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11703','654','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11704','654','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11705','654','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11706','654','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11707','654','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11708','654','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11709','654','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11710','654','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11711','654','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11712','654','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11713','654','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11714','654','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11715','654','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11716','654','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11717','654','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11718','654','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11719','654','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11720','654','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11721','654','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11722','654','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11723','654','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11724','654','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11725','654','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11726','654','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11727','654','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11728','654','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11729','654','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11730','654','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11731','654','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11732','654','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11733','654','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11734','654','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11735','654','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11736','654','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11737','654','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11738','654','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11739','654','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11740','654','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11741','654','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11742','654','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11743','654','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11744','654','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11745','654','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11746','654','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11747','654','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11748','654','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11749','654','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11750','654','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11751','654','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11752','654','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11753','654','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11754','654','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11755','654','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11756','654','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11757','654','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11758','654','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11759','654','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11760','654','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11761','654','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11762','654','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11763','654','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11764','654','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11765','654','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11766','654','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11767','654','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11768','654','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11769','654','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11770','654','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11771','654','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11772','654','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11773','654','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11774','654','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11775','654','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11776','654','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11777','654','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11778','654','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11779','654','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11780','654','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11781','654','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11782','654','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11783','654','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11784','654','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11785','654','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11786','654','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11787','654','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11788','654','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11789','654','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11790','654','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11791','654','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11792','654','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11793','654','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11794','654','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11795','654','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11796','654','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11797','654','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11798','654','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11799','654','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11800','654','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11801','654','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11802','654','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11803','654','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11804','654','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11805','654','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11806','654','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11807','654','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11808','654','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11809','654','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11810','654','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11811','654','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11812','654','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11813','654','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11814','654','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11815','654','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11816','654','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11817','654','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11818','654','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11819','654','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11820','654','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11821','654','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11822','654','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11823','654','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11824','654','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11825','654','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11826','654','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11827','654','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11828','654','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11829','654','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11830','654','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11831','654','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11832','654','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11833','654','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11834','654','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11835','654','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11836','654','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11837','654','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11838','654','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11839','654','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11840','654','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11841','654','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11842','654','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11843','654','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11844','654','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11845','654','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11846','654','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11847','654','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11848','654','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11849','654','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11850','654','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11851','654','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11852','654','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11853','654','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11854','654','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11855','654','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11856','654','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11857','654','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11858','654','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11859','654','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11860','654','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11861','654','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11862','654','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11863','654','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11864','654','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11865','654','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11866','654','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11867','654','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11868','654','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11869','654','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11870','654','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11871','654','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11872','654','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11873','654','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11874','654','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11875','654','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11876','654','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11877','654','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11878','654','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11879','654','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11880','654','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11881','654','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11882','654','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11883','654','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11884','654','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11885','654','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11886','654','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11887','654','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11888','654','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11889','654','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11890','654','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11891','654','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11892','654','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11893','654','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11894','654','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11895','654','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11896','654','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11897','654','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11898','654','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11899','654','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11900','654','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11901','654','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11902','654','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11903','654','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11904','654','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11905','654','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11906','654','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11907','654','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11908','654','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11909','654','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11910','654','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11911','654','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11912','654','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11913','654','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11914','654','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11915','654','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11916','654','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11917','654','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11918','654','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11919','654','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11920','654','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11921','654','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11922','654','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11923','654','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11924','654','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11925','654','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11926','654','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11927','654','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11928','654','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11929','654','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11930','654','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11931','654','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11932','654','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11933','654','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11934','654','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11935','654','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11936','654','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11937','654','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11938','654','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11939','654','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11940','654','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11941','654','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11942','654','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11943','654','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11944','654','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11945','654','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11946','654','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11947','654','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11948','654','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11949','654','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11950','654','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11951','654','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11952','654','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11953','654','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11954','654','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11955','654','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11956','654','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11957','654','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11958','654','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11959','655','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11960','655','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11961','656','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11962','656','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11963','656','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11964','657','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11965','657','2','halfDuplex','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11966','657','3','fullDuplex','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11967','658','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11968','658','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11969','658','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11970','658','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11971','658','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11972','658','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11973','659','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11974','659','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11975','659','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11976','659','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11977','659','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11978','659','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11979','659','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11980','659','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11981','659','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11982','659','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11983','659','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11984','659','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11985','659','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11986','659','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11987','659','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11988','659','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11989','659','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11990','659','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11991','659','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11992','659','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11993','659','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11994','659','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11995','659','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11996','659','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11997','659','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11998','659','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('11999','659','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12000','659','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12001','659','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12002','659','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12003','659','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12004','659','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12005','659','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12006','659','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12007','659','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12008','659','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12009','659','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12010','659','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12011','659','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12012','659','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12013','659','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12014','659','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12015','659','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12016','659','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12017','659','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12018','659','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12019','659','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12020','659','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12021','659','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12022','659','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12023','659','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12024','659','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12025','659','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12026','659','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12027','659','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12028','659','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12029','659','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12030','659','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12031','659','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12032','659','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12033','659','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12034','659','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12035','659','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12036','659','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12037','659','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12038','659','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12039','659','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12040','659','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12041','659','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12042','659','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12043','659','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12044','659','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12045','659','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12046','659','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12047','659','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12048','659','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12049','659','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12050','659','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12051','659','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12052','659','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12053','659','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12054','659','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12055','659','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12056','659','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12057','659','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12058','659','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12059','659','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12060','659','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12061','659','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12062','659','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12063','659','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12064','659','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12065','659','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12066','659','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12067','659','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12068','659','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12069','659','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12070','659','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12071','659','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12072','659','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12073','659','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12074','659','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12075','659','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12076','659','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12077','659','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12078','659','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12079','659','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12080','659','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12081','659','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12082','659','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12083','659','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12084','659','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12085','659','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12086','659','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12087','659','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12088','659','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12089','659','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12090','659','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12091','659','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12092','659','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12093','659','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12094','659','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12095','659','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12096','659','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12097','659','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12098','659','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12099','659','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12100','659','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12101','659','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12102','659','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12103','659','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12104','659','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12105','659','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12106','659','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12107','659','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12108','659','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12109','659','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12110','659','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12111','659','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12112','659','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12113','659','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12114','659','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12115','659','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12116','659','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12117','659','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12118','659','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12119','659','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12120','659','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12121','659','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12122','659','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12123','659','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12124','659','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12125','659','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12126','659','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12127','659','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12128','659','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12129','659','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12130','659','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12131','659','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12132','659','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12133','659','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12134','659','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12135','659','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12136','659','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12137','659','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12138','659','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12139','659','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12140','659','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12141','659','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12142','659','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12143','659','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12144','659','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12145','659','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12146','659','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12147','659','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12148','659','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12149','659','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12150','659','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12151','659','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12152','659','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12153','659','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12154','659','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12155','659','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12156','659','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12157','659','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12158','659','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12159','659','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12160','659','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12161','659','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12162','659','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12163','659','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12164','659','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12165','659','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12166','659','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12167','659','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12168','659','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12169','659','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12170','659','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12171','659','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12172','659','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12173','659','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12174','659','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12175','659','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12176','659','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12177','659','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12178','659','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12179','659','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12180','659','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12181','659','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12182','659','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12183','659','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12184','659','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12185','659','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12186','659','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12187','659','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12188','659','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12189','659','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12190','659','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12191','659','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12192','659','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12193','659','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12194','659','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12195','659','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12196','659','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12197','659','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12198','659','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12199','659','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12200','659','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12201','659','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12202','659','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12203','659','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12204','659','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12205','659','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12206','659','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12207','659','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12208','659','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12209','659','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12210','659','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12211','659','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12212','659','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12213','659','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12214','659','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12215','659','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12216','659','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12217','659','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12218','659','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12219','659','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12220','659','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12221','659','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12222','659','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12223','659','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12224','659','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12225','659','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12226','659','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12227','659','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12228','659','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12229','659','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12230','659','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12231','659','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12232','659','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12233','659','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12234','659','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12235','659','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12236','659','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12237','659','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12238','659','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12239','659','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12240','659','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12241','659','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12242','659','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12243','659','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12244','659','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12245','659','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12246','659','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12247','659','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12248','659','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12249','659','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12250','659','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12251','659','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12252','659','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12253','659','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12254','659','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12255','659','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12256','659','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12257','659','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12258','659','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12259','660','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12260','660','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12261','661','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12262','661','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12263','661','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12264','662','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12265','662','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12266','662','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12267','662','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12268','662','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12269','662','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12270','663','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12271','663','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12272','663','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12273','663','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12274','663','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12275','663','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12276','663','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12277','663','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12278','663','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12279','663','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12280','663','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12281','663','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12282','663','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12283','663','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12284','663','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12285','663','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12286','663','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12287','663','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12288','663','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12289','663','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12290','663','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12291','663','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12292','663','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12293','663','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12294','663','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12295','663','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12296','663','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12297','663','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12298','663','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12299','663','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12300','663','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12301','663','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12302','663','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12303','663','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12304','663','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12305','663','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12306','663','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12307','663','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12308','663','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12309','663','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12310','663','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12311','663','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12312','663','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12313','663','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12314','663','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12315','663','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12316','663','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12317','663','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12318','663','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12319','663','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12320','663','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12321','663','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12322','663','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12323','663','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12324','663','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12325','663','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12326','663','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12327','663','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12328','663','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12329','663','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12330','663','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12331','663','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12332','663','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12333','663','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12334','663','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12335','663','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12336','663','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12337','663','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12338','663','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12339','663','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12340','663','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12341','663','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12342','663','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12343','663','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12344','663','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12345','663','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12346','663','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12347','663','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12348','663','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12349','663','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12350','663','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12351','663','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12352','663','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12353','663','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12354','663','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12355','663','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12356','663','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12357','663','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12358','663','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12359','663','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12360','663','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12361','663','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12362','663','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12363','663','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12364','663','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12365','663','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12366','663','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12367','663','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12368','663','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12369','663','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12370','663','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12371','663','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12372','663','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12373','663','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12374','663','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12375','663','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12376','663','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12377','663','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12378','663','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12379','663','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12380','663','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12381','663','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12382','663','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12383','663','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12384','663','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12385','663','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12386','663','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12387','663','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12388','663','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12389','663','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12390','663','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12391','663','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12392','663','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12393','663','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12394','663','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12395','663','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12396','663','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12397','663','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12398','663','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12399','663','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12400','663','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12401','663','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12402','663','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12403','663','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12404','663','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12405','663','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12406','663','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12407','663','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12408','663','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12409','663','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12410','663','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12411','663','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12412','663','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12413','663','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12414','663','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12415','663','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12416','663','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12417','663','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12418','663','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12419','663','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12420','663','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12421','663','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12422','663','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12423','663','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12424','663','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12425','663','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12426','663','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12427','663','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12428','663','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12429','663','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12430','663','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12431','663','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12432','663','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12433','663','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12434','663','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12435','663','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12436','663','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12437','663','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12438','663','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12439','663','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12440','663','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12441','663','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12442','663','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12443','663','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12444','663','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12445','663','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12446','663','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12447','663','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12448','663','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12449','663','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12450','663','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12451','663','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12452','663','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12453','663','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12454','663','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12455','663','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12456','663','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12457','663','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12458','663','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12459','663','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12460','663','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12461','663','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12462','663','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12463','663','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12464','663','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12465','663','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12466','663','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12467','663','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12468','663','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12469','663','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12470','663','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12471','663','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12472','663','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12473','663','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12474','663','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12475','663','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12476','663','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12477','663','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12478','663','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12479','663','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12480','663','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12481','663','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12482','663','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12483','663','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12484','663','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12485','663','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12486','663','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12487','663','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12488','663','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12489','663','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12490','663','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12491','663','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12492','663','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12493','663','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12494','663','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12495','663','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12496','663','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12497','663','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12498','663','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12499','663','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12500','663','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12501','663','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12502','663','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12503','663','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12504','663','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12505','663','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12506','663','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12507','663','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12508','663','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12509','663','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12510','663','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12511','663','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12512','663','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12513','663','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12514','663','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12515','663','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12516','663','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12517','663','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12518','663','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12519','663','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12520','663','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12521','663','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12522','663','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12523','663','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12524','663','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12525','663','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12526','663','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12527','663','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12528','663','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12529','663','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12530','663','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12531','663','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12532','663','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12533','663','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12534','663','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12535','663','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12536','663','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12537','663','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12538','663','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12539','663','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12540','663','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12541','663','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12542','663','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12543','663','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12544','663','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12545','663','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12546','663','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12547','663','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12548','663','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12549','663','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12550','663','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12551','663','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12552','663','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12553','663','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12554','663','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12555','663','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12556','664','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12557','664','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12558','665','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12559','665','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12560','665','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12561','666','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12562','666','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12563','666','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12564','666','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12565','666','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12566','666','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12567','667','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12568','667','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12569','667','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12570','667','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12571','667','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12572','667','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12573','667','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12574','667','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12575','667','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12576','667','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12577','667','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12578','667','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12579','667','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12580','667','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12581','667','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12582','667','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12583','667','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12584','667','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12585','667','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12586','667','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12587','667','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12588','667','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12589','667','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12590','667','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12591','667','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12592','667','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12593','667','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12594','667','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12595','667','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12596','667','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12597','667','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12598','667','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12599','667','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12600','667','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12601','667','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12602','667','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12603','667','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12604','667','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12605','667','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12606','667','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12607','667','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12608','667','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12609','667','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12610','667','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12611','667','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12612','667','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12613','667','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12614','667','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12615','667','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12616','667','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12617','667','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12618','667','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12619','667','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12620','667','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12621','667','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12622','667','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12623','667','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12624','667','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12625','667','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12626','667','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12627','667','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12628','667','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12629','667','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12630','667','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12631','667','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12632','667','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12633','667','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12634','667','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12635','667','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12636','667','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12637','667','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12638','667','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12639','667','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12640','667','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12641','667','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12642','667','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12643','667','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12644','667','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12645','667','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12646','667','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12647','667','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12648','667','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12649','667','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12650','667','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12651','667','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12652','667','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12653','667','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12654','667','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12655','667','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12656','667','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12657','667','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12658','667','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12659','667','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12660','667','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12661','667','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12662','667','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12663','667','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12664','667','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12665','667','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12666','667','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12667','667','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12668','667','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12669','667','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12670','667','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12671','667','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12672','667','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12673','667','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12674','667','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12675','667','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12676','667','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12677','667','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12678','667','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12679','667','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12680','667','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12681','667','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12682','667','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12683','667','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12684','667','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12685','667','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12686','667','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12687','667','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12688','667','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12689','667','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12690','667','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12691','667','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12692','667','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12693','667','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12694','667','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12695','667','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12696','667','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12697','667','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12698','667','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12699','667','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12700','667','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12701','667','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12702','667','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12703','667','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12704','667','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12705','667','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12706','667','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12707','667','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12708','667','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12709','667','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12710','667','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12711','667','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12712','667','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12713','667','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12714','667','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12715','667','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12716','667','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12717','667','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12718','667','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12719','667','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12720','667','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12721','667','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12722','667','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12723','667','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12724','667','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12725','667','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12726','667','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12727','667','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12728','667','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12729','667','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12730','667','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12731','667','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12732','667','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12733','667','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12734','667','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12735','667','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12736','667','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12737','667','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12738','667','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12739','667','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12740','667','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12741','667','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12742','667','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12743','667','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12744','667','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12745','667','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12746','667','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12747','667','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12748','667','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12749','667','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12750','667','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12751','667','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12752','667','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12753','667','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12754','667','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12755','667','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12756','667','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12757','667','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12758','667','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12759','667','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12760','667','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12761','667','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12762','667','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12763','667','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12764','667','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12765','667','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12766','667','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12767','667','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12768','667','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12769','667','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12770','667','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12771','667','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12772','667','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12773','667','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12774','667','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12775','667','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12776','667','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12777','667','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12778','667','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12779','667','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12780','667','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12781','667','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12782','667','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12783','667','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12784','667','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12785','667','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12786','667','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12787','667','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12788','667','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12789','667','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12790','667','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12791','667','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12792','667','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12793','667','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12794','667','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12795','667','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12796','667','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12797','667','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12798','667','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12799','667','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12800','667','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12801','667','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12802','667','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12803','667','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12804','667','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12805','667','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12806','667','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12807','667','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12808','667','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12809','667','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12810','667','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12811','667','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12812','667','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12813','667','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12814','667','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12815','667','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12816','667','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12817','667','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12818','667','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12819','667','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12820','667','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12821','667','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12822','667','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12823','667','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12824','667','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12825','667','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12826','667','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12827','667','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12828','667','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12829','667','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12830','667','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12831','667','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12832','667','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12833','667','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12834','667','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12835','667','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12836','667','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12837','667','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12838','667','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12839','667','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12840','667','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12841','667','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12842','667','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12843','667','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12844','667','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12845','667','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12846','667','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12847','667','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12848','667','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12849','667','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12850','667','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12851','667','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12852','667','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12853','668','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12854','668','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12855','669','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12856','669','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12857','669','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12858','670','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12859','670','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12860','670','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12861','670','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12862','670','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12863','670','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12864','671','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12865','671','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12866','671','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12867','671','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12868','671','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12869','671','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12870','671','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12871','671','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12872','671','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12873','671','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12874','671','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12875','671','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12876','671','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12877','671','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12878','671','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12879','671','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12880','671','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12881','671','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12882','671','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12883','671','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12884','671','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12885','671','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12886','671','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12887','671','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12888','671','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12889','671','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12890','671','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12891','671','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12892','671','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12893','671','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12894','671','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12895','671','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12896','671','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12897','671','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12898','671','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12899','671','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12900','671','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12901','671','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12902','671','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12903','671','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12904','671','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12905','671','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12906','671','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12907','671','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12908','671','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12909','671','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12910','671','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12911','671','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12912','671','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12913','671','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12914','671','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12915','671','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12916','671','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12917','671','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12918','671','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12919','671','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12920','671','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12921','671','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12922','671','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12923','671','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12924','671','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12925','671','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12926','671','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12927','671','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12928','671','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12929','671','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12930','671','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12931','671','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12932','671','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12933','671','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12934','671','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12935','671','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12936','671','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12937','671','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12938','671','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12939','671','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12940','671','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12941','671','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12942','671','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12943','671','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12944','671','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12945','671','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12946','671','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12947','671','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12948','671','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12949','671','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12950','671','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12951','671','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12952','671','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12953','671','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12954','671','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12955','671','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12956','671','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12957','671','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12958','671','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12959','671','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12960','671','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12961','671','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12962','671','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12963','671','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12964','671','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12965','671','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12966','671','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12967','671','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12968','671','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12969','671','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12970','671','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12971','671','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12972','671','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12973','671','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12974','671','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12975','671','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12976','671','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12977','671','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12978','671','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12979','671','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12980','671','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12981','671','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12982','671','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12983','671','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12984','671','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12985','671','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12986','671','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12987','671','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12988','671','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12989','671','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12990','671','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12991','671','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12992','671','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12993','671','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12994','671','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12995','671','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12996','671','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12997','671','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12998','671','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('12999','671','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13000','671','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13001','671','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13002','671','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13003','671','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13004','671','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13005','671','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13006','671','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13007','671','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13008','671','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13009','671','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13010','671','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13011','671','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13012','671','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13013','671','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13014','671','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13015','671','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13016','671','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13017','671','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13018','671','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13019','671','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13020','671','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13021','671','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13022','671','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13023','671','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13024','671','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13025','671','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13026','671','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13027','671','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13028','671','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13029','671','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13030','671','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13031','671','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13032','671','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13033','671','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13034','671','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13035','671','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13036','671','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13037','671','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13038','671','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13039','671','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13040','671','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13041','671','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13042','671','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13043','671','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13044','671','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13045','671','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13046','671','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13047','671','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13048','671','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13049','671','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13050','671','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13051','671','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13052','671','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13053','671','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13054','671','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13055','671','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13056','671','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13057','671','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13058','671','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13059','671','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13060','671','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13061','671','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13062','671','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13063','671','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13064','671','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13065','671','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13066','671','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13067','671','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13068','671','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13069','671','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13070','671','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13071','671','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13072','671','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13073','671','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13074','671','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13075','671','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13076','671','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13077','671','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13078','671','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13079','671','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13080','671','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13081','671','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13082','671','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13083','671','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13084','671','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13085','671','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13086','671','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13087','671','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13088','671','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13089','671','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13090','671','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13091','671','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13092','671','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13093','671','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13094','671','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13095','671','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13096','671','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13097','671','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13098','671','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13099','671','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13100','671','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13101','671','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13102','671','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13103','671','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13104','671','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13105','671','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13106','671','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13107','671','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13108','671','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13109','671','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13110','671','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13111','671','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13112','671','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13113','671','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13114','671','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13115','671','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13116','671','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13117','671','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13118','671','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13119','671','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13120','671','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13121','671','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13122','671','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13123','671','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13124','671','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13125','671','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13126','671','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13127','671','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13128','671','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13129','671','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13130','671','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13131','671','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13132','671','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13133','671','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13134','671','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13135','671','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13136','671','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13137','671','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13138','671','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13139','671','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13140','671','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13141','671','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13142','671','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13143','671','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13144','671','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13145','671','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13146','671','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13147','671','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13148','671','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13149','671','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13150','672','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13151','672','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13152','673','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13153','673','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13154','673','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13155','674','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13156','674','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13157','674','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13158','674','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13159','674','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13160','674','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13161','675','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13162','675','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13163','675','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13164','675','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13165','675','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13166','675','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13167','675','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13168','675','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13169','675','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13170','675','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13171','675','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13172','675','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13173','675','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13174','675','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13175','675','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13176','675','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13177','675','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13178','675','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13179','675','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13180','675','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13181','675','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13182','675','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13183','675','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13184','675','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13185','675','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13186','675','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13187','675','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13188','675','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13189','675','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13190','675','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13191','675','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13192','675','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13193','675','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13194','675','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13195','675','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13196','675','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13197','675','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13198','675','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13199','675','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13200','675','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13201','675','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13202','675','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13203','675','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13204','675','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13205','675','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13206','675','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13207','675','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13208','675','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13209','675','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13210','675','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13211','675','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13212','675','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13213','675','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13214','675','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13215','675','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13216','675','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13217','675','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13218','675','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13219','675','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13220','675','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13221','675','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13222','675','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13223','675','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13224','675','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13225','675','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13226','675','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13227','675','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13228','675','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13229','675','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13230','675','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13231','675','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13232','675','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13233','675','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13234','675','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13235','675','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13236','675','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13237','675','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13238','675','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13239','675','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13240','675','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13241','675','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13242','675','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13243','675','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13244','675','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13245','675','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13246','675','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13247','675','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13248','675','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13249','675','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13250','675','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13251','675','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13252','675','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13253','675','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13254','675','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13255','675','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13256','675','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13257','675','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13258','675','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13259','675','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13260','675','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13261','675','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13262','675','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13263','675','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13264','675','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13265','675','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13266','675','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13267','675','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13268','675','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13269','675','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13270','675','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13271','675','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13272','675','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13273','675','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13274','675','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13275','675','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13276','675','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13277','675','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13278','675','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13279','675','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13280','675','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13281','675','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13282','675','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13283','675','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13284','675','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13285','675','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13286','675','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13287','675','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13288','675','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13289','675','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13290','675','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13291','675','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13292','675','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13293','675','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13294','675','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13295','675','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13296','675','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13297','675','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13298','675','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13299','675','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13300','675','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13301','675','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13302','675','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13303','675','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13304','675','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13305','675','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13306','675','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13307','675','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13308','675','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13309','675','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13310','675','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13311','675','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13312','675','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13313','675','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13314','675','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13315','675','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13316','675','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13317','675','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13318','675','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13319','675','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13320','675','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13321','675','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13322','675','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13323','675','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13324','675','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13325','675','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13326','675','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13327','675','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13328','675','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13329','675','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13330','675','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13331','675','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13332','675','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13333','675','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13334','675','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13335','675','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13336','675','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13337','675','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13338','675','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13339','675','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13340','675','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13341','675','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13342','675','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13343','675','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13344','675','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13345','675','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13346','675','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13347','675','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13348','675','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13349','675','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13350','675','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13351','675','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13352','675','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13353','675','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13354','675','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13355','675','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13356','675','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13357','675','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13358','675','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13359','675','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13360','675','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13361','675','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13362','675','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13363','675','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13364','675','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13365','675','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13366','675','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13367','675','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13368','675','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13369','675','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13370','675','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13371','675','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13372','675','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13373','675','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13374','675','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13375','675','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13376','675','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13377','675','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13378','675','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13379','675','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13380','675','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13381','675','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13382','675','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13383','675','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13384','675','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13385','675','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13386','675','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13387','675','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13388','675','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13389','675','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13390','675','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13391','675','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13392','675','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13393','675','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13394','675','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13395','675','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13396','675','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13397','675','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13398','675','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13399','675','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13400','675','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13401','675','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13402','675','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13403','675','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13404','675','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13405','675','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13406','675','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13407','675','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13408','675','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13409','675','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13410','675','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13411','675','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13412','675','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13413','675','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13414','675','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13415','675','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13416','675','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13417','675','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13418','675','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13419','675','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13420','675','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13421','675','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13422','675','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13423','675','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13424','675','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13425','675','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13426','675','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13427','675','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13428','675','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13429','675','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13430','675','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13431','675','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13432','675','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13433','675','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13434','675','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13435','675','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13436','675','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13437','675','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13438','675','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13439','675','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13440','675','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13441','675','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13442','675','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13443','675','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13444','675','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13445','675','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13446','675','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13447','676','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13448','676','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13449','677','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13450','677','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13451','677','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13452','678','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13453','678','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13454','678','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13455','678','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13456','678','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13457','678','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13458','679','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13459','679','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13460','679','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13461','679','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13462','679','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13463','679','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13464','679','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13465','679','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13466','679','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13467','679','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13468','679','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13469','679','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13470','679','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13471','679','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13472','679','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13473','679','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13474','679','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13475','679','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13476','679','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13477','679','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13478','679','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13479','679','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13480','679','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13481','679','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13482','679','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13483','679','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13484','679','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13485','679','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13486','679','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13487','679','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13488','679','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13489','679','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13490','679','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13491','679','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13492','679','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13493','679','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13494','679','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13495','679','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13496','679','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13497','679','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13498','679','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13499','679','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13500','679','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13501','679','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13502','679','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13503','679','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13504','679','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13505','679','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13506','679','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13507','679','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13508','679','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13509','679','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13510','679','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13511','679','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13512','679','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13513','679','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13514','679','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13515','679','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13516','679','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13517','679','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13518','679','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13519','679','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13520','679','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13521','679','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13522','679','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13523','679','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13524','679','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13525','679','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13526','679','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13527','679','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13528','679','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13529','679','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13530','679','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13531','679','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13532','679','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13533','679','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13534','679','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13535','679','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13536','679','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13537','679','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13538','679','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13539','679','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13540','679','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13541','679','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13542','679','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13543','679','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13544','679','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13545','679','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13546','679','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13547','679','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13548','679','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13549','679','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13550','679','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13551','679','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13552','679','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13553','679','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13554','679','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13555','679','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13556','679','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13557','679','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13558','679','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13559','679','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13560','679','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13561','679','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13562','679','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13563','679','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13564','679','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13565','679','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13566','679','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13567','679','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13568','679','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13569','679','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13570','679','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13571','679','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13572','679','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13573','679','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13574','679','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13575','679','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13576','679','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13577','679','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13578','679','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13579','679','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13580','679','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13581','679','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13582','679','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13583','679','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13584','679','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13585','679','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13586','679','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13587','679','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13588','679','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13589','679','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13590','679','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13591','679','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13592','679','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13593','679','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13594','679','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13595','679','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13596','679','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13597','679','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13598','679','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13599','679','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13600','679','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13601','679','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13602','679','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13603','679','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13604','679','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13605','679','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13606','679','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13607','679','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13608','679','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13609','679','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13610','679','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13611','679','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13612','679','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13613','679','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13614','679','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13615','679','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13616','679','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13617','679','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13618','679','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13619','679','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13620','679','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13621','679','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13622','679','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13623','679','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13624','679','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13625','679','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13626','679','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13627','679','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13628','679','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13629','679','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13630','679','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13631','679','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13632','679','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13633','679','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13634','679','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13635','679','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13636','679','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13637','679','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13638','679','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13639','679','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13640','679','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13641','679','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13642','679','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13643','679','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13644','679','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13645','679','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13646','679','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13647','679','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13648','679','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13649','679','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13650','679','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13651','679','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13652','679','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13653','679','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13654','679','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13655','679','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13656','679','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13657','679','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13658','679','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13659','679','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13660','679','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13661','679','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13662','679','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13663','679','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13664','679','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13665','679','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13666','679','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13667','679','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13668','679','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13669','679','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13670','679','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13671','679','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13672','679','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13673','679','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13674','679','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13675','679','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13676','679','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13677','679','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13678','679','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13679','679','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13680','679','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13681','679','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13682','679','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13683','679','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13684','679','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13685','679','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13686','679','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13687','679','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13688','679','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13689','679','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13690','679','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13691','679','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13692','679','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13693','679','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13694','679','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13695','679','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13696','679','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13697','679','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13698','679','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13699','679','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13700','679','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13701','679','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13702','679','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13703','679','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13704','679','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13705','679','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13706','679','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13707','679','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13708','679','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13709','679','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13710','679','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13711','679','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13712','679','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13713','679','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13714','679','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13715','679','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13716','679','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13717','679','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13718','679','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13719','679','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13720','679','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13721','679','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13722','679','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13723','679','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13724','679','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13725','679','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13726','679','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13727','679','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13728','679','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13729','679','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13730','679','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13731','679','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13732','679','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13733','679','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13734','679','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13735','679','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13736','679','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13737','679','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13738','679','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13739','679','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13740','679','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13741','679','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13742','679','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13743','679','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13744','680','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13745','680','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13746','681','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13747','681','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13748','681','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13749','682','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13750','682','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13751','682','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13752','682','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13753','682','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13754','682','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13755','683','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13756','683','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13757','683','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13758','683','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13759','683','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13760','683','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13761','683','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13762','683','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13763','683','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13764','683','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13765','683','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13766','683','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13767','683','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13768','683','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13769','683','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13770','683','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13771','683','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13772','683','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13773','683','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13774','683','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13775','683','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13776','683','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13777','683','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13778','683','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13779','683','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13780','683','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13781','683','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13782','683','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13783','683','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13784','683','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13785','683','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13786','683','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13787','683','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13788','683','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13789','683','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13790','683','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13791','683','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13792','683','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13793','683','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13794','683','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13795','683','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13796','683','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13797','683','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13798','683','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13799','683','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13800','683','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13801','683','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13802','683','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13803','683','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13804','683','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13805','683','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13806','683','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13807','683','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13808','683','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13809','683','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13810','683','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13811','683','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13812','683','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13813','683','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13814','683','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13815','683','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13816','683','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13817','683','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13818','683','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13819','683','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13820','683','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13821','683','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13822','683','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13823','683','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13824','683','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13825','683','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13826','683','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13827','683','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13828','683','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13829','683','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13830','683','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13831','683','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13832','683','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13833','683','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13834','683','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13835','683','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13836','683','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13837','683','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13838','683','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13839','683','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13840','683','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13841','683','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13842','683','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13843','683','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13844','683','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13845','683','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13846','683','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13847','683','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13848','683','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13849','683','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13850','683','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13851','683','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13852','683','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13853','683','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13854','683','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13855','683','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13856','683','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13857','683','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13858','683','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13859','683','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13860','683','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13861','683','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13862','683','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13863','683','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13864','683','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13865','683','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13866','683','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13867','683','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13868','683','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13869','683','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13870','683','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13871','683','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13872','683','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13873','683','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13874','683','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13875','683','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13876','683','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13877','683','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13878','683','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13879','683','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13880','683','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13881','683','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13882','683','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13883','683','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13884','683','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13885','683','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13886','683','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13887','683','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13888','683','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13889','683','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13890','683','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13891','683','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13892','683','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13893','683','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13894','683','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13895','683','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13896','683','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13897','683','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13898','683','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13899','683','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13900','683','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13901','683','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13902','683','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13903','683','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13904','683','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13905','683','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13906','683','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13907','683','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13908','683','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13909','683','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13910','683','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13911','683','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13912','683','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13913','683','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13914','683','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13915','683','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13916','683','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13917','683','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13918','683','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13919','683','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13920','683','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13921','683','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13922','683','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13923','683','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13924','683','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13925','683','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13926','683','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13927','683','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13928','683','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13929','683','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13930','683','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13931','683','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13932','683','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13933','683','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13934','683','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13935','683','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13936','683','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13937','683','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13938','683','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13939','683','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13940','683','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13941','683','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13942','683','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13943','683','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13944','683','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13945','683','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13946','683','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13947','683','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13948','683','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13949','683','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13950','683','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13951','683','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13952','683','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13953','683','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13954','683','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13955','683','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13956','683','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13957','683','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13958','683','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13959','683','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13960','683','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13961','683','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13962','683','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13963','683','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13964','683','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13965','683','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13966','683','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13967','683','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13968','683','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13969','683','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13970','683','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13971','683','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13972','683','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13973','683','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13974','683','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13975','683','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13976','683','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13977','683','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13978','683','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13979','683','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13980','683','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13981','683','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13982','683','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13983','683','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13984','683','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13985','683','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13986','683','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13987','683','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13988','683','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13989','683','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13990','683','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13991','683','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13992','683','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13993','683','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13994','683','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13995','683','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13996','683','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13997','683','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13998','683','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('13999','683','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14000','683','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14001','683','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14002','683','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14003','683','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14004','683','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14005','683','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14006','683','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14007','683','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14008','683','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14009','683','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14010','683','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14011','683','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14012','683','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14013','683','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14014','683','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14015','683','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14016','683','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14017','683','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14018','683','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14019','683','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14020','683','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14021','683','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14022','683','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14023','683','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14024','683','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14025','683','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14026','683','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14027','683','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14028','683','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14029','683','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14030','683','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14031','683','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14032','683','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14033','683','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14034','683','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14035','683','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14036','683','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14037','683','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14038','683','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14039','683','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14040','683','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14041','684','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14042','684','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14043','685','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14044','685','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14045','685','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14046','686','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14047','686','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14048','686','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14049','686','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14050','686','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14051','686','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14052','687','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14053','687','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14054','687','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14055','687','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14056','687','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14057','687','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14058','687','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14059','687','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14060','687','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14061','687','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14062','687','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14063','687','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14064','687','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14065','687','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14066','687','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14067','687','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14068','687','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14069','687','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14070','687','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14071','687','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14072','687','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14073','687','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14074','687','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14075','687','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14076','687','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14077','687','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14078','687','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14079','687','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14080','687','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14081','687','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14082','687','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14083','687','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14084','687','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14085','687','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14086','687','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14087','687','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14088','687','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14089','687','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14090','687','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14091','687','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14092','687','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14093','687','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14094','687','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14095','687','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14096','687','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14097','687','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14098','687','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14099','687','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14100','687','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14101','687','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14102','687','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14103','687','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14104','687','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14105','687','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14106','687','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14107','687','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14108','687','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14109','687','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14110','687','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14111','687','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14112','687','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14113','687','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14114','687','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14115','687','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14116','687','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14117','687','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14118','687','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14119','687','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14120','687','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14121','687','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14122','687','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14123','687','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14124','687','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14125','687','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14126','687','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14127','687','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14128','687','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14129','687','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14130','687','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14131','687','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14132','687','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14133','687','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14134','687','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14135','687','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14136','687','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14137','687','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14138','687','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14139','687','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14140','687','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14141','687','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14142','687','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14143','687','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14144','687','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14145','687','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14146','687','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14147','687','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14148','687','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14149','687','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14150','687','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14151','687','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14152','687','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14153','687','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14154','687','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14155','687','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14156','687','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14157','687','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14158','687','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14159','687','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14160','687','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14161','687','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14162','687','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14163','687','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14164','687','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14165','687','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14166','687','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14167','687','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14168','687','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14169','687','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14170','687','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14171','687','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14172','687','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14173','687','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14174','687','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14175','687','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14176','687','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14177','687','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14178','687','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14179','687','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14180','687','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14181','687','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14182','687','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14183','687','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14184','687','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14185','687','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14186','687','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14187','687','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14188','687','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14189','687','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14190','687','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14191','687','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14192','687','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14193','687','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14194','687','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14195','687','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14196','687','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14197','687','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14198','687','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14199','687','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14200','687','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14201','687','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14202','687','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14203','687','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14204','687','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14205','687','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14206','687','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14207','687','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14208','687','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14209','687','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14210','687','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14211','687','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14212','687','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14213','687','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14214','687','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14215','687','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14216','687','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14217','687','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14218','687','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14219','687','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14220','687','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14221','687','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14222','687','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14223','687','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14224','687','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14225','687','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14226','687','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14227','687','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14228','687','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14229','687','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14230','687','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14231','687','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14232','687','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14233','687','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14234','687','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14235','687','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14236','687','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14237','687','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14238','687','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14239','687','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14240','687','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14241','687','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14242','687','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14243','687','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14244','687','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14245','687','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14246','687','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14247','687','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14248','687','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14249','687','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14250','687','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14251','687','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14252','687','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14253','687','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14254','687','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14255','687','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14256','687','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14257','687','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14258','687','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14259','687','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14260','687','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14261','687','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14262','687','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14263','687','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14264','687','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14265','687','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14266','687','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14267','687','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14268','687','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14269','687','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14270','687','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14271','687','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14272','687','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14273','687','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14274','687','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14275','687','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14276','687','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14277','687','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14278','687','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14279','687','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14280','687','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14281','687','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14282','687','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14283','687','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14284','687','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14285','687','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14286','687','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14287','687','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14288','687','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14289','687','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14290','687','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14291','687','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14292','687','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14293','687','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14294','687','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14295','687','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14296','687','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14297','687','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14298','687','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14299','687','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14300','687','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14301','687','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14302','687','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14303','687','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14304','687','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14305','687','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14306','687','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14307','687','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14308','687','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14309','687','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14310','687','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14311','687','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14312','687','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14313','687','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14314','687','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14315','687','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14316','687','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14317','687','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14318','687','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14319','687','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14320','687','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14321','687','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14322','687','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14323','687','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14324','687','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14325','687','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14326','687','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14327','687','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14328','687','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14329','687','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14330','687','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14331','687','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14332','687','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14333','687','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14334','687','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14335','687','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14336','687','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14337','687','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14338','688','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14339','688','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14340','689','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14341','689','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14342','689','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14343','690','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14344','690','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14345','690','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14346','690','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14347','690','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14348','690','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14349','691','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14350','691','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14351','691','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14352','691','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14353','691','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14354','691','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14355','691','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14356','691','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14357','691','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14358','691','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14359','691','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14360','691','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14361','691','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14362','691','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14363','691','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14364','691','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14365','691','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14366','691','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14367','691','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14368','691','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14369','691','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14370','691','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14371','691','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14372','691','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14373','691','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14374','691','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14375','691','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14376','691','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14377','691','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14378','691','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14379','691','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14380','691','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14381','691','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14382','691','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14383','691','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14384','691','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14385','691','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14386','691','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14387','691','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14388','691','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14389','691','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14390','691','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14391','691','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14392','691','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14393','691','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14394','691','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14395','691','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14396','691','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14397','691','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14398','691','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14399','691','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14400','691','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14401','691','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14402','691','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14403','691','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14404','691','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14405','691','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14406','691','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14407','691','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14408','691','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14409','691','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14410','691','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14411','691','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14412','691','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14413','691','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14414','691','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14415','691','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14416','691','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14417','691','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14418','691','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14419','691','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14420','691','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14421','691','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14422','691','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14423','691','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14424','691','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14425','691','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14426','691','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14427','691','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14428','691','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14429','691','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14430','691','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14431','691','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14432','691','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14433','691','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14434','691','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14435','691','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14436','691','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14437','691','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14438','691','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14439','691','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14440','691','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14441','691','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14442','691','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14443','691','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14444','691','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14445','691','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14446','691','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14447','691','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14448','691','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14449','691','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14450','691','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14451','691','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14452','691','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14453','691','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14454','691','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14455','691','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14456','691','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14457','691','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14458','691','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14459','691','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14460','691','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14461','691','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14462','691','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14463','691','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14464','691','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14465','691','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14466','691','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14467','691','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14468','691','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14469','691','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14470','691','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14471','691','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14472','691','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14473','691','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14474','691','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14475','691','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14476','691','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14477','691','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14478','691','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14479','691','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14480','691','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14481','691','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14482','691','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14483','691','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14484','691','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14485','691','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14486','691','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14487','691','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14488','691','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14489','691','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14490','691','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14491','691','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14492','691','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14493','691','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14494','691','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14495','691','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14496','691','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14497','691','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14498','691','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14499','691','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14500','691','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14501','691','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14502','691','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14503','691','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14504','691','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14505','691','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14506','691','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14507','691','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14508','691','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14509','691','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14510','691','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14511','691','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14512','691','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14513','691','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14514','691','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14515','691','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14516','691','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14517','691','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14518','691','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14519','691','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14520','691','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14521','691','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14522','691','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14523','691','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14524','691','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14525','691','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14526','691','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14527','691','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14528','691','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14529','691','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14530','691','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14531','691','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14532','691','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14533','691','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14534','691','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14535','691','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14536','691','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14537','691','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14538','691','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14539','691','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14540','691','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14541','691','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14542','691','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14543','691','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14544','691','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14545','691','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14546','691','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14547','691','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14548','691','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14549','691','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14550','691','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14551','691','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14552','691','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14553','691','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14554','691','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14555','691','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14556','691','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14557','691','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14558','691','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14559','691','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14560','691','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14561','691','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14562','691','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14563','691','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14564','691','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14565','691','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14566','691','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14567','691','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14568','691','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14569','691','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14570','691','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14571','691','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14572','691','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14573','691','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14574','691','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14575','691','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14576','691','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14577','691','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14578','691','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14579','691','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14580','691','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14581','691','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14582','691','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14583','691','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14584','691','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14585','691','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14586','691','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14587','691','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14588','691','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14589','691','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14590','691','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14591','691','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14592','691','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14593','691','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14594','691','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14595','691','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14596','691','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14597','691','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14598','691','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14599','691','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14600','691','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14601','691','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14602','691','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14603','691','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14604','691','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14605','691','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14606','691','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14607','691','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14608','691','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14609','691','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14610','691','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14611','691','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14612','691','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14613','691','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14614','691','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14615','691','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14616','691','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14617','691','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14618','691','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14619','691','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14620','691','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14621','691','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14622','691','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14623','691','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14624','691','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14625','691','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14626','691','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14627','691','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14628','691','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14629','691','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14630','691','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14631','691','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14632','691','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14633','691','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14634','691','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14635','692','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14636','692','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14637','693','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14638','693','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14639','693','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14640','694','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14641','694','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14642','694','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14643','694','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14644','694','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14645','694','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14646','695','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14647','695','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14648','695','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14649','695','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14650','695','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14651','695','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14652','695','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14653','695','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14654','695','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14655','695','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14656','695','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14657','695','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14658','695','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14659','695','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14660','695','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14661','695','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14662','695','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14663','695','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14664','695','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14665','695','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14666','695','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14667','695','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14668','695','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14669','695','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14670','695','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14671','695','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14672','695','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14673','695','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14674','695','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14675','695','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14676','695','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14677','695','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14678','695','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14679','695','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14680','695','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14681','695','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14682','695','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14683','695','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14684','695','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14685','695','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14686','695','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14687','695','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14688','695','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14689','695','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14690','695','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14691','695','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14692','695','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14693','695','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14694','695','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14695','695','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14696','695','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14697','695','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14698','695','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14699','695','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14700','695','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14701','695','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14702','695','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14703','695','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14704','695','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14705','695','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14706','695','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14707','695','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14708','695','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14709','695','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14710','695','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14711','695','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14712','695','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14713','695','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14714','695','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14715','695','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14716','695','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14717','695','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14718','695','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14719','695','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14720','695','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14721','695','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14722','695','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14723','695','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14724','695','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14725','695','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14726','695','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14727','695','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14728','695','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14729','695','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14730','695','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14731','695','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14732','695','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14733','695','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14734','695','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14735','695','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14736','695','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14737','695','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14738','695','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14739','695','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14740','695','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14741','695','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14742','695','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14743','695','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14744','695','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14745','695','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14746','695','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14747','695','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14748','695','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14749','695','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14750','695','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14751','695','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14752','695','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14753','695','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14754','695','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14755','695','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14756','695','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14757','695','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14758','695','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14759','695','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14760','695','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14761','695','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14762','695','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14763','695','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14764','695','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14765','695','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14766','695','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14767','695','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14768','695','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14769','695','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14770','695','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14771','695','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14772','695','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14773','695','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14774','695','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14775','695','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14776','695','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14777','695','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14778','695','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14779','695','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14780','695','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14781','695','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14782','695','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14783','695','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14784','695','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14785','695','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14786','695','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14787','695','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14788','695','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14789','695','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14790','695','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14791','695','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14792','695','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14793','695','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14794','695','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14795','695','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14796','695','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14797','695','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14798','695','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14799','695','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14800','695','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14801','695','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14802','695','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14803','695','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14804','695','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14805','695','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14806','695','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14807','695','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14808','695','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14809','695','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14810','695','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14811','695','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14812','695','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14813','695','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14814','695','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14815','695','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14816','695','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14817','695','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14818','695','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14819','695','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14820','695','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14821','695','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14822','695','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14823','695','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14824','695','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14825','695','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14826','695','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14827','695','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14828','695','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14829','695','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14830','695','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14831','695','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14832','695','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14833','695','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14834','695','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14835','695','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14836','695','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14837','695','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14838','695','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14839','695','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14840','695','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14841','695','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14842','695','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14843','695','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14844','695','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14845','695','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14846','695','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14847','695','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14848','695','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14849','695','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14850','695','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14851','695','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14852','695','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14853','695','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14854','695','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14855','695','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14856','695','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14857','695','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14858','695','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14859','695','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14860','695','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14861','695','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14862','695','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14863','695','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14864','695','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14865','695','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14866','695','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14867','695','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14868','695','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14869','695','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14870','695','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14871','695','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14872','695','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14873','695','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14874','695','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14875','695','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14876','695','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14877','695','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14878','695','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14879','695','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14880','695','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14881','695','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14882','695','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14883','695','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14884','695','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14885','695','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14886','695','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14887','695','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14888','695','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14889','695','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14890','695','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14891','695','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14892','695','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14893','695','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14894','695','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14895','695','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14896','695','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14897','695','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14898','695','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14899','695','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14900','695','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14901','695','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14902','695','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14903','695','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14904','695','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14905','695','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14906','695','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14907','695','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14908','695','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14909','695','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14910','695','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14911','695','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14912','695','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14913','695','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14914','695','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14915','695','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14916','695','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14917','695','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14918','695','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14919','695','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14920','695','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14921','695','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14922','695','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14923','695','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14924','695','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14925','695','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14926','695','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14927','695','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14928','695','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14929','695','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14930','695','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14931','695','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14932','696','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14933','696','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14934','697','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14935','697','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14936','697','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14937','698','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14938','698','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14939','698','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14940','698','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14941','698','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14942','698','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14943','699','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14944','699','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14945','699','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14946','699','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14947','699','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14948','699','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14949','699','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14950','699','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14951','699','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14952','699','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14953','699','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14954','699','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14955','699','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14956','699','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14957','699','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14958','699','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14959','699','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14960','699','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14961','699','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14962','699','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14963','699','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14964','699','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14965','699','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14966','699','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14967','699','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14968','699','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14969','699','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14970','699','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14971','699','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14972','699','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14973','699','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14974','699','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14975','699','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14976','699','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14977','699','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14978','699','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14979','699','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14980','699','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14981','699','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14982','699','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14983','699','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14984','699','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14985','699','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14986','699','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14987','699','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14988','699','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14989','699','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14990','699','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14991','699','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14992','699','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14993','699','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14994','699','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14995','699','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14996','699','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14997','699','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14998','699','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('14999','699','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15000','699','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15001','699','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15002','699','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15003','699','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15004','699','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15005','699','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15006','699','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15007','699','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15008','699','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15009','699','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15010','699','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15011','699','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15012','699','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15013','699','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15014','699','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15015','699','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15016','699','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15017','699','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15018','699','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15019','699','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15020','699','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15021','699','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15022','699','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15023','699','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15024','699','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15025','699','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15026','699','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15027','699','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15028','699','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15029','699','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15030','699','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15031','699','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15032','699','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15033','699','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15034','699','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15035','699','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15036','699','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15037','699','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15038','699','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15039','699','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15040','699','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15041','699','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15042','699','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15043','699','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15044','699','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15045','699','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15046','699','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15047','699','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15048','699','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15049','699','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15050','699','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15051','699','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15052','699','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15053','699','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15054','699','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15055','699','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15056','699','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15057','699','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15058','699','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15059','699','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15060','699','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15061','699','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15062','699','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15063','699','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15064','699','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15065','699','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15066','699','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15067','699','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15068','699','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15069','699','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15070','699','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15071','699','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15072','699','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15073','699','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15074','699','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15075','699','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15076','699','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15077','699','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15078','699','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15079','699','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15080','699','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15081','699','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15082','699','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15083','699','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15084','699','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15085','699','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15086','699','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15087','699','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15088','699','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15089','699','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15090','699','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15091','699','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15092','699','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15093','699','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15094','699','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15095','699','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15096','699','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15097','699','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15098','699','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15099','699','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15100','699','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15101','699','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15102','699','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15103','699','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15104','699','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15105','699','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15106','699','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15107','699','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15108','699','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15109','699','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15110','699','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15111','699','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15112','699','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15113','699','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15114','699','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15115','699','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15116','699','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15117','699','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15118','699','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15119','699','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15120','699','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15121','699','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15122','699','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15123','699','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15124','699','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15125','699','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15126','699','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15127','699','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15128','699','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15129','699','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15130','699','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15131','699','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15132','699','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15133','699','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15134','699','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15135','699','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15136','699','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15137','699','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15138','699','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15139','699','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15140','699','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15141','699','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15142','699','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15143','699','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15144','699','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15145','699','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15146','699','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15147','699','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15148','699','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15149','699','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15150','699','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15151','699','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15152','699','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15153','699','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15154','699','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15155','699','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15156','699','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15157','699','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15158','699','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15159','699','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15160','699','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15161','699','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15162','699','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15163','699','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15164','699','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15165','699','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15166','699','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15167','699','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15168','699','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15169','699','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15170','699','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15171','699','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15172','699','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15173','699','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15174','699','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15175','699','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15176','699','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15177','699','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15178','699','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15179','699','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15180','699','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15181','699','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15182','699','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15183','699','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15184','699','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15185','699','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15186','699','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15187','699','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15188','699','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15189','699','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15190','699','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15191','699','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15192','699','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15193','699','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15194','699','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15195','699','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15196','699','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15197','699','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15198','699','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15199','699','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15200','699','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15201','699','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15202','699','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15203','699','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15204','699','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15205','699','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15206','699','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15207','699','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15208','699','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15209','699','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15210','699','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15211','699','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15212','699','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15213','699','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15214','699','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15215','699','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15216','699','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15217','699','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15218','699','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15219','699','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15220','699','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15221','699','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15222','699','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15223','699','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15224','699','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15225','699','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15226','699','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15227','699','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15228','699','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15229','700','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15230','700','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15231','701','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15232','701','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15233','701','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15234','702','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15235','702','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15236','702','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15237','702','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15238','702','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15239','702','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15240','703','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15241','703','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15242','703','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15243','703','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15244','703','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15245','703','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15246','703','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15247','703','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15248','703','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15249','703','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15250','703','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15251','703','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15252','703','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15253','703','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15254','703','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15255','703','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15256','703','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15257','703','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15258','703','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15259','703','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15260','703','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15261','703','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15262','703','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15263','703','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15264','703','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15265','703','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15266','703','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15267','703','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15268','703','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15269','703','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15270','703','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15271','703','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15272','703','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15273','703','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15274','703','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15275','703','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15276','703','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15277','703','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15278','703','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15279','703','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15280','703','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15281','703','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15282','703','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15283','703','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15284','703','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15285','703','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15286','703','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15287','703','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15288','703','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15289','703','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15290','703','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15291','703','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15292','703','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15293','703','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15294','703','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15295','703','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15296','703','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15297','703','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15298','703','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15299','703','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15300','703','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15301','703','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15302','703','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15303','703','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15304','703','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15305','703','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15306','703','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15307','703','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15308','703','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15309','703','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15310','703','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15311','703','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15312','703','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15313','703','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15314','703','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15315','703','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15316','703','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15317','703','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15318','703','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15319','703','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15320','703','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15321','703','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15322','703','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15323','703','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15324','703','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15325','703','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15326','703','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15327','703','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15328','703','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15329','703','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15330','703','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15331','703','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15332','703','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15333','703','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15334','703','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15335','703','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15336','703','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15337','703','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15338','703','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15339','703','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15340','703','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15341','703','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15342','703','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15343','703','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15344','703','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15345','703','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15346','703','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15347','703','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15348','703','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15349','703','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15350','703','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15351','703','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15352','703','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15353','703','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15354','703','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15355','703','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15356','703','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15357','703','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15358','703','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15359','703','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15360','703','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15361','703','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15362','703','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15363','703','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15364','703','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15365','703','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15366','703','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15367','703','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15368','703','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15369','703','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15370','703','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15371','703','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15372','703','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15373','703','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15374','703','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15375','703','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15376','703','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15377','703','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15378','703','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15379','703','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15380','703','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15381','703','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15382','703','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15383','703','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15384','703','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15385','703','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15386','703','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15387','703','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15388','703','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15389','703','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15390','703','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15391','703','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15392','703','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15393','703','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15394','703','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15395','703','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15396','703','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15397','703','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15398','703','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15399','703','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15400','703','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15401','703','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15402','703','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15403','703','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15404','703','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15405','703','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15406','703','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15407','703','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15408','703','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15409','703','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15410','703','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15411','703','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15412','703','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15413','703','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15414','703','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15415','703','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15416','703','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15417','703','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15418','703','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15419','703','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15420','703','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15421','703','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15422','703','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15423','703','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15424','703','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15425','703','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15426','703','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15427','703','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15428','703','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15429','703','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15430','703','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15431','703','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15432','703','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15433','703','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15434','703','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15435','703','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15436','703','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15437','703','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15438','703','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15439','703','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15440','703','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15441','703','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15442','703','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15443','703','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15444','703','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15445','703','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15446','703','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15447','703','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15448','703','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15449','703','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15450','703','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15451','703','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15452','703','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15453','703','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15454','703','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15455','703','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15456','703','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15457','703','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15458','703','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15459','703','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15460','703','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15461','703','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15462','703','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15463','703','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15464','703','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15465','703','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15466','703','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15467','703','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15468','703','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15469','703','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15470','703','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15471','703','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15472','703','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15473','703','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15474','703','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15475','703','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15476','703','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15477','703','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15478','703','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15479','703','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15480','703','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15481','703','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15482','703','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15483','703','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15484','703','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15485','703','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15486','703','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15487','703','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15488','703','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15489','703','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15490','703','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15491','703','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15492','703','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15493','703','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15494','703','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15495','703','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15496','703','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15497','703','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15498','703','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15499','703','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15500','703','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15501','703','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15502','703','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15503','703','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15504','703','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15505','703','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15506','703','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15507','703','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15508','703','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15509','703','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15510','703','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15511','703','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15512','703','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15513','703','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15514','703','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15515','703','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15516','703','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15517','703','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15518','703','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15519','703','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15520','703','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15521','703','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15522','703','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15523','703','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15524','703','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15525','703','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15526','704','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15527','704','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15528','705','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15529','705','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15530','705','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15531','706','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15532','706','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15533','706','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15534','706','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15535','706','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15536','706','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15537','707','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15538','707','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15539','707','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15540','707','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15541','707','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15542','707','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15543','707','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15544','707','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15545','707','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15546','707','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15547','707','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15548','707','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15549','707','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15550','707','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15551','707','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15552','707','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15553','707','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15554','707','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15555','707','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15556','707','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15557','707','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15558','707','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15559','707','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15560','707','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15561','707','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15562','707','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15563','707','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15564','707','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15565','707','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15566','707','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15567','707','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15568','707','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15569','707','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15570','707','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15571','707','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15572','707','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15573','707','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15574','707','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15575','707','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15576','707','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15577','707','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15578','707','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15579','707','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15580','707','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15581','707','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15582','707','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15583','707','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15584','707','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15585','707','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15586','707','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15587','707','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15588','707','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15589','707','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15590','707','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15591','707','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15592','707','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15593','707','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15594','707','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15595','707','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15596','707','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15597','707','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15598','707','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15599','707','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15600','707','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15601','707','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15602','707','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15603','707','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15604','707','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15605','707','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15606','707','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15607','707','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15608','707','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15609','707','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15610','707','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15611','707','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15612','707','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15613','707','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15614','707','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15615','707','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15616','707','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15617','707','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15618','707','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15619','707','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15620','707','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15621','707','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15622','707','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15623','707','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15624','707','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15625','707','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15626','707','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15627','707','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15628','707','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15629','707','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15630','707','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15631','707','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15632','707','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15633','707','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15634','707','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15635','707','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15636','707','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15637','707','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15638','707','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15639','707','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15640','707','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15641','707','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15642','707','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15643','707','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15644','707','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15645','707','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15646','707','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15647','707','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15648','707','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15649','707','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15650','707','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15651','707','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15652','707','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15653','707','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15654','707','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15655','707','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15656','707','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15657','707','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15658','707','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15659','707','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15660','707','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15661','707','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15662','707','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15663','707','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15664','707','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15665','707','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15666','707','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15667','707','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15668','707','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15669','707','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15670','707','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15671','707','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15672','707','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15673','707','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15674','707','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15675','707','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15676','707','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15677','707','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15678','707','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15679','707','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15680','707','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15681','707','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15682','707','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15683','707','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15684','707','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15685','707','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15686','707','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15687','707','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15688','707','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15689','707','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15690','707','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15691','707','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15692','707','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15693','707','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15694','707','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15695','707','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15696','707','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15697','707','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15698','707','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15699','707','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15700','707','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15701','707','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15702','707','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15703','707','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15704','707','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15705','707','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15706','707','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15707','707','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15708','707','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15709','707','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15710','707','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15711','707','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15712','707','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15713','707','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15714','707','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15715','707','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15716','707','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15717','707','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15718','707','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15719','707','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15720','707','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15721','707','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15722','707','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15723','707','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15724','707','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15725','707','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15726','707','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15727','707','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15728','707','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15729','707','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15730','707','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15731','707','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15732','707','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15733','707','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15734','707','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15735','707','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15736','707','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15737','707','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15738','707','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15739','707','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15740','707','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15741','707','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15742','707','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15743','707','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15744','707','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15745','707','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15746','707','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15747','707','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15748','707','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15749','707','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15750','707','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15751','707','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15752','707','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15753','707','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15754','707','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15755','707','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15756','707','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15757','707','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15758','707','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15759','707','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15760','707','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15761','707','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15762','707','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15763','707','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15764','707','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15765','707','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15766','707','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15767','707','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15768','707','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15769','707','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15770','707','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15771','707','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15772','707','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15773','707','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15774','707','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15775','707','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15776','707','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15777','707','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15778','707','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15779','707','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15780','707','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15781','707','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15782','707','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15783','707','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15784','707','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15785','707','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15786','707','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15787','707','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15788','707','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15789','707','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15790','707','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15791','707','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15792','707','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15793','707','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15794','707','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15795','707','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15796','707','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15797','707','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15798','707','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15799','707','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15800','707','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15801','707','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15802','707','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15803','707','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15804','707','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15805','707','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15806','707','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15807','707','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15808','707','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15809','707','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15810','707','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15811','707','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15812','707','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15813','707','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15814','707','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15815','707','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15816','707','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15817','707','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15818','707','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15819','707','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15820','707','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15821','707','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15822','707','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15823','708','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15824','708','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15825','709','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15826','709','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15827','709','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15828','710','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15829','710','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15830','710','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15831','710','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15832','710','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15833','710','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15834','711','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15835','711','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15836','711','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15837','711','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15838','711','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15839','711','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15840','711','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15841','711','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15842','711','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15843','711','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15844','711','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15845','711','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15846','711','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15847','711','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15848','711','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15849','711','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15850','711','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15851','711','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15852','711','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15853','711','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15854','711','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15855','711','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15856','711','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15857','711','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15858','711','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15859','711','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15860','711','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15861','711','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15862','711','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15863','711','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15864','711','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15865','711','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15866','711','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15867','711','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15868','711','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15869','711','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15870','711','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15871','711','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15872','711','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15873','711','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15874','711','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15875','711','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15876','711','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15877','711','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15878','711','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15879','711','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15880','711','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15881','711','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15882','711','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15883','711','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15884','711','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15885','711','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15886','711','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15887','711','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15888','711','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15889','711','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15890','711','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15891','711','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15892','711','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15893','711','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15894','711','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15895','711','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15896','711','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15897','711','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15898','711','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15899','711','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15900','711','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15901','711','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15902','711','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15903','711','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15904','711','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15905','711','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15906','711','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15907','711','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15908','711','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15909','711','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15910','711','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15911','711','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15912','711','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15913','711','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15914','711','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15915','711','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15916','711','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15917','711','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15918','711','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15919','711','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15920','711','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15921','711','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15922','711','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15923','711','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15924','711','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15925','711','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15926','711','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15927','711','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15928','711','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15929','711','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15930','711','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15931','711','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15932','711','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15933','711','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15934','711','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15935','711','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15936','711','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15937','711','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15938','711','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15939','711','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15940','711','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15941','711','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15942','711','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15943','711','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15944','711','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15945','711','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15946','711','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15947','711','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15948','711','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15949','711','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15950','711','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15951','711','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15952','711','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15953','711','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15954','711','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15955','711','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15956','711','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15957','711','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15958','711','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15959','711','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15960','711','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15961','711','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15962','711','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15963','711','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15964','711','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15965','711','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15966','711','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15967','711','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15968','711','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15969','711','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15970','711','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15971','711','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15972','711','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15973','711','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15974','711','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15975','711','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15976','711','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15977','711','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15978','711','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15979','711','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15980','711','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15981','711','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15982','711','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15983','711','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15984','711','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15985','711','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15986','711','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15987','711','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15988','711','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15989','711','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15990','711','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15991','711','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15992','711','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15993','711','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15994','711','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15995','711','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15996','711','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15997','711','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15998','711','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('15999','711','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16000','711','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16001','711','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16002','711','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16003','711','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16004','711','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16005','711','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16006','711','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16007','711','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16008','711','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16009','711','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16010','711','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16011','711','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16012','711','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16013','711','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16014','711','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16015','711','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16016','711','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16017','711','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16018','711','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16019','711','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16020','711','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16021','711','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16022','711','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16023','711','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16024','711','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16025','711','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16026','711','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16027','711','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16028','711','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16029','711','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16030','711','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16031','711','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16032','711','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16033','711','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16034','711','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16035','711','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16036','711','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16037','711','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16038','711','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16039','711','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16040','711','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16041','711','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16042','711','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16043','711','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16044','711','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16045','711','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16046','711','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16047','711','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16048','711','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16049','711','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16050','711','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16051','711','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16052','711','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16053','711','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16054','711','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16055','711','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16056','711','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16057','711','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16058','711','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16059','711','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16060','711','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16061','711','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16062','711','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16063','711','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16064','711','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16065','711','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16066','711','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16067','711','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16068','711','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16069','711','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16070','711','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16071','711','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16072','711','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16073','711','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16074','711','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16075','711','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16076','711','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16077','711','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16078','711','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16079','711','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16080','711','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16081','711','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16082','711','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16083','711','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16084','711','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16085','711','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16086','711','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16087','711','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16088','711','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16089','711','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16090','711','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16091','711','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16092','711','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16093','711','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16094','711','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16095','711','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16096','711','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16097','711','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16098','711','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16099','711','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16100','711','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16101','711','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16102','711','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16103','711','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16104','711','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16105','711','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16106','711','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16107','711','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16108','711','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16109','711','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16110','711','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16111','711','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16112','711','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16113','711','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16114','711','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16115','711','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16116','711','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16117','711','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16118','711','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16119','711','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16120','712','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16121','712','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16122','713','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16123','713','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16124','713','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16125','714','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16126','714','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16127','714','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16128','714','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16129','714','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16130','714','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16131','715','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16132','715','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16133','715','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16134','715','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16135','715','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16136','715','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16137','715','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16138','715','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16139','715','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16140','715','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16141','715','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16142','715','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16143','715','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16144','715','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16145','715','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16146','715','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16147','715','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16148','715','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16149','715','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16150','715','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16151','715','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16152','715','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16153','715','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16154','715','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16155','715','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16156','715','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16157','715','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16158','715','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16159','715','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16160','715','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16161','715','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16162','715','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16163','715','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16164','715','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16165','715','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16166','715','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16167','715','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16168','715','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16169','715','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16170','715','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16171','715','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16172','715','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16173','715','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16174','715','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16175','715','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16176','715','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16177','715','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16178','715','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16179','715','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16180','715','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16181','715','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16182','715','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16183','715','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16184','715','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16185','715','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16186','715','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16187','715','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16188','715','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16189','715','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16190','715','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16191','715','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16192','715','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16193','715','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16194','715','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16195','715','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16196','715','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16197','715','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16198','715','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16199','715','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16200','715','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16201','715','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16202','715','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16203','715','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16204','715','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16205','715','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16206','715','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16207','715','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16208','715','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16209','715','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16210','715','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16211','715','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16212','715','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16213','715','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16214','715','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16215','715','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16216','715','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16217','715','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16218','715','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16219','715','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16220','715','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16221','715','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16222','715','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16223','715','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16224','715','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16225','715','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16226','715','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16227','715','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16228','715','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16229','715','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16230','715','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16231','715','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16232','715','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16233','715','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16234','715','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16235','715','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16236','715','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16237','715','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16238','715','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16239','715','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16240','715','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16241','715','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16242','715','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16243','715','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16244','715','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16245','715','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16246','715','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16247','715','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16248','715','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16249','715','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16250','715','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16251','715','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16252','715','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16253','715','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16254','715','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16255','715','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16256','715','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16257','715','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16258','715','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16259','715','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16260','715','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16261','715','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16262','715','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16263','715','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16264','715','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16265','715','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16266','715','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16267','715','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16268','715','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16269','715','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16270','715','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16271','715','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16272','715','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16273','715','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16274','715','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16275','715','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16276','715','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16277','715','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16278','715','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16279','715','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16280','715','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16281','715','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16282','715','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16283','715','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16284','715','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16285','715','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16286','715','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16287','715','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16288','715','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16289','715','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16290','715','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16291','715','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16292','715','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16293','715','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16294','715','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16295','715','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16296','715','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16297','715','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16298','715','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16299','715','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16300','715','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16301','715','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16302','715','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16303','715','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16304','715','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16305','715','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16306','715','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16307','715','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16308','715','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16309','715','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16310','715','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16311','715','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16312','715','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16313','715','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16314','715','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16315','715','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16316','715','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16317','715','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16318','715','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16319','715','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16320','715','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16321','715','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16322','715','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16323','715','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16324','715','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16325','715','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16326','715','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16327','715','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16328','715','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16329','715','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16330','715','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16331','715','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16332','715','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16333','715','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16334','715','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16335','715','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16336','715','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16337','715','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16338','715','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16339','715','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16340','715','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16341','715','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16342','715','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16343','715','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16344','715','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16345','715','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16346','715','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16347','715','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16348','715','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16349','715','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16350','715','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16351','715','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16352','715','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16353','715','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16354','715','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16355','715','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16356','715','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16357','715','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16358','715','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16359','715','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16360','715','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16361','715','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16362','715','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16363','715','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16364','715','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16365','715','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16366','715','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16367','715','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16368','715','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16369','715','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16370','715','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16371','715','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16372','715','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16373','715','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16374','715','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16375','715','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16376','715','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16377','715','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16378','715','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16379','715','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16380','715','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16381','715','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16382','715','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16383','715','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16384','715','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16385','715','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16386','715','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16387','715','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16388','715','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16389','715','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16390','715','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16391','715','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16392','715','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16393','715','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16394','715','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16395','715','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16396','715','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16397','715','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16398','715','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16399','715','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16400','715','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16401','715','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16402','715','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16403','715','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16404','715','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16405','715','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16406','715','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16407','715','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16408','715','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16409','715','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16410','715','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16411','715','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16412','715','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16413','715','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16414','715','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16415','715','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16416','715','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16417','716','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16418','716','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16419','717','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16420','717','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16421','717','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16422','718','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16423','718','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16424','718','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16425','718','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16426','718','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16427','718','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16428','719','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16429','719','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16430','719','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16431','719','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16432','719','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16433','719','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16434','719','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16435','719','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16436','719','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16437','719','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16438','719','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16439','719','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16440','719','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16441','719','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16442','719','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16443','719','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16444','719','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16445','719','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16446','719','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16447','719','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16448','719','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16449','719','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16450','719','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16451','719','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16452','719','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16453','719','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16454','719','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16455','719','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16456','719','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16457','719','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16458','719','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16459','719','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16460','719','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16461','719','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16462','719','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16463','719','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16464','719','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16465','719','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16466','719','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16467','719','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16468','719','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16469','719','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16470','719','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16471','719','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16472','719','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16473','719','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16474','719','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16475','719','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16476','719','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16477','719','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16478','719','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16479','719','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16480','719','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16481','719','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16482','719','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16483','719','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16484','719','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16485','719','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16486','719','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16487','719','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16488','719','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16489','719','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16490','719','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16491','719','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16492','719','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16493','719','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16494','719','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16495','719','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16496','719','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16497','719','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16498','719','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16499','719','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16500','719','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16501','719','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16502','719','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16503','719','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16504','719','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16505','719','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16506','719','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16507','719','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16508','719','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16509','719','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16510','719','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16511','719','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16512','719','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16513','719','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16514','719','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16515','719','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16516','719','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16517','719','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16518','719','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16519','719','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16520','719','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16521','719','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16522','719','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16523','719','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16524','719','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16525','719','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16526','719','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16527','719','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16528','719','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16529','719','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16530','719','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16531','719','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16532','719','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16533','719','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16534','719','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16535','719','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16536','719','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16537','719','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16538','719','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16539','719','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16540','719','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16541','719','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16542','719','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16543','719','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16544','719','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16545','719','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16546','719','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16547','719','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16548','719','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16549','719','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16550','719','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16551','719','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16552','719','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16553','719','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16554','719','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16555','719','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16556','719','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16557','719','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16558','719','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16559','719','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16560','719','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16561','719','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16562','719','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16563','719','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16564','719','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16565','719','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16566','719','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16567','719','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16568','719','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16569','719','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16570','719','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16571','719','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16572','719','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16573','719','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16574','719','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16575','719','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16576','719','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16577','719','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16578','719','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16579','719','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16580','719','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16581','719','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16582','719','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16583','719','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16584','719','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16585','719','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16586','719','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16587','719','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16588','719','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16589','719','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16590','719','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16591','719','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16592','719','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16593','719','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16594','719','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16595','719','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16596','719','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16597','719','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16598','719','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16599','719','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16600','719','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16601','719','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16602','719','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16603','719','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16604','719','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16605','719','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16606','719','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16607','719','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16608','719','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16609','719','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16610','719','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16611','719','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16612','719','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16613','719','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16614','719','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16615','719','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16616','719','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16617','719','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16618','719','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16619','719','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16620','719','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16621','719','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16622','719','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16623','719','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16624','719','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16625','719','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16626','719','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16627','719','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16628','719','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16629','719','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16630','719','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16631','719','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16632','719','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16633','719','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16634','719','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16635','719','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16636','719','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16637','719','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16638','719','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16639','719','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16640','719','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16641','719','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16642','719','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16643','719','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16644','719','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16645','719','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16646','719','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16647','719','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16648','719','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16649','719','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16650','719','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16651','719','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16652','719','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16653','719','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16654','719','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16655','719','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16656','719','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16657','719','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16658','719','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16659','719','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16660','719','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16661','719','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16662','719','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16663','719','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16664','719','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16665','719','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16666','719','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16667','719','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16668','719','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16669','719','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16670','719','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16671','719','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16672','719','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16673','719','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16674','719','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16675','719','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16676','719','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16677','719','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16678','719','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16679','719','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16680','719','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16681','719','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16682','719','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16683','719','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16684','719','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16685','719','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16686','719','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16687','719','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16688','719','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16689','719','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16690','719','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16691','719','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16692','719','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16693','719','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16694','719','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16695','719','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16696','719','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16697','719','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16698','719','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16699','719','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16700','719','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16701','719','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16702','719','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16703','719','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16704','719','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16705','719','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16706','719','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16707','719','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16708','719','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16709','719','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16710','719','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16711','719','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16712','719','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16713','719','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16714','720','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16715','720','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16716','721','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16717','721','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16718','721','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16719','722','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16720','722','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16721','722','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16722','722','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16723','722','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16724','722','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16725','723','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16726','723','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16727','723','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16728','723','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16729','723','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16730','723','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16731','723','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16732','723','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16733','723','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16734','723','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16735','723','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16736','723','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16737','723','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16738','723','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16739','723','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16740','723','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16741','723','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16742','723','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16743','723','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16744','723','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16745','723','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16746','723','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16747','723','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16748','723','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16749','723','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16750','723','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16751','723','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16752','723','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16753','723','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16754','723','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16755','723','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16756','723','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16757','723','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16758','723','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16759','723','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16760','723','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16761','723','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16762','723','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16763','723','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16764','723','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16765','723','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16766','723','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16767','723','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16768','723','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16769','723','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16770','723','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16771','723','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16772','723','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16773','723','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16774','723','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16775','723','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16776','723','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16777','723','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16778','723','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16779','723','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16780','723','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16781','723','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16782','723','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16783','723','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16784','723','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16785','723','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16786','723','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16787','723','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16788','723','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16789','723','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16790','723','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16791','723','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16792','723','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16793','723','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16794','723','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16795','723','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16796','723','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16797','723','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16798','723','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16799','723','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16800','723','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16801','723','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16802','723','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16803','723','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16804','723','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16805','723','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16806','723','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16807','723','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16808','723','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16809','723','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16810','723','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16811','723','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16812','723','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16813','723','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16814','723','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16815','723','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16816','723','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16817','723','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16818','723','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16819','723','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16820','723','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16821','723','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16822','723','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16823','723','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16824','723','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16825','723','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16826','723','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16827','723','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16828','723','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16829','723','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16830','723','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16831','723','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16832','723','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16833','723','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16834','723','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16835','723','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16836','723','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16837','723','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16838','723','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16839','723','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16840','723','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16841','723','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16842','723','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16843','723','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16844','723','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16845','723','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16846','723','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16847','723','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16848','723','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16849','723','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16850','723','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16851','723','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16852','723','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16853','723','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16854','723','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16855','723','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16856','723','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16857','723','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16858','723','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16859','723','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16860','723','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16861','723','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16862','723','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16863','723','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16864','723','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16865','723','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16866','723','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16867','723','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16868','723','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16869','723','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16870','723','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16871','723','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16872','723','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16873','723','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16874','723','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16875','723','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16876','723','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16877','723','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16878','723','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16879','723','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16880','723','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16881','723','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16882','723','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16883','723','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16884','723','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16885','723','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16886','723','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16887','723','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16888','723','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16889','723','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16890','723','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16891','723','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16892','723','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16893','723','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16894','723','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16895','723','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16896','723','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16897','723','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16898','723','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16899','723','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16900','723','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16901','723','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16902','723','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16903','723','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16904','723','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16905','723','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16906','723','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16907','723','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16908','723','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16909','723','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16910','723','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16911','723','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16912','723','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16913','723','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16914','723','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16915','723','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16916','723','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16917','723','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16918','723','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16919','723','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16920','723','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16921','723','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16922','723','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16923','723','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16924','723','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16925','723','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16926','723','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16927','723','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16928','723','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16929','723','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16930','723','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16931','723','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16932','723','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16933','723','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16934','723','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16935','723','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16936','723','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16937','723','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16938','723','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16939','723','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16940','723','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16941','723','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16942','723','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16943','723','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16944','723','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16945','723','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16946','723','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16947','723','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16948','723','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16949','723','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16950','723','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16951','723','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16952','723','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16953','723','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16954','723','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16955','723','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16956','723','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16957','723','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16958','723','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16959','723','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16960','723','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16961','723','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16962','723','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16963','723','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16964','723','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16965','723','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16966','723','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16967','723','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16968','723','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16969','723','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16970','723','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16971','723','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16972','723','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16973','723','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16974','723','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16975','723','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16976','723','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16977','723','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16978','723','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16979','723','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16980','723','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16981','723','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16982','723','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16983','723','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16984','723','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16985','723','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16986','723','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16987','723','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16988','723','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16989','723','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16990','723','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16991','723','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16992','723','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16993','723','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16994','723','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16995','723','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16996','723','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16997','723','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16998','723','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('16999','723','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17000','723','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17001','723','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17002','723','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17003','723','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17004','723','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17005','723','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17006','723','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17007','723','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17008','723','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17009','723','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17010','723','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17011','724','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17012','724','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17013','725','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17014','725','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17015','725','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17016','726','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17017','726','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17018','726','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17019','726','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17020','726','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17021','726','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17022','727','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17023','727','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17024','727','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17025','727','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17026','727','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17027','727','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17028','727','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17029','727','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17030','727','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17031','727','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17032','727','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17033','727','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17034','727','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17035','727','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17036','727','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17037','727','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17038','727','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17039','727','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17040','727','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17041','727','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17042','727','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17043','727','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17044','727','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17045','727','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17046','727','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17047','727','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17048','727','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17049','727','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17050','727','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17051','727','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17052','727','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17053','727','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17054','727','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17055','727','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17056','727','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17057','727','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17058','727','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17059','727','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17060','727','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17061','727','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17062','727','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17063','727','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17064','727','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17065','727','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17066','727','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17067','727','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17068','727','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17069','727','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17070','727','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17071','727','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17072','727','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17073','727','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17074','727','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17075','727','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17076','727','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17077','727','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17078','727','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17079','727','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17080','727','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17081','727','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17082','727','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17083','727','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17084','727','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17085','727','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17086','727','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17087','727','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17088','727','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17089','727','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17090','727','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17091','727','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17092','727','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17093','727','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17094','727','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17095','727','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17096','727','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17097','727','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17098','727','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17099','727','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17100','727','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17101','727','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17102','727','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17103','727','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17104','727','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17105','727','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17106','727','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17107','727','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17108','727','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17109','727','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17110','727','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17111','727','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17112','727','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17113','727','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17114','727','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17115','727','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17116','727','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17117','727','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17118','727','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17119','727','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17120','727','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17121','727','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17122','727','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17123','727','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17124','727','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17125','727','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17126','727','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17127','727','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17128','727','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17129','727','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17130','727','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17131','727','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17132','727','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17133','727','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17134','727','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17135','727','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17136','727','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17137','727','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17138','727','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17139','727','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17140','727','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17141','727','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17142','727','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17143','727','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17144','727','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17145','727','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17146','727','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17147','727','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17148','727','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17149','727','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17150','727','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17151','727','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17152','727','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17153','727','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17154','727','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17155','727','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17156','727','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17157','727','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17158','727','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17159','727','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17160','727','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17161','727','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17162','727','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17163','727','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17164','727','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17165','727','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17166','727','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17167','727','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17168','727','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17169','727','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17170','727','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17171','727','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17172','727','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17173','727','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17174','727','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17175','727','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17176','727','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17177','727','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17178','727','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17179','727','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17180','727','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17181','727','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17182','727','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17183','727','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17184','727','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17185','727','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17186','727','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17187','727','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17188','727','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17189','727','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17190','727','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17191','727','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17192','727','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17193','727','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17194','727','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17195','727','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17196','727','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17197','727','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17198','727','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17199','727','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17200','727','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17201','727','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17202','727','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17203','727','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17204','727','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17205','727','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17206','727','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17207','727','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17208','727','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17209','727','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17210','727','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17211','727','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17212','727','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17213','727','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17214','727','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17215','727','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17216','727','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17217','727','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17218','727','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17219','727','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17220','727','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17221','727','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17222','727','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17223','727','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17224','727','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17225','727','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17226','727','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17227','727','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17228','727','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17229','727','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17230','727','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17231','727','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17232','727','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17233','727','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17234','727','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17235','727','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17236','727','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17237','727','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17238','727','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17239','727','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17240','727','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17241','727','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17242','727','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17243','727','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17244','727','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17245','727','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17246','727','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17247','727','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17248','727','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17249','727','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17250','727','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17251','727','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17252','727','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17253','727','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17254','727','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17255','727','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17256','727','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17257','727','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17258','727','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17259','727','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17260','727','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17261','727','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17262','727','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17263','727','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17264','727','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17265','727','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17266','727','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17267','727','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17268','727','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17269','727','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17270','727','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17271','727','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17272','727','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17273','727','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17274','727','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17275','727','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17276','727','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17277','727','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17278','727','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17279','727','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17280','727','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17281','727','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17282','727','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17283','727','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17284','727','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17285','727','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17286','727','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17287','727','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17288','727','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17289','727','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17290','727','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17291','727','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17292','727','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17293','727','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17294','727','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17295','727','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17296','727','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17297','727','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17298','727','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17299','727','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17300','727','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17301','727','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17302','727','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17303','727','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17304','727','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17305','727','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17306','727','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17307','727','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17308','728','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17309','728','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17310','729','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17311','729','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17312','729','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17313','730','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17314','730','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17315','730','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17316','730','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17317','730','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17318','730','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17319','731','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17320','731','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17321','731','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17322','731','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17323','731','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17324','731','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17325','731','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17326','731','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17327','731','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17328','731','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17329','731','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17330','731','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17331','731','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17332','731','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17333','731','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17334','731','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17335','731','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17336','731','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17337','731','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17338','731','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17339','731','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17340','731','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17341','731','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17342','731','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17343','731','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17344','731','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17345','731','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17346','731','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17347','731','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17348','731','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17349','731','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17350','731','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17351','731','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17352','731','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17353','731','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17354','731','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17355','731','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17356','731','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17357','731','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17358','731','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17359','731','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17360','731','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17361','731','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17362','731','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17363','731','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17364','731','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17365','731','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17366','731','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17367','731','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17368','731','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17369','731','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17370','731','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17371','731','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17372','731','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17373','731','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17374','731','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17375','731','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17376','731','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17377','731','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17378','731','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17379','731','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17380','731','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17381','731','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17382','731','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17383','731','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17384','731','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17385','731','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17386','731','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17387','731','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17388','731','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17389','731','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17390','731','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17391','731','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17392','731','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17393','731','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17394','731','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17395','731','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17396','731','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17397','731','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17398','731','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17399','731','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17400','731','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17401','731','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17402','731','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17403','731','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17404','731','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17405','731','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17406','731','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17407','731','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17408','731','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17409','731','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17410','731','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17411','731','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17412','731','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17413','731','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17414','731','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17415','731','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17416','731','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17417','731','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17418','731','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17419','731','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17420','731','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17421','731','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17422','731','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17423','731','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17424','731','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17425','731','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17426','731','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17427','731','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17428','731','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17429','731','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17430','731','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17431','731','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17432','731','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17433','731','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17434','731','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17435','731','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17436','731','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17437','731','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17438','731','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17439','731','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17440','731','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17441','731','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17442','731','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17443','731','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17444','731','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17445','731','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17446','731','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17447','731','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17448','731','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17449','731','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17450','731','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17451','731','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17452','731','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17453','731','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17454','731','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17455','731','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17456','731','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17457','731','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17458','731','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17459','731','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17460','731','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17461','731','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17462','731','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17463','731','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17464','731','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17465','731','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17466','731','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17467','731','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17468','731','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17469','731','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17470','731','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17471','731','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17472','731','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17473','731','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17474','731','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17475','731','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17476','731','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17477','731','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17478','731','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17479','731','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17480','731','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17481','731','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17482','731','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17483','731','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17484','731','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17485','731','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17486','731','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17487','731','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17488','731','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17489','731','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17490','731','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17491','731','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17492','731','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17493','731','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17494','731','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17495','731','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17496','731','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17497','731','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17498','731','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17499','731','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17500','731','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17501','731','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17502','731','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17503','731','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17504','731','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17505','731','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17506','731','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17507','731','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17508','731','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17509','731','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17510','731','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17511','731','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17512','731','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17513','731','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17514','731','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17515','731','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17516','731','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17517','731','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17518','731','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17519','731','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17520','731','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17521','731','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17522','731','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17523','731','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17524','731','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17525','731','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17526','731','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17527','731','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17528','731','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17529','731','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17530','731','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17531','731','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17532','731','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17533','731','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17534','731','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17535','731','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17536','731','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17537','731','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17538','731','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17539','731','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17540','731','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17541','731','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17542','731','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17543','731','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17544','731','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17545','731','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17546','731','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17547','731','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17548','731','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17549','731','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17550','731','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17551','731','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17552','731','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17553','731','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17554','731','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17555','731','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17556','731','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17557','731','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17558','731','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17559','731','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17560','731','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17561','731','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17562','731','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17563','731','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17564','731','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17565','731','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17566','731','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17567','731','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17568','731','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17569','731','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17570','731','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17571','731','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17572','731','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17573','731','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17574','731','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17575','731','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17576','731','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17577','731','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17578','731','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17579','731','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17580','731','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17581','731','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17582','731','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17583','731','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17584','731','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17585','731','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17586','731','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17587','731','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17588','731','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17589','731','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17590','731','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17591','731','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17592','731','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17593','731','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17594','731','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17595','731','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17596','731','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17597','731','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17598','731','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17599','731','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17600','731','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17601','731','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17602','731','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17603','731','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17604','731','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17605','732','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17606','732','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17607','733','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17608','733','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17609','733','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17610','734','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17611','734','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17612','734','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17613','734','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17614','734','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17615','734','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17616','735','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17617','735','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17618','735','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17619','735','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17620','735','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17621','735','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17622','735','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17623','735','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17624','735','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17625','735','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17626','735','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17627','735','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17628','735','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17629','735','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17630','735','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17631','735','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17632','735','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17633','735','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17634','735','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17635','735','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17636','735','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17637','735','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17638','735','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17639','735','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17640','735','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17641','735','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17642','735','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17643','735','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17644','735','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17645','735','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17646','735','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17647','735','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17648','735','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17649','735','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17650','735','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17651','735','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17652','735','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17653','735','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17654','735','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17655','735','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17656','735','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17657','735','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17658','735','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17659','735','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17660','735','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17661','735','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17662','735','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17663','735','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17664','735','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17665','735','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17666','735','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17667','735','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17668','735','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17669','735','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17670','735','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17671','735','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17672','735','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17673','735','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17674','735','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17675','735','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17676','735','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17677','735','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17678','735','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17679','735','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17680','735','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17681','735','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17682','735','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17683','735','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17684','735','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17685','735','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17686','735','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17687','735','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17688','735','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17689','735','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17690','735','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17691','735','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17692','735','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17693','735','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17694','735','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17695','735','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17696','735','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17697','735','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17698','735','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17699','735','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17700','735','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17701','735','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17702','735','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17703','735','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17704','735','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17705','735','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17706','735','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17707','735','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17708','735','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17709','735','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17710','735','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17711','735','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17712','735','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17713','735','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17714','735','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17715','735','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17716','735','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17717','735','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17718','735','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17719','735','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17720','735','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17721','735','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17722','735','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17723','735','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17724','735','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17725','735','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17726','735','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17727','735','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17728','735','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17729','735','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17730','735','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17731','735','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17732','735','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17733','735','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17734','735','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17735','735','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17736','735','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17737','735','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17738','735','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17739','735','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17740','735','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17741','735','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17742','735','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17743','735','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17744','735','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17745','735','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17746','735','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17747','735','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17748','735','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17749','735','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17750','735','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17751','735','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17752','735','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17753','735','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17754','735','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17755','735','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17756','735','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17757','735','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17758','735','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17759','735','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17760','735','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17761','735','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17762','735','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17763','735','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17764','735','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17765','735','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17766','735','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17767','735','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17768','735','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17769','735','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17770','735','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17771','735','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17772','735','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17773','735','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17774','735','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17775','735','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17776','735','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17777','735','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17778','735','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17779','735','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17780','735','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17781','735','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17782','735','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17783','735','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17784','735','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17785','735','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17786','735','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17787','735','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17788','735','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17789','735','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17790','735','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17791','735','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17792','735','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17793','735','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17794','735','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17795','735','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17796','735','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17797','735','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17798','735','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17799','735','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17800','735','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17801','735','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17802','735','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17803','735','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17804','735','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17805','735','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17806','735','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17807','735','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17808','735','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17809','735','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17810','735','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17811','735','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17812','735','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17813','735','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17814','735','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17815','735','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17816','735','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17817','735','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17818','735','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17819','735','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17820','735','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17821','735','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17822','735','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17823','735','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17824','735','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17825','735','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17826','735','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17827','735','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17828','735','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17829','735','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17830','735','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17831','735','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17832','735','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17833','735','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17834','735','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17835','735','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17836','735','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17837','735','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17838','735','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17839','735','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17840','735','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17841','735','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17842','735','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17843','735','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17844','735','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17845','735','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17846','735','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17847','735','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17848','735','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17849','735','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17850','735','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17851','735','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17852','735','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17853','735','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17854','735','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17855','735','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17856','735','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17857','735','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17858','735','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17859','735','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17860','735','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17861','735','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17862','735','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17863','735','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17864','735','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17865','735','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17866','735','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17867','735','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17868','735','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17869','735','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17870','735','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17871','735','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17872','735','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17873','735','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17874','735','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17875','735','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17876','735','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17877','735','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17878','735','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17879','735','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17880','735','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17881','735','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17882','735','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17883','735','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17884','735','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17885','735','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17886','735','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17887','735','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17888','735','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17889','735','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17890','735','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17891','735','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17892','735','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17893','735','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17894','735','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17895','735','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17896','735','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17897','735','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17898','735','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17899','735','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17900','735','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17901','735','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17902','736','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17903','736','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17904','737','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17905','737','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17906','737','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17907','738','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17908','738','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17909','738','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17910','738','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17911','738','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17912','738','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17913','739','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17914','739','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17915','739','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17916','739','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17917','739','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17918','739','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17919','739','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17920','739','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17921','739','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17922','739','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17923','739','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17924','739','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17925','739','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17926','739','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17927','739','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17928','739','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17929','739','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17930','739','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17931','739','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17932','739','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17933','739','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17934','739','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17935','739','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17936','739','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17937','739','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17938','739','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17939','739','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17940','739','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17941','739','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17942','739','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17943','739','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17944','739','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17945','739','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17946','739','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17947','739','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17948','739','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17949','739','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17950','739','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17951','739','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17952','739','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17953','739','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17954','739','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17955','739','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17956','739','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17957','739','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17958','739','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17959','739','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17960','739','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17961','739','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17962','739','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17963','739','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17964','739','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17965','739','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17966','739','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17967','739','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17968','739','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17969','739','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17970','739','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17971','739','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17972','739','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17973','739','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17974','739','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17975','739','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17976','739','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17977','739','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17978','739','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17979','739','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17980','739','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17981','739','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17982','739','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17983','739','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17984','739','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17985','739','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17986','739','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17987','739','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17988','739','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17989','739','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17990','739','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17991','739','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17992','739','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17993','739','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17994','739','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17995','739','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17996','739','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17997','739','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17998','739','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('17999','739','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18000','739','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18001','739','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18002','739','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18003','739','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18004','739','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18005','739','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18006','739','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18007','739','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18008','739','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18009','739','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18010','739','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18011','739','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18012','739','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18013','739','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18014','739','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18015','739','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18016','739','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18017','739','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18018','739','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18019','739','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18020','739','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18021','739','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18022','739','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18023','739','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18024','739','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18025','739','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18026','739','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18027','739','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18028','739','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18029','739','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18030','739','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18031','739','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18032','739','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18033','739','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18034','739','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18035','739','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18036','739','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18037','739','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18038','739','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18039','739','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18040','739','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18041','739','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18042','739','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18043','739','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18044','739','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18045','739','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18046','739','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18047','739','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18048','739','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18049','739','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18050','739','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18051','739','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18052','739','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18053','739','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18054','739','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18055','739','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18056','739','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18057','739','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18058','739','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18059','739','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18060','739','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18061','739','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18062','739','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18063','739','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18064','739','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18065','739','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18066','739','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18067','739','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18068','739','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18069','739','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18070','739','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18071','739','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18072','739','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18073','739','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18074','739','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18075','739','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18076','739','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18077','739','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18078','739','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18079','739','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18080','739','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18081','739','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18082','739','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18083','739','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18084','739','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18085','739','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18086','739','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18087','739','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18088','739','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18089','739','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18090','739','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18091','739','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18092','739','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18093','739','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18094','739','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18095','739','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18096','739','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18097','739','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18098','739','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18099','739','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18100','739','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18101','739','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18102','739','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18103','739','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18104','739','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18105','739','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18106','739','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18107','739','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18108','739','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18109','739','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18110','739','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18111','739','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18112','739','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18113','739','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18114','739','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18115','739','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18116','739','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18117','739','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18118','739','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18119','739','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18120','739','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18121','739','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18122','739','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18123','739','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18124','739','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18125','739','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18126','739','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18127','739','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18128','739','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18129','739','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18130','739','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18131','739','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18132','739','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18133','739','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18134','739','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18135','739','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18136','739','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18137','739','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18138','739','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18139','739','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18140','739','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18141','739','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18142','739','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18143','739','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18144','739','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18145','739','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18146','739','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18147','739','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18148','739','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18149','739','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18150','739','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18151','739','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18152','739','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18153','739','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18154','739','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18155','739','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18156','739','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18157','739','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18158','739','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18159','739','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18160','739','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18161','739','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18162','739','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18163','739','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18164','739','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18165','739','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18166','739','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18167','739','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18168','739','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18169','739','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18170','739','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18171','739','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18172','739','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18173','739','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18174','739','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18175','739','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18176','739','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18177','739','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18178','739','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18179','739','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18180','739','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18181','739','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18182','739','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18183','739','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18184','739','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18185','739','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18186','739','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18187','739','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18188','739','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18189','739','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18190','739','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18191','739','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18192','739','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18193','739','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18194','739','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18195','739','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18196','739','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18197','739','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18198','739','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18199','740','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18200','740','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18201','741','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18202','741','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18203','741','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18204','742','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18205','742','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18206','742','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18207','742','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18208','742','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18209','742','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18210','743','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18211','743','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18212','743','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18213','743','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18214','743','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18215','743','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18216','743','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18217','743','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18218','743','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18219','743','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18220','743','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18221','743','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18222','743','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18223','743','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18224','743','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18225','743','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18226','743','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18227','743','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18228','743','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18229','743','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18230','743','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18231','743','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18232','743','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18233','743','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18234','743','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18235','743','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18236','743','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18237','743','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18238','743','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18239','743','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18240','743','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18241','743','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18242','743','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18243','743','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18244','743','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18245','743','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18246','743','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18247','743','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18248','743','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18249','743','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18250','743','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18251','743','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18252','743','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18253','743','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18254','743','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18255','743','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18256','743','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18257','743','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18258','743','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18259','743','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18260','743','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18261','743','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18262','743','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18263','743','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18264','743','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18265','743','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18266','743','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18267','743','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18268','743','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18269','743','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18270','743','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18271','743','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18272','743','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18273','743','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18274','743','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18275','743','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18276','743','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18277','743','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18278','743','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18279','743','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18280','743','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18281','743','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18282','743','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18283','743','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18284','743','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18285','743','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18286','743','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18287','743','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18288','743','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18289','743','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18290','743','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18291','743','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18292','743','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18293','743','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18294','743','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18295','743','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18296','743','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18297','743','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18298','743','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18299','743','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18300','743','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18301','743','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18302','743','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18303','743','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18304','743','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18305','743','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18306','743','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18307','743','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18308','743','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18309','743','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18310','743','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18311','743','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18312','743','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18313','743','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18314','743','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18315','743','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18316','743','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18317','743','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18318','743','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18319','743','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18320','743','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18321','743','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18322','743','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18323','743','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18324','743','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18325','743','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18326','743','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18327','743','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18328','743','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18329','743','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18330','743','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18331','743','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18332','743','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18333','743','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18334','743','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18335','743','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18336','743','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18337','743','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18338','743','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18339','743','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18340','743','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18341','743','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18342','743','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18343','743','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18344','743','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18345','743','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18346','743','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18347','743','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18348','743','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18349','743','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18350','743','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18351','743','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18352','743','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18353','743','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18354','743','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18355','743','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18356','743','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18357','743','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18358','743','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18359','743','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18360','743','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18361','743','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18362','743','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18363','743','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18364','743','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18365','743','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18366','743','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18367','743','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18368','743','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18369','743','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18370','743','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18371','743','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18372','743','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18373','743','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18374','743','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18375','743','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18376','743','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18377','743','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18378','743','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18379','743','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18380','743','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18381','743','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18382','743','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18383','743','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18384','743','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18385','743','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18386','743','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18387','743','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18388','743','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18389','743','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18390','743','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18391','743','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18392','743','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18393','743','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18394','743','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18395','743','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18396','743','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18397','743','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18398','743','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18399','743','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18400','743','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18401','743','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18402','743','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18403','743','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18404','743','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18405','743','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18406','743','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18407','743','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18408','743','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18409','743','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18410','743','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18411','743','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18412','743','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18413','743','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18414','743','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18415','743','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18416','743','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18417','743','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18418','743','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18419','743','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18420','743','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18421','743','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18422','743','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18423','743','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18424','743','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18425','743','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18426','743','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18427','743','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18428','743','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18429','743','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18430','743','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18431','743','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18432','743','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18433','743','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18434','743','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18435','743','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18436','743','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18437','743','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18438','743','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18439','743','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18440','743','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18441','743','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18442','743','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18443','743','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18444','743','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18445','743','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18446','743','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18447','743','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18448','743','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18449','743','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18450','743','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18451','743','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18452','743','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18453','743','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18454','743','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18455','743','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18456','743','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18457','743','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18458','743','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18459','743','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18460','743','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18461','743','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18462','743','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18463','743','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18464','743','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18465','743','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18466','743','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18467','743','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18468','743','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18469','743','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18470','743','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18471','743','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18472','743','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18473','743','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18474','743','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18475','743','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18476','743','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18477','743','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18478','743','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18479','743','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18480','743','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18481','743','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18482','743','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18483','743','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18484','743','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18485','743','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18486','743','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18487','743','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18488','743','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18489','743','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18490','743','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18491','743','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18492','743','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18493','743','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18494','743','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18495','743','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18496','744','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18497','744','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18498','745','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18499','745','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18500','745','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18501','746','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18502','746','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18503','746','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18504','746','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18505','746','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18506','746','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18507','747','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18508','747','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18509','747','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18510','747','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18511','747','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18512','747','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18513','747','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18514','747','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18515','747','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18516','747','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18517','747','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18518','747','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18519','747','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18520','747','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18521','747','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18522','747','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18523','747','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18524','747','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18525','747','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18526','747','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18527','747','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18528','747','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18529','747','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18530','747','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18531','747','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18532','747','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18533','747','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18534','747','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18535','747','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18536','747','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18537','747','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18538','747','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18539','747','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18540','747','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18541','747','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18542','747','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18543','747','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18544','747','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18545','747','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18546','747','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18547','747','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18548','747','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18549','747','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18550','747','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18551','747','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18552','747','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18553','747','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18554','747','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18555','747','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18556','747','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18557','747','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18558','747','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18559','747','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18560','747','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18561','747','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18562','747','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18563','747','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18564','747','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18565','747','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18566','747','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18567','747','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18568','747','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18569','747','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18570','747','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18571','747','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18572','747','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18573','747','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18574','747','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18575','747','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18576','747','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18577','747','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18578','747','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18579','747','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18580','747','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18581','747','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18582','747','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18583','747','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18584','747','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18585','747','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18586','747','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18587','747','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18588','747','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18589','747','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18590','747','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18591','747','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18592','747','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18593','747','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18594','747','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18595','747','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18596','747','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18597','747','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18598','747','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18599','747','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18600','747','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18601','747','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18602','747','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18603','747','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18604','747','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18605','747','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18606','747','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18607','747','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18608','747','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18609','747','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18610','747','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18611','747','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18612','747','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18613','747','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18614','747','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18615','747','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18616','747','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18617','747','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18618','747','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18619','747','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18620','747','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18621','747','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18622','747','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18623','747','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18624','747','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18625','747','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18626','747','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18627','747','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18628','747','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18629','747','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18630','747','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18631','747','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18632','747','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18633','747','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18634','747','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18635','747','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18636','747','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18637','747','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18638','747','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18639','747','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18640','747','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18641','747','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18642','747','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18643','747','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18644','747','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18645','747','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18646','747','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18647','747','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18648','747','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18649','747','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18650','747','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18651','747','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18652','747','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18653','747','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18654','747','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18655','747','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18656','747','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18657','747','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18658','747','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18659','747','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18660','747','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18661','747','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18662','747','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18663','747','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18664','747','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18665','747','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18666','747','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18667','747','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18668','747','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18669','747','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18670','747','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18671','747','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18672','747','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18673','747','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18674','747','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18675','747','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18676','747','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18677','747','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18678','747','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18679','747','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18680','747','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18681','747','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18682','747','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18683','747','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18684','747','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18685','747','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18686','747','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18687','747','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18688','747','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18689','747','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18690','747','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18691','747','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18692','747','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18693','747','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18694','747','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18695','747','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18696','747','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18697','747','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18698','747','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18699','747','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18700','747','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18701','747','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18702','747','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18703','747','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18704','747','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18705','747','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18706','747','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18707','747','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18708','747','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18709','747','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18710','747','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18711','747','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18712','747','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18713','747','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18714','747','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18715','747','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18716','747','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18717','747','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18718','747','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18719','747','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18720','747','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18721','747','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18722','747','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18723','747','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18724','747','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18725','747','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18726','747','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18727','747','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18728','747','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18729','747','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18730','747','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18731','747','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18732','747','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18733','747','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18734','747','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18735','747','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18736','747','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18737','747','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18738','747','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18739','747','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18740','747','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18741','747','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18742','747','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18743','747','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18744','747','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18745','747','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18746','747','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18747','747','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18748','747','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18749','747','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18750','747','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18751','747','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18752','747','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18753','747','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18754','747','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18755','747','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18756','747','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18757','747','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18758','747','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18759','747','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18760','747','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18761','747','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18762','747','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18763','747','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18764','747','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18765','747','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18766','747','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18767','747','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18768','747','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18769','747','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18770','747','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18771','747','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18772','747','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18773','747','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18774','747','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18775','747','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18776','747','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18777','747','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18778','747','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18779','747','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18780','747','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18781','747','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18782','747','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18783','747','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18784','747','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18785','747','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18786','747','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18787','747','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18788','747','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18789','747','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18790','747','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18791','747','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18792','747','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18793','748','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18794','748','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18795','749','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18796','749','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18797','749','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18798','750','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18799','750','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18800','750','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18801','750','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18802','750','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18803','750','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18804','751','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18805','751','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18806','751','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18807','751','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18808','751','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18809','751','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18810','751','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18811','751','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18812','751','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18813','751','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18814','751','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18815','751','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18816','751','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18817','751','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18818','751','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18819','751','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18820','751','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18821','751','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18822','751','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18823','751','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18824','751','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18825','751','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18826','751','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18827','751','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18828','751','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18829','751','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18830','751','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18831','751','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18832','751','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18833','751','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18834','751','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18835','751','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18836','751','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18837','751','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18838','751','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18839','751','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18840','751','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18841','751','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18842','751','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18843','751','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18844','751','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18845','751','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18846','751','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18847','751','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18848','751','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18849','751','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18850','751','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18851','751','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18852','751','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18853','751','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18854','751','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18855','751','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18856','751','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18857','751','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18858','751','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18859','751','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18860','751','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18861','751','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18862','751','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18863','751','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18864','751','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18865','751','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18866','751','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18867','751','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18868','751','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18869','751','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18870','751','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18871','751','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18872','751','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18873','751','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18874','751','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18875','751','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18876','751','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18877','751','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18878','751','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18879','751','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18880','751','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18881','751','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18882','751','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18883','751','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18884','751','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18885','751','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18886','751','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18887','751','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18888','751','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18889','751','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18890','751','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18891','751','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18892','751','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18893','751','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18894','751','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18895','751','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18896','751','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18897','751','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18898','751','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18899','751','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18900','751','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18901','751','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18902','751','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18903','751','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18904','751','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18905','751','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18906','751','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18907','751','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18908','751','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18909','751','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18910','751','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18911','751','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18912','751','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18913','751','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18914','751','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18915','751','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18916','751','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18917','751','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18918','751','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18919','751','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18920','751','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18921','751','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18922','751','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18923','751','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18924','751','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18925','751','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18926','751','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18927','751','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18928','751','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18929','751','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18930','751','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18931','751','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18932','751','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18933','751','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18934','751','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18935','751','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18936','751','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18937','751','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18938','751','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18939','751','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18940','751','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18941','751','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18942','751','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18943','751','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18944','751','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18945','751','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18946','751','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18947','751','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18948','751','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18949','751','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18950','751','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18951','751','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18952','751','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18953','751','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18954','751','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18955','751','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18956','751','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18957','751','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18958','751','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18959','751','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18960','751','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18961','751','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18962','751','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18963','751','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18964','751','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18965','751','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18966','751','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18967','751','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18968','751','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18969','751','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18970','751','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18971','751','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18972','751','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18973','751','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18974','751','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18975','751','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18976','751','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18977','751','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18978','751','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18979','751','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18980','751','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18981','751','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18982','751','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18983','751','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18984','751','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18985','751','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18986','751','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18987','751','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18988','751','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18989','751','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18990','751','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18991','751','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18992','751','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18993','751','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18994','751','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18995','751','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18996','751','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18997','751','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18998','751','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('18999','751','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19000','751','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19001','751','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19002','751','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19003','751','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19004','751','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19005','751','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19006','751','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19007','751','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19008','751','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19009','751','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19010','751','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19011','751','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19012','751','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19013','751','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19014','751','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19015','751','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19016','751','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19017','751','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19018','751','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19019','751','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19020','751','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19021','751','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19022','751','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19023','751','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19024','751','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19025','751','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19026','751','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19027','751','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19028','751','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19029','751','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19030','751','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19031','751','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19032','751','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19033','751','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19034','751','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19035','751','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19036','751','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19037','751','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19038','751','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19039','751','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19040','751','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19041','751','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19042','751','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19043','751','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19044','751','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19045','751','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19046','751','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19047','751','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19048','751','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19049','751','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19050','751','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19051','751','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19052','751','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19053','751','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19054','751','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19055','751','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19056','751','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19057','751','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19058','751','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19059','751','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19060','751','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19061','751','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19062','751','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19063','751','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19064','751','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19065','751','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19066','751','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19067','751','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19068','751','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19069','751','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19070','751','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19071','751','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19072','751','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19073','751','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19074','751','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19075','751','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19076','751','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19077','751','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19078','751','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19079','751','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19080','751','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19081','751','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19082','751','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19083','751','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19084','751','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19085','751','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19086','751','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19087','751','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19088','751','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19089','751','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19090','752','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19091','752','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19092','753','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19093','753','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19094','753','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19095','754','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19096','754','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19097','754','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19098','754','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19099','754','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19100','754','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19101','755','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19102','755','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19103','755','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19104','755','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19105','755','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19106','755','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19107','755','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19108','755','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19109','755','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19110','755','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19111','755','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19112','755','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19113','755','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19114','755','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19115','755','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19116','755','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19117','755','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19118','755','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19119','755','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19120','755','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19121','755','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19122','755','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19123','755','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19124','755','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19125','755','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19126','755','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19127','755','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19128','755','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19129','755','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19130','755','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19131','755','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19132','755','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19133','755','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19134','755','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19135','755','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19136','755','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19137','755','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19138','755','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19139','755','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19140','755','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19141','755','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19142','755','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19143','755','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19144','755','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19145','755','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19146','755','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19147','755','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19148','755','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19149','755','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19150','755','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19151','755','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19152','755','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19153','755','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19154','755','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19155','755','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19156','755','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19157','755','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19158','755','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19159','755','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19160','755','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19161','755','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19162','755','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19163','755','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19164','755','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19165','755','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19166','755','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19167','755','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19168','755','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19169','755','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19170','755','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19171','755','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19172','755','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19173','755','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19174','755','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19175','755','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19176','755','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19177','755','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19178','755','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19179','755','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19180','755','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19181','755','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19182','755','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19183','755','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19184','755','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19185','755','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19186','755','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19187','755','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19188','755','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19189','755','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19190','755','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19191','755','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19192','755','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19193','755','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19194','755','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19195','755','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19196','755','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19197','755','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19198','755','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19199','755','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19200','755','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19201','755','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19202','755','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19203','755','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19204','755','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19205','755','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19206','755','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19207','755','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19208','755','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19209','755','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19210','755','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19211','755','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19212','755','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19213','755','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19214','755','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19215','755','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19216','755','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19217','755','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19218','755','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19219','755','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19220','755','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19221','755','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19222','755','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19223','755','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19224','755','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19225','755','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19226','755','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19227','755','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19228','755','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19229','755','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19230','755','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19231','755','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19232','755','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19233','755','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19234','755','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19235','755','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19236','755','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19237','755','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19238','755','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19239','755','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19240','755','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19241','755','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19242','755','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19243','755','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19244','755','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19245','755','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19246','755','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19247','755','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19248','755','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19249','755','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19250','755','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19251','755','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19252','755','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19253','755','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19254','755','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19255','755','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19256','755','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19257','755','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19258','755','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19259','755','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19260','755','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19261','755','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19262','755','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19263','755','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19264','755','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19265','755','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19266','755','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19267','755','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19268','755','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19269','755','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19270','755','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19271','755','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19272','755','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19273','755','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19274','755','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19275','755','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19276','755','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19277','755','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19278','755','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19279','755','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19280','755','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19281','755','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19282','755','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19283','755','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19284','755','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19285','755','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19286','755','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19287','755','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19288','755','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19289','755','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19290','755','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19291','755','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19292','755','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19293','755','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19294','755','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19295','755','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19296','755','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19297','755','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19298','755','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19299','755','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19300','755','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19301','755','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19302','755','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19303','755','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19304','755','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19305','755','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19306','755','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19307','755','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19308','755','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19309','755','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19310','755','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19311','755','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19312','755','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19313','755','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19314','755','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19315','755','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19316','755','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19317','755','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19318','755','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19319','755','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19320','755','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19321','755','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19322','755','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19323','755','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19324','755','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19325','755','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19326','755','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19327','755','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19328','755','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19329','755','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19330','755','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19331','755','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19332','755','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19333','755','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19334','755','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19335','755','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19336','755','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19337','755','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19338','755','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19339','755','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19340','755','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19341','755','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19342','755','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19343','755','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19344','755','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19345','755','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19346','755','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19347','755','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19348','755','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19349','755','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19350','755','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19351','755','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19352','755','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19353','755','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19354','755','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19355','755','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19356','755','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19357','755','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19358','755','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19359','755','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19360','755','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19361','755','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19362','755','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19363','755','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19364','755','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19365','755','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19366','755','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19367','755','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19368','755','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19369','755','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19370','755','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19371','755','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19372','755','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19373','755','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19374','755','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19375','755','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19376','755','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19377','755','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19378','755','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19379','755','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19380','755','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19381','755','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19382','755','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19383','755','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19384','755','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19385','755','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19386','755','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19387','756','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19388','756','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19389','757','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19390','757','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19391','757','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19392','758','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19393','758','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19394','758','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19395','758','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19396','758','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19397','758','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19398','759','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19399','759','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19400','759','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19401','759','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19402','759','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19403','759','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19404','759','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19405','759','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19406','759','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19407','759','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19408','759','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19409','759','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19410','759','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19411','759','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19412','759','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19413','759','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19414','759','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19415','759','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19416','759','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19417','759','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19418','759','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19419','759','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19420','759','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19421','759','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19422','759','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19423','759','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19424','759','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19425','759','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19426','759','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19427','759','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19428','759','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19429','759','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19430','759','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19431','759','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19432','759','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19433','759','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19434','759','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19435','759','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19436','759','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19437','759','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19438','759','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19439','759','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19440','759','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19441','759','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19442','759','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19443','759','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19444','759','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19445','759','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19446','759','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19447','759','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19448','759','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19449','759','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19450','759','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19451','759','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19452','759','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19453','759','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19454','759','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19455','759','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19456','759','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19457','759','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19458','759','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19459','759','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19460','759','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19461','759','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19462','759','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19463','759','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19464','759','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19465','759','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19466','759','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19467','759','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19468','759','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19469','759','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19470','759','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19471','759','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19472','759','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19473','759','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19474','759','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19475','759','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19476','759','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19477','759','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19478','759','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19479','759','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19480','759','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19481','759','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19482','759','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19483','759','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19484','759','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19485','759','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19486','759','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19487','759','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19488','759','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19489','759','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19490','759','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19491','759','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19492','759','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19493','759','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19494','759','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19495','759','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19496','759','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19497','759','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19498','759','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19499','759','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19500','759','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19501','759','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19502','759','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19503','759','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19504','759','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19505','759','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19506','759','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19507','759','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19508','759','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19509','759','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19510','759','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19511','759','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19512','759','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19513','759','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19514','759','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19515','759','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19516','759','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19517','759','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19518','759','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19519','759','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19520','759','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19521','759','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19522','759','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19523','759','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19524','759','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19525','759','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19526','759','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19527','759','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19528','759','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19529','759','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19530','759','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19531','759','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19532','759','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19533','759','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19534','759','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19535','759','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19536','759','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19537','759','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19538','759','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19539','759','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19540','759','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19541','759','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19542','759','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19543','759','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19544','759','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19545','759','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19546','759','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19547','759','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19548','759','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19549','759','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19550','759','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19551','759','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19552','759','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19553','759','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19554','759','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19555','759','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19556','759','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19557','759','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19558','759','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19559','759','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19560','759','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19561','759','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19562','759','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19563','759','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19564','759','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19565','759','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19566','759','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19567','759','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19568','759','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19569','759','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19570','759','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19571','759','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19572','759','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19573','759','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19574','759','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19575','759','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19576','759','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19577','759','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19578','759','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19579','759','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19580','759','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19581','759','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19582','759','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19583','759','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19584','759','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19585','759','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19586','759','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19587','759','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19588','759','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19589','759','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19590','759','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19591','759','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19592','759','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19593','759','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19594','759','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19595','759','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19596','759','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19597','759','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19598','759','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19599','759','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19600','759','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19601','759','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19602','759','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19603','759','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19604','759','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19605','759','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19606','759','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19607','759','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19608','759','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19609','759','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19610','759','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19611','759','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19612','759','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19613','759','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19614','759','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19615','759','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19616','759','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19617','759','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19618','759','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19619','759','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19620','759','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19621','759','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19622','759','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19623','759','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19624','759','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19625','759','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19626','759','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19627','759','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19628','759','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19629','759','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19630','759','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19631','759','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19632','759','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19633','759','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19634','759','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19635','759','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19636','759','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19637','759','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19638','759','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19639','759','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19640','759','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19641','759','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19642','759','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19643','759','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19644','759','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19645','759','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19646','759','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19647','759','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19648','759','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19649','759','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19650','759','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19651','759','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19652','759','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19653','759','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19654','759','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19655','759','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19656','759','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19657','759','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19658','759','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19659','759','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19660','759','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19661','759','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19662','759','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19663','759','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19664','759','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19665','759','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19666','759','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19667','759','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19668','759','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19669','759','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19670','759','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19671','759','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19672','759','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19673','759','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19674','759','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19675','759','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19676','759','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19677','759','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19678','759','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19679','759','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19680','759','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19681','759','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19682','759','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19683','759','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19684','760','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19685','760','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19686','761','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19687','761','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19688','761','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19689','762','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19690','762','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19691','762','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19692','762','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19693','762','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19694','762','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19695','763','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19696','763','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19697','763','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19698','763','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19699','763','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19700','763','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19701','763','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19702','763','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19703','763','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19704','763','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19705','763','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19706','763','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19707','763','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19708','763','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19709','763','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19710','763','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19711','763','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19712','763','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19713','763','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19714','763','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19715','763','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19716','763','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19717','763','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19718','763','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19719','763','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19720','763','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19721','763','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19722','763','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19723','763','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19724','763','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19725','763','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19726','763','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19727','763','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19728','763','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19729','763','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19730','763','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19731','763','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19732','763','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19733','763','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19734','763','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19735','763','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19736','763','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19737','763','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19738','763','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19739','763','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19740','763','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19741','763','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19742','763','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19743','763','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19744','763','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19745','763','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19746','763','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19747','763','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19748','763','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19749','763','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19750','763','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19751','763','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19752','763','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19753','763','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19754','763','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19755','763','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19756','763','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19757','763','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19758','763','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19759','763','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19760','763','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19761','763','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19762','763','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19763','763','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19764','763','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19765','763','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19766','763','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19767','763','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19768','763','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19769','763','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19770','763','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19771','763','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19772','763','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19773','763','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19774','763','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19775','763','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19776','763','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19777','763','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19778','763','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19779','763','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19780','763','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19781','763','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19782','763','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19783','763','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19784','763','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19785','763','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19786','763','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19787','763','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19788','763','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19789','763','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19790','763','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19791','763','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19792','763','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19793','763','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19794','763','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19795','763','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19796','763','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19797','763','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19798','763','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19799','763','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19800','763','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19801','763','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19802','763','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19803','763','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19804','763','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19805','763','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19806','763','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19807','763','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19808','763','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19809','763','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19810','763','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19811','763','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19812','763','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19813','763','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19814','763','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19815','763','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19816','763','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19817','763','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19818','763','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19819','763','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19820','763','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19821','763','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19822','763','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19823','763','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19824','763','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19825','763','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19826','763','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19827','763','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19828','763','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19829','763','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19830','763','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19831','763','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19832','763','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19833','763','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19834','763','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19835','763','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19836','763','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19837','763','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19838','763','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19839','763','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19840','763','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19841','763','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19842','763','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19843','763','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19844','763','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19845','763','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19846','763','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19847','763','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19848','763','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19849','763','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19850','763','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19851','763','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19852','763','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19853','763','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19854','763','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19855','763','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19856','763','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19857','763','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19858','763','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19859','763','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19860','763','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19861','763','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19862','763','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19863','763','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19864','763','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19865','763','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19866','763','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19867','763','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19868','763','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19869','763','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19870','763','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19871','763','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19872','763','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19873','763','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19874','763','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19875','763','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19876','763','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19877','763','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19878','763','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19879','763','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19880','763','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19881','763','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19882','763','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19883','763','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19884','763','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19885','763','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19886','763','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19887','763','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19888','763','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19889','763','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19890','763','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19891','763','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19892','763','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19893','763','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19894','763','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19895','763','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19896','763','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19897','763','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19898','763','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19899','763','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19900','763','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19901','763','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19902','763','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19903','763','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19904','763','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19905','763','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19906','763','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19907','763','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19908','763','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19909','763','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19910','763','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19911','763','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19912','763','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19913','763','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19914','763','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19915','763','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19916','763','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19917','763','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19918','763','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19919','763','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19920','763','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19921','763','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19922','763','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19923','763','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19924','763','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19925','763','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19926','763','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19927','763','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19928','763','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19929','763','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19930','763','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19931','763','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19932','763','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19933','763','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19934','763','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19935','763','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19936','763','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19937','763','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19938','763','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19939','763','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19940','763','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19941','763','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19942','763','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19943','763','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19944','763','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19945','763','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19946','763','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19947','763','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19948','763','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19949','763','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19950','763','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19951','763','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19952','763','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19953','763','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19954','763','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19955','763','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19956','763','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19957','763','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19958','763','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19959','763','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19960','763','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19961','763','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19962','763','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19963','763','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19964','763','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19965','763','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19966','763','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19967','763','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19968','763','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19969','763','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19970','763','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19971','763','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19972','763','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19973','763','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19974','763','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19975','763','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19976','763','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19977','763','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19978','763','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19979','763','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19980','763','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19981','764','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19982','764','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19983','765','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19984','765','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19985','765','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19986','766','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19987','766','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19988','766','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19989','766','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19990','766','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19991','766','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19992','767','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19993','767','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19994','767','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19995','767','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19996','767','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19997','767','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19998','767','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('19999','767','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20000','767','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20001','767','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20002','767','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20003','767','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20004','767','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20005','767','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20006','767','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20007','767','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20008','767','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20009','767','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20010','767','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20011','767','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20012','767','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20013','767','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20014','767','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20015','767','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20016','767','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20017','767','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20018','767','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20019','767','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20020','767','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20021','767','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20022','767','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20023','767','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20024','767','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20025','767','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20026','767','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20027','767','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20028','767','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20029','767','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20030','767','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20031','767','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20032','767','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20033','767','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20034','767','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20035','767','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20036','767','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20037','767','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20038','767','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20039','767','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20040','767','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20041','767','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20042','767','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20043','767','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20044','767','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20045','767','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20046','767','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20047','767','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20048','767','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20049','767','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20050','767','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20051','767','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20052','767','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20053','767','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20054','767','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20055','767','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20056','767','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20057','767','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20058','767','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20059','767','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20060','767','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20061','767','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20062','767','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20063','767','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20064','767','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20065','767','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20066','767','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20067','767','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20068','767','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20069','767','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20070','767','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20071','767','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20072','767','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20073','767','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20074','767','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20075','767','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20076','767','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20077','767','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20078','767','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20079','767','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20080','767','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20081','767','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20082','767','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20083','767','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20084','767','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20085','767','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20086','767','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20087','767','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20088','767','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20089','767','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20090','767','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20091','767','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20092','767','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20093','767','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20094','767','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20095','767','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20096','767','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20097','767','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20098','767','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20099','767','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20100','767','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20101','767','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20102','767','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20103','767','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20104','767','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20105','767','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20106','767','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20107','767','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20108','767','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20109','767','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20110','767','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20111','767','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20112','767','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20113','767','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20114','767','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20115','767','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20116','767','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20117','767','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20118','767','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20119','767','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20120','767','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20121','767','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20122','767','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20123','767','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20124','767','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20125','767','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20126','767','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20127','767','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20128','767','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20129','767','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20130','767','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20131','767','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20132','767','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20133','767','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20134','767','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20135','767','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20136','767','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20137','767','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20138','767','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20139','767','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20140','767','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20141','767','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20142','767','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20143','767','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20144','767','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20145','767','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20146','767','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20147','767','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20148','767','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20149','767','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20150','767','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20151','767','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20152','767','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20153','767','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20154','767','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20155','767','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20156','767','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20157','767','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20158','767','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20159','767','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20160','767','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20161','767','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20162','767','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20163','767','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20164','767','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20165','767','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20166','767','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20167','767','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20168','767','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20169','767','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20170','767','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20171','767','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20172','767','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20173','767','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20174','767','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20175','767','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20176','767','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20177','767','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20178','767','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20179','767','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20180','767','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20181','767','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20182','767','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20183','767','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20184','767','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20185','767','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20186','767','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20187','767','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20188','767','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20189','767','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20190','767','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20191','767','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20192','767','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20193','767','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20194','767','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20195','767','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20196','767','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20197','767','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20198','767','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20199','767','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20200','767','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20201','767','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20202','767','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20203','767','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20204','767','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20205','767','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20206','767','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20207','767','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20208','767','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20209','767','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20210','767','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20211','767','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20212','767','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20213','767','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20214','767','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20215','767','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20216','767','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20217','767','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20218','767','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20219','767','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20220','767','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20221','767','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20222','767','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20223','767','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20224','767','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20225','767','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20226','767','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20227','767','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20228','767','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20229','767','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20230','767','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20231','767','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20232','767','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20233','767','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20234','767','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20235','767','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20236','767','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20237','767','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20238','767','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20239','767','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20240','767','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20241','767','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20242','767','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20243','767','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20244','767','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20245','767','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20246','767','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20247','767','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20248','767','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20249','767','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20250','767','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20251','767','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20252','767','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20253','767','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20254','767','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20255','767','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20256','767','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20257','767','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20258','767','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20259','767','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20260','767','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20261','767','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20262','767','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20263','767','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20264','767','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20265','767','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20266','767','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20267','767','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20268','767','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20269','767','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20270','767','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20271','767','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20272','767','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20273','767','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20274','767','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20275','767','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20276','767','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20277','767','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20278','768','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20279','768','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20280','769','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20281','769','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20282','769','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20283','770','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20284','770','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20285','770','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20286','770','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20287','770','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20288','770','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20289','771','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20290','771','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20291','771','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20292','771','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20293','771','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20294','771','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20295','771','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20296','771','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20297','771','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20298','771','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20299','771','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20300','771','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20301','771','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20302','771','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20303','771','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20304','771','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20305','771','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20306','771','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20307','771','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20308','771','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20309','771','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20310','771','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20311','771','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20312','771','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20313','771','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20314','771','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20315','771','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20316','771','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20317','771','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20318','771','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20319','771','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20320','771','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20321','771','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20322','771','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20323','771','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20324','771','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20325','771','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20326','771','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20327','771','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20328','771','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20329','771','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20330','771','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20331','771','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20332','771','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20333','771','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20334','771','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20335','771','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20336','771','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20337','771','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20338','771','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20339','771','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20340','771','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20341','771','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20342','771','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20343','771','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20344','771','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20345','771','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20346','771','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20347','771','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20348','771','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20349','771','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20350','771','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20351','771','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20352','771','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20353','771','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20354','771','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20355','771','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20356','771','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20357','771','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20358','771','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20359','771','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20360','771','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20361','771','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20362','771','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20363','771','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20364','771','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20365','771','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20366','771','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20367','771','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20368','771','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20369','771','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20370','771','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20371','771','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20372','771','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20373','771','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20374','771','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20375','771','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20376','771','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20377','771','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20378','771','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20379','771','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20380','771','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20381','771','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20382','771','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20383','771','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20384','771','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20385','771','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20386','771','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20387','771','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20388','771','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20389','771','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20390','771','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20391','771','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20392','771','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20393','771','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20394','771','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20395','771','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20396','771','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20397','771','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20398','771','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20399','771','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20400','771','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20401','771','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20402','771','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20403','771','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20404','771','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20405','771','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20406','771','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20407','771','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20408','771','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20409','771','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20410','771','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20411','771','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20412','771','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20413','771','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20414','771','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20415','771','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20416','771','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20417','771','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20418','771','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20419','771','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20420','771','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20421','771','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20422','771','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20423','771','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20424','771','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20425','771','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20426','771','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20427','771','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20428','771','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20429','771','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20430','771','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20431','771','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20432','771','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20433','771','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20434','771','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20435','771','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20436','771','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20437','771','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20438','771','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20439','771','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20440','771','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20441','771','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20442','771','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20443','771','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20444','771','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20445','771','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20446','771','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20447','771','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20448','771','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20449','771','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20450','771','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20451','771','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20452','771','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20453','771','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20454','771','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20455','771','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20456','771','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20457','771','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20458','771','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20459','771','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20460','771','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20461','771','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20462','771','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20463','771','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20464','771','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20465','771','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20466','771','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20467','771','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20468','771','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20469','771','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20470','771','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20471','771','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20472','771','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20473','771','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20474','771','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20475','771','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20476','771','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20477','771','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20478','771','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20479','771','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20480','771','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20481','771','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20482','771','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20483','771','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20484','771','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20485','771','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20486','771','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20487','771','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20488','771','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20489','771','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20490','771','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20491','771','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20492','771','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20493','771','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20494','771','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20495','771','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20496','771','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20497','771','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20498','771','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20499','771','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20500','771','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20501','771','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20502','771','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20503','771','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20504','771','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20505','771','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20506','771','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20507','771','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20508','771','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20509','771','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20510','771','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20511','771','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20512','771','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20513','771','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20514','771','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20515','771','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20516','771','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20517','771','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20518','771','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20519','771','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20520','771','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20521','771','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20522','771','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20523','771','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20524','771','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20525','771','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20526','771','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20527','771','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20528','771','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20529','771','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20530','771','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20531','771','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20532','771','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20533','771','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20534','771','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20535','771','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20536','771','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20537','771','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20538','771','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20539','771','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20540','771','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20541','771','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20542','771','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20543','771','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20544','771','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20545','771','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20546','771','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20547','771','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20548','771','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20549','771','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20550','771','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20551','771','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20552','771','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20553','771','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20554','771','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20555','771','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20556','771','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20557','771','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20558','771','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20559','771','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20560','771','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20561','771','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20562','771','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20563','771','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20564','771','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20565','771','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20566','771','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20567','771','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20568','771','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20569','771','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20570','771','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20571','771','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20572','771','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20573','771','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20574','771','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20575','772','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20576','772','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20577','773','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20578','773','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20579','773','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20580','774','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20581','774','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20582','774','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20583','774','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20584','774','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20585','774','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20586','775','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20587','775','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20588','775','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20589','775','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20590','775','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20591','775','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20592','775','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20593','775','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20594','775','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20595','775','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20596','775','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20597','775','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20598','775','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20599','775','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20600','775','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20601','775','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20602','775','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20603','775','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20604','775','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20605','775','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20606','775','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20607','775','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20608','775','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20609','775','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20610','775','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20611','775','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20612','775','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20613','775','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20614','775','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20615','775','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20616','775','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20617','775','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20618','775','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20619','775','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20620','775','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20621','775','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20622','775','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20623','775','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20624','775','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20625','775','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20626','775','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20627','775','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20628','775','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20629','775','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20630','775','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20631','775','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20632','775','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20633','775','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20634','775','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20635','775','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20636','775','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20637','775','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20638','775','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20639','775','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20640','775','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20641','775','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20642','775','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20643','775','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20644','775','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20645','775','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20646','775','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20647','775','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20648','775','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20649','775','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20650','775','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20651','775','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20652','775','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20653','775','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20654','775','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20655','775','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20656','775','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20657','775','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20658','775','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20659','775','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20660','775','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20661','775','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20662','775','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20663','775','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20664','775','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20665','775','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20666','775','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20667','775','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20668','775','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20669','775','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20670','775','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20671','775','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20672','775','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20673','775','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20674','775','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20675','775','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20676','775','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20677','775','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20678','775','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20679','775','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20680','775','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20681','775','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20682','775','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20683','775','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20684','775','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20685','775','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20686','775','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20687','775','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20688','775','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20689','775','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20690','775','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20691','775','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20692','775','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20693','775','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20694','775','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20695','775','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20696','775','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20697','775','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20698','775','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20699','775','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20700','775','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20701','775','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20702','775','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20703','775','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20704','775','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20705','775','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20706','775','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20707','775','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20708','775','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20709','775','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20710','775','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20711','775','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20712','775','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20713','775','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20714','775','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20715','775','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20716','775','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20717','775','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20718','775','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20719','775','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20720','775','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20721','775','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20722','775','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20723','775','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20724','775','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20725','775','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20726','775','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20727','775','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20728','775','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20729','775','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20730','775','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20731','775','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20732','775','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20733','775','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20734','775','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20735','775','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20736','775','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20737','775','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20738','775','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20739','775','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20740','775','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20741','775','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20742','775','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20743','775','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20744','775','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20745','775','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20746','775','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20747','775','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20748','775','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20749','775','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20750','775','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20751','775','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20752','775','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20753','775','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20754','775','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20755','775','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20756','775','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20757','775','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20758','775','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20759','775','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20760','775','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20761','775','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20762','775','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20763','775','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20764','775','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20765','775','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20766','775','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20767','775','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20768','775','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20769','775','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20770','775','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20771','775','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20772','775','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20773','775','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20774','775','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20775','775','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20776','775','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20777','775','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20778','775','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20779','775','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20780','775','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20781','775','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20782','775','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20783','775','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20784','775','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20785','775','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20786','775','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20787','775','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20788','775','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20789','775','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20790','775','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20791','775','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20792','775','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20793','775','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20794','775','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20795','775','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20796','775','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20797','775','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20798','775','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20799','775','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20800','775','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20801','775','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20802','775','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20803','775','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20804','775','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20805','775','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20806','775','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20807','775','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20808','775','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20809','775','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20810','775','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20811','775','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20812','775','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20813','775','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20814','775','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20815','775','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20816','775','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20817','775','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20818','775','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20819','775','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20820','775','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20821','775','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20822','775','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20823','775','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20824','775','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20825','775','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20826','775','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20827','775','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20828','775','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20829','775','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20830','775','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20831','775','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20832','775','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20833','775','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20834','775','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20835','775','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20836','775','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20837','775','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20838','775','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20839','775','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20840','775','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20841','775','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20842','775','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20843','775','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20844','775','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20845','775','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20846','775','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20847','775','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20848','775','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20849','775','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20850','775','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20851','775','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20852','775','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20853','775','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20854','775','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20855','775','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20856','775','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20857','775','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20858','775','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20859','775','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20860','775','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20861','775','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20862','775','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20863','775','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20864','775','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20865','775','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20866','775','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20867','775','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20868','775','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20869','775','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20870','775','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20871','775','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20872','776','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20873','776','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20874','777','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20875','777','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20876','777','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20877','778','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20878','778','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20879','778','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20880','778','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20881','778','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20882','778','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20883','779','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20884','779','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20885','779','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20886','779','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20887','779','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20888','779','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20889','779','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20890','779','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20891','779','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20892','779','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20893','779','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20894','779','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20895','779','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20896','779','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20897','779','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20898','779','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20899','779','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20900','779','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20901','779','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20902','779','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20903','779','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20904','779','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20905','779','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20906','779','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20907','779','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20908','779','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20909','779','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20910','779','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20911','779','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20912','779','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20913','779','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20914','779','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20915','779','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20916','779','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20917','779','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20918','779','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20919','779','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20920','779','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20921','779','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20922','779','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20923','779','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20924','779','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20925','779','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20926','779','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20927','779','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20928','779','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20929','779','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20930','779','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20931','779','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20932','779','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20933','779','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20934','779','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20935','779','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20936','779','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20937','779','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20938','779','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20939','779','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20940','779','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20941','779','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20942','779','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20943','779','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20944','779','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20945','779','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20946','779','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20947','779','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20948','779','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20949','779','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20950','779','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20951','779','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20952','779','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20953','779','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20954','779','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20955','779','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20956','779','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20957','779','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20958','779','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20959','779','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20960','779','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20961','779','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20962','779','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20963','779','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20964','779','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20965','779','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20966','779','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20967','779','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20968','779','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20969','779','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20970','779','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20971','779','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20972','779','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20973','779','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20974','779','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20975','779','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20976','779','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20977','779','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20978','779','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20979','779','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20980','779','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20981','779','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20982','779','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20983','779','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20984','779','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20985','779','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20986','779','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20987','779','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20988','779','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20989','779','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20990','779','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20991','779','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20992','779','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20993','779','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20994','779','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20995','779','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20996','779','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20997','779','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20998','779','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('20999','779','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21000','779','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21001','779','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21002','779','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21003','779','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21004','779','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21005','779','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21006','779','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21007','779','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21008','779','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21009','779','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21010','779','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21011','779','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21012','779','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21013','779','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21014','779','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21015','779','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21016','779','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21017','779','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21018','779','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21019','779','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21020','779','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21021','779','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21022','779','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21023','779','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21024','779','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21025','779','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21026','779','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21027','779','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21028','779','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21029','779','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21030','779','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21031','779','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21032','779','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21033','779','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21034','779','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21035','779','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21036','779','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21037','779','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21038','779','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21039','779','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21040','779','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21041','779','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21042','779','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21043','779','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21044','779','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21045','779','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21046','779','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21047','779','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21048','779','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21049','779','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21050','779','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21051','779','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21052','779','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21053','779','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21054','779','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21055','779','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21056','779','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21057','779','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21058','779','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21059','779','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21060','779','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21061','779','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21062','779','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21063','779','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21064','779','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21065','779','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21066','779','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21067','779','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21068','779','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21069','779','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21070','779','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21071','779','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21072','779','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21073','779','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21074','779','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21075','779','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21076','779','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21077','779','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21078','779','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21079','779','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21080','779','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21081','779','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21082','779','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21083','779','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21084','779','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21085','779','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21086','779','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21087','779','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21088','779','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21089','779','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21090','779','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21091','779','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21092','779','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21093','779','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21094','779','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21095','779','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21096','779','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21097','779','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21098','779','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21099','779','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21100','779','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21101','779','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21102','779','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21103','779','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21104','779','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21105','779','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21106','779','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21107','779','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21108','779','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21109','779','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21110','779','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21111','779','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21112','779','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21113','779','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21114','779','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21115','779','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21116','779','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21117','779','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21118','779','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21119','779','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21120','779','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21121','779','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21122','779','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21123','779','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21124','779','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21125','779','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21126','779','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21127','779','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21128','779','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21129','779','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21130','779','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21131','779','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21132','779','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21133','779','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21134','779','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21135','779','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21136','779','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21137','779','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21138','779','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21139','779','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21140','779','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21141','779','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21142','779','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21143','779','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21144','779','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21145','779','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21146','779','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21147','779','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21148','779','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21149','779','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21150','779','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21151','779','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21152','779','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21153','779','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21154','779','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21155','779','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21156','779','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21157','779','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21158','779','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21159','779','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21160','779','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21161','779','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21162','779','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21163','779','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21164','779','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21165','779','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21166','779','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21167','779','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21168','779','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21169','780','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21170','780','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21171','781','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21172','781','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21173','781','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21174','782','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21175','782','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21176','782','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21177','782','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21178','782','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21179','782','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21180','783','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21181','783','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21182','783','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21183','783','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21184','783','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21185','783','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21186','783','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21187','783','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21188','783','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21189','783','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21190','783','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21191','783','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21192','783','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21193','783','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21194','783','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21195','783','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21196','783','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21197','783','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21198','783','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21199','783','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21200','783','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21201','783','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21202','783','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21203','783','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21204','783','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21205','783','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21206','783','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21207','783','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21208','783','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21209','783','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21210','783','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21211','783','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21212','783','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21213','783','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21214','783','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21215','783','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21216','783','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21217','783','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21218','783','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21219','783','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21220','783','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21221','783','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21222','783','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21223','783','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21224','783','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21225','783','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21226','783','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21227','783','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21228','783','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21229','783','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21230','783','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21231','783','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21232','783','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21233','783','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21234','783','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21235','783','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21236','783','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21237','783','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21238','783','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21239','783','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21240','783','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21241','783','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21242','783','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21243','783','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21244','783','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21245','783','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21246','783','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21247','783','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21248','783','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21249','783','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21250','783','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21251','783','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21252','783','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21253','783','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21254','783','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21255','783','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21256','783','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21257','783','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21258','783','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21259','783','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21260','783','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21261','783','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21262','783','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21263','783','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21264','783','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21265','783','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21266','783','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21267','783','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21268','783','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21269','783','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21270','783','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21271','783','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21272','783','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21273','783','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21274','783','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21275','783','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21276','783','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21277','783','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21278','783','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21279','783','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21280','783','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21281','783','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21282','783','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21283','783','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21284','783','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21285','783','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21286','783','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21287','783','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21288','783','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21289','783','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21290','783','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21291','783','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21292','783','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21293','783','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21294','783','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21295','783','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21296','783','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21297','783','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21298','783','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21299','783','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21300','783','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21301','783','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21302','783','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21303','783','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21304','783','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21305','783','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21306','783','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21307','783','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21308','783','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21309','783','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21310','783','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21311','783','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21312','783','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21313','783','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21314','783','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21315','783','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21316','783','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21317','783','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21318','783','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21319','783','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21320','783','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21321','783','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21322','783','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21323','783','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21324','783','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21325','783','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21326','783','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21327','783','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21328','783','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21329','783','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21330','783','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21331','783','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21332','783','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21333','783','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21334','783','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21335','783','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21336','783','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21337','783','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21338','783','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21339','783','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21340','783','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21341','783','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21342','783','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21343','783','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21344','783','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21345','783','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21346','783','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21347','783','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21348','783','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21349','783','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21350','783','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21351','783','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21352','783','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21353','783','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21354','783','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21355','783','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21356','783','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21357','783','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21358','783','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21359','783','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21360','783','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21361','783','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21362','783','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21363','783','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21364','783','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21365','783','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21366','783','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21367','783','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21368','783','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21369','783','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21370','783','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21371','783','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21372','783','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21373','783','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21374','783','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21375','783','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21376','783','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21377','783','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21378','783','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21379','783','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21380','783','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21381','783','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21382','783','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21383','783','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21384','783','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21385','783','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21386','783','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21387','783','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21388','783','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21389','783','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21390','783','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21391','783','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21392','783','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21393','783','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21394','783','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21395','783','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21396','783','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21397','783','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21398','783','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21399','783','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21400','783','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21401','783','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21402','783','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21403','783','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21404','783','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21405','783','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21406','783','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21407','783','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21408','783','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21409','783','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21410','783','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21411','783','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21412','783','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21413','783','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21414','783','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21415','783','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21416','783','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21417','783','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21418','783','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21419','783','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21420','783','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21421','783','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21422','783','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21423','783','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21424','783','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21425','783','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21426','783','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21427','783','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21428','783','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21429','783','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21430','783','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21431','783','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21432','783','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21433','783','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21434','783','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21435','783','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21436','783','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21437','783','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21438','783','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21439','783','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21440','783','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21441','783','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21442','783','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21443','783','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21444','783','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21445','783','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21446','783','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21447','783','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21448','783','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21449','783','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21450','783','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21451','783','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21452','783','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21453','783','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21454','783','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21455','783','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21456','783','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21457','783','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21458','783','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21459','783','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21460','783','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21461','783','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21462','783','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21463','783','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21464','783','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21465','783','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21466','784','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21467','784','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21468','785','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21469','785','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21470','785','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21471','786','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21472','786','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21473','786','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21474','786','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21475','786','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21476','786','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21477','787','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21478','787','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21479','787','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21480','787','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21481','787','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21482','787','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21483','787','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21484','787','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21485','787','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21486','787','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21487','787','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21488','787','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21489','787','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21490','787','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21491','787','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21492','787','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21493','787','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21494','787','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21495','787','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21496','787','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21497','787','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21498','787','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21499','787','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21500','787','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21501','787','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21502','787','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21503','787','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21504','787','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21505','787','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21506','787','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21507','787','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21508','787','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21509','787','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21510','787','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21511','787','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21512','787','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21513','787','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21514','787','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21515','787','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21516','787','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21517','787','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21518','787','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21519','787','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21520','787','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21521','787','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21522','787','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21523','787','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21524','787','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21525','787','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21526','787','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21527','787','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21528','787','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21529','787','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21530','787','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21531','787','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21532','787','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21533','787','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21534','787','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21535','787','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21536','787','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21537','787','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21538','787','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21539','787','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21540','787','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21541','787','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21542','787','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21543','787','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21544','787','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21545','787','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21546','787','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21547','787','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21548','787','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21549','787','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21550','787','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21551','787','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21552','787','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21553','787','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21554','787','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21555','787','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21556','787','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21557','787','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21558','787','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21559','787','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21560','787','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21561','787','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21562','787','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21563','787','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21564','787','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21565','787','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21566','787','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21567','787','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21568','787','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21569','787','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21570','787','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21571','787','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21572','787','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21573','787','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21574','787','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21575','787','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21576','787','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21577','787','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21578','787','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21579','787','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21580','787','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21581','787','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21582','787','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21583','787','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21584','787','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21585','787','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21586','787','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21587','787','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21588','787','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21589','787','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21590','787','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21591','787','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21592','787','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21593','787','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21594','787','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21595','787','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21596','787','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21597','787','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21598','787','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21599','787','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21600','787','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21601','787','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21602','787','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21603','787','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21604','787','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21605','787','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21606','787','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21607','787','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21608','787','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21609','787','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21610','787','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21611','787','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21612','787','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21613','787','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21614','787','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21615','787','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21616','787','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21617','787','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21618','787','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21619','787','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21620','787','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21621','787','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21622','787','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21623','787','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21624','787','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21625','787','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21626','787','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21627','787','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21628','787','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21629','787','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21630','787','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21631','787','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21632','787','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21633','787','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21634','787','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21635','787','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21636','787','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21637','787','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21638','787','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21639','787','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21640','787','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21641','787','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21642','787','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21643','787','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21644','787','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21645','787','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21646','787','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21647','787','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21648','787','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21649','787','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21650','787','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21651','787','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21652','787','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21653','787','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21654','787','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21655','787','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21656','787','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21657','787','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21658','787','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21659','787','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21660','787','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21661','787','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21662','787','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21663','787','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21664','787','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21665','787','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21666','787','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21667','787','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21668','787','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21669','787','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21670','787','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21671','787','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21672','787','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21673','787','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21674','787','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21675','787','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21676','787','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21677','787','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21678','787','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21679','787','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21680','787','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21681','787','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21682','787','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21683','787','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21684','787','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21685','787','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21686','787','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21687','787','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21688','787','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21689','787','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21690','787','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21691','787','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21692','787','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21693','787','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21694','787','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21695','787','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21696','787','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21697','787','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21698','787','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21699','787','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21700','787','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21701','787','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21702','787','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21703','787','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21704','787','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21705','787','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21706','787','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21707','787','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21708','787','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21709','787','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21710','787','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21711','787','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21712','787','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21713','787','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21714','787','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21715','787','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21716','787','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21717','787','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21718','787','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21719','787','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21720','787','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21721','787','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21722','787','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21723','787','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21724','787','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21725','787','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21726','787','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21727','787','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21728','787','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21729','787','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21730','787','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21731','787','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21732','787','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21733','787','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21734','787','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21735','787','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21736','787','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21737','787','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21738','787','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21739','787','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21740','787','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21741','787','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21742','787','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21743','787','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21744','787','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21745','787','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21746','787','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21747','787','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21748','787','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21749','787','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21750','787','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21751','787','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21752','787','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21753','787','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21754','787','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21755','787','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21756','787','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21757','787','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21758','787','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21759','787','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21760','787','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21761','787','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21762','787','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21763','788','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21764','788','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21765','789','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21766','789','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21767','789','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21768','790','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21769','790','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21770','790','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21771','790','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21772','790','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21773','790','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21774','791','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21775','791','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21776','791','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21777','791','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21778','791','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21779','791','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21780','791','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21781','791','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21782','791','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21783','791','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21784','791','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21785','791','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21786','791','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21787','791','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21788','791','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21789','791','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21790','791','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21791','791','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21792','791','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21793','791','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21794','791','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21795','791','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21796','791','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21797','791','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21798','791','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21799','791','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21800','791','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21801','791','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21802','791','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21803','791','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21804','791','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21805','791','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21806','791','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21807','791','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21808','791','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21809','791','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21810','791','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21811','791','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21812','791','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21813','791','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21814','791','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21815','791','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21816','791','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21817','791','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21818','791','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21819','791','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21820','791','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21821','791','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21822','791','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21823','791','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21824','791','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21825','791','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21826','791','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21827','791','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21828','791','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21829','791','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21830','791','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21831','791','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21832','791','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21833','791','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21834','791','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21835','791','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21836','791','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21837','791','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21838','791','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21839','791','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21840','791','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21841','791','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21842','791','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21843','791','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21844','791','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21845','791','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21846','791','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21847','791','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21848','791','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21849','791','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21850','791','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21851','791','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21852','791','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21853','791','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21854','791','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21855','791','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21856','791','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21857','791','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21858','791','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21859','791','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21860','791','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21861','791','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21862','791','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21863','791','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21864','791','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21865','791','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21866','791','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21867','791','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21868','791','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21869','791','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21870','791','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21871','791','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21872','791','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21873','791','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21874','791','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21875','791','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21876','791','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21877','791','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21878','791','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21879','791','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21880','791','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21881','791','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21882','791','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21883','791','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21884','791','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21885','791','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21886','791','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21887','791','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21888','791','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21889','791','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21890','791','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21891','791','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21892','791','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21893','791','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21894','791','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21895','791','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21896','791','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21897','791','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21898','791','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21899','791','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21900','791','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21901','791','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21902','791','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21903','791','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21904','791','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21905','791','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21906','791','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21907','791','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21908','791','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21909','791','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21910','791','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21911','791','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21912','791','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21913','791','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21914','791','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21915','791','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21916','791','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21917','791','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21918','791','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21919','791','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21920','791','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21921','791','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21922','791','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21923','791','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21924','791','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21925','791','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21926','791','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21927','791','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21928','791','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21929','791','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21930','791','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21931','791','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21932','791','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21933','791','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21934','791','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21935','791','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21936','791','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21937','791','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21938','791','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21939','791','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21940','791','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21941','791','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21942','791','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21943','791','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21944','791','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21945','791','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21946','791','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21947','791','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21948','791','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21949','791','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21950','791','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21951','791','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21952','791','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21953','791','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21954','791','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21955','791','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21956','791','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21957','791','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21958','791','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21959','791','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21960','791','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21961','791','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21962','791','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21963','791','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21964','791','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21965','791','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21966','791','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21967','791','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21968','791','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21969','791','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21970','791','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21971','791','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21972','791','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21973','791','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21974','791','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21975','791','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21976','791','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21977','791','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21978','791','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21979','791','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21980','791','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21981','791','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21982','791','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21983','791','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21984','791','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21985','791','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21986','791','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21987','791','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21988','791','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21989','791','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21990','791','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21991','791','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21992','791','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21993','791','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21994','791','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21995','791','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21996','791','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21997','791','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21998','791','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('21999','791','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22000','791','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22001','791','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22002','791','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22003','791','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22004','791','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22005','791','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22006','791','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22007','791','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22008','791','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22009','791','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22010','791','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22011','791','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22012','791','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22013','791','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22014','791','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22015','791','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22016','791','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22017','791','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22018','791','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22019','791','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22020','791','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22021','791','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22022','791','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22023','791','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22024','791','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22025','791','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22026','791','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22027','791','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22028','791','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22029','791','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22030','791','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22031','791','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22032','791','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22033','791','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22034','791','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22035','791','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22036','791','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22037','791','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22038','791','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22039','791','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22040','791','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22041','791','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22042','791','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22043','791','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22044','791','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22045','791','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22046','791','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22047','791','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22048','791','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22049','791','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22050','791','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22051','791','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22052','791','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22053','791','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22054','791','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22055','791','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22056','791','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22057','791','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22058','791','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22059','791','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22060','792','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22061','792','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22062','793','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22063','793','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22064','793','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22065','794','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22066','794','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22067','794','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22068','794','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22069','794','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22070','794','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22071','795','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22072','795','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22073','795','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22074','795','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22075','795','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22076','795','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22077','795','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22078','795','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22079','795','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22080','795','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22081','795','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22082','795','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22083','795','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22084','795','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22085','795','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22086','795','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22087','795','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22088','795','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22089','795','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22090','795','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22091','795','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22092','795','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22093','795','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22094','795','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22095','795','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22096','795','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22097','795','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22098','795','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22099','795','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22100','795','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22101','795','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22102','795','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22103','795','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22104','795','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22105','795','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22106','795','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22107','795','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22108','795','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22109','795','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22110','795','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22111','795','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22112','795','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22113','795','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22114','795','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22115','795','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22116','795','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22117','795','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22118','795','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22119','795','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22120','795','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22121','795','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22122','795','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22123','795','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22124','795','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22125','795','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22126','795','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22127','795','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22128','795','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22129','795','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22130','795','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22131','795','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22132','795','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22133','795','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22134','795','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22135','795','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22136','795','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22137','795','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22138','795','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22139','795','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22140','795','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22141','795','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22142','795','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22143','795','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22144','795','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22145','795','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22146','795','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22147','795','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22148','795','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22149','795','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22150','795','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22151','795','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22152','795','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22153','795','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22154','795','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22155','795','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22156','795','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22157','795','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22158','795','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22159','795','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22160','795','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22161','795','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22162','795','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22163','795','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22164','795','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22165','795','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22166','795','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22167','795','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22168','795','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22169','795','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22170','795','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22171','795','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22172','795','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22173','795','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22174','795','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22175','795','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22176','795','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22177','795','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22178','795','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22179','795','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22180','795','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22181','795','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22182','795','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22183','795','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22184','795','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22185','795','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22186','795','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22187','795','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22188','795','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22189','795','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22190','795','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22191','795','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22192','795','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22193','795','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22194','795','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22195','795','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22196','795','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22197','795','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22198','795','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22199','795','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22200','795','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22201','795','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22202','795','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22203','795','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22204','795','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22205','795','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22206','795','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22207','795','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22208','795','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22209','795','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22210','795','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22211','795','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22212','795','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22213','795','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22214','795','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22215','795','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22216','795','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22217','795','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22218','795','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22219','795','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22220','795','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22221','795','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22222','795','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22223','795','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22224','795','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22225','795','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22226','795','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22227','795','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22228','795','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22229','795','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22230','795','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22231','795','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22232','795','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22233','795','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22234','795','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22235','795','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22236','795','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22237','795','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22238','795','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22239','795','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22240','795','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22241','795','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22242','795','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22243','795','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22244','795','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22245','795','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22246','795','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22247','795','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22248','795','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22249','795','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22250','795','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22251','795','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22252','795','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22253','795','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22254','795','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22255','795','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22256','795','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22257','795','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22258','795','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22259','795','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22260','795','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22261','795','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22262','795','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22263','795','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22264','795','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22265','795','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22266','795','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22267','795','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22268','795','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22269','795','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22270','795','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22271','795','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22272','795','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22273','795','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22274','795','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22275','795','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22276','795','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22277','795','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22278','795','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22279','795','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22280','795','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22281','795','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22282','795','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22283','795','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22284','795','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22285','795','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22286','795','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22287','795','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22288','795','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22289','795','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22290','795','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22291','795','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22292','795','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22293','795','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22294','795','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22295','795','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22296','795','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22297','795','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22298','795','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22299','795','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22300','795','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22301','795','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22302','795','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22303','795','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22304','795','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22305','795','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22306','795','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22307','795','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22308','795','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22309','795','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22310','795','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22311','795','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22312','795','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22313','795','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22314','795','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22315','795','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22316','795','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22317','795','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22318','795','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22319','795','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22320','795','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22321','795','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22322','795','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22323','795','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22324','795','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22325','795','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22326','795','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22327','795','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22328','795','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22329','795','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22330','795','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22331','795','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22332','795','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22333','795','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22334','795','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22335','795','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22336','795','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22337','795','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22338','795','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22339','795','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22340','795','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22341','795','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22342','795','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22343','795','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22344','795','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22345','795','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22346','795','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22347','795','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22348','795','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22349','795','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22350','795','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22351','795','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22352','795','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22353','795','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22354','795','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22355','795','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22356','795','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22357','796','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22358','796','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22359','797','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22360','797','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22361','797','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22362','798','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22363','798','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22364','798','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22365','798','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22366','798','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22367','798','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22368','799','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22369','799','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22370','799','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22371','799','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22372','799','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22373','799','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22374','799','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22375','799','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22376','799','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22377','799','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22378','799','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22379','799','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22380','799','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22381','799','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22382','799','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22383','799','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22384','799','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22385','799','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22386','799','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22387','799','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22388','799','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22389','799','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22390','799','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22391','799','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22392','799','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22393','799','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22394','799','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22395','799','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22396','799','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22397','799','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22398','799','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22399','799','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22400','799','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22401','799','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22402','799','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22403','799','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22404','799','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22405','799','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22406','799','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22407','799','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22408','799','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22409','799','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22410','799','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22411','799','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22412','799','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22413','799','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22414','799','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22415','799','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22416','799','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22417','799','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22418','799','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22419','799','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22420','799','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22421','799','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22422','799','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22423','799','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22424','799','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22425','799','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22426','799','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22427','799','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22428','799','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22429','799','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22430','799','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22431','799','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22432','799','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22433','799','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22434','799','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22435','799','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22436','799','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22437','799','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22438','799','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22439','799','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22440','799','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22441','799','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22442','799','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22443','799','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22444','799','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22445','799','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22446','799','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22447','799','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22448','799','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22449','799','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22450','799','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22451','799','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22452','799','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22453','799','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22454','799','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22455','799','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22456','799','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22457','799','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22458','799','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22459','799','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22460','799','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22461','799','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22462','799','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22463','799','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22464','799','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22465','799','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22466','799','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22467','799','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22468','799','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22469','799','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22470','799','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22471','799','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22472','799','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22473','799','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22474','799','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22475','799','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22476','799','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22477','799','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22478','799','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22479','799','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22480','799','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22481','799','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22482','799','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22483','799','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22484','799','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22485','799','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22486','799','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22487','799','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22488','799','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22489','799','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22490','799','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22491','799','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22492','799','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22493','799','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22494','799','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22495','799','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22496','799','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22497','799','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22498','799','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22499','799','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22500','799','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22501','799','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22502','799','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22503','799','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22504','799','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22505','799','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22506','799','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22507','799','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22508','799','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22509','799','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22510','799','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22511','799','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22512','799','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22513','799','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22514','799','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22515','799','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22516','799','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22517','799','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22518','799','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22519','799','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22520','799','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22521','799','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22522','799','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22523','799','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22524','799','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22525','799','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22526','799','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22527','799','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22528','799','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22529','799','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22530','799','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22531','799','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22532','799','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22533','799','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22534','799','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22535','799','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22536','799','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22537','799','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22538','799','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22539','799','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22540','799','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22541','799','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22542','799','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22543','799','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22544','799','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22545','799','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22546','799','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22547','799','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22548','799','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22549','799','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22550','799','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22551','799','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22552','799','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22553','799','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22554','799','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22555','799','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22556','799','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22557','799','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22558','799','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22559','799','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22560','799','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22561','799','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22562','799','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22563','799','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22564','799','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22565','799','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22566','799','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22567','799','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22568','799','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22569','799','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22570','799','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22571','799','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22572','799','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22573','799','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22574','799','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22575','799','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22576','799','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22577','799','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22578','799','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22579','799','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22580','799','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22581','799','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22582','799','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22583','799','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22584','799','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22585','799','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22586','799','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22587','799','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22588','799','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22589','799','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22590','799','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22591','799','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22592','799','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22593','799','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22594','799','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22595','799','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22596','799','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22597','799','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22598','799','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22599','799','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22600','799','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22601','799','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22602','799','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22603','799','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22604','799','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22605','799','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22606','799','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22607','799','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22608','799','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22609','799','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22610','799','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22611','799','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22612','799','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22613','799','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22614','799','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22615','799','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22616','799','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22617','799','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22618','799','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22619','799','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22620','799','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22621','799','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22622','799','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22623','799','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22624','799','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22625','799','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22626','799','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22627','799','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22628','799','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22629','799','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22630','799','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22631','799','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22632','799','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22633','799','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22634','799','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22635','799','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22636','799','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22637','799','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22638','799','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22639','799','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22640','799','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22641','799','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22642','799','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22643','799','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22644','799','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22645','799','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22646','799','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22647','799','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22648','799','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22649','799','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22650','799','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22651','799','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22652','799','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22653','799','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22654','800','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22655','800','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22656','801','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22657','801','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22658','801','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22659','802','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22660','802','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22661','802','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22662','802','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22663','802','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22664','802','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22665','803','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22666','803','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22667','803','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22668','803','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22669','803','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22670','803','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22671','803','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22672','803','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22673','803','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22674','803','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22675','803','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22676','803','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22677','803','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22678','803','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22679','803','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22680','803','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22681','803','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22682','803','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22683','803','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22684','803','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22685','803','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22686','803','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22687','803','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22688','803','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22689','803','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22690','803','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22691','803','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22692','803','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22693','803','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22694','803','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22695','803','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22696','803','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22697','803','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22698','803','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22699','803','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22700','803','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22701','803','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22702','803','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22703','803','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22704','803','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22705','803','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22706','803','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22707','803','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22708','803','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22709','803','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22710','803','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22711','803','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22712','803','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22713','803','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22714','803','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22715','803','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22716','803','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22717','803','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22718','803','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22719','803','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22720','803','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22721','803','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22722','803','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22723','803','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22724','803','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22725','803','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22726','803','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22727','803','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22728','803','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22729','803','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22730','803','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22731','803','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22732','803','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22733','803','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22734','803','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22735','803','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22736','803','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22737','803','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22738','803','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22739','803','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22740','803','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22741','803','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22742','803','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22743','803','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22744','803','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22745','803','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22746','803','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22747','803','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22748','803','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22749','803','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22750','803','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22751','803','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22752','803','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22753','803','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22754','803','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22755','803','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22756','803','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22757','803','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22758','803','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22759','803','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22760','803','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22761','803','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22762','803','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22763','803','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22764','803','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22765','803','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22766','803','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22767','803','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22768','803','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22769','803','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22770','803','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22771','803','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22772','803','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22773','803','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22774','803','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22775','803','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22776','803','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22777','803','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22778','803','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22779','803','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22780','803','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22781','803','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22782','803','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22783','803','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22784','803','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22785','803','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22786','803','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22787','803','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22788','803','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22789','803','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22790','803','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22791','803','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22792','803','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22793','803','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22794','803','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22795','803','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22796','803','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22797','803','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22798','803','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22799','803','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22800','803','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22801','803','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22802','803','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22803','803','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22804','803','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22805','803','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22806','803','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22807','803','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22808','803','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22809','803','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22810','803','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22811','803','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22812','803','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22813','803','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22814','803','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22815','803','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22816','803','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22817','803','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22818','803','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22819','803','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22820','803','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22821','803','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22822','803','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22823','803','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22824','803','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22825','803','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22826','803','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22827','803','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22828','803','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22829','803','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22830','803','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22831','803','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22832','803','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22833','803','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22834','803','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22835','803','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22836','803','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22837','803','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22838','803','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22839','803','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22840','803','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22841','803','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22842','803','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22843','803','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22844','803','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22845','803','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22846','803','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22847','803','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22848','803','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22849','803','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22850','803','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22851','803','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22852','803','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22853','803','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22854','803','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22855','803','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22856','803','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22857','803','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22858','803','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22859','803','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22860','803','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22861','803','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22862','803','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22863','803','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22864','803','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22865','803','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22866','803','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22867','803','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22868','803','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22869','803','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22870','803','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22871','803','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22872','803','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22873','803','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22874','803','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22875','803','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22876','803','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22877','803','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22878','803','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22879','803','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22880','803','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22881','803','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22882','803','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22883','803','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22884','803','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22885','803','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22886','803','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22887','803','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22888','803','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22889','803','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22890','803','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22891','803','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22892','803','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22893','803','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22894','803','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22895','803','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22896','803','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22897','803','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22898','803','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22899','803','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22900','803','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22901','803','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22902','803','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22903','803','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22904','803','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22905','803','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22906','803','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22907','803','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22908','803','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22909','803','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22910','803','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22911','803','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22912','803','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22913','803','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22914','803','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22915','803','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22916','803','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22917','803','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22918','803','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22919','803','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22920','803','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22921','803','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22922','803','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22923','803','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22924','803','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22925','803','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22926','803','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22927','803','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22928','803','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22929','803','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22930','803','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22931','803','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22932','803','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22933','803','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22934','803','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22935','803','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22936','803','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22937','803','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22938','803','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22939','803','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22940','803','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22941','803','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22942','803','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22943','803','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22944','803','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22945','803','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22946','803','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22947','803','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22948','803','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22949','803','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22950','803','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22951','804','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22952','804','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22953','805','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22954','805','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22955','805','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22956','806','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22957','806','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22958','806','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22959','806','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22960','806','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22961','806','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22962','807','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22963','807','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22964','807','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22965','807','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22966','807','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22967','807','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22968','807','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22969','807','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22970','807','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22971','807','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22972','807','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22973','807','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22974','807','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22975','807','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22976','807','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22977','807','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22978','807','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22979','807','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22980','807','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22981','807','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22982','807','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22983','807','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22984','807','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22985','807','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22986','807','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22987','807','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22988','807','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22989','807','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22990','807','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22991','807','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22992','807','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22993','807','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22994','807','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22995','807','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22996','807','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22997','807','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22998','807','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('22999','807','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23000','807','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23001','807','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23002','807','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23003','807','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23004','807','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23005','807','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23006','807','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23007','807','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23008','807','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23009','807','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23010','807','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23011','807','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23012','807','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23013','807','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23014','807','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23015','807','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23016','807','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23017','807','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23018','807','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23019','807','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23020','807','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23021','807','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23022','807','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23023','807','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23024','807','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23025','807','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23026','807','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23027','807','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23028','807','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23029','807','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23030','807','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23031','807','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23032','807','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23033','807','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23034','807','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23035','807','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23036','807','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23037','807','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23038','807','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23039','807','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23040','807','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23041','807','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23042','807','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23043','807','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23044','807','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23045','807','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23046','807','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23047','807','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23048','807','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23049','807','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23050','807','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23051','807','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23052','807','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23053','807','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23054','807','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23055','807','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23056','807','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23057','807','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23058','807','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23059','807','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23060','807','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23061','807','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23062','807','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23063','807','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23064','807','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23065','807','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23066','807','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23067','807','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23068','807','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23069','807','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23070','807','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23071','807','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23072','807','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23073','807','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23074','807','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23075','807','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23076','807','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23077','807','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23078','807','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23079','807','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23080','807','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23081','807','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23082','807','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23083','807','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23084','807','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23085','807','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23086','807','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23087','807','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23088','807','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23089','807','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23090','807','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23091','807','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23092','807','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23093','807','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23094','807','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23095','807','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23096','807','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23097','807','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23098','807','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23099','807','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23100','807','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23101','807','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23102','807','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23103','807','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23104','807','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23105','807','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23106','807','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23107','807','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23108','807','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23109','807','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23110','807','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23111','807','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23112','807','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23113','807','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23114','807','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23115','807','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23116','807','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23117','807','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23118','807','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23119','807','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23120','807','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23121','807','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23122','807','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23123','807','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23124','807','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23125','807','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23126','807','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23127','807','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23128','807','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23129','807','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23130','807','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23131','807','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23132','807','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23133','807','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23134','807','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23135','807','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23136','807','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23137','807','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23138','807','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23139','807','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23140','807','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23141','807','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23142','807','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23143','807','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23144','807','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23145','807','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23146','807','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23147','807','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23148','807','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23149','807','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23150','807','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23151','807','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23152','807','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23153','807','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23154','807','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23155','807','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23156','807','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23157','807','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23158','807','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23159','807','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23160','807','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23161','807','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23162','807','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23163','807','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23164','807','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23165','807','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23166','807','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23167','807','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23168','807','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23169','807','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23170','807','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23171','807','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23172','807','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23173','807','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23174','807','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23175','807','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23176','807','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23177','807','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23178','807','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23179','807','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23180','807','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23181','807','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23182','807','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23183','807','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23184','807','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23185','807','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23186','807','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23187','807','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23188','807','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23189','807','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23190','807','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23191','807','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23192','807','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23193','807','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23194','807','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23195','807','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23196','807','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23197','807','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23198','807','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23199','807','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23200','807','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23201','807','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23202','807','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23203','807','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23204','807','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23205','807','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23206','807','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23207','807','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23208','807','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23209','807','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23210','807','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23211','807','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23212','807','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23213','807','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23214','807','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23215','807','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23216','807','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23217','807','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23218','807','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23219','807','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23220','807','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23221','807','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23222','807','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23223','807','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23224','807','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23225','807','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23226','807','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23227','807','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23228','807','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23229','807','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23230','807','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23231','807','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23232','807','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23233','807','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23234','807','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23235','807','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23236','807','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23237','807','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23238','807','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23239','807','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23240','807','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23241','807','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23242','807','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23243','807','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23244','807','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23245','807','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23246','807','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23247','807','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23248','808','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23249','808','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23250','809','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23251','809','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23252','809','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23253','810','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23254','810','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23255','810','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23256','810','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23257','810','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23258','810','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23259','811','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23260','811','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23261','811','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23262','811','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23263','811','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23264','811','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23265','811','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23266','811','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23267','811','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23268','811','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23269','811','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23270','811','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23271','811','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23272','811','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23273','811','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23274','811','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23275','811','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23276','811','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23277','811','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23278','811','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23279','811','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23280','811','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23281','811','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23282','811','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23283','811','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23284','811','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23285','811','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23286','811','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23287','811','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23288','811','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23289','811','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23290','811','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23291','811','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23292','811','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23293','811','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23294','811','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23295','811','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23296','811','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23297','811','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23298','811','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23299','811','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23300','811','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23301','811','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23302','811','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23303','811','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23304','811','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23305','811','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23306','811','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23307','811','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23308','811','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23309','811','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23310','811','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23311','811','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23312','811','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23313','811','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23314','811','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23315','811','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23316','811','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23317','811','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23318','811','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23319','811','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23320','811','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23321','811','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23322','811','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23323','811','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23324','811','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23325','811','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23326','811','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23327','811','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23328','811','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23329','811','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23330','811','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23331','811','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23332','811','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23333','811','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23334','811','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23335','811','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23336','811','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23337','811','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23338','811','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23339','811','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23340','811','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23341','811','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23342','811','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23343','811','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23344','811','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23345','811','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23346','811','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23347','811','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23348','811','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23349','811','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23350','811','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23351','811','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23352','811','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23353','811','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23354','811','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23355','811','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23356','811','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23357','811','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23358','811','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23359','811','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23360','811','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23361','811','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23362','811','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23363','811','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23364','811','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23365','811','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23366','811','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23367','811','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23368','811','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23369','811','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23370','811','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23371','811','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23372','811','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23373','811','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23374','811','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23375','811','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23376','811','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23377','811','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23378','811','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23379','811','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23380','811','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23381','811','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23382','811','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23383','811','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23384','811','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23385','811','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23386','811','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23387','811','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23388','811','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23389','811','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23390','811','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23391','811','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23392','811','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23393','811','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23394','811','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23395','811','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23396','811','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23397','811','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23398','811','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23399','811','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23400','811','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23401','811','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23402','811','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23403','811','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23404','811','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23405','811','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23406','811','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23407','811','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23408','811','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23409','811','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23410','811','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23411','811','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23412','811','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23413','811','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23414','811','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23415','811','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23416','811','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23417','811','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23418','811','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23419','811','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23420','811','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23421','811','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23422','811','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23423','811','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23424','811','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23425','811','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23426','811','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23427','811','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23428','811','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23429','811','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23430','811','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23431','811','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23432','811','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23433','811','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23434','811','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23435','811','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23436','811','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23437','811','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23438','811','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23439','811','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23440','811','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23441','811','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23442','811','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23443','811','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23444','811','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23445','811','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23446','811','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23447','811','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23448','811','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23449','811','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23450','811','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23451','811','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23452','811','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23453','811','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23454','811','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23455','811','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23456','811','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23457','811','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23458','811','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23459','811','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23460','811','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23461','811','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23462','811','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23463','811','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23464','811','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23465','811','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23466','811','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23467','811','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23468','811','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23469','811','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23470','811','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23471','811','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23472','811','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23473','811','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23474','811','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23475','811','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23476','811','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23477','811','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23478','811','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23479','811','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23480','811','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23481','811','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23482','811','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23483','811','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23484','811','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23485','811','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23486','811','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23487','811','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23488','811','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23489','811','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23490','811','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23491','811','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23492','811','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23493','811','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23494','811','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23495','811','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23496','811','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23497','811','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23498','811','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23499','811','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23500','811','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23501','811','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23502','811','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23503','811','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23504','811','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23505','811','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23506','811','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23507','811','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23508','811','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23509','811','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23510','811','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23511','811','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23512','811','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23513','811','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23514','811','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23515','811','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23516','811','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23517','811','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23518','811','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23519','811','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23520','811','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23521','811','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23522','811','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23523','811','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23524','811','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23525','811','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23526','811','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23527','811','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23528','811','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23529','811','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23530','811','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23531','811','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23532','811','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23533','811','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23534','811','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23535','811','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23536','811','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23537','811','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23538','811','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23539','811','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23540','811','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23541','811','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23542','811','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23543','811','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23544','811','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23545','812','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23546','812','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23547','813','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23548','813','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23549','813','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23550','814','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23551','814','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23552','814','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23553','814','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23554','814','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23555','814','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23556','815','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23557','815','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23558','815','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23559','815','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23560','815','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23561','815','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23562','815','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23563','815','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23564','815','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23565','815','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23566','815','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23567','815','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23568','815','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23569','815','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23570','815','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23571','815','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23572','815','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23573','815','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23574','815','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23575','815','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23576','815','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23577','815','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23578','815','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23579','815','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23580','815','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23581','815','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23582','815','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23583','815','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23584','815','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23585','815','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23586','815','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23587','815','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23588','815','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23589','815','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23590','815','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23591','815','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23592','815','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23593','815','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23594','815','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23595','815','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23596','815','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23597','815','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23598','815','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23599','815','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23600','815','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23601','815','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23602','815','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23603','815','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23604','815','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23605','815','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23606','815','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23607','815','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23608','815','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23609','815','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23610','815','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23611','815','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23612','815','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23613','815','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23614','815','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23615','815','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23616','815','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23617','815','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23618','815','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23619','815','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23620','815','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23621','815','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23622','815','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23623','815','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23624','815','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23625','815','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23626','815','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23627','815','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23628','815','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23629','815','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23630','815','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23631','815','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23632','815','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23633','815','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23634','815','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23635','815','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23636','815','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23637','815','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23638','815','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23639','815','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23640','815','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23641','815','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23642','815','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23643','815','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23644','815','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23645','815','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23646','815','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23647','815','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23648','815','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23649','815','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23650','815','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23651','815','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23652','815','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23653','815','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23654','815','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23655','815','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23656','815','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23657','815','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23658','815','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23659','815','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23660','815','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23661','815','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23662','815','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23663','815','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23664','815','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23665','815','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23666','815','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23667','815','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23668','815','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23669','815','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23670','815','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23671','815','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23672','815','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23673','815','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23674','815','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23675','815','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23676','815','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23677','815','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23678','815','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23679','815','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23680','815','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23681','815','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23682','815','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23683','815','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23684','815','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23685','815','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23686','815','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23687','815','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23688','815','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23689','815','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23690','815','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23691','815','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23692','815','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23693','815','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23694','815','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23695','815','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23696','815','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23697','815','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23698','815','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23699','815','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23700','815','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23701','815','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23702','815','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23703','815','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23704','815','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23705','815','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23706','815','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23707','815','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23708','815','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23709','815','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23710','815','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23711','815','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23712','815','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23713','815','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23714','815','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23715','815','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23716','815','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23717','815','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23718','815','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23719','815','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23720','815','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23721','815','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23722','815','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23723','815','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23724','815','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23725','815','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23726','815','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23727','815','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23728','815','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23729','815','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23730','815','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23731','815','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23732','815','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23733','815','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23734','815','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23735','815','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23736','815','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23737','815','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23738','815','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23739','815','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23740','815','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23741','815','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23742','815','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23743','815','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23744','815','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23745','815','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23746','815','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23747','815','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23748','815','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23749','815','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23750','815','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23751','815','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23752','815','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23753','815','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23754','815','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23755','815','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23756','815','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23757','815','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23758','815','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23759','815','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23760','815','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23761','815','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23762','815','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23763','815','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23764','815','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23765','815','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23766','815','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23767','815','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23768','815','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23769','815','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23770','815','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23771','815','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23772','815','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23773','815','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23774','815','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23775','815','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23776','815','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23777','815','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23778','815','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23779','815','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23780','815','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23781','815','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23782','815','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23783','815','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23784','815','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23785','815','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23786','815','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23787','815','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23788','815','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23789','815','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23790','815','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23791','815','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23792','815','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23793','815','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23794','815','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23795','815','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23796','815','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23797','815','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23798','815','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23799','815','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23800','815','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23801','815','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23802','815','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23803','815','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23804','815','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23805','815','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23806','815','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23807','815','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23808','815','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23809','815','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23810','815','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23811','815','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23812','815','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23813','815','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23814','815','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23815','815','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23816','815','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23817','815','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23818','815','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23819','815','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23820','815','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23821','815','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23822','815','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23823','815','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23824','815','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23825','815','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23826','815','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23827','815','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23828','815','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23829','815','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23830','815','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23831','815','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23832','815','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23833','815','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23834','815','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23835','815','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23836','815','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23837','815','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23838','815','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23839','815','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23840','815','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23841','815','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23842','816','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23843','816','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23844','817','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23845','817','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23846','817','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23847','818','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23848','818','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23849','818','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23850','818','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23851','818','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23852','818','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23853','819','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23854','819','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23855','819','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23856','819','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23857','819','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23858','819','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23859','819','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23860','819','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23861','819','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23862','819','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23863','819','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23864','819','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23865','819','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23866','819','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23867','819','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23868','819','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23869','819','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23870','819','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23871','819','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23872','819','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23873','819','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23874','819','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23875','819','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23876','819','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23877','819','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23878','819','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23879','819','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23880','819','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23881','819','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23882','819','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23883','819','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23884','819','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23885','819','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23886','819','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23887','819','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23888','819','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23889','819','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23890','819','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23891','819','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23892','819','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23893','819','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23894','819','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23895','819','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23896','819','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23897','819','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23898','819','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23899','819','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23900','819','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23901','819','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23902','819','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23903','819','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23904','819','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23905','819','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23906','819','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23907','819','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23908','819','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23909','819','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23910','819','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23911','819','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23912','819','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23913','819','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23914','819','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23915','819','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23916','819','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23917','819','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23918','819','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23919','819','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23920','819','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23921','819','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23922','819','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23923','819','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23924','819','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23925','819','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23926','819','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23927','819','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23928','819','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23929','819','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23930','819','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23931','819','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23932','819','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23933','819','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23934','819','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23935','819','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23936','819','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23937','819','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23938','819','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23939','819','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23940','819','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23941','819','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23942','819','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23943','819','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23944','819','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23945','819','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23946','819','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23947','819','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23948','819','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23949','819','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23950','819','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23951','819','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23952','819','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23953','819','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23954','819','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23955','819','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23956','819','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23957','819','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23958','819','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23959','819','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23960','819','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23961','819','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23962','819','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23963','819','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23964','819','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23965','819','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23966','819','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23967','819','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23968','819','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23969','819','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23970','819','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23971','819','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23972','819','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23973','819','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23974','819','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23975','819','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23976','819','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23977','819','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23978','819','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23979','819','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23980','819','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23981','819','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23982','819','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23983','819','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23984','819','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23985','819','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23986','819','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23987','819','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23988','819','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23989','819','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23990','819','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23991','819','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23992','819','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23993','819','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23994','819','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23995','819','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23996','819','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23997','819','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23998','819','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('23999','819','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24000','819','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24001','819','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24002','819','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24003','819','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24004','819','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24005','819','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24006','819','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24007','819','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24008','819','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24009','819','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24010','819','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24011','819','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24012','819','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24013','819','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24014','819','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24015','819','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24016','819','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24017','819','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24018','819','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24019','819','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24020','819','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24021','819','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24022','819','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24023','819','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24024','819','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24025','819','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24026','819','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24027','819','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24028','819','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24029','819','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24030','819','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24031','819','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24032','819','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24033','819','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24034','819','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24035','819','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24036','819','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24037','819','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24038','819','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24039','819','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24040','819','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24041','819','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24042','819','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24043','819','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24044','819','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24045','819','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24046','819','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24047','819','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24048','819','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24049','819','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24050','819','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24051','819','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24052','819','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24053','819','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24054','819','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24055','819','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24056','819','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24057','819','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24058','819','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24059','819','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24060','819','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24061','819','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24062','819','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24063','819','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24064','819','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24065','819','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24066','819','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24067','819','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24068','819','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24069','819','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24070','819','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24071','819','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24072','819','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24073','819','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24074','819','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24075','819','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24076','819','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24077','819','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24078','819','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24079','819','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24080','819','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24081','819','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24082','819','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24083','819','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24084','819','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24085','819','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24086','819','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24087','819','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24088','819','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24089','819','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24090','819','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24091','819','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24092','819','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24093','819','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24094','819','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24095','819','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24096','819','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24097','819','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24098','819','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24099','819','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24100','819','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24101','819','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24102','819','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24103','819','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24104','819','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24105','819','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24106','819','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24107','819','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24108','819','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24109','819','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24110','819','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24111','819','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24112','819','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24113','819','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24114','819','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24115','819','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24116','819','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24117','819','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24118','819','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24119','819','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24120','819','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24121','819','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24122','819','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24123','819','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24124','819','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24125','819','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24126','819','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24127','819','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24128','819','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24129','819','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24130','819','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24131','819','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24132','819','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24133','819','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24134','819','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24135','819','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24136','819','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24137','819','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24138','819','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24139','820','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24140','820','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24141','821','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24142','821','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24143','821','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24144','822','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24145','822','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24146','822','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24147','822','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24148','822','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24149','822','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24150','823','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24151','823','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24152','823','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24153','823','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24154','823','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24155','823','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24156','823','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24157','823','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24158','823','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24159','823','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24160','823','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24161','823','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24162','823','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24163','823','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24164','823','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24165','823','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24166','823','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24167','823','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24168','823','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24169','823','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24170','823','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24171','823','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24172','823','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24173','823','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24174','823','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24175','823','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24176','823','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24177','823','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24178','823','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24179','823','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24180','823','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24181','823','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24182','823','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24183','823','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24184','823','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24185','823','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24186','823','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24187','823','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24188','823','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24189','823','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24190','823','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24191','823','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24192','823','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24193','823','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24194','823','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24195','823','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24196','823','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24197','823','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24198','823','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24199','823','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24200','823','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24201','823','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24202','823','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24203','823','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24204','823','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24205','823','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24206','823','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24207','823','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24208','823','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24209','823','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24210','823','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24211','823','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24212','823','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24213','823','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24214','823','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24215','823','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24216','823','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24217','823','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24218','823','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24219','823','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24220','823','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24221','823','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24222','823','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24223','823','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24224','823','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24225','823','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24226','823','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24227','823','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24228','823','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24229','823','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24230','823','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24231','823','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24232','823','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24233','823','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24234','823','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24235','823','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24236','823','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24237','823','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24238','823','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24239','823','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24240','823','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24241','823','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24242','823','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24243','823','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24244','823','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24245','823','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24246','823','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24247','823','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24248','823','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24249','823','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24250','823','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24251','823','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24252','823','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24253','823','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24254','823','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24255','823','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24256','823','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24257','823','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24258','823','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24259','823','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24260','823','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24261','823','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24262','823','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24263','823','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24264','823','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24265','823','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24266','823','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24267','823','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24268','823','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24269','823','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24270','823','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24271','823','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24272','823','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24273','823','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24274','823','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24275','823','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24276','823','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24277','823','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24278','823','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24279','823','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24280','823','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24281','823','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24282','823','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24283','823','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24284','823','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24285','823','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24286','823','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24287','823','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24288','823','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24289','823','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24290','823','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24291','823','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24292','823','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24293','823','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24294','823','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24295','823','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24296','823','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24297','823','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24298','823','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24299','823','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24300','823','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24301','823','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24302','823','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24303','823','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24304','823','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24305','823','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24306','823','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24307','823','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24308','823','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24309','823','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24310','823','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24311','823','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24312','823','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24313','823','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24314','823','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24315','823','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24316','823','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24317','823','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24318','823','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24319','823','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24320','823','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24321','823','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24322','823','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24323','823','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24324','823','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24325','823','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24326','823','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24327','823','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24328','823','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24329','823','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24330','823','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24331','823','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24332','823','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24333','823','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24334','823','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24335','823','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24336','823','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24337','823','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24338','823','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24339','823','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24340','823','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24341','823','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24342','823','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24343','823','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24344','823','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24345','823','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24346','823','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24347','823','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24348','823','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24349','823','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24350','823','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24351','823','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24352','823','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24353','823','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24354','823','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24355','823','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24356','823','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24357','823','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24358','823','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24359','823','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24360','823','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24361','823','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24362','823','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24363','823','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24364','823','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24365','823','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24366','823','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24367','823','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24368','823','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24369','823','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24370','823','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24371','823','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24372','823','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24373','823','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24374','823','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24375','823','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24376','823','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24377','823','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24378','823','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24379','823','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24380','823','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24381','823','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24382','823','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24383','823','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24384','823','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24385','823','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24386','823','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24387','823','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24388','823','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24389','823','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24390','823','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24391','823','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24392','823','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24393','823','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24394','823','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24395','823','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24396','823','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24397','823','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24398','823','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24399','823','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24400','823','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24401','823','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24402','823','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24403','823','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24404','823','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24405','823','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24406','823','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24407','823','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24408','823','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24409','823','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24410','823','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24411','823','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24412','823','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24413','823','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24414','823','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24415','823','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24416','823','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24417','823','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24418','823','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24419','823','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24420','823','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24421','823','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24422','823','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24423','823','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24424','823','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24425','823','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24426','823','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24427','823','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24428','823','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24429','823','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24430','823','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24431','823','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24432','823','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24433','823','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24434','823','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24435','823','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24436','824','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24437','824','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24438','825','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24439','825','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24440','825','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24441','826','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24442','826','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24443','826','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24444','826','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24445','826','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24446','826','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24447','827','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24448','827','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24449','827','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24450','827','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24451','827','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24452','827','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24453','827','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24454','827','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24455','827','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24456','827','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24457','827','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24458','827','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24459','827','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24460','827','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24461','827','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24462','827','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24463','827','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24464','827','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24465','827','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24466','827','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24467','827','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24468','827','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24469','827','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24470','827','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24471','827','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24472','827','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24473','827','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24474','827','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24475','827','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24476','827','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24477','827','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24478','827','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24479','827','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24480','827','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24481','827','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24482','827','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24483','827','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24484','827','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24485','827','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24486','827','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24487','827','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24488','827','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24489','827','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24490','827','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24491','827','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24492','827','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24493','827','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24494','827','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24495','827','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24496','827','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24497','827','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24498','827','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24499','827','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24500','827','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24501','827','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24502','827','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24503','827','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24504','827','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24505','827','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24506','827','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24507','827','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24508','827','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24509','827','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24510','827','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24511','827','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24512','827','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24513','827','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24514','827','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24515','827','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24516','827','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24517','827','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24518','827','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24519','827','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24520','827','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24521','827','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24522','827','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24523','827','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24524','827','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24525','827','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24526','827','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24527','827','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24528','827','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24529','827','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24530','827','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24531','827','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24532','827','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24533','827','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24534','827','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24535','827','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24536','827','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24537','827','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24538','827','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24539','827','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24540','827','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24541','827','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24542','827','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24543','827','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24544','827','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24545','827','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24546','827','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24547','827','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24548','827','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24549','827','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24550','827','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24551','827','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24552','827','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24553','827','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24554','827','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24555','827','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24556','827','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24557','827','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24558','827','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24559','827','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24560','827','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24561','827','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24562','827','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24563','827','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24564','827','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24565','827','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24566','827','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24567','827','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24568','827','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24569','827','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24570','827','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24571','827','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24572','827','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24573','827','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24574','827','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24575','827','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24576','827','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24577','827','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24578','827','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24579','827','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24580','827','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24581','827','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24582','827','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24583','827','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24584','827','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24585','827','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24586','827','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24587','827','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24588','827','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24589','827','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24590','827','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24591','827','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24592','827','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24593','827','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24594','827','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24595','827','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24596','827','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24597','827','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24598','827','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24599','827','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24600','827','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24601','827','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24602','827','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24603','827','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24604','827','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24605','827','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24606','827','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24607','827','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24608','827','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24609','827','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24610','827','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24611','827','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24612','827','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24613','827','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24614','827','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24615','827','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24616','827','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24617','827','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24618','827','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24619','827','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24620','827','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24621','827','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24622','827','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24623','827','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24624','827','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24625','827','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24626','827','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24627','827','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24628','827','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24629','827','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24630','827','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24631','827','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24632','827','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24633','827','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24634','827','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24635','827','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24636','827','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24637','827','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24638','827','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24639','827','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24640','827','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24641','827','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24642','827','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24643','827','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24644','827','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24645','827','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24646','827','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24647','827','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24648','827','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24649','827','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24650','827','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24651','827','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24652','827','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24653','827','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24654','827','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24655','827','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24656','827','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24657','827','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24658','827','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24659','827','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24660','827','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24661','827','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24662','827','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24663','827','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24664','827','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24665','827','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24666','827','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24667','827','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24668','827','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24669','827','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24670','827','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24671','827','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24672','827','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24673','827','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24674','827','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24675','827','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24676','827','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24677','827','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24678','827','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24679','827','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24680','827','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24681','827','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24682','827','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24683','827','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24684','827','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24685','827','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24686','827','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24687','827','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24688','827','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24689','827','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24690','827','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24691','827','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24692','827','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24693','827','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24694','827','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24695','827','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24696','827','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24697','827','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24698','827','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24699','827','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24700','827','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24701','827','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24702','827','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24703','827','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24704','827','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24705','827','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24706','827','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24707','827','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24708','827','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24709','827','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24710','827','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24711','827','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24712','827','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24713','827','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24714','827','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24715','827','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24716','827','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24717','827','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24718','827','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24719','827','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24720','827','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24721','827','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24722','827','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24723','827','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24724','827','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24725','827','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24726','827','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24727','827','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24728','827','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24729','827','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24730','827','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24731','827','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24732','827','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24733','828','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24734','828','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24735','829','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24736','829','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24737','829','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24738','830','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24739','830','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24740','830','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24741','830','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24742','830','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24743','830','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24744','831','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24745','831','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24746','831','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24747','831','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24748','831','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24749','831','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24750','831','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24751','831','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24752','831','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24753','831','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24754','831','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24755','831','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24756','831','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24757','831','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24758','831','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24759','831','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24760','831','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24761','831','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24762','831','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24763','831','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24764','831','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24765','831','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24766','831','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24767','831','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24768','831','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24769','831','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24770','831','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24771','831','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24772','831','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24773','831','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24774','831','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24775','831','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24776','831','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24777','831','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24778','831','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24779','831','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24780','831','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24781','831','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24782','831','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24783','831','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24784','831','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24785','831','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24786','831','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24787','831','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24788','831','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24789','831','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24790','831','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24791','831','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24792','831','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24793','831','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24794','831','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24795','831','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24796','831','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24797','831','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24798','831','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24799','831','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24800','831','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24801','831','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24802','831','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24803','831','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24804','831','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24805','831','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24806','831','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24807','831','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24808','831','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24809','831','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24810','831','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24811','831','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24812','831','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24813','831','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24814','831','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24815','831','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24816','831','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24817','831','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24818','831','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24819','831','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24820','831','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24821','831','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24822','831','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24823','831','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24824','831','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24825','831','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24826','831','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24827','831','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24828','831','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24829','831','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24830','831','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24831','831','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24832','831','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24833','831','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24834','831','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24835','831','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24836','831','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24837','831','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24838','831','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24839','831','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24840','831','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24841','831','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24842','831','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24843','831','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24844','831','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24845','831','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24846','831','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24847','831','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24848','831','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24849','831','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24850','831','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24851','831','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24852','831','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24853','831','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24854','831','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24855','831','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24856','831','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24857','831','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24858','831','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24859','831','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24860','831','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24861','831','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24862','831','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24863','831','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24864','831','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24865','831','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24866','831','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24867','831','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24868','831','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24869','831','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24870','831','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24871','831','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24872','831','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24873','831','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24874','831','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24875','831','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24876','831','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24877','831','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24878','831','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24879','831','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24880','831','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24881','831','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24882','831','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24883','831','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24884','831','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24885','831','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24886','831','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24887','831','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24888','831','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24889','831','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24890','831','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24891','831','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24892','831','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24893','831','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24894','831','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24895','831','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24896','831','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24897','831','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24898','831','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24899','831','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24900','831','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24901','831','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24902','831','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24903','831','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24904','831','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24905','831','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24906','831','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24907','831','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24908','831','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24909','831','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24910','831','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24911','831','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24912','831','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24913','831','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24914','831','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24915','831','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24916','831','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24917','831','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24918','831','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24919','831','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24920','831','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24921','831','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24922','831','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24923','831','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24924','831','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24925','831','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24926','831','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24927','831','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24928','831','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24929','831','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24930','831','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24931','831','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24932','831','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24933','831','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24934','831','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24935','831','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24936','831','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24937','831','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24938','831','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24939','831','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24940','831','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24941','831','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24942','831','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24943','831','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24944','831','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24945','831','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24946','831','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24947','831','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24948','831','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24949','831','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24950','831','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24951','831','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24952','831','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24953','831','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24954','831','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24955','831','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24956','831','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24957','831','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24958','831','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24959','831','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24960','831','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24961','831','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24962','831','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24963','831','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24964','831','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24965','831','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24966','831','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24967','831','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24968','831','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24969','831','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24970','831','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24971','831','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24972','831','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24973','831','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24974','831','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24975','831','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24976','831','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24977','831','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24978','831','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24979','831','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24980','831','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24981','831','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24982','831','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24983','831','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24984','831','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24985','831','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24986','831','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24987','831','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24988','831','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24989','831','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24990','831','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24991','831','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24992','831','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24993','831','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24994','831','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24995','831','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24996','831','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24997','831','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24998','831','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('24999','831','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25000','831','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25001','831','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25002','831','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25003','831','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25004','831','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25005','831','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25006','831','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25007','831','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25008','831','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25009','831','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25010','831','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25011','831','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25012','831','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25013','831','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25014','831','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25015','831','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25016','831','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25017','831','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25018','831','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25019','831','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25020','831','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25021','831','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25022','831','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25023','831','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25024','831','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25025','831','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25026','831','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25027','831','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25028','831','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25029','831','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25030','832','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25031','832','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25032','833','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25033','833','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25034','833','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25035','834','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25036','834','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25037','834','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25038','834','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25039','834','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25040','834','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25041','835','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25042','835','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25043','835','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25044','835','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25045','835','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25046','835','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25047','835','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25048','835','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25049','835','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25050','835','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25051','835','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25052','835','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25053','835','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25054','835','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25055','835','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25056','835','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25057','835','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25058','835','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25059','835','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25060','835','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25061','835','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25062','835','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25063','835','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25064','835','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25065','835','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25066','835','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25067','835','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25068','835','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25069','835','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25070','835','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25071','835','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25072','835','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25073','835','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25074','835','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25075','835','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25076','835','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25077','835','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25078','835','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25079','835','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25080','835','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25081','835','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25082','835','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25083','835','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25084','835','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25085','835','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25086','835','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25087','835','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25088','835','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25089','835','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25090','835','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25091','835','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25092','835','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25093','835','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25094','835','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25095','835','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25096','835','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25097','835','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25098','835','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25099','835','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25100','835','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25101','835','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25102','835','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25103','835','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25104','835','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25105','835','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25106','835','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25107','835','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25108','835','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25109','835','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25110','835','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25111','835','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25112','835','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25113','835','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25114','835','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25115','835','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25116','835','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25117','835','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25118','835','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25119','835','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25120','835','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25121','835','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25122','835','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25123','835','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25124','835','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25125','835','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25126','835','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25127','835','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25128','835','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25129','835','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25130','835','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25131','835','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25132','835','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25133','835','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25134','835','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25135','835','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25136','835','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25137','835','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25138','835','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25139','835','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25140','835','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25141','835','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25142','835','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25143','835','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25144','835','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25145','835','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25146','835','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25147','835','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25148','835','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25149','835','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25150','835','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25151','835','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25152','835','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25153','835','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25154','835','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25155','835','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25156','835','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25157','835','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25158','835','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25159','835','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25160','835','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25161','835','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25162','835','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25163','835','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25164','835','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25165','835','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25166','835','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25167','835','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25168','835','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25169','835','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25170','835','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25171','835','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25172','835','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25173','835','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25174','835','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25175','835','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25176','835','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25177','835','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25178','835','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25179','835','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25180','835','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25181','835','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25182','835','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25183','835','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25184','835','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25185','835','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25186','835','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25187','835','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25188','835','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25189','835','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25190','835','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25191','835','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25192','835','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25193','835','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25194','835','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25195','835','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25196','835','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25197','835','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25198','835','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25199','835','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25200','835','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25201','835','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25202','835','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25203','835','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25204','835','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25205','835','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25206','835','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25207','835','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25208','835','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25209','835','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25210','835','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25211','835','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25212','835','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25213','835','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25214','835','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25215','835','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25216','835','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25217','835','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25218','835','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25219','835','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25220','835','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25221','835','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25222','835','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25223','835','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25224','835','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25225','835','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25226','835','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25227','835','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25228','835','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25229','835','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25230','835','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25231','835','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25232','835','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25233','835','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25234','835','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25235','835','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25236','835','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25237','835','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25238','835','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25239','835','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25240','835','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25241','835','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25242','835','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25243','835','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25244','835','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25245','835','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25246','835','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25247','835','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25248','835','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25249','835','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25250','835','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25251','835','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25252','835','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25253','835','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25254','835','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25255','835','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25256','835','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25257','835','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25258','835','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25259','835','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25260','835','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25261','835','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25262','835','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25263','835','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25264','835','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25265','835','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25266','835','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25267','835','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25268','835','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25269','835','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25270','835','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25271','835','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25272','835','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25273','835','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25274','835','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25275','835','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25276','835','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25277','835','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25278','835','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25279','835','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25280','835','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25281','835','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25282','835','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25283','835','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25284','835','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25285','835','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25286','835','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25287','835','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25288','835','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25289','835','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25290','835','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25291','835','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25292','835','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25293','835','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25294','835','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25295','835','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25296','835','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25297','835','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25298','835','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25299','835','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25300','835','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25301','835','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25302','835','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25303','835','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25304','835','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25305','835','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25306','835','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25307','835','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25308','835','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25309','835','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25310','835','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25311','835','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25312','835','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25313','835','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25314','835','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25315','835','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25316','835','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25317','835','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25318','835','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25319','835','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25320','835','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25321','835','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25322','835','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25323','835','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25324','835','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25325','835','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25326','835','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25327','836','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25328','836','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25329','837','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25330','837','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25331','837','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25332','838','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25333','838','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25334','838','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25335','838','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25336','838','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25337','838','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25338','839','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25339','839','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25340','839','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25341','839','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25342','839','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25343','839','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25344','839','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25345','839','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25346','839','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25347','839','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25348','839','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25349','839','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25350','839','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25351','839','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25352','839','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25353','839','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25354','839','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25355','839','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25356','839','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25357','839','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25358','839','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25359','839','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25360','839','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25361','839','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25362','839','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25363','839','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25364','839','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25365','839','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25366','839','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25367','839','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25368','839','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25369','839','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25370','839','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25371','839','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25372','839','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25373','839','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25374','839','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25375','839','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25376','839','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25377','839','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25378','839','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25379','839','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25380','839','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25381','839','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25382','839','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25383','839','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25384','839','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25385','839','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25386','839','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25387','839','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25388','839','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25389','839','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25390','839','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25391','839','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25392','839','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25393','839','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25394','839','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25395','839','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25396','839','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25397','839','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25398','839','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25399','839','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25400','839','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25401','839','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25402','839','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25403','839','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25404','839','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25405','839','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25406','839','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25407','839','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25408','839','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25409','839','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25410','839','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25411','839','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25412','839','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25413','839','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25414','839','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25415','839','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25416','839','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25417','839','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25418','839','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25419','839','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25420','839','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25421','839','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25422','839','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25423','839','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25424','839','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25425','839','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25426','839','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25427','839','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25428','839','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25429','839','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25430','839','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25431','839','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25432','839','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25433','839','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25434','839','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25435','839','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25436','839','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25437','839','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25438','839','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25439','839','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25440','839','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25441','839','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25442','839','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25443','839','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25444','839','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25445','839','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25446','839','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25447','839','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25448','839','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25449','839','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25450','839','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25451','839','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25452','839','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25453','839','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25454','839','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25455','839','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25456','839','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25457','839','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25458','839','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25459','839','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25460','839','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25461','839','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25462','839','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25463','839','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25464','839','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25465','839','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25466','839','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25467','839','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25468','839','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25469','839','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25470','839','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25471','839','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25472','839','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25473','839','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25474','839','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25475','839','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25476','839','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25477','839','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25478','839','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25479','839','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25480','839','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25481','839','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25482','839','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25483','839','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25484','839','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25485','839','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25486','839','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25487','839','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25488','839','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25489','839','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25490','839','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25491','839','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25492','839','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25493','839','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25494','839','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25495','839','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25496','839','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25497','839','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25498','839','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25499','839','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25500','839','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25501','839','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25502','839','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25503','839','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25504','839','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25505','839','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25506','839','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25507','839','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25508','839','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25509','839','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25510','839','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25511','839','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25512','839','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25513','839','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25514','839','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25515','839','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25516','839','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25517','839','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25518','839','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25519','839','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25520','839','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25521','839','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25522','839','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25523','839','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25524','839','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25525','839','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25526','839','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25527','839','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25528','839','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25529','839','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25530','839','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25531','839','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25532','839','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25533','839','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25534','839','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25535','839','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25536','839','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25537','839','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25538','839','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25539','839','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25540','839','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25541','839','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25542','839','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25543','839','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25544','839','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25545','839','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25546','839','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25547','839','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25548','839','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25549','839','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25550','839','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25551','839','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25552','839','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25553','839','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25554','839','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25555','839','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25556','839','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25557','839','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25558','839','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25559','839','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25560','839','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25561','839','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25562','839','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25563','839','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25564','839','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25565','839','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25566','839','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25567','839','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25568','839','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25569','839','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25570','839','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25571','839','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25572','839','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25573','839','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25574','839','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25575','839','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25576','839','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25577','839','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25578','839','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25579','839','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25580','839','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25581','839','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25582','839','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25583','839','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25584','839','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25585','839','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25586','839','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25587','839','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25588','839','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25589','839','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25590','839','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25591','839','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25592','839','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25593','839','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25594','839','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25595','839','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25596','839','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25597','839','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25598','839','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25599','839','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25600','839','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25601','839','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25602','839','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25603','839','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25604','839','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25605','839','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25606','839','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25607','839','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25608','839','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25609','839','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25610','839','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25611','839','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25612','839','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25613','839','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25614','839','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25615','839','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25616','839','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25617','839','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25618','839','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25619','839','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25620','839','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25621','839','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25622','839','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25623','839','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25624','840','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25625','840','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25626','841','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25627','841','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25628','841','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25629','842','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25630','842','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25631','842','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25632','842','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25633','842','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25634','842','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25635','843','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25636','843','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25637','843','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25638','843','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25639','843','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25640','843','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25641','843','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25642','843','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25643','843','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25644','843','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25645','843','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25646','843','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25647','843','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25648','843','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25649','843','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25650','843','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25651','843','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25652','843','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25653','843','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25654','843','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25655','843','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25656','843','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25657','843','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25658','843','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25659','843','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25660','843','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25661','843','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25662','843','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25663','843','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25664','843','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25665','843','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25666','843','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25667','843','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25668','843','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25669','843','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25670','843','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25671','843','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25672','843','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25673','843','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25674','843','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25675','843','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25676','843','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25677','843','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25678','843','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25679','843','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25680','843','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25681','843','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25682','843','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25683','843','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25684','843','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25685','843','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25686','843','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25687','843','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25688','843','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25689','843','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25690','843','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25691','843','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25692','843','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25693','843','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25694','843','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25695','843','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25696','843','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25697','843','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25698','843','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25699','843','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25700','843','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25701','843','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25702','843','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25703','843','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25704','843','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25705','843','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25706','843','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25707','843','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25708','843','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25709','843','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25710','843','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25711','843','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25712','843','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25713','843','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25714','843','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25715','843','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25716','843','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25717','843','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25718','843','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25719','843','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25720','843','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25721','843','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25722','843','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25723','843','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25724','843','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25725','843','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25726','843','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25727','843','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25728','843','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25729','843','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25730','843','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25731','843','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25732','843','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25733','843','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25734','843','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25735','843','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25736','843','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25737','843','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25738','843','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25739','843','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25740','843','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25741','843','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25742','843','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25743','843','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25744','843','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25745','843','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25746','843','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25747','843','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25748','843','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25749','843','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25750','843','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25751','843','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25752','843','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25753','843','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25754','843','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25755','843','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25756','843','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25757','843','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25758','843','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25759','843','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25760','843','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25761','843','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25762','843','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25763','843','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25764','843','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25765','843','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25766','843','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25767','843','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25768','843','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25769','843','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25770','843','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25771','843','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25772','843','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25773','843','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25774','843','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25775','843','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25776','843','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25777','843','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25778','843','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25779','843','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25780','843','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25781','843','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25782','843','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25783','843','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25784','843','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25785','843','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25786','843','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25787','843','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25788','843','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25789','843','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25790','843','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25791','843','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25792','843','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25793','843','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25794','843','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25795','843','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25796','843','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25797','843','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25798','843','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25799','843','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25800','843','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25801','843','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25802','843','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25803','843','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25804','843','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25805','843','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25806','843','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25807','843','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25808','843','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25809','843','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25810','843','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25811','843','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25812','843','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25813','843','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25814','843','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25815','843','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25816','843','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25817','843','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25818','843','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25819','843','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25820','843','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25821','843','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25822','843','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25823','843','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25824','843','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25825','843','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25826','843','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25827','843','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25828','843','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25829','843','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25830','843','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25831','843','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25832','843','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25833','843','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25834','843','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25835','843','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25836','843','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25837','843','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25838','843','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25839','843','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25840','843','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25841','843','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25842','843','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25843','843','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25844','843','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25845','843','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25846','843','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25847','843','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25848','843','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25849','843','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25850','843','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25851','843','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25852','843','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25853','843','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25854','843','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25855','843','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25856','843','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25857','843','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25858','843','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25859','843','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25860','843','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25861','843','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25862','843','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25863','843','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25864','843','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25865','843','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25866','843','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25867','843','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25868','843','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25869','843','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25870','843','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25871','843','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25872','843','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25873','843','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25874','843','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25875','843','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25876','843','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25877','843','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25878','843','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25879','843','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25880','843','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25881','843','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25882','843','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25883','843','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25884','843','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25885','843','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25886','843','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25887','843','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25888','843','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25889','843','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25890','843','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25891','843','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25892','843','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25893','843','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25894','843','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25895','843','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25896','843','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25897','843','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25898','843','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25899','843','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25900','843','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25901','843','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25902','843','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25903','843','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25904','843','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25905','843','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25906','843','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25907','843','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25908','843','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25909','843','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25910','843','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25911','843','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25912','843','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25913','843','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25914','843','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25915','843','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25916','843','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25917','843','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25918','843','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25919','843','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25920','843','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25921','844','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25922','844','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25923','845','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25924','845','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25925','845','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25926','846','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25927','846','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25928','846','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25929','846','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25930','846','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25931','846','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25932','847','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25933','847','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25934','847','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25935','847','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25936','847','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25937','847','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25938','847','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25939','847','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25940','847','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25941','847','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25942','847','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25943','847','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25944','847','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25945','847','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25946','847','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25947','847','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25948','847','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25949','847','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25950','847','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25951','847','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25952','847','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25953','847','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25954','847','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25955','847','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25956','847','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25957','847','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25958','847','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25959','847','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25960','847','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25961','847','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25962','847','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25963','847','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25964','847','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25965','847','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25966','847','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25967','847','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25968','847','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25969','847','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25970','847','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25971','847','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25972','847','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25973','847','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25974','847','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25975','847','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25976','847','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25977','847','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25978','847','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25979','847','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25980','847','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25981','847','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25982','847','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25983','847','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25984','847','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25985','847','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25986','847','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25987','847','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25988','847','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25989','847','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25990','847','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25991','847','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25992','847','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25993','847','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25994','847','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25995','847','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25996','847','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25997','847','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25998','847','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('25999','847','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26000','847','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26001','847','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26002','847','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26003','847','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26004','847','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26005','847','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26006','847','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26007','847','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26008','847','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26009','847','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26010','847','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26011','847','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26012','847','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26013','847','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26014','847','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26015','847','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26016','847','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26017','847','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26018','847','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26019','847','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26020','847','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26021','847','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26022','847','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26023','847','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26024','847','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26025','847','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26026','847','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26027','847','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26028','847','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26029','847','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26030','847','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26031','847','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26032','847','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26033','847','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26034','847','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26035','847','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26036','847','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26037','847','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26038','847','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26039','847','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26040','847','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26041','847','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26042','847','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26043','847','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26044','847','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26045','847','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26046','847','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26047','847','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26048','847','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26049','847','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26050','847','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26051','847','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26052','847','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26053','847','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26054','847','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26055','847','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26056','847','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26057','847','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26058','847','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26059','847','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26060','847','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26061','847','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26062','847','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26063','847','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26064','847','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26065','847','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26066','847','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26067','847','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26068','847','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26069','847','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26070','847','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26071','847','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26072','847','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26073','847','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26074','847','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26075','847','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26076','847','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26077','847','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26078','847','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26079','847','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26080','847','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26081','847','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26082','847','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26083','847','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26084','847','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26085','847','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26086','847','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26087','847','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26088','847','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26089','847','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26090','847','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26091','847','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26092','847','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26093','847','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26094','847','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26095','847','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26096','847','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26097','847','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26098','847','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26099','847','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26100','847','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26101','847','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26102','847','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26103','847','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26104','847','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26105','847','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26106','847','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26107','847','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26108','847','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26109','847','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26110','847','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26111','847','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26112','847','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26113','847','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26114','847','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26115','847','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26116','847','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26117','847','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26118','847','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26119','847','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26120','847','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26121','847','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26122','847','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26123','847','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26124','847','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26125','847','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26126','847','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26127','847','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26128','847','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26129','847','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26130','847','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26131','847','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26132','847','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26133','847','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26134','847','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26135','847','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26136','847','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26137','847','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26138','847','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26139','847','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26140','847','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26141','847','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26142','847','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26143','847','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26144','847','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26145','847','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26146','847','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26147','847','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26148','847','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26149','847','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26150','847','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26151','847','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26152','847','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26153','847','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26154','847','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26155','847','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26156','847','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26157','847','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26158','847','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26159','847','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26160','847','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26161','847','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26162','847','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26163','847','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26164','847','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26165','847','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26166','847','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26167','847','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26168','847','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26169','847','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26170','847','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26171','847','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26172','847','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26173','847','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26174','847','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26175','847','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26176','847','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26177','847','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26178','847','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26179','847','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26180','847','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26181','847','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26182','847','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26183','847','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26184','847','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26185','847','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26186','847','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26187','847','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26188','847','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26189','847','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26190','847','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26191','847','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26192','847','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26193','847','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26194','847','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26195','847','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26196','847','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26197','847','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26198','847','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26199','847','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26200','847','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26201','847','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26202','847','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26203','847','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26204','847','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26205','847','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26206','847','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26207','847','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26208','847','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26209','847','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26210','847','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26211','847','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26212','847','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26213','847','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26214','847','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26215','847','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26216','847','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26217','847','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26218','848','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26219','848','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26220','849','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26221','849','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26222','849','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26223','850','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26224','850','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26225','850','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26226','850','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26227','850','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26228','850','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26229','851','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26230','851','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26231','851','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26232','851','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26233','851','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26234','851','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26235','851','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26236','851','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26237','851','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26238','851','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26239','851','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26240','851','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26241','851','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26242','851','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26243','851','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26244','851','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26245','851','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26246','851','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26247','851','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26248','851','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26249','851','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26250','851','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26251','851','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26252','851','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26253','851','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26254','851','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26255','851','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26256','851','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26257','851','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26258','851','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26259','851','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26260','851','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26261','851','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26262','851','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26263','851','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26264','851','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26265','851','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26266','851','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26267','851','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26268','851','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26269','851','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26270','851','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26271','851','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26272','851','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26273','851','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26274','851','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26275','851','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26276','851','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26277','851','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26278','851','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26279','851','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26280','851','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26281','851','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26282','851','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26283','851','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26284','851','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26285','851','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26286','851','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26287','851','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26288','851','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26289','851','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26290','851','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26291','851','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26292','851','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26293','851','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26294','851','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26295','851','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26296','851','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26297','851','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26298','851','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26299','851','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26300','851','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26301','851','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26302','851','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26303','851','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26304','851','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26305','851','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26306','851','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26307','851','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26308','851','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26309','851','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26310','851','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26311','851','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26312','851','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26313','851','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26314','851','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26315','851','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26316','851','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26317','851','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26318','851','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26319','851','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26320','851','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26321','851','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26322','851','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26323','851','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26324','851','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26325','851','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26326','851','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26327','851','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26328','851','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26329','851','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26330','851','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26331','851','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26332','851','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26333','851','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26334','851','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26335','851','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26336','851','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26337','851','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26338','851','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26339','851','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26340','851','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26341','851','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26342','851','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26343','851','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26344','851','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26345','851','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26346','851','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26347','851','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26348','851','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26349','851','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26350','851','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26351','851','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26352','851','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26353','851','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26354','851','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26355','851','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26356','851','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26357','851','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26358','851','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26359','851','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26360','851','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26361','851','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26362','851','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26363','851','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26364','851','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26365','851','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26366','851','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26367','851','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26368','851','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26369','851','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26370','851','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26371','851','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26372','851','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26373','851','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26374','851','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26375','851','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26376','851','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26377','851','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26378','851','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26379','851','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26380','851','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26381','851','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26382','851','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26383','851','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26384','851','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26385','851','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26386','851','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26387','851','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26388','851','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26389','851','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26390','851','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26391','851','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26392','851','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26393','851','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26394','851','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26395','851','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26396','851','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26397','851','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26398','851','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26399','851','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26400','851','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26401','851','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26402','851','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26403','851','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26404','851','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26405','851','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26406','851','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26407','851','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26408','851','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26409','851','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26410','851','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26411','851','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26412','851','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26413','851','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26414','851','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26415','851','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26416','851','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26417','851','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26418','851','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26419','851','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26420','851','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26421','851','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26422','851','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26423','851','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26424','851','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26425','851','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26426','851','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26427','851','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26428','851','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26429','851','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26430','851','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26431','851','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26432','851','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26433','851','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26434','851','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26435','851','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26436','851','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26437','851','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26438','851','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26439','851','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26440','851','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26441','851','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26442','851','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26443','851','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26444','851','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26445','851','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26446','851','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26447','851','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26448','851','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26449','851','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26450','851','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26451','851','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26452','851','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26453','851','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26454','851','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26455','851','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26456','851','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26457','851','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26458','851','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26459','851','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26460','851','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26461','851','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26462','851','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26463','851','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26464','851','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26465','851','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26466','851','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26467','851','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26468','851','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26469','851','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26470','851','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26471','851','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26472','851','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26473','851','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26474','851','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26475','851','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26476','851','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26477','851','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26478','851','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26479','851','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26480','851','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26481','851','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26482','851','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26483','851','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26484','851','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26485','851','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26486','851','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26487','851','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26488','851','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26489','851','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26490','851','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26491','851','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26492','851','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26493','851','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26494','851','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26495','851','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26496','851','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26497','851','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26498','851','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26499','851','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26500','851','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26501','851','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26502','851','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26503','851','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26504','851','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26505','851','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26506','851','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26507','851','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26508','851','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26509','851','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26510','851','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26511','851','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26512','851','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26513','851','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26514','851','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26515','852','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26516','852','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26517','853','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26518','853','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26519','853','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26520','854','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26521','854','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26522','854','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26523','854','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26524','854','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26525','854','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26526','855','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26527','855','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26528','855','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26529','855','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26530','855','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26531','855','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26532','855','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26533','855','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26534','855','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26535','855','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26536','855','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26537','855','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26538','855','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26539','855','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26540','855','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26541','855','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26542','855','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26543','855','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26544','855','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26545','855','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26546','855','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26547','855','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26548','855','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26549','855','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26550','855','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26551','855','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26552','855','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26553','855','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26554','855','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26555','855','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26556','855','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26557','855','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26558','855','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26559','855','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26560','855','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26561','855','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26562','855','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26563','855','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26564','855','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26565','855','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26566','855','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26567','855','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26568','855','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26569','855','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26570','855','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26571','855','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26572','855','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26573','855','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26574','855','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26575','855','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26576','855','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26577','855','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26578','855','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26579','855','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26580','855','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26581','855','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26582','855','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26583','855','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26584','855','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26585','855','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26586','855','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26587','855','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26588','855','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26589','855','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26590','855','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26591','855','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26592','855','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26593','855','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26594','855','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26595','855','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26596','855','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26597','855','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26598','855','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26599','855','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26600','855','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26601','855','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26602','855','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26603','855','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26604','855','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26605','855','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26606','855','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26607','855','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26608','855','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26609','855','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26610','855','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26611','855','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26612','855','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26613','855','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26614','855','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26615','855','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26616','855','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26617','855','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26618','855','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26619','855','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26620','855','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26621','855','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26622','855','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26623','855','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26624','855','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26625','855','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26626','855','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26627','855','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26628','855','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26629','855','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26630','855','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26631','855','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26632','855','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26633','855','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26634','855','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26635','855','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26636','855','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26637','855','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26638','855','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26639','855','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26640','855','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26641','855','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26642','855','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26643','855','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26644','855','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26645','855','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26646','855','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26647','855','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26648','855','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26649','855','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26650','855','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26651','855','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26652','855','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26653','855','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26654','855','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26655','855','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26656','855','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26657','855','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26658','855','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26659','855','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26660','855','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26661','855','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26662','855','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26663','855','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26664','855','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26665','855','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26666','855','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26667','855','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26668','855','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26669','855','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26670','855','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26671','855','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26672','855','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26673','855','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26674','855','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26675','855','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26676','855','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26677','855','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26678','855','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26679','855','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26680','855','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26681','855','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26682','855','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26683','855','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26684','855','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26685','855','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26686','855','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26687','855','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26688','855','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26689','855','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26690','855','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26691','855','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26692','855','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26693','855','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26694','855','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26695','855','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26696','855','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26697','855','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26698','855','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26699','855','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26700','855','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26701','855','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26702','855','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26703','855','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26704','855','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26705','855','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26706','855','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26707','855','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26708','855','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26709','855','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26710','855','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26711','855','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26712','855','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26713','855','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26714','855','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26715','855','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26716','855','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26717','855','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26718','855','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26719','855','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26720','855','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26721','855','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26722','855','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26723','855','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26724','855','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26725','855','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26726','855','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26727','855','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26728','855','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26729','855','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26730','855','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26731','855','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26732','855','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26733','855','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26734','855','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26735','855','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26736','855','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26737','855','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26738','855','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26739','855','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26740','855','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26741','855','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26742','855','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26743','855','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26744','855','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26745','855','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26746','855','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26747','855','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26748','855','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26749','855','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26750','855','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26751','855','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26752','855','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26753','855','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26754','855','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26755','855','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26756','855','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26757','855','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26758','855','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26759','855','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26760','855','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26761','855','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26762','855','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26763','855','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26764','855','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26765','855','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26766','855','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26767','855','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26768','855','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26769','855','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26770','855','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26771','855','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26772','855','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26773','855','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26774','855','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26775','855','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26776','855','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26777','855','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26778','855','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26779','855','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26780','855','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26781','855','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26782','855','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26783','855','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26784','855','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26785','855','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26786','855','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26787','855','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26788','855','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26789','855','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26790','855','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26791','855','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26792','855','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26793','855','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26794','855','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26795','855','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26796','855','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26797','855','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26798','855','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26799','855','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26800','855','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26801','855','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26802','855','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26803','855','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26804','855','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26805','855','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26806','855','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26807','855','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26808','855','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26809','855','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26810','855','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26811','855','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26812','856','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26813','856','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26814','857','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26815','857','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26816','857','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26817','858','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26818','858','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26819','858','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26820','858','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26821','858','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26822','858','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26823','859','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26824','859','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26825','859','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26826','859','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26827','859','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26828','859','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26829','859','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26830','859','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26831','859','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26832','859','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26833','859','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26834','859','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26835','859','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26836','859','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26837','859','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26838','859','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26839','859','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26840','859','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26841','859','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26842','859','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26843','859','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26844','859','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26845','859','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26846','859','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26847','859','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26848','859','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26849','859','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26850','859','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26851','859','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26852','859','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26853','859','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26854','859','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26855','859','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26856','859','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26857','859','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26858','859','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26859','859','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26860','859','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26861','859','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26862','859','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26863','859','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26864','859','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26865','859','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26866','859','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26867','859','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26868','859','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26869','859','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26870','859','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26871','859','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26872','859','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26873','859','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26874','859','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26875','859','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26876','859','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26877','859','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26878','859','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26879','859','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26880','859','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26881','859','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26882','859','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26883','859','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26884','859','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26885','859','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26886','859','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26887','859','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26888','859','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26889','859','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26890','859','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26891','859','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26892','859','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26893','859','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26894','859','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26895','859','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26896','859','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26897','859','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26898','859','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26899','859','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26900','859','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26901','859','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26902','859','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26903','859','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26904','859','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26905','859','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26906','859','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26907','859','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26908','859','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26909','859','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26910','859','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26911','859','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26912','859','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26913','859','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26914','859','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26915','859','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26916','859','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26917','859','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26918','859','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26919','859','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26920','859','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26921','859','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26922','859','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26923','859','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26924','859','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26925','859','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26926','859','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26927','859','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26928','859','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26929','859','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26930','859','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26931','859','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26932','859','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26933','859','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26934','859','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26935','859','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26936','859','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26937','859','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26938','859','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26939','859','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26940','859','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26941','859','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26942','859','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26943','859','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26944','859','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26945','859','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26946','859','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26947','859','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26948','859','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26949','859','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26950','859','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26951','859','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26952','859','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26953','859','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26954','859','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26955','859','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26956','859','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26957','859','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26958','859','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26959','859','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26960','859','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26961','859','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26962','859','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26963','859','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26964','859','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26965','859','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26966','859','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26967','859','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26968','859','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26969','859','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26970','859','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26971','859','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26972','859','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26973','859','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26974','859','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26975','859','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26976','859','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26977','859','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26978','859','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26979','859','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26980','859','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26981','859','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26982','859','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26983','859','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26984','859','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26985','859','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26986','859','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26987','859','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26988','859','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26989','859','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26990','859','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26991','859','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26992','859','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26993','859','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26994','859','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26995','859','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26996','859','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26997','859','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26998','859','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('26999','859','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27000','859','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27001','859','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27002','859','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27003','859','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27004','859','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27005','859','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27006','859','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27007','859','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27008','859','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27009','859','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27010','859','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27011','859','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27012','859','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27013','859','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27014','859','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27015','859','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27016','859','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27017','859','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27018','859','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27019','859','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27020','859','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27021','859','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27022','859','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27023','859','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27024','859','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27025','859','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27026','859','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27027','859','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27028','859','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27029','859','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27030','859','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27031','859','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27032','859','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27033','859','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27034','859','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27035','859','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27036','859','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27037','859','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27038','859','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27039','859','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27040','859','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27041','859','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27042','859','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27043','859','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27044','859','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27045','859','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27046','859','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27047','859','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27048','859','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27049','859','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27050','859','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27051','859','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27052','859','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27053','859','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27054','859','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27055','859','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27056','859','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27057','859','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27058','859','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27059','859','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27060','859','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27061','859','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27062','859','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27063','859','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27064','859','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27065','859','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27066','859','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27067','859','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27068','859','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27069','859','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27070','859','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27071','859','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27072','859','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27073','859','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27074','859','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27075','859','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27076','859','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27077','859','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27078','859','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27079','859','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27080','859','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27081','859','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27082','859','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27083','859','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27084','859','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27085','859','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27086','859','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27087','859','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27088','859','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27089','859','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27090','859','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27091','859','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27092','859','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27093','859','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27094','859','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27095','859','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27096','859','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27097','859','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27098','859','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27099','859','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27100','859','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27101','859','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27102','859','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27103','859','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27104','859','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27105','859','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27106','859','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27107','859','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27108','859','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27109','860','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27110','860','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27111','861','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27112','861','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27113','861','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27114','862','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27115','862','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27116','862','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27117','862','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27118','862','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27119','862','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27120','863','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27121','863','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27122','863','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27123','863','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27124','863','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27125','863','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27126','863','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27127','863','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27128','863','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27129','863','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27130','863','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27131','863','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27132','863','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27133','863','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27134','863','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27135','863','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27136','863','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27137','863','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27138','863','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27139','863','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27140','863','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27141','863','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27142','863','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27143','863','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27144','863','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27145','863','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27146','863','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27147','863','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27148','863','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27149','863','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27150','863','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27151','863','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27152','863','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27153','863','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27154','863','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27155','863','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27156','863','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27157','863','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27158','863','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27159','863','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27160','863','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27161','863','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27162','863','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27163','863','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27164','863','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27165','863','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27166','863','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27167','863','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27168','863','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27169','863','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27170','863','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27171','863','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27172','863','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27173','863','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27174','863','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27175','863','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27176','863','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27177','863','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27178','863','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27179','863','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27180','863','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27181','863','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27182','863','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27183','863','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27184','863','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27185','863','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27186','863','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27187','863','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27188','863','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27189','863','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27190','863','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27191','863','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27192','863','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27193','863','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27194','863','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27195','863','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27196','863','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27197','863','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27198','863','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27199','863','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27200','863','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27201','863','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27202','863','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27203','863','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27204','863','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27205','863','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27206','863','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27207','863','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27208','863','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27209','863','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27210','863','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27211','863','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27212','863','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27213','863','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27214','863','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27215','863','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27216','863','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27217','863','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27218','863','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27219','863','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27220','863','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27221','863','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27222','863','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27223','863','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27224','863','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27225','863','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27226','863','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27227','863','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27228','863','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27229','863','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27230','863','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27231','863','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27232','863','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27233','863','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27234','863','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27235','863','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27236','863','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27237','863','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27238','863','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27239','863','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27240','863','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27241','863','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27242','863','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27243','863','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27244','863','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27245','863','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27246','863','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27247','863','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27248','863','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27249','863','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27250','863','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27251','863','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27252','863','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27253','863','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27254','863','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27255','863','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27256','863','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27257','863','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27258','863','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27259','863','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27260','863','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27261','863','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27262','863','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27263','863','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27264','863','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27265','863','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27266','863','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27267','863','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27268','863','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27269','863','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27270','863','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27271','863','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27272','863','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27273','863','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27274','863','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27275','863','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27276','863','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27277','863','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27278','863','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27279','863','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27280','863','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27281','863','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27282','863','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27283','863','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27284','863','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27285','863','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27286','863','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27287','863','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27288','863','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27289','863','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27290','863','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27291','863','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27292','863','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27293','863','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27294','863','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27295','863','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27296','863','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27297','863','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27298','863','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27299','863','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27300','863','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27301','863','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27302','863','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27303','863','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27304','863','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27305','863','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27306','863','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27307','863','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27308','863','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27309','863','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27310','863','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27311','863','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27312','863','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27313','863','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27314','863','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27315','863','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27316','863','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27317','863','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27318','863','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27319','863','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27320','863','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27321','863','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27322','863','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27323','863','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27324','863','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27325','863','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27326','863','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27327','863','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27328','863','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27329','863','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27330','863','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27331','863','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27332','863','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27333','863','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27334','863','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27335','863','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27336','863','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27337','863','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27338','863','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27339','863','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27340','863','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27341','863','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27342','863','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27343','863','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27344','863','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27345','863','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27346','863','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27347','863','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27348','863','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27349','863','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27350','863','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27351','863','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27352','863','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27353','863','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27354','863','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27355','863','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27356','863','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27357','863','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27358','863','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27359','863','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27360','863','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27361','863','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27362','863','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27363','863','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27364','863','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27365','863','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27366','863','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27367','863','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27368','863','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27369','863','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27370','863','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27371','863','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27372','863','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27373','863','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27374','863','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27375','863','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27376','863','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27377','863','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27378','863','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27379','863','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27380','863','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27381','863','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27382','863','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27383','863','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27384','863','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27385','863','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27386','863','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27387','863','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27388','863','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27389','863','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27390','863','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27391','863','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27392','863','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27393','863','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27394','863','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27395','863','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27396','863','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27397','863','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27398','863','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27399','863','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27400','863','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27401','863','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27402','863','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27403','863','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27404','863','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27405','863','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27406','864','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27407','864','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27408','865','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27409','865','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27410','865','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27411','866','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27412','866','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27413','866','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27414','866','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27415','866','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27416','866','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27417','867','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27418','867','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27419','867','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27420','867','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27421','867','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27422','867','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27423','867','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27424','867','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27425','867','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27426','867','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27427','867','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27428','867','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27429','867','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27430','867','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27431','867','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27432','867','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27433','867','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27434','867','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27435','867','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27436','867','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27437','867','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27438','867','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27439','867','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27440','867','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27441','867','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27442','867','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27443','867','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27444','867','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27445','867','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27446','867','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27447','867','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27448','867','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27449','867','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27450','867','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27451','867','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27452','867','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27453','867','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27454','867','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27455','867','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27456','867','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27457','867','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27458','867','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27459','867','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27460','867','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27461','867','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27462','867','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27463','867','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27464','867','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27465','867','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27466','867','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27467','867','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27468','867','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27469','867','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27470','867','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27471','867','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27472','867','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27473','867','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27474','867','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27475','867','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27476','867','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27477','867','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27478','867','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27479','867','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27480','867','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27481','867','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27482','867','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27483','867','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27484','867','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27485','867','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27486','867','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27487','867','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27488','867','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27489','867','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27490','867','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27491','867','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27492','867','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27493','867','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27494','867','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27495','867','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27496','867','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27497','867','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27498','867','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27499','867','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27500','867','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27501','867','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27502','867','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27503','867','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27504','867','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27505','867','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27506','867','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27507','867','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27508','867','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27509','867','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27510','867','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27511','867','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27512','867','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27513','867','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27514','867','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27515','867','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27516','867','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27517','867','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27518','867','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27519','867','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27520','867','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27521','867','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27522','867','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27523','867','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27524','867','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27525','867','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27526','867','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27527','867','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27528','867','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27529','867','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27530','867','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27531','867','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27532','867','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27533','867','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27534','867','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27535','867','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27536','867','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27537','867','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27538','867','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27539','867','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27540','867','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27541','867','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27542','867','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27543','867','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27544','867','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27545','867','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27546','867','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27547','867','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27548','867','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27549','867','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27550','867','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27551','867','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27552','867','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27553','867','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27554','867','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27555','867','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27556','867','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27557','867','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27558','867','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27559','867','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27560','867','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27561','867','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27562','867','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27563','867','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27564','867','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27565','867','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27566','867','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27567','867','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27568','867','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27569','867','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27570','867','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27571','867','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27572','867','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27573','867','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27574','867','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27575','867','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27576','867','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27577','867','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27578','867','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27579','867','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27580','867','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27581','867','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27582','867','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27583','867','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27584','867','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27585','867','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27586','867','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27587','867','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27588','867','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27589','867','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27590','867','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27591','867','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27592','867','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27593','867','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27594','867','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27595','867','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27596','867','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27597','867','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27598','867','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27599','867','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27600','867','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27601','867','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27602','867','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27603','867','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27604','867','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27605','867','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27606','867','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27607','867','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27608','867','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27609','867','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27610','867','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27611','867','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27612','867','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27613','867','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27614','867','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27615','867','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27616','867','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27617','867','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27618','867','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27619','867','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27620','867','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27621','867','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27622','867','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27623','867','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27624','867','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27625','867','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27626','867','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27627','867','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27628','867','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27629','867','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27630','867','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27631','867','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27632','867','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27633','867','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27634','867','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27635','867','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27636','867','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27637','867','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27638','867','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27639','867','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27640','867','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27641','867','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27642','867','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27643','867','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27644','867','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27645','867','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27646','867','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27647','867','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27648','867','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27649','867','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27650','867','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27651','867','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27652','867','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27653','867','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27654','867','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27655','867','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27656','867','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27657','867','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27658','867','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27659','867','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27660','867','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27661','867','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27662','867','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27663','867','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27664','867','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27665','867','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27666','867','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27667','867','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27668','867','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27669','867','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27670','867','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27671','867','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27672','867','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27673','867','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27674','867','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27675','867','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27676','867','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27677','867','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27678','867','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27679','867','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27680','867','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27681','867','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27682','867','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27683','867','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27684','867','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27685','867','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27686','867','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27687','867','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27688','867','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27689','867','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27690','867','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27691','867','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27692','867','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27693','867','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27694','867','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27695','867','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27696','867','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27697','867','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27698','867','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27699','867','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27700','867','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27701','867','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27702','867','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27703','868','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27704','868','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27705','869','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27706','869','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27707','869','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27708','870','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27709','870','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27710','870','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27711','870','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27712','870','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27713','870','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27714','871','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27715','871','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27716','871','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27717','871','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27718','871','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27719','871','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27720','871','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27721','871','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27722','871','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27723','871','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27724','871','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27725','871','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27726','871','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27727','871','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27728','871','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27729','871','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27730','871','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27731','871','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27732','871','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27733','871','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27734','871','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27735','871','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27736','871','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27737','871','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27738','871','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27739','871','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27740','871','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27741','871','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27742','871','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27743','871','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27744','871','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27745','871','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27746','871','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27747','871','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27748','871','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27749','871','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27750','871','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27751','871','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27752','871','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27753','871','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27754','871','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27755','871','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27756','871','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27757','871','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27758','871','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27759','871','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27760','871','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27761','871','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27762','871','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27763','871','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27764','871','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27765','871','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27766','871','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27767','871','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27768','871','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27769','871','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27770','871','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27771','871','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27772','871','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27773','871','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27774','871','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27775','871','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27776','871','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27777','871','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27778','871','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27779','871','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27780','871','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27781','871','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27782','871','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27783','871','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27784','871','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27785','871','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27786','871','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27787','871','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27788','871','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27789','871','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27790','871','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27791','871','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27792','871','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27793','871','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27794','871','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27795','871','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27796','871','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27797','871','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27798','871','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27799','871','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27800','871','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27801','871','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27802','871','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27803','871','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27804','871','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27805','871','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27806','871','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27807','871','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27808','871','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27809','871','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27810','871','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27811','871','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27812','871','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27813','871','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27814','871','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27815','871','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27816','871','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27817','871','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27818','871','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27819','871','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27820','871','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27821','871','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27822','871','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27823','871','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27824','871','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27825','871','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27826','871','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27827','871','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27828','871','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27829','871','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27830','871','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27831','871','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27832','871','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27833','871','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27834','871','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27835','871','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27836','871','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27837','871','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27838','871','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27839','871','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27840','871','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27841','871','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27842','871','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27843','871','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27844','871','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27845','871','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27846','871','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27847','871','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27848','871','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27849','871','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27850','871','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27851','871','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27852','871','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27853','871','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27854','871','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27855','871','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27856','871','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27857','871','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27858','871','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27859','871','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27860','871','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27861','871','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27862','871','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27863','871','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27864','871','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27865','871','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27866','871','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27867','871','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27868','871','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27869','871','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27870','871','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27871','871','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27872','871','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27873','871','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27874','871','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27875','871','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27876','871','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27877','871','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27878','871','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27879','871','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27880','871','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27881','871','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27882','871','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27883','871','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27884','871','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27885','871','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27886','871','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27887','871','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27888','871','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27889','871','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27890','871','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27891','871','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27892','871','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27893','871','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27894','871','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27895','871','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27896','871','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27897','871','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27898','871','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27899','871','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27900','871','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27901','871','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27902','871','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27903','871','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27904','871','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27905','871','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27906','871','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27907','871','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27908','871','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27909','871','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27910','871','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27911','871','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27912','871','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27913','871','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27914','871','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27915','871','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27916','871','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27917','871','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27918','871','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27919','871','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27920','871','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27921','871','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27922','871','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27923','871','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27924','871','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27925','871','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27926','871','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27927','871','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27928','871','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27929','871','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27930','871','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27931','871','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27932','871','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27933','871','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27934','871','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27935','871','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27936','871','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27937','871','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27938','871','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27939','871','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27940','871','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27941','871','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27942','871','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27943','871','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27944','871','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27945','871','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27946','871','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27947','871','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27948','871','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27949','871','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27950','871','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27951','871','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27952','871','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27953','871','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27954','871','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27955','871','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27956','871','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27957','871','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27958','871','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27959','871','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27960','871','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27961','871','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27962','871','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27963','871','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27964','871','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27965','871','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27966','871','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27967','871','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27968','871','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27969','871','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27970','871','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27971','871','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27972','871','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27973','871','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27974','871','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27975','871','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27976','871','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27977','871','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27978','871','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27979','871','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27980','871','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27981','871','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27982','871','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27983','871','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27984','871','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27985','871','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27986','871','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27987','871','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27988','871','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27989','871','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27990','871','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27991','871','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27992','871','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27993','871','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27994','871','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27995','871','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27996','871','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27997','871','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27998','871','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('27999','871','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28000','872','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28001','872','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28002','873','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28003','873','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28004','873','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28005','874','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28006','874','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28007','874','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28008','874','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28009','874','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28010','874','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28011','875','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28012','875','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28013','875','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28014','875','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28015','875','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28016','875','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28017','875','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28018','875','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28019','875','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28020','875','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28021','875','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28022','875','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28023','875','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28024','875','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28025','875','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28026','875','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28027','875','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28028','875','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28029','875','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28030','875','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28031','875','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28032','875','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28033','875','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28034','875','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28035','875','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28036','875','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28037','875','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28038','875','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28039','875','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28040','875','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28041','875','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28042','875','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28043','875','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28044','875','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28045','875','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28046','875','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28047','875','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28048','875','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28049','875','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28050','875','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28051','875','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28052','875','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28053','875','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28054','875','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28055','875','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28056','875','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28057','875','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28058','875','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28059','875','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28060','875','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28061','875','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28062','875','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28063','875','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28064','875','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28065','875','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28066','875','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28067','875','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28068','875','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28069','875','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28070','875','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28071','875','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28072','875','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28073','875','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28074','875','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28075','875','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28076','875','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28077','875','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28078','875','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28079','875','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28080','875','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28081','875','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28082','875','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28083','875','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28084','875','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28085','875','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28086','875','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28087','875','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28088','875','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28089','875','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28090','875','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28091','875','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28092','875','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28093','875','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28094','875','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28095','875','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28096','875','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28097','875','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28098','875','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28099','875','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28100','875','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28101','875','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28102','875','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28103','875','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28104','875','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28105','875','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28106','875','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28107','875','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28108','875','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28109','875','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28110','875','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28111','875','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28112','875','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28113','875','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28114','875','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28115','875','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28116','875','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28117','875','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28118','875','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28119','875','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28120','875','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28121','875','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28122','875','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28123','875','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28124','875','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28125','875','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28126','875','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28127','875','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28128','875','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28129','875','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28130','875','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28131','875','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28132','875','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28133','875','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28134','875','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28135','875','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28136','875','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28137','875','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28138','875','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28139','875','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28140','875','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28141','875','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28142','875','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28143','875','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28144','875','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28145','875','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28146','875','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28147','875','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28148','875','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28149','875','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28150','875','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28151','875','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28152','875','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28153','875','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28154','875','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28155','875','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28156','875','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28157','875','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28158','875','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28159','875','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28160','875','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28161','875','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28162','875','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28163','875','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28164','875','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28165','875','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28166','875','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28167','875','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28168','875','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28169','875','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28170','875','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28171','875','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28172','875','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28173','875','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28174','875','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28175','875','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28176','875','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28177','875','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28178','875','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28179','875','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28180','875','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28181','875','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28182','875','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28183','875','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28184','875','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28185','875','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28186','875','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28187','875','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28188','875','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28189','875','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28190','875','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28191','875','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28192','875','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28193','875','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28194','875','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28195','875','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28196','875','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28197','875','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28198','875','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28199','875','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28200','875','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28201','875','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28202','875','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28203','875','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28204','875','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28205','875','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28206','875','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28207','875','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28208','875','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28209','875','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28210','875','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28211','875','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28212','875','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28213','875','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28214','875','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28215','875','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28216','875','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28217','875','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28218','875','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28219','875','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28220','875','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28221','875','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28222','875','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28223','875','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28224','875','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28225','875','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28226','875','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28227','875','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28228','875','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28229','875','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28230','875','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28231','875','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28232','875','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28233','875','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28234','875','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28235','875','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28236','875','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28237','875','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28238','875','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28239','875','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28240','875','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28241','875','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28242','875','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28243','875','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28244','875','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28245','875','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28246','875','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28247','875','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28248','875','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28249','875','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28250','875','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28251','875','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28252','875','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28253','875','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28254','875','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28255','875','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28256','875','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28257','875','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28258','875','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28259','875','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28260','875','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28261','875','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28262','875','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28263','875','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28264','875','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28265','875','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28266','875','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28267','875','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28268','875','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28269','875','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28270','875','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28271','875','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28272','875','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28273','875','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28274','875','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28275','875','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28276','875','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28277','875','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28278','875','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28279','875','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28280','875','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28281','875','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28282','875','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28283','875','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28284','875','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28285','875','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28286','875','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28287','875','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28288','875','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28289','875','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28290','875','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28291','875','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28292','875','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28293','875','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28294','875','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28295','875','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28296','875','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28297','876','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28298','876','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28299','877','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28300','877','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28301','877','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28302','878','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28303','878','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28304','878','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28305','878','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28306','878','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28307','878','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28308','879','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28309','879','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28310','879','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28311','879','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28312','879','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28313','879','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28314','879','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28315','879','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28316','879','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28317','879','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28318','879','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28319','879','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28320','879','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28321','879','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28322','879','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28323','879','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28324','879','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28325','879','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28326','879','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28327','879','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28328','879','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28329','879','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28330','879','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28331','879','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28332','879','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28333','879','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28334','879','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28335','879','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28336','879','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28337','879','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28338','879','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28339','879','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28340','879','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28341','879','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28342','879','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28343','879','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28344','879','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28345','879','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28346','879','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28347','879','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28348','879','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28349','879','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28350','879','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28351','879','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28352','879','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28353','879','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28354','879','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28355','879','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28356','879','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28357','879','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28358','879','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28359','879','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28360','879','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28361','879','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28362','879','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28363','879','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28364','879','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28365','879','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28366','879','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28367','879','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28368','879','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28369','879','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28370','879','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28371','879','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28372','879','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28373','879','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28374','879','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28375','879','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28376','879','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28377','879','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28378','879','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28379','879','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28380','879','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28381','879','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28382','879','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28383','879','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28384','879','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28385','879','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28386','879','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28387','879','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28388','879','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28389','879','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28390','879','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28391','879','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28392','879','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28393','879','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28394','879','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28395','879','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28396','879','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28397','879','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28398','879','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28399','879','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28400','879','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28401','879','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28402','879','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28403','879','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28404','879','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28405','879','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28406','879','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28407','879','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28408','879','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28409','879','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28410','879','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28411','879','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28412','879','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28413','879','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28414','879','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28415','879','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28416','879','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28417','879','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28418','879','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28419','879','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28420','879','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28421','879','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28422','879','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28423','879','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28424','879','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28425','879','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28426','879','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28427','879','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28428','879','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28429','879','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28430','879','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28431','879','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28432','879','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28433','879','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28434','879','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28435','879','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28436','879','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28437','879','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28438','879','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28439','879','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28440','879','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28441','879','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28442','879','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28443','879','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28444','879','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28445','879','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28446','879','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28447','879','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28448','879','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28449','879','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28450','879','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28451','879','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28452','879','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28453','879','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28454','879','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28455','879','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28456','879','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28457','879','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28458','879','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28459','879','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28460','879','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28461','879','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28462','879','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28463','879','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28464','879','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28465','879','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28466','879','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28467','879','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28468','879','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28469','879','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28470','879','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28471','879','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28472','879','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28473','879','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28474','879','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28475','879','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28476','879','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28477','879','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28478','879','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28479','879','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28480','879','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28481','879','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28482','879','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28483','879','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28484','879','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28485','879','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28486','879','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28487','879','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28488','879','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28489','879','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28490','879','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28491','879','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28492','879','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28493','879','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28494','879','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28495','879','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28496','879','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28497','879','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28498','879','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28499','879','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28500','879','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28501','879','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28502','879','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28503','879','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28504','879','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28505','879','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28506','879','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28507','879','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28508','879','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28509','879','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28510','879','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28511','879','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28512','879','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28513','879','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28514','879','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28515','879','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28516','879','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28517','879','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28518','879','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28519','879','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28520','879','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28521','879','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28522','879','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28523','879','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28524','879','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28525','879','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28526','879','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28527','879','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28528','879','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28529','879','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28530','879','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28531','879','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28532','879','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28533','879','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28534','879','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28535','879','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28536','879','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28537','879','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28538','879','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28539','879','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28540','879','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28541','879','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28542','879','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28543','879','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28544','879','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28545','879','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28546','879','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28547','879','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28548','879','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28549','879','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28550','879','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28551','879','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28552','879','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28553','879','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28554','879','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28555','879','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28556','879','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28557','879','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28558','879','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28559','879','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28560','879','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28561','879','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28562','879','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28563','879','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28564','879','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28565','879','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28566','879','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28567','879','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28568','879','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28569','879','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28570','879','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28571','879','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28572','879','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28573','879','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28574','879','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28575','879','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28576','879','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28577','879','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28578','879','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28579','879','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28580','879','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28581','879','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28582','879','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28583','879','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28584','879','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28585','879','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28586','879','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28587','879','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28588','879','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28589','879','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28590','879','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28591','879','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28592','879','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28593','879','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28594','880','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28595','880','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28596','881','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28597','881','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28598','881','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28599','882','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28600','882','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28601','882','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28602','882','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28603','882','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28604','882','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28605','883','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28606','883','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28607','883','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28608','883','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28609','883','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28610','883','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28611','883','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28612','883','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28613','883','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28614','883','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28615','883','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28616','883','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28617','883','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28618','883','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28619','883','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28620','883','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28621','883','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28622','883','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28623','883','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28624','883','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28625','883','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28626','883','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28627','883','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28628','883','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28629','883','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28630','883','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28631','883','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28632','883','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28633','883','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28634','883','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28635','883','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28636','883','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28637','883','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28638','883','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28639','883','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28640','883','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28641','883','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28642','883','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28643','883','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28644','883','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28645','883','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28646','883','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28647','883','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28648','883','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28649','883','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28650','883','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28651','883','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28652','883','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28653','883','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28654','883','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28655','883','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28656','883','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28657','883','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28658','883','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28659','883','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28660','883','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28661','883','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28662','883','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28663','883','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28664','883','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28665','883','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28666','883','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28667','883','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28668','883','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28669','883','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28670','883','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28671','883','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28672','883','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28673','883','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28674','883','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28675','883','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28676','883','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28677','883','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28678','883','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28679','883','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28680','883','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28681','883','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28682','883','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28683','883','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28684','883','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28685','883','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28686','883','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28687','883','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28688','883','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28689','883','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28690','883','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28691','883','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28692','883','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28693','883','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28694','883','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28695','883','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28696','883','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28697','883','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28698','883','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28699','883','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28700','883','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28701','883','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28702','883','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28703','883','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28704','883','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28705','883','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28706','883','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28707','883','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28708','883','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28709','883','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28710','883','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28711','883','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28712','883','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28713','883','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28714','883','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28715','883','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28716','883','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28717','883','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28718','883','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28719','883','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28720','883','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28721','883','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28722','883','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28723','883','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28724','883','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28725','883','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28726','883','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28727','883','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28728','883','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28729','883','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28730','883','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28731','883','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28732','883','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28733','883','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28734','883','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28735','883','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28736','883','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28737','883','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28738','883','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28739','883','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28740','883','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28741','883','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28742','883','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28743','883','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28744','883','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28745','883','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28746','883','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28747','883','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28748','883','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28749','883','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28750','883','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28751','883','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28752','883','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28753','883','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28754','883','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28755','883','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28756','883','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28757','883','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28758','883','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28759','883','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28760','883','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28761','883','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28762','883','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28763','883','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28764','883','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28765','883','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28766','883','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28767','883','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28768','883','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28769','883','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28770','883','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28771','883','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28772','883','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28773','883','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28774','883','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28775','883','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28776','883','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28777','883','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28778','883','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28779','883','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28780','883','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28781','883','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28782','883','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28783','883','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28784','883','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28785','883','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28786','883','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28787','883','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28788','883','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28789','883','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28790','883','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28791','883','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28792','883','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28793','883','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28794','883','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28795','883','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28796','883','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28797','883','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28798','883','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28799','883','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28800','883','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28801','883','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28802','883','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28803','883','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28804','883','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28805','883','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28806','883','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28807','883','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28808','883','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28809','883','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28810','883','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28811','883','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28812','883','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28813','883','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28814','883','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28815','883','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28816','883','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28817','883','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28818','883','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28819','883','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28820','883','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28821','883','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28822','883','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28823','883','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28824','883','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28825','883','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28826','883','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28827','883','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28828','883','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28829','883','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28830','883','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28831','883','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28832','883','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28833','883','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28834','883','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28835','883','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28836','883','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28837','883','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28838','883','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28839','883','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28840','883','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28841','883','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28842','883','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28843','883','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28844','883','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28845','883','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28846','883','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28847','883','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28848','883','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28849','883','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28850','883','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28851','883','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28852','883','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28853','883','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28854','883','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28855','883','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28856','883','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28857','883','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28858','883','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28859','883','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28860','883','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28861','883','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28862','883','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28863','883','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28864','883','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28865','883','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28866','883','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28867','883','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28868','883','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28869','883','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28870','883','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28871','883','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28872','883','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28873','883','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28874','883','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28875','883','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28876','883','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28877','883','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28878','883','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28879','883','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28880','883','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28881','883','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28882','883','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28883','883','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28884','883','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28885','883','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28886','883','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28887','883','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28888','883','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28889','883','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28890','883','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28891','884','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28892','884','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28893','885','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28894','885','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28895','885','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28896','886','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28897','886','2','halfDuplex','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28898','886','3','fullDuplex','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28899','887','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28900','887','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28901','887','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28902','887','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28903','887','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28904','887','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28905','888','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28906','888','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28907','888','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28908','888','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28909','888','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28910','888','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28911','888','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28912','888','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28913','888','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28914','888','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28915','888','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28916','888','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28917','888','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28918','888','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28919','888','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28920','888','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28921','888','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28922','888','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28923','888','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28924','888','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28925','888','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28926','888','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28927','888','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28928','888','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28929','888','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28930','888','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28931','888','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28932','888','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28933','888','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28934','888','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28935','888','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28936','888','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28937','888','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28938','888','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28939','888','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28940','888','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28941','888','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28942','888','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28943','888','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28944','888','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28945','888','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28946','888','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28947','888','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28948','888','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28949','888','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28950','888','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28951','888','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28952','888','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28953','888','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28954','888','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28955','888','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28956','888','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28957','888','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28958','888','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28959','888','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28960','888','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28961','888','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28962','888','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28963','888','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28964','888','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28965','888','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28966','888','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28967','888','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28968','888','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28969','888','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28970','888','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28971','888','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28972','888','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28973','888','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28974','888','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28975','888','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28976','888','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28977','888','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28978','888','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28979','888','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28980','888','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28981','888','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28982','888','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28983','888','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28984','888','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28985','888','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28986','888','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28987','888','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28988','888','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28989','888','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28990','888','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28991','888','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28992','888','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28993','888','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28994','888','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28995','888','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28996','888','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28997','888','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28998','888','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('28999','888','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29000','888','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29001','888','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29002','888','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29003','888','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29004','888','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29005','888','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29006','888','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29007','888','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29008','888','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29009','888','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29010','888','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29011','888','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29012','888','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29013','888','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29014','888','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29015','888','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29016','888','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29017','888','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29018','888','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29019','888','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29020','888','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29021','888','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29022','888','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29023','888','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29024','888','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29025','888','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29026','888','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29027','888','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29028','888','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29029','888','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29030','888','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29031','888','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29032','888','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29033','888','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29034','888','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29035','888','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29036','888','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29037','888','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29038','888','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29039','888','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29040','888','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29041','888','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29042','888','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29043','888','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29044','888','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29045','888','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29046','888','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29047','888','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29048','888','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29049','888','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29050','888','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29051','888','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29052','888','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29053','888','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29054','888','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29055','888','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29056','888','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29057','888','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29058','888','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29059','888','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29060','888','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29061','888','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29062','888','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29063','888','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29064','888','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29065','888','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29066','888','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29067','888','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29068','888','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29069','888','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29070','888','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29071','888','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29072','888','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29073','888','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29074','888','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29075','888','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29076','888','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29077','888','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29078','888','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29079','888','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29080','888','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29081','888','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29082','888','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29083','888','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29084','888','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29085','888','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29086','888','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29087','888','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29088','888','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29089','888','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29090','888','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29091','888','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29092','888','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29093','888','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29094','888','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29095','888','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29096','888','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29097','888','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29098','888','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29099','888','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29100','888','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29101','888','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29102','888','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29103','888','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29104','888','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29105','888','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29106','888','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29107','888','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29108','888','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29109','888','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29110','888','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29111','888','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29112','888','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29113','888','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29114','888','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29115','888','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29116','888','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29117','888','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29118','888','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29119','888','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29120','888','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29121','888','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29122','888','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29123','888','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29124','888','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29125','888','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29126','888','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29127','888','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29128','888','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29129','888','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29130','888','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29131','888','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29132','888','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29133','888','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29134','888','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29135','888','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29136','888','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29137','888','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29138','888','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29139','888','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29140','888','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29141','888','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29142','888','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29143','888','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29144','888','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29145','888','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29146','888','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29147','888','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29148','888','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29149','888','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29150','888','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29151','888','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29152','888','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29153','888','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29154','888','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29155','888','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29156','888','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29157','888','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29158','888','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29159','888','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29160','888','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29161','888','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29162','888','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29163','888','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29164','888','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29165','888','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29166','888','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29167','888','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29168','888','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29169','888','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29170','888','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29171','888','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29172','888','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29173','888','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29174','888','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29175','888','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29176','888','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29177','888','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29178','888','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29179','888','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29180','888','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29181','888','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29182','888','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29183','888','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29184','888','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29185','888','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29186','888','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29187','888','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29188','888','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29189','888','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29190','888','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29191','889','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29192','889','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29193','890','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29194','890','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29195','890','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29196','891','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29197','891','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29198','891','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29199','891','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29200','891','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29201','891','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29202','892','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29203','892','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29204','892','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29205','892','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29206','892','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29207','892','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29208','892','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29209','892','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29210','892','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29211','892','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29212','892','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29213','892','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29214','892','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29215','892','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29216','892','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29217','892','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29218','892','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29219','892','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29220','892','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29221','892','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29222','892','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29223','892','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29224','892','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29225','892','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29226','892','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29227','892','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29228','892','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29229','892','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29230','892','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29231','892','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29232','892','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29233','892','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29234','892','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29235','892','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29236','892','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29237','892','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29238','892','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29239','892','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29240','892','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29241','892','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29242','892','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29243','892','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29244','892','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29245','892','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29246','892','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29247','892','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29248','892','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29249','892','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29250','892','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29251','892','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29252','892','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29253','892','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29254','892','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29255','892','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29256','892','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29257','892','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29258','892','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29259','892','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29260','892','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29261','892','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29262','892','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29263','892','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29264','892','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29265','892','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29266','892','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29267','892','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29268','892','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29269','892','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29270','892','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29271','892','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29272','892','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29273','892','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29274','892','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29275','892','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29276','892','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29277','892','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29278','892','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29279','892','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29280','892','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29281','892','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29282','892','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29283','892','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29284','892','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29285','892','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29286','892','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29287','892','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29288','892','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29289','892','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29290','892','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29291','892','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29292','892','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29293','892','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29294','892','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29295','892','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29296','892','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29297','892','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29298','892','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29299','892','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29300','892','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29301','892','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29302','892','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29303','892','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29304','892','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29305','892','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29306','892','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29307','892','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29308','892','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29309','892','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29310','892','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29311','892','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29312','892','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29313','892','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29314','892','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29315','892','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29316','892','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29317','892','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29318','892','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29319','892','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29320','892','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29321','892','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29322','892','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29323','892','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29324','892','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29325','892','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29326','892','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29327','892','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29328','892','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29329','892','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29330','892','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29331','892','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29332','892','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29333','892','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29334','892','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29335','892','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29336','892','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29337','892','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29338','892','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29339','892','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29340','892','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29341','892','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29342','892','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29343','892','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29344','892','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29345','892','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29346','892','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29347','892','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29348','892','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29349','892','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29350','892','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29351','892','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29352','892','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29353','892','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29354','892','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29355','892','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29356','892','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29357','892','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29358','892','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29359','892','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29360','892','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29361','892','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29362','892','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29363','892','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29364','892','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29365','892','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29366','892','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29367','892','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29368','892','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29369','892','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29370','892','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29371','892','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29372','892','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29373','892','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29374','892','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29375','892','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29376','892','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29377','892','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29378','892','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29379','892','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29380','892','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29381','892','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29382','892','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29383','892','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29384','892','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29385','892','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29386','892','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29387','892','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29388','892','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29389','892','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29390','892','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29391','892','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29392','892','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29393','892','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29394','892','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29395','892','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29396','892','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29397','892','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29398','892','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29399','892','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29400','892','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29401','892','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29402','892','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29403','892','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29404','892','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29405','892','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29406','892','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29407','892','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29408','892','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29409','892','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29410','892','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29411','892','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29412','892','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29413','892','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29414','892','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29415','892','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29416','892','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29417','892','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29418','892','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29419','892','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29420','892','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29421','892','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29422','892','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29423','892','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29424','892','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29425','892','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29426','892','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29427','892','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29428','892','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29429','892','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29430','892','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29431','892','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29432','892','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29433','892','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29434','892','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29435','892','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29436','892','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29437','892','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29438','892','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29439','892','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29440','892','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29441','892','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29442','892','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29443','892','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29444','892','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29445','892','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29446','892','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29447','892','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29448','892','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29449','892','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29450','892','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29451','892','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29452','892','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29453','892','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29454','892','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29455','892','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29456','892','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29457','892','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29458','892','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29459','892','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29460','892','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29461','892','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29462','892','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29463','892','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29464','892','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29465','892','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29466','892','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29467','892','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29468','892','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29469','892','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29470','892','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29471','892','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29472','892','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29473','892','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29474','892','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29475','892','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29476','892','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29477','892','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29478','892','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29479','892','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29480','892','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29481','892','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29482','892','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29483','892','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29484','892','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29485','892','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29486','892','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29487','892','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29488','893','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29489','893','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29490','894','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29491','894','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29492','894','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29493','895','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29494','895','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29495','895','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29496','895','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29497','895','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29498','895','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29499','896','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29500','896','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29501','896','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29502','896','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29503','896','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29504','896','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29505','896','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29506','896','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29507','896','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29508','896','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29509','896','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29510','896','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29511','896','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29512','896','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29513','896','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29514','896','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29515','896','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29516','896','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29517','896','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29518','896','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29519','896','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29520','896','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29521','896','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29522','896','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29523','896','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29524','896','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29525','896','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29526','896','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29527','896','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29528','896','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29529','896','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29530','896','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29531','896','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29532','896','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29533','896','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29534','896','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29535','896','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29536','896','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29537','896','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29538','896','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29539','896','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29540','896','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29541','896','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29542','896','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29543','896','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29544','896','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29545','896','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29546','896','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29547','896','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29548','896','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29549','896','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29550','896','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29551','896','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29552','896','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29553','896','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29554','896','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29555','896','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29556','896','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29557','896','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29558','896','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29559','896','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29560','896','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29561','896','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29562','896','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29563','896','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29564','896','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29565','896','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29566','896','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29567','896','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29568','896','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29569','896','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29570','896','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29571','896','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29572','896','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29573','896','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29574','896','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29575','896','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29576','896','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29577','896','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29578','896','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29579','896','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29580','896','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29581','896','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29582','896','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29583','896','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29584','896','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29585','896','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29586','896','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29587','896','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29588','896','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29589','896','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29590','896','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29591','896','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29592','896','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29593','896','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29594','896','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29595','896','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29596','896','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29597','896','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29598','896','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29599','896','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29600','896','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29601','896','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29602','896','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29603','896','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29604','896','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29605','896','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29606','896','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29607','896','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29608','896','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29609','896','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29610','896','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29611','896','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29612','896','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29613','896','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29614','896','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29615','896','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29616','896','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29617','896','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29618','896','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29619','896','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29620','896','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29621','896','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29622','896','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29623','896','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29624','896','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29625','896','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29626','896','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29627','896','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29628','896','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29629','896','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29630','896','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29631','896','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29632','896','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29633','896','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29634','896','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29635','896','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29636','896','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29637','896','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29638','896','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29639','896','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29640','896','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29641','896','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29642','896','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29643','896','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29644','896','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29645','896','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29646','896','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29647','896','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29648','896','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29649','896','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29650','896','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29651','896','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29652','896','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29653','896','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29654','896','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29655','896','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29656','896','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29657','896','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29658','896','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29659','896','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29660','896','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29661','896','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29662','896','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29663','896','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29664','896','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29665','896','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29666','896','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29667','896','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29668','896','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29669','896','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29670','896','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29671','896','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29672','896','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29673','896','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29674','896','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29675','896','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29676','896','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29677','896','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29678','896','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29679','896','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29680','896','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29681','896','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29682','896','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29683','896','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29684','896','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29685','896','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29686','896','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29687','896','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29688','896','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29689','896','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29690','896','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29691','896','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29692','896','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29693','896','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29694','896','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29695','896','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29696','896','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29697','896','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29698','896','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29699','896','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29700','896','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29701','896','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29702','896','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29703','896','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29704','896','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29705','896','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29706','896','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29707','896','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29708','896','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29709','896','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29710','896','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29711','896','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29712','896','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29713','896','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29714','896','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29715','896','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29716','896','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29717','896','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29718','896','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29719','896','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29720','896','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29721','896','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29722','896','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29723','896','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29724','896','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29725','896','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29726','896','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29727','896','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29728','896','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29729','896','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29730','896','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29731','896','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29732','896','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29733','896','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29734','896','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29735','896','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29736','896','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29737','896','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29738','896','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29739','896','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29740','896','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29741','896','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29742','896','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29743','896','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29744','896','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29745','896','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29746','896','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29747','896','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29748','896','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29749','896','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29750','896','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29751','896','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29752','896','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29753','896','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29754','896','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29755','896','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29756','896','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29757','896','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29758','896','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29759','896','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29760','896','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29761','896','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29762','896','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29763','896','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29764','896','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29765','896','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29766','896','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29767','896','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29768','896','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29769','896','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29770','896','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29771','896','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29772','896','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29773','896','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29774','896','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29775','896','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29776','896','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29777','896','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29778','896','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29779','896','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29780','896','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29781','896','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29782','896','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29783','896','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29784','896','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29785','897','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29786','897','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29787','898','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29788','898','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29789','898','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29790','899','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29791','899','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29792','899','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29793','900','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29794','901','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29795','901','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29796','901','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29797','902','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29798','903','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29799','903','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29800','903','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29801','904','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29802','905','0','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29803','905','1','notpresent','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29804','905','2','down','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29805','905','3','lowerlayerdown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29806','905','4','testing','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29807','905','5','dormant','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29808','905','6','up','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29809','906','0','from KA9Q: NET/ROM pseudo','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29810','906','1','Ethernet','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29811','906','2','Experimental Ethernet','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29812','906','3','AX.25 Level 2','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29813','906','4','PROnet token ring','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29814','906','5','Chaosnet','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29815','906','6','IEEE 802.2 Ethernet/TR/TB','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29816','906','7','ARCnet','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29817','906','8','APPLEtalk','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29818','906','15','Frame Relay DLCI','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29819','906','19','ATM','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29820','906','23','Metricom STRIP (new IANA id)','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29821','906','24','IEEE 1394 IPv4 - RFC 2734','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29822','906','27','EUI-64','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29823','906','32','InfiniBand','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29824','906','256','ARPHRD_SLIP','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29825','906','257','ARPHRD_CSLIP','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29826','906','258','ARPHRD_SLIP6','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29827','906','259','ARPHRD_CSLIP6','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29828','906','260','Notional KISS type','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29829','906','264','ARPHRD_ADAPT','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29830','906','270','ARPHRD_ROSE','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29831','906','271','CCITT X.25','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29832','906','272','Boards with X.25 in firmware','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29833','906','280','Controller Area Network','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29834','906','512','ARPHRD_PPP','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29835','906','513','Cisco HDLC','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29836','906','516','LAPB','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29837','906','517','Digital\'s DDCMP protocol','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29838','906','518','Raw HDLC','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29839','906','519','Raw IP','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29840','906','768','IPIP tunnel','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29841','906','769','IP6IP6 tunnel','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29842','906','770','Frame Relay Access Device','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29843','906','771','SKIP vif','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29844','906','772','Loopback device','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29845','906','773','Localtalk device','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29846','906','774','Fiber Distributed Data Interface','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29847','906','775','AP1000 BIF','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29848','906','776','sit0 device - IPv6-in-IPv4','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29849','906','777','IP over DDP tunneller','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29850','906','778','GRE over IP','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29851','906','779','PIMSM register interface','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29852','906','780','High Performance Parallel Interface','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29853','906','781','Nexus 64Mbps Ash','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29854','906','782','Acorn Econet','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29855','906','783','Linux-IrDA','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29856','906','784','Point to point fibrechannel','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29857','906','785','Fibrechannel arbitrated loop','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29858','906','786','Fibrechannel public loop','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29859','906','787','Fibrechannel fabric','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29860','906','800','Magic type ident for TR','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29861','906','801','IEEE 802.11','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29862','906','802','IEEE 802.11 + Prism2 header','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29863','906','803','IEEE 802.11 + radiotap header','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29864','906','804','ARPHRD_IEEE802154','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29865','906','805','IEEE 802.15.4 network monitor','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29866','906','820','PhoNet media type','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29867','906','821','PhoNet pipe header','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29868','906','822','CAIF media type','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29869','906','823','GRE over IPv6','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29870','906','824','Netlink header','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29871','906','825','IPv6 over LoWPAN','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29872','906','826','Vsock monitor header','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29873','907','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29874','907','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29875','907','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29876','908','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29877','909','0','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29878','909','1','notpresent','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29879','909','2','down','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29880','909','3','lowerlayerdown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29881','909','4','testing','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29882','909','5','dormant','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29883','909','6','up','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29884','910','0','from KA9Q: NET/ROM pseudo','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29885','910','1','Ethernet','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29886','910','2','Experimental Ethernet','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29887','910','3','AX.25 Level 2','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29888','910','4','PROnet token ring','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29889','910','5','Chaosnet','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29890','910','6','IEEE 802.2 Ethernet/TR/TB','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29891','910','7','ARCnet','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29892','910','8','APPLEtalk','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29893','910','15','Frame Relay DLCI','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29894','910','19','ATM','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29895','910','23','Metricom STRIP (new IANA id)','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29896','910','24','IEEE 1394 IPv4 - RFC 2734','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29897','910','27','EUI-64','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29898','910','32','InfiniBand','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29899','910','256','ARPHRD_SLIP','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29900','910','257','ARPHRD_CSLIP','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29901','910','258','ARPHRD_SLIP6','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29902','910','259','ARPHRD_CSLIP6','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29903','910','260','Notional KISS type','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29904','910','264','ARPHRD_ADAPT','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29905','910','270','ARPHRD_ROSE','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29906','910','271','CCITT X.25','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29907','910','272','Boards with X.25 in firmware','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29908','910','280','Controller Area Network','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29909','910','512','ARPHRD_PPP','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29910','910','513','Cisco HDLC','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29911','910','516','LAPB','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29912','910','517','Digital\'s DDCMP protocol','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29913','910','518','Raw HDLC','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29914','910','519','Raw IP','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29915','910','768','IPIP tunnel','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29916','910','769','IP6IP6 tunnel','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29917','910','770','Frame Relay Access Device','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29918','910','771','SKIP vif','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29919','910','772','Loopback device','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29920','910','773','Localtalk device','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29921','910','774','Fiber Distributed Data Interface','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29922','910','775','AP1000 BIF','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29923','910','776','sit0 device - IPv6-in-IPv4','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29924','910','777','IP over DDP tunneller','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29925','910','778','GRE over IP','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29926','910','779','PIMSM register interface','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29927','910','780','High Performance Parallel Interface','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29928','910','781','Nexus 64Mbps Ash','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29929','910','782','Acorn Econet','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29930','910','783','Linux-IrDA','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29931','910','784','Point to point fibrechannel','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29932','910','785','Fibrechannel arbitrated loop','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29933','910','786','Fibrechannel public loop','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29934','910','787','Fibrechannel fabric','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29935','910','800','Magic type ident for TR','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29936','910','801','IEEE 802.11','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29937','910','802','IEEE 802.11 + Prism2 header','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29938','910','803','IEEE 802.11 + radiotap header','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29939','910','804','ARPHRD_IEEE802154','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29940','910','805','IEEE 802.15.4 network monitor','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29941','910','820','PhoNet media type','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29942','910','821','PhoNet pipe header','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29943','910','822','CAIF media type','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29944','910','823','GRE over IPv6','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29945','910','824','Netlink header','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29946','910','825','IPv6 over LoWPAN','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29947','910','826','Vsock monitor header','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29948','911','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29949','911','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29950','911','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29951','912','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29952','913','1','unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29953','913','2','halfDuplex','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29954','913','3','fullDuplex','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29955','914','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29956','914','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29957','914','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29958','914','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29959','914','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29960','914','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29961','915','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29962','915','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29963','915','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29964','915','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29965','915','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29966','915','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29967','915','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29968','915','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29969','915','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29970','915','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29971','915','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29972','915','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29973','915','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29974','915','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29975','915','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29976','915','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29977','915','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29978','915','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29979','915','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29980','915','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29981','915','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29982','915','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29983','915','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29984','915','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29985','915','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29986','915','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29987','915','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29988','915','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29989','915','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29990','915','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29991','915','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29992','915','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29993','915','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29994','915','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29995','915','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29996','915','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29997','915','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29998','915','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('29999','915','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30000','915','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30001','915','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30002','915','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30003','915','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30004','915','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30005','915','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30006','915','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30007','915','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30008','915','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30009','915','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30010','915','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30011','915','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30012','915','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30013','915','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30014','915','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30015','915','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30016','915','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30017','915','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30018','915','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30019','915','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30020','915','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30021','915','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30022','915','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30023','915','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30024','915','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30025','915','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30026','915','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30027','915','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30028','915','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30029','915','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30030','915','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30031','915','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30032','915','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30033','915','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30034','915','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30035','915','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30036','915','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30037','915','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30038','915','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30039','915','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30040','915','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30041','915','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30042','915','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30043','915','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30044','915','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30045','915','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30046','915','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30047','915','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30048','915','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30049','915','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30050','915','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30051','915','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30052','915','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30053','915','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30054','915','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30055','915','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30056','915','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30057','915','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30058','915','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30059','915','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30060','915','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30061','915','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30062','915','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30063','915','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30064','915','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30065','915','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30066','915','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30067','915','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30068','915','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30069','915','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30070','915','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30071','915','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30072','915','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30073','915','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30074','915','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30075','915','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30076','915','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30077','915','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30078','915','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30079','915','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30080','915','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30081','915','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30082','915','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30083','915','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30084','915','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30085','915','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30086','915','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30087','915','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30088','915','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30089','915','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30090','915','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30091','915','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30092','915','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30093','915','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30094','915','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30095','915','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30096','915','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30097','915','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30098','915','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30099','915','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30100','915','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30101','915','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30102','915','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30103','915','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30104','915','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30105','915','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30106','915','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30107','915','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30108','915','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30109','915','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30110','915','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30111','915','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30112','915','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30113','915','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30114','915','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30115','915','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30116','915','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30117','915','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30118','915','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30119','915','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30120','915','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30121','915','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30122','915','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30123','915','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30124','915','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30125','915','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30126','915','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30127','915','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30128','915','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30129','915','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30130','915','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30131','915','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30132','915','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30133','915','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30134','915','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30135','915','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30136','915','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30137','915','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30138','915','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30139','915','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30140','915','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30141','915','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30142','915','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30143','915','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30144','915','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30145','915','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30146','915','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30147','915','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30148','915','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30149','915','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30150','915','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30151','915','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30152','915','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30153','915','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30154','915','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30155','915','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30156','915','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30157','915','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30158','915','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30159','915','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30160','915','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30161','915','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30162','915','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30163','915','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30164','915','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30165','915','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30166','915','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30167','915','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30168','915','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30169','915','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30170','915','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30171','915','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30172','915','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30173','915','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30174','915','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30175','915','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30176','915','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30177','915','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30178','915','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30179','915','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30180','915','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30181','915','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30182','915','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30183','915','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30184','915','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30185','915','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30186','915','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30187','915','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30188','915','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30189','915','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30190','915','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30191','915','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30192','915','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30193','915','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30194','915','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30195','915','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30196','915','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30197','915','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30198','915','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30199','915','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30200','915','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30201','915','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30202','915','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30203','915','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30204','915','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30205','915','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30206','915','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30207','915','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30208','915','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30209','915','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30210','915','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30211','915','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30212','915','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30213','915','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30214','915','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30215','915','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30216','915','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30217','915','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30218','915','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30219','915','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30220','915','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30221','915','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30222','915','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30223','915','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30224','915','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30225','915','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30226','915','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30227','915','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30228','915','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30229','915','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30230','915','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30231','915','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30232','915','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30233','915','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30234','915','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30235','915','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30236','915','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30237','915','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30238','915','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30239','915','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30240','915','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30241','915','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30242','915','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30243','915','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30244','915','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30245','915','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30246','915','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30247','916','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30248','916','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30249','917','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30250','917','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30251','917','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30252','918','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30253','918','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30254','918','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30255','919','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30256','920','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30257','920','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30258','920','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30259','921','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30260','922','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30261','922','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30262','922','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30263','923','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30264','924','0','Ethernet 802.3','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30265','924','1','Token Ring 802.5','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30266','924','2','Fiber Distributed Data Interface (FDDI)','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30267','924','3','Wide Area Network (WAN)','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30268','924','4','LocalTalk','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30269','924','5','Ethernet using DIX header format','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30270','924','6','ARCNET','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30271','924','7','ARCNET (878.2)','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30272','924','8','ATM','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30273','924','9','Wireless','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30274','924','10','Infrared Wireless','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30275','924','11','Bpc','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30276','924','12','CoWan','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30277','924','13','1394','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30278','925','0','Disconnected','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30279','925','1','Connecting','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30280','925','2','Connected','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30281','925','3','Disconnecting','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30282','925','4','Hardware Not Present','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30283','925','5','Hardware Disabled','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30284','925','6','Hardware Malfunction','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30285','925','7','Media Disconnected','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30286','925','8','Authenticating','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30287','925','9','Authentication Succeeded','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30288','925','10','Authentication Failed','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30289','925','11','Invalid Address','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30290','925','12','Credentials Required','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30291','926','0','Running','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30292','926','1','Paused','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30293','926','2','Start pending','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30294','926','3','Pause pending','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30295','926','4','Continue pending','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30296','926','5','Stop pending','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30297','926','6','Stopped','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30298','926','7','Unknown','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30299','926','255','No such service','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30300','927','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30301','927','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30302','927','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30303','928','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30304','929','0','Ethernet 802.3','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30305','929','1','Token Ring 802.5','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30306','929','2','Fiber Distributed Data Interface (FDDI)','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30307','929','3','Wide Area Network (WAN)','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30308','929','4','LocalTalk','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30309','929','5','Ethernet using DIX header format','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30310','929','6','ARCNET','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30311','929','7','ARCNET (878.2)','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30312','929','8','ATM','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30313','929','9','Wireless','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30314','929','10','Infrared Wireless','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30315','929','11','Bpc','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30316','929','12','CoWan','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30317','929','13','1394','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30318','930','0','Disconnected','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30319','930','1','Connecting','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30320','930','2','Connected','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30321','930','3','Disconnecting','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30322','930','4','Hardware Not Present','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30323','930','5','Hardware Disabled','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30324','930','6','Hardware Malfunction','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30325','930','7','Media Disconnected','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30326','930','8','Authenticating','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30327','930','9','Authentication Succeeded','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30328','930','10','Authentication Failed','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30329','930','11','Invalid Address','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30330','930','12','Credentials Required','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30331','931','0','Running','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30332','931','1','Paused','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30333','931','2','Start pending','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30334','931','3','Pause pending','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30335','931','4','Continue pending','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30336','931','5','Stop pending','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30337','931','6','Stopped','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30338','931','7','Unknown','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30339','931','255','No such service','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30340','932','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30341','932','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30342','932','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30343','933','1','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30344','934','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30345','934','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30346','934','4','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30347','934','5','dormant','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30348','934','6','notPresent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30349','934','7','lowerLayerDown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30350','935','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30351','935','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30352','935','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30353','935','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30354','935','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30355','935','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30356','935','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30357','935','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30358','935','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30359','935','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30360','935','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30361','935','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30362','935','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30363','935','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30364','935','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30365','935','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30366','935','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30367','935','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30368','935','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30369','935','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30370','935','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30371','935','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30372','935','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30373','935','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30374','935','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30375','935','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30376','935','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30377','935','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30378','935','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30379','935','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30380','935','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30381','935','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30382','935','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30383','935','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30384','935','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30385','935','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30386','935','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30387','935','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30388','935','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30389','935','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30390','935','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30391','935','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30392','935','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30393','935','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30394','935','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30395','935','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30396','935','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30397','935','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30398','935','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30399','935','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30400','935','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30401','935','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30402','935','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30403','935','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30404','935','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30405','935','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30406','935','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30407','935','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30408','935','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30409','935','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30410','935','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30411','935','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30412','935','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30413','935','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30414','935','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30415','935','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30416','935','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30417','935','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30418','935','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30419','935','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30420','935','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30421','935','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30422','935','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30423','935','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30424','935','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30425','935','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30426','935','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30427','935','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30428','935','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30429','935','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30430','935','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30431','935','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30432','935','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30433','935','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30434','935','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30435','935','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30436','935','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30437','935','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30438','935','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30439','935','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30440','935','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30441','935','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30442','935','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30443','935','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30444','935','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30445','935','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30446','935','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30447','935','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30448','935','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30449','935','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30450','935','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30451','935','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30452','935','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30453','935','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30454','935','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30455','935','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30456','935','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30457','935','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30458','935','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30459','935','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30460','935','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30461','935','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30462','935','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30463','935','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30464','935','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30465','935','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30466','935','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30467','935','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30468','935','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30469','935','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30470','935','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30471','935','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30472','935','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30473','935','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30474','935','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30475','935','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30476','935','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30477','935','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30478','935','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30479','935','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30480','935','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30481','935','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30482','935','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30483','935','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30484','935','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30485','935','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30486','935','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30487','935','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30488','935','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30489','935','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30490','935','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30491','935','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30492','935','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30493','935','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30494','935','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30495','935','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30496','935','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30497','935','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30498','935','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30499','935','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30500','935','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30501','935','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30502','935','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30503','935','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30504','935','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30505','935','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30506','935','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30507','935','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30508','935','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30509','935','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30510','935','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30511','935','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30512','935','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30513','935','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30514','935','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30515','935','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30516','935','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30517','935','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30518','935','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30519','935','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30520','935','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30521','935','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30522','935','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30523','935','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30524','935','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30525','935','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30526','935','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30527','935','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30528','935','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30529','935','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30530','935','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30531','935','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30532','935','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30533','935','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30534','935','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30535','935','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30536','935','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30537','935','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30538','935','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30539','935','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30540','935','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30541','935','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30542','935','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30543','935','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30544','935','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30545','935','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30546','935','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30547','935','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30548','935','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30549','935','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30550','935','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30551','935','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30552','935','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30553','935','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30554','935','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30555','935','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30556','935','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30557','935','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30558','935','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30559','935','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30560','935','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30561','935','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30562','935','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30563','935','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30564','935','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30565','935','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30566','935','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30567','935','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30568','935','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30569','935','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30570','935','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30571','935','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30572','935','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30573','935','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30574','935','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30575','935','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30576','935','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30577','935','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30578','935','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30579','935','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30580','935','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30581','935','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30582','935','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30583','935','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30584','935','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30585','935','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30586','935','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30587','935','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30588','935','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30589','935','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30590','935','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30591','935','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30592','935','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30593','935','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30594','935','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30595','935','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30596','935','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30597','935','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30598','935','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30599','935','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30600','935','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30601','935','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30602','935','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30603','935','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30604','935','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30605','935','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30606','935','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30607','935','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30608','935','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30609','935','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30610','935','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30611','935','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30612','935','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30613','935','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30614','935','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30615','935','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30616','935','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30617','935','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30618','935','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30619','935','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30620','935','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30621','935','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30622','935','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30623','935','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30624','935','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30625','935','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30626','935','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30627','935','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30628','935','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30629','935','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30630','935','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30631','935','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30632','935','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30633','935','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30634','935','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30635','935','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30636','936','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30637','936','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30638','937','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30639','937','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30640','937','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30641','938','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30642','938','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30643','939','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30644','939','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30645','939','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30646','940','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30647','940','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30648','940','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30649','941','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30650','941','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30651','942','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30652','942','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30653','942','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30654','943','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30655','943','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30656','944','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30657','944','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30658','944','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30659','945','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30660','945','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30661','946','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30662','946','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30663','946','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30664','947','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30665','947','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30666','948','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30667','948','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30668','948','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30669','949','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30670','949','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30671','950','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30672','950','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30673','950','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30674','951','0','False','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30675','951','1','True','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30676','952','0 - 11.24','N','3','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30677','952','11.25 - 33.74','NNE','3','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30678','952','33.75 - 56.24','NE','3','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30679','952','56.25 - 78.74','ENE','3','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30680','952','78.75 - 101.24','E','3','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30681','952','101.25 - 123.74','ESE','3','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30682','952','123.75 - 146.24','SE','3','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30683','952','146.25 - 168.74','SSE','3','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30684','952','168.75 - 191.24','S','3','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30685','952','191.25 - 213.74','SSW','3','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30686','952','213.75 - 236.24','SW','3','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30687','952','236.25 - 258.74','WSW','3','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30688','952','258.75 - 281.24','W','3','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30689','952','281.25 - 303.74','WNW','3','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30690','952','303.75 - 326.24','NW','3','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30691','952','326.25 - 348.74','NNW','3','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30692','952','348.75 - 379.99','N','3','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30693','953','1','Yes','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30694','953','0','No','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30695','954','100','Continue','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30696','954','101','Switching Protocols','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30697','954','102','Processing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30698','954','200','OK','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30699','954','201','Created','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30700','954','202','Accepted','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30701','954','203','Non-Authoritative Information','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30702','954','204','No Content','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30703','954','205','Reset Content','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30704','954','206','Partial Content','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30705','954','207','Multi-Status','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30706','954','208','Already Reported','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30707','954','226','IM Used','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30708','954','300','Multiple Choices','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30709','954','301','Moved Permanently','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30710','954','302','Found','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30711','954','303','See Other','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30712','954','304','Not Modified','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30713','954','305','Use Proxy','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30714','954','306','Switch Proxy','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30715','954','307','Temporary Redirect','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30716','954','308','Permanent Redirect/Resume Incomplete','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30717','954','400','Bad Request','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30718','954','401','Unauthorized','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30719','954','402','Payment Required','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30720','954','403','Forbidden','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30721','954','404','Not Found','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30722','954','405','Method Not Allowed','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30723','954','406','Not Acceptable','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30724','954','407','Proxy Authentication Required','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30725','954','408','Request Timeout','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30726','954','409','Conflict','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30727','954','410','Gone','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30728','954','411','Length Required','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30729','954','412','Precondition Failed','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30730','954','413','Payload Too Large','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30731','954','414','Request-URI Too Long','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30732','954','415','Unsupported Media Type','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30733','954','416','Requested Range Not Satisfiable','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30734','954','417','Expectation Failed','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30735','954','418','I\'m a Teapot','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30736','954','419','Authentication Timeout','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30737','954','420','Method Failure/Enhance Your Calm','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30738','954','421','Misdirected Request','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30739','954','422','Unprocessable Entity','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30740','954','423','Locked','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30741','954','424','Failed Dependency','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30742','954','426','Upgrade Required','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30743','954','428','Precondition Required','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30744','954','429','Too Many Requests','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30745','954','431','Request Header Fields Too Large','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30746','954','440','Login Timeout','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30747','954','444','No Response','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30748','954','449','Retry With','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30749','954','450','Blocked by Windows Parental Controls','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30750','954','451','Unavailable for Legal Reasons/Redirect','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30751','954','494','Request Header Too Large','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30752','954','495','Cert Error','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30753','954','496','No Cert','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30754','954','497','HTTP to HTTPS','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30755','954','498','Token Expired/Invalid','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30756','954','499','Client Closed Request/Token Required','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30757','954','500','Internal Server Error','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30758','954','501','Not Implemented','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30759','954','502','Bad Gateway','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30760','954','503','Service Unavailable','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30761','954','504','Gateway Timeout','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30762','954','505','HTTP Version Not Supported','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30763','954','506','Variant Also Negotiates','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30764','954','507','Insufficient Storage','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30765','954','508','Loop Detected','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30766','954','509','Bandwidth Limit Exceeded','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30767','954','510','Not Extended','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30768','954','511','Network Authentication Required','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30769','954','520','Unknown Error','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30770','954','598','Network Read Timeout Error','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30771','954','599','Network Connect Timeout Error','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30772','955','1','Online','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30773','955','0','Offline','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30774','956','0','online','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30775','956','1','degraded','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30776','956','2','faulted','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30777','956','3','offline','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30778','956','4','unavail','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30779','956','5','removed','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30780','957','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30781','957','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30782','957','3','testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30783','957','4','unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30784','957','5','dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30785','957','6','notPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30786','957','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30787','958','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30788','958','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30789','958','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30790','958','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30791','958','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30792','958','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30793','958','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30794','958','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30795','958','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30796','958','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30797','958','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30798','958','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30799','958','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30800','958','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30801','958','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30802','958','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30803','958','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30804','958','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30805','958','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30806','958','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30807','958','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30808','958','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30809','958','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30810','958','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30811','958','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30812','958','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30813','958','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30814','958','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30815','958','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30816','958','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30817','958','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30818','958','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30819','958','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30820','958','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30821','958','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30822','958','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30823','958','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30824','958','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30825','958','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30826','958','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30827','958','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30828','958','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30829','958','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30830','958','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30831','958','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30832','958','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30833','958','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30834','958','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30835','958','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30836','958','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30837','958','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30838','958','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30839','958','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30840','958','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30841','958','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30842','958','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30843','958','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30844','958','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30845','958','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30846','958','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30847','958','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30848','958','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30849','958','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30850','958','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30851','958','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30852','958','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30853','958','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30854','958','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30855','958','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30856','958','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30857','958','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30858','958','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30859','958','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30860','958','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30861','958','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30862','958','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30863','958','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30864','958','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30865','958','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30866','958','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30867','958','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30868','958','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30869','958','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30870','958','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30871','958','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30872','958','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30873','958','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30874','958','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30875','958','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30876','958','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30877','958','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30878','958','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30879','958','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30880','958','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30881','958','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30882','958','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30883','958','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30884','958','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30885','958','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30886','958','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30887','958','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30888','958','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30889','958','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30890','958','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30891','958','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30892','958','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30893','958','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30894','958','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30895','958','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30896','958','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30897','958','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30898','958','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30899','958','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30900','958','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30901','958','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30902','958','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30903','958','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30904','958','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30905','958','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30906','958','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30907','958','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30908','958','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30909','958','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30910','958','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30911','958','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30912','958','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30913','958','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30914','958','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30915','958','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30916','958','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30917','958','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30918','958','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30919','958','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30920','958','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30921','958','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30922','958','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30923','958','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30924','958','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30925','958','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30926','958','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30927','958','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30928','958','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30929','958','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30930','958','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30931','958','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30932','958','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30933','958','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30934','958','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30935','958','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30936','958','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30937','958','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30938','958','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30939','958','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30940','958','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30941','958','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30942','958','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30943','958','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30944','958','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30945','958','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30946','958','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30947','958','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30948','958','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30949','958','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30950','958','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30951','958','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30952','958','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30953','958','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30954','958','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30955','958','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30956','958','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30957','958','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30958','958','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30959','958','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30960','958','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30961','958','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30962','958','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30963','958','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30964','958','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30965','958','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30966','958','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30967','958','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30968','958','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30969','958','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30970','958','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30971','958','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30972','958','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30973','958','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30974','958','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30975','958','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30976','958','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30977','958','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30978','958','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30979','958','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30980','958','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30981','958','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30982','958','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30983','958','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30984','958','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30985','958','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30986','958','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30987','958','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30988','958','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30989','958','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30990','958','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30991','958','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30992','958','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30993','958','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30994','958','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30995','958','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30996','958','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30997','958','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30998','958','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('30999','958','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31000','958','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31001','958','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31002','958','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31003','958','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31004','958','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31005','958','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31006','958','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31007','958','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31008','958','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31009','958','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31010','958','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31011','958','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31012','958','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31013','958','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31014','958','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31015','958','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31016','958','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31017','958','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31018','958','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31019','958','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31020','958','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31021','958','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31022','958','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31023','958','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31024','958','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31025','958','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31026','958','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31027','958','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31028','958','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31029','958','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31030','958','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31031','958','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31032','958','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31033','958','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31034','958','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31035','958','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31036','958','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31037','958','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31038','958','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31039','958','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31040','958','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31041','958','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31042','958','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31043','958','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31044','958','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31045','958','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31046','958','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31047','958','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31048','958','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31049','958','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31050','958','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31051','958','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31052','958','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31053','958','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31054','958','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31055','958','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31056','958','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31057','958','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31058','958','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31059','958','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31060','958','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31061','958','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31062','958','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31063','958','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31064','958','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31065','958','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31066','958','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31067','958','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31068','958','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31069','958','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31070','958','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31071','958','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31072','958','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31073','959','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31074','959','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31075','960','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31076','960','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31077','960','2','unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31078','961','0','Unhealthy','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31079','961','1','Healthy','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31080','962','0','passing','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31081','962','1','warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31082','962','2','critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31083','962','255','unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31084','963','0','Agent','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31085','963','1','Server','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31086','964','0','passing','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31087','964','1','warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31088','964','2','critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31089','964','255','unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31090','965','0','Not started','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31091','965','1','Started','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31092','966','0','Not Live','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31093','966','1','Live','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31094','967','0','Live','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31095','967','1','Draining','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31096','967','2','Pre initializing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31097','967','3','Initializing','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31098','968','200','Healthy','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31099','968','500','Not healthy','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31100','969','200','Ready','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31101','969','503','Not ready','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31102','970','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31103','970','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31104','971','0','Operational','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31105','971','1','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31106','971','2','Not Installed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31107','972','0','FTOL','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31108','972','1','FTDN','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31109','972','2','CRIT','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31110','972','3','OFFL','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31111','972','4','QTCR','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31112','972','5','QTOF','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31113','972','6','QTDN','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31114','972','7','STOP','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31115','972','8','MSNG','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31116','972','9','DMGD','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31117','972','11','QTDN','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31118','972','250','UP','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31119','973','1','OK','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31120','973','2','Critical','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31121','973','3','Warning','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31122','973','4','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31123','974','4','SAS','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31124','974','8','SSD SAS','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31125','974','11','SAS MDL','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31126','975','0','Unsupported','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31127','975','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31128','975','2','Error','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31129','975','3','Warning','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31130','975','4','Unrecoverable','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31131','975','5','Not Present','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31132','975','6','Unknown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31133','975','7','Unavailable','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31134','975','20','Spun Down','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31135','976','0','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31136','976','1','Error','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31137','976','2','Off','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31138','976','3','Missing','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31139','977','0','Invalid data','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31140','977','1','Fault','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31141','977','2','Absent','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31142','977','4','OK','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31143','977','5','Not available','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31144','977','6','Unknown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31145','978','0','OK','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31146','978','1','Degraded','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31147','978','2','Fault','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31148','978','3','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31149','978','4','N/A','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31150','979','0','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31151','979','6','FC','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31152','979','8','SAS','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31153','979','9','iSCSI','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31154','980','0','RAID0','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31155','980','1','RAID1','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31156','980','3','RAID3','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31157','980','5','RAID5','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31158','980','6','NRAID','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31159','980','8','RAID50','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31160','980','10','RAID10','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31161','980','11','RAID6','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31162','981','0','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31163','981','1','Warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31164','981','2','Error','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31165','981','3','Not present','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31166','981','4','Unknown','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31167','981','6','Disconnected','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31168','982','0','Operational','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31169','982','1','Down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31170','982','2','Not Installed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31171','983','0','FTOL','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31172','983','1','FTDN','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31173','983','2','CRIT','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31174','983','3','OFFL','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31175','983','4','QTCR','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31176','983','5','QTOF','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31177','983','6','QTDN','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31178','983','7','STOP','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31179','983','8','MSNG','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31180','983','9','DMGD','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31181','983','11','QTDN','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31182','983','250','UP','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31183','984','1','OK','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31184','984','2','Critical','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31185','984','3','Warning','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31186','984','4','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31187','985','4','SAS','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31188','985','8','SSD SAS','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31189','985','11','SAS MDL','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31190','986','0','Unsupported','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31191','986','1','OK','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31192','986','2','Critical','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31193','986','3','Warning','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31194','986','4','Unrecoverable','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31195','986','5','Not installed','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31196','986','6','Unknown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31197','986','7','Unavailable','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31198','987','0','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31199','987','1','Error','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31200','987','2','Off','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31201','987','3','Missing','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31202','988','0','Invalid data','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31203','988','1','Fault','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31204','988','2','Absent','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31205','988','3','Power off','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31206','988','4','OK','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31207','989','0','OK','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31208','989','1','Degraded','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31209','989','2','Fault','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31210','989','3','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31211','989','4','N/A','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31212','990','0','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31213','990','6','FC','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31214','990','8','SAS','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31215','990','9','iSCSI','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31216','991','0','RAID0','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31217','991','1','RAID1','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31218','991','2','MSA-DP+','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31219','991','5','RAID5','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31220','991','6','NRAID','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31221','991','10','RAID10','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31222','991','11','RAID6','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31223','992','0','Up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31224','992','1','Warning','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31225','992','2','Error','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31226','992','3','Not present','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31227','992','4','Unknown','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31228','992','6','Disconnected','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31229','993','0','No','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31230','993','1','Yes','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31231','994','1','Normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31232','994','2','Degraded','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31233','994','3','New','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31234','994','4','Failed','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31235','994','99','Unknown','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31236','995','1','FC','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31237','995','2','Eth','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31238','995','3','iSCSI','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31239','995','4','CNA','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31240','995','5','SAS','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31241','995','6','Combo','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31242','995','7','NVMe','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31243','995','8','Unknown','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31244','996','1','Host','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31245','996','2','Disk','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31246','996','3','Free','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31247','996','4','Iport','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31248','996','5','RCFC','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31249','996','6','Peer','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31250','996','7','RCIP','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31251','996','8','ISCSI','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31252','996','9','CNA','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31253','996','10','FS','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31254','997','1','None','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31255','997','2','Failover pending','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31256','997','3','Failed over','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31257','997','4','Active','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31258','997','5','Active down','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31259','997','6','Active failed','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31260','997','7','Failback_pending','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31261','998','1','Config wait','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31262','998','2','ALPA wait','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31263','998','3','Login wait','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31264','998','4','Link is ready','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31265','998','5','Link is loss sync','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31266','998','6','In error state','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31267','998','7','xxx','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31268','998','8','Non participate','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31269','998','9','Core dump','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31270','998','10','Offline','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31271','998','11','FW dead','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31272','998','12','Idle for reset','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31273','998','13','DHCP in progress','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31274','998','14','Pending reset','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31275','998','15','New','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31276','998','16','Disabled','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31277','998','17','Down','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31278','998','18','Failed','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31279','998','19','Purging','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31280','999','1','None','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31281','999','2','Primary','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31282','999','3','Secondary','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31283','999','4','Snap','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31284','999','5','Sync','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31285','999','6','Delete','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31286','999','99','Unknown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31287','1000','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31288','1000','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31289','1001','1','Normal','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31290','1001','2','Degraded','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31291','1001','3','Failed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31292','1001','99','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31293','1002','1','Done','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31294','1002','2','Active','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31295','1002','3','Cancelled','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31296','1002','4','Failed','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31297','1003','1','VV copy','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31298','1003','2','Phys copy resync','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31299','1003','3','Move regions','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31300','1003','4','Promote SV','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31301','1003','5','Remote copy sync','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31302','1003','6','Remote copy reverse','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31303','1003','7','Remote copy failover','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31304','1003','8','Remote copy recover','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31305','1003','9','Remote copy restore','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31306','1003','10','Compact CPG','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31307','1003','11','Compact IDS','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31308','1003','12','Snapshot accounting','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31309','1003','13','Check VV','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31310','1003','14','Scheduled task','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31311','1003','15','System task','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31312','1003','16','Background task','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31313','1003','17','Import VV','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31314','1003','18','Online copy','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31315','1003','19','Convert VV','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31316','1003','20','Background command','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31317','1003','21','CLX sync','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31318','1003','22','CLX recovery','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31319','1003','23','Tune SD','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31320','1003','24','Tune VV','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31321','1003','25','Tune VV rollback','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31322','1003','26','Tune VV restart','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31323','1003','27','System tuning','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31324','1003','28','Node rescue','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31325','1003','29','Repair sync','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31326','1003','30','Remote copy switchover','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31327','1003','31','Defragmentation','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31328','1003','32','Encryption change','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31329','1003','33','Remote copy failsafe','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31330','1003','34','Tune TPVV','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31331','1003','35','Remote copy change mode','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31332','1003','37','Online promote','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31333','1003','38','Relocate PD','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31334','1003','39','Periodic CSS','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31335','1003','40','Tune VV large','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31336','1003','41','SD meta fixer','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31337','1003','42','Dedup dryrun','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31338','1003','43','Compr dryrun','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31339','1003','44','Dedup compr dryrun','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31340','1003','99','Unknown','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31341','1004','1','Yes','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31342','1004','2','No','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31343','1004','3','Off','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31344','1004','4','NA','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31345','1005','1','Yes','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31346','1005','2','No','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31347','1005','3','NA','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31348','1005','4','Off','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31349','1006','1','LDS not started','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31350','1006','2','VV not started','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31351','1006','3','Needs check','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31352','1006','4','Needs maint check','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31353','1006','5','Internal consistency error','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31354','1006','6','Snapdata invalid','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31355','1006','7','Preserved','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31356','1006','8','Stale','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31357','1006','9','Copy failed','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31358','1006','10','Degraded avail','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31359','1006','11','Degraded perf','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31360','1006','12','Promoting','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31361','1006','13','Copy target','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31362','1006','14','Resync target','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31363','1006','15','Tuning','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31364','1006','16','Closing','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31365','1006','17','Removing','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31366','1006','18','Removing retry','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31367','1006','19','Creating','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31368','1006','20','Copy source','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31369','1006','21','Importing','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31370','1006','22','Converting','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31371','1006','23','Invalid','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31372','1006','24','Exclusive','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31373','1006','25','Consistent','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31374','1006','26','Standby','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31375','1006','27','SD Meta inconsistent','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31376','1006','28','SD needs fix','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31377','1006','29','SD meta fix','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31378','1006','999','Unknown state','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31379','1006','1000','State not supported by WSAPI','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31380','1007','0','No','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31381','1007','1','Yes','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31382','1008','0','Absent','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31383','1008','1','PresenceNoOp','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31384','1008','2','PresenceUnknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31385','1008','3','Present','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31386','1008','4','Subsumed','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31387','1009','0','Adding','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31388','1009','1','Configured','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31389','1009','2','Configuring','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31390','1009','3','Interrupted','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31391','1009','4','Monitored','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31392','1009','5','Pending','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31393','1009','6','RemoveFailed','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31394','1009','7','Removing','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31395','1009','8','Unmanaged','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31396','1009','9','Unsupported','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31397','1009','10','Unknown','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31398','1010','0','Critical','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31399','1010','1','Disabled','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31400','1010','2','OK','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31401','1010','3','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31402','1010','4','Warning','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31403','1011','0','Connected','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31404','1011','1','Disconnected','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31405','1011','2','Configuring','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31406','1011','3','Error','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31407','1011','4','Unknown','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31408','1012','0','Disabled','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31409','1012','1','Linked','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31410','1012','2','Unlinked','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31411','1012','3','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31412','1013','0','Inconsistent','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31413','1013','1','Creating','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31414','1013','2','DeleteFailed','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31415','1013','3','Deleting','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31416','1013','4','Consistent','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31417','1013','5','Updating','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31418','1013','6','Unknown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31419','1014','0','Maintenance','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31420','1014','1','Normal','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31421','1014','2','Unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31422','1015','0','Active','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31423','1015','1','Disabled','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31424','1015','2','I3s','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31425','1015','3','Other','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31426','1015','4','Standby','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31427','1015','5','Unknown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31428','1016','0','Migrating','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31429','1016','1','NotApplicable','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31430','1016','2','Unknown','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31431','1017','0','NparDegrade','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31432','1017','1','NparHealthInvalid','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31433','1017','2','NparHealthMax','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31434','1017','3','NparOk','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31435','1017','4','Unknown','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31436','1018','0','ParStatusActive','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31437','1018','1','ParStatusInactive','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31438','1018','2','ParStatusInvalid','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31439','1018','3','ParStatusManualRepair','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31440','1018','4','ParStatusMax','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31441','1018','5','ParStatusUndefined','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31442','1018','6','ParStatusUnknown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31443','1019','0','PoweringOff','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31444','1019','1','PoweringOn','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31445','1019','2','Resetting','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31446','1019','3','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31447','1019','4','Off','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31448','1019','5','On','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31449','1020','0','EFuse','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31450','1020','1','Reset','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31451','1020','2','SoftReset','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31452','1020','3','Unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31453','1021','0','Adding','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31454','1021','1','AddError','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31455','1021','2','Configured','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31456','1021','3','CredentialError','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31457','1021','4','Refreshing','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31458','1021','5','RefreshError','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31459','1021','6','Removing','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31460','1021','7','RemoveError','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31461','1021','8','Unmanaged','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31462','1021','9','Unknown','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31463','1022','0','Degraded','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31464','1022','1','Failed','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31465','1022','2','Misplaced','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31466','1022','3','Missing','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31467','1022','4','OK','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31468','1022','5','Unknown','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31469','1023','0','Unknown','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31470','1023','1','Adding','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31471','1023','2','NoProfileApplied','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31472','1023','3','Monitored','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31473','1023','4','Unmanaged','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31474','1023','5','Removing','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31475','1023','6','RemoveFailed','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31476','1023','7','Removed','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31477','1023','8','ApplyingProfile','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31478','1023','9','ProfileApplied','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31479','1023','10','RemovingProfile','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31480','1023','11','ProfileError','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31481','1023','12','Unsupported','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31482','1023','13','UpdatingFirmware','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31483','1024','0','Down','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31484','1024','1','Up','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31485','1025','0','Missing','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31486','1025','1','None','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31487','1025','2','Not Added','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31488','1025','3','Not Owner','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31489','1025','4','Operation Failed','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31490','1025','5','Unowned','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31491','1025','6','Unsupported Firmware','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31492','1025','7','Updating Firmware','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31493','1025','8','Unknown','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31494','1026','0','AddFailed','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31495','1026','1','Adding','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31496','1026','2','Configured','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31497','1026','3','Connected','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31498','1026','4','Copying','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31499','1026','5','CreateFailed','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31500','1026','6','Creating','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31501','1026','7','DeleteFailed','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31502','1026','8','Deleting','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31503','1026','9','Discovered','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31504','1026','10','Managed','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31505','1026','11','Normal','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31506','1026','12','UpdateFailed','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31507','1026','13','Updating','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31508','1026','14','Unknown','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31509','1027','1','up','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31510','1027','2','down','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31511','1027','3','testing','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31512','1027','4','unknown','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31513','1027','5','dormant','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31514','1027','6','notPresent','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31515','1027','7','lowerLayerDown','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31516','1028','1','other','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31517','1028','2','regular1822','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31518','1028','3','hdh1822','0','2');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31519','1028','4','ddnX25','0','3');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31520','1028','5','rfc877x25','0','4');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31521','1028','6','ethernetCsmacd','0','5');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31522','1028','7','iso88023Csmacd','0','6');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31523','1028','8','iso88024TokenBus','0','7');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31524','1028','9','iso88025TokenRing','0','8');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31525','1028','10','iso88026Man','0','9');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31526','1028','11','starLan','0','10');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31527','1028','12','proteon10Mbit','0','11');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31528','1028','13','proteon80Mbit','0','12');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31529','1028','14','hyperchannel','0','13');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31530','1028','15','fddi','0','14');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31531','1028','16','lapb','0','15');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31532','1028','17','sdlc','0','16');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31533','1028','18','ds1','0','17');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31534','1028','19','e1','0','18');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31535','1028','20','basicISDN','0','19');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31536','1028','21','primaryISDN','0','20');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31537','1028','22','propPointToPointSerial','0','21');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31538','1028','23','ppp','0','22');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31539','1028','24','softwareLoopback','0','23');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31540','1028','25','eon','0','24');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31541','1028','26','ethernet3Mbit','0','25');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31542','1028','27','nsip','0','26');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31543','1028','28','slip','0','27');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31544','1028','29','ultra','0','28');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31545','1028','30','ds3','0','29');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31546','1028','31','sip','0','30');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31547','1028','32','frameRelay','0','31');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31548','1028','33','rs232','0','32');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31549','1028','34','para','0','33');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31550','1028','35','arcnet','0','34');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31551','1028','36','arcnetPlus','0','35');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31552','1028','37','atm','0','36');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31553','1028','38','miox25','0','37');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31554','1028','39','sonet','0','38');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31555','1028','40','x25ple','0','39');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31556','1028','41','iso88022llc','0','40');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31557','1028','42','localTalk','0','41');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31558','1028','43','smdsDxi','0','42');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31559','1028','44','frameRelayService','0','43');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31560','1028','45','v35','0','44');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31561','1028','46','hssi','0','45');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31562','1028','47','hippi','0','46');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31563','1028','48','modem','0','47');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31564','1028','49','aal5','0','48');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31565','1028','50','sonetPath','0','49');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31566','1028','51','sonetVT','0','50');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31567','1028','52','smdsIcip','0','51');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31568','1028','53','propVirtual','0','52');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31569','1028','54','propMultiplexor','0','53');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31570','1028','55','ieee80212','0','54');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31571','1028','56','fibreChannel','0','55');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31572','1028','57','hippiInterface','0','56');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31573','1028','58','frameRelayInterconnect','0','57');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31574','1028','59','aflane8023','0','58');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31575','1028','60','aflane8025','0','59');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31576','1028','61','cctEmul','0','60');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31577','1028','62','fastEther','0','61');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31578','1028','63','isdn','0','62');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31579','1028','64','v11','0','63');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31580','1028','65','v36','0','64');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31581','1028','66','g703at64k','0','65');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31582','1028','67','g703at2mb','0','66');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31583','1028','68','qllc','0','67');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31584','1028','69','fastEtherFX','0','68');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31585','1028','70','channel','0','69');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31586','1028','71','ieee80211','0','70');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31587','1028','72','ibm370parChan','0','71');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31588','1028','73','escon','0','72');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31589','1028','74','dlsw','0','73');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31590','1028','75','isdns','0','74');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31591','1028','76','isdnu','0','75');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31592','1028','77','lapd','0','76');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31593','1028','78','ipSwitch','0','77');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31594','1028','79','rsrb','0','78');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31595','1028','80','atmLogical','0','79');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31596','1028','81','ds0','0','80');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31597','1028','82','ds0Bundle','0','81');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31598','1028','83','bsc','0','82');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31599','1028','84','async','0','83');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31600','1028','85','cnr','0','84');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31601','1028','86','iso88025Dtr','0','85');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31602','1028','87','eplrs','0','86');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31603','1028','88','arap','0','87');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31604','1028','89','propCnls','0','88');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31605','1028','90','hostPad','0','89');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31606','1028','91','termPad','0','90');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31607','1028','92','frameRelayMPI','0','91');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31608','1028','93','x213','0','92');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31609','1028','94','adsl','0','93');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31610','1028','95','radsl','0','94');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31611','1028','96','sdsl','0','95');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31612','1028','97','vdsl','0','96');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31613','1028','98','iso88025CRFPInt','0','97');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31614','1028','99','myrinet','0','98');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31615','1028','100','voiceEM','0','99');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31616','1028','101','voiceFXO','0','100');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31617','1028','102','voiceFXS','0','101');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31618','1028','103','voiceEncap','0','102');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31619','1028','104','voiceOverIp','0','103');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31620','1028','105','atmDxi','0','104');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31621','1028','106','atmFuni','0','105');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31622','1028','107','atmIma','0','106');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31623','1028','108','pppMultilinkBundle','0','107');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31624','1028','109','ipOverCdlc','0','108');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31625','1028','110','ipOverClaw','0','109');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31626','1028','111','stackToStack','0','110');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31627','1028','112','virtualIpAddress','0','111');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31628','1028','113','mpc','0','112');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31629','1028','114','ipOverAtm','0','113');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31630','1028','115','iso88025Fiber','0','114');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31631','1028','116','tdlc','0','115');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31632','1028','117','gigabitEthernet','0','116');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31633','1028','118','hdlc','0','117');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31634','1028','119','lapf','0','118');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31635','1028','120','v37','0','119');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31636','1028','121','x25mlp','0','120');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31637','1028','122','x25huntGroup','0','121');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31638','1028','123','trasnpHdlc','0','122');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31639','1028','124','interleave','0','123');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31640','1028','125','fast','0','124');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31641','1028','126','ip','0','125');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31642','1028','127','docsCableMaclayer','0','126');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31643','1028','128','docsCableDownstream','0','127');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31644','1028','129','docsCableUpstream','0','128');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31645','1028','130','a12MppSwitch','0','129');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31646','1028','131','tunnel','0','130');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31647','1028','132','coffee','0','131');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31648','1028','133','ces','0','132');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31649','1028','134','atmSubInterface','0','133');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31650','1028','135','l2vlan','0','134');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31651','1028','136','l3ipvlan','0','135');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31652','1028','137','l3ipxvlan','0','136');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31653','1028','138','digitalPowerline','0','137');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31654','1028','139','mediaMailOverIp','0','138');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31655','1028','140','dtm','0','139');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31656','1028','141','dcn','0','140');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31657','1028','142','ipForward','0','141');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31658','1028','143','msdsl','0','142');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31659','1028','144','ieee1394','0','143');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31660','1028','145','if-gsn','0','144');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31661','1028','146','dvbRccMacLayer','0','145');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31662','1028','147','dvbRccDownstream','0','146');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31663','1028','148','dvbRccUpstream','0','147');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31664','1028','149','atmVirtual','0','148');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31665','1028','150','mplsTunnel','0','149');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31666','1028','151','srp','0','150');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31667','1028','152','voiceOverAtm','0','151');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31668','1028','153','voiceOverFrameRelay','0','152');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31669','1028','154','idsl','0','153');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31670','1028','155','compositeLink','0','154');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31671','1028','156','ss7SigLink','0','155');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31672','1028','157','propWirelessP2P','0','156');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31673','1028','158','frForward','0','157');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31674','1028','159','rfc1483','0','158');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31675','1028','160','usb','0','159');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31676','1028','161','ieee8023adLag','0','160');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31677','1028','162','bgppolicyaccounting','0','161');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31678','1028','163','frf16MfrBundle','0','162');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31679','1028','164','h323Gatekeeper','0','163');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31680','1028','165','h323Proxy','0','164');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31681','1028','166','mpls','0','165');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31682','1028','167','mfSigLink','0','166');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31683','1028','168','hdsl2','0','167');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31684','1028','169','shdsl','0','168');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31685','1028','170','ds1FDL','0','169');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31686','1028','171','pos','0','170');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31687','1028','172','dvbAsiIn','0','171');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31688','1028','173','dvbAsiOut','0','172');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31689','1028','174','plc','0','173');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31690','1028','175','nfas','0','174');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31691','1028','176','tr008','0','175');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31692','1028','177','gr303RDT','0','176');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31693','1028','178','gr303IDT','0','177');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31694','1028','179','isup','0','178');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31695','1028','180','propDocsWirelessMaclayer','0','179');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31696','1028','181','propDocsWirelessDownstream','0','180');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31697','1028','182','propDocsWirelessUpstream','0','181');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31698','1028','183','hiperlan2','0','182');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31699','1028','184','propBWAp2Mp','0','183');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31700','1028','185','sonetOverheadChannel','0','184');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31701','1028','186','digitalWrapperOverheadChannel','0','185');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31702','1028','187','aal2','0','186');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31703','1028','188','radioMAC','0','187');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31704','1028','189','atmRadio','0','188');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31705','1028','190','imt','0','189');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31706','1028','191','mvl','0','190');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31707','1028','192','reachDSL','0','191');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31708','1028','193','frDlciEndPt','0','192');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31709','1028','194','atmVciEndPt','0','193');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31710','1028','195','opticalChannel','0','194');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31711','1028','196','opticalTransport','0','195');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31712','1028','197','propAtm','0','196');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31713','1028','198','voiceOverCable','0','197');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31714','1028','199','infiniband','0','198');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31715','1028','200','teLink','0','199');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31716','1028','201','q2931','0','200');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31717','1028','202','virtualTg','0','201');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31718','1028','203','sipTg','0','202');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31719','1028','204','sipSig','0','203');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31720','1028','205','docsCableUpstreamChannel','0','204');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31721','1028','206','econet','0','205');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31722','1028','207','pon155','0','206');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31723','1028','208','pon622','0','207');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31724','1028','209','bridge','0','208');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31725','1028','210','linegroup','0','209');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31726','1028','211','voiceEMFGD','0','210');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31727','1028','212','voiceFGDEANA','0','211');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31728','1028','213','voiceDID','0','212');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31729','1028','214','mpegTransport','0','213');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31730','1028','215','sixToFour','0','214');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31731','1028','216','gtp','0','215');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31732','1028','217','pdnEtherLoop1','0','216');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31733','1028','218','pdnEtherLoop2','0','217');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31734','1028','219','opticalChannelGroup','0','218');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31735','1028','220','homepna','0','219');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31736','1028','221','gfp','0','220');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31737','1028','222','ciscoISLvlan','0','221');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31738','1028','223','actelisMetaLOOP','0','222');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31739','1028','224','fcipLink','0','223');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31740','1028','225','rpr','0','224');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31741','1028','226','qam','0','225');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31742','1028','227','lmp','0','226');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31743','1028','228','cblVectaStar','0','227');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31744','1028','229','docsCableMCmtsDownstream','0','228');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31745','1028','230','adsl2','0','229');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31746','1028','231','macSecControlledIF','0','230');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31747','1028','232','macSecUncontrolledIF','0','231');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31748','1028','233','aviciOpticalEther','0','232');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31749','1028','234','atmbond','0','233');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31750','1028','235','voiceFGDOS','0','234');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31751','1028','236','mocaVersion1','0','235');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31752','1028','237','ieee80216WMAN','0','236');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31753','1028','238','adsl2plus','0','237');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31754','1028','239','dvbRcsMacLayer','0','238');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31755','1028','240','dvbTdm','0','239');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31756','1028','241','dvbRcsTdma','0','240');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31757','1028','242','x86Laps','0','241');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31758','1028','243','wwanPP','0','242');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31759','1028','244','wwanPP2','0','243');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31760','1028','245','voiceEBS','0','244');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31761','1028','246','ifPwType','0','245');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31762','1028','247','ilan','0','246');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31763','1028','248','pip','0','247');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31764','1028','249','aluELP','0','248');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31765','1028','250','gpon','0','249');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31766','1028','251','vdsl2','0','250');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31767','1028','252','capwapDot11Profile','0','251');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31768','1028','253','capwapDot11Bss','0','252');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31769','1028','254','capwapWtpVirtualRadio','0','253');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31770','1028','255','bits','0','254');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31771','1028','256','docsCableUpstreamRfPort','0','255');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31772','1028','257','cableDownstreamRfPort','0','256');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31773','1028','258','vmwareVirtualNic','0','257');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31774','1028','259','ieee802154','0','258');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31775','1028','260','otnOdu','0','259');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31776','1028','261','otnOtu','0','260');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31777','1028','262','ifVfiType','0','261');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31778','1028','263','g9981','0','262');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31779','1028','264','g9982','0','263');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31780','1028','265','g9983','0','264');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31781','1028','266','aluEpon','0','265');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31782','1028','267','aluEponOnu','0','266');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31783','1028','268','aluEponPhysicalUni','0','267');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31784','1028','269','aluEponLogicalLink','0','268');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31785','1028','270','aluGponOnu','0','269');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31786','1028','271','aluGponPhysicalUni','0','270');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31787','1028','272','vmwareNicTeam','0','271');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31788','1028','277','docsOfdmDownstream','0','272');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31789','1028','278','docsOfdmaUpstream','0','273');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31790','1028','279','gfast','0','274');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31791','1028','280','sdci','0','275');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31792','1028','281','xboxWireless','0','276');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31793','1028','282','fastdsl','0','277');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31794','1028','283','docsCableScte55d1FwdOob','0','278');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31795','1028','284','docsCableScte55d1RetOob','0','279');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31796','1028','285','docsCableScte55d2DsOob','0','280');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31797','1028','286','docsCableScte55d2UsOob','0','281');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31798','1028','287','docsCableNdf','0','282');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31799','1028','288','docsCableNdr','0','283');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31800','1028','289','ptm','0','284');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31801','1028','290','ghn','0','285');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31802','1029','0','not running','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31803','1029','2','running','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31804','1030','1','true','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31805','1030','2','false','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31806','1031','0','not available','0','0');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31807','1031','1','available','0','1');
INSERT INTO `valuemap_mapping` (`valuemap_mappingid`,`valuemapid`,`value`,`newvalue`,`type`,`sortorder`) values ('31808','1031','2','unknown','0','2');
INSERT INTO `sysmaps` (`sysmapid`,`name`,`width`,`height`,`backgroundid`,`label_type`,`label_location`,`highlight`,`expandproblem`,`markelements`,`show_unack`,`grid_size`,`grid_show`,`grid_align`,`label_format`,`label_type_host`,`label_type_hostgroup`,`label_type_trigger`,`label_type_map`,`label_type_image`,`label_string_host`,`label_string_hostgroup`,`label_string_trigger`,`label_string_map`,`label_string_image`,`iconmapid`,`expand_macros`,`severity_min`,`userid`,`private`,`show_suppressed`) values ('1','Local network','680','200',NULL,'0','0','1','1','1','0','50','1','1','0','2','2','2','2','2','','','','','',NULL,'1','0','1','0','0');
INSERT INTO `sysmaps_elements` (`selementid`,`sysmapid`,`elementid`,`elementtype`,`iconid_off`,`iconid_on`,`label`,`label_location`,`x`,`y`,`iconid_disabled`,`iconid_maintenance`,`elementsubtype`,`areatype`,`width`,`height`,`viewtype`,`use_iconmap`,`evaltype`) values ('1','1','10084','0','185',NULL,'{HOST.NAME}\r\n{HOST.CONN}','0','111','61',NULL,NULL,'0','0','200','200','0','0','0');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('135','22868','22867');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('136','22869','22867');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('137','22870','22867');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('138','22871','22867');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('139','22872','22867');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('142','22908','22907');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('143','22909','22907');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('144','22910','22907');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('145','22911','22907');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('146','22912','22907');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('147','22945','22944');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('148','22946','22944');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('149','22948','22947');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('150','22949','22947');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('151','22950','22947');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('152','22951','22947');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('153','22952','22947');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('154','22985','22984');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('155','22986','22984');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('156','22988','22987');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('157','22989','22987');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('158','22990','22987');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('159','22991','22987');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('160','22992','22987');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('161','23025','23024');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('162','23026','23024');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('163','23028','23027');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('164','23029','23027');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('165','23030','23027');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('166','23031','23027');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('167','23032','23027');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('170','23068','23067');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('171','23069','23067');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('172','23070','23067');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('173','23071','23067');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('174','23072','23067');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('189','23073','23540');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('190','23074','23540');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('191','23075','23329');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('192','23076','23329');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('776','27032','27031');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('812','27079','27078');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('813','27080','27078');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('814','27081','27078');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('815','27082','27078');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('816','27083','27078');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('817','27084','27078');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('818','27085','27078');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('819','27086','27078');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('820','27087','27078');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('830','27099','27098');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('831','27100','27098');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('832','27101','27098');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('833','27102','27098');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('834','27103','27098');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('835','27104','27098');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('836','27105','27098');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('837','27106','27098');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('838','27107','27098');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('848','27119','27118');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('849','27120','27118');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('850','27121','27118');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('851','27122','27118');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('852','27123','27118');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('853','27124','27118');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('854','27125','27118');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('855','27126','27118');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('856','27127','27118');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('885','27212','27209');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('886','27213','27210');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('887','27214','27211');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('898','27246','27242');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('899','27247','27242');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('900','27248','27243');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('901','27249','27244');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('902','27250','27244');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('921','27312','27302');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('922','27313','27303');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('923','27314','27304');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('924','27315','27306');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('925','27316','27307');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('926','27317','27308');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('927','27318','27309');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('928','27319','27310');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('929','27320','27311');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('950','27415','27390');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('951','27416','27390');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('952','27417','27391');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('954','27419','27393');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('955','27420','27394');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('956','27421','27394');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('957','27422','27395');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('958','27423','27396');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('996','27478','27473');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('997','27479','27474');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('998','27480','27475');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('999','27481','27476');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1000','27482','27476');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1001','27483','27476');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1002','27484','27476');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1003','27485','27476');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1014','27517','27513');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1015','27518','27514');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1016','27519','27515');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1028','27553','27549');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1029','27554','27550');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1030','27555','27551');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1042','27591','27587');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1044','27593','27588');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1045','27594','27589');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1046','27595','27589');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1078','27671','27665');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1079','27672','27666');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1080','27673','27667');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1081','27674','27668');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1082','27675','27669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1083','27676','27669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1084','27677','27669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1085','27678','27669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1086','27679','27669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1117','27748','27745');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1118','27749','27745');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1119','27750','27745');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1120','27751','27745');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1122','27753','27745');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1123','27754','27746');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1124','27755','27747');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1134','27783','27779');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1135','27784','27779');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1136','27785','27780');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1137','27786','27781');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1138','27787','27782');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1151','27821','27816');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1152','27822','27817');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1153','27823','27818');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1192','27904','27901');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1193','27905','27902');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1194','27906','27903');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1195','27907','27903');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1196','27908','27903');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1206','27940','27937');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1207','27941','27937');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1208','27942','27938');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1209','27943','27939');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1229','28003','28001');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1295','28150','28144');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1298','28153','28145');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1299','28154','28146');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1300','28155','28147');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1301','28156','28148');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1302','28157','28149');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1303','28158','28149');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1326','28200','28196');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1327','28201','28196');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1328','28202','28197');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1329','28203','28197');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1330','28204','28198');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1331','28205','28198');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1332','28206','28199');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1350','28246','28244');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1375','28323','28306');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1376','28324','28306');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1377','28325','28307');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1378','28326','28307');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1379','28327','28308');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1380','28328','28308');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1381','28329','28309');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1382','28354','28346');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1383','28355','28346');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1384','28356','28347');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1385','28357','28347');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1386','28358','28348');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1387','28359','28349');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1388','28360','28349');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1389','28361','28350');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1390','28362','28350');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1391','28363','28350');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1392','28364','28350');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1393','28365','28350');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1394','28366','28350');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1395','28367','28350');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1396','28368','28351');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1397','28369','28351');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1398','28370','28351');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1399','28371','28351');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1400','28372','28351');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1401','28373','28351');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1402','28374','28352');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1403','28375','28352');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1404','28376','28353');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1405','28404','28392');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1406','28405','28392');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1407','28406','28393');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1408','28407','28394');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1409','28408','28395');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1410','28409','28396');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1412','28411','28398');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1413','28412','28399');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1414','28413','28400');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1415','28414','28400');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1416','28415','28401');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1417','28416','28401');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1418','28417','28402');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1419','28418','28402');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1420','28419','28402');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1421','28420','28402');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1422','28421','28402');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1423','28422','28402');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1424','28423','28403');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1425','28424','28403');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1426','28425','28403');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1435','28474','28468');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1436','28475','28469');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1437','28476','28470');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1438','28477','28471');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1439','28478','28472');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1440','28479','28472');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1441','28480','28473');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1442','28481','28473');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1443','28495','28493');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1444','28496','28494');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1490','28798','28797');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1491','28799','28797');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1492','28800','28797');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1493','28801','28797');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1494','28802','28797');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1495','28803','28797');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1501','28894','27815');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1517','29014','29008');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1518','29015','29008');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1519','29016','29008');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1520','29017','29009');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1521','29018','29009');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1522','29019','29009');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1523','29020','29009');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1524','29021','29009');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1525','29022','29009');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1526','29023','29009');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1527','29024','29009');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1528','29025','29009');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1529','29026','29009');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1530','29027','29010');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1531','29028','29010');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1532','29029','29010');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1533','29030','29010');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1551','29048','29009');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1575','29210','29201');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1576','29211','29201');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1577','29212','29201');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1578','29213','29201');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1581','29216','29203');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1582','29217','29203');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1583','29218','29203');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1584','29219','29203');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1585','29220','29203');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1586','29221','29203');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1587','29222','29203');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1588','29223','29203');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1675','29432','29430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1676','29433','29430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1677','29434','29431');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1678','29435','29431');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1679','29436','29429');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1680','29437','29429');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1681','29438','29429');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1682','29439','29429');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1683','29440','29429');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1684','29441','29429');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1685','29442','29429');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1686','29443','29429');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1687','29444','29429');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1688','29445','29430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1689','29446','29430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1690','29447','29430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1691','29448','29431');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1692','29449','29431');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1693','29450','29431');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1694','29451','29431');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1695','29452','29431');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1696','29453','29431');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1697','29512','29506');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1698','29513','29506');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1699','29514','29506');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1777','29720','29703');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1778','29721','29703');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1779','29722','29703');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1780','29723','29703');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1781','29724','29703');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1782','29725','29703');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1783','29726','29703');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1784','29727','29703');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1785','29728','29703');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1786','29729','29703');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1787','29730','29703');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1788','29731','29703');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1789','29732','29703');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1790','29733','29703');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1791','29734','29703');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1792','29735','29703');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1793','29736','29703');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1794','29737','29703');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1795','29787','29785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1796','29788','29785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1797','29789','29785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1798','29790','29785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1799','29791','29785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1800','29792','29785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1801','29793','29785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1802','29794','29785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1803','29795','29785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1804','29796','29785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1805','29797','29785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1806','29798','29785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1807','29799','29785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1808','29800','29785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1809','29801','29785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1810','29802','29785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1811','29803','29786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1812','29804','29786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1813','29805','29786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1814','29806','29786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1815','29807','29786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1816','29808','29786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1817','29809','29786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1818','29810','29786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1819','29811','29786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1820','29812','29786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1821','29813','29786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1822','29814','29786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1823','29815','29786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1824','29816','29786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1825','29817','29786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1826','29818','29786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1827','29819','29786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1828','29820','29786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1829','30027','30026');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1830','30028','30026');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1831','30029','30026');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1832','30030','30026');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1833','30031','30026');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1834','30032','30026');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1835','30033','30026');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1836','30034','30026');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1837','30035','30026');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1838','30036','30026');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1839','30037','30026');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1840','30038','30026');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1841','30039','30026');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1842','30040','30026');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1843','30041','30026');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1844','30042','30026');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1845','30066','30057');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1846','30067','30057');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1847','30068','30057');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1848','30069','30057');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1849','30070','30058');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1850','30071','30059');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1851','30072','30060');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1852','30073','30060');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1853','30074','30060');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1854','30075','30061');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1855','30076','30062');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1856','30077','30062');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1857','30078','30062');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1858','30079','30062');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1859','30080','30063');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1860','30081','30063');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1861','30082','30063');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1862','30083','30064');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1863','30084','30064');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1864','30085','30065');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1865','30091','30090');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1866','30092','30090');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1867','30101','27390');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1871','30105','27473');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1872','30107','27512');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1873','30108','27548');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1874','30110','27587');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1875','30111','27587');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1876','30112','27665');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1877','30113','28145');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1878','30114','28145');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1879','30115','28145');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1880','30116','27745');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1881','30118','27815');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1882','30129','30127');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1883','30130','30128');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1884','30131','28002');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1885','30157','30147');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1886','30158','30147');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1887','30159','30147');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1888','30160','30148');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1889','30161','30148');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1890','30162','30148');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1915','30196','30194');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1916','30197','30193');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1917','30198','30193');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1918','30199','30193');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1919','30200','30193');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1920','30201','30193');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1921','30202','30193');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1922','30203','30193');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1923','30204','30193');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1924','30205','30193');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1925','30206','30194');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1926','30207','30194');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1927','30208','30194');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1928','30209','30194');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1929','30210','30194');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1930','30211','30194');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1931','30212','30194');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1932','30213','30194');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1933','30214','30194');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1934','30215','30194');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1935','30216','30194');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1936','30217','30194');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1937','30218','30194');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1938','30219','30195');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1939','30220','30195');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1940','30221','30195');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1941','30222','30195');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1942','30223','30195');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1943','30224','30195');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1944','30225','30195');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1945','30226','30195');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1946','30227','30195');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1947','30228','30195');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1948','30229','30195');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1949','30239','30237');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1950','30240','30236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1951','30241','30236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1952','30242','30236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1953','30243','30236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1954','30244','30236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1955','30245','30236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1956','30246','30236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1957','30247','30236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1958','30248','30236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1959','30249','30237');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1960','30250','30237');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1961','30251','30237');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1962','30252','30237');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1963','30253','30237');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1964','30254','30237');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1965','30255','30237');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1966','30256','30237');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1967','30257','30237');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1968','30258','30237');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1969','30259','30237');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1970','30260','30237');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1971','30261','30237');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1972','30262','30238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1973','30263','30238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1974','30264','30238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1975','30265','30238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1976','30266','30238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1977','30267','30238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1978','30268','30238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1979','30269','30238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1980','30270','30238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1981','30271','30238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1982','30272','30238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1983','30344','30337');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1984','30345','30337');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1985','30346','30337');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1986','30347','30337');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1987','30348','30338');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1988','30349','30338');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1989','30350','30338');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1990','30351','30339');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1991','30352','30339');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1992','30353','30339');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1993','30354','30339');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1994','30355','30339');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1995','30356','30339');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1996','30357','30339');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1997','30358','30339');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1998','30359','30339');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('1999','30360','30339');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2000','30361','30339');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2001','30362','30339');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2002','30363','30339');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2003','30364','30339');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2004','30365','30339');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2005','30366','30339');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2006','30367','30339');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2007','30368','30339');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2008','30369','30339');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2009','30370','30339');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2010','30371','30339');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2011','30372','30340');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2012','30373','30340');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2013','30374','30340');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2014','30375','30340');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2015','30376','30340');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2016','30377','30340');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2017','30378','30340');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2018','30379','30340');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2019','30380','30340');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2020','30381','30340');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2021','30382','30340');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2022','30383','30340');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2023','30384','30340');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2024','30385','30340');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2025','30386','30340');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2026','30387','30340');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2027','30388','30340');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2028','30389','30341');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2029','30390','30341');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2030','30391','30341');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2031','30392','30341');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2032','30393','30341');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2033','30394','30341');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2034','30395','30341');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2035','30396','30342');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2036','30397','30343');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2037','30398','30343');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2038','30399','30343');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2039','30400','30343');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2040','30401','30343');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2041','30402','30343');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2042','30403','30343');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2043','30404','30343');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2056','30425','30423');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2060','30474','30472');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2061','30475','30473');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2062','30476','30473');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2063','30477','30473');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2064','30478','30473');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2065','30522','30520');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2066','30523','30521');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2067','30524','30521');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2068','30525','30521');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2069','30526','30521');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2070','30573','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2071','30574','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2072','30575','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2073','30576','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2074','30577','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2075','30578','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2076','30579','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2077','30580','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2078','30581','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2079','30582','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2080','30583','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2081','30584','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2082','30585','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2083','30586','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2084','30587','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2085','30588','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2086','30589','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2087','30590','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2088','30591','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2089','30592','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2090','30593','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2091','30594','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2092','30595','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2093','30596','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2094','30597','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2095','30598','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2096','30599','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2097','30600','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2098','30601','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2099','30602','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2100','30603','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2101','30604','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2102','30605','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2103','30606','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2104','30607','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2105','30608','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2106','30609','30572');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2107','30610','30572');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2108','30680','30678');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2109','30681','30679');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2110','30682','30679');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2111','30683','30679');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2112','30684','30679');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2113','30688','30686');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2114','30689','30687');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2115','30714','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2116','30715','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2117','30716','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2118','30717','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2119','30718','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2120','30719','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2121','30720','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2122','30721','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2123','30722','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2124','30723','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2125','30724','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2126','30725','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2127','30726','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2128','30727','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2129','30728','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2130','30729','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2131','30730','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2132','30731','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2133','30732','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2134','30733','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2135','30734','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2136','30735','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2137','30736','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2138','30737','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2139','30738','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2140','30739','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2141','30740','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2142','30741','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2143','30742','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2144','30743','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2145','30744','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2146','30745','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2147','30746','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2148','30747','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2149','30748','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2150','30749','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2151','30750','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2152','30751','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2153','30752','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2154','30753','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2155','30754','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2156','30755','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2157','30756','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2158','30757','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2159','30758','30713');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2214','30877','30874');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2215','30878','30874');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2216','30879','30874');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2217','30880','30875');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2218','30881','30875');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2219','30882','30875');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2220','30883','30875');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2221','30884','30875');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2222','30885','30875');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2223','30886','30875');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2224','30887','30875');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2225','30888','30875');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2226','30889','30875');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2227','30890','30875');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2228','30891','30875');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2229','30892','30876');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2230','30893','30876');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2231','30894','30876');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2232','30895','30876');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2233','30917','30916');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2234','30918','30916');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2235','30919','30916');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2236','30920','30916');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2237','30921','30916');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2238','30922','30916');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2239','30963','30961');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2240','30964','30962');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2241','30965','30962');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2242','30966','30962');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2243','30967','30962');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2244','31006','31005');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2245','31007','31005');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2246','31008','31005');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2247','31009','31005');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2248','31048','31047');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2249','31049','31047');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2250','31050','31047');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2251','31051','31047');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2252','31128','31122');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2253','31129','31124');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2254','31130','31125');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2256','31132','31127');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2257','31133','31122');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2258','31134','31122');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2259','31135','31122');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2260','31136','31122');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2261','31137','31123');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2262','31138','31123');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2263','31139','31123');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2264','31140','31123');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2265','31141','31123');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2266','31142','31123');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2267','31143','31123');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2268','31144','31123');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2269','31145','31123');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2270','31146','31123');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2271','31147','31123');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2272','31148','31123');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2273','31149','31123');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2274','31150','31123');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2275','31151','31124');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2276','31152','31124');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2277','31153','31124');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2278','31154','31125');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2279','31155','31125');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2280','31156','31125');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2281','31157','31125');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2282','31158','31125');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2285','31161','31127');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2286','31162','31127');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2287','31163','31127');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2288','31164','31127');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2289','31165','31127');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2290','31166','31127');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2291','31167','31127');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2292','31258','31253');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2293','31259','31253');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2294','31260','31253');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2295','31261','31254');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2296','31262','31254');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2297','31263','31254');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2298','31264','31255');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2299','31265','31255');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2300','31266','31255');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2301','31267','31255');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2302','31268','31256');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2303','31269','31257');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2304','31270','31257');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2305','31271','31257');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2306','31272','31257');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2307','31273','31257');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2308','31335','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2309','31336','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2310','31337','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2311','31338','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2312','31339','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2313','31340','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2314','31341','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2315','31342','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2316','31343','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2317','31344','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2318','31345','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2319','31346','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2320','31347','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2321','31348','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2322','31349','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2323','31350','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2324','31351','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2325','31352','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2326','31353','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2327','31354','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2328','31355','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2329','31356','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2330','31357','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2331','31358','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2332','31359','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2333','31360','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2334','31361','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2335','31362','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2336','31363','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2337','31370','31367');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2338','31371','31367');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2339','31372','31367');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2346','31379','31367');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2347','31380','31367');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2348','31381','31367');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2349','31382','31367');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2350','31383','31367');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2351','31384','31367');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2382','31433','31429');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2383','31434','31429');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2384','31435','31429');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2385','31436','31429');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2386','31437','31429');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2387','31438','31429');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2388','31439','31430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2389','31440','31430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2390','31441','31430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2391','31442','31430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2402','31453','31429');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2403','31454','31429');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2404','31455','31429');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2434','31560','31557');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2435','31561','31558');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2436','31562','31558');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2437','31563','31558');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2438','31564','31558');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2439','31565','31558');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2440','31566','31559');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2441','31567','31559');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2442','31568','31559');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2443','31569','31559');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2444','31663','31655');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2445','31664','31656');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2446','31665','31656');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2447','31666','31656');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2448','31667','31656');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2465','31766','31761');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2466','31767','31761');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2467','31768','31761');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2468','31769','31762');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2469','31770','31762');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2470','31771','31762');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2471','31772','31762');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2472','31773','31763');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2473','31774','31763');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2474','31775','31763');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2475','31776','31764');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2476','31777','31765');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2477','31778','31765');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2478','31779','31765');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2479','31780','31765');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2480','31781','31765');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2481','31807','31803');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2482','31808','31803');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2483','31809','31804');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2484','31810','31804');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2485','31811','31805');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2486','31812','31805');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2487','31813','31805');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2488','31814','31806');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2489','31815','31806');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2490','31902','31896');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2491','31903','31896');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2492','31904','31896');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2493','31905','31897');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2494','31906','31897');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2495','31907','31897');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2496','31908','31897');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2497','31909','31898');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2498','31910','31898');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2499','31911','31898');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2500','31912','31898');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2501','31913','31898');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2502','31914','31898');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2503','31915','31898');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2504','31916','31898');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2520','31932','31896');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2521','31933','31896');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2522','31934','31896');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2523','31935','31896');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2524','31936','31896');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2525','31937','31896');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2532','32012','32004');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2533','32013','32004');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2534','32014','32004');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2535','32015','32005');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2536','32016','32005');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2537','32017','32005');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2538','32018','32005');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2539','32019','32005');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2540','32020','32005');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2541','32021','32006');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2542','32022','32006');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2543','32023','32006');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2544','32024','32006');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2545','32025','32007');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2560','32040','32005');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2561','32041','32005');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2562','32042','32005');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2596','32170','32168');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2597','32171','32168');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2598','32172','32168');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2599','32173','32168');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2600','32174','32168');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2601','32175','32168');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2641','32405','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2642','32406','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2643','32407','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2644','32408','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2645','32409','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2646','32410','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2647','32411','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2648','32412','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2649','32413','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2650','32414','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2651','32415','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2652','32416','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2653','32417','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2654','32418','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2655','32419','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2656','32420','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2657','32421','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2658','32422','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2659','32423','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2660','32424','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2661','32425','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2662','32426','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2663','32427','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2664','32428','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2665','32429','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2666','32430','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2667','32431','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2668','32432','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2669','32433','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2670','32434','32404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2671','32436','32435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2672','32437','32435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2673','32438','32435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2674','32439','32435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2675','32442','32440');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2676','32443','32440');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2677','32444','32440');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2678','32445','32440');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2679','32446','32440');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2680','32447','32440');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2681','32448','32440');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2682','32449','32440');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2683','32450','32440');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2684','32451','32440');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2685','32452','32440');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2686','32453','32440');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2687','32454','32441');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2688','32455','32441');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2689','32456','32441');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2690','32457','32441');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2691','32458','32441');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2692','32459','32441');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2693','32460','32441');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2694','32461','32441');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2695','32462','32441');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2696','32486','32465');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2697','32487','32466');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2698','32488','32467');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2699','32489','32468');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2700','32490','32469');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2701','32491','32470');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2702','32492','32471');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2703','32493','32472');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2704','32494','32473');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2705','32495','32474');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2706','32496','32475');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2707','32497','32476');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2708','32498','32477');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2709','32499','32478');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2710','32500','32479');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2711','32501','32480');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2712','32502','32481');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2713','32503','32482');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2714','32504','32483');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2715','32505','32484');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2716','32506','32485');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2717','32507','32169');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2718','32508','32169');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2719','32509','32169');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2720','32510','32169');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2721','32511','32169');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2722','32512','32169');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2723','32513','32169');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2724','32514','32169');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2725','32515','32169');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2726','32528','32525');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2727','32529','32525');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2728','32530','32525');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2729','32531','32525');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2730','32532','32525');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2731','32533','32525');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2732','32534','32525');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2733','32535','32525');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2734','32536','32525');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2735','32537','32525');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2736','32538','32525');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2737','32539','32525');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2738','32540','32525');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2739','32541','32525');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2740','32542','32525');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2741','32543','32526');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2742','32544','32526');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2743','32545','32527');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2744','32558','32555');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2745','32559','32555');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2746','32560','32555');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2747','32561','32555');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2748','32562','32555');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2749','32563','32555');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2750','32564','32555');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2751','32565','32555');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2752','32566','32555');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2753','32567','32555');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2754','32568','32555');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2755','32569','32555');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2756','32570','32555');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2757','32571','32555');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2758','32572','32555');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2759','32573','32556');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2760','32574','32556');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2761','32575','32557');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2762','32621','32619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2763','32622','32619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2764','32623','32619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2765','32624','32619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2766','32625','32619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2767','32626','32619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2768','32627','32619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2769','32628','32619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2770','32629','32619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2771','32630','32619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2772','32631','32620');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2773','32632','32620');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2774','32633','32620');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2775','32670','32668');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2776','32671','32669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2777','32672','32668');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2778','32673','32668');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2779','32674','32668');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2780','32675','32668');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2781','32676','32668');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2782','32677','32668');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2783','32678','32668');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2784','32679','32668');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2785','32680','32668');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2786','32681','32668');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2787','32682','32669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2788','32683','32669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2789','32684','32669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2790','32685','32669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2791','32686','32669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2792','32687','32669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2793','32688','32669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2794','32689','32669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2795','32690','32669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2796','32691','32669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2797','32692','32669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2798','32758','32755');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2799','32759','32756');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2800','32760','32757');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2801','32761','32757');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2802','32766','32762');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2803','32767','32763');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2804','32768','32763');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2805','32769','32763');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2806','32770','32763');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2807','32771','32763');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2808','32772','32764');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2809','32773','32764');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2810','32774','32764');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2811','32775','32764');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2812','32776','32764');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2813','32777','32765');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2814','32778','32765');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2815','32779','32765');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2816','32871','32869');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2817','32872','32869');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2818','32873','32869');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2819','32874','32866');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2820','32875','32866');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2821','32876','32867');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2822','32877','32867');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2823','32878','32867');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2824','32879','32867');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2825','32880','32867');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2826','32881','32867');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2827','32882','32867');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2828','32883','32868');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2829','32884','32870');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2830','32885','32870');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2831','32886','32870');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2832','32887','32870');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2833','32888','32870');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2834','32889','32870');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2835','32935','32931');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2836','32936','32931');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2837','32937','32931');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2838','32938','32931');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2839','32939','32932');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2840','32940','32932');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2841','32941','32932');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2842','32942','32932');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2843','32943','32933');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2844','32944','32933');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2845','32945','32933');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2846','32946','32933');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2847','32947','32934');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2848','32948','32934');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2849','32949','32934');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2850','32950','32934');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2851','32958','32954');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2852','32959','32955');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2853','32960','32955');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2854','32961','32955');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2855','32962','32955');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2856','33000','32998');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2857','33001','32998');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2858','33002','32998');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2859','33003','32998');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2860','33004','32998');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2861','33005','32998');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2862','33006','32999');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2863','33007','32999');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2864','33008','32999');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2865','33009','32999');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2866','33010','32999');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2867','33011','32999');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2868','33096','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2869','33097','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2870','33098','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2871','33099','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2872','33100','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2873','33101','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2874','33102','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2875','33103','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2876','33104','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2877','33105','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2878','33106','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2879','33107','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2880','33108','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2881','33109','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2882','33110','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2883','33111','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2884','33112','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2885','33113','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2886','33114','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2887','33115','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2888','33116','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2889','33117','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2890','33118','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2891','33119','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2892','33120','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2893','33121','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2894','33122','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2895','33123','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2896','33124','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2897','33125','33095');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2898','33134','33133');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2899','33135','33133');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2900','33136','33133');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2901','33137','33133');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2902','33138','33133');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2903','33139','30473');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2904','33148','33147');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2905','33149','33147');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2906','33150','33147');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2907','33151','33147');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2908','33152','33147');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2909','33153','30679');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2910','33162','30521');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2911','33163','33161');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2912','33164','33161');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2913','33165','33161');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2914','33166','33161');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2915','33167','33161');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2916','33168','31765');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2917','33169','31765');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2918','33170','31257');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2919','33171','31257');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2920','33178','33177');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2921','33179','33177');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2922','33180','33177');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2923','33183','33182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2924','33206','33205');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2925','33226','33225');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2926','33249','33248');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2927','33258','33257');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2928','33277','33276');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2929','33296','33295');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2930','33312','33306');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2931','33313','33307');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2932','33314','33307');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2933','33315','33308');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2934','33316','33308');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2935','33317','33309');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2936','33318','33310');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2937','33319','33311');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2938','33320','33311');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2939','33321','31430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2940','33322','31430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2941','33323','31430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2942','33324','31430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2947','33329','32006');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2948','33330','32006');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2949','33331','32006');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2950','33332','32006');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2955','33357','33352');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2956','33358','33352');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2957','33359','33352');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2958','33360','33352');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2959','33361','33352');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2960','33362','33352');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2961','33363','33352');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2962','33364','33352');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2963','33365','33352');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2964','33366','33352');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2965','33367','33352');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2966','33368','33353');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2967','33369','33354');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2968','33370','33354');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2969','33371','33354');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2970','33372','33354');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2971','33373','33354');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2972','33374','33354');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2973','33375','33355');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2974','33376','33355');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2975','33377','33356');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2976','33378','33356');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2977','33379','33356');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2978','33380','33356');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2979','33381','33356');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2980','33382','33356');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2981','33383','33356');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2982','33384','33356');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2983','33385','33356');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2984','33386','33356');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2985','33387','33356');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2986','33388','33356');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2987','33467','33465');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2988','33468','33465');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2989','33469','33465');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2990','33470','33465');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2991','33471','33465');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2992','33472','33465');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2993','33473','33465');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2994','33474','33465');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2995','33475','33465');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2996','33476','33465');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2997','33477','33465');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2998','33478','33465');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('2999','33479','33465');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3000','33480','33466');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3001','33481','33466');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3002','33482','33466');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3003','33483','33466');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3004','33484','33466');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3005','33485','33466');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3006','33486','33466');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3007','33487','33466');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3008','33488','33466');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3009','33489','33466');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3010','33490','33466');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3011','33522','33520');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3012','33523','33520');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3013','33524','33520');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3014','33525','33520');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3015','33526','33520');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3016','33527','33521');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3017','33528','33521');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3018','33529','33521');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3019','33530','33521');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3020','33531','33521');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3021','33532','33521');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3022','33533','33521');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3023','33534','33521');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3024','33535','33521');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3025','33536','33521');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3026','33537','33521');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3027','33538','33521');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3028','33539','33521');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3029','33540','33521');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3030','33541','33521');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3031','33552','33542');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3032','33553','33542');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3033','33554','33542');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3034','33555','33542');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3035','33556','33542');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3036','33557','33542');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3037','33558','33542');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3038','33559','33542');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3039','33560','33542');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3040','33561','33542');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3041','33562','33542');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3042','33563','33543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3043','33564','33543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3044','33565','33543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3045','33566','33543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3046','33567','33543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3047','33568','33543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3048','33569','33543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3049','33570','33543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3050','33571','33543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3051','33572','33543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3052','33573','33544');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3053','33574','33544');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3054','33575','33544');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3055','33576','33544');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3056','33577','33544');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3057','33578','33545');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3058','33579','33545');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3059','33580','33545');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3060','33581','33546');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3061','33582','33546');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3063','33584','33546');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3064','33585','33547');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3065','33586','33547');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3066','33587','33547');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3067','33588','33547');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3068','33589','33547');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3069','33590','33547');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3070','33591','33547');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3071','33592','33547');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3072','33593','33548');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3073','33594','33548');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3074','33595','33548');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3075','33596','33548');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3076','33597','33548');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3077','33598','33549');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3078','33599','33549');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3079','33600','33549');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3080','33601','33549');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3081','33602','33549');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3082','33603','33549');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3083','33604','33549');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3084','33605','33549');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3085','33606','33549');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3086','33607','33550');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3087','33608','33550');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3088','33609','33550');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3089','33610','33550');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3090','33611','33551');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3091','33612','33551');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3092','33613','33551');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3093','33614','33551');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3094','33615','33551');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3095','33616','33551');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3096','33617','33551');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3097','33618','33551');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3098','33619','33551');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3099','33621','28392');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3100','33622','28393');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3101','33623','28394');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3102','33624','28397');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3103','33625','28397');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3104','33626','28395');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3105','33627','28396');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3106','33628','33620');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3107','33629','33620');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3108','33635','33634');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3109','33636','33634');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3110','33637','33634');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3111','33650','32931');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3112','33651','32932');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3113','33652','32932');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3114','33653','32932');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3115','33654','32932');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3116','33655','32934');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3135','33703','33695');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3136','33704','33695');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3137','33705','33696');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3138','33706','33696');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3139','33707','33696');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3140','33708','33696');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3141','33709','33696');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3142','33710','33697');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3143','33711','33697');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3144','33712','33697');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3145','33713','33697');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3146','33714','33698');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3147','33715','33698');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3148','33716','33698');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3149','33717','33699');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3150','33718','33699');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3151','33719','33700');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3152','33720','33700');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3153','33721','33700');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3154','33722','33700');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3155','33723','33700');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3156','33724','33700');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3157','33725','33700');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3158','33726','33700');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3159','33727','33700');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3160','33728','33700');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3161','33729','33700');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3162','33730','33701');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3163','33731','33701');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3164','33732','33701');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3165','33733','33701');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3166','33734','33701');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3167','33735','33701');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3168','33736','33701');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3169','33737','33701');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3170','33738','33702');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3171','33739','33702');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3172','33740','33702');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3173','33741','33702');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3174','33742','33702');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3175','33743','33702');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3176','33747','33744');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3177','33748','33745');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3178','33749','33746');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3179','33750','33746');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3180','33751','33746');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3181','33752','33746');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3182','33753','33746');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3183','33757','33754');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3184','33758','33755');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3185','33759','33756');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3186','33760','33756');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3187','33761','33756');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3188','33762','33756');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3189','33763','33756');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3190','33812','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3191','33813','33809');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3192','33814','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3193','33815','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3194','33816','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3195','33817','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3196','33818','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3197','33819','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3198','33820','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3199','33821','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3200','33822','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3201','33823','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3202','33824','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3203','33825','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3204','33826','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3205','33827','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3206','33828','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3207','33829','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3208','33830','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3209','33831','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3210','33832','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3211','33833','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3212','33834','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3213','33835','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3214','33836','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3215','33837','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3216','33838','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3217','33839','33808');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3218','33840','33809');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3219','33841','33809');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3220','33842','33809');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3221','33843','33809');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3222','33844','33809');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3223','33845','33809');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3224','33846','33809');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3225','33847','33809');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3226','33848','33810');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3227','33849','33810');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3228','33850','33810');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3229','33851','33810');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3230','33852','33810');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3231','33853','33810');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3232','33854','33810');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3233','33855','33810');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3234','33856','33810');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3235','33857','33810');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3236','33858','33810');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3237','33859','33810');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3238','33860','33810');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3239','33861','33810');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3240','33862','33810');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3241','33863','33810');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3242','33864','33810');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3243','33865','33810');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3244','33866','33810');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3245','33867','33810');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3246','33868','33810');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3247','33869','33811');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3248','33870','33811');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3249','33871','33811');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3250','33872','33811');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3251','33873','33811');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3252','33874','33811');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3253','33875','33811');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3254','33876','33811');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3255','33877','33811');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3256','33878','33811');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3257','33879','33811');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3258','33880','33811');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3259','33881','33811');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3260','33882','33811');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3261','33883','33811');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3262','33884','33811');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3263','33885','33811');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3264','33924','33921');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3265','33925','33922');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3266','33926','33921');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3267','33927','33921');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3268','33928','33921');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3269','33929','33921');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3270','33930','33921');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3271','33931','33921');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3272','33932','33921');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3273','33933','33921');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3274','33934','33922');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3275','33935','33922');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3276','33936','33922');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3277','33937','33922');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3278','33938','33922');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3279','33939','33922');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3280','33940','33922');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3281','33941','31126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3282','33942','31126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3283','33943','31126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3284','33966','33958');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3285','33967','33959');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3286','33968','33960');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3287','33969','33961');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3288','33970','33961');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3289','33971','33961');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3290','33972','33962');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3291','33973','33962');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3292','33974','33962');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3293','33975','33962');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3294','33976','33962');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3295','33977','33962');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3296','33978','33962');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3297','33979','33962');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3298','33980','33962');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3299','33981','33963');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3300','33982','33964');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3301','33983','33965');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3302','33984','33965');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3303','34007','33999');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3304','34008','34000');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3305','34009','34001');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3306','34010','34002');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3307','34011','34002');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3308','34012','34002');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3309','34013','34003');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3310','34014','34003');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3311','34015','34003');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3312','34016','34003');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3313','34017','34003');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3314','34018','34003');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3315','34019','34003');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3316','34020','34003');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3317','34021','34003');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3318','34022','34004');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3319','34023','34005');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3320','34024','34006');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3321','34025','34006');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3322','34048','34040');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3323','34049','34041');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3324','34050','34042');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3325','34051','34043');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3326','34052','34043');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3327','34053','34043');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3328','34054','34044');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3329','34055','34044');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3330','34056','34044');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3331','34057','34044');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3332','34058','34044');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3333','34059','34044');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3334','34060','34044');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3335','34061','34044');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3336','34062','34044');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3337','34063','34045');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3338','34064','34046');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3339','34065','34047');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3340','34066','34047');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3341','34089','34081');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3342','34090','34082');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3343','34091','34083');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3344','34092','34084');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3345','34093','34084');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3346','34094','34084');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3347','34095','34085');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3348','34096','34085');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3349','34097','34085');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3350','34098','34085');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3351','34099','34085');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3352','34100','34085');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3353','34101','34085');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3354','34102','34085');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3355','34103','34085');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3356','34104','34086');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3357','34105','34087');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3358','34106','34088');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3359','34107','34088');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3360','34130','34122');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3361','34131','34123');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3362','34132','34124');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3363','34133','34125');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3364','34134','34125');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3365','34135','34125');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3366','34136','34126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3367','34137','34126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3368','34138','34126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3369','34139','34126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3370','34140','34126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3371','34141','34126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3372','34142','34126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3373','34143','34126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3374','34144','34126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3375','34145','34127');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3376','34146','34128');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3377','34147','34129');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3378','34148','34129');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3379','34164','34161');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3380','34165','34161');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3381','34166','34161');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3382','34167','34161');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3383','34168','34161');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3384','34169','34161');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3385','34170','34161');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3386','34171','34161');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3387','34172','34161');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3388','34173','34162');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3389','34174','34162');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3390','34175','34162');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3391','34176','34163');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3392','34177','34163');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3393','34178','34163');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3394','34212','34207');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3395','34213','34208');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3396','34214','34208');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3397','34215','34208');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3398','34216','34208');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3399','34217','34208');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3400','34218','34209');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3401','34219','34209');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3402','34220','34209');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3403','34221','34210');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3404','34222','34210');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3405','34223','34210');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3406','34224','34211');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3407','34225','34211');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3408','34269','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3409','34270','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3410','34271','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3411','34272','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3412','34273','34260');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3413','34274','34261');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3414','34275','34262');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3415','34276','34263');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3416','34277','34263');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3417','34278','34263');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3418','34279','34263');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3419','34280','34264');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3420','34281','34264');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3421','34282','34264');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3422','34283','34264');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3423','34284','34264');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3424','34285','34264');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3425','34286','34265');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3426','34287','34266');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3427','34288','34266');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3428','34289','34267');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3429','34290','34267');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3430','34291','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3431','34292','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3432','34293','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3433','34294','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3434','34295','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3435','34296','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3436','34297','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3437','34298','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3438','34299','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3439','34300','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3440','34301','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3441','34302','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3442','34303','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3443','34304','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3444','34305','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3445','34306','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3446','34307','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3447','34308','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3448','34309','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3449','34310','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3450','34311','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3451','34312','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3452','34313','34268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3453','34325','31123');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3454','34326','31123');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3455','34327','31123');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3456','34328','31123');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3457','34329','31123');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3458','34330','31123');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3459','34331','34324');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3460','34332','34324');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3461','34333','34324');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3462','34334','34324');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3463','34335','34324');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3464','34348','34342');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3465','34349','34342');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3466','34350','34342');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3467','34351','34342');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3468','34352','34342');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3469','34353','34342');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3470','34354','34342');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3471','34355','34342');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3472','34356','34342');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3473','34357','34342');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3474','34358','34342');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3475','34359','34343');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3476','34360','34344');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3477','34361','34344');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3478','34362','34344');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3479','34363','34344');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3480','34364','34345');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3481','34365','34346');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3482','34366','34347');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3483','34405','34399');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3484','34406','34400');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3485','34407','34400');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3486','34408','34401');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3487','34409','34402');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3488','34410','34403');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3489','34411','34404');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3490','34444','34440');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3491','34445','34440');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3492','34446','34440');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3493','34447','34440');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3494','34448','34441');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3495','34449','34442');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3496','34450','34443');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3497','34482','34476');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3498','34483','34477');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3499','34484','34477');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3500','34485','34477');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3501','34486','34477');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3502','34487','34477');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3503','34488','34478');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3504','34489','34478');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3505','34490','34478');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3506','34491','34479');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3507','34492','34479');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3508','34493','34479');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3509','34494','34480');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3510','34495','34480');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3511','34496','34481');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3512','34497','34481');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3513','34498','34481');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3514','34530','34524');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3515','34531','34525');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3516','34532','34525');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3517','34533','34525');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3518','34534','34525');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3519','34535','34525');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3520','34536','34526');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3521','34537','34526');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3522','34538','34526');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3523','34539','34527');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3524','34540','34527');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3525','34541','34527');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3526','34542','34528');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3527','34543','34528');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3528','34544','34529');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3529','34545','34529');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3530','34546','34529');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3531','34578','34572');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3532','34579','34573');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3533','34580','34573');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3534','34581','34573');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3535','34582','34573');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3536','34583','34573');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3537','34584','34574');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3538','34585','34574');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3539','34586','34574');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3540','34587','34575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3541','34588','34575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3542','34589','34575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3543','34590','34576');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3544','34591','34576');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3545','34592','34577');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3546','34593','34577');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3547','34594','34577');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3548','34626','34620');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3549','34627','34621');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3550','34628','34621');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3551','34629','34621');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3552','34630','34621');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3553','34631','34621');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3554','34632','34622');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3555','34633','34622');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3556','34634','34622');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3557','34635','34623');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3558','34636','34623');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3559','34637','34623');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3560','34638','34624');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3561','34639','34624');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3562','34640','34625');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3563','34641','34625');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3564','34642','34625');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3565','34674','34668');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3566','34675','34669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3567','34676','34669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3568','34677','34669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3569','34678','34669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3570','34679','34669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3571','34680','34670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3572','34681','34670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3573','34682','34670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3574','34683','34671');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3575','34684','34671');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3576','34685','34671');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3577','34686','34672');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3578','34687','34672');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3579','34688','34673');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3580','34689','34673');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3581','34690','34673');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3599','34770','34764');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3600','34771','34765');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3601','34772','34765');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3602','34773','34765');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3603','34774','34765');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3604','34775','34765');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3605','34776','34766');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3606','34777','34766');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3607','34778','34766');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3608','34779','34767');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3609','34780','34767');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3610','34781','34767');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3611','34782','34768');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3612','34783','34768');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3613','34784','34769');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3614','34785','34769');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3615','34786','34769');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3616','34790','34789');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3617','34791','34789');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3618','34792','34789');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3619','34824','34818');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3620','34825','34819');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3621','34826','34819');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3622','34827','34819');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3623','34828','34819');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3624','34829','34819');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3625','34830','34820');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3626','34831','34820');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3627','34832','34820');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3628','34833','34821');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3629','34834','34821');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3630','34835','34821');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3631','34836','34822');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3632','34837','34822');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3633','34838','34823');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3634','34839','34823');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3635','34840','34823');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3636','34872','34866');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3637','34873','34867');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3638','34874','34867');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3639','34875','34867');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3640','34876','34867');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3641','34877','34867');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3642','34878','34868');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3643','34879','34868');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3644','34880','34868');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3645','34881','34869');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3646','34882','34869');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3647','34883','34869');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3648','34884','34870');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3649','34885','34870');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3650','34886','34871');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3651','34887','34871');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3652','34888','34871');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3653','34920','34914');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3654','34921','34915');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3655','34922','34915');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3656','34923','34915');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3657','34924','34915');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3658','34925','34915');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3659','34926','34916');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3660','34927','34916');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3661','34928','34916');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3662','34929','34917');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3663','34930','34917');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3664','34931','34917');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3665','34932','34918');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3666','34933','34918');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3667','34934','34919');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3668','34935','34919');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3669','34936','34919');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3670','34944','34942');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3671','34945','34942');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3672','34946','34943');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3673','34947','34943');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3674','34948','34943');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3675','34970','34966');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3676','34971','34966');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3677','34972','34966');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3678','34973','34966');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3679','34974','34966');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3680','34975','34967');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3681','34976','34967');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3682','34977','34967');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3683','34978','34967');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3684','34979','34967');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3685','34980','34967');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3686','34981','34967');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3687','34982','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3688','34983','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3689','34984','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3690','34985','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3691','34986','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3692','34987','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3693','34988','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3694','34989','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3695','34990','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3696','34991','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3697','34992','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3698','34993','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3699','34994','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3700','34995','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3701','34996','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3702','34997','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3703','34998','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3704','34999','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3705','35000','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3706','35001','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3707','35002','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3708','35003','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3709','35004','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3710','35005','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3711','35006','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3712','35007','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3713','35008','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3714','35009','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3715','35010','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3716','35011','34968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3717','35012','34969');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3718','35013','34969');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3719','35014','34969');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3720','35015','34969');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3721','35047','35041');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3722','35048','35042');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3723','35049','35042');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3724','35050','35042');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3725','35051','35042');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3726','35052','35042');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3727','35053','35043');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3728','35054','35043');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3729','35055','35043');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3730','35056','35044');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3731','35057','35044');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3732','35058','35044');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3733','35059','35045');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3734','35060','35045');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3735','35061','35046');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3736','35062','35046');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3737','35063','35046');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3738','35104','30193');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3739','35105','30193');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3740','35106','30193');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3741','35107','30193');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3742','35108','30193');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3743','35109','30193');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3744','35110','30193');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3745','35111','30193');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3746','35112','30193');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3747','35113','30193');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3748','35114','30193');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3749','35115','30194');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3750','35116','30195');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3751','35117','30195');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3752','35118','30195');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3753','35119','30195');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3754','35120','30195');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3755','35121','30195');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3756','35122','30195');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3757','35123','30195');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3758','35124','30195');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3759','35125','30195');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3760','35126','30195');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3761','35127','30195');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3762','35129','30236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3763','35130','30236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3764','35131','30236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3765','35132','30236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3766','35133','30236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3767','35134','30236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3768','35135','30236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3769','35136','30236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3770','35137','30236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3771','35138','30236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3772','35139','30236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3773','35140','30237');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3774','35141','30238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3775','35142','30238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3776','35143','30238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3777','35144','30238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3778','35145','30238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3779','35146','30238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3780','35147','30238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3781','35148','30238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3782','35149','30238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3783','35150','30238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3784','35151','30238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3785','35152','30238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3786','35185','35177');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3787','35186','35177');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3788','35187','35177');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3789','35188','35177');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3790','35189','35177');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3791','35190','35177');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3792','35191','35177');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3793','35192','35177');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3794','35193','35177');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3795','35194','35177');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3796','35195','35178');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3797','35196','35178');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3798','35197','35178');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3799','35198','35178');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3800','35199','35178');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3801','35200','35178');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3802','35201','35178');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3803','35202','35178');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3804','35203','35178');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3805','35204','35178');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3806','35205','35178');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3807','35206','35179');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3808','35207','35179');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3809','35208','35179');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3810','35209','35179');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3811','35210','35179');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3812','35211','35179');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3813','35212','35179');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3814','35213','35179');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3815','35214','35179');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3816','35215','35179');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3817','35216','35179');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3818','35217','35179');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3819','35218','35179');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3820','35219','35179');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3821','35220','35179');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3822','35221','35179');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3823','35222','35179');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3824','35223','35179');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3825','35224','35180');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3826','35225','35180');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3827','35226','35180');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3828','35227','35181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3829','35228','35181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3830','35229','35181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3831','35230','35181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3832','35231','35181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3833','35232','35181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3834','35233','35181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3835','35234','35181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3836','35235','35181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3837','35236','35181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3838','35237','35181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3839','35238','35182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3840','35239','35182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3841','35240','35182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3842','35241','35182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3843','35242','35182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3844','35243','35182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3845','35244','35182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3846','35245','35182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3847','35246','35182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3848','35247','35183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3849','35248','35183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3850','35249','35183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3851','35250','35183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3852','35251','35183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3853','35252','35183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3854','35253','35183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3855','35254','35183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3856','35255','35183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3857','35256','35183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3858','35257','35183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3859','35258','35183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3860','35259','35183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3861','35260','35184');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3862','35261','35184');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3863','35264','35262');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3864','35265','35263');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3865','35266','35262');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3866','35267','35262');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3867','35268','35262');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3868','35269','35262');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3869','35270','35263');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3870','35271','35263');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3871','35290','35280');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3872','35291','35280');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3873','35292','35280');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3874','35293','35280');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3875','35294','35280');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3876','35295','35280');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3877','35296','35280');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3878','35297','35280');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3879','35298','35280');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3880','35299','35280');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3881','35300','35280');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3882','35301','35281');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3883','35302','35281');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3884','35303','35281');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3885','35304','35281');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3886','35305','35281');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3887','35306','35281');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3888','35307','35281');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3889','35308','35281');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3890','35309','35281');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3891','35310','35281');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3892','35311','35282');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3893','35312','35282');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3894','35313','35282');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3895','35314','35282');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3896','35315','35282');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3897','35316','35283');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3898','35317','35283');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3899','35318','35283');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3900','35319','35284');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3901','35320','35284');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3902','35321','35284');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3903','35322','35284');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3904','35323','35285');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3905','35324','35285');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3906','35325','35285');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3907','35326','35285');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3908','35327','35285');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3909','35328','35285');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3910','35329','35285');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3911','35330','35285');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3912','35331','35286');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3913','35332','35286');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3914','35333','35286');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3915','35334','35286');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3916','35335','35286');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3917','35336','35287');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3918','35337','35287');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3919','35338','35287');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3920','35339','35287');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3921','35340','35287');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3922','35341','35287');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3923','35342','35287');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3924','35343','35287');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3925','35344','35287');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3926','35345','35288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3927','35346','35288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3928','35347','35288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3929','35348','35288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3930','35349','35289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3931','35350','35289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3932','35351','35289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3933','35352','35289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3934','35353','35289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3935','35354','35289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3936','35355','35289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3937','35356','35289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3938','35357','35289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3939','35369','35364');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3940','35370','35365');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3941','35371','35365');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3942','35372','35365');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3943','35373','35366');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3944','35374','35366');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3945','35375','35366');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3946','35376','35366');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3947','35377','35366');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3948','35378','35366');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3949','35379','35366');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3950','35380','35366');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3951','35381','35366');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3952','35382','35366');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3953','35383','35366');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3954','35384','35366');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3955','35385','35366');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3956','35386','35366');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3957','35387','35366');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3958','35388','35367');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3959','35389','35367');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3960','35390','35367');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3961','35391','35367');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3962','35392','35367');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3963','35393','35367');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3964','35394','35367');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3965','35395','35367');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3966','35396','35368');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3967','35397','35368');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3968','35398','35368');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3969','35399','35368');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3970','35400','35368');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3971','35401','35368');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3972','35402','35368');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3973','35403','35368');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3974','35404','35368');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3975','35405','35368');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3976','35439','35424');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3977','35440','35425');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3978','35441','35425');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3979','35442','35426');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3980','35443','35427');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3981','35444','35427');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3982','35445','35428');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3983','35446','35429');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3984','35447','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3985','35448','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3986','35449','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3987','35450','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3988','35451','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3989','35452','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3990','35453','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3991','35454','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3992','35455','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3993','35456','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3994','35457','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3995','35458','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3996','35459','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3997','35460','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3998','35461','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('3999','35462','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4000','35463','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4001','35464','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4002','35465','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4003','35466','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4004','35467','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4005','35468','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4006','35469','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4007','35470','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4008','35471','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4009','35472','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4010','35473','35430');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4011','35474','35431');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4012','35475','35431');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4013','35476','35431');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4014','35477','35432');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4015','35478','35432');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4016','35479','35432');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4017','35480','35432');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4018','35481','35432');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4019','35482','35433');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4020','35483','35433');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4021','35484','35433');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4022','35485','35433');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4023','35486','35433');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4024','35487','35433');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4025','35488','35434');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4026','35489','35434');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4027','35490','35434');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4028','35491','35434');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4029','35492','35435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4030','35493','35435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4031','35494','35435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4032','35495','35435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4033','35496','35435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4034','35497','35435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4035','35498','35435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4036','35499','35435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4037','35500','35435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4038','35501','35435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4039','35502','35435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4040','35503','35435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4041','35504','35435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4042','35505','35435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4043','35506','35436');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4044','35507','35436');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4045','35508','35436');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4046','35509','35436');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4047','35510','35436');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4048','35511','35436');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4049','35512','35436');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4050','35513','35436');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4051','35514','35437');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4052','35515','35437');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4053','35516','35437');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4054','35517','35437');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4055','35518','35437');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4056','35519','35437');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4057','35520','35437');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4058','35521','35437');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4059','35522','35438');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4060','35523','35438');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4061','35524','35438');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4062','35525','35438');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4063','35526','35438');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4064','35527','35438');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4065','35528','35438');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4066','35529','35438');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4067','35530','35438');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4068','35531','35438');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4069','35546','35542');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4070','35547','35542');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4071','35548','35542');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4072','35549','35542');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4073','35550','35542');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4074','35551','35542');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4075','35552','35542');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4076','35553','35542');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4077','35554','35542');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4078','35555','35542');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4079','35556','35542');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4080','35557','35543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4081','35558','35543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4082','35559','35543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4083','35560','35543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4084','35561','35543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4085','35562','35544');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4086','35563','35545');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4087','35580','35574');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4088','35581','35575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4089','35582','35575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4090','35583','35575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4091','35584','35575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4092','35585','35575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4093','35586','35575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4094','35587','35575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4095','35588','35575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4096','35589','35575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4097','35590','35575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4098','35591','35575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4099','35592','35575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4100','35593','35575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4101','35594','35575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4102','35595','35575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4103','35596','35575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4104','35597','35575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4105','35598','35576');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4106','35599','35577');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4107','35600','35577');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4108','35601','35577');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4109','35602','35577');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4110','35603','35577');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4111','35604','35577');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4112','35605','35577');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4113','35606','35578');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4114','35607','35579');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4115','35622','35618');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4116','35623','35619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4117','35624','35619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4118','35625','35619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4119','35626','35619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4120','35627','35619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4121','35628','35619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4122','35629','35619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4123','35630','35619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4124','35631','35619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4125','35632','35619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4126','35633','35619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4127','35634','35619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4128','35635','35619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4129','35636','35619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4130','35637','35619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4131','35638','35619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4132','35639','35619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4133','35640','35620');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4134','35641','35621');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4135','35658','35649');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4136','35659','35650');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4137','35660','35651');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4138','35661','35652');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4139','35662','35653');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4140','35663','35653');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4141','35664','35653');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4142','35665','35653');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4143','35666','35653');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4144','35667','35653');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4145','35668','35653');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4146','35669','35653');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4147','35670','35653');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4148','35671','35653');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4149','35672','35653');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4150','35673','35653');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4151','35674','35653');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4152','35675','35653');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4153','35676','35653');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4154','35677','35653');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4155','35678','35653');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4156','35679','35653');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4157','35680','35654');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4158','35681','35654');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4159','35682','35654');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4160','35683','35654');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4161','35684','35654');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4162','35685','35654');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4163','35686','35654');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4164','35687','35654');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4165','35688','35654');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4166','35689','35654');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4167','35690','35654');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4168','35691','35654');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4169','35692','35654');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4170','35693','35654');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4171','35694','35654');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4172','35695','35655');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4173','35696','35655');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4174','35697','35655');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4175','35698','35655');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4176','35699','35655');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4177','35700','35655');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4178','35701','35655');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4179','35702','35655');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4180','35703','35655');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4181','35704','35655');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4182','35705','35655');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4183','35706','35655');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4184','35707','35656');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4185','35708','35657');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4186','35725','35716');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4187','35726','35717');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4188','35727','35718');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4189','35728','35719');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4190','35729','35720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4191','35730','35720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4192','35731','35720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4193','35732','35720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4194','35733','35720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4195','35734','35720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4196','35735','35720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4197','35736','35720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4198','35737','35720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4199','35738','35720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4200','35739','35720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4201','35740','35720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4202','35741','35720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4203','35742','35720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4204','35743','35720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4205','35744','35720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4206','35745','35720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4207','35746','35720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4208','35747','35721');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4209','35748','35721');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4210','35749','35721');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4211','35750','35721');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4212','35751','35721');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4213','35752','35721');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4214','35753','35721');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4215','35754','35721');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4216','35755','35721');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4217','35756','35721');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4218','35757','35721');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4219','35758','35721');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4220','35759','35721');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4221','35760','35721');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4222','35761','35721');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4223','35762','35722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4224','35763','35722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4225','35764','35722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4226','35765','35722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4227','35766','35722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4228','35767','35722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4229','35768','35722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4230','35769','35722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4231','35770','35722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4232','35771','35722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4233','35772','35722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4234','35773','35722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4235','35774','35723');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4236','35775','35724');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4237','35791','35786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4238','35792','35787');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4239','35793','35787');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4240','35794','35787');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4241','35795','35787');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4242','35796','35787');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4243','35797','35787');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4244','35798','35787');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4245','35799','35787');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4246','35800','35787');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4247','35801','35787');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4248','35802','35787');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4249','35803','35788');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4250','35804','35788');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4251','35805','35788');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4252','35806','35788');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4253','35807','35788');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4254','35808','35789');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4255','35809','35790');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4256','35823','35820');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4257','35824','35820');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4258','35825','35820');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4259','35826','35820');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4260','35827','35820');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4261','35828','35820');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4262','35829','35820');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4263','35830','35820');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4264','35831','35820');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4265','35832','35820');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4266','35833','35820');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4267','35834','35820');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4268','35835','35820');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4269','35836','35820');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4270','35837','35820');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4271','35838','35820');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4272','35839','35820');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4273','35840','35821');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4274','35841','35822');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4275','35842','35822');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4276','35843','35822');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4277','35844','35822');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4278','35845','35822');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4279','35846','35822');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4280','35847','35822');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4281','35864','35858');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4282','35865','35859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4283','35866','35859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4284','35867','35859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4285','35868','35859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4286','35869','35859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4287','35870','35859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4288','35871','35859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4289','35872','35859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4290','35873','35859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4291','35874','35859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4292','35875','35859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4293','35876','35859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4294','35877','35859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4295','35878','35859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4296','35879','35859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4297','35880','35859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4298','35881','35859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4299','35882','35860');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4300','35883','35861');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4301','35884','35861');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4302','35885','35861');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4303','35886','35861');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4304','35887','35861');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4305','35888','35861');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4306','35889','35861');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4307','35890','35862');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4308','35891','35863');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4309','35908','35902');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4310','35909','35903');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4311','35910','35903');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4312','35911','35903');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4313','35912','35903');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4314','35913','35903');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4315','35914','35903');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4316','35915','35903');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4317','35916','35903');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4318','35917','35903');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4319','35918','35903');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4320','35919','35903');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4321','35920','35903');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4322','35921','35903');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4323','35922','35903');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4324','35923','35903');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4325','35924','35903');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4326','35925','35903');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4327','35926','35904');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4328','35927','35905');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4329','35928','35905');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4330','35929','35905');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4331','35930','35905');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4332','35931','35905');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4333','35932','35905');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4334','35933','35905');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4335','35934','35906');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4336','35935','35907');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4337','35952','35946');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4338','35953','35947');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4339','35954','35947');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4340','35955','35947');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4341','35956','35947');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4342','35957','35947');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4343','35958','35947');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4344','35959','35947');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4345','35960','35947');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4346','35961','35947');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4347','35962','35947');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4348','35963','35947');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4349','35964','35947');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4350','35965','35947');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4351','35966','35947');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4352','35967','35947');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4353','35968','35947');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4354','35969','35947');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4355','35970','35948');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4356','35971','35949');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4357','35972','35949');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4358','35973','35949');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4359','35974','35949');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4360','35975','35949');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4361','35976','35949');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4362','35977','35949');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4363','35978','35950');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4364','35979','35951');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4365','35996','35990');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4366','35997','35991');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4367','35998','35991');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4368','35999','35991');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4369','36000','35991');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4370','36001','35991');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4371','36002','35991');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4372','36003','35991');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4373','36004','35991');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4374','36005','35991');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4375','36006','35991');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4376','36007','35991');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4377','36008','35991');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4378','36009','35991');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4379','36010','35991');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4380','36011','35991');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4381','36012','35991');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4382','36013','35991');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4383','36014','35992');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4384','36015','35993');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4385','36016','35993');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4386','36017','35993');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4387','36018','35993');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4388','36019','35993');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4389','36020','35993');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4390','36021','35993');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4391','36022','35994');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4392','36023','35995');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4393','36041','36035');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4394','36042','36036');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4395','36043','36036');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4396','36044','36036');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4397','36045','36036');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4398','36046','36036');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4399','36047','36036');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4400','36048','36036');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4401','36049','36036');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4402','36050','36036');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4403','36051','36036');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4404','36052','36036');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4405','36053','36036');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4406','36054','36036');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4407','36055','36036');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4408','36056','36036');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4409','36057','36036');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4410','36058','36036');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4411','36059','36037');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4412','36060','36038');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4413','36061','36038');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4414','36062','36038');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4415','36063','36038');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4416','36064','36038');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4417','36065','36038');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4418','36066','36038');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4419','36067','36039');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4420','36068','36040');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4421','36086','36080');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4422','36087','36081');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4423','36088','36081');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4424','36089','36081');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4425','36090','36081');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4426','36091','36081');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4427','36092','36081');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4428','36093','36081');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4429','36094','36081');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4430','36095','36081');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4431','36096','36081');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4432','36097','36081');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4433','36098','36081');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4434','36099','36081');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4435','36100','36081');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4436','36101','36081');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4437','36102','36081');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4438','36103','36081');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4439','36104','36082');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4440','36105','36083');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4441','36106','36083');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4442','36107','36083');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4443','36108','36083');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4444','36109','36083');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4445','36110','36083');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4446','36111','36083');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4447','36112','36084');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4448','36113','36085');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4449','36131','36124');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4450','36132','36125');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4451','36133','36126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4452','36134','36126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4453','36135','36126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4454','36136','36126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4455','36137','36126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4456','36138','36126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4457','36139','36126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4458','36140','36126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4459','36141','36126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4460','36142','36126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4461','36143','36126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4462','36144','36126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4463','36145','36126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4464','36146','36126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4465','36147','36126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4466','36148','36126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4467','36149','36126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4468','36150','36127');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4469','36151','36128');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4470','36152','36128');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4471','36153','36128');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4472','36154','36128');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4473','36155','36128');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4474','36156','36128');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4475','36157','36128');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4476','36158','36129');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4477','36159','36130');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4478','36178','36168');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4479','36179','36169');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4480','36180','36169');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4481','36181','36170');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4482','36182','36171');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4483','36183','36171');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4484','36184','36171');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4485','36185','36171');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4486','36186','36171');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4487','36187','36171');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4488','36188','36171');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4489','36189','36171');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4490','36190','36171');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4491','36191','36171');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4492','36192','36171');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4493','36193','36171');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4494','36194','36171');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4495','36195','36171');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4496','36196','36172');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4497','36197','36172');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4498','36198','36172');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4499','36199','36172');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4500','36200','36172');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4501','36201','36173');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4502','36202','36174');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4503','36203','36175');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4504','36204','36175');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4505','36205','36175');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4506','36206','36175');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4507','36207','36176');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4508','36208','36176');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4509','36209','36176');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4510','36210','36177');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4511','36211','36177');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4512','36212','36177');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4513','36227','36219');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4514','36228','36220');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4515','36229','36221');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4516','36230','36222');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4517','36231','36223');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4518','36232','36224');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4519','36233','36225');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4520','36234','36226');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4521','36235','36221');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4522','36236','36221');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4523','36237','36222');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4524','36238','36222');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4525','36239','36222');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4526','36240','36222');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4527','36241','36223');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4528','36242','36223');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4529','36243','36223');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4530','36244','36223');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4531','36245','36223');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4532','36246','36224');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4533','36247','36225');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4534','36248','36225');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4535','36249','36226');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4536','36250','36226');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4537','36251','36226');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4538','36252','36226');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4539','36253','36226');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4540','36254','36226');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4541','36275','36268');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4542','36276','36269');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4543','36277','36269');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4544','36278','36270');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4545','36279','36270');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4546','36280','36271');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4547','36281','36271');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4548','36282','36271');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4549','36283','36271');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4550','36284','36271');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4551','36285','36271');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4552','36286','36272');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4553','36287','36273');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4554','36288','36273');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4555','36289','36274');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4556','36290','36274');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4557','36291','36274');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4558','36292','36274');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4559','36293','36274');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4560','36294','36274');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4561','36309','36301');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4562','36310','36302');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4563','36311','36303');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4564','36312','36304');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4565','36313','36305');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4566','36314','36306');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4567','36315','36307');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4568','36316','36308');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4569','36317','36303');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4570','36318','36303');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4571','36319','36304');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4572','36320','36304');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4573','36321','36304');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4574','36322','36304');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4575','36323','36305');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4576','36324','36305');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4577','36325','36305');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4578','36326','36305');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4579','36327','36305');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4580','36328','36306');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4581','36329','36307');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4582','36330','36307');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4583','36331','36308');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4584','36332','36308');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4585','36333','36308');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4586','36334','36308');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4587','36335','36308');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4588','36336','36308');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4589','36357','36350');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4590','36358','36351');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4591','36359','36351');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4592','36360','36352');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4593','36361','36352');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4594','36362','36353');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4595','36363','36353');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4596','36364','36353');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4597','36365','36353');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4598','36366','36353');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4599','36367','36353');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4600','36368','36354');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4601','36369','36355');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4602','36370','36355');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4603','36371','36356');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4604','36372','36356');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4605','36373','36356');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4606','36374','36356');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4607','36375','36356');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4608','36376','36356');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4609','36391','36383');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4610','36392','36384');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4611','36393','36385');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4612','36394','36386');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4613','36395','36387');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4614','36396','36388');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4615','36397','36389');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4616','36398','36390');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4617','36399','36385');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4618','36400','36385');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4619','36401','36386');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4620','36402','36386');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4621','36403','36386');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4622','36404','36386');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4623','36405','36387');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4624','36406','36387');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4625','36407','36387');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4626','36408','36387');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4627','36409','36387');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4628','36410','36388');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4629','36411','36389');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4630','36412','36389');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4631','36413','36390');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4632','36414','36390');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4633','36415','36390');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4634','36416','36390');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4635','36417','36390');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4636','36418','36390');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4637','36439','36432');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4638','36440','36433');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4639','36441','36433');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4640','36442','36434');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4641','36443','36434');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4642','36444','36435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4643','36445','36435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4644','36446','36435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4645','36447','36435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4646','36448','36435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4647','36449','36435');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4648','36450','36436');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4649','36451','36437');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4650','36452','36437');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4651','36453','36438');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4652','36454','36438');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4653','36455','36438');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4654','36456','36438');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4655','36457','36438');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4656','36458','36438');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4657','36473','36465');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4658','36474','36466');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4659','36475','36467');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4660','36476','36468');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4661','36477','36469');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4662','36478','36470');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4663','36479','36471');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4664','36480','36472');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4665','36481','36467');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4666','36482','36467');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4667','36483','36468');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4668','36484','36468');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4669','36485','36468');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4670','36486','36468');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4671','36487','36469');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4672','36488','36469');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4673','36489','36469');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4674','36490','36469');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4675','36491','36469');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4676','36492','36470');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4677','36493','36471');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4678','36494','36471');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4679','36495','36472');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4680','36496','36472');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4681','36497','36472');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4682','36498','36472');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4683','36499','36472');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4684','36500','36472');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4685','36521','36514');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4686','36522','36515');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4687','36523','36515');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4688','36524','36516');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4689','36525','36516');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4690','36526','36517');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4691','36527','36517');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4692','36528','36517');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4693','36529','36517');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4694','36530','36517');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4695','36531','36517');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4696','36532','36518');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4697','36533','36519');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4698','36534','36519');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4699','36535','36520');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4700','36536','36520');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4701','36537','36520');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4702','36538','36520');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4703','36539','36520');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4704','36540','36520');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4705','36567','36553');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4706','36568','36553');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4707','36569','36554');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4708','36570','36554');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4709','36571','36555');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4710','36572','36556');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4711','36573','36557');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4712','36574','36557');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4713','36575','36557');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4714','36576','36557');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4715','36577','36557');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4716','36578','36557');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4717','36579','36558');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4718','36580','36559');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4719','36581','36559');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4720','36582','36560');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4721','36583','36560');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4722','36584','36561');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4723','36585','36561');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4724','36586','36561');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4725','36587','36562');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4726','36588','36562');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4727','36589','36563');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4728','36590','36563');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4729','36591','36564');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4730','36592','36564');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4731','36593','36565');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4732','36594','36565');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4733','36595','36566');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4734','36596','36566');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4735','36597','36566');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4736','36624','36610');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4737','36625','36610');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4738','36626','36611');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4739','36627','36611');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4740','36628','36612');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4741','36629','36613');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4742','36630','36614');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4743','36631','36614');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4744','36632','36614');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4745','36633','36614');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4746','36634','36614');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4747','36635','36614');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4748','36636','36615');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4749','36637','36616');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4750','36638','36616');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4751','36639','36617');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4752','36640','36617');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4753','36641','36618');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4754','36642','36618');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4755','36643','36618');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4756','36644','36619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4757','36645','36619');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4758','36646','36620');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4759','36647','36620');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4760','36648','36621');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4761','36649','36621');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4762','36650','36622');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4763','36651','36622');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4764','36652','36623');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4765','36653','36623');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4766','36654','36623');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4767','36681','36667');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4768','36682','36667');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4769','36683','36668');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4770','36684','36668');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4771','36685','36669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4772','36686','36670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4773','36687','36671');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4774','36688','36671');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4775','36689','36671');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4776','36690','36671');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4777','36691','36671');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4778','36692','36671');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4779','36693','36672');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4780','36694','36673');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4781','36695','36673');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4782','36696','36674');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4783','36697','36674');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4784','36698','36675');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4785','36699','36675');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4786','36700','36675');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4787','36701','36676');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4788','36702','36676');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4789','36703','36677');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4790','36704','36677');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4791','36705','36678');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4792','36706','36678');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4793','36707','36679');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4794','36708','36679');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4795','36709','36680');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4796','36710','36680');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4797','36711','36680');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4798','36738','36724');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4799','36739','36724');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4800','36740','36725');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4801','36741','36725');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4802','36742','36726');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4803','36743','36727');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4804','36744','36728');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4805','36745','36728');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4806','36746','36728');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4807','36747','36728');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4808','36748','36728');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4809','36749','36728');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4810','36750','36729');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4811','36751','36730');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4812','36752','36730');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4813','36753','36731');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4814','36754','36731');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4815','36755','36732');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4816','36756','36732');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4817','36757','36732');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4818','36758','36733');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4819','36759','36733');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4820','36760','36734');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4821','36761','36734');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4822','36762','36735');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4823','36763','36735');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4824','36764','36736');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4825','36765','36736');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4826','36766','36737');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4827','36767','36737');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4828','36768','36737');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4829','36782','36781');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4830','36783','36781');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4831','36784','36781');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4832','36785','36781');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4833','36786','36781');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4834','36787','36781');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4835','36788','36781');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4836','36789','36781');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4837','36790','36781');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4838','36791','36781');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4839','36792','36781');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4840','36793','36781');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4841','36794','36781');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4842','36814','36813');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4843','36815','36813');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4844','36816','36813');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4845','36817','36813');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4846','36818','36813');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4847','36819','36813');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4850','36824','35437');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4851','36825','35437');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4861','36861','36854');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4862','36862','36855');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4863','36863','36856');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4864','36864','36857');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4865','36865','36857');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4866','36866','36857');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4867','36867','36857');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4868','36868','36858');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4869','36869','36858');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4870','36870','36858');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4871','36871','36858');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4872','36872','36858');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4873','36873','36859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4874','36874','36859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4875','36875','36859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4876','36876','36859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4877','36877','36860');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4878','36878','36860');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4879','36879','36860');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4889','36915','36908');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4890','36916','36909');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4891','36917','36910');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4892','36918','36911');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4893','36919','36911');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4894','36920','36911');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4895','36921','36911');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4896','36922','36912');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4897','36923','36912');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4898','36924','36912');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4899','36925','36912');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4900','36926','36912');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4901','36927','36913');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4902','36928','36913');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4903','36929','36913');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4904','36930','36913');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4905','36931','36914');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4906','36932','36914');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4907','36933','36914');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4917','36969','36962');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4918','36970','36963');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4919','36971','36964');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4920','36972','36965');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4921','36973','36965');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4922','36974','36965');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4923','36975','36965');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4924','36976','36966');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4925','36977','36966');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4926','36978','36966');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4927','36979','36966');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4928','36980','36966');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4929','36981','36967');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4930','36982','36967');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4931','36983','36967');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4932','36984','36967');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4933','36985','36968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4934','36986','36968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4935','36987','36968');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4945','37023','37016');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4946','37024','37017');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4947','37025','37018');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4948','37026','37019');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4949','37027','37019');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4950','37028','37019');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4951','37029','37019');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4952','37030','37020');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4953','37031','37020');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4954','37032','37020');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4955','37033','37020');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4956','37034','37020');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4957','37035','37021');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4958','37036','37021');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4959','37037','37021');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4960','37038','37021');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4961','37039','37022');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4962','37040','37022');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4963','37041','37022');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4973','37077','37070');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4974','37078','37071');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4975','37079','37072');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4976','37080','37073');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4977','37081','37073');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4978','37082','37073');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4979','37083','37073');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4980','37084','37074');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4981','37085','37074');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4982','37086','37074');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4983','37087','37074');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4984','37088','37074');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4985','37089','37075');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4986','37090','37075');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4987','37091','37075');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4988','37092','37075');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4989','37093','37076');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4990','37094','37076');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('4991','37095','37076');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5001','37131','37124');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5002','37132','37125');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5003','37133','37126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5004','37134','37127');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5005','37135','37127');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5006','37136','37127');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5007','37137','37127');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5008','37138','37128');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5009','37139','37128');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5010','37140','37128');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5011','37141','37128');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5012','37142','37128');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5013','37143','37129');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5014','37144','37129');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5015','37145','37129');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5016','37146','37129');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5017','37147','37130');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5018','37148','37130');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5019','37149','37130');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5029','37185','37178');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5030','37186','37179');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5031','37187','37180');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5032','37188','37181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5033','37189','37181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5034','37190','37181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5035','37191','37181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5036','37192','37182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5037','37193','37182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5038','37194','37182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5039','37195','37182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5040','37196','37182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5041','37197','37183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5042','37198','37183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5043','37199','37183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5044','37200','37183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5045','37201','37184');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5046','37202','37184');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5047','37203','37184');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5057','37239','37232');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5058','37240','37233');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5059','37241','37234');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5060','37242','37235');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5061','37243','37235');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5062','37244','37235');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5063','37245','37235');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5064','37246','37236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5065','37247','37236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5066','37248','37236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5067','37249','37236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5068','37250','37236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5069','37251','37237');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5070','37252','37237');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5071','37253','37237');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5072','37254','37237');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5073','37255','37238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5074','37256','37238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5075','37257','37238');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5085','37293','37286');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5086','37294','37287');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5087','37295','37288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5088','37296','37289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5089','37297','37289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5090','37298','37289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5091','37299','37289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5092','37300','37290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5093','37301','37290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5094','37302','37290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5095','37303','37290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5096','37304','37290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5097','37305','37291');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5098','37306','37291');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5099','37307','37291');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5100','37308','37291');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5101','37309','37292');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5102','37310','37292');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5103','37311','37292');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5113','37347','37340');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5114','37348','37341');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5115','37349','37342');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5116','37350','37343');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5117','37351','37343');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5118','37352','37343');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5119','37353','37343');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5120','37354','37344');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5121','37355','37344');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5122','37356','37344');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5123','37357','37344');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5124','37358','37344');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5125','37359','37345');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5126','37360','37345');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5127','37361','37345');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5128','37362','37345');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5129','37363','37346');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5130','37364','37346');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5131','37365','37346');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5141','37401','37394');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5142','37402','37395');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5143','37403','37396');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5144','37404','37397');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5145','37405','37397');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5146','37406','37397');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5147','37407','37397');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5148','37408','37398');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5149','37409','37398');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5150','37410','37398');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5151','37411','37398');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5152','37412','37398');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5153','37413','37399');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5154','37414','37399');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5155','37415','37399');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5156','37416','37399');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5157','37417','37400');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5158','37418','37400');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5159','37419','37400');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5169','37455','37448');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5170','37456','37449');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5171','37457','37450');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5172','37458','37451');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5173','37459','37451');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5174','37460','37451');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5175','37461','37451');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5176','37462','37452');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5177','37463','37452');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5178','37464','37452');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5179','37465','37452');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5180','37466','37452');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5181','37467','37453');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5182','37468','37453');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5183','37469','37453');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5184','37470','37453');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5185','37471','37454');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5186','37472','37454');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5187','37473','37454');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5197','37509','37502');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5198','37510','37503');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5199','37511','37504');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5200','37512','37505');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5201','37513','37505');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5202','37514','37505');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5203','37515','37505');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5204','37516','37506');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5205','37517','37506');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5206','37518','37506');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5207','37519','37506');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5208','37520','37506');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5209','37521','37507');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5210','37522','37507');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5211','37523','37507');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5212','37524','37507');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5213','37525','37508');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5214','37526','37508');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5215','37527','37508');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5225','37563','37556');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5226','37564','37557');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5227','37565','37558');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5228','37566','37559');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5229','37567','37559');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5230','37568','37559');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5231','37569','37559');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5232','37570','37560');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5233','37571','37560');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5234','37572','37560');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5235','37573','37560');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5236','37574','37560');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5237','37575','37561');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5238','37576','37561');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5239','37577','37561');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5240','37578','37561');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5241','37579','37562');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5242','37580','37562');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5243','37581','37562');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5253','37617','37610');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5254','37618','37611');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5255','37619','37612');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5256','37620','37613');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5257','37621','37613');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5258','37622','37613');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5259','37623','37613');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5260','37624','37614');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5261','37625','37614');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5262','37626','37614');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5263','37627','37614');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5264','37628','37614');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5265','37629','37615');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5266','37630','37615');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5267','37631','37615');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5268','37632','37615');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5269','37633','37616');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5270','37634','37616');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5271','37635','37616');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5281','37671','37664');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5282','37672','37665');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5283','37673','37666');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5284','37674','37667');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5285','37675','37667');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5286','37676','37667');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5287','37677','37667');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5288','37678','37668');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5289','37679','37668');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5290','37680','37668');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5291','37681','37668');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5292','37682','37668');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5293','37683','37669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5294','37684','37669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5295','37685','37669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5296','37686','37669');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5297','37687','37670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5298','37688','37670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5299','37689','37670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5309','37725','37718');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5310','37726','37719');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5311','37727','37720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5312','37728','37721');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5313','37729','37721');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5314','37730','37721');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5315','37731','37721');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5316','37732','37722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5317','37733','37722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5318','37734','37722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5319','37735','37722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5320','37736','37722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5321','37737','37723');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5322','37738','37723');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5323','37739','37723');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5324','37740','37723');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5325','37741','37724');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5326','37742','37724');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5327','37743','37724');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5337','37779','37772');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5338','37780','37773');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5339','37781','37774');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5340','37782','37775');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5341','37783','37775');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5342','37784','37775');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5343','37785','37775');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5344','37786','37776');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5345','37787','37776');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5346','37788','37776');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5347','37789','37776');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5348','37790','37776');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5349','37791','37777');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5350','37792','37777');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5351','37793','37777');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5352','37794','37777');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5353','37795','37778');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5354','37796','37778');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5355','37797','37778');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5365','37833','37826');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5366','37834','37827');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5367','37835','37828');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5368','37836','37829');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5369','37837','37829');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5370','37838','37829');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5371','37839','37829');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5372','37840','37830');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5373','37841','37830');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5374','37842','37830');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5375','37843','37830');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5376','37844','37830');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5377','37845','37831');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5378','37846','37831');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5379','37847','37831');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5380','37848','37831');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5381','37849','37832');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5382','37850','37832');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5383','37851','37832');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5393','37887','37880');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5394','37888','37881');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5395','37889','37882');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5396','37890','37883');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5397','37891','37883');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5398','37892','37883');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5399','37893','37883');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5400','37894','37884');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5401','37895','37884');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5402','37896','37884');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5403','37897','37884');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5404','37898','37884');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5405','37899','37885');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5406','37900','37885');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5407','37901','37885');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5408','37902','37885');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5409','37903','37886');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5410','37904','37886');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5411','37905','37886');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5421','37941','37934');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5422','37942','37935');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5423','37943','37936');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5424','37944','37937');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5425','37945','37937');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5426','37946','37937');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5427','37947','37937');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5428','37948','37938');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5429','37949','37938');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5430','37950','37938');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5431','37951','37938');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5432','37952','37938');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5433','37953','37939');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5434','37954','37939');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5435','37955','37939');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5436','37956','37939');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5437','37957','37940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5438','37958','37940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5439','37959','37940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5449','37995','37988');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5450','37996','37989');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5451','37997','37990');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5452','37998','37991');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5453','37999','37991');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5454','38000','37991');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5455','38001','37991');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5456','38002','37992');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5457','38003','37992');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5458','38004','37992');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5459','38005','37992');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5460','38006','37992');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5461','38007','37993');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5462','38008','37993');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5463','38009','37993');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5464','38010','37993');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5465','38011','37994');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5466','38012','37994');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5467','38013','37994');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5477','38049','38042');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5478','38050','38043');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5479','38051','38044');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5480','38052','38045');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5481','38053','38045');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5482','38054','38045');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5483','38055','38045');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5484','38056','38046');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5485','38057','38046');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5486','38058','38046');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5487','38059','38046');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5488','38060','38046');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5489','38061','38047');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5490','38062','38047');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5491','38063','38047');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5492','38064','38047');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5493','38065','38048');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5494','38066','38048');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5495','38067','38048');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5505','38103','38096');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5506','38104','38097');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5507','38105','38098');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5508','38106','38099');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5509','38107','38099');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5510','38108','38099');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5511','38109','38099');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5512','38110','38100');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5513','38111','38100');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5514','38112','38100');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5515','38113','38100');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5516','38114','38100');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5517','38115','38101');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5518','38116','38101');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5519','38117','38101');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5520','38118','38101');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5521','38119','38102');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5522','38120','38102');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5523','38121','38102');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5533','38157','38150');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5534','38158','38151');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5535','38159','38152');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5536','38160','38153');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5537','38161','38153');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5538','38162','38153');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5539','38163','38153');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5540','38164','38154');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5541','38165','38154');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5542','38166','38154');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5543','38167','38154');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5544','38168','38154');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5545','38169','38155');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5546','38170','38155');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5547','38171','38155');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5548','38172','38155');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5549','38173','38156');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5550','38174','38156');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5551','38175','38156');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5561','38211','38204');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5562','38212','38205');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5563','38213','38206');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5564','38214','38207');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5565','38215','38207');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5566','38216','38207');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5567','38217','38207');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5568','38218','38208');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5569','38219','38208');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5570','38220','38208');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5571','38221','38208');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5572','38222','38208');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5573','38223','38209');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5574','38224','38209');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5575','38225','38209');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5576','38226','38209');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5577','38227','38210');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5578','38228','38210');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5579','38229','38210');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5589','38265','38258');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5590','38266','38259');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5591','38267','38260');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5592','38268','38261');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5593','38269','38261');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5594','38270','38261');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5595','38271','38261');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5596','38272','38262');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5597','38273','38262');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5598','38274','38262');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5599','38275','38262');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5600','38276','38262');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5601','38277','38263');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5602','38278','38263');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5603','38279','38263');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5604','38280','38263');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5605','38281','38264');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5606','38282','38264');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5607','38283','38264');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5617','38319','38312');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5618','38320','38313');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5619','38321','38314');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5620','38322','38315');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5621','38323','38315');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5622','38324','38315');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5623','38325','38315');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5624','38326','38316');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5625','38327','38316');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5626','38328','38316');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5627','38329','38316');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5628','38330','38316');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5629','38331','38317');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5630','38332','38317');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5631','38333','38317');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5632','38334','38317');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5633','38335','38318');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5634','38336','38318');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5635','38337','38318');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5645','38373','38366');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5646','38374','38367');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5647','38375','38368');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5648','38376','38369');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5649','38377','38369');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5650','38378','38369');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5651','38379','38369');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5652','38380','38370');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5653','38381','38370');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5654','38382','38370');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5655','38383','38370');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5656','38384','38370');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5657','38385','38371');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5658','38386','38371');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5659','38387','38371');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5660','38388','38371');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5661','38389','38372');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5662','38390','38372');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5663','38391','38372');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5673','38427','38420');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5674','38428','38421');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5675','38429','38422');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5676','38430','38423');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5677','38431','38423');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5678','38432','38423');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5679','38433','38423');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5680','38434','38424');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5681','38435','38424');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5682','38436','38424');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5683','38437','38424');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5684','38438','38424');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5685','38439','38425');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5686','38440','38425');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5687','38441','38425');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5688','38442','38425');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5689','38443','38426');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5690','38444','38426');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5691','38445','38426');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5701','38481','38474');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5702','38482','38475');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5703','38483','38476');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5704','38484','38477');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5705','38485','38477');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5706','38486','38477');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5707','38487','38477');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5708','38488','38478');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5709','38489','38478');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5710','38490','38478');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5711','38491','38478');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5712','38492','38478');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5713','38493','38479');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5714','38494','38479');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5715','38495','38479');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5716','38496','38479');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5717','38497','38480');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5718','38498','38480');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5719','38499','38480');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5729','38535','38528');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5730','38536','38529');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5731','38537','38530');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5732','38538','38531');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5733','38539','38531');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5734','38540','38531');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5735','38541','38531');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5736','38542','38532');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5737','38543','38532');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5738','38544','38532');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5739','38545','38532');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5740','38546','38532');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5741','38547','38533');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5742','38548','38533');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5743','38549','38533');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5744','38550','38533');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5745','38551','38534');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5746','38552','38534');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5747','38553','38534');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5757','38589','38582');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5758','38590','38583');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5759','38591','38584');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5760','38592','38585');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5761','38593','38585');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5762','38594','38585');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5763','38595','38585');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5764','38596','38586');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5765','38597','38586');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5766','38598','38586');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5767','38599','38586');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5768','38600','38586');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5769','38601','38587');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5770','38602','38587');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5771','38603','38587');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5772','38604','38587');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5773','38605','38588');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5774','38606','38588');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5775','38607','38588');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5785','38643','38636');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5786','38644','38637');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5787','38645','38638');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5788','38646','38639');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5789','38647','38639');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5790','38648','38639');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5791','38649','38639');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5792','38650','38640');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5793','38651','38640');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5794','38652','38640');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5795','38653','38640');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5796','38654','38640');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5797','38655','38641');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5798','38656','38641');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5799','38657','38641');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5800','38658','38641');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5801','38659','38642');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5802','38660','38642');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5803','38661','38642');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5813','38697','38690');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5814','38698','38691');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5815','38699','38692');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5816','38700','38693');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5817','38701','38693');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5818','38702','38693');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5819','38703','38693');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5820','38704','38694');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5821','38705','38694');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5822','38706','38694');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5823','38707','38694');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5824','38708','38694');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5825','38709','38695');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5826','38710','38695');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5827','38711','38695');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5828','38712','38695');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5829','38713','38696');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5830','38714','38696');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5831','38715','38696');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5841','38751','38744');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5842','38752','38745');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5843','38753','38746');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5844','38754','38747');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5845','38755','38747');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5846','38756','38747');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5847','38757','38747');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5848','38758','38748');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5849','38759','38748');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5850','38760','38748');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5851','38761','38748');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5852','38762','38748');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5853','38763','38749');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5854','38764','38749');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5855','38765','38749');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5856','38766','38749');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5857','38767','38750');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5858','38768','38750');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5859','38769','38750');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5869','38805','38798');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5870','38806','38799');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5871','38807','38800');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5872','38808','38801');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5873','38809','38801');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5874','38810','38801');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5875','38811','38801');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5876','38812','38802');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5877','38813','38802');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5878','38814','38802');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5879','38815','38802');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5880','38816','38802');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5881','38817','38803');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5882','38818','38803');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5883','38819','38803');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5884','38820','38803');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5885','38821','38804');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5886','38822','38804');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5887','38823','38804');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5897','38859','38852');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5898','38860','38853');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5899','38861','38854');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5900','38862','38855');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5901','38863','38855');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5902','38864','38855');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5903','38865','38855');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5904','38866','38856');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5905','38867','38856');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5906','38868','38856');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5907','38869','38856');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5908','38870','38856');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5909','38871','38857');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5910','38872','38857');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5911','38873','38857');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5912','38874','38857');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5913','38875','38858');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5914','38876','38858');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5915','38877','38858');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5925','38913','38906');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5926','38914','38907');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5927','38915','38908');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5928','38916','38909');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5929','38917','38909');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5930','38918','38909');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5931','38919','38909');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5932','38920','38910');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5933','38921','38910');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5934','38922','38910');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5935','38923','38910');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5936','38924','38910');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5937','38925','38911');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5938','38926','38911');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5939','38927','38911');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5940','38928','38911');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5941','38929','38912');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5942','38930','38912');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5943','38931','38912');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5953','38967','38960');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5954','38968','38961');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5955','38969','38962');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5956','38970','38963');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5957','38971','38963');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5958','38972','38963');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5959','38973','38963');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5960','38974','38964');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5961','38975','38964');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5962','38976','38964');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5963','38977','38964');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5964','38978','38964');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5965','38979','38965');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5966','38980','38965');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5967','38981','38965');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5968','38982','38965');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5969','38983','38966');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5970','38984','38966');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5971','38985','38966');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5981','39021','39014');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5982','39022','39015');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5983','39023','39016');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5984','39024','39017');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5985','39025','39017');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5986','39026','39017');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5987','39027','39017');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5988','39028','39018');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5989','39029','39018');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5990','39030','39018');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5991','39031','39018');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5992','39032','39018');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5993','39033','39019');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5994','39034','39019');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5995','39035','39019');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5996','39036','39019');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5997','39037','39020');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5998','39038','39020');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('5999','39039','39020');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6009','39075','39068');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6010','39076','39069');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6011','39077','39070');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6012','39078','39071');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6013','39079','39071');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6014','39080','39071');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6015','39081','39071');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6016','39082','39072');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6017','39083','39072');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6018','39084','39072');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6019','39085','39072');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6020','39086','39072');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6021','39087','39073');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6022','39088','39073');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6023','39089','39073');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6024','39090','39073');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6025','39091','39074');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6026','39092','39074');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6027','39093','39074');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6037','39129','39122');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6038','39130','39123');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6039','39131','39124');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6040','39132','39125');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6041','39133','39125');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6042','39134','39125');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6043','39135','39125');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6044','39136','39126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6045','39137','39126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6046','39138','39126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6047','39139','39126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6048','39140','39126');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6049','39141','39127');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6050','39142','39127');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6051','39143','39127');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6052','39144','39127');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6053','39145','39128');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6054','39146','39128');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6055','39147','39128');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6065','39183','39176');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6066','39184','39177');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6067','39185','39178');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6068','39186','39179');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6069','39187','39179');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6070','39188','39179');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6071','39189','39179');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6072','39190','39180');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6073','39191','39180');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6074','39192','39180');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6075','39193','39180');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6076','39194','39180');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6077','39195','39181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6078','39196','39181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6079','39197','39181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6080','39198','39181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6081','39199','39182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6082','39200','39182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6083','39201','39182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6093','39237','39230');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6094','39238','39231');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6095','39239','39232');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6096','39240','39233');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6097','39241','39233');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6098','39242','39233');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6099','39243','39233');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6100','39244','39234');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6101','39245','39234');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6102','39246','39234');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6103','39247','39234');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6104','39248','39234');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6105','39249','39235');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6106','39250','39235');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6107','39251','39235');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6108','39252','39235');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6109','39253','39236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6110','39254','39236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6111','39255','39236');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6121','39291','39284');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6122','39292','39285');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6123','39293','39286');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6124','39294','39287');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6125','39295','39287');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6126','39296','39287');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6127','39297','39287');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6128','39298','39288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6129','39299','39288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6130','39300','39288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6131','39301','39288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6132','39302','39288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6133','39303','39289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6134','39304','39289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6135','39305','39289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6136','39306','39289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6137','39307','39290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6138','39308','39290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6139','39309','39290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6149','39345','39338');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6150','39346','39339');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6151','39347','39340');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6152','39348','39341');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6153','39349','39341');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6154','39350','39341');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6155','39351','39341');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6156','39352','39342');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6157','39353','39342');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6158','39354','39342');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6159','39355','39342');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6160','39356','39342');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6161','39357','39343');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6162','39358','39343');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6163','39359','39343');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6164','39360','39343');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6165','39361','39344');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6166','39362','39344');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6167','39363','39344');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6177','39399','39392');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6178','39400','39393');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6179','39401','39394');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6180','39402','39395');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6181','39403','39395');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6182','39404','39395');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6183','39405','39395');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6184','39406','39396');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6185','39407','39396');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6186','39408','39396');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6187','39409','39396');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6188','39410','39396');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6189','39411','39397');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6190','39412','39397');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6191','39413','39397');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6192','39414','39397');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6193','39415','39398');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6194','39416','39398');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6195','39417','39398');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6205','39453','39446');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6206','39454','39447');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6207','39455','39448');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6208','39456','39449');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6209','39457','39449');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6210','39458','39449');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6211','39459','39449');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6212','39460','39450');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6213','39461','39450');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6214','39462','39450');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6215','39463','39450');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6216','39464','39450');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6217','39465','39451');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6218','39466','39451');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6219','39467','39451');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6220','39468','39451');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6221','39469','39452');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6222','39470','39452');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6223','39471','39452');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6233','39507','39500');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6234','39508','39501');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6235','39509','39502');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6236','39510','39503');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6237','39511','39503');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6238','39512','39503');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6239','39513','39503');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6240','39514','39504');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6241','39515','39504');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6242','39516','39504');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6243','39517','39504');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6244','39518','39504');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6245','39519','39505');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6246','39520','39505');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6247','39521','39505');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6248','39522','39505');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6249','39523','39506');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6250','39524','39506');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6251','39525','39506');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6261','39561','39554');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6262','39562','39555');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6263','39563','39556');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6264','39564','39557');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6265','39565','39557');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6266','39566','39557');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6267','39567','39557');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6268','39568','39558');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6269','39569','39558');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6270','39570','39558');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6271','39571','39558');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6272','39572','39558');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6273','39573','39559');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6274','39574','39559');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6275','39575','39559');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6276','39576','39559');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6277','39577','39560');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6278','39578','39560');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6279','39579','39560');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6289','39615','39608');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6290','39616','39609');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6291','39617','39610');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6292','39618','39611');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6293','39619','39611');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6294','39620','39611');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6295','39621','39611');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6296','39622','39612');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6297','39623','39612');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6298','39624','39612');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6299','39625','39612');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6300','39626','39612');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6301','39627','39613');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6302','39628','39613');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6303','39629','39613');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6304','39630','39613');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6305','39631','39614');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6306','39632','39614');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6307','39633','39614');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6317','39669','39662');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6318','39670','39663');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6319','39671','39664');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6320','39672','39665');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6321','39673','39665');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6322','39674','39665');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6323','39675','39665');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6324','39676','39666');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6325','39677','39666');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6326','39678','39666');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6327','39679','39666');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6328','39680','39666');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6329','39681','39667');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6330','39682','39667');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6331','39683','39667');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6332','39684','39667');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6333','39685','39668');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6334','39686','39668');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6335','39687','39668');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6345','39723','39716');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6346','39724','39717');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6347','39725','39718');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6348','39726','39719');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6349','39727','39719');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6350','39728','39719');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6351','39729','39719');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6352','39730','39720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6353','39731','39720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6354','39732','39720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6355','39733','39720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6356','39734','39720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6357','39735','39721');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6358','39736','39721');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6359','39737','39721');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6360','39738','39721');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6361','39739','39722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6362','39740','39722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6363','39741','39722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6364','39754','39749');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6365','39755','39749');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6366','39756','39749');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6367','39757','39749');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6368','39758','39749');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6369','39759','39749');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6370','39760','39749');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6371','39761','39749');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6372','39762','39750');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6373','39763','39750');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6374','39764','39750');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6375','39765','39750');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6376','39766','39750');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6377','39767','39750');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6378','39768','39750');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6379','39769','39750');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6380','39770','39750');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6381','39771','39750');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6382','39772','39751');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6383','39773','39751');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6384','39774','39751');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6385','39775','39751');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6386','39776','39751');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6387','39777','39751');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6388','39778','39751');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6389','39779','39751');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6390','39780','39751');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6391','39781','39751');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6392','39782','39752');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6393','39783','39752');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6394','39784','39752');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6395','39785','39752');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6396','39786','39752');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6397','39787','39752');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6398','39788','39752');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6399','39789','39752');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6400','39790','39753');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6401','39791','39753');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6402','39792','39753');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6403','39793','39753');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6404','39794','39753');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6405','39795','39753');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6406','39796','39753');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6407','39803','30571');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6408','39808','39806');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6409','39809','39806');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6410','39810','39806');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6411','39811','39806');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6412','39812','39807');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6413','39813','39807');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6414','39814','39807');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6415','39815','39807');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6416','39817','39816');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6417','39818','39816');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6418','39819','39816');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6419','39820','39816');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6420','39861','39859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6421','39862','39859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6422','39863','39859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6423','39864','39859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6424','39865','39851');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6425','39866','39852');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6426','39867','39853');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6427','39868','39854');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6428','39869','39855');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6429','39870','39856');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6430','39871','39857');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6431','39872','39858');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6432','39873','39859');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6433','39874','39860');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6434','39875','39860');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6435','39890','39889');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6436','39891','39889');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6437','39892','39889');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6438','39893','39889');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6439','39894','39889');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6440','39895','39889');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6441','39896','39889');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6442','39897','39889');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6443','39898','39889');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6444','39899','39889');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6445','39900','39889');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6446','39901','39889');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6447','39902','39889');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6448','39903','39889');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6449','39904','39889');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6450','39921','39920');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6451','39922','39920');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6452','39923','39920');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6453','39924','39920');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6454','39925','39917');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6455','39926','39917');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6456','39927','39917');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6457','39928','39917');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6458','39929','39917');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6459','39930','39917');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6460','39931','39918');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6461','39932','39918');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6462','39933','39918');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6463','39934','39919');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6464','39935','39920');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6465','39936','39920');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6466','39943','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6467','39944','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6468','39945','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6469','39946','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6470','39947','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6471','39948','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6472','39949','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6473','39950','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6474','39951','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6475','39952','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6476','39953','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6477','39954','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6478','39955','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6479','39956','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6480','39957','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6481','39958','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6482','39959','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6483','39960','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6484','39961','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6485','39962','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6486','39963','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6487','39964','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6488','39965','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6489','39966','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6490','39967','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6491','39968','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6492','39969','39940');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6493','39970','39942');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6494','39971','39942');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6495','39972','39942');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6496','39973','39942');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6497','39974','39942');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6498','39975','39942');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6499','39976','39942');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6500','40003','40000');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6501','40004','40000');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6502','40005','40000');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6503','40006','40000');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6504','40007','40000');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6505','40008','40001');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6506','40009','40002');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6507','40036','40022');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6508','40037','40024');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6509','40038','40024');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6510','40039','40024');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6511','40040','40024');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6512','40041','40024');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6513','40042','40025');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6514','40043','40025');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6515','40044','40025');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6516','40045','40025');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6517','40046','40025');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6518','40047','40025');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6519','40048','40025');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6520','40049','40026');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6521','40050','40026');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6522','40051','40026');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6523','40052','40027');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6524','40053','40028');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6525','40054','40028');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6526','40055','40028');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6527','40056','40028');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6528','40057','40028');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6529','40058','40028');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6530','40059','40029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6531','40060','40029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6532','40061','40029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6533','40062','40029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6534','40063','40029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6535','40064','40029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6536','40065','40029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6537','40066','40029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6538','40067','40029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6539','40068','40029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6540','40069','40029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6541','40070','40029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6542','40071','40029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6543','40072','40029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6544','40073','40029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6545','40074','40029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6546','40075','40029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6547','40076','40030');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6548','40077','40030');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6549','40078','40030');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6550','40079','40030');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6551','40080','40030');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6552','40081','40030');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6553','40082','40030');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6554','40083','40030');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6555','40084','40030');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6556','40085','40031');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6557','40086','40032');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6558','40087','40032');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6559','40088','40032');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6560','40089','40032');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6561','40090','40034');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6562','40091','40034');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6563','40092','40034');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6564','40093','40034');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6565','40094','40034');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6572','40147','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6573','40148','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6574','40149','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6575','40150','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6576','40151','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6577','40152','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6578','40153','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6579','40154','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6580','40155','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6581','40156','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6582','40157','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6583','40158','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6584','40159','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6585','40160','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6586','40161','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6587','40162','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6588','40163','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6589','40164','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6590','40165','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6591','40166','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6592','40167','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6593','40168','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6594','40169','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6595','40170','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6596','40171','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6597','40172','40138');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6606','40460','40454');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6607','40461','40454');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6608','40462','40454');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6609','40463','40455');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6610','40464','40455');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6611','40465','40455');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6624','40491','40489');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6625','40492','40489');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6626','40493','40489');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6627','40494','40489');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6628','40495','40489');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6629','40496','40489');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6630','40497','40489');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6631','40498','40489');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6632','40499','40489');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6633','40500','40490');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6634','40517','40513');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6635','40518','40513');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6636','40519','40513');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6637','40520','40513');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6638','40521','40513');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6639','40522','40513');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6640','40523','40513');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6641','40524','40513');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6642','40525','40513');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6643','40526','40514');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6644','40527','40515');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6645','40528','40515');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6646','40529','40515');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6647','40530','40516');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6648','40531','40516');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6649','40532','40516');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6650','40545','40544');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6651','40546','40544');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6652','40547','40544');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6653','40548','40544');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6654','40549','40544');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6655','40550','40544');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6656','40551','40544');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6657','40552','40544');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6658','40553','40544');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6659','40582','40580');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6660','40583','40580');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6661','40584','40580');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6662','40585','40580');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6663','40586','40580');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6664','40587','40580');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6665','40588','40580');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6666','40589','40580');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6667','40590','40580');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6668','40591','40581');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6669','40592','40581');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6670','40593','40581');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6671','40594','40581');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6672','40595','40581');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6673','40596','40581');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6674','40597','40581');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6675','40598','40581');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6676','40599','40581');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6677','40663','40643');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6678','40664','40644');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6679','40665','40645');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6680','40666','40645');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6681','40667','40645');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6682','40668','40646');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6683','40669','40647');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6684','40670','40647');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6685','40671','40648');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6686','40672','40649');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6687','40673','40650');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6688','40674','40651');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6689','40675','40651');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6690','40676','40651');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6691','40677','40652');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6692','40678','40652');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6693','40679','40652');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6694','40680','40652');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6695','40681','40652');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6696','40682','40652');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6697','40683','40652');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6698','40684','40652');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6699','40685','40652');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6700','40686','40653');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6701','40687','40654');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6702','40688','40655');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6703','40689','40655');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6704','40690','40656');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6705','40691','40657');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6706','40692','40658');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6707','40693','40659');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6708','40694','40659');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6709','40695','40659');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6710','40696','40660');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6711','40697','40660');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6712','40698','40660');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6713','40699','40660');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6714','40700','40660');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6715','40701','40660');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6716','40702','40660');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6717','40703','40660');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6718','40704','40660');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6719','40705','40661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6720','40706','40662');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6721','40707','40662');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6722','40721','40719');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6723','40722','40719');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6724','40723','40719');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6725','40724','40719');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6726','40725','40719');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6727','40726','40719');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6728','40727','40719');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6729','40728','40719');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6730','40729','40719');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6731','40730','40720');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6732','40743','40742');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6733','40744','40742');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6734','40745','40742');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6735','40746','40742');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6736','40747','40742');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6737','40748','40742');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6738','40749','40742');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6739','40750','40742');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6740','40751','40742');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6741','40765','40763');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6742','40766','40763');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6743','40767','40763');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6744','40768','40763');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6745','40769','40763');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6746','40770','40763');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6747','40771','40763');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6748','40772','40763');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6749','40773','40763');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6750','40774','40764');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6751','40788','40786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6752','40789','40786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6753','40790','40786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6754','40791','40786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6755','40792','40786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6756','40793','40786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6757','40794','40786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6758','40795','40786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6759','40796','40786');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6760','40797','40787');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6761','40811','40809');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6762','40812','40809');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6763','40813','40809');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6764','40814','40809');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6765','40815','40809');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6766','40816','40809');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6767','40817','40809');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6768','40818','40809');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6769','40819','40809');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6770','40820','40810');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6771','40834','40832');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6772','40835','40832');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6773','40836','40832');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6774','40837','40832');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6775','40838','40832');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6776','40839','40832');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6777','40840','40832');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6778','40841','40832');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6779','40842','40832');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6780','40843','40833');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6781','40857','40855');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6782','40858','40855');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6783','40859','40855');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6784','40860','40855');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6785','40861','40855');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6786','40862','40855');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6787','40863','40855');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6788','40864','40855');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6789','40865','40855');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6790','40866','40856');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6791','40880','40878');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6792','40881','40878');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6793','40882','40878');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6794','40883','40878');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6795','40884','40878');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6796','40885','40878');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6797','40886','40878');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6798','40887','40878');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6799','40888','40878');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6800','40889','40879');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6801','40902','40901');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6802','40903','40901');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6803','40904','40901');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6804','40905','40901');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6805','40906','40901');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6806','40907','40901');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6807','40908','40901');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6808','40909','40901');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6809','40910','40901');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6810','40924','40922');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6811','40925','40922');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6812','40926','40922');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6813','40927','40922');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6814','40928','40922');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6815','40929','40922');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6816','40930','40922');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6817','40931','40922');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6818','40932','40922');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6819','40933','40923');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6820','40946','40945');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6821','40947','40945');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6822','40948','40945');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6823','40949','40945');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6824','40950','40945');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6825','40951','40945');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6826','40952','40945');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6827','40953','40945');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6828','40954','40945');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6829','40967','40966');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6830','40968','40966');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6831','40969','40966');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6832','40970','40966');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6833','40971','40966');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6834','40972','40966');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6835','40973','40966');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6836','40974','40966');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6837','40975','40966');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6838','40988','40987');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6839','40989','40987');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6840','40990','40987');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6841','40991','40987');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6842','40992','40987');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6843','40993','40987');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6844','40994','40987');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6845','40995','40987');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6846','40996','40987');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6847','41009','41008');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6848','41010','41008');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6849','41011','41008');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6850','41012','41008');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6851','41013','41008');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6852','41014','41008');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6853','41015','41008');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6854','41016','41008');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6855','41017','41008');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6856','41030','41029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6857','41031','41029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6858','41032','41029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6859','41033','41029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6860','41034','41029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6861','41035','41029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6862','41036','41029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6863','41037','41029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6864','41038','41029');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6865','41051','41050');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6866','41052','41050');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6867','41053','41050');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6868','41054','41050');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6869','41055','41050');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6870','41056','41050');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6871','41057','41050');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6872','41058','41050');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6873','41059','41050');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6874','41072','41071');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6875','41073','41071');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6876','41074','41071');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6877','41075','41071');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6878','41076','41071');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6879','41077','41071');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6880','41078','41071');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6881','41079','41071');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6882','41080','41071');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6883','41093','41092');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6884','41094','41092');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6885','41095','41092');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6886','41096','41092');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6887','41097','41092');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6888','41098','41092');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6889','41099','41092');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6890','41100','41092');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6891','41101','41092');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6892','41114','41113');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6893','41115','41113');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6894','41116','41113');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6895','41117','41113');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6896','41118','41113');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6897','41119','41113');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6898','41120','41113');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6899','41121','41113');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6900','41122','41113');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6901','41135','41134');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6902','41136','41134');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6903','41137','41134');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6904','41138','41134');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6905','41139','41134');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6906','41140','41134');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6907','41141','41134');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6908','41142','41134');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6909','41143','41134');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6910','41156','41155');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6911','41157','41155');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6912','41158','41155');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6913','41159','41155');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6914','41160','41155');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6915','41161','41155');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6916','41162','41155');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6917','41163','41155');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6918','41164','41155');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6919','41177','41176');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6920','41178','41176');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6921','41179','41176');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6922','41180','41176');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6923','41181','41176');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6924','41182','41176');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6925','41183','41176');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6926','41184','41176');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6927','41185','41176');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6928','41198','41197');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6929','41199','41197');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6930','41200','41197');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6931','41201','41197');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6932','41202','41197');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6933','41203','41197');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6934','41204','41197');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6935','41205','41197');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6936','41206','41197');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6937','41219','41218');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6938','41220','41218');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6939','41221','41218');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6940','41222','41218');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6941','41223','41218');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6942','41224','41218');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6943','41225','41218');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6944','41226','41218');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6945','41227','41218');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6946','41240','41239');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6947','41241','41239');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6948','41242','41239');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6949','41243','41239');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6950','41244','41239');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6951','41245','41239');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6952','41246','41239');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6953','41247','41239');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6954','41248','41239');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6955','41261','41260');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6956','41262','41260');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6957','41263','41260');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6958','41264','41260');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6959','41265','41260');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6960','41266','41260');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6961','41267','41260');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6962','41268','41260');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6963','41269','41260');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6964','41282','41281');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6965','41283','41281');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6966','41284','41281');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6967','41285','41281');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6968','41286','41281');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6969','41287','41281');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6970','41288','41281');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6971','41289','41281');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6972','41290','41281');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6973','41303','41302');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6974','41304','41302');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6975','41305','41302');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6976','41306','41302');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6977','41307','41302');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6978','41308','41302');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6979','41309','41302');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6980','41310','41302');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6981','41311','41302');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6982','41324','41323');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6983','41325','41323');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6984','41326','41323');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6985','41327','41323');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6986','41328','41323');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6987','41329','41323');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6988','41330','41323');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6989','41331','41323');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6990','41332','41323');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6991','41345','41344');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6992','41346','41344');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6993','41347','41344');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6994','41348','41344');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6995','41349','41344');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6996','41350','41344');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6997','41351','41344');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6998','41352','41344');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('6999','41353','41344');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7000','41366','41365');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7001','41367','41365');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7002','41368','41365');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7003','41369','41365');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7004','41370','41365');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7005','41371','41365');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7006','41372','41365');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7007','41373','41365');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7008','41374','41365');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7009','41387','41386');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7010','41388','41386');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7011','41389','41386');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7012','41390','41386');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7013','41391','41386');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7014','41392','41386');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7015','41393','41386');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7016','41394','41386');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7017','41395','41386');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7018','41408','41407');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7019','41409','41407');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7020','41410','41407');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7021','41411','41407');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7022','41412','41407');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7023','41413','41407');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7024','41414','41407');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7025','41415','41407');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7026','41416','41407');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7027','41429','41428');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7028','41430','41428');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7029','41431','41428');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7030','41432','41428');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7031','41433','41428');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7032','41434','41428');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7033','41435','41428');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7034','41436','41428');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7035','41437','41428');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7036','41450','41449');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7037','41451','41449');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7038','41452','41449');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7039','41453','41449');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7040','41454','41449');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7041','41455','41449');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7042','41456','41449');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7043','41457','41449');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7044','41458','41449');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7045','41471','41470');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7046','41472','41470');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7047','41473','41470');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7048','41474','41470');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7049','41475','41470');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7050','41476','41470');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7051','41477','41470');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7052','41478','41470');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7053','41479','41470');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7054','41492','41491');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7055','41493','41491');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7056','41494','41491');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7057','41495','41491');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7058','41496','41491');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7059','41497','41491');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7060','41498','41491');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7061','41499','41491');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7062','41500','41491');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7063','41513','41512');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7064','41514','41512');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7065','41515','41512');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7066','41516','41512');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7067','41517','41512');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7068','41518','41512');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7069','41519','41512');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7070','41520','41512');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7071','41521','41512');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7072','41534','41533');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7073','41535','41533');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7074','41536','41533');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7075','41537','41533');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7076','41538','41533');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7077','41539','41533');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7078','41540','41533');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7079','41541','41533');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7080','41542','41533');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7081','41555','41554');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7082','41556','41554');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7083','41557','41554');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7084','41558','41554');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7085','41559','41554');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7086','41560','41554');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7087','41561','41554');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7088','41562','41554');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7089','41563','41554');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7090','41576','41575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7091','41577','41575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7092','41578','41575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7093','41579','41575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7094','41580','41575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7095','41581','41575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7096','41582','41575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7097','41583','41575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7098','41584','41575');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7099','41597','41596');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7100','41598','41596');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7101','41599','41596');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7102','41600','41596');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7103','41601','41596');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7104','41602','41596');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7105','41603','41596');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7106','41604','41596');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7107','41605','41596');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7108','41618','41617');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7109','41619','41617');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7110','41620','41617');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7111','41621','41617');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7112','41622','41617');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7113','41623','41617');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7114','41624','41617');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7115','41625','41617');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7116','41626','41617');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7117','41639','41638');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7118','41640','41638');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7119','41641','41638');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7120','41642','41638');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7121','41643','41638');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7122','41644','41638');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7123','41645','41638');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7124','41646','41638');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7125','41647','41638');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7126','41660','41659');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7127','41661','41659');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7128','41662','41659');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7129','41663','41659');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7130','41664','41659');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7131','41665','41659');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7132','41666','41659');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7133','41667','41659');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7134','41668','41659');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7135','41681','41680');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7136','41682','41680');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7137','41683','41680');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7138','41684','41680');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7139','41685','41680');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7140','41686','41680');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7141','41687','41680');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7142','41688','41680');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7143','41689','41680');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7144','41702','41701');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7145','41703','41701');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7146','41704','41701');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7147','41705','41701');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7148','41706','41701');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7149','41707','41701');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7150','41708','41701');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7151','41709','41701');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7152','41710','41701');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7153','41723','41722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7154','41724','41722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7155','41725','41722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7156','41726','41722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7157','41727','41722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7158','41728','41722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7159','41729','41722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7160','41730','41722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7161','41731','41722');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7162','41744','41743');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7163','41745','41743');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7164','41746','41743');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7165','41747','41743');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7166','41748','41743');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7167','41749','41743');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7168','41750','41743');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7169','41751','41743');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7170','41752','41743');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7171','41765','41764');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7172','41766','41764');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7173','41767','41764');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7174','41768','41764');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7175','41769','41764');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7176','41770','41764');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7177','41771','41764');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7178','41772','41764');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7179','41773','41764');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7180','41786','41785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7181','41787','41785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7182','41788','41785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7183','41789','41785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7184','41790','41785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7185','41791','41785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7186','41792','41785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7187','41793','41785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7188','41794','41785');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7189','41807','41806');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7190','41808','41806');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7191','41809','41806');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7192','41810','41806');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7193','41811','41806');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7194','41812','41806');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7195','41813','41806');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7196','41814','41806');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7197','41815','41806');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7198','41828','41827');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7199','41829','41827');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7200','41830','41827');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7201','41831','41827');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7202','41832','41827');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7203','41833','41827');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7204','41834','41827');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7205','41835','41827');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7206','41836','41827');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7207','41849','41848');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7208','41850','41848');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7209','41851','41848');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7210','41852','41848');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7211','41853','41848');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7212','41854','41848');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7213','41855','41848');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7214','41856','41848');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7215','41857','41848');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7216','41870','41869');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7217','41871','41869');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7218','41872','41869');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7219','41873','41869');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7220','41874','41869');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7221','41875','41869');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7222','41876','41869');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7223','41877','41869');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7224','41878','41869');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7225','41891','41890');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7226','41892','41890');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7227','41893','41890');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7228','41894','41890');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7229','41895','41890');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7230','41896','41890');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7231','41897','41890');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7232','41898','41890');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7233','41899','41890');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7234','41912','41911');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7235','41913','41911');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7236','41914','41911');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7237','41915','41911');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7238','41916','41911');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7239','41917','41911');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7240','41918','41911');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7241','41919','41911');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7242','41920','41911');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7243','41933','41932');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7244','41934','41932');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7245','41935','41932');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7246','41936','41932');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7247','41937','41932');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7248','41938','41932');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7249','41939','41932');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7250','41940','41932');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7251','41941','41932');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7252','41954','41953');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7253','41955','41953');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7254','41956','41953');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7255','41957','41953');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7256','41958','41953');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7257','41959','41953');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7258','41960','41953');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7259','41961','41953');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7260','41962','41953');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7261','41975','41974');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7262','41976','41974');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7263','41977','41974');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7264','41978','41974');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7265','41979','41974');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7266','41980','41974');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7267','41981','41974');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7268','41982','41974');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7269','41983','41974');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7270','41996','41995');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7271','41997','41995');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7272','41998','41995');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7273','41999','41995');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7274','42000','41995');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7275','42001','41995');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7276','42002','41995');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7277','42003','41995');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7278','42004','41995');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7279','42017','42016');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7280','42018','42016');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7281','42019','42016');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7282','42020','42016');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7283','42021','42016');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7284','42022','42016');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7285','42023','42016');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7286','42024','42016');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7287','42025','42016');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7288','42038','42037');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7289','42039','42037');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7290','42040','42037');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7291','42041','42037');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7292','42042','42037');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7293','42043','42037');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7294','42044','42037');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7295','42045','42037');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7296','42046','42037');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7297','42059','42058');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7298','42060','42058');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7299','42061','42058');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7300','42062','42058');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7301','42063','42058');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7302','42064','42058');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7303','42065','42058');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7304','42066','42058');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7305','42067','42058');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7306','42080','42079');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7307','42081','42079');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7308','42082','42079');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7309','42083','42079');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7310','42084','42079');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7311','42085','42079');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7312','42086','42079');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7313','42087','42079');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7314','42088','42079');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7315','42101','42100');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7316','42102','42100');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7317','42103','42100');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7318','42104','42100');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7319','42105','42100');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7320','42106','42100');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7321','42107','42100');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7322','42108','42100');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7323','42109','42100');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7324','42123','42121');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7325','42124','42121');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7326','42125','42121');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7327','42126','42121');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7328','42127','42121');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7329','42128','42121');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7330','42129','42121');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7331','42130','42121');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7332','42131','42121');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7333','42132','42122');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7334','42145','42144');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7335','42146','42144');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7336','42147','42144');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7337','42148','42144');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7338','42149','42144');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7339','42150','42144');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7340','42151','42144');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7341','42152','42144');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7342','42153','42144');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7343','42166','42165');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7344','42167','42165');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7345','42168','42165');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7346','42169','42165');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7347','42170','42165');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7348','42171','42165');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7349','42172','42165');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7350','42173','42165');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7351','42174','42165');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7352','42277','42271');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7353','42278','42271');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7354','42279','42271');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7355','42280','42271');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7356','42281','42271');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7357','42282','42271');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7358','42283','42271');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7359','42284','42271');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7360','42285','42272');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7361','42286','42272');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7362','42287','42272');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7363','42288','42273');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7364','42289','42273');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7365','42290','42273');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7366','42291','42273');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7367','42292','42274');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7368','42293','42274');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7369','42294','42274');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7370','42295','42274');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7371','42296','42274');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7372','42297','42274');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7373','42298','42274');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7374','42299','42274');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7375','42300','42275');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7376','42301','42275');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7377','42302','42275');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7378','42303','42276');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7379','42304','42276');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7380','42305','42276');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7381','42306','42276');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7382','42307','42272');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7383','42308','42272');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7384','42309','42272');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7385','42310','42272');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7386','42311','42272');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7387','42312','42272');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7388','42313','42275');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7389','42314','42275');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7390','42315','42275');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7391','42316','42275');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7392','42317','42275');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7393','42318','42275');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7394','42363','42360');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7395','42364','42360');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7396','42365','42360');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7397','42366','42360');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7398','42367','42360');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7399','42368','42360');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7400','42369','42360');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7401','42370','42360');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7402','42371','42361');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7403','42372','42361');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7404','42373','42361');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7405','42374','42362');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7406','42375','42362');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7407','42376','42362');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7408','42377','42362');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7409','42378','42361');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7410','42379','42361');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7411','42380','42361');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7412','42381','42361');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7413','42382','42361');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7414','42383','42361');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7415','42415','42410');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7416','42416','42410');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7417','42417','42410');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7418','42418','42410');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7419','42419','42410');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7420','42420','42410');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7421','42421','42410');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7422','42422','42410');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7423','42423','42410');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7424','42424','42410');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7425','42425','42411');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7426','42426','42411');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7427','42427','42411');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7428','42428','42411');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7429','42429','42411');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7430','42430','42411');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7431','42431','42411');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7432','42432','42411');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7433','42433','42411');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7434','42434','42412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7435','42435','42413');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7436','42436','42413');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7437','42437','42413');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7438','42438','42414');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7439','42439','42414');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7440','42440','42414');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7441','42441','42414');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7442','42442','42410');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7443','42491','42487');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7444','42492','42487');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7445','42493','42487');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7446','42494','42487');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7447','42495','42487');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7448','42496','42487');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7449','42497','42488');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7450','42498','42488');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7451','42499','42488');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7452','42500','42488');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7453','42501','42488');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7454','42502','42488');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7455','42503','42488');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7456','42504','42488');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7457','42505','42489');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7458','42506','42490');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7459','42507','42490');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7460','42508','42490');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7461','42509','42487');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7462','42510','42487');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7463','42511','42487');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7464','42547','42543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7465','42548','42543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7466','42549','42543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7467','42550','42543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7468','42551','42543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7469','42552','42543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7470','42553','42544');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7471','42554','42544');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7472','42555','42544');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7473','42556','42544');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7474','42557','42544');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7475','42558','42544');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7476','42559','42544');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7477','42560','42544');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7478','42561','42545');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7479','42562','42546');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7480','42563','42546');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7481','42564','42546');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7482','42565','42543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7483','42566','42543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7484','42567','42543');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7485','42583','42580');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7486','42584','42580');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7487','42585','42580');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7488','42586','42580');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7489','42587','42580');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7490','42588','42580');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7491','42589','42580');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7492','42590','42580');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7493','42591','42580');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7494','42592','42581');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7495','42593','42581');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7496','42594','42581');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7497','42595','42582');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7498','42596','42582');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7499','42597','42582');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7501','42679','42271');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7502','42680','29203');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7503','42681','42274');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7504','42682','42360');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7505','42683','31898');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7506','42686','42685');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7509','42691','42689');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7510','42692','42689');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7511','42693','42690');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7512','42694','42690');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7513','42695','42690');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7514','42696','39854');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7515','42697','40001');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7516','42698','40001');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7517','42699','40001');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7518','42700','40001');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7519','42701','40002');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7520','42702','40002');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7521','42703','40002');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7522','42704','40002');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7523','42711','42708');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7524','42712','42708');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7525','42713','42708');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7526','42714','42708');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7527','42715','42708');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7528','42716','42708');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7529','42717','42708');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7530','42718','42708');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7531','42719','42709');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7532','42720','42709');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7533','42721','42709');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7534','42722','42709');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7535','42723','40028');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7536','42724','40028');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7537','42725','42710');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7538','42726','42710');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7539','42727','42710');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7540','42728','42710');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7541','42732','42731');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7542','42733','42731');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7543','42734','42731');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7544','42735','42731');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7545','42736','42731');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7546','42737','42731');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7547','42738','42731');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7548','42739','42731');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7549','42740','42731');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7550','42741','42731');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7551','42742','42731');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7552','42744','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7553','42745','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7554','42746','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7555','42747','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7556','42748','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7557','42749','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7558','42750','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7559','42751','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7560','42752','31334');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7561','42761','42757');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7562','42762','42758');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7563','42763','42758');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7564','42764','42758');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7565','42765','42759');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7566','42766','42756');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7567','42767','42757');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7568','42768','42757');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7569','42769','42757');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7570','42770','42757');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7571','42771','42757');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7572','42772','42757');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7573','42773','42757');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7574','42774','42757');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7575','42775','42757');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7576','42776','42758');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7577','42777','42758');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7578','42778','42758');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7579','42779','42758');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7580','42780','42758');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7581','42781','42758');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7582','42782','42758');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7583','42783','42758');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7584','42784','42758');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7585','42785','42758');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7586','42786','42758');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7587','42787','42758');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7588','42788','42758');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7589','42789','42758');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7590','42790','42758');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7591','42791','42758');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7592','42792','42758');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7593','42793','42758');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7594','42794','42759');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7595','42795','42759');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7596','42796','42759');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7597','42797','42759');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7598','42798','42759');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7599','42799','42759');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7600','42800','42759');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7601','42801','42759');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7602','42802','42759');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7603','42803','42760');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7604','42804','42760');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7605','42805','42760');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7606','42806','42760');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7607','42856','42849');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7608','42857','42849');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7609','42858','42849');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7610','42859','42849');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7611','42860','42849');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7612','42861','42849');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7613','42862','42850');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7614','42863','42850');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7615','42864','42850');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7616','42865','42850');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7617','42866','42850');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7618','42867','42850');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7619','42868','42850');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7620','42869','42850');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7621','42870','42850');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7622','42871','42851');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7623','42872','42852');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7624','42873','42852');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7625','42874','42852');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7626','42875','42852');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7627','42876','42853');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7628','42877','42853');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7629','42878','42853');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7630','42879','42853');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7631','42880','42853');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7632','42881','42853');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7633','42882','42853');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7634','42883','42853');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7635','42884','42853');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7636','42885','42854');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7637','42886','42854');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7638','42887','42854');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7639','42888','42855');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7640','42889','42855');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7641','42890','42855');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7642','42891','42849');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7643','42892','33658');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7644','42893','33658');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7645','42894','33658');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7646','42895','33658');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7647','42896','33658');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7648','42897','33658');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7649','42898','33658');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7650','42899','33658');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7651','42900','33658');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7652','42901','33658');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7653','42902','33658');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7654','42903','33658');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7655','42904','33658');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7656','42905','33658');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7657','42906','33658');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7658','42907','33658');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7659','42908','33658');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7660','42909','33658');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7661','42910','33658');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7662','42911','33658');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7663','42912','33670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7664','42913','33670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7665','42914','33670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7666','42915','33670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7667','42916','33670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7668','42917','33670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7669','42918','33670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7670','42919','33670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7671','42920','33670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7672','42921','33670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7673','42922','33670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7674','42923','33670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7675','42924','33670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7676','42925','33670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7677','42926','33670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7678','42927','33670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7679','42928','33670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7680','42929','33670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7681','42930','33670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7682','42931','33670');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7683','42988','42984');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7684','42989','42984');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7685','42990','42984');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7686','42991','42985');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7687','42992','42985');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7688','42993','42985');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7689','42994','42986');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7690','42995','42986');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7691','42996','42986');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7692','42997','42986');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7693','42998','42986');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7694','42999','42986');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7695','43000','42986');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7696','43001','42986');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7697','43002','42986');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7698','43003','42987');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7699','43004','42987');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7700','43005','42987');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7701','43006','42987');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7702','43019','43018');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7703','43020','43017');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7704','43021','43018');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7705','43022','43018');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7706','43023','43018');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7707','43056','43053');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7708','43057','43053');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7709','43058','43053');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7710','43059','43053');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7711','43060','43053');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7712','43061','43053');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7713','43062','43053');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7714','43063','43053');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7715','43064','43053');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7716','43065','43053');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7717','43066','43053');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7718','43067','43053');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7719','43068','43053');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7720','43069','43053');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7721','43070','43053');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7722','43071','43053');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7723','43072','43053');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7724','43073','43054');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7725','43074','43054');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7726','43075','43054');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7727','43076','43054');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7728','43077','43054');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7729','43078','43054');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7730','43079','43054');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7731','43080','43055');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7732','43081','43055');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7733','43082','43055');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7734','43140','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7735','43141','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7736','43142','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7737','43143','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7738','43144','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7739','43145','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7740','43146','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7741','43147','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7742','43148','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7743','43149','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7744','43150','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7745','43151','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7746','43152','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7747','43153','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7748','43154','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7749','43155','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7750','43156','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7751','43157','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7752','43158','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7753','43159','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7754','43160','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7755','43161','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7756','43162','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7757','43163','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7758','43164','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7759','43165','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7760','43166','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7761','43167','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7762','43168','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7763','43169','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7764','43170','43139');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7765','43191','43183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7766','43192','43187');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7767','43193','43181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7768','43194','43181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7769','43195','43181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7770','43196','43181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7771','43197','43181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7772','43198','43181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7773','43199','43181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7774','43200','43181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7775','43201','43181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7776','43202','43181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7777','43203','43181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7778','43204','43181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7779','43205','43181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7780','43206','43181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7781','43207','43181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7782','43208','43181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7783','43209','43181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7784','43210','43181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7785','43211','43181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7786','43212','43181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7787','43213','43181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7788','43214','43181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7789','43215','43181');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7790','43216','43182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7791','43217','43182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7792','43218','43182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7793','43219','43182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7794','43220','43182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7795','43221','43182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7796','43222','43182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7797','43223','43182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7798','43224','43182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7799','43225','43182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7800','43226','43182');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7801','43227','43183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7802','43228','43183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7803','43229','43183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7804','43230','43183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7805','43231','43183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7806','43232','43183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7807','43233','43183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7808','43234','43183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7809','43235','43183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7810','43236','43183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7811','43237','43183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7812','43238','43183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7813','43239','43183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7814','43240','43183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7815','43241','43183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7816','43242','43183');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7817','43243','43184');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7818','43244','43184');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7819','43245','43184');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7820','43246','43184');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7821','43247','43184');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7822','43248','43184');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7823','43249','43185');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7824','43250','43185');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7825','43251','43185');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7826','43252','43186');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7827','43253','43186');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7828','43254','43186');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7829','43255','43187');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7830','43256','43187');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7831','43257','43187');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7832','43258','43188');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7833','43259','43188');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7834','43260','43188');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7835','43261','43189');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7836','43262','43189');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7837','43263','43189');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7838','43264','43189');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7839','43265','43189');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7840','43266','43190');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7841','43267','43190');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7842','43268','43190');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7843','43269','43190');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7844','43270','43190');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7845','43271','43190');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7846','43272','43190');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7847','43273','43190');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7848','43274','43190');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7849','43275','43190');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7850','43276','43190');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7851','43277','43190');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7852','43298','43289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7853','43299','43290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7854','43300','43290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7855','43301','43290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7856','43302','43294');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7857','43303','43294');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7858','43304','43294');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7859','43305','43297');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7860','43306','43297');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7861','43307','43288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7862','43308','43288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7863','43309','43288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7864','43310','43288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7865','43311','43288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7866','43312','43288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7867','43313','43288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7868','43314','43288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7869','43315','43288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7870','43316','43288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7871','43317','43288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7872','43318','43288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7873','43319','43288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7874','43320','43288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7875','43321','43288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7876','43322','43288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7877','43323','43288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7878','43324','43288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7879','43325','43288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7880','43326','43288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7881','43327','43288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7882','43328','43288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7883','43329','43288');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7884','43330','43289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7885','43331','43289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7886','43332','43289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7887','43333','43289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7888','43334','43289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7889','43335','43289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7890','43336','43289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7891','43337','43289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7892','43338','43289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7893','43339','43289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7894','43340','43289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7895','43341','43289');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7896','43342','43290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7897','43343','43290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7898','43344','43290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7899','43345','43290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7900','43346','43290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7901','43347','43290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7902','43348','43290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7903','43349','43290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7904','43350','43290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7905','43351','43290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7906','43352','43290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7907','43353','43290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7908','43354','43290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7909','43355','43290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7910','43356','43290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7911','43357','43290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7912','43358','43290');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7913','43359','43291');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7914','43360','43291');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7915','43361','43291');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7916','43362','43291');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7917','43363','43291');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7918','43364','43291');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7919','43365','43292');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7920','43366','43292');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7921','43367','43292');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7922','43368','43293');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7923','43369','43293');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7924','43370','43293');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7925','43371','43294');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7926','43372','43294');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7927','43373','43294');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7928','43374','43294');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7929','43375','43295');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7930','43376','43295');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7931','43377','43295');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7932','43378','43296');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7933','43379','43296');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7934','43380','43296');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7935','43381','43296');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7936','43382','43297');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7937','43383','43297');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7938','43384','43297');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7939','43385','43297');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7940','43386','43297');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7941','43387','43297');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7942','43388','43297');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7943','43389','43297');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7944','43390','43297');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7945','43391','43297');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7946','43392','43297');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7947','43393','43297');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7948','43394','43297');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7949','43418','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7950','43419','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7951','43420','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7952','43421','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7953','43422','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7954','43423','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7955','43424','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7956','43425','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7957','43426','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7958','43427','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7959','43428','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7960','43429','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7961','43430','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7962','43431','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7963','43432','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7964','43433','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7965','43434','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7966','43435','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7967','43436','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7968','43437','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7969','43438','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7970','43439','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7971','43440','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7972','43441','43412');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7973','43442','43413');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7974','43443','43413');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7975','43444','43413');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7976','43445','43413');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7977','43446','43413');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7978','43447','43413');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7979','43448','43413');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7980','43449','43413');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7981','43450','43413');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7982','43451','43413');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7983','43452','43413');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7984','43453','43413');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7985','43454','43414');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7986','43455','43414');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7987','43456','43414');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7988','43457','43414');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7989','43458','43414');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7990','43459','43414');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7991','43460','43415');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7992','43461','43415');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7993','43462','43415');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7994','43463','43415');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7995','43464','43416');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7996','43465','43416');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7997','43466','43416');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7998','43467','43416');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('7999','43468','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8000','43469','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8001','43470','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8002','43471','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8003','43472','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8004','43473','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8005','43474','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8006','43475','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8007','43476','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8008','43477','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8009','43478','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8010','43479','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8011','43480','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8012','43481','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8013','43482','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8014','43483','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8015','43484','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8016','43485','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8017','43486','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8018','43487','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8019','43488','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8020','43489','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8021','43490','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8022','43491','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8023','43492','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8024','43493','43417');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8025','43519','43498');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8026','43520','43498');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8027','43521','43498');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8028','43522','43498');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8029','43523','43498');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8030','43524','43498');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8031','43525','43498');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8032','43526','43498');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8033','43527','43499');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8034','43528','43499');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8035','43529','43499');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8036','43530','43499');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8037','43531','43499');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8038','43532','43500');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8039','43533','43500');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8040','43534','43501');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8041','43535','43501');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8042','43536','43501');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8043','43537','43501');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8044','43538','43502');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8045','43539','43502');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8046','43540','43502');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8047','43541','43502');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8048','43542','43502');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8049','43543','43502');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8050','43544','43502');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8051','43545','43502');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8052','43546','43502');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8053','43547','43502');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8054','43548','43502');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8055','43549','43502');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8056','43550','43502');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8057','43551','43502');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8058','43552','43502');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8059','43553','43502');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8060','43554','43502');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8061','43555','43502');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8062','43556','43502');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8063','43557','43502');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8064','43558','43502');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8065','43559','43503');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8066','43560','43503');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8067','43561','43504');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8068','43562','43504');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8069','43563','43505');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8070','43564','43505');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8071','43565','43505');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8072','43566','43505');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8073','43567','43505');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8074','43568','43505');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8075','43569','43505');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8076','43570','43505');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8077','43571','43506');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8078','43572','43506');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8079','43573','43507');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8080','43574','43507');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8081','43575','43507');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8082','43576','43507');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8083','43577','43507');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8084','43578','43507');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8085','43579','43507');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8086','43580','43507');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8087','43581','43507');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8088','43582','43507');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8089','43583','43507');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8090','43584','43508');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8091','43585','43508');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8092','43586','43508');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8093','43587','43509');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8094','43588','43509');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8095','43589','43509');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8096','43590','43509');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8097','43591','43509');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8098','43592','43509');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8099','43593','43509');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8100','43594','43509');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8101','43595','43510');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8102','43596','43510');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8103','43597','43511');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8104','43598','43511');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8105','43599','43511');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8106','43600','43511');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8107','43601','43511');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8108','43602','43512');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8109','43603','43512');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8110','43604','43512');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8111','43605','43512');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8112','43606','43512');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8113','43607','43512');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8114','43608','43512');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8115','43609','43513');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8116','43610','43513');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8117','43611','43514');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8118','43612','43514');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8119','43613','43514');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8120','43614','43514');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8121','43615','43514');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8122','43616','43514');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8123','43617','43514');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8124','43618','43514');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8125','43619','43514');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8126','43620','43514');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8127','43621','43514');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8128','43622','43514');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8129','43623','43514');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8130','43624','43514');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8131','43625','43514');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8132','43626','43515');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8133','43627','43515');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8134','43628','43515');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8135','43629','43515');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8136','43630','43515');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8137','43631','43515');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8138','43632','43516');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8139','43633','43516');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8140','43634','43516');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8141','43635','43516');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8142','43636','43516');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8143','43637','43517');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8144','43638','43517');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8145','43639','43517');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8146','43640','43517');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8147','43641','43518');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8148','43642','43518');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8149','43662','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8150','43663','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8151','43664','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8152','43665','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8153','43666','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8154','43667','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8155','43668','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8156','43669','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8157','43670','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8158','43671','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8159','43672','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8160','43673','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8161','43674','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8162','43675','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8163','43676','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8164','43677','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8165','43678','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8166','43679','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8167','43680','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8168','43681','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8169','43682','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8170','43683','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8171','43684','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8172','43685','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8173','43686','43661');
INSERT INTO `item_discovery` (`itemdiscoveryid`,`itemid`,`parent_itemid`) values ('8174','43687','43661');
INSERT INTO `host_discovery` (`hostid`,`parent_hostid`,`parent_itemid`) values ('10333',NULL,'31657');
INSERT INTO `host_discovery` (`hostid`,`parent_hostid`,`parent_itemid`) values ('10334',NULL,'31658');
INSERT INTO `host_discovery` (`hostid`,`parent_hostid`,`parent_itemid`) values ('10367',NULL,'32956');
INSERT INTO `host_discovery` (`hostid`,`parent_hostid`,`parent_itemid`) values ('10368',NULL,'32957');
INSERT INTO `host_discovery` (`hostid`,`parent_hostid`,`parent_itemid`) values ('10388',NULL,'33920');
INSERT INTO `host_discovery` (`hostid`,`parent_hostid`,`parent_itemid`) values ('10389',NULL,'33923');
INSERT INTO `host_discovery` (`hostid`,`parent_hostid`,`parent_itemid`) values ('10508',NULL,'39941');
INSERT INTO `host_discovery` (`hostid`,`parent_hostid`,`parent_itemid`) values ('10511',NULL,'40021');
INSERT INTO `host_discovery` (`hostid`,`parent_hostid`,`parent_itemid`) values ('10512',NULL,'40023');
INSERT INTO `host_discovery` (`hostid`,`parent_hostid`,`parent_itemid`) values ('10513',NULL,'40033');
INSERT INTO `host_discovery` (`hostid`,`parent_hostid`,`parent_itemid`) values ('10514',NULL,'40035');
INSERT INTO `host_discovery` (`hostid`,`parent_hostid`,`parent_itemid`) values ('10521',NULL,'43017');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('4','22867','8','{#FSTYPE}','@File systems for discovery');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('5','22907','8','{#FSTYPE}','@File systems for discovery');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('6','22944','8','{#IFNAME}','@Network interfaces for discovery');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('7','22947','8','{#FSTYPE}','@File systems for discovery');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('8','22984','8','{#IFNAME}','@Network interfaces for discovery');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('9','22987','8','{#FSTYPE}','@File systems for discovery');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('10','23024','8','{#IFNAME}','@Network interfaces for discovery');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('11','23027','8','{#FSTYPE}','@File systems for discovery');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('12','23067','8','{#FSTYPE}','@File systems for discovery');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('15','23329','8','{#IFNAME}','@Network interfaces for discovery');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('16','23540','8','{#IFNAME}','@Network interfaces for discovery');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('217','27031','8','{#IFOPERSTATUS}','1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('218','27031','8','{#SNMPVALUE}','(2|3)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('229','27078','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('230','27078','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('233','27098','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('234','27098','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('237','27118','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('238','27118','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('247','27209','8','{#TEMP_SENSOR}','1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('248','27210','8','{#SNMPVALUE}','[^1]');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('249','27211','8','{#ENT_SN}','.+');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('253','27242','8','{#SENSOR_TYPE}','1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('254','27243','8','{#SENSOR_TYPE}','3');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('255','27244','8','{#SENSOR_TYPE}','2');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('266','27393','8','{#ENT_SN}','.+');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('267','27393','8','{#ENT_CLASS}','^3$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('284','27550','8','{#STATUS}','[^0]');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('285','27551','8','{#STATUS}','[^0]');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('302','27665','8','{#SNMPVALUE}','^(MODULE|Module) (LEVEL|level)1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('303','27665','8','{#SNMPVALUE}','(Fabric|FABRIC) (.+) (Module|MODULE)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('304','27666','8','{#SNMPVALUE}','^(MODULE|Module) (LEVEL|level)1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('305','27666','8','{#SNMPVALUE}','(Fabric|FABRIC) (.+) (Module|MODULE)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('306','27666','8','{#SNMPVALUE}','(T|t)emperature.*(s|S)ensor');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('307','27667','8','{#ENT_CLASS}','7');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('308','27668','8','{#ENT_CLASS}','6');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('309','27669','8','{#ENT_CLASS}','3');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('327','27745','8','{#ENT_NAME}','MPU.*');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('328','27746','8','{#ENT_CLASS}','3');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('331','27779','8','{#SENSOR_TYPE}','2');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('332','27780','8','{#ENT_CLASS}','2');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('337','27815','8','{#SNMPVALUE}','Routing Engine.*');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('338','27816','8','{#SNMPVALUE}','[^0]+');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('352','27903','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('353','27903','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('382','28144','8','{#SENSOR_TYPE}','8');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('383','28144','8','{#SENSOR_PRECISION}','0');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('384','28146','8','{#ENT_CLASS}','.+8.3.2$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('385','28146','8','{#ENT_STATUS}','(1|2|3|4)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('386','28147','8','{#ENT_CLASS}','.+8.3.1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('387','28147','8','{#ENT_STATUS}','(1|2|3|4)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('388','28148','8','{#ENT_CLASS}','.+8.3.3$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('389','28148','8','{#ENT_STATUS}','(1|2|3|4)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('390','28149','8','{#ENT_CLASS}','3');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('397','28196','8','{#SENSOR_TYPE}','8');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('398','28196','8','{#SENSOR_PRECISION}','1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('399','28197','8','{#SNMPVALUE}','10');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('400','28198','8','{#ENT_CLASS}','3');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('401','28199','8','{#ENT_CLASS}','6');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('407','27098','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('431','27078','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('434','27118','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('448','28306','8','{#SENSOR_TYPE}','8');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('449','28306','8','{#SENSOR_PRECISION}','1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('450','28307','8','{#SENSOR_TYPE}','10');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('451','28308','8','{#ENT_CLASS}','3');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('452','28309','8','{#ENT_CLASS}','6');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('453','28346','8','{#SENSOR_LOCALE}','.*CPU.*');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('454','28347','8','{#SENSOR_LOCALE}','.*Inlet Temp.*');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('455','28349','8','{#TYPE}','3');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('456','28392','8','{#SENSOR_LOCALE}','(4|8|9|12|13)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('457','28393','8','{#SNMPINDEX}','0\\.1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('458','28393','8','{#SENSOR_LOCALE}','11');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('459','28394','8','{#SENSOR_LOCALE}','6');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('460','28395','8','{#SENSOR_LOCALE}','7');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('461','28396','8','{#SENSOR_LOCALE}','10');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('462','28397','8','{#SENSOR_LOCALE}','5');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('466','28468','8','{#SNMPVALUE}','(DIMM|PSU|PCH|RAID|RR|PCI).*');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('467','28469','8','{#SNMPVALUE}','Ambient.*');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('468','28470','8','{#SNMPVALUE}','CPU [0-9]* Temp');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('469','28493','8','{#SNMPVALUE}','[1-9]+');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('470','28493','8','{#SENSOR_DESCR}','.*Temp.*');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('471','28494','8','{#SNMPVALUE}','[1-9]+');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('472','28494','8','{#SENSOR_DESCR}','FAN.*');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('481','29008','8','{#DEVNAME}','{$VFS.DEV.DEVNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('482','29008','9','{#DEVNAME}','{$VFS.DEV.DEVNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('483','29010','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('484','29010','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('485','29010','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('486','29010','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('500','29201','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('501','29201','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('502','29201','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('503','29201','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('506','29203','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('507','29203','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('540','29429','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('541','29429','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('542','29429','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('543','29429','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('544','29429','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('545','29429','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('546','29430','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('547','29430','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('548','29430','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('549','29430','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('550','29430','8','{#FSNAME}','{$VFS.FS.FSDEVICE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('551','29430','9','{#FSDEVICE}','{$VFS.FS.FSDEVICE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('552','29431','8','{#DEVNAME}','{$VFS.DEV.DEVNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('553','29431','9','{#DEVNAME}','{$VFS.DEV.DEVNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('554','29506','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('555','29506','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('556','29506','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('557','29506','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('558','29506','8','{#FSDRIVETYPE}','{$VFS.FS.FSDRIVETYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('559','29506','9','{#FSDRIVETYPE}','{$VFS.FS.FSDRIVETYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('628','29703','8','{#QUEUE}','{$RABBITMQ.LLD.FILTER.QUEUE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('629','29703','9','{#QUEUE}','{$RABBITMQ.LLD.FILTER.QUEUE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('630','29703','8','{#NODE}','{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('631','29785','8','{#EXCHANGE}','{$RABBITMQ.LLD.FILTER.EXCHANGE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('632','29785','9','{#EXCHANGE}','{$RABBITMQ.LLD.FILTER.EXCHANGE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('633','29786','8','{#QUEUE}','{$RABBITMQ.LLD.FILTER.QUEUE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('634','29786','9','{#QUEUE}','{$RABBITMQ.LLD.FILTER.QUEUE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('635','29786','8','{#NODE}','{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('645','27098','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('646','27098','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('647','27098','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('648','27098','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('649','27098','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('650','27098','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('651','27098','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('652','27098','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('653','27098','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('864','27078','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('865','27078','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('866','27078','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('867','27078','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('868','27078','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('869','27078','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('870','27078','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('885','27118','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('886','27118','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('887','27118','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('888','27118','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('889','27118','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('890','27118','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('891','27118','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('892','27118','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('893','27118','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('903','30026','8','{#EXCHANGE}','{$RABBITMQ.LLD.FILTER.EXCHANGE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('904','30026','9','{#EXCHANGE}','{$RABBITMQ.LLD.FILTER.EXCHANGE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('905','30147','8','{#MEMTYPE}','{$MEMORY.TYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('906','30147','9','{#MEMTYPE}','{$MEMORY.TYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('907','30147','8','{#MEMNAME}','{$MEMORY.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('908','30147','9','{#MEMNAME}','{$MEMORY.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('909','30148','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('910','30148','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('911','30148','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('912','30148','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('945','30193','8','{#SVNAME}','BACKEND');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('946','30194','8','{#SVNAME}','FRONTEND');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('947','30195','9','{#SVNAME}','FRONTEND|BACKEND');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('948','30236','8','{#SVNAME}','BACKEND');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('949','30237','8','{#SVNAME}','FRONTEND');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('950','30238','9','{#SVNAME}','FRONTEND|BACKEND');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('951','30338','8','{#DB}','{$REDIS.LLD.FILTER.DB.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('952','30338','9','{#DB}','{$REDIS.LLD.FILTER.DB.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('969','30423','8','{#SERVICE.NAME}','{$SERVICE.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('970','30423','9','{#SERVICE.NAME}','{$SERVICE.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('971','30423','8','{#SERVICE.STARTUPNAME}','{$SERVICE.STARTUPNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('972','30423','9','{#SERVICE.STARTUPNAME}','{$SERVICE.STARTUPNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('985','30472','9','{#DBNAME}','information_schema');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('986','30520','9','{#DATABASE}','information_schema');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('987','30571','8','{#NAME}','{$DOCKER.LLD.FILTER.CONTAINER.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('988','30571','9','{#NAME}','{$DOCKER.LLD.FILTER.CONTAINER.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('989','30572','8','{#NAME}','{$DOCKER.LLD.FILTER.IMAGE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('990','30572','9','{#NAME}','{$DOCKER.LLD.FILTER.IMAGE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('991','30678','9','{#DATABASE}','information_schema');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('992','30686','9','{#SENSOR_READING_TYPE}','threshold');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('993','30686','8','{#SENSOR_TYPE}','{$IPMI.SENSOR_TYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('994','30686','9','{#SENSOR_TYPE}','{$IPMI.SENSOR_TYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('995','30687','8','{#SENSOR_READING_TYPE}','threshold');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('996','30687','8','{#SENSOR_TYPE}','{$IPMI.SENSOR_TYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('997','30687','9','{#SENSOR_TYPE}','{$IPMI.SENSOR_TYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1004','30193','8','{#MODE}','http|tcp');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1005','30194','8','{#MODE}','http|tcp');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1006','30195','8','{#MODE}','http|tcp');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1013','30236','8','{#MODE}','http|tcp');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1014','30237','8','{#MODE}','http|tcp');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1015','30238','8','{#MODE}','http|tcp');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1016','30874','8','{#NAME}','{$CLICKHOUSE.LLD.FILTER.DICT.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1017','30874','9','{#NAME}','{$CLICKHOUSE.LLD.FILTER.DICT.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1018','30875','8','{#DB}','{$CLICKHOUSE.LLD.FILTER.DB.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1019','30875','9','{#DB}','{$CLICKHOUSE.LLD.FILTER.DB.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1020','30876','8','{#DB}','{$CLICKHOUSE.LLD.FILTER.DB.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1021','30876','9','{#DB}','{$CLICKHOUSE.LLD.FILTER.DB.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1022','30961','9','{#GRPC.CODE}','{$ETCD.GRPC_CODE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1023','30961','8','{#GRPC.CODE}','{$ETCD.GRPC_CODE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1024','31005','9','{#APPPOOL}','{$IIS.APPPOOL.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1025','31005','8','{#APPPOOL}','{$IIS.APPPOOL.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1026','31047','9','{#APPPOOL}','{$IIS.APPPOOL.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1027','31047','8','{#APPPOOL}','{$IIS.APPPOOL.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1028','31123','8','{#DBNAME}','{$MSSQL.DBNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1029','31123','9','{#DBNAME}','{$MSSQL.DBNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1030','31255','8','{#DBNAME}','{$ORACLE.DBNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1031','31255','9','{#DBNAME}','{$ORACLE.DBNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1032','31256','8','{#DBNAME}','{$ORACLE.DBNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1033','31256','9','{#DBNAME}','{$ORACLE.DBNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1034','31257','8','{#TABLESPACE}','{$ORACLE.TABLESPACE.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1035','31257','9','{#TABLESPACE}','{$ORACLE.TABLESPACE.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1036','31334','8','{#DBNAME}','{$PG.LLD.FILTER.DBNAME}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1037','31367','8','{#DEVTYPE}','disk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1038','31367','8','{#DEVNAME}','{$VFS.DEV.DEVNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1039','31367','9','{#DEVNAME}','{$VFS.DEV.DEVNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1052','31429','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1053','31429','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1054','31429','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1055','31429','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1056','31429','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1057','31429','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1058','31430','8','{#DEVNAME}','{$VFS.DEV.DEVNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1059','31430','9','{#DEVNAME}','{$VFS.DEV.DEVNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1084','31558','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1085','31558','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1086','31559','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1087','31762','8','{#DBNAME}','{$ORACLE.DBNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1088','31762','9','{#DBNAME}','{$ORACLE.DBNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1089','31764','8','{#DBNAME}','{$ORACLE.DBNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1090','31764','9','{#DBNAME}','{$ORACLE.DBNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1091','31765','8','{#TABLESPACE}','{$ORACLE.TABLESPACE.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1092','31765','9','{#TABLESPACE}','{$ORACLE.TABLESPACE.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1093','31896','8','{#DEVTYPE}','disk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1094','31896','8','{#DEVNAME}','{$VFS.DEV.DEVNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1095','31896','9','{#DEVNAME}','{$VFS.DEV.DEVNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1096','31897','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1097','31897','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1098','31897','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1099','31897','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1100','31898','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1101','31898','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1111','32004','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1112','32004','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1113','32004','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1114','32004','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1115','32004','8','{#FSDRIVETYPE}','{$VFS.FS.FSDRIVETYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1116','32004','9','{#FSDRIVETYPE}','{$VFS.FS.FSDRIVETYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1117','32005','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1118','32005','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1119','32005','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1120','32005','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1121','32005','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1122','32005','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1123','32006','8','{#DEVNAME}','{$VFS.DEV.DEVNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1124','32006','9','{#DEVNAME}','{$VFS.DEV.DEVNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1125','32007','8','{#SERVICE.NAME}','{$SERVICE.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1126','32007','9','{#SERVICE.NAME}','{$SERVICE.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1127','32007','8','{#SERVICE.STARTUPNAME}','{$SERVICE.STARTUPNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1128','32007','9','{#SERVICE.STARTUPNAME}','{$SERVICE.STARTUPNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1148','32404','8','{#DBNAME}','{$PG.LLD.FILTER.DBNAME}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1149','32435','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1150','32435','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1151','31559','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1152','32440','8','{#JMXBROKERNAME}','{$ACTIVEMQ.LLD.FILTER.BROKER.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1153','32440','9','{#JMXBROKERNAME}','{$ACTIVEMQ.LLD.FILTER.BROKER.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1154','32441','8','{#JMXDESTINATIONNAME}','{$ACTIVEMQ.LLD.FILTER.DESTINATION.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1155','32441','9','{#JMXDESTINATIONNAME}','{$ACTIVEMQ.LLD.FILTER.DESTINATION.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1156','32465','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1157','32465','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1158','32465','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1159','32465','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1160','32465','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1161','32465','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1162','32465','8','{#METRIC}','Battery voltage');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1163','32466','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1164','32466','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1165','32466','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1166','32466','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1167','32466','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1168','32466','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1169','32466','8','{#METRIC}','CO₂');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1170','32467','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1171','32467','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1172','32467','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1173','32467','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1174','32467','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1175','32467','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1176','32467','8','{#METRIC}','Current');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1177','32468','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1178','32468','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1179','32468','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1180','32468','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1181','32468','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1182','32468','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1183','32468','8','{#METRIC}','Differential Pressure');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1184','32469','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1185','32469','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1186','32469','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1187','32469','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1188','32469','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1189','32469','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1190','32469','8','{#METRIC}','Distance');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1191','32470','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1192','32470','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1193','32470','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1194','32470','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1195','32470','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1196','32470','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1197','32470','8','{#METRIC}','Humidity');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1198','32471','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1199','32471','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1200','32471','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1201','32471','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1202','32471','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1203','32471','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1204','32471','8','{#METRIC}','Illuminance');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1205','32472','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1206','32472','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1207','32472','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1208','32472','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1209','32472','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1210','32472','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1211','32472','8','{#METRIC}','Last update');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1212','32473','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1213','32473','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1214','32473','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1215','32473','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1216','32473','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1217','32473','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1218','32473','8','{#METRIC}','pH');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1219','32474','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1220','32474','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1221','32474','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1222','32474','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1223','32474','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1224','32474','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1225','32474','8','{#METRIC}','Pore Electrical Conductivity');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1226','32475','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1227','32475','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1228','32475','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1229','32475','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1230','32475','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1231','32475','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1232','32475','8','{#METRIC}','PPFD');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1233','32476','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1234','32476','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1235','32476','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1236','32476','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1237','32476','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1238','32476','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1239','32476','8','{#METRIC}','Atmospheric Pressure');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1240','32477','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1241','32477','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1242','32477','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1243','32477','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1244','32477','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1245','32477','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1246','32477','8','{#METRIC}','Pulses');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1247','32478','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1248','32478','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1249','32478','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1250','32478','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1251','32478','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1252','32478','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1253','32478','8','{#METRIC}','Pulses Cumulative');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1254','32479','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1255','32479','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1256','32479','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1257','32479','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1258','32479','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1259','32479','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1260','32479','8','{#METRIC}','RSSI');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1261','32480','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1262','32480','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1263','32480','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1264','32480','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1265','32480','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1266','32480','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1267','32480','8','{#METRIC}','Soil Dielectric Permittivity');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1268','32481','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1269','32481','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1270','32481','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1271','32481','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1272','32481','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1273','32481','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1274','32481','8','{#METRIC}','Soil Electrical Conductivity');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1275','32482','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1276','32482','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1277','32482','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1278','32482','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1279','32482','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1280','32482','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1281','32482','8','{#METRIC}','Temperature');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1282','32483','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1283','32483','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1284','32483','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1285','32483','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1286','32483','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1287','32483','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1288','32483','8','{#METRIC}','Voltage');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1289','32484','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1290','32484','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1291','32484','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1292','32484','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1293','32484','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1294','32484','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1295','32484','8','{#METRIC}','Volumetric Water Content');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1296','32485','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1297','32485','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1298','32485','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1299','32485','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1300','32485','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1301','32485','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1302','32485','8','{#METRIC}','Weight');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1303','32755','8','{#JMXTOPIC}','{$KAFKA.TOPIC.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1304','32755','9','{#JMXTOPIC}','{$KAFKA.TOPIC.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1305','32756','8','{#JMXTOPIC}','{$KAFKA.TOPIC.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1306','32756','9','{#JMXTOPIC}','{$KAFKA.TOPIC.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1307','32757','8','{#JMXTOPIC}','{$KAFKA.TOPIC.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1308','32757','9','{#JMXTOPIC}','{$KAFKA.TOPIC.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1309','32762','8','{#JMXATTR}','^name$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1310','32763','8','{#JMXNAME}','{$TOMCAT.LLD.FILTER.MATCHES:"GlobalRequestProcessor"}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1311','32763','9','{#JMXNAME}','{$TOMCAT.LLD.FILTER.NOT_MATCHES:"GlobalRequestProcessor"}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1312','32764','8','{#JMXHOST}','{$TOMCAT.LLD.FILTER.MATCHES:"Manager"}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1313','32764','9','{#JMXHOST}','{$TOMCAT.LLD.FILTER.NOT_MATCHES:"Manager"}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1314','32765','8','{#JMXNAME}','{$TOMCAT.LLD.FILTER.MATCHES:"ThreadPool"}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1315','32765','9','{#JMXNAME}','{$TOMCAT.LLD.FILTER.NOT_MATCHES:"ThreadPool"}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1316','32868','8','{#STORAGE}','{$VAULT.LLD.FILTER.STORAGE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1317','32957','9','{#VM.DNS}','^$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1318','33095','8','{#JMXKEYSPACE}','{$CASSANDRA.KEY_SPACE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1319','33095','9','{#JMXKEYSPACE}','{$CASSANDRA.KEY_SPACE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1320','33177','8','{#APPLICATION_NAME}','{$PG.LLD.FILTER.APPLICATION}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1321','33182','8','{#SENSOR_TYPE}','3|4');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1322','33354','8','{#FSTYPE}','{$FAS3220.FS.TYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1323','33354','9','{#FSTYPE}','{$FAS3220.FS.TYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1324','33354','8','{#FSNAME}','{$FAS3220.FS.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1325','33354','9','{#FSNAME}','{$FAS3220.FS.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1326','33356','8','{#TYPE}','{$FAS3220.NET.PORT.TYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1327','33356','9','{#TYPE}','{$FAS3220.NET.PORT.TYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1328','33356','8','{#ROLE}','{$FAS3220.NET.PORT.ROLE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1329','33356','9','{#TYPE}','{$FAS3220.NET.PORT.ROLE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1330','33356','8','{#IFNAME}','{$FAS3220.NET.PORT.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1331','33356','9','{#IFNAME}','{$FAS3220.NET.PORT.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1332','33521','8','{#CHANNEL_ENABLED}','true');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1333','33542','8','{#JMXNAME}','{$IGNITE.LLD.FILTER.DATA.REGION.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1334','33542','9','{#JMXNAME}','{$IGNITE.LLD.FILTER.DATA.REGION.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1335','33549','8','{#JMXNAME}','{$IGNITE.LLD.FILTER.CACHE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1336','33549','9','{#JMXNAME}','{$IGNITE.LLD.FILTER.CACHE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1337','33550','8','{#JMXNAME}','{$IGNITE.LLD.FILTER.THREAD.POOL.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1338','33550','9','{#JMXNAME}','{$IGNITE.LLD.FILTER.THREAD.POOL.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1339','33551','8','{#JMXGROUP}','{$IGNITE.LLD.FILTER.CACHE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1340','33551','9','{#JMXGROUP}','{$IGNITE.LLD.FILTER.CACHE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1341','33620','8','{#SENSOR_LOCALE}','3');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1342','33634','8','{#SHAREPOINT.LLD.NAME}','{$SHAREPOINT.LLD.FILTER.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1343','33634','9','{#SHAREPOINT.LLD.NAME}','{$SHAREPOINT.LLD.FILTER.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1344','33634','8','{#SHAREPOINT.LLD.FULL_PATH}','{$SHAREPOINT.LLD.FILTER.FULL_PATH.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1345','33634','9','{#SHAREPOINT.LLD.FULL_PATH}','{$SHAREPOINT.LLD.FILTER.FULL_PATH.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1346','33634','8','{#SHAREPOINT.LLD.TYPE}','{$SHAREPOINT.LLD.FILTER.TYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1347','33634','9','{#SHAREPOINT.LLD.TYPE}','{$SHAREPOINT.LLD.FILTER.TYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1348','33808','8','{#DBNAME}','{$MONGODB.LLD.FILTER.DB.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1349','33808','9','{#DBNAME}','{$MONGODB.LLD.FILTER.DB.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1350','33808','8','{#COLLECTION}','{$MONGODB.LLD.FILTER.COLLECTION.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1351','33808','9','{#COLLECTION}','{$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1352','33809','8','{#DBNAME}','{$MONGODB.LLD.FILTER.DB.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1353','33809','9','{#DBNAME}','{$MONGODB.LLD.FILTER.DB.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1354','33921','8','{#DBNAME}','{$MONGODB.LLD.FILTER.DB.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1355','33921','9','{#DBNAME}','{$MONGODB.LLD.FILTER.DB.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1356','33921','8','{#COLLECTION}','{$MONGODB.LLD.FILTER.COLLECTION.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1357','33921','9','{#COLLECTION}','{$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1358','33922','8','{#DBNAME}','{$MONGODB.LLD.FILTER.DB.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1359','33922','9','{#DBNAME}','{$MONGODB.LLD.FILTER.DB.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1360','33959','8','{#ENT_SN}','.+');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1361','33959','8','{#ENT_CLASS}','[^3]');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1362','33962','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1363','33962','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1364','33962','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1365','33962','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1366','33962','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1367','33962','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1368','33962','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1369','33962','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1370','33962','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1371','33962','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1372','33962','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1373','33962','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1374','33963','8','{#IFOPERSTATUS}','1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1375','33963','8','{#SNMPVALUE}','(2|3)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1376','34000','8','{#ENT_SN}','.+');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1377','34000','8','{#ENT_CLASS}','[^3]');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1378','34003','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1379','34003','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1380','34003','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1381','34003','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1382','34003','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1383','34003','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1384','34003','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1385','34003','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1386','34003','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1387','34003','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1388','34003','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1389','34003','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1390','34004','8','{#IFOPERSTATUS}','1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1391','34004','8','{#SNMPVALUE}','(2|3)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1392','34041','8','{#ENT_SN}','.+');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1393','34041','8','{#ENT_CLASS}','[^3]');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1394','34044','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1395','34044','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1396','34044','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1397','34044','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1398','34044','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1399','34044','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1400','34044','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1401','34044','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1402','34044','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1403','34044','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1404','34044','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1405','34044','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1406','34045','8','{#IFOPERSTATUS}','1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1407','34045','8','{#SNMPVALUE}','(2|3)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1408','34082','8','{#ENT_SN}','.+');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1409','34082','8','{#ENT_CLASS}','[^3]');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1410','34085','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1411','34085','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1412','34085','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1413','34085','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1414','34085','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1415','34085','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1416','34085','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1417','34085','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1418','34085','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1419','34085','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1420','34085','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1421','34085','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1422','34086','8','{#IFOPERSTATUS}','1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1423','34086','8','{#SNMPVALUE}','(2|3)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1424','34123','8','{#ENT_SN}','.+');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1425','34123','8','{#ENT_CLASS}','[^3]');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1426','34126','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1427','34126','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1428','34126','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1429','34126','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1430','34126','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1431','34126','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1432','34126','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1433','34126','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1434','34126','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1435','34126','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1436','34126','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1437','34126','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1438','34127','8','{#IFOPERSTATUS}','1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1439','34127','8','{#SNMPVALUE}','(2|3)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1440','34161','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1441','34161','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1442','34161','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1443','34161','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1444','34161','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1445','34161','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1446','34161','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1447','34161','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1448','34161','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1449','34161','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1450','34161','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1451','34161','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1452','34162','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1453','34162','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1454','34162','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1455','34162','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1456','34163','8','{#MEMTYPE}','{$MEMORY.TYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1457','34163','9','{#MEMTYPE}','{$MEMORY.TYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1458','34163','8','{#MEMNAME}','{$MEMORY.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1459','34163','9','{#MEMNAME}','{$MEMORY.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1460','34208','9','{#CARTRIDGE_STATUS}','^$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1461','34324','8','{#JOBNAME}','{$MSSQL.JOB.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1462','34324','9','{#JOBNAME}','{$MSSQL.JOB.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1463','34477','9','{#CARTRIDGE_STATUS}','^$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1464','34525','9','{#CARTRIDGE_STATUS}','^$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1465','34573','9','{#CARTRIDGE_STATUS}','^$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1466','34621','9','{#CARTRIDGE_STATUS}','^$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1467','34669','9','{#CARTRIDGE_STATUS}','^$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1469','34765','9','{#CARTRIDGE_STATUS}','^$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1470','34819','9','{#CARTRIDGE_STATUS}','^$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1471','34867','9','{#CARTRIDGE_STATUS}','^$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1472','34915','9','{#CARTRIDGE_STATUS}','^$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1473','34942','8','{#DEPLOYMENT}','{$WILDFLY.DEPLOYMENT.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1474','34942','9','{#DEPLOYMENT}','{$WILDFLY.DEPLOYMENT.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1475','34943','8','{#SERVER}','{$WILDFLY.SERVER.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1476','34943','9','{#SERVER}','{$WILDFLY.SERVER.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1477','34966','8','{#DEPLOYMENT}','{$WILDFLY.DEPLOYMENT.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1478','34966','9','{#DEPLOYMENT}','{$WILDFLY.DEPLOYMENT.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1479','35042','9','{#CARTRIDGE_STATUS}','^$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1480','35177','8','{#NAME}','{$NGINX.LLD.FILTER.HTTP.LOCATION.ZONE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1481','35177','9','{#NAME}','{$NGINX.LLD.FILTER.HTTP.LOCATION.ZONE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1482','35178','8','{#NAME}','{$NGINX.LLD.FILTER.HTTP.ZONE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1483','35178','9','{#NAME}','{$NGINX.LLD.FILTER.HTTP.ZONE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1484','35179','8','{#UPSTREAM}','{$NGINX.LLD.FILTER.HTTP.UPSTREAM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1485','35179','9','{#UPSTREAM}','{$NGINX.LLD.FILTER.HTTP.UPSTREAM.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1486','35180','8','{#NAME}','{$NGINX.LLD.FILTER.HTTP.UPSTREAM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1487','35180','9','{#NAME}','{$NGINX.LLD.FILTER.HTTP.UPSTREAM.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1488','35181','8','{#NAME}','{$NGINX.LLD.FILTER.RESOLVER.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1489','35181','9','{#NAME}','{$NGINX.LLD.FILTER.RESOLVER.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1490','35182','8','{#NAME}','{$NGINX.LLD.FILTER.STREAM.ZONE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1491','35182','9','{#NAME}','{$NGINX.LLD.FILTER.STREAM.ZONE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1492','35183','8','{#UPSTREAM}','{$NGINX.LLD.FILTER.STREAM.UPSTREAM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1493','35183','9','{#UPSTREAM}','{$NGINX.LLD.FILTER.STREAM.UPSTREAM.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1494','35184','8','{#NAME}','{$NGINX.LLD.FILTER.STREAM.UPSTREAM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1495','35184','9','{#NAME}','{$NGINX.LLD.FILTER.STREAM.UPSTREAM.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1496','35262','8','{#UNIT.ACTIVESTATE}','{$SYSTEMD.ACTIVESTATE.SERVICE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1497','35262','9','{#UNIT.ACTIVESTATE}','{$SYSTEMD.ACTIVESTATE.SERVICE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1498','35262','8','{#UNIT.UNITFILESTATE}','{$SYSTEMD.UNITFILESTATE.SERVICE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1499','35262','9','{#UNIT.UNITFILESTATE}','{$SYSTEMD.UNITFILESTATE.SERVICE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1500','35262','9','{#UNIT.NAME}','{$SYSTEMD.NAME.SERVICE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1501','35262','8','{#UNIT.NAME}','{$SYSTEMD.NAME.SERVICE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1502','35263','8','{#UNIT.ACTIVESTATE}','{$SYSTEMD.ACTIVESTATE.SOCKET.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1503','35263','9','{#UNIT.ACTIVESTATE}','{$SYSTEMD.ACTIVESTATE.SOCKET.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1504','35263','8','{#UNIT.UNITFILESTATE}','{$SYSTEMD.UNITFILESTATE.SOCKET.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1505','35263','9','{#UNIT.UNITFILESTATE}','{$SYSTEMD.UNITFILESTATE.SOCKET.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1506','35263','9','{#UNIT.NAME}','{$SYSTEMD.NAME.SOCKET.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1507','35263','8','{#UNIT.NAME}','{$SYSTEMD.NAME.SOCKET.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1508','35280','8','{#JMXNAME}','{$GRIDGAIN.LLD.FILTER.DATA.REGION.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1509','35280','9','{#JMXNAME}','{$GRIDGAIN.LLD.FILTER.DATA.REGION.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1510','35287','8','{#JMXNAME}','{$GRIDGAIN.LLD.FILTER.CACHE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1511','35287','9','{#JMXNAME}','{$GRIDGAIN.LLD.FILTER.CACHE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1512','35288','8','{#JMXNAME}','{$GRIDGAIN.LLD.FILTER.THREAD.POOL.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1513','35288','9','{#JMXNAME}','{$GRIDGAIN.LLD.FILTER.THREAD.POOL.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1514','35289','8','{#JMXGROUP}','{$GRIDGAIN.LLD.FILTER.CACHE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1515','35289','9','{#JMXGROUP}','{$GRIDGAIN.LLD.FILTER.CACHE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1516','35366','8','{#CISCO.IF.NAME}','{$CISCO.LLD.FILTER.IF.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1517','35366','9','{#CISCO.IF.NAME}','{$CISCO.LLD.FILTER.IF.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1518','35366','8','{#CISCO.IF.STATUS.ADMIN}','{$CISCO.LLD.FILTER.IF.ADMIN.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1519','35366','9','{#CISCO.IF.STATUS.ADMIN}','{$CISCO.LLD.FILTER.IF.ADMIN.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1520','35366','8','{#CISCO.IF.DESC}','{$CISCO.LLD.FILTER.IF.DESC.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1521','35366','9','{#CISCO.IF.DESC}','{$CISCO.LLD.FILTER.IF.DESC.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1522','35432','8','{#PART.NAME}','{$BIGIP.LLD.FILTER.PART.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1523','35432','9','{#PART.NAME}','{$BIGIP.LLD.FILTER.PART.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1524','35542','8','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1525','35542','9','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1526','35542','8','{#ZYXEL.IF.NAME}','adsl');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1527','35543','8','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1528','35543','9','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1529','35543','8','{#ZYXEL.IF.NAME}','enet');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1530','35575','8','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1531','35575','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1532','35575','8','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1533','35575','9','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1534','35576','8','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1535','35576','9','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1536','35577','8','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1537','35577','9','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1538','35619','8','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1539','35619','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1540','35619','8','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1541','35619','9','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1542','35653','8','{#ZYXEL.IF.DESC}','{$ZYXEL.LLD.FILTER.IF.DESC.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1543','35653','9','{#ZYXEL.IF.DESC}','{$ZYXEL.LLD.FILTER.IF.DESC.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1544','35653','8','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1545','35653','9','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1546','35653','8','{#ZYXEL.IF.NAME}','adsl');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1547','35654','8','{#ZYXEL.IF.DESC}','{$ZYXEL.LLD.FILTER.IF.DESC.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1548','35654','9','{#ZYXEL.IF.DESC}','{$ZYXEL.LLD.FILTER.IF.DESC.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1549','35654','8','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1550','35654','9','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1551','35654','8','{#ZYXEL.IF.NAME}','enet');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1552','35655','8','{#ZYXEL.SLOTSTATUS}','{$ZYXEL.LLD.FILTER.SLOT.STATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1553','35655','9','{#ZYXEL.SLOTSTATUS}','{$ZYXEL.LLD.FILTER.SLOT.STATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1554','35720','8','{#ZYXEL.IF.DESC}','{$ZYXEL.LLD.FILTER.IF.DESC.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1555','35720','9','{#ZYXEL.IF.DESC}','{$ZYXEL.LLD.FILTER.IF.DESC.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1556','35720','8','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1557','35720','9','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1558','35720','8','{#ZYXEL.IF.NAME}','adsl');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1559','35721','8','{#ZYXEL.IF.DESC}','{$ZYXEL.LLD.FILTER.IF.DESC.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1560','35721','9','{#ZYXEL.IF.DESC}','{$ZYXEL.LLD.FILTER.IF.DESC.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1561','35721','8','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1562','35721','9','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1563','35721','8','{#ZYXEL.IF.NAME}','enet');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1564','35722','8','{#ZYXEL.SLOTSTATUS}','{$ZYXEL.LLD.FILTER.SLOT.STATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1565','35722','9','{#ZYXEL.SLOTSTATUS}','{$ZYXEL.LLD.FILTER.SLOT.STATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1566','35787','8','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1567','35787','9','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1568','35787','8','{#ZYXEL.IF.NAME}','adsl');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1569','35788','8','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1570','35788','9','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1571','35788','8','{#ZYXEL.IF.NAME}','enet');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1572','35820','8','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1573','35820','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1574','35820','8','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1575','35820','9','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1576','35821','8','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1577','35821','9','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1578','35822','8','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1579','35822','9','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1580','35859','8','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1581','35859','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1582','35859','8','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1583','35859','9','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1584','35860','8','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1585','35860','9','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1586','35861','8','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1587','35861','9','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1588','35903','8','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1589','35903','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1590','35903','8','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1591','35903','9','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1592','35904','8','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1593','35904','9','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1594','35905','8','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1595','35905','9','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1596','35947','8','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1597','35947','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1598','35947','8','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1599','35947','9','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1600','35948','8','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1601','35948','9','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1602','35949','8','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1603','35949','9','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1604','35991','8','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1605','35991','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1606','35991','8','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1607','35991','9','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1608','35992','8','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1609','35992','9','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1610','35993','8','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1611','35993','9','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1612','36036','8','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1613','36036','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1614','36036','8','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1615','36036','9','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1616','36037','8','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1617','36037','9','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1618','36038','8','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1619','36038','9','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1620','36081','8','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1621','36081','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1622','36081','8','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1623','36081','9','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1624','36082','8','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1625','36082','9','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1626','36083','8','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1627','36083','9','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1628','36126','8','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1629','36126','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1630','36126','8','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1631','36126','9','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1632','36127','8','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1633','36127','9','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1634','36128','8','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1635','36128','9','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1636','36171','8','{#IFADMINSTATUS}','{$NET.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1637','36171','9','{#IFADMINSTATUS}','{$NET.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1638','36171','8','{#IFOPERSTATUS}','{$NET.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1639','36171','9','{#IFOPERSTATUS}','{$NET.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1640','36171','8','{#IFNAME}','{$NET.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1641','36171','9','{#IFNAME}','{$NET.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1642','36171','8','{#IFDESCR}','{$NET.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1643','36171','9','{#IFDESCR}','{$NET.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1644','36171','8','{#IFALIAS}','{$NET.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1645','36171','9','{#IFALIAS}','{$NET.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1646','36171','8','{#IFTYPE}','{$NET.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1647','36171','9','{#IFTYPE}','{$NET.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1648','36270','8','{#TYPE}','3');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1649','36352','8','{#TYPE}','3');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1650','36434','8','{#TYPE}','3');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1651','36516','8','{#TYPE}','3');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1652','36559','8','{#SNMPINDEX}','0\\.1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1653','36559','8','{#SENSOR_LOCALE}','11');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1654','36560','8','{#SENSOR_LOCALE}','6');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1655','36561','8','{#SENSOR_LOCALE}','(4|8|9|12|13)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1656','36562','8','{#SENSOR_LOCALE}','5');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1657','36563','8','{#SENSOR_LOCALE}','7');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1658','36564','8','{#SENSOR_LOCALE}','10');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1659','36565','8','{#SENSOR_LOCALE}','3');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1660','36616','8','{#SNMPINDEX}','0\\.1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1661','36616','8','{#SENSOR_LOCALE}','11');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1662','36617','8','{#SENSOR_LOCALE}','6');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1663','36618','8','{#SENSOR_LOCALE}','(4|8|9|12|13)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1664','36619','8','{#SENSOR_LOCALE}','5');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1665','36620','8','{#SENSOR_LOCALE}','7');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1666','36621','8','{#SENSOR_LOCALE}','10');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1667','36622','8','{#SENSOR_LOCALE}','3');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1668','36673','8','{#SNMPINDEX}','0\\.1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1669','36673','8','{#SENSOR_LOCALE}','11');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1670','36674','8','{#SENSOR_LOCALE}','6');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1671','36675','8','{#SENSOR_LOCALE}','(4|8|9|12|13)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1672','36676','8','{#SENSOR_LOCALE}','5');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1673','36677','8','{#SENSOR_LOCALE}','7');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1674','36678','8','{#SENSOR_LOCALE}','10');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1675','36679','8','{#SENSOR_LOCALE}','3');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1676','36730','8','{#SNMPINDEX}','0\\.1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1677','36730','8','{#SENSOR_LOCALE}','11');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1678','36731','8','{#SENSOR_LOCALE}','6');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1679','36732','8','{#SENSOR_LOCALE}','(4|8|9|12|13)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1680','36733','8','{#SENSOR_LOCALE}','5');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1681','36734','8','{#SENSOR_LOCALE}','7');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1682','36735','8','{#SENSOR_LOCALE}','10');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1683','36736','8','{#SENSOR_LOCALE}','3');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1684','36813','9','{#ORG_NAME}','{$INFLUXDB.ORG_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1685','36813','8','{#ORG_NAME}','{$INFLUXDB.ORG_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1698','36857','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1699','36857','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1700','36858','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1701','36858','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1702','36859','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1703','36859','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1704','36860','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1705','36860','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1718','36911','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1719','36911','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1720','36912','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1721','36912','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1722','36913','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1723','36913','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1724','36914','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1725','36914','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1738','36965','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1739','36965','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1740','36966','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1741','36966','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1742','36967','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1743','36967','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1744','36968','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1745','36968','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1758','37019','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1759','37019','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1760','37020','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1761','37020','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1762','37021','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1763','37021','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1764','37022','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1765','37022','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1778','37073','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1779','37073','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1780','37074','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1781','37074','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1782','37075','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1783','37075','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1784','37076','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1785','37076','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1798','37127','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1799','37127','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1800','37128','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1801','37128','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1802','37129','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1803','37129','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1804','37130','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1805','37130','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1818','37181','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1819','37181','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1820','37182','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1821','37182','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1822','37183','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1823','37183','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1824','37184','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1825','37184','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1838','37235','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1839','37235','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1840','37236','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1841','37236','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1842','37237','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1843','37237','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1844','37238','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1845','37238','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1858','37289','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1859','37289','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1860','37290','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1861','37290','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1862','37291','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1863','37291','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1864','37292','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1865','37292','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1878','37343','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1879','37343','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1880','37344','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1881','37344','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1882','37345','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1883','37345','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1884','37346','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1885','37346','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1898','37397','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1899','37397','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1900','37398','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1901','37398','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1902','37399','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1903','37399','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1904','37400','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1905','37400','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1918','37451','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1919','37451','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1920','37452','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1921','37452','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1922','37453','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1923','37453','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1924','37454','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1925','37454','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1938','37505','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1939','37505','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1940','37506','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1941','37506','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1942','37507','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1943','37507','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1944','37508','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1945','37508','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1958','37559','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1959','37559','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1960','37560','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1961','37560','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1962','37561','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1963','37561','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1964','37562','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1965','37562','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1978','37613','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1979','37613','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1980','37614','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1981','37614','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1982','37615','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1983','37615','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1984','37616','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1985','37616','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1998','37667','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('1999','37667','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2000','37668','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2001','37668','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2002','37669','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2003','37669','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2004','37670','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2005','37670','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2018','37721','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2019','37721','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2020','37722','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2021','37722','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2022','37723','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2023','37723','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2024','37724','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2025','37724','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2038','37775','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2039','37775','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2040','37776','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2041','37776','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2042','37777','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2043','37777','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2044','37778','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2045','37778','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2058','37829','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2059','37829','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2060','37830','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2061','37830','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2062','37831','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2063','37831','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2064','37832','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2065','37832','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2078','37883','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2079','37883','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2080','37884','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2081','37884','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2082','37885','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2083','37885','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2084','37886','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2085','37886','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2098','37937','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2099','37937','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2100','37938','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2101','37938','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2102','37939','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2103','37939','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2104','37940','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2105','37940','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2118','37991','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2119','37991','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2120','37992','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2121','37992','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2122','37993','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2123','37993','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2124','37994','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2125','37994','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2138','38045','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2139','38045','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2140','38046','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2141','38046','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2142','38047','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2143','38047','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2144','38048','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2145','38048','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2158','38099','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2159','38099','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2160','38100','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2161','38100','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2162','38101','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2163','38101','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2164','38102','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2165','38102','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2178','38153','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2179','38153','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2180','38154','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2181','38154','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2182','38155','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2183','38155','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2184','38156','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2185','38156','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2198','38207','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2199','38207','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2200','38208','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2201','38208','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2202','38209','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2203','38209','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2204','38210','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2205','38210','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2218','38261','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2219','38261','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2220','38262','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2221','38262','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2222','38263','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2223','38263','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2224','38264','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2225','38264','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2238','38315','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2239','38315','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2240','38316','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2241','38316','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2242','38317','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2243','38317','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2244','38318','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2245','38318','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2258','38369','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2259','38369','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2260','38370','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2261','38370','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2262','38371','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2263','38371','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2264','38372','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2265','38372','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2278','38423','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2279','38423','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2280','38424','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2281','38424','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2282','38425','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2283','38425','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2284','38426','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2285','38426','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2298','38477','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2299','38477','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2300','38478','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2301','38478','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2302','38479','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2303','38479','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2304','38480','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2305','38480','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2318','38531','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2319','38531','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2320','38532','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2321','38532','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2322','38533','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2323','38533','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2324','38534','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2325','38534','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2338','38585','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2339','38585','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2340','38586','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2341','38586','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2342','38587','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2343','38587','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2344','38588','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2345','38588','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2358','38639','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2359','38639','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2360','38640','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2361','38640','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2362','38641','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2363','38641','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2364','38642','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2365','38642','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2378','38693','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2379','38693','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2380','38694','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2381','38694','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2382','38695','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2383','38695','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2384','38696','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2385','38696','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2398','38747','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2399','38747','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2400','38748','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2401','38748','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2402','38749','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2403','38749','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2404','38750','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2405','38750','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2418','38801','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2419','38801','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2420','38802','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2421','38802','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2422','38803','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2423','38803','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2424','38804','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2425','38804','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2438','38855','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2439','38855','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2440','38856','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2441','38856','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2442','38857','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2443','38857','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2444','38858','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2445','38858','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2458','38909','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2459','38909','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2460','38910','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2461','38910','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2462','38911','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2463','38911','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2464','38912','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2465','38912','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2478','38963','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2479','38963','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2480','38964','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2481','38964','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2482','38965','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2483','38965','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2484','38966','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2485','38966','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2498','39017','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2499','39017','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2500','39018','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2501','39018','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2502','39019','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2503','39019','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2504','39020','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2505','39020','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2518','39071','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2519','39071','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2520','39072','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2521','39072','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2522','39073','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2523','39073','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2524','39074','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2525','39074','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2538','39125','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2539','39125','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2540','39126','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2541','39126','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2542','39127','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2543','39127','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2544','39128','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2545','39128','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2558','39179','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2559','39179','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2560','39180','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2561','39180','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2562','39181','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2563','39181','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2564','39182','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2565','39182','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2578','39233','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2579','39233','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2580','39234','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2581','39234','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2582','39235','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2583','39235','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2584','39236','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2585','39236','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2598','39287','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2599','39287','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2600','39288','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2601','39288','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2602','39289','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2603','39289','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2604','39290','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2605','39290','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2618','39341','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2619','39341','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2620','39342','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2621','39342','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2622','39343','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2623','39343','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2624','39344','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2625','39344','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2638','39395','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2639','39395','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2640','39396','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2641','39396','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2642','39397','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2643','39397','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2644','39398','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2645','39398','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2658','39449','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2659','39449','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2660','39450','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2661','39450','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2662','39451','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2663','39451','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2664','39452','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2665','39452','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2678','39503','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2679','39503','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2680','39504','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2681','39504','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2682','39505','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2683','39505','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2684','39506','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2685','39506','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2698','39557','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2699','39557','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2700','39558','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2701','39558','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2702','39559','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2703','39559','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2704','39560','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2705','39560','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2718','39611','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2719','39611','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2720','39612','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2721','39612','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2722','39613','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2723','39613','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2724','39614','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2725','39614','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2738','39665','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2739','39665','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2740','39666','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2741','39666','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2742','39667','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2743','39667','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2744','39668','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2745','39668','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2758','39719','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2759','39719','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2760','39720','8','{#IFTYPE}','^71$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2761','39720','8','{#IFADMINSTATUS}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2762','39721','8','{#IFTYPE}','^1$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2763','39721','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2764','39722','8','{#STORAGE_TYPE}','.+4$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2765','39722','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2766','39749','9','{#NAME}','{$VELOCLOUD.LLD.EDGES.FILTER.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2767','39749','8','{#NAME}','{$VELOCLOUD.LLD.EDGES.FILTER.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2768','39750','9','{#NAME}','{$VELOCLOUD.LLD.GATEWAYS.FILTER.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2769','39750','8','{#NAME}','{$VELOCLOUD.LLD.GATEWAYS.FILTER.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2770','39751','9','{#ID}','{$VELOCLOUD.LLD.LINKS.FILTER.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2771','39751','8','{#ID}','{$VELOCLOUD.LLD.LINKS.FILTER.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2772','39940','8','{#NAME}','{$KUBE.LLD.FILTER.NODE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2773','39940','9','{#NAME}','{$KUBE.LLD.FILTER.NODE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2774','39940','8','{#ROLES}','{$KUBE.LLD.FILTER.NODE.ROLE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2775','39940','9','{#ROLES}','{$KUBE.LLD.FILTER.NODE.ROLE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2776','39941','8','{#NAME}','{$KUBE.LLD.FILTER.NODE_HOST.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2777','39941','9','{#NAME}','{$KUBE.LLD.FILTER.NODE_HOST.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2778','39941','8','{#ROLES}','{$KUBE.LLD.FILTER.NODE_HOST.ROLE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2779','39941','9','{#ROLES}','{$KUBE.LLD.FILTER.NODE_HOST.ROLE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2780','39942','8','{#NODE}','{$KUBE.LLD.FILTER.NODE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2781','39942','9','{#NODE}','{$KUBE.LLD.FILTER.NODE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2782','39942','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.POD.NAMESPACE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2783','39942','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.POD.NAMESPACE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2784','40024','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2785','40024','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2786','40025','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2787','40025','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2788','40026','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2789','40026','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2790','40028','8','{#NAME}','{$KUBE.LLD.FILTER.NODE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2791','40028','9','{#NAME}','{$KUBE.LLD.FILTER.NODE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2792','40029','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2793','40029','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2794','40030','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2795','40030','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2796','40032','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2797','40032','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2798','40034','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2799','40034','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2800','40035','8','{#NAME}','{$KUBE.LLD.FILTER.WORKER_NODE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2801','40035','9','{#NAME}','{$KUBE.LLD.FILTER.WORKER_NODE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2802','40138','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2803','40138','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2804','40138','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2805','40138','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2806','40138','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2807','40138','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2808','40138','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2809','40138','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2810','40138','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2811','40138','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2812','40138','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2813','40138','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2820','40454','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2821','40454','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2822','40454','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2823','40454','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2824','40455','8','{#MEMTYPE}','{$MEMORY.TYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2825','40455','9','{#MEMTYPE}','{$MEMORY.TYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2826','40455','8','{#MEMNAME}','{$MEMORY.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2827','40455','9','{#MEMNAME}','{$MEMORY.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2844','40489','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2845','40489','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2846','40489','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2847','40489','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2848','40489','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2849','40489','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2850','40489','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2851','40489','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2852','40489','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2853','40489','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2854','40489','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2855','40489','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2856','40490','8','{#IFOPERSTATUS}','1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2857','40490','8','{#SNMPVALUE}','(2|3)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2858','40513','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2859','40513','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2860','40513','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2861','40513','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2862','40513','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2863','40513','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2864','40513','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2865','40513','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2866','40513','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2867','40513','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2868','40513','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2869','40513','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2870','40514','8','{#IFOPERSTATUS}','1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2871','40514','8','{#SNMPVALUE}','(2|3)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2872','40515','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2873','40515','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2874','40515','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2875','40515','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2876','40516','8','{#MEMTYPE}','{$MEMORY.TYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2877','40516','9','{#MEMTYPE}','{$MEMORY.TYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2878','40516','8','{#MEMNAME}','{$MEMORY.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2879','40516','9','{#MEMNAME}','{$MEMORY.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2880','40544','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2881','40544','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2882','40544','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2883','40544','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2884','40544','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2885','40544','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2886','40544','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2887','40544','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2888','40544','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2889','40544','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2890','40544','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2891','40544','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2892','40580','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2893','40580','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2894','40580','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2895','40580','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2896','40580','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2897','40580','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2898','40580','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2899','40580','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2900','40580','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2901','40580','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2902','40580','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2903','40580','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2904','40581','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2905','40581','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2906','40581','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2907','40581','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2908','40581','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2909','40581','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2910','40581','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2911','40581','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2912','40581','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2913','40581','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2914','40581','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2915','40581','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2916','40643','8','{#ENT_SN}','.+');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2917','40643','8','{#ENT_CLASS}','^3$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2918','40649','8','{#ENT_SN}','.+');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2919','40649','8','{#ENT_CLASS}','^3$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2920','40652','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2921','40652','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2922','40652','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2923','40652','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2924','40652','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2925','40652','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2926','40652','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2927','40652','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2928','40652','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2929','40652','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2930','40652','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2931','40652','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2932','40653','8','{#IFOPERSTATUS}','1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2933','40653','8','{#SNMPVALUE}','(2|3)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2934','40657','8','{#ENT_SN}','.+');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2935','40657','8','{#ENT_CLASS}','^3$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2936','40660','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2937','40660','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2938','40660','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2939','40660','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2940','40660','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2941','40660','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2942','40660','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2943','40660','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2944','40660','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2945','40660','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2946','40660','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2947','40660','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2948','40719','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2949','40719','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2950','40719','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2951','40719','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2952','40719','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2953','40719','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2954','40719','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2955','40719','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2956','40719','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2957','40719','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2958','40719','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2959','40719','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2960','40720','8','{#IFOPERSTATUS}','1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2961','40720','8','{#SNMPVALUE}','(2|3)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2962','40742','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2963','40742','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2964','40742','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2965','40742','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2966','40742','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2967','40742','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2968','40742','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2969','40742','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2970','40742','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2971','40742','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2972','40742','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2973','40742','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2974','40763','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2975','40763','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2976','40763','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2977','40763','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2978','40763','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2979','40763','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2980','40763','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2981','40763','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2982','40763','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2983','40763','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2984','40763','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2985','40763','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2986','40764','8','{#IFOPERSTATUS}','1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2987','40764','8','{#SNMPVALUE}','(2|3)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2988','40786','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2989','40786','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2990','40786','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2991','40786','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2992','40786','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2993','40786','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2994','40786','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2995','40786','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2996','40786','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2997','40786','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2998','40786','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('2999','40786','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3000','40787','8','{#IFOPERSTATUS}','1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3001','40787','8','{#SNMPVALUE}','(2|3)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3002','40809','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3003','40809','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3004','40809','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3005','40809','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3006','40809','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3007','40809','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3008','40809','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3009','40809','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3010','40809','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3011','40809','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3012','40810','8','{#IFOPERSTATUS}','1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3013','40810','8','{#SNMPVALUE}','(2|3)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3014','40832','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3015','40832','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3016','40832','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3017','40832','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3018','40832','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3019','40832','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3020','40832','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3021','40832','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3022','40832','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3023','40832','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3024','40832','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3025','40832','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3026','40833','8','{#IFOPERSTATUS}','1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3027','40833','8','{#SNMPVALUE}','(2|3)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3028','40855','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3029','40855','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3030','40855','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3031','40855','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3032','40855','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3033','40855','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3034','40855','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3035','40855','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3036','40855','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3037','40855','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3038','40855','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3039','40855','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3040','40856','8','{#IFOPERSTATUS}','1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3041','40856','8','{#SNMPVALUE}','(2|3)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3042','40878','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3043','40878','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3044','40878','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3045','40878','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3046','40878','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3047','40878','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3048','40878','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3049','40878','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3050','40878','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3051','40878','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3052','40878','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3053','40878','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3054','40879','8','{#IFOPERSTATUS}','1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3055','40879','8','{#SNMPVALUE}','(2|3)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3056','40901','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3057','40901','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3058','40901','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3059','40901','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3060','40901','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3061','40901','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3062','40901','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3063','40901','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3064','40901','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3065','40901','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3066','40901','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3067','40901','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3068','40922','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3069','40922','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3070','40922','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3071','40922','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3072','40922','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3073','40922','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3074','40922','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3075','40922','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3076','40922','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3077','40922','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3078','40922','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3079','40922','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3080','40923','8','{#IFOPERSTATUS}','1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3081','40923','8','{#SNMPVALUE}','(2|3)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3082','40945','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3083','40945','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3084','40945','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3085','40945','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3086','40945','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3087','40945','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3088','40945','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3089','40945','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3090','40945','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3091','40945','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3092','40945','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3093','40945','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3094','40966','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3095','40966','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3096','40966','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3097','40966','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3098','40966','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3099','40966','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3100','40966','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3101','40966','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3102','40966','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3103','40966','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3104','40966','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3105','40966','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3106','40987','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3107','40987','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3108','40987','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3109','40987','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3110','40987','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3111','40987','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3112','40987','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3113','40987','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3114','40987','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3115','40987','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3116','40987','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3117','40987','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3118','41008','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3119','41008','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3120','41008','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3121','41008','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3122','41008','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3123','41008','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3124','41008','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3125','41008','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3126','41008','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3127','41008','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3128','41008','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3129','41008','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3130','41029','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3131','41029','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3132','41029','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3133','41029','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3134','41029','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3135','41029','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3136','41029','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3137','41029','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3138','41029','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3139','41029','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3140','41029','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3141','41029','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3142','41050','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3143','41050','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3144','41050','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3145','41050','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3146','41050','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3147','41050','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3148','41050','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3149','41050','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3150','41050','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3151','41050','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3152','41050','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3153','41050','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3154','41071','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3155','41071','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3156','41071','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3157','41071','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3158','41071','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3159','41071','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3160','41071','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3161','41071','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3162','41071','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3163','41071','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3164','41071','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3165','41071','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3166','41092','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3167','41092','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3168','41092','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3169','41092','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3170','41092','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3171','41092','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3172','41092','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3173','41092','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3174','41092','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3175','41092','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3176','41092','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3177','41092','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3178','41113','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3179','41113','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3180','41113','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3181','41113','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3182','41113','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3183','41113','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3184','41113','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3185','41113','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3186','41113','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3187','41113','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3188','41113','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3189','41113','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3190','41134','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3191','41134','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3192','41134','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3193','41134','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3194','41134','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3195','41134','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3196','41134','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3197','41134','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3198','41134','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3199','41134','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3200','41134','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3201','41134','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3202','41155','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3203','41155','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3204','41155','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3205','41155','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3206','41155','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3207','41155','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3208','41155','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3209','41155','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3210','41155','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3211','41155','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3212','41155','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3213','41155','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3214','41176','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3215','41176','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3216','41176','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3217','41176','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3218','41176','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3219','41176','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3220','41176','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3221','41176','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3222','41176','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3223','41176','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3224','41176','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3225','41176','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3226','41197','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3227','41197','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3228','41197','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3229','41197','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3230','41197','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3231','41197','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3232','41197','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3233','41197','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3234','41197','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3235','41197','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3236','41197','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3237','41197','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3238','41218','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3239','41218','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3240','41218','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3241','41218','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3242','41218','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3243','41218','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3244','41218','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3245','41218','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3246','41218','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3247','41218','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3248','41218','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3249','41218','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3250','41239','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3251','41239','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3252','41239','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3253','41239','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3254','41239','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3255','41239','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3256','41239','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3257','41239','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3258','41239','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3259','41239','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3260','41239','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3261','41239','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3262','41260','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3263','41260','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3264','41260','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3265','41260','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3266','41260','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3267','41260','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3268','41260','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3269','41260','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3270','41260','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3271','41260','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3272','41260','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3273','41260','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3274','41281','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3275','41281','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3276','41281','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3277','41281','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3278','41281','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3279','41281','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3280','41281','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3281','41281','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3282','41281','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3283','41281','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3284','41281','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3285','41281','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3286','41302','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3287','41302','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3288','41302','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3289','41302','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3290','41302','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3291','41302','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3292','41302','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3293','41302','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3294','41302','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3295','41302','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3296','41302','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3297','41302','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3298','41323','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3299','41323','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3300','41323','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3301','41323','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3302','41323','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3303','41323','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3304','41323','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3305','41323','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3306','41323','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3307','41323','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3308','41323','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3309','41323','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3310','41344','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3311','41344','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3312','41344','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3313','41344','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3314','41344','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3315','41344','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3316','41344','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3317','41344','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3318','41344','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3319','41344','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3320','41344','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3321','41344','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3322','41365','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3323','41365','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3324','41365','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3325','41365','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3326','41365','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3327','41365','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3328','41365','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3329','41365','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3330','41365','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3331','41365','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3332','41365','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3333','41365','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3334','41386','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3335','41386','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3336','41386','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3337','41386','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3338','41386','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3339','41386','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3340','41386','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3341','41386','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3342','41386','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3343','41386','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3344','41386','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3345','41386','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3346','41407','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3347','41407','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3348','41407','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3349','41407','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3350','41407','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3351','41407','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3352','41407','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3353','41407','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3354','41407','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3355','41407','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3356','41407','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3357','41407','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3358','41428','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3359','41428','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3360','41428','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3361','41428','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3362','41428','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3363','41428','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3364','41428','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3365','41428','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3366','41428','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3367','41428','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3368','41428','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3369','41428','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3370','41449','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3371','41449','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3372','41449','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3373','41449','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3374','41449','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3375','41449','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3376','41449','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3377','41449','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3378','41449','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3379','41449','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3380','41449','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3381','41449','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3382','41470','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3383','41470','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3384','41470','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3385','41470','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3386','41470','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3387','41470','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3388','41470','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3389','41470','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3390','41470','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3391','41470','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3392','41470','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3393','41470','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3394','41491','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3395','41491','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3396','41491','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3397','41491','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3398','41491','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3399','41491','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3400','41491','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3401','41491','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3402','41491','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3403','41491','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3404','41491','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3405','41491','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3406','41512','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3407','41512','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3408','41512','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3409','41512','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3410','41512','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3411','41512','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3412','41512','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3413','41512','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3414','41512','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3415','41512','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3416','41512','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3417','41512','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3418','41533','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3419','41533','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3420','41533','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3421','41533','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3422','41533','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3423','41533','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3424','41533','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3425','41533','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3426','41533','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3427','41533','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3428','41533','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3429','41533','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3430','41554','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3431','41554','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3432','41554','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3433','41554','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3434','41554','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3435','41554','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3436','41554','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3437','41554','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3438','41554','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3439','41554','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3440','41554','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3441','41554','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3442','41575','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3443','41575','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3444','41575','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3445','41575','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3446','41575','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3447','41575','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3448','41575','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3449','41575','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3450','41575','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3451','41575','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3452','41575','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3453','41575','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3454','41596','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3455','41596','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3456','41596','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3457','41596','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3458','41596','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3459','41596','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3460','41596','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3461','41596','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3462','41596','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3463','41596','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3464','41596','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3465','41596','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3466','41617','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3467','41617','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3468','41617','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3469','41617','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3470','41617','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3471','41617','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3472','41617','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3473','41617','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3474','41617','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3475','41617','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3476','41617','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3477','41617','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3478','41638','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3479','41638','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3480','41638','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3481','41638','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3482','41638','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3483','41638','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3484','41638','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3485','41638','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3486','41638','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3487','41638','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3488','41638','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3489','41638','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3490','41659','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3491','41659','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3492','41659','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3493','41659','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3494','41659','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3495','41659','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3496','41659','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3497','41659','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3498','41659','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3499','41659','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3500','41659','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3501','41659','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3502','41680','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3503','41680','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3504','41680','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3505','41680','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3506','41680','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3507','41680','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3508','41680','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3509','41680','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3510','41680','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3511','41680','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3512','41680','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3513','41680','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3514','41701','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3515','41701','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3516','41701','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3517','41701','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3518','41701','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3519','41701','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3520','41701','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3521','41701','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3522','41701','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3523','41701','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3524','41701','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3525','41701','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3526','41722','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3527','41722','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3528','41722','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3529','41722','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3530','41722','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3531','41722','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3532','41722','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3533','41722','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3534','41722','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3535','41722','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3536','41722','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3537','41722','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3538','41743','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3539','41743','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3540','41743','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3541','41743','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3542','41743','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3543','41743','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3544','41743','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3545','41743','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3546','41743','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3547','41743','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3548','41743','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3549','41743','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3550','41764','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3551','41764','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3552','41764','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3553','41764','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3554','41764','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3555','41764','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3556','41764','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3557','41764','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3558','41764','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3559','41764','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3560','41764','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3561','41764','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3562','41785','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3563','41785','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3564','41785','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3565','41785','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3566','41785','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3567','41785','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3568','41785','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3569','41785','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3570','41785','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3571','41785','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3572','41785','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3573','41785','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3574','41806','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3575','41806','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3576','41806','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3577','41806','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3578','41806','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3579','41806','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3580','41806','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3581','41806','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3582','41806','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3583','41806','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3584','41806','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3585','41806','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3586','41827','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3587','41827','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3588','41827','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3589','41827','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3590','41827','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3591','41827','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3592','41827','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3593','41827','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3594','41827','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3595','41827','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3596','41827','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3597','41827','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3598','41848','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3599','41848','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3600','41848','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3601','41848','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3602','41848','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3603','41848','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3604','41848','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3605','41848','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3606','41848','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3607','41848','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3608','41848','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3609','41848','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3610','41869','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3611','41869','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3612','41869','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3613','41869','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3614','41869','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3615','41869','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3616','41869','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3617','41869','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3618','41869','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3619','41869','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3620','41869','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3621','41869','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3622','41890','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3623','41890','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3624','41890','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3625','41890','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3626','41890','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3627','41890','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3628','41890','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3629','41890','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3630','41890','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3631','41890','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3632','41890','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3633','41890','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3634','41911','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3635','41911','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3636','41911','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3637','41911','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3638','41911','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3639','41911','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3640','41911','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3641','41911','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3642','41911','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3643','41911','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3644','41911','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3645','41911','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3646','41932','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3647','41932','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3648','41932','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3649','41932','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3650','41932','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3651','41932','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3652','41932','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3653','41932','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3654','41932','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3655','41932','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3656','41932','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3657','41932','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3658','41953','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3659','41953','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3660','41953','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3661','41953','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3662','41953','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3663','41953','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3664','41953','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3665','41953','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3666','41953','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3667','41953','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3668','41953','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3669','41953','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3670','41974','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3671','41974','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3672','41974','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3673','41974','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3674','41974','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3675','41974','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3676','41974','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3677','41974','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3678','41974','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3679','41974','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3680','41974','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3681','41974','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3682','41995','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3683','41995','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3684','41995','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3685','41995','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3686','41995','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3687','41995','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3688','41995','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3689','41995','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3690','41995','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3691','41995','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3692','41995','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3693','41995','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3694','42016','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3695','42016','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3696','42016','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3697','42016','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3698','42016','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3699','42016','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3700','42016','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3701','42016','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3702','42016','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3703','42016','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3704','42016','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3705','42016','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3706','42037','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3707','42037','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3708','42037','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3709','42037','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3710','42037','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3711','42037','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3712','42037','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3713','42037','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3714','42037','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3715','42037','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3716','42037','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3717','42037','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3718','42058','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3719','42058','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3720','42058','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3721','42058','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3722','42058','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3723','42058','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3724','42058','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3725','42058','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3726','42058','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3727','42058','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3728','42058','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3729','42058','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3730','42079','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3731','42079','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3732','42079','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3733','42079','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3734','42079','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3735','42079','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3736','42079','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3737','42079','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3738','42079','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3739','42079','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3740','42079','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3741','42079','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3742','42100','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3743','42100','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3744','42100','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3745','42100','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3746','42100','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3747','42100','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3748','42100','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3749','42100','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3750','42100','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3751','42100','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3752','42100','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3753','42100','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3754','42121','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3755','42121','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3756','42121','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3757','42121','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3758','42121','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3759','42121','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3760','42121','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3761','42121','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3762','42121','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3763','42121','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3764','42121','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3765','42121','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3766','42122','8','{#IFOPERSTATUS}','1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3767','42122','8','{#SNMPVALUE}','(2|3)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3768','42144','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3769','42144','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3770','42144','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3771','42144','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3772','42144','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3773','42144','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3774','42144','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3775','42144','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3776','42144','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3777','42144','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3778','42165','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3779','42165','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3780','42165','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3781','42165','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3782','42165','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3783','42165','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3784','42165','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3785','42165','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3786','42165','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3787','42165','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3788','42271','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3789','42271','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3790','42272','8','{#DEVTYPE}','disk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3791','42272','8','{#DEVNAME}','{$VFS.DEV.DEVNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3792','42272','9','{#DEVNAME}','{$VFS.DEV.DEVNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3793','42273','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3794','42273','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3795','42273','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3796','42273','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3797','42274','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3798','42274','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3799','42275','8','{#DEVTYPE}','disk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3800','42275','8','{#DEVNAME}','{$VFS.DEV.DEVNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3801','42275','9','{#DEVNAME}','{$VFS.DEV.DEVNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3802','42276','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3803','42276','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3804','42276','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3805','42276','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3806','42360','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3807','42360','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3808','42361','8','{#DEVTYPE}','disk');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3809','42361','8','{#DEVNAME}','{$VFS.DEV.DEVNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3810','42361','9','{#DEVNAME}','{$VFS.DEV.DEVNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3811','42362','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3812','42362','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3813','42362','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3814','42362','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3815','42411','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3816','42411','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3817','42411','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3818','42411','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3819','42411','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3820','42411','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3821','42411','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3822','42411','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3823','42411','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3824','42411','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3825','42411','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3826','42411','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3827','42412','8','{#IFOPERSTATUS}','1');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3828','42412','8','{#SNMPVALUE}','(2|3)');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3829','42413','8','{#DEVNAME}','{$VFS.DEV.DEVNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3830','42413','9','{#DEVNAME}','{$VFS.DEV.DEVNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3831','42414','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3832','42414','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3833','42414','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3834','42414','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3835','42487','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3836','42487','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3837','42487','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3838','42487','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3839','42487','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3840','42487','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3841','42488','8','{#DEVNAME}','{$VFS.DEV.DEVNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3842','42488','9','{#DEVNAME}','{$VFS.DEV.DEVNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3843','42489','8','{#SERVICE.NAME}','{$SERVICE.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3844','42489','9','{#SERVICE.NAME}','{$SERVICE.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3845','42489','8','{#SERVICE.STARTUPNAME}','{$SERVICE.STARTUPNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3846','42489','9','{#SERVICE.STARTUPNAME}','{$SERVICE.STARTUPNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3847','42490','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3848','42490','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3849','42490','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3850','42490','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3851','42490','8','{#FSDRIVETYPE}','{$VFS.FS.FSDRIVETYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3852','42490','9','{#FSDRIVETYPE}','{$VFS.FS.FSDRIVETYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3853','42543','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3854','42543','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3855','42543','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3856','42543','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3857','42543','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3858','42543','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3859','42544','8','{#DEVNAME}','{$VFS.DEV.DEVNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3860','42544','9','{#DEVNAME}','{$VFS.DEV.DEVNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3861','42545','8','{#SERVICE.NAME}','{$SERVICE.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3862','42545','9','{#SERVICE.NAME}','{$SERVICE.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3863','42545','8','{#SERVICE.STARTUPNAME}','{$SERVICE.STARTUPNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3864','42545','9','{#SERVICE.STARTUPNAME}','{$SERVICE.STARTUPNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3865','42546','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3866','42546','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3867','42546','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3868','42546','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3869','42546','8','{#FSDRIVETYPE}','{$VFS.FS.FSDRIVETYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3870','42546','9','{#FSDRIVETYPE}','{$VFS.FS.FSDRIVETYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3871','42580','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3872','42580','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3873','42580','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3874','42580','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3875','42580','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3876','42580','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3877','42580','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3878','42580','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3879','42580','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3880','42580','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3881','42580','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3882','42580','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3883','42581','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3884','42581','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3885','42581','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3886','42581','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3887','42582','8','{#MEMTYPE}','{$MEMORY.TYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3888','42582','9','{#MEMTYPE}','{$MEMORY.TYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3889','42582','8','{#MEMNAME}','{$MEMORY.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3890','42582','9','{#MEMNAME}','{$MEMORY.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3895','33658','8','{#NAME}','{$SMART.DISK.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3896','33658','9','{#NAME}','{$SMART.DISK.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3901','33670','8','{#NAME}','{$SMART.DISK.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3902','33670','9','{#NAME}','{$SMART.DISK.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3903','42690','8','{#JMXNAME}','{$JMX.MEM.POOL.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3904','42708','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3905','42708','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3906','42709','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3907','42709','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3908','42710','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3909','42710','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3910','42756','8','{#RESOURCE.TYPE}','^cluster$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3911','42757','8','{#RESOURCE.TYPE}','^lxc$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3912','42758','8','{#RESOURCE.TYPE}','^node$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3913','42759','8','{#RESOURCE.TYPE}','^qemu$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3914','42760','8','{#RESOURCE.TYPE}','^storage$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3915','42850','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3916','42850','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3917','42850','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3918','42850','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3919','42850','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3920','42850','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3921','42850','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3922','42850','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3923','42850','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3924','42850','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3925','42850','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3926','42850','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3927','42852','8','{#DATASET_NAME}','{$DATASET.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3928','42852','9','{#DATASET_NAME}','{$DATASET.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3929','42855','8','{#DEVNAME}','{$VFS.DEV.DEVNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3930','42855','9','{#DEVNAME}','{$VFS.DEV.DEVNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3931','42985','8','{#SERVICE_NAME}','{$CONSUL.LLD.FILTER.LOCAL_SERVICE_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3932','42985','9','{#SERVICE_NAME}','{$CONSUL.LLD.FILTER.LOCAL_SERVICE_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3933','43017','8','{#NODE_NAME}','{$CONSUL.LLD.FILTER.NODE_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3934','43017','9','{#NODE_NAME}','{$CONSUL.LLD.FILTER.NODE_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3935','43018','8','{#SERVICE_NAME}','{$CONSUL.LLD.FILTER.SERVICE_NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3936','43018','9','{#SERVICE_NAME}','{$CONSUL.LLD.FILTER.SERVICE_NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3937','43186','9','{#TYPE}','^(POWER_SUPPLY|RAID_IOM|CHASSIS_MIDPLANE)$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3938','43293','9','{#TYPE}','^(POWER_SUPPLY|RAID_IOM|CHASSIS_MIDPLANE)$');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3939','43412','8','{#NAME}','{$HPE.PRIMERA.CPG.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3940','43412','9','{#NAME}','{$HPE.PRIMERA.CPG.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3941','43414','12','{#NAME}','');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3942','43415','9','{#TYPE}','3');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3943','43416','8','{#NAME}','{$HPE.PRIMERA.LLD.FILTER.TASK.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3944','43416','9','{#NAME}','{$HPE.PRIMERA.LLD.FILTER.TASK.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3945','43416','8','{#TYPE}','{$HPE.PRIMERA.LLD.FILTER.TASK.TYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3946','43416','9','{#TYPE}','{$HPE.PRIMERA.LLD.FILTER.TASK.TYPE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3947','43417','8','{#NAME}','{$HPE.PRIMERA.VOLUME.NAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3948','43417','9','{#NAME}','{$HPE.PRIMERA.VOLUME.NAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3949','42985','8','{#SERVICE_NAMESPACE}','{$CONSUL.LLD.FILTER.SERVICE_NAMESPACE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3950','42985','9','{#SERVICE_NAMESPACE}','{$CONSUL.LLD.FILTER.SERVICE_NAMESPACE.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3951','43661','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3952','43661','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3953','43661','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3954','43661','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3955','43661','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3956','43661','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3957','43661','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3958','43661','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3959','43661','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3960','43661','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3961','43661','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}');
INSERT INTO `item_condition` (`item_conditionid`,`itemid`,`operator`,`macro`,`value`) values ('3962','43661','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}');
INSERT INTO `item_rtdata` (`itemid`) values ('10073');
INSERT INTO `item_rtdata` (`itemid`) values ('10074');
INSERT INTO `item_rtdata` (`itemid`) values ('10075');
INSERT INTO `item_rtdata` (`itemid`) values ('10076');
INSERT INTO `item_rtdata` (`itemid`) values ('10077');
INSERT INTO `item_rtdata` (`itemid`) values ('10078');
INSERT INTO `item_rtdata` (`itemid`) values ('23252');
INSERT INTO `item_rtdata` (`itemid`) values ('23253');
INSERT INTO `item_rtdata` (`itemid`) values ('23255');
INSERT INTO `item_rtdata` (`itemid`) values ('23256');
INSERT INTO `item_rtdata` (`itemid`) values ('23257');
INSERT INTO `item_rtdata` (`itemid`) values ('23258');
INSERT INTO `item_rtdata` (`itemid`) values ('23259');
INSERT INTO `item_rtdata` (`itemid`) values ('23260');
INSERT INTO `item_rtdata` (`itemid`) values ('23261');
INSERT INTO `item_rtdata` (`itemid`) values ('23262');
INSERT INTO `item_rtdata` (`itemid`) values ('23264');
INSERT INTO `item_rtdata` (`itemid`) values ('23265');
INSERT INTO `item_rtdata` (`itemid`) values ('23266');
INSERT INTO `item_rtdata` (`itemid`) values ('23267');
INSERT INTO `item_rtdata` (`itemid`) values ('23268');
INSERT INTO `item_rtdata` (`itemid`) values ('23269');
INSERT INTO `item_rtdata` (`itemid`) values ('23270');
INSERT INTO `item_rtdata` (`itemid`) values ('23271');
INSERT INTO `item_rtdata` (`itemid`) values ('23272');
INSERT INTO `item_rtdata` (`itemid`) values ('23273');
INSERT INTO `item_rtdata` (`itemid`) values ('23274');
INSERT INTO `item_rtdata` (`itemid`) values ('23275');
INSERT INTO `item_rtdata` (`itemid`) values ('23276');
INSERT INTO `item_rtdata` (`itemid`) values ('23277');
INSERT INTO `item_rtdata` (`itemid`) values ('23328');
INSERT INTO `item_rtdata` (`itemid`) values ('23620');
INSERT INTO `item_rtdata` (`itemid`) values ('23625');
INSERT INTO `item_rtdata` (`itemid`) values ('23628');
INSERT INTO `item_rtdata` (`itemid`) values ('23635');
INSERT INTO `item_rtdata` (`itemid`) values ('23662');
INSERT INTO `item_rtdata` (`itemid`) values ('23664');
INSERT INTO `item_rtdata` (`itemid`) values ('25367');
INSERT INTO `item_rtdata` (`itemid`) values ('25371');
INSERT INTO `item_rtdata` (`itemid`) values ('25667');
INSERT INTO `item_rtdata` (`itemid`) values ('25668');
INSERT INTO `item_rtdata` (`itemid`) values ('28249');
INSERT INTO `item_rtdata` (`itemid`) values ('28534');
INSERT INTO `item_rtdata` (`itemid`) values ('28536');
INSERT INTO `item_rtdata` (`itemid`) values ('28538');
INSERT INTO `item_rtdata` (`itemid`) values ('29823');
INSERT INTO `item_rtdata` (`itemid`) values ('33024');
INSERT INTO `item_rtdata` (`itemid`) values ('33025');
INSERT INTO `item_rtdata` (`itemid`) values ('33026');
INSERT INTO `item_rtdata` (`itemid`) values ('33027');
INSERT INTO `item_rtdata` (`itemid`) values ('34318');
INSERT INTO `item_rtdata` (`itemid`) values ('34319');
INSERT INTO `item_rtdata` (`itemid`) values ('35275');
INSERT INTO `item_rtdata` (`itemid`) values ('35276');
INSERT INTO `item_rtdata` (`itemid`) values ('35277');
INSERT INTO `item_rtdata` (`itemid`) values ('39805');
INSERT INTO `item_rtdata` (`itemid`) values ('39807');
INSERT INTO `item_rtdata` (`itemid`) values ('39823');
INSERT INTO `item_rtdata` (`itemid`) values ('42227');
INSERT INTO `item_rtdata` (`itemid`) values ('42228');
INSERT INTO `item_rtdata` (`itemid`) values ('42229');
INSERT INTO `item_rtdata` (`itemid`) values ('42230');
INSERT INTO `item_rtdata` (`itemid`) values ('42231');
INSERT INTO `item_rtdata` (`itemid`) values ('42232');
INSERT INTO `item_rtdata` (`itemid`) values ('42233');
INSERT INTO `item_rtdata` (`itemid`) values ('42234');
INSERT INTO `item_rtdata` (`itemid`) values ('42235');
INSERT INTO `item_rtdata` (`itemid`) values ('42236');
INSERT INTO `item_rtdata` (`itemid`) values ('42237');
INSERT INTO `item_rtdata` (`itemid`) values ('42238');
INSERT INTO `item_rtdata` (`itemid`) values ('42239');
INSERT INTO `item_rtdata` (`itemid`) values ('42240');
INSERT INTO `item_rtdata` (`itemid`) values ('42241');
INSERT INTO `item_rtdata` (`itemid`) values ('42242');
INSERT INTO `item_rtdata` (`itemid`) values ('42243');
INSERT INTO `item_rtdata` (`itemid`) values ('42244');
INSERT INTO `item_rtdata` (`itemid`) values ('42245');
INSERT INTO `item_rtdata` (`itemid`) values ('42246');
INSERT INTO `item_rtdata` (`itemid`) values ('42247');
INSERT INTO `item_rtdata` (`itemid`) values ('42248');
INSERT INTO `item_rtdata` (`itemid`) values ('42249');
INSERT INTO `item_rtdata` (`itemid`) values ('42250');
INSERT INTO `item_rtdata` (`itemid`) values ('42251');
INSERT INTO `item_rtdata` (`itemid`) values ('42252');
INSERT INTO `item_rtdata` (`itemid`) values ('42253');
INSERT INTO `item_rtdata` (`itemid`) values ('42254');
INSERT INTO `item_rtdata` (`itemid`) values ('42255');
INSERT INTO `item_rtdata` (`itemid`) values ('42256');
INSERT INTO `item_rtdata` (`itemid`) values ('42257');
INSERT INTO `item_rtdata` (`itemid`) values ('42258');
INSERT INTO `item_rtdata` (`itemid`) values ('42259');
INSERT INTO `item_rtdata` (`itemid`) values ('42260');
INSERT INTO `item_rtdata` (`itemid`) values ('42261');
INSERT INTO `item_rtdata` (`itemid`) values ('42262');
INSERT INTO `item_rtdata` (`itemid`) values ('42263');
INSERT INTO `item_rtdata` (`itemid`) values ('42264');
INSERT INTO `item_rtdata` (`itemid`) values ('42265');
INSERT INTO `item_rtdata` (`itemid`) values ('42266');
INSERT INTO `item_rtdata` (`itemid`) values ('42269');
INSERT INTO `item_rtdata` (`itemid`) values ('42270');
INSERT INTO `item_rtdata` (`itemid`) values ('42274');
INSERT INTO `item_rtdata` (`itemid`) values ('42275');
INSERT INTO `item_rtdata` (`itemid`) values ('42276');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1','21202','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4','21205','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5','21206','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6','21207','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7','21208','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('8','21210','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('9','21212','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('10','21214','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('11','21216','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('12','21217','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('13','21218','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('14','21219','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('15','21220','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('16','21221','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('17','21222','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('18','21223','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('19','21224','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('20','21225','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('21','21226','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('22','21227','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('23','21228','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('24','21229','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('25','21230','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('26','21231','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('27','21232','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('28','21233','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('29','21234','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('30','21235','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('31','21236','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('32','21237','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('33','17410','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('34','17411','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('35','17412','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('36','17413','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('37','17414','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('38','17415','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('39','17416','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('40','17417','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('41','18522','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('42','17419','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('43','17420','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('44','17421','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('45','18523','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('46','17423','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('47','18524','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('48','17425','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('49','17426','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('50','18525','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('51','16886','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('52','16887','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('53','15944','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('54','15943','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('55','15947','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('56','16888','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('57','15948','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('58','15951','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('59','15952','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('60','15950','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('61','15949','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('62','17428','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('63','17429','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('64','17430','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('65','17431','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('66','17432','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('67','17433','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('68','17434','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('69','17353','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('70','17354','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('71','17355','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('72','17356','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('73','17358','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('74','17357','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('75','17359','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('76','18960','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('77','18961','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('78','18962','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('79','18963','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('80','18964','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('81','16743','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('82','16744','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('83','16745','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('84','16746','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('85','16747','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('86','16775','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('87','16776','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('88','16777','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('89','16779','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('90','16780','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('91','16778','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('92','16781','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('93','16782','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('94','16783','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('95','16784','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('96','16785','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('97','16774','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('98','16786','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('99','16787','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('100','16788','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('101','16789','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('102','16791','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('103','16790','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('104','16792','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('105','16793','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('106','16794','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('107','16795','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('108','16890','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('109','16891','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('110','16892','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('111','16893','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('112','16894','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('113','16895','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('114','16896','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('115','16897','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('116','16898','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('117','16899','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('118','16900','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('119','16889','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('120','16901','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('121','17435','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('122','17436','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('123','17437','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('124','17438','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('125','17439','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('126','17440','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('127','17441','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('128','17442','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('129','17443','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('130','17444','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('131','17445','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('132','17446','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('133','17447','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('134','17448','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('135','17449','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('136','17450','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('137','17451','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('138','17452','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('139','17453','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('140','17454','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('141','13544','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('142','17076','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('143','17077','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('144','17078','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('145','17079','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('149','17066','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('150','17067','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('158','17075','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('159','17456','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('160','17457','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('161','17458','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('162','17459','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('163','17460','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('164','17461','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('165','17462','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('166','17463','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('167','17455','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('168','18526','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('170','17466','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('172','17468','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('173','17469','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('174','17470','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('175','17471','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('176','17472','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('177','17473','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('178','17474','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('179','17475','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('180','17476','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('181','17477','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('182','17478','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('183','17479','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('184','17480','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('185','17481','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('186','17482','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('187','17483','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('188','17484','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('189','17485','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('190','17486','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('191','17487','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('192','16644','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('193','16645','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('194','16646','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('195','16647','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('196','16648','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('197','16649','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('198','16650','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('199','16651','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('200','16652','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('201','16653','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('202','16654','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('203','16655','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('204','18965','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('205','16656','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('206','16657','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('207','16658','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('208','16659','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('209','16660','scope','avialability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('210','16661','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('211','16662','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('212','16809','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('213','16810','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('214','16665','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('215','16666','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('216','16667','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('217','16668','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('218','16669','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('219','16670','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('220','16671','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('221','16672','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('222','18966','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('223','16673','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('224','16674','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('225','16675','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('226','16676','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('227','16677','scope','avialability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('228','13546','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('229','16902','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('230','16903','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('231','16904','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('232','16905','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('233','16906','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('234','16907','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('235','16908','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('236','16909','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('237','16910','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('238','16911','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('239','16912','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('240','16913','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('241','16914','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('242','16915','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('243','16916','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('244','16917','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('245','13547','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('246','17957','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('247','17958','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('248','17959','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('249','17960','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('250','17961','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('251','17953','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('252','17954','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('253','17955','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('254','17956','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('255','17962','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('256','17963','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('257','17964','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('258','17488','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('259','17489','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('260','17490','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('261','17491','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('262','17492','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('263','17493','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('264','17494','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('265','17495','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('266','17496','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('267','17497','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('268','17498','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('269','21209','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('270','21211','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('271','21213','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('272','21215','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('273','13548','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('274','16750','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('275','16751','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('276','16752','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('277','16753','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('278','16754','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('279','16755','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('280','16748','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('281','16749','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('282','15955','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('283','15954','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('284','15956','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('285','15958','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('286','15957','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('287','16678','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('288','15961','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('289','15960','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('290','15962','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('291','16679','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('292','15963','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('293','18967','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('294','18968','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('295','18969','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('296','18970','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('297','18971','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('298','18972','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('299','18973','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('300','18974','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('301','18975','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('302','13549','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('303','13550','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('309','21241','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('310','21242','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('311','21243','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('312','21244','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('313','21245','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('314','21246','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('320','21250','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('327','21255','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('328','21256','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('329','21257','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('330','21258','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('331','21259','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('332','21260','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('339','17089','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('340','17090','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('341','17091','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('343','17093','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('344','17094','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('345','17095','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('346','17096','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('348','17098','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('349','17099','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('351','17101','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('352','17102','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('353','17103','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('354','13551','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('355','16442','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('356','16257','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('357','16256','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('358','16255','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('359','16447','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('360','16446','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('361','16445','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('362','16250','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('363','16251','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('364','16254','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('365','16443','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('366','18207','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('367','18208','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('368','18209','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('369','18210','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('370','18211','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('371','18212','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('372','18213','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('373','16258','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('374','16259','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('375','16270','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('376','16269','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('377','16448','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('378','16452','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('379','16451','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('380','16450','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('381','16264','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('382','16265','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('383','16268','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('384','18214','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('385','18215','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('386','18216','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('387','18217','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('388','18218','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('389','18219','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('390','18220','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('391','16271','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('392','18027','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('393','18028','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('394','18029','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('395','18030','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('396','13552','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('397','17370','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('398','17371','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('399','17372','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('400','17373','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('401','18527','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('402','17368','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('403','17368','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('404','17369','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('405','17369','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('406','13553','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('407','18976','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('408','18977','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('409','13285','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('410','17499','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('411','17500','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('412','17501','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('413','19651','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('414','19652','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('415','19653','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('416','19654','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('417','17503','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('418','17504','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('419','17505','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('420','17506','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('421','17507','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('422','17508','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('423','17509','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('424','17510','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('425','17502','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('426','17511','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('427','17512','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('428','17513','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('429','18031','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('430','17515','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('435','17518','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('436','17518','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('437','17519','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('438','17519','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('439','17520','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('440','18032','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('441','18910','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('442','18911','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('443','18912','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('444','18913','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('445','18914','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('446','18915','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('447','18916','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('448','18917','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('449','18918','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('450','18919','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('451','18920','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('452','18921','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('453','18922','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('454','18923','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('457','18926','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('458','17533','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('459','13521','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('460','13534','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('461','13522','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('462','13535','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('463','17534','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('464','13523','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('465','13524','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('466','13525','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('467','13526','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('468','13564','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('469','13527','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('470','13528','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('471','21201','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('472','13529','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('473','15913','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('474','15914','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('475','13530','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('476','13531','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('477','13565','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('478','13532','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('479','13533','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('480','15641','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('481','13520','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('482','13517','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('483','13517','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('484','21265','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('485','21266','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('486','15640','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('487','15640','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('488','13518','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('489','13518','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('490','13519','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('491','13519','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('526','13080','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('527','13566','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('528','16273','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('529','17535','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('530','13081','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('531','13083','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('532','13084','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('533','17536','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('534','13085','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('535','13086','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('536','13087','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('537','13088','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('538','13562','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('539','13089','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('540','13275','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('541','15853','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('542','15855','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('543','21197','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('544','13091','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('545','13568','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('546','13569','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('547','13092','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('548','18530','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('549','18531','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('550','13093','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('551','18978','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('552','13441','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('553','13559','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('554','13094','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('555','13095','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('556','18979','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('557','13096','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('558','13097','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('559','13023','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('560','13015','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('561','13015','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('562','13074','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('563','13074','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('564','13557','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('565','13557','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('566','18980','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('567','13536','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('568','13536','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('569','13073','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('570','13073','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('571','13017','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('572','13017','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('573','13019','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('574','13019','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('575','13467','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('576','13567','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('577','16274','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('578','17537','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('579','13468','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('580','13470','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('581','13471','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('582','17538','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('583','13472','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('584','13473','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('585','13474','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('586','13475','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('587','13563','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('588','13476','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('589','13477','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('590','15854','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('591','15856','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('592','21198','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('593','13479','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('594','13570','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('595','13571','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('596','13480','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('597','18532','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('598','18533','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('599','13481','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('600','18981','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('601','13482','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('602','13560','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('603','13483','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('604','13484','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('605','18982','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('606','13485','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('607','13436','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('608','13486','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('609','13487','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('610','13487','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('611','13075','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('612','13075','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('613','13558','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('614','13558','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('615','18983','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('616','13537','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('617','13537','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('618','13488','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('619','13488','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('620','13489','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('621','13489','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('622','13490','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('623','13490','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('624','21194','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('625','21195','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('626','15864','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('627','15865','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('628','16272','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('629','17531','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('630','15866','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('631','15867','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('632','15868','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('633','17532','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('634','15869','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('635','15870','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('636','15871','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('637','15872','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('638','15873','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('639','15874','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('640','15875','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('641','15888','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('642','15889','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('643','21199','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('644','15876','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('645','15877','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('646','15878','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('647','15879','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('648','18528','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('649','18529','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('650','15880','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('651','18984','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('652','15881','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('653','15882','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('654','15883','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('655','15884','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('656','18985','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('657','15885','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('658','15887','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('659','15857','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('660','15857','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('661','15862','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('662','15862','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('663','15886','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('664','15886','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('665','16919','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('666','15861','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('667','15861','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('668','15858','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('669','15858','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('670','15859','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('671','15859','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('672','15860','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('673','15860','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('674','15863','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('675','21196','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('676','17522','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('677','17523','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('678','17524','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('680','17526','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('681','17521','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('682','17527','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('683','17528','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('684','17967','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('685','17968','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('686','18033','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('687','17970','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('688','17971','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('689','17965','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('690','17966','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('691','17972','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('692','17973','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('693','17974','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('694','17975','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('695','17976','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('696','17539','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('697','17540','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('698','17541','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('699','17542','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('700','17543','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('701','17544','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('702','16824','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('703','16825','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('704','16826','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('705','16827','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('706','16829','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('707','16830','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('708','16831','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('709','16833','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('710','16832','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('711','16834','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('712','16835','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('713','16921','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('714','16920','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('715','16836','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('716','16837','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('717','16838','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('718','16839','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('719','16840','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('720','18986','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('721','18987','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('722','18988','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('723','18989','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('724','18990','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('725','18991','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('726','18992','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('727','18993','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('728','18994','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('729','18995','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('730','18996','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('731','18997','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('732','18998','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('733','18999','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('734','19000','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('735','19001','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('736','19002','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('737','19003','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('738','19004','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('739','19005','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('740','19006','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('741','19007','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('742','19008','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('743','19009','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('744','19010','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('745','17977','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('746','17978','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('747','17979','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('748','17980','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('749','17981','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('750','17982','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('751','17982','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('752','17983','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('753','17984','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('754','17985','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('755','17986','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('756','17987','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('757','17987','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('758','17988','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('759','17988','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('760','17989','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('761','17989','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('762','17990','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('763','17991','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('764','17992','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('765','17993','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('766','18034','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('767','17995','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('768','17996','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('769','17997','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('770','17998','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('771','17999','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('772','18000','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('773','18001','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('774','19655','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('775','19656','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('776','19657','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('777','19658','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('778','19659','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('779','18222','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('780','18223','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('781','18224','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('782','18225','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('783','18226','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('784','18227','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('785','18221','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('786','18228','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('787','18229','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('788','19011','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('789','18231','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('790','18232','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('791','18233','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('792','18234','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('794','18236','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('795','18237','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('796','18238','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('797','18239','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('798','16927','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('799','16928','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('800','16929','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('801','16930','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('802','16931','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('803','16932','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('804','16933','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('805','16934','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('806','16935','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('807','16936','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('808','16937','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('809','16938','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('810','17081','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('811','17082','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('812','17083','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('813','16940','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('814','16939','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('815','16941','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('816','18534','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('817','18535','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('818','16944','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('819','17084','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('820','16925','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('821','17080','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('822','16946','availability-group','{#GROUP_NAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('823','16946','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('824','16947','availability-group','{#GROUP_NAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('825','16947','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('826','16948','availability-group','{#GROUP_NAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('827','16948','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('828','16949','availability-group','{#GROUP_NAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('829','16949','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('830','18536','database','{#DBNAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('831','18536','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('832','18537','database','{#DBNAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('833','18537','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('834','18538','database','{#DBNAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('835','18538','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('836','18539','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('837','18540','database','{#DBNAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('838','18540','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('839','18541','database','{#DBNAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('840','18541','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('841','16951','database','{#DBNAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('842','16951','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('843','16950','database','{#DBNAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('844','16950','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('845','16954','database','{#DBNAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('846','16954','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('847','16955','database','{#DBNAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('848','16955','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('849','18542','mssql-job','{#JOBNAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('850','18542','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('851','18543','mssql-job','{#JOBNAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('852','18543','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('853','16956','availability-group','{#GROUP_NAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('854','16956','local-db','{#DBNAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('855','16956','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('856','16957','availability-group','{#GROUP_NAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('857','16957','local-db','{#DBNAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('858','16957','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('859','16958','availability-group','{#GROUP_NAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('860','16958','local-db','{#DBNAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('861','16958','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('862','16960','mssql-mirroring','{#DBNAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('863','16960','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('864','16961','mssql-mirroring','{#DBNAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('865','16961','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('866','16959','mssql-mirroring','{#DBNAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('867','16959','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('868','16962','mssql-mirroring','{#DBNAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('869','16962','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('870','18240','availability-group','{#GROUP_NAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('871','18240','non-local-db','{#DBNAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('872','18240','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('873','18241','availability-group','{#GROUP_NAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('874','18241','non-local-db','{#DBNAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('875','18241','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('876','16965','availability-group','{#GROUP_NAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('877','16965','replica','{#REPLICA_NAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('878','16965','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('879','16966','availability-group','{#GROUP_NAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('880','16966','replica','{#REPLICA_NAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('881','16966','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('882','16967','availability-group','{#GROUP_NAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('883','16967','replica','{#REPLICA_NAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('884','16967','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('885','16968','availability-group','{#GROUP_NAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('886','16968','replica','{#REPLICA_NAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('887','16968','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('888','16969','availability-group','{#GROUP_NAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('889','16969','replica','{#REPLICA_NAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('890','16969','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('891','16970','availability-group','{#GROUP_NAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('892','16970','replica','{#REPLICA_NAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('893','16970','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('894','16971','availability-group','{#GROUP_NAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('895','16971','replica','{#REPLICA_NAME}');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('896','16971','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('897','16719','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('898','18544','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('899','16721','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('900','16972','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('901','16973','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('902','16974','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('903','16723','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('904','16724','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('905','16975','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('906','16725','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('907','16726','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('908','16727','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('909','16729','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('910','16728','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('911','16730','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('912','16756','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('913','18545','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('914','16758','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('915','16976','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('916','16977','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('917','16978','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('918','16759','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('919','16760','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('920','16979','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('921','16761','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('922','16762','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('923','16763','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('924','16765','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('925','16764','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('926','16766','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('927','16732','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('928','16733','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('929','16734','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('930','18546','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('931','16736','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('932','16980','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('933','16981','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('934','16982','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('935','16737','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('936','16983','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('937','16738','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('938','16739','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('939','16741','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('940','16740','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('941','16742','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('942','17177','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('943','17178','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('944','17179','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('945','17180','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('946','18547','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('947','17182','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('948','17183','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('949','17184','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('950','17185','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('951','17186','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('952','17187','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('953','17188','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('954','17173','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('955','17174','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('956','17175','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('957','17176','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('958','17189','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('959','17190','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('960','17192','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('961','17191','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('962','17193','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('963','17195','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('964','17194','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('965','17197','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('966','17196','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('967','17198','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('968','17199','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('969','17545','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('970','17546','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('971','17547','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('972','17548','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('973','16989','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('974','16990','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('975','16991','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('976','18548','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('977','16993','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('978','16994','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('979','16995','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('980','16997','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('981','16996','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('982','16998','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('983','16999','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('984','17000','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('985','16984','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('986','16985','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('987','16986','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('988','16987','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('989','16988','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('990','17001','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('991','17003','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('992','17002','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('993','17004','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('994','17006','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('995','17005','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('996','17007','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('997','17009','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('998','17008','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('999','17010','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1000','17011','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1001','17549','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1002','17550','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1003','17551','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1004','17552','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1005','17390','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1006','17391','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1007','17392','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1008','17393','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1009','17394','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1010','17395','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1011','17395','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1012','17396','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1013','17397','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1014','17397','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1015','17398','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1016','17399','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1017','17400','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1018','17401','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1019','17402','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1020','17403','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1021','17404','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1022','17405','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1023','17014','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1024','17553','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1025','17016','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1026','17017','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1027','17018','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1028','17019','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1029','16682','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1030','16683','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1031','16684','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1032','16685','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1033','16686','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1034','16687','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1035','16688','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1036','16689','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1037','16690','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1038','16691','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1039','16692','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1040','16693','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1041','16681','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1042','16694','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1043','18002','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1044','18002','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1045','16696','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1046','18549','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1047','18550','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1048','18551','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1049','18552','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1050','18553','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1051','18554','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1052','18555','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1053','18556','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1054','18557','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1055','18559','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1056','18560','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1057','18561','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1058','18562','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1059','18563','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1060','18564','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1061','18565','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1062','18566','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1063','18567','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1064','18568','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1065','18569','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1066','18558','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1067','18570','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1068','18571','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1069','18574','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1070','18573','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1071','22557','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1072','18575','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1073','14941','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1074','21270','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1075','21271','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1076','21271','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1077','21272','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1078','21272','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1079','16593','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1080','16593','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1081','16287','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1082','16289','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1083','16624','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1084','21531','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1085','18035','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1086','18035','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1087','21534','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1088','21534','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1089','21535','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1090','21535','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1091','21536','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1092','21536','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1093','16630','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1094','16630','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1095','16631','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1096','16631','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1097','14251','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1098','14252','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1099','14252','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1100','14253','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1101','14253','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1102','15695','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1103','18242','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1104','18243','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1105','16863','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1106','15671','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1107','18250','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1108','18251','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1109','18251','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1110','16841','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1111','15698','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1112','18294','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1113','18295','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1114','16866','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1127','16196','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1128','16197','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1129','21543','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1130','21544','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1131','21544','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1132','21545','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1133','21545','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1134','16491','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1135','21546','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1136','21546','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1137','16492','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1138','21547','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1139','18108','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1140','18108','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1141','21548','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1142','14322','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1143','15330','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1144','15330','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1145','21549','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1146','21550','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1147','21551','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1148','21551','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1149','21552','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1150','21553','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1151','16494','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1152','16494','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1153','16495','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1154','16495','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1155','14319','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1156','14319','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1157','14318','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1158','14318','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1159','14320','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1160','14320','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1161','21554','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1162','21555','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1163','21555','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1164','21556','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1165','21556','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1166','21557','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1167','21558','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1168','21558','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1169','21559','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1170','21560','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1171','15718','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1172','17554','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1173','17555','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1174','17556','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1175','17557','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1176','15717','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1177','15717','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1178','21561','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1179','21562','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1180','21563','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1181','21563','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1182','21564','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1183','21565','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1184','15719','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1185','15719','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1186','17558','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1187','17559','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1188','17560','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1189','17561','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1190','21566','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1191','21566','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1192','21567','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1193','21567','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1194','21568','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1195','21568','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1196','17562','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1197','17563','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1198','17564','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1199','17565','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1200','21569','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1201','21570','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1202','21570','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1203','21571','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1204','21571','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1205','16496','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1206','14337','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1207','14336','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1208','21572','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1209','21572','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1210','15720','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1211','15720','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1212','15721','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1213','15721','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1214','21573','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1215','18109','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1216','18109','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1217','21574','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1218','15393','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1219','15393','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1220','15394','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1221','21575','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1222','21576','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1223','21577','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1224','21577','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1225','21578','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1226','15391','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1227','15391','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1228','15392','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1229','17322','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1230','17322','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1231','14339','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1232','14339','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1233','14340','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1234','14340','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1235','21579','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1236','21580','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1237','21580','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1238','21581','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1239','21581','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1240','21582','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1241','14364','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1242','14363','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1243','21583','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1244','21583','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1245','21584','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1246','21585','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1247','21585','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1248','21586','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1249','16498','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1250','18110','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1251','18110','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1252','21587','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1253','21588','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1254','21588','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1255','21589','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1256','21589','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1257','21590','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1258','14365','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1259','21591','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1260','21591','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1261','21592','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1262','21593','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1263','21593','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1264','21594','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1265','15381','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1266','15381','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1267','15382','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1268','21595','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1269','21596','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1270','21597','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1271','21597','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1272','21598','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1273','15379','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1274','15379','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1275','15380','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1276','16505','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1277','16505','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1278','16504','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1279','16504','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1280','16506','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1281','16506','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1282','14373','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1283','14373','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1284','14372','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1285','14372','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1286','14374','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1287','14374','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1288','14383','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1289','15385','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1290','15385','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1291','15386','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1292','21599','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1293','21600','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1294','21601','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1295','21601','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1296','21602','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1297','15383','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1298','15383','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1299','15384','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1300','14381','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1301','14381','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1302','14380','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1303','14380','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1304','14382','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1305','14382','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1306','19012','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1307','19013','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1308','19014','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1309','19015','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1310','19015','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1311','19016','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1312','19017','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1313','18298','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1314','18299','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1315','18299','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1316','18300','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1317','18300','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1318','18301','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1319','18302','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1320','18303','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1321','18304','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1322','18305','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1323','18306','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1324','18306','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1325','18307','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1326','18308','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1327','18308','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1328','18309','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1329','18309','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1330','18310','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1331','18310','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1332','18311','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1333','18312','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1334','18313','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1335','18314','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1336','18315','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1337','18316','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1338','18317','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1339','18318','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1340','18319','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1341','18320','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1342','18320','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1343','18321','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1344','18321','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1345','18322','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1346','18322','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1347','18323','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1348','18323','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1349','18324','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1350','18324','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1351','18325','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1352','18326','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1353','18326','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1354','18327','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1355','18327','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1356','18328','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1357','18329','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1358','18330','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1359','18331','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1360','18332','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1361','18333','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1362','18333','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1363','18334','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1364','18335','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1365','18335','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1366','18336','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1367','18336','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1368','18337','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1369','18337','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1370','18338','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1371','18339','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1372','18340','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1373','18341','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1374','18342','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1375','18343','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1376','18344','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1377','18345','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1378','18346','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1379','18347','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1380','18347','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1381','18348','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1382','18348','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1383','18349','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1384','18349','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1385','18350','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1386','18350','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1387','18351','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1388','18351','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1389','18352','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1390','18353','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1391','18353','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1392','18354','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1393','18354','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1394','18355','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1395','18356','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1396','18357','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1397','18358','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1398','18359','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1399','18360','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1400','18360','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1401','18361','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1402','18362','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1403','18362','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1404','18363','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1405','18363','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1406','18364','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1407','18364','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1408','18365','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1409','18366','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1410','18367','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1411','18368','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1412','18369','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1413','18370','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1414','18371','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1415','18372','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1416','18373','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1417','18374','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1418','18374','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1419','18375','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1420','18375','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1421','18376','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1422','18376','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1423','18377','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1424','18377','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1425','18378','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1426','18378','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1427','18379','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1428','18380','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1429','18380','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1430','18381','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1431','18381','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1432','18382','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1433','18383','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1434','18384','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1435','18385','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1436','18386','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1437','18387','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1438','18387','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1439','18388','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1440','18389','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1441','18389','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1442','18390','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1443','18390','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1444','18391','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1445','18391','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1446','18392','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1447','18393','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1448','18394','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1449','18395','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1450','18396','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1451','18397','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1452','18398','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1453','18399','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1454','18400','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1455','18401','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1456','18401','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1457','18402','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1458','18402','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1459','18403','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1460','18403','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1461','18404','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1462','18404','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1463','18405','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1464','18405','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1465','18406','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1466','18407','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1467','18407','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1468','18408','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1469','18408','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1470','18409','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1471','18410','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1472','18411','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1473','18412','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1474','18413','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1475','18414','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1476','18414','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1477','18415','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1478','18416','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1479','18416','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1480','18417','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1481','18417','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1482','18418','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1483','18418','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1484','18419','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1485','18420','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1486','18421','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1487','18422','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1488','18423','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1489','18424','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1490','18425','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1491','18426','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1492','18427','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1493','18428','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1494','18428','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1495','18429','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1496','18429','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1497','18430','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1498','18430','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1499','18431','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1500','18431','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1501','18432','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1502','18432','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1503','14409','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1504','16507','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1505','21603','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1506','21604','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1507','21604','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1508','21605','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1509','21605','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1510','21606','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1511','21607','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1512','21608','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1513','21608','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1514','21609','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1515','21610','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1516','21611','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1517','21612','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1518','21613','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1519','21613','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1520','21614','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1521','21614','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1522','21615','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1523','21616','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1524','21616','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1525','21617','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1526','21618','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1527','21619','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1528','21620','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1529','21621','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1530','21621','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1531','21622','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1532','21622','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1533','21623','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1534','21624','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1535','21624','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1536','21625','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1537','21626','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1538','21627','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1539','16508','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1540','15346','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1541','15346','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1542','15347','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1543','15347','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1544','15344','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1545','15344','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1546','15345','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1547','15345','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1548','17566','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1549','17566','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1550','17567','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1551','17567','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1552','16871','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1553','16871','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1554','18113','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1555','18113','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1556','16514','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1557','16515','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1558','14417','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1559','21628','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1560','21629','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1561','21629','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1562','21630','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1563','21630','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1564','21631','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1565','21631','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1566','21632','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1567','21632','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1568','21633','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1569','21633','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1570','21634','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1571','21634','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1572','21635','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1573','21635','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1574','21636','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1575','21636','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1576','21637','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1577','21638','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1578','21639','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1579','21639','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1580','21640','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1581','21640','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1582','21641','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1583','21641','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1584','21642','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1585','21643','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1586','21644','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1587','21644','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1588','21645','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1589','21646','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1590','21647','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1591','21647','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1592','21648','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1593','21648','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1594','21649','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1595','21649','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1596','21650','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1597','21650','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1598','21651','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1599','21651','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1600','21652','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1601','21653','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1602','21654','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1603','21654','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1604','21655','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1605','21655','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1606','21656','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1607','21656','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1608','21657','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1609','21658','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1610','21659','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1611','21659','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1612','21660','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1613','21661','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1614','21661','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1615','21662','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1616','21662','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1617','21663','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1618','21663','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1619','21664','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1620','21664','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1621','21665','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1622','21665','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1623','21666','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1624','21667','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1625','21667','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1626','21668','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1627','21668','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1628','21669','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1629','21669','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1630','21670','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1631','21671','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1632','15333','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1633','15333','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1634','15334','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1635','16521','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1636','18117','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1637','18117','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1638','21672','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1639','21673','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1640','21674','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1641','21674','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1642','21675','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1643','21676','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1644','15331','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1645','15331','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1646','15332','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1647','14461','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1648','14461','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1649','14460','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1650','14460','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1651','14462','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1652','14462','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1653','14463','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1654','16523','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1655','21677','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1656','21678','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1657','21678','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1658','21679','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1659','21679','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1660','16524','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1661','14474','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1662','21680','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1663','21680','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1664','16525','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1665','21681','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1666','21682','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1667','15367','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1668','15367','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1669','18118','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1670','18118','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1671','21683','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1672','21684','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1673','21685','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1674','21685','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1675','21686','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1676','15366','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1677','15366','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1678','14477','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1679','14477','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1680','14476','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1681','14476','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1682','14478','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1683','14478','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1684','21687','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1685','21688','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1686','21688','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1687','21689','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1688','21689','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1689','16527','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1690','14493','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1691','14492','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1692','21690','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1693','21690','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1694','21691','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1695','21692','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1696','15341','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1697','15341','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1698','18119','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1699','18119','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1700','21693','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1701','21694','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1702','21695','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1703','21695','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1704','21696','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1705','21697','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1706','15340','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1707','15340','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1708','14496','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1709','14496','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1710','14495','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1711','14495','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1712','14497','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1713','14497','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1714','21698','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1715','21699','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1716','21699','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1717','21700','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1718','21700','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1719','14511','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1720','14511','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1721','14513','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1722','14513','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1723','16529','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1724','14515','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1725','14514','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1726','21701','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1727','21701','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1728','16530','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1729','21702','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1730','21703','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1731','17574','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1732','17574','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1733','15370','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1734','15370','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1735','18120','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1736','18120','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1737','21704','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1738','21705','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1739','21706','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1740','21706','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1741','21707','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1742','21708','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1743','15369','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1744','15369','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1745','19660','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1746','19018','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1747','19661','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1748','19662','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1749','19019','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1750','19020','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1751','19021','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1752','19022','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1753','19663','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1754','19023','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1755','19664','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1756','19665','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1757','19666','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1758','19024','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1759','19025','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1760','19026','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1761','19027','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1762','19028','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1763','19667','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1764','19668','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1765','21709','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1766','21710','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1767','21710','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1768','21711','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1769','21711','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1770','21712','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1771','21712','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1772','21713','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1773','21714','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1774','21715','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1775','21716','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1776','21717','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1777','21718','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1778','21719','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1779','21720','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1780','21721','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1781','21721','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1782','21722','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1783','21722','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1784','21723','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1785','21723','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1786','21724','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1787','21725','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1788','14557','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1789','14556','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1790','16532','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1791','15371','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1792','15371','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1793','16533','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1794','18121','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1795','18121','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1796','21726','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1797','21727','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1798','21728','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1799','21728','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1800','21729','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1801','21730','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1802','15372','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1803','15372','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1804','14552','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1805','14552','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1806','14551','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1807','14551','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1808','14553','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1809','14553','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1810','21731','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1811','21732','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1812','21732','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1813','21733','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1814','21733','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1815','16535','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1816','14913','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1817','14912','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1818','21734','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1819','21734','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1820','21735','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1821','21736','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1822','15373','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1823','15373','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1824','15374','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1825','15374','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1826','18122','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1827','18122','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1828','21737','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1829','21738','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1830','21739','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1831','21739','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1832','21740','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1833','21741','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1834','15375','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1835','15375','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1836','15376','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1837','15376','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1838','14915','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1839','14915','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1840','14914','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1841','14914','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1842','14916','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1843','14916','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1844','21742','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1845','21743','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1846','21743','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1847','21744','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1848','21744','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1849','21745','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1850','21745','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1851','21746','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1852','21747','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1853','15395','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1854','15395','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1855','14590','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1856','14590','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1857','14589','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1858','14589','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1859','14591','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1860','14591','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1861','16537','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1862','14592','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1863','16538','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1864','18123','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1865','18123','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1866','21748','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1867','21749','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1868','21750','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1869','21750','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1870','21751','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1871','21752','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1872','21753','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1873','21754','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1874','21754','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1875','21755','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1876','21755','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1877','14603','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1878','21756','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1879','21756','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1880','21757','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1881','21758','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1882','15339','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1883','15339','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1884','21759','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1885','21760','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1886','21761','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1887','21761','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1888','21762','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1889','15337','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1890','15337','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1891','15338','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1892','15338','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1893','17332','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1894','17332','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1895','17333','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1896','17333','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1897','14606','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1898','14606','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1899','14607','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1900','21763','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1901','21764','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1902','21764','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1903','21765','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1904','21765','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1905','14621','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1906','21766','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1907','21766','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1908','15722','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1909','15722','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1910','16540','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1911','21767','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1912','21768','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1913','16541','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1914','18124','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1915','18124','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1916','15377','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1917','15377','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1918','15378','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1919','15378','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1920','14625','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1921','14625','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1922','14624','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1923','14624','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1924','14626','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1925','14626','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1926','21769','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1927','21770','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1928','21771','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1929','21771','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1930','21772','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1931','21773','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1932','18433','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1933','18434','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1934','18434','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1935','18435','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1936','18435','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1937','18436','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1938','18437','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1939','18437','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1940','18438','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1941','18439','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1942','14937','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1943','18440','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1944','18440','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1945','18441','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1946','18442','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1947','18443','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1948','18443','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1949','18444','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1950','18445','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1951','18445','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1952','18446','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1953','18446','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1954','18447','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1955','18447','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1956','18448','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1957','18448','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1958','18449','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1959','18449','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1960','18450','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1961','18450','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1962','18451','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1963','18451','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1964','21774','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1965','21775','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1966','21775','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1967','21776','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1968','21776','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1969','19679','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1970','19680','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1971','21777','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1972','21777','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1973','19681','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1974','21778','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1975','19682','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1976','19682','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1977','21779','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1978','19683','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1979','19684','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1980','19684','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1981','19685','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1982','19685','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1983','19686','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1984','19686','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1985','19687','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1986','19687','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1987','19688','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1988','19688','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1989','19689','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1990','19689','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1991','19690','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1992','19690','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1993','19691','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1994','19691','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1995','19692','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1996','19692','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1997','19693','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1998','19693','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('1999','19694','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2000','19694','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2001','21780','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2002','21781','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2003','21782','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2004','21782','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2005','21783','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2006','19695','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2007','19695','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2008','19696','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2009','19696','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2010','21784','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2011','21785','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2012','21785','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2013','21786','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2014','21786','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2015','19707','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2016','19708','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2017','21787','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2018','21787','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2019','19709','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2020','21788','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2021','19710','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2022','19710','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2023','21789','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2024','19711','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2025','19712','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2026','19712','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2027','19713','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2028','19713','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2029','19714','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2030','19714','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2031','19715','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2032','19715','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2033','19716','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2034','19716','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2035','19717','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2036','19717','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2037','19718','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2038','19718','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2039','19719','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2040','19719','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2041','19720','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2042','19720','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2043','19721','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2044','19721','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2045','19722','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2046','19722','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2047','21790','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2048','21791','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2049','21792','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2050','21792','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2051','21793','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2052','19723','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2053','19723','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2054','19724','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2055','19724','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2056','21794','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2057','21795','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2058','21795','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2059','21796','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2060','21796','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2061','19735','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2062','19736','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2063','21797','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2064','21797','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2065','19737','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2066','21798','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2067','19738','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2068','19738','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2069','21799','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2070','19739','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2071','19740','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2072','19740','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2073','19741','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2074','19741','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2075','19742','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2076','19742','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2077','19743','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2078','19743','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2079','19744','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2080','19744','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2081','19745','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2082','19745','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2083','19746','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2084','19746','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2085','19747','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2086','19747','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2087','19748','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2088','19748','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2089','19749','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2090','19749','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2091','19750','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2092','19750','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2093','21800','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2094','21801','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2095','21802','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2096','21802','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2097','21803','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2098','19751','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2099','19751','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2100','19752','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2101','19752','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2102','21804','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2103','21805','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2104','21805','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2105','21806','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2106','21806','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2107','19763','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2108','19764','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2109','21807','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2110','21807','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2111','19765','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2112','21808','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2113','19766','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2114','19766','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2115','21809','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2116','19767','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2117','19768','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2118','19768','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2119','19769','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2120','19769','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2121','19770','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2122','19770','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2123','19771','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2124','19771','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2125','19772','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2126','19772','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2127','19773','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2128','19773','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2129','19774','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2130','19774','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2131','19775','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2132','19775','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2133','19776','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2134','19776','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2135','19777','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2136','19777','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2137','19778','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2138','19778','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2139','21810','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2140','21811','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2141','21812','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2142','21812','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2143','21813','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2144','19779','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2145','19779','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2146','19780','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2147','19780','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2148','21814','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2149','21815','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2150','21815','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2151','21816','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2152','21816','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2153','19791','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2154','19792','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2155','21817','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2156','21817','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2157','19793','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2158','21818','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2159','19794','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2160','19794','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2161','21819','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2162','19795','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2163','19796','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2164','19796','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2165','19797','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2166','19797','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2167','19798','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2168','19798','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2169','19799','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2170','19799','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2171','19800','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2172','19800','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2173','19801','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2174','19801','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2175','19802','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2176','19802','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2177','19803','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2178','19803','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2179','19804','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2180','19804','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2181','19805','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2182','19805','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2183','19806','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2184','19806','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2185','21820','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2186','21821','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2187','21822','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2188','21822','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2189','21823','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2190','19807','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2191','19807','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2192','19808','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2193','19808','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2194','21824','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2195','21825','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2196','21825','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2197','21826','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2198','21826','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2199','19819','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2200','19820','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2201','21827','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2202','21827','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2203','19821','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2204','21828','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2205','19822','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2206','19822','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2207','21829','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2208','19823','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2209','19824','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2210','19824','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2211','19825','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2212','19825','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2213','19826','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2214','19826','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2215','19827','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2216','19827','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2217','19828','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2218','19828','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2219','19829','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2220','19829','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2221','19830','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2222','19830','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2223','19831','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2224','19831','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2225','19832','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2226','19832','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2227','19833','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2228','19833','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2229','19834','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2230','19834','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2231','21830','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2232','21831','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2233','21832','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2234','21832','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2235','21833','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2236','19835','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2237','19835','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2238','19836','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2239','19836','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2240','21834','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2241','21835','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2242','21835','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2243','21836','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2244','21836','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2245','19847','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2246','19848','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2247','21837','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2248','21837','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2249','19849','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2250','21838','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2251','19850','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2252','19850','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2253','21839','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2254','19851','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2255','19852','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2256','19852','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2257','19853','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2258','19853','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2259','19854','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2260','19854','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2261','19855','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2262','19855','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2263','19856','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2264','19856','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2265','19857','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2266','19857','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2267','19858','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2268','19858','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2269','19859','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2270','19859','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2271','19860','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2272','19860','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2273','19861','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2274','19861','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2275','19862','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2276','19862','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2277','21840','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2278','21841','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2279','21842','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2280','21842','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2281','21843','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2282','19863','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2283','19863','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2284','19864','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2285','19864','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2286','21844','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2287','21845','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2288','21845','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2289','21846','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2290','21846','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2291','19875','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2292','19876','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2293','21847','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2294','21847','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2295','19877','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2296','21848','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2297','19878','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2298','19878','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2299','21849','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2300','19879','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2301','19880','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2302','19880','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2303','19881','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2304','19881','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2305','19882','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2306','19882','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2307','19883','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2308','19883','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2309','19884','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2310','19884','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2311','19885','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2312','19885','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2313','19886','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2314','19886','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2315','19887','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2316','19887','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2317','19888','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2318','19888','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2319','19889','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2320','19889','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2321','19890','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2322','19890','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2323','21850','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2324','21851','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2325','21852','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2326','21852','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2327','21853','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2328','19891','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2329','19891','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2330','19892','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2331','19892','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2332','21854','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2333','21855','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2334','21855','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2335','21856','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2336','21856','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2337','19903','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2338','19904','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2339','21857','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2340','21857','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2341','19905','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2342','21858','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2343','19906','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2344','19906','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2345','21859','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2346','19907','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2347','19908','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2348','19908','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2349','19909','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2350','19909','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2351','19910','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2352','19910','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2353','19911','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2354','19911','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2355','19912','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2356','19912','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2357','19913','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2358','19913','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2359','19914','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2360','19914','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2361','19915','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2362','19915','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2363','19916','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2364','19916','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2365','19917','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2366','19917','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2367','19918','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2368','19918','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2369','21860','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2370','21861','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2371','21862','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2372','21862','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2373','21863','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2374','19919','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2375','19919','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2376','19920','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2377','19920','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2378','21864','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2379','21865','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2380','21865','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2381','21866','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2382','21866','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2383','19931','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2384','19932','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2385','21867','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2386','21867','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2387','19933','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2388','21868','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2389','19934','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2390','19934','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2391','21869','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2392','19935','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2393','19936','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2394','19936','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2395','19937','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2396','19937','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2397','19938','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2398','19938','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2399','19939','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2400','19939','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2401','19940','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2402','19940','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2403','19941','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2404','19941','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2405','19942','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2406','19942','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2407','19943','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2408','19943','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2409','19944','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2410','19944','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2411','19945','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2412','19945','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2413','19946','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2414','19946','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2415','21870','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2416','21871','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2417','21872','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2418','21872','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2419','21873','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2420','19947','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2421','19947','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2422','19948','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2423','19948','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2424','21874','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2425','21875','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2426','21875','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2427','21876','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2428','21876','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2429','19959','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2430','19960','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2431','21877','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2432','21877','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2433','19961','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2434','21878','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2435','19962','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2436','19962','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2437','21879','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2438','19963','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2439','19964','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2440','19964','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2441','19965','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2442','19965','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2443','19966','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2444','19966','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2445','19967','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2446','19967','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2447','19968','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2448','19968','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2449','19969','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2450','19969','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2451','19970','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2452','19970','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2453','19971','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2454','19971','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2455','19972','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2456','19972','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2457','19973','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2458','19973','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2459','19974','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2460','19974','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2461','21880','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2462','21881','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2463','21882','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2464','21882','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2465','21883','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2466','19975','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2467','19975','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2468','19976','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2469','19976','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2470','21884','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2471','21885','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2472','21885','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2473','21886','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2474','21886','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2475','19987','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2476','19988','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2477','21887','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2478','21887','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2479','19989','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2480','21888','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2481','19990','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2482','19990','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2483','21889','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2484','19991','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2485','19992','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2486','19992','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2487','19993','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2488','19993','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2489','19994','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2490','19994','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2491','19995','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2492','19995','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2493','19996','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2494','19996','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2495','19997','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2496','19997','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2497','19998','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2498','19998','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2499','19999','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2500','19999','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2501','20000','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2502','20000','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2503','20001','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2504','20001','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2505','20002','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2506','20002','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2507','21890','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2508','21891','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2509','21892','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2510','21892','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2511','21893','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2512','20003','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2513','20003','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2514','20004','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2515','20004','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2516','21894','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2517','21895','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2518','21895','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2519','21896','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2520','21896','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2521','20015','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2522','20016','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2523','21897','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2524','21897','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2525','20017','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2526','21898','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2527','20018','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2528','20018','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2529','21899','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2530','20019','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2531','20020','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2532','20020','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2533','20021','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2534','20021','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2535','20022','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2536','20022','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2537','20023','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2538','20023','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2539','20024','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2540','20024','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2541','20025','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2542','20025','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2543','20026','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2544','20026','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2545','20027','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2546','20027','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2547','20028','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2548','20028','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2549','20029','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2550','20029','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2551','20030','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2552','20030','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2553','21900','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2554','21901','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2555','21902','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2556','21902','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2557','21903','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2558','20031','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2559','20031','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2560','20032','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2561','20032','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2562','21904','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2563','21905','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2564','21905','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2565','21906','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2566','21906','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2567','20043','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2568','20044','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2569','21907','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2570','21907','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2571','20045','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2572','21908','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2573','20046','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2574','20046','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2575','21909','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2576','20047','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2577','20048','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2578','20048','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2579','20049','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2580','20049','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2581','20050','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2582','20050','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2583','20051','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2584','20051','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2585','20052','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2586','20052','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2587','20053','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2588','20053','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2589','20054','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2590','20054','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2591','20055','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2592','20055','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2593','20056','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2594','20056','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2595','20057','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2596','20057','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2597','20058','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2598','20058','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2599','21910','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2600','21911','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2601','21912','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2602','21912','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2603','21913','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2604','20059','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2605','20059','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2606','20060','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2607','20060','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2608','21914','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2609','21915','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2610','21915','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2611','21916','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2612','21916','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2613','20071','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2614','20072','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2615','21917','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2616','21917','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2617','20073','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2618','21918','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2619','20074','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2620','20074','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2621','21919','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2622','20075','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2623','20076','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2624','20076','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2625','20077','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2626','20077','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2627','20078','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2628','20078','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2629','20079','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2630','20079','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2631','20080','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2632','20080','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2633','20081','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2634','20081','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2635','20082','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2636','20082','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2637','20083','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2638','20083','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2639','20084','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2640','20084','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2641','20085','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2642','20085','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2643','20086','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2644','20086','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2645','21920','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2646','21921','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2647','21922','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2648','21922','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2649','21923','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2650','20087','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2651','20087','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2652','20088','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2653','20088','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2654','21924','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2655','21925','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2656','21925','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2657','21926','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2658','21926','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2659','20099','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2660','20100','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2661','21927','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2662','21927','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2663','20101','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2664','21928','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2665','20102','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2666','20102','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2667','21929','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2668','20103','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2669','20104','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2670','20104','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2671','20105','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2672','20105','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2673','20106','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2674','20106','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2675','20107','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2676','20107','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2677','20108','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2678','20108','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2679','20109','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2680','20109','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2681','20110','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2682','20110','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2683','20111','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2684','20111','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2685','20112','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2686','20112','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2687','20113','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2688','20113','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2689','20114','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2690','20114','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2691','21930','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2692','21931','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2693','21932','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2694','21932','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2695','21933','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2696','20115','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2697','20115','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2698','20116','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2699','20116','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2700','21934','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2701','21935','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2702','21935','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2703','21936','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2704','21936','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2705','20127','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2706','20128','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2707','21937','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2708','21937','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2709','20129','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2710','21938','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2711','20130','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2712','20130','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2713','21939','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2714','20131','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2715','20132','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2716','20132','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2717','20133','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2718','20133','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2719','20134','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2720','20134','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2721','20135','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2722','20135','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2723','20136','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2724','20136','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2725','20137','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2726','20137','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2727','20138','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2728','20138','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2729','20139','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2730','20139','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2731','20140','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2732','20140','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2733','20141','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2734','20141','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2735','20142','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2736','20142','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2737','21940','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2738','21941','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2739','21942','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2740','21942','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2741','21943','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2742','20143','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2743','20143','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2744','20144','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2745','20144','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2746','21944','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2747','21945','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2748','21945','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2749','21946','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2750','21946','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2751','20155','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2752','20156','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2753','21947','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2754','21947','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2755','20157','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2756','21948','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2757','20158','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2758','20158','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2759','21949','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2760','20159','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2761','20160','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2762','20160','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2763','20161','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2764','20161','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2765','20162','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2766','20162','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2767','20163','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2768','20163','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2769','20164','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2770','20164','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2771','20165','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2772','20165','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2773','20166','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2774','20166','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2775','20167','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2776','20167','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2777','20168','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2778','20168','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2779','20169','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2780','20169','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2781','20170','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2782','20170','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2783','21950','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2784','21951','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2785','21952','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2786','21952','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2787','21953','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2788','20171','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2789','20171','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2790','20172','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2791','20172','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2792','21954','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2793','21955','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2794','21955','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2795','21956','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2796','21956','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2797','20183','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2798','20184','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2799','21957','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2800','21957','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2801','20185','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2802','21958','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2803','20186','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2804','20186','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2805','21959','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2806','20187','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2807','20188','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2808','20188','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2809','20189','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2810','20189','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2811','20190','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2812','20190','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2813','20191','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2814','20191','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2815','20192','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2816','20192','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2817','20193','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2818','20193','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2819','20194','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2820','20194','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2821','20195','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2822','20195','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2823','20196','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2824','20196','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2825','20197','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2826','20197','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2827','20198','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2828','20198','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2829','21960','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2830','21961','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2831','21962','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2832','21962','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2833','21963','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2834','20199','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2835','20199','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2836','20200','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2837','20200','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2838','21964','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2839','21965','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2840','21965','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2841','21966','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2842','21966','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2843','20211','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2844','20212','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2845','21967','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2846','21967','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2847','20213','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2848','21968','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2849','20214','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2850','20214','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2851','21969','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2852','20215','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2853','20216','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2854','20216','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2855','20217','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2856','20217','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2857','20218','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2858','20218','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2859','20219','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2860','20219','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2861','20220','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2862','20220','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2863','20221','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2864','20221','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2865','20222','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2866','20222','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2867','20223','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2868','20223','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2869','20224','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2870','20224','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2871','20225','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2872','20225','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2873','20226','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2874','20226','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2875','21970','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2876','21971','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2877','21972','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2878','21972','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2879','21973','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2880','20227','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2881','20227','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2882','20228','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2883','20228','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2884','21974','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2885','21975','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2886','21975','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2887','21976','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2888','21976','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2889','20239','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2890','20240','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2891','21977','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2892','21977','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2893','20241','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2894','21978','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2895','20242','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2896','20242','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2897','21979','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2898','20243','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2899','20244','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2900','20244','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2901','20245','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2902','20245','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2903','20246','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2904','20246','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2905','20247','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2906','20247','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2907','20248','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2908','20248','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2909','20249','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2910','20249','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2911','20250','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2912','20250','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2913','20251','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2914','20251','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2915','20252','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2916','20252','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2917','20253','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2918','20253','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2919','20254','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2920','20254','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2921','21980','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2922','21981','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2923','21982','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2924','21982','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2925','21983','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2926','20255','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2927','20255','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2928','20256','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2929','20256','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2930','21984','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2931','21985','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2932','21985','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2933','21986','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2934','21986','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2935','20267','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2936','20268','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2937','21987','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2938','21987','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2939','20269','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2940','21988','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2941','20270','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2942','20270','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2943','21989','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2944','20271','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2945','20272','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2946','20272','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2947','20273','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2948','20273','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2949','20274','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2950','20274','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2951','20275','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2952','20275','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2953','20276','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2954','20276','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2955','20277','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2956','20277','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2957','20278','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2958','20278','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2959','20279','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2960','20279','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2961','20280','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2962','20280','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2963','20281','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2964','20281','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2965','20282','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2966','20282','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2967','21990','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2968','21991','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2969','21992','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2970','21992','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2971','21993','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2972','20283','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2973','20283','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2974','20284','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2975','20284','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2976','21994','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2977','21995','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2978','21995','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2979','21996','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2980','21996','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2981','20295','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2982','20296','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2983','21997','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2984','21997','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2985','20297','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2986','21998','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2987','20298','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2988','20298','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2989','21999','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2990','20299','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2991','20300','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2992','20300','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2993','20301','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2994','20301','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2995','20302','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2996','20302','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2997','20303','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2998','20303','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('2999','20304','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3000','20304','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3001','20305','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3002','20305','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3003','20306','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3004','20306','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3005','20307','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3006','20307','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3007','20308','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3008','20308','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3009','20309','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3010','20309','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3011','20310','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3012','20310','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3013','22000','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3014','22001','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3015','22002','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3016','22002','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3017','22003','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3018','20311','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3019','20311','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3020','20312','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3021','20312','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3022','22004','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3023','22005','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3024','22005','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3025','22006','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3026','22006','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3027','20323','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3028','20324','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3029','22007','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3030','22007','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3031','20325','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3032','22008','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3033','20326','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3034','20326','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3035','22009','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3036','20327','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3037','20328','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3038','20328','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3039','20329','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3040','20329','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3041','20330','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3042','20330','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3043','20331','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3044','20331','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3045','20332','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3046','20332','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3047','20333','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3048','20333','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3049','20334','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3050','20334','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3051','20335','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3052','20335','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3053','20336','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3054','20336','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3055','20337','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3056','20337','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3057','20338','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3058','20338','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3059','22010','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3060','22011','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3061','22012','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3062','22012','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3063','22013','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3064','20339','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3065','20339','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3066','20340','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3067','20340','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3068','22014','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3069','22015','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3070','22015','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3071','22016','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3072','22016','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3073','20351','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3074','20352','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3075','22017','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3076','22017','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3077','20353','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3078','22018','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3079','20354','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3080','20354','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3081','22019','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3082','20355','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3083','20356','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3084','20356','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3085','20357','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3086','20357','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3087','20358','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3088','20358','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3089','20359','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3090','20359','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3091','20360','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3092','20360','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3093','20361','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3094','20361','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3095','20362','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3096','20362','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3097','20363','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3098','20363','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3099','20364','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3100','20364','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3101','20365','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3102','20365','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3103','20366','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3104','20366','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3105','22020','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3106','22021','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3107','22022','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3108','22022','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3109','22023','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3110','20367','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3111','20367','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3112','20368','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3113','20368','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3114','22024','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3115','22025','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3116','22025','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3117','22026','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3118','22026','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3119','20379','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3120','20380','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3121','22027','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3122','22027','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3123','20381','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3124','22028','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3125','20382','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3126','20382','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3127','22029','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3128','20383','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3129','20384','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3130','20384','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3131','20385','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3132','20385','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3133','20386','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3134','20386','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3135','20387','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3136','20387','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3137','20388','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3138','20388','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3139','20389','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3140','20389','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3141','20390','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3142','20390','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3143','20391','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3144','20391','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3145','20392','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3146','20392','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3147','20393','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3148','20393','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3149','20394','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3150','20394','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3151','22030','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3152','22031','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3153','22032','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3154','22032','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3155','22033','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3156','20395','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3157','20395','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3158','20396','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3159','20396','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3160','22034','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3161','22035','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3162','22035','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3163','22036','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3164','22036','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3165','20407','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3166','20408','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3167','22037','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3168','22037','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3169','20409','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3170','22038','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3171','20410','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3172','20410','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3173','22039','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3174','20411','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3175','20412','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3176','20412','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3177','20413','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3178','20413','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3179','20414','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3180','20414','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3181','20415','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3182','20415','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3183','20416','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3184','20416','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3185','20417','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3186','20417','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3187','20418','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3188','20418','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3189','20419','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3190','20419','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3191','20420','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3192','20420','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3193','20421','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3194','20421','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3195','20422','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3196','20422','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3197','22040','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3198','22041','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3199','22042','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3200','22042','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3201','22043','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3202','20423','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3203','20423','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3204','20424','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3205','20424','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3206','22044','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3207','22045','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3208','22045','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3209','22046','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3210','22046','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3211','20435','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3212','20436','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3213','22047','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3214','22047','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3215','20437','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3216','22048','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3217','20438','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3218','20438','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3219','22049','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3220','20439','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3221','20440','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3222','20440','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3223','20441','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3224','20441','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3225','20442','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3226','20442','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3227','20443','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3228','20443','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3229','20444','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3230','20444','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3231','20445','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3232','20445','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3233','20446','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3234','20446','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3235','20447','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3236','20447','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3237','20448','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3238','20448','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3239','20449','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3240','20449','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3241','20450','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3242','20450','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3243','22050','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3244','22051','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3245','22052','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3246','22052','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3247','22053','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3248','20451','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3249','20451','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3250','20452','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3251','20452','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3252','22054','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3253','22055','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3254','22055','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3255','22056','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3256','22056','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3257','20463','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3258','20464','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3259','22057','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3260','22057','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3261','20465','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3262','22058','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3263','20466','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3264','20466','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3265','22059','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3266','20467','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3267','20468','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3268','20468','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3269','20469','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3270','20469','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3271','20470','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3272','20470','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3273','20471','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3274','20471','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3275','20472','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3276','20472','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3277','20473','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3278','20473','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3279','20474','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3280','20474','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3281','20475','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3282','20475','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3283','20476','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3284','20476','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3285','20477','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3286','20477','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3287','20478','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3288','20478','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3289','22060','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3290','22061','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3291','22062','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3292','22062','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3293','22063','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3294','20479','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3295','20479','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3296','20480','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3297','20480','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3298','22064','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3299','22065','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3300','22065','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3301','22066','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3302','22066','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3303','20491','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3304','20492','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3305','22067','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3306','22067','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3307','20493','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3308','22068','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3309','20494','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3310','20494','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3311','22069','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3312','20495','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3313','20496','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3314','20496','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3315','20497','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3316','20497','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3317','20498','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3318','20498','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3319','20499','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3320','20499','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3321','20500','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3322','20500','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3323','20501','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3324','20501','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3325','20502','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3326','20502','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3327','20503','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3328','20503','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3329','20504','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3330','20504','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3331','20505','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3332','20505','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3333','20506','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3334','20506','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3335','22070','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3336','22071','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3337','22072','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3338','22072','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3339','22073','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3340','20507','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3341','20507','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3342','20508','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3343','20508','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3344','22074','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3345','22075','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3346','22075','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3347','22076','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3348','22076','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3349','20519','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3350','20520','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3351','22077','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3352','22077','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3353','20521','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3354','22078','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3355','20522','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3356','20522','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3357','22079','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3358','20523','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3359','20524','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3360','20524','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3361','20525','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3362','20525','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3363','20526','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3364','20526','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3365','20527','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3366','20527','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3367','20528','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3368','20528','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3369','20529','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3370','20529','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3371','20530','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3372','20530','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3373','20531','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3374','20531','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3375','20532','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3376','20532','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3377','20533','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3378','20533','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3379','20534','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3380','20534','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3381','22080','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3382','22081','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3383','22082','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3384','22082','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3385','22083','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3386','20535','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3387','20535','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3388','20536','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3389','20536','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3390','22084','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3391','22085','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3392','22085','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3393','22086','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3394','22086','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3395','20547','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3396','20548','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3397','22087','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3398','22087','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3399','20549','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3400','22088','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3401','20550','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3402','20550','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3403','22089','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3404','20551','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3405','20552','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3406','20552','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3407','20553','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3408','20553','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3409','20554','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3410','20554','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3411','20555','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3412','20555','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3413','20556','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3414','20556','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3415','20557','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3416','20557','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3417','20558','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3418','20558','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3419','20559','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3420','20559','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3421','20560','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3422','20560','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3423','20561','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3424','20561','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3425','20562','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3426','20562','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3427','22090','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3428','22091','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3429','22092','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3430','22092','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3431','22093','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3432','20563','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3433','20563','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3434','20564','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3435','20564','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3436','22094','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3437','22095','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3438','22095','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3439','22096','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3440','22096','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3441','20575','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3442','20576','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3443','22097','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3444','22097','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3445','20577','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3446','22098','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3447','20578','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3448','20578','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3449','22099','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3450','20579','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3451','20580','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3452','20580','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3453','20581','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3454','20581','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3455','20582','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3456','20582','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3457','20583','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3458','20583','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3459','20584','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3460','20584','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3461','20585','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3462','20585','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3463','20586','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3464','20586','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3465','20587','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3466','20587','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3467','20588','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3468','20588','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3469','20589','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3470','20589','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3471','20590','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3472','20590','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3473','22100','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3474','22101','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3475','22102','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3476','22102','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3477','22103','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3478','20591','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3479','20591','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3480','20592','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3481','20592','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3482','22104','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3483','22105','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3484','22105','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3485','22106','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3486','22106','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3487','20603','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3488','20604','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3489','22107','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3490','22107','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3491','20605','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3492','22108','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3493','20606','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3494','20606','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3495','22109','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3496','20607','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3497','20608','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3498','20608','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3499','20609','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3500','20609','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3501','20610','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3502','20610','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3503','20611','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3504','20611','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3505','20612','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3506','20612','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3507','20613','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3508','20613','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3509','20614','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3510','20614','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3511','20615','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3512','20615','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3513','20616','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3514','20616','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3515','20617','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3516','20617','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3517','20618','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3518','20618','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3519','22110','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3520','22111','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3521','22112','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3522','22112','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3523','22113','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3524','20619','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3525','20619','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3526','20620','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3527','20620','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3528','22114','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3529','22115','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3530','22115','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3531','22116','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3532','22116','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3533','20631','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3534','20632','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3535','22117','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3536','22117','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3537','20633','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3538','22118','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3539','20634','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3540','20634','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3541','22119','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3542','20635','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3543','20636','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3544','20636','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3545','20637','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3546','20637','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3547','20638','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3548','20638','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3549','20639','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3550','20639','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3551','20640','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3552','20640','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3553','20641','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3554','20641','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3555','20642','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3556','20642','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3557','20643','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3558','20643','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3559','20644','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3560','20644','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3561','20645','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3562','20645','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3563','20646','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3564','20646','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3565','22120','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3566','22121','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3567','22122','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3568','22122','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3569','22123','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3570','20647','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3571','20647','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3572','20648','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3573','20648','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3574','22124','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3575','22125','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3576','22125','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3577','22126','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3578','22126','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3579','20659','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3580','20660','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3581','22127','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3582','22127','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3583','20661','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3584','22128','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3585','20662','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3586','20662','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3587','22129','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3588','20663','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3589','20664','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3590','20664','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3591','20665','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3592','20665','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3593','20666','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3594','20666','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3595','20667','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3596','20667','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3597','20668','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3598','20668','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3599','20669','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3600','20669','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3601','20670','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3602','20670','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3603','20671','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3604','20671','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3605','20672','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3606','20672','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3607','20673','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3608','20673','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3609','20674','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3610','20674','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3611','22130','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3612','22131','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3613','22132','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3614','22132','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3615','22133','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3616','20675','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3617','20675','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3618','20676','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3619','20676','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3620','22134','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3621','22135','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3622','22135','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3623','22136','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3624','22136','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3625','20687','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3626','20688','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3627','22137','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3628','22137','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3629','20689','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3630','22138','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3631','20690','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3632','20690','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3633','22139','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3634','20691','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3635','20692','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3636','20692','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3637','20693','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3638','20693','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3639','20694','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3640','20694','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3641','20695','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3642','20695','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3643','20696','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3644','20696','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3645','20697','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3646','20697','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3647','20698','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3648','20698','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3649','20699','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3650','20699','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3651','20700','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3652','20700','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3653','20701','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3654','20701','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3655','20702','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3656','20702','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3657','22140','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3658','22141','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3659','22142','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3660','22142','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3661','22143','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3662','20703','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3663','20703','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3664','20704','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3665','20704','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3666','22144','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3667','22145','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3668','22145','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3669','22146','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3670','22146','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3671','20715','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3672','20716','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3673','22147','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3674','22147','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3675','20717','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3676','22148','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3677','20718','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3678','20718','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3679','22149','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3680','20719','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3681','20720','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3682','20720','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3683','20721','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3684','20721','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3685','20722','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3686','20722','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3687','20723','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3688','20723','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3689','20724','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3690','20724','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3691','20725','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3692','20725','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3693','20726','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3694','20726','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3695','20727','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3696','20727','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3697','20728','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3698','20728','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3699','20729','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3700','20729','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3701','20730','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3702','20730','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3703','22150','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3704','22151','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3705','22152','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3706','22152','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3707','22153','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3708','20731','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3709','20731','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3710','20732','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3711','20732','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3712','22154','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3713','22155','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3714','22155','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3715','22156','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3716','22156','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3717','20743','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3718','20744','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3719','22157','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3720','22157','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3721','20745','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3722','22158','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3723','20746','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3724','20746','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3725','22159','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3726','20747','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3727','20748','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3728','20748','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3729','20749','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3730','20749','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3731','20750','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3732','20750','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3733','20751','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3734','20751','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3735','20752','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3736','20752','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3737','20753','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3738','20753','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3739','20754','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3740','20754','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3741','20755','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3742','20755','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3743','20756','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3744','20756','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3745','20757','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3746','20757','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3747','20758','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3748','20758','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3749','22160','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3750','22161','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3751','22162','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3752','22162','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3753','22163','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3754','20759','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3755','20759','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3756','20760','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3757','20760','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3758','22164','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3759','22165','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3760','22165','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3761','22166','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3762','22166','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3763','20771','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3764','20772','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3765','22167','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3766','22167','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3767','20773','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3768','22168','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3769','20774','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3770','20774','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3771','22169','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3772','20775','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3773','20776','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3774','20776','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3775','20777','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3776','20777','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3777','20778','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3778','20778','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3779','20779','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3780','20779','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3781','20780','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3782','20780','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3783','20781','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3784','20781','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3785','20782','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3786','20782','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3787','20783','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3788','20783','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3789','20784','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3790','20784','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3791','20785','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3792','20785','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3793','20786','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3794','20786','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3795','22170','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3796','22171','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3797','22172','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3798','22172','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3799','22173','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3800','20787','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3801','20787','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3802','20788','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3803','20788','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3804','22174','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3805','22175','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3806','22175','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3807','22176','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3808','22176','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3809','20799','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3810','20800','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3811','22177','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3812','22177','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3813','20801','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3814','22178','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3815','20802','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3816','20802','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3817','22179','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3818','20803','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3819','20804','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3820','20804','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3821','20805','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3822','20805','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3823','20806','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3824','20806','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3825','20807','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3826','20807','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3827','20808','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3828','20808','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3829','20809','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3830','20809','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3831','20810','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3832','20810','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3833','20811','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3834','20811','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3835','20812','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3836','20812','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3837','20813','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3838','20813','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3839','20814','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3840','20814','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3841','22180','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3842','22181','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3843','22182','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3844','22182','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3845','22183','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3846','20815','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3847','20815','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3848','20816','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3849','20816','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3850','22184','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3851','22185','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3852','22185','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3853','22186','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3854','22186','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3855','20827','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3856','20828','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3857','22187','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3858','22187','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3859','20829','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3860','22188','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3861','20830','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3862','20830','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3863','22189','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3864','20831','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3865','20832','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3866','20832','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3867','20833','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3868','20833','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3869','20834','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3870','20834','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3871','20835','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3872','20835','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3873','20836','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3874','20836','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3875','20837','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3876','20837','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3877','20838','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3878','20838','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3879','20839','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3880','20839','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3881','20840','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3882','20840','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3883','20841','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3884','20841','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3885','20842','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3886','20842','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3887','22190','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3888','22191','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3889','22192','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3890','22192','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3891','22193','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3892','20843','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3893','20843','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3894','20844','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3895','20844','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3896','22194','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3897','22195','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3898','22195','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3899','22196','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3900','22196','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3901','20855','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3902','20856','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3903','22197','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3904','22197','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3905','20857','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3906','22198','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3907','20858','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3908','20858','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3909','22199','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3910','20859','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3911','20860','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3912','20860','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3913','20861','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3914','20861','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3915','20862','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3916','20862','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3917','20863','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3918','20863','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3919','20864','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3920','20864','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3921','20865','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3922','20865','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3923','20866','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3924','20866','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3925','20867','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3926','20867','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3927','20868','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3928','20868','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3929','20869','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3930','20869','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3931','20870','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3932','20870','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3933','22200','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3934','22201','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3935','22202','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3936','22202','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3937','22203','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3938','20871','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3939','20871','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3940','20872','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3941','20872','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3942','22204','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3943','22205','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3944','22205','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3945','22206','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3946','22206','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3947','20883','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3948','20884','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3949','22207','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3950','22207','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3951','20885','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3952','22208','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3953','20886','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3954','20886','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3955','22209','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3956','20887','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3957','20888','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3958','20888','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3959','20889','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3960','20889','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3961','20890','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3962','20890','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3963','20891','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3964','20891','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3965','20892','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3966','20892','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3967','20893','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3968','20893','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3969','20894','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3970','20894','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3971','20895','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3972','20895','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3973','20896','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3974','20896','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3975','20897','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3976','20897','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3977','20898','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3978','20898','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3979','22210','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3980','22211','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3981','22212','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3982','22212','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3983','22213','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3984','20899','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3985','20899','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3986','20900','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3987','20900','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3988','22214','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3989','22215','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3990','22215','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3991','22216','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3992','22216','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3993','20911','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3994','20912','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3995','22217','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3996','22217','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3997','20913','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3998','22218','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('3999','20914','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4000','20914','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4001','22219','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4002','20915','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4003','20916','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4004','20916','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4005','20917','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4006','20917','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4007','20918','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4008','20918','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4009','20919','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4010','20919','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4011','20920','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4012','20920','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4013','20921','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4014','20921','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4015','20922','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4016','20922','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4017','20923','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4018','20923','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4019','20924','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4020','20924','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4021','20925','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4022','20925','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4023','20926','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4024','20926','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4025','22220','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4026','22221','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4027','22222','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4028','22222','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4029','22223','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4030','20927','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4031','20927','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4032','20928','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4033','20928','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4034','22224','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4035','22225','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4036','22225','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4037','22226','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4038','22226','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4039','20939','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4040','20940','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4041','22227','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4042','22227','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4043','20941','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4044','22228','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4045','20942','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4046','20942','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4047','22229','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4048','20943','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4049','20944','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4050','20944','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4051','20945','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4052','20945','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4053','20946','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4054','20946','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4055','20947','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4056','20947','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4057','20948','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4058','20948','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4059','20949','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4060','20949','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4061','20950','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4062','20950','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4063','20951','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4064','20951','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4065','20952','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4066','20952','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4067','20953','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4068','20953','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4069','20954','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4070','20954','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4071','22230','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4072','22231','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4073','22232','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4074','22232','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4075','22233','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4076','20955','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4077','20955','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4078','20956','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4079','20956','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4080','22234','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4081','22235','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4082','22235','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4083','22236','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4084','22236','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4085','20967','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4086','20968','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4087','22237','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4088','22237','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4089','20969','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4090','22238','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4091','20970','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4092','20970','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4093','22239','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4094','20971','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4095','20972','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4096','20972','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4097','20973','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4098','20973','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4099','20974','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4100','20974','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4101','20975','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4102','20975','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4103','20976','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4104','20976','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4105','20977','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4106','20977','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4107','20978','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4108','20978','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4109','20979','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4110','20979','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4111','20980','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4112','20980','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4113','20981','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4114','20981','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4115','20982','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4116','20982','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4117','22240','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4118','22241','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4119','22242','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4120','22242','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4121','22243','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4122','20983','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4123','20983','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4124','20984','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4125','20984','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4126','22244','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4127','22245','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4128','22245','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4129','22246','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4130','22246','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4131','20995','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4132','20996','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4133','22247','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4134','22247','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4135','20997','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4136','22248','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4137','20998','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4138','20998','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4139','22249','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4140','20999','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4141','21000','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4142','21000','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4143','21001','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4144','21001','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4145','21002','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4146','21002','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4147','21003','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4148','21003','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4149','21004','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4150','21004','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4151','21005','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4152','21005','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4153','21006','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4154','21006','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4155','21007','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4156','21007','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4157','21008','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4158','21008','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4159','21009','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4160','21009','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4161','21010','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4162','21010','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4163','22250','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4164','22251','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4165','22252','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4166','22252','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4167','22253','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4168','21011','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4169','21011','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4170','21012','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4171','21012','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4172','22254','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4173','22255','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4174','22255','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4175','22256','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4176','22256','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4177','21023','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4178','21024','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4179','22257','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4180','22257','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4181','21025','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4182','22258','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4183','21026','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4184','21026','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4185','22259','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4186','21027','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4187','21028','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4188','21028','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4189','21029','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4190','21029','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4191','21030','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4192','21030','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4193','21031','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4194','21031','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4195','21032','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4196','21032','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4197','21033','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4198','21033','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4199','21034','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4200','21034','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4201','21035','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4202','21035','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4203','21036','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4204','21036','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4205','21037','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4206','21037','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4207','21038','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4208','21038','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4209','22260','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4210','22261','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4211','22262','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4212','22262','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4213','22263','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4214','21039','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4215','21039','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4216','21040','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4217','21040','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4218','22264','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4219','22265','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4220','22265','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4221','22266','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4222','22266','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4223','21051','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4224','21052','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4225','22267','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4226','22267','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4227','21053','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4228','22268','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4229','21054','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4230','21054','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4231','22269','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4232','21055','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4233','21056','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4234','21056','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4235','21057','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4236','21057','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4237','21058','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4238','21058','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4239','21059','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4240','21059','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4241','21060','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4242','21060','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4243','21061','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4244','21061','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4245','21062','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4246','21062','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4247','21063','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4248','21063','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4249','21064','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4250','21064','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4251','21065','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4252','21065','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4253','21066','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4254','21066','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4255','22270','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4256','22271','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4257','22272','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4258','22272','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4259','22273','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4260','21067','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4261','21067','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4262','21068','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4263','21068','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4264','22274','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4265','22275','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4266','22275','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4267','22276','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4268','22276','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4269','21079','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4270','21080','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4271','22277','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4272','22277','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4273','21081','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4274','22278','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4275','21082','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4276','21082','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4277','22279','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4278','21083','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4279','21084','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4280','21084','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4281','21085','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4282','21085','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4283','21086','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4284','21086','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4285','21087','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4286','21087','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4287','21088','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4288','21088','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4289','21089','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4290','21089','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4291','21090','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4292','21090','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4293','21091','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4294','21091','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4295','21092','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4296','21092','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4297','21093','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4298','21093','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4299','21094','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4300','21094','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4301','22280','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4302','22281','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4303','22282','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4304','22282','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4305','22283','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4306','21095','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4307','21095','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4308','21096','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4309','21096','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4310','22284','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4311','22285','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4312','22285','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4313','22286','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4314','22286','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4315','21107','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4316','21108','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4317','22287','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4318','22287','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4319','21109','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4320','22288','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4321','21110','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4322','21110','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4323','22289','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4324','21111','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4325','21112','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4326','21112','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4327','21113','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4328','21113','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4329','21114','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4330','21114','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4331','21115','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4332','21115','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4333','21116','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4334','21116','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4335','21117','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4336','21117','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4337','21118','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4338','21118','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4339','21119','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4340','21119','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4341','21120','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4342','21120','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4343','21121','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4344','21121','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4345','21122','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4346','21122','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4347','22290','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4348','22291','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4349','22292','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4350','22292','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4351','22293','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4352','21123','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4353','21123','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4354','21124','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4355','21124','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4356','22294','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4357','22295','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4358','22295','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4359','22296','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4360','22296','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4361','21135','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4362','21136','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4363','22297','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4364','22297','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4365','21137','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4366','22298','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4367','21138','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4368','21138','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4369','22299','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4370','21139','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4371','21140','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4372','21140','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4373','21141','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4374','21141','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4375','21142','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4376','21142','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4377','21143','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4378','21143','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4379','21144','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4380','21144','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4381','21145','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4382','21145','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4383','21146','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4384','21146','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4385','21147','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4386','21147','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4387','21148','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4388','21148','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4389','21149','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4390','21149','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4391','21150','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4392','21150','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4393','22300','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4394','22301','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4395','22302','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4396','22302','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4397','22303','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4398','21151','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4399','21151','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4400','21152','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4401','21152','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4402','22304','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4403','22305','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4404','22305','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4405','22306','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4406','22306','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4407','21163','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4408','21164','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4409','22307','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4410','22307','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4411','21165','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4412','22308','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4413','21166','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4414','21166','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4415','22309','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4416','21167','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4417','21168','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4418','21168','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4419','21169','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4420','21169','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4421','21170','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4422','21170','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4423','21171','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4424','21171','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4425','21172','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4426','21172','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4427','21173','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4428','21173','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4429','21174','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4430','21174','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4431','21175','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4432','21175','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4433','21176','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4434','21176','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4435','21177','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4436','21177','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4437','21178','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4438','21178','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4439','22310','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4440','22311','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4441','22312','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4442','22312','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4443','22313','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4444','21179','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4445','21179','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4446','21180','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4447','21180','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4448','22314','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4449','22315','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4450','22315','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4451','22316','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4452','22316','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4453','14662','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4454','14661','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4455','22317','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4456','22317','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4457','16543','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4458','22318','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4459','18125','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4460','18125','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4461','22319','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4462','16545','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4463','14665','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4464','14665','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4465','14664','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4466','14664','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4467','14666','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4468','14666','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4469','17086','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4470','17086','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4471','17085','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4472','17085','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4473','17087','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4474','17087','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4475','17406','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4476','17406','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4477','17407','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4478','17407','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4479','17408','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4480','17408','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4481','17409','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4482','17409','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4483','17088','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4484','17088','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4485','22320','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4486','22321','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4487','22322','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4488','22322','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4489','22323','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4490','16546','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4491','16546','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4492','16547','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4493','16547','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4494','17575','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4495','17576','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4496','17577','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4497','17578','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4498','17579','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4499','17580','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4500','17581','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4501','17582','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4502','17583','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4503','17584','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4504','17585','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4505','17586','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4506','17587','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4507','17588','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4508','17589','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4509','17590','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4510','17591','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4511','17592','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4512','17593','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4513','17594','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4514','17595','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4515','17596','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4516','17597','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4517','17598','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4518','17599','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4519','17600','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4520','17601','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4521','17602','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4522','17603','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4523','17604','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4524','17605','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4525','17606','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4526','17607','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4527','17608','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4528','17609','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4529','17610','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4530','17611','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4531','17612','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4532','17613','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4533','17614','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4534','17615','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4535','17616','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4536','17617','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4537','17618','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4538','17619','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4539','17620','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4540','17621','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4541','17622','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4542','17623','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4543','17624','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4544','17625','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4545','17626','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4546','17627','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4547','17628','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4548','17629','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4549','17630','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4550','17631','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4551','17632','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4552','17633','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4553','17634','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4554','17635','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4555','17636','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4556','17637','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4557','17638','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4558','17639','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4559','17640','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4560','17641','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4561','17642','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4562','17643','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4563','17644','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4564','17645','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4565','17646','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4566','17647','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4567','17648','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4568','17649','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4569','17650','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4570','17651','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4571','17652','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4572','17653','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4573','17654','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4574','17655','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4575','17656','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4576','17657','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4577','17658','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4578','17659','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4579','17660','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4580','17661','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4581','17662','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4582','17663','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4583','17664','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4584','17665','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4585','17666','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4586','17667','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4587','17668','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4588','17669','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4589','17670','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4590','17671','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4591','17672','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4592','17673','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4593','17674','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4594','17675','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4595','17676','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4596','17677','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4597','17678','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4598','17679','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4599','17680','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4600','17681','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4601','17682','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4602','17683','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4603','17684','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4604','17685','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4605','17686','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4606','17687','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4607','17688','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4608','17689','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4609','17690','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4610','17691','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4611','17692','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4612','17693','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4613','17694','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4614','17695','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4615','17696','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4616','17697','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4617','17698','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4618','17699','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4619','17700','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4620','17701','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4621','17702','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4622','17703','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4623','17704','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4624','17705','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4625','17706','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4626','17707','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4627','17708','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4628','17709','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4629','17710','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4630','17711','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4631','17712','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4632','17713','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4633','17714','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4634','17715','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4635','17716','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4636','17717','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4637','17718','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4638','17719','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4639','17720','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4640','17721','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4641','17722','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4642','17723','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4643','17724','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4644','17725','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4645','17726','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4646','17727','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4647','17728','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4648','17729','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4649','17730','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4650','17731','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4651','17732','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4652','17733','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4653','17734','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4654','17735','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4655','17736','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4656','17737','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4657','17738','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4658','17739','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4659','17740','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4660','17741','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4661','17742','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4662','17743','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4663','17744','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4664','17745','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4665','17746','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4666','17747','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4667','17748','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4668','17749','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4669','17750','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4670','17751','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4671','17752','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4672','17753','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4673','17754','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4674','17755','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4675','17756','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4676','17757','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4677','17758','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4678','17759','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4679','17760','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4680','17761','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4681','17762','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4682','17763','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4683','17764','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4684','17765','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4685','17766','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4686','17767','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4687','17768','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4688','17769','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4689','17770','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4690','17771','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4691','17772','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4692','17773','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4693','17774','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4694','17775','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4695','17776','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4696','17777','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4697','17778','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4698','17779','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4699','17780','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4700','17781','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4701','17782','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4702','17783','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4703','17784','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4704','17785','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4705','17786','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4706','17787','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4707','17788','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4708','17789','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4709','17790','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4710','17791','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4711','17792','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4712','17793','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4713','17794','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4714','17795','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4715','17796','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4716','17797','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4717','17798','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4718','17799','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4719','17800','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4720','17801','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4721','17802','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4722','17803','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4723','17804','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4724','17805','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4725','17806','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4726','17807','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4727','17808','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4728','17809','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4729','17810','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4730','17811','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4731','17812','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4732','17813','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4733','17814','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4734','17815','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4735','17816','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4736','17817','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4737','17818','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4738','17819','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4739','17820','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4740','17821','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4741','17822','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4742','17823','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4743','17824','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4744','17825','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4745','17826','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4746','17827','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4747','17828','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4748','17829','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4749','17830','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4750','17831','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4751','17832','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4752','17833','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4753','17834','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4754','17835','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4755','17836','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4756','17837','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4757','17838','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4758','17839','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4759','17840','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4760','17841','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4761','17842','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4762','17843','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4763','17844','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4764','17845','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4765','17846','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4766','17847','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4767','17848','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4768','17849','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4769','17850','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4770','17851','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4771','17852','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4772','17853','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4773','17854','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4774','17855','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4775','17856','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4776','17857','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4777','17858','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4778','17859','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4779','17860','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4780','17861','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4781','17862','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4782','17863','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4783','17864','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4784','17865','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4785','17866','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4786','17867','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4787','17868','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4788','17869','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4789','17870','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4790','17871','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4791','17872','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4792','17873','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4793','17874','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4794','17875','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4795','17876','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4796','17877','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4797','17878','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4798','17879','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4799','17880','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4800','17881','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4801','17882','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4802','17883','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4803','17884','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4804','17885','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4805','17886','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4806','17887','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4807','17888','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4808','17889','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4809','17890','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4810','17891','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4811','17892','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4812','17893','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4813','17894','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4814','17895','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4815','17896','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4816','17897','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4817','17898','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4818','17899','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4819','17900','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4820','17901','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4821','17902','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4822','17903','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4823','17904','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4824','17905','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4825','17906','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4826','17907','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4827','17908','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4828','22324','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4829','22325','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4830','22325','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4831','22326','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4832','22326','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4833','16548','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4834','14680','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4835','22327','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4836','22327','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4837','16549','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4838','22328','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4839','18126','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4840','18126','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4841','22329','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4842','15398','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4843','15398','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4844','22330','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4845','22331','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4846','22332','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4847','22332','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4848','22333','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4849','15399','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4850','15399','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4851','17909','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4852','17909','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4853','17910','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4854','17910','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4855','14683','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4856','14683','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4857','22334','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4858','22335','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4859','22335','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4860','22336','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4861','22336','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4862','16552','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4863','16552','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4864','16551','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4865','16551','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4866','16553','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4867','16553','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4868','16554','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4869','14699','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4870','14698','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4871','22337','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4872','22337','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4873','16555','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4874','22338','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4875','18127','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4876','18127','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4877','22339','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4878','16557','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4879','16557','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4880','22340','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4881','22341','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4882','22342','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4883','22342','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4884','22343','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4885','22344','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4886','16558','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4887','16558','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4888','22345','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4889','22346','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4890','22346','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4891','22347','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4892','22347','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4893','14710','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4894','14709','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4895','22348','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4896','22348','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4897','22349','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4898','22350','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4899','16559','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4900','18128','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4901','18128','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4902','22351','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4903','22352','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4904','22353','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4905','22354','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4906','22355','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4907','22356','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4908','22356','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4909','22357','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4910','22357','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4911','16561','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4912','14724','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4913','22358','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4914','22358','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4915','22359','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4916','18129','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4917','18129','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4918','22360','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4919','22361','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4920','22362','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4921','22363','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4922','22364','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4923','21181','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4924','21182','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4925','21183','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4926','21184','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4927','21185','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4928','21186','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4929','21187','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4930','21188','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4931','21189','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4932','21190','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4933','21191','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4934','19029','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4935','19030','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4936','19031','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4937','19032','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4938','19033','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4939','19034','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4940','19035','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4941','19036','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4942','19037','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4943','19038','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4944','19039','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4945','19040','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4946','19041','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4947','19042','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4948','19043','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4949','19044','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4950','19045','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4951','19046','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4952','19047','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4953','19048','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4954','19049','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4955','19050','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4956','19051','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4957','19052','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4958','19053','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4959','19054','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4960','19055','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4961','19056','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4962','19057','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4963','19058','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4964','19059','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4965','19060','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4966','19061','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4967','19062','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4968','19063','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4969','19064','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4970','19065','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4971','19066','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4972','19067','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4973','19068','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4974','19069','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4975','19070','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4976','19071','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4977','19072','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4978','19073','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4979','19074','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4980','19075','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4981','19076','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4982','19077','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4983','19078','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4984','19079','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4985','19080','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4986','19081','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4987','19082','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4988','19083','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4989','19084','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4990','19085','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4991','19086','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4992','19087','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4993','19088','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4994','19089','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4995','19090','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4996','19091','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4997','19092','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4998','19093','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('4999','19094','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5000','19095','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5001','19096','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5002','19097','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5003','19098','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5004','19099','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5005','19100','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5006','19101','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5007','19102','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5008','19103','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5009','19104','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5010','19105','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5011','19106','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5012','19107','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5013','19108','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5014','19109','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5015','19110','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5016','19111','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5017','19112','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5018','19113','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5019','19114','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5020','19115','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5021','19116','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5022','19117','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5023','19118','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5024','19119','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5025','19120','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5026','19121','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5027','19122','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5028','19123','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5029','19124','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5030','19125','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5031','19126','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5032','19127','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5033','19128','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5034','19129','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5035','19130','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5036','19131','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5037','19132','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5038','19133','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5039','19134','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5040','19135','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5041','19136','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5042','19137','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5043','19138','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5044','19139','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5045','19140','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5046','19141','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5047','19142','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5048','19143','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5049','19144','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5050','19145','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5051','19146','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5052','19147','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5053','19148','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5054','19149','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5055','19150','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5056','19151','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5057','19152','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5058','19153','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5059','19154','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5060','19155','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5061','19156','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5062','19157','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5063','19158','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5064','19159','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5065','19160','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5066','19161','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5067','19162','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5068','19163','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5069','19164','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5070','19165','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5071','19166','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5072','19167','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5073','19168','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5074','19169','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5075','19170','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5076','19171','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5077','19172','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5078','19173','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5079','19174','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5080','19175','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5081','19176','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5082','19177','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5083','19178','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5084','19179','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5085','19180','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5086','19181','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5087','19182','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5088','19183','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5089','19184','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5090','19185','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5091','19186','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5092','19187','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5093','19188','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5094','19189','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5095','19190','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5096','19190','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5097','19191','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5098','19192','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5099','19193','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5100','19194','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5101','19195','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5102','19196','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5103','19197','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5104','19198','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5105','19199','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5106','19200','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5107','19201','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5108','19202','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5109','19203','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5110','19204','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5111','19204','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5112','19205','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5113','19206','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5114','19207','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5115','19208','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5116','19209','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5117','19210','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5118','19211','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5119','19212','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5120','19213','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5121','19214','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5122','19215','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5123','19216','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5124','19217','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5125','19218','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5126','19219','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5127','19220','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5128','19221','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5129','19222','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5130','19223','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5131','19224','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5132','19225','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5133','19226','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5134','19227','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5135','19228','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5136','13364','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5137','13365','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5138','13366','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5139','13368','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5140','13367','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5141','13370','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5142','13371','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5143','13372','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5144','17113','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5145','17113','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5146','22365','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5147','17115','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5148','17115','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5149','17114','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5150','17114','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5151','17116','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5152','17116','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5153','17117','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5154','17117','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5155','13348','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5156','13348','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5157','13349','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5158','13349','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5159','13350','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5160','13350','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5161','13352','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5162','17119','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5163','17119','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5164','13354','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5165','13355','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5166','13356','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5167','17118','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5168','17118','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5169','22366','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5170','17121','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5171','17121','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5172','17120','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5173','17120','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5174','13382','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5175','13382','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5176','13384','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5177','13386','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5178','13388','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5179','17122','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5180','17122','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5181','22367','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5182','17124','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5183','17124','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5184','17123','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5185','17123','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5186','22368','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5187','22369','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5188','22370','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5189','22371','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5190','22371','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5191','22372','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5192','22372','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5193','22373','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5194','22374','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5195','22375','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5196','22376','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5197','22376','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5198','22377','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5199','16031','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5200','16038','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5201','16039','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5202','16579','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5203','16579','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5204','16036','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5205','16036','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5206','16042','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5207','16035','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5208','16041','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5209','18132','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5210','18132','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5211','22378','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5212','16040','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5213','22379','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5214','18130','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5215','22380','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5216','22380','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5217','18452','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5218','18452','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5219','22381','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5220','22381','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5221','16563','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5222','16563','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5223','22382','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5224','22383','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5225','22384','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5226','22385','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5227','22385','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5228','22386','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5229','22386','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5230','22387','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5231','22388','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5232','22389','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5233','22390','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5234','22390','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5235','22391','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5236','22392','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5237','22393','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5238','22394','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5239','22394','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5240','22395','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5241','22395','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5242','17023','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5243','22396','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5244','22397','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5245','22397','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5246','22398','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5247','22399','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5248','22400','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5249','22400','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5250','22401','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5251','22401','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5252','22402','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5253','22402','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5254','22403','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5255','22403','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5256','16069','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5257','16069','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5258','16070','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5259','16070','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5260','16071','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5261','16071','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5262','16072','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5263','16072','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5264','16076','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5265','18455','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5266','18455','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5267','17024','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5268','22404','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5269','22405','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5270','22405','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5271','22406','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5272','22407','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5273','22408','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5274','22408','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5275','22409','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5276','22409','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5277','22410','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5278','22410','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5279','22411','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5280','22411','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5281','22412','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5282','22413','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5283','22414','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5284','22415','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5285','22416','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5286','22416','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5287','22417','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5288','22417','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5289','22418','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5290','22419','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5291','22420','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5292','22421','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5293','22421','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5294','17244','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5295','17245','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5296','17246','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5297','17247','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5298','17247','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5299','17248','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5300','17248','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5301','17249','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5302','17250','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5303','17251','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5304','18144','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5305','18144','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5306','22422','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5307','17240','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5308','22423','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5309','18142','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5310','22424','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5311','22424','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5312','18458','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5313','18458','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5314','22425','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5315','22425','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5316','17243','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5317','17243','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5318','17266','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5319','22426','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5320','22427','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5321','22427','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5322','22428','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5323','22429','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5324','22430','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5325','22430','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5326','22431','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5327','22431','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5328','22432','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5329','22432','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5330','22433','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5331','22433','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5332','17267','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5333','17267','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5334','17268','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5335','17268','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5336','17269','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5337','17269','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5338','17270','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5339','17270','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5340','17271','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5341','18460','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5342','18460','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5343','17273','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5344','16141','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5345','16138','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5346','16146','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5347','16139','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5348','16139','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5349','16584','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5350','16584','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5351','16143','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5352','16144','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5353','18152','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5354','18152','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5355','18150','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5356','18462','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5357','18462','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5358','16573','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5359','16573','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5360','16142','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5361','16152','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5362','16153','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5363','18463','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5364','18464','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5365','18464','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5366','16883','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5367','16710','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5368','16155','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5369','16155','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5370','16156','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5371','16156','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5372','16157','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5373','16157','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5374','16158','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5375','16158','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5376','18157','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5377','18157','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5378','22434','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5379','22435','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5380','22435','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5381','22436','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5382','22436','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5383','22437','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5384','22437','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5385','22438','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5386','22439','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5387','22439','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5388','22440','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5389','18155','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5390','22441','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5391','18156','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5392','18156','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5393','22442','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5394','22442','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5395','16575','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5396','16575','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5397','22443','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5398','22443','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5399','16007','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5400','16008','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5401','16008','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5402','16009','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5403','16009','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5404','16010','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5405','16010','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5406','16011','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5407','16011','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5408','22444','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5409','22445','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5410','22446','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5411','22447','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5412','22447','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5413','22448','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5414','22449','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5415','22450','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5416','22450','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5417','22451','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5418','22451','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5419','22452','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5420','22452','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5421','22453','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5422','22453','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5423','17125','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5424','17125','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5425','17126','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5426','17126','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5427','13414','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5428','13414','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5429','13416','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5430','13418','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5431','13419','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5432','13420','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5433','17127','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5434','17127','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5435','22454','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5436','17129','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5437','17129','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5438','17128','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5439','17128','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5440','17130','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5441','17130','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5442','17131','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5443','17131','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5444','13332','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5445','13333','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5446','13334','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5447','13336','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5448','17133','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5449','17133','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5450','13338','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5451','13339','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5452','13340','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5453','17132','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5454','17132','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5455','22455','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5456','17135','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5457','17135','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5458','17134','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5459','17134','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5460','17136','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5461','17136','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5462','13396','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5463','13396','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5464','13397','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5465','13397','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5466','13398','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5467','13399','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5468','13400','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5469','17138','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5470','17138','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5471','13402','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5472','13403','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5473','13404','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5474','17137','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5475','17137','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5476','22456','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5477','17140','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5478','17140','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5479','17139','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5480','17139','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5481','22457','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5482','22458','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5483','22459','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5484','22460','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5485','22461','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5486','22462','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5487','22463','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5488','22464','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5489','22465','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5490','22465','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5491','22466','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5492','16161','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5493','16162','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5494','16160','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5495','16585','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5496','16169','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5497','16168','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5498','16166','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5499','16167','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5500','18162','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5501','18162','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5502','22467','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5503','17035','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5504','22468','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5505','18161','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5506','22469','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5507','22470','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5508','22471','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5509','22472','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5510','22473','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5511','22474','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5512','22475','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5513','22476','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5514','22477','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5515','22478','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5516','16182','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5517','16183','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5518','17911','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5519','18465','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5520','18466','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5521','17042','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5522','17043','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5523','17912','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5524','17913','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5525','16713','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5526','22479','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5527','22480','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5528','22481','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5529','22482','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5530','22483','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5531','22484','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5532','22485','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5533','22486','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5534','22487','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5535','22488','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5536','22488','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5537','17285','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5538','17286','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5539','17287','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5540','17288','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5541','17289','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5542','17290','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5543','17291','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5544','17292','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5545','18170','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5546','18170','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5547','22489','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5548','17283','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5549','22490','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5550','18169','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5551','22491','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5552','22492','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5553','22493','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5554','22494','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5555','22495','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5556','22496','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5557','22497','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5558','22498','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5559','22499','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5560','22500','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5561','17305','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5562','17306','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5563','17917','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5564','18469','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5565','18470','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5566','17310','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5567','17311','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5568','17918','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5569','17919','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5570','17312','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5571','22501','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5572','22502','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5573','22502','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5574','22503','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5575','22503','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5576','22504','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5577','22505','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5578','22505','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5579','22506','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5580','22507','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5581','22508','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5582','22509','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5583','22510','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5584','22511','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5585','22512','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5586','22512','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5587','22513','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5588','22513','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5589','22514','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5590','22514','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5591','18576','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5592','18577','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5593','18578','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5594','18579','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5595','18580','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5596','18581','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5597','18582','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5598','18583','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5599','18584','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5600','18585','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5601','18586','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5602','18587','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5603','18588','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5604','18589','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5605','18590','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5606','18591','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5607','18592','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5608','18593','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5609','18594','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5610','18595','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5611','18595','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5612','18596','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5613','18597','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5614','18598','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5615','18599','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5616','18600','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5617','18601','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5618','18602','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5619','18603','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5620','18604','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5621','18605','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5622','18606','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5623','18607','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5624','18608','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5625','18609','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5626','18610','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5627','18611','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5628','18612','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5629','18613','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5630','18614','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5631','18615','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5632','18616','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5633','18617','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5634','18618','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5635','18619','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5636','18620','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5637','18621','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5638','18622','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5639','18623','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5640','18624','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5641','18625','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5642','18626','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5643','18627','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5644','18628','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5645','18628','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5646','18629','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5647','18630','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5648','18631','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5649','18632','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5650','18633','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5651','18634','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5652','18635','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5653','18636','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5654','18637','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5655','18638','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5656','18639','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5657','18640','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5658','18641','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5659','18642','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5660','18643','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5661','18644','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5662','18645','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5663','18646','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5664','18647','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5665','18648','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5666','18649','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5667','18650','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5668','18651','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5669','18652','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5670','18653','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5671','18654','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5672','18655','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5673','18656','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5674','18657','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5675','18658','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5676','18659','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5677','18660','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5678','18661','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5679','18661','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5680','18662','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5681','18663','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5682','18664','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5683','18665','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5684','18666','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5685','18667','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5686','18668','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5687','18669','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5688','18670','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5689','18671','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5690','18672','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5691','18673','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5692','18674','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5693','18675','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5694','18676','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5695','18677','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5696','18678','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5697','18679','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5698','18680','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5699','18681','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5700','18682','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5701','18683','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5702','18684','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5703','18685','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5704','18686','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5705','18687','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5706','18688','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5707','18689','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5708','18690','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5709','18691','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5710','18692','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5711','18693','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5712','18694','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5713','18694','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5714','18695','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5715','18696','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5716','18697','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5717','18698','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5718','18699','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5719','18700','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5720','18701','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5721','18702','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5722','18703','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5723','18704','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5724','18705','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5725','18706','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5726','18707','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5727','18708','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5728','18709','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5729','18710','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5730','18711','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5731','18712','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5732','18713','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5733','18714','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5734','18715','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5735','18716','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5736','18717','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5737','18718','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5738','18719','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5739','18720','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5740','18721','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5741','18722','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5742','18723','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5743','18724','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5744','18725','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5745','18726','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5746','18727','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5747','18727','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5748','18728','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5749','18729','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5750','18730','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5751','18731','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5752','18732','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5753','18733','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5754','18734','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5755','18735','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5756','18736','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5757','18737','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5758','18738','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5759','18739','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5760','18740','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5761','18927','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5762','18928','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5763','18929','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5764','18930','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5765','18931','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5766','18932','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5767','18933','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5768','18934','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5769','18935','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5770','18936','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5771','18937','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5772','18938','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5773','18939','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5774','18940','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5775','18941','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5776','18942','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5777','18943','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5778','18944','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5779','18945','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5780','18946','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5781','18946','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5782','18947','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5783','18948','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5784','18949','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5785','18950','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5786','18951','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5787','18952','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5788','18953','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5789','18954','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5790','18955','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5791','18956','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5792','18957','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5793','18958','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5794','18959','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5795','18774','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5796','18775','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5797','18776','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5798','18777','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5799','18778','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5800','18779','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5801','18780','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5802','18781','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5803','18782','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5804','18783','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5805','18784','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5806','18785','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5807','18786','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5808','18787','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5809','18788','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5810','18789','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5811','18790','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5812','18791','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5813','18792','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5814','18793','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5815','18793','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5816','18794','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5817','18795','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5818','18796','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5819','18797','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5820','18798','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5821','18799','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5822','18800','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5823','18801','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5824','18802','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5825','18803','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5826','18804','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5827','18805','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5828','18806','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5829','18807','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5830','18473','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5831','18474','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5832','18475','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5833','18476','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5834','18480','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5835','18481','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5836','18482','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5837','18483','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5838','18484','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5839','18485','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5840','18486','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5841','18487','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5842','18488','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5843','18489','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5844','18490','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5845','18491','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5846','18492','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5847','18493','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5848','18808','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5849','18808','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5850','18495','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5851','18496','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5852','18497','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5853','18809','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5854','18499','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5855','18500','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5856','18501','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5857','18502','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5858','18503','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5859','18504','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5860','18505','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5861','18506','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5862','18810','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5863','18811','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5864','18812','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5865','18813','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5866','18814','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5867','18815','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5868','18816','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5869','18817','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5870','18818','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5871','18819','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5872','18820','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5873','18821','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5874','18822','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5875','18823','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5876','18824','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5877','18825','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5878','18826','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5879','18827','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5880','18828','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5881','18829','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5882','18830','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5883','18830','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5884','18831','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5885','18832','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5886','18833','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5887','18834','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5888','18835','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5889','18836','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5890','18837','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5891','18838','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5892','18839','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5893','18840','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5894','18841','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5895','18842','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5896','18843','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5897','18844','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5898','18845','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5899','18846','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5900','18847','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5901','18848','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5902','18849','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5903','18850','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5904','18851','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5905','18852','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5906','18853','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5907','18854','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5908','18855','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5909','18856','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5910','18857','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5911','18858','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5912','18859','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5913','18860','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5914','18861','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5915','18862','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5916','18863','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5917','18863','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5918','18864','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5919','18865','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5920','18866','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5921','18867','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5922','18868','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5923','18869','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5924','18870','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5925','18871','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5926','18872','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5927','18873','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5928','18874','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5929','18875','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5930','18876','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5931','18877','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5932','18878','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5933','18879','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5934','18880','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5935','18881','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5936','18882','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5937','18883','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5938','18884','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5939','18885','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5940','18886','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5941','18887','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5942','18888','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5943','18889','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5944','18890','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5945','18891','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5946','18892','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5947','18893','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5948','18894','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5949','18895','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5950','18896','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5951','18896','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5952','18897','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5953','18898','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5954','18899','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5955','18900','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5956','18901','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5957','18902','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5958','18903','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5959','18904','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5960','18905','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5961','18906','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5962','18907','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5963','18908','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5964','18909','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5965','18183','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5966','22515','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5967','22516','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5968','22516','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5969','22517','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5970','22517','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5971','22518','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5972','22518','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5973','22519','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5974','22520','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5975','18184','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5976','18185','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5977','18186','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5978','18187','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5979','18188','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5980','18189','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5981','18190','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5982','18191','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5983','18192','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5984','18193','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5985','18193','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5986','18194','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5987','18195','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5988','18196','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5989','18196','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5990','18197','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5991','18198','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5992','18199','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5993','18200','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5994','18201','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5995','18202','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5996','18203','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5997','18204','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5998','18205','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('5999','18507','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6000','18507','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6001','18508','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6002','18509','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6003','18510','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6004','18511','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6005','18511','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6006','18512','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6007','18513','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6008','18514','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6009','18515','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6010','18515','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6011','18516','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6012','18516','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6013','18517','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6014','18518','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6015','18519','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6016','18519','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6017','18520','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6018','18520','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6019','18521','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6020','22521','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6021','22522','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6022','22522','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6023','22523','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6024','22523','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6025','22524','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6026','22524','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6027','22525','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6028','22526','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6029','17929','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6030','17929','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6031','17930','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6032','17931','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6033','17931','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6034','17932','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6035','17933','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6036','17933','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6037','17934','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6038','17935','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6039','17936','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6040','17936','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6041','17937','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6042','17937','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6043','17938','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6044','17938','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6045','17939','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6046','17939','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6047','17940','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6048','17940','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6049','17941','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6050','17941','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6051','18206','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6052','17943','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6053','17943','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6054','17944','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6055','17944','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6056','16767','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6057','16772','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6058','16771','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6059','16773','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6060','16769','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6061','16768','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6062','16770','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6063','19229','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6064','19230','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6065','19231','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6066','19232','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6067','19232','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6068','19233','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6069','19233','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6070','19234','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6071','19234','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6072','19235','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6073','19235','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6074','19236','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6075','19236','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6076','19237','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6077','19237','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6078','19238','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6079','19238','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6080','19239','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6081','19240','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6082','19241','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6083','19242','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6084','19242','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6085','19243','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6086','19243','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6087','19244','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6088','19244','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6089','19245','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6090','19245','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6091','19246','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6092','19246','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6093','19247','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6094','19247','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6095','19248','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6096','19248','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6097','19249','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6098','19249','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6099','19250','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6100','19250','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6101','19251','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6102','19251','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6103','19252','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6104','19252','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6105','19253','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6106','19253','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6107','19254','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6108','19254','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6109','19255','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6110','19255','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6111','19256','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6112','19257','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6113','19257','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6114','19258','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6115','19258','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6116','19259','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6117','19259','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6118','22527','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6119','22528','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6120','22528','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6121','22529','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6122','22529','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6123','22530','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6124','22530','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6125','22531','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6126','22532','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6127','16487','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6128','16487','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6129','16488','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6130','16488','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6131','16484','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6132','16484','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6133','16485','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6134','16485','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6135','16486','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6136','16486','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6137','16479','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6138','16479','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6139','16480','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6140','16480','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6141','16482','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6142','16482','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6143','16481','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6144','16481','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6145','16474','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6146','16474','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6147','16475','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6148','16475','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6149','16472','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6150','16472','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6151','16471','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6152','16471','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6153','16473','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6154','16473','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6155','16469','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6156','16469','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6157','16468','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6158','16468','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6159','16470','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6160','16470','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6161','16460','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6162','16460','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6163','16459','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6164','16459','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6165','16461','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6166','16461','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6167','16463','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6168','16463','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6169','16462','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6170','16462','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6171','16464','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6172','16464','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6173','16466','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6174','16466','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6175','16465','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6176','16465','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6177','16467','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6178','16467','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6179','16478','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6180','16476','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6181','16476','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6182','16477','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6183','16477','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6184','16483','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6185','16483','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6186','19260','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6187','19261','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6188','19262','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6189','19263','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6190','19264','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6191','19265','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6192','19266','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6193','19267','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6194','19268','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6195','19269','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6196','19270','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6197','19271','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6198','19272','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6199','19273','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6200','19274','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6201','19275','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6202','19276','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6203','19277','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6204','19278','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6205','19279','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6206','19280','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6207','19281','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6208','19282','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6209','19283','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6210','19284','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6211','19285','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6212','19286','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6213','19287','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6214','19288','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6215','19289','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6216','19290','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6217','19291','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6218','19292','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6219','19293','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6220','19294','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6221','19295','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6222','19296','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6223','19297','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6224','19298','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6225','19299','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6226','19300','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6227','19301','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6228','19302','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6229','19303','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6230','19304','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6231','19305','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6232','19306','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6233','19307','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6234','19308','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6235','19309','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6236','19310','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6237','19311','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6238','19312','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6239','19313','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6240','19314','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6241','19315','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6242','19316','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6243','19317','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6244','19318','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6245','19319','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6246','19320','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6247','19321','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6248','19322','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6249','19323','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6250','19324','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6251','19325','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6252','19326','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6253','19327','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6254','19328','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6255','19329','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6256','19330','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6257','19331','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6258','19332','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6259','19333','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6260','19334','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6261','19335','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6262','19336','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6263','19337','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6264','19338','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6265','19339','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6266','19340','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6267','19341','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6268','19342','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6269','19343','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6270','19344','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6271','19345','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6272','19346','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6273','19347','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6274','19348','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6275','19349','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6276','19350','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6277','19351','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6278','19352','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6279','19353','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6280','19354','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6281','19355','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6282','19356','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6283','19357','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6284','19358','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6285','19359','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6286','19360','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6287','19361','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6288','19362','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6289','19363','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6290','19364','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6291','19365','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6292','19366','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6293','19367','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6294','19368','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6295','19369','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6296','19370','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6297','19371','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6298','19372','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6299','19373','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6300','19374','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6301','19375','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6302','19376','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6303','19377','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6304','19378','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6305','19379','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6306','19380','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6307','19381','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6308','19382','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6309','19383','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6310','19384','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6311','19385','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6312','19386','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6313','19387','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6314','19388','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6315','19389','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6316','19390','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6317','19391','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6318','19392','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6319','19393','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6320','19394','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6321','19395','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6322','19396','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6323','19397','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6324','19398','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6325','19399','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6326','19400','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6327','19401','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6328','19402','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6329','19403','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6330','19404','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6331','19405','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6332','19406','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6333','19407','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6334','19408','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6335','19409','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6336','19410','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6337','19411','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6338','19412','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6339','19413','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6340','19414','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6341','19415','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6342','19416','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6343','19417','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6344','19418','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6345','19419','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6346','19420','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6347','19421','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6348','19422','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6349','19423','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6350','19424','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6351','19425','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6352','19426','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6353','19427','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6354','19428','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6355','19429','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6356','19430','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6357','19431','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6358','19432','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6359','19433','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6360','19434','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6361','19435','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6362','19436','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6363','19437','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6364','19438','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6365','19439','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6366','19440','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6367','19441','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6368','19442','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6369','19443','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6370','19444','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6371','19445','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6372','19446','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6373','19447','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6374','19448','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6375','19449','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6376','19450','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6377','19451','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6378','19452','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6379','19453','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6380','19454','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6381','19455','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6382','19456','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6383','19457','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6384','19458','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6385','19459','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6386','19460','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6387','19461','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6388','19462','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6389','19463','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6390','22533','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6391','22534','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6392','22534','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6393','22535','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6394','22535','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6395','15732','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6396','15731','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6397','22536','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6398','22536','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6399','15728','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6400','15728','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6401','15729','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6402','15729','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6403','15730','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6404','15730','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6405','16577','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6406','22537','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6407','22538','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6408','15754','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6409','15754','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6410','15752','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6411','15752','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6412','15753','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6413','15753','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6414','15741','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6415','15741','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6416','15742','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6417','15742','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6418','15750','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6419','15750','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6420','15749','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6421','15749','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6422','15751','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6423','15751','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6424','15745','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6425','15746','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6426','15746','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6427','15743','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6428','15743','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6429','15744','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6430','15744','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6431','15739','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6432','15739','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6433','15740','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6434','15740','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6435','17945','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6436','17945','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6437','17946','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6438','17946','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6439','15738','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6440','15738','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6441','17947','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6442','17947','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6443','17948','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6444','17948','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6445','15735','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6446','15735','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6447','15747','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6448','15747','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6449','15748','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6450','15748','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6451','19464','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6452','19465','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6453','19466','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6454','19467','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6455','19468','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6456','19469','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6457','19470','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6458','19471','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6459','19472','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6460','19473','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6461','19474','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6462','19475','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6463','19476','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6464','19477','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6465','19478','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6466','19479','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6467','19480','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6468','19481','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6469','19482','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6470','19483','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6471','19484','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6472','19485','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6473','19486','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6474','19487','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6475','19488','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6476','19489','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6477','19490','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6478','19491','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6479','19492','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6480','19493','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6481','19494','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6482','19495','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6483','19496','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6484','19497','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6485','19498','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6486','19499','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6487','19500','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6488','19501','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6489','19502','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6490','19503','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6491','19504','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6492','19505','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6493','19506','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6494','19507','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6495','19508','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6496','19509','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6497','19510','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6498','19511','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6499','19512','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6500','19513','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6501','19514','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6502','19515','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6503','19516','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6504','19517','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6505','19518','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6506','19519','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6507','19520','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6508','19521','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6509','19522','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6510','19523','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6511','19524','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6512','19525','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6513','19526','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6514','19527','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6515','19528','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6516','19529','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6517','19530','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6518','19531','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6519','19532','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6520','19533','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6521','19534','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6522','19535','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6523','19536','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6524','19537','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6525','19538','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6526','19539','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6527','19540','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6528','19541','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6529','19542','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6530','19543','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6531','19544','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6532','19545','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6533','19546','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6534','19547','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6535','19548','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6536','19549','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6537','19550','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6538','19551','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6539','19552','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6540','19553','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6541','19554','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6542','19555','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6543','19556','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6544','19557','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6545','19558','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6546','19559','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6547','19560','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6548','19561','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6549','19562','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6550','19563','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6551','19564','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6552','19565','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6553','19566','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6554','19567','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6555','19568','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6556','19569','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6557','19570','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6558','19571','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6559','19572','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6560','19573','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6561','19574','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6562','19575','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6563','19576','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6564','19577','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6565','19578','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6566','19579','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6567','19580','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6568','19581','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6569','19582','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6570','19583','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6571','19584','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6572','19585','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6573','19586','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6574','19587','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6575','19588','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6576','19589','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6577','19590','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6578','19591','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6579','19592','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6580','19593','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6581','19594','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6582','19595','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6583','19596','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6584','19597','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6585','19598','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6586','19599','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6587','19600','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6588','19601','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6589','19602','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6590','19603','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6591','19604','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6592','19605','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6593','19606','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6594','19607','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6595','19608','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6596','19609','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6597','19610','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6598','19611','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6599','19612','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6600','19613','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6601','19614','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6602','19615','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6603','19616','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6604','19617','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6605','19618','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6606','19619','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6607','19620','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6608','19621','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6609','19622','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6610','19623','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6611','19624','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6612','19625','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6613','19626','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6614','19627','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6615','19628','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6616','19629','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6617','19630','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6618','19631','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6619','19632','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6620','19633','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6621','19634','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6622','19635','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6623','19636','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6624','19637','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6625','19638','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6626','19639','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6627','19640','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6628','19641','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6629','19642','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6630','19643','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6631','19644','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6632','19645','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6633','19646','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6634','19647','scope','available');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6635','22539','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6636','22540','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6637','22540','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6638','22541','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6639','22541','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6640','15762','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6641','22542','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6642','22542','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6643','16439','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6644','16439','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6645','16440','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6646','16440','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6647','22543','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6648','22544','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6649','15790','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6650','15790','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6651','18003','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6652','18003','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6653','15787','component','array');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6654','15787','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6655','15787','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6656','18004','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6657','18004','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6658','18005','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6659','18005','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6660','15785','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6661','15785','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6662','15786','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6663','15786','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6664','15783','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6665','15783','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6666','15784','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6667','15784','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6668','15795','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6669','15794','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6670','15794','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6671','15792','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6672','15792','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6673','15793','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6674','15793','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6675','15781','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6676','15781','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6677','15782','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6678','15782','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6679','18006','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6680','18007','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6681','18008','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6682','18009','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6683','18010','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6684','18011','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6685','18012','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6686','18013','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6687','18014','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6688','18015','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6689','18016','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6690','18017','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6691','18018','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6692','18019','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6693','18020','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6694','18021','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6695','18022','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6696','18023','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6697','18024','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6698','18025','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6699','18026','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6700','15796','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6701','15796','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6702','15797','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6703','15797','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6704','22545','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6705','22546','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6706','22546','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6707','22547','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6708','22547','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6709','15827','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6710','22548','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6711','22548','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6712','15824','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6713','15824','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6714','15825','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6715','15825','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6716','15826','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6717','15826','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6718','22549','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6719','22550','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6720','15838','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6721','15839','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6722','15839','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6723','15837','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6724','15829','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6725','15829','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6726','15828','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6727','15828','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6728','15830','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6729','15830','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6730','15832','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6731','15832','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6732','15831','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6733','15831','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6734','15833','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6735','15833','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6736','15835','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6737','15835','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6738','15834','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6739','15834','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6740','15836','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6741','15836','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6742','17141','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6743','17142','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6744','17143','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6745','17144','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6746','17145','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6747','17146','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6748','17147','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6749','17148','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6750','17149','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6751','17149','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6752','17150','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6753','17150','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6754','17151','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6755','17152','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6756','17152','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6757','17153','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6758','17153','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6759','17154','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6760','17155','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6761','17156','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6762','17157','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6763','17158','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6764','17159','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6765','17160','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6766','17161','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6767','17162','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6768','17163','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6769','17164','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6770','17165','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6771','17166','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6772','17166','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6773','17167','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6774','17167','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6775','17168','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6776','17169','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6777','17169','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6778','17170','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6779','17170','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6780','17171','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6781','17171','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6782','17172','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6783','17172','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6784','22551','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6785','22552','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6786','22552','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6787','22553','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6788','22553','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6789','22554','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6790','22554','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6791','22555','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6792','22556','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6793','15846','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6794','15846','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6795','15845','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6796','15845','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6797','15847','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6798','15847','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6799','19648','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6800','19649','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6801','19650','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6802','17223','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6803','17222','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6804','17224','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6805','17225','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6806','17226','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6807','17227','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6808','17949','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6809','17229','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6810','17950','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6811','17231','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6812','17951','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6813','17952','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6814','17234','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6849','22558','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6850','22559','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6851','22560','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6852','22561','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6853','22562','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6854','22563','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6855','22563','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6856','22564','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6857','22564','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6944','22583','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6945','17465','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6946','17467','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6947','17092','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6948','17097','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6949','17100','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6950','18924','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6951','18925','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6986','18235','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6987','22584','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6988','22585','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6989','22586','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6990','22587','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6991','22588','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6992','17529','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6993','15895','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6994','15896','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6995','15897','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6996','15898','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6997','17530','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6998','15899','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('6999','15900','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7000','15901','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7001','15902','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7002','15903','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7003','15904','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7004','15905','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7005','21200','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7006','15906','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7007','21267','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7008','21268','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7009','15907','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7010','15908','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7011','15909','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7012','15910','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7013','15911','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7014','15912','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7015','15890','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7016','15890','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7017','21269','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7018','16918','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7019','15893','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7020','15893','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7021','15891','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7022','15891','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7023','15892','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7024','15892','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7025','15894','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7026','22589','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7027','22590','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7028','22591','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7029','22592','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7030','22593','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7031','22594','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7032','22595','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7033','22596','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7034','22597','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7035','22598','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7036','22599','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7037','22600','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7038','22601','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7039','22602','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7040','22603','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7041','22604','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7042','22605','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7043','22606','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7044','22607','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7045','22608','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7046','22609','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7047','22610','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7048','22610','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7049','22611','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7050','22611','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7051','22612','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7052','22612','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7053','22613','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7054','22614','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7055','22614','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7056','22615','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7057','22616','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7058','22616','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7059','22617','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7060','22617','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7061','22618','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7062','22619','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7063','22620','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7064','22621','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7065','22622','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7066','22623','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7067','22624','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7068','22625','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7069','22626','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7070','22627','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7071','22628','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7072','22628','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7073','22629','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7074','22629','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7075','22630','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7076','22630','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7077','22631','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7078','22631','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7079','22632','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7080','22633','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7081','22634','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7082','22635','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7083','22636','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7084','22637','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7085','22638','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7086','22639','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7087','22640','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7088','22641','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7089','22642','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7090','22643','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7091','22644','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7092','22645','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7093','22646','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7094','22647','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7095','22648','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7096','22649','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7097','22650','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7098','22651','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7099','22652','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7100','22653','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7101','22654','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7102','22655','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7103','22656','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7104','22657','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7105','22658','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7106','22659','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7107','22660','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7108','22661','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7109','22662','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7110','22663','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7111','22664','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7112','22665','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7113','22666','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7114','22667','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7115','22668','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7116','22669','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7117','22670','scope','security');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7118','22671','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7119','22672','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7120','22673','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7121','22674','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7122','22675','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7123','22676','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7124','22677','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7125','22678','scope','health');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7126','22679','scope','health');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7127','22680','scope','health');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7128','22681','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7129','22682','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7130','22683','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7131','22684','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7132','22686','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7133','22687','scope','health');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7134','22688','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7135','22689','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7136','22690','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7137','22691','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7138','22692','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7139','22693','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7140','22694','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7141','22695','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7142','22696','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7143','22697','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7144','22698','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7145','22699','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7146','22700','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7147','22701','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7148','22702','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7149','22703','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7150','22704','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7151','22705','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7152','22706','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7153','22707','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7154','22708','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7155','22709','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7156','22710','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7157','22711','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7158','22712','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7159','22713','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7160','22714','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7161','22715','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7162','22716','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7163','22717','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7164','22718','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7165','22719','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7166','22720','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7167','22721','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7168','22722','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7169','22723','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7170','22724','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7171','22725','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7172','22726','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7173','22727','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7174','22728','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7175','22729','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7176','22730','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7177','22731','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7178','22732','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7179','22733','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7180','22734','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7181','22735','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7182','22736','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7183','22737','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7184','22738','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7185','22739','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7186','22740','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7187','22741','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7188','22742','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7189','22743','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7190','22744','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7191','22745','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7192','22746','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7193','22747','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7194','22748','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7195','22749','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7196','22750','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7197','22751','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7198','22752','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7199','22753','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7200','22754','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7201','22755','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7202','22756','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7203','22757','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7204','22758','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7205','22759','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7206','22760','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7207','22761','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7208','22762','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7209','22763','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7210','22764','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7211','22765','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7212','22766','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7213','22767','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7214','22768','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7215','22769','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7216','22770','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7217','22771','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7218','22772','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7219','22773','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7220','22774','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7221','22775','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7222','22776','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7223','22777','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7224','22778','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7225','22779','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7226','22780','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7227','22781','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7228','22782','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7229','22783','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7230','22784','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7231','22785','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7232','22786','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7233','22787','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7234','22788','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7235','22789','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7236','22790','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7237','22791','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7238','22792','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7239','22793','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7240','22794','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7241','22795','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7242','22796','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7243','22797','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7244','22798','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7245','22799','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7246','22800','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7247','22801','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7248','22802','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7249','22803','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7250','22804','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7251','22805','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7252','22806','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7253','22807','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7254','22808','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7255','22809','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7256','22810','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7257','22811','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7258','22812','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7259','22813','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7260','22814','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7261','22815','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7262','22816','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7263','22817','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7264','22818','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7265','22819','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7266','22820','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7267','22821','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7268','22822','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7269','22822','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7270','22823','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7271','22823','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7272','22824','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7273','22825','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7274','22826','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7275','22827','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7276','22828','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7277','22828','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7278','22829','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7279','22829','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7280','22830','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7281','22830','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7282','22831','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7283','22831','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7284','22832','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7285','22832','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7286','22833','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7287','22833','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7288','22834','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7289','22835','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7290','22836','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7291','22836','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7292','22837','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7293','22837','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7294','22838','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7295','22839','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7296','22840','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7297','22841','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7298','22842','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7299','22843','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7300','22844','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7301','22845','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7302','22846','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7303','22847','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7304','22848','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7305','22849','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7306','22850','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7307','22851','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7308','22852','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7309','22853','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7310','22854','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7311','22855','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7312','22856','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7313','22857','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7314','22858','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7315','22859','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7316','22860','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7317','22861','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7318','22862','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7319','22863','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7320','22864','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7321','22865','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7322','22866','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7323','22867','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7324','22868','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7325','22869','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7326','22870','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7327','22871','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7328','22872','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7329','22873','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7330','22874','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7331','22875','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7332','22876','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7333','22877','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7334','22878','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7335','22879','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7336','22880','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7337','22881','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7338','22881','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7339','22882','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7340','22882','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7341','22883','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7342','22884','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7343','22885','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7344','22886','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7345','22887','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7346','22888','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7347','22889','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7348','22890','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7349','22891','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7350','22892','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7351','22893','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7352','22894','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7353','22895','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7354','22896','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7355','22897','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7356','22898','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7357','22899','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7358','22900','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7359','22901','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7360','22902','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7361','22903','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7362','22904','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7363','22905','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7364','22906','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7365','22907','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7366','22908','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7367','22909','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7368','22909','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7369','22910','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7370','22911','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7371','22912','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7372','22913','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7373','22914','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7374','22915','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7375','22916','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7376','22917','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7377','22918','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7378','22919','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7379','22920','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7380','22921','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7381','22922','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7382','22923','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7383','22924','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7384','22925','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7385','22925','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7386','22926','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7387','22926','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7388','22927','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7389','22928','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7390','22929','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7391','22929','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7392','22930','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7393','22930','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7394','22931','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7395','22932','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7396','22932','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7397','22933','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7398','22933','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7399','22934','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7400','22935','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7401','22936','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7402','22936','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7403','22937','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7404','22937','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7405','22938','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7406','22939','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7407','22939','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7408','22940','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7409','22940','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7410','22941','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7411','22942','scope','notice');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7412','22943','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7413','22943','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7414','22944','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7415','22944','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7416','22945','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7417','22945','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7418','22946','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7419','22947','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7420','22948','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7421','22949','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7422','22950','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7423','22951','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7424','22952','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7425','22953','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7426','22954','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7427','22955','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7428','22956','scope','capacity');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7429','22957','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7430','22958','scope','performance');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7431','22959','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7432','22960','scope','availability');
INSERT INTO `trigger_tag` (`triggertagid`,`triggerid`,`tag`,`value`) values ('7433','22961','scope','availability');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77559','28743','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77560','30896','1','21','// Convert Apache status to JSON\nvar lines = value.split(\'\\n\');\nvar output = {},\n workers = {\n \'_\': 0, \'S\': 0, \'R\': 0, \'W\': 0,\n \'K\': 0, \'D\': 0, \'C\': 0, \'L\': 0,\n \'G\': 0, \'I\': 0, \'.\': 0\n };\n\n// Get all "Key: Value" pairs as an object\nfor (var i = 0; i < lines.length; i++) {\n var line = lines[i].match(/([A-z0-9 ]+): (.*)/);\n\n if (line !== null) {\n output[line[1]] = isNaN(line[2]) ? line[2] : Number(line[2]);\n }\n}\n\n// Multiversion metrics\noutput.ServerUptimeSeconds = output.ServerUptimeSeconds || output.Uptime;\noutput.ServerVersion = output.ServerVersion || output.Server;\n\n// Parse "Scoreboard" to get worker count.\nif (typeof output.Scoreboard === \'string\') {\n for (var i = 0; i < output.Scoreboard.length; i++) {\n var char = output.Scoreboard[i];\n\n workers[char]++;\n }\n}\n\n// Add worker data to the output\noutput.Workers = {\n waiting: workers[\'_\'], starting: workers[\'S\'], reading: workers[\'R\'],\n sending: workers[\'W\'], keepalive: workers[\'K\'], dnslookup: workers[\'D\'],\n closing: workers[\'C\'], logging: workers[\'L\'], finishing: workers[\'G\'],\n cleanup: workers[\'I\'], slot: workers[\'.\']\n};\n\n// Return JSON string\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77561','30897','1','12','$.Workers.reading','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77562','30898','1','12','$.Workers.waiting','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77563','30899','1','12','$.Workers.starting','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77564','30900','1','12','$.Workers.slot','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77565','30901','1','12','$.Workers.sending','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77566','30902','1','12','$["Total kBytes"]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77567','30902','2','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77568','30903','1','12','$["Total kBytes"]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77569','30903','2','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77570','30903','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77571','30904','1','12','$.Workers.keepalive','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77572','30905','1','12','$.Workers.finishing','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77573','30906','1','12','$.Workers.dnslookup','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77574','30907','1','12','$.Workers.closing','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77575','30908','1','12','$.Workers.cleanup','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77576','30909','1','12','$.IdleWorkers','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77577','30910','1','12','$.BusyWorkers','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77578','30911','1','12','$.ServerVersion','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77579','30911','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77580','30912','1','12','$.ServerUptimeSeconds','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77581','30913','1','12','$["Total Accesses"]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77582','30913','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77583','30914','1','12','$["Total Accesses"]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77584','30915','1','12','$.Workers.logging','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77585','30916','1','21','return JSON.stringify(JSON.parse(value).ServerMPM === \'event\'\n ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77586','30916','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77587','30917','1','12','$.BytesPerReq','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77588','30918','1','12','$.ConnsAsyncClosing','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77589','30919','1','12','$.ConnsAsyncKeepAlive','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77590','30920','1','12','$.ConnsAsyncWriting','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77591','30921','1','12','$.ConnsTotal','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77592','30922','1','12','$.Processes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77593','28775','1','21','// Convert Apache status to JSON\nvar lines = value.split(\'\\n\');\nvar output = {},\n workers = {\n \'_\': 0, \'S\': 0, \'R\': 0, \'W\': 0,\n \'K\': 0, \'D\': 0, \'C\': 0, \'L\': 0,\n \'G\': 0, \'I\': 0, \'.\': 0\n };\n\n// Get all "Key: Value" pairs as an object\nfor (var i = 0; i < lines.length; i++) {\n var line = lines[i].match(/([A-z0-9 ]+): (.*)/);\n\n if (line !== null) {\n output[line[1]] = isNaN(line[2]) ? line[2] : Number(line[2]);\n }\n}\n\n// Multiversion metrics\noutput.ServerUptimeSeconds = output.ServerUptimeSeconds || output.Uptime;\noutput.ServerVersion = output.ServerVersion || output.Server;\n\n// Parse "Scoreboard" to get worker count.\nif (typeof output.Scoreboard === \'string\') {\n for (var i = 0; i < output.Scoreboard.length; i++) {\n var char = output.Scoreboard[i];\n\n workers[char]++;\n }\n}\n\n// Add worker data to the output\noutput.Workers = {\n waiting: workers[\'_\'], starting: workers[\'S\'], reading: workers[\'R\'],\n sending: workers[\'W\'], keepalive: workers[\'K\'], dnslookup: workers[\'D\'],\n closing: workers[\'C\'], logging: workers[\'L\'], finishing: workers[\'G\'],\n cleanup: workers[\'I\'], slot: workers[\'.\']\n};\n\n// Return JSON string\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77594','28776','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77595','28778','1','12','$.Workers.starting','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77596','28779','1','12','$.Workers.slot','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77597','28780','1','12','$.Workers.sending','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77598','28781','1','12','$.Workers.reading','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77599','28782','1','12','$.Workers.logging','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77600','28783','1','12','$.Workers.keepalive','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77601','28784','1','12','$.Workers.cleanup','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77602','28785','1','12','$.Workers.finishing','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77603','28786','1','12','$.Workers.closing','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77604','28787','1','12','$.Workers.dnslookup','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77605','28788','1','12','$.IdleWorkers','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77606','28789','1','12','$.BusyWorkers','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77607','28790','1','12','$.ServerVersion','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77608','28790','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77609','28791','1','12','$.ServerUptimeSeconds','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77610','28792','1','12','$["Total Accesses"]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77611','28793','1','12','$["Total Accesses"]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77612','28793','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77613','28794','1','12','$["Total kBytes"]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77614','28794','2','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77615','28794','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77616','28795','1','12','$["Total kBytes"]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77617','28795','2','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77618','28796','1','12','$.Workers.waiting','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77619','28797','1','21','return JSON.stringify(JSON.parse(value).ServerMPM === \'event\'\n ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77620','28797','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77621','28798','1','12','$.ConnsAsyncClosing','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77622','28799','1','12','$.ConnsAsyncKeepAlive','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77623','28800','1','12','$.ConnsAsyncWriting','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77624','28801','1','12','$.ConnsTotal','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77625','28802','1','12','$.BytesPerReq','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77626','28803','1','12','$.Processes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77627','32120','1','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77628','32122','1','12','$.num_osd_up','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77629','32122','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77630','32123','1','12','$.pg_states.undersized','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77631','32124','1','12','$.pg_states.clean','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77632','32125','1','12','$.pg_states.degraded','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77633','32126','1','12','$.pg_states.inconsistent','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77634','32127','1','12','$.pg_states.peering','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77635','32128','1','12','$.pg_states.recovering','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77636','32129','1','12','$.pg_states.recovery_wait','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77637','32130','1','12','$.pg_states.remapped','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77638','32131','1','12','$.pg_states.scrubbing','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77639','32132','1','12','$.pg_states.unknown','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77640','32133','1','12','$.pg_states.backfill_wait','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77641','32134','1','12','$.num_osd','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77642','32134','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77643','32135','1','12','$.rd_bytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77644','32135','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77645','32136','1','12','$.rd_ops','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77646','32137','1','12','$.num_mon','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77647','32137','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77648','32138','1','12','$.total_avail_bytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77649','32139','1','12','$.total_bytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77650','32140','1','12','$.total_objects','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77651','32141','1','12','$.total_used_bytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77652','32142','1','12','$.wr_bytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77653','32142','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77654','32143','1','12','$.pg_states.backfilling','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77655','32144','1','12','$.pg_states.backfill_toofull','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77656','32145','1','12','$.num_pg','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77657','32145','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77658','32146','1','12','$.osd_latency_apply.min','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77659','32147','1','12','$.num_pg_temp','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77660','32148','1','12','$.num_pools','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77661','32149','1','12','$.osd_backfillfull_ratio','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77662','32149','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77663','32150','1','12','$.osd_fill.avg','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77664','32151','1','12','$.osd_fill.max','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77665','32152','1','12','$.osd_fill.min','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77666','32153','1','12','$.osd_full_ratio','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77667','32153','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77668','32154','1','12','$.osd_latency_apply.avg','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77669','32155','1','12','$.osd_latency_apply.max','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77670','32156','1','12','$.osd_latency_commit.avg','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77671','32157','1','12','$.pg_states.active','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77672','32158','1','12','$.osd_latency_commit.max','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77673','32159','1','12','$.osd_latency_commit.min','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77674','32160','1','12','$.osd_nearfull_ratio','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77675','32160','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77676','32161','1','12','$.osd_pgs.avg','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77677','32162','1','12','$.osd_pgs.max','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77678','32163','1','12','$.osd_pgs.min','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77679','32164','1','12','$.num_osd_in','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77680','32164','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77681','32165','1','12','$.min_mon_release_name','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77682','32165','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77683','32166','1','12','$.overall_status','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77684','32166','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77685','32167','1','12','$.wr_ops','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77686','32167','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77687','32170','1','12','$.osds.{#OSDNAME}.osd_fill','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77688','32171','1','12','$.osds.{#OSDNAME}.in','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77689','32171','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77690','32172','1','12','$.osds.{#OSDNAME}.osd_latency_apply','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77691','32173','1','12','$.osds.{#OSDNAME}.osd_latency_commit','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77692','32174','1','12','$.osds.{#OSDNAME}.num_pgs','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77693','32175','1','12','$.osds.{#OSDNAME}.up','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77694','32175','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77708','30530','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77709','30532','1','12','$.Architecture','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77710','30532','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77711','30533','1','12','$.LiveRestoreEnabled','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77712','30533','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77713','30533','3','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77714','30534','1','12','$.LoggingDriver','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77715','30534','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77716','30535','1','12','$.MemoryLimit','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77717','30535','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77718','30535','3','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77719','30536','1','12','$.MemTotal','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77720','30537','1','12','$.Name','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77721','30538','1','12','$.NCPU','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77722','30539','1','12','$.NFd','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77723','30540','1','12','$.NEventsListener','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77724','30541','1','12','$.KernelVersion','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77725','30541','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77726','30542','1','12','$.OomKillDisable','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77727','30542','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77728','30542','3','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77729','30543','1','12','$.OperatingSystem','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77730','30543','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77731','30544','1','12','$.OSType','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77732','30544','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77733','30545','1','12','$.PidsLimit','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77734','30545','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77735','30545','3','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77736','30546','1','12','$.DockerRootDir','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77737','30546','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77738','30547','1','12','$.ServerVersion','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77739','30547','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77740','30548','1','12','$.SwapLimit','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77741','30548','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77742','30548','3','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77743','30549','1','12','$.LayersSize','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77744','30550','1','12','$.IPv4Forwarding','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77745','30550','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77746','30550','3','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77747','30551','1','12','$.KernelMemory','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77748','30551','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77749','30551','3','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77750','30552','1','12','$.CPUSet','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77751','30552','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77752','30552','3','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77753','30553','1','12','$.Containers[*].SizeRw.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77754','30554','1','12','$.ContainersPaused','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77755','30555','1','12','$.ContainersRunning','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77756','30556','1','12','$.ContainersStopped','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77757','30557','1','12','$.Containers','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77758','30558','1','12','$.CpuCfsPeriod','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77759','30558','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77760','30558','3','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77761','30559','1','12','$.CpuCfsQuota','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77762','30559','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77763','30559','3','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77764','30560','1','12','$.CPUShares','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77765','30560','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77766','30560','3','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77767','30561','1','12','$.KernelMemoryTCP','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77768','30561','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77769','30561','3','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77770','30562','1','12','$.Debug','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77771','30562','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77772','30562','3','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77773','30563','1','12','$.DefaultRuntime','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77774','30563','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77775','30564','1','12','$.Driver','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77776','30564','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77777','30565','1','12','$.NGoroutines','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77778','30566','1','12','$.Images[*].Size.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77779','30567','1','12','$.length()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77780','30568','1','12','$.Images','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77781','30569','1','12','$.CgroupDriver','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77782','30569','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77783','30570','1','12','$.Volumes[*].UsageData.Size.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77784','30575','1','12','$.cpu_stats.online_cpus','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77785','30576','1','12','$.memory_stats.commitbytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77786','30577','1','12','$.memory_stats.commitpeakbytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77787','30578','1','12','$.memory_stats.max_usage','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77788','30579','1','12','$.memory_stats.privateworkingset','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77789','30580','1','12','$.memory_stats.usage','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77790','30581','1','12','$.Created','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77791','30581','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77792','30582','1','12','$.cpu_stats.cpu_usage.total_usage','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77793','30582','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77794','30582','3','1','1.0E-9','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77795','30583','1','12','$.networks[*].rx_bytes.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77796','30583','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77797','30584','1','12','$.networks[*].rx_dropped.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77798','30584','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77799','30585','1','12','$.networks[*].rx_errors.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77800','30585','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77801','30586','1','12','$.networks[*].rx_packets.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77802','30586','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77803','30587','1','12','$.networks[*].tx_bytes.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77804','30587','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77805','30588','1','12','$.networks[*].tx_dropped.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77806','30588','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77807','30589','1','12','$.networks[*].tx_errors.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77808','30589','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77809','30590','1','12','$.cpu_stats.cpu_usage.usage_in_usermode','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77810','30590','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77811','30590','3','1','1.0E-9','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77812','30591','1','12','$.cpu_stats.throttling_data.periods','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77813','30592','1','12','$.State.FinishedAt','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77814','30592','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77815','30593','1','12','$.State.OOMKilled','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77816','30593','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77817','30594','1','12','$[?(@.Names[0] == "{#NAME}")].Image.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77818','30594','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77819','30595','1','12','$.RestartCount','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77820','30596','1','12','$.State.StartedAt','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77821','30596','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77822','30597','1','12','$.State.Dead','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77823','30597','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77824','30598','1','12','$.State.Error','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77825','30598','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77826','30599','1','12','$.State.ExitCode','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77827','30599','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77828','30600','1','12','$.State.Paused','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77829','30600','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77830','30601','1','12','$.cpu_stats.throttling_data.throttled_time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77831','30601','2','1','1.0E-9','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77832','30602','1','12','$.State.Pid','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77833','30602','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77834','30603','1','12','$.State.Restarting','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77835','30603','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77836','30604','1','12','$.State.Running','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77837','30604','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77838','30605','1','12','$.State.Status','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77839','30605','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77840','30606','1','12','$.cpu_stats.cpu_usage.usage_in_kernelmode','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77841','30606','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77842','30606','3','1','1.0E-9','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77843','30607','1','12','$.cpu_stats.throttling_data.throttled_periods','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77844','30608','1','12','$.networks[*].tx_packets.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77845','30608','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77846','30609','1','12','$[?(@.Id == "{#ID}")].Created.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77847','30609','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77848','30610','1','12','$[?(@.Id == "{#ID}")].Size.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77849','30690','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77850','30695','1','12','$.indices.docs.count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77851','30695','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77852','30696','1','12','$.nodes.jvm.max_uptime_in_millis','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77853','30696','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77854','30697','1','12','$.nodes.fs.total_in_bytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77855','30697','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77856','30698','1','12','$.nodes.fs.available_in_bytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77857','30698','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77858','30699','1','12','$.nodes.count.master','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77859','30699','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77860','30700','1','12','$.nodes.count.ingest','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77861','30700','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77862','30701','1','12','$.nodes.count.data','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77863','30701','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77864','30702','1','12','$.delayed_unassigned_shards','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77865','30703','1','12','$.indices.count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77866','30703','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77867','30704','1','12','$.task_max_waiting_in_queue_millis','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77868','30704','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77869','30705','1','12','$.status','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77870','30705','2','21','var state = [\'green\', \'yellow\', \'red\'];\n\nreturn state.indexOf(value.trim()) === -1 ? 255 : state.indexOf(value.trim());','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77871','30705','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77872','30706','1','12','$.relocating_shards','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77873','30707','1','12','$.number_of_pending_tasks','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77874','30708','1','12','$.number_of_nodes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77875','30708','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77876','30709','1','12','$.number_of_data_nodes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77877','30709','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77878','30710','1','12','$.initializing_shards','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77879','30711','1','12','$.active_shards_percent_as_number','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77880','30711','2','21','return (100 - value)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77881','30712','1','12','$.unassigned_shards','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77882','30713','1','12','$.nodes.[*]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77883','30713','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77884','30718','1','12','$..[?(@.name==\'{#ES.NODE}\')].thread_pool.refresh.active.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77885','30719','1','12','$..[?(@.name==\'{#ES.NODE}\')].indices.search.query_total.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77886','30719','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77887','30720','1','12','$..[?(@.name==\'{#ES.NODE}\')].indices.search.query_total.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77888','30720','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77889','30721','1','12','$..[?(@.name==\'{#ES.NODE}\')].jvm.mem.heap_committed_in_bytes.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77890','30721','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77891','30722','1','12','$..[?(@.name==\'{#ES.NODE}\')].jvm.mem.heap_max_in_bytes.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77892','30722','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77893','30723','1','12','$..[?(@.name==\'{#ES.NODE}\')].jvm.mem.heap_used_in_bytes.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77894','30723','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77895','30724','1','12','$..[?(@.name==\'{#ES.NODE}\')].jvm.mem.heap_used_percent.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77896','30724','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77897','30725','1','12','$..[?(@.name==\'{#ES.NODE}\')].jvm.uptime_in_millis.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77898','30725','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77899','30726','1','12','$..[?(@.name==\'{#ES.NODE}\')].fs.total.available_in_bytes.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77900','30726','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77901','30727','1','12','$..[?(@.name==\'{#ES.NODE}\')].thread_pool.refresh.completed.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77902','30727','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77903','30728','1','12','$..[?(@.name==\'{#ES.NODE}\')].indices.search.query_time_in_millis.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77904','30728','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77905','30728','3','9','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77906','30729','1','12','$..[?(@.name==\'{#ES.NODE}\')].thread_pool.refresh.rejected.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77907','30729','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77908','30730','1','12','$..[?(@.name==\'{#ES.NODE}\')].thread_pool.search.active.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77909','30731','1','12','$..[?(@.name==\'{#ES.NODE}\')].thread_pool.search.completed.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77910','30731','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77911','30732','1','12','$..[?(@.name==\'{#ES.NODE}\')].thread_pool.search.queue.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77912','30733','1','12','$..[?(@.name==\'{#ES.NODE}\')].thread_pool.search.rejected.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77913','30733','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77914','30734','1','12','$..[?(@.name==\'{#ES.NODE}\')].thread_pool.write.active.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77915','30735','1','12','$..[?(@.name==\'{#ES.NODE}\')].thread_pool.write.completed.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77916','30735','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77917','30736','1','12','$..[?(@.name==\'{#ES.NODE}\')].thread_pool.write.queue.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77918','30737','1','12','$..[?(@.name==\'{#ES.NODE}\')].thread_pool.refresh.queue.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77919','30738','1','12','$..[?(@.name==\'{#ES.NODE}\')].indices.search.query_current.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77920','30739','1','12','$..[?(@.name==\'{#ES.NODE}\')].indices.search.query_time_in_millis.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77921','30739','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77922','30740','1','12','$..[?(@.name==\'{#ES.NODE}\')].indices.indexing.throttle_time_in_millis.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77923','30740','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77924','30740','3','9','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77925','30741','1','12','$..[?(@.name==\'{#ES.NODE}\')].http.current_open.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77926','30741','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77927','30742','1','12','$..[?(@.name==\'{#ES.NODE}\')].http.total_opened.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77928','30742','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77929','30743','1','12','$..[?(@.name==\'{#ES.NODE}\')].indices.flush.total_time_in_millis.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77930','30743','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77931','30744','1','12','$..[?(@.name==\'{#ES.NODE}\')].indices.flush.total.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77932','30744','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77933','30745','1','12','$..[?(@.name==\'{#ES.NODE}\')].indices.indexing.index_current.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77934','30745','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77935','30746','1','12','$..[?(@.name==\'{#ES.NODE}\')].indices.indexing.index_time_in_millis.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77936','30746','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77937','30747','1','12','$..[?(@.name==\'{#ES.NODE}\')].indices.indexing.index_total.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77938','30747','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77939','30748','1','12','$..[?(@.name==\'{#ES.NODE}\')].indices.merges.total_throttled_time_in_millis.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77940','30748','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77941','30748','3','9','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77942','30749','1','12','$..[?(@.name==\'{#ES.NODE}\')].fs.total.total_in_bytes.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77943','30749','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77944','30750','1','12','$..[?(@.name==\'{#ES.NODE}\')].indices.recovery.throttle_time_in_millis.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77945','30750','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77946','30750','3','9','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77947','30751','1','12','$..[?(@.name==\'{#ES.NODE}\')].indices.refresh.total.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77948','30751','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77949','30752','1','12','$..[?(@.name==\'{#ES.NODE}\')].indices.refresh.total_time_in_millis.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77950','30752','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77951','30752','3','9','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77952','30753','1','12','$..[?(@.name==\'{#ES.NODE}\')].indices.search.fetch_current.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77953','30754','1','12','$..[?(@.name==\'{#ES.NODE}\')].indices.search.fetch_time_in_millis.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77954','30754','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77955','30755','1','12','$..[?(@.name==\'{#ES.NODE}\')].indices.search.fetch_time_in_millis.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77956','30755','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77957','30755','3','9','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77958','30756','1','12','$..[?(@.name==\'{#ES.NODE}\')].indices.search.fetch_total.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77959','30756','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77960','30757','1','12','$..[?(@.name==\'{#ES.NODE}\')].indices.search.fetch_total.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77961','30757','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77962','30758','1','12','$..[?(@.name==\'{#ES.NODE}\')].thread_pool.write.rejected.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77963','30758','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77964','30923','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77965','30924','1','12','$.health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77966','30924','2','6','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77967','30924','3','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77968','30927','1','22','process_open_fds\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77969','30928','1','22','etcd_server_proposals_applied_total\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77970','30928','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77971','30929','1','22','etcd_server_proposals_committed_total\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77972','30929','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77973','30930','1','22','etcd_server_proposals_failed_total\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77974','30930','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77975','30931','1','22','etcd_server_proposals_pending\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77976','30932','1','22','etcd_debugging_mvcc_put_total\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77977','30932','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77978','30933','1','22','etcd_debugging_mvcc_range_total\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77979','30933','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77980','30934','1','23','etcd_debugging_store_reads_total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77981','30934','2','21','//calculates total reads\nvar valueArr = JSON.parse(value);\nreturn valueArr.reduce(function(acc,obj){\n return acc + parseFloat(obj[\'value\'])\n},0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77982','30934','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77983','30935','1','22','etcd_network_client_grpc_received_bytes_total\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77984','30935','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77985','30936','1','22','process_resident_memory_bytes\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77986','30937','1','12','$.etcdserver','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77987','30937','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77988','30938','1','22','etcd_debugging_mvcc_range_total\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77989','30938','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77990','30939','1','22','process_start_time_seconds\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77991','30939','2','21','//use boottime to calculate uptime\nreturn (Math.floor(Date.now()/1000)-Number(value));','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77992','30940','1','22','process_virtual_memory_bytes\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77993','30941','1','23','etcd_debugging_store_writes_total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77994','30941','2','21','var valueArr = JSON.parse(value);\nreturn valueArr.reduce(function(acc,obj){\n return acc + parseFloat(obj[\'value\'])\n},0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77995','30941','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77996','30942','1','22','etcd_network_client_grpc_sent_bytes_total\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77997','30942','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77998','30943','1','12','$.etcdcluster','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('77999','30943','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78000','30944','1','22','process_max_fds\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78001','30945','1','22','etcd_server_has_leader\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78002','30945','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78003','30946','1','22','etcd_debugging_mvcc_db_total_size_in_bytes\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78004','30947','1','22','etcd_debugging_mvcc_delete_total\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78005','30947','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78006','30948','1','22','etcd_debugging_mvcc_pending_events_total\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78007','30949','1','23','grpc_server_msg_received_total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78008','30949','2','21','var valueArr = JSON.parse(value);\nreturn valueArr.reduce(function(acc,obj){\n return acc + parseFloat(obj[\'value\'])\n},0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78009','30949','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78010','30950','1','23','grpc_server_msg_sent_total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78011','30950','2','21','var valueArr = JSON.parse(value);\nreturn valueArr.reduce(function(acc,obj){\n return acc + parseFloat(obj[\'value\'])\n},0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78012','30950','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78013','30951','1','23','grpc_server_started_total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78014','30951','2','21','var valueArr = JSON.parse(value);\nreturn valueArr.reduce(function(acc,obj){\n return acc + parseFloat(obj[\'value\'])\n},0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78015','30951','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78016','30952','1','23','etcd_http_failed_total{code=~"4.+"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78017','30952','2','21','var valueArr = JSON.parse(value);\nreturn valueArr.reduce(function(acc,obj){\n return acc + parseFloat(obj[\'value\'])\n},0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78018','30952','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78019','30953','1','22','process_cpu_seconds_total\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78020','30953','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78021','30954','1','23','etcd_http_failed_total{code=~"5.+"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78022','30954','2','21','var valueArr = JSON.parse(value);\nreturn valueArr.reduce(function(acc,obj){\n return acc + parseFloat(obj[\'value\'])\n},0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78023','30954','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78024','30955','1','23','etcd_http_received_total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78025','30955','2','21','var valueArr = JSON.parse(value);\nreturn valueArr.reduce(function(acc,obj){\n return acc + parseFloat(obj[\'value\'])\n},0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78026','30955','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78027','30956','1','22','etcd_server_is_leader\nvalue\n','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78028','30956','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78029','30957','1','22','etcd_debugging_mvcc_db_compaction_keys_total\nvalue\n','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78030','30957','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78031','30958','1','22','etcd_debugging_store_expires_total\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78032','30958','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78033','30959','1','22','etcd_debugging_mvcc_keys_total\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78034','30960','1','22','etcd_server_leader_changes_seen_total\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78035','30961','1','23','grpc_server_handled_total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78036','30961','2','21','var data = JSON.parse(value),\n lookup = {},\n result =[];\nfor (var item, i = 0; item = data[i++];) {\n var code = item.labels.grpc_code;\n if (!(code in lookup)) {\n lookup[code] = 1;\n result.push({ "{#GRPC.CODE}": code});\n}\n}\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78037','30961','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78038','30962','1','23','etcd_network_peer_sent_bytes_total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78039','30963','1','23','grpc_server_handled_total{grpc_method="{#GRPC.CODE}"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78040','30963','2','21','var valueArr = JSON.parse(value);\nreturn valueArr.reduce(function(acc,obj){\n return acc + parseFloat(obj[\'value\'])\n},0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78041','30963','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78042','30964','1','22','etcd_network_peer_received_bytes_total{From="{#ETCD.PEER}"}\nvalue\n','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78043','30964','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78044','30965','1','22','etcd_network_peer_sent_bytes_total{To="{#ETCD.PEER}"}\nvalue\n','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78045','30965','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78046','30966','1','22','etcd_network_peer_received_failures_total{To="{#ETCD.PEER}"}\nvalue\n','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78047','30966','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78048','30967','1','22','etcd_network_peer_sent_failures_total{To="{#ETCD.PEER}"}\nvalue\n','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78049','30967','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78050','31499','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78056','31516','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78057','31518','1','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78058','31519','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78059','31520','1','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78060','31521','1','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78061','31522','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78063','31527','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78065','31529','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78066','31530','1','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78067','31531','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78068','31531','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78086','31545','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78087','31546','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78088','31547','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78089','31548','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78090','31549','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78091','31550','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78093','30188','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78094','30189','1','5','# ([\\s\\S]*)\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78095','30189','2','24','\n\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78096','30191','1','21','try {\n var t = value.match(/(\\d+)d (\\d+)h(\\d+)m(\\d+)s/);\n return t[1] * 86400 + t[2] * 3600 + t[3] * 60 + t[4] * 1;\n}\ncatch (error) {\n throw "HAProxy uptime is not found : " + error;\n}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78097','30192','1','5','HAProxy version ([^,]*),\n\\1','3','HAProxy version is not found');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78098','30192','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78099','30197','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].dresp.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78100','30197','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78101','30198','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].econ.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78102','30198','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78103','30199','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].eresp.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78104','30199','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78105','30200','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].qcur.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78106','30201','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].qtime.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78107','30201','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78108','30202','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].rtime.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78109','30202','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78110','30203','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78111','30203','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78113','30204','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].wredis.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78114','30204','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78115','30205','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].wretr.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78116','30205','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78117','30206','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].bin.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78118','30206','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78119','30206','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78120','30207','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].bout.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78121','30207','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78122','30207','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78123','30208','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].dreq.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78124','30208','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78125','30209','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].ereq.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78126','30209','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78127','30210','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_1xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78128','30210','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78129','30211','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_2xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78130','30211','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78131','30212','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_3xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78132','30212','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78133','30213','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_4xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78134','30213','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78135','30214','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_5xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78136','30214','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78137','30215','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].rate.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78138','30216','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].req_rate.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78139','30217','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].scur.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78140','30218','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].slim.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78141','30218','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78142','30219','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].dresp.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78143','30219','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78144','30220','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].econ.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78145','30220','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78146','30221','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].eresp.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78147','30221','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78148','30222','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_4xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78149','30222','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78150','30223','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_5xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78151','30223','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78152','30224','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].qcur.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78153','30225','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].qtime.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78154','30225','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78155','30226','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].rtime.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78156','30226','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78157','30227','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78158','30227','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78160','30228','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].wredis.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78161','30228','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78162','30229','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].wretr.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78163','30229','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78215','30230','1','5','# ([\\s\\S]*)\\n\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78216','30230','2','24','\n\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78217','30790','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78218','30234','1','21','try {\n var t = value.match(/(\\d+)d (\\d+)h(\\d+)m(\\d+)s/);\n return t[1] * 86400 + t[2] * 3600 + t[3] * 60 + t[4] * 1;\n}\ncatch (error) {\n throw "HAProxy uptime is not found : " + error;\n}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78219','30235','1','5','HAProxy version ([^,]*),\n\\1','3','HAProxy version is not found');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78220','30235','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78221','30240','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].dresp.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78222','30240','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78223','30241','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].econ.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78224','30241','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78225','30242','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].eresp.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78226','30242','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78227','30243','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].qcur.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78228','30244','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].qtime.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78229','30244','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78230','30245','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].rtime.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78231','30245','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78232','30246','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78233','30246','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78235','30247','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].wredis.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78236','30247','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78237','30248','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].wretr.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78238','30248','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78239','30249','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].bin.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78240','30249','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78241','30249','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78242','30250','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].bout.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78243','30250','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78244','30250','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78245','30251','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].dreq.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78246','30251','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78247','30252','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].ereq.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78248','30252','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78249','30253','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_1xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78250','30253','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78251','30254','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_2xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78252','30254','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78253','30255','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_3xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78254','30255','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78255','30256','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_4xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78256','30256','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78257','30257','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_5xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78258','30257','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78259','30258','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].rate.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78260','30259','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].req_rate.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78261','30260','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].scur.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78262','30261','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].slim.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78263','30261','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78264','30262','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].dresp.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78265','30262','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78266','30263','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].econ.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78267','30263','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78268','30264','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].eresp.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78269','30264','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78270','30265','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_4xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78271','30265','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78272','30266','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_5xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78273','30266','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78274','30267','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].qcur.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78275','30268','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].qtime.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78276','30268','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78277','30269','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].rtime.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78278','30269','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78279','30270','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78280','30270','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78282','30271','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].wredis.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78283','30271','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78284','30272','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].wretr.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78285','30272','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78337','30968','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78338','30969','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78339','30970','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78340','30971','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78341','30972','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78342','30973','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78343','30974','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78344','30976','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78345','30977','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78346','30978','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78347','30979','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78348','30980','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78349','30981','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78350','30982','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78351','30983','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78352','30984','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78353','30985','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78354','30986','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78355','30992','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78356','30993','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78357','30994','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78358','30995','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78359','30997','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78360','30998','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78361','30999','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78362','31000','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78363','31001','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78364','31002','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78365','31003','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78366','31004','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78367','31006','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78368','31008','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78369','31009','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78370','31010','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78371','31011','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78372','31012','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78373','31013','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78374','31014','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78375','31015','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78376','31016','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78377','31018','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78378','31019','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78379','31020','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78380','31021','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78381','31022','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78382','31023','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78383','31024','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78384','31025','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78385','31026','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78386','31027','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78387','31028','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78388','31034','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78389','31035','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78390','31036','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78391','31037','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78392','31039','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78393','31040','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78394','31041','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78395','31042','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78396','31043','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78397','31044','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78398','31045','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78399','31046','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78400','31048','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78401','31050','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78402','31051','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78403','30611','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78404','30613','1','12','$.cmd_flush','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78405','30613','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78406','30614','1','12','$.bytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78407','30615','1','12','$.uptime','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78408','30616','1','12','$.total_items','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78409','30616','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78410','30617','1','12','$.threads','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78411','30618','1','12','$.get_misses','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78412','30618','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78413','30619','1','12','$.get_hits','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78414','30619','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78415','30620','1','12','$.evictions','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78416','30620','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78417','30621','1','12','$.curr_items','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78418','30622','1','12','$.bytes_written','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78419','30622','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78420','30623','1','12','$.bytes_read','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78421','30623','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78422','30624','1','12','$.pid','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78423','30624','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78424','30625','1','12','$.cmd_get','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78425','30625','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78426','30626','1','12','$.rusage_user','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78427','30627','1','12','$.rusage_system','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78428','30628','1','12','$.conn_yields','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78429','30628','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78430','30629','1','12','$.connection_structures','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78431','30630','1','12','$.total_connections','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78432','30630','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78433','30631','1','12','$.listen_disabled_num','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78434','30631','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78435','30632','1','12','$.max_connections','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78436','30632','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78437','30633','1','12','$.curr_connections','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78438','30634','1','12','$.limit_maxbytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78439','30634','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78440','30635','1','12','$.cmd_set','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78441','30635','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78442','30636','1','12','$.version','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78443','30636','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78444','28810','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78445','28811','1','5','Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)\n\\3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78446','28812','1','5','Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)\n\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78447','28813','1','5','Active connections: ([0-9]+)\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78448','28814','1','5','Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78449','28815','1','5','server accepts handled requests\\s+([0-9]+) ([0-9]+) ([0-9]+)\n\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78450','28815','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78451','28816','1','21','var a = value.match(/server accepts handled requests\\s+([0-9]+) ([0-9]+) ([0-9]+)/)\nif (a) {\n return a[1]-a[2]\n}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78452','28816','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78453','28817','1','5','server accepts handled requests\\s+([0-9]+) ([0-9]+) ([0-9]+)\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78454','28817','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78455','28818','1','5','server accepts handled requests\\s+([0-9]+) ([0-9]+) ([0-9]+)\n\\3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78456','28818','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78457','28819','1','5','server accepts handled requests\\s+([0-9]+) ([0-9]+) ([0-9]+)\n\\3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('78458','28820','1','5','Server: nginx\\/(.+(?(.*)<.*/);\nif (matches) {\n return JSON.stringify([{"{#MASTERHOST}": matches[1]}]);\n}\n\nreturn \'[]\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79264','30473','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79265','30474','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79266','30476','1','11','/resultset/row/field[@name=\'Seconds_Behind_Master\']/text()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79267','30476','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79268','30476','3','15','null','3','Replication is not performed.');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79269','30477','1','11','/resultset/row/field[@name=\'Slave_IO_Running\']/text()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79270','30477','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79271','30478','1','11','/resultset/row/field[@name=\'Slave_SQL_Running\']/text()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79272','30478','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79273','30637','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79274','30638','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79275','30642','1','12','$.Innodb_buffer_pool_reads','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79276','30643','1','12','$.Innodb_buffer_pool_reads','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79277','30643','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79278','30644','1','12','$.Innodb_row_lock_time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79279','30644','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79280','30644','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79281','30645','1','12','$.Innodb_row_lock_time_max','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79282','30645','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79283','30645','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79284','30646','1','12','$.Innodb_row_lock_waits','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79285','30647','1','12','$.Max_used_connections','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79286','30647','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79287','30648','1','12','$.Queries','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79288','30648','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79289','30649','1','12','$.Innodb_buffer_pool_read_requests','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79290','30650','1','12','$.Questions','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79291','30650','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79292','30651','1','12','$.Slow_queries','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79293','30651','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79294','30652','1','12','$.Threads_cached','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79295','30653','1','12','$.Threads_connected','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79296','30655','1','12','$.Threads_running','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79297','30656','1','12','$.Uptime','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79298','30657','1','12','$.Innodb_buffer_pool_read_requests','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79299','30657','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79300','30658','1','12','$.Innodb_buffer_pool_pages_total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79301','30658','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79302','30659','1','12','$.Bytes_received','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79303','30659','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79304','30660','1','12','$.Connection_errors_max_connections','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79305','30660','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79306','30661','1','12','$.Bytes_sent','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79307','30661','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79308','30662','1','12','$.Com_delete','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79309','30662','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79310','30663','1','12','$.Com_insert','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79311','30663','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79312','30664','1','12','$.Com_select','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79313','30664','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79314','30665','1','12','$.Com_update','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79315','30665','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79316','30666','1','12','$.Connection_errors_accept','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79317','30666','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79318','30667','1','12','$.Connection_errors_internal','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79319','30667','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79320','30668','1','12','$.Connection_errors_peer_address','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79321','30668','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79322','30669','1','12','$.Innodb_buffer_pool_pages_free','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79323','30670','1','12','$.Connection_errors_select','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79324','30670','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79325','30671','1','12','$.Connection_errors_tcpwrap','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79326','30671','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79327','30672','1','12','$.Connections','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79328','30672','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79329','30676','1','12','$.Aborted_connects','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79330','30676','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79331','30677','1','12','$.Aborted_clients','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79332','30677','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79333','31172','1','12','$.Threads_created','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79334','31172','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79335','31173','1','12','$.Created_tmp_disk_tables','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79336','31173','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79337','31174','1','12','$.Created_tmp_files','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79338','31174','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79339','31175','1','12','$.Created_tmp_tables','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79340','31175','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79341','30678','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79342','30679','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79343','30680','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79344','30682','1','12','$.Seconds_Behind_Master','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79345','30682','2','14','\\d+','3','Replication is not performed.');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79346','30682','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79347','30683','1','12','$.Slave_IO_Running','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79348','30683','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79349','30684','1','12','$.Slave_SQL_Running','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79350','30684','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79351','30480','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79352','30481','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79353','30484','1','12','$[?(@.Variable_name==\'Innodb_row_lock_waits\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79354','30485','1','12','$[?(@.Variable_name==\'Innodb_buffer_pool_read_requests\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79355','30486','1','12','$[?(@.Variable_name==\'Innodb_buffer_pool_read_requests\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79356','30486','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79357','30487','1','12','$[?(@.Variable_name==\'Innodb_buffer_pool_reads\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79358','30488','1','12','$[?(@.Variable_name==\'Innodb_buffer_pool_reads\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79359','30488','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79360','30489','1','12','$[?(@.Variable_name==\'Innodb_row_lock_time\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79361','30489','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79362','30489','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79363','30490','1','12','$[?(@.Variable_name==\'Innodb_row_lock_time_max\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79364','30490','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79365','30490','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79366','30491','1','12','$[?(@.Variable_name==\'Queries\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79367','30491','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79368','30492','1','12','$[?(@.Variable_name==\'Max_used_connections\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79369','30492','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79370','30493','1','12','$[?(@.Variable_name==\'Innodb_buffer_pool_pages_free\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79371','30494','1','12','$[?(@.Variable_name==\'Questions\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79372','30494','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79373','30495','1','12','$[?(@.Variable_name==\'Slow_queries\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79374','30495','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79375','30496','1','12','$[?(@.Variable_name==\'Threads_cached\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79376','30497','1','12','$[?(@.Variable_name==\'Threads_connected\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79377','30499','1','12','$[?(@.Variable_name==\'Threads_running\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79378','30500','1','12','$[?(@.Variable_name==\'Innodb_buffer_pool_pages_total\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79379','30500','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79380','30503','1','12','$[?(@.Variable_name==\'Com_select\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79381','30503','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79382','30504','1','12','$[?(@.Variable_name==\'Aborted_clients\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79383','30504','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79384','30505','1','12','$[?(@.Variable_name==\'Aborted_connects\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79385','30505','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79386','30506','1','12','$[?(@.Variable_name==\'Bytes_received\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79387','30506','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79388','30507','1','12','$[?(@.Variable_name==\'Bytes_sent\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79389','30507','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79390','30508','1','12','$[?(@.Variable_name==\'Com_delete\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79391','30508','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79392','30509','1','12','$[?(@.Variable_name==\'Com_insert\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79393','30509','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79394','30510','1','12','$[?(@.Variable_name==\'Com_update\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79395','30510','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79396','30512','1','12','$[?(@.Variable_name==\'Connection_errors_accept\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79397','30512','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79398','30513','1','12','$[?(@.Variable_name==\'Connection_errors_internal\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79399','30513','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79400','30514','1','12','$[?(@.Variable_name==\'Connection_errors_max_connections\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79401','30514','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79402','30515','1','12','$[?(@.Variable_name==\'Connection_errors_peer_address\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79403','30515','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79404','30516','1','12','$[?(@.Variable_name==\'Connection_errors_select\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79405','30516','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79406','30517','1','12','$[?(@.Variable_name==\'Connection_errors_tcpwrap\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79407','30517','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79408','30518','1','12','$[?(@.Variable_name==\'Connections\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79409','30518','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79410','30519','1','12','$[?(@.Variable_name==\'Uptime\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79411','31176','1','12','$[?(@.Variable_name==\'Threads_created\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79412','31176','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79413','31177','1','12','$[?(@.Variable_name==\'Created_tmp_disk_tables\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79414','31177','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79415','31178','1','12','$[?(@.Variable_name==\'Created_tmp_tables\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79416','31178','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79417','31179','1','12','$[?(@.Variable_name==\'Created_tmp_files\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79418','31179','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79419','30520','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79420','30521','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79421','30522','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79422','30524','1','12','$.[?(@.Master_Host==\'{#MASTER_HOST}\')][\'Seconds_Behind_Master\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79423','30524','2','14','\\d+','3','Replication is not performed.');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79424','30524','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79425','30525','1','12','$.[?(@.Master_Host==\'{#MASTER_HOST}\')][\'Slave_IO_Running\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79426','30525','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79427','30526','1','12','$.[?(@.Master_Host==\'{#MASTER_HOST}\')][\'Slave_SQL_Running\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79428','30526','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79429','31684','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79430','31685','1','12','$.datafile_num','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79431','31687','1','12','$.proc_num','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79432','31695','1','12','$.available','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79433','31696','1','12','$.exp_passwd_days_before','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79434','31701','1','12','$.active_user','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79435','31702','1','12','$.[\'Rows Per Sort\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79436','31703','1','12','$.active_background','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79437','31704','1','12','$.concurrency_rate','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79438','31705','1','12','$.total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79439','31706','1','12','$.inactive_user','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79440','31707','1','12','$.[\'SQL Service Response Time\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79441','31707','2','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79442','31708','1','12','$.sessions','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79443','31709','1','12','$.lock_rate','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79444','31710','1','12','$.processes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79445','31711','1','12','$.[\'Active Parallel Sessions\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79446','31712','1','12','$.long_time_locked','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79447','31713','1','12','$.buffer_cache','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79448','31714','1','12','$.fixed_sga','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79449','31715','1','12','$.java_pool','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79450','31716','1','12','$.log_buffer','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79451','31717','1','12','$.shared_pool','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79452','31718','1','12','$.[\'Shared Pool Free %\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79453','31719','1','12','$.[\'Total Sorts Per User Call\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79454','31720','1','12','$.[\'Temp Space Used\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79455','31721','1','12','$.[\'total PGA allocated\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79456','31722','1','12','$.[\'total freeable PGA memory\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79457','31723','1','12','$.[\'total PGA inuse\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79458','31724','1','12','$.uptime','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79459','31725','1','12','$.[\'User Rollbacks Per Sec\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79460','31726','1','12','$.large_pool','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79461','31727','1','12','$.[\'Physical Read Bytes Per Sec\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79462','31728','1','12','$.[\'Physical Writes Per Sec\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79463','31729','1','12','$.space_reclaimable','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79464','31730','1','12','$.[\'Average Active Sessions\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79465','31731','1','12','$..archiver.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79466','31732','1','12','$.[\'Buffer Cache Hit Ratio\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79467','31733','1','12','$.[\'Global Cache Blocks Corrupted\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79468','31734','1','12','$.[\'Global Cache Blocks Lost\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79469','31735','1','12','$.[\'Cursor Cache Hit Ratio\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79470','31736','1','12','$.[\'Database CPU Time Ratio\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79471','31737','1','12','$.[\'Database Wait Time Ratio\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79472','31738','1','12','$.db_files','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79473','31739','1','12','$.[\'Disk Sort Per Sec\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79474','31740','1','12','$.[\'Enqueue Timeouts Per Sec\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79475','31741','1','12','$.number_of_files','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79476','31742','1','12','$.restore_point','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79477','31743','1','12','$.space_limit','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79478','31744','1','12','$.space_used','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79479','31745','1','12','$.[\'Physical Write Bytes Per Sec\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79480','31746','1','12','$.usable_pct','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79481','31747','1','12','$.[\'GC CR Block Received Per Second\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79482','31748','1','12','$..hostname.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79483','31749','1','12','$.instance','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79484','31750','1','12','$.status','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79485','31751','1','12','$.role','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79486','31752','1','12','$.[\'Library Cache Hit Ratio\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79487','31753','1','12','$.[\'Logons Per Sec\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79488','31754','1','12','$.[\'Long Table Scans Per Sec\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79489','31755','1','12','$.[\'Memory Sorts Ratio\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79490','31756','1','12','$.[\'global memory bound\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79491','31757','1','12','$.[\'aggregate PGA target parameter\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79492','31758','1','12','$.[\'Active Serial Sessions\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79493','31759','1','12','$.[\'Physical Reads Per Sec\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79494','31760','1','12','$.version','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79495','31760','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79496','31766','1','12','$..[\'{#DEST_NAME}\'].error.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79497','31767','1','12','$..[\'{#DEST_NAME}\'].log_sequence.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79498','31768','1','12','$..[\'{#DEST_NAME}\'].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79499','31769','1','12','$..{#DBNAME}.force_logging.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79500','31769','2','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79501','31770','1','12','$..{#DBNAME}.log_mode.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79502','31770','2','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79503','31771','1','12','$..{#DBNAME}.open_mode.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79504','31771','2','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79505','31772','1','12','$..{#DBNAME}.role.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79506','31772','2','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79507','31773','1','12','$..[\'{#DG_NAME}\'].free_size_byte.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79508','31774','1','12','$..[\'{#DG_NAME}\'].size_byte.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79509','31775','1','12','$..[\'{#DG_NAME}\'].used_percent.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79510','31776','1','12','$..{#DBNAME}.open_mode.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79511','31776','2','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79512','31777','1','12','$..[\'{#TABLESPACE}\'].file_bytes.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79513','31778','1','12','$..[\'{#TABLESPACE}\'].free_bytes.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79514','31779','1','12','$..[\'{#TABLESPACE}\'].max_bytes.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79515','31780','1','12','$..[\'{#TABLESPACE}\'].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79516','31781','1','12','$..[\'{#TABLESPACE}\'].used_pct_max.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79517','31183','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79518','31184','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79519','31189','1','12','$..VERSION.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79520','31189','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79521','31190','1','12','$[?(@.METRIC==\'SESSION::Lock rate\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79522','31191','1','12','$[?(@.METRIC==\'SYS::Physical Writes Per Sec\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79523','31192','1','12','$[?(@.METRIC==\'PROC::Procnum\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79524','31193','1','12','$[?(@.METRIC==\'SYSPARAM::Processes\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79525','31194','1','12','$[?(@.METRIC==\'REDO::Available\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79526','31195','1','12','$[?(@.METRIC==\'SYS::Rows Per Sort\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79527','31196','1','12','$[?(@.METRIC==\'SYS::SQL Service Response Time\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79528','31196','2','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79529','31197','1','12','$[?(@.METRIC==\'SESSION::Active Background\')].VALUE.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79530','31198','1','12','$[?(@.METRIC==\'SESSION::Active User\')].VALUE.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79531','31199','1','12','$[?(@.METRIC==\'SESSION::Concurrency rate\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79532','31200','1','12','$[?(@.METRIC==\'SESSION::Total\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79533','31201','1','12','$[?(@.METRIC==\'SESSION::Inactive User\')].VALUE.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79534','31202','1','12','$[?(@.METRIC==\'SYSPARAM::Sessions\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79535','31203','1','12','$[?(@.METRIC==\'SESSION::Long time locked\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79536','31204','1','12','$[?(@.METRIC==\'SYS::User Rollbacks Per Sec\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79537','31205','1','12','$[?(@.METRIC==\'SGA::Buffer_Cache\')].VALUE.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79538','31206','1','12','$[?(@.METRIC==\'SYS::Physical Write Bytes Per Sec\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79539','31207','1','12','$[?(@.METRIC==\'SGA::Java Pool\')].VALUE.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79540','31208','1','12','$[?(@.METRIC==\'SGA::Large Pool\')].VALUE.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79541','31209','1','12','$[?(@.METRIC==\'SGA::Log_Buffer\')].VALUE.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79542','31210','1','12','$[?(@.METRIC==\'SGA::Shared Pool\')].VALUE.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79543','31211','1','12','$[?(@.METRIC==\'SYS::Shared Pool Free %\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79544','31212','1','12','$[?(@.METRIC==\'SYS::Total Sorts Per User Call\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79545','31213','1','12','$[?(@.METRIC==\'SYS::Temp Space Used\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79546','31214','1','12','$[?(@.METRIC==\'PGA::Total Pga Allocated\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79547','31215','1','12','$[?(@.METRIC==\'PGA::Total Freeable Pga Memory\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79548','31216','1','12','$[?(@.METRIC==\'PGA::Total Pga Inuse\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79549','31217','1','12','$..UPTIME.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79550','31218','1','12','$[?(@.METRIC==\'USER::Expire password\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79551','31219','1','12','$[?(@.METRIC==\'SGA::Fixed_Sga\')].VALUE.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79552','31220','1','12','$[?(@.METRIC==\'SYS::Physical Read Bytes Per Sec\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79553','31221','1','12','$[?(@.METRIC==\'SYS::Physical Reads Per Sec\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79554','31222','1','12','$[?(@.METRIC==\'SYS::Enqueue Timeouts Per Sec\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79555','31223','1','12','$[?(@.METRIC==\'SYS::Active Parallel Sessions\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79556','31224','1','12','$[?(@.METRIC==\'SYS::Active Serial Sessions\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79557','31225','1','12','$[?(@.METRIC==\'SYS::Average Active Sessions\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79558','31226','1','12','$..ARCHIVER.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79559','31227','1','12','$[?(@.METRIC==\'SYS::Buffer Cache Hit Ratio\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79560','31228','1','12','$[?(@.METRIC==\'SYS::Global Cache Blocks Corrupted\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79561','31229','1','12','$[?(@.METRIC==\'SYS::Global Cache Blocks Lost\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79562','31230','1','12','$[?(@.METRIC==\'SYS::Cursor Cache Hit Ratio\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79563','31231','1','12','$[?(@.METRIC==\'SYS::Database CPU Time Ratio\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79564','31232','1','12','$[?(@.METRIC==\'SYS::Database Wait Time Ratio\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79565','31233','1','12','$[?(@.METRIC==\'DATAFILE::Count\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79566','31234','1','12','$[?(@.METRIC==\'SYSPARAM::Db_Files\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79567','31235','1','12','$[?(@.METRIC==\'SYS::Disk Sort Per Sec\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79568','31236','1','12','$[?(@.METRIC==\'FRA::Number Of Files\')].VALUE.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79569','31237','1','12','$[?(@.METRIC==\'PGA::Aggregate Pga Target Parameter\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79570','31238','1','12','$[?(@.METRIC==\'FRA::Restore Point\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79571','31239','1','12','$[?(@.METRIC==\'FRA::Space Limit\')].VALUE.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79572','31240','1','12','$[?(@.METRIC==\'FRA::Space Reclaimable\')].VALUE.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79573','31241','1','12','$[?(@.METRIC==\'FRA::Space Used\')].VALUE.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79574','31242','1','12','$[?(@.METRIC==\'FRA::Usable Pct\')].VALUE.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79575','31243','1','12','$[?(@.METRIC==\'SYS::GC CR Block Received Per Second\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79576','31244','1','12','$..HOST_NAME.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79577','31245','1','12','$..INSTANCE_NAME.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79578','31246','1','12','$..STATUS.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79579','31247','1','12','$..INSTANCE_ROLE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79580','31248','1','12','$[?(@.METRIC==\'SYS::Library Cache Hit Ratio\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79581','31249','1','12','$[?(@.METRIC==\'SYS::Logons Per Sec\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79582','31250','1','12','$[?(@.METRIC==\'SYS::Long Table Scans Per Sec\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79583','31251','1','12','$[?(@.METRIC==\'PGA::Global Memory Bound\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79584','31252','1','12','$[?(@.METRIC==\'SYS::Memory Sorts Ratio\')].VALUE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79585','31258','1','12','$[?(@.DEST_NAME==\'{#DEST_NAME}\')].ERROR.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79586','31259','1','12','$[?(@.DEST_NAME==\'{#DEST_NAME}\')].LOG_SEQUENCE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79587','31260','1','12','$[?(@.DEST_NAME==\'{#DEST_NAME}\')].STATUS.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79588','31261','1','12','$[?(@.DG_NAME==\'{#DG_NAME}\')].FREE_SIZE_BYTE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79589','31262','1','12','$[?(@.DG_NAME==\'{#DG_NAME}\')].SIZE_BYTE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79590','31263','1','12','$[?(@.DG_NAME==\'{#DG_NAME}\')].USED_PERCENT.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79591','31264','1','12','$[?(@.DBNAME==\'{#DBNAME}\')].FORCE_LOGGING.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79592','31264','2','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79593','31265','1','12','$[?(@.DBNAME==\'{#DBNAME}\')].LOG_MODE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79594','31265','2','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79595','31266','1','12','$[?(@.DBNAME==\'{#DBNAME}\')].OPEN_MODE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79596','31266','2','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79597','31267','1','12','$[?(@.DBNAME==\'{#DBNAME}\')].ROLE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79598','31267','2','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79599','31268','1','12','$[?(@.DBNAME==\'{#DBNAME}\')].OPEN_MODE.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79600','31268','2','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79601','31269','1','12','$[?(@.TABLESPACE==\'{#TABLESPACE}\')].FILE_BYTES.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79602','31270','1','12','$[?(@.TABLESPACE==\'{#TABLESPACE}\')].FREE_BYTES.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79603','31271','1','12','$[?(@.TABLESPACE==\'{#TABLESPACE}\')].MAX_BYTES.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79604','31272','1','12','$[?(@.TABLESPACE==\'{#TABLESPACE}\')].STATUS.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79605','31273','1','12','$[?(@.TABLESPACE==\'{#TABLESPACE}\')].USED_PCT_MAX.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79606','32366','1','5','Time:\\s+(\\d+\\.\\d+)\\s+ms\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79607','32367','1','21','return value.search(/accepting connections/)>0 ? 1 : 0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79608','32367','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79609','32373','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79610','32378','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79611','32381','1','12','$.idle','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79612','32382','1','12','$.active','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79613','32383','1','12','$.prepared','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79614','32384','1','12','$.waiting','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79615','32385','1','12','$.count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79616','32386','1','12','$.buffers_alloc','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79617','32386','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79618','32387','1','12','$.buffers_backend','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79619','32387','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79620','32388','1','12','$.checkpoint_write_time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79621','32388','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79622','32388','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79623','32389','1','12','$.buffers_backend_fsync','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79624','32389','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79625','32390','1','12','$.buffers_checkpoint','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79626','32390','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79627','32391','1','12','$.buffers_clean','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79628','32391','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79629','32392','1','12','$.checkpoints_req','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79630','32392','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79631','32393','1','12','$.checkpoints_timed','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79632','32393','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79633','32394','1','12','$.checkpoint_sync_time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79634','32394','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79635','32394','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79636','32395','1','12','$.maxwritten_clean','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79637','32395','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79638','32396','1','12','$.waiting','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79639','32397','1','12','$.active','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79640','32398','1','12','$.idle','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79641','32399','1','12','$.idle_in_transaction','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79642','32400','1','12','$.prepared','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79643','32401','1','12','$.total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79644','32402','1','12','$.total_pct','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79645','32403','1','12','$.write','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79646','32403','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79647','32408','1','12','$[\'{#DBNAME}\'].conflicts','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79648','32408','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79649','32409','1','12','$[\'{#DBNAME}\'].total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79650','32410','1','12','$.seq','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79651','32410','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79652','32411','1','12','$.idx','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79653','32411','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79654','32412','1','12','$[\'{#DBNAME}\'].tx_time_sum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79655','32413','1','12','$[\'{#DBNAME}\'].tx_time_max','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79656','32414','1','12','$[\'{#DBNAME}\'].tx_slow_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79657','32415','1','12','$[\'{#DBNAME}\'].query_time_sum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79658','32416','1','12','$[\'{#DBNAME}\'].query_time_max','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79659','32417','1','12','$[\'{#DBNAME}\'].query_slow_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79660','32418','1','12','$[\'{#DBNAME}\'].mro_time_sum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79661','32419','1','12','$[\'{#DBNAME}\'].mro_time_max','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79662','32420','1','12','$[\'{#DBNAME}\'].mro_slow_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79663','32421','1','12','$[\'{#DBNAME}\'].blks_read','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79664','32421','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79665','32422','1','12','$[\'{#DBNAME}\'].deadlocks','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79666','32422','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79667','32423','1','12','$[\'{#DBNAME}\'].blks_hit','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79668','32423','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79669','32424','1','12','$.prc_before_av','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79670','32425','1','12','$[\'{#DBNAME}\'].xact_rollback','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79671','32425','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79672','32426','1','12','$[\'{#DBNAME}\'].xact_commit','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79673','32426','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79674','32427','1','12','$[\'{#DBNAME}\'].tup_updated','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79675','32427','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79676','32428','1','12','$[\'{#DBNAME}\'].tup_returned','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79677','32428','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79678','32429','1','12','$[\'{#DBNAME}\'].tup_inserted','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79679','32429','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79680','32430','1','12','$[\'{#DBNAME}\'].tup_fetched','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79681','32430','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79682','32431','1','12','$[\'{#DBNAME}\'].tup_deleted','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79683','32431','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79684','32432','1','12','$[\'{#DBNAME}\'].temp_files','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79685','32432','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79686','32433','1','12','$[\'{#DBNAME}\'].temp_bytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79687','32433','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79688','32434','1','12','$.prc_before_stop','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79689','31282','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79690','31291','1','12','$.tup_fetched','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79691','31291','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79692','31292','1','12','$.numbackends','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79693','31293','1','12','$.deadlocks','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79694','31293','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79695','31294','1','12','$.temp_bytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79696','31294','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79697','31295','1','12','$.temp_files','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79698','31295','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79699','31296','1','12','$.tup_deleted','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79700','31296','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79701','31297','1','12','$.archived_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79702','31298','1','12','$.tup_inserted','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79703','31298','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79704','31299','1','12','$.tup_returned','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79705','31299','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79706','31300','1','12','$.tup_updated','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79707','31300','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79708','31301','1','12','$.xact_commit','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79709','31301','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79710','31302','1','12','$.xact_rollback','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79711','31302','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79712','31303','1','12','$.checksum_failures','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79713','31303','2','14','^\\d*$','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79714','31303','3','10','','2','-1');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79715','31304','1','12','$.count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79716','31305','1','12','$.conflicts','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79717','31305','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79718','31306','1','12','$.blk_write_time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79719','31306','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79720','31307','1','12','$.blks_read','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79721','31307','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79725','31309','1','12','$.failed_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79726','31310','1','12','$.size_files','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79727','31311','1','12','$.buffers_alloc','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79728','31311','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79729','31312','1','12','$.buffers_backend_fsync','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79730','31312','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79731','31313','1','12','$.buffers_backend','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79732','31313','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79733','31314','1','12','$.buffers_checkpoint','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79734','31314','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79735','31315','1','12','$.buffers_clean','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79736','31315','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79737','31316','1','12','$.checkpoint_write_time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79738','31316','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79739','31316','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79740','31317','1','12','$.checkpoints_req','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79741','31317','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79742','31318','1','12','$.checkpoints_timed','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79743','31318','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79744','31319','1','12','$.maxwritten_clean','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79745','31319','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79746','31320','1','12','$.active','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79747','31321','1','12','$.blks_hit','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79748','31321','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79749','31322','1','12','$.disabled','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79750','31323','1','12','$.idle_in_transaction','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79751','31324','1','12','$.idle','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79752','31325','1','12','$.idle_in_transaction','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79753','31326','1','12','$.idle_in_transaction_aborted','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79754','31327','1','12','$.prepared','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79755','31328','1','12','$.total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79756','31329','1','12','$.total_pct','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79757','31330','1','12','$.waiting','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79758','31331','1','12','$.blk_read_time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79759','31331','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79760','31332','1','12','$.count_files','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79761','31333','1','12','$.write','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79762','31333','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79763','31338','1','12','$[\'{#DBNAME}\'].tup_returned','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79764','31338','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79765','31339','1','12','$[\'{#DBNAME}\'].shareupdateexclusive','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79766','31340','1','12','$[\'{#DBNAME}\'].sharerowexclusive','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79767','31341','1','12','$[\'{#DBNAME}\'].share','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79768','31342','1','12','$[\'{#DBNAME}\'].rowshare','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79769','31343','1','12','$[\'{#DBNAME}\'].rowexclusive','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79770','31344','1','12','$[\'{#DBNAME}\'].exclusive','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79771','31345','1','12','$[\'{#DBNAME}\'].accessshare','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79772','31346','1','12','$[\'{#DBNAME}\'].accessexclusive','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79773','31347','1','12','$[\'{#DBNAME}\'].xact_rollback','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79774','31347','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79775','31348','1','12','$[\'{#DBNAME}\'].xact_commit','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79776','31348','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79777','31349','1','12','$[\'{#DBNAME}\'].tup_updated','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79778','31349','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79779','31350','1','12','$[\'{#DBNAME}\'].tup_fetched','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79780','31350','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79781','31351','1','12','$[\'{#DBNAME}\'].tup_inserted','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79782','31351','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79783','31352','1','12','$[\'{#DBNAME}\'].tup_deleted','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79784','31352','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79785','31353','1','12','$[\'{#DBNAME}\'].temp_files','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79786','31353','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79787','31354','1','12','$[\'{#DBNAME}\'].temp_bytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79788','31354','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79789','31355','1','12','$[\'{#DBNAME}\'].numbackends','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79790','31356','1','12','$[\'{#DBNAME}\'].deadlocks','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79791','31356','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79792','31357','1','12','$[\'{#DBNAME}\'].conflicts','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79793','31357','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79794','31358','1','12','$[\'{#DBNAME}\'].checksum_failures','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79795','31358','2','14','^\\d*$','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79797','31359','1','12','$[\'{#DBNAME}\'].blks_read','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79798','31359','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79799','31360','1','12','$[\'{#DBNAME}\'].blks_hit','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79800','31360','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79801','31361','1','12','$[\'{#DBNAME}\'].blk_write_time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79802','31361','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79803','31361','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79804','31362','1','12','$[\'{#DBNAME}\'].blk_read_time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79805','31362','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79806','31362','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79807','31363','1','12','$[\'{#DBNAME}\'].total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79808','30273','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79809','30274','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79810','30275','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79811','30277','1','12','$.Clients.blocked_clients','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79812','30278','1','12','$.Server.tcp_port','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79813','30278','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79814','30279','1','12','$.Stats.expired_keys','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79815','30280','1','12','$.Stats.evicted_keys','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79816','30281','1','12','$.Server.uptime_in_seconds','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79817','30282','1','12','$.Server.redis_mode','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79818','30282','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79819','30283','1','12','$.Server.redis_version','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79820','30283','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79821','30284','1','12','$.Stats.instantaneous_ops_per_sec','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79822','30285','1','12','$.Server.process_id','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79823','30285','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79824','30286','1','12','$.Replication.role','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79825','30286','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79826','30287','1','12','$.Replication.repl_backlog_size','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79827','30288','1','12','$.Replication.repl_backlog_histlen','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79828','30289','1','12','$.Stats.instantaneous_input_kbps','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79829','30289','2','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79830','30290','1','12','$.Stats.keyspace_hits','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79831','30291','1','12','$.Stats.instantaneous_output_kbps','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79832','30291','2','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79833','30292','1','12','$.Replication.repl_backlog_active','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79834','30293','1','12','$.Stats.keyspace_misses','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79835','30294','1','12','$.Stats.latest_fork_usec','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79836','30294','2','1','1.0E-5','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79837','30295','1','12','$.Stats.migrate_cached_sockets','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79838','30296','1','12','$.Stats.pubsub_channels','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79839','30297','1','12','$.Stats.pubsub_patterns','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79840','30298','1','12','$.Stats.rejected_connections','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79841','30299','1','12','$.Stats.sync_full','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79842','30300','1','12','$.Stats.sync_partial_err','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79843','30301','1','12','$.Stats.sync_partial_ok','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79844','30302','1','12','$.Stats.total_commands_processed','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79845','30303','1','12','$.Stats.total_connections_received','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79846','30304','1','12','$.Stats.total_net_input_bytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79847','30305','1','12','$.Replication.repl_backlog_first_byte_offset','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79848','30306','1','12','$.Replication.connected_slaves','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79849','30307','1','12','$.Replication.master_repl_offset','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79850','30308','1','12','$.Memory.used_memory_rss','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79851','30309','1','21','var clients = JSON.parse(value).Clients\nreturn clients.client_recent_max_input_buffer || clients.client_biggest_input_buf','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79852','30310','1','21','var clients = JSON.parse(value).Clients\nreturn clients.client_recent_max_output_buffer || clients.client_longest_output_list','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79853','30311','1','12','$.Cluster.cluster_enabled','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79854','30312','1','12','$.maxclients','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79855','30312','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79856','30313','1','12','$.CPU.used_cpu_sys','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79857','30314','1','12','$.CPU.used_cpu_sys_children','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79858','30315','1','12','$.CPU.used_cpu_user','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79859','30316','1','12','$.CPU.used_cpu_user_children','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79860','30317','1','12','$.Memory.mem_fragmentation_ratio','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79861','30318','1','12','$.Memory.used_memory','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79862','30319','1','12','$.Memory.used_memory_lua','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79863','30320','1','12','$.Memory.used_memory_peak','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79864','30321','1','12','$.Persistence.aof_current_rewrite_time_sec','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79865','30322','1','12','$.Clients.connected_clients','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79866','30323','1','12','$.Persistence.aof_enabled','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79867','30324','1','12','$.Persistence.aof_last_bgrewrite_status','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79868','30324','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79869','30325','1','12','$.Persistence.aof_last_rewrite_time_sec','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79870','30326','1','12','$.Persistence.aof_last_write_status','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79871','30326','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79872','30327','1','12','$.Persistence.aof_rewrite_in_progress','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79873','30328','1','12','$.Persistence.aof_rewrite_scheduled','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79874','30329','1','12','$.Persistence.loading','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79875','30330','1','12','$.Persistence.rdb_bgsave_in_progress','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79876','30331','1','12','$.Persistence.rdb_changes_since_last_save','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79877','30332','1','12','$.Persistence.rdb_current_bgsave_time_sec','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79878','30333','1','12','$.Persistence.rdb_last_bgsave_status','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79879','30333','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79880','30334','1','12','$.Persistence.rdb_last_bgsave_time_sec','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79881','30335','1','12','$.Persistence.rdb_last_save_time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79882','30336','1','12','$.Stats.total_net_output_bytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79883','30337','1','21','return JSON.stringify(value > 0 ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79884','30338','1','21','return JSON.stringify(Object.keys(JSON.parse(value).Keyspace)\n .map(function (v){return {"{#DB}": v}}));','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79885','30339','1','12','$.Server.redis_version','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79886','30339','2','21','return JSON.stringify(parseInt(value.split(\'.\')[0]) >= 4 ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79887','30340','1','12','$.Server.redis_version','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79888','30340','2','21','return JSON.stringify(parseInt(value.split(\'.\')[0]) >= 5 ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79889','30341','1','21','return JSON.stringify(JSON.parse(value).Persistence.aof_enabled === \'1\'\n ? [{\'{#SINGLETON}\': \'\'}]\n : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79890','30342','1','21','var repl = JSON.parse(value).Replication;\nreturn JSON.stringify(Object.keys(repl)\n .filter(function (v) {return v.match(/slave\\d+/)})\n .map(function (v){\n return {"{#SLAVE_IP}": repl[v].ip, "{#SLAVE_PORT}": repl[v].port}\n }));','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79891','30343','1','21','return JSON.stringify(JSON.parse(value).Replication.role === \'slave\'\n ? [{\'{#SINGLETON}\': \'\'}]\n : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79892','30348','1','12','$.Keyspace["{#DB}"].avg_ttl','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79893','30348','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79894','30349','1','12','$.Keyspace["{#DB}"].expires','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79895','30350','1','12','$.Keyspace["{#DB}"].keys','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79896','30351','1','12','$.Memory.active_defrag_running','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79897','30352','1','12','$.Persistence.rdb_last_cow_size','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79898','30353','1','12','$.Stats.expired_time_cap_reached_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79899','30354','1','12','$.Stats.expired_stale_perc','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79900','30355','1','12','$.Stats.active_defrag_misses','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79901','30356','1','12','$.Stats.active_defrag_key_misses','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79902','30357','1','12','$.Stats.active_defrag_key_hits','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79903','30358','1','12','$.Stats.active_defrag_hits','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79904','30359','1','12','$.Server.executable','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79905','30359','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79906','30360','1','12','$.Replication.second_repl_offset','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79907','30361','1','12','$.Persistence.aof_last_cow_size','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79908','30362','1','12','$.Memory.lazyfree_pending_objects','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79909','30363','1','12','$.Memory.used_memory_startup','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79910','30364','1','12','$.Memory.used_memory_peak_perc','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79911','30364','2','5','(.+)%\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79912','30365','1','12','$.Memory.used_memory_overhead','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79913','30366','1','12','$.Memory.used_memory_dataset','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79914','30367','1','12','$.Memory.used_memory_dataset_perc','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79915','30367','2','5','(.+)%\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79916','30368','1','12','$.Memory.total_system_memory','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79917','30369','1','12','$.Memory.maxmemory','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79918','30370','1','12','$.Memory.maxmemory_policy','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79919','30370','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79920','30371','1','12','$.Stats.slave_expires_tracked_keys','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79921','30372','1','12','$.Memory.allocator_active','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79922','30373','1','12','$.Memory.mem_clients_normal','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79923','30374','1','12','$.Memory.rss_overhead_ratio','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79924','30375','1','12','$.Memory.rss_overhead_bytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79925','30376','1','12','$.Memory.mem_replication_backlog','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79926','30377','1','12','$.Memory.number_of_cached_scripts','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79927','30378','1','12','$.Memory.mem_not_counted_for_evict','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79928','30379','1','12','$.Memory.mem_clients_slaves','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79929','30380','1','12','$.Memory.mem_aof_buffer','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79930','30381','1','12','$.Memory.allocator_allocated','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79931','30382','1','12','$.Memory.mem_fragmentation_bytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79932','30383','1','12','$.Memory.allocator_rss_ratio','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79933','30384','1','12','$.Memory.allocator_rss_bytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79934','30385','1','12','$.Memory.allocator_resident','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79935','30386','1','12','$.Memory.allocator_frag_ratio','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79936','30387','1','12','$.Memory.allocator_frag_bytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79937','30388','1','12','$.Memory.used_memory_scripts','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79938','30389','1','12','$.Persistence.aof_base_size','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79939','30390','1','12','$.Persistence.aof_buffer_length','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79940','30391','1','12','$.Persistence.aof_current_size','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79941','30392','1','12','$.Persistence.aof_delayed_fsync','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79942','30393','1','12','$.Persistence.aof_pending_bio_fsync','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79943','30394','1','12','$.Persistence.aof_pending_rewrite','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79944','30395','1','12','$.Persistence.aof_rewrite_buffer_length','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79945','30396','1','21','var repl = JSON.parse(value).Replication;\nvar res = Object.keys(repl)\n .filter(function (v) {return v.match(/slave\\d+/)})\n .filter(function (v) {return (repl[v].ip === "{#SLAVE_IP}" && repl[v].port === "{#SLAVE_PORT}")})\n .map(function (v) {return repl[v].offset})[0];\n\nif (res === undefined) {\n throw \'Slave {#SLAVE_IP}:{#SLAVE_PORT} is no longer available.\';\n}\n\nreturn res;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79946','30397','1','12','$.Replication.master_host','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79947','30397','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79948','30398','1','12','$.Replication.master_last_io_seconds_ago','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79949','30399','1','12','$.Replication.master_link_status','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79950','30399','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79951','30400','1','12','$.Replication.master_port','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79952','30400','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79953','30401','1','12','$.Replication.master_sync_in_progress','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79954','30402','1','12','$.Replication.slave_priority','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79955','30403','1','12','$.Replication.slave_read_only','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79956','30403','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79957','30404','1','12','$.Replication.slave_repl_offset','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79958','27152','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79959','29844','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79960','29845','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79961','29846','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79962','29847','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('79963','29848','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80150','30142','1','12','$..[\'{#CPU.UTIL}\'].avg()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80155','30157','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80156','30158','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80157','30161','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80158','30162','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80175','27079','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80176','27080','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80177','27082','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80178','27083','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80179','27084','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80180','27084','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80181','27085','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80182','27085','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80183','27086','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80211','27099','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80212','27100','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80213','27101','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80214','27101','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80215','27102','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80216','27103','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80217','27104','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80218','27104','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80219','27105','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80220','27105','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80221','27106','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80453','27119','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80454','27120','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80455','27121','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80456','27121','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80457','27122','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80458','27123','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80459','27124','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80460','27124','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80461','27125','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80462','27125','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80463','27126','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80475','22231','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80476','23318','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80477','29545','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80478','29546','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80501','27203','1','5','^(\\w|-|\\.|/)+ (\\w|-|\\.|/)+ (.+) Copyright\n\\3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80502','27203','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80503','27207','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80504','30086','1','5','^((\\w|-|\\.|/)+)\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80505','30086','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80506','30087','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80507','27214','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80508','28323','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80509','28327','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80510','28328','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80511','27236','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80512','27237','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80513','27295','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80514','27296','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80515','27297','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80516','27314','1','1','0.5','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80517','27315','1','1','0.5','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80518','27318','1','1','0.5','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80519','27319','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80520','27320','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80521','27378','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80522','27379','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80523','30097','1','5','Version (.+), RELEASE\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80524','30097','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80537','27419','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80541','27481','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80542','27482','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80543','27483','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80544','27484','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80545','27508','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80546','27509','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80547','27510','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80548','30106','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80549','27543','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80550','27544','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80551','27545','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80552','27546','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80553','27579','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80554','27580','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80555','27582','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80556','27583','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80557','30109','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80558','27591','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80559','30110','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80560','27675','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80561','27676','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80562','27677','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80563','27678','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80564','27679','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80565','28141','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80566','28142','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80567','28157','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80568','28158','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80569','27748','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80570','27749','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80571','27750','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80572','27754','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80573','27777','1','5','Firmware Version: ([0-9.]+),\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80574','27777','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80575','27778','1','5','(.+) - Firmware\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80576','27778','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80577','27785','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80578','27812','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80579','27813','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80580','30117','1','5','kernel (JUNOS [0-9a-zA-Z\\.\\-]+)\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80581','30117','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80582','28201','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80583','28204','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80584','28205','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80585','27893','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80586','27894','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80587','27895','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80588','27898','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80589','27900','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80590','30119','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80591','27905','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80592','27907','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80593','27908','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80594','31560','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80595','31562','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80596','31563','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80597','31564','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80598','31567','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80599','31569','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80600','27930','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80601','27931','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80602','27936','1','5','60 Secs \\( ([0-9\\.]+)%\\).+300 Secs\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80603','30121','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80604','27967','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80605','27968','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80606','27970','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80607','27971','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80608','30125','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80609','27997','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80610','27998','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80611','27999','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80612','28000','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80613','28026','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80614','28027','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80615','30132','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80616','30133','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80617','30134','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80618','30135','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80619','29087','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80620','29089','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80621','29102','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80622','29111','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80623','29113','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80624','29114','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80625','29116','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80626','29117','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80627','29120','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80628','29121','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80629','29122','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80630','29123','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80655','29198','1','21','//Calculate utilization\nreturn (100 - value)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80656','31364','1','21','return (100-value);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80661','31367','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80664','29216','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80665','29216','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80666','29217','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80667','29217','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80668','29218','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80669','29219','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80670','29220','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80671','29221','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80672','29222','1','21','var newvalue;\nswitch(value) {\n case "unknown":\n newvalue = 0;\n break;\n case "notpresent":\n newvalue = 1;\n break;\n case "down":\n newvalue = 2;\n break;\n case "lowerlayerdown":\n newvalue = 3;\n break;\n case "testing":\n newvalue = 4;\n break;\n case "dormant":\n newvalue = 5;\n break;\n case "up":\n newvalue = 6;\n break; default:\n newvalue = "Problem parsing interface operstate in JS";\n}\nreturn newvalue;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80673','29223','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80674','31372','1','21','return JSON.stringify(value.trim().split(/ +/));','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80697','31379','1','12','$[10]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80698','31379','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80699','31379','3','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80700','31380','1','12','$[0]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80701','31380','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80702','31381','1','12','$[3]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80703','31381','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80704','31381','3','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80705','31382','1','12','$[9]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80706','31382','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80707','31382','3','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80708','31383','1','12','$[4]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80709','31383','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80710','31384','1','12','$[7]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80711','31384','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80712','31384','3','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80745','31820','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80746','31831','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80747','31832','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80748','31836','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80749','31837','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80750','31840','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80751','31841','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80752','31843','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80753','31844','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80754','31845','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80755','31846','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80756','31849','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80769','31892','1','21','//Calculate utilization\nreturn (100 - value)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80770','31893','1','21','return (100-value);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80773','31896','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80775','31904','1','21','return JSON.stringify(value.trim().split(/ +/));','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80776','31909','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80777','31910','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80778','31911','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80779','31911','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80780','31912','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80781','31913','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80782','31914','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80783','31914','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80784','31915','1','21','var newvalue;\nswitch(value) {\n case "unknown":\n newvalue = 0;\n break;\n case "notpresent":\n newvalue = 1;\n break;\n case "down":\n newvalue = 2;\n break;\n case "lowerlayerdown":\n newvalue = 3;\n break;\n case "testing":\n newvalue = 4;\n break;\n case "dormant":\n newvalue = 5;\n break;\n case "up":\n newvalue = 6;\n break; default:\n newvalue = "Problem parsing interface operstate in JS";\n}\nreturn newvalue;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80785','31916','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80797','31932','1','12','$[10]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80798','31932','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80799','31932','3','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80800','31933','1','12','$[0]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80801','31933','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80802','31934','1','12','$[3]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80803','31934','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80804','31934','3','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80805','31935','1','12','$[9]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80806','31935','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80807','31935','3','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80808','31936','1','12','$[4]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80809','31936','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80810','31937','1','12','$[7]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80811','31937','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80812','31937','3','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80829','29398','1','22','{__name__=~"^node_time(?:_seconds)?$"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80830','29399','1','23','{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="steal"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80831','29399','2','21','//calculates average, all cpu utilization\nvar valueArr = JSON.parse(value);\nreturn valueArr.reduce(function(acc,obj){\n return acc + parseFloat(obj[\'value\'])\n},0)/valueArr.length;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80832','29399','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80833','29399','4','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80834','29400','1','22','{__name__=~"node_memory_SwapFree"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80835','29401','1','22','{__name__=~"node_memory_SwapTotal"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80836','29402','1','22','{__name__=~"node_memory_MemAvailable"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80837','29403','1','22','{__name__=~"node_memory_MemTotal"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80838','29404','1','22','{__name__=~"^node_boot_time(?:_seconds)?$"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80839','29405','1','22','{__name__=~"node_context_switches"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80840','29405','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80841','29406','1','22','{__name__=~"node_intr"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80842','29406','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80843','29407','1','23','{__name__=~"^node_cpu(?:_guest_seconds_total)?$",cpu=~".+",mode=~"^(?:nice|guest_nice)$"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80844','29407','2','21','//calculates average, all cpu utilization\nvar valueArr = JSON.parse(value);\nreturn valueArr.reduce(function(acc,obj){\n return acc + parseFloat(obj[\'value\'])\n},0)/valueArr.length;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80845','29407','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80846','29407','4','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80847','29408','1','23','{__name__=~"^node_cpu(?:_guest_seconds_total)?$",cpu=~".+",mode=~"^(?:user|guest)$"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80848','29408','2','21','//calculates average, all cpu utilization\nvar valueArr = JSON.parse(value);\nreturn valueArr.reduce(function(acc,obj){\n return acc + parseFloat(obj[\'value\'])\n},0)/valueArr.length;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80849','29408','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80850','29408','4','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80851','29409','1','23','{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="irq"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80852','29409','2','21','//calculates average, all cpu utilization\nvar valueArr = JSON.parse(value);\nreturn valueArr.reduce(function(acc,obj){\n return acc + parseFloat(obj[\'value\'])\n},0)/valueArr.length;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80853','29409','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80854','29409','4','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80855','29410','1','23','{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="iowait"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80856','29410','2','21','//calculates average, all cpu utilization\nvar valueArr = JSON.parse(value);\nreturn valueArr.reduce(function(acc,obj){\n return acc + parseFloat(obj[\'value\'])\n},0)/valueArr.length;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80857','29410','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80858','29410','4','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80859','29411','1','23','{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="nice"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80860','29411','2','21','//calculates average, all cpu utilization\nvar valueArr = JSON.parse(value);\nreturn valueArr.reduce(function(acc,obj){\n return acc + parseFloat(obj[\'value\'])\n},0)/valueArr.length;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80861','29411','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80862','29411','4','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80863','29412','1','23','{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="softirq"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80864','29412','2','21','//calculates average, all cpu utilization\nvar valueArr = JSON.parse(value);\nreturn valueArr.reduce(function(acc,obj){\n return acc + parseFloat(obj[\'value\'])\n},0)/valueArr.length;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80865','29412','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80866','29412','4','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80867','29413','1','23','{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="user"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80868','29413','2','21','//calculates average, all cpu utilization\nvar valueArr = JSON.parse(value);\nreturn valueArr.reduce(function(acc,obj){\n return acc + parseFloat(obj[\'value\'])\n},0)/valueArr.length;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80869','29413','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80870','29413','4','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80871','29414','1','22','node_uname_info\nlabel\nnodename','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80872','29414','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80873','29415','1','22','node_exporter_build_info\nlabel\nversion','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80874','29415','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80875','29416','1','23','{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="idle"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80876','29416','2','21','//calculates average, all cpu utilization\nvar valueArr = JSON.parse(value);\nreturn valueArr.reduce(function(acc,obj){\n return acc + parseFloat(obj[\'value\'])\n},0)/valueArr.length;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80877','29416','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80878','29416','4','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80879','29417','1','23','{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="idle"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80880','29417','2','21','//count the number of cores\nreturn JSON.parse(value).length','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80881','29418','1','22','node_load15\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80882','29419','1','22','node_load5\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80883','29420','1','22','node_load1\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80884','29421','1','22','{__name__=~"^node_boot_time(?:_seconds)?$"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80885','29421','2','21','//use boottime to calculate uptime\nreturn (Math.floor(Date.now()/1000)-Number(value));','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80886','29422','1','22','node_uname_info\nlabel\nmachine','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80887','29422','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80888','29423','1','22','node_filefd_allocated\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80889','29424','1','22','node_filefd_maximum\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80890','29424','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80891','29425','1','23','node_uname_info','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80892','29425','2','21','var info = JSON.parse(value)[0];\nreturn info.labels.sysname+\' version: \'+info.labels.release+\' \'+info.labels.version','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80893','29425','3','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80894','29426','1','23','{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="system"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80895','29426','2','21','//calculates average, all cpu utilization\nvar valueArr = JSON.parse(value);\nreturn valueArr.reduce(function(acc,obj){\n return acc + parseFloat(obj[\'value\'])\n},0)/valueArr.length;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80896','29426','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80897','29426','4','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80898','29427','1','21','//Calculate utilization\nreturn (100 - value)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80899','29428','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80900','29429','1','23','{__name__=~"^node_network_info$"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80901','29430','1','23','{__name__=~"^node_filesystem_size(?:_bytes)?$", mountpoint=~".+"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80902','29431','1','23','node_disk_io_now{device=~".+"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80903','29436','1','22','node_network_receive_bytes_total{device="{#IFNAME}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80904','29436','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80905','29436','3','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80906','29437','1','22','node_network_transmit_bytes_total{device="{#IFNAME}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80907','29437','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80908','29437','3','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80909','29438','1','22','node_network_transmit_errs_total{device="{#IFNAME}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80910','29438','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80911','29439','1','22','node_network_receive_errs_total{device="{#IFNAME}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80912','29439','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80913','29440','1','22','node_network_receive_drop_total{device="{#IFNAME}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80914','29440','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80915','29441','1','22','node_network_transmit_drop_total{device="{#IFNAME}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80916','29441','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80917','29442','1','22','node_network_speed_bytes{device="{#IFNAME}"}\nvalue\n','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80918','29442','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80919','29443','1','22','node_network_protocol_type{device="{#IFNAME}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80920','29444','1','22','node_network_info{device="{#IFNAME}"}\nlabel\noperstate','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80921','29444','2','21','var newvalue;\nswitch(value) {\n case "unknown":\n newvalue = 0;\n break;\n case "notpresent":\n newvalue = 1;\n break;\n case "down":\n newvalue = 2;\n break;\n case "lowerlayerdown":\n newvalue = 3;\n break;\n case "testing":\n newvalue = 4;\n break;\n case "dormant":\n newvalue = 5;\n break;\n case "up":\n newvalue = 6;\n break; default:\n newvalue = "Problem parsing interface operstate in JS";\n}\nreturn newvalue;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80922','29445','1','22','{__name__=~"^node_filesystem_avail(?:_bytes)?$", mountpoint="{#FSNAME}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80923','29446','1','22','{__name__=~"^node_filesystem_size(?:_bytes)?$", mountpoint="{#FSNAME}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80924','29447','1','23','{__name__=~"node_filesystem_files.*",mountpoint="{#FSNAME}"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80925','29447','2','21','//count vfs.fs.inode.pfree\nvar inode_free;\nvar inode_total;\nJSON.parse(value).forEach(function(metric) {\n if (metric[\'name\'] == \'node_filesystem_files\'){\n inode_total = metric[\'value\'];\n } else if (metric[\'name\'] == \'node_filesystem_files_free\'){\n inode_free = metric[\'value\'];\n }\n});\nreturn (inode_free/inode_total)*100;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80926','29448','1','22','node_disk_reads_completed_total{device="{#DEVNAME}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80927','29448','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80928','29449','1','22','node_disk_writes_completed_total{device="{#DEVNAME}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80929','29449','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80930','29450','1','22','node_disk_read_time_seconds_total{device="{#DEVNAME}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80931','29450','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80932','29451','1','22','node_disk_write_time_seconds_total{device="{#DEVNAME}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80933','29451','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80934','29452','1','22','node_disk_io_time_weighted_seconds_total{device="{#DEVNAME}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80935','29452','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80936','29453','1','22','node_disk_io_time_seconds_total{device="{#DEVNAME}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80937','29453','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80938','29453','3','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80939','28979','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80940','28980','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80941','28981','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80942','28982','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80943','28984','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80944','28985','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80945','28990','1','21','//count the number of cores\nreturn JSON.parse(value).length;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80946','28991','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80947','28992','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80957','29009','1','21','//count the number of CPU cores\nreturn JSON.stringify([{"{#CPU.COUNT}": value, "{#SNMPINDEX}": 0, "{#SINGLETON}":""}])','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80959','29014','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80960','29015','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80961','29017','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80962','29017','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80963','29018','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80964','29018','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80965','29019','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80966','29019','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80967','29020','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80968','29020','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80969','29021','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80970','29021','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80971','29022','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80972','29022','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80973','29023','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80974','29023','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80975','29024','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80976','29024','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80977','29025','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80978','29025','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80979','29026','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80980','29026','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80981','29027','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80982','29028','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('80983','29030','1','21','return (100-value);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81009','29048','1','21','//Calculate utilization\nreturn (100 - value)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81011','29474','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81012','29475','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81013','29478','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81017','31427','1','21','return (100 - value)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81019','31429','1','21','output = JSON.parse(value).map(function(net){\n return {\n "{#IFNAME}": net.Name,\n "{#IFDESCR}": net.Description,\n "{#IFALIAS}": net.NetConnectionID,\n "{#IFGUID}": net.GUID\n }})\nreturn JSON.stringify({"data": output})','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81020','31429','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81021','31430','1','25','{#INSTANCE}\n{#DEVNAME}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81025','31433','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81026','31434','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81027','31435','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81028','31435','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81029','31436','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81030','31437','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81031','31438','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81032','31438','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81041','31453','1','12','$[?(@.GUID == "{#IFGUID}")].Speed.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81042','31453','2','21','return (value==\'9223372036854775807\' ? 0 : value)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81043','31454','1','12','$[?(@.GUID == "{#IFGUID}")].NetConnectionStatus.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81044','31455','1','12','$[?(@.GUID == "{#IFGUID}")].AdapterTypeId.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81049','31958','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81050','31960','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81051','31961','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81055','32002','1','21','return (100 - value)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81057','32005','1','21','output = JSON.parse(value).map(function(net){\n return {\n "{#IFNAME}": net.Name,\n "{#IFDESCR}": net.Description,\n "{#IFALIAS}": net.NetConnectionID,\n "{#IFGUID}": net.GUID\n }})\nreturn JSON.stringify({"data": output})','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81058','32005','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81059','32006','1','25','{#INSTANCE}\n{#DEVNAME}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81063','32015','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81064','32016','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81065','32017','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81066','32017','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81067','32018','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81068','32019','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81069','32020','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81070','32020','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81079','32040','1','12','$[?(@.GUID == "{#IFGUID}")].Speed.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81080','32040','2','21','return (value==\'9223372036854775807\' ? 0 : value)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81081','32041','1','12','$[?(@.GUID == "{#IFGUID}")].NetConnectionStatus.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81082','32042','1','12','$[?(@.GUID == "{#IFGUID}")].AdapterTypeId.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81087','30688','1','12','$.[?(@.id==\'{#SENSOR_ID}\')].state.text.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81088','30688','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81089','30689','1','12','$.[?(@.id==\'{#SENSOR_ID}\')].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81090','30689','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81091','30073','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81092','30074','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81093','30079','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81094','30082','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81095','28342','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81096','28344','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81097','28345','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81098','30141','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81099','28354','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81100','28356','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81101','28367','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81102','28372','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81103','28390','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81104','28391','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81105','28422','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81106','28425','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81107','28466','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81108','28467','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81109','28479','1','5','(\\d{1,3}) *%( of maximum)?\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81110','31782','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81111','31784','1','21','var Ami = {\n params: {\n url: \'{$AMI.URL}\',\n trunk: \'{$AMI.TRUNK_REGEXP}\'\n },\n api_request: new HttpRequest(),\n\n request: function (url, action) {\n url += action;\n Zabbix.log(4, \'[ Asterisk ] Sending request: \' + url);\n try {\n response = Ami.api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ Asterisk ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n Zabbix.log(4, \'[ Asterisk ] Received response with status code \' +\n Ami.api_request.getStatus() + \'\\n\' + response);\n\n if (Ami.api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + Ami.api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n var match = response.match(\'Response: (.+)\');\n if (match !== null && match[1] !== \'Success\' && match[1] !== \'Goodbye\' && match[1] !== \'Follows\') {\n var responseText = match[1],\n message = \'Request failed with message \' + match[1];\n\n match = response.match(\'Message: (.+)\');\n if (match !== null && match[1]) {\n var responseMessage = match[1];\n message += \': \' + match[1];\n }\n if (responseText !== \'Error\' || responseMessage !== \'No endpoints found\') {\n throw message + \'. Check debug log for more information.\';\n }\n }\n\n return {\n status: Ami.api_request.getStatus(),\n body: response\n };\n }\n};\n\nvar asterisk = {\n version: \'\',\n uptime: 0,\n uptime_reload: 0,\n active_channels: 0,\n active_calls: 0,\n calls_processed: 0,\n sip: {\n trunks: [],\n monitored_online: 0,\n monitored_offline: 0,\n unmonitored_online: 0,\n unmonitored_offline: 0,\n active_channels: 0,\n total: 0\n },\n iax: {\n trunks: [],\n online: 0,\n offline: 0,\n unmonitored: 0,\n active_channels: 0,\n total: 0\n },\n pjsip: {\n trunks: [],\n available: 0,\n unavailable: 0,\n active_channels: 0,\n total: 0\n },\n queue: {\n queues: [],\n total: 0\n }\n};\n\nfunction block2Object(text) {\n var parts = [],\n dict = {};\n\n text = text.replace(/^Output: /gm, \'\');\n\n text.split(\'\\n\').forEach(function (line) {\n parts = line.split(\':\');\n if (parts.length > 1) {\n dict[parts.shift().trim()] = parts.join(\':\').trim();\n }\n })\n\n return dict;\n}\n\nfunction text2Object(text) {\n var blocks = text.split(\'\\r\\n\\r\\n\'),\n arr = [],\n i = 1,\n j = blocks.length - 2;\n\n for (i; i < j; i++) {\n arr.push(block2Object(blocks[i]));\n }\n\n return arr;\n}\n\nfunction getSipPeers() {\n var response = Ami.request(url, \'SIPpeers\'),\n elements = text2Object(response.body);\n asterisk.sip.total = elements.length;\n asterisk.sip.trunks = elements.filter(function (element) {\n return element.ObjectName.search(Ami.params.trunk) != -1;\n });\n elements.forEach(function (element) {\n if (element.IPaddress === \'-none-\') {\n switch (element.Status) {\n case \'Unmonitored\':\n asterisk.sip.unmonitored_offline++;\n break;\n\n case \'UNKNOWN\':\n asterisk.sip.monitored_offline++;\n break;\n }\n }\n else {\n if (element.Status === \'Unmonitored\') {\n asterisk.sip.unmonitored_online++;\n }\n else {\n asterisk.sip.monitored_online++;\n if (element.Status.search(\'^OK\') != -1) {\n element.Status = element.Status.split(\' \')[0];\n }\n }\n }\n });\n asterisk.sip.trunks.forEach(function (trunk) {\n var active_channels = channels.match(new RegExp(\'[^!J]SIP/\' + escapeChars(trunk.ObjectName), \'g\'));\n trunk.active_channels = (active_channels === null) ? 0 : active_channels.length;\n asterisk.sip.active_channels += trunk.active_channels;\n });\n}\n\nfunction getIaxPeerList() {\n response = Ami.request(url, \'IAXpeerlist\');\n elements = text2Object(response.body);\n asterisk.iax.total = elements.length;\n asterisk.iax.trunks = elements.filter(function (element) {\n return element.ObjectName.search(Ami.params.trunk) != -1;\n });\n elements.forEach(function (element) {\n if (element.Status.search(\'^OK\') != -1) {\n element.Status = element.Status.split(\' \')[0];\n }\n switch (element.Status) {\n case \'Unmonitored\':\n asterisk.iax.unmonitored++;\n break;\n\n case \'UNKNOWN\':\n asterisk.iax.offline++;\n break;\n }\n });\n asterisk.iax.online = asterisk.iax.total - asterisk.iax.offline;\n asterisk.iax.trunks.forEach(function (trunk) {\n var active_channels = channels.match(new RegExp(\'[^!](IAX2/\' + escapeChars(trunk.ObjectName) +\n \'|IAX2/\' + escapeChars(trunk.ObjectUsername) + \')\', \'g\'));\n trunk.active_channels = (active_channels === null) ? 0 : active_channels.length;\n asterisk.iax.active_channels += trunk.active_channels;\n });\n}\n\nfunction getPjsipShowEndpoints() {\n response = Ami.request(url, \'PJSIPShowEndpoints\');\n elements = text2Object(response.body);\n asterisk.pjsip.total = elements.length;\n asterisk.pjsip.trunks = elements.filter(function (element) {\n return element.ObjectName.search(Ami.params.trunk) != -1;\n });\n\n elements.forEach(function (element) {\n if (element.DeviceState === \'Unavailable\') {\n asterisk.pjsip.unavailable++;\n }\n });\n asterisk.pjsip.available = asterisk.pjsip.total - asterisk.pjsip.unavailable;\n asterisk.pjsip.trunks.forEach(function (trunk) {\n var active_channels = channels.match(new RegExp(\'[^!]PJSIP/\' + escapeChars(trunk.ObjectName), \'g\'));\n trunk.active_channels = (active_channels === null) ? 0 : active_channels.length;\n asterisk.pjsip.active_channels += trunk.active_channels;\n });\n}\n\nfunction getQueueSummary() {\n response = Ami.request(url, \'QueueSummary\');\n asterisk.queue.queues = text2Object(response.body);\n asterisk.queue.total = asterisk.queue.queues.length;\n}\n\nfunction escapeChars(str) {\n return str.replace(/[-[\\]{}()*+?.,\\\\^$|#\\s]/g, \'\\\\$&\');\n}\n\nfunction getUptimeSeconds(text) {\n var date = {\n years: 0,\n weeks: 0,\n days: 0,\n hours: 0,\n minutes: 0,\n seconds: 0\n };\n\n var fields = {\n years: \'years?\',\n weeks: \'weeks?\',\n days: \'days?\',\n hours: \'hours?\',\n minutes: \'minutes?\',\n seconds: \'seconds?\'\n };\n\n Object.keys(fields).forEach(function (field) {\n var match = text.match(\'(\\\\d+) \' + fields[field]);\n if (match !== null && typeof match[1] !== \'undefined\') {\n date[field] = parseInt(match[1]);\n }\n });\n return date.years * 220752000 + date.weeks * 604800 + date.days * 86400 +\n date.hours * 3600 + date.minutes * 60 + date.seconds;\n}\n\nvar cookie = value.match(/mansession_id="([0-9A-z]+)"/);\nif (cookie == null) {\n throw \'Cannot find mansession_id with cookie in response.\';\n}\n\nvar url = Ami.params.url.split(\'?\')[0] + \'?action=\';\n\nAmi.api_request.addHeader(\'Cookie: mansession_id="\' + cookie[1] + \'"\');\n\nvar response = Ami.request(url, \'CoreSettings\');\nvar coreSettings = block2Object(response.body);\nif (typeof coreSettings.AsteriskVersion !== \'undefined\') {\n asterisk.version = coreSettings.AsteriskVersion;\n}\n\nresponse = Ami.request(url, \'command&command=core%20show%20uptime\');\nvar uptime = block2Object(response.body);\nif (typeof uptime["System uptime"] !== \'undefined\') {\n asterisk.uptime = getUptimeSeconds(uptime["System uptime"]);\n}\nif (typeof uptime["Last reload"] !== \'undefined\') {\n asterisk.uptime_reload = getUptimeSeconds(uptime["Last reload"]);\n}\n\nresponse = Ami.request(url, \'command&command=core%20show%20channels%20count\');\nchannels = response.body;\nvar fields = {\n active_channels: \'active channels?\',\n active_calls: \'active calls?\',\n calls_processed: \'calls? processed\'\n};\n\nObject.keys(fields).forEach(function (field) {\n var match = channels.match(\'(\\\\d+) \' + fields[field]);\n if (match !== null && typeof match[1] !== \'undefined\') {\n asterisk[field] = parseInt(match[1]);\n }\n});\n\nresponse = Ami.request(url, \'command&command=core%20show%20channels%20concise\');\nchannels = response.body;\n\nresponse = Ami.request(url, \'ListCommands\');\nvar list = response.body;\nif (list.includes(\'SIPpeers\')) {\n getSipPeers();\n}\nif (list.includes(\'IAXpeerlist\')) {\n getIaxPeerList();\n}\nif (list.includes(\'PJSIPShowEndpoints\')) {\n getPjsipShowEndpoints();\n}\nif (list.includes(\'QueueSummary\')) {\n getQueueSummary();\n}\n\ntry {\n response = Ami.request(url, \'Logoff\');\n}\ncatch (e) {}\n\nreturn JSON.stringify(asterisk);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81112','31785','1','12','$.sip.total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81113','31786','1','12','$.version','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81114','31787','1','12','$.uptime_reload','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81115','31788','1','12','$.uptime','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81116','31789','1','12','$.queue.total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81117','31790','1','12','$.sip.unmonitored_online','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81118','31791','1','12','$.sip.unmonitored_offline','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81119','31792','1','12','$.active_calls','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81120','31793','1','12','$.sip.monitored_online','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81121','31794','1','12','$.active_channels','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81122','31795','1','12','$.pjsip.unavailable','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81123','31796','1','12','$.pjsip.total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81124','31797','1','12','$.iax.unmonitored','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81125','31798','1','12','$.iax.total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81126','31799','1','12','$.iax.offline','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81127','31800','1','12','$.calls_processed','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81128','31800','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81129','31801','1','12','$.calls_processed','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81130','31802','1','12','$.sip.monitored_offline','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81131','31803','1','12','$.iax.trunks','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81132','31803','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81133','31804','1','12','$.pjsip.trunks','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81134','31804','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81135','31805','1','12','$.queue.queues','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81136','31805','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81137','31806','1','12','$.sip.trunks','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81138','31806','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81139','31807','1','12','$.iax.trunks[?(@.ObjectName==\'{#OBJECTNAME}\')].active_channels.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81140','31808','1','12','$.iax.trunks[?(@.ObjectName==\'{#OBJECTNAME}\')].Status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81141','31808','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81142','31809','1','12','$.pjsip.trunks[?(@.ObjectName==\'{#OBJECTNAME}\')].active_channels.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81143','31810','1','12','$.pjsip.trunks[?(@.ObjectName==\'{#OBJECTNAME}\')].DeviceState.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81144','31810','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81145','31811','1','12','$.queue.queues[?(@.Queue==\'{#QUEUE}\')].Available.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81146','31812','1','12','$.queue.queues[?(@.Queue==\'{#QUEUE}\')].Callers.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81147','31813','1','12','$.queue.queues[?(@.Queue==\'{#QUEUE}\')].LoggedIn.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81148','31814','1','12','$.sip.trunks[?(@.ObjectName==\'{#OBJECTNAME}\')].active_channels.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81149','31815','1','12','$.sip.trunks[?(@.ObjectName==\'{#OBJECTNAME}\')].Status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81150','31815','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81151','32442','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81152','32443','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81153','32445','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81154','32447','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81155','32450','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81156','32451','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81157','32453','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81158','32454','1','13','0\n{$ACTIVEMQ.BROKER.CONSUMERS.MIN.HIGH}','2','{$ACTIVEMQ.BROKER.CONSUMERS.MIN.HIGH}');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81159','32454','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81160','32455','1','13','0\n{$ACTIVEMQ.BROKER.PRODUCERS.MIN.HIGH}','2','{$ACTIVEMQ.BROKER.PRODUCERS.MIN.HIGH}');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81161','32455','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81162','32457','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81163','32458','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81164','32459','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81165','32464','1','21','var input = JSON.parse(value),\n output = [];\n\ninput.forEach(function (sensor) {\n sensor.metrics.forEach(function (metric) {\n output.push(\n {\n \'{#SENSOR_ID}\': sensor.id,\n \'{#SENSOR_NAME}\': sensor.name,\n \'{#GATEWAY_ID}\': sensor.gateway.id,\n \'{#GATEWAY_NAME}\': sensor.gateway.name,\n \'{#METRIC}\': metric.name,\n \'{#UNIT}\': metric.unit\n }\n );\n })\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81166','32464','2','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81167','32486','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81168','32487','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81169','32488','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81170','32489','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81171','32490','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81172','32491','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81173','32492','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81174','32493','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81175','32493','2','21','return Math.floor(Date.now()/1000 - Number(value));','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81176','32494','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81177','32495','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81178','32496','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81179','32497','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81180','32498','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81181','32499','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81182','32500','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81183','32501','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81184','32502','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81185','32503','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81186','32504','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81187','32505','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81188','32506','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81189','32507','1','12','$.pools["{#POOLNAME}"].bytes_used','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81190','32508','1','12','$.pools["{#POOLNAME}"].max_avail','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81191','32509','1','12','$.pools["{#POOLNAME}"].objects','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81192','32510','1','12','$.pools["{#POOLNAME}"].percent_used','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81193','32511','1','12','$.pools["{#POOLNAME}"].rd_bytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81194','32511','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81195','32512','1','12','$.pools["{#POOLNAME}"].rd_ops','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81196','32512','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81197','32513','1','12','$.pools["{#POOLNAME}"].stored_raw','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81198','32514','1','12','$.pools["{#POOLNAME}"].wr_bytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81199','32514','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81200','32515','1','12','$.pools["{#POOLNAME}"].wr_ops','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81201','32515','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81202','32516','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81203','32525','1','21','var data = JSON.parse(value);\n\ndata.forEach(function(instance) {\n if (instance["{#INSTANCE}"] === \'_total\') {\n instance["{#INF.STORE}"] = \'Information Store\';\n }\n else {\n instance["{#INF.STORE}"] = \'Information Store - \' + instance["{#INSTANCE}"];\n }\n})\n\nreturn JSON.stringify(data);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81204','32528','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81205','32533','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81206','32534','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81207','32536','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81208','32537','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81209','32539','1','20','3m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81210','32540','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81211','32543','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81212','32544','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81213','32546','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81214','32555','1','21','var data = JSON.parse(value);\n\ndata.forEach(function(instance) {\n if (instance["{#INSTANCE}"] === \'_total\') {\n instance["{#INF.STORE}"] = \'Information Store\';\n }\n else {\n instance["{#INF.STORE}"] = \'Information Store - \' + instance["{#INSTANCE}"];\n }\n})\n\nreturn JSON.stringify(data);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81215','32558','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81216','32563','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81217','32564','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81218','32566','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81219','32567','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81220','32569','1','20','3m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81221','32570','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81222','32573','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81223','32574','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81224','32576','0','26','','2','{"status": "failed"}');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81225','32576','1','12','$.status','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81226','32576','2','6','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81227','32576','3','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81228','32577','0','26','','2','{"master_check":[{"status":"failed"}]}');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81229','32577','1','12','$.master_check[0].status','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81230','32577','2','6','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81231','32577','3','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81232','32578','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81233','32578','1','23','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81234','32579','1','12','$[?(@.name=="ruby_process_max_fds")].value.avg()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81235','32580','1','12','$[?(@.name=="gitlab_redis_client_requests_total" && @.labels.storage == "cache")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81236','32580','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81237','32581','1','12','$[?(@.name=="gitlab_redis_client_requests_total" && @.labels.storage == "queues")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81238','32581','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81239','32582','1','12','$[?(@.name=="gitlab_redis_client_requests_total" && @.labels.storage == "shared_state")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81240','32582','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81241','32583','1','12','$[?(@.name=="ruby_file_descriptors")].value.avg()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81242','32584','1','12','$[?(@.name=="ruby_file_descriptors")].value.max()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81243','32585','1','12','$[?(@.name=="ruby_file_descriptors")].value.min()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81244','32586','1','12','$[?(@.name=="ruby_process_cpu_seconds_total")].value.avg()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81245','32586','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81246','32587','1','12','$[?(@.name=="ruby_process_resident_memory_bytes")].value.avg()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81247','32588','1','12','$[?(@.name=="gitlab_redis_client_exceptions_total" && @.labels.storage == "queues")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81248','32588','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81249','32589','1','12','$[?(@.name=="ruby_process_resident_memory_bytes")].value.max()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81250','32590','1','12','$[?(@.name=="ruby_process_resident_memory_bytes")].value.min()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81251','32591','1','12','$[?(@.name=="ruby_process_start_time_seconds")].value.min()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81252','32591','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81253','32592','1','12','$[?(@.name=="ruby_process_start_time_seconds")].value.max()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81254','32592','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81255','32593','1','12','$[?(@.name=="gitlab_ruby_threads_running_threads")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81256','32594','1','12','$[?(@.name=="successful_login_captcha_total")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81257','32595','1','12','$[?(@.name=~"gitlab_transaction_.*_count_total")].value.sum()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81258','32595','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81259','32596','1','12','$[?(@.name=="upload_file_does_not_exist")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81260','32597','1','12','$[?(@.name=="gitlab_redis_client_exceptions_total" && @.labels.storage == "shared_state")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81261','32597','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81262','32598','1','12','$[?(@.name=="gitlab_cache_misses_total")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81263','32598','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81264','32599','1','12','$[?(@.name=="gitlab_redis_client_exceptions_total" && @.labels.storage == "cache")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81265','32599','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81266','32600','1','12','$[?(@.name=="failed_login_captcha_total")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81267','32601','1','12','$[?(@.name=="gitlab_database_connection_pool_busy" && @.labels.class == "ActiveRecord::Base")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81268','32602','1','12','$[?(@.name=="gitlab_database_connection_pool_connections" && @.labels.class == "ActiveRecord::Base")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81269','32603','1','12','$[?(@.name=="gitlab_database_connection_pool_dead" && @.labels.class == "ActiveRecord::Base")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81270','32604','1','12','$[?(@.name=="gitlab_database_connection_pool_idle" && @.labels.class == "ActiveRecord::Base")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81271','32605','1','12','$[?(@.name=="gitlab_database_connection_pool_size" && @.labels.class == "ActiveRecord::Base")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81272','32606','1','12','$[?(@.name=="gitlab_database_connection_pool_waiting" && @.labels.class == "ActiveRecord::Base")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81273','32607','1','12','$[?(@.name=="deployments")].labels.version.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81274','32607','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81275','32608','1','12','$[?(@.name=="http_requests_total" && @.labels.status =~ \'4..\' )].value.sum()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81276','32608','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81277','32609','1','12','$[?(@.name=="gitlab_cache_operations_total")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81278','32609','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81279','32610','1','12','$[?(@.name=="http_requests_total" && @.labels.status =~ \'5..\' )].value.sum()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81280','32610','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81281','32611','1','12','$[?(@.name=="http_requests_total")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81282','32611','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81283','32612','1','12','$[?(@.name=="auto_devops_pipelines_completed_total")].value.sum()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81284','32613','1','12','$[?(@.name=="auto_devops_pipelines_completed_total" && @.labels.status == "failed")].value.sum()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81285','32614','1','12','$[?(@.name=="pipelines_created_total")].value.sum()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81286','32615','1','12','$[?(@.name=="gitlab_ci_pipeline_creation_duration_seconds_sum")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81287','32616','1','12','$[?(@.name=="gitlab_ci_pipeline_creation_duration_seconds_count")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81288','32617','1','12','$[?(@.name=="gitlab_ci_pipeline_processing_events_total")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81289','32618','1','12','$[?(@.name=="user_session_logins_total")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81290','32619','1','23','puma_workers','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81291','32619','2','21','return JSON.stringify(value != "[]" ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81292','32620','1','23','unicorn_workers','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81293','32620','2','21','return JSON.stringify(value != "[]" ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81294','32621','1','12','$[?(@.name==\'puma_active_connections\')].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81295','32622','1','12','$[?(@.name==\'puma_idle_threads\')].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81296','32623','1','12','$[?(@.name==\'puma_killer_terminations_total\')].value.sum()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81297','32624','1','12','$[?(@.name==\'puma_max_threads\')].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81298','32625','1','12','$[?(@.name==\'puma_pool_capacity\')].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81299','32626','1','12','$[?(@.name==\'puma_queued_connections\')].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81300','32627','1','12','$[?(@.name==\'puma_running\')].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81301','32628','1','12','$[?(@.name==\'puma_running_workers\')].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81302','32629','1','12','$[?(@.name==\'puma_stale_workers\')].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81303','32630','1','12','$[?(@.name==\'puma_workers\')].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81304','32631','1','12','$[?(@.name==\'unicorn_active_connections\')].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81305','32632','1','12','$[?(@.name==\'unicorn_queued_connections\')].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81306','32633','1','12','$[?(@.name==\'unicorn_workers\')].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81307','32634','1','21','try {\n parsed = JSON.parse(value);\n var result = [];\n\n function getNodes(nodes, state) {\n Object.keys(nodes).forEach(function (field) {\n var Node = {};\n Node[\'HostName\'] = field || \'\';\n Node[\'adminState\'] = nodes[field].adminState || \'\';\n Node[\'operState\'] = state || \'\';\n Node[\'version\'] = nodes[field].version || \'\';\n result.push(Node);\n });\n }\n\n getNodes(JSON.parse(parsed.beans[0].LiveNodes), \'Live\');\n getNodes(JSON.parse(parsed.beans[0].DeadNodes), \'Dead\');\n getNodes(JSON.parse(parsed.beans[0].DecomNodes), \'Decommission\');\n getNodes(JSON.parse(parsed.beans[0].EnteringMaintenanceNodes), \'Maintenance\');\n\n return JSON.stringify(result);\n}\ncatch (error) {\n throw \'Failed to process response received from Hadoop\';\n}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81308','32635','1','21','return JSON.stringify(JSON.parse(JSON.parse(value).beans[0].LiveNodeManagers))','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81309','32636','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81310','32640','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81311','32642','1','12','$.beans[?(@.name==\'Hadoop:service=NameNode,name=FSNamesystem\')].MissingBlocks.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81312','32643','1','12','$.beans[?(@.name==\'Hadoop:service=ResourceManager,name=ClusterMetrics\')].NumDecommissionedNMs.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81313','32644','1','12','$.beans[?(@.name==\'Hadoop:service=NameNode,name=FSNamesystem\')].BlockCapacity.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81314','32645','1','12','$.beans[?(@.name==\'Hadoop:service=NameNode,name=FSNamesystem\')].CapacityRemaining.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81315','32646','1','12','$.beans[?(@.name==\'Hadoop:service=NameNode,name=FSNamesystem\')].CorruptBlocks.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81316','32647','1','12','$.beans[?(@.name==\'java.lang:type=Runtime\')].Uptime.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81317','32647','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81318','32648','1','12','$.beans[?(@.name==\'Hadoop:service=ResourceManager,name=RpcActivityForPort8031\')].RpcProcessingTimeAvgTime.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81319','32649','1','12','$.beans[?(@.name==\'Hadoop:service=ResourceManager,name=ClusterMetrics\')].NumUnhealthyNMs.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81320','32650','1','12','$.beans[?(@.name==\'Hadoop:service=ResourceManager,name=ClusterMetrics\')].NumShutdownNMs.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81321','32651','1','12','$.beans[?(@.name==\'Hadoop:service=ResourceManager,name=ClusterMetrics\')].NumRebootedNMs.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81322','32652','1','12','$.beans[?(@.name==\'Hadoop:service=ResourceManager,name=ClusterMetrics\')].NumLostNMs.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81323','32652','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81324','32653','1','12','$.beans[?(@.name==\'Hadoop:service=ResourceManager,name=ClusterMetrics\')].NumDecommissioningNMs.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81325','32653','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81326','32654','1','12','$.beans[?(@.name==\'Hadoop:service=NameNode,name=FSNamesystem\')].FilesTotal.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81327','32655','1','12','$.beans[?(@.name==\'Hadoop:service=ResourceManager,name=ClusterMetrics\')].NumActiveNMs.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81328','32655','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81329','32656','1','12','$.beans[?(@.name==\'Hadoop:service=NameNode,name=FSNamesystem\')].NumDeadDataNodes.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81330','32656','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81331','32657','1','12','$.beans[?(@.name==\'Hadoop:service=NameNode,name=FSNamesystem\')].VolumeFailuresTotal.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81332','32658','1','12','$.beans[?(@.name==\'Hadoop:service=NameNode,name=FSNamesystem\')].BlocksTotal.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81333','32659','1','12','$.beans[?(@.name==\'Hadoop:service=NameNode,name=FSNamesystem\')].UnderReplicatedBlocks.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81334','32660','1','12','$.beans[?(@.name==\'Hadoop:service=NameNode,name=FSNamesystem\')].TransactionsSinceLastCheckpoint.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81335','32661','1','12','$.beans[?(@.name==\'Hadoop:service=NameNode,name=FSNamesystem\')].TotalLoad.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81336','32662','1','12','$.beans[?(@.name==\'Hadoop:service=NameNode,name=RpcActivityForPort9000\')].RpcProcessingTimeAvgTime.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81337','32663','1','12','$.beans[?(@.name==\'Hadoop:service=NameNode,name=NameNodeInfo\')].PercentRemaining.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81338','32663','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81339','32664','1','12','$.beans[?(@.name==\'Hadoop:service=NameNode,name=NameNodeInfo\')].PercentBlockPoolUsed.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81340','32665','1','12','$.beans[?(@.name==\'Hadoop:service=NameNode,name=FSNamesystem\')].StaleDataNodes.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81341','32665','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81342','32666','1','12','$.beans[?(@.name==\'Hadoop:service=NameNode,name=FSNamesystem\')].NumLiveDataNodes.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81343','32666','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81344','32667','1','12','$.beans[?(@.name==\'java.lang:type=Runtime\')].Uptime.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81345','32667','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81346','32668','1','21','try{\n parsed = JSON.parse(value);\n var result = [];\n\n function getNodes(nodes) {\n Object.keys(nodes).forEach(function (field) {\n var Node = {};\n Node[\'{#HOSTNAME}\'] = field || \'\';\n Node[\'{#INFOADDR}\'] = nodes[field].infoAddr || \'\';\n result.push(Node);\n });\n }\n\n getNodes(JSON.parse(parsed.beans[0].LiveNodes));\n getNodes(JSON.parse(parsed.beans[0].DeadNodes));\n getNodes(JSON.parse(parsed.beans[0].DecomNodes));\n getNodes(JSON.parse(parsed.beans[0].EnteringMaintenanceNodes));\n\n return JSON.stringify(result);\n}\ncatch (error) {\n throw \'Failed to process response received from Hadoop.\';\n}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81347','32669','1','21','try {\n parsed = JSON.parse(value);\n var result = [];\n\n function getNodes(nodes) {\n Object.keys(nodes).forEach(function (field) {\n var Node = {};\n Node[\'{#HOSTNAME}\'] = nodes[field].HostName || \'\';\n Node[\'{#NODEHTTPADDRESS}\'] = nodes[field].NodeHTTPAddress || \'\';\n result.push(Node);\n });\n }\n\n getNodes(JSON.parse(parsed.beans[0].LiveNodeManagers));\n\n return JSON.stringify(result);\n}\ncatch (error) {\n throw \'Failed to process response received from Hadoop.\';\n}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81348','32672','1','12','$.[?(@.HostName==\'{#HOSTNAME}\')].adminState.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81349','32672','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81350','32673','1','12','$.beans[?(@.name==\'Hadoop:service=DataNode,name=FSDatasetState\')].DfsUsed.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81351','32674','1','12','$.beans[?(@.name==\'Hadoop:service=DataNode,name=JvmMetrics\')].GcTimeMillis.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81352','32675','1','12','$.beans[?(@.name==\'Hadoop:service=DataNode,name=JvmMetrics\')].MemHeapUsedM.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81353','32676','1','12','$.beans[?(@.name==\'java.lang:type=Threading\')].ThreadCount.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81354','32677','1','12','$.beans[?(@.name==\'Hadoop:service=DataNode,name=FSDatasetState\')].NumFailedVolumes.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81355','32678','1','12','$.[?(@.HostName==\'{#HOSTNAME}\')].operState.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81356','32678','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81357','32679','1','12','$.beans[?(@.name==\'Hadoop:service=DataNode,name=FSDatasetState\')].Remaining.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81358','32680','1','12','$.beans[?(@.name==\'java.lang:type=Runtime\')].Uptime.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81359','32680','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81360','32681','1','12','$.[?(@.HostName==\'{#HOSTNAME}\')].version.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81361','32681','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81362','32682','1','12','$[?(@.HostName==\'{#HOSTNAME}\')].AvailableMemoryMB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81363','32683','1','12','$.beans[?(@.name==\'Hadoop:service=NodeManager,name=NodeManagerMetrics\')].ContainerLaunchDurationAvgTime.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81364','32684','1','12','$.beans[?(@.name==\'Hadoop:service=NodeManager,name=JvmMetrics\')].GcTimeMillis.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81365','32685','1','12','$.beans[?(@.name==\'Hadoop:service=NodeManager,name=JvmMetrics\')].MemHeapUsedM.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81366','32686','1','12','$.beans[?(@.name==\'java.lang:type=Threading\')].ThreadCount.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81367','32687','1','12','$[?(@.HostName==\'{#HOSTNAME}\')].NumContainers.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81368','32688','1','12','$.beans[?(@.name==\'Hadoop:service=NodeManager,name=RpcActivityForPort8040\')].RpcProcessingTimeAvgTime.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81369','32689','1','12','$[?(@.HostName==\'{#HOSTNAME}\')].State.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81370','32689','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81371','32690','1','12','$.beans[?(@.name==\'java.lang:type=Runtime\')].Uptime.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81372','32690','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81373','32691','1','12','$[?(@.HostName==\'{#HOSTNAME}\')].UsedMemoryMB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81374','32692','1','12','$[?(@.HostName==\'{#HOSTNAME}\')].NodeManagerVersion.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81375','32692','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81376','32694','1','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81377','32696','1','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81378','32697','1','21','return (Math.floor((Date.now()-Number(value))/1000))','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81379','32698','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81380','32699','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81381','32700','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81382','32701','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81383','32702','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81384','32703','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81385','32704','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81386','32709','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81387','32710','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81388','32717','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81389','32718','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81390','32719','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81391','32720','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81392','32721','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81393','32724','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81394','32726','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81395','32758','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81396','32759','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81397','32760','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81398','32761','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81399','28511','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81400','32766','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81401','32767','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81402','32768','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81403','32769','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81404','32770','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81405','32771','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81406','32775','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81407','32776','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81408','32777','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81409','32779','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81410','32780','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81411','32781','0','26','','2','{"healthcheck": 0}');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81412','32782','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81413','32784','1','12','$.standby','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81414','32784','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81415','32784','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81416','32785','1','12','$.replication_dr_mode','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81417','32785','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81418','32786','1','12','$.is_self','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81419','32786','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81420','32786','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81421','32787','1','12','$.ha_enabled','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81422','32787','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81423','32787','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81424','32788','1','12','$.version','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81425','32788','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81426','32789','1','12','$.sealed','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81427','32789','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81428','32789','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81429','32790','1','12','$.replication_performance_mode','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81430','32790','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81431','32791','1','12','$.initialized','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81432','32791','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81433','32791','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81434','32792','1','12','$.performance_standby','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81435','32792','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81436','32792','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81437','32793','1','12','$.healthcheck','2','1');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81438','32793','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81439','32794','1','12','$.errors[0]','2','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81440','32794','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81441','32795','1','16','$.errors','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81442','32796','1','22','process_resident_memory_bytes\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81443','32797','1','22','vault_runtime_alloc_bytes\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81444','32798','1','22','vault_runtime_free_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81445','32799','1','22','vault_runtime_heap_objects\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81446','32800','1','22','process_virtual_memory_max_bytes\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81447','32800','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81448','32801','1','22','process_virtual_memory_bytes\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81449','32802','1','22','process_start_time_seconds\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81450','32802','2','21','return Math.floor(Date.now()/1000 - Number(value));','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81451','32803','1','23','{__name__=~"^vault_rollback_attempt_(?:.+?)_count$"}','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81452','32803','2','21','var name,\n output = [];\n\nJSON.parse(value).forEach(function (v) {\n if (name = v.name.match(/^vault_(rollback_attempt|route_rollback)_(.+?)_count$/)) {\n output.push(\n {\n \'{#MOUNTPOINT}\': name[2].replace(/_/g, \'/\'),\n \'{#PATTERN_C}\': \'vault_\' + name[1] + \'_\' + name[2] + \'_count\',\n \'{#PATTERN_Q}\': \'vault_\' + name[1] + \'_\' + name[2]\n }\n );\n }\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81453','32803','3','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81454','32804','1','22','process_open_fds\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81455','32805','1','22','process_max_fds\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81456','32805','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81457','32806','1','22','process_cpu_seconds_total\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81458','32807','1','22','vault_policy_set_policy_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81459','32807','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81460','32808','1','22','vault_runtime_num_goroutines\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81461','32809','1','22','vault_policy_list_policies_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81462','32809','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81463','32810','1','22','vault_policy_get_policy_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81464','32810','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81465','32811','1','22','vault_runtime_malloc_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81466','32812','1','22','vault_token_create_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81467','32813','1','22','vault_runtime_sys_bytes\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81468','32814','1','22','vault_token_createAccessor_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81469','32815','1','22','vault_runtime_total_gc_pause_ns\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81470','32815','2','1','1.0E-9','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81471','32816','1','22','vault_token_store_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81472','32817','1','22','vault_token_revoke_tree_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81473','32818','1','22','vault_token_revoke_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81474','32819','1','22','vault_token_lookup_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81475','32819','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81476','32820','1','23','vault_token_creation','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81477','32820','2','12','$[?(@.name=="vault_token_creation")].value.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81478','32820','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81479','32821','1','22','vault_expire_revoke_prefix_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81480','32822','1','22','vault_runtime_total_gc_runs\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81481','32823','1','23','vault_token_count_by_ttl','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81482','32823','2','12','$[?(@.name=="vault_token_count_by_ttl")].value.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81483','32824','1','23','vault_token_count_by_policy','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81484','32824','2','12','$[?(@.name=="vault_token_count_by_policy")].value.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81485','32825','1','23','vault_token_count_by_auth','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81486','32825','2','12','$[?(@.name=="vault_token_count_by_auth")].value.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81487','32826','1','23','vault_token_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81488','32826','2','12','$[?(@.name=="vault_token_count")].value.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81489','32827','1','23','vault_secret_lease_creation','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81490','32827','2','12','$[?(@.name=="vault_secret_lease_creation")].value.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81491','32827','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81492','32828','1','23','vault_secret_kv_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81493','32828','2','12','$[?(@.name=="vault_secret_kv_count")].value.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81494','32829','1','22','vault_policy_delete_policy_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81495','32829','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81496','32830','1','22','vault_expire_fetch_lease_times_by_token_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81497','32831','1','22','vault_expire_revoke_force_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81498','32832','1','22','vault_barrier_list_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81499','32832','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81500','32833','1','22','vault_core_fetch_acl_and_token_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81501','32833','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81502','32834','1','22','vault_core_check_token_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81503','32834','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81504','32835','1','22','vault_cache_write\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81505','32835','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81506','32836','1','22','vault_cache_miss\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81507','32836','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81508','32837','1','22','vault_cache_hit\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81509','32837','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81510','32838','1','22','vault_barrier_put_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81511','32838','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81512','32839','1','22','vault_barrier_delete_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81513','32839','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81514','32840','1','23','vault_core_leadership_setup_failed','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81515','32840','2','12','$[?(@.name=="vault_core_leadership_setup_failed")].value.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81516','32841','1','22','vault_audit_log_response_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81517','32841','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81518','32842','1','22','vault_audit_log_response_failure\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81519','32842','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81520','32843','1','22','vault_audit_log_request_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81521','32843','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81522','32844','1','22','vault_audit_log_request_failure\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81523','32844','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81524','32845','1','23','{__name__=~"^vault_wal_(?:.+)$"}','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81525','32845','2','21','return JSON.stringify(value !== "[]" ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81526','32845','3','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81527','32846','1','23','{__name__=~"^vault_(?:.+)_(?:get|put|list|delete)_count$"}','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81528','32846','2','21','var name,\n output = [];\n\nJSON.parse(value).forEach(function (v) {\n if (name = v.name.match(/^vault_((?!barrier).+?)_(get|put|list|delete)_count$/)) {\n output.push(\n {\n \'{#STORAGE}\': name[1],\n \'{#OPERATION}\': name[2].toUpperCase(),\n \'{#PATTERN_C}\': \'vault_\' + name[1] + \'_\' + name[2] + \'_count\',\n \'{#PATTERN_Q}\': \'vault_\' + name[1] + \'_\' + name[2]\n }\n );\n }\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81529','32846','3','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81530','32847','1','22','vault_core_handle_request_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81531','32847','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81532','32848','1','23','vault_core_leadership_lost_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81533','32848','2','12','$[?(@.name=="vault_core_leadership_lost_count")].value.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81534','32849','1','22','vault_expire_revoke_by_token_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81535','32850','1','23','{__name__=~"^replication_(?:.+)$"}','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81536','32850','2','21','return JSON.stringify(value !== "[]" ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81537','32850','3','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81538','32851','1','22','vault_expire_revoke_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81539','32852','1','22','vault_expire_renew_token_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81540','32853','1','22','vault_expire_renew_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81541','32854','1','22','vault_expire_register_auth_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81542','32855','1','22','vault_expire_register_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81543','32856','1','22','vault_expire_num_leases\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81544','32857','1','22','vault_expire_fetch_lease_times_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81545','32858','1','22','vault_core_post_unseal_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81546','32859','1','22','vault_core_unseal_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81547','32860','1','23','vault_core_step_down_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81548','32860','2','12','$[?(@.name=="vault_core_step_down_count")].value.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81549','32861','1','22','vault_core_seal_with_request_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81550','32862','1','22','vault_core_seal_internal_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81551','32863','1','22','vault_core_seal_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81552','32864','1','22','vault_core_pre_seal_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81553','32865','1','22','vault_barrier_get_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81554','32865','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81555','32871','1','12','$.[?(@.accessor == "{#ACCESSOR}")].error.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81556','32871','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81557','32872','1','12','$.[?(@.accessor == "{#ACCESSOR}")].has_ttl.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81558','32872','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81559','32872','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81560','32873','1','12','$.[?(@.accessor == "{#ACCESSOR}")].ttl.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81561','32874','1','22','{#PATTERN_C}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81562','32874','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81563','32875','1','22','{#PATTERN_C}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81564','32875','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81565','32876','1','22','logshipper_streamWALs_guard_found\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81566','32877','1','22','logshipper_streamWALs_missing_guard\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81567','32878','1','22','replication_fsm_last_remote_wal\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81568','32879','1','22','replication_merkle_commit_index\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81569','32880','1','22','replication_wal_last_dr_wal\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81570','32881','1','22','replication_wal_last_performance_wal\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81571','32882','1','22','replication_wal_last_wal\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81572','32883','1','22','{#PATTERN_C}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81573','32883','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81574','32884','1','22','vault_wal_deletewals_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81575','32885','1','22','vault_wal_flushready_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81576','32886','1','22','vault_wal_gc_deleted\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81577','32887','1','22','vault_wal_gc_total\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81578','32888','1','22','vault_wal_loadWAL_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81579','32889','1','22','vault_wal_persistwals_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81580','32890','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81581','32895','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81582','32896','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81583','32900','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81584','32904','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81585','32905','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81586','32909','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81587','32920','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81588','32924','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81589','32927','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81590','32928','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81591','32945','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81592','32952','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81593','32953','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81594','32965','1','12','$.approximate_data_size','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81595','32966','1','12','$.outstanding_requests','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81596','32967','1','12','$.max_latency','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81597','32968','1','12','$.min_latency','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81598','32969','1','12','$.num_alive_connections','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81599','32970','1','12','$.open_file_descriptor_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81600','32971','1','12','$.packets_received','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81601','32971','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81602','32972','1','12','$.looking_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81603','32972','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81604','32973','1','12','$.packets_sent','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81605','32973','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81606','32974','1','12','$.revalidate_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81607','32974','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81608','32975','1','12','$.server_state','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81609','32975','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81610','32976','1','12','$.snap_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81611','32976','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81612','32977','1','12','$.uptime','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81613','32977','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81614','32978','1','12','$.version','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81615','32978','2','5','([^,]+)--(.+)\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81616','32978','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81617','32979','1','12','$.watch_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81618','32980','1','12','$.max_file_descriptor_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81619','32980','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81620','32981','1','12','$.global_sessions','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81621','32982','1','12','$.local_sessions','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81622','32983','1','21','var metrics = JSON.parse(value),\n res = metrics.avg_election_time || metrics[\'election_time{quantile="0.5"}\'];\nif (isNaN(res)) {\n return 0;\n}\nreturn res;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81623','32984','1','12','$.ephemerals_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81624','32985','1','12','$.diff_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81625','32985','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81626','32986','1','12','$.connection_revalidate_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81627','32986','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81628','32987','1','12','$.connection_rejected','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81629','32987','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81630','32988','1','12','$.connection_drop_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81631','32988','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81632','32989','1','12','$.commit_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81633','32989','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81634','32990','1','21','var metrics = JSON.parse(value)\nreturn metrics.snapshottime_count || metrics.cnt_snapshottime','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81635','32991','1','21','var metrics = JSON.parse(value)\nreturn metrics.cnt_fsynctime || metrics.fsynctime_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81636','32992','1','21','var metrics = JSON.parse(value);\nif (metrics.server_state === "standalone") {\n return 0\n }\nelse {\n return metrics.cnt_election_time || metrics.election_time_count\n}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81637','32993','1','12','$.bytes_received_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81638','32993','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81639','32994','1','21','var metrics = JSON.parse(value),\n res = metrics[\'snapshottime{quantile="0.5"}\'] || metrics.avg_snapshottime ;\nif (isNaN(res)) {\n return 0;\n}\nreturn res;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81640','32995','1','12','$.avg_latency','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81641','32996','1','21','var metrics = JSON.parse(value),\n res = metrics.avg_fsynctime || metrics[\'fsynctime{quantile="0.5"}\'];\nif (isNaN(res)) {\n return 0;\n}\nreturn res;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81642','32997','1','12','$.znode_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81643','32997','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81644','32998','1','21','var source = JSON.parse(value),\n data = [];\n\nsource.connections.forEach(function(v){\n data.push({\n "{#ADDRESS}": v.remote_socket_address,\n "{#CLIENT}": v.remote_socket_address.split(\':\')[0],\n "{#TYPE}": "connections"})\n});\n\nsource.secure_connections.forEach(function(v){\ndata.push({\n "{#ADDRESS}": v.remote_socket_address,\n "{#CLIENT}":v.remote_socket_address.split(\':\')[0],\n "{#TYPE}": "secure_connections"})\n});\n\nreturn JSON.stringify(data);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81645','32999','1','12','$.server_state','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81646','32999','2','21','return JSON.stringify(value == \'leader\' ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81647','33000','1','12','$.{#TYPE}.[?(@.remote_socket_address == "{#ADDRESS}")].avg_latency.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81648','33001','1','12','$.{#TYPE}.[?(@.remote_socket_address == "{#ADDRESS}")].max_latency.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81649','33002','1','12','$.{#TYPE}.[?(@.remote_socket_address == "{#ADDRESS}")].min_latency.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81650','33003','1','12','$.{#TYPE}.[?(@.remote_socket_address == "{#ADDRESS}")].outstanding_requests.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81651','33004','1','12','$.{#TYPE}.[?(@.remote_socket_address == "{#ADDRESS}")].packets_received.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81652','33004','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81653','33005','1','12','$.{#TYPE}.[?(@.remote_socket_address == "{#ADDRESS}")].packets_sent.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81654','33005','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81655','33006','1','12','$.learners','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81656','33007','1','12','$.pending_syncs','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81657','33008','1','12','$.quorum_size','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81658','33009','1','12','$.synced_followers','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81659','33010','1','12','$.synced_non_voting_followers','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81660','33011','1','12','$.synced_observers','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81661','33012','1','12','$.data.process[\'availability manager\'].busy.avg','3','Processes availability manager not started');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81662','33013','1','12','$.data.process[\'history poller\'].busy.avg','3','Processes history poller not started');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81663','33014','1','12','$.data.tcache.pitems','3','Not supported this version');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81664','33015','1','12','$.data.tcache.pmisses','3','Not supported this version');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81665','33016','1','12','$.data.process[\'availability manager\'].busy.avg','3','Processes availability manager not started');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81666','33017','1','12','$.data.process[\'history poller\'].busy.avg','3','Processes history poller not started');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81667','33028','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81668','33059','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81669','33062','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81670','33063','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81671','33066','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81672','33067','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81673','33068','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81674','33071','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81675','33072','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81676','33073','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81677','33074','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81678','33076','1','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81679','33077','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81680','33082','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81681','33083','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81682','33084','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81683','33085','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81684','33086','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81685','33087','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81686','33088','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81687','33089','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81688','33094','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81689','33098','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81690','33099','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81691','33100','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81692','33101','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81693','33110','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81694','33112','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81695','33113','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81696','33123','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81697','33124','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81698','33125','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81699','33126','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81700','33127','1','11','/resultset/row[field/text()=\'Innodb_buffer_pool_wait_free\']/field[@name=\'Value\']/text()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81701','33127','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81702','33128','1','11','/resultset/row[field/text()=\'Innodb_num_open_files\']/field[@name=\'Value\']/text()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81703','33128','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81704','33129','1','11','/resultset/row[field/text()=\'Innodb_os_log_written\']/field[@name=\'Value\']/text()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81705','33130','1','11','/resultset/row[field/text()=\'Open_tables\']/field[@name=\'Value\']/text()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81706','33130','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81707','33131','1','11','/resultset/row[field/text()=\'Open_table_definitions\']/field[@name=\'Value\']/text()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81708','33131','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81709','33132','1','11','/resultset/row[field/text()=\'Binlog_cache_disk_use\']/field[@name=\'Value\']/text()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81710','33132','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81711','33133','1','21','return JSON.stringify(value.search(\'MariaDB\')>-1 ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81712','33134','1','11','/resultset/row[field/text()=\'Binlog_commits\']/field[@name=\'Value\']/text()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81713','33135','1','11','/resultset/row[field/text()=\'Binlog_group_commits\']/field[@name=\'Value\']/text()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81714','33136','1','11','/resultset/row[field/text()=\'Master_gtid_wait_count\']/field[@name=\'Value\']/text()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81715','33136','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81716','33137','1','11','/resultset/row[field/text()=\'Master_gtid_wait_timeouts\']/field[@name=\'Value\']/text()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81717','33137','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81718','33138','1','11','/resultset/row[field/text()=\'Master_gtid_wait_time\']/field[@name=\'Value\']/text()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81719','33138','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81720','33139','1','11','/resultset/row[field/text()=\'Slave_SQL_Running_State\']/field[@name=\'Value\']/text()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81721','33139','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81722','33140','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81723','33141','1','12','$.Innodb_buffer_pool_wait_free','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81724','33141','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81725','33142','1','12','$.Innodb_num_open_files','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81726','33142','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81727','33143','1','12','$.Innodb_os_log_written','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81728','33143','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81729','33144','1','12','$.Open_tables','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81730','33144','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81731','33145','1','12','$.Open_table_definitions','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81732','33145','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81733','33146','1','12','$.Binlog_cache_disk_use','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81734','33146','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81735','33147','1','21','return JSON.stringify(value.search(\'MariaDB\')>-1 ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81736','33148','1','12','$.Binlog_commits','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81737','33149','1','12','$.Binlog_group_commits','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81738','33150','1','12','$.Master_gtid_wait_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81739','33150','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81740','33151','1','12','$.Master_gtid_wait_timeouts','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81741','33151','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81742','33152','1','12','$.Master_gtid_wait_time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81743','33152','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81744','33153','1','12','$.Slave_SQL_Running_State','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81745','33153','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81746','33154','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81747','33155','1','12','$[?(@.Variable_name==\'Innodb_buffer_pool_wait_free\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81748','33155','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81749','33156','1','12','$[?(@.Variable_name==\'Innodb_num_open_files\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81750','33156','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81751','33157','1','12','$[?(@.Variable_name==\'Innodb_os_log_written\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81752','33157','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81753','33158','1','12','$[?(@.Variable_name==\'Open_tables\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81754','33158','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81755','33159','1','12','$[?(@.Variable_name==\'Open_table_definitions\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81756','33159','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81757','33160','1','12','$[?(@.Variable_name==\'Binlog_cache_disk_use\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81758','33160','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81759','33161','1','21','return JSON.stringify(value.search(\'MariaDB\')>-1 ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81760','33162','1','12','$.[?(@.Master_Host==\'{#MASTER_HOST}\')][\'Slave_SQL_Running_State\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81761','33162','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81762','33163','1','12','$[?(@.Variable_name==\'Binlog_commits\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81763','33164','1','12','$[?(@.Variable_name==\'Binlog_group_commits\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81764','33165','1','12','$[?(@.Variable_name==\'Master_gtid_wait_count\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81765','33165','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81766','33166','1','12','$[?(@.Variable_name==\'Master_gtid_wait_timeouts\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81767','33166','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81768','33167','1','12','$[?(@.Variable_name==\'Master_gtid_wait_time\')].Value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81769','33167','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81770','33168','1','12','$..[\'{#TABLESPACE}\'].used_bytes.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81771','33169','1','12','$..[\'{#TABLESPACE}\'].used_file_pct.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81772','33170','1','12','$[?(@.TABLESPACE==\'{#TABLESPACE}\')].USED_BYTES.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81773','33171','1','12','$[?(@.TABLESPACE==\'{#TABLESPACE}\')].USED_FILE_PCT.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81774','33176','1','12','$.checkpoint_sync_time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81775','33176','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81776','33176','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81777','33178','1','12','$[\'{#APPLICATION_NAME}\'].flush_lag','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81778','33179','1','12','$[\'{#APPLICATION_NAME}\'].replay_lag','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81779','33180','1','12','$[\'{#APPLICATION_NAME}\'].write_lag','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81780','27031','1','21','try {\n var data = JSON.parse(value);\n}\ncatch (error) {\n throw \'Failed to parse JSON of EtherLike-MIB discovery.\';\n}\nvar fields = [\'{#SNMPVALUE}\',\'{#IFOPERSTATUS}\',\'{#IFALIAS}\',\'{#IFNAME}\',\'{#IFDESCR}\'];\ndata.forEach(function (element) {\n fields.forEach(function (field) {\n element[field] = element[field] || \'\';\n });\n});\nreturn JSON.stringify(data);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81794','33181','1','21','try {\n var data = JSON.parse(value);\n}\ncatch (error) {\n throw \'Failed to parse JSON of Arista sensor discovery.\';\n}\nvar fields = [\'{#SNMPINDEX}\',\'{#SENSOR_TYPE}\',\'{#SENSOR_INFO}\',\'{#SENSOR_PRECISION}\',\'{#THRESHOLD_LO_WARN}\',\'{#THRESHOLD_LO_CRIT}\',\'{#THRESHOLD_HI_WARN}\',\'{#THRESHOLD_HI_CRIT}\'];\ndata.forEach(function (element) {\n fields.forEach(function (field) {\n element[field] = element[field] || \'\';\n });\n});\nreturn JSON.stringify(data);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81795','33185','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81796','33188','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81797','33189','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81798','33190','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81799','33190','2','21','var FIELDS = [\n \'externalShortCircuit\',\n \'overcurrent\',\n \'mosfetShorted\',\n \'software\',\n \'loadHvd\',\n \'highTempDisconnect\',\n \'dipSwitchChanged\',\n \'customSettingsEdit\'\n];\n\nvar flags = parseInt(value.replace(/\\x20/g, \'\'), 16),\n result = [];\n\nfor (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) {\n if (flags & f) {\n result.push(FIELDS[i]);\n }\n}\n\nreturn result.length ? result.join(\'\\n\') : \'No faults\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81800','33191','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81801','33191','2','21','var FIELDS = [\n \'overcurrent\',\n \'mosfetSShorted\',\n \'software\',\n \'batteryHvd\',\n \'arrayHvd\',\n \'customSettingsEdit\',\n \'rtsShorted\',\n \'rtsNoLongerValid\',\n \'localTempSensorDamaged\',\n \'batteryLowVoltageDisconnect\',\n \'slaveTimeout\',\n \'dipSwitchChanged\',\n];\n\nvar flags = parseInt(value.replace(/\\x20/g, \'\'), 16),\n result = [];\n\nfor (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) {\n if (flags & f) {\n result.push(FIELDS[i]);\n }\n}\n\nreturn result.length ? result.join(\'\\n\') : \'No faults\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81802','33192','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81803','33192','2','21','var FIELDS = [\n \'rtsOpen\',\n \'rtsShorted\',\n \'rtsDisconnected\',\n \'heatsinkTempSensorOpen\',\n \'heatsinkTempSensorShorted\',\n \'heatsinkTempLimit\',\n \'inductorTempSensorOpen\',\n \'inductorTempSensorShorted\',\n \'inductorTempLimit\',\n \'currentLimit\',\n \'currentMeasurementError\',\n \'batterySenseOutOfRange\',\n \'batterySenseDisconnected\',\n \'uncalibrated\',\n \'tb5v\',\n \'fp10SupplyOutOfRange\',\n \'unused\',\n \'mosfetOpen\',\n \'arrayCurrentOffset\',\n \'loadCurrentOffset\',\n \'p33SupplyOutOfRange\',\n \'p12SupplyOutOfRange\',\n \'hightInputVoltageLimit\',\n \'controllerReset\',\n \'loadLvd\',\n \'logTimeout\',\n \'eepromAccessFailure\'\n];\n\nvar flags = parseInt(value.replace(/\\x20/g, \'\'), 16),\n result = [];\n\nfor (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) {\n if (flags & f) {\n result.push(FIELDS[i]);\n }\n}\n\nreturn result.length ? result.join(\'\\n\') : \'No alarms\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81804','33196','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81805','33198','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81806','33199','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81807','33205','1','21','var v_range = [\n [[0, 18], [12, 15, 11.5, 15.5]],\n [[18, 36], [24, 30, 23, 31]],\n [[36, 99], [48, 60, 46, 62]],\n ],\n result = [];\n\nfor (var idx in v_range) {\n if (v_range[idx][0][0] < value && value <= v_range[idx][0][1]) {\n result = [{\n \'{#VOLTAGE.MIN.WARN}\': parseInt({$VOLTAGE.MIN.WARN}) || v_range[idx][1][0],\n \'{#VOLTAGE.MAX.WARN}\': parseInt({$VOLTAGE.MAX.WARN}) || v_range[idx][1][1],\n \'{#VOLTAGE.MIN.CRIT}\': parseInt({$VOLTAGE.MIN.CRIT}) || v_range[idx][1][2],\n \'{#VOLTAGE.MAX.CRIT}\': parseInt({$VOLTAGE.MAX.CRIT}) || v_range[idx][1][3],\n \'{#SINGLETON}\': \'\'\n }];\n break;\n }\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81808','33208','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81809','33208','2','21','var FIELDS = [\n \'rtsOpen\',\n \'rtsShorted\',\n \'rtsDisconnected\',\n \'heatsinkTempSensorOpen\',\n \'heatsinkTempSensorShorted\',\n \'heatsinkTempLimit\',\n \'currentLimit\',\n \'currentMeasurementError\',\n \'batterySenseOutOfRange\',\n \'batterySenseDisconnected\',\n \'uncalibrated\',\n \'batteryTempOutOfRange\',\n \'fp10SupplyOutOfRange\',\n \'mosfetOpen\',\n \'arrayCurrentOffset\',\n \'loadCurrentOffset\',\n \'p33SupplyOutOfRange\',\n \'p12SupplyOutOfRange\',\n \'hightInputVoltageLimit\',\n \'controllerReset\',\n \'loadLvd\',\n \'logTimeout\',\n \'eepromAccessFailure\'\n];\n\nvar flags = parseInt(value.replace(/\\x20/g, \'\'), 16),\n result = [];\n\nfor (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) {\n if (flags & f) {\n result.push(FIELDS[i]);\n }\n}\n\nreturn result.length ? result.join(\'\\n\') : \'No alarms\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81810','33211','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81811','33212','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81812','33213','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81813','33213','2','21','var FIELDS = [\n \'externalShortCircuit\',\n \'overcurrent\',\n \'mosfetShorted\',\n \'software\',\n \'loadHvd\',\n \'highTempDisconnect\',\n \'dipSwitchChanged\',\n \'customSettingsEdit\',\n \'p3Fault\'\n];\n\nvar flags = parseInt(value.replace(/\\x20/g, \'\'), 16),\n result = [];\n\nfor (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) {\n if (flags & f) {\n result.push(FIELDS[i]);\n }\n}\n\nreturn result.length ? result.join(\'\\n\') : \'No faults\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81814','33214','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81815','33214','2','21','var FIELDS = [\n \'overcurrent\',\n \'mosfetSShorted\',\n \'software\',\n \'batteryHvd\',\n \'arrayHvd\',\n \'customSettingsEdit\',\n \'rtsShorted\',\n \'rtsNoLongerValid\',\n \'localTempSensorDamaged\',\n \'batteryLowVoltageDisconnect\',\n \'slaveTimeout\',\n \'dipSwitchChanged\',\n \'p3Fault\',\n];\n\nvar flags = parseInt(value.replace(/\\x20/g, \'\'), 16),\n result = [];\n\nfor (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) {\n if (flags & f) {\n result.push(FIELDS[i]);\n }\n}\n\nreturn result.length ? result.join(\'\\n\') : \'No faults\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81816','33217','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81817','33219','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81818','33221','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81819','33222','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81820','33225','1','21','var v_range = [\n [[0, 18], [12, 15, 11.5, 15.5]],\n [[18, 36], [24, 30, 23, 31]],\n [[36, 99], [48, 60, 46, 62]],\n ],\n result = [];\n\nfor (var idx in v_range) {\n if (v_range[idx][0][0] < value && value <= v_range[idx][0][1]) {\n result = [{\n \'{#VOLTAGE.MIN.WARN}\': parseInt({$VOLTAGE.MIN.WARN}) || v_range[idx][1][0],\n \'{#VOLTAGE.MAX.WARN}\': parseInt({$VOLTAGE.MAX.WARN}) || v_range[idx][1][1],\n \'{#VOLTAGE.MIN.CRIT}\': parseInt({$VOLTAGE.MIN.CRIT}) || v_range[idx][1][2],\n \'{#VOLTAGE.MAX.CRIT}\': parseInt({$VOLTAGE.MAX.CRIT}) || v_range[idx][1][3],\n \'{#SINGLETON}\': \'\'\n }];\n break;\n }\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81821','33227','1','1','0.01509857178','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81822','33227','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81823','33228','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81824','33231','1','1','0.003051757813','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81825','33231','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81826','33232','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81827','33233','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81828','33233','2','21','var FIELDS = [\n \'externalShortCircuit\',\n \'overcurrent\',\n \'mosfetShorted\',\n \'software\',\n \'loadHvd\',\n \'highTempDisconnect\',\n \'customSettingsEdit\',\n \'unknownLoadFault\'\n];\n\nvar flags = parseInt(value.replace(/\\x20/g, \'\'), 16),\n result = [];\n\nfor (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) {\n if (flags & f) {\n result.push(FIELDS[i]);\n }\n}\n\nreturn result.length ? result.join(\'\\n\') : \'No faults\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81829','33234','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81830','33234','2','21','var FIELDS = [\n \'overcurrent\',\n \'mosfetSShorted\',\n \'softwareFault\',\n \'batteryHvd\',\n \'arrayHvd\',\n \'customSettingsEdit\',\n \'rtsShorted\',\n \'rtsNoLongerValid\',\n \'localTempSensorDamaged\',\n];\n\nvar flags = parseInt(value.replace(/\\x20/g, \'\'), 16),\n result = [];\n\nfor (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) {\n if (flags & f) {\n result.push(FIELDS[i]);\n }\n}\n\nreturn result.length ? result.join(\'\\n\') : \'No faults\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81831','33235','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81832','33235','2','21','var FIELDS = [\n \'rtsOpen\',\n \'rtsShorted\',\n \'rtsDisconnected\',\n \'heatsinkTempSensorOpen\',\n \'heatsinkTempSensorShorted\',\n \'sspptHot\',\n \'currentLimit\',\n \'currentOffset\',\n \'undefined\',\n \'undefined1\',\n \'uncalibrated\',\n \'rtsMiswire\',\n \'undefined12\',\n \'undefined123\',\n \'systemMiswire\',\n \'mosfetSOpen\',\n \'p12VoltageReferenceOff\',\n \'highVaCurrentLimit\',\n];\n\nvar flags = parseInt(value.replace(/\\x20/g, \'\'), 16),\n result = [];\n\nfor (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) {\n if (flags & f) {\n result.push(FIELDS[i]);\n }\n}\n\nreturn result.length ? result.join(\'\\n\') : \'No alarms\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81833','33236','1','1','0.003051757813','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81834','33236','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81835','33237','1','1','0.002415771484','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81836','33237','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81837','33238','1','1','0.003051757813','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81838','33238','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81839','33239','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81840','33241','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81841','33242','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81842','33243','1','1','0.002415771484','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81843','33243','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81844','33244','1','1','0.003051757813','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81845','33245','1','1','0.003051757813','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81846','33245','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81847','33246','1','1','0.003051757813','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81848','33246','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81849','33248','1','21','var v_range = [\n [[0, 18], [12, 15, 11.5, 15.5]],\n [[18, 36], [24, 30, 23, 31]],\n [[36, 99], [48, 60, 46, 62]],\n ],\n result = [];\n\nfor (var idx in v_range) {\n if (v_range[idx][0][0] < value && value <= v_range[idx][0][1]) {\n result = [{\n \'{#VOLTAGE.MIN.WARN}\': parseInt({$VOLTAGE.MIN.WARN}) || v_range[idx][1][0],\n \'{#VOLTAGE.MAX.WARN}\': parseInt({$VOLTAGE.MAX.WARN}) || v_range[idx][1][1],\n \'{#VOLTAGE.MIN.CRIT}\': parseInt({$VOLTAGE.MIN.CRIT}) || v_range[idx][1][2],\n \'{#VOLTAGE.MAX.CRIT}\': parseInt({$VOLTAGE.MAX.CRIT}) || v_range[idx][1][3],\n \'{#SINGLETON}\': \'\'\n }];\n break;\n }\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81850','33249','1','1','0.003051757813','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81851','33249','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81852','33250','1','1','2.581787109375E-4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81853','33250','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81854','33251','1','1','1.953125E-4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81855','33251','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81856','33252','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81857','33253','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81858','33253','2','21','var FIELDS = [\n \'heatsinkTempSensorOpen\',\n \'heatsinkTempSensorShort\',\n \'unknownAlarm\',\n \'suresineHot\'\n];\n\nvar flags = parseInt(value.replace(/\\x20/g, \'\'), 16),\n result = [];\n\nfor (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) {\n if (flags & f) {\n result.push(FIELDS[i]);\n }\n}\n\nreturn result.length ? result.join(\'\\n\') : \'No alarms\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81859','33254','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81860','33254','2','21','var FIELDS = [\n \'reset\',\n \'overcurrent\',\n \'unknownFault\',\n \'software\',\n \'highVoltageDisconnect\',\n \'suresineHot\',\n \'dipSwitchChanged\',\n \'customSettingsEdit\'\n];\n\nvar flags = parseInt(value.replace(/\\x20/g, \'\'), 16),\n result = [];\n\nfor (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) {\n if (flags & f) {\n result.push(FIELDS[i]);\n }\n}\n\nreturn result.length ? result.join(\'\\n\') : \'No faults\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81861','33255','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81862','33257','1','21','var v_range = [\n [[0, 18], [12, 15, 11.5, 15.5]],\n [[18, 36], [24, 30, 23, 31]],\n [[36, 99], [48, 60, 46, 62]],\n ],\n result = [];\n\nfor (var idx in v_range) {\n if (v_range[idx][0][0] < value && value <= v_range[idx][0][1]) {\n result = [{\n \'{#VOLTAGE.MIN.WARN}\': parseInt({$VOLTAGE.MIN.WARN}) || v_range[idx][1][0],\n \'{#VOLTAGE.MAX.WARN}\': parseInt({$VOLTAGE.MAX.WARN}) || v_range[idx][1][1],\n \'{#VOLTAGE.MIN.CRIT}\': parseInt({$VOLTAGE.MIN.CRIT}) || v_range[idx][1][2],\n \'{#VOLTAGE.MAX.CRIT}\': parseInt({$VOLTAGE.MAX.CRIT}) || v_range[idx][1][3],\n \'{#SINGLETON}\': \'\'\n }];\n break;\n }\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81863','33258','1','1','2.581787109375E-4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81864','33258','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81865','33262','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81866','33263','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81867','33264','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81868','33264','2','21','var FIELDS = [\n \'overcurrent\',\n \'fetShort\',\n \'softwareFault\',\n \'batteryHvd\',\n \'arrayHvd\',\n \'dipSwitchChange\',\n \'customSettingsEdit\',\n \'rtsShorted\',\n \'rtsDisconnected\',\n \'eepromRetryLimit\',\n \'controllerWasReset\',\n \'chargeSlaveControlTimeout\',\n \'rs232SerialToMeterBridge\',\n \'batteryLvd\',\n \'fault14Undefined\',\n \'powerboardCommunicationFault\',\n \'fault16Software\',\n \'fault17Software\',\n \'fault18Software\',\n \'fault19Software\',\n \'fault20Software\',\n \'fault21Software\',\n \'fpgaVersion\',\n \'currentSensorReferenceOutOfRange\',\n \'ia-refSlaveModeTimeout\',\n \'blockbusBoot\',\n \'hscommMaster\',\n \'hscomm\',\n \'slave\',\n];\n\nvar flags = parseInt(value.replace(/\\x20/g, \'\'), 16),\n result = [];\n\nfor (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) {\n if (flags & f) {\n result.push(FIELDS[i]);\n }\n}\n\nreturn result.length ? result.join(\'\\n\') : \'No faults\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81869','33265','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81870','33265','2','21','var FIELDS = [\n \'rtsOpen\',\n \'rtsShorted\',\n \'rtsDisconnected\',\n \'heatsinkTempSensorOpen\',\n \'heatsinkTempSensorShorted\',\n \'highTemperatureCurrentLimit\',\n \'currentLimit\',\n \'currentOffset\',\n \'batterySense\',\n \'batterySenseDisconnected\',\n \'uncalibrated\',\n \'rtsMiswire\',\n \'highVoltageDisconnect\',\n \'undefined\',\n \'systemMiswire\',\n \'mosfetSOpen\',\n \'p12VoltageOutOfRange\',\n \'highArrayVCurrentLimit\',\n \'maxAdcValueReached\',\n \'controllerWasReset\',\n \'alarm21Internal\',\n \'p3VoltageOutOfRange\',\n \'derateLimit\',\n \'arrayCurrentOffset\',\n \'ee-i2cRetryLimit\',\n \'ethernetAlarm\',\n \'lvd\',\n \'software\',\n \'fp12VoltageOutOfRange\',\n \'extflashFault\',\n \'slaveControlFault\',\n \'alarm32Undefined\'\n];\n\nvar flags = parseInt(value.replace(/\\x20/g, \'\'), 16),\n result = [];\n\nfor (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) {\n if (flags & f) {\n result.push(FIELDS[i]);\n }\n}\n\nreturn result.length ? result.join(\'\\n\') : \'No alarms\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81871','33267','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81872','33276','1','21','var v_range = [\n [[0, 18], [12, 15, 11.5, 15.5]],\n [[18, 36], [24, 30, 23, 31]],\n [[36, 99], [48, 60, 46, 62]],\n ],\n result = [];\n\nfor (var idx in v_range) {\n if (v_range[idx][0][0] < value && value <= v_range[idx][0][1]) {\n result = [{\n \'{#VOLTAGE.MIN.WARN}\': parseInt({$VOLTAGE.MIN.WARN}) || v_range[idx][1][0],\n \'{#VOLTAGE.MAX.WARN}\': parseInt({$VOLTAGE.MAX.WARN}) || v_range[idx][1][1],\n \'{#VOLTAGE.MIN.CRIT}\': parseInt({$VOLTAGE.MIN.CRIT}) || v_range[idx][1][2],\n \'{#VOLTAGE.MAX.CRIT}\': parseInt({$VOLTAGE.MAX.CRIT}) || v_range[idx][1][3],\n \'{#SINGLETON}\': \'\'\n }];\n break;\n }\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81873','33278','1','1','0.00244140625','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81874','33278','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81875','33279','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81876','33281','1','1','0.005493164063','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81877','33281','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81878','33282','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81879','33283','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81880','33283','2','21','var FIELDS = [\n \'overcurrent\',\n \'fetShort\',\n \'softwareFault\',\n \'batteryHvd\',\n \'arrayHvd\',\n \'dipSwitchChange\',\n \'customSettingsEdit\',\n \'rtsShorted\',\n \'rtsDisconnected\',\n \'eepromRetryLimit\',\n \'fault11Undefined\',\n \'slaveControlTimeout\',\n];\n\nvar flags = parseInt(value.replace(/\\x20/g, \'\'), 16),\n result = [];\n\nfor (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) {\n if (flags & f) {\n result.push(FIELDS[i]);\n }\n}\n\nreturn result.length ? result.join(\'\\n\') : \'No faults\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81881','33284','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81882','33284','2','21','var FIELDS = [\n \'rtsOpen\',\n \'rtsShorted\',\n \'rtsDisconnected\',\n \'heatsinkTempSensorOpen\',\n \'heatsinkTempSensorShorted\',\n \'highTemperatureCurrentLimit\',\n \'currentLimit\',\n \'currentOffset\',\n \'batterySense\',\n \'batterySenseDisconnected\',\n \'uncalibrated\',\n \'rtsMiswire\',\n \'highVoltageDisconnect\',\n \'undefined\',\n \'systemMiswire\',\n \'mosfetSOpen\',\n \'p12VoltageReferenceOff\',\n \'highArrayVCurrentLimit\',\n \'maxAdcValueReached\',\n \'controllerWasReset\',\n];\n\nvar flags = parseInt(value.replace(/\\x20/g, \'\'), 16),\n result = [];\n\nfor (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) {\n if (flags & f) {\n result.push(FIELDS[i]);\n }\n}\n\nreturn result.length ? result.join(\'\\n\') : \'No alarms\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81883','33286','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81884','33287','1','1','0.1098632813','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81885','33287','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81886','33288','1','1','0.1098632813','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81887','33288','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81888','33289','1','1','0.00244140625','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81889','33289','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81890','33290','1','1','0.005493164063','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81891','33291','1','1','0.005493164063','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81892','33291','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81893','33292','1','1','0.005493164063','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81894','33292','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81895','33293','1','1','0.005493164063','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81896','33293','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81897','33295','1','21','var v_range = [\n [[0, 18], [12, 15, 11.5, 15.5]],\n [[18, 36], [24, 30, 23, 31]],\n [[36, 99], [48, 60, 46, 62]],\n ],\n result = [];\n\nfor (var idx in v_range) {\n if (v_range[idx][0][0] < value && value <= v_range[idx][0][1]) {\n result = [{\n \'{#VOLTAGE.MIN.WARN}\': parseInt({$VOLTAGE.MIN.WARN}) || v_range[idx][1][0],\n \'{#VOLTAGE.MAX.WARN}\': parseInt({$VOLTAGE.MAX.WARN}) || v_range[idx][1][1],\n \'{#VOLTAGE.MIN.CRIT}\': parseInt({$VOLTAGE.MIN.CRIT}) || v_range[idx][1][2],\n \'{#VOLTAGE.MAX.CRIT}\': parseInt({$VOLTAGE.MAX.CRIT}) || v_range[idx][1][3],\n \'{#SINGLETON}\': \'\'\n }];\n break;\n }\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81898','33296','1','1','0.005493164063','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81899','33296','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81900','33297','1','1','0.002950042725','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81901','33299','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81902','33300','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81903','33300','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81904','33301','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81905','33301','2','21','var FIELDS = [\n \'rtsOpen\',\n \'rtsShorted\',\n \'rtsDisconnected\',\n \'heatsinkTempSensorOpen\',\n \'heatsinkTempSensorShorted\',\n \'tristarHot\',\n \'currentLimit\',\n \'currentOffset\',\n \'batterySense\',\n \'batterySenseDisconnected\',\n \'uncalibrated\',\n \'rtsMiswire\',\n \'highVoltageDisconnect\',\n \'diversionLoadNearMax\',\n \'systemMiswire\',\n \'mosfetSOpen\',\n \'p12VoltageReferenceOff\',\n \'loadDisconnectState\',\n];\n\nvar flags = parseInt(value.replace(/\\x20/g, \'\'), 16),\n result = [];\n\nfor (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) {\n if (flags & f) {\n result.push(FIELDS[i]);\n }\n}\n\nreturn result.length ? result.join(\'\\n\') : \'No alarms\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81906','33302','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81907','33302','2','21','var FIELDS = [\n \'externalShort\',\n \'overcurrent\',\n \'mosfetSShorted\',\n \'softwareFault\',\n \'highVoltageDisconnect\',\n \'tristarHot\',\n \'dipSwitchChange\',\n \'customSettingsEdit\',\n \'reset\',\n \'systemMiswire\',\n \'rtsShorted\',\n \'rtsDisconnected\',\n];\n\nvar flags = parseInt(value.replace(/\\x20/g, \'\'), 16),\n result = [];\n\nfor (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) {\n if (flags & f) {\n result.push(FIELDS[i]);\n }\n}\n\nreturn result.length ? result.join(\'\\n\') : \'No faults\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81908','33303','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81909','33306','1','21','var v_range = [\n [[0, 18], [12, 15, 11.5, 15.5]],\n [[18, 36], [24, 30, 23, 31]],\n [[36, 99], [48, 60, 46, 62]],\n ],\n result = [];\n\nfor (var idx in v_range) {\n if (v_range[idx][0][0] < value && value <= v_range[idx][0][1]) {\n result = [{\n \'{#VOLTAGE.MIN.WARN}\': parseInt({$VOLTAGE.MIN.WARN}) || v_range[idx][1][0],\n \'{#VOLTAGE.MAX.WARN}\': parseInt({$VOLTAGE.MAX.WARN}) || v_range[idx][1][1],\n \'{#VOLTAGE.MIN.CRIT}\': parseInt({$VOLTAGE.MIN.CRIT}) || v_range[idx][1][2],\n \'{#VOLTAGE.MAX.CRIT}\': parseInt({$VOLTAGE.MAX.CRIT}) || v_range[idx][1][3],\n \'{#SINGLETON}\': \'\'\n }];\n break;\n }\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81910','33307','1','21','return JSON.stringify(parseInt(value) === 0 ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81911','33308','1','21','var mode = parseInt(value);\nreturn JSON.stringify((mode === 0 || mode === 2) ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81912','33309','1','21','return JSON.stringify(parseInt(value) === 2 ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81913','33310','1','21','return JSON.stringify(parseInt(value) === 1 ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81914','33311','1','21','var mode = parseInt(value);\nreturn JSON.stringify((mode === 1 || mode === 2) ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81915','33312','1','1','0.002950042725','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81916','33312','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81917','33313','1','1','0.004246520996','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81918','33313','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81919','33314','1','1','0.002034515381','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81920','33314','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81921','33315','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81922','33316','1','1','0.002950042725','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81923','33316','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81924','33317','1','1','0.3921568627','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81925','33317','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81926','33318','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81927','33319','1','1','0.009664001465','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81928','33319','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81929','33320','1','1','0.004246520996','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81930','33320','2','5','^(\\d+)(\\.\\d{1,2})?\n\\1\\2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81931','31453','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81932','31454','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81933','31455','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81937','32040','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81938','32041','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81939','32042','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81949','33348','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81950','33349','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81951','33350','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81952','33351','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81953','33356','1','21','var data = JSON.parse(value);\nvar descriptions = {};\nvar out = [];\n\ndata.forEach(function(elem) {\n if (elem["{#IFDESCR}"]) {\n var parts = elem["{#IFDESCR}"].split(":");\n var port = parts[parts.length-1].split(\' \');\n descriptions[parts[0] + \':\' + port[port.length-1]] = {\n "{#IFDESCR}": elem["{#IFDESCR}"],\n "{#SNMPINDEX}": elem["{#SNMPINDEX}"]\n }\n }\n});\n\ndata.forEach(function(elem) {\n if (elem["{#IFNAME}"]) {\n var port = descriptions[elem["{#NODE}"] + \':\' + elem["{#IFNAME}"]];\n\n elem["{#IFDESCR}"] = port["{#IFDESCR}"];\n elem["{#IFSNMPINDEX}"] = port["{#SNMPINDEX}"];\n\n\n switch(elem["{#TYPE}"]) {\n case \'0\':\n elem["{#TYPE}"] = \'physical\';\n break;\n case \'1\':\n elem["{#TYPE}"] = \'if-group\';\n break;\n case \'2\':\n elem["{#TYPE}"] = \'vlan\';\n break;\n case \'3\':\n elem["{#TYPE}"] = \'undef\';\n break;\n };\n\n out.push(elem);\n }\n});\n\nreturn JSON.stringify(out);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81954','33357','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81955','33358','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81956','33359','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81957','33360','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81958','33361','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81959','33362','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81960','33363','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81961','33364','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81962','33365','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81963','33366','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81964','33367','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81965','33369','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81966','33370','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81967','33371','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81968','33375','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81969','33376','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81970','33377','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81971','33378','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81972','33379','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81973','33379','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81974','33380','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81975','33381','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81976','33382','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81977','33382','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81978','33383','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81979','33384','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81980','33385','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81981','33386','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81982','33387','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81983','33388','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81984','33389','1','12','$.pjsip.available','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81985','33390','1','12','$.iax.online','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81986','33391','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81987','33392','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81988','33392','1','5','{$JENKINS.PING.REPLY}$\n1','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81989','33392','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81990','33393','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81991','33394','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81992','33395','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81993','33396','1','12','$.timers.[\'jenkins.job.waiting.duration\'].m1_rate','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81994','33397','1','12','$.gauges.[\'jenkins.node.online.value\'].value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81995','33397','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81996','33398','1','12','$.gauges.[\'jenkins.node.offline.value\'].value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81997','33398','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81998','33399','1','12','$.gauges.[\'jenkins.node.count.value\'].value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('81999','33399','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82000','33400','1','12','$.timers.[\'jenkins.job.waiting.duration\'].m5_rate','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82001','33401','1','12','$.timers.[\'jenkins.job.waiting.duration\'].p50','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82002','33402','1','12','$.timers.[\'jenkins.job.waiting.duration\'].p95','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82003','33403','1','12','$.gauges.[\'jenkins.plugins.active\'].value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82004','33403','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82005','33404','1','12','$.timers.[\'jenkins.job.total.duration\'].m5_rate','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82006','33405','1','12','$.timers.[\'jenkins.job.total.duration\'].m1_rate','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82007','33406','1','12','$.timers.[\'jenkins.job.total.duration\'].p95','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82008','33407','1','12','$.timers.[\'jenkins.job.total.duration\'].p50','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82009','33408','1','12','$.meters.[\'jenkins.job.scheduled\'].m5_rate','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82010','33409','1','12','$.plugins.healthy','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82011','33409','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82012','33409','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82013','33410','1','12','$.gauges.[\'jenkins.plugins.inactive\'].value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82014','33410','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82015','33411','1','12','$.gauges.[\'jenkins.plugins.failed\'].value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82016','33411','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82017','33412','1','12','$.gauges.[\'jenkins.queue.stuck.value\'].value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82018','33413','1','12','$[\'thread-deadlock\'].message','2','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82019','33413','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82020','33414','1','12','$[\'thread-deadlock\'].healthy','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82021','33414','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82022','33414','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82023','33415','1','12','$[\'temporary-space\'].message','2','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82024','33415','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82025','33416','1','12','$[\'temporary-space\'].healthy','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82026','33416','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82027','33416','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82028','33417','1','12','$.gauges.[\'vm.uptime.milliseconds\'].value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82029','33417','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82030','33418','1','12','$.gauges.[\'system.cpu.load\'].value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82031','33419','1','12','$.gauges.[\'jenkins.queue.size.value\'].value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82032','33420','1','12','$.timers.[\'jenkins.job.queuing.duration\'].m5_rate','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82033','33421','1','12','$.gauges.[\'jenkins.queue.pending.value\'].value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82034','33422','1','12','$.gauges.[\'jenkins.queue.buildable.value\'].value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82035','33423','1','12','$.gauges.[\'jenkins.queue.blocked.value\'].value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82036','33424','1','12','$.gauges.[\'jenkins.project.count.value\'].value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82037','33424','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82038','33425','1','12','$.gauges.[\'jenkins.plugins.withUpdate\'].value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82039','33425','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82040','33426','1','12','$[\'plugins\'].message','2','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82041','33426','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82042','33427','1','12','$.meters.[\'jenkins.job.scheduled\'].m1_rate','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82043','33428','1','12','$.timers.[\'jenkins.job.queuing.duration\'].p95','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82044','33429','1','12','$.timers.[\'jenkins.job.queuing.duration\'].m1_rate','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82045','33430','1','12','$.meters.[\'http.responseCodes.created\'].count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82046','33430','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82047','33431','1','12','$.meters.[\'http.responseCodes.other\'].count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82048','33431','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82049','33432','1','12','$.meters.[\'http.responseCodes.ok\'].count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82050','33432','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82051','33433','1','12','$.meters.[\'http.responseCodes.noContent\'].count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82052','33433','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82053','33434','1','12','$.meters.[\'http.responseCodes.notModified\'].count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82054','33434','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82055','33435','1','12','$.meters.[\'http.responseCodes.notFound\'].count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82056','33435','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82057','33436','1','12','$.meters.[\'http.responseCodes.forbidden\'].count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82058','33436','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82059','33437','1','12','$.meters.[\'http.responseCodes.badRequest\'].count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82060','33437','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82061','33438','1','12','$.timers.[\'http.requests\'].p50','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82062','33439','1','12','$.counters.[\'http.activeRequests\'].count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82063','33439','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82064','33440','1','12','$.gauges.[\'jenkins.executor.in-use.value\'].value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82065','33441','1','12','$.gauges.[\'jenkins.executor.free.value\'].value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82066','33442','1','12','$.gauges.[\'jenkins.executor.count.value\'].value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82067','33442','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82068','33443','1','12','$[\'disk-space\'].message','2','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82069','33443','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82070','33444','1','12','$[\'disk-space\'].healthy','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82071','33444','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82072','33444','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82073','33445','1','12','$.timers.[\'http.requests\'].count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82074','33445','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82075','33446','1','12','$.timers.[\'http.requests\'].p95','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82076','33447','1','12','$.gauges.[\'vm.file.descriptor.ratio\'].value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82077','33447','2','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82078','33448','1','12','$.timers.[\'jenkins.job.buildable.duration\'].m5_rate','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82079','33449','1','12','$.timers.[\'jenkins.job.queuing.duration\'].p50','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82080','33450','1','12','$.gauges.[\'jenkins.job.count.value\'].value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82081','33450','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82082','33451','1','12','$.timers.[\'jenkins.job.building.duration\'].m5_rate','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82083','33452','1','12','$.timers.[\'jenkins.job.building.duration\'].m1_rate','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82084','33453','1','12','$.timers.[\'jenkins.job.building.duration\'].p95','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82085','33454','1','12','$.timers.[\'jenkins.job.building.duration\'].p50','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82086','33455','1','12','$.timers.[\'jenkins.job.buildable.duration\'].m1_rate','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82087','33456','1','12','$.meters.[\'http.responseCodes.serverError\'].count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82088','33456','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82089','33457','1','12','$.timers.[\'jenkins.job.buildable.duration\'].p95','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82090','33458','1','12','$.timers.[\'jenkins.job.buildable.duration\'].p50','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82091','33459','1','12','$.timers.[\'jenkins.job.blocked.duration\'].m5_rate','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82092','33460','1','12','$.timers.[\'jenkins.job.blocked.duration\'].m1_rate','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82093','33461','1','12','$.timers.[\'jenkins.job.blocked.duration\'].p95','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82094','33462','1','12','$.timers.[\'jenkins.job.blocked.duration\'].p50','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82095','33463','1','12','$.meters.[\'http.responseCodes.serviceUnavailable\'].count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82096','33463','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82097','33464','1','12','$.gauges.[\'jenkins.versions.core\'].value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82098','33464','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82099','33465','1','12','$.computer.[*]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82100','33466','1','12','$.jobs.[*]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82101','33467','1','12','$.computer.[?(@.displayName == "{#DISPLAY_NAME}")].monitorData[\'hudson.node_monitors.SwapSpaceMonitor\'].availablePhysicalMemory.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82102','33468','1','12','$.computer.[?(@.displayName == "{#DISPLAY_NAME}")].monitorData[\'hudson.node_monitors.SwapSpaceMonitor\'].availableSwapSpace.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82103','33469','1','12','$.computer.[?(@.displayName == "{#DISPLAY_NAME}")].monitorData[\'hudson.node_monitors.ClockMonitor\'].diff.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82104','33469','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82105','33470','1','12','$.computer.[?(@.displayName == "{#DISPLAY_NAME}")].monitorData[\'hudson.node_monitors.DiskSpaceMonitor\'].size.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82106','33471','1','12','$.computer.[?(@.displayName == "{#DISPLAY_NAME}")].idle.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82107','33471','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82108','33471','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82109','33472','1','12','$.computer.[?(@.displayName == "{#DISPLAY_NAME}")].numExecutors.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82110','33473','1','12','$.computer.[?(@.displayName == "{#DISPLAY_NAME}")].offlineCauseReason.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82111','33473','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82112','33474','1','12','$.computer.[?(@.displayName == "{#DISPLAY_NAME}")].monitorData[\'hudson.node_monitors.ResponseTimeMonitor\'].average.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82113','33474','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82114','33475','1','12','$.computer.[?(@.displayName == "{#DISPLAY_NAME}")].offline.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82115','33475','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82116','33475','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82117','33476','1','12','$.computer.[?(@.displayName == "{#DISPLAY_NAME}")].temporarilyOffline.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82118','33476','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82119','33476','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82120','33477','1','12','$.computer.[?(@.displayName == "{#DISPLAY_NAME}")].monitorData[\'hudson.node_monitors.TemporarySpaceMonitor\'].size.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82121','33478','1','12','$.computer.[?(@.displayName == "{#DISPLAY_NAME}")].monitorData[\'hudson.node_monitors.SwapSpaceMonitor\'].totalPhysicalMemory.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82122','33479','1','12','$.computer.[?(@.displayName == "{#DISPLAY_NAME}")].monitorData[\'hudson.node_monitors.SwapSpaceMonitor\'].totalSwapSpace.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82123','33480','1','12','$.jobs.[?(@.name == "{#NAME}")].healthReport..score.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82124','33480','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82125','33481','1','12','$.jobs.[?(@.name == "{#NAME}")].lastBuild.duration.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82126','33481','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82127','33481','3','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82128','33482','1','12','$.jobs.[?(@.name == "{#NAME}")].lastBuild.number.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82129','33482','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82130','33483','1','12','$.jobs.[?(@.name == "{#NAME}")].lastBuild.result.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82131','33483','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82132','33484','1','12','$.jobs.[?(@.name == "{#NAME}")].lastBuild.timestamp.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82133','33484','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82134','33484','3','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82135','33485','1','12','$.jobs.[?(@.name == "{#NAME}")].lastFailedBuild.duration.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82136','33485','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82137','33485','3','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82138','33486','1','12','$.jobs.[?(@.name == "{#NAME}")].lastFailedBuild.number.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82139','33486','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82140','33487','1','12','$.jobs.[?(@.name == "{#NAME}")].lastFailedBuild.timestamp.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82141','33487','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82142','33487','3','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82143','33488','1','12','$.jobs.[?(@.name == "{#NAME}")].lastSuccessfulBuild.duration.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82144','33488','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82145','33488','3','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82146','33489','1','12','$.jobs.[?(@.name == "{#NAME}")].lastSuccessfulBuild.number.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82147','33489','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82148','33490','1','12','$.jobs.[?(@.name == "{#NAME}")].lastSuccessfulBuild.timestamp.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82149','33490','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82150','33490','3','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82151','33491','0','26','','2','{"html":{"head":{"title":"Connection error"}}}');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82152','33491','1','27','','2','{"html":{"head":{"title":"Connection error"}}}');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82153','33492','0','26','','2','{"html":{"head":{"title":"Connection error"}}}');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82154','33492','1','27','','2','{"html":{"head":{"title":"Connection error"}}}');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82155','33493','0','26','','2','{"html":{"head":{"title":"Connection error"}}}');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82156','33493','1','27','','2','{"html":{"head":{"title":"Connection error"}}}');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82157','33494','1','12','$.DeviceInfo.bootReleasedDate','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82158','33494','2','20','24h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82159','33495','1','12','$.DeviceInfo.telecontrolID','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82160','33495','2','20','24h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82161','33496','1','12','$.DeviceInfo.systemContact','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82162','33496','2','20','24h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82163','33497','1','12','$.DeviceInfo.supportVideoLoss','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82164','33497','2','20','24h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82165','33498','1','12','$.DeviceInfo.supportBeep','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82166','33498','2','20','24h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82167','33499','1','12','$.DeviceInfo.serialNumber','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82168','33499','2','20','24h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82169','33500','1','12','$.DeviceInfo.model','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82170','33500','2','20','24h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82171','33501','1','12','$.DeviceStatus.MemoryList.Memory.memoryUsage','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82172','33501','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82173','33502','1','12','$.DeviceInfo.macAddress','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82174','33502','2','20','24h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82175','33503','1','12','$.DeviceInfo.hardwareVersion','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82176','33503','2','20','24h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82177','33504','1','21','var data = JSON.parse(value);\n\nif ("html" in data){\n if (data.html.head.title === "Document Error: Unauthorized")\n {return 1}\n else if (data.html.head.title === "Connection error")\n {return 2}\n}\nreturn 0;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82178','33504','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82179','33505','1','21','var data = JSON.parse(value);\n\nif ("html" in data){\n if (data.html.head.title === "Document Error: Unauthorized")\n {return 1}\n else if (data.html.head.title === "Connection error")\n {return 2}\n}\nreturn 0;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82180','33505','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82181','33506','1','21','var data = JSON.parse(value);\n\nif ("html" in data){\n if (data.html.head.title === "Document Error: Unauthorized")\n {return 1}\n else if (data.html.head.title === "Connection error")\n {return 2}\n}\nreturn 0;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82182','33506','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82183','33507','1','12','$.DeviceInfo.bootVersion','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82184','33507','2','20','24h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82185','33508','1','12','$.DeviceInfo.firmwareVersion','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82186','33508','2','20','24h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82187','33509','1','12','$.DeviceInfo.firmwareReleasedDate','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82188','33509','2','20','24h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82189','33510','1','12','$.DeviceInfo.encoderVersion','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82190','33510','2','20','24h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82191','33511','1','12','$.DeviceInfo.encoderReleasedDate','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82192','33511','2','20','24h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82193','33512','1','12','$.DeviceInfo.deviceType','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82194','33512','2','20','24h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82195','33513','1','12','$.DeviceInfo.deviceName','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82196','33513','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82197','33514','1','12','$.DeviceInfo.deviceLocation','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82198','33514','2','20','24h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82199','33515','1','12','$.DeviceInfo.deviceID','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82200','33515','2','20','24h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82201','33516','1','12','$.DeviceInfo.deviceDescription','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82202','33516','2','20','24h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82203','33517','1','12','$.DeviceStatus.currentDeviceTime','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82204','33518','1','12','$.DeviceStatus.CPUList.CPU.cpuUtilization','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82205','33518','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82206','33519','1','12','$.DeviceStatus.deviceUpTime','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82207','33520','1','27','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82208','33520','2','21','var data = JSON.parse(value);\nvar out = [];\n\nif ("PTZChannel" in data.PTZChannelList) {\n out.push({\n "{#PTZ_CHANNEL_ID}": data.PTZChannelList.PTZChannel.id\n })\n}\n\nreturn JSON.stringify(out);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82209','33521','1','27','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82210','33521','2','21','var data = JSON.parse(value);\nvar out = [];\n\ndata.StreamingChannelList.StreamingChannel.forEach(function (field) {\n out.push({\n "{#CHANNEL_ID}": field.id,\n "{#CHANNEL_NAME}": field.channelName,\n "{#CHANNEL_ENABLED}": field.enabled\n });\n})\n\nreturn JSON.stringify(out);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82211','33522','0','26','','2','{"html":{"head":{"title":"Connection error"}}}');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82212','33522','1','27','','2','{"html":{"head":{"title":"Connection error"}}}');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82213','33523','1','21','var data = JSON.parse(value);\n\nif ("html" in data){\n if (data.html.head.title === "Document Error: Unauthorized")\n {return 1}\n else if (data.html.head.title === "Connection error")\n {return 2}\n}\nreturn 0;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82214','33523','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82215','33524','1','12','$.PTZStatus.AbsoluteHigh.absoluteZoom','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82216','33524','2','1','0.1','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82217','33524','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82218','33525','1','12','$.PTZStatus.AbsoluteHigh.azimuth','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82219','33525','2','1','0.1','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82220','33525','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82221','33526','1','12','$.PTZStatus.AbsoluteHigh.elevation','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82222','33526','2','1','0.1','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82223','33526','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82224','33527','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.constantBitRate','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82225','33527','2','12','$.[0]','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82226','33527','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82227','33528','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.fixedQuality','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82228','33528','2','12','$[0]','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82229','33528','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82230','33529','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.GovLength','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82231','33529','2','12','$[0]','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82232','33529','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82233','33530','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.H264Profile','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82234','33530','2','12','$[0]','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82235','33530','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82236','33531','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.keyFrameInterval','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82237','33531','2','12','$[0]','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82238','33531','3','1','0.01','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82239','33531','4','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82240','33532','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.maxFrameRate','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82241','33532','2','12','$[0]','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82242','33532','3','1','0.01','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82243','33532','4','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82244','33533','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.smoothing','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82245','33533','2','12','$[0]','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82246','33533','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82247','33534','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.snapShotImageType','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82248','33534','2','12','$[0]','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82249','33534','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82250','33535','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.vbrLowerCap','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82251','33535','2','12','$[0]','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82252','33535','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82253','33536','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.vbrUpperCap','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82254','33536','2','12','$[0]','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82255','33537','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.videoCodecType','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82256','33537','2','12','$[0]','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82257','33537','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82258','33538','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.videoQualityControlType','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82259','33538','2','12','$[0]','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82260','33538','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82261','33539','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.videoResolutionHeight','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82262','33539','2','12','$[0]','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82263','33539','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82264','33540','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.videoResolutionWidth','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82265','33540','2','12','$[0]','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82266','33540','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82267','33541','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.videoScanType','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82268','33541','2','12','$[0]','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82269','33541','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82270','33542','1','21','var data = JSON.parse(value);\nfor (var item, i = 0; item = data.data[i++];) {\n if (!(\'{#JMXIGNITEINSTANCENAME}\' in item)) {\n Object.assign(item, {\n \'{#JMXIGNITEINSTANCENAME}\': \'null\'\n });\n }\n\n}\n\nreturn JSON.stringify(data)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82271','33542','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82272','33543','1','21','var data = JSON.parse(value);\nfor (var item, i = 0; item = data.data[i++];) {\n if (!(\'{#JMXIGNITEINSTANCENAME}\' in item)) {\n Object.assign(item, {\n \'{#JMXIGNITEINSTANCENAME}\': \'null\'\n });\n }\n\n}\n\nreturn JSON.stringify(data)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82273','33544','1','21','var data = JSON.parse(value);\nfor (var item, i = 0; item = data.data[i++];) {\n if (!(\'{#JMXIGNITEINSTANCENAME}\' in item)) {\n Object.assign(item, {\n \'{#JMXIGNITEINSTANCENAME}\': \'null\'\n });\n }\n\n}\n\nreturn JSON.stringify(data)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82274','33545','1','21','var data = JSON.parse(value);\nfor (var item, i = 0; item = data.data[i++];) {\n if (!(\'{#JMXIGNITEINSTANCENAME}\' in item)) {\n Object.assign(item, {\n \'{#JMXIGNITEINSTANCENAME}\': \'null\'\n });\n }\n\n}\n\nreturn JSON.stringify(data)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82275','33546','1','21','var data = JSON.parse(value);\nfor (var item, i = 0; item = data.data[i++];) {\n if (!(\'{#JMXIGNITEINSTANCENAME}\' in item)) {\n Object.assign(item, {\n \'{#JMXIGNITEINSTANCENAME}\': \'null\'\n });\n }\n\n}\n\nreturn JSON.stringify(data)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82276','33547','1','21','var data = JSON.parse(value);\nfor (var item, i = 0; item = data.data[i++];) {\n if (!(\'{#JMXIGNITEINSTANCENAME}\' in item)) {\n Object.assign(item, {\n \'{#JMXIGNITEINSTANCENAME}\': \'null\'\n });\n }\n\n}\n\nreturn JSON.stringify(data)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82277','33548','1','21','var data = JSON.parse(value);\nfor (var item, i = 0; item = data.data[i++];) {\n if (!(\'{#JMXIGNITEINSTANCENAME}\' in item)) {\n Object.assign(item, {\n \'{#JMXIGNITEINSTANCENAME}\': \'null\'\n });\n }\n\n}\n\nreturn JSON.stringify(data)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82278','33549','1','21','var data = JSON.parse(value);\nfor (var item, i = 0; item = data.data[i++];) {\n if (!(\'{#JMXIGNITEINSTANCENAME}\' in item)) {\n Object.assign(item, {\n \'{#JMXIGNITEINSTANCENAME}\': \'null\'\n });\n }\n\n}\n\nreturn JSON.stringify(data)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82279','33549','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82280','33550','1','21','var data = JSON.parse(value);\nfor (var item, i = 0; item = data.data[i++];) {\n if (!(\'{#JMXIGNITEINSTANCENAME}\' in item)) {\n Object.assign(item, {\n \'{#JMXIGNITEINSTANCENAME}\': \'null\'\n });\n }\n\n}\n\nreturn JSON.stringify(data)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82281','33550','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82282','33551','1','21','var data = JSON.parse(value);\nfor (var item, i = 0; item = data.data[i++];) {\n if (!(\'{#JMXIGNITEINSTANCENAME}\' in item)) {\n Object.assign(item, {\n \'{#JMXIGNITEINSTANCENAME}\': \'null\'\n });\n }\n\n}\n\nreturn JSON.stringify(data)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82283','33551','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82284','33570','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82285','33571','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82286','33572','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82287','33573','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82288','33574','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82289','33575','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82290','33576','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82291','33577','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82292','33578','1','5','(.*)-\\d+\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82293','33578','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82294','33579','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82295','33580','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82296','33582','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82298','33584','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82299','33585','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82300','33590','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82301','33591','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82302','33592','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82303','33599','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82304','33611','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82305','33614','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82306','33615','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82307','33617','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82308','33618','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82309','33619','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82310','31766','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82312','31258','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82313','31260','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82314','28388','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82315','29994','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82316','33620','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82317','28392','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82318','28393','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82319','28394','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82320','28395','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82321','28396','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82322','28397','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82323','28398','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82324','28399','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82325','28400','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82326','28401','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82327','28402','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82328','28403','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82329','33621','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82330','33622','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82331','33623','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82332','33624','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82333','33625','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82334','33626','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82335','33627','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82336','33628','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82337','33629','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82338','28404','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82339','28405','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82340','28406','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82341','28407','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82342','28408','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82343','28409','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82344','28411','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82345','28412','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82346','28413','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82347','28414','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82348','28415','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82349','28416','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82350','28417','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82351','28418','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82352','28419','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82353','28420','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82354','28421','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82355','28422','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82356','28423','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82357','28424','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82358','28425','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82359','33630','0','26','','2','{"status":520,"data":{},"time":0}');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82360','33631','1','5','X-SharePointHealthScore\\b:\\s(\\d+)\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82361','33631','2','13','0\n10','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82362','33631','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82363','33632','1','12','$.status','3','DISCARD_VALUE');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82364','33632','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82365','33633','1','12','$.time','3','DISCARD_VALUE');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82366','33633','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82367','33634','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82368','33635','1','12','{{#SHAREPOINT.LLD.JSON_PATH}.regsub("(.*)", \\1)}.meta.created','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82369','33635','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82370','33636','1','12','{{#SHAREPOINT.LLD.JSON_PATH}.regsub("(.*)", \\1)}.meta.modified','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82371','33636','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82372','33637','1','12','{{#SHAREPOINT.LLD.JSON_PATH}.regsub("(.*)", \\1)}.meta.size','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82373','33637','2','20','24h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82374','33647','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82375','33650','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82416','33691','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82417','33692','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82418','33692','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82419','33693','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82420','33694','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82421','33703','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82422','33704','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82423','33706','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82424','33708','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82425','33709','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82426','33710','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82427','33711','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82428','33712','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82429','33714','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82430','33715','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82431','33717','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82432','33718','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82433','33719','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82434','33720','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82435','33721','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82436','33723','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82437','33725','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82438','33727','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82439','33728','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82440','33728','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82441','33729','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82442','33733','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82443','33735','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82444','33737','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82445','33738','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82446','33740','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82447','33741','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82448','33742','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82449','33743','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82450','33743','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82451','33744','1','12','$.management_version','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82452','33744','2','21','var rabbit_version = parseInt(value.split(\'.\')[0]) * 10000 +\n parseInt(value.split(\'.\')[1]) * 100 +\n parseInt(value.split(\'.\')[2])\nreturn JSON.stringify(rabbit_version >= 30810 ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82453','33745','1','12','$.management_version','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82454','33745','2','21','var rabbit_version = parseInt(value.split(\'.\')[0]) * 10000 +\n parseInt(value.split(\'.\')[1]) * 100 +\n parseInt(value.split(\'.\')[2])\nreturn JSON.stringify(rabbit_version < 30810 ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82455','33746','1','12','$.management_version','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82456','33746','2','21','var rabbit_version = parseInt(value.split(\'.\')[0]) * 10000 +\n parseInt(value.split(\'.\')[1]) * 100 +\n parseInt(value.split(\'.\')[2])\nreturn JSON.stringify(rabbit_version >= 30810 ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82457','33747','1','5','HTTP\\/1\\.1\\b\\s(\\d+)\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82458','33747','2','21','switch(value){ \ncase \'200\': return 1 \ncase \'503\': return 0 \ndefault: 2}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82459','33747','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82460','33748','1','5','\\n\\s?\\n(.*)\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82461','33748','2','12','$.status','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82462','33748','3','6','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82463','33749','1','5','HTTP\\/1\\.1\\b\\s(\\d+)\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82464','33749','2','21','switch(value){ \ncase \'200\': return 1 \ncase \'503\': return 0 \ndefault: 2}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82465','33749','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82466','33750','1','5','HTTP\\/1\\.1\\b\\s(\\d+)\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82467','33750','2','21','switch(value){ \ncase \'200\': return 1 \ncase \'503\': return 0 \ndefault: 2}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82468','33750','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82469','33751','1','5','HTTP\\/1\\.1\\b\\s(\\d+)\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82470','33751','2','21','switch(value){ \ncase \'200\': return 1 \ncase \'503\': return 0 \ndefault: 2}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82471','33751','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82472','33752','1','5','HTTP\\/1\\.1\\b\\s(\\d+)\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82473','33752','2','21','switch(value){ \ncase \'200\': return 1 \ncase \'503\': return 0 \ndefault: 2}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82474','33752','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82475','33753','1','5','HTTP\\/1\\.1\\b\\s(\\d+)\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82476','33753','2','21','switch(value){ \ncase \'200\': return 1 \ncase \'503\': return 0 \ndefault: 2}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82477','33753','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82478','33754','1','12','$.management_version','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82479','33754','2','21','var rabbit_version = parseInt(value.split(\'.\')[0]) * 10000 +\n parseInt(value.split(\'.\')[1]) * 100 +\n parseInt(value.split(\'.\')[2])\nreturn JSON.stringify(rabbit_version >= 30810 ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82480','33755','1','12','$.management_version','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82481','33755','2','21','var rabbit_version = parseInt(value.split(\'.\')[0]) * 10000 +\n parseInt(value.split(\'.\')[1]) * 100 +\n parseInt(value.split(\'.\')[2])\nreturn JSON.stringify(rabbit_version < 30810 ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82482','33756','1','12','$.management_version','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82483','33756','2','21','var rabbit_version = parseInt(value.split(\'.\')[0]) * 10000 +\n parseInt(value.split(\'.\')[1]) * 100 +\n parseInt(value.split(\'.\')[2])\nreturn JSON.stringify(rabbit_version >= 30810 ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82484','33757','1','5','HTTP\\/1\\.1\\b\\s(\\d+)\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82485','33757','2','21','switch(value){ \ncase \'200\': return 1 \ncase \'503\': return 0 \ndefault: 2}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82486','33757','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82487','33758','1','12','$.status','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82488','33758','2','6','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82489','33759','1','5','HTTP\\/1\\.1\\b\\s(\\d+)\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82490','33759','2','21','switch(value){ \ncase \'200\': return 1 \ncase \'503\': return 0 \ndefault: 2}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82491','33759','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82492','33760','1','5','HTTP\\/1\\.1\\b\\s(\\d+)\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82493','33760','2','21','switch(value){ \ncase \'200\': return 1 \ncase \'503\': return 0 \ndefault: 2}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82494','33760','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82495','33761','1','5','HTTP\\/1\\.1\\b\\s(\\d+)\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82496','33761','2','21','switch(value){ \ncase \'200\': return 1 \ncase \'503\': return 0 \ndefault: 2}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82497','33761','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82498','33762','1','5','HTTP\\/1\\.1\\b\\s(\\d+)\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82499','33762','2','21','switch(value){ \ncase \'200\': return 1 \ncase \'503\': return 0 \ndefault: 2}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82500','33762','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82501','33763','1','5','HTTP\\/1\\.1\\b\\s(\\d+)\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82502','33763','2','21','switch(value){ \ncase \'200\': return 1 \ncase \'503\': return 0 \ndefault: 2}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82503','33763','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82504','33766','1','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82505','33769','1','12','$.metrics.document.deleted','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82506','33769','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82507','33770','1','12','$.network.numRequests','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82508','33770','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82509','33771','1','12','$.mem.mappedWithJournal','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82510','33771','2','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82511','33772','1','12','$.mem.resident','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82512','33772','2','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82513','33773','1','12','$.mem.virtual','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82514','33773','2','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82515','33774','1','12','$.metrics.cursor.open.noTimeout','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82516','33775','1','12','$.network.bytesIn','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82517','33775','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82518','33776','1','12','$.network.bytesOut','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82519','33776','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82520','33777','1','12','$.opcounters.delete','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82521','33777','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82522','33778','1','12','$.opcounters.command','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82523','33778','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82524','33779','1','12','$.mem.bits','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82525','33779','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82526','33780','1','12','$.opcounters.getmore','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82527','33780','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82528','33781','1','12','$.opcounters.insert','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82529','33781','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82530','33782','1','12','$.opcounters.query','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82531','33782','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82532','33783','1','12','$.opcounters.update','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82533','33783','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82534','33784','1','12','$.uptime','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82535','33785','1','12','$.mem.mapped','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82536','33785','2','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82537','33786','1','12','$.metrics.cursor.timedOut','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82538','33786','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82539','33787','1','12','$.metrics.document.inserted','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82540','33787','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82541','33788','1','12','$.asserts.user','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82542','33788','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82543','33789','1','12','$.metrics.document.returned','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82544','33789','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82545','33790','1','12','$.metrics.document.updated','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82546','33790','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82547','33791','1','12','$.globalLock.activeClients.readers','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82548','33792','1','12','$.globalLock.activeClients.total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82549','33793','1','12','$.globalLock.activeClients.writers','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82550','33794','1','12','$.asserts.msg','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82551','33794','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82552','33795','1','12','$.asserts.regular','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82553','33795','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82554','33796','1','12','$.asserts.rollovers','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82555','33796','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82556','33797','1','12','$.asserts.warning','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82557','33797','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82558','33798','1','12','$.metrics.cursor.open.total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82559','33799','1','12','$.connections.active','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82560','33800','1','12','$.connections.available','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82561','33801','1','12','$.connections.current','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82562','33802','1','12','$.connections.totalCreated','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82563','33802','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82564','33803','1','12','$.globalLock.currentQueue.readers','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82565','33804','1','12','$.globalLock.currentQueue.total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82566','33805','1','12','$.globalLock.currentQueue.writers','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82567','33806','1','12','$.metrics.cursor.open.pinned','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82568','33807','1','12','$.version','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82569','33807','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82570','33810','1','21','var status = JSON.parse(value)\nreturn JSON.stringify(status.set\n? [{\'{#RS_NAME}\': status.set, \'{#NODE_STATE}\': status.myState}]\n: []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82571','33810','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82572','33811','1','21','return JSON.stringify(JSON.parse(value).wiredTiger\n ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82573','33811','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82574','33814','1','12','$.avgObjSize','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82575','33815','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].remove.time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82576','33815','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82577','33816','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].writeLock.time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82578','33816','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82579','33817','1','12','$.storageSize','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82580','33818','1','12','$.size','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82581','33819','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].readLock.count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82582','33819','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82583','33820','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].readLock.time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82584','33820','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82585','33821','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].update.count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82586','33821','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82587','33822','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].update.time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82588','33822','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82589','33823','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].total.count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82590','33823','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82591','33824','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].total.time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82592','33824','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82593','33825','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].remove.count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82594','33825','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82595','33826','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].queries.count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82596','33826','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82597','33827','1','12','$.capped','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82598','33827','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82599','33827','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82600','33828','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].queries.time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82601','33828','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82602','33829','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].insert.count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82603','33829','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82604','33830','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].insert.time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82605','33830','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82606','33831','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].getmore.count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82607','33831','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82608','33832','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].getmore.time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82609','33832','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82610','33833','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].commands.count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82611','33833','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82612','33834','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].commands.time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82613','33834','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82614','33835','1','12','$.nindexes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82615','33836','1','12','$.maxSize','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82616','33837','1','12','$.max','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82617','33838','1','12','$.count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82618','33839','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].writeLock.count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82619','33839','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82620','33840','1','12','$.collections','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82621','33841','1','12','$.dataSize','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82622','33842','1','12','$.numExtents','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82623','33843','1','12','$.fileSize','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82624','33844','1','12','$.indexSize','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82625','33845','1','12','$.objects','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82626','33846','1','12','$.avgObjSize','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82627','33847','1','12','$.storageSize','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82628','33848','1','12','$.metrics.repl.apply.batches.totalMillis','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82629','33848','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82630','33849','1','12','$.metrics.repl.network.readersCreated','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82631','33849','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82632','33850','1','12','$.members[?(@.self == "true")].unhealthyNodes.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82633','33850','2','21','var value = JSON.parse(value);\nreturn value.length ? JSON.stringify(value) : \'\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82634','33850','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82635','33851','1','12','$.members[?(@.self == "true")].totalNodes.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82636','33851','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82637','33852','1','12','$.myState','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82638','33852','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82639','33853','1','12','$.metrics.repl.preload.indexes.num','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82640','33853','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82641','33854','1','12','$.metrics.repl.preload.indexes.totalMillis','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82642','33854','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82643','33855','1','12','$.metrics.repl.preload.docs.num','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82644','33855','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82645','33856','1','12','$.metrics.repl.preload.docs.totalMillis','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82646','33856','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82647','33857','1','12','$.timediff','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82648','33858','1','12','$.metrics.repl.network.ops','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82649','33858','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82650','33859','1','12','$.metrics.repl.apply.batches.num','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82651','33859','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82652','33860','1','12','$.metrics.repl.network.getmores.num','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82653','33860','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82654','33861','1','12','$.metrics.repl.network.getmores.totalMillis','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82655','33861','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82656','33862','1','12','$.metrics.repl.network.bytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82657','33862','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82658','33863','1','12','$.members[?(@.self == "true")].lag.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82659','33864','1','12','$.metrics.repl.buffer.sizeBytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82660','33865','1','12','$.metrics.repl.buffer.maxSizeBytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82661','33866','1','12','$.metrics.repl.buffer.count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82662','33867','1','12','$.metrics.repl.apply.ops','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82663','33867','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82664','33868','1','12','$.members[?(@.self == "true")].unhealthyCount.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82665','33868','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82666','33869','1','12','$.wiredTiger.cache[\'bytes currently in the cache\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82667','33870','1','12','$.wiredTiger.cache.[\'tracked dirty bytes in the cache\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82668','33871','1','12','$.wiredTiger.concurrentTransactions.write.out','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82669','33872','1','12','$.wiredTiger.concurrentTransactions.write.available','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82670','33873','1','12','$.wiredTiger.concurrentTransactions.read.totalTickets','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82671','33874','1','12','$.wiredTiger.concurrentTransactions.read.out','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82672','33875','1','12','$.wiredTiger.concurrentTransactions.read.available','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82673','33876','1','12','$.wiredTiger.cache.[\'unmodified pages evicted\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82674','33877','1','12','$.wiredTiger.cache[\'in-memory page splits\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82675','33878','1','12','$.wiredTiger.cache[\'maximum bytes configured\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82676','33879','1','12','$.wiredTiger.cache[\'pages written from cache\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82677','33880','1','12','$.wiredTiger.cache[\'pages read into cache\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82678','33881','1','12','$.wiredTiger.cache[\'pages currently held in the cache\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82679','33882','1','12','$.wiredTiger.cache.[\'pages evicted by application threads\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82680','33883','1','12','$.wiredTiger.cache[\'modified pages evicted\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82681','33884','1','12','$.wiredTiger.cache[\'maximum page size at eviction\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82682','33885','1','12','$.wiredTiger.concurrentTransactions.write.totalTickets','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82683','33888','1','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82685','33891','1','12','$.opcounters.command','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82686','33891','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82687','33892','1','12','$.network.bytesIn','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82688','33892','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82689','33893','1','12','$.network.bytesOut','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82690','33893','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82691','33894','1','12','$.network.numRequests','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82692','33894','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82693','33895','1','12','$.opcounters.getmore','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82694','33895','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82695','33896','1','12','$.opcounters.delete','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82696','33896','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82697','33897','1','12','$.mem.virtual','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82698','33897','2','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82699','33898','1','12','$.opcounters.insert','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82700','33898','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82701','33899','1','12','$.opcounters.query','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82702','33899','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82703','33900','1','12','$.opcounters.update','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82704','33900','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82705','33901','1','12','$.uptime','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82706','33902','1','12','$.metrics.cursor.open.noTimeout','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82707','33903','1','12','$.mem.bits','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82708','33903','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82709','33904','1','12','$.mem.resident','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82710','33904','2','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82711','33905','1','12','$.connections.active','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82712','33906','1','12','$.sharding.lastSeenConfigServerOpTime.ts.T','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82713','33907','1','12','$.metrics.cursor.timedOut','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82714','33907','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82715','33908','1','12','$.metrics.cursor.open.total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82716','33909','1','12','$.metrics.cursor.open.pinned','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82717','33910','1','12','$.numAScopedConnections','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82718','33911','1','12','$.totalRefreshing','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82719','33912','1','12','$.totalInUse','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82720','33913','1','12','$.totalCreated','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82721','33913','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82722','33914','1','12','$.numClientConnections','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82723','33915','1','12','$.totalAvailable','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82724','33916','1','12','$.connections.totalCreated','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82725','33916','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82726','33917','1','12','$.connections.current','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82727','33918','1','12','$.connections.available','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82728','33919','1','12','$.version','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82729','33919','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82730','33926','1','12','$.avgObjSize','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82731','33927','1','12','$.capped','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82732','33927','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82733','33927','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82734','33928','1','12','$.count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82735','33929','1','12','$.max','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82736','33930','1','12','$.maxSize','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82737','33931','1','12','$.nindexes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82738','33932','1','12','$.size','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82739','33933','1','12','$.storageSize','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82740','33934','1','12','$.dataSize','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82741','33935','1','12','$.numExtents','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82742','33936','1','12','$.fileSize','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82743','33937','1','12','$.indexSize','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82744','33938','1','12','$.objects','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82745','33939','1','12','$.avgObjSize','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82746','33940','1','12','$.storageSize','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82747','33942','1','12','$[?(@.group_name==\'{#GROUP_NAME}\' && @.replica_name==\'{#REPLICA_NAME}\' && @.dbname==\'{#DBNAME}\')].log_send_queue_size.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82748','33942','2','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82749','33942','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82750','33943','1','12','$[?(@.group_name==\'{#GROUP_NAME}\' && @.replica_name==\'{#REPLICA_NAME}\' && @.dbname==\'{#DBNAME}\')].redo_queue_size.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82751','33943','2','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82752','33943','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82753','33948','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82754','33949','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82755','33950','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82756','33951','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82757','33952','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82758','33953','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82759','33954','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82760','33955','1','5','Version (.+), RELEASE\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82761','33955','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82762','33956','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82763','33967','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82764','33972','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82765','33973','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82766','33974','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82767','33974','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82768','33975','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82769','33976','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82770','33977','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82771','33977','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82772','33978','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82773','33978','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82774','33979','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82775','33980','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82776','33989','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82777','33990','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82778','33991','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82779','33992','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82780','33993','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82781','33994','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82782','33995','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82783','33996','1','5','Version (.+), RELEASE\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82784','33996','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82785','33997','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82786','34008','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82787','34013','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82788','34014','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82789','34015','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82790','34015','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82791','34016','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82792','34017','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82793','34018','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82794','34018','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82795','34019','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82796','34019','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82797','34020','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82798','34021','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82799','34030','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82800','34031','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82801','34032','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82802','34033','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82803','34034','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82804','34035','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82805','34036','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82806','34037','1','5','Version (.+), RELEASE\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82807','34037','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82808','34038','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82809','34049','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82810','34054','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82811','34055','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82812','34056','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82813','34056','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82814','34057','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82815','34058','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82816','34059','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82817','34059','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82818','34060','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82819','34060','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82820','34061','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82821','34062','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82822','34071','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82823','34072','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82824','34073','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82825','34074','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82826','34075','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82827','34076','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82828','34077','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82829','34078','1','5','Version (.+), RELEASE\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82830','34078','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82831','34079','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82832','34090','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82833','34095','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82834','34096','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82835','34097','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82836','34097','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82837','34098','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82838','34099','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82839','34100','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82840','34100','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82841','34101','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82842','34101','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82843','34102','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82844','34103','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82845','34112','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82846','34113','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82847','34114','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82848','34115','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82849','34116','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82850','34117','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82851','34118','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82852','34119','1','5','Version (.+), RELEASE\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82853','34119','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82854','34120','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82855','34131','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82856','34136','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82857','34137','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82858','34138','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82859','34138','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82860','34139','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82861','34140','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82862','34141','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82863','34141','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82864','34142','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82865','34142','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82866','34143','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82867','34144','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82868','34153','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82869','34154','1','12','$..[\'{#CPU.UTIL}\'].avg()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82870','34155','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82871','34156','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82872','34157','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82873','34158','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82874','34159','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82875','34161','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82876','34162','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82877','34163','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82878','28196','1','21','var data = JSON.parse(value).filter(function (item) {\n return (typeof item[\'{#SENSOR_PRECISION}\'] !== \'undefined\');\n});\n\nreturn JSON.stringify(data);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82879','28196','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82880','28197','1','21','var data = JSON.parse(value).filter(function (item) {\n return (typeof item[\'{#SNMPVALUE}\'] !== \'undefined\');\n});\n\nreturn JSON.stringify(data);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82881','28197','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82882','28198','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82883','28199','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82884','34164','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82885','34165','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82886','34166','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82887','34166','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82888','34167','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82889','34168','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82890','34169','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82891','34169','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82892','34170','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82893','34170','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82894','34172','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82895','34174','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82896','34175','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82897','34176','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82898','34177','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82900','34180','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82901','34180','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82902','34181','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82903','34182','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82904','34183','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82906','34185','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82907','34186','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82908','34187','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82909','34188','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82910','34190','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82911','34190','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82912','34191','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82913','34192','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82914','34192','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82915','34193','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82916','34194','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82917','34194','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82918','34195','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82919','34195','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82920','34196','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82921','34200','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82922','34200','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82923','34201','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82924','34201','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82925','34202','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82926','34203','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82927','34203','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82928','34204','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82929','34205','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82930','34212','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82931','34213','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82932','34214','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82933','34215','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82934','34216','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82935','34216','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82936','34217','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82937','34218','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82938','34219','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82939','34220','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82940','34221','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82941','34222','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82942','34223','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82943','34224','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82944','34224','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82945','34225','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82946','34233','1','21','var result = [];\n\nJSON.parse(value).records.forEach(function(chassis) {\n chassis.frus.forEach(function(frus) {\n frus.chassisId = chassis.id;\n result.push(frus);\n })\n});\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82947','34240','1','12','$.statistics.status','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82948','34240','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82949','34241','1','12','$.location','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82950','34241','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82951','34242','1','12','$.name','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82952','34242','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82953','34243','1','12','$.statistics.iops_raw.other','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82954','34243','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82955','34244','1','12','$.statistics.iops_raw.read','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82956','34244','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82957','34245','1','12','$.statistics.iops_raw.total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82958','34245','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82959','34246','1','12','$.statistics.iops_raw.write','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82960','34246','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82961','34247','1','12','$.statistics.iops_raw.other','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82962','34248','1','12','$.version.full','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82963','34248','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82964','34249','1','12','$.statistics.throughput_raw.write','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82965','34249','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82966','34250','1','12','$.statistics.iops_raw.write','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82967','34251','1','12','$.statistics.throughput_raw.total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82968','34251','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82969','34252','1','12','$.statistics.throughput_raw.read','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82970','34252','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82971','34253','1','12','$.statistics.throughput_raw.other','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82972','34253','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82973','34254','1','12','$.statistics.latency_raw.write','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82974','34255','1','12','$.statistics.latency_raw.total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82975','34256','1','12','$.statistics.iops_raw.read','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82976','34257','1','12','$.statistics.latency_raw.other','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82977','34258','1','12','$.statistics.iops_raw.total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82978','34259','1','12','$.statistics.latency_raw.read','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82979','34260','1','21','var result = [];\n\nJSON.parse(value).records.forEach(function (chassis) {\n result.push({"{#ID}": chassis.id});\n});\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82980','34261','1','21','var result = [];\n\nJSON.parse(value).records.forEach(function (disk) {\n result.push({"{#DISKNAME}": disk.name, "{#NODENAME}": disk.node.name});\n});\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82981','34262','1','21','var result = [];\n\nJSON.parse(value).forEach(function (fru) {\n result.push({"{#CHASSISID}": fru.chassisId, "{#FRUID}": fru.id});\n});\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82982','34262','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82983','34263','1','21','var result = [];\n\nJSON.parse(value).records.forEach(function (lun) {\n result.push({"{#LUNNAME}": lun.name, "{#SVMNAME}": lun.svm.name});\n});\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82984','34264','1','21','var result = [];\n\nJSON.parse(value).records.forEach(function (node) {\n result.push({"{#NODENAME}": node.name});\n});\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82985','34265','1','21','var result = [];\n\nJSON.parse(value).records.forEach(function (port) {\n result.push({"{#NODENAME}": port.node.name, "{#ETHPORTNAME}": port.name, "{#ETHPORTSTATE}": port.state});\n});\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82986','34266','1','21','var result = [];\n\nJSON.parse(value).records.forEach(function (port) {\n result.push({"{#NODENAME}": port.node.name, "{#FCPORTNAME}": port.name, "{#FCPORTSTATE}": port.state});\n});\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82987','34267','1','21','var result = [];\n\nJSON.parse(value).records.forEach(function (svm) {\n result.push({"{#SVMNAME}": svm.name});\n});\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82988','34268','1','21','var result = [];\n\nJSON.parse(value).records.forEach(function (volume) {\n result.push({"{#VOLUMENAME}": volume.name});\n});\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82989','34273','1','12','$.records[?(@.id==\'{#ID}\')].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82990','34273','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82991','34274','1','12','$.records[?(@.name==\'{#DISKNAME}\'&&@.node.name==\'{#NODENAME}\')].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82992','34274','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82993','34275','1','12','$[?(@.id==\'{#FRUID}\'&&@.chassisId==\'{#CHASSISID}\')].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82994','34275','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82995','34276','1','12','$.records[?(@.svm.name==\'{#SVMNAME}\'&&@.name==\'{#LUNNAME}\')].space.size.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82996','34276','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82997','34277','1','12','$.records[?(@.svm.name==\'{#SVMNAME}\'&&@.name==\'{#LUNNAME}\')].space.used.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82998','34277','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('82999','34278','1','12','$.records[?(@.svm.name==\'{#SVMNAME}\'&&@.name==\'{#LUNNAME}\')].status.container_state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83000','34278','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83001','34279','1','12','$.records[?(@.svm.name==\'{#SVMNAME}\'&&@.name==\'{#LUNNAME}\')].status.state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83002','34279','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83003','34280','1','12','$.records[?(@.name==\'{#NODENAME}\')].version.full.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83004','34280','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83005','34281','1','12','$.records[?(@.name==\'{#NODENAME}\')].controller.over_temperature.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83006','34281','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83007','34282','1','12','$.records[?(@.name==\'{#NODENAME}\')].location.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83008','34282','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83009','34283','1','12','$.records[?(@.name==\'{#NODENAME}\')].membership.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83010','34283','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83011','34284','1','12','$.records[?(@.name==\'{#NODENAME}\')].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83012','34284','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83013','34285','1','12','$.records[?(@.name==\'{#NODENAME}\')].uptime.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83014','34286','1','12','$.records[?(@.name==\'{#ETHPORTNAME}\')].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83015','34286','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83016','34287','1','12','$.records[?(@.name==\'{#FCPORTNAME}\')].description.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83017','34287','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83018','34288','1','12','$.records[?(@.name==\'{#FCPORTNAME}\')].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83019','34288','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83020','34289','1','12','$.records[?(@.name==\'{#SVMNAME}\')].comment.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83021','34289','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83022','34290','1','12','$.records[?(@.name==\'{#SVMNAME}\')].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83023','34290','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83024','34291','1','12','$.records[?(@.name==\'{#VOLUMENAME}\')].svm.name.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83025','34291','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83026','34292','1','12','$.records[?(@.name==\'{#VOLUMENAME}\')].statistics.throughput_raw.write.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83027','34292','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83028','34293','1','12','$.records[?(@.name==\'{#VOLUMENAME}\')].statistics.throughput_raw.total.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83029','34293','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83030','34294','1','12','$.records[?(@.name==\'{#VOLUMENAME}\')].statistics.throughput_raw.read.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83031','34294','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83032','34295','1','12','$.records[?(@.name==\'{#VOLUMENAME}\')].statistics.throughput_raw.other.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83033','34295','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83034','34296','1','12','$.records[?(@.name==\'{#VOLUMENAME}\')].statistics.latency_raw.write.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83035','34297','1','12','$.records[?(@.name==\'{#VOLUMENAME}\')].statistics.latency_raw.total.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83036','34298','1','12','$.records[?(@.name==\'{#VOLUMENAME}\')].statistics.latency_raw.read.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83037','34299','1','12','$.records[?(@.name==\'{#VOLUMENAME}\')].statistics.latency_raw.other.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83038','34300','1','12','$.records[?(@.name==\'{#VOLUMENAME}\')].comment.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83039','34300','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83040','34301','1','12','$.records[?(@.name==\'{#VOLUMENAME}\')].space.available.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83041','34301','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83042','34302','1','12','$.records[?(@.name==\'{#VOLUMENAME}\')].statistics.iops_raw.write.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83043','34303','1','12','$.records[?(@.name==\'{#VOLUMENAME}\')].statistics.iops_raw.total.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83044','34304','1','12','$.records[?(@.name==\'{#VOLUMENAME}\')].statistics.iops_raw.read.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83045','34305','1','12','$.records[?(@.name==\'{#VOLUMENAME}\')].statistics.iops_raw.other.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83046','34306','1','12','$.records[?(@.name==\'{#VOLUMENAME}\')].statistics.iops_raw.write.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83047','34306','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83048','34307','1','12','$.records[?(@.name==\'{#VOLUMENAME}\')].statistics.iops_raw.total.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83049','34307','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83050','34308','1','12','$.records[?(@.name==\'{#VOLUMENAME}\')].statistics.iops_raw.read.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83051','34308','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83052','34309','1','12','$.records[?(@.name==\'{#VOLUMENAME}\')].statistics.iops_raw.other.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83053','34309','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83054','34310','1','12','$.records[?(@.name==\'{#VOLUMENAME}\')].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83055','34310','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83056','34311','1','12','$.records[?(@.name==\'{#VOLUMENAME}\')].space.used.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83057','34311','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83058','34312','1','12','$.records[?(@.name==\'{#VOLUMENAME}\')].space.size.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83059','34312','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83060','34313','1','12','$.records[?(@.name==\'{#VOLUMENAME}\')].type.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83061','34313','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83062','34314','1','12','$.data.process[\'report manager\'].busy.avg','3','Processes report manager not started');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83063','34315','1','12','$.data.process[\'report writer\'].busy.avg','3','Processes report writer not started');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83064','34320','1','12','$[?(@.event == "ZooKeeperOtherExceptions")].value.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83065','34320','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83066','34321','1','21','data = JSON.parse(value);\nreturn (data["$clusterTime"].clusterTime.T - data.sharding.lastSeenConfigServerOpTime.ts.T);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83067','34324','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83068','34325','1','12','$[?(@.dbname==\'{#DBNAME}\' && @.type==\'I\')].duration.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83069','34326','1','12','$[?(@.dbname==\'{#DBNAME}\' && @.type==\'I\')].timesincelastbackup.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83070','34327','1','12','$[?(@.dbname==\'{#DBNAME}\' && @.type==\'L\')].timesincelastbackup.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83071','34328','1','12','$[?(@.dbname==\'{#DBNAME}\' && @.type==\'L\')].duration.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83072','34329','1','12','$[?(@.dbname==\'{#DBNAME}\' && @.type==\'D\')].timesincelastbackup.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83073','34330','1','12','$[?(@.dbname==\'{#DBNAME}\' && @.type==\'D\')].duration.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83074','34331','1','12','$[?(@.JobName==\'{#JOBNAME}\')].LastRunDateTime.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83075','34331','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83076','34332','1','12','$[?(@.JobName==\'{#JOBNAME}\')].LastRunStatusMessage.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83077','34332','2','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83078','34333','1','12','$[?(@.JobName==\'{#JOBNAME}\')].NextRunDateTime.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83079','34333','2','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83080','34334','1','12','$[?(@.JobName==\'{#JOBNAME}\')].RunStatus.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83081','34334','2','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83082','34335','1','12','$[?(@.JobName==\'{#JOBNAME}\')].RunDuration.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83083','34335','2','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83084','32366','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83085','34336','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83086','34336','1','23','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83087','34337','0','26','','2','{"status": "0"}');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83088','34338','1','12','$[?(@.name == "grpc_server_handling_seconds_count")].value.sum()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83089','34338','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83090','34339','1','12','$.status','2','1');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83091','34339','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83092','34340','1','12','$.start_timestamp','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83093','34340','2','21','//use boottime to calculate uptime\nreturn (Math.floor(Date.now()/1000)-Number(value));','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83094','34341','1','12','$.version','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83095','34341','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83096','34342','1','12','$[?(@.name=="pd_cluster_status")]','2','[]');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83097','34342','2','21','return JSON.stringify(value != "[]" ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83098','34342','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83099','34343','1','12','$[?(@.name == "grpc_server_handling_seconds_count")]','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83100','34343','2','21','var lookup = {},\n result = [];\n\nJSON.parse(value).forEach(function (item) {\n var grpc_method = item.labels.grpc_method;\n if (!(lookup[grpc_method])) {\n lookup[grpc_method] = 1;\n result.push({ "{#GRPC_METHOD}": grpc_method });\n }\n})\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83101','34343','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83102','34344','1','12','$[?(@.name == "pd_scheduler_region_heartbeat")]','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83103','34344','2','21','var lookup = {},\n result = [];\n\nJSON.parse(value).forEach(function (item) {\n var address = item.labels.address;\n if (!(lookup[address])) {\n lookup[address] = 1;\n result.push({ "{#STORE_ADDRESS}": address });\n }\n})\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83104','34344','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83105','34345','1','12','$[?(@.name == "pd_regions_label_level")]','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83106','34345','2','21','output = JSON.parse(value).map(function(item){\n return {\n "{#TYPE}": item.labels.type,\n }})\n return JSON.stringify({"data": output})','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83107','34345','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83108','34346','1','12','$[?(@.name == "pd_regions_status")]','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83109','34346','2','21','output = JSON.parse(value).map(function(item){\n return {\n "{#TYPE}": item.labels.type,\n }})\n return JSON.stringify({"data": output})','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83110','34346','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83111','34347','1','12','$[?(@.name == "pd_scheduler_status" && @.labels.type == "allow")]','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83112','34347','2','21','output = JSON.parse(value).map(function(item){\n return {\n "{#KIND}": item.labels.kind,\n }})\n return JSON.stringify({"data": output})','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83113','34347','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83114','34348','1','12','$[?(@.name == "pd_cluster_status" && @.labels.type == "leader_count")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83115','34349','1','12','$[?(@.name == "pd_cluster_status" && @.labels.type == "region_count")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83116','34350','1','12','$[?(@.name == "pd_cluster_status" && @.labels.type == "storage_capacity")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83117','34350','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83118','34351','1','12','$[?(@.name == "pd_cluster_status" && @.labels.type == "storage_size")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83119','34352','1','12','$[?(@.name == "pd_cluster_status" && @.labels.type == "store_disconnected_count")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83120','34352','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83121','34353','1','12','$[?(@.name == "pd_cluster_status" && @.labels.type == "store_down_count")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83122','34353','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83123','34354','1','12','$[?(@.name == "pd_cluster_status" && @.labels.type == "store_low_space_count")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83124','34354','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83125','34355','1','12','$[?(@.name == "pd_cluster_status" && @.labels.type == "store_offline_count")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83126','34355','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83127','34356','1','12','$[?(@.name == "pd_cluster_status" && @.labels.type == "store_tombstone_count")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83128','34356','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83129','34357','1','12','$[?(@.name == "pd_cluster_status" && @.labels.type == "store_unhealth_count")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83130','34357','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83131','34358','1','12','$[?(@.name == "pd_cluster_status" && @.labels.type == "store_up_count")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83132','34358','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83133','34359','1','12','$[?(@.name == "grpc_server_handling_seconds_count" && @.labels.grpc_method == "{#GRPC_METHOD}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83134','34359','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83135','34360','1','12','$[?(@.name == "pd_scheduler_region_heartbeat" && @.labels.status == "err" && @.labels.type == "report" && @.labels.address == "{#STORE_ADDRESS}")].value.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83136','34360','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83137','34361','1','12','$[?(@.name == "pd_scheduler_region_heartbeat" && @.labels.status == "ok" && @.labels.type == "report" && @.labels.address == "{#STORE_ADDRESS}")].value.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83138','34361','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83139','34362','1','12','$[?(@.name == "pd_scheduler_region_heartbeat" && @.labels.type == "push" && @.labels.address == "{#STORE_ADDRESS}")].value.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83140','34362','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83141','34363','1','12','$[?(@.name == "pd_scheduler_region_heartbeat" && @.labels.type == "report" && @.labels.address == "{#STORE_ADDRESS}")].value.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83142','34363','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83143','34364','1','12','$[?(@.name == "pd_regions_label_level" && @.labels.type == "{#TYPE}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83144','34365','1','12','$[?(@.name == "pd_regions_status" && @.labels.type == "{#TYPE}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83145','34366','1','12','$[?(@.name == "pd_regions_status" && @.labels.type == "allow" && @.labels.kind == "{#KIND}")].value.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83146','34367','0','26','','2','{"status": "0"}');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83147','34368','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83148','34368','1','23','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83149','34369','1','12','$[?(@.name=="process_cpu_seconds_total")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83150','34369','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83151','34369','3','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83152','34370','1','12','$[?(@.name == "tidb_server_query_total")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83153','34370','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83154','34371','1','12','$[?(@.name=="process_start_time_seconds")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83155','34371','2','21','//use boottime to calculate uptime\nreturn (Math.floor(Date.now()/1000)-Number(value));','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83156','34372','1','12','$[?(@.name=="tidb_tikvclient_txn_cmd_duration_seconds_count")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83157','34372','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83158','34373','1','12','$[?(@.name=="tidb_tikvclient_region_err_total")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83159','34373','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83160','34374','1','12','$[?(@.name=="tidb_tikvclient_lock_resolver_actions_total")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83161','34374','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83162','34375','1','12','$[?(@.name=="tidb_tikvclient_backoff_total")].value.sum()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83163','34375','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83164','34376','1','12','$[?(@.name=="tidb_server_panic_total")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83165','34376','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83166','34377','1','12','$[?(@.name=="tidb_server_critical_error_total")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83167','34377','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83168','34378','1','12','$[?(@.name=="tidb_server_connections")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83169','34379','1','12','$.status','2','1');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83170','34379','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83171','34380','1','12','$[?(@.name=="tidb_executor_statement_total")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83172','34380','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83173','34381','1','12','$[?(@.name=="tidb_session_schema_lease_error_total && @.labels.type == "outdate"")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83174','34381','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83175','34382','1','12','$[?(@.name=="tidb_session_schema_lease_error_total && @.labels.type == "change"")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83176','34382','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83177','34383','1','12','$[?(@.name == "tidb_server_query_total" && @.labels.result == "Error")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83178','34383','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83179','34384','1','12','$[?(@.name == "tidb_server_query_total" && @.labels.result == "OK")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83180','34384','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83181','34385','1','12','$[?(@.name=="tidb_ddl_waiting_jobs")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83182','34386','1','12','$[?(@.name=="process_resident_memory_bytes")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83183','34387','1','12','$[?(@.name=="process_open_fds")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83184','34388','1','12','$[?(@.name=="process_max_fds")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83185','34389','1','12','$[?(@.name=="pd_client_request_handle_requests_duration_seconds_count" && @.labels.type == "tso")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83186','34389','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83187','34390','1','12','$[?(@.name=="pd_client_cmd_handle_cmds_duration_seconds_count" && @.labels.type == "tso")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83188','34390','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83189','34391','1','12','$[?(@.name=="tidb_monitor_time_jump_back_total")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83190','34391','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83191','34392','1','12','$[?(@.name=="tidb_monitor_keep_alive_total")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83192','34392','2','9','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83193','34393','1','12','$[?(@.name=="go_memstats_heap_inuse_bytes")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83194','34394','1','12','$[?(@.name=="go_goroutines")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83195','34395','1','12','$[?(@.name=="tidb_server_execute_error_total")].value.sum()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83196','34395','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83197','34396','1','12','$[?(@.name=="tidb_domain_load_schema_total")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83198','34396','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83199','34397','1','12','$[?(@.name=="tidb_domain_load_schema_total && @.labels.type == "failed"")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83200','34397','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83201','34398','1','12','$.version','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83202','34398','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83203','34399','1','12','$[?(@.name=="tidb_tikvclient_txn_cmd_duration_seconds_count")]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83204','34399','2','21','output = JSON.parse(value).map(function(item){\n return {\n "{#TYPE}": item.labels.type,\n }})\n return JSON.stringify({"data": output})','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83205','34399','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83206','34400','1','12','$[?(@.name=="tidb_server_query_total")]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83207','34400','2','21','var lookup = {},\n result = [];\n\nJSON.parse(value).forEach(function (item) {\n var type = item.labels.type;\n if (!(lookup[type])) {\n lookup[type] = 1;\n result.push({ "{#TYPE}": type });\n }\n})\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83208','34400','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83209','34401','1','12','$[?(@.name=="tidb_executor_statement_total")]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83210','34401','2','21','output = JSON.parse(value).map(function(item){\n return {\n "{#TYPE}": item.labels.type,\n }})\n return JSON.stringify({"data": output})','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83211','34401','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83212','34402','1','12','$[?(@.name=="tidb_tikvclient_backoff_total")]','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83213','34402','2','21','output = JSON.parse(value).map(function(item){\n return {\n "{#TYPE}": item.labels.type,\n }})\n return JSON.stringify({"data": output})','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83214','34402','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83215','34403','1','12','$[?(@.name=="tidb_tikvclient_gc_action_result")]','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83216','34403','2','21','output = JSON.parse(value).map(function(item){\n return {\n "{#TYPE}": item.labels.type,\n }})\n return JSON.stringify({"data": output})','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83217','34403','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83218','34404','1','12','$[?(@.name=="tidb_tikvclient_lock_resolver_actions_total")]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83219','34404','2','21','output = JSON.parse(value).map(function(item){\n return {\n "{#TYPE}": item.labels.type,\n }})\n return JSON.stringify({"data": output})','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83220','34404','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83221','34405','1','12','$[?(@.name=="tidb_tikvclient_txn_cmd_duration_seconds_count" && @.labels.type == "{#TYPE}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83222','34405','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83223','34406','1','12','$[?(@.name == "tidb_server_query_total" && @.labels.result == "Error" && @.labels.type == "{#TYPE}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83224','34406','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83225','34407','1','12','$[?(@.name == "tidb_server_query_total" && @.labels.result == "OK" && @.labels.type == "{#TYPE}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83226','34407','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83227','34408','1','12','$[?(@.name=="tidb_executor_statement_total" && @.labels.type == "{#TYPE}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83228','34408','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83229','34409','1','12','$[?(@.name=="tidb_tikvclient_backoff_total" && @.labels.type == "{#TYPE}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83230','34409','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83231','34410','1','12','$[?(@.name=="tidb_tikvclient_gc_action_result" && @.labels.type == "{#TYPE}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83232','34410','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83233','34411','1','12','$[?(@.name=="tidb_tikvclient_lock_resolver_actions_total" && @.labels.type == "{#TYPE}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83234','34411','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83235','34412','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83236','34412','1','23','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83237','34413','1','12','$[?(@.name == "tikv_scheduler_commands_pri_total" && @.labels.priority == "high")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83238','34413','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83239','34414','1','12','$[?(@.name == "tikv_raftstore_region_count" && @.labels.type == "region" )].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83240','34415','1','12','$[?(@.name == "tikv_store_size_bytes" && @.labels.type == "capacity")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83241','34416','1','12','$[?(@.name == "tikv_store_size_bytes" && @.labels.type == "available")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83242','34417','1','12','$[?(@.name == "tikv_storage_command_total")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83243','34417','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83244','34418','1','12','$[?(@.name == "tikv_raftstore_snapshot_traffic_total" && @.labels.type == "sending")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83245','34419','1','12','$[?(@.name == "tikv_raftstore_snapshot_traffic_total" && @.labels.type == "receiving")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83246','34420','1','12','$[?(@.name == "tikv_raftstore_snapshot_traffic_total" && @.labels.type == "applying")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83247','34421','1','12','$[?(@.name == "tikv_scheduler_too_busy_total")].value.sum()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83248','34421','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83249','34422','1','12','$[?(@.name == "tikv_worker_pending_task_total")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83250','34423','1','12','$[?(@.name == "tikv_scheduler_stage_total")].value.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83251','34423','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83252','34424','1','12','$[?(@.name == "process_resident_memory_bytes")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83253','34425','1','12','$[?(@.name == "tikv_raftstore_region_count" && @.labels.type == "leader" )].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83254','34426','1','12','$[?(@.name == "tikv_server_report_failure_msg_total")].value.sum()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83255','34426','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83256','34427','1','12','$[?(@.name == "tikv_scheduler_commands_pri_total" && @.labels.priority == "low")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83257','34427','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83258','34428','1','12','$[?(@.name == "tikv_grpc_msg_fail_total")].value.sum()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83259','34428','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83260','34429','1','12','$[?(@.name == "tikv_grpc_msg_duration_seconds_count")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83261','34429','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83262','34430','1','12','$[?(@.name == "tikv_engine_size_bytes")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83263','34431','1','12','$[?(@.name == "tikv_engine_flow_bytes" && @.labels.db == "kv" && @.labels.type == "wal_file_bytes")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83264','34432','1','12','$[?(@.name == "tikv_engine_flow_bytes" && @.labels.db == "kv" && @.labels.type =~ "bytes_read|iter_bytes_read")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83265','34433','1','12','$[?(@.name == "tikv_thread_cpu_seconds_total")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83266','34433','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83267','34433','3','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83268','34434','1','12','$[?(@.name == "tikv_coprocessor_response_bytes")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83269','34434','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83270','34435','1','12','$[?(@.name == "tikv_coprocessor_rocksdb_perf")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83271','34435','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83272','34436','1','12','$[?(@.name == "tikv_coprocessor_request_error")].value.sum()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83273','34436','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83274','34437','1','12','$[?(@.name == "tikv_coprocessor_request_duration_seconds_count")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83275','34437','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83276','34438','1','12','$[?(@.name == "tikv_scheduler_commands_pri_total" && @.labels.priority == "normal")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83277','34438','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83278','34439','1','12','$[?(@.name=="process_start_time_seconds")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83279','34439','2','21','//use boottime to calculate uptime\nreturn (Math.floor(Date.now()/1000)-Number(value));','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83280','34440','1','12','$[?(@.name == "tikv_coprocessor_request_duration_seconds_count")]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83281','34440','2','21','output = JSON.parse(value).map(function(item){\n return {\n "{#REQ_TYPE}": item.labels.req,\n }})\n return JSON.stringify({"data": output})','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83282','34440','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83283','34441','1','12','$[?(@.name == "tikv_grpc_msg_duration_seconds_count")]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83284','34441','2','21','output = JSON.parse(value).map(function(item){\n return {\n "{#TYPE}": item.labels.type,\n }})\n return JSON.stringify({"data": output})','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83285','34441','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83286','34442','1','12','$[?(@.name == "tikv_scheduler_stage_total")]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83287','34442','2','21','var lookup = {},\n result = [];\n\nJSON.parse(value).forEach(function (item) {\n var stage = item.labels.stage;\n if (!(lookup[stage])) {\n lookup[stage] = 1;\n result.push({ "{#STAGE}": stage });\n }\n})\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83288','34442','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83289','34443','1','12','$[?(@.name == "tikv_server_report_failure_msg_total")]','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83290','34443','2','21','output = JSON.parse(value).map(function(item){\n return {\n "{#STORE_ID}": item.labels.store_id,\n "{#TYPE}": item.labels.type,\n\n }})\n return JSON.stringify({"data": output})','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83291','34443','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83292','34444','1','12','$[?(@.name == "tikv_coprocessor_request_duration_seconds_count" && @.labels.req == "{#REQ_TYPE}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83293','34444','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83294','34445','1','12','$[?(@.name == "tikv_coprocessor_request_error" && @.labels.req == "{#REQ_TYPE}")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83295','34445','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83296','34446','1','12','$[?(@.name == "tikv_coprocessor_rocksdb_perf" && @.labels.req == "{#REQ_TYPE}")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83297','34446','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83298','34447','1','12','$[?(@.name == "tikv_coprocessor_scan_keys_count" && @.labels.req == "{#REQ_TYPE}")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83299','34447','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83300','34448','1','12','$[?(@.name == "tikv_grpc_msg_duration_seconds_count" && @.labels.type == "{#TYPE}")].value.first()','2','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83301','34449','1','12','$[?(@.name == "tikv_scheduler_stage_total" && @.labels.stage == "{#STAGE}")].value.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83302','34449','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83303','34450','1','12','$[?(@.name == "tikv_server_report_failure_msg_total" && @.labels.store_id == "{#STORE_ID}" && @.labels.type == "{#TYPE}")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83304','34450','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83305','34451','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83306','34451','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83307','34452','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83308','34453','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83309','34454','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83310','34455','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83311','34456','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83312','34457','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83313','34458','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83314','34459','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83315','34460','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83316','34462','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83317','34462','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83318','34463','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83319','34463','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83320','34464','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83321','34465','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83322','34465','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83323','34466','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83324','34466','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83325','34467','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83326','34467','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83327','34468','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83328','34469','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83329','34469','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83330','34470','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83331','34470','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83332','34471','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83333','34472','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83334','34472','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83335','34473','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83336','34474','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83337','34475','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83338','34482','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83339','34483','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83340','34484','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83341','34485','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83342','34486','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83343','34486','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83344','34487','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83345','34488','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83346','34489','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83347','34490','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83348','34491','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83349','34492','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83350','34493','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83351','34494','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83352','34494','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83353','34495','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83354','34496','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83355','34496','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83356','34497','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83357','34498','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83358','34499','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83359','34499','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83360','34500','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83361','34501','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83362','34502','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83363','34503','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83364','34504','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83365','34505','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83366','34506','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83367','34507','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83368','34508','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83369','34510','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83370','34510','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83371','34511','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83372','34511','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83373','34512','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83374','34513','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83375','34513','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83376','34514','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83377','34514','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83378','34515','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83379','34515','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83380','34516','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83381','34517','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83382','34517','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83383','34518','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83384','34518','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83385','34519','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83386','34520','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83387','34520','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83388','34521','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83389','34522','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83390','34523','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83391','34530','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83392','34531','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83393','34532','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83394','34533','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83395','34534','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83396','34534','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83397','34535','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83398','34536','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83399','34537','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83400','34538','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83401','34539','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83402','34540','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83403','34541','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83404','34542','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83405','34542','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83406','34543','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83407','34544','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83408','34544','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83409','34545','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83410','34546','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83411','34547','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83412','34547','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83413','34548','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83414','34549','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83415','34550','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83416','34551','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83417','34552','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83418','34553','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83419','34554','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83420','34555','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83421','34556','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83422','34558','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83423','34558','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83424','34559','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83425','34559','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83426','34560','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83427','34561','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83428','34561','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83429','34562','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83430','34562','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83431','34563','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83432','34563','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83433','34564','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83434','34565','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83435','34565','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83436','34566','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83437','34566','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83438','34567','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83439','34568','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83440','34568','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83441','34569','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83442','34570','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83443','34571','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83444','34578','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83445','34579','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83446','34580','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83447','34581','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83448','34582','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83449','34582','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83450','34583','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83451','34584','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83452','34585','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83453','34586','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83454','34587','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83455','34588','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83456','34589','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83457','34590','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83458','34590','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83459','34591','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83460','34592','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83461','34592','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83462','34593','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83463','34594','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83464','34595','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83465','34595','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83466','34596','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83467','34597','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83468','34598','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83469','34599','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83470','34600','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83471','34601','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83472','34602','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83473','34603','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83474','34604','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83475','34606','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83476','34606','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83477','34607','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83478','34607','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83479','34608','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83480','34609','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83481','34609','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83482','34610','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83483','34610','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83484','34611','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83485','34611','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83486','34612','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83487','34613','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83488','34613','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83489','34614','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83490','34614','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83491','34615','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83492','34616','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83493','34616','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83494','34617','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83495','34618','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83496','34619','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83497','34626','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83498','34627','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83499','34628','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83500','34629','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83501','34630','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83502','34630','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83503','34631','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83504','34632','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83505','34633','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83506','34634','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83507','34635','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83508','34636','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83509','34637','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83510','34638','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83511','34638','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83512','34639','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83513','34640','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83514','34640','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83515','34641','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83516','34642','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83517','34643','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83518','34643','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83519','34644','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83520','34645','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83521','34646','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83522','34647','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83523','34648','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83524','34649','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83525','34650','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83526','34651','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83527','34652','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83528','34654','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83529','34654','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83530','34655','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83531','34655','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83532','34656','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83533','34657','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83534','34657','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83535','34658','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83536','34658','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83537','34659','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83538','34659','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83539','34660','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83540','34661','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83541','34661','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83542','34662','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83543','34662','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83544','34663','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83545','34664','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83546','34664','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83547','34665','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83548','34666','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83549','34667','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83550','34674','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83551','34675','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83552','34676','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83553','34677','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83554','34678','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83555','34678','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83556','34679','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83557','34680','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83558','34681','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83559','34682','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83560','34683','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83561','34684','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83562','34685','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83563','34686','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83564','34686','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83565','34687','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83566','34688','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83567','34688','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83568','34689','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83569','34690','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83623','34739','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83624','34739','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83625','34740','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83626','34741','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83627','34742','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83628','34743','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83629','34744','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83630','34745','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83631','34746','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83632','34747','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83633','34748','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83634','34750','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83635','34750','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83636','34751','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83637','34751','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83638','34752','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83639','34753','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83640','34753','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83641','34754','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83642','34754','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83643','34755','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83644','34755','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83645','34756','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83646','34757','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83647','34757','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83648','34758','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83649','34758','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83650','34759','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83651','34760','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83652','34760','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83653','34761','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83654','34762','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83655','34763','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83656','34770','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83657','34771','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83658','34772','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83659','34773','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83660','34774','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83661','34774','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83662','34775','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83663','34776','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83664','34777','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83665','34778','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83666','34779','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83667','34780','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83668','34781','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83669','34782','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83670','34782','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83671','34783','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83672','34784','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83673','34784','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83674','34785','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83675','34786','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83676','34787','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83677','34787','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83678','34788','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83679','34206','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83680','34790','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83681','34790','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83682','34791','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83683','34792','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83684','34793','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83685','34793','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83686','34794','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83687','34795','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83688','34796','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83689','34797','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83690','34798','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83691','34799','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83692','34800','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83693','34801','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83694','34802','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83695','34804','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83696','34804','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83697','34805','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83698','34805','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83699','34806','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83700','34807','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83701','34807','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83702','34808','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83703','34808','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83704','34809','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83705','34809','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83706','34810','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83707','34811','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83708','34811','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83709','34812','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83710','34812','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83711','34813','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83712','34814','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83713','34814','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83714','34815','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83715','34816','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83716','34817','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83717','34824','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83718','34825','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83719','34826','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83720','34827','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83721','34828','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83722','34828','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83723','34829','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83724','34830','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83725','34831','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83726','34832','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83727','34833','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83728','34834','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83729','34835','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83730','34836','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83731','34836','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83732','34837','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83733','34838','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83734','34838','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83735','34839','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83736','34840','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83737','34841','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83738','34841','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83739','34842','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83740','34843','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83741','34844','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83742','34845','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83743','34846','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83744','34847','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83745','34848','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83746','34849','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83747','34850','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83748','34852','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83749','34852','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83750','34853','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83751','34853','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83752','34854','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83753','34855','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83754','34855','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83755','34856','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83756','34856','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83757','34857','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83758','34857','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83759','34858','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83760','34859','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83761','34859','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83762','34860','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83763','34860','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83764','34861','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83765','34862','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83766','34862','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83767','34863','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83768','34864','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83769','34865','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83770','34872','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83771','34873','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83772','34874','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83773','34875','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83774','34876','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83775','34876','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83776','34877','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83777','34878','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83778','34879','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83779','34880','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83780','34881','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83781','34882','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83782','34883','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83783','34884','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83784','34884','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83785','34885','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83786','34886','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83787','34886','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83788','34887','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83789','34888','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83790','34889','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83791','34889','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83792','34890','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83793','34891','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83794','34892','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83795','34893','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83796','34894','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83797','34895','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83798','34896','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83799','34897','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83800','34898','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83801','34900','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83802','34900','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83803','34901','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83804','34901','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83805','34902','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83806','34903','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83807','34903','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83808','34904','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83809','34904','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83810','34905','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83811','34905','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83812','34906','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83813','34907','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83814','34907','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83815','34908','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83816','34908','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83817','34909','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83818','34910','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83819','34910','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83820','34911','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83821','34912','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83822','34913','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83823','34920','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83824','34921','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83825','34922','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83826','34923','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83827','34924','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83828','34924','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83829','34925','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83830','34926','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83831','34927','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83832','34928','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83833','34929','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83834','34930','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83835','34931','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83836','34932','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83837','34932','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83838','34933','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83839','34934','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83840','34934','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83841','34935','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83842','34936','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83843','34937','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83844','34938','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83845','34939','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83846','34940','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83847','34941','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83848','34944','1','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83849','34944','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83850','34945','1','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83851','34945','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83852','34946','1','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83853','34946','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83854','34947','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83855','34948','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83856','34949','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83857','34950','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83858','34951','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83859','34952','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83860','34953','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83861','34954','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83862','34956','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83863','34957','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83864','34958','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83865','34959','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83866','34960','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83867','34961','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83868','34962','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83869','34963','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83870','34964','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83871','34965','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83872','34970','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83873','34970','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83874','34971','1','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83875','34971','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83876','34972','1','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83877','34972','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83878','34973','1','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83879','34973','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83880','34974','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83881','34975','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83882','34976','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83883','34978','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83884','34979','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83885','34980','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83886','34981','1','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83887','34981','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83888','34985','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83889','34987','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83890','34989','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83891','34991','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83892','34993','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83893','34995','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83894','34998','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83895','34999','1','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83896','34999','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83897','35003','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83898','35004','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83899','35005','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83900','35011','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83901','35012','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83902','35013','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83903','35014','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83904','35015','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83905','35016','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83906','35016','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83907','35017','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83908','35018','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83909','35019','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83910','35020','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83911','35021','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83912','35022','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83913','35023','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83914','35024','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83915','35025','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83916','35027','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83917','35027','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83918','35028','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83919','35028','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83920','35029','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83921','35030','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83922','35030','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83923','35031','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83924','35031','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83925','35032','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83926','35032','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83927','35033','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83928','35034','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83929','35034','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83930','35035','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83931','35035','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83932','35036','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83933','35037','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83934','35037','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83935','35038','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83936','35039','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83937','35040','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83938','35047','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83939','35048','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83940','35049','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83941','35050','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83942','35051','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83943','35051','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83944','35052','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83945','35053','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83946','35054','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83947','35055','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83948','35056','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83949','35057','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83950','35058','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83951','35059','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83952','35059','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83953','35060','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83954','35061','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83955','35061','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83956','35062','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83957','35063','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83958','35064','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83959','35065','1','12','$.x509.alternative_names','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83960','35066','1','12','$.x509.issuer','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83961','35067','1','12','$.result.message','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83962','35068','1','12','$.x509.not_after.timestamp','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83963','35069','1','12','$.x509.not_before.timestamp','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83964','35070','1','12','$.x509.public_key_algorithm','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83965','35071','1','12','$.x509.serial_number','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83966','35072','1','12','$.sha1_fingerprint','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83967','35073','1','12','$.x509.signature_algorithm','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83968','35074','1','12','$.x509.subject','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83969','35075','1','12','$.result.value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83970','35076','1','12','$.x509.version','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83971','35078','1','12','$.bandwidth.all','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83972','35079','1','12','$.requests.others_ratio','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83973','35080','1','12','$.threats.all','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83974','35081','1','12','$.requests.uncached','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83975','35082','1','12','$.requests.success_ratio','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83976','35083','1','12','$.requests.unencrypted','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83977','35084','1','12','$.requests.encrypted','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83978','35085','1','12','$.requests.response_500','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83979','35086','1','12','$.requests.response_400','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83980','35087','1','12','$.requests.response_300','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83981','35088','1','12','$.requests.response_200','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83982','35089','1','12','$.requests.response_100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83983','35090','1','12','$.requests.cache_hit_ratio','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83984','35091','1','12','$.bandwidth.cached','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83985','35092','1','12','$.requests.cached','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83986','35093','1','12','$.requests.all','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83987','35094','1','12','$.pageviews.all','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83988','35095','1','12','$.dns.query.uncached','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83989','35096','1','12','$.dns.query.stale','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83990','35097','1','12','$.dns.query.all','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83991','35098','1','12','$.bandwidth.uncached','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83992','35099','1','12','$.bandwidth.unencrypted','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83993','35100','1','12','$.bandwidth.encrypted','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83994','35101','1','12','$.bandwidth.cache_hit_ratio','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83995','35102','1','12','$.uniques.all','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83996','35103','1','21','return JSON.stringify(JSON.parse(value),[\'mode\',\'pxname\',\'svname\'])','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83997','35103','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83998','35104','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].act.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('83999','35104','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84000','35105','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_5xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84001','35105','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84002','35106','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].weight.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84003','35106','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84004','35107','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].stot.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84005','35107','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84006','35108','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_4xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84007','35108','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84008','35109','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].bck.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84009','35109','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84010','35110','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_3xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84011','35110','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84012','35111','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_2xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84013','35111','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84014','35112','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_1xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84015','35112','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84016','35113','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].bout.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84017','35113','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84018','35113','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84019','35114','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].bin.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84020','35114','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84021','35114','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84022','35115','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84023','35115','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84024','35116','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].act.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84025','35116','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84026','35117','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].weight.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84027','35117','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84028','35118','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].stot.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84029','35118','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84030','35119','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].qlimit.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84031','35119','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84032','35119','3','14','^\\d+$','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84033','35120','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].lbtot.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84034','35120','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84035','35121','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].bck.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84036','35121','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84037','35122','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_3xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84038','35122','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84039','35123','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_2xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84040','35123','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84041','35124','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_1xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84042','35124','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84043','35125','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].check_status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84044','35125','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84045','35126','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].bout.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84046','35126','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84047','35126','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84048','35127','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].bin.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84049','35127','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84050','35127','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84051','35128','1','21','return JSON.stringify(JSON.parse(value),[\'mode\',\'pxname\',\'svname\'])','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84052','35128','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84053','35129','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].act.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84054','35129','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84055','35130','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_5xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84056','35130','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84057','35131','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].weight.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84058','35131','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84059','35132','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].stot.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84060','35132','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84061','35133','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_4xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84062','35133','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84063','35134','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].bck.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84064','35134','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84065','35135','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_3xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84066','35135','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84067','35136','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_2xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84068','35136','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84069','35137','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_1xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84070','35137','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84071','35138','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].bout.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84072','35138','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84073','35138','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84074','35139','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].bin.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84075','35139','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84076','35139','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84077','35140','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84078','35140','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84079','35141','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].act.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84080','35141','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84081','35142','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].weight.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84082','35142','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84083','35143','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].stot.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84084','35143','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84085','35144','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].qlimit.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84086','35144','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84087','35144','3','14','^\\d+$','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84088','35145','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].lbtot.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84089','35145','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84090','35146','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].bck.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84091','35146','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84092','35147','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_3xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84093','35147','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84094','35148','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_2xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84095','35148','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84096','35149','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].hrsp_1xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84097','35149','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84098','35150','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].check_status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84099','35150','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84100','35151','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].bout.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84101','35151','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84102','35151','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84103','35152','1','12','$.[?(@.pxname == \'{#PXNAME}\' && @.svname == \'{#SVNAME}\')].bin.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84104','35152','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84105','35152','3','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84106','35163','1','12','$.idle','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84107','35164','1','12','$.active','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84108','35165','1','12','$.session_reuses','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84109','35165','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84110','35166','1','12','$.handshakes_failed','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84111','35166','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84112','35167','1','12','$.handshakes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84113','35167','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84114','35168','1','12','$.dropped','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84115','35169','1','12','$.current','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84116','35170','1','12','$.total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84117','35170','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84118','35171','1','12','$.version','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84119','35171','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84120','35172','1','12','$.accepted','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84121','35172','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84122','35173','1','12','$.generation','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84123','35173','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84124','35174','1','12','$.error.text','2','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84125','35174','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84126','35175','1','12','$.address','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84127','35175','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84128','35176','1','12','$.load_timestamp','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84129','35176','2','21','return Math.floor((Date.now() - new Date(value)) / 1000);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84130','35177','1','21','var output = [];\n\nObject.keys(JSON.parse(value)).forEach(function (v) {\n output.push({ \'{#NAME}\': v })\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84131','35177','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84132','35178','1','21','var output = [];\n\nObject.keys(JSON.parse(value)).forEach(function (v) {\n output.push({ \'{#NAME}\': v })\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84133','35178','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84134','35179','1','21','var input = JSON.parse(value),\n output = [];\n\nObject.keys(input).forEach(function (upstream) {\n input[upstream].peers.forEach(function (peer) {\n output.push({ \'{#UPSTREAM}\': upstream, \'{#PEER}\': peer.server })\n });\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84135','35179','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84136','35180','1','21','var output = [];\n\nObject.keys(JSON.parse(value)).forEach(function (v) {\n output.push({ \'{#NAME}\': v })\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84137','35180','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84138','35181','1','21','var output = [];\n\nObject.keys(JSON.parse(value)).forEach(function (v) {\n output.push({ \'{#NAME}\': v })\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84139','35181','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84140','35182','1','21','var output = [];\n\nObject.keys(JSON.parse(value)).forEach(function (v) {\n output.push({ \'{#NAME}\': v })\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84141','35182','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84142','35183','1','21','var input = JSON.parse(value),\n output = [];\n\nObject.keys(input).forEach(function (upstream) {\n input[upstream].peers.forEach(function (peer) {\n output.push({ \'{#UPSTREAM}\': upstream, \'{#PEER}\': peer.server })\n });\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84143','35183','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84144','35184','1','21','var output = [];\n\nObject.keys(JSON.parse(value)).forEach(function (v) {\n output.push({ \'{#NAME}\': v })\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84145','35184','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84146','35185','1','12','$[\'{#NAME}\'].discarded','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84147','35185','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84148','35186','1','12','$[\'{#NAME}\'].received','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84149','35186','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84150','35187','1','12','$[\'{#NAME}\'].requests','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84151','35187','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84152','35188','1','12','$[\'{#NAME}\'].responses.1xx','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84153','35188','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84154','35189','1','12','$[\'{#NAME}\'].responses.2xx','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84155','35189','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84156','35190','1','12','$[\'{#NAME}\'].responses.3xx','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84157','35190','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84158','35191','1','12','$[\'{#NAME}\'].responses.4xx','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84159','35191','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84160','35192','1','12','$[\'{#NAME}\'].responses.5xx','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84161','35192','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84162','35193','1','12','$[\'{#NAME}\'].responses.total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84163','35193','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84164','35194','1','12','$[\'{#NAME}\'].sent','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84165','35194','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84166','35195','1','12','$[\'{#NAME}\'].discarded','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84167','35195','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84168','35196','1','12','$[\'{#NAME}\'].processing','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84169','35197','1','12','$[\'{#NAME}\'].received','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84170','35197','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84171','35198','1','12','$[\'{#NAME}\'].requests','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84172','35198','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84173','35199','1','12','$[\'{#NAME}\'].responses.1xx','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84174','35199','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84175','35200','1','12','$[\'{#NAME}\'].responses.2xx','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84176','35200','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84177','35201','1','12','$[\'{#NAME}\'].responses.3xx','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84178','35201','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84179','35202','1','12','$[\'{#NAME}\'].responses.4xx','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84180','35202','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84181','35203','1','12','$[\'{#NAME}\'].responses.5xx','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84182','35203','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84183','35204','1','12','$[\'{#NAME}\'].responses.total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84184','35204','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84185','35205','1','12','$[\'{#NAME}\'].sent','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84186','35205','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84187','35206','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].active.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84188','35207','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].responses.3xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84189','35207','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84190','35208','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84191','35208','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84192','35209','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].sent.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84193','35209','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84194','35210','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].response_time.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84195','35211','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].responses.total.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84196','35211','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84197','35212','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].responses.5xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84198','35212','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84199','35213','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].responses.4xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84200','35213','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84201','35214','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].responses.2xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84202','35214','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84203','35215','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].fails.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84204','35215','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84205','35216','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].responses.1xx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84206','35216','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84207','35217','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].requests.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84208','35217','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84209','35218','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].received.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84210','35218','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84211','35219','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].health_checks.unhealthy.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84212','35220','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].health_checks.fails.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84213','35221','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].health_checks.checks.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84214','35222','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].header_time.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84215','35223','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].unavail.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84216','35224','1','12','$[\'{#NAME}\'].keepalive','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84217','35225','1','12','$[\'{#NAME}\'].zombies','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84218','35226','1','12','$[\'{#NAME}\'].zone','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84219','35226','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84220','35227','1','12','$[\'{#NAME}\'].requests.addr','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84221','35227','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84222','35228','1','12','$[\'{#NAME}\'].requests.name','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84223','35228','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84224','35229','1','12','$[\'{#NAME}\'].requests.srv','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84225','35229','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84226','35230','1','12','$[\'{#NAME}\'].responses.formerr','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84227','35230','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84228','35231','1','12','$[\'{#NAME}\'].responses.noerror','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84229','35231','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84230','35232','1','12','$[\'{#NAME}\'].responses.notimp','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84231','35232','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84232','35233','1','12','$[\'{#NAME}\'].responses.nxdomain','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84233','35233','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84234','35234','1','12','$[\'{#NAME}\'].responses.refused','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84235','35234','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84236','35235','1','12','$[\'{#NAME}\'].responses.servfail','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84237','35235','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84238','35236','1','12','$[\'{#NAME}\'].responses.timedout','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84239','35236','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84240','35237','1','12','$[\'{#NAME}\'].responses.unknown','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84241','35237','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84242','35238','1','12','$[\'{#NAME}\'].connections','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84243','35238','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84244','35239','1','12','$[\'{#NAME}\'].discarded','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84245','35239','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84246','35240','1','12','$[\'{#NAME}\'].processing','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84247','35241','1','12','$[\'{#NAME}\'].received','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84248','35241','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84249','35242','1','12','$[\'{#NAME}\'].sent','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84250','35242','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84251','35243','1','12','$[\'{#NAME}\'].sessions.2xx','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84252','35243','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84253','35244','1','12','$[\'{#NAME}\'].sessions.4xx','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84254','35244','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84255','35245','1','12','$[\'{#NAME}\'].sessions.5xx','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84256','35245','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84257','35246','1','12','$[\'{#NAME}\'].sessions.total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84258','35246','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84259','35247','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].active.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84260','35248','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].connections.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84261','35249','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].connect_time.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84262','35250','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].fails.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84263','35250','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84264','35251','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].first_byte_time.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84265','35252','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].health_checks.checks.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84266','35253','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].health_checks.fails.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84267','35254','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].health_checks.unhealthy.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84268','35255','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].received.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84269','35255','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84270','35256','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].response_time.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84271','35257','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].sent.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84272','35257','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84273','35258','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84274','35258','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84275','35259','1','12','$[\'{#UPSTREAM}\'].peers[?(@.server == \'{#PEER}\')].unavail.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84276','35260','1','12','$[\'{#NAME}\'].zombies','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84277','35261','1','12','$[\'{#NAME}\'].zone','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84278','35261','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84279','35266','1','12','$.ActiveState.state','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84280','35266','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84281','35267','1','12','$.LoadState.state','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84282','35267','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84283','35268','1','12','$.UnitFileState.state','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84284','35268','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84285','35269','1','21','data = JSON.parse(value)\n if (data.ActiveEnterTimestamp > data.ActiveExitTimestamp) {\n return Math.floor(Date.now()/1000)-Number(data.ActiveEnterTimestamp)/1000000;\n }\n return null;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84286','35270','1','12','$.NAccepted','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84287','35270','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84288','35271','1','12','$.NConnections','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84289','35273','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84290','35276','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84291','35278','1','12','$.data.process[\'trigger housekeeper\'].busy.avg','3','Processes trigger housekeeper not started');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84292','35279','1','12','$.data.process[\'service manager\'].busy.avg','3','Processes service manager not started');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84293','35280','1','21','var data = JSON.parse(value);\nfor (var item, i = 0; item = data.data[i++];) {\n if (!(\'{#JMXIGNITEINSTANCENAME}\' in item)) {\n Object.assign(item, {\n \'{#JMXIGNITEINSTANCENAME}\': \'null\'\n });\n }\n\n}\n\nreturn JSON.stringify(data)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84294','35280','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84295','35281','1','21','var data = JSON.parse(value);\nfor (var item, i = 0; item = data.data[i++];) {\n if (!(\'{#JMXIGNITEINSTANCENAME}\' in item)) {\n Object.assign(item, {\n \'{#JMXIGNITEINSTANCENAME}\': \'null\'\n });\n }\n\n}\n\nreturn JSON.stringify(data)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84296','35282','1','21','var data = JSON.parse(value);\nfor (var item, i = 0; item = data.data[i++];) {\n if (!(\'{#JMXIGNITEINSTANCENAME}\' in item)) {\n Object.assign(item, {\n \'{#JMXIGNITEINSTANCENAME}\': \'null\'\n });\n }\n\n}\n\nreturn JSON.stringify(data)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84297','35283','1','21','var data = JSON.parse(value);\nfor (var item, i = 0; item = data.data[i++];) {\n if (!(\'{#JMXIGNITEINSTANCENAME}\' in item)) {\n Object.assign(item, {\n \'{#JMXIGNITEINSTANCENAME}\': \'null\'\n });\n }\n\n}\n\nreturn JSON.stringify(data)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84298','35284','1','21','var data = JSON.parse(value);\nfor (var item, i = 0; item = data.data[i++];) {\n if (!(\'{#JMXIGNITEINSTANCENAME}\' in item)) {\n Object.assign(item, {\n \'{#JMXIGNITEINSTANCENAME}\': \'null\'\n });\n }\n\n}\n\nreturn JSON.stringify(data)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84299','35285','1','21','var data = JSON.parse(value);\nfor (var item, i = 0; item = data.data[i++];) {\n if (!(\'{#JMXIGNITEINSTANCENAME}\' in item)) {\n Object.assign(item, {\n \'{#JMXIGNITEINSTANCENAME}\': \'null\'\n });\n }\n\n}\n\nreturn JSON.stringify(data)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84300','35286','1','21','var data = JSON.parse(value);\nfor (var item, i = 0; item = data.data[i++];) {\n if (!(\'{#JMXIGNITEINSTANCENAME}\' in item)) {\n Object.assign(item, {\n \'{#JMXIGNITEINSTANCENAME}\': \'null\'\n });\n }\n\n}\n\nreturn JSON.stringify(data)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84301','35287','1','21','var data = JSON.parse(value);\nfor (var item, i = 0; item = data.data[i++];) {\n if (!(\'{#JMXIGNITEINSTANCENAME}\' in item)) {\n Object.assign(item, {\n \'{#JMXIGNITEINSTANCENAME}\': \'null\'\n });\n }\n\n}\n\nreturn JSON.stringify(data)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84302','35287','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84303','35288','1','21','var data = JSON.parse(value);\nfor (var item, i = 0; item = data.data[i++];) {\n if (!(\'{#JMXIGNITEINSTANCENAME}\' in item)) {\n Object.assign(item, {\n \'{#JMXIGNITEINSTANCENAME}\': \'null\'\n });\n }\n\n}\n\nreturn JSON.stringify(data)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84304','35288','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84305','35289','1','21','var data = JSON.parse(value);\nfor (var item, i = 0; item = data.data[i++];) {\n if (!(\'{#JMXIGNITEINSTANCENAME}\' in item)) {\n Object.assign(item, {\n \'{#JMXIGNITEINSTANCENAME}\': \'null\'\n });\n }\n\n}\n\nreturn JSON.stringify(data)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84306','35289','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84307','35308','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84308','35309','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84309','35310','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84310','35311','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84311','35312','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84312','35313','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84313','35314','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84314','35315','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84315','35316','1','5','(.*)-\\d+\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84316','35316','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84317','35317','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84318','35318','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84319','35320','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84320','35321','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84321','35322','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84322','35323','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84323','35328','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84324','35329','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84325','35330','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84326','35337','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84327','35349','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84328','35352','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84329','35353','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84330','35355','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84331','35356','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84332','35357','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84333','35358','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84334','35359','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84335','35360','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84336','35361','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84337','35362','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84338','35363','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84339','35373','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84340','35374','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84341','35375','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84342','35375','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84343','35376','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84344','35377','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84345','35378','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84346','35378','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84347','35379','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84348','35380','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84349','35380','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84350','35381','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84351','35382','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84352','35383','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84353','35384','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84354','35385','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84355','35385','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84356','35386','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84357','35387','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84358','35387','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84359','35388','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84360','35389','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84361','35390','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84362','35391','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84363','35392','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84364','35393','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84365','35394','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84366','35395','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84367','35396','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84368','35397','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84369','35398','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84370','35399','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84371','35400','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84372','35401','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84373','35402','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84374','35403','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84375','35403','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84376','35404','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84377','35404','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84378','35405','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84379','35406','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84380','35408','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84381','35414','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84382','35415','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84383','35416','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84384','35417','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84385','35418','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84386','35419','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84387','35420','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84388','35421','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84389','35422','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84390','35423','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84391','35424','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84392','35425','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84394','35427','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84395','35428','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84396','35429','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84397','35430','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84398','35431','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84399','35432','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84400','35433','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84401','35434','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84402','35435','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84403','35436','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84404','35437','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84405','35438','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84406','35439','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84407','35440','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84408','35441','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84409','35441','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84411','35443','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84412','35444','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84413','35445','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84414','35446','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84415','35474','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84416','35475','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84417','35476','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84423','35482','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84426','35485','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84427','35486','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84428','35487','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84429','35488','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84430','35489','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84431','35490','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84432','35491','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84433','35492','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84434','35493','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84435','35493','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84436','35494','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84437','35495','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84438','35496','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84439','35496','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84440','35497','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84441','35497','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84442','35498','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84443','35498','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84444','35499','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84445','35499','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84446','35500','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84447','35501','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84448','35502','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84449','35502','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84450','35503','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84451','35503','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84452','35504','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84453','35504','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84454','35505','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84455','35506','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84456','35507','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84457','35507','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84458','35508','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84459','35508','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84460','35509','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84461','35509','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84462','35510','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84463','35510','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84464','35511','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84465','35512','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84466','35513','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84467','35514','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84468','35515','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84469','35515','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84470','35516','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84471','35516','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84472','35517','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84473','35517','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84474','35518','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84475','35518','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84476','35519','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84477','35520','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84478','35520','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84479','35521','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84480','35522','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84481','35523','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84482','35523','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84483','35524','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84484','35524','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84485','35525','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84486','35525','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84487','35526','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84488','35526','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84489','35527','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84490','35528','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84491','35529','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84492','35530','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84493','35531','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84494','35532','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84495','35533','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84496','35534','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84497','35535','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84498','35536','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84499','35537','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84500','35538','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84501','35539','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84502','35540','1','21','var valueArray = [\n \'moduleNoDefect\',\n \'moduleOverHeat\',\n \'moduleFanRpmLow\',\n \'moduleVoltageLow\',\n \'moduleThermalSensorFailure\',\n \'modulePullOut\',\n \'powerDC48VAFailure\',\n \'powerDC48VBFailure\',\n \'extAlarmInputTrigger\',\n \'moduleDown\',\n \'mscSwitchOverOK\',\n \'networkTopologyChange\',\n \'macSpoof\',\n \'cpuHigh\',\n \'memoryUsageHigh\',\n \'packetBufferUsageHigh\',\n \'loopguardOccurence\'\n];\nvar base2 = parseInt(value).toString(2);\nvar outArray = [];\nfor (var i = 0; i < base2.length; ++i) {\n if (base2[base2.length - 1 - i] === \'1\') outArray.push(valueArray[i]);\n}\nreturn outArray.join();','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84503','35541','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84504','35545','1','21','var inArray = JSON.parse(value);\nvar outArr = []\ninArray.forEach(function (item, i, arr) {\n item[\'{#ZYXEL.SLOT.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[1];\n item[\'{#ZYXEL.SENSOR.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[2];\n item["{#ZYXEL.VOLT.NOMINAL}"] = "+" + item["{#ZYXEL.VOLT.NOMINAL}"] / 1000 + "V";\n item["{#ZYXEL.VOLT.THRESH.LOW}"] /= 1000;\n item["{#ZYXEL.VOLT.THRESH.HIGH}"] /= 1000;\n outArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84505','35546','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84506','35547','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84507','35547','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84508','35548','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84509','35548','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84510','35549','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84511','35549','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84512','35550','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84513','35550','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84514','35551','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84515','35551','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84516','35552','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84517','35552','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84518','35553','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84519','35553','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84520','35554','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84521','35555','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84522','35556','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84523','35556','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84524','35557','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84525','35558','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84526','35558','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84527','35559','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84528','35560','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84529','35561','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84530','35561','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84531','35562','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84532','35563','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84533','35563','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84534','35564','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84535','35565','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84536','35567','1','21','var inArray = JSON.parse(value);\nvar tmpObj = {};\ninArray.forEach(function(item, i, arr) {\n tmpObj[item["{#SNMPINDEX}"]] = item["{#SNMP.ARRAY}"]\n});\nvar strOut = \'V\' + tmpObj["1.0"] + \'.\' + tmpObj["2.0"]\n + \'(\' + tmpObj["3.0"] + \'.\' + tmpObj["4.0"] + \')_\'\n + tmpObj["7.0"] + \'.\' + tmpObj["6.0"] + \'.\' + tmpObj["5.0"];\nreturn strOut;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84537','35567','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84538','35568','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84539','35569','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84540','35570','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84541','35571','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84542','35572','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84543','35573','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84544','35576','1','21','var inArray = JSON.parse(value);\nvar nameMap = {\n \'Temperature\': \'°C\',\n \'Voltage\': \'V\',\n \'TxBias\': \'mA\',\n \'TxPower\': \'dbm\',\n \'RxPower\': \'dbm\'\n};\nvar outArr = [];\ninArray.forEach(function (item, i, arr) {\n item[\'{#ZYXEL.SFP.PORT}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[0];\n item[\'{#ZYXEL.SFP.UNIT}\'] = nameMap[item[\'{#ZYXEL.SFP.DESCRIPTION}\']] === undefined ? "" : nameMap[item[\'{#ZYXEL.SFP.DESCRIPTION}\']];\n item[\'{#ZYXEL.SFP.WARN.MAX}\'] /= 100;\n item[\'{#ZYXEL.SFP.WARN.MIN}\'] /= 100;\n outArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84545','35578','1','21','var inArray = JSON.parse(value);\nvar nameMap = {"1":"MAC", "2":"CPU", "3":"PHY"};\nvar outArr = [];\ninArray.forEach(function(item, i, arr) {\nitem["{#ZYXEL.TEMP.ID}"] = nameMap[item["{#SNMPINDEX}"]]\noutArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84546','35579','1','21','var inArray = JSON.parse(value);\nvar outArr = []\ninArray.forEach(function(item, i, arr) {\nitem["{#ZYXEL.VOLT.NOMINAL}"] = "+" + item["{#ZYXEL.VOLT.NOMINAL}"] / 1000 + "V";\nitem["{#ZYXEL.VOLT.THRESH.LOW}"] = item["{#ZYXEL.VOLT.THRESH.LOW}"] / 1000;\noutArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84547','35580','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84548','35581','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84549','35582','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84550','35583','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84551','35583','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84552','35584','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84553','35585','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84554','35585','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84555','35586','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84556','35587','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84557','35588','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84558','35589','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84559','35590','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84560','35591','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84561','35591','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84562','35592','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84563','35593','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84564','35593','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84565','35594','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84566','35595','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84567','35596','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84568','35596','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84569','35597','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84570','35598','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84571','35598','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84572','35599','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84573','35600','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84574','35601','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84575','35602','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84576','35603','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84577','35604','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84578','35605','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84579','35606','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84580','35607','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84581','35607','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84582','35608','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84583','35609','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84584','35611','1','21','var inArray = JSON.parse(value);\nvar tmpObj = {};\ninArray.forEach(function(item, i, arr) {\n tmpObj[item["{#SNMPINDEX}"]] = item["{#SNMP.ARRAY}"]\n});\nvar strOut = \'V\' + tmpObj["1.0"] + \'.\' + tmpObj["2.0"]\n + \'(\' + tmpObj["3.0"] + \'.\' + tmpObj["4.0"] + \')_\'\n + tmpObj["7.0"] + \'.\' + tmpObj["6.0"] + \'.\' + tmpObj["5.0"];\nreturn strOut;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84585','35611','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84586','35612','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84587','35613','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84588','35614','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84589','35615','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84590','35616','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84591','35617','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84592','35620','1','21','var inArray = JSON.parse(value);\nvar nameMap = {"1":"MAC", "2":"CPU", "3":"PHY"};\nvar outArr = [];\ninArray.forEach(function(item, i, arr) {\nitem["{#ZYXEL.TEMP.ID}"] = nameMap[item["{#SNMPINDEX}"]]\noutArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84593','35621','1','21','var inArray = JSON.parse(value);\nvar outArr = []\ninArray.forEach(function(item, i, arr) {\nitem["{#ZYXEL.VOLT.NOMINAL}"] = "+" + item["{#ZYXEL.VOLT.NOMINAL}"] / 1000 + "V";\nitem["{#ZYXEL.VOLT.THRESH.LOW}"] = item["{#ZYXEL.VOLT.THRESH.LOW}"] / 1000;\noutArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84594','35622','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84595','35623','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84596','35624','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84597','35625','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84598','35625','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84599','35626','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84600','35627','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84601','35627','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84602','35628','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84603','35629','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84604','35630','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84605','35631','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84606','35632','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84607','35633','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84608','35633','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84609','35634','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84610','35635','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84611','35635','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84612','35636','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84613','35637','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84614','35638','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84615','35638','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84616','35639','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84617','35640','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84618','35641','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84619','35641','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84620','35642','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84621','35643','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84622','35644','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84623','35645','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84624','35646','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84625','35647','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84626','35648','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84627','35649','1','21','var inArray = JSON.parse(value);\nvar outArr = []\ninArray.forEach(function (item, i, arr) {\n item[\'{#ZYXEL.SLOT.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[1];\n item[\'{#ZYXEL.SENSOR.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[2];\n outArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84628','35650','1','21','var inArray = JSON.parse(value);\nvar outArr = []\ninArray.forEach(function (item, i, arr) {\n item[\'{#ZYXEL.SLOT.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[1];\n item[\'{#ZYXEL.SENSOR.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[2];\n outArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84629','35652','1','21','var inArray = JSON.parse(value);\nvar outArr = []\ninArray.forEach(function (item, i, arr) {\n item[\'{#ZYXEL.SLOT.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[1];\n item[\'{#ZYXEL.SENSOR.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[2];\n outArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84630','35653','1','21','var inArray = JSON.parse(value);\nvar outArr = []\ninArray.forEach(function (item, i, arr) {\n item[\'{#ZYXEL.SLOT.ID}\'] = Math.floor(item[\'{#SNMPINDEX}\'] / 100);\n item[\'{#ZYXEL.PORTID}\'] = item[\'{#SNMPINDEX}\'] % 100;\n outArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84631','35656','1','21','var inArray = JSON.parse(value);\nvar outArr = [];\ninArray.forEach(function (item, i, arr) {\n item[\'{#ZYXEL.SLOT.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[1];\n item[\'{#ZYXEL.TEMP.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[2];\n outArr.push(item);\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84632','35657','1','21','var inArray = JSON.parse(value);\nvar outArr = []\ninArray.forEach(function (item, i, arr) {\n item[\'{#ZYXEL.SLOT.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[1];\n item[\'{#ZYXEL.SENSOR.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[2];\n item["{#ZYXEL.VOLT.NOMINAL}"] = "+" + item["{#ZYXEL.VOLT.NOMINAL}"] / 1000 + "V";\n item["{#ZYXEL.VOLT.THRESH.LOW}"] /= 1000;\n item["{#ZYXEL.VOLT.THRESH.HIGH}"] /= 1000;\n outArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84633','35658','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84634','35659','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84635','35660','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84636','35661','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84637','35662','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84638','35663','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84639','35663','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84640','35664','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84641','35664','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84642','35665','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84643','35666','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84644','35667','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84645','35668','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84646','35669','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84647','35670','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84648','35671','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84649','35671','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84650','35672','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84651','35673','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84652','35674','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84653','35674','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84654','35675','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84655','35675','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84656','35676','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84657','35676','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84658','35677','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84659','35677','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84660','35678','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84661','35678','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84662','35679','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84663','35680','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84664','35681','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84665','35682','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84666','35682','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84667','35683','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84668','35684','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84669','35685','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84670','35685','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84671','35686','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84672','35687','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84673','35687','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84674','35688','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84675','35689','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84676','35690','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84677','35691','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84678','35692','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84679','35692','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84680','35693','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84681','35694','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84682','35694','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84683','35695','1','21','var valueArray = [\n \'moduleNoDefect\',\n \'moduleOverHeat\',\n \'moduleFanRpmLow\',\n \'moduleVoltageLow\',\n \'moduleThermalSensorFailure\',\n \'modulePullOut\',\n \'powerDC48VAFailure\',\n \'powerDC48VBFailure\',\n \'extAlarmInputTrigger\',\n \'moduleDown\',\n \'mscSwitchOverOK\',\n \'networkTopologyChange\',\n \'macSpoof\',\n \'cpuHigh\',\n \'memoryUsageHigh\',\n \'packetBufferUsageHigh\',\n \'loopguardOccurence\'\n];\nvar base2 = parseInt(value).toString(2);\nvar outArray = [];\nfor (var i = 0; i < base2.length; ++i) {\n if (base2[base2.length - 1 - i] === \'1\') outArray.push(valueArray[i]);\n}\nreturn outArray.join();','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84684','35696','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84685','35697','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84686','35698','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84687','35699','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84688','35700','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84689','35701','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84690','35702','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84691','35703','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84692','35704','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84693','35705','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84694','35707','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84695','35708','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84696','35708','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84697','35709','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84698','35710','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84699','35711','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84700','35712','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84701','35713','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84702','35714','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84703','35715','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84704','35716','1','21','var inArray = JSON.parse(value);\nvar outArr = []\ninArray.forEach(function (item, i, arr) {\n item[\'{#ZYXEL.SLOT.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[1];\n item[\'{#ZYXEL.SENSOR.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[2];\n outArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84705','35717','1','21','var inArray = JSON.parse(value);\nvar outArr = []\ninArray.forEach(function (item, i, arr) {\n item[\'{#ZYXEL.SLOT.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[1];\n item[\'{#ZYXEL.SENSOR.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[2];\n outArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84706','35719','1','21','var inArray = JSON.parse(value);\nvar outArr = []\ninArray.forEach(function (item, i, arr) {\n item[\'{#ZYXEL.SLOT.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[1];\n item[\'{#ZYXEL.SENSOR.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[2];\n outArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84707','35720','1','21','var inArray = JSON.parse(value);\nvar outArr = []\ninArray.forEach(function (item, i, arr) {\n item[\'{#ZYXEL.SLOT.ID}\'] = Math.floor(item[\'{#SNMPINDEX}\'] / 100);\n item[\'{#ZYXEL.PORTID}\'] = item[\'{#SNMPINDEX}\'] % 100;\n outArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84708','35723','1','21','var inArray = JSON.parse(value);\nvar outArr = [];\ninArray.forEach(function (item, i, arr) {\n item[\'{#ZYXEL.SLOT.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[1];\n item[\'{#ZYXEL.TEMP.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[2];\n outArr.push(item);\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84709','35724','1','21','var inArray = JSON.parse(value);\nvar outArr = []\ninArray.forEach(function (item, i, arr) {\n item[\'{#ZYXEL.SLOT.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[1];\n item[\'{#ZYXEL.SENSOR.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[2];\n item["{#ZYXEL.VOLT.NOMINAL}"] = "+" + item["{#ZYXEL.VOLT.NOMINAL}"] / 1000 + "V";\n item["{#ZYXEL.VOLT.THRESH.LOW}"] /= 1000;\n item["{#ZYXEL.VOLT.THRESH.HIGH}"] /= 1000;\n outArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84710','35725','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84711','35726','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84712','35727','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84713','35728','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84714','35729','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84715','35730','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84716','35730','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84717','35731','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84718','35731','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84719','35732','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84720','35733','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84721','35734','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84722','35735','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84723','35736','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84724','35737','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84725','35738','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84726','35738','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84727','35739','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84728','35740','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84729','35741','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84730','35741','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84731','35742','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84732','35742','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84733','35743','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84734','35743','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84735','35744','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84736','35744','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84737','35745','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84738','35745','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84739','35746','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84740','35747','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84741','35748','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84742','35749','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84743','35749','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84744','35750','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84745','35751','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84746','35752','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84747','35752','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84748','35753','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84749','35754','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84750','35754','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84751','35755','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84752','35756','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84753','35757','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84754','35758','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84755','35759','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84756','35759','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84757','35760','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84758','35761','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84759','35761','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84760','35762','1','21','var valueArray = [\n \'moduleNoDefect\',\n \'moduleOverHeat\',\n \'moduleFanRpmLow\',\n \'moduleVoltageLow\',\n \'moduleThermalSensorFailure\',\n \'modulePullOut\',\n \'powerDC48VAFailure\',\n \'powerDC48VBFailure\',\n \'extAlarmInputTrigger\',\n \'moduleDown\',\n \'mscSwitchOverOK\',\n \'networkTopologyChange\',\n \'macSpoof\',\n \'cpuHigh\',\n \'memoryUsageHigh\',\n \'packetBufferUsageHigh\',\n \'loopguardOccurence\'\n];\nvar base2 = parseInt(value).toString(2);\nvar outArray = [];\nfor (var i = 0; i < base2.length; ++i) {\n if (base2[base2.length - 1 - i] === \'1\') outArray.push(valueArray[i]);\n}\nreturn outArray.join();','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84761','35763','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84762','35764','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84763','35765','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84764','35766','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84765','35767','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84766','35768','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84767','35769','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84768','35770','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84769','35771','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84770','35772','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84771','35774','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84772','35775','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84773','35775','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84774','35776','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84775','35777','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84776','35778','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84777','35779','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84778','35780','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84779','35781','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84780','35782','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84781','35783','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84782','35784','1','21','var valueArray = [\n \'moduleNoDefect\',\n \'moduleOverHeat\',\n \'moduleFanRpmLow\',\n \'moduleVoltageLow\',\n \'moduleThermalSensorFailure\',\n \'modulePullOut\',\n \'powerDC48VAFailure\',\n \'powerDC48VBFailure\',\n \'extAlarmInputTrigger\',\n \'moduleDown\',\n \'mscSwitchOverOK\',\n \'networkTopologyChange\',\n \'macSpoof\',\n \'cpuHigh\',\n \'memoryUsageHigh\',\n \'packetBufferUsageHigh\',\n \'loopguardOccurence\'\n];\nvar base2 = parseInt(value).toString(2);\nvar outArray = [];\nfor (var i = 0; i < base2.length; ++i) {\n if (base2[base2.length - 1 - i] === \'1\') outArray.push(valueArray[i]);\n}\nreturn outArray.join();','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84783','35785','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84784','35790','1','21','var inArray = JSON.parse(value);\nvar outArr = []\ninArray.forEach(function (item, i, arr) {\n item[\'{#ZYXEL.SLOT.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[1];\n item[\'{#ZYXEL.SENSOR.ID}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[2];\n item["{#ZYXEL.VOLT.NOMINAL}"] = "+" + item["{#ZYXEL.VOLT.NOMINAL}"] / 1000 + "V";\n item["{#ZYXEL.VOLT.THRESH.LOW}"] /= 1000;\n item["{#ZYXEL.VOLT.THRESH.HIGH}"] /= 1000;\n outArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84785','35791','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84786','35792','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84787','35793','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84788','35793','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84789','35794','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84790','35794','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84791','35795','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84792','35795','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84793','35796','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84794','35796','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84795','35797','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84796','35797','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84797','35798','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84798','35798','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84799','35799','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84800','35799','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84801','35800','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84802','35801','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84803','35802','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84804','35802','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84805','35803','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84806','35804','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84807','35804','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84808','35805','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84809','35806','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84810','35807','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84811','35807','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84812','35808','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84813','35809','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84814','35809','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84815','35810','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84816','35811','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84817','35813','1','21','var inArray = JSON.parse(value);\nvar tmpObj = {};\ninArray.forEach(function(item, i, arr) {\n tmpObj[item["{#SNMPINDEX}"]] = item["{#SNMP.ARRAY}"]\n});\nvar strOut = \'V\' + tmpObj["1.0"] + \'.\' + tmpObj["2.0"]\n + \'(\' + tmpObj["3.0"] + \'.\' + tmpObj["4.0"] + \')_\'\n + tmpObj["7.0"] + \'.\' + tmpObj["6.0"] + \'.\' + tmpObj["5.0"];\nreturn strOut;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84818','35813','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84819','35814','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84820','35815','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84821','35816','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84822','35817','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84823','35818','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84824','35819','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84825','35821','1','21','var inArray = JSON.parse(value);\nvar nameMap = {\n \'Temperature\': \'°C\',\n \'Voltage\': \'V\',\n \'TxBias\': \'mA\',\n \'TxPower\': \'dbm\',\n \'RxPower\': \'dbm\'\n};\nvar outArr = [];\ninArray.forEach(function (item, i, arr) {\n item[\'{#ZYXEL.SFP.PORT}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[0];\n item[\'{#ZYXEL.SFP.UNIT}\'] = nameMap[item[\'{#ZYXEL.SFP.DESCRIPTION}\']] === undefined ? "" : nameMap[item[\'{#ZYXEL.SFP.DESCRIPTION}\']];\n item[\'{#ZYXEL.SFP.WARN.MAX}\'] /= 100;\n item[\'{#ZYXEL.SFP.WARN.MIN}\'] /= 100;\n outArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84826','35823','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84827','35824','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84828','35825','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84829','35825','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84830','35826','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84831','35827','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84832','35827','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84833','35828','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84834','35829','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84835','35830','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84836','35831','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84837','35832','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84838','35833','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84839','35833','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84840','35834','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84841','35835','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84842','35835','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84843','35836','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84844','35837','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84845','35838','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84846','35838','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84847','35839','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84848','35840','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84849','35840','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84850','35841','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84851','35842','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84852','35843','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84853','35844','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84854','35845','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84855','35846','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84856','35847','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84857','35848','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84858','35849','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84859','35851','1','21','var inArray = JSON.parse(value);\nvar tmpObj = {};\ninArray.forEach(function(item, i, arr) {\n tmpObj[item["{#SNMPINDEX}"]] = item["{#SNMP.ARRAY}"]\n});\nvar strOut = \'V\' + tmpObj["1.0"] + \'.\' + tmpObj["2.0"]\n + \'(\' + tmpObj["3.0"] + \'.\' + tmpObj["4.0"] + \')_\'\n + tmpObj["7.0"] + \'.\' + tmpObj["6.0"] + \'.\' + tmpObj["5.0"];\nreturn strOut;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84860','35851','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84861','35852','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84862','35853','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84863','35854','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84864','35855','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84865','35856','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84866','35857','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84867','35860','1','21','var inArray = JSON.parse(value);\nvar nameMap = {\n \'Temperature\': \'°C\',\n \'Voltage\': \'V\',\n \'TxBias\': \'mA\',\n \'TxPower\': \'dbm\',\n \'RxPower\': \'dbm\'\n};\nvar outArr = [];\ninArray.forEach(function (item, i, arr) {\n item[\'{#ZYXEL.SFP.PORT}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[0];\n item[\'{#ZYXEL.SFP.UNIT}\'] = nameMap[item[\'{#ZYXEL.SFP.DESCRIPTION}\']] === undefined ? "" : nameMap[item[\'{#ZYXEL.SFP.DESCRIPTION}\']];\n item[\'{#ZYXEL.SFP.WARN.MAX}\'] /= 100;\n item[\'{#ZYXEL.SFP.WARN.MIN}\'] /= 100;\n outArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84868','35862','1','21','var inArray = JSON.parse(value);\nvar nameMap = {"1":"MAC", "2":"CPU", "3":"PHY"};\nvar outArr = [];\ninArray.forEach(function(item, i, arr) {\nitem["{#ZYXEL.TEMP.ID}"] = nameMap[item["{#SNMPINDEX}"]]\noutArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84869','35863','1','21','var inArray = JSON.parse(value);\nvar outArr = []\ninArray.forEach(function(item, i, arr) {\nitem["{#ZYXEL.VOLT.NOMINAL}"] = "+" + item["{#ZYXEL.VOLT.NOMINAL}"] / 1000 + "V";\nitem["{#ZYXEL.VOLT.THRESH.LOW}"] = item["{#ZYXEL.VOLT.THRESH.LOW}"] / 1000;\noutArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84870','35864','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84871','35865','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84872','35866','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84873','35867','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84874','35867','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84875','35868','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84876','35869','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84877','35869','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84878','35870','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84879','35871','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84880','35872','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84881','35873','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84882','35874','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84883','35875','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84884','35875','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84885','35876','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84886','35877','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84887','35877','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84888','35878','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84889','35879','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84890','35880','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84891','35880','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84892','35881','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84893','35882','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84894','35882','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84895','35883','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84896','35884','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84897','35885','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84898','35886','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84899','35887','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84900','35888','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84901','35889','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84902','35890','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84903','35891','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84904','35891','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84905','35892','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84906','35893','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84907','35895','1','21','var inArray = JSON.parse(value);\nvar tmpObj = {};\ninArray.forEach(function(item, i, arr) {\n tmpObj[item["{#SNMPINDEX}"]] = item["{#SNMP.ARRAY}"]\n});\nvar strOut = \'V\' + tmpObj["1.0"] + \'.\' + tmpObj["2.0"]\n + \'(\' + tmpObj["3.0"] + \'.\' + tmpObj["4.0"] + \')_\'\n + tmpObj["7.0"] + \'.\' + tmpObj["6.0"] + \'.\' + tmpObj["5.0"];\nreturn strOut;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84908','35895','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84909','35896','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84910','35897','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84911','35898','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84912','35899','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84913','35900','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84914','35901','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84915','35904','1','21','var inArray = JSON.parse(value);\nvar nameMap = {\n \'Temperature\': \'°C\',\n \'Voltage\': \'V\',\n \'TxBias\': \'mA\',\n \'TxPower\': \'dbm\',\n \'RxPower\': \'dbm\'\n};\nvar outArr = [];\ninArray.forEach(function (item, i, arr) {\n item[\'{#ZYXEL.SFP.PORT}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[0];\n item[\'{#ZYXEL.SFP.UNIT}\'] = nameMap[item[\'{#ZYXEL.SFP.DESCRIPTION}\']] === undefined ? "" : nameMap[item[\'{#ZYXEL.SFP.DESCRIPTION}\']];\n item[\'{#ZYXEL.SFP.WARN.MAX}\'] /= 100;\n item[\'{#ZYXEL.SFP.WARN.MIN}\'] /= 100;\n outArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84916','35906','1','21','var inArray = JSON.parse(value);\nvar nameMap = {"1":"MAC", "2":"CPU", "3":"PHY"};\nvar outArr = [];\ninArray.forEach(function(item, i, arr) {\nitem["{#ZYXEL.TEMP.ID}"] = nameMap[item["{#SNMPINDEX}"]]\noutArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84917','35907','1','21','var inArray = JSON.parse(value);\nvar outArr = []\ninArray.forEach(function(item, i, arr) {\nitem["{#ZYXEL.VOLT.NOMINAL}"] = "+" + item["{#ZYXEL.VOLT.NOMINAL}"] / 1000 + "V";\nitem["{#ZYXEL.VOLT.THRESH.LOW}"] = item["{#ZYXEL.VOLT.THRESH.LOW}"] / 1000;\noutArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84918','35908','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84919','35909','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84920','35910','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84921','35911','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84922','35911','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84923','35912','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84924','35913','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84925','35913','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84926','35914','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84927','35915','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84928','35916','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84929','35917','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84930','35918','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84931','35919','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84932','35919','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84933','35920','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84934','35921','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84935','35921','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84936','35922','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84937','35923','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84938','35924','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84939','35924','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84940','35925','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84941','35926','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84942','35926','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84943','35927','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84944','35928','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84945','35929','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84946','35930','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84947','35931','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84948','35932','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84949','35933','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84950','35934','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84951','35935','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84952','35935','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84953','35936','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84954','35937','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84955','35939','1','21','var inArray = JSON.parse(value);\nvar tmpObj = {};\ninArray.forEach(function(item, i, arr) {\n tmpObj[item["{#SNMPINDEX}"]] = item["{#SNMP.ARRAY}"]\n});\nvar strOut = \'V\' + tmpObj["1.0"] + \'.\' + tmpObj["2.0"]\n + \'(\' + tmpObj["3.0"] + \'.\' + tmpObj["4.0"] + \')_\'\n + tmpObj["7.0"] + \'.\' + tmpObj["6.0"] + \'.\' + tmpObj["5.0"];\nreturn strOut;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84956','35939','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84957','35940','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84958','35941','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84959','35942','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84960','35943','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84961','35944','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84962','35945','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84963','35948','1','21','var inArray = JSON.parse(value);\nvar nameMap = {\n \'Temperature\': \'°C\',\n \'Voltage\': \'V\',\n \'TxBias\': \'mA\',\n \'TxPower\': \'dbm\',\n \'RxPower\': \'dbm\'\n};\nvar outArr = [];\ninArray.forEach(function (item, i, arr) {\n item[\'{#ZYXEL.SFP.PORT}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[0];\n item[\'{#ZYXEL.SFP.UNIT}\'] = nameMap[item[\'{#ZYXEL.SFP.DESCRIPTION}\']] === undefined ? "" : nameMap[item[\'{#ZYXEL.SFP.DESCRIPTION}\']];\n item[\'{#ZYXEL.SFP.WARN.MAX}\'] /= 100;\n item[\'{#ZYXEL.SFP.WARN.MIN}\'] /= 100;\n outArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84964','35950','1','21','var inArray = JSON.parse(value);\nvar nameMap = {"1":"MAC", "2":"CPU", "3":"PHY"};\nvar outArr = [];\ninArray.forEach(function(item, i, arr) {\nitem["{#ZYXEL.TEMP.ID}"] = nameMap[item["{#SNMPINDEX}"]]\noutArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84965','35951','1','21','var inArray = JSON.parse(value);\nvar outArr = []\ninArray.forEach(function(item, i, arr) {\nitem["{#ZYXEL.VOLT.NOMINAL}"] = "+" + item["{#ZYXEL.VOLT.NOMINAL}"] / 1000 + "V";\nitem["{#ZYXEL.VOLT.THRESH.LOW}"] = item["{#ZYXEL.VOLT.THRESH.LOW}"] / 1000;\noutArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84966','35952','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84967','35953','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84968','35954','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84969','35955','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84970','35955','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84971','35956','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84972','35957','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84973','35957','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84974','35958','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84975','35959','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84976','35960','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84977','35961','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84978','35962','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84979','35963','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84980','35963','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84981','35964','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84982','35965','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84983','35965','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84984','35966','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84985','35967','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84986','35968','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84987','35968','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84988','35969','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84989','35970','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84990','35970','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84991','35971','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84992','35972','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84993','35973','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84994','35974','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84995','35975','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84996','35976','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84997','35977','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84998','35978','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('84999','35979','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85000','35979','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85001','35980','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85002','35981','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85003','35983','1','21','var inArray = JSON.parse(value);\nvar tmpObj = {};\ninArray.forEach(function(item, i, arr) {\n tmpObj[item["{#SNMPINDEX}"]] = item["{#SNMP.ARRAY}"]\n});\nvar strOut = \'V\' + tmpObj["1.0"] + \'.\' + tmpObj["2.0"]\n + \'(\' + tmpObj["3.0"] + \'.\' + tmpObj["4.0"] + \')_\'\n + tmpObj["7.0"] + \'.\' + tmpObj["6.0"] + \'.\' + tmpObj["5.0"];\nreturn strOut;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85004','35983','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85005','35984','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85006','35985','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85007','35986','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85008','35987','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85009','35988','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85010','35989','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85011','35992','1','21','var inArray = JSON.parse(value);\nvar nameMap = {\n \'Temperature\': \'°C\',\n \'Voltage\': \'V\',\n \'TxBias\': \'mA\',\n \'TxPower\': \'dbm\',\n \'RxPower\': \'dbm\'\n};\nvar outArr = [];\ninArray.forEach(function (item, i, arr) {\n item[\'{#ZYXEL.SFP.PORT}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[0];\n item[\'{#ZYXEL.SFP.UNIT}\'] = nameMap[item[\'{#ZYXEL.SFP.DESCRIPTION}\']] === undefined ? "" : nameMap[item[\'{#ZYXEL.SFP.DESCRIPTION}\']];\n item[\'{#ZYXEL.SFP.WARN.MAX}\'] /= 100;\n item[\'{#ZYXEL.SFP.WARN.MIN}\'] /= 100;\n outArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85012','35994','1','21','var inArray = JSON.parse(value);\nvar nameMap = {"1":"MAC", "2":"CPU", "3":"PHY"};\nvar outArr = [];\ninArray.forEach(function(item, i, arr) {\nitem["{#ZYXEL.TEMP.ID}"] = nameMap[item["{#SNMPINDEX}"]]\noutArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85013','35995','1','21','var inArray = JSON.parse(value);\nvar outArr = []\ninArray.forEach(function(item, i, arr) {\nitem["{#ZYXEL.VOLT.NOMINAL}"] = "+" + item["{#ZYXEL.VOLT.NOMINAL}"] / 1000 + "V";\nitem["{#ZYXEL.VOLT.THRESH.LOW}"] = item["{#ZYXEL.VOLT.THRESH.LOW}"] / 1000;\noutArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85014','35996','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85015','35997','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85016','35998','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85017','35999','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85018','35999','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85019','36000','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85020','36001','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85021','36001','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85022','36002','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85023','36003','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85024','36004','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85025','36005','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85026','36006','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85027','36007','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85028','36007','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85029','36008','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85030','36009','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85031','36009','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85032','36010','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85033','36011','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85034','36012','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85035','36012','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85036','36013','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85037','36014','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85038','36014','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85039','36015','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85040','36016','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85041','36017','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85042','36018','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85043','36019','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85044','36020','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85045','36021','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85046','36022','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85047','36023','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85048','36023','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85049','36024','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85050','36025','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85051','36027','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85052','36028','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85053','36029','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85054','36031','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85055','36032','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85056','36033','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85057','36034','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85058','36037','1','21','var inArray = JSON.parse(value);\nvar nameMap = {\n \'Temperature\': \'°C\',\n \'Voltage\': \'V\',\n \'TxBias\': \'mA\',\n \'TxPower\': \'dbm\',\n \'RxPower\': \'dbm\'\n};\nvar outArr = [];\ninArray.forEach(function (item, i, arr) {\n item[\'{#ZYXEL.SFP.PORT}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[0];\n item[\'{#ZYXEL.SFP.UNIT}\'] = nameMap[item[\'{#ZYXEL.SFP.DESCRIPTION}\']] === undefined ? "" : nameMap[item[\'{#ZYXEL.SFP.DESCRIPTION}\']];\n item[\'{#ZYXEL.SFP.WARN.MAX}\'] /= 100;\n item[\'{#ZYXEL.SFP.WARN.MIN}\'] /= 100;\n outArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85059','36040','1','21','var inArray = JSON.parse(value);\nvar outArr = []\ninArray.forEach(function(item, i, arr) {\nitem["{#ZYXEL.VOLT.THRESH.LOW}"] /= 1000;\noutArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85060','36041','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85061','36042','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85062','36043','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85063','36044','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85064','36044','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85065','36045','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85066','36046','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85067','36046','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85068','36047','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85069','36048','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85070','36049','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85071','36050','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85072','36051','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85073','36052','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85074','36052','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85075','36053','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85076','36054','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85077','36054','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85078','36055','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85079','36056','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85080','36057','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85081','36057','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85082','36058','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85083','36059','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85084','36059','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85085','36060','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85086','36061','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85087','36062','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85088','36063','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85089','36064','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85090','36065','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85091','36066','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85092','36067','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85093','36068','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85094','36068','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85095','36069','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85096','36070','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85097','36072','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85098','36073','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85099','36074','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85100','36076','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85101','36077','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85102','36078','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85103','36079','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85104','36082','1','21','var inArray = JSON.parse(value);\nvar nameMap = {\n \'Temperature\': \'°C\',\n \'Voltage\': \'V\',\n \'TxBias\': \'mA\',\n \'TxPower\': \'dbm\',\n \'RxPower\': \'dbm\'\n};\nvar outArr = [];\ninArray.forEach(function (item, i, arr) {\n item[\'{#ZYXEL.SFP.PORT}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[0];\n item[\'{#ZYXEL.SFP.UNIT}\'] = nameMap[item[\'{#ZYXEL.SFP.DESCRIPTION}\']] === undefined ? "" : nameMap[item[\'{#ZYXEL.SFP.DESCRIPTION}\']];\n item[\'{#ZYXEL.SFP.WARN.MAX}\'] /= 100;\n item[\'{#ZYXEL.SFP.WARN.MIN}\'] /= 100;\n outArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85105','36085','1','21','var inArray = JSON.parse(value);\nvar outArr = []\ninArray.forEach(function(item, i, arr) {\nitem["{#ZYXEL.VOLT.THRESH.LOW}"] /= 1000;\noutArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85106','36086','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85107','36087','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85108','36088','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85109','36089','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85110','36089','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85111','36090','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85112','36091','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85113','36091','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85114','36092','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85115','36093','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85116','36094','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85117','36095','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85118','36096','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85119','36097','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85120','36097','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85121','36098','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85122','36099','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85123','36099','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85124','36100','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85125','36101','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85126','36102','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85127','36102','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85128','36103','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85129','36104','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85130','36104','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85131','36105','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85132','36106','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85133','36107','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85134','36108','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85135','36109','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85136','36110','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85137','36111','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85138','36112','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85139','36113','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85140','36113','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85141','36114','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85142','36115','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85143','36117','1','21','var inArray = JSON.parse(value);\nvar tmpObj = {};\ninArray.forEach(function(item, i, arr) {\n tmpObj[item["{#SNMPINDEX}"]] = item["{#SNMP.ARRAY}"]\n});\nvar strOut = \'V\' + tmpObj["1.0"] + \'.\' + tmpObj["2.0"]\n + \'(\' + tmpObj["3.0"] + \'.\' + tmpObj["4.0"] + \')_\'\n + tmpObj["7.0"] + \'.\' + tmpObj["6.0"] + \'.\' + tmpObj["5.0"];\nreturn strOut;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85144','36117','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85145','36118','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85146','36119','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85147','36120','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85148','36121','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85149','36122','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85150','36123','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85151','36127','1','21','var inArray = JSON.parse(value);\nvar nameMap = {\n \'Temperature\': \'°C\',\n \'Voltage\': \'V\',\n \'TxBias\': \'mA\',\n \'TxPower\': \'dbm\',\n \'RxPower\': \'dbm\'\n};\nvar outArr = [];\ninArray.forEach(function (item, i, arr) {\n item[\'{#ZYXEL.SFP.PORT}\'] = item[\'{#SNMPINDEX}\'].split(\'.\')[0];\n item[\'{#ZYXEL.SFP.UNIT}\'] = nameMap[item[\'{#ZYXEL.SFP.DESCRIPTION}\']] === undefined ? "" : nameMap[item[\'{#ZYXEL.SFP.DESCRIPTION}\']];\n item[\'{#ZYXEL.SFP.WARN.MAX}\'] /= 100;\n item[\'{#ZYXEL.SFP.WARN.MIN}\'] /= 100;\n outArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85152','36129','1','21','var inArray = JSON.parse(value);\nvar nameMap = {"1":"MAC", "2":"CPU", "3":"PHY"};\nvar outArr = [];\ninArray.forEach(function(item, i, arr) {\nitem["{#ZYXEL.TEMP.ID}"] = nameMap[item["{#SNMPINDEX}"]]\noutArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85153','36130','1','21','var inArray = JSON.parse(value);\nvar outArr = []\ninArray.forEach(function(item, i, arr) {\nitem["{#ZYXEL.VOLT.NOMINAL}"] = "+" + item["{#ZYXEL.VOLT.NOMINAL}"] / 1000 + "V";\nitem["{#ZYXEL.VOLT.THRESH.LOW}"] = item["{#ZYXEL.VOLT.THRESH.LOW}"] / 1000;\noutArr.push(item)\n});\nreturn JSON.stringify(outArr);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85154','36131','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85155','36132','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85156','36133','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85157','36134','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85158','36135','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85159','36135','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85160','36136','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85161','36137','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85162','36137','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85163','36138','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85164','36139','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85165','36140','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85166','36141','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85167','36142','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85168','36143','1','13','0\n100','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85169','36143','2','21','return +parseFloat(value).toFixed(0);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85170','36144','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85171','36145','1','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85172','36145','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85173','36146','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85174','36147','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85175','36148','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85176','36148','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85177','36149','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85178','36150','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85179','36150','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85180','36151','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85181','36152','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85182','36153','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85183','36154','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85184','36155','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85185','36156','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85186','36157','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85187','36158','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85188','36159','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85189','36159','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85190','31422','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85192','31974','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85194','36160','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85195','36161','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85196','36162','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85197','36163','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85198','36164','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85199','36165','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85200','36167','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85201','36171','1','21','var result = [];\n\nJSON.parse(value).forEach(function (netif) {\n if (typeof netif["{#IFNAME}"] === \'undefined\') {\n netif["{#IFNAME}"] = netif["{#IFDESCR}"];\n }\n if (typeof netif["{#IFALIAS}"] === \'undefined\') {\n netif["{#IFALIAS}"] = "";\n }\n result.push(netif);\n});\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85202','36178','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85203','36179','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85204','36180','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85205','36181','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85206','36182','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85207','36183','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85208','36184','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85209','36185','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85210','36186','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85211','36187','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85212','36187','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85213','36188','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85214','36189','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85215','36190','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85216','36191','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85217','36192','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85218','36192','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85219','36193','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85220','36193','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85221','36194','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85222','36195','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85223','36196','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85224','36197','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85225','36198','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85226','36199','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85227','36199','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85228','36200','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85229','36201','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85230','36202','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85231','36203','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85232','36204','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85233','36205','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85234','36206','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85235','36207','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85236','36208','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85237','36209','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85238','36210','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85239','36211','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85240','36211','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85241','36212','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85242','36213','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n system = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n system = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = {\n model: \'\',\n serialnumber: \'\',\n status: \'\',\n firmware: \'\'\n};\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nresult.model = getField(system, \'Model\', \'\');\nresult.serialnumber = getField(system, \'Oem.Dell.DellSystem.ChassisServiceTag\', \'\');\nresult.status = getField(system, \'Status.Health\', \'\');\n\nresponse = request(params.url + \'/redfish/v1/Managers/iDRAC.Embedded.1\');\nresult.firmware = getField(response.body, \'FirmwareVersion\', \'\');\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85243','36215','1','12','$.firmware','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85244','36215','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85245','36216','1','12','$.model','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85246','36216','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85247','36217','1','12','$.serialnumber','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85248','36217','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85249','36218','1','12','$.status','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85250','36218','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85251','36219','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n storages = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n storages = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (storages.Members instanceof Array) {\n storages.Members.forEach(function (storage) {\n if (typeof storage["@odata.id"] === \'string\') {\n response = request(params.url + storage["@odata.id"]);\n controller = response.body;\n if (getField(controller, \'Id\', \'\').search(\'RAID\') > -1) {\n result.push({\n \'{#BATTERY_NAME}\': getField(response.body, \'Oem.Dell.DellControllerBattery.Name\', \'\'),\n \'{#ODATA}\': controller["@odata.id"]\n });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85252','36219','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85253','36220','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n storages = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n storages = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (storages.Members instanceof Array) {\n storages.Members.forEach(function (storage) {\n if (typeof storage["@odata.id"] === \'string\') {\n response = request(params.url + storage["@odata.id"]);\n controller = response.body;\n if (getField(controller, \'Id\', \'\').search(\'RAID\') > -1) {\n result.push({\n \'{#CNTLR_NAME}\': getField(response.body, \'Name\', \'\'),\n \'{#SLOT}\': getField(response.body, \'Oem.Dell.DellController.PCISlot\', \'\'),\n \'{#ODATA}\': controller["@odata.id"]\n });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85254','36220','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85255','36221','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\ntry {\n sensors = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n sensors = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (sensors.Members instanceof Array) {\n sensors.Members.forEach(function (sensor) {\n if (typeof sensor["@odata.id"] === \'string\') {\n response = request(params.url + sensor["@odata.id"]);\n if (response.body.ReadingType === \'Rotational\') {\n if (typeof response.body.Name === \'string\') {\n result.push({ \'{#SENSOR_NAME}\': response.body.Name, \'{#ODATA}\': sensor["@odata.id"] });\n }\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85256','36221','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85257','36222','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n adapters = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n adapters = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (adapters.Members instanceof Array) {\n adapters.Members.forEach(function (adapter) {\n if (typeof adapter["@odata.id"] === \'string\') {\n response = request(params.url + adapter["@odata.id"] + "/NetworkPorts");\n ports = response.body;\n if (ports.Members instanceof Array) {\n ports.Members.forEach(function (port) {\n if (typeof port["@odata.id"] === \'string\') {\n response = request(params.url + port["@odata.id"]);\n result.push({ \'{#IFNAME}\': getField(response.body, \'Id\', \'\'), \'{#ODATA}\': port["@odata.id"] });\n }\n });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85258','36222','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85259','36223','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n storages = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n storages = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (storages.Members instanceof Array) {\n storages.Members.forEach(function (storage) {\n if (typeof storage["@odata.id"] === \'string\') {\n response = request(params.url + storage["@odata.id"]);\n drives = response.body;\n if (drives.Drives instanceof Array) {\n drives.Drives.forEach(function (drive) {\n if (typeof drive["@odata.id"] === \'string\') {\n response = request(params.url + drive["@odata.id"]);\n result.push({ \'{#DISK_NAME}\': getField(response.body, \'Name\', \'\'), \'{#ODATA}\': drive["@odata.id"] });\n }\n });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85260','36223','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85261','36224','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n sensors = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n sensors = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (sensors.Members instanceof Array) {\n sensors.Members.forEach(function (sensor) {\n if (typeof sensor["@odata.id"] === \'string\') {\n response = request(params.url + sensor["@odata.id"]);\n if (getField(response.body, \'ReadingType\', \'\') === \'Voltage\') {\n result.push({ \'{#SENSOR_NAME}\': getField(response.body, \'Name\', \'\'), \'{#ODATA}\': sensor["@odata.id"] });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85262','36224','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85263','36225','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n sensors = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n sensors = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (sensors.Members instanceof Array) {\n sensors.Members.forEach(function (sensor) {\n if (typeof sensor["@odata.id"] === \'string\') {\n response = request(params.url + sensor["@odata.id"]);\n if (getField(response.body, \'ReadingType\', \'\') === \'Temperature\') {\n result.push({ \'{#SENSOR_NAME}\': getField(response.body, \'Name\', \'\'), \'{#ODATA}\': sensor["@odata.id"] });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85264','36225','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85265','36226','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n storages = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n storages = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (storages.Members instanceof Array) {\n storages.Members.forEach(function (storage) {\n if (typeof storage["@odata.id"] === \'string\') {\n response = request(params.url + storage["@odata.id"] + "/Volumes");\n volumes = response.body;\n if (volumes.Members instanceof Array) {\n volumes.Members.forEach(function (volume) {\n if (typeof volume["@odata.id"] === \'string\') {\n response = request(params.url + volume["@odata.id"]);\n result.push({ \'{#DISK_NAME}\': getField(response.body, \'Name\', \'\'), \'{#ODATA}\': volume["@odata.id"] });\n }\n });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85266','36226','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85267','36227','1','12','$.Oem.Dell.DellControllerBattery.PrimaryStatus','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85268','36227','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85269','36228','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85270','36228','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85271','36235','1','12','$.Reading','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85272','36236','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85273','36236','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85274','36237','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85275','36237','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85276','36238','1','12','$.CurrentLinkSpeedMbps','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85277','36238','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85278','36239','1','12','$.Status.State','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85279','36239','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85280','36240','1','12','$.LinkStatus','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85281','36240','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85282','36241','1','12','$.MediaType','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85283','36241','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85284','36242','1','12','$.Model','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85285','36242','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85286','36243','1','12','$.SerialNumber','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85287','36243','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85288','36244','1','12','$.CapacityBytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85289','36244','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85290','36245','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85291','36245','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85292','36246','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85293','36246','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85294','36247','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85295','36247','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85296','36248','1','12','$.Reading','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85297','36249','1','12','$.Oem.Dell.DellVirtualDisk.RaidStatus','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85298','36249','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85299','36250','1','12','$.Oem.Dell.DellVirtualDisk.ReadCachePolicy','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85300','36250','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85301','36251','1','12','$.CapacityBytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85302','36251','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85303','36252','1','12','$.Status.State','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85304','36252','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85305','36253','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85306','36253','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85307','36254','1','12','$.Oem.Dell.DellVirtualDisk.WriteCachePolicy','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85308','36254','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85309','36255','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85310','36256','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85311','36257','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85312','36258','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85313','36259','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85314','36260','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85315','36261','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85316','36262','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85317','36263','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85318','36264','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85319','36265','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85320','36267','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85321','36268','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85322','36269','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85323','36270','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85324','36271','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85325','36272','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85326','36273','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85327','36274','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85328','36275','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85329','36276','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85330','36277','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85331','36279','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85332','36280','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85333','36281','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85334','36282','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85335','36283','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85336','36283','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85337','36284','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85338','36285','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85339','36286','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85340','36287','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85341','36288','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85342','36288','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85343','36289','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85344','36291','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85345','36291','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85346','36293','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85347','36295','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n system = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n system = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = {\n model: \'\',\n serialnumber: \'\',\n status: \'\',\n firmware: \'\'\n};\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nresult.model = getField(system, \'Model\', \'\');\nresult.serialnumber = getField(system, \'Oem.Dell.DellSystem.ChassisServiceTag\', \'\');\nresult.status = getField(system, \'Status.Health\', \'\');\n\nresponse = request(params.url + \'/redfish/v1/Managers/iDRAC.Embedded.1\');\nresult.firmware = getField(response.body, \'FirmwareVersion\', \'\');\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85348','36297','1','12','$.firmware','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85349','36297','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85350','36298','1','12','$.model','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85351','36298','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85352','36299','1','12','$.serialnumber','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85353','36299','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85354','36300','1','12','$.status','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85355','36300','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85356','36301','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n storages = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n storages = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (storages.Members instanceof Array) {\n storages.Members.forEach(function (storage) {\n if (typeof storage["@odata.id"] === \'string\') {\n response = request(params.url + storage["@odata.id"]);\n controller = response.body;\n if (getField(controller, \'Id\', \'\').search(\'RAID\') > -1) {\n result.push({\n \'{#BATTERY_NAME}\': getField(response.body, \'Oem.Dell.DellControllerBattery.Name\', \'\'),\n \'{#ODATA}\': controller["@odata.id"]\n });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85357','36301','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85358','36302','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n storages = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n storages = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (storages.Members instanceof Array) {\n storages.Members.forEach(function (storage) {\n if (typeof storage["@odata.id"] === \'string\') {\n response = request(params.url + storage["@odata.id"]);\n controller = response.body;\n if (getField(controller, \'Id\', \'\').search(\'RAID\') > -1) {\n result.push({\n \'{#CNTLR_NAME}\': getField(response.body, \'Name\', \'\'),\n \'{#SLOT}\': getField(response.body, \'Oem.Dell.DellController.PCISlot\', \'\'),\n \'{#ODATA}\': controller["@odata.id"]\n });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85359','36302','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85360','36303','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\ntry {\n sensors = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n sensors = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (sensors.Members instanceof Array) {\n sensors.Members.forEach(function (sensor) {\n if (typeof sensor["@odata.id"] === \'string\') {\n response = request(params.url + sensor["@odata.id"]);\n if (response.body.ReadingType === \'Rotational\') {\n if (typeof response.body.Name === \'string\') {\n result.push({ \'{#SENSOR_NAME}\': response.body.Name, \'{#ODATA}\': sensor["@odata.id"] });\n }\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85361','36303','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85362','36304','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n adapters = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n adapters = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (adapters.Members instanceof Array) {\n adapters.Members.forEach(function (adapter) {\n if (typeof adapter["@odata.id"] === \'string\') {\n response = request(params.url + adapter["@odata.id"] + "/NetworkPorts");\n ports = response.body;\n if (ports.Members instanceof Array) {\n ports.Members.forEach(function (port) {\n if (typeof port["@odata.id"] === \'string\') {\n response = request(params.url + port["@odata.id"]);\n result.push({ \'{#IFNAME}\': getField(response.body, \'Id\', \'\'), \'{#ODATA}\': port["@odata.id"] });\n }\n });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85363','36304','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85364','36305','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n storages = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n storages = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (storages.Members instanceof Array) {\n storages.Members.forEach(function (storage) {\n if (typeof storage["@odata.id"] === \'string\') {\n response = request(params.url + storage["@odata.id"]);\n drives = response.body;\n if (drives.Drives instanceof Array) {\n drives.Drives.forEach(function (drive) {\n if (typeof drive["@odata.id"] === \'string\') {\n response = request(params.url + drive["@odata.id"]);\n result.push({ \'{#DISK_NAME}\': getField(response.body, \'Name\', \'\'), \'{#ODATA}\': drive["@odata.id"] });\n }\n });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85365','36305','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85366','36306','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n sensors = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n sensors = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (sensors.Members instanceof Array) {\n sensors.Members.forEach(function (sensor) {\n if (typeof sensor["@odata.id"] === \'string\') {\n response = request(params.url + sensor["@odata.id"]);\n if (getField(response.body, \'ReadingType\', \'\') === \'Voltage\') {\n result.push({ \'{#SENSOR_NAME}\': getField(response.body, \'Name\', \'\'), \'{#ODATA}\': sensor["@odata.id"] });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85367','36306','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85368','36307','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n sensors = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n sensors = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (sensors.Members instanceof Array) {\n sensors.Members.forEach(function (sensor) {\n if (typeof sensor["@odata.id"] === \'string\') {\n response = request(params.url + sensor["@odata.id"]);\n if (getField(response.body, \'ReadingType\', \'\') === \'Temperature\') {\n result.push({ \'{#SENSOR_NAME}\': getField(response.body, \'Name\', \'\'), \'{#ODATA}\': sensor["@odata.id"] });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85369','36307','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85370','36308','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n storages = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n storages = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (storages.Members instanceof Array) {\n storages.Members.forEach(function (storage) {\n if (typeof storage["@odata.id"] === \'string\') {\n response = request(params.url + storage["@odata.id"] + "/Volumes");\n volumes = response.body;\n if (volumes.Members instanceof Array) {\n volumes.Members.forEach(function (volume) {\n if (typeof volume["@odata.id"] === \'string\') {\n response = request(params.url + volume["@odata.id"]);\n result.push({ \'{#DISK_NAME}\': getField(response.body, \'Name\', \'\'), \'{#ODATA}\': volume["@odata.id"] });\n }\n });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85371','36308','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85372','36309','1','12','$.Oem.Dell.DellControllerBattery.PrimaryStatus','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85373','36309','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85374','36310','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85375','36310','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85376','36317','1','12','$.Reading','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85377','36318','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85378','36318','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85379','36319','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85380','36319','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85381','36320','1','12','$.CurrentLinkSpeedMbps','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85382','36320','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85383','36321','1','12','$.Status.State','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85384','36321','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85385','36322','1','12','$.LinkStatus','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85386','36322','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85387','36323','1','12','$.MediaType','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85388','36323','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85389','36324','1','12','$.Model','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85390','36324','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85391','36325','1','12','$.SerialNumber','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85392','36325','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85393','36326','1','12','$.CapacityBytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85394','36326','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85395','36327','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85396','36327','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85397','36328','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85398','36328','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85399','36329','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85400','36329','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85401','36330','1','12','$.Reading','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85402','36331','1','12','$.Oem.Dell.DellVirtualDisk.RaidStatus','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85403','36331','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85404','36332','1','12','$.Oem.Dell.DellVirtualDisk.ReadCachePolicy','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85405','36332','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85406','36333','1','12','$.CapacityBytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85407','36333','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85408','36334','1','12','$.Status.State','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85409','36334','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85410','36335','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85411','36335','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85412','36336','1','12','$.Oem.Dell.DellVirtualDisk.WriteCachePolicy','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85413','36336','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85414','36337','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85415','36338','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85416','36339','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85417','36340','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85418','36341','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85419','36342','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85420','36343','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85421','36344','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85422','36345','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85423','36346','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85424','36347','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85425','36349','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85426','36350','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85427','36351','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85428','36352','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85429','36353','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85430','36354','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85431','36355','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85432','36356','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85433','36357','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85434','36358','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85435','36359','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85436','36361','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85437','36362','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85438','36363','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85439','36364','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85440','36365','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85441','36365','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85442','36366','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85443','36367','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85444','36368','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85445','36369','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85446','36370','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85447','36370','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85448','36371','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85449','36373','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85450','36373','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85451','36375','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85452','36377','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n system = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n system = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = {\n model: \'\',\n serialnumber: \'\',\n status: \'\',\n firmware: \'\'\n};\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nresult.model = getField(system, \'Model\', \'\');\nresult.serialnumber = getField(system, \'Oem.Dell.DellSystem.ChassisServiceTag\', \'\');\nresult.status = getField(system, \'Status.Health\', \'\');\n\nresponse = request(params.url + \'/redfish/v1/Managers/iDRAC.Embedded.1\');\nresult.firmware = getField(response.body, \'FirmwareVersion\', \'\');\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85453','36379','1','12','$.firmware','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85454','36379','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85455','36380','1','12','$.model','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85456','36380','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85457','36381','1','12','$.serialnumber','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85458','36381','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85459','36382','1','12','$.status','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85460','36382','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85461','36383','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n storages = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n storages = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (storages.Members instanceof Array) {\n storages.Members.forEach(function (storage) {\n if (typeof storage["@odata.id"] === \'string\') {\n response = request(params.url + storage["@odata.id"]);\n controller = response.body;\n if (getField(controller, \'Id\', \'\').search(\'RAID\') > -1) {\n result.push({\n \'{#BATTERY_NAME}\': getField(response.body, \'Oem.Dell.DellControllerBattery.Name\', \'\'),\n \'{#ODATA}\': controller["@odata.id"]\n });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85462','36383','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85463','36384','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n storages = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n storages = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (storages.Members instanceof Array) {\n storages.Members.forEach(function (storage) {\n if (typeof storage["@odata.id"] === \'string\') {\n response = request(params.url + storage["@odata.id"]);\n controller = response.body;\n if (getField(controller, \'Id\', \'\').search(\'RAID\') > -1) {\n result.push({\n \'{#CNTLR_NAME}\': getField(response.body, \'Name\', \'\'),\n \'{#SLOT}\': getField(response.body, \'Oem.Dell.DellController.PCISlot\', \'\'),\n \'{#ODATA}\': controller["@odata.id"]\n });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85464','36384','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85465','36385','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\ntry {\n sensors = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n sensors = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (sensors.Members instanceof Array) {\n sensors.Members.forEach(function (sensor) {\n if (typeof sensor["@odata.id"] === \'string\') {\n response = request(params.url + sensor["@odata.id"]);\n if (response.body.ReadingType === \'Rotational\') {\n if (typeof response.body.Name === \'string\') {\n result.push({ \'{#SENSOR_NAME}\': response.body.Name, \'{#ODATA}\': sensor["@odata.id"] });\n }\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85466','36385','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85467','36386','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n adapters = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n adapters = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (adapters.Members instanceof Array) {\n adapters.Members.forEach(function (adapter) {\n if (typeof adapter["@odata.id"] === \'string\') {\n response = request(params.url + adapter["@odata.id"] + "/NetworkPorts");\n ports = response.body;\n if (ports.Members instanceof Array) {\n ports.Members.forEach(function (port) {\n if (typeof port["@odata.id"] === \'string\') {\n response = request(params.url + port["@odata.id"]);\n result.push({ \'{#IFNAME}\': getField(response.body, \'Id\', \'\'), \'{#ODATA}\': port["@odata.id"] });\n }\n });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85468','36386','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85469','36387','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n storages = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n storages = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (storages.Members instanceof Array) {\n storages.Members.forEach(function (storage) {\n if (typeof storage["@odata.id"] === \'string\') {\n response = request(params.url + storage["@odata.id"]);\n drives = response.body;\n if (drives.Drives instanceof Array) {\n drives.Drives.forEach(function (drive) {\n if (typeof drive["@odata.id"] === \'string\') {\n response = request(params.url + drive["@odata.id"]);\n result.push({ \'{#DISK_NAME}\': getField(response.body, \'Name\', \'\'), \'{#ODATA}\': drive["@odata.id"] });\n }\n });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85470','36387','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85471','36388','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n sensors = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n sensors = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (sensors.Members instanceof Array) {\n sensors.Members.forEach(function (sensor) {\n if (typeof sensor["@odata.id"] === \'string\') {\n response = request(params.url + sensor["@odata.id"]);\n if (getField(response.body, \'ReadingType\', \'\') === \'Voltage\') {\n result.push({ \'{#SENSOR_NAME}\': getField(response.body, \'Name\', \'\'), \'{#ODATA}\': sensor["@odata.id"] });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85472','36388','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85473','36389','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n sensors = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n sensors = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (sensors.Members instanceof Array) {\n sensors.Members.forEach(function (sensor) {\n if (typeof sensor["@odata.id"] === \'string\') {\n response = request(params.url + sensor["@odata.id"]);\n if (getField(response.body, \'ReadingType\', \'\') === \'Temperature\') {\n result.push({ \'{#SENSOR_NAME}\': getField(response.body, \'Name\', \'\'), \'{#ODATA}\': sensor["@odata.id"] });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85474','36389','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85475','36390','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n storages = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n storages = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (storages.Members instanceof Array) {\n storages.Members.forEach(function (storage) {\n if (typeof storage["@odata.id"] === \'string\') {\n response = request(params.url + storage["@odata.id"] + "/Volumes");\n volumes = response.body;\n if (volumes.Members instanceof Array) {\n volumes.Members.forEach(function (volume) {\n if (typeof volume["@odata.id"] === \'string\') {\n response = request(params.url + volume["@odata.id"]);\n result.push({ \'{#DISK_NAME}\': getField(response.body, \'Name\', \'\'), \'{#ODATA}\': volume["@odata.id"] });\n }\n });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85476','36390','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85477','36391','1','12','$.Oem.Dell.DellControllerBattery.PrimaryStatus','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85478','36391','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85479','36392','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85480','36392','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85481','36399','1','12','$.Reading','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85482','36400','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85483','36400','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85484','36401','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85485','36401','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85486','36402','1','12','$.CurrentLinkSpeedMbps','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85487','36402','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85488','36403','1','12','$.Status.State','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85489','36403','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85490','36404','1','12','$.LinkStatus','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85491','36404','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85492','36405','1','12','$.MediaType','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85493','36405','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85494','36406','1','12','$.Model','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85495','36406','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85496','36407','1','12','$.SerialNumber','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85497','36407','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85498','36408','1','12','$.CapacityBytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85499','36408','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85500','36409','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85501','36409','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85502','36410','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85503','36410','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85504','36411','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85505','36411','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85506','36412','1','12','$.Reading','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85507','36413','1','12','$.Oem.Dell.DellVirtualDisk.RaidStatus','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85508','36413','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85509','36414','1','12','$.Oem.Dell.DellVirtualDisk.ReadCachePolicy','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85510','36414','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85511','36415','1','12','$.CapacityBytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85512','36415','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85513','36416','1','12','$.Status.State','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85514','36416','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85515','36417','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85516','36417','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85517','36418','1','12','$.Oem.Dell.DellVirtualDisk.WriteCachePolicy','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85518','36418','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85519','36419','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85520','36420','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85521','36421','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85522','36422','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85523','36423','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85524','36424','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85525','36425','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85526','36426','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85527','36427','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85528','36428','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85529','36429','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85530','36431','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85531','36432','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85532','36433','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85533','36434','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85534','36435','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85535','36436','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85536','36437','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85537','36438','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85538','36439','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85539','36440','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85540','36441','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85541','36443','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85542','36444','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85543','36445','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85544','36446','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85545','36447','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85546','36447','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85547','36448','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85548','36449','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85549','36450','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85550','36451','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85551','36452','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85552','36452','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85553','36453','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85554','36455','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85555','36455','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85556','36457','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85557','36459','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n system = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n system = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = {\n model: \'\',\n serialnumber: \'\',\n status: \'\',\n firmware: \'\'\n};\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nresult.model = getField(system, \'Model\', \'\');\nresult.serialnumber = getField(system, \'Oem.Dell.DellSystem.ChassisServiceTag\', \'\');\nresult.status = getField(system, \'Status.Health\', \'\');\n\nresponse = request(params.url + \'/redfish/v1/Managers/iDRAC.Embedded.1\');\nresult.firmware = getField(response.body, \'FirmwareVersion\', \'\');\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85558','36461','1','12','$.firmware','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85559','36461','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85560','36462','1','12','$.model','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85561','36462','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85562','36463','1','12','$.serialnumber','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85563','36463','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85564','36464','1','12','$.status','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85565','36464','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85566','36465','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n storages = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n storages = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (storages.Members instanceof Array) {\n storages.Members.forEach(function (storage) {\n if (typeof storage["@odata.id"] === \'string\') {\n response = request(params.url + storage["@odata.id"]);\n controller = response.body;\n if (getField(controller, \'Id\', \'\').search(\'RAID\') > -1) {\n result.push({\n \'{#BATTERY_NAME}\': getField(response.body, \'Oem.Dell.DellControllerBattery.Name\', \'\'),\n \'{#ODATA}\': controller["@odata.id"]\n });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85567','36465','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85568','36466','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n storages = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n storages = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (storages.Members instanceof Array) {\n storages.Members.forEach(function (storage) {\n if (typeof storage["@odata.id"] === \'string\') {\n response = request(params.url + storage["@odata.id"]);\n controller = response.body;\n if (getField(controller, \'Id\', \'\').search(\'RAID\') > -1) {\n result.push({\n \'{#CNTLR_NAME}\': getField(response.body, \'Name\', \'\'),\n \'{#SLOT}\': getField(response.body, \'Oem.Dell.DellController.PCISlot\', \'\'),\n \'{#ODATA}\': controller["@odata.id"]\n });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85569','36466','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85570','36467','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\ntry {\n sensors = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n sensors = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (sensors.Members instanceof Array) {\n sensors.Members.forEach(function (sensor) {\n if (typeof sensor["@odata.id"] === \'string\') {\n response = request(params.url + sensor["@odata.id"]);\n if (response.body.ReadingType === \'Rotational\') {\n if (typeof response.body.Name === \'string\') {\n result.push({ \'{#SENSOR_NAME}\': response.body.Name, \'{#ODATA}\': sensor["@odata.id"] });\n }\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85571','36467','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85572','36468','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n adapters = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n adapters = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (adapters.Members instanceof Array) {\n adapters.Members.forEach(function (adapter) {\n if (typeof adapter["@odata.id"] === \'string\') {\n response = request(params.url + adapter["@odata.id"] + "/NetworkPorts");\n ports = response.body;\n if (ports.Members instanceof Array) {\n ports.Members.forEach(function (port) {\n if (typeof port["@odata.id"] === \'string\') {\n response = request(params.url + port["@odata.id"]);\n result.push({ \'{#IFNAME}\': getField(response.body, \'Id\', \'\'), \'{#ODATA}\': port["@odata.id"] });\n }\n });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85573','36468','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85574','36469','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n storages = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n storages = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (storages.Members instanceof Array) {\n storages.Members.forEach(function (storage) {\n if (typeof storage["@odata.id"] === \'string\') {\n response = request(params.url + storage["@odata.id"]);\n drives = response.body;\n if (drives.Drives instanceof Array) {\n drives.Drives.forEach(function (drive) {\n if (typeof drive["@odata.id"] === \'string\') {\n response = request(params.url + drive["@odata.id"]);\n result.push({ \'{#DISK_NAME}\': getField(response.body, \'Name\', \'\'), \'{#ODATA}\': drive["@odata.id"] });\n }\n });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85575','36469','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85576','36470','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n sensors = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n sensors = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (sensors.Members instanceof Array) {\n sensors.Members.forEach(function (sensor) {\n if (typeof sensor["@odata.id"] === \'string\') {\n response = request(params.url + sensor["@odata.id"]);\n if (getField(response.body, \'ReadingType\', \'\') === \'Voltage\') {\n result.push({ \'{#SENSOR_NAME}\': getField(response.body, \'Name\', \'\'), \'{#ODATA}\': sensor["@odata.id"] });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85577','36470','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85578','36471','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n sensors = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n sensors = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (sensors.Members instanceof Array) {\n sensors.Members.forEach(function (sensor) {\n if (typeof sensor["@odata.id"] === \'string\') {\n response = request(params.url + sensor["@odata.id"]);\n if (getField(response.body, \'ReadingType\', \'\') === \'Temperature\') {\n result.push({ \'{#SENSOR_NAME}\': getField(response.body, \'Name\', \'\'), \'{#ODATA}\': sensor["@odata.id"] });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85579','36471','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85580','36472','1','21','function request(url) {\n api_request = new HttpRequest();\n api_request.addHeader(\'Authorization: Basic \' + btoa(params.user + \':\' + params.password));\n Zabbix.log(4, \'[ DELL ] Sending request: \' + url);\n\n try {\n response = api_request.get(url);\n } catch (error) {\n Zabbix.log(4, \'[ DELL ] Get request returned error \' + error);\n throw \'Get request returned error \' + error + \'. Check debug log for more information.\';\n }\n\n Zabbix.log(4, \'[ DELL ] Received response with status code \' +\n api_request.getStatus() + \'\\n\' + response);\n\n if (api_request.getStatus() !== 200) {\n var message = \'Request failed with status code \' + api_request.getStatus();\n if (response !== null) {\n if (typeof response.message === \'string\') {\n message += \': \' + response.message;\n }\n }\n\n throw message + \' Check debug log for more information.\';\n }\n\n if (response !== null) {\n try {\n response = JSON.parse(response);\n }\n catch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n response = null;\n }\n }\n\n return {\n status: api_request.getStatus(),\n body: response\n };\n}\n\nfunction getField(object, field, def) {\n var names = field.split(\'.\');\n var name = names.shift();\n\n while (typeof name !== \'undefined\') {\n if (typeof object === undefined || typeof object[name] === \'undefined\') {\n return def;\n }\n\n object = object[name];\n name = names.shift();\n }\n\n return object;\n}\n\ntry {\n storages = JSON.parse(value);\n}\ncatch (error) {\n Zabbix.log(4, \'[ DELL ] Failed to parse response.\');\n storages = null;\n}\n\nvar params = {\n url: \'{$API.URL}\',\n user: \'{$API.USER}\',\n password: \'{$API.PASSWORD}\'\n};\nvar result = [];\n\nvar index = params.url.indexOf(\'://\');\nindex = params.url.indexOf(\'/\', (index !== -1) ? (index + 3) : 0);\nif (index !== -1) {\n params.url = params.url.substring(0, index);\n}\n\nif (storages.Members instanceof Array) {\n storages.Members.forEach(function (storage) {\n if (typeof storage["@odata.id"] === \'string\') {\n response = request(params.url + storage["@odata.id"] + "/Volumes");\n volumes = response.body;\n if (volumes.Members instanceof Array) {\n volumes.Members.forEach(function (volume) {\n if (typeof volume["@odata.id"] === \'string\') {\n response = request(params.url + volume["@odata.id"]);\n result.push({ \'{#DISK_NAME}\': getField(response.body, \'Name\', \'\'), \'{#ODATA}\': volume["@odata.id"] });\n }\n });\n }\n }\n });\n}\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85581','36472','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85582','36473','1','12','$.Oem.Dell.DellControllerBattery.PrimaryStatus','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85583','36473','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85584','36474','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85585','36474','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85586','36481','1','12','$.Reading','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85587','36482','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85588','36482','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85589','36483','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85590','36483','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85591','36484','1','12','$.CurrentLinkSpeedMbps','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85592','36484','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85593','36485','1','12','$.Status.State','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85594','36485','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85595','36486','1','12','$.LinkStatus','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85596','36486','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85597','36487','1','12','$.MediaType','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85598','36487','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85599','36488','1','12','$.Model','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85600','36488','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85601','36489','1','12','$.SerialNumber','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85602','36489','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85603','36490','1','12','$.CapacityBytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85604','36490','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85605','36491','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85606','36491','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85607','36492','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85608','36492','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85609','36493','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85610','36493','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85611','36494','1','12','$.Reading','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85612','36495','1','12','$.Oem.Dell.DellVirtualDisk.RaidStatus','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85613','36495','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85614','36496','1','12','$.Oem.Dell.DellVirtualDisk.ReadCachePolicy','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85615','36496','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85616','36497','1','12','$.CapacityBytes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85617','36497','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85618','36498','1','12','$.Status.State','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85619','36498','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85620','36499','1','12','$.Status.Health','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85621','36499','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85622','36500','1','12','$.Oem.Dell.DellVirtualDisk.WriteCachePolicy','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85623','36500','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85624','36501','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85625','36502','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85626','36503','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85627','36504','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85628','36505','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85629','36506','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85630','36507','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85631','36508','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85632','36509','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85633','36510','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85634','36511','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85635','36513','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85636','36514','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85637','36515','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85638','36516','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85639','36517','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85640','36518','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85641','36519','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85642','36520','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85643','36521','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85644','36522','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85645','36523','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85646','36525','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85647','36526','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85648','36527','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85649','36528','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85650','36529','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85651','36529','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85652','36530','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85653','36531','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85654','36532','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85655','36533','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85656','36534','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85657','36534','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85658','36535','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85659','36537','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85660','36537','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85661','36539','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85662','36541','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85663','36542','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85664','36543','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85665','36544','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85666','36545','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85667','36546','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85668','36547','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85669','36548','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85670','36549','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85671','36550','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85672','36552','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85673','36553','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85674','36554','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85675','36555','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85676','36556','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85677','36557','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85678','36558','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85679','36559','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85680','36560','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85681','36561','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85682','36562','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85683','36563','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85684','36564','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85685','36565','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85686','36566','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85687','36567','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85688','36568','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85689','36569','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85690','36570','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85691','36571','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85692','36572','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85693','36573','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85694','36574','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85695','36575','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85696','36576','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85697','36576','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85698','36577','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85699','36578','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85700','36579','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85701','36580','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85702','36581','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85703','36582','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85704','36583','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85705','36584','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85706','36585','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85707','36586','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85708','36587','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85709','36588','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85710','36589','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85711','36590','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85712','36591','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85713','36592','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85714','36593','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85715','36594','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85716','36595','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85717','36596','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85718','36596','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85719','36597','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85720','36598','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85721','36599','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85722','36600','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85723','36601','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85724','36602','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85725','36603','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85726','36604','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85727','36605','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85728','36606','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85729','36607','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85730','36609','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85731','36610','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85732','36611','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85733','36612','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85734','36613','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85735','36614','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85736','36615','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85737','36616','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85738','36617','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85739','36618','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85740','36619','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85741','36620','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85742','36621','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85743','36622','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85744','36623','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85745','36624','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85746','36625','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85747','36626','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85748','36627','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85749','36628','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85750','36629','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85751','36630','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85752','36631','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85753','36632','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85754','36633','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85755','36633','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85756','36634','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85757','36635','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85758','36636','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85759','36637','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85760','36638','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85761','36639','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85762','36640','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85763','36641','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85764','36642','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85765','36643','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85766','36644','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85767','36645','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85768','36646','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85769','36647','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85770','36648','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85771','36649','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85772','36650','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85773','36651','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85774','36652','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85775','36653','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85776','36653','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85777','36654','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85778','36655','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85779','36656','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85780','36657','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85781','36658','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85782','36659','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85783','36660','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85784','36661','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85785','36662','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85786','36663','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85787','36664','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85788','36666','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85789','36667','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85790','36668','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85791','36669','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85792','36670','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85793','36671','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85794','36672','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85795','36673','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85796','36674','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85797','36675','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85798','36676','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85799','36677','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85800','36678','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85801','36679','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85802','36680','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85803','36681','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85804','36682','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85805','36683','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85806','36684','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85807','36685','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85808','36686','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85809','36687','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85810','36688','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85811','36689','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85812','36690','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85813','36690','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85814','36691','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85815','36692','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85816','36693','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85817','36694','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85818','36695','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85819','36696','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85820','36697','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85821','36698','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85822','36699','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85823','36700','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85824','36701','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85825','36702','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85826','36703','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85827','36704','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85828','36705','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85829','36706','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85830','36707','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85831','36708','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85832','36709','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85833','36710','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85834','36710','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85835','36711','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85836','36712','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85837','36713','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85838','36714','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85839','36715','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85840','36716','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85841','36717','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85842','36718','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85843','36719','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85844','36720','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85845','36721','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85846','36723','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85847','36724','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85848','36725','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85849','36726','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85850','36727','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85851','36728','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85852','36729','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85853','36730','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85854','36731','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85855','36732','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85856','36733','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85857','36734','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85858','36735','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85859','36736','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85860','36737','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85861','36738','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85862','36739','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85863','36740','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85864','36741','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85865','36742','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85866','36743','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85867','36744','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85868','36745','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85869','36746','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85870','36747','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85871','36747','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85872','36748','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85873','36749','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85874','36750','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85875','36751','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85876','36752','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85877','36753','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85878','36754','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85879','36755','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85880','36756','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85881','36757','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85882','36758','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85883','36759','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85884','36760','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85885','36761','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85886','36762','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85887','36763','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85888','36764','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85889','36765','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85890','36766','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85891','36767','1','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85892','36767','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85893','36768','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85894','36769','1','12','$.sip.active_channels','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85895','36770','1','12','$.pjsip.active_channels','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85896','36771','1','12','$.iax.active_channels','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85897','36773','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85898','36773','1','21','return JSON.parse(value).config ? 1 : 0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85899','36776','1','12','$..duration.sum()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85900','36777','1','12','$.builds.length()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85901','36778','1','12','$.jobs[?(@.state == "started")].length()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85902','36779','1','12','$.jobs[?(@.state == "received")].length()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85903','36780','1','12','$.jobs.length()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85904','36781','1','21','var result = [];\n\nJSON.parse(value).repositories.forEach(function (e) {\n result.push({ \'{#ID}\': e.id, \'{#SLUG}\': e.slug });\n});\n\nreturn JSON.stringify(result)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85905','36781','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85906','36785','1','21','return JSON.parse(value).builds.filter(function (e){return e.state !== "passed" && e.state !== "started" }).length','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85907','36786','1','21','return JSON.parse(value).builds.filter(function (e){return e.state == "passed"}).length','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85908','36787','1','12','$.builds.length()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85909','36788','1','12','$.caches.length()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85910','36789','1','12','$.caches..size.sum()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85911','36790','1','12','$.repositories[?(@.slug == "{#SLUG}")].description.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85912','36790','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85913','36791','1','12','$.builds[0].duration','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85914','36791','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85915','36792','1','12','$.builds[0].id','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85916','36792','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85917','36793','1','12','$.builds[0].number','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85918','36793','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85919','36794','1','12','$.builds[0].state','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85920','36794','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85921','36795','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85922','36795','1','23','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85923','36796','0','26','','2','{"status":"fail"}]}');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85924','36796','1','21','return JSON.parse(value).status == \'pass\' ? 1: 0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85925','36796','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85926','36797','1','12','$[?(@.name=="influxdb_users_total")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85927','36797','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85928','36798','1','12','$[?(@.name=="influxdb_uptime_seconds")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85929','36799','1','12','$[?(@.name=="influxdb_tokens_total")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85930','36799','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85931','36800','1','12','$[?(@.name=="influxdb_telegraf_plugins_count")].value.sum()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85932','36800','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85933','36801','1','12','$[?(@.name=="influxdb_telegrafs_total")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85934','36801','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85935','36802','1','12','$[?(@.name=="task_executor_workers_busy")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85936','36803','1','12','$[?(@.name=="task_executor_total_runs_active")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85937','36804','1','12','$[?(@.name=="task_executor_total_runs_complete" && @.labels.status == "success")].value.sum()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85938','36804','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85939','36805','1','12','$[?(@.name=="task_executor_total_runs_complete" && @.labels.status == "failed")].value.sum()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85940','36805','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85941','36806','1','12','$[?(@.name=="influxdb_scrapers_total")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85942','36806','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85943','36807','1','12','$[?(@.name=="influxdb_organizations_total")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85944','36807','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85945','36808','1','12','$[?(@.name=="influxdb_dashboards_total")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85946','36808','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85947','36809','1','12','$[?(@.name=="influxdb_buckets_total")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85948','36809','2','20','30m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85949','36810','1','12','$[?(@.name=="boltdb_writes_total")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85950','36810','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85951','36811','1','12','$[?(@.name=="boltdb_reads_total")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85952','36811','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85953','36812','1','12','$[?(@.name=="influxdb_info")].labels.version.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85954','36812','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85955','36813','1','21','var result = [];\n\nJSON.parse(value).orgs.forEach(function (e) {\n result.push({\n "{#ORG_ID}": e.id,\n "{#ORG_NAME}": e.name,\n "{#ORG_DESCRIPTION}": e.description\n });\n});\n\nreturn JSON.stringify(result)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85956','36813','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85957','36814','1','12','$[?(@.name=="http_query_response_bytes" && @.labels.status != "200" && @.labels.endpoint == "/api/v2/query" && @.labels.org_id == "{#ORG_ID}") ].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85958','36814','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85959','36815','1','12','$[?(@.name=="http_query_response_bytes" && @.labels.status == "200" && @.labels.endpoint == "/api/v2/query" && @.labels.org_id == "{#ORG_ID}") ].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85960','36815','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85961','36816','1','12','$[?(@.name=="http_query_request_count" && @.labels.status != "200" && @.labels.endpoint == "/api/v2/query" && @.labels.org_id == "{#ORG_ID}") ].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85962','36816','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85963','36817','1','12','$[?(@.name=="http_query_request_count" && @.labels.status == "200" && @.labels.endpoint == "/api/v2/query" && @.labels.org_id == "{#ORG_ID}") ].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85964','36817','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85965','36818','1','12','$[?(@.name=="http_query_request_bytes" && @.labels.status != "200" && @.labels.endpoint == "/api/v2/query" && @.labels.org_id == "{#ORG_ID}") ].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85966','36818','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85967','36819','1','12','$[?(@.name=="http_query_request_bytes" && @.labels.status == "200" && @.labels.endpoint == "/api/v2/query" && @.labels.org_id == "{#ORG_ID}") ].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85968','36819','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85975','36824','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85976','36825','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85994','36847','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85995','36848','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85996','36849','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85997','36850','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85998','36851','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('85999','36852','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86000','36862','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86001','36863','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86002','36869','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86003','36870','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86004','36871','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86005','36874','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86006','36876','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86007','36878','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86008','36879','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86026','36901','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86027','36902','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86028','36903','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86029','36904','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86030','36905','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86031','36906','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86032','36916','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86033','36917','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86034','36923','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86035','36924','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86036','36925','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86037','36928','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86038','36930','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86039','36932','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86040','36933','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86058','36955','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86059','36956','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86060','36957','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86061','36958','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86062','36959','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86063','36960','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86064','36970','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86065','36971','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86066','36977','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86067','36978','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86068','36979','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86069','36982','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86070','36984','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86071','36986','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86072','36987','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86090','37009','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86091','37010','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86092','37011','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86093','37012','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86094','37013','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86095','37014','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86096','37024','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86097','37025','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86098','37031','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86099','37032','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86100','37033','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86101','37036','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86102','37038','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86103','37040','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86104','37041','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86122','37063','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86123','37064','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86124','37065','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86125','37066','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86126','37067','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86127','37068','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86128','37078','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86129','37079','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86130','37085','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86131','37086','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86132','37087','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86133','37090','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86134','37092','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86135','37094','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86136','37095','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86154','37117','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86155','37118','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86156','37119','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86157','37120','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86158','37121','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86159','37122','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86160','37132','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86161','37133','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86162','37139','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86163','37140','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86164','37141','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86165','37144','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86166','37146','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86167','37148','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86168','37149','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86186','37171','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86187','37172','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86188','37173','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86189','37174','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86190','37175','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86191','37176','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86192','37186','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86193','37187','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86194','37193','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86195','37194','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86196','37195','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86197','37198','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86198','37200','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86199','37202','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86200','37203','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86218','37225','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86219','37226','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86220','37227','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86221','37228','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86222','37229','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86223','37230','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86224','37240','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86225','37241','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86226','37247','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86227','37248','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86228','37249','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86229','37252','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86230','37254','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86231','37256','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86232','37257','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86250','37279','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86251','37280','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86252','37281','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86253','37282','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86254','37283','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86255','37284','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86256','37294','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86257','37295','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86258','37301','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86259','37302','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86260','37303','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86261','37306','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86262','37308','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86263','37310','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86264','37311','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86282','37333','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86283','37334','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86284','37335','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86285','37336','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86286','37337','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86287','37338','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86288','37348','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86289','37349','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86290','37355','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86291','37356','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86292','37357','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86293','37360','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86294','37362','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86295','37364','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86296','37365','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86314','37387','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86315','37388','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86316','37389','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86317','37390','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86318','37391','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86319','37392','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86320','37402','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86321','37403','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86322','37409','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86323','37410','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86324','37411','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86325','37414','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86326','37416','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86327','37418','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86328','37419','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86346','37441','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86347','37442','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86348','37443','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86349','37444','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86350','37445','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86351','37446','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86352','37456','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86353','37457','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86354','37463','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86355','37464','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86356','37465','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86357','37468','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86358','37470','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86359','37472','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86360','37473','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86378','37495','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86379','37496','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86380','37497','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86381','37498','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86382','37499','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86383','37500','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86384','37510','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86385','37511','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86386','37517','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86387','37518','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86388','37519','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86389','37522','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86390','37524','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86391','37526','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86392','37527','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86410','37549','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86411','37550','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86412','37551','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86413','37552','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86414','37553','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86415','37554','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86416','37564','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86417','37565','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86418','37571','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86419','37572','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86420','37573','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86421','37576','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86422','37578','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86423','37580','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86424','37581','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86442','37603','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86443','37604','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86444','37605','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86445','37606','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86446','37607','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86447','37608','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86448','37618','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86449','37619','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86450','37625','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86451','37626','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86452','37627','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86453','37630','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86454','37632','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86455','37634','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86456','37635','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86474','37657','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86475','37658','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86476','37659','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86477','37660','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86478','37661','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86479','37662','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86480','37672','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86481','37673','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86482','37679','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86483','37680','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86484','37681','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86485','37684','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86486','37686','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86487','37688','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86488','37689','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86506','37711','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86507','37712','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86508','37713','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86509','37714','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86510','37715','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86511','37716','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86512','37726','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86513','37727','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86514','37733','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86515','37734','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86516','37735','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86517','37738','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86518','37740','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86519','37742','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86520','37743','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86538','37765','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86539','37766','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86540','37767','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86541','37768','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86542','37769','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86543','37770','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86544','37780','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86545','37781','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86546','37787','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86547','37788','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86548','37789','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86549','37792','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86550','37794','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86551','37796','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86552','37797','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86570','37819','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86571','37820','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86572','37821','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86573','37822','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86574','37823','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86575','37824','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86576','37834','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86577','37835','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86578','37841','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86579','37842','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86580','37843','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86581','37846','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86582','37848','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86583','37850','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86584','37851','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86602','37873','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86603','37874','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86604','37875','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86605','37876','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86606','37877','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86607','37878','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86608','37888','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86609','37889','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86610','37895','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86611','37896','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86612','37897','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86613','37900','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86614','37902','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86615','37904','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86616','37905','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86634','37927','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86635','37928','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86636','37929','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86637','37930','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86638','37931','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86639','37932','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86640','37942','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86641','37943','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86642','37949','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86643','37950','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86644','37951','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86645','37954','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86646','37956','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86647','37958','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86648','37959','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86666','37981','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86667','37982','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86668','37983','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86669','37984','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86670','37985','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86671','37986','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86672','37996','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86673','37997','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86674','38003','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86675','38004','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86676','38005','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86677','38008','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86678','38010','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86679','38012','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86680','38013','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86698','38035','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86699','38036','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86700','38037','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86701','38038','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86702','38039','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86703','38040','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86704','38050','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86705','38051','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86706','38057','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86707','38058','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86708','38059','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86709','38062','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86710','38064','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86711','38066','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86712','38067','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86730','38089','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86731','38090','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86732','38091','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86733','38092','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86734','38093','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86735','38094','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86736','38104','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86737','38105','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86738','38111','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86739','38112','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86740','38113','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86741','38116','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86742','38118','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86743','38120','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86744','38121','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86762','38143','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86763','38144','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86764','38145','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86765','38146','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86766','38147','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86767','38148','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86768','38158','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86769','38159','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86770','38165','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86771','38166','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86772','38167','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86773','38170','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86774','38172','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86775','38174','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86776','38175','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86794','38197','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86795','38198','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86796','38199','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86797','38200','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86798','38201','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86799','38202','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86800','38212','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86801','38213','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86802','38219','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86803','38220','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86804','38221','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86805','38224','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86806','38226','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86807','38228','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86808','38229','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86826','38251','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86827','38252','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86828','38253','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86829','38254','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86830','38255','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86831','38256','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86832','38266','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86833','38267','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86834','38273','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86835','38274','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86836','38275','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86837','38278','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86838','38280','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86839','38282','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86840','38283','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86858','38305','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86859','38306','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86860','38307','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86861','38308','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86862','38309','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86863','38310','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86864','38320','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86865','38321','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86866','38327','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86867','38328','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86868','38329','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86869','38332','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86870','38334','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86871','38336','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86872','38337','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86890','38359','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86891','38360','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86892','38361','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86893','38362','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86894','38363','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86895','38364','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86896','38374','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86897','38375','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86898','38381','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86899','38382','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86900','38383','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86901','38386','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86902','38388','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86903','38390','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86904','38391','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86922','38413','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86923','38414','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86924','38415','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86925','38416','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86926','38417','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86927','38418','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86928','38428','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86929','38429','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86930','38435','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86931','38436','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86932','38437','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86933','38440','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86934','38442','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86935','38444','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86936','38445','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86954','38467','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86955','38468','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86956','38469','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86957','38470','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86958','38471','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86959','38472','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86960','38482','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86961','38483','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86962','38489','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86963','38490','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86964','38491','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86965','38494','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86966','38496','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86967','38498','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86968','38499','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86986','38521','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86987','38522','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86988','38523','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86989','38524','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86990','38525','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86991','38526','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86992','38536','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86993','38537','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86994','38543','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86995','38544','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86996','38545','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86997','38548','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86998','38550','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('86999','38552','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87000','38553','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87018','38575','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87019','38576','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87020','38577','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87021','38578','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87022','38579','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87023','38580','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87024','38590','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87025','38591','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87026','38597','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87027','38598','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87028','38599','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87029','38602','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87030','38604','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87031','38606','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87032','38607','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87050','38629','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87051','38630','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87052','38631','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87053','38632','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87054','38633','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87055','38634','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87056','38644','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87057','38645','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87058','38651','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87059','38652','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87060','38653','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87061','38656','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87062','38658','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87063','38660','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87064','38661','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87082','38683','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87083','38684','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87084','38685','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87085','38686','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87086','38687','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87087','38688','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87088','38698','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87089','38699','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87090','38705','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87091','38706','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87092','38707','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87093','38710','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87094','38712','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87095','38714','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87096','38715','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87114','38737','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87115','38738','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87116','38739','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87117','38740','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87118','38741','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87119','38742','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87120','38752','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87121','38753','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87122','38759','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87123','38760','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87124','38761','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87125','38764','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87126','38766','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87127','38768','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87128','38769','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87146','38791','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87147','38792','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87148','38793','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87149','38794','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87150','38795','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87151','38796','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87152','38806','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87153','38807','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87154','38813','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87155','38814','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87156','38815','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87157','38818','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87158','38820','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87159','38822','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87160','38823','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87178','38845','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87179','38846','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87180','38847','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87181','38848','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87182','38849','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87183','38850','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87184','38860','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87185','38861','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87186','38867','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87187','38868','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87188','38869','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87189','38872','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87190','38874','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87191','38876','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87192','38877','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87210','38899','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87211','38900','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87212','38901','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87213','38902','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87214','38903','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87215','38904','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87216','38914','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87217','38915','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87218','38921','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87219','38922','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87220','38923','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87221','38926','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87222','38928','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87223','38930','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87224','38931','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87242','38953','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87243','38954','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87244','38955','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87245','38956','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87246','38957','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87247','38958','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87248','38968','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87249','38969','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87250','38975','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87251','38976','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87252','38977','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87253','38980','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87254','38982','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87255','38984','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87256','38985','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87274','39007','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87275','39008','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87276','39009','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87277','39010','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87278','39011','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87279','39012','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87280','39022','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87281','39023','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87282','39029','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87283','39030','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87284','39031','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87285','39034','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87286','39036','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87287','39038','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87288','39039','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87306','39061','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87307','39062','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87308','39063','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87309','39064','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87310','39065','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87311','39066','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87312','39076','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87313','39077','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87314','39083','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87315','39084','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87316','39085','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87317','39088','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87318','39090','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87319','39092','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87320','39093','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87338','39115','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87339','39116','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87340','39117','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87341','39118','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87342','39119','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87343','39120','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87344','39130','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87345','39131','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87346','39137','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87347','39138','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87348','39139','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87349','39142','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87350','39144','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87351','39146','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87352','39147','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87370','39169','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87371','39170','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87372','39171','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87373','39172','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87374','39173','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87375','39174','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87376','39184','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87377','39185','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87378','39191','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87379','39192','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87380','39193','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87381','39196','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87382','39198','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87383','39200','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87384','39201','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87402','39223','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87403','39224','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87404','39225','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87405','39226','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87406','39227','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87407','39228','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87408','39238','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87409','39239','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87410','39245','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87411','39246','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87412','39247','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87413','39250','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87414','39252','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87415','39254','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87416','39255','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87434','39277','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87435','39278','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87436','39279','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87437','39280','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87438','39281','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87439','39282','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87440','39292','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87441','39293','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87442','39299','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87443','39300','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87444','39301','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87445','39304','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87446','39306','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87447','39308','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87448','39309','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87466','39331','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87467','39332','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87468','39333','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87469','39334','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87470','39335','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87471','39336','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87472','39346','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87473','39347','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87474','39353','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87475','39354','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87476','39355','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87477','39358','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87478','39360','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87479','39362','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87480','39363','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87498','39385','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87499','39386','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87500','39387','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87501','39388','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87502','39389','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87503','39390','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87504','39400','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87505','39401','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87506','39407','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87507','39408','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87508','39409','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87509','39412','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87510','39414','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87511','39416','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87512','39417','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87530','39439','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87531','39440','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87532','39441','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87533','39442','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87534','39443','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87535','39444','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87536','39454','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87537','39455','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87538','39461','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87539','39462','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87540','39463','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87541','39466','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87542','39468','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87543','39470','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87544','39471','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87562','39493','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87563','39494','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87564','39495','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87565','39496','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87566','39497','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87567','39498','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87568','39508','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87569','39509','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87570','39515','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87571','39516','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87572','39517','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87573','39520','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87574','39522','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87575','39524','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87576','39525','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87594','39547','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87595','39548','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87596','39549','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87597','39550','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87598','39551','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87599','39552','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87600','39562','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87601','39563','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87602','39569','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87603','39570','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87604','39571','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87605','39574','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87606','39576','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87607','39578','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87608','39579','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87626','39601','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87627','39602','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87628','39603','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87629','39604','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87630','39605','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87631','39606','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87632','39616','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87633','39617','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87634','39623','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87635','39624','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87636','39625','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87637','39628','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87638','39630','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87639','39632','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87640','39633','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87658','39655','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87659','39656','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87660','39657','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87661','39658','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87662','39659','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87663','39660','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87664','39670','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87665','39671','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87666','39677','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87667','39678','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87668','39679','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87669','39682','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87670','39684','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87671','39686','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87672','39687','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87690','39709','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87691','39710','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87692','39711','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87693','39712','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87694','39713','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87695','39714','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87696','39724','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87697','39725','1','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87698','39731','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87699','39732','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87700','39733','1','20','15m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87701','39736','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87702','39738','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87703','39740','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87704','39741','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87705','39742','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87706','39744','1','16','$.error','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87707','39745','1','12','$.error','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87708','39745','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87709','39746','1','12','$.info.apiVersion','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87710','39747','1','12','$.info.build','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87711','39747','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87712','39748','1','12','$.info.version','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87713','39748','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87714','39749','1','12','$.edges','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87715','39749','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87716','39750','1','12','$.gateways','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87717','39750','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87718','39751','1','12','$.links','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87719','39751','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87720','39752','1','12','$.edgeSDWanPath','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87721','39752','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87722','39753','1','12','$.edgeSDWan','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87723','39753','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87724','39754','1','12','$.edges[?(@.id==\'{#ID}\')].activationState.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87725','39754','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87726','39754','3','21','switch (value) {\n case \'PENDING\':\n return 0\n case \'ACTIVATED\':\n return 1\n default:\n return 10\n}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87727','39755','1','12','$.edges[?(@.id==\'{#ID}\')].description.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87728','39755','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87729','39756','1','12','$.edges[?(@.id==\'{#ID}\')].haState.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87730','39756','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87731','39756','3','21','switch (value) {\n case \'UNCONFIGURED\':\n return 0\n case \'READY\':\n return 1\n case \'PENDING_INIT\':\n return 2\n case \'FAILED\':\n return 3\n default:\n return 10\n}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87732','39757','1','12','$.edges[?(@.id==\'{#ID}\')].modelNumber.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87733','39757','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87734','39758','1','12','$.edges[?(@.id==\'{#ID}\')].serviceUpSince.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87735','39758','2','21','value == \'0000-00-00 00:00:00\' ? value = 0 : value = Math.round((Date.now() - new Date(value).valueOf()) / 1000)\nreturn value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87736','39759','1','12','$.edges[?(@.id==\'{#ID}\')].softwareVersion.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87737','39759','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87738','39760','1','12','$.edges[?(@.id==\'{#ID}\')].edgeState.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87739','39760','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87740','39760','3','21','switch (value) {\n case \'OFFLINE\':\n return 0\n case \'CONNECTED\':\n return 1\n case \'NEVER_ACTIVATED\':\n return 2\n default:\n return 10\n}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87741','39761','1','12','$.edges[?(@.id==\'{#ID}\')].systemUpSince.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87742','39761','2','21','value == \'0000-00-00 00:00:00\' ? value = 0 : value = Math.round((Date.now() - new Date(value).valueOf()) / 1000)\nreturn value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87743','39762','1','12','$.gateways[?(@.id==\'{#ID}\')].connectedEdges.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87744','39763','1','12','$.gateways[?(@.id==\'{#ID}\')].description.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87745','39763','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87746','39764','1','12','$.gateways[?(@.id==\'{#ID}\')].ipAddress.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87747','39764','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87748','39765','1','12','$.gateways[?(@.id==\'{#ID}\')].serviceUpSince.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87749','39765','2','21','value == \'0000-00-00 00:00:00\' ? value = 0 : value = Math.round((Date.now() - new Date(value).valueOf()) / 1000)\nreturn value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87750','39766','1','12','$.gateways[?(@.id==\'{#ID}\')].gatewayState.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87751','39766','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87752','39767','1','12','$.gateways[?(@.id==\'{#ID}\')].systemUpSince.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87753','39767','2','21','value == \'0000-00-00 00:00:00\' ? value = 0 : value = Math.round((Date.now() - new Date(value).valueOf()) / 1000)\nreturn value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87754','39768','1','12','$.gateways[?(@.id==\'{#ID}\')].utilizationDetail.cpu.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87755','39769','1','12','$.gateways[?(@.id==\'{#ID}\')].utilizationDetail.load.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87756','39770','1','12','$.gateways[?(@.id==\'{#ID}\')].utilizationDetail.memory.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87757','39771','1','12','$.gateways[?(@.id==\'{#ID}\')].utilizationDetail.overall.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87758','39772','1','12','$.links[?(@.linkId==\'{#ID}\')].bestLossPctRx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87759','39773','1','12','$.links[?(@.linkId==\'{#ID}\')].bestLossPctTx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87760','39774','1','12','$.links[?(@.linkId==\'{#ID}\')].bytesRx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87761','39775','1','12','$.links[?(@.linkId==\'{#ID}\')].bytesTx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87762','39776','1','12','$.links[?(@.linkId==\'{#ID}\')].link.linkLastActive.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87763','39776','2','21','return Math.round((Date.now() - new Date(value).valueOf()) / 1000)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87764','39777','1','12','$.links[?(@.linkId== \'{#ID}\')].packetsRx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87765','39778','1','12','$.links[?(@.linkId==\'{#ID}\')].packetsTx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87766','39779','1','12','$.links[?(@.linkId==\'{#ID}\')].link.linkState.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87767','39779','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87768','39779','3','21','switch (value) {\n case \'UNSTABLE\':\n return 0\n case \'STABLE\':\n return 1\n case \'DISCONNECTED\':\n return 2\n default:\n return 10\n}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87769','39780','1','12','$.links[?(@.linkId==\'{#ID}\')].totalBytes.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87770','39781','1','12','$.links[?(@.linkId==\'{#ID}\')].totalPackets.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87771','39782','1','12','$.edgeSDWanPath[?(@.source.linkName==\'{#NAME}\' && @.source.deviceName==\'{#SOURCE}\' && @.destination.deviceName==\'{#DESTINATION}\')].metrics.bytesRx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87772','39783','1','12','$.edgeSDWanPath[?(@.source.linkName==\'{#NAME}\' && @.source.deviceName==\'{#SOURCE}\' && @.destination.deviceName==\'{#DESTINATION}\')].metrics.bytesTx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87773','39784','1','12','$.edgeSDWanPath[?(@.source.linkName==\'{#NAME}\' && @.source.deviceName==\'{#SOURCE}\' && @.destination.deviceName==\'{#DESTINATION}\')].metrics.packetsRx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87774','39785','1','12','$.edgeSDWanPath[?(@.source.linkName==\'{#NAME}\' && @.source.deviceName==\'{#SOURCE}\' && @.destination.deviceName==\'{#DESTINATION}\')].metrics.packetsTx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87775','39786','1','12','$.edgeSDWanPath[?(@.source.linkName==\'{#NAME}\' && @.source.deviceName==\'{#SOURCE}\' && @.destination.deviceName==\'{#DESTINATION}\')].metrics.packetLossRx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87776','39787','1','12','$.edgeSDWanPath[?(@.source.linkName==\'{#NAME}\' && @.source.deviceName==\'{#SOURCE}\' && @.destination.deviceName==\'{#DESTINATION}\')].metrics.packetLossTx.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87777','39788','1','12','$.edgeSDWanPath[?(@.source.linkName==\'{#NAME}\' && @.source.deviceName==\'{#SOURCE}\' && @.destination.deviceName==\'{#DESTINATION}\')].metrics.totalBytes.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87778','39789','1','12','$.edgeSDWanPath[?(@.source.linkName==\'{#NAME}\' && @.source.deviceName==\'{#SOURCE}\' && @.destination.deviceName==\'{#DESTINATION}\')].metrics.totalPackets.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87779','39790','1','12','$.edgeSDWan[?(@.deviceLogicalId==\'{#ID}\' && @.edgeId==\'{#EDGE.ID}\')].pathStatusCount.dead.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87780','39791','1','12','$.edgeSDWan[?(@.deviceLogicalId==\'{#ID}\' && @.edgeId==\'{#EDGE.ID}\')].description.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87781','39791','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87782','39792','1','12','$.edgeSDWan[?(@.deviceLogicalId==\'{#ID}\' && @.edgeId==\'{#EDGE.ID}\')].pathStatusCount.stable.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87783','39793','1','12','$.edgeSDWan[?(@.deviceLogicalId==\'{#ID}\' && @.edgeId==\'{#EDGE.ID}\')].pathStatusCount.standby.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87784','39794','1','12','$.edgeSDWan[?(@.deviceLogicalId==\'{#ID}\' && @.edgeId==\'{#EDGE.ID}\')].pathStatusCount.total.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87785','39795','1','12','$.edgeSDWan[?(@.deviceLogicalId==\'{#ID}\' && @.edgeId==\'{#EDGE.ID}\')].pathStatusCount.unknown.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87786','39796','1','12','$.edgeSDWan[?(@.deviceLogicalId==\'{#ID}\' && @.edgeId==\'{#EDGE.ID}\')].pathStatusCount.unstable.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87791','39803','1','12','$.cpu_stats.cpu_usage.percent_usage','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87792','39808','1','12','$.[?(@.id=="{#NODE.ID}")].address.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87793','39808','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87794','39809','1','12','$.[?(@.id=="{#NODE.ID}")].lastaccess_age.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87795','39810','1','12','$.[?(@.id=="{#NODE.ID}")].lastaccess.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87796','39811','1','12','$.[?(@.id=="{#NODE.ID}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87797','39811','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87798','39812','1','12','$.[?(@.id=="{#NODE.ID}")].address.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87799','39812','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87800','39813','1','12','$.[?(@.id=="{#NODE.ID}")].lastaccess_age.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87801','39814','1','12','$.[?(@.id=="{#NODE.ID}")].lastaccess.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87802','39815','1','12','$.[?(@.id=="{#NODE.ID}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87803','39815','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87804','39816','1','12','$.data.ha','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87805','39817','1','12','$.data.ha[?(@.id=="{#NODE.ID}")].address.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87806','39817','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87807','39818','1','12','$.data.ha[?(@.id=="{#NODE.ID}")].lastaccess_age.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87808','39819','1','12','$.data.ha[?(@.id=="{#NODE.ID}")].lastaccess.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87809','39820','1','12','$.data.ha[?(@.id=="{#NODE.ID}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87810','39820','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87811','31439','1','21','return (100 - value)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87813','32021','1','21','return (100 - value)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87815','39821','1','12','$.receive','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87816','39821','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87817','31358','3','10','','2','-1');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87818','39824','1','12','$.data.process[\'odbc poller\'].busy.avg','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87819','39825','1','12','$.data.process[\'odbc poller\'].busy.avg','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87820','39827','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87821','39829','1','22','apiserver_request_terminations_total\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87822','39829','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87823','39830','1','22','grpc_client_msg_sent_total\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87824','39830','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87825','39831','1','22','rest_client_requests_total{code =~ "4.."}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87826','39831','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87827','39832','1','22','rest_client_requests_total{code =~ "3.."}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87828','39832','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87829','39833','1','22','rest_client_requests_total{code =~ "2.."}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87830','39833','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87831','39834','1','22','process_virtual_memory_bytes\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87832','39835','1','22','process_resident_memory_bytes\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87833','39836','1','22','process_open_fds\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87834','39837','1','22','process_max_fds\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87835','39838','1','22','grpc_client_started_total\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87836','39838','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87837','39839','1','22','go_threads\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87838','39840','1','22','grpc_client_msg_received_total\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87839','39840','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87840','39841','1','22','apiserver_request_total{code = "0"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87841','39841','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87842','39842','1','22','go_goroutines\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87843','39843','1','22','process_cpu_seconds_total\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87844','39843','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87845','39843','3','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87846','39844','1','22','apiserver_audit_event_total\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87847','39845','1','22','apiserver_tls_handshake_errors_total\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87848','39846','1','22','apiserver_request_total{code =~ "5.."}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87849','39846','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87850','39847','1','22','apiserver_request_total{code =~ "4.."}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87851','39847','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87852','39848','1','22','apiserver_request_total{code =~ "3.."}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87853','39848','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87854','39849','1','22','apiserver_request_total{code =~ "2.."}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87855','39849','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87856','39850','1','22','rest_client_requests_total{code =~ "5.."}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87857','39850','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87858','39851','1','23','apiserver_registered_watchers{kind =~ ".*"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87859','39851','2','21','var lookup = {},\n result = [];\n\nJSON.parse(value).forEach(function (item) {\n var kind = item.labels.kind;\n if (!(lookup[kind])) {\n lookup[kind] = 1;\n result.push({ \'{#KIND}\': kind });\n }\n});\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87860','39851','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87861','39852','1','23','authenticated_user_requests{username =~ ".*"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87862','39852','2','21','var lookup = {},\n result = [];\n\nJSON.parse(value).forEach(function (item) {\n var name = item.labels.username;\n if (!(lookup[result])) {\n lookup[name] = 1;\n result.push({ \'{#NAME}\': name });\n }\n});\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87863','39852','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87864','39853','1','23','authentication_attempts{result =~ ".*"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87865','39853','2','21','var lookup = {},\n result = [];\n\nJSON.parse(value).forEach(function (item) {\n var result_api = item.labels.result;\n if (!(lookup[result])) {\n lookup[result_api] = 1;\n result.push({ \'{#RESULT}\': result_api });\n }\n});\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87866','39853','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87867','39854','1','23','{__name__=~ "apiserver_client_certificate_expiration_seconds_*"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87868','39854','2','21','var lookup = {},\n result = [];\n\nJSON.parse(value).forEach(function (item) {\n if (item.name === "apiserver_client_certificate_expiration_seconds_count"){\n result.push({\n \'{#TYPE}\': \'totals\',\n \'{#SINGLETON}\': \'\'\n });\n\n }\n else if (item.name === "apiserver_client_certificate_expiration_seconds_bucket"){\n result.push({\n \'{#TYPE}\': \'buckets\',\n \'{#LE}\': item.labels.le\n });\n }\n});\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87869','39854','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87870','39855','1','23','etcd_object_counts{resource =~ ".*"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87871','39855','2','21','var lookup = {},\n result = [];\n\nJSON.parse(value).forEach(function (item) {\n var resource = item.labels.resource;\n if (!(lookup[resource])) {\n lookup[resource] = 1;\n result.push({ \'{#RESOURCE}\': resource });\n }\n});\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87872','39855','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87873','39856','1','23','grpc_client_handled_total{grpc_code =~ ".*"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87874','39856','2','21','var lookup = {},\n result = [];\n\nJSON.parse(value).forEach(function (item) {\n var grpc_code = item.labels.grpc_code;\n if (!(lookup[grpc_code])) {\n lookup[grpc_code] = 1;\n result.push({ \'{#GRPC_CODE}\': grpc_code });\n }\n});\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87875','39856','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87876','39857','1','23','apiserver_current_inflight_requests{request_kind =~ ".*"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87877','39857','2','21','var lookup = {},\n result = [];\n\nJSON.parse(value).forEach(function (item) {\n var request_kind = item.labels.request_kind;\n if (!(lookup[request_kind])) {\n lookup[request_kind] = 1;\n result.push({ \'{#KIND}\': request_kind });\n }\n});\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87878','39857','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87879','39858','1','23','apiserver_longrunning_gauge{resource =~ ".*", scope =~ ".*", verb =~ ".*"}','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87880','39858','2','21','var lookup = {},\n result = [];\n\nJSON.parse(value).forEach(function (item) {\n var request_kind = item.labels.resource + item.labels.scope + item.labels.verb;\n if (!(lookup[request_kind])) {\n lookup[request_kind] = 1;\n result.push({\n \'{#RESOURCE}\': item.labels.resource,\n \'{#SCOPE}\': item.labels.scope,\n \'{#VERB}\': item.labels.verb\n });\n }\n});\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87881','39858','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87882','39859','1','23','{__name__=~ "apiserver_request_duration_*", verb =~ ".*"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87883','39859','2','21','var lookup = {},\n lookup_histogram = {},\n result = [];\n\nJSON.parse(value).forEach(function (item) {\n if (item.name === \'apiserver_request_duration_seconds_count\') {\n var label_verb = item.labels.verb;\n if (lookup[label_verb]) {\n return;\n }\n lookup[label_verb] = 1;\n result.push({\n \'{#TYPE}\': \'totals\',\n \'{#VERB}\': label_verb\n });\n\n }\n else if (item.name === \'apiserver_request_duration_seconds_bucket\') {\n var labels = item.labels.verb + item.labels.le;\n\n if (lookup_histogram[labels]) {\n return;\n }\n\n lookup_histogram[labels] = 1;\n result.push({\n \'{#TYPE}\': \'buckets\',\n \'{#VERB}\': item.labels.verb,\n \'{#LE}\': item.labels.le\n });\n }\n});\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87884','39859','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87885','39860','1','23','workqueue_adds_total{name =~ ".*"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87886','39860','2','21','var lookup = {},\n result = [];\n\nJSON.parse(value).forEach(function (item) {\n var name = item.labels.name;\n if (!(lookup[name])) {\n lookup[name] = 1;\n result.push({ \'{#NAME}\': name });\n }\n});\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87887','39860','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87888','39865','1','22','apiserver_registered_watchers{kind = "{#KIND}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87889','39866','1','22','authenticated_user_requests{result = "{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87890','39866','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87891','39867','1','22','authentication_attempts{result = "{#RESULT}"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87892','39867','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87893','39868','1','22','apiserver_client_certificate_expiration_seconds_bucket{le = "{#LE}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87894','39869','1','22','etcd_object_counts{ resource = "{#RESOURCE}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87895','39870','1','22','grpc_client_handled_total{grpc_code = "{#GRPC_CODE}"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87896','39870','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87897','39871','1','22','apiserver_current_inflight_requests{request_kind = "{#KIND}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87898','39872','1','22','apiserver_longrunning_gauge{resource = "{#RESOURCE}", scope = "{#SCOPE}", verb = "{#VERB}"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87899','39873','1','22','apiserver_request_duration_seconds_bucket{le="{#LE}",verb="{#VERB}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87900','39874','1','22','workqueue_adds_total{name = "{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87901','39874','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87902','39875','1','22','workqueue_depth{name = "{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87903','39876','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87904','39877','1','22','rest_client_requests_total{code =~ "2.."}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87905','39877','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87906','39878','1','22','rest_client_requests_total{code =~ "3.."}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87907','39878','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87908','39879','1','22','rest_client_requests_total{code =~ "4.."}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87909','39879','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87910','39880','1','22','rest_client_requests_total{code =~ "5.."}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87911','39880','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87912','39881','1','22','process_cpu_seconds_total\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87913','39881','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87914','39881','3','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87915','39882','1','22','go_goroutines\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87916','39883','1','22','go_threads\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87917','39884','1','22','leader_election_master_status\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87918','39885','1','22','process_max_fds\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87919','39886','1','22','process_open_fds\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87920','39887','1','22','process_resident_memory_bytes\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87921','39888','1','22','process_virtual_memory_bytes\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87922','39889','1','23','{__name__=~ "workqueue_*", name =~ ".*"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87923','39889','2','21','var lookup = {},\n result = [];\n\nJSON.parse(value).forEach(function (item) {\n if (item.name === \'workqueue_adds_total\') {\n var label_name = item.labels.name;\n\n if (lookup[label_name]) {\n return;\n }\n lookup[label_name] = 1;\n result.push({\n \'{#TYPE}\': \'totals\',\n \'{#NAME}\': label_name\n });\n }\n else if (item.name === \'workqueue_work_duration_seconds_bucket\') {\n result.push({\n \'{#TYPE}\': \'buckets\',\n \'{#NAME}\': item.labels.name,\n \'{#LE}\': item.labels.le\n });\n }\n});\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87924','39889','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87925','39891','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87926','39898','1','22','workqueue_work_duration_seconds_bucket{name = "{#NAME}",le = "{#LE}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87927','39899','1','22','workqueue_queue_duration_seconds_bucket{name = "{#NAME}",le = "{#LE}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87928','39900','1','22','workqueue_adds_total{name = "{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87929','39900','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87930','39901','1','22','workqueue_depth{name = "{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87931','39902','1','22','workqueue_longest_running_processor_seconds{name = "{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87932','39903','1','22','workqueue_retries_total{name = "{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87933','39903','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87934','39904','1','22','workqueue_unfinished_work_seconds{name = "{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87935','39908','1','12','$.items[*].status.containerStatuses[*].restartCount.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87936','39909','1','12','$.items[*].status.containerStatuses[*].restartCount.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87937','39910','1','22','machine_cpu_cores\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87938','39911','1','22','process_resident_memory_bytes\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87939','39912','1','12','$.items[?(@.status.phase == "Running")].length()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87940','39913','1','22','process_max_fds\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87941','39914','1','22','process_open_fds\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87942','39915','1','22','process_virtual_memory_bytes\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87943','39916','1','12','$.items[*].status.containerStatuses[?(@.lastState.terminated.exitCode > 0)].length()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87944','39917','1','23','container_memory_cache{container =~ ".*", namespace =~ ".*", pod =~ "POD"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87945','39917','2','21','var lookup = {},\n result = [];\n\nJSON.parse(value).forEach(function (item) {\n var container_labels = item.labels.container + item.labels.namespace + item.labels.pod;\n if (item.labels.container !== \'\' && !lookup[container_labels]) {\n lookup[container_labels] = 1;\n result.push({\n \'{#CONTAINER}\': item.labels.container,\n \'{#NAMESPACE}\': item.labels.namespace,\n \'{#POD}\': item.labels.pod\n });\n }\n})\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87946','39918','1','21','var input = JSON.parse(value),\n output = [];\n\ninput.items.forEach(function (pod) {\n output.push({\n \'{#NAME}\': pod.metadata.name,\n \'{#NAMESPACE}\': pod.metadata.namespace\n });\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87947','39919','1','23','rest_client_requests_total{code =~ ".*", host =~ ".*", method =~ ".*"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87948','39919','2','21','var lookup = {},\n result = [];\n\nJSON.parse(value).forEach(function (item) {\n var request_labels = item.labels.code + item.labels.host + item.labels.method;\n if (!(lookup[request_labels])) {\n lookup[request_labels] = 1;\n result.push({\n \'{#CODE}\': item.labels.code,\n \'{#HOST}\': item.labels.host,\n \'{#METHOD}\': item.labels.method\n });\n }\n})\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87949','39920','1','23','{__name__=~ "kubelet_runtime_operations_*", operation_type =~ ".*"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87950','39920','2','21','var lookup = {},\n lookup_histogram = {},\n result = [];\n\nJSON.parse(value).forEach(function (item) {\n if (item.name === \'kubelet_runtime_operations_total\'){\n var op_type = item.labels.operation_type;\n\n if (lookup[op_type]) {\n return;\n }\n lookup[op_type] = 1;\n result.push({\n \'{#TYPE}\': \'totals\',\n \'{#OP_TYPE}\': op_type\n });\n }\n\n else if (item.name === \'kubelet_runtime_operations_duration_seconds_bucket\'){\n var labels = item.labels.operation_type + item.labels.le;\n\n if (lookup_histogram[labels]) {\n return;\n }\n lookup_histogram[labels] = 1;\n result.push({\n \'{#TYPE}\': \'buckets\',\n \'{#OP_TYPE}\': item.labels.operation_type,\n \'{#LE}\': item.labels.le\n });\n }\n});\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87951','39920','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87952','39925','1','22','container_memory_cache{container="{#CONTAINER}", namespace="{#NAMESPACE}", pod="{#POD}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87953','39925','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87954','39926','1','22','container_memory_max_usage_bytes{container="{#CONTAINER}", namespace="{#NAMESPACE}", pod="{#POD}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87955','39926','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87956','39927','1','22','container_memory_rss{container="{#CONTAINER}", namespace="{#NAMESPACE}", pod="{#POD}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87957','39927','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87958','39928','1','22','container_memory_swap{container="{#CONTAINER}", namespace="{#NAMESPACE}", pod="{#POD}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87959','39928','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87960','39929','1','22','container_memory_usage_bytes{container="{#CONTAINER}", namespace="{#NAMESPACE}", pod="{#POD}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87961','39929','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87962','39930','1','22','container_memory_working_set_bytes{container="{#CONTAINER}", namespace="{#NAMESPACE}", pod="{#POD}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87963','39930','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87964','39931','1','22','container_cpu_load_average_10s{pod="{#NAME}", namespace="{#NAMESPACE}"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87965','39932','1','22','container_cpu_system_seconds_total{pod="{#NAME}", namespace="{#NAMESPACE}"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87966','39933','1','22','container_cpu_user_seconds_total{pod="{#NAME}", namespace="{#NAMESPACE}"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87967','39934','1','22','rest_client_requests_total{code="{#CODE}", host="{#HOST}", method="{#METHOD}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87968','39934','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87969','39935','1','22','kubelet_runtime_operations_duration_seconds_bucket{le="{#LE}",operation_type="{#OP_TYPE}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87970','39936','1','22','kubelet_runtime_operations_total{operation_type="{#OP_TYPE}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87971','39936','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87972','39938','1','12','$.error','2','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87973','39938','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87974','39939','1','21','function parseFilters(filter) {\n var pairs = {};\n\n filter.split(/\\s*,\\s*/).forEach(function (kv) {\n if (/([\\w\\.-]+\\/[\\w\\.-]+):\\s*.+/.test(kv)) {\n var pair = kv.split(/\\s*:\\s*/);\n pairs[pair[0]] = pair[1];\n }\n });\n\n return pairs;\n}\n\nfunction filter(name, data, filters) {\n var filtered = true;\n\n if (typeof data === \'object\') {\n Object.keys(filters).some(function (filter) {\n var exclude = filter.match(/^!(.+)/);\n if (filter in data || (exclude && exclude[1] in data)) {\n if ((exclude && new RegExp(filters[filter]).test(data[exclude[1]]))\n || (!exclude && !(new RegExp(filters[filter]).test(data[filter])))) {\n Zabbix.log(4, \'[ Kubernetes discovery ] Discarded "\' + name + \'" by filter "\' + filter + \': \' + filters[filter] + \'"\');\n\n filtered = false;\n return true;\n }\n };\n });\n }\n\n return filtered;\n}\n\ntry {\n var input = JSON.parse(value),\n output = [];\n api_url = \'{$KUBE.API.ENDPOINT.URL}\',\n hostname = api_url.match(/\\/\\/(.+):/);\n\n if (typeof hostname[1] === \'undefined\') {\n Zabbix.log(4, \'[ Kubernetes ] Received incorrect Kubernetes API url: \' + api_url + \'. Expected format: ://:\');\n throw \'Cannot get hostname from Kubernetes API url. Check debug log for more information.\';\n };\n\n if (typeof input !== \'object\' || typeof input.items === \'undefined\') {\n Zabbix.log(4, \'[ Kubernetes ] Received incorrect JSON: \' + input);\n throw \'Incorrect JSON. Check debug log for more information.\';\n }\n\n var filterLabels = parseFilters(\'{$KUBE.NODE.FILTER.LABELS}\'),\n filterAnnotations = parseFilters(\'{$KUBE.NODE.FILTER.ANNOTATIONS}\');\n\n input.items.forEach(function (node) {\n if (filter(node.metadata.name, node.metadata.labels, filterLabels)\n && filter(node.metadata.name, node.metadata.annotations, filterAnnotations)) {\n Zabbix.log(4, \'[ Kubernetes discovery ] Filtered node "\' + node.metadata.name + \'"\');\n\n var internalIPs = node.status.addresses.filter(function (addr) {\n return addr.type === \'InternalIP\';\n });\n\n var internalIP = internalIPs.length && internalIPs[0].address;\n\n if (internalIP in input.endpointIPs) {\n output.push({\n \'{#NAME}\': node.metadata.name,\n \'{#IP}\': internalIP,\n \'{#ROLES}\': node.status.roles,\n \'{#ARCH}\': node.metadata.labels[\'kubernetes.io/arch\'] || \'\',\n \'{#OS}\': node.metadata.labels[\'kubernetes.io/os\'] || \'\',\n \'{#CLUSTER_HOSTNAME}\': hostname[1]\n });\n }\n else {\n Zabbix.log(4, \'[ Kubernetes discovery ] Node "\' + node.metadata.name + \'" is not included in the list of endpoint IPs\');\n }\n }\n });\n\n return JSON.stringify(output);\n}\ncatch (error) {\n error += (String(error).endsWith(\'.\')) ? \'\' : \'.\';\n Zabbix.log(3, \'[ Kubernetes discovery ] ERROR: \' + error);\n throw \'Discovery error: \' + error;\n}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87975','39939','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87976','39942','1','21','function parseFilters(filter) {\n var pairs = {};\n\n filter.split(/\\s*,\\s*/).forEach(function (kv) {\n if (/([\\w\\.-]+\\/[\\w\\.-]+):\\s*.+/.test(kv)) {\n var pair = kv.split(/\\s*:\\s*/);\n pairs[pair[0]] = pair[1];\n }\n });\n\n return pairs;\n}\n\nfunction filter(name, data, filters) {\n var filtered = true;\n\n if (typeof data === \'object\') {\n Object.keys(filters).some(function (filter) {\n var exclude = filter.match(/^!(.+)/);\n if (filter in data || (exclude && exclude[1] in data)) {\n if ((exclude && new RegExp(filters[filter]).test(data[exclude[1]]))\n || (!exclude && !(new RegExp(filters[filter]).test(data[filter])))) {\n Zabbix.log(4, \'[ Kubernetes discovery ] Discarded "\' + name + \'" by filter "\' + filter + \': \' + filters[filter] + \'"\');\n\n filtered = false;\n return true;\n }\n };\n });\n }\n\n return filtered;\n}\n\ntry {\n var input = JSON.parse(value),\n output = [];\n\n if (typeof input !== \'object\' || typeof input.items === \'undefined\') {\n Zabbix.log(4, \'[ Kubernetes ] Received incorrect JSON: \' + input);\n throw \'Incorrect JSON. Check debug log for more information.\';\n }\n\n var filterNodeLabels = parseFilters(\'{$KUBE.NODE.FILTER.LABELS}\'),\n filterNodeAnnotations = parseFilters(\'{$KUBE.NODE.FILTER.ANNOTATIONS}\'),\n filterPodLabels = parseFilters(\'{$KUBE.POD.FILTER.LABELS}\'),\n filterPodAnnotations = parseFilters(\'{$KUBE.POD.FILTER.ANNOTATIONS}\');\n\n input.items.forEach(function (node) {\n if (filter(node.metadata.name, node.metadata.labels, filterNodeLabels)\n && filter(node.metadata.name, node.metadata.annotations, filterNodeAnnotations)) {\n node.pods.forEach(function (pod) {\n if (filter(pod.name, pod.labels, filterPodLabels)\n && filter(pod.name, pod.annotations, filterPodAnnotations)) {\n Zabbix.log(4, \'[ Kubernetes discovery ] Filtered pod "\' + pod.name + \'"\');\n\n output.push({\n \'{#POD}\': pod.name,\n \'{#NAMESPACE}\': pod.namespace,\n \'{#NODE}\': node.metadata.name\n });\n }\n });\n }\n });\n\n return JSON.stringify(output);\n}\ncatch (error) {\n error += (String(error).endsWith(\'.\')) ? \'\' : \'.\';\n Zabbix.log(3, \'[ Kubernetes discovery ] ERROR: \' + error);\n throw \'Discovery error: \' + error;\n}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87977','39942','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87978','39943','1','12','$.items[?(@.metadata.name == "{#NAME}")].status.addresses[?(@.type == "ExternalIP")].address.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87979','39943','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87980','39944','1','12','$.items[?(@.metadata.name == "{#NAME}")].status.nodeInfo.containerRuntimeVersion.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87981','39944','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87982','39945','1','12','$.items[?(@.metadata.name == "{#NAME}")].metadata.creationTimestamp.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87983','39945','2','21','return Math.floor((Date.now() - new Date(value)) / 1000);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87984','39946','1','12','$.items[?(@.metadata.name == "{#NAME}")].pods[*].containers.requests.memory.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87985','39947','1','12','$.items[?(@.metadata.name == "{#NAME}")].pods[*].containers.requests.cpu.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87986','39948','1','12','$.items[?(@.metadata.name == "{#NAME}")].pods[*].containers.limits.memory.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87987','39949','1','12','$.items[?(@.metadata.name == "{#NAME}")].pods[*].containers.limits.cpu.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87988','39950','1','12','$.items[?(@.metadata.name == "{#NAME}")].status.roles.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87989','39950','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87990','39951','1','12','$.items[?(@.metadata.name == "{#NAME}")].status.nodeInfo.kernelVersion.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87991','39951','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87992','39952','1','12','$.items[?(@.metadata.name == "{#NAME}")].status.nodeInfo.operatingSystem.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87993','39952','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87994','39953','1','12','$.items[?(@.metadata.name == "{#NAME}")].status.nodeInfo.kubeProxyVersion.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87995','39953','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87996','39954','1','12','$.items[?(@.metadata.name == "{#NAME}")].status.nodeInfo.kubeletVersion.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87997','39954','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87998','39955','1','12','$.items[?(@.metadata.name == "{#NAME}")].status.nodeInfo.kernelVersion.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('87999','39955','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88000','39956','1','12','$.items[?(@.metadata.name == "{#NAME}")].status.nodeInfo.architecture.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88001','39956','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88002','39957','1','12','$.items[?(@.metadata.name == "{#NAME}")].status.addresses[?(@.type == "InternalIP")].address.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88003','39957','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88004','39958','1','12','$.items[?(@.metadata.name == "{#NAME}")].status.conditions[?(@.type == "Ready")].status.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88005','39958','2','21','return [\'True\', \'False\', \'Unknown\'].indexOf(value) + 1 || \'Problem with status processing in JS\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88006','39959','1','12','$.items[?(@.metadata.name == "{#NAME}")].status.conditions[?(@.type == "PIDPressure")].status.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88007','39959','2','21','return [\'True\', \'False\', \'Unknown\'].indexOf(value) + 1 || \'Problem with status processing in JS\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88008','39960','1','12','$.items[?(@.metadata.name == "{#NAME}")].status.conditions[?(@.type == "NetworkUnavailable")].status.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88009','39960','2','21','return [\'True\', \'False\', \'Unknown\'].indexOf(value) + 1 || \'Problem with status processing in JS\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88010','39961','1','12','$.items[?(@.metadata.name == "{#NAME}")].status.conditions[?(@.type == "MemoryPressure")].status.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88011','39961','2','21','return [\'True\', \'False\', \'Unknown\'].indexOf(value) + 1 || \'Problem with status processing in JS\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88012','39962','1','12','$.items[?(@.metadata.name == "{#NAME}")].status.conditions[?(@.type == "DiskPressure")].status.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88013','39962','2','21','return [\'True\', \'False\', \'Unknown\'].indexOf(value) + 1 || \'Problem with status processing in JS\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88014','39963','1','12','$.items[?(@.metadata.name == "{#NAME}")].status.capacity.pods.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88015','39964','1','12','$.items[?(@.metadata.name == "{#NAME}")].status.capacity.memory.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88016','39965','1','12','$.items[?(@.metadata.name == "{#NAME}")].status.capacity.cpu.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88017','39966','1','12','$.items[?(@.metadata.name == "{#NAME}")].status.allocatable.pods.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88018','39967','1','12','$.items[?(@.metadata.name == "{#NAME}")].status.allocatable.memory.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88019','39968','1','12','$.items[?(@.metadata.name == "{#NAME}")].status.allocatable.cpu.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88020','39969','1','12','$.items[?(@.metadata.name == "{#NAME}")].status.podsCount.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88021','39970','1','12','$.items[?(@.metadata.name == "{#NODE}")].pods[?(@.name == "{#POD}")].conditions[?(@.type == "ContainersReady")].status.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88022','39970','2','21','return [\'True\', \'False\', \'Unknown\'].indexOf(value) + 1 || \'Problem with status processing in JS\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88023','39971','1','12','$.items[?(@.metadata.name == "{#NODE}")].pods[?(@.name == "{#POD}")].conditions[?(@.type == "Initialized")].status.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88024','39971','2','21','return [\'True\', \'False\', \'Unknown\'].indexOf(value) + 1 || \'Problem with status processing in JS\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88025','39972','1','12','$.items[?(@.metadata.name == "{#NODE}")].pods[?(@.name == "{#POD}")].conditions[?(@.type == "Ready")].status.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88026','39972','2','21','return [\'True\', \'False\', \'Unknown\'].indexOf(value) + 1 || \'Problem with status processing in JS\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88027','39973','1','12','$.items[?(@.metadata.name == "{#NODE}")].pods[?(@.name == "{#POD}")].conditions[?(@.type == "PodScheduled")].status.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88028','39973','2','21','return [\'True\', \'False\', \'Unknown\'].indexOf(value) + 1 || \'Problem with status processing in JS\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88029','39974','1','12','$.items[?(@.metadata.name == "{#NODE}")].pods[?(@.name == "{#POD}")].containers.restartCount.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88030','39975','1','12','$.items[?(@.metadata.name == "{#NODE}")].pods[?(@.name == "{#POD}")].phase.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88031','39975','2','21','return [\'Pending\', \'Running\', \'Succeeded\', \'Failed\', \'Unknown\'].indexOf(value) + 1 || \'Problem with status processing in JS\';','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88032','39976','1','12','$.items[?(@.metadata.name == "{#NODE}")].pods[?(@.name == "{#POD}")].startTime.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88033','39976','2','21','return Math.floor((Date.now() - new Date(value)) / 1000);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88034','39978','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88035','39986','1','22','rest_client_requests_total{code =~ "5.."}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88036','39986','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88037','39987','1','22','process_cpu_seconds_total\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88038','39987','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88039','39987','3','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88040','39988','1','22','rest_client_requests_total{code =~ "4.."}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88041','39988','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88042','39989','1','22','go_goroutines\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88043','39990','1','22','rest_client_requests_total{code =~ "3.."}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88044','39990','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88045','39991','1','22','process_max_fds\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88046','39992','1','22','process_open_fds\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88047','39993','1','22','process_resident_memory_bytes\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88048','39994','1','22','process_virtual_memory_bytes\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88049','39995','1','22','scheduler_schedule_attempts_total{result = "error"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88050','39995','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88051','39996','1','22','scheduler_schedule_attempts_total{result = "scheduled"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88052','39996','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88053','39997','1','22','scheduler_schedule_attempts_total{result = "unschedulable"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88054','39997','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88055','39998','1','22','rest_client_requests_total{code =~ "2.."}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88056','39998','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88057','39999','1','22','go_threads\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88058','40000','1','23','{__name__=~ "scheduler_e2e_scheduling_duration_*", result =~ ".*"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88059','40000','2','21','var lookup = {},\n result = [];\n\nJSON.parse(value).forEach(function (item) {\n if (item.name === "scheduler_e2e_scheduling_duration_seconds_count"){\n var label_result = item.labels.result;\n\n if (lookup[label_result]) {\n return;\n }\n lookup[label_result] = 1;\n result.push({\n \'{#TYPE}\': \'totals\',\n \'{#RESULT}\': label_result\n });\n\n }\n else if (item.name === "scheduler_e2e_scheduling_duration_seconds_bucket"){\n result.push({\n \'{#TYPE}\': \'buckets\',\n \'{#RESULT}\': item.labels.result,\n \'{#LE}\': item.labels.le\n });\n }\n});\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88060','40000','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88061','40001','1','23','{__name__=~ "scheduler_binding_duration_seconds_*"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88062','40001','2','21','var lookup = {},\n result = [];\nJSON.parse(value).forEach(function (item) {\n if (item.name === "scheduler_binding_duration_seconds_count"){\n result.push({\n \'{#TYPE}\': \'totals\',\n \'{#SINGLETON}\': \'\'\n });\n\n }\n else if (item.name === "scheduler_binding_duration_seconds_bucket"){\n result.push({\n \'{#TYPE}\': \'buckets\',\n \'{#LE}\': item.labels.le\n });\n }\n});\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88063','40001','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88064','40002','1','23','{__name__=~ "scheduler_scheduling_algorithm_duration_seconds_*"}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88065','40002','2','21','var lookup = {},\n result = [];\nJSON.parse(value).forEach(function (item) {\n if (item.name === "scheduler_scheduling_algorithm_duration_seconds_count"){\n result.push({\n \'{#TYPE}\': \'totals\',\n \'{#SINGLETON}\': \'\'\n });\n\n }\n else if (item.name === "scheduler_scheduling_algorithm_duration_seconds_bucket"){\n result.push({\n \'{#TYPE}\': \'buckets\',\n \'{#LE}\': item.labels.le\n });\n }\n});\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88066','40002','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88067','40007','1','22','scheduler_e2e_scheduling_duration_seconds_bucket{result = "{#RESULT}",le = "{#LE}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88068','40008','1','22','scheduler_binding_duration_seconds_bucket{le = "{#LE}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88069','40009','1','22','scheduler_scheduling_algorithm_duration_seconds_bucket{le = "{#LE}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88070','40012','1','21','var output = [],\n conponent;\n\nvalue.split(/\\n/).forEach(function (entry) {\n if (component = entry.match(/^\\[.+\\](.+)\\s(\\w+)$/)) {\n output.push({\n name: component[1],\n value: component[2]\n });\n }\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88071','40013','1','21','var output = [],\n component;\n\nvalue.split(/\\n/).forEach(function (entry) {\n if (component = entry.match(/^\\[.+\\](.+)\\s(\\w+)$/)) {\n output.push({\n name: component[1],\n value: component[2]\n });\n }\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88072','40016','1','22','kube_deployment_created\nfunction\ncount','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88073','40017','1','22','kube_namespace_created\nfunction\ncount','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88074','40018','1','22','kube_node_created\nfunction\ncount','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88075','40019','1','22','kube_service_created\nfunction\ncount','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88076','40020','1','22','kube_statefulset_created\nfunction\ncount','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88077','40022','1','21','var input = JSON.parse(value),\n output = [];\n\ninput.items.forEach(function (component) {\n output.push({\n \'{#NAME}\': component.metadata.name\n });\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88078','40022','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88079','40024','1','23','kube_daemonset_status_number_ready','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88080','40024','2','21','var input = JSON.parse(value),\n output = [];\n\ninput.forEach(function (metric) {\n output.push({\n \'{#NAME}\': metric.labels.daemonset,\n \'{#NAMESPACE}\': metric.labels.namespace\n });\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88081','40024','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88082','40025','1','23','kube_deployment_spec_paused','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88083','40025','2','21','var input = JSON.parse(value),\n output = [];\n\ninput.forEach(function (metric) {\n output.push({\n \'{#NAME}\': metric.labels.deployment,\n \'{#NAMESPACE}\': metric.labels.namespace\n });\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88084','40025','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88085','40026','1','23','kube_endpoint_created','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88086','40026','2','21','var input = JSON.parse(value),\n output = [];\n\ninput.forEach(function (metric) {\n output.push({\n \'{#NAME}\': metric.labels.endpoint,\n \'{#NAMESPACE}\': metric.labels.namespace\n });\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88087','40026','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88088','40027','1','21','var input = JSON.parse(value),\n output = [];\n\ninput.forEach(function (component) {\n output.push({\n \'{#NAME}\': component.name\n });\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88089','40027','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88090','40028','1','23','kube_node_info','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88091','40028','2','21','var input = JSON.parse(value),\n output = [];\n\ninput.forEach(function (metric) {\n output.push({\n \'{#NAME}\': metric.labels.node\n });\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88092','40028','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88093','40029','1','23','kube_pod_start_time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88094','40029','2','21','var input = JSON.parse(value),\n output = [];\n\ninput.forEach(function (metric) {\n output.push({\n \'{#NAME}\': metric.labels.pod,\n \'{#NAMESPACE}\': metric.labels.namespace\n });\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88095','40029','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88096','40030','1','23','kube_persistentvolumeclaim_info','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88097','40030','2','21','var input = JSON.parse(value),\n output = [];\n\ninput.forEach(function (metric) {\n output.push({\n \'{#NAME}\': metric.labels.persistentvolumeclaim,\n \'{#NAMESPACE}\': metric.labels.namespace\n\n });\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88098','40030','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88099','40031','1','21','var input = JSON.parse(value),\n output = [];\n\ninput.forEach(function (component) {\n output.push({\n \'{#NAME}\': component.name\n });\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88100','40031','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88101','40032','1','23','kube_replicaset_status_replicas','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88102','40032','2','21','var input = JSON.parse(value),\n output = [];\n\ninput.forEach(function (metric) {\n output.push({\n \'{#NAME}\': metric.labels.replicaset,\n \'{#NAMESPACE}\': metric.labels.namespace\n });\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88103','40032','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88104','40034','1','23','kube_statefulset_status_replicas','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88105','40034','2','21','var input = JSON.parse(value),\n output = [];\n\ninput.forEach(function (metric) {\n output.push({\n \'{#NAME}\': metric.labels.statefulset,\n \'{#NAMESPACE}\': metric.labels.namespace\n });\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88106','40034','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88107','40036','1','12','$.items.[?(@.metadata.name == "{#NAME}")].conditions[?(@.type == "Healthy")].status.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88108','40037','1','22','kube_daemonset_status_desired_number_scheduled{namespace="{#NAMESPACE}", daemonset="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88109','40038','1','22','kube_daemonset_status_number_misscheduled{namespace="{#NAMESPACE}", daemonset="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88110','40039','1','22','kube_daemonset_status_number_ready{namespace="{#NAMESPACE}", daemonset="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88111','40040','1','22','kube_daemonset_status_current_number_scheduled{namespace="{#NAMESPACE}", daemonset="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88112','40041','1','22','kube_daemonset_status_updated_number_scheduled{namespace="{#NAMESPACE}", daemonset="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88113','40042','1','22','kube_deployment_status_replicas{namespace="{#NAMESPACE}", deployment="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88114','40043','1','22','kube_deployment_status_replicas_available{namespace="{#NAMESPACE}", deployment="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88115','40044','1','22','kube_deployment_spec_replicas{namespace="{#NAMESPACE}", deployment="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88116','40045','1','22','kube_deployment_status_replicas_unavailable{namespace="{#NAMESPACE}", deployment="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88117','40046','1','22','kube_deployment_status_replicas_updated{namespace="{#NAMESPACE}", deployment="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88118','40047','1','22','kube_deployment_spec_strategy_rollingupdate_max_unavailable{namespace="{#NAMESPACE}", deployment="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88119','40048','1','22','kube_deployment_spec_paused{namespace="{#NAMESPACE}", deployment="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88120','40049','1','22','kube_endpoint_address_available{namespace="{#NAMESPACE}", endpoint="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88121','40050','1','22','kube_endpoint_address_not_ready{namespace="{#NAMESPACE}", endpoint="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88122','40051','1','22','kube_endpoint_created{namespace="{#NAMESPACE}", endpoint="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88123','40051','2','21','return (Math.floor(Date.now()/1000)-Number(value))','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88125','40052','1','12','$.[?(@.name == "{#NAME}")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88126','40053','1','22','kube_node_status_allocatable{node="{#NAME}", resource="cpu"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88127','40054','1','22','kube_node_status_capacity{node="{#NAME}", resource="cpu"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88128','40055','1','22','kube_node_status_allocatable{node="{#NAME}", resource="memory"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88129','40056','1','22','kube_node_status_capacity{node="{#NAME}", resource="memory"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88130','40057','1','22','kube_node_status_allocatable{node="{#NAME}", resource="pods"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88131','40058','1','22','kube_node_status_capacity{node="{#NAME}", resource="pods"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88132','40059','1','22','kube_pod_container_resource_limits{pod="{#NAME}", resource="cpu"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88133','40060','1','22','kube_pod_status_phase{pod="{#NAME}", phase="Failed"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88134','40061','1','22','kube_pod_status_scheduled{pod="{#NAME}", condition="true"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88135','40062','1','22','kube_pod_status_ready{pod="{#NAME}", condition="true"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88136','40063','1','22','kube_pod_status_phase{pod="{#NAME}", phase="Unknown"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88137','40064','1','22','kube_pod_status_phase{pod="{#NAME}", phase="Succeeded"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88138','40065','1','22','kube_pod_status_phase{pod="{#NAME}", phase="Running"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88139','40066','1','22','kube_pod_status_phase{pod="{#NAME}", phase="Pending"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88140','40067','1','22','kube_pod_container_status_waiting{pod="{#NAME}"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88141','40068','1','22','kube_pod_container_resource_limits{pod="{#NAME}", resource="memory"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88142','40069','1','22','kube_pod_container_status_terminated{pod="{#NAME}"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88143','40070','1','22','kube_pod_container_status_running{pod="{#NAME}"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88144','40071','1','22','kube_pod_container_status_restarts_total{pod="{#NAME}"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88145','40072','1','22','kube_pod_container_status_ready{pod="{#NAME}"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88146','40073','1','22','kube_pod_container_resource_requests{pod="{#NAME}", resource="memory"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88147','40074','1','22','kube_pod_container_resource_requests{pod="{#NAME}", resource="cpu"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88148','40075','1','22','kube_pod_status_unschedulable{pod="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88149','40076','1','22','kube_persistentvolumeclaim_resource_requests_storage_bytes{namespace="{#NAMESPACE}", name="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88150','40077','1','22','kube_persistentvolumeclaim_status_phase{namespace="{#NAMESPACE}", persistentvolumeclaim="{#NAME}", phase="Active"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88151','40078','1','22','kube_persistentvolumeclaim_status_phase{namespace="{#NAMESPACE}", name="{#NAME}", phase="Available"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88152','40079','1','22','kube_persistentvolumeclaim_status_phase{namespace="{#NAMESPACE}", persistentvolumeclaim="{#NAME}", phase="Bound"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88153','40080','1','22','kube_persistentvolumeclaim_status_phase{namespace="{#NAMESPACE}", name="{#NAME}", phase="Bound"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88154','40081','1','22','kube_persistentvolumeclaim_status_phase{namespace="{#NAMESPACE}",persistentvolumeclaim="{#NAME}", phase="Lost"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88155','40082','1','22','kube_persistentvolumeclaim_status_phase{namespace="{#NAMESPACE}", name="{#NAME}", phase="Lost"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88156','40083','1','22','kube_persistentvolumeclaim_status_phase{namespace="{#NAMESPACE}", persistentvolumeclaim="{#NAME}", phase="Pending"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88157','40084','1','22','kube_persistentvolumeclaim_status_phase{namespace="{#NAMESPACE}", name="{#NAME}", phase="Pending"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88158','40085','1','12','$.[?(@.name == "{#NAME}")].value.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88159','40086','1','22','kube_replicaset_status_fully_labeled_replicas{namespace="{#NAMESPACE}", replicaset="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88160','40087','1','22','kube_replicaset_status_ready_replicas{namespace="{#NAMESPACE}", replicaset="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88161','40088','1','22','kube_replicaset_status_replicas{namespace="{#NAMESPACE}", replicaset="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88162','40089','1','22','kube_replicaset_spec_replicas{namespace="{#NAMESPACE}", replicaset="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88163','40090','1','22','kube_statefulset_status_replicas{namespace="{#NAMESPACE}", statefulset="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88164','40091','1','22','kube_statefulset_status_replicas_current{namespace="{#NAMESPACE}", statefulset="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88165','40092','1','22','kube_statefulset_replicas{namespace="{#NAMESPACE}", statefulset="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88166','40093','1','22','kube_statefulset_status_replicas_ready{namespace="{#NAMESPACE}", statefulset="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88167','40094','1','22','kube_statefulset_status_replicas_updated{namespace="{#NAMESPACE}", statefulset="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88182','40117','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88183','40119','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88184','40120','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88185','40121','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88186','40122','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88187','40123','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88188','40124','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88189','40125','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88190','40126','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88203','40147','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88204','40147','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88205','40148','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88206','40149','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88207','40150','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88208','40150','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88209','40152','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88210','40152','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88211','40153','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88212','40154','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88213','40154','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88214','40155','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88215','40156','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88216','40156','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88217','40157','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88218','40158','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88219','40159','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88220','40159','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88221','40160','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88222','40161','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88223','40162','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88224','40162','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88225','40163','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88226','40163','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88227','40164','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88228','40165','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88229','40165','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88230','40166','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88231','40167','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88232','40167','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88233','40168','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88234','40169','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88235','40170','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88236','40171','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88237','40171','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88238','40172','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88245','40181','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88246','40185','1','12','$.data.requiredperformance','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88247','40186','1','12','$.data.uptime','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88248','40187','1','12','$.data.preprocessing_queue','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88249','40188','1','12','$.data.process[\'preprocessing manager\'].busy.avg','3','Processes preprocessing manager not started');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88250','40189','1','12','$.data.process[\'preprocessing worker\'].busy.avg','3','Processes preprocessing worker not started');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88251','31768','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88252','40451','1','12','$..[\'{#CPU.UTIL}\'].avg()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88255','40461','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88256','40462','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88257','40463','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88258','40464','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88267','40479','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88268','40480','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88269','40481','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88270','40483','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88271','40484','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88272','40485','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88273','40490','1','21','try {\n var data = JSON.parse(value);\n}\ncatch (error) {\n throw \'Failed to parse JSON of EtherLike-MIB discovery.\';\n}\nvar fields = [\'{#SNMPVALUE}\',\'{#IFOPERSTATUS}\',\'{#IFALIAS}\',\'{#IFNAME}\',\'{#IFDESCR}\'];\ndata.forEach(function (element) {\n fields.forEach(function (field) {\n element[field] = element[field] || \'\';\n });\n});\nreturn JSON.stringify(data);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88274','40491','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88275','40492','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88276','40493','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88277','40493','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88278','40494','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88279','40495','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88280','40496','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88281','40496','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88282','40497','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88283','40497','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88284','40499','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88285','40505','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88286','40506','1','12','$..[\'{#CPU.UTIL}\'].avg()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88287','40507','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88288','40508','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88289','40509','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88290','40510','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88291','40511','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88292','40514','1','21','try {\n var data = JSON.parse(value);\n}\ncatch (error) {\n throw \'Failed to parse JSON of EtherLike-MIB discovery.\';\n}\nvar fields = [\'{#SNMPVALUE}\',\'{#IFOPERSTATUS}\',\'{#IFALIAS}\',\'{#IFNAME}\',\'{#IFDESCR}\'];\ndata.forEach(function (element) {\n fields.forEach(function (field) {\n element[field] = element[field] || \'\';\n });\n});\nreturn JSON.stringify(data);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88293','40517','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88294','40518','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88295','40519','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88296','40519','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88297','40520','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88298','40521','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88299','40522','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88300','40522','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88301','40523','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88302','40523','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88303','40525','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88304','40528','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88305','40529','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88306','40530','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88307','40531','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88308','40537','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88309','40538','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88310','40539','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88311','40540','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88312','40541','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88313','40542','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88314','40545','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88315','40546','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88316','40547','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88317','40547','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88318','40548','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88319','40549','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88320','40550','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88321','40550','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88322','40551','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88323','40551','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88324','40553','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88325','40558','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88326','40560','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88327','40561','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88328','40562','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88329','40563','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88330','40564','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88331','40571','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88332','40573','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88333','40574','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88334','40575','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88335','40576','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88336','40577','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88337','40582','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88338','40583','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88339','40584','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88340','40584','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88341','40585','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88342','40586','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88343','40587','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88344','40587','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88345','40588','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88346','40588','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88347','40590','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88348','40591','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88349','40592','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88350','40593','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88351','40593','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88352','40594','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88353','40595','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88354','40596','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88355','40596','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88356','40597','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88357','40597','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88358','40599','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88359','40604','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88360','40606','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88361','40607','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88362','40608','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88363','40609','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88364','40610','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88365','40611','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88366','40612','1','5','Version (.+), RELEASE\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88367','40612','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88368','40613','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88369','40619','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88370','40620','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88371','40621','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88372','40622','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88373','40623','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88374','40624','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88375','40625','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88376','40626','1','5','Version (.+), RELEASE\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88377','40626','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88378','40627','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88379','40633','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88380','40634','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88381','40635','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88382','40636','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88383','40637','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88384','40638','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88385','40639','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88386','40640','1','5','Version (.+), RELEASE\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88387','40640','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88388','40641','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88389','40653','1','21','try {\n var data = JSON.parse(value);\n}\ncatch (error) {\n throw \'Failed to parse JSON of EtherLike-MIB discovery.\';\n}\nvar fields = [\'{#SNMPVALUE}\',\'{#IFOPERSTATUS}\',\'{#IFALIAS}\',\'{#IFNAME}\',\'{#IFDESCR}\'];\ndata.forEach(function (element) {\n fields.forEach(function (field) {\n element[field] = element[field] || \'\';\n });\n});\nreturn JSON.stringify(data);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88390','40663','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88391','40672','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88392','40677','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88393','40678','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88394','40679','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88395','40679','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88396','40680','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88397','40681','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88398','40682','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88399','40682','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88400','40683','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88401','40683','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88402','40685','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88403','40691','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88404','40696','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88405','40697','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88406','40698','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88407','40698','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88408','40699','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88409','40700','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88410','40701','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88411','40701','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88412','40702','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88413','40702','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88414','40704','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88415','40712','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88416','40713','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88417','40714','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88418','40715','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88419','40716','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88420','40717','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88421','40720','1','21','try {\n var data = JSON.parse(value);\n}\ncatch (error) {\n throw \'Failed to parse JSON of EtherLike-MIB discovery.\';\n}\nvar fields = [\'{#SNMPVALUE}\',\'{#IFOPERSTATUS}\',\'{#IFALIAS}\',\'{#IFNAME}\',\'{#IFDESCR}\'];\ndata.forEach(function (element) {\n fields.forEach(function (field) {\n element[field] = element[field] || \'\';\n });\n});\nreturn JSON.stringify(data);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88422','40721','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88423','40722','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88424','40723','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88425','40723','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88426','40724','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88427','40725','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88428','40726','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88429','40726','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88430','40727','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88431','40727','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88432','40729','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88433','40735','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88434','40736','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88435','40737','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88436','40738','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88437','40739','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88438','40740','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88439','40743','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88440','40744','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88441','40745','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88442','40745','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88443','40746','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88444','40747','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88445','40748','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88446','40748','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88447','40749','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88448','40749','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88449','40751','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88450','40756','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88451','40757','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88452','40758','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88453','40759','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88454','40760','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88455','40761','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88456','40764','1','21','try {\n var data = JSON.parse(value);\n}\ncatch (error) {\n throw \'Failed to parse JSON of EtherLike-MIB discovery.\';\n}\nvar fields = [\'{#SNMPVALUE}\',\'{#IFOPERSTATUS}\',\'{#IFALIAS}\',\'{#IFNAME}\',\'{#IFDESCR}\'];\ndata.forEach(function (element) {\n fields.forEach(function (field) {\n element[field] = element[field] || \'\';\n });\n});\nreturn JSON.stringify(data);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88457','40765','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88458','40766','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88459','40767','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88460','40767','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88461','40768','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88462','40769','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88463','40770','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88464','40770','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88465','40771','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88466','40771','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88467','40773','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88468','40776','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88469','40777','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88470','40778','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88471','40779','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88472','40781','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88473','40782','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88474','40787','1','21','try {\n var data = JSON.parse(value);\n}\ncatch (error) {\n throw \'Failed to parse JSON of EtherLike-MIB discovery.\';\n}\nvar fields = [\'{#SNMPVALUE}\',\'{#IFOPERSTATUS}\',\'{#IFALIAS}\',\'{#IFNAME}\',\'{#IFDESCR}\'];\ndata.forEach(function (element) {\n fields.forEach(function (field) {\n element[field] = element[field] || \'\';\n });\n});\nreturn JSON.stringify(data);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88475','40788','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88476','40789','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88477','40790','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88478','40790','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88479','40791','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88480','40792','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88481','40793','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88482','40793','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88483','40794','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88484','40794','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88485','40796','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88486','40802','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88487','40803','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88488','40804','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88489','40805','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88490','40806','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88491','40807','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88492','40810','1','21','try {\n var data = JSON.parse(value);\n}\ncatch (error) {\n throw \'Failed to parse JSON of EtherLike-MIB discovery.\';\n}\nvar fields = [\'{#SNMPVALUE}\',\'{#IFOPERSTATUS}\',\'{#IFALIAS}\',\'{#IFNAME}\',\'{#IFDESCR}\'];\ndata.forEach(function (element) {\n fields.forEach(function (field) {\n element[field] = element[field] || \'\';\n });\n});\nreturn JSON.stringify(data);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88493','40811','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88494','40812','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88495','40813','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88496','40813','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88497','40814','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88498','40815','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88499','40816','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88500','40816','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88501','40819','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88502','40825','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88503','40826','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88504','40827','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88505','40828','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88506','40829','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88507','40830','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88508','40833','1','21','try {\n var data = JSON.parse(value);\n}\ncatch (error) {\n throw \'Failed to parse JSON of EtherLike-MIB discovery.\';\n}\nvar fields = [\'{#SNMPVALUE}\',\'{#IFOPERSTATUS}\',\'{#IFALIAS}\',\'{#IFNAME}\',\'{#IFDESCR}\'];\ndata.forEach(function (element) {\n fields.forEach(function (field) {\n element[field] = element[field] || \'\';\n });\n});\nreturn JSON.stringify(data);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88509','40834','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88510','40835','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88511','40836','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88512','40836','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88513','40837','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88514','40838','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88515','40839','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88516','40839','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88517','40840','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88518','40840','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88519','40842','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88520','40848','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88521','40849','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88522','40850','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88523','40851','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88524','40852','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88525','40853','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88526','40856','1','21','try {\n var data = JSON.parse(value);\n}\ncatch (error) {\n throw \'Failed to parse JSON of EtherLike-MIB discovery.\';\n}\nvar fields = [\'{#SNMPVALUE}\',\'{#IFOPERSTATUS}\',\'{#IFALIAS}\',\'{#IFNAME}\',\'{#IFDESCR}\'];\ndata.forEach(function (element) {\n fields.forEach(function (field) {\n element[field] = element[field] || \'\';\n });\n});\nreturn JSON.stringify(data);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88527','40857','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88528','40858','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88529','40859','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88530','40859','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88531','40860','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88532','40861','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88533','40862','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88534','40862','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88535','40863','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88536','40863','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88537','40865','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88538','40871','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88539','40872','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88540','40873','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88541','40874','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88542','40875','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88543','40876','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88544','40879','1','21','try {\n var data = JSON.parse(value);\n}\ncatch (error) {\n throw \'Failed to parse JSON of EtherLike-MIB discovery.\';\n}\nvar fields = [\'{#SNMPVALUE}\',\'{#IFOPERSTATUS}\',\'{#IFALIAS}\',\'{#IFNAME}\',\'{#IFDESCR}\'];\ndata.forEach(function (element) {\n fields.forEach(function (field) {\n element[field] = element[field] || \'\';\n });\n});\nreturn JSON.stringify(data);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88545','40880','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88546','40881','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88547','40882','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88548','40882','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88549','40883','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88550','40884','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88551','40885','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88552','40885','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88553','40886','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88554','40886','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88555','40888','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88556','40894','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88557','40895','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88558','40896','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88559','40897','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88560','40898','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88561','40899','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88562','40902','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88563','40903','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88564','40904','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88565','40904','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88566','40905','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88567','40906','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88568','40907','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88569','40907','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88570','40908','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88571','40908','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88572','40910','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88573','40915','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88574','40916','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88575','40917','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88576','40918','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88577','40919','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88578','40920','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88579','40923','1','21','try {\n var data = JSON.parse(value);\n}\ncatch (error) {\n throw \'Failed to parse JSON of EtherLike-MIB discovery.\';\n}\nvar fields = [\'{#SNMPVALUE}\',\'{#IFOPERSTATUS}\',\'{#IFALIAS}\',\'{#IFNAME}\',\'{#IFDESCR}\'];\ndata.forEach(function (element) {\n fields.forEach(function (field) {\n element[field] = element[field] || \'\';\n });\n});\nreturn JSON.stringify(data);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88580','40924','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88581','40925','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88582','40926','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88583','40926','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88584','40927','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88585','40928','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88586','40929','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88587','40929','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88588','40930','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88589','40930','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88590','40932','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88591','40935','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88592','40936','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88593','40937','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88594','40938','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88595','40940','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88596','40941','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88597','40946','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88598','40947','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88599','40948','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88600','40948','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88601','40949','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88602','40950','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88603','40951','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88604','40951','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88605','40952','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88606','40952','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88607','40954','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88608','40956','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88609','40957','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88610','40958','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88611','40959','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88612','40961','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88613','40962','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88614','40967','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88615','40968','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88616','40969','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88617','40969','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88618','40970','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88619','40971','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88620','40972','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88621','40972','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88622','40973','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88623','40973','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88624','40975','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88625','40977','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88626','40978','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88627','40979','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88628','40980','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88629','40982','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88630','40983','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88631','40988','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88632','40989','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88633','40990','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88634','40990','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88635','40991','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88636','40992','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88637','40993','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88638','40993','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88639','40994','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88640','40994','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88641','40996','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88642','40998','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88643','40999','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88644','41000','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88645','41001','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88646','41003','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88647','41004','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88648','41009','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88649','41010','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88650','41011','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88651','41011','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88652','41012','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88653','41013','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88654','41014','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88655','41014','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88656','41015','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88657','41015','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88658','41017','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88659','41019','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88660','41020','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88661','41021','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88662','41022','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88663','41024','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88664','41025','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88665','41030','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88666','41031','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88667','41032','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88668','41032','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88669','41033','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88670','41034','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88671','41035','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88672','41035','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88673','41036','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88674','41036','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88675','41038','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88676','41040','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88677','41041','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88678','41042','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88679','41043','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88680','41045','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88681','41046','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88682','41051','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88683','41052','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88684','41053','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88685','41053','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88686','41054','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88687','41055','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88688','41056','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88689','41056','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88690','41057','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88691','41057','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88692','41059','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88693','41061','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88694','41062','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88695','41063','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88696','41064','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88697','41066','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88698','41067','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88699','41072','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88700','41073','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88701','41074','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88702','41074','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88703','41075','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88704','41076','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88705','41077','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88706','41077','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88707','41078','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88708','41078','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88709','41080','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88710','41082','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88711','41083','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88712','41084','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88713','41085','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88714','41087','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88715','41088','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88716','41093','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88717','41094','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88718','41095','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88719','41095','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88720','41096','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88721','41097','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88722','41098','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88723','41098','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88724','41099','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88725','41099','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88726','41101','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88727','41103','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88728','41104','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88729','41105','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88730','41106','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88731','41108','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88732','41109','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88733','41114','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88734','41115','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88735','41116','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88736','41116','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88737','41117','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88738','41118','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88739','41119','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88740','41119','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88741','41120','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88742','41120','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88743','41122','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88744','41124','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88745','41125','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88746','41126','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88747','41127','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88748','41129','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88749','41130','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88750','41135','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88751','41136','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88752','41137','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88753','41137','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88754','41138','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88755','41139','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88756','41140','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88757','41140','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88758','41141','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88759','41141','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88760','41143','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88761','41145','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88762','41146','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88763','41147','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88764','41148','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88765','41150','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88766','41151','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88767','41156','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88768','41157','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88769','41158','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88770','41158','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88771','41159','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88772','41160','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88773','41161','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88774','41161','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88775','41162','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88776','41162','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88777','41164','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88778','41166','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88779','41167','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88780','41168','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88781','41169','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88782','41171','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88783','41172','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88784','41177','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88785','41178','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88786','41179','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88787','41179','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88788','41180','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88789','41181','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88790','41182','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88791','41182','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88792','41183','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88793','41183','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88794','41185','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88795','41187','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88796','41188','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88797','41189','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88798','41190','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88799','41192','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88800','41193','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88801','41198','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88802','41199','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88803','41200','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88804','41200','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88805','41201','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88806','41202','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88807','41203','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88808','41203','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88809','41204','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88810','41204','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88811','41206','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88812','41208','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88813','41209','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88814','41210','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88815','41211','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88816','41213','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88817','41214','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88818','41219','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88819','41220','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88820','41221','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88821','41221','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88822','41222','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88823','41223','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88824','41224','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88825','41224','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88826','41225','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88827','41225','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88828','41227','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88829','41229','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88830','41230','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88831','41231','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88832','41232','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88833','41234','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88834','41235','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88835','41240','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88836','41241','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88837','41242','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88838','41242','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88839','41243','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88840','41244','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88841','41245','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88842','41245','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88843','41246','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88844','41246','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88845','41248','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88846','41250','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88847','41251','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88848','41252','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88849','41253','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88850','41255','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88851','41256','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88852','41261','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88853','41262','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88854','41263','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88855','41263','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88856','41264','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88857','41265','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88858','41266','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88859','41266','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88860','41267','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88861','41267','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88862','41269','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88863','41271','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88864','41272','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88865','41273','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88866','41274','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88867','41276','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88868','41277','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88869','41282','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88870','41283','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88871','41284','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88872','41284','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88873','41285','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88874','41286','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88875','41287','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88876','41287','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88877','41288','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88878','41288','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88879','41290','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88880','41292','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88881','41293','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88882','41294','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88883','41295','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88884','41297','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88885','41298','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88886','41303','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88887','41304','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88888','41305','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88889','41305','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88890','41306','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88891','41307','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88892','41308','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88893','41308','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88894','41309','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88895','41309','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88896','41311','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88897','41313','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88898','41314','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88899','41315','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88900','41316','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88901','41318','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88902','41319','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88903','41324','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88904','41325','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88905','41326','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88906','41326','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88907','41327','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88908','41328','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88909','41329','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88910','41329','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88911','41330','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88912','41330','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88913','41332','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88914','41334','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88915','41335','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88916','41336','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88917','41337','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88918','41339','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88919','41340','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88920','41345','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88921','41346','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88922','41347','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88923','41347','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88924','41348','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88925','41349','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88926','41350','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88927','41350','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88928','41351','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88929','41351','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88930','41353','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88931','41355','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88932','41356','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88933','41357','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88934','41358','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88935','41360','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88936','41361','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88937','41366','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88938','41367','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88939','41368','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88940','41368','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88941','41369','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88942','41370','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88943','41371','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88944','41371','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88945','41372','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88946','41372','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88947','41374','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88948','41376','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88949','41377','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88950','41378','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88951','41379','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88952','41381','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88953','41382','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88954','41387','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88955','41388','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88956','41389','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88957','41389','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88958','41390','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88959','41391','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88960','41392','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88961','41392','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88962','41393','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88963','41393','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88964','41395','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88965','41397','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88966','41398','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88967','41399','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88968','41400','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88969','41402','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88970','41403','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88971','41408','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88972','41409','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88973','41410','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88974','41410','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88975','41411','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88976','41412','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88977','41413','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88978','41413','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88979','41414','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88980','41414','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88981','41416','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88982','41418','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88983','41419','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88984','41420','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88985','41421','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88986','41423','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88987','41424','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88988','41429','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88989','41430','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88990','41431','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88991','41431','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88992','41432','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88993','41433','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88994','41434','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88995','41434','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88996','41435','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88997','41435','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88998','41437','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('88999','41439','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89000','41440','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89001','41441','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89002','41442','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89003','41444','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89004','41445','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89005','41450','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89006','41451','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89007','41452','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89008','41452','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89009','41453','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89010','41454','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89011','41455','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89012','41455','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89013','41456','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89014','41456','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89015','41458','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89016','41460','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89017','41461','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89018','41462','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89019','41463','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89020','41465','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89021','41466','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89022','41471','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89023','41472','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89024','41473','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89025','41473','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89026','41474','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89027','41475','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89028','41476','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89029','41476','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89030','41477','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89031','41477','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89032','41479','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89033','41481','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89034','41482','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89035','41483','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89036','41484','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89037','41486','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89038','41487','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89039','41492','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89040','41493','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89041','41494','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89042','41494','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89043','41495','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89044','41496','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89045','41497','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89046','41497','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89047','41498','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89048','41498','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89049','41500','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89050','41502','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89051','41503','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89052','41504','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89053','41505','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89054','41507','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89055','41508','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89056','41513','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89057','41514','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89058','41515','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89059','41515','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89060','41516','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89061','41517','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89062','41518','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89063','41518','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89064','41519','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89065','41519','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89066','41521','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89067','41523','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89068','41524','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89069','41525','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89070','41526','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89071','41528','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89072','41529','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89073','41534','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89074','41535','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89075','41536','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89076','41536','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89077','41537','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89078','41538','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89079','41539','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89080','41539','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89081','41540','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89082','41540','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89083','41542','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89084','41544','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89085','41545','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89086','41546','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89087','41547','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89088','41549','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89089','41550','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89090','41555','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89091','41556','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89092','41557','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89093','41557','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89094','41558','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89095','41559','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89096','41560','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89097','41560','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89098','41561','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89099','41561','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89100','41563','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89101','41565','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89102','41566','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89103','41567','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89104','41568','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89105','41570','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89106','41571','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89107','41576','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89108','41577','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89109','41578','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89110','41578','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89111','41579','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89112','41580','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89113','41581','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89114','41581','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89115','41582','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89116','41582','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89117','41584','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89118','41586','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89119','41587','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89120','41588','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89121','41589','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89122','41591','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89123','41592','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89124','41597','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89125','41598','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89126','41599','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89127','41599','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89128','41600','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89129','41601','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89130','41602','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89131','41602','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89132','41603','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89133','41603','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89134','41605','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89135','41607','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89136','41608','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89137','41609','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89138','41610','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89139','41612','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89140','41613','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89141','41618','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89142','41619','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89143','41620','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89144','41620','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89145','41621','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89146','41622','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89147','41623','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89148','41623','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89149','41624','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89150','41624','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89151','41626','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89152','41628','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89153','41629','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89154','41630','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89155','41631','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89156','41633','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89157','41634','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89158','41639','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89159','41640','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89160','41641','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89161','41641','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89162','41642','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89163','41643','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89164','41644','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89165','41644','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89166','41645','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89167','41645','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89168','41647','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89169','41649','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89170','41650','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89171','41651','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89172','41652','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89173','41654','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89174','41655','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89175','41660','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89176','41661','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89177','41662','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89178','41662','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89179','41663','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89180','41664','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89181','41665','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89182','41665','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89183','41666','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89184','41666','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89185','41668','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89186','41670','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89187','41671','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89188','41672','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89189','41673','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89190','41675','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89191','41676','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89192','41681','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89193','41682','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89194','41683','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89195','41683','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89196','41684','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89197','41685','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89198','41686','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89199','41686','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89200','41687','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89201','41687','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89202','41689','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89203','41691','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89204','41692','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89205','41693','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89206','41694','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89207','41696','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89208','41697','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89209','41702','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89210','41703','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89211','41704','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89212','41704','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89213','41705','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89214','41706','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89215','41707','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89216','41707','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89217','41708','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89218','41708','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89219','41710','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89220','41712','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89221','41713','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89222','41714','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89223','41715','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89224','41717','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89225','41718','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89226','41723','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89227','41724','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89228','41725','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89229','41725','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89230','41726','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89231','41727','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89232','41728','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89233','41728','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89234','41729','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89235','41729','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89236','41731','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89237','41733','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89238','41734','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89239','41735','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89240','41736','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89241','41738','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89242','41739','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89243','41744','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89244','41745','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89245','41746','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89246','41746','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89247','41747','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89248','41748','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89249','41749','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89250','41749','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89251','41750','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89252','41750','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89253','41752','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89254','41754','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89255','41755','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89256','41756','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89257','41757','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89258','41759','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89259','41760','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89260','41765','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89261','41766','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89262','41767','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89263','41767','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89264','41768','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89265','41769','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89266','41770','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89267','41770','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89268','41771','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89269','41771','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89270','41773','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89271','41775','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89272','41776','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89273','41777','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89274','41778','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89275','41780','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89276','41781','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89277','41786','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89278','41787','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89279','41788','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89280','41788','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89281','41789','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89282','41790','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89283','41791','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89284','41791','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89285','41792','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89286','41792','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89287','41794','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89288','41796','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89289','41797','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89290','41798','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89291','41799','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89292','41801','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89293','41802','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89294','41807','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89295','41808','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89296','41809','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89297','41809','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89298','41810','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89299','41811','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89300','41812','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89301','41812','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89302','41813','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89303','41813','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89304','41815','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89305','41817','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89306','41818','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89307','41819','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89308','41820','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89309','41822','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89310','41823','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89311','41828','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89312','41829','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89313','41830','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89314','41830','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89315','41831','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89316','41832','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89317','41833','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89318','41833','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89319','41834','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89320','41834','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89321','41836','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89322','41838','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89323','41839','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89324','41840','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89325','41841','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89326','41843','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89327','41844','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89328','41849','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89329','41850','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89330','41851','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89331','41851','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89332','41852','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89333','41853','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89334','41854','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89335','41854','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89336','41855','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89337','41855','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89338','41857','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89339','41859','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89340','41860','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89341','41861','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89342','41862','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89343','41864','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89344','41865','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89345','41870','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89346','41871','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89347','41872','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89348','41872','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89349','41873','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89350','41874','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89351','41875','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89352','41875','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89353','41876','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89354','41876','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89355','41878','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89356','41880','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89357','41881','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89358','41882','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89359','41883','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89360','41885','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89361','41886','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89362','41891','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89363','41892','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89364','41893','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89365','41893','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89366','41894','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89367','41895','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89368','41896','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89369','41896','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89370','41897','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89371','41897','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89372','41899','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89373','41901','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89374','41902','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89375','41903','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89376','41904','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89377','41906','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89378','41907','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89379','41912','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89380','41913','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89381','41914','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89382','41914','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89383','41915','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89384','41916','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89385','41917','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89386','41917','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89387','41918','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89388','41918','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89389','41920','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89390','41922','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89391','41923','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89392','41924','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89393','41925','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89394','41927','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89395','41928','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89396','41933','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89397','41934','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89398','41935','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89399','41935','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89400','41936','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89401','41937','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89402','41938','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89403','41938','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89404','41939','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89405','41939','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89406','41941','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89407','41943','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89408','41944','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89409','41945','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89410','41946','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89411','41948','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89412','41949','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89413','41954','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89414','41955','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89415','41956','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89416','41956','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89417','41957','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89418','41958','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89419','41959','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89420','41959','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89421','41960','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89422','41960','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89423','41962','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89424','41964','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89425','41965','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89426','41966','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89427','41967','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89428','41969','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89429','41970','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89430','41975','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89431','41976','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89432','41977','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89433','41977','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89434','41978','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89435','41979','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89436','41980','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89437','41980','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89438','41981','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89439','41981','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89440','41983','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89441','41985','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89442','41986','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89443','41987','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89444','41988','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89445','41990','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89446','41991','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89447','41996','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89448','41997','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89449','41998','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89450','41998','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89451','41999','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89452','42000','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89453','42001','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89454','42001','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89455','42002','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89456','42002','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89457','42004','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89458','42006','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89459','42007','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89460','42008','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89461','42009','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89462','42011','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89463','42012','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89464','42017','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89465','42018','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89466','42019','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89467','42019','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89468','42020','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89469','42021','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89470','42022','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89471','42022','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89472','42023','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89473','42023','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89474','42025','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89475','42027','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89476','42028','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89477','42029','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89478','42030','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89479','42032','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89480','42033','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89481','42038','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89482','42039','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89483','42040','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89484','42040','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89485','42041','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89486','42042','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89487','42043','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89488','42043','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89489','42044','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89490','42044','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89491','42046','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89492','42048','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89493','42049','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89494','42050','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89495','42051','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89496','42053','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89497','42054','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89498','42059','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89499','42060','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89500','42061','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89501','42061','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89502','42062','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89503','42063','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89504','42064','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89505','42064','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89506','42065','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89507','42065','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89508','42067','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89509','42069','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89510','42070','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89511','42071','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89512','42072','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89513','42074','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89514','42075','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89515','42080','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89516','42081','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89517','42082','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89518','42082','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89519','42083','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89520','42084','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89521','42085','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89522','42085','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89523','42086','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89524','42086','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89525','42088','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89526','42090','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89527','42091','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89528','42092','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89529','42093','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89530','42095','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89531','42096','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89532','42101','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89533','42102','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89534','42103','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89535','42103','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89536','42104','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89537','42105','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89538','42106','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89539','42106','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89540','42107','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89541','42107','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89542','42109','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89543','42111','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89544','42112','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89545','42113','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89546','42114','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89547','42116','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89548','42117','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89549','42122','1','21','try {\n var data = JSON.parse(value);\n}\ncatch (error) {\n throw \'Failed to parse JSON of EtherLike-MIB discovery.\';\n}\nvar fields = [\'{#SNMPVALUE}\',\'{#IFOPERSTATUS}\',\'{#IFALIAS}\',\'{#IFNAME}\',\'{#IFDESCR}\'];\ndata.forEach(function (element) {\n fields.forEach(function (field) {\n element[field] = element[field] || \'\';\n });\n});\nreturn JSON.stringify(data);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89550','42123','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89551','42124','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89552','42125','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89553','42125','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89554','42126','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89555','42127','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89556','42128','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89557','42128','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89558','42129','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89559','42129','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89560','42131','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89561','42137','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89562','42138','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89563','42139','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89564','42140','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89565','42141','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89566','42142','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89567','42145','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89568','42146','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89569','42147','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89570','42147','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89571','42148','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89572','42149','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89573','42150','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89574','42150','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89575','42153','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89576','42155','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89577','42156','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89578','42157','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89579','42158','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89580','42160','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89581','42161','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89582','42166','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89583','42167','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89584','42168','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89585','42168','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89586','42169','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89587','42170','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89588','42171','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89589','42171','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89590','42174','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89591','22933','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89592','22938','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89593','42175','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89594','42177','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89595','22893','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89596','22898','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89597','42179','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89598','42181','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89599','22973','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89600','22978','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89601','42183','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89602','42185','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89603','42187','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89604','42191','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89605','42193','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89606','42194','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89607','42195','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89608','42199','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89609','42202','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89610','42210','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89611','42211','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89612','42212','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89613','42215','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89614','42216','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89615','42220','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89616','42221','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89617','42227','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89618','42231','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89619','42233','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89620','42234','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89621','42235','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89622','42239','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89623','42242','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89624','42250','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89625','42251','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89626','42252','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89627','42255','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89628','42256','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89629','42260','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89630','42261','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89631','42267','1','21','//Calculate utilization\nreturn (100 - value)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89632','42268','1','21','return (100-value);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89633','42269','1','21','//Calculate utilization\nreturn (100 - value)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89634','42270','1','21','return (100-value);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89635','42272','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89636','42275','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89637','42277','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89638','42278','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89639','42279','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89640','42279','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89641','42280','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89642','42281','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89643','42282','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89644','42282','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89645','42283','1','21','var newvalue;\nswitch(value) {\n case "unknown":\n newvalue = 0;\n break;\n case "notpresent":\n newvalue = 1;\n break;\n case "down":\n newvalue = 2;\n break;\n case "lowerlayerdown":\n newvalue = 3;\n break;\n case "testing":\n newvalue = 4;\n break;\n case "dormant":\n newvalue = 5;\n break;\n case "up":\n newvalue = 6;\n break; default:\n newvalue = "Problem parsing interface operstate in JS";\n}\nreturn newvalue;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89646','42284','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89647','42287','1','21','return JSON.stringify(value.trim().split(/ +/));','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89648','42292','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89649','42293','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89650','42294','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89651','42294','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89652','42295','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89653','42296','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89654','42297','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89655','42297','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89656','42298','1','21','var newvalue;\nswitch(value) {\n case "unknown":\n newvalue = 0;\n break;\n case "notpresent":\n newvalue = 1;\n break;\n case "down":\n newvalue = 2;\n break;\n case "lowerlayerdown":\n newvalue = 3;\n break;\n case "testing":\n newvalue = 4;\n break;\n case "dormant":\n newvalue = 5;\n break;\n case "up":\n newvalue = 6;\n break; default:\n newvalue = "Problem parsing interface operstate in JS";\n}\nreturn newvalue;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89657','42299','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89658','42302','1','21','return JSON.stringify(value.trim().split(/ +/));','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89659','42307','1','12','$[10]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89660','42307','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89661','42307','3','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89662','42308','1','12','$[0]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89663','42308','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89664','42309','1','12','$[3]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89665','42309','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89666','42309','3','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89667','42310','1','12','$[9]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89668','42310','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89669','42310','3','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89670','42311','1','12','$[4]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89671','42311','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89672','42312','1','12','$[7]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89673','42312','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89674','42312','3','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89675','42313','1','12','$[10]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89676','42313','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89677','42313','3','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89678','42314','1','12','$[0]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89679','42314','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89680','42315','1','12','$[3]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89681','42315','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89682','42315','3','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89683','42316','1','12','$[9]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89684','42316','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89685','42316','3','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89686','42317','1','12','$[4]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89687','42317','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89688','42318','1','12','$[7]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89689','42318','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89690','42318','3','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89691','42319','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89692','42323','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89693','42325','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89694','42326','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89695','42327','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89696','42331','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89697','42334','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89698','42342','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89699','42343','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89700','42344','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89701','42347','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89702','42348','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89703','42352','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89704','42353','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89705','42358','1','21','//Calculate utilization\nreturn (100 - value)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89706','42359','1','21','return (100-value);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89707','42361','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89708','42363','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89709','42364','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89710','42365','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89711','42365','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89712','42366','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89713','42367','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89714','42368','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89715','42368','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89716','42369','1','21','var newvalue;\nswitch(value) {\n case "unknown":\n newvalue = 0;\n break;\n case "notpresent":\n newvalue = 1;\n break;\n case "down":\n newvalue = 2;\n break;\n case "lowerlayerdown":\n newvalue = 3;\n break;\n case "testing":\n newvalue = 4;\n break;\n case "dormant":\n newvalue = 5;\n break;\n case "up":\n newvalue = 6;\n break; default:\n newvalue = "Problem parsing interface operstate in JS";\n}\nreturn newvalue;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89717','42370','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89718','42373','1','21','return JSON.stringify(value.trim().split(/ +/));','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89719','42378','1','12','$[10]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89720','42378','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89721','42378','3','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89722','42379','1','12','$[0]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89723','42379','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89724','42380','1','12','$[3]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89725','42380','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89726','42380','3','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89727','42381','1','12','$[9]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89728','42381','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89729','42381','3','1','0.1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89730','42382','1','12','$[4]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89731','42382','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89732','42383','1','12','$[7]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89733','42383','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89734','42383','3','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89735','42385','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89736','42387','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89737','42388','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89738','42389','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89739','42390','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89740','42392','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89741','42393','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89742','42395','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89743','42396','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89744','42398','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89745','42399','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89746','42400','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89747','42401','1','21','//count the number of cores\nreturn JSON.parse(value).length;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89748','42405','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89749','42406','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89750','42410','1','21','//count the number of CPU cores\nreturn JSON.stringify([{"{#CPU.COUNT}": value, "{#SNMPINDEX}": 0, "{#SINGLETON}":""}])','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89751','42412','1','21','try {\n var data = JSON.parse(value);\n}\ncatch (error) {\n throw \'Failed to parse JSON of EtherLike-MIB discovery.\';\n}\nvar fields = [\'{#SNMPVALUE}\',\'{#IFOPERSTATUS}\',\'{#IFALIAS}\',\'{#IFNAME}\',\'{#IFDESCR}\'];\ndata.forEach(function (element) {\n fields.forEach(function (field) {\n element[field] = element[field] || \'\';\n });\n});\nreturn JSON.stringify(data);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89752','42415','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89753','42415','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89754','42416','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89755','42416','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89756','42417','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89757','42417','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89758','42418','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89759','42418','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89760','42419','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89761','42419','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89762','42420','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89763','42420','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89764','42421','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89765','42421','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89766','42422','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89767','42422','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89768','42423','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89769','42423','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89770','42424','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89771','42424','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89772','42425','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89773','42426','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89774','42427','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89775','42427','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89776','42428','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89777','42429','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89778','42430','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89779','42430','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89780','42431','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89781','42431','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89782','42433','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89783','42435','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89784','42437','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89785','42438','1','21','return (100-value);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89786','42440','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89787','42441','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89788','42442','1','21','//Calculate utilization\nreturn (100 - value)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89789','23053','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89790','23058','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89791','42443','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89792','42445','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89793','22853','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89794','22858','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89795','42447','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89796','42449','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89797','23013','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89798','23018','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89799','42451','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89800','42453','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89801','42455','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89802','42458','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89803','42463','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89804','42466','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89805','42468','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89806','42484','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89807','42486','1','21','return (100 - value)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89808','42487','1','21','output = JSON.parse(value).map(function(net){\n return {\n "{#IFNAME}": net.Name,\n "{#IFDESCR}": net.Description,\n "{#IFALIAS}": net.NetConnectionID,\n "{#IFGUID}": net.GUID\n }})\nreturn JSON.stringify({"data": output})','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89809','42487','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89810','42488','1','25','{#INSTANCE}\n{#DEVNAME}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89811','42491','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89812','42492','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89813','42493','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89814','42493','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89815','42494','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89816','42495','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89817','42496','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89818','42496','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89819','42497','1','21','return (100 - value)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89820','42509','1','12','$[?(@.GUID == "{#IFGUID}")].Speed.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89821','42509','2','21','return (value==\'9223372036854775807\' ? 0 : value)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89822','42509','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89823','42510','1','12','$[?(@.GUID == "{#IFGUID}")].NetConnectionStatus.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89824','42510','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89825','42511','1','12','$[?(@.GUID == "{#IFGUID}")].AdapterTypeId.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89826','42511','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89827','42512','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89828','42514','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89829','42519','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89830','42522','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89831','42524','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89832','42540','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89833','42542','1','21','return (100 - value)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89834','42543','1','21','output = JSON.parse(value).map(function(net){\n return {\n "{#IFNAME}": net.Name,\n "{#IFDESCR}": net.Description,\n "{#IFALIAS}": net.NetConnectionID,\n "{#IFGUID}": net.GUID\n }})\nreturn JSON.stringify({"data": output})','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89835','42543','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89836','42544','1','25','{#INSTANCE}\n{#DEVNAME}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89837','42547','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89838','42548','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89839','42549','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89840','42549','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89841','42550','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89842','42551','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89843','42552','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89844','42552','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89845','42553','1','21','return (100 - value)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89846','42565','1','12','$[?(@.GUID == "{#IFGUID}")].Speed.first()','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89847','42565','2','21','return (value==\'9223372036854775807\' ? 0 : value)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89848','42565','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89849','42566','1','12','$[?(@.GUID == "{#IFGUID}")].NetConnectionStatus.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89850','42566','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89851','42567','1','12','$[?(@.GUID == "{#IFGUID}")].AdapterTypeId.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89852','42567','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89853','42572','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89854','42573','1','12','$..[\'{#CPU.UTIL}\'].avg()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89855','42574','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89856','42575','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89857','42576','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89858','42577','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89859','42578','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89860','42583','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89861','42584','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89862','42585','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89863','42585','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89864','42586','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89865','42587','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89866','42588','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89867','42588','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89868','42589','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89869','42589','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89870','42591','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89871','42593','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89872','42594','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89873','42595','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89874','42596','1','1','{#ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89875','42602','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89876','42603','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89877','42604','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89878','42605','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89879','42606','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89880','42607','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89881','42613','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89882','42614','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89883','42615','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89884','42616','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89885','42617','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89886','42618','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89887','42624','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89888','42625','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89889','42626','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89890','42627','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89891','42628','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89892','42629','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89893','42635','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89894','42636','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89895','42637','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89896','42638','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89897','42639','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89898','42640','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89899','42646','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89900','42647','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89901','42648','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89902','42649','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89903','42650','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89904','42651','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89905','42657','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89906','42658','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89907','42659','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89908','42660','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89909','42661','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89910','42662','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89911','42668','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89912','42669','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89913','42670','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89914','42671','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89915','42672','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89916','42673','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89917','40010','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89918','42676','1','12','$[?(@.name == "tikv_scheduler_contex_total")].value.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89919','42677','1','12','$[?(@.name == "tikv_coprocessor_scan_keys")].value.sum()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89920','42677','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89922','42679','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89923','42679','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89924','42680','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89925','42680','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89926','42681','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89927','42681','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89928','42682','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89929','42682','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89930','42683','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89931','42683','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89932','42685','1','12','$..HostNumericSensorInfo[?(@.name=="VMware Rollup Health State")]','2','[]');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89933','42685','2','21','return JSON.stringify(value != "[]" ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89934','42685','3','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89935','42686','1','12','$..HostNumericSensorInfo[?(@.name=="VMware Rollup Health State")].healthState.label.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89940','42691','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89941','42692','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89942','42692','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89943','42693','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89944','42694','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89945','39917','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89946','39918','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89947','39919','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89948','40011','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89949','40015','1','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89950','42705','1','22','kube_cronjob_created\nfunction\ncount','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89951','42706','1','22','kube_endpoint_created\nfunction\ncount','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89952','42707','1','22','kube_job_created\nfunction\ncount','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89953','42708','1','23','kube_cronjob_created','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89954','42708','2','21','var input = JSON.parse(value),\n output = [];\n\ninput.forEach(function (metric) {\n output.push({\n \'{#NAME}\': metric.labels.cronjob,\n \'{#NAMESPACE}\': metric.labels.namespace\n });\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89955','42708','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89956','42709','1','23','kube_job_owner{owner_is_controller=""}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89957','42709','2','21','var input = JSON.parse(value),\n output = [];\n\ninput.forEach(function (metric) {\n output.push({\n \'{#NAME}\': metric.labels.job_name,\n \'{#NAMESPACE}\': metric.labels.namespace\n });\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89958','42709','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89959','42710','1','23','kube_poddisruptionbudget_created','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89960','42710','2','21','var input = JSON.parse(value),\n output = [];\n\ninput.forEach(function (metric) {\n output.push({\n \'{#NAME}\': metric.labels.poddisruptionbudget,\n \'{#NAMESPACE}\': metric.labels.namespace\n });\n});\n\nreturn JSON.stringify(output);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89961','42710','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89962','42711','1','22','kube_job_failed{namespace="{#NAMESPACE}", job_name=~"{#NAME}-*", condition="true"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89963','42712','1','22','kube_job_complete{namespace="{#NAMESPACE}", job_name=~"{#NAME}-*", condition="true"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89964','42713','1','22','kube_cronjob_status_last_schedule_time{namespace="{#NAMESPACE}", cronjob="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89965','42713','2','21','return new Date(value * 1000).toString().slice(0,19);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89966','42714','1','22','kube_cronjob_next_schedule_time{namespace="{#NAMESPACE}", cronjob="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89967','42714','2','21','return new Date(value * 1000).toString().slice(0,19);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89968','42715','1','22','kube_cronjob_spec_suspend{namespace="{#NAMESPACE}", cronjob="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89969','42715','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89970','42716','1','22','kube_cronjob_status_active{namespace="{#NAMESPACE}", cronjob="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89971','42717','1','22','kube_job_status_failed{namespace="{#NAMESPACE}", job_name=~"{#NAME}-*"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89972','42718','1','22','kube_job_status_succeeded{namespace="{#NAMESPACE}", job_name=~"{#NAME}-*"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89973','42719','1','22','kube_job_failed{namespace="{#NAMESPACE}", job_name="{#NAME}", condition="true"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89974','42720','1','22','kube_job_complete{namespace="{#NAMESPACE}", job_name="{#NAME}", condition="true"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89975','42721','1','22','kube_job_status_failed{namespace="{#NAMESPACE}", job_name="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89976','42722','1','22','kube_job_status_succeeded{namespace="{#NAMESPACE}", job_name="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89977','42723','1','22','kube_node_status_allocatable{node="{#NAME}", resource="ephemeral_storage"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89978','42724','1','22','kube_node_status_capacity{node="{#NAME}", resource="ephemeral_storage"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89979','42725','1','22','kube_poddisruptionbudget_status_pod_disruptions_allowed{namespace="{#NAMESPACE}", poddisruptionbudget="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89980','42726','1','22','kube_poddisruptionbudget_status_desired_healthy{namespace="{#NAMESPACE}", poddisruptionbudget="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89981','42727','1','22','kube_poddisruptionbudget_status_current_healthy{namespace="{#NAMESPACE}", poddisruptionbudget="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89982','42728','1','22','kube_poddisruptionbudget_status_expected_pods{namespace="{#NAMESPACE}", poddisruptionbudget="{#NAME}"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89983','42730','1','12','$.errors','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89984','42730','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89985','42731','1','12','$.data','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89986','42731','2','15','\\[\\]','3','Failed to receive data about required locations from API');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89987','42731','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89988','42732','1','12','$.data.[?(@.id==\'{#ID}\')].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89989','42733','1','12','$.clouds.all','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89990','42733','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89991','42734','1','12','$.weather..description.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89992','42734','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89993','42735','1','12','$.main.humidity','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89994','42735','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89995','42736','1','12','$.main.pressure','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89996','42736','2','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89997','42736','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89998','42737','1','12','$.rain.1h','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('89999','42737','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90000','42737','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90001','42738','1','12','$.snow.1h','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90002','42738','2','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90003','42738','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90004','42739','1','12','$.main.temp','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90005','42739','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90006','42740','1','12','$.visibility','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90007','42740','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90008','42741','1','12','$.wind.deg','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90009','42741','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90010','42742','1','12','$.wind.speed','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90011','42742','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90012','42744','1','12','$[\'{#DBNAME}\'].mro_time_max','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90013','42745','1','12','$[\'{#DBNAME}\'].mro_slow_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90014','42746','1','12','$[\'{#DBNAME}\'].mro_time_sum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90015','42747','1','12','$[\'{#DBNAME}\'].query_slow_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90016','42748','1','12','$[\'{#DBNAME}\'].query_time_max','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90017','42749','1','12','$[\'{#DBNAME}\'].query_time_sum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90018','42750','1','12','$[\'{#DBNAME}\'].tx_slow_count','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90019','42751','1','12','$[\'{#DBNAME}\'].tx_time_max','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90020','42752','1','12','$[\'{#DBNAME}\'].tx_time_sum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90021','42753','1','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90022','42754','0','26','','2','Error getting data');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90023','42755','0','26','','2','Error getting data');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90024','42764','1','21','var rrd_data = JSON.parse(value).data;\nreturn JSON.stringify(rrd_data[rrd_data.length - 2])','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90025','42766','1','12','$.data.[?(@.name == \'{#RESOURCE.NAME}\' && @.type == \'cluster\')].quorate.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90026','42766','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90027','42767','1','12','$.data.cpu','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90028','42767','2','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90029','42767','3','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90030','42768','1','12','$.data.diskread','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90031','42768','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90032','42768','3','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90033','42769','1','12','$.data.diskwrite','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90034','42769','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90035','42769','3','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90036','42770','1','12','$.data.maxmem','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90037','42770','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90038','42771','1','12','$.data.mem','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90039','42771','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90040','42772','1','12','$.data.netin','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90041','42772','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90042','42772','3','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90043','42772','4','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90044','42773','1','12','$.data.netout','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90045','42773','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90046','42773','3','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90047','42773','4','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90048','42774','1','12','$.data.uptime','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90049','42775','1','12','$.data.status','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90050','42776','1','12','$.cpu','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90051','42776','2','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90052','42776','3','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90053','42777','1','12','$.roottotal','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90054','42777','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90055','42778','1','12','$.data.uptime','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90056','42779','1','12','$.data.timezone','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90057','42779','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90058','42780','1','12','$.swapused','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90059','42780','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90060','42781','1','12','$.swaptotal','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90061','42781','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90062','42782','1','12','$.rootused','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90063','42782','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90064','42783','1','12','$.data.pveversion','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90065','42783','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90066','42784','1','12','$.iowait','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90067','42784','2','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90068','42784','3','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90069','42785','1','12','$.data.[?(@.name == \'{#NODE.NAME}\' && @.type == \'node\')].online.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90070','42785','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90071','42786','1','12','$.netout','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90072','42786','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90073','42786','3','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90074','42787','1','12','$.netin','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90075','42787','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90076','42787','3','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90077','42788','1','12','$.memused','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90078','42788','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90079','42789','1','12','$.memtotal','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90080','42789','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90081','42790','1','12','$.data.localtime','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90082','42791','1','12','$.loadavg','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90083','42791','2','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90084','42791','3','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90085','42792','1','12','$.data.kversion','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90086','42792','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90087','42793','1','12','$.data.time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90088','42794','1','12','$.data.cpu','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90089','42794','2','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90090','42794','3','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90091','42795','1','12','$.data.diskread','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90092','42795','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90093','42795','3','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90094','42796','1','12','$.data.diskwrite','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90095','42796','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90096','42796','3','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90097','42797','1','12','$.data.maxmem','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90098','42797','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90099','42798','1','12','$.data.mem','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90100','42798','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90101','42799','1','12','$.data.netin','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90102','42799','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90103','42799','3','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90104','42799','4','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90105','42800','1','12','$.data.netout','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90106','42800','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90107','42800','3','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90108','42800','4','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90109','42801','1','12','$.data.uptime','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90110','42802','1','12','$.data.status','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90111','42803','1','12','$.data[?(@.id == "storage/{#NODE.NAME}/{#STORAGE.NAME}")].content.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90112','42803','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90113','42804','1','12','$.data[?(@.id == "storage/{#NODE.NAME}/{#STORAGE.NAME}")].disk.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90114','42804','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90115','42805','1','12','$.data[?(@.id == "storage/{#NODE.NAME}/{#STORAGE.NAME}")].maxdisk.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90116','42805','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90117','42806','1','12','$.data[?(@.id == "storage/{#NODE.NAME}/{#STORAGE.NAME}")].plugintype.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90118','42806','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90119','42808','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90120','42809','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90121','42810','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90122','42810','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90123','42811','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90124','42811','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90125','42812','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90126','42813','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90127','42814','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90128','42815','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90129','42815','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90130','42817','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90131','42821','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90132','42822','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90133','42823','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90134','42824','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90135','42827','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90136','42829','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90137','42831','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90138','42832','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90139','42836','1','21','//count the number of cores\nreturn JSON.parse(value).length;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90140','42837','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90141','42838','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90142','42840','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90143','42841','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90144','42842','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90145','42844','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90146','42845','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90147','42846','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90148','42846','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90149','42847','1','1','1024','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90150','42849','1','21','//count the number of CPU cores\nreturn JSON.stringify([{"{#CPU.COUNT}": value, "{#SNMPINDEX}": 0, "{#SINGLETON}":""}])','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90151','42851','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90152','42852','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90153','42853','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90154','42854','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90155','42857','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90156','42857','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90157','42858','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90158','42858','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90159','42859','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90160','42859','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90161','42860','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90162','42860','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90163','42861','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90164','42861','2','21','//to get utilization in %, divide by N, where N is number of cores.\nreturn value/{#CPU.COUNT}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90165','42862','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90166','42863','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90167','42864','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90168','42864','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90169','42865','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90170','42866','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90171','42867','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90172','42867','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90173','42868','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90174','42868','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90175','42869','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90176','42870','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90177','42871','1','1','0.001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90178','42871','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90179','42872','1','1','{#DATASET_ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90180','42874','1','1','{#DATASET_ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90181','42874','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90182','42875','1','1','{#DATASET_ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90183','42876','1','1','{#POOL_ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90184','42877','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90185','42879','1','1','{#POOL_ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90186','42879','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90187','42880','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90188','42881','1','1','{#POOL_ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90189','42881','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90190','42882','1','1','{#POOL_ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90191','42883','1','1','{#POOL_ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90192','42883','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90193','42884','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90194','42885','1','1','{#ZVOL_ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90195','42886','1','1','{#ZVOL_ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90196','42886','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90197','42887','1','1','{#ZVOL_ALLOC_UNITS}','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90198','42888','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90199','42890','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90200','42891','1','21','//Calculate utilization\nreturn (100 - value)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90201','42893','1','12','$.bad_block_rate.value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90202','42893','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90203','42894','1','12','$.exit_status','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90204','42894','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90205','42895','1','12','$.temperature','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90206','42895','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90207','42896','1','12','$.serial_number','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90208','42896','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90209','42897','1','12','$.percentage_used','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90210','42897','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90211','42898','1','12','$.model_name','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90212','42898','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90213','42899','1','12','$.media_errors','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90214','42899','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90215','42900','1','12','$.power_on_time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90216','42900','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90217','42901','1','12','$.error','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90218','42901','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90219','42902','1','12','$.power_cycle_count.value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90220','42902','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90221','42903','1','12','$.critical_warning','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90222','42903','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90223','42904','1','12','$.start_stop_count.value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90224','42904','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90225','42905','1','12','$.spin_up_time.value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90226','42905','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90227','42906','1','12','$.seek_error_rate.value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90228','42906','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90229','42907','1','12','$.reported_uncorrect.value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90230','42907','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90231','42908','1','12','$.reallocated_sector_ct.value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90232','42908','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90233','42909','1','12','$.raw_read_error_rate.value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90234','42909','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90235','42910','1','12','$.program_fail_count_chip.value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90236','42910','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90237','42911','1','12','$.self_test_passed','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90238','42911','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90239','42913','1','12','$.bad_block_rate.value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90240','42913','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90241','42914','1','12','$.exit_status','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90242','42914','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90243','42915','1','12','$.temperature','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90244','42915','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90245','42916','1','12','$.serial_number','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90246','42916','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90247','42917','1','12','$.percentage_used','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90248','42917','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90249','42918','1','12','$.model_name','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90250','42918','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90251','42919','1','12','$.media_errors','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90252','42919','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90253','42920','1','12','$.power_on_time','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90254','42920','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90255','42921','1','12','$.error','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90256','42921','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90257','42922','1','12','$.power_cycle_count.value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90258','42922','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90259','42923','1','12','$.critical_warning','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90260','42923','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90261','42924','1','12','$.start_stop_count.value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90262','42924','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90263','42925','1','12','$.spin_up_time.value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90264','42925','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90265','42926','1','12','$.seek_error_rate.value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90266','42926','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90267','42927','1','12','$.reported_uncorrect.value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90268','42927','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90269','42928','1','12','$.reallocated_sector_ct.value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90270','42928','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90271','42929','1','12','$.raw_read_error_rate.value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90272','42929','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90273','42930','1','12','$.program_fail_count_chip.value','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90274','42930','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90275','42931','1','12','$.self_test_passed','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90276','42931','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90277','42933','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90278','42934','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90279','42935','1','22','consul_serf_member_join\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90280','42935','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90281','42936','1','22','consul_memberlist_tcp_connect\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90282','42936','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90283','42937','1','22','consul_memberlist_tcp_sent\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90284','42937','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90285','42938','1','22','consul_memberlist_udp_received\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90286','42938','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90287','42939','1','22','consul_memberlist_udp_sent\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90288','42939','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90289','42940','1','22','process_max_fds\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90290','42941','1','22','process_open_fds\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90291','42942','1','22','process_resident_memory_bytes\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90292','42943','1','12','$.Config.Server','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90293','42943','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90294','42943','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90295','42944','1','22','consul_serf_member_failed\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90296','42944','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90297','42945','1','22','consul_serf_member_flap\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90298','42945','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90299','42946','1','22','consul_acl_ResolveToken_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90300','42946','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90301','42947','1','22','consul_serf_member_left\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90302','42947','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90303','42948','1','22','consul_memberlist_pushPullNode{quantile="0.9"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90304','42948','2','21','return (isNaN(value)) ? 0 : value;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90305','42949','1','22','consul_serf_member_update\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90306','42949','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90307','42950','1','12','$.Stats.agent.services','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90308','42950','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90309','42951','1','22','consul_serf_snapshot_appendLine{quantile="0.5"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90310','42951','2','21','return (isNaN(value)) ? 0 : value;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90311','42952','1','22','consul_serf_snapshot_appendLine{quantile="0.9"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90312','42952','2','21','return (isNaN(value)) ? 0 : value;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90313','42953','1','22','consul_serf_snapshot_appendLine_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90314','42953','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90315','42954','1','22','consul_serf_snapshot_compact{quantile="0.5"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90316','42954','2','21','return (isNaN(value)) ? 0 : value;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90317','42955','1','22','consul_serf_snapshot_compact{quantile="0.9"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90318','42955','2','21','return (isNaN(value)) ? 0 : value;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90319','42956','1','22','consul_serf_snapshot_compact_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90320','42956','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90321','42957','1','12','$.Config.Version','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90322','42957','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90323','42958','1','22','consul_memberlist_tcp_accept\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90324','42958','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90325','42959','1','22','consul_memberlist_probeNode{quantile="0.9"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90326','42959','2','21','return (isNaN(value)) ? 0 : value;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90327','42960','1','22','consul_memberlist_pushPullNode{quantile="0.5"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90328','42960','2','21','return (isNaN(value)) ? 0 : value;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90329','42961','1','22','go_goroutines\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90330','42962','1','22','consul_catalog_register_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90331','42962','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90332','42963','1','12','$.Stats.agent.checks','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90333','42963','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90334','42964','1','12','$.Stats.agent.check_monitors','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90335','42964','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90336','42965','1','22','consul_client_rpc\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90337','42965','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90338','42966','1','22','consul_client_rpc_failed\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90339','42966','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90340','42967','1','22','process_cpu_seconds_total\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90341','42967','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90342','42968','1','22','consul_runtime_gc_pause_ns{quantile="0.5"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90343','42968','2','21','return (isNaN(value)) ? 0 : value;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90344','42968','3','1','1.0E-9','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90345','42969','1','22','consul_runtime_gc_pause_ns{quantile="0.9"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90346','42969','2','21','return (isNaN(value)) ? 0 : value;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90347','42969','3','1','1.0E-9','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90348','42970','1','12','$.error','2','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90349','42970','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90350','42971','1','22','consul_kvs_apply{quantile="0.5"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90351','42971','2','21','return (isNaN(value)) ? 0 : value;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90352','42972','1','22','consul_catalog_deregister_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90353','42972','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90354','42973','1','22','consul_kvs_apply{quantile="0.9"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90355','42973','2','21','return (isNaN(value)) ? 0 : value;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90356','42974','1','22','consul_kvs_apply_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90357','42974','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90358','42975','1','22','consul_memberlist_degraded\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90359','42976','1','22','consul_memberlist_gossip{quantile="0.9"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90360','42976','2','21','return (isNaN(value)) ? 0 : value;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90361','42977','1','22','consul_memberlist_gossip{quantile="0.5"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90362','42977','2','21','return (isNaN(value)) ? 0 : value;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90363','42978','1','22','consul_memberlist_health_score\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90364','42979','1','22','consul_memberlist_msg_alive\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90365','42980','1','22','consul_memberlist_msg_dead\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90366','42981','1','22','consul_memberlist_msg_suspect\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90367','42982','1','22','consul_memberlist_probeNode{quantile="0.5"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90368','42982','2','21','return (isNaN(value)) ? 0 : value;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90369','42983','1','22','process_virtual_memory_bytes\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90370','42984','1','23','consul_api_http{method =~ ".*"}','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90371','42984','2','21','var lookup = {},\n result = [];\n\nJSON.parse(value).forEach(function (item) {\n var http_method = item.labels.method;\n if (!(lookup[http_method])) {\n lookup[http_method] = 1;\n result.push({ "{#HTTP_METHOD}": http_method });\n }\n})\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90372','42984','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90373','42985','1','21','var data = JSON.parse(value),\n result = [];\n\nif (data.length === 0) {\n return \'[]\'\n};\ndata.forEach(function (service) {\n\n result.push({\n \'{#TYPE}\': \'aggregated_status\',\n \'{#SERVICE_NAME}\': service.name,\n \'{#SERVICE_ID}\': service.id,\n \'{#SERVICE_NAMESPACE}\': service.namespace\n });\n\n if (service[\'checks\'] !== 0) {\n service[\'checks\'].forEach(function (check) {\n result.push({\n \'{#TYPE}\': \'service_check\',\n \'{#SERVICE_NAME}\': service.name,\n \'{#SERVICE_ID}\': service.id,\n \'{#SERVICE_NAMESPACE}\': service.namespace,\n \'{#SERVICE_CHECK_ID}\': check["CheckID"],\n \'{#SERVICE_CHECK_NAME}\': check["Name"]\n });\n });\n }\n\n});\n\nreturn JSON.stringify(result)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90374','42985','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90375','42986','1','21','return JSON.stringify(JSON.parse(value)["Stats"]["leader"] === true\n ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90376','42986','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90377','42987','1','21','return JSON.stringify(JSON.parse(value)["Config"]["Server"] === true\n ? [{\'{#SINGLETON}\': \'\'}] : []);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90378','42987','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90379','42988','1','22','consul_api_http{method = "{#HTTP_METHOD}", quantile = "0.5"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90380','42989','1','22','consul_api_http{method = "{#HTTP_METHOD}", quantile = "0.9"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90381','42990','1','22','consul_api_http_count{method = "{#HTTP_METHOD}"}\nfunction\nsum','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90382','42990','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90383','42991','1','12','$[?(@.id == "{#SERVICE_ID}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90384','42991','2','21','var state = [\'passing\', \'warning\', \'critical\'];\n\nreturn state.indexOf(value.trim()) === -1 ? 255 : state.indexOf(value.trim());','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90385','42991','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90386','42992','1','12','$[?(@.id == "{#SERVICE_ID}")].checks[?(@.CheckID == "{#SERVICE_CHECK_ID}")].Output.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90387','42992','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90388','42993','1','12','$[?(@.id == "{#SERVICE_ID}")].checks[?(@.CheckID == "{#SERVICE_CHECK_ID}")].Status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90389','42993','2','21','var state = [\'passing\', \'warning\', \'critical\'];\n\nreturn state.indexOf(value.trim()) === -1 ? 255 : state.indexOf(value.trim());','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90390','42993','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90391','42994','1','22','consul_autopilot_healthy\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90392','42995','1','22','consul_raft_commitTime{quantile="0.5"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90393','42995','2','21','return (isNaN(value)) ? 0 : value;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90394','42996','1','22','consul_raft_commitTime{quantile="0.9"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90395','42996','2','21','return (isNaN(value)) ? 0 : value;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90396','42997','1','22','consul_raft_commitTime_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90397','42997','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90398','42998','1','22','consul_raft_leader_dispatchLog{quantile="0.5"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90399','42998','2','21','return (isNaN(value)) ? 0 : value;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90400','42999','1','22','consul_raft_leader_dispatchLog{quantile="0.9"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90401','42999','2','21','return (isNaN(value)) ? 0 : value;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90402','43000','1','22','consul_raft_leader_dispatchLog_count\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90403','43000','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90404','43001','1','22','consul_raft_leader_lastContact{quantile="0.5"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90405','43001','2','21','return (isNaN(value)) ? 0 : value;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90406','43002','1','22','consul_raft_leader_lastContact{quantile="0.9"}\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90407','43002','2','21','return (isNaN(value)) ? 0 : value;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90408','43003','1','22','consul_raft_apply\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90409','43003','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90410','43004','1','12','$.Stats.raft.state','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90411','43004','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90412','43005','1','22','consul_raft_state_candidate\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90413','43006','1','22','consul_raft_state_leader\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90414','43007','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90415','43008','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90416','43009','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90417','43009','1','4','"','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90418','43009','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90419','43010','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90420','43011','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90421','43011','1','12','$.length()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90422','43011','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90423','43012','1','12','$[?(@.Status == "critical")].length()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90424','43012','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90425','43013','1','12','$[?(@.Status == "passing")].length()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90426','43013','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90427','43014','1','12','$.length()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90428','43014','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90429','43015','1','12','$[?(@.Status == "warning")].length()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90430','43015','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90431','43016','1','21','return Object.keys(JSON.parse(value)).length;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90432','43016','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90433','43017','1','21','var data = JSON.parse(value),\n consul_api_scheme = \'{$CONSUL.API.SCHEME}\',\n consul_api_port = \'{$CONSUL.API.PORT}\',\n result = [];\n\ndata.forEach(function(instance) {\n if (instance["ID"] != \'\') {\n result.push({\n \'{#NODE_NAME}\': instance["Node"],\n \'{#NODE_ADDRESS}\': instance["Address"],\n \'{#NODE_API_URL}\': consul_api_scheme + \'://\' + instance["Address"] + \':\' + consul_api_port,\n \'{#NODE_DATACENTER}\': instance["Datacenter"]\n });\n }\n });\n\nreturn JSON.stringify(result)','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90434','43017','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90435','43018','1','21','var data = [];\n\nObject.keys(JSON.parse(value)).forEach(function (v) {\n data.push({ \'{#SERVICE_NAME}\': v })\n});\n\nreturn JSON.stringify(data);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90436','43018','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90437','43019','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90438','43020','1','12','$[?(@.Node == "{#NODE_NAME}" && @.CheckID == "serfHealth")].Status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90439','43020','2','21','var state = [\'passing\', \'warning\', \'critical\'];\n\nreturn state.indexOf(value.trim()) === -1 ? 255 : state.indexOf(value.trim());','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90440','43020','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90441','43021','1','12','$[?(@.Service.Service == "{#SERVICE_NAME}")].Checks[?(@.CheckID == "serfHealth" && @.Status == \'critical\')].length()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90442','43021','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90443','43022','1','12','$[?(@.Service.Service == "{#SERVICE_NAME}")].Checks[?(@.CheckID == "serfHealth" && @.Status == \'passing\')].length()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90444','43022','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90445','43023','1','12','$[?(@.Service.Service == "{#SERVICE_NAME}")].Checks[?(@.CheckID == "serfHealth" && @.Status == \'warning\')].length()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90446','43023','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90447','43024','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90448','43025','1','22','envoy_cluster_manager_active_clusters\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90449','43026','1','22','envoy_listener_manager_total_listeners_draining\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90450','43027','1','22','envoy_server_total_connections\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90451','43028','1','22','envoy_server_state\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90452','43028','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90453','43029','1','22','envoy_server_parent_connections\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90454','43030','1','22','envoy_server_memory_physical_size\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90455','43031','1','22','envoy_server_memory_heap_size\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90456','43032','1','22','envoy_server_memory_allocated\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90457','43033','1','22','envoy_server_live\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90458','43033','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90459','43034','1','22','envoy_server_days_until_first_cert_expiring\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90460','43035','1','22','envoy_server_concurrency\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90461','43036','1','22','envoy_listener_manager_workers_started\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90462','43036','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90463','43037','1','22','envoy_listener_manager_total_listeners_warming\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90464','43038','1','22','envoy_listener_manager_listener_stopped\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90465','43038','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90466','43039','1','22','envoy_listener_manager_total_listeners_active\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90467','43040','1','22','envoy_cluster_manager_cluster_added\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90468','43040','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90469','43041','1','22','envoy_listener_manager_listener_create_success\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90470','43041','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90471','43042','1','22','envoy_listener_manager_listener_create_failure\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90472','43042','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90473','43043','1','22','envoy_listener_manager_listener_added\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90474','43043','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90475','43044','1','22','envoy_filesystem_write_failed\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90476','43044','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90477','43045','1','22','envoy_filesystem_write_completed\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90478','43045','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90479','43046','1','22','envoy_filesystem_reopen_failed\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90480','43046','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90481','43047','1','22','envoy_filesystem_flushed_by_timer\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90482','43047','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90483','43048','1','22','envoy_cluster_manager_warming_clusters\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90484','43049','1','22','envoy_cluster_manager_cluster_updated\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90485','43049','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90486','43050','1','22','envoy_cluster_manager_cluster_removed\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90487','43050','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90488','43051','1','22','envoy_cluster_manager_cluster_modified\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90489','43051','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90490','43052','1','22','envoy_server_uptime\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90491','43053','1','23','envoy_cluster_membership_total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90492','43053','2','21','var lookup = {},\n result = [];\n\nJSON.parse(value).forEach(function (item) {\n var envoy_cluster_name = item.labels.envoy_cluster_name;\n\n if (lookup[envoy_cluster_name]) {\n return;\n }\n lookup[envoy_cluster_name] = 1;\n result.push({\n \'{#CLUSTER_NAME}\': envoy_cluster_name\n });\n});\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90493','43053','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90494','43054','1','23','envoy_http_downstream_rq_total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90495','43054','2','21','var lookup = {},\n result = [];\n\nJSON.parse(value).forEach(function (item) {\n var envoy_http_conn_manager_prefix = item.labels.envoy_http_conn_manager_prefix;\n\n if (lookup[envoy_http_conn_manager_prefix]) {\n return;\n }\n lookup[envoy_http_conn_manager_prefix] = 1;\n result.push({\n \'{#CONN_MANAGER}\': envoy_http_conn_manager_prefix\n });\n});\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90496','43054','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90497','43055','1','23','envoy_listener_downstream_cx_active','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90498','43055','2','21','var lookup = {},\n result = [];\n\nJSON.parse(value).forEach(function (item) {\n var envoy_listener_address = item.labels.envoy_listener_address;\n\n if (lookup[envoy_listener_address]) {\n return;\n }\n lookup[envoy_listener_address] = 1;\n result.push({\n \'{#LISTENER_ADDRESS}\': envoy_listener_address\n });\n});\n\nreturn JSON.stringify(result);','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90499','43055','3','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90500','43057','1','22','envoy_cluster_membership_degraded{envoy_cluster_name = "{#CLUSTER_NAME}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90501','43058','1','22','envoy_cluster_upstream_rq_xx{envoy_cluster_name = "{#CLUSTER_NAME}", envoy_response_code_class="4"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90502','43058','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90503','43059','1','22','envoy_cluster_upstream_rq_timeout{envoy_cluster_name = "{#CLUSTER_NAME}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90504','43059','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90505','43060','1','22','envoy_cluster_upstream_rq_pending_active{envoy_cluster_name = "{#CLUSTER_NAME}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90506','43061','1','22','envoy_cluster_upstream_rq_completed{envoy_cluster_name = "{#CLUSTER_NAME}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90507','43061','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90508','43062','1','22','envoy_cluster_upstream_rq_active{envoy_cluster_name = "{#CLUSTER_NAME}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90509','43063','1','22','envoy_cluster_upstream_rq_xx{envoy_cluster_name = "{#CLUSTER_NAME}", envoy_response_code_class="5"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90510','43063','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90511','43064','1','22','envoy_cluster_upstream_rq_xx{envoy_cluster_name = "{#CLUSTER_NAME}", envoy_response_code_class="2"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90512','43064','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90513','43065','1','22','envoy_cluster_upstream_rq_xx{envoy_cluster_name = "{#CLUSTER_NAME}", envoy_response_code_class="3"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90514','43065','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90515','43066','1','22','envoy_cluster_membership_healthy{envoy_cluster_name = "{#CLUSTER_NAME}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90516','43067','1','22','envoy_cluster_upstream_cx_tx_bytes_total{envoy_cluster_name = "{#CLUSTER_NAME}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90517','43067','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90518','43068','1','22','envoy_cluster_upstream_cx_total{envoy_cluster_name = "{#CLUSTER_NAME}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90519','43069','1','22','envoy_cluster_upstream_cx_rx_bytes_total{envoy_cluster_name = "{#CLUSTER_NAME}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90520','43069','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90521','43070','1','22','envoy_cluster_upstream_cx_active{envoy_cluster_name = "{#CLUSTER_NAME}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90522','43071','1','22','envoy_cluster_membership_total{envoy_cluster_name = "{#CLUSTER_NAME}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90523','43072','1','22','envoy_cluster_upstream_rq_total{envoy_cluster_name = "{#CLUSTER_NAME}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90524','43072','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90525','43073','1','22','envoy_http_downstream_cx_active{envoy_http_conn_manager_prefix = "{#CONN_MANAGER}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90526','43074','1','22','envoy_http_downstream_cx_rx_bytes_total{envoy_http_conn_manager_prefix = "{#CONN_MANAGER}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90527','43074','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90528','43075','1','22','envoy_http_downstream_cx_total{envoy_http_conn_manager_prefix = "{#CONN_MANAGER}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90529','43075','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90530','43076','1','22','envoy_http_downstream_cx_tx_bytes_total{envoy_http_conn_manager_prefix = "{#CONN_MANAGER}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90531','43076','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90532','43077','1','22','envoy_http_downstream_rq_active{envoy_http_conn_manager_prefix = "{#CONN_MANAGER}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90533','43078','1','22','envoy_http_downstream_rq_timeout{envoy_http_conn_manager_prefix = "{#CONN_MANAGER}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90534','43078','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90535','43079','1','22','envoy_http_downstream_rq_total{envoy_http_conn_manager_prefix = "{#CONN_MANAGER}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90536','43079','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90537','43080','1','22','envoy_listener_downstream_cx_active{envoy_listener_address = "{#LISTENER_ADDRESS}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90538','43081','1','22','envoy_listener_downstream_cx_total{envoy_listener_address = "{#LISTENER_ADDRESS}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90539','43081','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90540','43082','1','22','envoy_listener_downstream_pre_cx_active{envoy_listener_address = "{#LISTENER_ADDRESS}"}\nfunction\nsum','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90541','43083','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90542','43084','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90543','43084','1','5','HTTP.*\\s(\\d+)\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90544','43084','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90545','43085','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90546','43085','1','5','HTTP.*\\s(\\d+)\n\\1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90547','43085','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90548','43086','0','26','','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90549','43087','1','22','sql_bytesin\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90550','43087','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90551','43088','1','22','sql_bytesout\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90552','43088','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90553','43089','1','22','sql_ddl_count\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90554','43089','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90555','43090','1','22','sql_conns\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90556','43091','1','22','sql_distsql_queries_active\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90557','43092','1','22','sql_distsql_contended_queries_count\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90558','43092','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90559','43093','1','22','sql_delete_count\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90560','43093','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90561','43094','1','22','sql_feature_flag_denial\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90562','43094','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90563','43095','1','22','sql_failure_count\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90564','43095','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90565','43096','1','22','sql_query_count\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90566','43096','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90567','43097','1','22','sql_distsql_flows_active\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90568','43097','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90569','43098','1','22','sys_host_net_send_bytes\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90570','43098','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90571','43099','1','22','sql_insert_count\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90572','43099','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90573','43100','1','22','sql_select_count\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90574','43100','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90575','43101','1','22','sql_update_count\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90576','43101','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90577','43102','1','22','sql_txn_abort_count\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90578','43102','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90579','43103','1','22','sql_txn_commit_count\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90580','43103','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90581','43104','1','22','sql_txn_begin_count\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90582','43104','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90583','43105','1','22','sql_txns_open\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90584','43106','1','22','sql_txn_rollback_count\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90585','43106','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90586','43107','1','22','timeseries_write_errors\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90587','43107','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90588','43108','1','22','timeseries_write_samples\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90589','43108','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90590','43109','1','22','sys_uptime\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90591','43110','1','22','build_timestamp\nlabel\ntag','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90592','43110','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90593','43111','1','22','requests_slow_distsender\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90594','43112','1','22','security_certificate_expiration_ca\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90595','43112','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90596','43113','1','22','sys_host_net_recv_bytes\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90597','43113','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90598','43114','1','22','sys_host_disk_write_bytes\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90599','43114','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90600','43115','1','22','clock_offset_meannanos\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90601','43115','2','1','0.000000001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90602','43116','1','22','sys_cpu_sys_ns\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90603','43116','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90604','43116','3','1','0.000000001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90605','43117','1','22','sys_cpu_user_ns\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90606','43117','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90607','43117','3','1','0.000000001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90608','43118','1','22','sys_cpu_combined_percent_normalized\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90609','43118','2','1','100','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90610','43119','1','22','sys_fd_softlimit\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90611','43119','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90612','43120','1','22','sys_fd_open\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90613','43121','1','22','sys_host_disk_iopsinprogress\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90614','43121','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90615','43122','1','22','sys_host_disk_read_count\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90616','43122','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90617','43123','1','22','sys_host_disk_write_count\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90618','43123','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90619','43124','1','22','sys_host_disk_read_bytes\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90620','43124','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90621','43125','1','22','sys_gc_pause_ns\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90622','43125','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90623','43125','3','1','0.000000001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90624','43126','1','22','security_certificate_expiration_node\nvalue\n','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90625','43126','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90626','43127','1','22','sys_gc_count\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90627','43127','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90628','43128','1','22','sys_goroutines\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90629','43129','1','22','liveness_heartbeatsuccesses\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90630','43129','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90631','43130','1','22','txn_aborts\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90632','43130','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90633','43131','1','22','txn_commits\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90634','43131','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90635','43132','1','22','liveness_livenodes\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90636','43132','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90637','43133','1','22','sys_cgo_allocbytes\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90638','43134','1','22','sys_cgo_totalbytes\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90639','43135','1','22','sys_go_allocbytes\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90640','43136','1','22','sys_go_totalbytes\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90641','43137','1','22','sql_mem_root_current\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90642','43138','1','22','sys_rss\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90643','43139','1','23','capacity','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90644','43139','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90645','43142','1','22','queue_consistency_process_failure{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90646','43142','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90647','43143','1','22','rocksdb_block_cache_hits{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90648','43143','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90649','43144','1','22','capacity{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90650','43144','2','20','3h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90651','43145','1','22','capacity_available{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90652','43146','1','22','sysbytes{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90653','43147','1','22','totalbytes{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90654','43148','1','22','livebytes{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90655','43149','1','22','requests_slow_raft{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90656','43150','1','22','requests_slow_lease{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90657','43151','1','22','requests_slow_latch{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90658','43152','1','22','rocksdb_num_sstables{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90659','43153','1','22','rocksdb_read_amplification{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90660','43154','1','22','rocksdb_block_cache_misses{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90661','43154','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90662','43155','1','22','replicas_leaseholders{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90663','43156','1','22','queue_gc_process_failure{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90664','43156','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90665','43157','1','22','replicas_quiescent{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90666','43158','1','22','replicas{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90667','43159','1','22','rebalancing_writespersecond{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90668','43160','1','22','rebalancing_queriespersecond{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90669','43161','1','22','ranges_underreplicated{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90670','43162','1','22','ranges_unavailable{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90671','43163','1','22','ranges{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90672','43164','1','22','queue_tsmaintenance_process_failure{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90673','43164','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90674','43165','1','22','queue_split_process_failure{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90675','43165','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90676','43166','1','22','queue_replicate_process_failure{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90677','43166','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90678','43167','1','22','queue_raftsnapshot_process_failure{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90679','43167','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90680','43168','1','22','queue_raftlog_process_failure{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90681','43168','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90682','43169','1','22','queue_replicagc_process_failure{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90683','43169','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90684','43170','1','22','capacity_used{store="{#STORE}"}\nvalue\n','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90685','43172','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90686','43173','1','12','$.[\'errors\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90687','43173','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90688','43174','1','12','$.system[0].[\'system-contact\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90689','43174','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90690','43175','1','12','$.system[0].[\'health-numeric\']','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90691','43176','1','12','$.system[0].[\'system-information\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90692','43176','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90693','43177','1','12','$.system[0].[\'system-location\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90694','43177','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90695','43178','1','12','$.system[0].[\'system-name\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90696','43178','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90697','43179','1','12','$.system[0].[\'product-id\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90698','43179','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90699','43180','1','12','$.system[0].[\'vendor-name\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90700','43180','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90701','43181','1','12','$.[\'controllers\']','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90702','43181','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90703','43182','1','12','$.[\'disks\']','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90704','43182','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90705','43183','1','12','$.[\'disk-groups\']','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90706','43183','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90707','43184','1','12','$.[\'enclosures\']','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90708','43184','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90709','43185','1','12','$.[\'fans\']','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90710','43185','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90711','43186','1','12','$.[\'frus\']','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90712','43186','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90713','43187','1','12','$.[\'pools\']','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90714','43187','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90715','43188','1','12','$.[\'ports\']','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90716','43188','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90717','43189','1','12','$.[\'power-supplies\']','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90718','43189','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90719','43190','1','12','$.[\'volumes\']','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90720','43190','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90721','43191','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90722','43192','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90723','43193','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'read-cache-hits\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90724','43193','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90725','43194','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'number-of-writes\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90726','43194','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90727','43195','1','12','$.[\'controllers\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'status-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90728','43195','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90729','43196','1','12','$.[\'controllers\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'serial-number\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90730','43196','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90731','43197','1','12','$.[\'controllers\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'number-of-storage-pools\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90732','43197','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90733','43198','1','12','$.[\'controllers\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'part-number\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90734','43198','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90735','43199','1','12','$.[\'controllers\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'ip-address\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90736','43199','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90737','43200','1','12','$.[\'controllers\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'health-numeric\'].first()','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90738','43200','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90739','43201','1','12','$.[\'controllers\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'sc-fw\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90740','43201','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90741','43202','1','12','$.[\'controllers\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'virtual-disks\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90742','43202','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90743','43203','1','12','$.[\'controllers\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'disks\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90744','43203','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90745','43204','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'iops\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90746','43205','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'read-cache-misses\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90747','43205','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90748','43206','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'number-of-reads\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90749','43206','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90750','43207','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'data-written-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90751','43207','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90752','43208','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'bytes-per-second-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90753','43209','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'data-read-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90754','43209','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90755','43210','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'cpu-load\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90756','43211','1','12','$.[\'controllers\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'cache-memory-size\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90757','43211','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90758','43211','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90759','43212','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'write-cache-used\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90760','43213','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'write-cache-misses\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90761','43213','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90762','43214','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'write-cache-hits\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90763','43214','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90764','43215','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'power-on-time\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90765','43216','1','12','$.[\'disks\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'size-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90766','43216','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90767','43216','3','1','512','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90768','43217','1','12','$.[\'disks\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'ssd-life-left-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90769','43217','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90770','43218','1','12','$.[\'disks\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'disk-group\'].first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90771','43218','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90772','43219','1','12','$.[\'disks\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'health-numeric\'].first()','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90773','43219','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90774','43220','1','12','$.[\'disks\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'model\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90775','43220','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90776','43221','1','12','$.[\'disks\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'storage-pool-name\'].first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90777','43221','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90778','43222','1','12','$.[\'disks\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'serial-number\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90779','43222','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90780','43223','1','12','$.[\'disks\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'temperature-numeric\'].first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90781','43223','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90782','43224','1','12','$.[\'disks\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'temperature-status-numeric\'].first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90783','43224','2','13','1\n3','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90784','43224','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90785','43225','1','12','$.[\'disks\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'description-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90786','43225','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90787','43226','1','12','$.[\'disks\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'vendor\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90788','43226','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90789','43227','1','12','$.[\'disk-group-statistics\'][?(@[\'name\'] == "{#NAME}")].[\'avg-read-rsp-time\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90790','43227','2','1','0.000001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90791','43228','1','12','$.[\'disk-groups\'][?(@[\'name\'] == "{#NAME}")].[\'raidtype-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90792','43228','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90793','43229','1','12','$.[\'disk-groups\'][?(@[\'name\'] == "{#NAME}")].[\'health-numeric\'].first()','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90794','43229','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90795','43230','1','12','$.[\'disk-groups\'][?(@[\'name\'] == "{#NAME}")].[\'diskcount\'].first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90796','43230','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90797','43231','1','12','$.[\'disk-groups\'][?(@[\'name\'] == "{#NAME}")].[\'size-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90798','43231','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90799','43231','3','1','512','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90800','43232','1','12','$.[\'disk-groups\'][?(@[\'name\'] == "{#NAME}")].[\'pool-percentage\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90801','43232','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90802','43233','1','12','$.[\'disk-groups\'][?(@[\'name\'] == "{#NAME}")].[\'freespace-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90803','43233','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90804','43233','3','1','512','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90805','43234','1','12','$.[\'disk-group-statistics\'][?(@[\'name\'] == "{#NAME}")].[\'number-of-writes\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90806','43234','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90807','43235','1','12','$.[\'disk-group-statistics\'][?(@[\'name\'] == "{#NAME}")].[\'avg-rsp-time\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90808','43235','2','1','0.000001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90809','43236','1','12','$.[\'disk-group-statistics\'][?(@[\'name\'] == "{#NAME}")].[\'iops\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90810','43237','1','12','$.[\'disk-group-statistics\'][?(@[\'name\'] == "{#NAME}")].[\'number-of-reads\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90811','43237','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90812','43238','1','12','$.[\'disk-group-statistics\'][?(@[\'name\'] == "{#NAME}")].[\'data-written-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90813','43238','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90814','43239','1','12','$.[\'disk-group-statistics\'][?(@[\'name\'] == "{#NAME}")].[\'bytes-per-second-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90815','43240','1','12','$.[\'disk-group-statistics\'][?(@[\'name\'] == "{#NAME}")].[\'data-read-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90816','43240','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90817','43241','1','12','$.[\'disk-group-statistics\'][?(@[\'name\'] == "{#NAME}")].[\'avg-write-rsp-time\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90818','43241','2','1','0.000001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90819','43242','1','12','$.[\'disk-groups\'][?(@[\'name\'] == "{#NAME}")].[\'status-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90820','43242','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90821','43243','1','12','$.[\'enclosures\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'health-numeric\'].first()','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90822','43243','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90823','43244','1','12','$.[\'enclosures\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'midplane-serial-number\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90824','43244','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90825','43245','1','12','$.[\'enclosures\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'model\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90826','43245','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90827','43246','1','12','$.[\'enclosures\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'part-number\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90828','43246','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90829','43247','1','12','$.[\'enclosures\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'enclosure-power\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90830','43248','1','12','$.[\'enclosures\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'status-numeric\'].first()','2','6');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90831','43248','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90832','43249','1','12','$.[\'fans\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'health-numeric\'].first()','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90833','43249','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90834','43250','1','12','$.[\'fans\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'speed\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90835','43251','1','12','$.[\'fans\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'status-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90836','43251','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90837','43252','1','12','$.[\'frus\'][?(@[\'name\'] == "{#TYPE}" && @[\'fru-location\'] == "{#LOCATION}")].[\'part-number\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90838','43252','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90839','43253','1','12','$.[\'frus\'][?(@[\'name\'] == "{#TYPE}" && @[\'fru-location\'] == "{#LOCATION}")].[\'serial-number\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90840','43253','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90841','43254','1','12','$.[\'frus\'][?(@[\'name\'] == "{#TYPE}" && @[\'fru-location\'] == "{#LOCATION}")].[\'fru-status\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90842','43254','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90843','43254','3','21','if (value == \'Absent\') {\n return 2;\n}\nelse if (value == \'Fault\') {\n return 1;\n}\nelse if (value == \'Invalid Data\') {\n return 0;\n}\nelse if (value == \'OK\') {\n return 4;\n}\nelse if (value == \'Not Available\') {\n return 5;\n}\nreturn 6;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90844','43255','1','12','$.[\'pools\'][?(@[\'name\'] == "{#NAME}")].[\'total-avail-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90845','43255','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90846','43255','3','1','512','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90847','43256','1','12','$.[\'pools\'][?(@[\'name\'] == "{#NAME}")].[\'total-size-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90848','43256','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90849','43256','3','1','512','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90850','43257','1','12','$.[\'pools\'][?(@[\'name\'] == "{#NAME}")].[\'health-numeric\'].first()','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90851','43257','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90852','43258','1','12','$.[\'ports\'][?(@[\'port\'] == "{#NAME}")].[\'health-numeric\'].first()','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90853','43258','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90854','43259','1','12','$.[\'ports\'][?(@[\'port\'] == "{#NAME}")].[\'status-numeric\'].first()','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90855','43259','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90856','43260','1','12','$.[\'ports\'][?(@[\'port\'] == "{#NAME}")].[\'port-type-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90857','43260','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90858','43261','1','12','$.[\'power-supplies\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'health-numeric\'].first()','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90859','43261','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90860','43262','1','12','$.[\'power-supplies\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'part-number\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90861','43262','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90862','43263','1','12','$.[\'power-supplies\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'serial-number\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90863','43263','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90864','43264','1','12','$.[\'power-supplies\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'status-numeric\'].first()','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90865','43264','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90866','43265','1','12','$.[\'power-supplies\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'dctemp\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90867','43265','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90868','43266','1','12','$.[\'volume-statistics\'][?(@[\'volume-name\'] == "{#NAME}")].[\'read-cache-hits\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90869','43266','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90870','43267','1','12','$.[\'volume-statistics\'][?(@[\'volume-name\'] == "{#NAME}")].[\'read-cache-misses\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90871','43267','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90872','43268','1','12','$.[\'volume-statistics\'][?(@[\'volume-name\'] == "{#NAME}")].[\'write-cache-hits\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90873','43268','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90874','43269','1','12','$.[\'volume-statistics\'][?(@[\'volume-name\'] == "{#NAME}")].[\'write-cache-misses\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90875','43269','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90876','43270','1','12','$.[\'volume-statistics\'][?(@[\'volume-name\'] == "{#NAME}")].[\'data-read-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90877','43270','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90878','43271','1','12','$.[\'volume-statistics\'][?(@[\'volume-name\'] == "{#NAME}")].[\'bytes-per-second-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90879','43272','1','12','$.[\'volume-statistics\'][?(@[\'volume-name\'] == "{#NAME}")].[\'data-written-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90880','43272','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90881','43273','1','12','$.[\'volume-statistics\'][?(@[\'volume-name\'] == "{#NAME}")].[\'number-of-reads\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90882','43273','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90883','43274','1','12','$.[\'volume-statistics\'][?(@[\'volume-name\'] == "{#NAME}")].[\'iops\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90884','43275','1','12','$.[\'volume-statistics\'][?(@[\'volume-name\'] == "{#NAME}")].[\'number-of-writes\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90885','43275','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90886','43276','1','12','$.[\'volumes\'][?(@[\'volume-name\'] == "{#NAME}")].[\'allocated-size-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90887','43276','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90888','43276','3','1','512','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90889','43277','1','12','$.[\'volumes\'][?(@[\'volume-name\'] == "{#NAME}")].[\'size-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90890','43277','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90891','43277','3','1','512','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90892','43279','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90893','43280','1','12','$.[\'errors\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90894','43280','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90895','43281','1','12','$.system[0].[\'system-contact\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90896','43281','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90897','43282','1','12','$.system[0].[\'health-numeric\']','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90898','43283','1','12','$.system[0].[\'system-information\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90899','43283','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90900','43284','1','12','$.system[0].[\'system-location\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90901','43284','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90902','43285','1','12','$.system[0].[\'system-name\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90903','43285','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90904','43286','1','12','$.system[0].[\'product-id\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90905','43286','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90906','43287','1','12','$.system[0].[\'vendor-name\']','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90907','43287','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90908','43288','1','12','$.[\'controllers\']','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90909','43288','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90910','43289','1','12','$.[\'disks\']','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90911','43289','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90912','43290','1','12','$.[\'disk-groups\']','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90913','43290','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90914','43291','1','12','$.[\'enclosures\']','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90915','43291','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90916','43292','1','12','$.[\'fans\']','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90917','43292','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90918','43293','1','12','$.[\'frus\']','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90919','43293','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90920','43294','1','12','$.[\'pools\']','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90921','43294','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90922','43295','1','12','$.[\'ports\']','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90923','43295','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90924','43296','1','12','$.[\'power-supplies\']','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90925','43296','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90926','43297','1','12','$.[\'volumes\']','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90927','43297','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90928','43298','1','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90929','43299','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90930','43300','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90931','43301','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90932','43302','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90933','43303','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90934','43304','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90935','43305','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90936','43306','1','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90937','43307','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'read-cache-hits\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90938','43307','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90939','43308','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'number-of-writes\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90940','43308','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90941','43309','1','12','$.[\'controllers\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'status-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90942','43309','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90943','43310','1','12','$.[\'controllers\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'serial-number\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90944','43310','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90945','43311','1','12','$.[\'controllers\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'number-of-storage-pools\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90946','43311','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90947','43312','1','12','$.[\'controllers\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'part-number\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90948','43312','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90949','43313','1','12','$.[\'controllers\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'ip-address\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90950','43313','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90951','43314','1','12','$.[\'controllers\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'health-numeric\'].first()','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90952','43314','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90953','43315','1','12','$.[\'controllers\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'sc-fw\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90954','43315','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90955','43316','1','12','$.[\'controllers\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'virtual-disks\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90956','43316','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90957','43317','1','12','$.[\'controllers\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'disks\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90958','43317','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90959','43318','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'iops\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90960','43319','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'read-cache-misses\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90961','43319','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90962','43320','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'number-of-reads\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90963','43320','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90964','43321','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'data-written-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90965','43321','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90966','43322','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'bytes-per-second-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90967','43323','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'data-read-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90968','43323','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90969','43324','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'cpu-load\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90970','43325','1','12','$.[\'controllers\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'cache-memory-size\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90971','43325','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90972','43325','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90973','43326','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'write-cache-used\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90974','43327','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'write-cache-misses\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90975','43327','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90976','43328','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'write-cache-hits\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90977','43328','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90978','43329','1','12','$.[\'controller-statistics\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'power-on-time\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90979','43330','1','12','$.[\'disks\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'blocksize\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90980','43330','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90981','43331','1','12','$.[\'disks\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'blocks\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90982','43331','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90983','43332','1','12','$.[\'disks\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'ssd-life-left-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90984','43332','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90985','43333','1','12','$.[\'disks\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'disk-group\'].first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90986','43333','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90987','43334','1','12','$.[\'disks\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'health-numeric\'].first()','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90988','43334','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90989','43335','1','12','$.[\'disks\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'model\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90990','43335','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90991','43336','1','12','$.[\'disks\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'storage-pool-name\'].first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90992','43336','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90993','43337','1','12','$.[\'disks\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'serial-number\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90994','43337','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90995','43338','1','12','$.[\'disks\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'temperature-numeric\'].first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90996','43338','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90997','43339','1','12','$.[\'disks\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'temperature-status-numeric\'].first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90998','43339','2','13','1\n3','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('90999','43339','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91000','43340','1','12','$.[\'disks\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'description-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91001','43340','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91002','43341','1','12','$.[\'disks\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'vendor\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91003','43341','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91004','43342','1','12','$.[\'disk-group-statistics\'][?(@[\'name\'] == "{#NAME}")].[\'avg-read-rsp-time\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91005','43342','2','1','0.000001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91006','43343','1','12','$.[\'disk-group-statistics\'][?(@[\'name\'] == "{#NAME}")].[\'number-of-writes\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91007','43343','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91008','43344','1','12','$.[\'disk-groups\'][?(@[\'name\'] == "{#NAME}")].[\'health-numeric\'].first()','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91009','43344','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91010','43345','1','12','$.[\'disk-groups\'][?(@[\'name\'] == "{#NAME}")].[\'diskcount\'].first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91011','43345','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91012','43346','1','12','$.[\'disk-groups\'][?(@[\'name\'] == "{#NAME}")].[\'pool-percentage\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91013','43346','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91014','43347','1','12','$.[\'disk-groups\'][?(@[\'name\'] == "{#NAME}")].[\'raidtype-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91015','43347','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91016','43348','1','12','$.[\'disk-group-statistics\'][?(@[\'name\'] == "{#NAME}")].[\'iops\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91017','43349','1','12','$.[\'disk-group-statistics\'][?(@[\'name\'] == "{#NAME}")].[\'avg-rsp-time\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91018','43349','2','1','0.000001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91019','43350','1','12','$.[\'disk-group-statistics\'][?(@[\'name\'] == "{#NAME}")].[\'number-of-reads\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91020','43350','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91021','43351','1','12','$.[\'disk-group-statistics\'][?(@[\'name\'] == "{#NAME}")].[\'data-written-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91022','43351','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91023','43352','1','12','$.[\'disk-group-statistics\'][?(@[\'name\'] == "{#NAME}")].[\'bytes-per-second-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91024','43353','1','12','$.[\'disk-group-statistics\'][?(@[\'name\'] == "{#NAME}")].[\'data-read-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91025','43353','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91026','43354','1','12','$.[\'disk-groups\'][?(@[\'name\'] == "{#NAME}")].[\'blocks\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91027','43354','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91028','43355','1','12','$.[\'disk-groups\'][?(@[\'name\'] == "{#NAME}")].[\'blocksize\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91029','43355','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91030','43356','1','12','$.[\'disk-groups\'][?(@[\'name\'] == "{#NAME}")].[\'freespace-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91031','43356','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91032','43357','1','12','$.[\'disk-group-statistics\'][?(@[\'name\'] == "{#NAME}")].[\'avg-write-rsp-time\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91033','43357','2','1','0.000001','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91034','43358','1','12','$.[\'disk-groups\'][?(@[\'name\'] == "{#NAME}")].[\'status-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91035','43358','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91036','43359','1','12','$.[\'enclosures\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'health-numeric\'].first()','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91037','43359','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91038','43360','1','12','$.[\'enclosures\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'midplane-serial-number\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91039','43360','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91040','43361','1','12','$.[\'enclosures\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'model\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91041','43361','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91042','43362','1','12','$.[\'enclosures\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'part-number\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91043','43362','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91044','43363','1','12','$.[\'enclosures\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'enclosure-power\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91045','43364','1','12','$.[\'enclosures\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'status-numeric\'].first()','2','6');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91046','43364','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91047','43365','1','12','$.[\'fans\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'health-numeric\'].first()','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91048','43365','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91049','43366','1','12','$.[\'fans\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'speed\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91050','43367','1','12','$.[\'fans\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'status-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91051','43367','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91052','43368','1','12','$.[\'frus\'][?(@[\'name\'] == "{#TYPE}" && @[\'fru-location\'] == "{#LOCATION}")].[\'part-number\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91053','43368','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91054','43369','1','12','$.[\'frus\'][?(@[\'name\'] == "{#TYPE}" && @[\'fru-location\'] == "{#LOCATION}")].[\'serial-number\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91055','43369','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91056','43370','1','12','$.[\'frus\'][?(@[\'name\'] == "{#TYPE}" && @[\'fru-location\'] == "{#LOCATION}")].[\'fru-status-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91057','43370','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91058','43371','1','12','$.[\'pools\'][?(@[\'name\'] == "{#NAME}")].[\'total-avail-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91059','43371','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91060','43372','1','12','$.[\'pools\'][?(@[\'name\'] == "{#NAME}")].[\'blocksize\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91061','43372','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91062','43373','1','12','$.[\'pools\'][?(@[\'name\'] == "{#NAME}")].[\'total-size-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91063','43373','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91064','43374','1','12','$.[\'pools\'][?(@[\'name\'] == "{#NAME}")].[\'health-numeric\'].first()','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91065','43374','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91066','43375','1','12','$.[\'ports\'][?(@[\'port\'] == "{#NAME}")].[\'health-numeric\'].first()','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91067','43375','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91068','43376','1','12','$.[\'ports\'][?(@[\'port\'] == "{#NAME}")].[\'status-numeric\'].first()','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91069','43376','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91070','43377','1','12','$.[\'ports\'][?(@[\'port\'] == "{#NAME}")].[\'port-type-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91071','43377','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91072','43378','1','12','$.[\'power-supplies\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'health-numeric\'].first()','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91073','43378','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91074','43379','1','12','$.[\'power-supplies\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'part-number\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91075','43379','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91076','43380','1','12','$.[\'power-supplies\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'serial-number\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91077','43380','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91078','43381','1','12','$.[\'power-supplies\'][?(@[\'durable-id\'] == "{#DURABLE.ID}")].[\'status-numeric\'].first()','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91079','43381','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91080','43382','1','12','$.[\'volumes\'][?(@[\'volume-name\'] == "{#NAME}")].[\'allocated-size-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91081','43382','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91082','43383','1','12','$.[\'volumes\'][?(@[\'volume-name\'] == "{#NAME}")].[\'blocksize\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91083','43383','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91084','43384','1','12','$.[\'volumes\'][?(@[\'volume-name\'] == "{#NAME}")].[\'blocks\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91085','43384','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91086','43385','1','12','$.[\'volume-statistics\'][?(@[\'volume-name\'] == "{#NAME}")].[\'read-cache-hits\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91087','43385','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91088','43386','1','12','$.[\'volume-statistics\'][?(@[\'volume-name\'] == "{#NAME}")].[\'read-cache-misses\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91089','43386','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91090','43387','1','12','$.[\'volume-statistics\'][?(@[\'volume-name\'] == "{#NAME}")].[\'write-cache-hits\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91091','43387','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91092','43388','1','12','$.[\'volume-statistics\'][?(@[\'volume-name\'] == "{#NAME}")].[\'write-cache-misses\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91093','43388','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91094','43389','1','12','$.[\'volume-statistics\'][?(@[\'volume-name\'] == "{#NAME}")].[\'data-read-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91095','43389','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91096','43390','1','12','$.[\'volume-statistics\'][?(@[\'volume-name\'] == "{#NAME}")].[\'bytes-per-second-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91097','43391','1','12','$.[\'volume-statistics\'][?(@[\'volume-name\'] == "{#NAME}")].[\'data-written-numeric\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91098','43391','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91099','43392','1','12','$.[\'volume-statistics\'][?(@[\'volume-name\'] == "{#NAME}")].[\'number-of-reads\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91100','43392','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91101','43393','1','12','$.[\'volume-statistics\'][?(@[\'volume-name\'] == "{#NAME}")].[\'iops\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91102','43394','1','12','$.[\'volume-statistics\'][?(@[\'volume-name\'] == "{#NAME}")].[\'number-of-writes\'].first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91103','43394','2','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91104','43395','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91105','43397','1','12','$.system.systemVersion','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91106','43397','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91107','43398','1','12','$.system.serialNumber','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91108','43398','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91109','43399','1','12','$.system.totalNodes','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91110','43399','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91111','43400','1','12','$.system.onlineNodes.length()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91112','43400','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91113','43401','1','12','$.system.name','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91114','43401','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91115','43402','1','12','$.system.model','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91116','43402','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91117','43403','1','12','$.errors','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91118','43403','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91119','43404','1','12','$.system.location','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91120','43404','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91121','43405','1','12','$.system.chunkletSizeMiB','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91122','43405','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91123','43405','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91124','43406','1','12','$.system.totalCapacityMiB','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91125','43406','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91126','43406','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91127','43407','1','12','$.system.freeCapacityMiB','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91128','43407','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91129','43407','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91130','43408','1','12','$.system.failedCapacityMiB','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91131','43408','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91132','43408','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91133','43409','1','12','$.system.allocatedCapacityMiB','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91134','43409','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91135','43409','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91136','43410','1','12','$.disks.total','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91137','43410','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91138','43411','1','12','$.system.contact','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91139','43411','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91140','43412','1','12','$.cpgs.members','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91141','43412','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91142','43413','1','12','$.disks.members','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91143','43413','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91144','43414','1','12','$.hosts.members','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91145','43414','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91146','43415','1','12','$.ports.members','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91147','43415','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91148','43416','1','12','$.tasks','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91149','43416','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91150','43417','1','12','$.volumes.members','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91151','43417','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91152','43418','1','12','$.cpgs.members[?(@.id == "{#ID}")].numFPVVs.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91153','43418','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91154','43419','1','12','$.cpgs.members[?(@.id == "{#ID}")].UsrUsage.rawUsedMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91155','43419','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91156','43419','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91157','43420','1','12','$.cpgs.members[?(@.id == "{#ID}")].numTDVVs.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91158','43420','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91159','43421','1','12','$.cpgs.members[?(@.id == "{#ID}")].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91160','43422','1','12','$.cpgs.members[?(@.id == "{#ID}")].failedStates.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91161','43422','2','21','return JSON.stringify(JSON.parse(value));','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91162','43423','1','12','$.cpgs.members[?(@.id == "{#ID}")].degradedStates.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91163','43424','1','12','$.cpgs.members[?(@.id == "{#ID}")].totalSpaceMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91164','43424','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91165','43424','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91166','43425','1','12','$.cpgs.members[?(@.id == "{#ID}")].sharedSpaceMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91167','43425','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91168','43425','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91169','43426','1','12','$.cpgs.members[?(@.id == "{#ID}")].freeSpaceMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91170','43426','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91171','43426','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91172','43427','1','12','$.cpgs.members[?(@.id == "{#ID}")].UsrUsage.usedMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91173','43427','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91174','43427','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91175','43428','1','12','$.cpgs.members[?(@.id == "{#ID}")].UsrUsage.totalMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91176','43428','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91177','43428','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91178','43429','1','12','$.cpgs.members[?(@.id == "{#ID}")].UsrUsage.rawTotalMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91179','43429','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91180','43429','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91181','43430','1','12','$.cpgs.members[?(@.id == "{#ID}")].rawFreeSpaceMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91182','43430','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91183','43430','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91184','43431','1','12','$.cpgs.members[?(@.id == "{#ID}")].SDUsage.usedMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91185','43431','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91186','43431','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91187','43432','1','12','$.cpgs.members[?(@.id == "{#ID}")].SDUsage.totalMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91188','43432','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91189','43432','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91190','43433','1','12','$.cpgs.members[?(@.id == "{#ID}")].SDUsage.rawUsedMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91191','43433','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91192','43433','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91193','43434','1','12','$.cpgs.members[?(@.id == "{#ID}")].SDUsage.rawTotalMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91194','43434','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91195','43434','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91196','43435','1','12','$.cpgs.members[?(@.id == "{#ID}")].SAUsage.usedMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91197','43435','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91198','43435','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91199','43436','1','12','$.cpgs.members[?(@.id == "{#ID}")].SAUsage.totalMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91200','43436','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91201','43436','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91202','43437','1','12','$.cpgs.members[?(@.id == "{#ID}")].SAUsage.rawUsedMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91203','43437','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91204','43437','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91205','43438','1','12','$.cpgs.members[?(@.id == "{#ID}")].SAUsage.rawTotalMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91206','43438','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91207','43438','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91208','43439','1','12','$.cpgs.members[?(@.id == "{#ID}")].rawTotalSpaceMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91209','43439','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91210','43439','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91211','43440','1','12','$.cpgs.members[?(@.id == "{#ID}")].rawSharedSpaceMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91212','43440','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91213','43440','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91214','43441','1','12','$.cpgs.members[?(@.id == "{#ID}")].numTPVVs.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91215','43441','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91216','43442','1','12','$.disks.members[?(@.id == "{#ID}")].freeSizeMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91217','43442','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91218','43442','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91219','43443','1','12','$.disks.members[?(@.id == "{#ID}")].fwVersion.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91220','43443','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91221','43444','1','12','$.disks.members[?(@.id == "{#ID}")].loopA0.degraded.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91222','43444','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91223','43444','3','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91224','43445','1','12','$.disks.members[?(@.id == "{#ID}")].loopA1.degraded.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91225','43445','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91226','43445','3','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91227','43446','1','12','$.disks.members[?(@.id == "{#ID}")].loopB0.degraded.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91228','43446','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91229','43446','3','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91230','43447','1','12','$.disks.members[?(@.id == "{#ID}")].loopB1.degraded.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91231','43447','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91232','43447','3','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91233','43448','1','12','$.disks.members[?(@.id == "{#ID}")].manufacturer.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91234','43448','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91235','43449','1','12','$.disks.members[?(@.id == "{#ID}")].model.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91236','43449','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91237','43450','1','12','$.disks.members[?(@.id == "{#ID}")].RPM.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91238','43450','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91239','43451','1','12','$.disks.members[?(@.id == "{#ID}")].serialNumber.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91240','43451','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91241','43452','1','12','$.disks.members[?(@.id == "{#ID}")].state.first()','2','99');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91242','43452','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91243','43453','1','12','$.disks.members[?(@.id == "{#ID}")].totalSizeMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91244','43453','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91245','43453','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91246','43454','1','12','$.hosts.members[?(@.id == "{#ID}")].descriptors.comment.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91247','43454','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91248','43455','1','12','$.hosts.members[?(@.id == "{#ID}")].descriptors.contact.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91249','43455','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91250','43456','1','12','$.hosts.members[?(@.id == "{#ID}")].descriptors.IPAddr.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91251','43456','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91252','43457','1','12','$.hosts.members[?(@.id == "{#ID}")].descriptors.location.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91253','43457','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91254','43458','1','12','$.hosts.members[?(@.id == "{#ID}")].descriptors.model.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91255','43458','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91256','43459','1','12','$.hosts.members[?(@.id == "{#ID}")].descriptors.os.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91257','43459','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91258','43460','1','12','$.ports.members[?(@.portPos.node == "{#NODE}" && @.portPos.slot == "{#SLOT}" && @.portPos.cardPort == "{#CARD.PORT}")].failoverState.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91259','43460','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91260','43461','1','12','$.ports.members[?(@.portPos.node == "{#NODE}" && @.portPos.slot == "{#SLOT}" && @.portPos.cardPort == "{#CARD.PORT}")].hardwareType.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91261','43461','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91262','43462','1','12','$.ports.members[?(@.portPos.node == "{#NODE}" && @.portPos.slot == "{#SLOT}" && @.portPos.cardPort == "{#CARD.PORT}")].linkState.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91263','43462','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91264','43463','1','12','$.ports.members[?(@.portPos.node == "{#NODE}" && @.portPos.slot == "{#SLOT}" && @.portPos.cardPort == "{#CARD.PORT}")].type.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91265','43463','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91266','43464','1','12','$.tasks[?(@.id == "{#ID}")].finishTime.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91267','43464','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91268','43464','3','15','^-$','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91269','43464','4','21','raw_date = value.split(\' \');\n\nreturn Date.parse(raw_date[0] + \'T\' + raw_date[1] + raw_date[2] + \':00\')/1000;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91270','43465','1','12','$.tasks[?(@.id == "{#ID}")].startTime.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91271','43465','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91272','43465','3','21','raw_date = value.split(\' \');\n\nreturn Date.parse(raw_date[0] + \'T\' + raw_date[1] + raw_date[2] + \':00\')/1000;','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91273','43466','1','12','$.tasks[?(@.id == "{#ID}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91274','43466','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91275','43467','1','12','$.tasks[?(@.id == "{#ID}")].type.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91276','43467','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91277','43468','1','12','$.volumes.members[?(@.id == "{#ID}")].capacityEfficiency.compaction.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91278','43468','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91279','43469','1','12','$.volumes.members[?(@.id == "{#ID}")].sizeMiB.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91280','43469','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91281','43469','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91282','43470','1','12','$.volumes.members[?(@.id == "{#ID}")].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91283','43471','1','12','$.volumes.members[?(@.id == "{#ID}")].failedStates.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91284','43471','2','21','return JSON.stringify(JSON.parse(value));','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91285','43472','1','12','$.volumes.members[?(@.id == "{#ID}")].degradedStates.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91286','43473','1','12','$.volumes.members[?(@.id == "{#ID}")].deduplicationState.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91287','43473','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91288','43474','1','12','$.volumes.members[?(@.id == "{#ID}")].compressionState.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91289','43474','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91290','43475','1','12','$.volumes.members[?(@.id == "{#ID}")].userSpace.usedMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91291','43475','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91292','43475','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91293','43476','1','12','$.volumes.members[?(@.id == "{#ID}")].userSpace.reservedMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91294','43476','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91295','43476','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91296','43477','1','12','$.volumes.members[?(@.id == "{#ID}")].userSpace.rawReservedMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91297','43477','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91298','43477','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91299','43478','1','12','$.volumes.members[?(@.id == "{#ID}")].userSpace.freeMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91300','43478','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91301','43478','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91302','43479','1','12','$.volumes.members[?(@.id == "{#ID}")].totalUsedMiB.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91303','43479','2','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91304','43480','1','12','$.volumes.members[?(@.id == "{#ID}")].totalReservedMiB.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91305','43480','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91306','43480','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91307','43481','1','12','$.volumes.members[?(@.id == "{#ID}")].capacityEfficiency.compression.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91308','43481','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91309','43482','1','12','$.volumes.members[?(@.id == "{#ID}")].snapshotSpace.usedMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91310','43482','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91311','43482','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91312','43483','1','12','$.volumes.members[?(@.id == "{#ID}")].snapshotSpace.reservedMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91313','43483','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91314','43483','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91315','43484','1','12','$.volumes.members[?(@.id == "{#ID}")].snapshotSpace.rawReservedMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91316','43484','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91317','43484','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91318','43485','1','12','$.volumes.members[?(@.id == "{#ID}")].snapshotSpace.freeMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91319','43485','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91320','43485','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91321','43486','1','12','$.volumes.members[?(@.id == "{#ID}")].adminSpace.usedMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91322','43486','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91323','43486','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91324','43487','1','12','$.volumes.members[?(@.id == "{#ID}")].adminSpace.reservedMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91325','43487','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91326','43487','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91327','43488','1','12','$.volumes.members[?(@.id == "{#ID}")].adminSpace.rawReservedMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91328','43488','2','20','12h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91329','43488','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91330','43489','1','12','$.volumes.members[?(@.id == "{#ID}")].adminSpace.freeMiB.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91331','43489','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91332','43489','3','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91333','43490','1','12','$.volumes.members[?(@.id == "{#ID}")].capacityEfficiency.dataReduction.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91334','43490','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91335','43491','1','12','$.volumes.members[?(@.id == "{#ID}")].capacityEfficiency.overProvisioning.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91336','43491','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91337','43492','1','12','$.volumes.members[?(@.id == "{#ID}")].capacityEfficiency.deduplication.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91338','43492','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91339','43493','1','12','$.volumes.members[?(@.id == "{#ID}")].rcopyStatus.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91340','43495','1','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91341','43496','1','12','$.enclosures.members.[0]','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91342','43497','1','12','$.errors','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91343','43497','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91344','43498','1','12','$.applianceBays','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91345','43498','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91346','43499','1','12','$.crossBars','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91347','43499','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91348','43500','1','12','$.datacenters.members','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91349','43500','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91350','43501','1','12','$.deviceBays','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91351','43501','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91352','43502','1','12','$.enclosures.members','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91353','43502','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91354','43503','1','12','$.["ethernet-networks"].members','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91355','43503','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91356','43504','1','12','$.fabrics.members','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91357','43504','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91358','43505','1','12','$.fanBays','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91359','43505','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91360','43506','1','12','$.["fc-networks"].members','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91361','43506','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91362','43507','1','12','$.managerBays','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91363','43507','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91364','43508','1','12','$.["hypervisor-managers"].members','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91365','43508','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91366','43509','1','12','$.interconnects.members','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91367','43509','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91368','43510','1','12','$.["logical-enclosures"].members','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91369','43510','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91370','43511','1','12','$.partitions','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91371','43511','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91372','43512','1','12','$.powerSupplyBays','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91373','43512','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91374','43513','1','12','$.racks.members','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91375','43513','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91376','43514','1','12','$.["server-hardware"].members','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91377','43514','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91378','43515','1','12','$.["storage-pools"].members','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91379','43515','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91380','43516','1','12','$.["storage-systems"].members','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91381','43516','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91382','43517','1','12','$.["storage-volumes"].members','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91383','43517','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91384','43518','1','12','$.["uplink-sets"].members','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91385','43518','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91386','43519','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].applianceBays[?(@.bayNumber == "{#BAY_NUMBER}")].bayPowerState.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91387','43519','2','25','EFuse\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91388','43519','3','25','SoftReset\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91389','43519','4','25','Reset\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91390','43519','5','25','Unknown\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91391','43519','6','13','0\n3','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91392','43520','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].applianceBays[?(@.bayNumber == "{#BAY_NUMBER}")].model.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91393','43520','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91394','43521','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].applianceBays[?(@.bayNumber == "{#BAY_NUMBER}")].partNumber.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91395','43521','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91396','43522','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].applianceBays[?(@.bayNumber == "{#BAY_NUMBER}")].poweredOn.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91397','43522','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91398','43522','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91399','43523','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].applianceBays[?(@.bayNumber == "{#BAY_NUMBER}")].devicePresence.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91400','43523','2','25','Absent\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91401','43523','3','25','PresenceNoOp\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91402','43523','4','25','PresenceUnknown\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91403','43523','5','25','Present\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91404','43523','6','25','Subsumed\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91405','43523','7','13','0\n4','2','2');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91406','43523','8','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91407','43524','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].applianceBays[?(@.bayNumber == "{#BAY_NUMBER}")].serialNumber.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91408','43524','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91409','43525','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].applianceBays[?(@.bayNumber == "{#BAY_NUMBER}")].sparePartNumber.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91410','43525','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91411','43526','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].applianceBays[?(@.bayNumber == "{#BAY_NUMBER}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91412','43526','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91413','43526','3','25','Critical\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91414','43526','4','25','Disabled\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91415','43526','5','25','OK\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91416','43526','6','25','Unknown\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91417','43526','7','25','Warning\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91418','43526','8','13','0\n4','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91419','43527','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].crossBars[?(@.bayNumber == "{#BAY_NUMBER}")].hwVersion.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91420','43527','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91421','43528','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].crossBars[?(@.bayNumber == "{#BAY_NUMBER}")].partNumber.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91422','43528','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91423','43529','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].crossBars[?(@.bayNumber == "{#BAY_NUMBER}")].presence.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91424','43529','2','25','Absent\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91425','43529','3','25','PresenceNoOp\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91426','43529','4','25','PresenceUnknown\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91427','43529','5','25','Present\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91428','43529','6','25','Subsumed\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91429','43529','7','13','0\n4','2','2');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91430','43529','8','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91431','43530','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].crossBars[?(@.bayNumber == "{#BAY_NUMBER}")].serialNumber.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91432','43530','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91433','43531','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].crossBars[?(@.bayNumber == "{#BAY_NUMBER}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91434','43531','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91435','43531','3','25','Critical\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91436','43531','4','25','Disabled\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91437','43531','5','25','OK\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91438','43531','6','25','Unknown\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91439','43531','7','25','Warning\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91440','43531','8','13','0\n4','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91441','43532','1','12','$.datacenters.members[?(@.name == "{#NAME}")].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91442','43532','2','25','Adding\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91443','43532','3','25','AddError\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91444','43532','4','25','Configured\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91445','43532','5','25','CredentialError\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91446','43532','6','25','Refreshing\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91447','43532','7','25','RefreshError\n5','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91448','43532','8','25','Removing\n6','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91449','43532','9','25','RemoveError\n7','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91450','43532','10','25','Unmanaged\n8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91451','43532','11','13','0\n8','2','9');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91452','43533','1','12','$.datacenters.members[?(@.name == "{#NAME}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91453','43533','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91454','43533','3','25','Critical\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91455','43533','4','25','Disabled\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91456','43533','5','25','OK\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91457','43533','6','25','Unknown\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91458','43533','7','25','Warning\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91459','43533','8','13','0\n4','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91460','43534','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].deviceBays[?(@.bayNumber == "{#BAY_NUMBER}")].model.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91461','43534','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91462','43535','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].deviceBays[?(@.bayNumber == "{#BAY_NUMBER}")].powerAllocationWatts.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91463','43535','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91464','43536','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].deviceBays[?(@.bayNumber == "{#BAY_NUMBER}")].devicePresence.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91465','43536','2','25','Absent\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91466','43536','3','25','PresenceNoOp\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91467','43536','4','25','PresenceUnknown\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91468','43536','5','25','Present\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91469','43536','6','25','Subsumed\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91470','43536','7','13','0\n4','2','2');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91471','43536','8','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91472','43537','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].deviceBays[?(@.bayNumber == "{#BAY_NUMBER}")].serialNumber.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91473','43537','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91474','43538','1','12','$.enclosures.members[?(@.name == "{#NAME}")].applianceBayCount.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91475','43538','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91476','43539','1','12','$.enclosures.members[?(@.name == "{#NAME}")].partNumber.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91477','43539','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91478','43540','1','12','$.enclosures.members[?(@.name == "{#NAME}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91479','43540','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91480','43540','3','25','Critical\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91481','43540','4','25','Disabled\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91482','43540','5','25','OK\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91483','43540','6','25','Unknown\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91484','43540','7','25','Warning\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91485','43540','8','13','0\n4','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91486','43541','1','12','$.enclosures.members[?(@.name == "{#NAME}")].stateReason.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91487','43541','2','25','Missing\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91488','43541','3','25','None\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91489','43541','4','25','NotAdded\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91490','43541','5','25','NotOwner\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91491','43541','6','25','OperationFailed\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91492','43541','7','25','Unowned\n5','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91493','43541','8','25','UnsupportedFirmware\n6','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91494','43541','9','25','UpdatingFirmware\n7','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91495','43541','10','13','0\n7','2','8');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91496','43542','1','12','$.enclosures.members[?(@.name == "{#NAME}")].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91497','43542','2','25','Adding\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91498','43542','3','25','Configured\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91499','43542','4','25','Configuring\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91500','43542','5','25','Interrupted\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91501','43542','6','25','Monitored\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91502','43542','7','25','Pending\n5','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91503','43542','8','25','RemoveFailed\n6','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91504','43542','9','25','Removing\n7','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91505','43542','10','25','Unmanaged\n8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91506','43542','11','25','Unsupported\n9','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91507','43542','12','13','0\n9','2','10');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91508','43543','1','12','$.enclosures.members[?(@.name == "{#NAME}")].serialNumber.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91509','43543','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91510','43544','1','12','$.enclosures.members[?(@.name == "{#NAME}")].powerSupplyBayCount.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91511','43544','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91512','43545','1','12','$.enclosures.members[?(@.name == "{#NAME}")].powerAvailableWatts.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91513','43546','1','12','$.enclosures.members[?(@.name == "{#NAME}")].powerAllocatedWatts.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91514','43547','1','12','$.enclosures.members[?(@.name == "{#NAME}")].powerCapacityWatts.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91515','43548','1','12','$.enclosures.members[?(@.name == "{#NAME}")].enclosureModel.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91516','43548','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91517','43549','1','12','$.enclosures.members[?(@.name == "{#NAME}")].deviceBayCount.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91518','43549','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91519','43550','1','12','$.enclosures.members[?(@.name == "{#NAME}")].minimumPowerSuppliesForRedundantPowerFeed.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91520','43550','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91521','43551','1','12','$.enclosures.members[?(@.name == "{#NAME}")].minimumPowerSupplies.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91522','43551','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91523','43552','1','12','$.enclosures.members[?(@.name == "{#NAME}")].interconnectBayWatts.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91524','43553','1','12','$.enclosures.members[?(@.name == "{#NAME}")].interconnectBayCount.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91525','43553','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91526','43554','1','12','$.enclosures.members[?(@.name == "{#NAME}")].fwBaselineName.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91527','43554','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91528','43555','1','12','$.enclosures.members[?(@.name == "{#NAME}")].fanBayCount.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91529','43555','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91530','43556','1','12','$.enclosures.members[?(@.name == "{#NAME}")].fansAndManagementDevicesWatts.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91531','43557','1','12','$.enclosures.members[?(@.name == "{#NAME}")].deviceBayWatts.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91532','43558','1','12','$.enclosures.members[?(@.name == "{#NAME}")].enclosureType.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91533','43558','2','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91534','43559','1','12','$.["ethernet-networks"].members[?(@.name == "{#NAME}")].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91535','43559','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91536','43560','1','12','$.["ethernet-networks"].members[?(@.name == "{#NAME}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91537','43560','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91538','43560','3','25','Critical\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91539','43560','4','25','Disabled\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91540','43560','5','25','OK\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91541','43560','6','25','Unknown\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91542','43560','7','25','Warning\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91543','43560','8','13','0\n4','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91544','43561','1','12','$.fabrics.members[?(@.name == "{#NAME}")].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91545','43561','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91546','43562','1','12','$.fabrics.members[?(@.name == "{#NAME}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91547','43562','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91548','43562','3','25','Critical\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91549','43562','4','25','Disabled\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91550','43562','5','25','OK\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91551','43562','6','25','Unknown\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91552','43562','7','25','Warning\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91553','43562','8','13','0\n4','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91554','43563','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].fanBays[?(@.bayNumber == "{#BAY_NUMBER}")].model.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91555','43563','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91556','43564','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].fanBays[?(@.bayNumber == "{#BAY_NUMBER}")].partNumber.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91557','43564','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91558','43565','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].fanBays[?(@.bayNumber == "{#BAY_NUMBER}")].devicePresence.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91559','43565','2','25','Absent\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91560','43565','3','25','PresenceNoOp\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91561','43565','4','25','PresenceUnknown\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91562','43565','5','25','Present\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91563','43565','6','25','Subsumed\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91564','43565','7','13','0\n4','2','2');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91565','43565','8','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91566','43566','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].fanBays[?(@.bayNumber == "{#BAY_NUMBER}")].deviceRequired.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91567','43566','2','6','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91568','43566','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91569','43567','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].fanBays[?(@.bayNumber == "{#BAY_NUMBER}")].serialNumber.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91570','43567','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91571','43568','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].fanBays[?(@.bayNumber == "{#BAY_NUMBER}")].sparePartNumber.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91572','43568','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91573','43569','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].fanBays[?(@.bayNumber == "{#BAY_NUMBER}")].state.first()','2','5');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91574','43569','2','25','Degraded\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91575','43569','3','25','Failed\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91576','43569','4','25','Misplaced\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91577','43569','5','25','Missing\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91578','43569','6','25','OK\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91579','43569','7','13','0\n4','2','5');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91580','43570','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].fanBays[?(@.bayNumber == "{#BAY_NUMBER}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91581','43570','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91582','43570','3','25','Critical\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91583','43570','4','25','Disabled\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91584','43570','5','25','OK\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91585','43570','6','25','Unknown\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91586','43570','7','25','Warning\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91587','43570','8','13','0\n4','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91588','43571','1','12','$.["fc-networks"].members[?(@.name == "{#NAME}")].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91589','43571','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91590','43572','1','12','$.["fc-networks"].members[?(@.name == "{#NAME}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91591','43572','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91592','43572','3','25','Critical\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91593','43572','4','25','Disabled\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91594','43572','5','25','OK\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91595','43572','6','25','Unknown\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91596','43572','7','25','Warning\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91597','43572','8','13','0\n4','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91598','43573','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].managerBays[?(@.bayNumber == "{#BAY_NUMBER}")].fwVersion.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91599','43573','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91600','43574','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].managerBays[?(@.bayNumber == "{#BAY_NUMBER}")].linkPortState.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91601','43574','2','25','Disabled\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91602','43574','3','25','Linked\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91603','43574','4','25','Unlinked\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91604','43574','5','13','0\n2','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91605','43574','6','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91606','43575','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].managerBays[?(@.bayNumber == "{#BAY_NUMBER}")].linkPortStatus.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91607','43575','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91608','43575','3','25','Critical\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91609','43575','4','25','Disabled\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91610','43575','5','25','OK\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91611','43575','6','25','Unknown\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91612','43575','7','25','Warning\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91613','43575','8','13','0\n4','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91614','43576','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].managerBays[?(@.bayNumber == "{#BAY_NUMBER}")].mgmtPortState.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91615','43576','2','25','Active\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91616','43576','3','25','Disabled\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91617','43576','4','25','I3s\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91618','43576','5','25','Other\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91619','43576','6','25','Standby\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91620','43576','7','25','Unknown\n5','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91621','43576','8','13','0\n5','2','5');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91622','43576','9','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91623','43577','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].managerBays[?(@.bayNumber == "{#BAY_NUMBER}")].mgmtPortStatus.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91624','43577','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91625','43577','3','25','Critical\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91626','43577','4','25','Disabled\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91627','43577','5','25','OK\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91628','43577','6','25','Unknown\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91629','43577','7','25','Warning\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91630','43577','8','13','0\n4','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91631','43578','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].managerBays[?(@.bayNumber == "{#BAY_NUMBER}")].model.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91632','43578','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91633','43579','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].managerBays[?(@.bayNumber == "{#BAY_NUMBER}")].partNumber.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91634','43579','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91635','43580','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].managerBays[?(@.bayNumber == "{#BAY_NUMBER}")].devicePresence.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91636','43580','2','25','Absent\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91637','43580','3','25','PresenceNoOp\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91638','43580','4','25','PresenceUnknown\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91639','43580','5','25','Present\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91640','43580','6','25','Subsumed\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91641','43580','7','13','0\n4','2','2');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91642','43580','8','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91643','43581','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].managerBays[?(@.bayNumber == "{#BAY_NUMBER}")].serialNumber.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91644','43581','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91645','43582','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].managerBays[?(@.bayNumber == "{#BAY_NUMBER}")].sparePartNumber.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91646','43582','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91647','43583','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].managerBays[?(@.bayNumber == "{#BAY_NUMBER}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91648','43583','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91649','43583','3','25','Critical\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91650','43583','4','25','Disabled\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91651','43583','5','25','OK\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91652','43583','6','25','Unknown\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91653','43583','7','25','Warning\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91654','43583','8','13','0\n4','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91655','43584','1','12','$.["hypervisor-managers"].members[?(@.displayName == "{#NAME}")].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91656','43584','2','25','Connected\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91657','43584','3','25','Disconnected\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91658','43584','4','25','Configuring\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91659','43584','5','25','Error\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91660','43584','6','13','0\n3','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91661','43585','1','12','$.["hypervisor-managers"].members[?(@.displayName == "{#NAME}")].stateReason.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91662','43585','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91663','43586','1','12','$.["hypervisor-managers"].members[?(@.displayName == "{#NAME}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91664','43586','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91665','43586','3','25','Critical\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91666','43586','4','25','Disabled\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91667','43586','5','25','OK\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91668','43586','6','25','Unknown\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91669','43586','7','25','Warning\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91670','43586','8','13','0\n4','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91671','43587','1','12','$.interconnects.members[?(@.name == "{#NAME}")].interconnectHardwareHealth.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91672','43587','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91673','43588','1','12','$.interconnects.members[?(@.name == "{#NAME}")].model.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91674','43588','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91675','43589','1','12','$.interconnects.members[?(@.name == "{#NAME}")].partNumber.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91676','43589','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91677','43590','1','12','$.interconnects.members[?(@.name == "{#NAME}")].portCount.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91678','43590','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91679','43591','1','12','$.interconnects.members[?(@.name == "{#NAME}")].serialNumber.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91680','43591','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91681','43592','1','12','$.interconnects.members[?(@.name == "{#NAME}")].sparePartNumber.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91682','43592','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91683','43593','1','12','$.interconnects.members[?(@.name == "{#NAME}")].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91684','43593','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91685','43594','1','12','$.interconnects.members[?(@.name == "{#NAME}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91686','43594','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91687','43594','3','25','Critical\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91688','43594','4','25','Disabled\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91689','43594','5','25','OK\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91690','43594','6','25','Unknown\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91691','43594','7','25','Warning\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91692','43594','8','13','0\n4','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91693','43595','1','12','$.["logical-enclosures"].members[?(@.name == "{#NAME}")].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91694','43595','2','25','Inconsistent\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91695','43595','3','25','Creating\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91696','43595','4','25','DeleteFailed\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91697','43595','5','25','Deleting\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91698','43595','6','25','Consistent\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91699','43595','7','25','Updating\n5','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91700','43595','8','13','0\n5','2','6');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91701','43596','1','12','$.["logical-enclosures"].members[?(@.name == "{#NAME}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91702','43596','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91703','43596','3','25','Critical\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91704','43596','4','25','Disabled\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91705','43596','5','25','OK\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91706','43596','6','25','Unknown\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91707','43596','7','25','Warning\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91708','43596','8','13','0\n4','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91709','43597','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].partitions[?(@.partitionID == "{#PARTITION_ID}")].deviceCount.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91710','43597','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91711','43598','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].partitions[?(@.partitionID == "{#PARTITION_ID}")].partitionHealth.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91712','43598','2','25','NparDegrade\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91713','43598','3','25','NparHealthInvalid\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91714','43598','4','25','NparHealthMax\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91715','43598','5','25','NparOk\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91716','43598','6','13','0\n3','2','4');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91717','43599','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].partitions[?(@.partitionID == "{#PARTITION_ID}")].memoryMb.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91718','43599','2','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91719','43599','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91720','43600','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].partitions[?(@.partitionID == "{#PARTITION_ID}")].processorCount.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91721','43600','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91722','43601','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].partitions[?(@.partitionID == "{#PARTITION_ID}")].partitionStatus.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91723','43601','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91724','43601','3','25','ParStatusActive\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91725','43601','4','25','ParStatusInactive\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91726','43601','5','25','ParStatusInvalid\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91727','43601','6','25','ParStatusManualRepair\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91728','43601','7','25','ParStatusMax\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91729','43601','8','25','ParStatusUndefined\n5','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91730','43601','9','25','ParStatusUnknown\n6','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91731','43601','10','13','0\n6','2','6');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91732','43602','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].powerSupplyBays[?(@.bayNumber == "{#BAY_NUMBER}")].model.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91733','43602','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91734','43603','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].powerSupplyBays[?(@.bayNumber == "{#BAY_NUMBER}")].outputCapacityWatts.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91735','43603','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91736','43604','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].powerSupplyBays[?(@.bayNumber == "{#BAY_NUMBER}")].partNumber.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91737','43604','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91738','43605','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].powerSupplyBays[?(@.bayNumber == "{#BAY_NUMBER}")].devicePresence.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91739','43605','2','25','Absent\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91740','43605','3','25','PresenceNoOp\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91741','43605','4','25','PresenceUnknown\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91742','43605','5','25','Present\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91743','43605','6','25','Subsumed\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91744','43605','7','13','0\n4','2','2');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91745','43605','8','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91746','43606','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].powerSupplyBays[?(@.bayNumber == "{#BAY_NUMBER}")].serialNumber.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91747','43606','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91748','43607','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].powerSupplyBays[?(@.bayNumber == "{#BAY_NUMBER}")].sparePartNumber.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91749','43607','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91750','43608','1','12','$.enclosures.members[?(@.name == "{#ENCLOSURE_NAME}")].powerSupplyBays[?(@.bayNumber == "{#BAY_NUMBER}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91751','43608','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91752','43608','3','25','Critical\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91753','43608','4','25','Disabled\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91754','43608','5','25','OK\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91755','43608','6','25','Unknown\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91756','43608','7','25','Warning\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91757','43608','8','13','0\n4','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91758','43609','1','12','$.racks.members[?(@.name == "{#NAME}")].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91759','43609','2','25','Adding\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91760','43609','3','25','AddError\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91761','43609','4','25','Configured\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91762','43609','5','25','CredentialError\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91763','43609','6','25','Refreshing\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91764','43609','7','25','RefreshError\n5','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91765','43609','8','25','Removing\n6','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91766','43609','9','25','RemoveError\n7','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91767','43609','10','25','Unmanaged\n8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91768','43609','11','13','0\n8','2','9');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91769','43610','1','12','$.racks.members[?(@.name == "{#NAME}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91770','43610','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91771','43610','3','25','Critical\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91772','43610','4','25','Disabled\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91773','43610','5','25','OK\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91774','43610','6','25','Unknown\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91775','43610','7','25','Warning\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91776','43610','8','13','0\n4','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91777','43611','1','12','$.["server-hardware"].members[?(@.name == "{#LOCATION}")].processorCoreCount.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91778','43611','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91779','43612','1','12','$.["server-hardware"].members[?(@.name == "{#LOCATION}")].processorCount.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91780','43612','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91781','43613','1','12','$.["server-hardware"].members[?(@.name == "{#LOCATION}")].processorSpeedMhz.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91782','43613','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91783','43614','1','12','$.["server-hardware"].members[?(@.name == "{#LOCATION}")].processorType.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91784','43614','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91785','43615','1','12','$.["server-hardware"].members[?(@.name == "{#LOCATION}")].maintenanceState.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91786','43615','2','25','Maintenance\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91787','43615','3','25','Normal\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91788','43615','4','13','0\n1','2','2');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91789','43616','1','12','$.["server-hardware"].members[?(@.name == "{#LOCATION}")].maintenanceStateReason.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91790','43616','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91791','43617','1','12','$.["server-hardware"].members[?(@.name == "{#LOCATION}")].memoryMb.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91792','43617','2','1','1048576','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91793','43617','3','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91794','43618','1','12','$.["server-hardware"].members[?(@.name == "{#LOCATION}")].migrationState.first()','1','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91795','43618','2','25','Migrating\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91796','43618','3','25','NotApplicable\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91797','43618','4','25','Unknown\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91798','43618','5','13','0\n2','2','2');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91799','43619','1','12','$.["server-hardware"].members[?(@.name == "{#LOCATION}")].model.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91800','43619','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91801','43620','1','12','$.["server-hardware"].members[?(@.name == "{#LOCATION}")].partNumber.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91802','43620','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91803','43621','1','12','$.["server-hardware"].members[?(@.name == "{#LOCATION}")].powerState.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91804','43621','2','25','PoweringOff\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91805','43621','3','25','PoweringOn\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91806','43621','4','25','Resetting\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91807','43621','5','25','Unknown\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91808','43621','6','25','Off\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91809','43621','7','25','On\n5','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91810','43621','8','13','0\n5','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91811','43622','1','12','$.["server-hardware"].members[?(@.name == "{#LOCATION}")].serialNumber.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91812','43622','2','20','1d','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91813','43623','1','12','$.["server-hardware"].members[?(@.name == "{#LOCATION}")].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91814','43623','2','25','Unknown\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91815','43623','3','25','Adding\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91816','43623','4','25','NoProfileApplied\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91817','43623','5','25','Monitored\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91818','43623','6','25','Unmanaged\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91819','43623','7','25','Removing\n5','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91820','43623','8','25','RemoveFailed\n6','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91821','43623','9','25','Removed\n7','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91822','43623','10','25','ApplyingProfile\n8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91823','43623','11','25','ProfileApplied\n9','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91824','43623','12','25','RemovingProfile\n10','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91825','43623','13','25','ProfileError\n11','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91826','43623','14','25','Unsupported\n12','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91827','43623','15','25','UpdatingFirmware\n13','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91828','43623','16','13','0\n13','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91829','43624','1','12','$.["server-hardware"].members[?(@.name == "{#LOCATION}")].stateReason.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91830','43624','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91831','43625','1','12','$.["server-hardware"].members[?(@.name == "{#LOCATION}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91832','43625','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91833','43625','3','25','Critical\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91834','43625','4','25','Disabled\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91835','43625','5','25','OK\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91836','43625','6','25','Unknown\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91837','43625','7','25','Warning\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91838','43625','8','13','0\n4','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91839','43626','1','12','$.["storage-pools"].members[?(@.name == "{#NAME}")].allocatedCapacity.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91840','43627','1','12','$.["storage-pools"].members[?(@.name == "{#NAME}")].freeCapacity.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91841','43628','1','12','$.["storage-pools"].members[?(@.name == "{#NAME}")].deviceSpecificAttributes.allocatedCapacity.snapshotAllocatedCapacity.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91842','43629','1','12','$.["storage-pools"].members[?(@.name == "{#NAME}")].totalCapacity.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91843','43630','1','12','$.["storage-pools"].members[?(@.name == "{#NAME}")].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91844','43630','2','25','AddFailed\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91845','43630','3','25','Adding\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91846','43630','4','25','Configured\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91847','43630','5','25','Connected\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91848','43630','6','25','Copying\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91849','43630','7','25','CreateFailed\n5','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91850','43630','8','25','Creating\n6','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91851','43630','9','25','DeleteFailed\n7','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91852','43630','10','25','Deleting\n8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91853','43630','11','25','Discovered\n9','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91854','43630','12','25','Managed\n10','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91855','43630','13','25','Normal\n11','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91856','43630','14','25','UpdateFailed\n12','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91857','43630','15','25','Updating\n13','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91858','43630','16','13','0\n13','2','14');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91859','43631','1','12','$.["storage-pools"].members[?(@.name == "{#NAME}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91860','43631','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91861','43631','3','25','Critical\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91862','43631','4','25','Disabled\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91863','43631','5','25','OK\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91864','43631','6','25','Unknown\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91865','43631','7','25','Warning\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91866','43631','8','13','0\n4','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91867','43632','1','12','$.["storage-systems"].members[?(@.name == "{#NAME}")].allocatedCapacity.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91868','43633','1','12','$.["storage-systems"].members[?(@.name == "{#NAME}")].freeCapacity.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91869','43634','1','12','$.["storage-systems"].members[?(@.name == "{#NAME}")].totalCapacity.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91870','43635','1','12','$.["storage-systems"].members[?(@.name == "{#NAME}")].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91871','43635','2','25','AddFailed\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91872','43635','3','25','Adding\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91873','43635','4','25','Configured\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91874','43635','5','25','Connected\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91875','43635','6','25','Copying\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91876','43635','7','25','CreateFailed\n5','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91877','43635','8','25','Creating\n6','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91878','43635','9','25','DeleteFailed\n7','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91879','43635','10','25','Deleting\n8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91880','43635','11','25','Discovered\n9','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91881','43635','12','25','Managed\n10','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91882','43635','13','25','Normal\n11','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91883','43635','14','25','UpdateFailed\n12','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91884','43635','15','25','Updating\n13','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91885','43635','16','13','0\n13','2','14');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91886','43636','1','12','$.["storage-systems"].members[?(@.name == "{#NAME}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91887','43636','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91888','43636','3','25','Critical\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91889','43636','4','25','Disabled\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91890','43636','5','25','OK\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91891','43636','6','25','Unknown\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91892','43636','7','25','Warning\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91893','43636','8','13','0\n4','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91894','43637','1','12','$.["storage-volumes"].members[?(@.name == "{#NAME}")].allocatedCapacity.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91895','43638','1','12','$.["storage-volumes"].members[?(@.name == "{#NAME}")].provisionedCapacity.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91896','43639','1','12','$.["storage-volumes"].members[?(@.name == "{#NAME}")].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91897','43639','2','25','AddFailed\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91898','43639','3','25','Adding\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91899','43639','4','25','Configured\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91900','43639','5','25','Connected\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91901','43639','6','25','Copying\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91902','43639','7','25','CreateFailed\n5','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91903','43639','8','25','Creating\n6','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91904','43639','9','25','DeleteFailed\n7','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91905','43639','10','25','Deleting\n8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91906','43639','11','25','Discovered\n9','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91907','43639','12','25','Managed\n10','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91908','43639','13','25','Normal\n11','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91909','43639','14','25','UpdateFailed\n12','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91910','43639','15','25','Updating\n13','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91911','43639','16','13','0\n13','2','14');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91912','43640','1','12','$.["storage-volumes"].members[?(@.name == "{#NAME}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91913','43640','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91914','43640','3','25','Critical\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91915','43640','4','25','Disabled\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91916','43640','5','25','OK\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91917','43640','6','25','Unknown\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91918','43640','7','25','Warning\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91919','43640','8','13','0\n4','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91920','43641','1','12','$.["uplink-sets"].members[?(@.name == "{#NAME}")].state.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91921','43641','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91922','43642','1','12','$.["uplink-sets"].members[?(@.name == "{#NAME}")].status.first()','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91923','43642','2','20','10m','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91924','43642','3','25','Critical\n0','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91925','43642','4','25','Disabled\n1','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91926','43642','5','25','OK\n2','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91927','43642','6','25','Unknown\n3','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91928','43642','7','25','Warning\n4','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91929','43642','8','13','0\n4','2','3');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91930','43643','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91931','43652','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91932','43653','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91933','43654','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91934','43655','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91935','43656','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91936','43657','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91937','43658','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91938','43659','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91939','43662','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91940','43662','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91941','43663','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91942','43664','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91943','43665','1','1','1000000','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91944','43665','2','20','1h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91945','43667','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91946','43667','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91947','43668','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91948','43669','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91949','43669','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91950','43670','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91951','43671','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91952','43671','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91953','43672','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91954','43673','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91955','43674','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91956','43674','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91957','43675','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91958','43676','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91959','43677','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91960','43677','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91961','43678','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91962','43678','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91963','43679','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91964','43680','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91965','43680','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91966','43681','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91967','43682','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91968','43682','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91969','43683','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91970','43684','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91971','43685','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91972','43686','1','10','','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91973','43686','2','1','8','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91974','43687','1','20','6h','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91975','43688','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91976','43688','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91977','43689','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91978','43689','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91979','43690','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91980','43690','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91981','43691','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91982','43691','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91983','43692','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91984','43692','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91985','43693','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91986','43693','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91987','43694','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91988','43694','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91989','43695','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91990','43695','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91991','43696','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91992','43696','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91993','43697','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91994','43697','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91995','43698','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91996','43698','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91997','43699','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91998','43699','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('91999','43700','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92000','43700','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92001','43701','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92002','43701','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92003','43702','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92004','43702','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92005','43703','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92006','43703','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92007','43704','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92008','43704','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92009','43705','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92010','43705','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92011','43706','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92012','43706','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92013','43707','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92014','43707','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92015','43708','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92016','43708','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92017','43709','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92018','43709','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92019','43710','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92020','43710','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92021','43711','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92022','43711','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92023','43712','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92024','43712','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92025','43713','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92026','43713','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92027','43714','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92028','43714','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92029','43715','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92030','43715','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92031','43716','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92032','43716','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92033','43717','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92034','43717','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92035','43718','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92036','43718','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92037','43719','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92038','43719','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92039','43720','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92040','43720','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92041','43721','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92042','43721','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92043','43722','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92044','43722','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92045','43723','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92046','43723','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92047','43724','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92048','43724','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92049','43725','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92050','43725','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92051','43726','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92052','43726','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92053','43727','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92054','43727','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92055','43728','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92056','43728','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92057','43729','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92058','43729','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92059','43730','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92060','43730','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92061','43731','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92062','43731','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92063','43732','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92064','43732','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92065','43733','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92066','43733','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92067','43734','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92068','43734','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92069','43735','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92070','43735','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92071','43736','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92072','43736','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92073','43737','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92074','43737','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92075','43738','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92076','43738','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92077','43739','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92078','43739','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92079','43740','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92080','43740','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92081','43741','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92082','43741','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92083','43742','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92084','43742','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92085','43743','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92086','43743','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92087','43744','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92088','43744','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92089','43745','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92090','43745','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92091','43746','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92092','43746','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92093','43747','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92094','43747','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92095','43748','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92096','43748','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92097','43749','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92098','43749','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92099','43750','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92100','43750','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92101','43751','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92102','43751','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92103','43752','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92104','43752','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92105','43753','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92106','43753','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92107','43754','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92108','43754','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92109','43755','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92110','43755','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92111','43756','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92112','43756','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92113','43757','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92114','43757','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92115','43758','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92116','43758','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92117','43759','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92118','43759','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92119','43760','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92120','43760','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92121','43761','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92122','43761','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92123','43762','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92124','43762','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92125','43763','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92126','43763','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92127','43764','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92128','43764','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92129','43765','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92130','43765','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92131','43766','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92132','43766','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92133','43767','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92134','43767','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92135','43768','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92136','43768','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92137','43769','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92138','43769','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92139','43770','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92140','43770','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92141','43771','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92142','43771','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92143','43772','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92144','43772','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92145','43773','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92146','43773','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92147','43774','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92148','43774','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92149','43775','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92150','43775','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92151','43776','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92152','43776','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92153','43777','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92154','43777','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92155','43778','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92156','43778','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92157','43779','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92158','43779','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92159','43780','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92160','43780','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92161','43781','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92162','43781','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92163','43782','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92164','43782','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92165','43783','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92166','43783','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92167','43784','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92168','43784','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92169','43785','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92170','43785','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92171','43786','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92172','43786','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92173','43787','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92174','43787','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92175','43788','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92176','43788','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92177','43789','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92178','43789','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92179','43790','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92180','43790','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92181','43791','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92182','43791','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92183','43792','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92184','43792','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92185','43793','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92186','43793','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92187','43794','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92188','43794','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92189','43795','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92190','43795','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92191','43796','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92192','43796','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92193','43797','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92194','43797','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92195','43798','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92196','43798','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92197','43799','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92198','43799','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92199','43800','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92200','43800','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92201','43801','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92202','43801','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92203','43802','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92204','43802','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92205','43803','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92206','43803','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92207','43804','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92208','43804','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92209','43805','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92210','43805','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92211','43806','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92212','43806','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92213','43807','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92214','43807','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92215','43808','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92216','43808','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92217','43809','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92218','43809','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92219','43810','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92220','43810','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92221','43811','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92222','43811','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92223','43812','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92224','43812','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92225','43813','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92226','43813','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92227','43814','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92228','43814','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92229','43815','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92230','43815','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92231','43816','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92232','43816','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92233','43817','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92234','43817','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92235','43818','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92236','43818','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92237','43819','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92238','43819','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92239','43820','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92240','43820','1','1','0.01','0','');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92241','43821','0','26','','2','0');
INSERT INTO `item_preproc` (`item_preprocid`,`itemid`,`step`,`type`,`params`,`error_handler`,`error_handler_params`) values ('92242','43821','1','1','0.01','0','');
INSERT INTO `sysmap_shape` (`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`) values ('1','1','0','0','0','680','15','{MAP.NAME}','9','11','000000','0','0','0','0','000000','','0');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('1','29429','{#IFNAME}','$.labels.device');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('2','29429','{#HELP}','$.help');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('3','29429','{#IFALIAS}','$.labels.ifalias');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('4','29429','{#IFOPERSTATUS}','$.labels.operstate');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('5','29430','{#FSTYPE}','$.labels.fstype');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('6','29430','{#FSNAME}','$.labels.mountpoint');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('7','29430','{#FSDEVICE}','$.labels.device');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('8','29430','{#HELP}','$.help');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('9','29431','{#DEVNAME}','$.labels.device');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('10','29431','{#HELP}','$.help');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('38','29703','{#QUEUE}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('39','29703','{#VHOST}','$.vhost');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('40','29703','{#NODE}','$.node');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('41','29785','{#EXCHANGE}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('42','29785','{#TYPE}','$.type');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('43','29785','{#VHOST}','$.vhost');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('44','29786','{#QUEUE}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('45','29786','{#VHOST}','$.vhost');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('46','29786','{#NODE}','$.node');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('47','30026','{#EXCHANGE}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('48','30026','{#TYPE}','$.type');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('49','30026','{#VHOST}','$.vhost');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('50','30193','{#PXNAME}','$.pxname');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('51','30193','{#SVNAME}','$.svname');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('52','30194','{#PXNAME}','$.pxname');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('53','30194','{#SVNAME}','$.svname');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('54','30195','{#PXNAME}','$.pxname');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('55','30195','{#SVNAME}','$.svname');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('56','30236','{#PXNAME}','$.pxname');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('57','30236','{#SVNAME}','$.svname');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('58','30237','{#PXNAME}','$.pxname');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('59','30237','{#SVNAME}','$.svname');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('60','30238','{#PXNAME}','$.pxname');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('61','30238','{#SVNAME}','$.svname');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('62','30678','{#DATABASE}','$.Database');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('63','30679','{#MASTER_HOST}','$.Master_Host');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('64','30686','{#SENSOR_ID}','$.id');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('65','30686','{#SENSOR_READING_TYPE}','$.reading.text');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('66','30686','{#SENSOR_TYPE}','$.sensor.text');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('67','30686','{#SENSOR_UNIT}','$.units');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('68','30687','{#SENSOR_ID}','$.id');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('69','30687','{#SENSOR_READING_TYPE}','$.reading.text');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('70','30687','{#SENSOR_TYPE}','$.sensor.text');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('71','30687','{#SENSOR_UNIT}','$.units');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('72','30687','{#SENSOR_LO_WARN}','$.threshold.lower.non_crit');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('73','30687','{#SENSOR_LO_CRIT}','$.threshold.lower.crit');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('74','30687','{#SENSOR_LO_DISAST}','$.threshold.lower.non_recover');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('75','30687','{#SENSOR_HI_WARN}','$.threshold.upper.non_crit');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('76','30687','{#SENSOR_HI_CRIT}','$.threshold.upper.crit');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('77','30687','{#SENSOR_HI_DISAST}','$.threshold.upper.non_recover');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('78','30713','{#ES.NODE}','$..name.first()');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('88','30193','{#MODE}','$.mode');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('89','30194','{#MODE}','$.mode');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('90','30195','{#MODE}','$.mode');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('100','30236','{#MODE}','$.mode');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('101','30237','{#MODE}','$.mode');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('102','30238','{#MODE}','$.mode');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('103','30874','{#NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('104','30875','{#DB}','$.database');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('105','30875','{#TABLE}','$.table');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('106','30876','{#DB}','$.database');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('107','30876','{#TABLE}','$.table');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('108','30962','{#ETCD.PEER}','$.labels.To');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('109','31005','{#APPPOOL}','$.Name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('110','31047','{#APPPOOL}','$.Name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('111','31803','{#OBJECTNAME}','$.ObjectName');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('112','31804','{#OBJECTNAME}','$.ObjectName');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('113','31805','{#QUEUE}','$.Queue');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('114','31806','{#OBJECTNAME}','$.ObjectName');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('115','32869','{#ACCESSOR}','$.accessor');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('116','32869','{#TOKEN_NAME}','$.token_name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('117','33465','{#DESCRIPTION}','$.description');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('118','33465','{#DISPLAY_NAME}','$.displayName');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('119','33466','{#DESCRIPTION}','$.description');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('120','33466','{#NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('121','33466','{#URL}','$.url');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('122','34942','{#DEPLOYMENT}','$.properties.deployment');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('123','34942','{#JMXOBJ}','$.object');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('124','34942','{#SERVER_GROUP}','$.properties.["server-group"]');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('125','34943','{#JMXOBJ}','$.object');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('126','34943','{#SERVER}','$.properties.["server-config"]');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('127','34966','{#DEPLOYMENT}','$.properties.deployment');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('128','34966','{#JMXOBJ}','$.object');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('129','34967','{#JMXOBJ}','$.object');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('130','34967','{#JMX_DATA_SOURCE}','$.properties.["data-source"]');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('131','34968','{#JMXOBJ}','$.object');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('132','34968','{#JMX_DATA_SOURCE}','$.properties.["data-source"]');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('133','34969','{#HTTP_LISTENER}','$.properties.["http-listener"]');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('134','34969','{#JMXOBJ}','$.object');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('135','34969','{#SERVER}','$.properties.["server"]');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('136','39749','{#CITY}','$.site.city');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('137','39749','{#ID}','$.id');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('138','39749','{#NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('139','39749','{#STATE}','$.site.state');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('140','39750','{#CITY}','$.site.city');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('141','39750','{#ID}','$.id');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('142','39750','{#NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('143','39750','{#STATE}','$.site.state');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('144','39751','{#EDGE}','$.link.edgeName');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('145','39751','{#ENTERPRISE}','$.link.enterpriseName');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('146','39751','{#ID}','$.link.linkId');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('147','39751','{#IF}','$.link.interface');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('148','39751','{#IP}','$.link.linkIpAddress');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('149','39751','{#NAME}','$.link.displayName');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('150','39752','{#DESTINATION}','$.destination.deviceName');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('151','39752','{#NAME}','$.source.linkName');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('152','39752','{#SOURCE}','$.source.deviceName');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('153','39753','{#EDGE.ID}','$.edgeId');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('154','39753','{#EDGE}','$.edgeName');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('155','39753','{#ID}','$.deviceLogicalId');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('156','39753','{#NAME}','$.peerName');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('157','39753','{#TYPE}','$.peerType');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('158','39806','{#NODE.ID}','$.id');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('159','39806','{#NODE.NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('160','39807','{#NODE.ID}','$.id');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('161','39807','{#NODE.NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('162','39816','{#NODE.ID}','$.id');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('163','39816','{#NODE.NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('164','42731','{#COUNTRY}','$.sys.country');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('165','42731','{#ID}','$.id');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('166','42731','{#LOCATION}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('167','42731','{#TEMP.UNIT}','$.temp_unit');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('168','42731','{#WIND.UNIT}','$.wind_unit');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('169','42756','{#RESOURCE.NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('170','42756','{#RESOURCE.TYPE}','$.type');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('171','42757','{#LXC.ID}','$.id');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('172','42757','{#LXC.NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('173','42757','{#NODE.NAME}','$.node');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('174','42757','{#RESOURCE.TYPE}','$.type');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('175','42758','{#NODE.NAME}','$.node');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('176','42758','{#RESOURCE.TYPE}','$.type');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('177','42759','{#NODE.NAME}','$.node');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('178','42759','{#QEMU.ID}','$.id');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('179','42759','{#QEMU.NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('180','42759','{#RESOURCE.TYPE}','$.type');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('181','42760','{#NODE.NAME}','$.node');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('182','42760','{#RESOURCE.TYPE}','$.type');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('183','42760','{#STORAGE.NAME}','$.storage');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('184','43139','{#STORE}','$.labels.store');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('185','43181','{#CONTROLLER.ID}','$.[\'controller-id\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('186','43181','{#DURABLE.ID}','$.[\'durable-id\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('187','43182','{#DURABLE.ID}','$.[\'durable-id\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('188','43182','{#TYPE}','$.[\'description-numeric\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('189','43183','{#NAME}','$.[\'name\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('190','43184','{#DURABLE.ID}','$.[\'durable-id\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('191','43185','{#DURABLE.ID}','$.[\'durable-id\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('192','43185','{#NAME}','$.[\'name\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('193','43186','{#DESCRIPTION}','$.[\'description\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('194','43186','{#ENCLOSURE.ID}','$.[\'enclosure-id\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('195','43186','{#LOCATION}','$.[\'fru-location\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('196','43186','{#TYPE}','$.[\'name\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('197','43187','{#NAME}','$.[\'name\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('198','43188','{#NAME}','$.[\'port\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('199','43189','{#DURABLE.ID}','$.[\'durable-id\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('200','43190','{#NAME}','$.[\'volume-name\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('201','43288','{#CONTROLLER.ID}','$.[\'controller-id\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('202','43288','{#DURABLE.ID}','$.[\'durable-id\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('203','43289','{#DURABLE.ID}','$.[\'durable-id\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('204','43289','{#TYPE}','$.[\'description-numeric\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('205','43290','{#NAME}','$.[\'name\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('206','43291','{#DURABLE.ID}','$.[\'durable-id\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('207','43292','{#DURABLE.ID}','$.[\'durable-id\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('208','43293','{#DESCRIPTION}','$.[\'description\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('209','43293','{#ENCLOSURE.ID}','$.[\'enclosure-id\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('210','43293','{#LOCATION}','$.[\'fru-location\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('211','43293','{#TYPE}','$.[\'name\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('212','43294','{#NAME}','$.[\'name\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('213','43295','{#NAME}','$.[\'port\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('214','43296','{#DURABLE.ID}','$.[\'durable-id\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('215','43297','{#NAME}','$.[\'volume-name\']');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('216','43412','{#ID}','$.id');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('217','43412','{#NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('218','43413','{#ID}','$.id');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('219','43413','{#POSITION}','$.position');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('220','43414','{#ID}','$.id');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('221','43414','{#NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('222','43415','{#CARD.PORT}','$.portPos.cardPort');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('223','43415','{#NODE}','$.portPos.node');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('224','43415','{#SLOT}','$.portPos.slot');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('225','43415','{#TYPE}','$.type');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('226','43416','{#ID}','$.id');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('227','43416','{#NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('228','43416','{#TYPE}','$.type');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('229','43417','{#ID}','$.id');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('230','43417','{#NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('231','43498','{#BAY_NUMBER}','$.bayNumber');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('232','43498','{#ENCLOSURE_NAME}','$.enclosureName');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('233','43499','{#BAY_NUMBER}','$.bayNumber');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('234','43499','{#ENCLOSURE_NAME}','$.enclosureName');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('235','43500','{#NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('236','43501','{#BAY_NUMBER}','$.bayNumber');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('237','43501','{#ENCLOSURE_NAME}','$.enclosureName');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('238','43502','{#NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('239','43503','{#NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('240','43504','{#NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('241','43505','{#BAY_NUMBER}','$.bayNumber');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('242','43505','{#ENCLOSURE_NAME}','$.enclosureName');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('243','43506','{#NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('244','43507','{#BAY_NUMBER}','$.bayNumber');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('245','43507','{#ENCLOSURE_NAME}','$.enclosureName');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('246','43508','{#NAME}','$.displayName');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('247','43509','{#ENCLOSURE_NAME}','$.enclosureName');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('248','43509','{#NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('249','43510','{#NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('250','43511','{#ENCLOSURE_NAME}','$.enclosureName');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('251','43511','{#PARTITION_ID}','$.partitionID');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('252','43512','{#BAY_NUMBER}','$.bayNumber');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('253','43512','{#ENCLOSURE_NAME}','$.enclosureName');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('254','43513','{#NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('255','43514','{#LOCATION}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('256','43514','{#SERVER_NAME}','$.serverName');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('257','43515','{#NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('258','43516','{#NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('259','43517','{#NAME}','$.name');
INSERT INTO `lld_macro_path` (`lld_macro_pathid`,`itemid`,`lld_macro`,`path`) values ('260','43518','{#NAME}','$.name');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('1','10504','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('2','10504','target','kubernetes api server');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('3','10505','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('5','10506','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('6','10506','target','kubernetes kubelet');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('7','10507','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('8','10507','target','kubernetes nodes');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('9','10508','addr','{#IP}');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('10','10508','arch','{#ARCH}');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('11','10508','os','{#OS}');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('12','10508','roles','{#ROLES}');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('13','10509','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('15','10510','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('16','10510','target','kubernetes state');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('17','10511','addr','{#IP}');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('18','10512','addr','{#IP}');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('19','10513','addr','{#IP}');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('20','10514','addr','{#IP}');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('21','10358','class','application');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('22','10358','target','apache-activemq');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('23','10264','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('24','10264','target','apache');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('25','10265','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('26','10265','target','apache');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('27','10359','class','service');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('28','10359','target','aranet');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('29','10353','class','application');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('30','10353','target','ceph');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('31','10413','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('32','10413','target','certificate');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('33','10414','class','service');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('35','10318','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('36','10318','target','docker');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('37','10322','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('38','10322','target','elasticsearch');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('39','10324','class','application');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('40','10324','target','etcd');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('41','10360','class','application');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('42','10360','target','ms-exchange');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('43','10361','class','application');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('44','10361','target','ms-exchange');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('45','10169','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('46','10169','target','java');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('47','10362','class','application');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('48','10362','target','gitlab');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('49','10363','class','application');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('50','10363','target','hadoop');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('51','10308','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('52','10308','target','haproxy');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('53','10309','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('54','10309','target','haproxy');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('55','10325','class','application');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('56','10325','target','iis');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('57','10326','class','application');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('58','10326','target','iis');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('59','10379','class','application');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('60','10379','target','jenkins');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('61','10364','class','application');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('62','10364','target','apache-kafka');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('63','10505','target','kubernetes controller manager');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('64','10509','target','kubernetes scheduler');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('65','10319','class','application');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('66','10319','target','memcached');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('67','10266','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('68','10266','target','nginx');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('69','10267','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('70','10267','target','nginx');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('71','10415','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('72','10415','target','nginx');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('73','10515','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('74','10515','target','pfsense');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('75','10330','class','application');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('76','10330','target','php-fpm');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('77','10331','class','application');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('78','10331','target','php-fpm');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('79','10300','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('80','10300','target','rabbitmq');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('81','10301','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('82','10301','target','rabbitmq');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('83','10302','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('84','10302','target','rabbitmq');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('85','10303','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('86','10303','target','rabbitmq');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('87','10382','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('88','10382','target','microsoft');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('89','10382','target','sharepoint');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('90','10355','class','application');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('91','10355','target','squid');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('92','10416','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('93','10416','target','systemd');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('94','10260','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('95','10260','target','tomcat');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('96','10447','class','service');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('97','10447','target','travis');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('98','10365','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('99','10365','target','vault');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('100','10173','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('101','10173','target','vmware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('102','10174','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('103','10174','target','vmware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('104','10174','target','vmware-guest');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('105','10175','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('106','10175','target','vmware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('107','10175','target','vmware-hypervisor');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('108','10366','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('109','10366','target','vmware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('110','10366','target','vmware-fqdn');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('111','10410','class','application');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('112','10410','target','wildfly-domain');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('113','10411','class','application');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('114','10411','target','wildfly-server');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('115','10048','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('116','10048','target','proxy');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('117','10048','target','zabbix');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('121','10047','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('122','10047','target','server');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('123','10047','target','zabbix');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('124','10261','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('125','10261','target','server');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('126','10261','target','zabbix');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('127','10369','class','application');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('129','10380','class','device');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('130','10380','target','cctv');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('131','10380','target','hikvision');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('132','10370','class','database');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('133','10370','target','apache-cassandra');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('134','10323','class','database');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('135','10323','target','clickhouse');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('136','10417','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('137','10417','target','gridgain');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('138','10381','class','database');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('139','10381','target','ignite');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('140','10448','class','database');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('141','10448','target','influxdb');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('142','10386','class','database');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('143','10386','target','mongodb-node');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('144','10387','class','database');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('145','10387','target','mongodb-cluster');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('146','10327','class','database');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('147','10327','target','mssql');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('148','10316','class','database');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('149','10316','target','mysql');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('150','10320','class','database');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('151','10320','target','mysql');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('152','10317','class','database');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('153','10317','target','mysql');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('154','10335','class','database');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('155','10335','target','oracle');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('156','10328','class','database');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('157','10328','target','oracle');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('158','10357','class','database');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('159','10357','target','postgresql');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('160','10329','class','database');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('161','10329','target','postgresql');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('162','10310','class','database');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('163','10310','target','redis');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('164','10397','class','database');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('165','10397','target','pd');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('166','10397','target','tidb');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('167','10398','class','database');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('168','10398','target','tidb');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('169','10399','class','database');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('170','10399','target','tidb');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('171','10399','target','tikv');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('172','10050','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('173','10050','target','zabbix-agent');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('174','10292','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('175','10292','target','zabbix-agent');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('176','10207','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('177','10207','target','alcatel');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('178','10207','target','alcatel-timetra');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('179','10254','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('180','10254','target','arista');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('181','10208','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('182','10208','target','brocade');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('183','10208','target','brocade-fc');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('184','10210','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('185','10210','target','brocade');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('186','10210','target','brocade-foundry');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('187','10211','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('188','10211','target','brocade');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('189','10211','target','brocade-foundry');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('190','10418','class','application');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('191','10418','target','cisco');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('192','10418','target','cisco-asav');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('193','10390','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('194','10390','target','cisco');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('195','10390','target','cisco-catalyst');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('196','10390','target','cisco-catalyst-3750v2-24fs');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('197','10391','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('198','10391','target','cisco');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('199','10391','target','cisco-catalyst');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('200','10391','target','cisco-catalyst-3750v2-24ps');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('201','10392','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('202','10392','target','cisco');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('203','10392','target','cisco-catalyst');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('204','10392','target','cisco-catalyst-3750v2-24ts');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('205','10393','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('206','10393','target','cisco');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('207','10393','target','cisco-catalyst');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('208','10393','target','cisco-catalyst-3750v2-48ps');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('209','10394','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('210','10394','target','cisco');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('211','10394','target','cisco-catalyst');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('212','10394','target','cisco-catalyst-3750v2-48ts');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('213','10220','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('214','10220','target','cisco');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('215','10220','target','cisco-prior');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('216','10220','target','cisco-prior-12.0-3-t');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('217','10218','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('218','10218','target','cisco');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('219','10218','target','cisco-ios');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('220','10253','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('221','10253','target','cisco');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('222','10253','target','cisco-ios');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('223','10253','target','cisco-ios-12.0-12.2');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('224','10221','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('225','10221','target','dell');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('226','10221','target','force-s-series');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('227','10222','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('228','10222','target','des7200');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('229','10222','target','dlink');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('230','10223','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('231','10223','target','des-dgs');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('232','10223','target','dlink');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('233','10224','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('234','10224','target','exos');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('235','10224','target','extreme');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('236','10419','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('237','10419','target','big-ip');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('238','10419','target','f5');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('239','10226','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('240','10226','target','generic');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('241','10227','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('242','10227','target','hp');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('243','10227','target','hp-comware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('244','10250','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('245','10250','target','hp');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('246','10250','target','hp-enterprise');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('247','10229','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('248','10229','target','huawei');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('249','10229','target','huawei-vrp');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('250','10230','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('251','10230','target','intel');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('252','10230','target','qlogic-infiniband');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('253','10231','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('254','10231','target','juniper');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('255','10251','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('256','10251','target','mellanox');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('257','10449','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('258','10449','target','ccr1009-7g-1c-1spluspc');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('259','10449','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('260','10450','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('261','10450','target','ccr1009-7g-1c-1splus');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('262','10450','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('263','10451','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('264','10451','target','ccr1009-7g-1c-pc');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('265','10451','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('266','10452','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('267','10452','target','ccr1016-12g');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('268','10452','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('269','10453','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('270','10453','target','ccr1016-12s-1splus');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('271','10453','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('272','10454','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('273','10454','target','ccr1036-12g-4s-em');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('274','10454','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('275','10455','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('276','10455','target','ccr1036-12g-4s');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('277','10455','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('278','10456','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('279','10456','target','ccr1036-8g-2splusem');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('280','10456','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('281','10457','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('282','10457','target','ccr1036-8g-2splus');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('283','10457','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('284','10458','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('285','10458','target','ccr1072-1g-8splus');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('286','10458','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('287','10459','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('288','10459','target','ccr2004-16g-2splus');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('289','10459','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('290','10460','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('291','10460','target','ccr2004-1g-12splus2xs');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('292','10460','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('293','10461','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('294','10461','target','crs106-1c-5s');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('295','10461','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('296','10462','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('297','10462','target','crs109-8g-1s-2hnd-in');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('298','10462','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('299','10463','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('300','10463','target','crs112-8g-4s-in');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('301','10463','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('302','10464','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('303','10464','target','crs112-8p-4s-in');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('304','10464','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('305','10465','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('306','10465','target','crs125-24g-1s-2hnd-in');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('307','10465','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('308','10466','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('309','10466','target','crs212-1g-10s-1splusin');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('310','10466','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('311','10467','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('312','10467','target','crs305-1g-4splusin');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('313','10467','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('314','10468','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('315','10468','target','crs309-1g-8splusin');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('316','10468','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('317','10469','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('318','10469','target','crs312-4cplus8xg-rm');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('319','10469','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('320','10470','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('321','10470','target','crs317-1g-16splusrm');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('322','10470','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('323','10471','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('324','10471','target','crs326-24g-2splusin');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('325','10471','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('326','10472','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('327','10472','target','crs326-24g-2splusrm');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('328','10472','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('329','10473','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('330','10473','target','crs326-24splus2qplusrm');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('331','10473','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('332','10474','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('333','10474','target','crs328-24p-4splusrm');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('334','10474','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('335','10475','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('336','10475','target','crs328-4c-20s-4splusrm');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('337','10475','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('338','10476','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('339','10476','target','crs354-48g-4splus2qplusrm');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('340','10476','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('341','10477','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('342','10477','target','crs354-48p-4splus2qplusrm');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('343','10477','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('344','10478','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('345','10478','target','css326-24g-2splusrm');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('346','10478','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('347','10479','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('348','10479','target','css610-8g-2splusin');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('349','10479','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('350','10480','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('351','10480','target','fiberbox');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('352','10480','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('353','10481','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('354','10481','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('355','10481','target','powerbox-pro');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('356','10482','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('357','10482','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('358','10482','target','powerbox');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('359','10483','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('360','10483','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('361','10483','target','rb1100ahx4-dude-edition');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('362','10484','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('363','10484','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('364','10484','target','rb1100ahx4');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('365','10485','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('366','10485','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('367','10485','target','rb2011uias-in');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('368','10486','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('369','10486','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('370','10486','target','rb2011uias-rm');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('371','10487','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('372','10487','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('373','10487','target','rb2011il-in');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('374','10488','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('375','10488','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('376','10488','target','rb2011il-rm');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('377','10489','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('378','10489','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('379','10489','target','rb2011ils-in');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('380','10490','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('381','10490','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('382','10490','target','rb260gsp');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('383','10491','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('384','10491','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('385','10491','target','rb260gs');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('386','10492','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('387','10492','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('388','10492','target','rb3011uias-rm');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('389','10493','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('390','10493','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('391','10493','target','rb4011igsplusrm');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('392','10494','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('393','10494','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('394','10494','target','rb5009ugplussplusin');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('395','10495','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('396','10495','target','hex-poe-lite');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('397','10495','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('398','10496','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('399','10496','target','hex-poe');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('400','10496','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('401','10497','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('402','10497','target','hex-s');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('403','10497','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('404','10498','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('405','10498','target','hex-lite');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('406','10498','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('407','10499','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('408','10499','target','hex');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('409','10499','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('410','10500','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('411','10500','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('412','10500','target','netpower-15fr');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('413','10501','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('414','10501','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('415','10501','target','netpower-16p');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('416','10502','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('417','10502','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('418','10502','target','netpower-lite-7r');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('419','10233','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('420','10233','target','mikrotik');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('421','10371','class','power');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('422','10371','target','morningstar');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('423','10372','class','power');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('424','10372','target','morningstar');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('425','10373','class','power');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('426','10373','target','morningstar');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('427','10374','class','power');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('428','10374','target','morningstar');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('429','10375','class','power');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('430','10375','target','morningstar');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('431','10376','class','power');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('432','10376','target','morningstar');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('433','10377','class','power');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('434','10377','target','morningstar');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('435','10234','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('436','10234','target','fastpath');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('437','10234','target','netgear');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('438','10235','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('439','10235','target','qsw');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('440','10235','target','qtech');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('441','10236','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('442','10236','target','tp-link');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('443','10237','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('444','10237','target','airos');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('445','10237','target','ubiquiti');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('446','10503','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('447','10503','target','vmware-sd-wan-velocloud');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('448','10420','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('449','10420','target','aam1212-51');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('450','10420','target','dslam');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('451','10420','target','zyxel');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('452','10421','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('453','10421','target','es3500-8pd');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('454','10421','target','switch');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('455','10421','target','zyxel');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('456','10422','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('457','10422','target','gs-4012f');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('458','10422','target','switch');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('459','10422','target','zyxel');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('460','10423','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('461','10423','target','dslam');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('462','10423','target','ies-5000');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('463','10423','target','ies-5005');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('464','10423','target','zyxel');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('465','10424','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('466','10424','target','dslam');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('467','10424','target','ies-6000');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('468','10424','target','zyxel');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('469','10425','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('470','10425','target','aam1248-51');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('471','10425','target','dslam');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('472','10425','target','zyxel');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('473','10426','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('474','10426','target','mes-3528');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('475','10426','target','switch');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('476','10426','target','zyxel');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('477','10427','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('478','10427','target','mes3500-10');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('479','10427','target','switch');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('480','10427','target','zyxel');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('481','10428','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('482','10428','target','mes3500-24');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('483','10428','target','switch');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('484','10428','target','zyxel');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('485','10429','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('486','10429','target','mgs-3712');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('487','10429','target','switch');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('488','10429','target','zyxel');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('489','10430','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('490','10430','target','mgs-3712f');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('491','10430','target','switch');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('492','10430','target','zyxel');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('493','10431','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('494','10431','target','mes3500-24s');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('495','10431','target','switch');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('496','10431','target','zyxel');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('497','10432','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('498','10432','target','mgs3520-28');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('499','10432','target','mgs3520-28f');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('500','10432','target','switch');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('501','10432','target','zyxel');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('502','10433','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('503','10433','target','switch');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('504','10433','target','xgs-4728f');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('505','10433','target','zyxel');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('506','10076','class','os');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('507','10076','target','aix');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('508','10075','class','os');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('509','10075','target','freebsd');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('510','10077','class','os');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('511','10077','target','hp-ux');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('512','10001','class','os');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('513','10001','target','linux');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('514','10343','class','os');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('515','10343','target','linux');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('516','10285','class','os');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('517','10285','target','linux');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('518','10248','class','os');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('519','10248','target','linux');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('520','10079','class','os');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('521','10079','target','macos');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('522','10074','class','os');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('523','10074','target','openbsd');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('524','10078','class','os');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('525','10078','target','solaris');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('526','10081','class','os');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('527','10081','target','windows');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('528','10351','class','os');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('529','10351','target','windows');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('530','10249','class','os');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('531','10249','target','windows');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('532','10400','class','power');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('533','10400','target','apc');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('534','10400','target','apc-ups-galaxy-3500');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('535','10401','class','power');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('536','10401','target','apc');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('537','10401','target','apc-smart-ups-2200-rm');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('538','10402','class','power');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('539','10402','target','apc');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('540','10402','target','apc-smart-ups-3000-xlm');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('541','10403','class','power');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('542','10403','target','apc');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('543','10403','target','apc-smart-ups-rt-1000-rm-xl');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('544','10404','class','power');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('545','10404','target','apc');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('546','10404','target','apc-smart-ups-rt-1000-xl');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('547','10412','class','power');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('548','10412','target','apc');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('549','10412','target','apc-smart-ups-srt-5000');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('550','10406','class','power');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('551','10406','target','apc');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('552','10406','target','apc-smart-ups-srt-8000');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('553','10395','class','power');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('554','10395','target','apc');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('555','10407','class','power');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('556','10407','target','apc');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('557','10407','target','apc-ups-symmetra-lx');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('558','10408','class','power');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('559','10408','target','apc');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('560','10408','target','apc-ups-symmetra-rm');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('561','10409','class','power');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('562','10409','target','apc');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('563','10409','target','apc-ups-symmetra-rx');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('564','10385','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('565','10385','class','storage');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('566','10385','target','huawei');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('567','10385','target','huawei-oceanstor-5300-v5');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('568','10396','class','network');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('569','10396','target','netapp');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('570','10396','target','netapp-aff-a700');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('571','10378','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('572','10378','target','netapp');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('573','10378','target','netapp-fas3220');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('574','10321','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('575','10321','target','server');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('576','10434','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('577','10434','target','cisco');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('578','10434','target','cisco-ucs-manager');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('579','10304','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('580','10304','target','cisco');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('581','10304','target','cisco-ucs');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('582','10435','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('583','10435','target','dell');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('584','10435','target','dell poweredge');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('585','10436','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('586','10436','target','dell');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('587','10436','target','dell poweredge');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('588','10437','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('589','10437','target','dell');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('590','10437','target','dell poweredge');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('591','10438','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('592','10438','target','dell');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('593','10438','target','dell poweredge');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('594','10439','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('595','10439','target','dell');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('596','10439','target','dell poweredge');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('597','10440','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('598','10440','target','dell');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('599','10440','target','dell poweredge');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('600','10441','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('601','10441','target','dell');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('602','10441','target','dell poweredge');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('603','10442','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('604','10442','target','dell');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('605','10442','target','dell poweredge');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('606','10255','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('607','10255','target','dell');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('608','10255','target','idrac');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('609','10443','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('610','10443','target','hp');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('611','10443','target','hp bl460');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('612','10444','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('613','10444','target','hp');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('614','10444','target','hp bl920');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('615','10445','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('616','10445','target','hp');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('617','10445','target','hp bl360');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('618','10446','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('619','10446','target','hp');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('620','10446','target','hp bl380');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('621','10256','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('622','10256','target','hp');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('623','10256','target','ilo');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('624','10258','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('625','10258','target','ibm');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('626','10258','target','imm');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('627','10171','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('628','10171','target','intel');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('629','10171','target','intel-sr1530');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('630','10172','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('631','10172','target','intel');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('632','10172','target','intel-sr1630');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('633','10259','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('634','10259','target','aten');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('635','10259','target','supermicro');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('636','10336','class','voip');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('637','10336','target','asterisk');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('641','10414','target','cloudflare');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('645','10516','class','service');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('646','10516','target','openweathermap');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('647','10262','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('648','10262','target','proxy');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('649','10262','target','zabbix');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('650','10517','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('651','10517','target','proxmox');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('652','10518','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('653','10518','target','truenas');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('654','10519','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('655','10519','target','consul');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('656','10520','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('657','10520','target','consul');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('658','10521','address','{#NODE_ADDRESS}');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('659','10521','datacenter','{#NODE_DATACENTER}');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('660','10522','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('661','10522','target','envoy-proxy');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('662','10523','class','database');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('663','10523','target','cockroachdb');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('664','10524','class','storage');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('665','10524','target','hpe');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('666','10524','target','msa-2040');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('667','10525','class','storage');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('668','10525','target','hpe');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('669','10525','target','msa-2060');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('670','10526','class','storage');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('671','10526','target','hpe');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('672','10526','target','primera');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('673','10527','class','hardware');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('674','10527','target','hpe');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('675','10527','target','synergy');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('676','10528','class','software');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('677','10528','target','opnsense');
INSERT INTO `host_tag` (`hosttagid`,`hostid`,`tag`,`value`) values ('678','10369','target','zookeeper');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2427','42985','aggregated status','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2428','42985','checks','2','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2429','30961','trigger','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2430','30193','Discard HTTP status codes','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2431','30194','Discard HTTP status codes','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2432','30195','Discard HTTP status codes','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2433','30236','Discard HTTP status codes','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2434','30237','Discard HTTP status codes','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2435','30238','Discard HTTP status codes','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2436','39854','bucket item','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2437','39854','total item','2','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2438','39859','bucket item','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2439','39859','total item','2','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2440','39889','bucket item','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2441','39889','total item','2','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2442','39920','bucket item','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2443','39920','total item','2','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2444','40000','bucket item','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2445','40000','total item','2','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2446','40001','bucket item','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2447','40001','total item','2','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2448','40002','bucket item','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2449','40002','total item','2','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2450','33521','trigger disabled non main channels','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2451','33810','Arbiter metrics','2','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2452','33810','Primary metrics','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2453','34346','Too many missed regions trigger','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2454','34346','Unresponsive peers trigger','2','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2455','34403','Failed GC-related operations trigger','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2456','34443','Too many unreachable messages trigger','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2457','33658','Bad_Block_Rate','9','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2458','33658','Not NVMe','2','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2459','33658','Power_Cycle_Count','6','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2460','33658','Program_Fail_Count_Chip','10','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2461','33658','Raw_Read_Error_Rate','3','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2462','33658','Reallocated_Sector_Ct','11','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2463','33658','Reported_Uncorrect','7','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2464','33658','Seek_Error_Rate','8','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2465','33658','Self-test','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2466','33658','Spin_Up_Time','4','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2467','33658','Start_Stop_Count','5','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2468','33670','Bad_Block_Rate','9','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2469','33670','Not NVMe','2','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2470','33670','Power_Cycle_Count','6','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2471','33670','Program_Fail_Count_Chip','10','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2472','33670','Raw_Read_Error_Rate','3','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2473','33670','Reallocated_Sector_Ct','11','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2474','33670','Reported_Uncorrect','7','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2475','33670','Seek_Error_Rate','8','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2476','33670','Self-test','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2477','33670','Spin_Up_Time','4','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2478','33670','Start_Stop_Count','5','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2479','28306','trigger THRESHOLD_HI_CRIT','4','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2480','28306','trigger THRESHOLD_HI_WARN','3','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2481','28306','trigger THRESHOLD_LO_CRIT','2','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2482','28306','trigger THRESHOLD_LO_WARN','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2483','28307','trigger THRESHOLD_HI_CRIT','4','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2484','28307','trigger THRESHOLD_HI_WARN','3','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2485','28307','trigger THRESHOLD_LO_CRIT','2','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2486','28307','trigger THRESHOLD_LO_WARN','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2487','33182','trigger THRESHOLD_HI_CRIT','4','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2488','33182','trigger THRESHOLD_HI_WARN','3','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2489','33182','trigger THRESHOLD_LO_CRIT','2','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2490','33182','trigger THRESHOLD_LO_WARN','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2491','35366','Don\'t create triggers for matching interface','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2492','35542','Don\'t create triggers for matching interface','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2493','35543','Don\'t create triggers for matching interface','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2494','35575','Don\'t create triggers for matching interface','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2495','35619','Don\'t create triggers for matching interface','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2496','35653','Don\'t create triggers for matching interface','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2497','35654','Don\'t create triggers for matching interface','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2498','35720','Don\'t create triggers for matching interface','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2499','35721','Don\'t create triggers for matching interface','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2500','35787','Don\'t create triggers for matching interface','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2501','35788','Trigger disabled','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2502','35788','Trigger enabled','2','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2503','35820','Don\'t create triggers for matching interface','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2504','35859','Don\'t create triggers for matching interface','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2505','35903','Don\'t create triggers for matching interface','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2506','35947','Don\'t create triggers for matching interface','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2507','35991','Don\'t create triggers for matching interface','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2508','36036','Don\'t create triggers for matching interface','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2509','36081','Don\'t create triggers for matching interface','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2510','36126','Don\'t create triggers for matching interface','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2511','34478','Temp','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2512','34479','Temp','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2513','34526','Temp','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2514','34527','Temp','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2515','34574','Temp','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2516','34575','Temp','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2517','34622','Temp','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2518','34623','Temp','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2519','34670','Temp','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2520','34671','Temp','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2521','35043','Temp','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2522','35044','Temp','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2523','34766','Temp','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2524','34767','Temp','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2525','34209','Temp','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2526','34210','Temp','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2527','34820','Temp','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2528','34821','Temp','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2529','34868','Temp','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2530','34869','Temp','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2531','34916','Temp','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2532','34917','Temp','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2533','43182','SSD life left','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2534','43289','SSD life left','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2535','33354','Do not discover aggregate metrics','1','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2536','30687','trigger SENSOR_HI_CRIT','5','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2537','30687','trigger SENSOR_HI_DISAST','6','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2538','30687','trigger SENSOR_HI_WARN','4','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2539','30687','trigger SENSOR_LO_CRIT','2','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2540','30687','trigger SENSOR_LO_DISAST','3','0','','0');
INSERT INTO `lld_override` (`lld_overrideid`,`itemid`,`name`,`step`,`evaltype`,`formula`,`stop`) values ('2541','30687','trigger SENSOR_LO_WARN','1','0','','0');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2220','2427','8','{#TYPE}','aggregated_status');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2221','2428','8','{#TYPE}','service_check');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2222','2429','8','{#GRPC.CODE}','{$ETCD.GRPC_CODE.TRIGGER.MATCHES}');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2223','2430','8','{#MODE}','tcp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2224','2431','8','{#MODE}','tcp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2225','2432','8','{#MODE}','tcp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2226','2433','8','{#MODE}','tcp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2227','2434','8','{#MODE}','tcp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2228','2435','8','{#MODE}','tcp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2229','2436','8','{#TYPE}','buckets');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2230','2437','8','{#TYPE}','totals');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2231','2438','8','{#TYPE}','buckets');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2232','2439','8','{#TYPE}','totals');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2233','2440','8','{#TYPE}','buckets');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2234','2441','8','{#TYPE}','totals');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2235','2442','8','{#TYPE}','buckets');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2236','2443','8','{#TYPE}','totals');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2237','2444','8','{#TYPE}','buckets');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2238','2445','8','{#TYPE}','totals');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2239','2446','8','{#TYPE}','buckets');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2240','2447','8','{#TYPE}','totals');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2241','2448','8','{#TYPE}','buckets');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2242','2449','8','{#TYPE}','totals');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2243','2450','9','{#CHANNEL_ID}','{$HIKVISION_MAIN_CHANNEL_ID}');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2244','2451','8','{#NODE_STATE}','7');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2245','2452','8','{#NODE_STATE}','1');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2246','2453','8','{#TYPE}','miss_peer_region_count');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2247','2454','8','{#TYPE}','down_peer_region_count');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2248','2455','8','{#TYPE}','failed');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2249','2456','8','{#TYPE}','unreachable');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2250','2457','8','{#ATTRIBUTES}','Bad_Block_Rate');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2251','2458','9','{#DISKTYPE}','nvme');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2252','2459','8','{#ATTRIBUTES}','Power_Cycle_Count');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2253','2460','8','{#ATTRIBUTES}','Program_Fail_Count_Chip');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2254','2461','8','{#ATTRIBUTES}','Raw_Read_Error_Rate');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2255','2462','8','{#ATTRIBUTES}','Reallocated_Sector_Ct');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2256','2463','8','{#ATTRIBUTES}','Reported_Uncorrect');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2257','2464','8','{#ATTRIBUTES}','Seek_Error_Rate');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2258','2465','8','{#DISKTYPE}','nvme');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2259','2466','8','{#ATTRIBUTES}','Spin_Up_Time');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2260','2467','8','{#ATTRIBUTES}','Start_Stop_Count');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2261','2468','8','{#ATTRIBUTES}','Bad_Block_Rate');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2262','2469','9','{#DISKTYPE}','nvme');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2263','2470','8','{#ATTRIBUTES}','Power_Cycle_Count');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2264','2471','8','{#ATTRIBUTES}','Program_Fail_Count_Chip');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2265','2472','8','{#ATTRIBUTES}','Raw_Read_Error_Rate');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2266','2473','8','{#ATTRIBUTES}','Reallocated_Sector_Ct');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2267','2474','8','{#ATTRIBUTES}','Reported_Uncorrect');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2268','2475','8','{#ATTRIBUTES}','Seek_Error_Rate');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2269','2476','8','{#DISKTYPE}','nvme');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2270','2477','8','{#ATTRIBUTES}','Spin_Up_Time');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2271','2478','8','{#ATTRIBUTES}','Start_Stop_Count');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2272','2479','8','{#THRESHOLD_HI_CRIT}','^$');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2273','2480','8','{#THRESHOLD_HI_WARN}','^$');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2274','2481','8','{#THRESHOLD_LO_CRIT}','^$');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2275','2482','8','{#THRESHOLD_LO_WARN}','^$');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2276','2483','8','{#THRESHOLD_HI_CRIT}','^$');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2277','2484','8','{#THRESHOLD_HI_WARN}','^$');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2278','2485','8','{#THRESHOLD_LO_CRIT}','^$');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2279','2486','8','{#THRESHOLD_LO_WARN}','^$');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2280','2487','8','{#THRESHOLD_HI_CRIT}','^$');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2281','2488','8','{#THRESHOLD_HI_WARN}','^$');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2282','2489','8','{#THRESHOLD_LO_CRIT}','^$');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2283','2490','8','{#THRESHOLD_LO_WARN}','^$');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2284','2491','9','{#CISCO.IF.NAME}','{$CISCO.LLD.FILTER.IF.CONTROL.MATCHES}');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2285','2492','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2286','2493','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2287','2494','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2288','2495','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2289','2496','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2290','2497','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2291','2498','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2292','2499','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2293','2500','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2294','2501','8','{#ZYXEL.IF.NAME}','.*');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2295','2502','8','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2296','2503','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2297','2504','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2298','2505','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2299','2506','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2300','2507','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2301','2508','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2302','2509','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2303','2510','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2304','2511','8','{#EXTERNAL_SENSOR1_NAME}','Temp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2305','2512','8','{#EXTERNAL_SENSOR2_NAME}','Temp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2306','2513','8','{#EXTERNAL_SENSOR1_NAME}','Temp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2307','2514','8','{#EXTERNAL_SENSOR2_NAME}','Temp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2308','2515','8','{#EXTERNAL_SENSOR1_NAME}','Temp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2309','2516','8','{#EXTERNAL_SENSOR2_NAME}','Temp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2310','2517','8','{#EXTERNAL_SENSOR1_NAME}','Temp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2311','2518','8','{#EXTERNAL_SENSOR2_NAME}','Temp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2312','2519','8','{#EXTERNAL_SENSOR1_NAME}','Temp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2313','2520','8','{#EXTERNAL_SENSOR2_NAME}','Temp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2314','2521','8','{#EXTERNAL_SENSOR1_NAME}','Temp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2315','2522','8','{#EXTERNAL_SENSOR2_NAME}','Temp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2316','2523','8','{#EXTERNAL_SENSOR1_NAME}','Temp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2317','2524','8','{#EXTERNAL_SENSOR2_NAME}','Temp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2318','2525','8','{#EXTERNAL_SENSOR1_NAME}','Temp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2319','2526','8','{#EXTERNAL_SENSOR2_NAME}','Temp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2320','2527','8','{#EXTERNAL_SENSOR1_NAME}','Temp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2321','2528','8','{#EXTERNAL_SENSOR2_NAME}','Temp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2322','2529','8','{#EXTERNAL_SENSOR1_NAME}','Temp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2323','2530','8','{#EXTERNAL_SENSOR2_NAME}','Temp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2324','2531','8','{#EXTERNAL_SENSOR1_NAME}','Temp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2325','2532','8','{#EXTERNAL_SENSOR2_NAME}','Temp');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2326','2533','8','{#TYPE}','8');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2327','2534','8','{#TYPE}','8');
INSERT INTO `lld_override_condition` (`lld_override_conditionid`,`lld_overrideid`,`operator`,`macro`,`value`) values ('2328','2535','8','{#FSTYPE}','3|4');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2512','2427','0','2','Aggregated status');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2513','2427','0','2','State');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2514','2428','0','2','Check');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2515','2429','1','2','Too many failed gRPC requests');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2516','2430','0','2','Number of responses with codes');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2517','2431','0','2','Number of responses with codes');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2518','2432','0','2','Number of responses with codes');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2519','2433','0','2','Number of responses with codes');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2520','2434','0','2','Number of responses with codes');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2521','2435','0','2','Number of responses with codes');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2522','2436','0','2','bucket');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2523','2437','0','3','bucket');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2524','2438','0','2','bucket');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2525','2439','0','3','bucket');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2526','2440','0','2','bucket');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2527','2441','0','3','bucket');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2528','2442','0','2','bucket');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2529','2443','0','3','bucket');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2530','2444','0','2','bucket');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2531','2445','0','3','bucket');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2532','2446','0','2','bucket');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2533','2447','0','3','bucket');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2534','2448','0','2','bucket');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2535','2449','0','3','bucket');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2536','2450','1','2','Invalid video stream resolution parameters');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2537','2451','0','2','Replication lag');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2538','2452','0','2','Number of replicas');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2539','2452','0','2','Unhealthy replicas');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2540','2452','0','2','Number of unhealthy replicas');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2541','2452','0','2','Replication lag');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2542','2453','1','2','Too many missed regions');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2543','2454','1','2','There are unresponsive peers');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2544','2455','1','2','Too many failed GC-related operations');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2545','2456','1','2','Too many failure messages');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2546','2457','0','8','Bad_Block_Rate');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2547','2458','0','8','Media|Percentage|Critical');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2548','2459','0','8','Power_Cycle_Count');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2549','2460','0','8','Program_Fail_Count_Chip');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2550','2461','0','8','Raw_Read_Error_Rate');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2551','2462','0','8','Reallocated_Sector_Ct');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2552','2463','0','8','Reported_Uncorrect');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2553','2464','0','8','Seek_Error_Rate');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2554','2465','0','2','Self-test');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2555','2466','0','8','Spin_Up_Time');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2556','2467','0','8','Start_Stop_Count');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2557','2468','0','8','Bad_Block_Rate');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2558','2469','0','8','Media|Percentage|Critical');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2559','2470','0','8','Power_Cycle_Count');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2560','2471','0','8','Program_Fail_Count_Chip');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2561','2472','0','8','Raw_Read_Error_Rate');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2562','2473','0','8','Reallocated_Sector_Ct');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2563','2474','0','8','Reported_Uncorrect');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2564','2475','0','8','Seek_Error_Rate');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2565','2476','0','2','Self-test');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2566','2477','0','8','Spin_Up_Time');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2567','2478','0','8','Start_Stop_Count');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2568','2479','1','8','Temperature is above the critical threshold');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2569','2480','1','8','Temperature is above the warning threshold');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2570','2481','1','8','Temperature is below the critical threshold');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2571','2482','1','8','Temperature is below the warning threshold');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2572','2483','1','8','Fan speed is above the critical threshold');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2573','2484','1','8','Fan speed is above the warning threshold');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2574','2485','1','8','Fan speed is below the critical threshold');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2575','2486','1','8','Fan speed is below the warning threshold');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2576','2487','1','8','Voltage is above the critical threshold');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2577','2488','1','8','Voltage is above the warning threshold');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2578','2489','1','8','Voltage is below the critical threshold');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2579','2490','1','8','Voltage is below the warning threshold');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2580','2491','1','8','.*');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2581','2492','1','8','.*');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2582','2493','1','8','.*');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2583','2494','1','8','.*');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2584','2495','1','8','.*');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2585','2496','1','8','.*');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2586','2497','1','8','.*');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2587','2498','1','8','.*');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2588','2499','1','8','.*');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2589','2500','1','8','.*');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2590','2501','1','8','.*');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2591','2502','1','8','.*');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2592','2503','1','8','.*');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2593','2504','1','8','.*');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2594','2505','1','8','.*');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2595','2506','1','8','.*');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2596','2507','1','8','.*');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2597','2508','1','8','.*');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2598','2509','1','8','.*');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2599','2510','1','8','.*');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2600','2511','0','2','Humidity');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2601','2512','0','2','Humidity');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2602','2513','0','2','Humidity');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2603','2514','0','2','Humidity');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2604','2515','0','2','Humidity');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2605','2516','0','2','Humidity');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2606','2517','0','2','Humidity');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2607','2518','0','2','Humidity');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2608','2519','0','2','Humidity');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2609','2520','0','2','Humidity');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2610','2521','0','2','Humidity');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2611','2522','0','2','Humidity');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2612','2523','0','2','Humidity');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2613','2524','0','2','Humidity');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2614','2525','0','2','Humidity');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2615','2526','0','2','Humidity');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2616','2527','0','2','Humidity');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2617','2528','0','2','Humidity');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2618','2529','0','2','Humidity');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2619','2530','0','2','Humidity');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2620','2531','0','2','Humidity');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2621','2532','0','2','Humidity');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2622','2533','0','8','SSD life left');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2623','2534','0','8','SSD life left');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2624','2535','0','2','Saved');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2625','2536','1','2','{#SENSOR_HI_CRIT}');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2626','2537','1','2','{#SENSOR_HI_DISAST}');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2627','2538','1','2','{#SENSOR_HI_WARN}');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2628','2539','1','2','{#SENSOR_LO_CRIT}');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2629','2540','1','2','{#SENSOR_LO_DISAST}');
INSERT INTO `lld_override_operation` (`lld_override_operationid`,`lld_overrideid`,`operationobject`,`operator`,`value`) values ('2630','2541','1','2','{#SENSOR_LO_WARN}');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2512','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2513','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2514','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2515','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2516','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2517','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2518','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2519','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2520','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2521','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2522','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2523','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2524','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2525','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2526','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2527','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2528','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2529','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2530','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2531','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2532','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2533','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2534','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2535','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2536','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2537','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2538','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2539','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2540','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2541','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2542','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2543','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2544','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2545','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2546','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2547','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2548','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2549','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2550','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2551','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2552','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2553','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2554','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2555','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2556','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2557','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2558','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2559','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2560','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2561','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2562','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2563','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2564','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2565','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2566','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2567','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2568','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2569','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2570','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2571','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2572','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2573','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2574','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2575','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2576','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2577','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2578','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2579','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2580','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2581','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2582','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2583','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2584','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2585','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2586','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2587','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2588','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2589','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2590','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2591','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2592','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2593','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2594','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2595','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2596','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2597','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2598','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2599','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2600','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2601','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2602','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2603','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2604','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2605','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2606','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2607','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2608','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2609','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2610','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2611','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2612','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2613','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2614','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2615','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2616','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2617','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2618','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2619','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2620','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2621','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2622','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2623','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2624','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2625','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2626','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2627','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2628','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2629','0');
INSERT INTO `lld_override_opstatus` (`lld_override_operationid`,`status`) values ('2630','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2512','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2513','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2514','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2515','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2516','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2517','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2518','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2519','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2520','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2521','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2522','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2523','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2524','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2525','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2526','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2527','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2528','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2529','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2530','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2531','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2532','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2533','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2534','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2535','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2536','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2537','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2538','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2539','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2540','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2541','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2542','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2543','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2544','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2545','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2546','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2547','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2548','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2549','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2550','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2551','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2552','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2553','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2554','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2555','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2556','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2557','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2558','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2559','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2560','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2561','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2562','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2563','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2564','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2565','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2566','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2567','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2568','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2569','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2570','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2571','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2572','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2573','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2574','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2575','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2576','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2577','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2578','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2579','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2580','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2581','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2582','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2583','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2584','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2585','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2586','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2587','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2588','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2589','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2590','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2591','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2592','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2593','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2594','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2595','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2596','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2597','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2598','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2599','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2600','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2601','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2602','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2603','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2604','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2605','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2606','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2607','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2608','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2609','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2610','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2611','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2612','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2613','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2614','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2615','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2616','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2617','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2618','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2619','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2620','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2621','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2622','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2623','0');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2624','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2625','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2626','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2627','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2628','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2629','1');
INSERT INTO `lld_override_opdiscover` (`lld_override_operationid`,`discover`) values ('2630','1');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('1','32463','api_endpoint','{$ARANET.API.ENDPOINT}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('2','32463','password','{$ARANET.API.PASSWORD}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('3','32463','space_name','{$ARANET.API.SPACE_NAME}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('4','32463','username','{$ARANET.API.USERNAME}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('5','32783','host','{$VAULT.HOST}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('6','32783','accessors','{$VAULT.TOKEN.ACCESSORS}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('7','32783','token','{$VAULT.TOKEN}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('8','32783','scheme','{$VAULT.API.SCHEME}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('9','32783','port','{$VAULT.API.PORT}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('10','33630','root','{$SHAREPOINT.ROOT}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('11','33630','password','{$SHAREPOINT.PASSWORD}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('12','33630','url','{$SHAREPOINT.URL}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('13','33630','user','{$SHAREPOINT.USER}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('14','33634','password','{$SHAREPOINT.PASSWORD}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('15','33634','root','{$SHAREPOINT.ROOT}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('16','33634','url','{$SHAREPOINT.URL}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('17','33634','user','{$SHAREPOINT.USER}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('18','35077','token','{$CLOUDFLARE.API.TOKEN}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('19','35077','zone','{$CLOUDFLARE.ZONE_ID}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('20','35077','api_endpoint','{$CLOUDFLARE.API.URL}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('21','39743','token','{$VELOCLOUD.TOKEN}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('22','39743','url','{$VELOCLOUD.URL}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('23','39937','api_endpoint','{$KUBE.API.ENDPOINT.URL}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('24','39937','token','{$KUBE.API.TOKEN}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('27','40011','token','{$KUBE.API.TOKEN}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('28','40011','api_server_scheme','{$KUBE.API_SERVER.SCHEME}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('29','40011','api_server_port','{$KUBE.API_SERVER.PORT}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('30','40011','controller_scheme','{$KUBE.CONTROLLER_MANAGER.SCHEME}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('31','40011','controller_port','{$KUBE.CONTROLLER_MANAGER.PORT}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('32','40011','scheduler_scheme','{$KUBE.SCHEDULER.SCHEME}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('33','40011','scheduler_port','{$KUBE.SCHEDULER.PORT}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('36','40014','state_endpoint_name','{$KUBE.STATE.ENDPOINT.NAME}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('37','40014','token','{$KUBE.API.TOKEN}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('40','40015','token','{$KUBE.API.TOKEN}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('41','40015','kubelet_scheme','{$KUBE.KUBELET.SCHEME}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('42','40015','kubelet_port','{$KUBE.KUBELET.PORT}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('43','39937','endpoint_name','{$KUBE.NODES.ENDPOINT.NAME}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('44','40011','api_endpoint','{$KUBE.API.URL}/api');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('45','40014','api_endpoint','{$KUBE.API.URL}/api');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('46','40015','api_endpoint','{$KUBE.API.URL}/api');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('47','42729','apikey','{$OPENWEATHERMAP.API.TOKEN}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('48','42729','api_endpoint','{$OPENWEATHERMAP.API.ENDPOINT}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('49','42729','lang','{$LANG}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('50','42729','location','{$LOCATION}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('51','42729','units','{$UNITS}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('52','42753','token','{$PVE.TOKEN.ID}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('53','42753','secret','{$PVE.TOKEN.SECRET}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('54','42753','url','{HOST.CONN}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('55','42753','port','{$PVE.URL.PORT}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('56','42932','api_endpoint','{$CONSUL.NODE.API.URL}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('57','42932','token','{$CONSUL.TOKEN}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('58','43171','base_url','{$HPE.MSA.API.SCHEME}://{HOST.CONN}:{$HPE.MSA.API.PORT}/');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('59','43171','username','{$HPE.MSA.API.USERNAME}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('60','43171','password','{$HPE.MSA.API.PASSWORD}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('61','43278','base_url','{$HPE.MSA.API.SCHEME}://{HOST.CONN}:{$HPE.MSA.API.PORT}/');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('62','43278','username','{$HPE.MSA.API.USERNAME}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('63','43278','password','{$HPE.MSA.API.PASSWORD}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('64','43396','base_url','{$HPE.PRIMERA.API.SCHEME}://{HOST.CONN}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('65','43396','password','{$HPE.PRIMERA.API.PASSWORD}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('66','43396','username','{$HPE.PRIMERA.API.USERNAME}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('67','43494','base_url','{$HPE.SYNERGY.API.SCHEME}://{HOST.CONN}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('68','43494','password','{$HPE.SYNERGY.API.PASSWORD}');
INSERT INTO `item_parameter` (`item_parameterid`,`itemid`,`name`,`value`) values ('69','43494','username','{$HPE.SYNERGY.API.USERNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6439','30196','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6444','30197','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6449','30198','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6454','30199','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6459','30200','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6464','30201','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6469','30202','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6474','30203','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6479','30204','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6484','30205','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6489','30206','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6494','30207','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6499','30208','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6504','30209','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6509','30210','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6514','30211','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6519','30212','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6524','30213','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6529','30214','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6534','30215','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6539','30216','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6544','30217','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6549','30218','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6609','35104','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6614','35105','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6619','35106','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6624','35107','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6629','35108','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6634','35109','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6639','35110','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6644','35111','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6649','35112','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6654','35113','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6659','35114','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6664','35115','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6754','30239','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6759','30240','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6764','30241','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6769','30242','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6774','30243','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6779','30244','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6784','30245','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6789','30246','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6794','30247','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6799','30248','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6804','30249','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6809','30250','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6814','30251','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6819','30252','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6824','30253','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6829','30254','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6834','30255','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6839','30256','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6844','30257','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6849','30258','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6854','30259','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6859','30260','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6864','30261','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6924','35129','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6929','35130','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6934','35131','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6939','35132','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6944','35133','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6949','35134','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6954','35135','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6959','35136','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6964','35137','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6969','35138','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6974','35139','backend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('6979','35140','frontend','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('8507','36814','organization','{#ORG_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('8512','36815','organization','{#ORG_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('8517','36816','organization','{#ORG_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('8522','36817','organization','{#ORG_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('8527','36818','organization','{#ORG_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('8532','36819','organization','{#ORG_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11054','39754','city','{#CITY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11055','39754','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11057','39754','state','{#STATE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11061','39755','city','{#CITY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11062','39755','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11064','39755','state','{#STATE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11068','39756','city','{#CITY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11069','39756','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11071','39756','state','{#STATE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11075','39757','city','{#CITY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11076','39757','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11078','39757','state','{#STATE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11082','39758','city','{#CITY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11083','39758','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11085','39758','state','{#STATE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11089','39759','city','{#CITY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11090','39759','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11092','39759','state','{#STATE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11096','39760','city','{#CITY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11097','39760','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11099','39760','state','{#STATE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11103','39761','city','{#CITY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11104','39761','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11106','39761','state','{#STATE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11110','39762','city','{#CITY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11111','39762','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11113','39762','state','{#STATE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11117','39763','city','{#CITY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11118','39763','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11120','39763','state','{#STATE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11124','39764','city','{#CITY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11125','39764','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11127','39764','state','{#STATE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11131','39765','city','{#CITY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11132','39765','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11134','39765','state','{#STATE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11138','39766','city','{#CITY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11139','39766','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11141','39766','state','{#STATE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11145','39767','city','{#CITY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11146','39767','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11148','39767','state','{#STATE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11152','39768','city','{#CITY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11153','39768','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11155','39768','state','{#STATE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11159','39769','city','{#CITY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11160','39769','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11162','39769','state','{#STATE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11166','39770','city','{#CITY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11167','39770','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11169','39770','state','{#STATE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11173','39771','city','{#CITY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11174','39771','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11176','39771','state','{#STATE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11180','39772','edge','{#EDGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11181','39772','enterprise','{#ENTERPRISE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11182','39772','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11187','39773','edge','{#EDGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11188','39773','enterprise','{#ENTERPRISE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11189','39773','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11194','39774','edge','{#EDGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11195','39774','enterprise','{#ENTERPRISE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11196','39774','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11201','39775','edge','{#EDGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11202','39775','enterprise','{#ENTERPRISE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11203','39775','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11208','39776','edge','{#EDGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11209','39776','enterprise','{#ENTERPRISE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11210','39776','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11215','39777','edge','{#EDGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11216','39777','enterprise','{#ENTERPRISE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11217','39777','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11222','39778','edge','{#EDGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11223','39778','enterprise','{#ENTERPRISE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11224','39778','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11229','39779','edge','{#EDGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11230','39779','enterprise','{#ENTERPRISE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11231','39779','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11236','39780','edge','{#EDGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11237','39780','enterprise','{#ENTERPRISE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11238','39780','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11243','39781','edge','{#EDGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11244','39781','enterprise','{#ENTERPRISE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11245','39781','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11250','39782','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11255','39783','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11260','39784','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11265','39785','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11270','39786','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11275','39787','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11280','39788','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11285','39789','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11290','39790','edge','{#EDGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11291','39790','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11296','39791','edge','{#EDGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11297','39791','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11302','39792','edge','{#EDGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11303','39792','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11308','39793','edge','{#EDGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11309','39793','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11314','39794','edge','{#EDGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11315','39794','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11320','39795','edge','{#EDGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11321','39795','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11326','39796','edge','{#EDGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11327','39796','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11783','39827','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11785','39829','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11786','39830','component','grpc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11787','39831','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11789','39832','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11791','39833','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11793','39834','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11794','39835','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11795','39836','component','fds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11796','39837','component','fds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11797','39838','component','grpc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11798','39839','component','go-threads');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11799','39840','component','grpc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11800','39841','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11801','39841','http-code','0');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11802','39842','component','goroutines');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11803','39843','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11804','39844','component','audit');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11805','39845','component','tls');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11806','39846','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11808','39847','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11810','39848','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11812','39849','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11814','39850','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11816','39861','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11817','39861','verb','{#VERB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11818','39862','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11819','39862','verb','{#VERB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11820','39863','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11821','39863','verb','{#VERB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11822','39864','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11823','39864','verb','{#VERB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11824','39865','component','watchers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11825','39865','kind','{#KIND}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11826','39866','component','authentication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11827','39866','name','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11828','39867','component','authentication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11829','39867','result','{#RESULT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11830','39868','component','client-certificate');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11831','39869','component','etcd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11832','39869','resource','{#RESOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11833','39870','component','grpc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11834','39870','grpc-code','{#GRPC_CODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11835','39871','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11836','39871','kind','{#KIND}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11837','39872','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11838','39872','resource','{#RESOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11839','39872','scope','{#SCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11840','39872','verb','{#VERB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11841','39873','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11842','39873','verb','{#VERB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11843','39874','component','workqueue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11844','39874','workqueue','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11845','39875','component','workqueue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11846','39875','workqueue','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11847','39876','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11848','39877','component','rest');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11850','39878','component','rest');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11852','39879','component','rest');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11854','39880','component','rest');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11856','39881','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11857','39882','component','goroutines');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11858','39883','component','go-threads');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11859','39884','component','leader');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11860','39885','component','fds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11861','39886','component','fds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11862','39887','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11863','39888','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11864','39890','component','workqueue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11865','39890','workqueue','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11866','39891','component','workqueue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11867','39891','workqueue','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11868','39892','component','workqueue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11869','39892','workqueue','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11870','39893','component','workqueue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11871','39893','workqueue','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11872','39894','component','workqueue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11873','39894','workqueue','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11874','39895','component','workqueue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11875','39895','workqueue','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11876','39896','component','workqueue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11877','39896','workqueue','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11878','39897','component','workqueue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11879','39897','workqueue','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11880','39898','component','workqueue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11881','39898','workqueue','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11882','39899','component','workqueue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11883','39899','workqueue','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11884','39900','component','workqueue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11885','39900','workqueue','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11886','39901','component','workqueue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11887','39901','workqueue','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11888','39902','component','workqueue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11889','39902','workqueue','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11890','39903','component','workqueue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11891','39903','workqueue','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11892','39904','component','workqueue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11893','39904','workqueue','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11894','39905','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11895','39906','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11896','39907','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11897','39908','component','containers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11898','39909','component','containers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11899','39910','component','containers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11900','39911','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11901','39912','component','pods');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11902','39913','component','descriptors');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11903','39914','component','descriptors');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11904','39915','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11905','39916','component','containers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11906','39921','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11907','39922','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11908','39923','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11909','39924','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11910','39925','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11911','39925','container','{#CONTAINER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11912','39925','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11913','39925','pod','{#POD}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11914','39926','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11915','39926','container','{#CONTAINER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11916','39926','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11917','39926','pod','{#POD}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11918','39927','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11919','39927','container','{#CONTAINER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11920','39927','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11921','39927','pod','{#POD}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11922','39928','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11923','39928','container','{#CONTAINER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11924','39928','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11925','39928','pod','{#POD}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11926','39929','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11927','39929','container','{#CONTAINER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11928','39929','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11929','39929','pod','{#POD}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11930','39930','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11931','39930','container','{#CONTAINER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11932','39930','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11933','39930','pod','{#POD}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11934','39931','component','pod');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11935','39931','pod','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11936','39932','component','pod');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11937','39932','pod','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11938','39933','component','pod');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11939','39933','pod','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11940','39934','code','{#CODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11941','39934','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11942','39934','host','{#HOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11943','39934','method','{#METHOD}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11944','39935','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11945','39936','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11946','39937','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11947','39938','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11948','39939','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11949','39943','component','addresses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11950','39943','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11951','39944','component','info');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11952','39944','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11953','39945','component','uptime');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11954','39945','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11955','39946','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11956','39946','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11957','39947','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11958','39947','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11959','39948','component','limits');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11960','39948','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11961','39949','component','limits');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11962','39949','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11963','39950','component','info');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11964','39950','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11965','39951','component','info');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11966','39951','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11967','39952','component','info');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11968','39952','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11969','39953','component','info');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11970','39953','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11971','39954','component','info');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11972','39954','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11973','39955','component','info');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11974','39955','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11975','39956','component','info');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11976','39956','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11977','39957','component','addresses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11978','39957','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11979','39958','component','conditions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11980','39958','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11981','39959','component','conditions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11982','39959','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11983','39960','component','conditions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11984','39960','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11985','39961','component','conditions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11986','39961','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11987','39962','component','conditions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11988','39962','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11989','39963','component','capacity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11990','39963','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11991','39964','component','capacity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11992','39964','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11993','39965','component','capacity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11994','39965','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11995','39966','component','allocatable');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11996','39966','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11997','39967','component','allocatable');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11998','39967','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('11999','39968','component','allocatable');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12000','39968','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12001','39969','component','used');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12002','39969','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12003','39970','component','conditions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12004','39970','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12005','39970','node','{#NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12006','39970','pod','{#POD}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12007','39971','component','conditions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12008','39971','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12009','39971','node','{#NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12010','39971','pod','{#POD}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12011','39972','component','conditions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12012','39972','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12013','39972','node','{#NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12014','39972','pod','{#POD}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12015','39973','component','conditions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12016','39973','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12017','39973','node','{#NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12018','39973','pod','{#POD}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12019','39974','component','container');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12020','39974','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12021','39974','node','{#NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12022','39974','pod','{#POD}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12023','39975','component','pod');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12024','39975','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12025','39975','node','{#NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12026','39975','pod','{#POD}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12027','39976','component','uptime');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12028','39976','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12029','39976','node','{#NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12030','39976','pod','{#POD}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12032','39978','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12040','39986','component','rest');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12042','39987','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12043','39988','component','rest');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12045','39989','component','goroutines');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12046','39990','component','rest');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12048','39991','component','fds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12049','39992','component','fds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12050','39993','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12051','39994','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12052','39995','component','scheduler');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12053','39996','component','scheduler');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12054','39997','component','scheduler');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12055','39998','component','rest');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12057','39999','component','go-threads');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12058','40003','component','e2e-scheduling');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12059','40003','result','{#RESULT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12060','40004','component','e2e-scheduling');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12061','40004','result','{#RESULT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12062','40005','component','e2e-scheduling');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12063','40005','result','{#RESULT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12064','40006','component','e2e-scheduling');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12065','40006','result','{#RESULT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12066','40007','component','e2e-scheduling');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12067','40007','result','{#RESULT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12068','40008','component','binding');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12069','40009','component','scheduling-algorithm');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12070','40010','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12071','40011','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12072','40012','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12073','40013','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12074','40014','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12075','40015','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12076','40016','component','deployment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12077','40017','component','namespace');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12078','40018','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12079','40019','component','service');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12080','40020','component','statefulset');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12081','40036','component','component');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12082','40036','component','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12083','40037','component','daemonset');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12084','40037','daemonset','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12085','40037','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12086','40038','component','daemonset');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12087','40038','daemonset','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12088','40038','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12089','40039','component','daemonset');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12090','40039','daemonset','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12091','40039','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12092','40040','component','daemonset');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12093','40040','daemonset','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12094','40040','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12095','40041','component','daemonset');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12096','40041','daemonset','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12097','40041','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12098','40042','component','deployment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12099','40042','daemonset','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12100','40042','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12101','40043','component','deployment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12102','40043','daemonset','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12103','40043','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12104','40044','component','deployment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12105','40044','daemonset','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12106','40044','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12107','40045','component','deployment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12108','40045','daemonset','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12109','40045','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12110','40046','component','deployment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12111','40046','daemonset','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12112','40046','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12113','40047','component','deployment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12114','40047','daemonset','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12115','40047','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12116','40048','component','deployment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12117','40048','daemonset','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12118','40048','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12119','40049','component','endpoint');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12120','40049','endpoint','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12121','40049','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12122','40050','component','endpoint');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12123','40050','endpoint','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12124','40050','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12125','40051','component','endpoint');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12126','40051','endpoint','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12127','40051','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12128','40052','component','livez');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12129','40052','component','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12130','40053','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12131','40053','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12132','40054','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12133','40054','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12134','40055','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12135','40055','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12136','40056','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12137','40056','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12138','40057','component','pods');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12139','40057','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12140','40058','component','pods');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12141','40058','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12142','40059','component','pod');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12143','40059','pod','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12144','40060','component','pod');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12145','40060','pod','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12146','40061','component','pod');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12147','40061','pod','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12148','40062','component','pod');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12149','40062','pod','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12150','40063','component','pod');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12151','40063','pod','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12152','40064','component','pod');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12153','40064','pod','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12154','40065','component','pod');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12155','40065','pod','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12156','40066','component','pod');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12157','40066','pod','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12158','40067','component','pod');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12159','40067','pod','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12160','40068','component','pod');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12161','40068','pod','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12162','40069','component','pod');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12163','40069','pod','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12164','40070','component','pod');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12165','40070','pod','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12166','40071','component','pod');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12167','40071','pod','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12168','40072','component','pod');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12169','40072','pod','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12170','40073','component','pod');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12171','40073','pod','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12172','40074','component','pod');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12173','40074','pod','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12174','40075','component','pod');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12175','40075','pod','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12176','40076','component','pvc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12177','40076','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12178','40076','phase','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12179','40077','component','pvc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12180','40077','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12181','40077','phase','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12182','40078','component','pvc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12183','40078','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12184','40078','pvc','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12185','40079','component','pvc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12186','40079','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12187','40079','phase','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12188','40080','component','pvc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12189','40080','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12190','40080','pvc','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12191','40081','component','pvc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12192','40081','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12193','40081','phase','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12194','40082','component','pvc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12195','40082','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12196','40082','pvc','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12197','40083','component','pvc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12198','40083','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12200','40084','component','pvc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12201','40084','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12202','40084','pvc','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12203','40085','component','readyz');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12204','40085','component','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12205','40086','component','replicaset');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12206','40086','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12207','40086','replicaset','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12208','40087','component','replicaset');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12209','40087','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12210','40087','replicaset','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12211','40088','component','replicaset');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12212','40088','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12213','40088','replicaset','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12214','40089','component','replicaset');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12215','40089','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12216','40089','replicaset','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12217','40090','component','statefulset');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12218','40090','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12219','40090','statefulset','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12220','40091','component','statefulset');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12221','40091','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12222','40091','statefulset','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12223','40092','component','statefulset');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12224','40092','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12225','40092','statefulset','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12226','40093','component','statefulset');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12227','40093','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12228','40093','statefulset','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12229','40094','component','statefulset');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12230','40094','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('12231','40094','statefulset','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14962','32442','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14963','32443','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14964','32444','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14965','32445','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14966','32446','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14967','32447','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14968','32448','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14969','32449','component','broker');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14970','32450','component','broker');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14971','32451','component','broker');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14972','32452','component','broker');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14973','32453','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14974','32454','component','destination');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14975','32455','component','destination');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14976','32456','component','destination');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14977','32457','component','destination');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14978','32458','component','destination');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14979','32459','component','destination');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14980','32460','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14981','32461','component','destination');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14982','32462','component','destination');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14983','28743','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14984','28743','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14985','28744','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14986','28745','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14987','28746','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14988','28747','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14989','28748','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14990','28748','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14991','30896','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14992','30897','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14993','30898','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14994','30899','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14995','30900','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14996','30901','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14997','30902','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14998','30903','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('14999','30904','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15000','30905','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15001','30906','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15002','30907','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15003','30908','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15004','30909','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15005','30910','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15006','30911','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15007','30912','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15008','30913','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15009','30914','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15010','30915','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15011','30917','component','connection');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15012','30918','component','connection');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15013','30919','component','connection');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15014','30920','component','connection');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15015','30921','component','connection');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15016','30922','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15017','28775','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15018','28776','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15019','28776','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15020','28777','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15021','28777','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15022','28778','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15023','28779','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15024','28780','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15025','28781','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15026','28782','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15027','28783','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15028','28784','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15029','28785','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15030','28786','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15031','28787','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15032','28788','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15033','28789','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15034','28790','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15035','28791','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15036','28792','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15037','28793','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15038','28794','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15039','28795','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15040','28796','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15041','28798','component','connection');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15042','28799','component','connection');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15043','28800','component','connection');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15044','28801','component','connection');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15045','28802','component','connection');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15046','28803','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15047','32463','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15048','32464','component','discovery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15049','32464','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15050','32486','component','{#METRIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15051','32487','component','{#METRIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15052','32488','component','{#METRIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15053','32489','component','{#METRIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15054','32490','component','{#METRIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15055','32491','component','{#METRIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15056','32492','component','{#METRIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15057','32493','component','{#METRIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15058','32494','component','{#METRIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15059','32495','component','{#METRIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15060','32496','component','{#METRIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15061','32497','component','{#METRIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15062','32498','component','{#METRIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15063','32499','component','{#METRIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15064','32500','component','{#METRIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15065','32501','component','{#METRIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15066','32502','component','{#METRIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15067','32503','component','{#METRIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15068','32504','component','{#METRIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15069','32505','component','{#METRIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15070','32506','component','{#METRIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15071','32117','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15072','32117','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15073','32118','component','osd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15074','32118','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15075','32119','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15076','32120','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15077','32120','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15078','32121','component','osd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15079','32121','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15080','32122','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15081','32122','component','osd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15082','32123','component','placement-groups');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15083','32124','component','placement-groups');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15084','32125','component','placement-groups');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15085','32126','component','placement-groups');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15086','32127','component','placement-groups');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15087','32128','component','placement-groups');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15088','32129','component','placement-groups');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15089','32130','component','placement-groups');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15090','32131','component','placement-groups');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15091','32132','component','placement-groups');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15092','32133','component','placement-groups');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15093','32134','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15094','32134','component','osd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15095','32135','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15096','32135','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15097','32136','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15098','32136','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15099','32137','component','monitors');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15100','32138','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15101','32138','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15102','32139','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15103','32139','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15104','32140','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15105','32141','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15106','32141','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15107','32142','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15108','32142','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15109','32143','component','placement-groups');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15110','32144','component','placement-groups');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15111','32145','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15112','32145','component','placement-groups');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15113','32146','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15114','32146','component','osd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15115','32147','component','placement-groups');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15116','32148','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15117','32148','component','pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15118','32149','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15119','32150','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15120','32150','component','osd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15121','32151','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15122','32151','component','osd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15123','32152','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15124','32152','component','osd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15125','32153','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15126','32154','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15127','32154','component','osd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15128','32155','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15129','32155','component','osd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15130','32156','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15131','32156','component','osd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15132','32157','component','placement-groups');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15133','32158','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15134','32158','component','osd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15135','32159','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15136','32159','component','osd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15137','32160','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15138','32161','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15139','32161','component','osd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15140','32161','component','placement-groups');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15141','32162','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15142','32162','component','osd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15143','32162','component','placement-groups');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15144','32163','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15145','32163','component','osd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15146','32163','component','placement-groups');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15147','32164','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15148','32164','component','osd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15149','32165','component','monitors');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15150','32166','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15151','32167','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15152','32167','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15153','32170','class','{#CLASS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15154','32170','component','osd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15155','32170','host','{#HOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15156','32170','osd','{#OSDNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15157','32171','class','{#CLASS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15158','32171','component','osd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15159','32171','host','{#HOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15160','32171','osd','{#OSDNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15161','32172','class','{#CLASS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15162','32172','component','osd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15163','32172','host','{#HOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15164','32172','osd','{#OSDNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15165','32173','class','{#CLASS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15166','32173','component','osd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15167','32173','host','{#HOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15168','32173','osd','{#OSDNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15169','32174','class','{#CLASS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15170','32174','component','osd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15171','32174','host','{#HOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15172','32174','osd','{#OSDNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15173','32175','class','{#CLASS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15174','32175','component','osd');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15175','32175','host','{#HOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15176','32175','osd','{#OSDNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15177','32507','component','pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15178','32507','crushrule','{#CRUSHRULE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15179','32507','pool','{#POOLNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15180','32508','component','pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15181','32508','crushrule','{#CRUSHRULE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15182','32508','pool','{#POOLNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15183','32509','component','pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15184','32509','crushrule','{#CRUSHRULE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15185','32509','pool','{#POOLNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15186','32510','component','pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15187','32510','crushrule','{#CRUSHRULE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15188','32510','pool','{#POOLNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15189','32511','component','pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15190','32511','crushrule','{#CRUSHRULE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15191','32511','pool','{#POOLNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15192','32512','component','pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15193','32512','crushrule','{#CRUSHRULE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15194','32512','pool','{#POOLNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15195','32513','component','pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15196','32513','crushrule','{#CRUSHRULE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15197','32513','pool','{#POOLNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15198','32514','component','pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15199','32514','crushrule','{#CRUSHRULE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15200','32514','pool','{#POOLNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15201','32515','component','pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15202','32515','crushrule','{#CRUSHRULE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15203','32515','pool','{#POOLNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15204','35064','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15205','35065','component','cert');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15206','35066','component','cert');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15207','35067','component','cert');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15208','35068','component','cert');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15209','35069','component','cert');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15210','35070','component','cert');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15211','35071','component','cert');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15212','35072','component','cert');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15213','35073','component','cert');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15214','35074','component','cert');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15215','35075','component','cert');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15216','35076','component','cert');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15217','35077','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15218','35078','component','bandwidth');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15219','35079','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15220','35080','component','threats');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15221','35081','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15222','35082','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15223','35083','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15224','35084','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15225','35085','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15226','35086','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15227','35087','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15228','35088','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15229','35089','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15230','35090','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15231','35091','component','bandwidth');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15232','35092','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15233','35093','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15234','35094','component','pageviews');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15235','35095','component','dns');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15236','35096','component','dns');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15237','35097','component','dns');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15238','35098','component','bandwidth');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15239','35099','component','bandwidth');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15240','35100','component','bandwidth');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15241','35101','component','bandwidth');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15242','35102','component','uniques');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15243','30527','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15244','30528','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15245','30529','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15246','30530','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15247','30530','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15248','30531','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15249','30532','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15250','30533','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15251','30534','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15252','30535','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15253','30536','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15254','30537','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15255','30538','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15256','30539','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15257','30540','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15258','30541','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15259','30542','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15260','30543','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15261','30544','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15262','30545','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15263','30546','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15264','30547','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15265','30548','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15266','30548','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15267','30549','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15268','30550','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15269','30551','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15270','30552','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15271','30553','component','containers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15272','30553','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15273','30554','component','containers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15274','30555','component','containers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15275','30556','component','containers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15276','30557','component','containers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15277','30558','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15278','30559','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15279','30560','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15280','30561','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15281','30562','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15282','30563','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15283','30564','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15284','30565','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15285','30566','component','images');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15286','30566','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15287','30567','component','images');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15288','30568','component','images');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15289','30569','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15290','30570','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15291','30573','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15292','30573','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15293','30574','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15294','30574','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15295','30575','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15296','30575','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15297','30576','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15298','30576','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15299','30577','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15300','30577','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15301','30578','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15302','30578','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15303','30579','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15304','30579','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15305','30580','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15306','30580','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15307','30581','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15308','30581','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15309','30582','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15310','30582','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15311','30583','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15312','30583','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15313','30584','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15314','30584','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15315','30585','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15316','30585','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15317','30586','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15318','30586','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15319','30587','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15320','30587','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15321','30588','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15322','30588','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15323','30589','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15324','30589','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15325','30590','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15326','30590','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15327','30591','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15328','30591','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15329','30592','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15330','30592','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15331','30593','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15332','30593','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15333','30594','component','images');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15334','30594','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15335','30595','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15336','30595','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15337','30596','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15338','30596','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15339','30597','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15340','30597','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15341','30598','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15342','30598','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15343','30599','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15344','30599','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15345','30600','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15346','30600','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15347','30601','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15348','30601','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15349','30602','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15350','30602','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15351','30603','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15352','30603','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15353','30604','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15354','30604','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15355','30605','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15356','30605','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15357','30606','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15358','30606','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15359','30607','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15360','30607','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15361','30608','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15362','30608','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15363','30609','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15364','30609','image','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15365','30610','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15366','30610','image','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15367','39803','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15368','39803','container','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15369','30690','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15370','30690','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15371','30691','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15372','30692','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15373','30693','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15374','30694','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15375','30695','component','documents');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15376','30696','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15377','30697','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15378','30698','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15379','30699','component','nodes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15380','30700','component','nodes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15381','30701','component','nodes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15382','30702','component','shards');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15383','30703','component','indices');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15384','30704','component','tasks');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15385','30705','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15386','30706','component','shards');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15387','30707','component','tasks');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15388','30708','component','nodes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15389','30709','component','nodes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15390','30710','component','shards');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15391','30711','component','shards');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15392','30712','component','shards');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15393','30714','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15394','30714','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15395','30715','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15396','30715','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15397','30716','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15398','30716','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15399','30717','component','fetches');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15400','30717','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15401','30718','component','refresh-thread-pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15402','30718','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15403','30719','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15404','30719','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15405','30720','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15406','30720','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15407','30721','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15408','30721','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15409','30722','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15410','30722','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15411','30723','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15412','30723','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15413','30724','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15414','30724','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15415','30725','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15416','30725','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15417','30726','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15418','30726','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15419','30727','component','refresh-thread-pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15420','30727','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15421','30728','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15422','30728','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15423','30729','component','refresh-thread-pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15424','30729','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15425','30730','component','search-thread-pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15426','30730','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15427','30731','component','search-thread-pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15428','30731','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15429','30732','component','search-thread-pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15430','30732','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15431','30733','component','search-thread-pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15432','30733','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15433','30734','component','write-thread-pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15434','30734','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15435','30735','component','write-thread-pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15436','30735','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15437','30736','component','write-thread-pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15438','30736','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15439','30737','component','refresh-thread-pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15440','30737','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15441','30738','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15442','30738','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15443','30739','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15444','30739','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15445','30740','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15446','30740','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15447','30741','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15448','30741','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15449','30742','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15450','30742','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15451','30743','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15452','30743','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15453','30744','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15454','30744','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15455','30745','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15456','30745','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15457','30746','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15458','30746','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15459','30747','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15460','30747','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15461','30748','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15462','30748','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15463','30749','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15464','30749','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15465','30750','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15466','30750','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15467','30751','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15468','30751','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15469','30752','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15470','30752','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15471','30753','component','fetches');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15472','30753','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15473','30754','component','fetches');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15474','30754','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15475','30755','component','fetches');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15476','30755','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15477','30756','component','fetches');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15478','30756','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15479','30757','component','fetches');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15480','30757','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15481','30758','component','write-thread-pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15482','30758','node','{#ES.NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15483','30923','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15484','30923','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15485','30924','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15486','30925','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15487','30926','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15488','30927','component','fds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15489','30928','component','proposals');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15490','30929','component','proposals');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15491','30930','component','proposals');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15492','30931','component','proposals');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15493','30932','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15494','30933','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15495','30934','component','store');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15496','30935','component','grpc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15497','30936','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15498','30937','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15499','30938','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15500','30939','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15501','30940','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15502','30941','component','store');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15503','30942','component','grpc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15504','30943','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15505','30944','component','fds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15506','30945','component','leader');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15507','30946','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15508','30947','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15509','30948','component','events');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15510','30949','component','grpc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15511','30950','component','grpc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15512','30951','component','grpc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15513','30952','component','http');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15514','30952','http-code','4xx');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15515','30953','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15516','30954','component','http');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15517','30954','http-code','5xx');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15518','30955','component','http');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15519','30956','component','leader');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15520','30957','component','keys');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15521','30958','component','keys');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15522','30959','component','keys');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15523','30960','component','leader');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15524','30963','component','grpc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15525','30963','grpc-code','{#GRPC.CODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15526','30964','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15527','30964','component','peers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15528','30964','peer','{#ETCD.PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15529','30965','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15530','30965','component','peers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15531','30965','peer','{#ETCD.PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15532','30966','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15533','30966','component','peers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15534','30966','peer','{#ETCD.PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15535','30967','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15536','30967','component','peers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15537','30967','peer','{#ETCD.PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15538','32516','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15539','32517','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15540','32518','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15541','32519','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15542','32520','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15543','32521','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15544','32522','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15545','32523','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15546','32524','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15547','32528','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15548','32528','database','{#INSTANCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15549','32529','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15550','32529','database','{#INSTANCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15551','32530','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15552','32530','database','{#INSTANCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15553','32531','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15554','32531','database','{#INSTANCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15555','32532','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15556','32532','database','{#INSTANCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15557','32533','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15558','32533','database','{#INSTANCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15559','32534','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15560','32534','database','{#INSTANCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15561','32535','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15562','32535','database','{#INSTANCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15563','32536','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15564','32536','database','{#INSTANCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15565','32537','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15566','32537','database','{#INSTANCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15567','32538','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15568','32538','database','{#INSTANCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15569','32539','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15570','32539','database','{#INSTANCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15571','32540','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15572','32540','database','{#INSTANCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15573','32541','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15574','32541','database','{#INSTANCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15575','32542','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15576','32542','database','{#INSTANCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15577','32543','component','ldap');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15578','32543','ldap','{#INSTANCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15579','32544','component','ldap');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15580','32544','ldap','{#INSTANCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15581','32545','component','web');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15582','32545','web','{#INSTANCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15583','32546','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15584','32547','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15585','32548','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15586','32549','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15587','32550','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15588','32551','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15589','32552','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15590','32553','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15591','32554','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15592','32558','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15593','32559','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15594','32560','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15595','32561','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15596','32562','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15597','32563','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15598','32564','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15599','32565','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15600','32566','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15601','32567','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15602','32568','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15603','32569','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15604','32570','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15605','32571','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15606','32572','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15607','32573','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15608','32574','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15609','32575','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15610','23644','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15611','31499','component','class');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15628','31516','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15629','31517','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15630','31518','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15631','31519','component','runtime');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15632','31520','component','runtime');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15633','31521','component','runtime');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15634','31522','component','threading');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15635','31523','component','threading');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15636','31524','component','threading');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15639','31527','component','class');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15641','31529','component','class');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15642','31530','component','compilation');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15643','31531','component','compilation');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15656','31544','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15657','31545','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15658','31546','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15659','31547','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15660','31548','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15661','31549','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15662','31550','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15665','31553','component','threading');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15666','32576','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15667','32577','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15668','32578','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15669','32579','component','fds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15670','32580','component','redis');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15671','32581','component','redis');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15672','32582','component','redis');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15673','32583','component','fds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15674','32584','component','fds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15675','32585','component','fds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15676','32586','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15677','32587','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15678','32588','component','redis');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15679','32589','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15680','32590','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15681','32591','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15682','32592','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15683','32593','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15684','32594','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15685','32595','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15686','32596','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15687','32597','component','redis');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15688','32598','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15689','32599','component','redis');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15690','32600','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15691','32601','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15692','32602','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15693','32603','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15694','32604','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15695','32605','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15696','32606','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15697','32607','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15698','32608','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15699','32608','http-code','4xx');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15700','32609','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15701','32610','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15702','32610','http-code','5xx');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15703','32611','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15704','32612','component','pipelines');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15705','32613','component','pipelines');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15706','32614','component','pipelines');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15707','32615','component','pipelines');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15708','32616','component','pipelines');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15709','32617','component','pipelines');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15710','32618','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15711','32621','component','puma');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15712','32622','component','puma');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15713','32623','component','puma');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15714','32624','component','puma');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15715','32625','component','puma');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15716','32626','component','puma');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15717','32627','component','puma');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15718','32628','component','puma');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15719','32629','component','puma');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15720','32630','component','puma');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15721','32631','component','unicorn');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15722','32632','component','unicorn');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15723','32633','component','unicorn');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15724','32634','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15725','32635','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15726','32636','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15727','32636','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15728','32637','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15729','32638','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15730','32639','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15731','32640','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15732','32640','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15733','32641','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15734','32642','component','namenode');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15735','32643','component','resourcemanager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15736','32644','component','namenode');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15737','32645','component','namenode');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15738','32646','component','namenode');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15739','32647','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15740','32648','component','resourcemanager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15741','32649','component','resourcemanager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15742','32650','component','resourcemanager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15743','32651','component','resourcemanager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15744','32652','component','resourcemanager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15745','32653','component','resourcemanager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15746','32654','component','namenode');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15747','32655','component','resourcemanager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15748','32656','component','namenode');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15749','32657','component','namenode');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15750','32658','component','namenode');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15751','32659','component','namenode');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15752','32660','component','namenode');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15753','32661','component','namenode');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15754','32662','component','namenode');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15755','32663','component','namenode');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15756','32664','component','namenode');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15757','32665','component','namenode');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15758','32666','component','namenode');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15759','32667','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15760','32670','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15761','32671','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15762','32672','component','datanode');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15763','32673','component','capacity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15764','32674','component','datanode');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15765','32675','component','capacity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15766','32676','component','datanode');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15767','32677','component','datanode');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15768','32678','component','datanode');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15769','32679','component','capacity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15770','32680','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15771','32681','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15772','32682','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15773','32683','component','nodemanager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15774','32684','component','nodemanager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15775','32685','component','nodemanager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15776','32686','component','nodemanager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15777','32687','component','nodemanager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15778','32688','component','nodemanager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15779','32689','component','nodemanager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15780','32690','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15781','32691','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15782','32692','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15783','30187','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15784','30187','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15785','30188','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15786','30188','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15787','30189','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15788','30190','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15789','30191','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15790','30192','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15791','35103','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15792','30196','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15793','30197','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15794','30198','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15795','30199','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15796','30200','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15797','30201','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15798','30202','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15799','30203','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15800','30204','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15801','30205','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15802','30206','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15803','30207','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15804','30208','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15805','30209','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15806','30210','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15807','30211','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15808','30212','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15809','30213','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15810','30214','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15811','30215','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15812','30216','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15813','30217','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15814','30218','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15815','30219','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15816','30219','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15817','30219','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15818','30220','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15819','30220','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15820','30220','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15821','30221','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15822','30221','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15823','30221','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15824','30222','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15825','30222','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15826','30222','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15827','30223','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15828','30223','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15829','30223','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15830','30224','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15831','30224','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15832','30224','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15833','30225','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15834','30225','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15835','30225','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15836','30226','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15837','30226','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15838','30226','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15839','30227','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15840','30227','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15841','30227','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15842','30228','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15843','30228','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15844','30228','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15845','30229','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15846','30229','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15847','30229','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15848','35104','component','servers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15849','35105','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15850','35106','component','balancer');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15851','35107','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15852','35108','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15853','35109','component','servers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15854','35110','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15855','35111','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15856','35112','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15857','35113','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15858','35114','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15859','35115','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15860','35116','component','role');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15861','35116','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15862','35116','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15863','35117','component','balancer');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15864','35117','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15865','35117','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15866','35118','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15867','35118','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15868','35118','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15869','35119','component','queues');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15870','35119','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15871','35119','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15872','35120','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15873','35120','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15874','35120','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15875','35121','component','role');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15876','35121','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15877','35121','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15878','35122','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15879','35122','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15880','35122','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15881','35123','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15882','35123','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15883','35123','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15884','35124','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15885','35124','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15886','35124','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15887','35125','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15888','35125','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15889','35125','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15890','35126','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15891','35126','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15892','35126','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15893','35127','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15894','35127','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15895','35127','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15896','30230','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15897','30231','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15898','30789','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15899','30789','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15900','30790','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15901','30790','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15902','30234','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15903','30235','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15904','35128','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15905','30239','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15906','30240','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15907','30241','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15908','30242','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15909','30243','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15910','30244','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15911','30245','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15912','30246','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15913','30247','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15914','30248','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15915','30249','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15916','30250','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15917','30251','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15918','30252','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15919','30253','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15920','30254','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15921','30255','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15922','30256','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15923','30257','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15924','30258','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15925','30259','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15926','30260','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15927','30261','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15928','30262','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15929','30262','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15930','30262','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15931','30263','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15932','30263','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15933','30263','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15934','30264','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15935','30264','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15936','30264','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15937','30265','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15938','30265','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15939','30265','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15940','30266','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15941','30266','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15942','30266','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15943','30267','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15944','30267','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15945','30267','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15946','30268','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15947','30268','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15948','30268','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15949','30269','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15950','30269','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15951','30269','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15952','30270','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15953','30270','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15954','30270','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15955','30271','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15956','30271','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15957','30271','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15958','30272','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15959','30272','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15960','30272','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15961','35129','component','servers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15962','35130','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15963','35131','component','balancer');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15964','35132','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15965','35133','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15966','35134','component','servers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15967','35135','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15968','35136','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15969','35137','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15970','35138','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15971','35139','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15972','35140','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15973','35141','component','role');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15974','35141','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15975','35141','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15976','35142','component','balancer');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15977','35142','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15978','35142','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15979','35143','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15980','35143','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15981','35143','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15982','35144','component','queues');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15983','35144','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15984','35144','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15985','35145','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15986','35145','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15987','35145','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15988','35146','component','role');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15989','35146','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15990','35146','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15991','35147','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15992','35147','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15993','35147','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15994','35148','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15995','35148','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15996','35148','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15997','35149','component','responses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15998','35149','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('15999','35149','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16000','35150','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16001','35150','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16002','35150','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16003','35151','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16004','35151','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16005','35151','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16006','35152','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16007','35152','server','{#PXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16008','35152','service','{#SVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16009','42675','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16010','23646','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16011','30968','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16012','30968','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16013','30969','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16014','30970','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16015','30971','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16016','30972','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16017','30973','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16018','30974','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16019','30975','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16020','30976','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16021','30977','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16022','30978','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16023','30979','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16024','30980','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16025','30981','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16026','30982','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16027','30983','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16028','30984','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16029','30984','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16030','30985','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16031','30986','component','errors');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16032','30987','component','users');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16033','30988','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16034','30989','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16035','30990','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16036','30991','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16037','30992','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16038','30993','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16039','30994','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16040','30995','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16041','30996','component','users');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16042','30997','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16043','30998','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16044','30999','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16045','31000','component','errors');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16046','31001','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16047','31002','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16048','31003','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16049','31004','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16050','31004','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16051','31006','application-pool','{#APPPOOL}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16052','31006','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16053','31007','application-pool','{#APPPOOL}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16054','31007','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16055','31008','application-pool','{#APPPOOL}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16056','31008','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16057','31009','application-pool','{#APPPOOL}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16058','31009','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16059','31010','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16060','31010','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16061','31011','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16062','31012','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16063','31013','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16064','31014','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16065','31015','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16066','31016','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16067','31017','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16068','31018','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16069','31019','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16070','31020','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16071','31021','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16072','31022','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16073','31023','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16074','31024','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16075','31025','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16076','31026','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16077','31026','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16078','31027','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16079','31028','component','errors');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16080','31029','component','users');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16081','31030','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16082','31031','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16083','31032','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16084','31033','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16085','31034','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16086','31035','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16087','31036','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16088','31037','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16089','31038','component','users');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16090','31039','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16091','31040','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16092','31041','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16093','31042','component','errors');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16094','31043','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16095','31044','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16096','31045','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16097','31046','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16098','31046','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16099','31048','application-pool','{#APPPOOL}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16100','31048','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16101','31049','application-pool','{#APPPOOL}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16102','31049','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16103','31050','application-pool','{#APPPOOL}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16104','31050','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16105','31051','application-pool','{#APPPOOL}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16106','31051','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16107','23647','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16108','33391','component','computers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16109','33391','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16110','33392','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16111','33393','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16112','33393','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16113','33394','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16114','33395','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16115','33396','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16116','33397','component','nodes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16117','33398','component','nodes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16118','33399','component','nodes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16119','33400','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16120','33401','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16121','33402','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16122','33403','component','plugins');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16123','33404','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16124','33405','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16125','33406','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16126','33407','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16127','33408','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16128','33409','component','plugins');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16129','33410','component','plugins');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16130','33411','component','plugins');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16131','33412','component','queue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16132','33413','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16133','33414','component','threads');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16134','33415','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16135','33416','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16136','33417','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16137','33418','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16138','33419','component','queue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16139','33420','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16140','33421','component','queue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16141','33422','component','queue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16142','33423','component','queue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16143','33424','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16144','33425','component','plugins');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16145','33426','component','plugins');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16146','33427','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16147','33428','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16148','33429','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16149','33430','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16150','33430','http-code','201');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16151','33431','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16152','33431','http-code','other');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16153','33432','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16154','33432','http-code','200');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16155','33433','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16156','33433','http-code','204');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16157','33434','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16158','33434','http-code','304');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16159','33435','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16160','33435','http-code','404');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16161','33436','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16162','33436','http-code','403');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16163','33437','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16164','33437','http-code','400');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16165','33438','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16166','33439','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16167','33440','component','executors');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16168','33441','component','executors');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16169','33442','component','executors');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16170','33443','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16171','33444','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16172','33445','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16173','33446','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16174','33447','component','fds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16175','33448','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16176','33449','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16177','33450','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16178','33451','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16179','33452','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16180','33453','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16181','33454','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16182','33455','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16183','33456','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16184','33456','http-code','500');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16185','33457','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16186','33458','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16187','33459','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16188','33460','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16189','33461','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16190','33462','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16191','33463','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16192','33463','http-code','503');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16193','33464','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16194','33467','component','computers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16195','33467','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16196','33467','computer','{#DISPLAY_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16197','33468','component','computers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16198','33468','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16199','33468','computer','{#DISPLAY_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16200','33469','component','computers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16201','33469','computer','{#DISPLAY_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16202','33470','component','computers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16203','33470','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16204','33470','computer','{#DISPLAY_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16205','33471','component','computers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16206','33471','computer','{#DISPLAY_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16207','33472','component','computers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16208','33472','computer','{#DISPLAY_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16209','33473','component','computers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16210','33473','computer','{#DISPLAY_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16211','33474','component','computers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16212','33474','computer','{#DISPLAY_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16213','33475','component','computers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16214','33475','computer','{#DISPLAY_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16215','33476','component','computers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16216','33476','computer','{#DISPLAY_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16217','33477','component','computers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16218','33477','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16219','33477','computer','{#DISPLAY_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16220','33478','component','computers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16221','33478','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16222','33478','computer','{#DISPLAY_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16223','33479','component','computers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16224','33479','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16225','33479','computer','{#DISPLAY_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16226','33480','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16227','33480','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16228','33480','job','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16229','33481','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16230','33481','job','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16231','33482','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16232','33482','job','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16233','33483','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16234','33483','job','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16235','33484','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16236','33484','job','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16237','33485','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16238','33485','job','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16239','33486','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16240','33486','job','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16241','33487','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16242','33487','job','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16243','33488','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16244','33488','job','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16245','33489','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16246','33489','job','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16247','33490','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16248','33490','job','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16249','32693','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16250','32694','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16251','32695','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16252','32696','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16253','32697','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16254','32698','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16255','32699','component','broker');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16256','32700','component','broker');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16257','32701','component','broker');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16258','32702','component','broker');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16259','32703','component','broker');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16260','32704','component','broker');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16261','32705','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16262','32706','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16263','32707','component','replica');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16264','32708','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16265','32709','component','replica');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16266','32710','component','replica');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16267','32711','component','replica');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16268','32712','component','replica');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16269','32713','component','replica');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16270','32714','component','replica');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16271','32715','component','replica');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16272','32716','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16273','32717','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16274','32717','component','zookeeper');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16275','32718','component','zookeeper');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16276','32719','component','zookeeper');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16277','32720','component','zookeeper');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16278','32721','component','zookeeper');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16279','32722','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16280','32723','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16281','32724','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16282','32725','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16283','32726','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16284','32727','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16285','32728','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16286','32729','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16287','32730','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16288','32731','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16289','32732','component','logmanager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16290','32733','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16291','32734','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16292','32735','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16293','32736','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16294','32737','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16295','32738','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16296','32739','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16297','32740','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16298','32741','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16299','32742','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16300','32742','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16301','32743','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16302','32743','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16303','32744','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16304','32744','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16305','32745','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16306','32745','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16307','32746','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16308','32746','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16309','32747','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16310','32748','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16311','32749','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16312','32750','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16313','32751','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16314','32752','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16315','32753','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16316','32754','component','zookeeper');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16317','32758','component','broker');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16318','32758','component','topic');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16319','32758','topic','{#JMXTOPIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16320','32759','component','broker');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16321','32759','component','topic');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16322','32759','topic','{#JMXTOPIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16323','32760','component','broker');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16324','32760','component','topic');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16325','32760','topic','{#JMXTOPIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16326','32761','component','broker');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16327','32761','component','topic');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16328','32761','topic','{#JMXTOPIC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16329','39831','http-code','4xx');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16330','39832','http-code','3xx');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16331','39833','http-code','2xx');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16332','39846','http-code','5xx');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16333','39847','http-code','4xx');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16334','39848','http-code','3xx');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16335','39849','http-code','2xx');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16336','39850','http-code','5xx');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16337','39877','http-code','2xx');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16338','39878','http-code','3xx');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16339','39879','http-code','4xx');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16340','39880','http-code','5xx');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16341','39986','http-code','5xx');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16342','39988','http-code','4xx');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16343','39990','http-code','3xx');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16344','39998','http-code','2xx');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16345','23648','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16346','30611','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16347','30612','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16348','30613','component','commands');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16349','30614','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16350','30615','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16351','30616','component','keyspace');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16352','30617','component','threads');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16353','30618','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16354','30619','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16355','30620','component','keyspace');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16356','30621','component','keyspace');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16357','30622','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16358','30623','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16359','30624','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16360','30625','component','commands');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16361','30626','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16362','30627','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16363','30628','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16364','30629','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16365','30630','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16366','30631','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16367','30632','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16368','30633','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16369','30634','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16370','30635','component','commands');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16371','30636','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16372','28804','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16373','28804','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16374','28805','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16375','28805','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16376','28806','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16377','28807','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16378','28808','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16379','28809','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16380','28810','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16381','28810','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16382','28811','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16383','28812','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16384','28813','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16385','28814','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16386','28815','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16387','28816','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16388','28817','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16389','28818','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16390','28819','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16391','28820','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16392','28821','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16393','28821','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16394','28822','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16395','28822','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16396','28823','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16397','28823','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16398','28824','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16399','28825','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16400','28826','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16401','28827','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16402','28828','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16403','28829','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16404','28830','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16405','28831','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16406','28832','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16407','28833','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16408','35153','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16409','35153','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16410','35154','component','info');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16411','35154','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16412','35155','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16413','35155','component','server_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16414','35156','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16415','35156','component','ssl');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16416','35157','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16417','35157','component','resolvers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16418','35158','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16419','35158','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16420','35159','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16421','35159','component','upstreams');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16422','35160','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16423','35160','component','upstreams');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16424','35161','component','location_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16425','35161','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16426','35162','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16427','35162','component','server_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16428','35163','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16429','35164','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16430','35165','component','ssl');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16431','35166','component','ssl');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16432','35167','component','ssl');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16433','35168','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16434','35169','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16435','35170','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16436','35171','component','info');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16437','35172','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16438','35173','component','info');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16439','35174','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16440','35174','component','info');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16441','35175','component','info');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16442','35176','component','info');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16443','35185','component','location_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16444','35185','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16445','35186','component','location_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16446','35186','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16447','35187','component','location_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16448','35187','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16449','35188','component','location_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16450','35188','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16451','35189','component','location_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16452','35189','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16453','35190','component','location_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16454','35190','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16455','35191','component','location_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16456','35191','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16457','35192','component','location_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16458','35192','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16459','35193','component','location_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16460','35193','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16461','35194','component','location_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16462','35194','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16463','35195','component','server_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16464','35195','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16465','35196','component','server_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16466','35196','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16467','35197','component','server_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16468','35197','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16469','35198','component','server_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16470','35198','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16471','35199','component','server_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16472','35199','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16473','35200','component','server_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16474','35200','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16475','35201','component','server_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16476','35201','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16477','35202','component','server_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16478','35202','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16479','35203','component','server_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16480','35203','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16481','35204','component','server_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16482','35204','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16483','35205','component','server_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16484','35205','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16485','35206','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16486','35206','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16487','35206','upstream','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16488','35207','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16489','35207','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16490','35207','upstream','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16491','35208','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16492','35208','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16493','35208','upstream','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16494','35209','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16495','35209','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16496','35209','upstream','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16497','35210','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16498','35210','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16499','35210','upstream','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16500','35211','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16501','35211','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16502','35211','upstream','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16503','35212','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16504','35212','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16505','35212','upstream','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16506','35213','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16507','35213','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16508','35213','upstream','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16509','35214','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16510','35214','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16511','35214','upstream','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16512','35215','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16513','35215','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16514','35215','upstream','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16515','35216','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16516','35216','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16517','35216','upstream','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16518','35217','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16519','35217','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16520','35217','upstream','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16521','35218','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16522','35218','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16523','35218','upstream','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16524','35219','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16525','35219','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16526','35219','upstream','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16527','35220','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16528','35220','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16529','35220','upstream','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16530','35221','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16531','35221','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16532','35221','upstream','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16533','35222','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16534','35222','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16535','35222','upstream','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16536','35223','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16537','35223','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16538','35223','upstream','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16539','35224','component','upstreams');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16540','35224','upstream','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16541','35225','component','upstreams');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16542','35225','upstream','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16543','35226','component','upstreams');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16544','35226','upstream','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16545','35227','component','resolver');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16546','35227','resolver','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16547','35228','component','resolver');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16548','35228','resolver','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16549','35229','component','resolver');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16550','35229','resolver','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16551','35230','component','resolver');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16552','35230','resolver','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16553','35231','component','resolver');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16554','35231','resolver','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16555','35232','component','resolver');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16556','35232','resolver','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16557','35233','component','resolver');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16558','35233','resolver','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16559','35234','component','resolver');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16560','35234','resolver','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16561','35235','component','resolver');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16562','35235','resolver','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16563','35236','component','resolver');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16564','35236','resolver','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16565','35237','component','resolver');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16566','35237','resolver','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16567','35238','component','server_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16568','35238','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16569','35239','component','server_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16570','35239','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16571','35240','component','server_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16572','35240','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16573','35241','component','server_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16574','35241','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16575','35242','component','server_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16576','35242','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16577','35243','component','server_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16578','35243','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16579','35244','component','server_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16580','35244','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16581','35245','component','server_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16582','35245','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16583','35246','component','server_zones');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16584','35246','zone','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16585','35247','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16586','35247','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16587','35247','upstream','{#UPSTREAM}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16588','35248','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16589','35248','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16590','35248','upstream','{#UPSTREAM}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16591','35249','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16592','35249','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16593','35249','upstream','{#UPSTREAM}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16594','35250','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16595','35250','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16596','35250','upstream','{#UPSTREAM}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16597','35251','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16598','35251','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16599','35251','upstream','{#UPSTREAM}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16600','35252','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16601','35252','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16602','35252','upstream','{#UPSTREAM}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16603','35253','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16604','35253','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16605','35253','upstream','{#UPSTREAM}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16606','35254','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16607','35254','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16608','35254','upstream','{#UPSTREAM}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16609','35255','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16610','35255','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16611','35255','upstream','{#UPSTREAM}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16612','35256','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16613','35256','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16614','35256','upstream','{#UPSTREAM}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16615','35257','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16616','35257','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16617','35257','upstream','{#UPSTREAM}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16618','35258','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16619','35258','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16620','35258','upstream','{#UPSTREAM}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16621','35259','component','upstream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16622','35259','peer','{#PEER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16623','35259','upstream','{#UPSTREAM}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16624','35260','component','upstreams');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16625','35260','upstream','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16626','35261','component','upstreams');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16627','35261','upstream','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16628','23649','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16629','23650','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16657','40117','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16660','40119','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16661','40120','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16662','40121','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16663','40122','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16664','40123','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16665','40124','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16666','40125','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16667','40126','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16669','40128','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16670','40128','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16671','40129','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16672','40130','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16673','40131','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16674','40132','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16675','40133','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16676','40134','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16677','40135','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16678','40136','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16679','40136','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16686','40147','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16687','40147','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16688','40147','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16689','40147','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16690','40148','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16691','40148','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16692','40148','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16693','40148','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16694','40149','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16695','40149','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16696','40149','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16697','40150','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16698','40150','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16699','40150','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16700','40151','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16701','40151','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16702','40151','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16703','40151','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16704','40152','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16705','40152','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16706','40152','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16707','40153','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16708','40153','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16709','40153','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16710','40153','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16711','40154','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16712','40154','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16713','40154','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16714','40154','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16715','40155','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16716','40155','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16717','40155','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16718','40155','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16719','40156','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16720','40156','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16721','40156','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16722','40156','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16723','40157','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16724','40157','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16725','40157','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16726','40158','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16727','40158','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16728','40158','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16729','40159','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16730','40159','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16731','40159','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16732','40159','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16733','40160','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16734','40160','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16735','40160','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16736','40160','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16737','40161','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16738','40161','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16739','40161','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16740','40161','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16741','40162','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16742','40162','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16743','40162','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16744','40162','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16745','40163','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16746','40163','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16747','40163','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16748','40164','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16749','40164','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16750','40164','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16751','40164','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16752','40165','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16753','40165','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16754','40165','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16755','40165','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16756','40166','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16757','40166','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16758','40166','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16759','40166','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16760','40167','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16761','40167','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16762','40167','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16763','40167','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16764','40168','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16765','40168','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16766','40168','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16767','40169','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16768','40169','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16769','40169','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16770','40170','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16771','40170','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16772','40170','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16773','40170','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16774','40171','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16775','40171','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16776','40171','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16777','40171','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16778','40172','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16779','40172','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16780','40172','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16792','31570','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16793','31571','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16794','31572','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16795','31573','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16796','31574','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16797','31575','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16798','31576','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16799','31577','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16800','31578','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16801','31579','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16802','31580','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16803','31581','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16804','31582','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16805','31583','component','listen-queue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16806','31584','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16807','31585','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16808','31586','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16809','31587','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16810','31588','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16811','31589','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16812','31590','component','listen-queue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16813','31591','component','listen-queue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16814','31592','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16815','31593','component','listen-queue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16816','31594','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16817','31595','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16818','31596','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16819','31597','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16820','31598','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16821','31599','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16822','31600','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16823','31601','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16824','31602','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16825','31603','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16826','31604','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16827','31605','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16828','31606','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16829','31607','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16830','31608','component','listen-queue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16831','31609','component','listen-queue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16832','31610','component','listen-queue');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16833','31611','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16834','23651','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16835','29653','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16836','29654','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16837','29655','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16838','29655','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16839','29656','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16840','29657','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16841','29658','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16842','29659','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16843','29660','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16844','29661','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16845','29998','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16846','29999','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16847','29687','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16848','29688','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16849','29691','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16850','29692','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16851','29693','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16852','29694','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16853','29695','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16854','29696','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16855','29697','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16856','29698','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16857','29699','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16858','29700','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16859','29701','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16860','30000','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16861','30001','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16862','30002','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16863','30003','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16864','30004','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16865','30005','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16866','30006','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16867','30007','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16868','30008','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16869','30009','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16870','30010','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16871','30011','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16872','30012','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16873','30013','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16874','30014','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16875','30015','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16876','30016','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16877','30017','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16878','30018','component','exchanges');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16879','30019','component','consumers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16880','30020','component','queues');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16881','30021','component','channels');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16882','30022','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16883','30023','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16884','30024','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16885','30025','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16886','33747','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16887','33747','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16888','33748','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16889','33748','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16890','33749','component','certificate');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16891','33749','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16892','33750','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16893','33750','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16894','33751','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16895','33751','component','queues');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16896','33752','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16897','33752','component','queues');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16898','33753','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16899','33753','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16900','29720','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16901','29720','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16902','29720','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16903','29721','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16904','29721','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16905','29721','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16906','29722','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16907','29722','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16908','29722','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16909','29723','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16910','29723','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16911','29723','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16912','29724','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16913','29724','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16914','29724','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16915','29725','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16916','29725','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16917','29725','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16918','29726','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16919','29726','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16920','29726','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16921','29727','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16922','29727','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16923','29727','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16924','29728','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16925','29728','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16926','29728','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16927','29729','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16928','29729','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16929','29729','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16930','29730','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16931','29730','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16932','29730','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16933','29731','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16934','29731','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16935','29731','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16936','29732','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16937','29732','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16938','29732','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16939','29733','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16940','29733','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16941','29733','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16942','29734','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16943','29734','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16944','29734','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16945','29735','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16946','29735','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16947','29735','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16948','29736','component','consumers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16949','29736','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16950','29736','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16951','29737','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16952','29737','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16953','29737','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16954','30027','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16955','30027','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16956','30027','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16957','30027','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16958','30028','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16959','30028','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16960','30028','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16961','30028','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16962','30029','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16963','30029','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16964','30029','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16965','30029','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16966','30030','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16967','30030','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16968','30030','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16969','30030','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16970','30031','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16971','30031','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16972','30031','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16973','30031','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16974','30032','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16975','30032','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16976','30032','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16977','30032','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16978','30033','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16979','30033','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16980','30033','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16981','30033','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16982','30034','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16983','30034','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16984','30034','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16985','30034','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16986','30035','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16987','30035','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16988','30035','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16989','30035','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16990','30036','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16991','30036','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16992','30036','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16993','30036','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16994','30037','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16995','30037','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16996','30037','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16997','30037','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16998','30038','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('16999','30038','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17000','30038','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17001','30038','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17002','30039','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17003','30039','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17004','30039','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17005','30039','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17006','30040','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17007','30040','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17008','30040','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17009','30040','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17010','30041','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17011','30041','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17012','30041','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17013','30041','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17014','30042','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17015','30042','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17016','30042','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17017','30042','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17018','29738','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17019','29739','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17020','29741','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17021','29742','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17022','29742','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17023','29743','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17024','29745','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17025','30043','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17026','29746','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17027','29747','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17028','29748','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17029','29749','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17030','29750','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17031','29751','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17032','29752','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17033','29753','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17034','29754','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17035','29755','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17036','29756','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17037','29757','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17038','29758','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17039','29759','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17040','29760','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17041','29761','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17042','29762','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17043','29763','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17044','29764','component','exchanges');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17045','29765','component','consumers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17046','29766','component','queues');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17047','29767','component','channels');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17048','29768','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17049','29769','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17050','29771','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17051','29772','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17052','29773','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17053','29774','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17054','29775','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17055','29776','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17056','29777','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17057','29779','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17058','29780','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17059','29781','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17060','29782','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17061','29783','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17062','29784','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17063','30044','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17064','30045','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17065','33757','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17066','33757','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17067','33758','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17068','33758','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17069','33759','component','certificate');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17070','33759','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17071','33760','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17072','33760','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17073','33761','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17074','33761','component','queues');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17075','33762','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17076','33762','component','queues');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17077','33763','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17078','33763','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17079','29787','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17080','29787','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17081','29787','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17082','29787','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17083','29788','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17084','29788','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17085','29788','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17086','29788','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17087','29789','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17088','29789','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17089','29789','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17090','29789','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17091','29790','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17092','29790','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17093','29790','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17094','29790','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17095','29791','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17096','29791','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17097','29791','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17098','29791','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17099','29792','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17100','29792','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17101','29792','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17102','29792','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17103','29793','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17104','29793','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17105','29793','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17106','29793','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17107','29794','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17108','29794','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17109','29794','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17110','29794','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17111','29795','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17112','29795','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17113','29795','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17114','29795','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17115','29796','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17116','29796','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17117','29796','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17118','29796','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17119','29797','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17120','29797','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17121','29797','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17122','29797','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17123','29798','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17124','29798','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17125','29798','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17126','29798','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17127','29799','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17128','29799','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17129','29799','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17130','29799','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17131','29800','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17132','29800','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17133','29800','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17134','29800','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17135','29801','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17136','29801','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17137','29801','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17138','29801','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17139','29802','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17140','29802','exchange','{#EXCHANGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17141','29802','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17142','29802','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17143','29803','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17144','29803','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17145','29803','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17146','29804','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17147','29804','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17148','29804','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17149','29805','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17150','29805','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17151','29805','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17152','29806','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17153','29806','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17154','29806','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17155','29807','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17156','29807','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17157','29807','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17158','29808','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17159','29808','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17160','29808','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17161','29809','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17162','29809','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17163','29809','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17164','29810','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17165','29810','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17166','29810','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17167','29811','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17168','29811','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17169','29811','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17170','29812','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17171','29812','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17172','29812','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17173','29813','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17174','29813','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17175','29813','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17176','29814','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17177','29814','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17178','29814','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17179','29815','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17180','29815','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17181','29815','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17182','29816','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17183','29816','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17184','29816','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17185','29817','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17186','29817','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17187','29817','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17188','29818','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17189','29818','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17190','29818','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17191','29819','component','consumers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17192','29819','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17193','29819','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17194','29820','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17195','29820','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17196','29820','vhost','{#VHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17197','33630','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17198','33631','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17199','33632','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17200','33632','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17201','33633','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17202','33635','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17203','33635','full-path','{#SHAREPOINT.LLD.FULL_PATH}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17204','33636','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17205','33636','full-path','{#SHAREPOINT.LLD.FULL_PATH}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17206','33637','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17207','33637','full-path','{#SHAREPOINT.LLD.FULL_PATH}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17208','23652','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17209','32239','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17210','32239','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17211','32240','component','objects');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17212','32241','component','icp');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17213','32241','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17214','32242','component','icp');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17215','32242','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17216','32243','component','icp');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17217','32243','component','replies');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17218','32244','component','icp');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17219','32244','component','replies');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17220','32245','component','hits');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17221','32245','component','ip');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17222','32246','component','ip');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17223','32246','component','misses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17224','32247','component','ip');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17225','32247','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17226','32248','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17227','32249','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17228','32250','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17229','32251','component','http');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17230','32251','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17231','32252','component','icp');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17232','32253','component','hits');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17233','32254','component','hits');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17234','32255','component','hits');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17235','32256','component','hits');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17236','32256','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17237','32257','component','hits');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17238','32257','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17239','32258','component','hits');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17240','32258','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17241','32259','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17242','32259','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17243','32260','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17244','32260','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17245','32261','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17246','32261','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17247','32262','component','faults');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17248','32263','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17249','32264','component','icp');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17250','32265','component','icp');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17251','32265','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17252','32266','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17253','32267','component','dns');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17254','32267','component','hits');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17255','32268','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17256','32269','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17257','32270','component','objects');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17258','32271','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17259','32272','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17260','32272','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17261','32273','component','objects');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17262','32274','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17263','32275','component','dns');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17264','32275','component','replies');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17265','32276','component','dns');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17266','32276','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17267','32277','component','dns');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17268','32278','component','dns');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17269','32279','component','dns');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17270','32279','component','misses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17271','32280','component','icp');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17272','32280','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17273','32281','component','dns');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17274','32281','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17275','32282','component','http');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17276','32283','component','http');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17277','32284','component','errors');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17278','32284','component','http');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17279','32285','component','hits');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17280','32285','component','http');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17281','32286','component','hits');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17282','32286','component','http');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17283','32287','component','hits');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17284','32287','component','http');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17285','32288','component','http');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17286','32288','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17287','32289','component','http');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17288','32289','component','misses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17289','32290','component','http');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17290','32290','component','misses');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17291','32291','component','http');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17292','32291','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17293','32292','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17294','23653','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17295','35264','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17296','35264','component','unit');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17297','35265','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17298','35265','component','socket');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17299','35266','component','service');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17300','35267','component','service');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17301','35268','component','service');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17302','35269','component','service');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17303','35270','component','socket');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17304','35271','component','socket');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17305','23654','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17306','28511','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17307','32766','component','protocol-handler');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17308','32766','protocol-handler','{#JMXVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17309','32767','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17310','32767','jmx-name','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17311','32767','jmx-type','{#JMXTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17312','32768','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17313','32768','jmx-name','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17314','32768','jmx-type','{#JMXTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17315','32769','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17316','32769','jmx-name','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17317','32769','jmx-type','{#JMXTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17318','32770','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17319','32770','jmx-name','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17320','32770','jmx-type','{#JMXTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17321','32771','component','request');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17322','32771','jmx-name','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17323','32771','jmx-type','{#JMXTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17324','32772','component','context');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17325','32772','jmx-context','{#JMXCONTEXT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17326','32772','jmx-host','{#JMXHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17327','32773','component','context');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17328','32773','jmx-context','{#JMXCONTEXT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17329','32773','jmx-host','{#JMXHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17330','32774','component','context');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17331','32774','jmx-context','{#JMXCONTEXT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17332','32774','jmx-host','{#JMXHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17333','32775','component','context');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17334','32775','jmx-context','{#JMXCONTEXT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17335','32775','jmx-host','{#JMXHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17336','32776','component','context');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17337','32776','jmx-context','{#JMXCONTEXT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17338','32776','jmx-host','{#JMXHOST}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17339','32777','component','thread-pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17340','32777','jmx-name','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17341','32777','jmx-type','{#JMXTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17342','32778','component','thread-pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17343','32778','jmx-name','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17344','32778','jmx-type','{#JMXTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17345','32779','component','thread-pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17346','32779','jmx-name','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17347','32779','jmx-type','{#JMXTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17348','36772','component','builds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17349','36772','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17350','36773','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17351','36774','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17352','36774','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17353','36775','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17354','36775','component','repos');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17355','36776','component','builds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17356','36777','component','builds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17357','36778','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17358','36779','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17359','36780','component','jobs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17360','36782','component','builds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17361','36782','repo','{#SLUG}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17362','36783','component','builds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17363','36783','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17364','36783','repo','{#SLUG}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17365','36784','component','caches');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17366','36784','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17367','36784','repo','{#SLUG}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17368','36785','component','builds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17369','36785','repo','{#SLUG}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17370','36786','component','builds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17371','36786','repo','{#SLUG}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17372','36787','component','builds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17373','36787','repo','{#SLUG}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17374','36788','component','caches');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17375','36788','repo','{#SLUG}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17376','36789','component','caches');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17377','36789','repo','{#SLUG}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17378','36790','component','repo');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17379','36790','repo','{#SLUG}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17380','36791','component','last_build');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17381','36791','repo','{#SLUG}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17382','36792','component','last_build');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17383','36792','repo','{#SLUG}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17384','36793','component','last_build');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17385','36793','repo','{#SLUG}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17386','36794','component','last_build');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17387','36794','repo','{#SLUG}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17388','32780','component','leader');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17389','32780','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17390','32781','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17391','32781','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17392','32782','component','metrics');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17393','32782','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17394','32783','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17395','32783','component','tokens');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17396','32784','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17397','32785','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17398','32786','component','leader');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17399','32787','component','leader');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17400','32788','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17401','32789','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17402','32790','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17403','32791','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17404','32792','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17405','32793','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17406','32794','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17407','32794','component','metrics');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17408','32795','component','metrics');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17409','32795','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17410','32796','component','process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17411','32797','component','runtime');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17412','32798','component','runtime');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17413','32799','component','runtime');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17414','32800','component','process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17415','32801','component','process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17416','32802','component','process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17417','32803','component','discovery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17418','32803','component','mountpoint');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17419','32804','component','process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17420','32805','component','process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17421','32806','component','process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17422','32807','component','policy');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17423','32808','component','runtime');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17424','32809','component','policy');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17425','32810','component','policy');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17426','32811','component','runtime');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17427','32812','component','token');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17428','32813','component','runtime');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17429','32814','component','token');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17430','32815','component','runtime');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17431','32816','component','token');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17432','32817','component','token');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17433','32818','component','token');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17434','32819','component','token');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17435','32820','component','token');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17436','32821','component','expire');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17437','32822','component','runtime');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17438','32823','component','token');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17439','32824','component','token');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17440','32825','component','token');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17441','32826','component','token');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17442','32827','component','secret');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17443','32828','component','secret');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17444','32829','component','policy');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17445','32830','component','expire');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17446','32831','component','expire');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17447','32832','component','barrier');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17448','32833','component','core');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17449','32834','component','core');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17450','32835','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17451','32836','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17452','32837','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17453','32838','component','barrier');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17454','32839','component','barrier');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17455','32840','component','core');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17456','32841','component','audit_log');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17457','32842','component','audit_log');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17458','32843','component','audit_log');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17459','32844','component','audit_log');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17460','32845','component','discovery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17461','32845','component','wal');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17462','32846','component','discovery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17463','32846','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17464','32847','component','core');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17465','32848','component','core');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17466','32849','component','expire');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17467','32850','component','discovery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17468','32850','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17469','32851','component','expire');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17470','32852','component','expire');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17471','32853','component','expire');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17472','32854','component','expire');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17473','32855','component','expire');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17474','32856','component','expire');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17475','32857','component','expire');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17476','32858','component','core');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17477','32859','component','core');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17478','32860','component','core');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17479','32861','component','core');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17480','32862','component','core');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17481','32863','component','core');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17482','32864','component','core');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17483','32865','component','barrier');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17484','32871','component','token');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17485','32871','token','{#TOKEN_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17486','32872','component','token');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17487','32872','token','{#TOKEN_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17488','32873','component','token');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17489','32873','token','{#TOKEN_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17490','32874','component','mountpoint');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17491','32874','mountpoint','{#MOUNTPOINT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17492','32875','component','mountpoint');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17493','32875','mountpoint','{#MOUNTPOINT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17494','32876','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17495','32877','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17496','32878','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17497','32879','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17498','32880','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17499','32881','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17500','32882','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17501','32883','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17502','32883','operation','{#OPERATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17503','32883','storage','{#STORAGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17504','32884','component','wal');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17505','32885','component','wal');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17506','32886','component','wal');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17507','32887','component','wal');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17508','32888','component','wal');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17509','32889','component','wal');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17510','31612','component','log');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17511','31613','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17512','31614','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17513','32890','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17514','32891','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17515','32892','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17516','32893','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17517','32894','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17518','32895','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17519','32896','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17520','32897','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17521','32898','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17522','32899','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17523','32900','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17524','32901','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17525','32902','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17526','32903','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17527','32904','component','hypervisor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17528','32905','component','datacenter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17529','32906','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17530','32907','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17531','32908','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17532','32909','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17533','32909','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17534','32910','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17535','32911','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17536','32912','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17537','32913','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17539','32915','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17540','32916','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17541','32917','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17542','32918','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17543','32919','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17544','32920','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17545','32921','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17546','32922','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17547','32923','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17548','32924','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17549','32925','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17550','32926','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17551','32927','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17552','32928','component','datacenter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17553','32929','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17554','32930','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17555','33638','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17556','33639','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17557','33640','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17558','33641','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17559','33642','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17560','33643','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17561','33644','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17562','33645','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17563','33646','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17564','33647','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17565','33648','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17566','33649','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17567','31663','cluster','{#CLUSTER.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17568','31663','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17569','31664','component','datastore');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17570','31664','datastore','{#DATASTORE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17571','31665','component','datastore');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17572','31665','datastore','{#DATASTORE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17573','31666','component','datastore');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17574','31666','datastore','{#DATASTORE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17575','31667','component','datastore');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17576','31667','datastore','{#DATASTORE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17577','32935','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17578','32935','interface','{#IFDESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17579','32936','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17580','32936','interface','{#IFDESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17581','32937','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17582','32937','interface','{#IFDESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17583','32938','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17584','32938','interface','{#IFDESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17585','32939','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17586','32939','disk','{#DISKDESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17587','32940','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17588','32940','disk','{#DISKDESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17589','32941','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17590','32941','disk','{#DISKDESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17591','32942','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17592','32942','disk','{#DISKDESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17593','32943','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17594','32943','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17595','32944','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17596','32944','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17597','32945','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17598','32945','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17599','32946','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17600','32946','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17601','32947','component','datastore');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17602','32947','datastore','{#DATASTORE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17603','32948','component','datastore');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17604','32948','datastore','{#DATASTORE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17605','32949','component','datastore');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17606','32949','datastore','{#DATASTORE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17607','32950','component','datastore');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17608','32950','datastore','{#DATASTORE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17609','33650','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17610','33650','interface','{#IFDESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17611','33651','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17612','33651','disk','{#DISKDESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17613','33652','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17614','33652','disk','{#DISKDESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17615','33653','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17616','33653','disk','{#DISKDESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17617','33654','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17618','33654','disk','{#DISKDESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17619','33655','component','datastore');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17620','33655','datastore','{#DATASTORE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17621','32951','component','log');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17622','32952','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17623','32953','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17624','32958','cluster','{#CLUSTER.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17625','32958','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17626','32959','component','datastore');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17627','32959','datastore','{#DATASTORE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17628','32960','component','datastore');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17629','32960','datastore','{#DATASTORE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17630','32961','component','datastore');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17631','32961','datastore','{#DATASTORE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17632','32962','component','datastore');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17633','32962','datastore','{#DATASTORE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17634','34937','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17635','34938','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17636','34939','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17637','34940','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17638','34941','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17639','34944','component','deployments');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17640','34944','deployment','{#DEPLOYMENT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17641','34944','server-group','{#SERVER_GROUP}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17642','34945','component','deployments');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17643','34945','deployment','{#DEPLOYMENT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17644','34945','server-group','{#SERVER_GROUP}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17645','34946','component','servers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17646','34946','server','{#SERVER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17647','34947','component','servers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17648','34947','server','{#SERVER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17649','34948','component','servers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17650','34948','server','{#SERVER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17651','34949','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17652','34950','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17653','34951','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17654','34952','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17655','34953','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17656','34954','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17657','34955','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17658','34956','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17659','34957','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17660','34958','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17661','34959','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17662','34960','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17663','34961','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17664','34962','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17665','34963','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17666','34964','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17667','34965','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17668','34970','component','deployments');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17669','34970','deployment','{#DEPLOYMENT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17670','34971','component','deployments');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17671','34971','deployment','{#DEPLOYMENT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17672','34972','component','deployments');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17673','34972','deployment','{#DEPLOYMENT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17674','34973','component','deployments');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17675','34973','deployment','{#DEPLOYMENT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17676','34974','component','deployments');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17677','34974','deployment','{#DEPLOYMENT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17678','34975','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17679','34975','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17680','34975','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17681','34976','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17682','34976','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17683','34976','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17684','34977','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17685','34977','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17686','34977','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17687','34978','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17688','34978','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17689','34978','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17690','34979','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17691','34979','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17692','34979','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17693','34980','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17694','34980','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17695','34980','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17696','34981','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17697','34981','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17698','34982','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17699','34982','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17700','34982','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17701','34983','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17702','34983','component','xa');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17703','34983','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17704','34984','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17705','34984','component','xa');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17706','34984','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17707','34985','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17708','34985','component','xa');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17709','34985','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17710','34986','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17711','34986','component','xa');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17712','34986','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17713','34987','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17714','34987','component','xa');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17715','34987','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17716','34988','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17717','34988','component','xa');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17718','34988','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17719','34989','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17720','34989','component','xa');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17721','34989','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17722','34990','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17723','34990','component','xa');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17724','34990','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17725','34991','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17726','34991','component','xa');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17727','34991','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17728','34992','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17729','34992','component','xa');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17730','34992','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17731','34993','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17732','34993','component','xa');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17733','34993','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17734','34994','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17735','34994','component','xa');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17736','34994','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17737','34995','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17738','34995','component','xa');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17739','34995','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17740','34996','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17741','34996','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17742','34996','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17743','34997','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17744','34997','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17745','34997','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17746','34998','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17747','34998','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17748','34998','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17749','34999','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17750','34999','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17751','35000','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17752','35000','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17753','35000','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17754','35001','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17755','35001','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17756','35001','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17757','35002','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17758','35002','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17759','35002','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17760','35003','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17761','35003','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17762','35003','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17763','35004','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17764','35004','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17765','35004','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17766','35005','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17767','35005','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17768','35005','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17769','35006','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17770','35006','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17771','35006','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17772','35007','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17773','35007','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17774','35007','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17775','35008','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17776','35008','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17777','35008','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17778','35009','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17779','35009','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17780','35009','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17781','35010','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17782','35010','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17783','35011','component','datasources');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17784','35011','component','xa');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17785','35011','datasource','{#JMX_DATA_SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17786','35012','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17787','35012','component','undertow');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17788','35012','http_listener','{#HTTP_LISTENER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17789','35012','server','{#SERVER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17790','35013','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17791','35013','component','undertow');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17792','35013','http_listener','{#HTTP_LISTENER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17793','35013','server','{#SERVER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17794','35014','component','undertow');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17795','35014','http_listener','{#HTTP_LISTENER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17796','35014','server','{#SERVER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17797','35015','component','undertow');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17798','35015','http_listener','{#HTTP_LISTENER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17799','35015','server','{#SERVER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17800','10067','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17801','10068','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17802','10069','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17803','10070','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17804','10071','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17805','10072','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17806','23340','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17807','23341','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17808','23342','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17809','23343','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17810','23344','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17811','23345','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17812','23346','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17813','23347','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17814','23348','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17815','23349','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17816','23350','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17817','23351','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17818','23352','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17819','23353','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17820','23354','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17821','23355','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17822','23356','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17823','23357','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17824','23358','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17825','23359','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17826','23360','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17827','25368','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17828','25369','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17829','28250','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17830','28251','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17831','28617','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17832','28618','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17833','28619','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17834','33018','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17835','33019','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17836','39826','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17837','40181','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17838','40182','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17839','40183','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17840','40184','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17882','10061','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17883','10062','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17884','10063','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17885','10064','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17886','10065','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17887','10066','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17888','22183','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17889','22185','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17890','22187','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17891','22189','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17892','22191','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17893','22196','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17894','22199','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17895','22219','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17896','22396','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17897','22399','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17898','22400','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17899','22401','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17900','22402','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17901','22404','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17902','22406','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17903','22408','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17904','22412','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17905','22414','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17906','22416','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17907','22418','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17908','22420','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17909','22422','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17910','22424','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17911','22426','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17912','22430','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17913','22689','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17914','23171','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17915','23251','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17916','23634','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17917','23661','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17918','23663','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17919','25366','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17920','25370','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17921','25665','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17922','25666','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17923','28248','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17924','28533','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17925','28535','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17926','28537','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17927','29822','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17928','33020','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17929','33021','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17930','33022','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17931','33023','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17932','34316','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17933','34317','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17934','35272','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17935','35273','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17936','35274','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17937','39804','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17938','39822','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17939','10073','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17940','10074','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17941','10075','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17942','10076','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17943','10077','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17944','10078','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17945','23252','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17946','23253','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17947','23255','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17948','23256','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17949','23257','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17950','23258','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17951','23259','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17952','23260','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17953','23261','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17954','23262','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17955','23264','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17956','23265','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17957','23266','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17958','23267','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17959','23268','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17960','23269','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17961','23270','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17962','23271','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17963','23272','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17964','23273','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17965','23274','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17966','23275','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17967','23276','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17968','23277','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17969','23328','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17970','23620','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17971','23625','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17972','23628','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17973','23635','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17974','23662','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17975','23664','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17976','25367','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17977','25371','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17978','25667','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17979','25668','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17980','28249','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17981','28534','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17982','28536','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17983','28538','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17984','29823','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17985','33024','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17986','33025','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17987','33026','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17988','33027','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17989','34318','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17990','34319','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17991','35275','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17992','35276','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17993','35277','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17994','39805','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17995','39823','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17996','39808','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17997','39808','node-id','{#NODE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17998','39808','node-name','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('17999','39809','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18000','39809','node-id','{#NODE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18001','39809','node-name','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18002','39810','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18003','39810','node-id','{#NODE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18004','39810','node-name','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18005','39811','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18006','39811','node-id','{#NODE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18007','39811','node-name','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18008','39812','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18009','39812','node-id','{#NODE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18010','39812','node-name','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18011','39813','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18012','39813','node-id','{#NODE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18013','39813','node-name','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18014','39814','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18015','39814','node-id','{#NODE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18016','39814','node-name','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18017','39815','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18018','39815','node-id','{#NODE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18019','39815','node-name','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18020','28539','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18021','28540','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18022','28541','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18023','28542','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18024','28543','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18025','28544','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18026','28545','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18027','28546','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18028','28547','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18029','28548','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18030','28549','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18031','28550','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18032','28551','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18033','28552','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18034','28553','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18035','28554','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18036','28555','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18037','28556','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18038','28557','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18039','28558','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18040','28559','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18041','28560','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18042','28561','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18043','28562','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18044','28563','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18045','28564','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18046','28565','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18047','28566','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18048','28567','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18049','28568','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18050','28569','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18051','28570','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18052','28571','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18053','28572','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18054','28573','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18055','28574','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18056','28575','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18057','28576','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18058','28577','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18059','28578','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18060','28579','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18061','28580','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18062','28581','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18063','28582','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18064','28583','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18065','28584','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18066','29821','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18067','31053','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18068','33014','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18069','33015','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18070','33016','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18071','33017','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18072','34314','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18073','34315','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18074','35278','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18075','35279','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18076','39824','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18077','39817','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18078','39817','node-id','{#NODE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18079','39817','node-name','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18080','39818','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18081','39818','node-id','{#NODE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18082','39818','node-name','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18083','39819','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18084','39819','node-id','{#NODE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18085','39819','node-name','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18086','39820','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18087','39820','node-id','{#NODE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18088','39820','node-name','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18089','32963','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18090','32964','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18091','32964','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18092','32965','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18093','32966','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18094','32967','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18095','32968','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18096','32969','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18097','32970','component','fds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18098','32971','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18099','32972','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18100','32973','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18101','32974','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18102','32975','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18103','32976','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18104','32977','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18105','32978','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18106','32979','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18107','32980','component','fds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18108','32981','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18109','32982','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18110','32983','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18111','32984','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18112','32985','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18113','32986','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18114','32987','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18115','32988','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18116','32989','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18117','32990','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18118','32991','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18119','32992','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18120','32993','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18121','32994','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18122','32995','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18123','32996','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18124','32997','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18125','33000','client','{#CLIENT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18126','33000','component','clients');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18127','33000','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18128','33000','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18129','33001','client','{#CLIENT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18130','33001','component','clients');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18131','33001','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18132','33001','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18133','33002','client','{#CLIENT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18134','33002','component','clients');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18135','33002','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18136','33002','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18137','33003','client','{#CLIENT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18138','33003','component','clients');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18139','33003','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18140','33003','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18141','33004','client','{#CLIENT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18142','33004','component','clients');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18143','33004','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18144','33004','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18145','33005','client','{#CLIENT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18146','33005','component','clients');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18147','33005','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18148','33005','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18149','33006','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18150','33007','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18151','33008','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18152','33009','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18153','33010','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18154','33011','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18155','33491','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18156','33492','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18157','33493','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18158','33494','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18159','33495','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18160','33496','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18161','33497','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18162','33498','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18163','33499','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18164','33500','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18165','33501','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18166','33502','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18167','33503','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18168','33504','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18169','33505','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18170','33506','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18171','33507','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18172','33508','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18173','33509','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18174','33510','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18175','33511','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18176','33512','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18177','33513','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18178','33514','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18179','33515','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18180','33516','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18181','33517','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18182','33518','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18183','33519','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18184','33522','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18185','33523','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18186','33524','component','ptz');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18187','33524','ptz-id','{#PTZ_CHANNEL_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18188','33525','component','ptz');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18189','33525','ptz-id','{#PTZ_CHANNEL_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18190','33526','component','ptz');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18191','33526','ptz-id','{#PTZ_CHANNEL_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18192','33527','component','stream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18193','33527','stream-id','{#CHANNEL_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18194','33528','component','stream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18195','33528','stream-id','{#CHANNEL_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18196','33529','component','stream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18197','33529','stream-id','{#CHANNEL_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18198','33530','component','stream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18199','33530','stream-id','{#CHANNEL_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18200','33531','component','stream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18201','33531','stream-id','{#CHANNEL_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18202','33532','component','stream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18203','33532','stream-id','{#CHANNEL_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18204','33533','component','stream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18205','33533','stream-id','{#CHANNEL_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18206','33534','component','stream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18207','33534','stream-id','{#CHANNEL_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18208','33535','component','stream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18209','33535','stream-id','{#CHANNEL_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18210','33536','component','stream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18211','33536','stream-id','{#CHANNEL_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18212','33537','component','stream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18213','33537','stream-id','{#CHANNEL_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18214','33538','component','stream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18215','33538','stream-id','{#CHANNEL_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18216','33539','component','stream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18217','33539','stream-id','{#CHANNEL_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18218','33540','component','stream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18219','33540','stream-id','{#CHANNEL_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18220','33541','component','stream');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18221','33541','stream-id','{#CHANNEL_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18222','33028','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18223','33029','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18224','33030','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18225','33031','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18226','33032','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18227','33033','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18228','33034','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18229','33035','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18230','33036','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18231','33037','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18232','33038','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18233','33039','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18234','33040','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18235','33041','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18236','33042','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18237','33043','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18238','33044','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18239','33045','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18240','33046','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18241','33047','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18242','33048','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18243','33049','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18244','33050','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18245','33051','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18246','33052','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18247','33053','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18248','33054','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18249','33055','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18250','33056','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18251','33057','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18252','33058','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18253','33059','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18254','33060','component','thread-pools');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18255','33061','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18256','33062','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18257','33063','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18258','33064','component','compactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18259','33065','component','commitlog');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18260','33066','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18261','33067','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18262','33068','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18263','33069','component','commitlog');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18264','33070','component','compactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18265','33071','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18266','33072','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18267','33073','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18268','33074','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18269','33075','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18270','33076','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18271','33077','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18272','33078','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18273','33079','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18274','33080','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18275','33081','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18276','33082','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18277','33083','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18278','33084','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18279','33085','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18280','33086','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18281','33087','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18282','33088','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18283','33089','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18284','33090','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18285','33091','component','compactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18286','33092','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18287','33093','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18288','33094','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18289','33096','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18290','33096','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18291','33096','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18292','33097','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18293','33097','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18294','33097','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18295','33098','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18296','33098','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18297','33098','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18298','33099','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18299','33099','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18300','33099','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18301','33100','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18302','33100','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18303','33100','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18304','33101','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18305','33101','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18306','33101','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18307','33102','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18308','33102','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18309','33102','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18310','33103','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18311','33103','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18312','33103','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18313','33104','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18314','33104','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18315','33104','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18316','33105','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18317','33105','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18318','33105','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18319','33106','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18320','33106','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18321','33106','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18322','33107','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18323','33107','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18324','33107','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18325','33108','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18326','33108','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18327','33108','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18328','33109','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18329','33109','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18330','33109','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18331','33110','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18332','33110','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18333','33110','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18334','33111','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18335','33111','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18336','33111','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18337','33112','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18338','33112','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18339','33112','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18340','33113','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18341','33113','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18342','33113','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18343','33114','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18344','33114','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18345','33114','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18346','33115','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18347','33115','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18348','33115','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18349','33116','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18350','33116','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18351','33116','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18352','33117','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18353','33117','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18354','33117','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18355','33118','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18356','33118','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18357','33118','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18358','33119','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18359','33119','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18360','33119','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18361','33120','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18362','33120','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18363','33120','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18364','33121','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18365','33121','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18366','33121','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18367','33122','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18368','33122','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18369','33122','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18370','33123','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18371','33123','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18372','33123','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18373','33124','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18374','33124','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18375','33124','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18376','33125','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18377','33125','keyspace','{#JMXKEYSPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18378','33125','table','{#JMXSCOPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18379','30821','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18380','30821','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18381','30822','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18382','30823','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18383','30823','component','replicas');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18384','30824','component','asynchronous-metrics');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18385','30824','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18386','30825','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18387','30825','component','system-events');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18388','30826','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18389','30826','component','system-metrics');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18390','30827','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18391','30828','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18392','30828','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18393','30829','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18394','30829','component','system-settings');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18395','30830','component','dictionaries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18396','30830','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18397','31054','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18398','31054','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18399','30831','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18400','30832','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18401','30833','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18402','30834','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18403','30835','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18405','30837','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18406','30838','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18407','30839','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18408','30841','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18413','30846','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18414','30847','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18415','30848','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18416','30849','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18417','30850','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18418','30851','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18419','30852','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18420','30853','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18421','30854','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18422','30855','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18423','30856','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18424','30857','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18425','30858','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18426','30859','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18427','30860','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18428','30861','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18429','30862','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18430','30863','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18431','30864','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18432','30865','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18433','30866','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18434','30867','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18435','30868','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18436','30869','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18437','30870','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18438','30871','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18439','30872','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18442','30877','component','dictionaries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18443','30877','dictionary','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18444','30878','component','dictionaries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18445','30878','dictionary','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18446','30879','component','dictionaries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18447','30879','dictionary','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18448','30880','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18449','30880','database','{#DB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18450','30880','table','{#TABLE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18451','30881','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18452','30881','database','{#DB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18453','30881','table','{#TABLE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18454','30882','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18455','30882','database','{#DB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18456','30882','table','{#TABLE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18457','30883','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18458','30883','database','{#DB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18459','30883','table','{#TABLE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18460','30884','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18461','30884','database','{#DB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18462','30884','table','{#TABLE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18463','30885','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18464','30885','database','{#DB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18465','30885','table','{#TABLE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18466','30886','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18467','30886','database','{#DB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18468','30886','table','{#TABLE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18469','30887','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18470','30887','database','{#DB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18471','30887','table','{#TABLE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18472','30888','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18473','30888','database','{#DB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18474','30888','table','{#TABLE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18475','30889','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18476','30889','database','{#DB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18477','30889','table','{#TABLE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18478','30890','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18479','30890','database','{#DB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18480','30890','table','{#TABLE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18481','30891','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18482','30891','database','{#DB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18483','30891','table','{#TABLE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18484','30892','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18485','30892','database','{#DB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18486','30892','table','{#TABLE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18487','30893','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18488','30893','database','{#DB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18489','30893','table','{#TABLE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18490','30894','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18491','30894','database','{#DB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18492','30894','table','{#TABLE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18493','30895','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18494','30895','database','{#DB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18495','30895','table','{#TABLE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18496','35290','component','data_region');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18497','35291','component','data_region');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18498','35292','component','data_region');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18499','35293','component','data_region');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18500','35294','component','data_region');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18501','35295','component','data_region');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18502','35296','component','data_region');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18503','35297','component','data_region');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18504','35298','component','data_region');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18505','35299','component','data_region');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18506','35300','component','data_region');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18507','35301','component','job');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18508','35301','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18509','35302','component','job');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18510','35302','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18511','35303','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18512','35304','component','job');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18513','35304','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18514','35305','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18515','35305','component','threads');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18516','35306','component','job');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18517','35306','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18518','35307','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18519','35307','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18520','35308','component','job');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18521','35308','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18522','35309','component','job');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18523','35309','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18524','35310','component','job');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18525','35310','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18526','35311','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18527','35312','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18528','35313','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18529','35314','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18530','35315','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18531','35316','component','kernal');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18532','35317','component','kernal');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18533','35318','component','kernal');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18534','35319','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18535','35319','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18536','35320','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18537','35320','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18538','35321','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18539','35322','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18540','35322','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18541','35323','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18542','35324','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18543','35324','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18544','35325','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18545','35325','component','nodes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18546','35326','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18547','35326','component','nodes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18548','35327','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18549','35327','component','nodes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18550','35328','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18551','35328','component','nodes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18552','35329','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18553','35329','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18554','35330','component','messages');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18555','35330','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18556','35331','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18557','35332','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18558','35333','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18559','35334','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18560','35335','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18561','35336','component','cache_group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18562','35337','component','cache_group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18563','35338','component','cache_group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18564','35339','component','cache_group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18565','35340','component','cache_group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18566','35341','component','cache_group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18567','35342','component','cache_group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18568','35343','component','cache_group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18569','35344','component','cache_group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18570','35345','component','thread_pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18571','35346','component','thread_pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18572','35347','component','thread_pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18573','35348','component','thread_pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18574','35349','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18575','35350','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18576','35351','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18577','35352','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18578','35353','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18579','35354','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18580','35355','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18581','35356','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18582','35357','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18583','33552','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18584','33552','data-region','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18585','33552','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18586','33553','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18587','33553','data-region','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18588','33553','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18589','33554','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18590','33554','data-region','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18591','33554','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18592','33555','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18593','33555','data-region','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18594','33555','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18595','33556','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18596','33556','data-region','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18597','33556','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18598','33557','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18599','33557','data-region','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18600','33557','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18601','33558','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18602','33558','data-region','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18603','33558','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18604','33559','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18605','33559','data-region','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18606','33559','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18607','33560','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18608','33560','data-region','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18609','33560','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18610','33561','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18611','33561','data-region','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18612','33561','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18613','33562','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18614','33562','data-region','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18615','33562','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18616','33563','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18617','33563','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18618','33564','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18619','33564','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18620','33565','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18621','33565','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18622','33566','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18623','33566','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18624','33567','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18625','33567','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18626','33568','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18627','33568','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18628','33569','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18629','33569','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18630','33570','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18631','33570','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18632','33571','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18633','33571','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18634','33572','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18635','33572','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18636','33573','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18637','33573','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18638','33574','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18639','33574','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18640','33575','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18641','33575','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18642','33576','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18643','33576','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18644','33577','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18645','33577','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18646','33578','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18647','33578','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18648','33579','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18649','33579','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18650','33580','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18651','33580','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18652','33581','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18653','33581','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18654','33582','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18655','33582','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18656','33584','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18657','33584','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18658','33585','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18659','33585','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18660','33586','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18661','33586','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18662','33587','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18663','33587','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18664','33588','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18665','33588','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18666','33589','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18667','33589','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18668','33590','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18669','33590','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18670','33591','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18671','33591','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18672','33592','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18673','33592','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18674','33593','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18675','33593','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18676','33594','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18677','33594','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18678','33595','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18679','33595','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18680','33596','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18681','33596','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18682','33597','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18683','33597','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18684','33598','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18685','33598','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18686','33598','jmx-name','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18687','33599','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18688','33599','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18689','33599','jmx-name','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18690','33600','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18691','33600','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18692','33600','jmx-name','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18693','33601','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18694','33601','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18695','33601','jmx-name','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18696','33602','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18697','33602','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18698','33602','jmx-name','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18699','33603','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18700','33603','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18701','33603','jmx-name','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18702','33604','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18703','33604','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18704','33604','jmx-name','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18705','33605','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18706','33605','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18707','33605','jmx-name','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18708','33606','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18709','33606','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18710','33606','jmx-name','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18711','33607','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18712','33607','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18713','33607','thread-pool','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18714','33608','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18715','33608','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18716','33608','thread-pool','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18717','33609','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18718','33609','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18719','33609','thread-pool','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18720','33610','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18721','33610','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18722','33610','thread-pool','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18723','33611','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18724','33611','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18725','33611','jmx-group','{#JMXGROUP}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18726','33612','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18727','33612','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18728','33612','jmx-group','{#JMXGROUP}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18729','33613','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18730','33613','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18731','33613','jmx-group','{#JMXGROUP}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18732','33614','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18733','33614','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18734','33614','jmx-group','{#JMXGROUP}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18735','33615','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18736','33615','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18737','33615','jmx-group','{#JMXGROUP}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18738','33616','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18739','33616','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18740','33616','jmx-group','{#JMXGROUP}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18741','33617','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18742','33617','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18743','33617','jmx-group','{#JMXGROUP}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18744','33618','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18745','33618','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18746','33618','jmx-group','{#JMXGROUP}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18747','33619','component','ignite');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18748','33619','instance-name','{#JMXIGNITEINSTANCENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18749','33619','jmx-group','{#JMXGROUP}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18750','36795','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18751','36796','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18752','36797','component','tokens');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18753','36798','component','uptime');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18754','36799','component','tokens');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18755','36800','component','telegraf');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18756','36801','component','telegraf');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18757','36802','component','tasks');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18758','36803','component','tasks');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18759','36804','component','tasks');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18760','36805','component','tasks');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18761','36806','component','scrapers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18762','36807','component','organizations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18763','36808','component','dashboards');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18764','36809','component','buckets');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18765','36810','component','boltdb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18766','36811','component','boltdb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18767','36812','component','version');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18768','36814','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18769','36815','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18770','36816','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18771','36817','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18772','36818','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18773','36819','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18774','33764','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18775','33765','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18776','33765','component','replicaset');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18777','33766','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18778','33767','component','oplog');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18779','33767','component','replicaset');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18780','33768','component','collections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18781','33768','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18782','33769','component','documents');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18783','33770','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18784','33771','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18785','33772','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18786','33773','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18788','33775','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18789','33776','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18790','33777','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18791','33778','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18792','33779','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18793','33780','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18794','33781','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18795','33782','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18796','33783','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18797','33784','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18798','33785','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18799','33786','component','cursors');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18800','33787','component','documents');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18801','33788','component','asserts');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18802','33789','component','documents');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18803','33790','component','documents');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18804','33791','component','clients');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18805','33792','component','clients');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18806','33793','component','clients');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18807','33794','component','asserts');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18808','33795','component','asserts');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18809','33796','component','asserts');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18810','33797','component','asserts');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18811','33798','component','cursors');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18812','33799','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18813','33800','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18814','33801','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18815','33802','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18816','33803','component','global-lock');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18817','33804','component','global-lock');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18818','33805','component','global-lock');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18820','33807','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18821','33812','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18822','33812','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18823','33812','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18824','33813','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18825','33813','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18826','33813','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18827','33814','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18828','33814','component','objects');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18829','33814','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18830','33815','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18831','33815','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18832','33815','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18833','33816','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18834','33816','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18835','33816','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18836','33817','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18837','33817','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18838','33817','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18839','33818','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18840','33818','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18841','33818','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18842','33819','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18843','33819','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18844','33819','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18845','33820','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18846','33820','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18847','33820','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18848','33821','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18849','33821','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18850','33821','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18851','33822','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18852','33822','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18853','33822','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18854','33823','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18855','33823','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18856','33823','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18857','33824','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18858','33824','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18859','33824','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18860','33825','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18861','33825','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18862','33825','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18863','33826','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18864','33826','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18865','33826','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18866','33827','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18867','33827','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18868','33827','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18869','33828','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18870','33828','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18871','33828','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18872','33829','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18873','33829','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18874','33829','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18875','33830','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18876','33830','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18877','33830','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18878','33831','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18879','33831','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18880','33831','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18881','33832','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18882','33832','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18883','33832','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18884','33833','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18885','33833','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18886','33833','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18887','33834','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18888','33834','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18889','33834','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18890','33835','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18891','33835','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18892','33835','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18893','33836','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18894','33836','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18895','33836','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18896','33837','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18897','33837','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18898','33837','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18899','33838','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18900','33838','component','objects');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18901','33838','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18902','33839','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18903','33839','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18904','33839','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18905','33840','component','collections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18906','33840','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18907','33841','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18908','33841','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18909','33842','component','collections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18910','33842','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18911','33843','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18912','33843','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18913','33844','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18914','33844','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18915','33845','component','objects');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18916','33845','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18917','33846','component','objects');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18918','33846','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18919','33847','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18920','33847','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18921','33848','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18922','33848','replicaset','{#RS_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18923','33849','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18924','33849','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18925','33849','replicaset','{#RS_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18926','33850','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18927','33850','replicaset','{#RS_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18928','33851','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18929','33851','replicaset','{#RS_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18930','33852','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18931','33852','replicaset','{#RS_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18932','33853','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18933','33853','replicaset','{#RS_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18934','33854','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18935','33854','replicaset','{#RS_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18936','33855','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18937','33855','replicaset','{#RS_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18938','33856','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18939','33856','replicaset','{#RS_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18940','33857','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18941','33857','replicaset','{#RS_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18942','33858','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18943','33858','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18944','33858','replicaset','{#RS_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18945','33859','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18946','33859','replicaset','{#RS_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18947','33860','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18948','33860','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18949','33860','replicaset','{#RS_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18950','33861','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18951','33861','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18952','33861','replicaset','{#RS_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18953','33862','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18954','33862','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18955','33862','replicaset','{#RS_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18956','33863','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18957','33863','replicaset','{#RS_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18958','33864','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18959','33864','replicaset','{#RS_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18960','33865','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18961','33865','replicaset','{#RS_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18962','33866','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18963','33866','replicaset','{#RS_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18964','33867','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18965','33867','replicaset','{#RS_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18966','33868','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18967','33868','replicaset','{#RS_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18968','33869','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18969','33869','component','wired-tiger');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18970','33870','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18971','33870','component','wired-tiger');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18972','33871','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18973','33871','component','wired-tiger');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18974','33872','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18975','33872','component','wired-tiger');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18976','33873','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18977','33873','component','wired-tiger');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18978','33874','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18979','33874','component','wired-tiger');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18980','33875','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18981','33875','component','wired-tiger');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18982','33876','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18983','33876','component','wired-tiger');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18984','33877','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18985','33877','component','wired-tiger');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18986','33878','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18987','33878','component','wired-tiger');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18988','33879','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18989','33879','component','wired-tiger');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18990','33880','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18991','33880','component','wired-tiger');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18992','33881','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18993','33881','component','wired-tiger');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18994','33882','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18995','33882','component','wired-tiger');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18996','33883','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18997','33883','component','wired-tiger');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18998','33884','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('18999','33884','component','wired-tiger');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19000','33885','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19001','33885','component','wired-tiger');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19002','33886','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19003','33887','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19004','33888','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19005','33889','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19006','33889','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19007','33891','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19008','33892','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19009','33893','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19010','33894','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19011','33895','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19012','33896','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19013','33897','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19014','33898','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19015','33899','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19016','33900','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19017','33901','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19018','33902','component','cursors');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19019','33903','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19020','33904','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19021','33905','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19022','33906','component','configserver');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19023','33907','component','cursors');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19024','33908','component','cursors');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19025','33909','component','cursors');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19026','33910','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19027','33911','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19028','33912','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19029','33913','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19030','33914','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19031','33915','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19032','33916','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19033','33917','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19034','33918','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19035','33919','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19036','34321','component','configserver');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19037','33924','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19038','33924','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19039','33924','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19040','33925','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19041','33925','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19042','33925','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19043','33926','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19044','33926','component','objects');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19045','33926','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19046','33927','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19047','33927','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19048','33927','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19049','33928','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19050','33928','component','objects');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19051','33928','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19052','33929','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19053','33929','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19054','33929','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19055','33930','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19056','33930','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19057','33930','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19058','33931','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19059','33931','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19060','33931','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19061','33932','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19062','33932','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19063','33932','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19064','33933','collection','{#COLLECTION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19065','33933','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19066','33933','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19067','33934','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19068','33934','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19069','33935','component','collections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19070','33935','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19071','33936','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19072','33936','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19073','33937','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19074','33937','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19075','33938','component','objects');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19076','33938','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19077','33939','component','objects');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19078','33939','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19079','33940','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19080','33940','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19081','31055','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19082','31056','component','wait-time');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19083','31057','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19084','31058','component','wait-time');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19085','31554','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19086','31555','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19087','31556','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19088','34322','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19089','34323','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19090','31059','component','wait-time');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19091','31060','component','lock');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19092','31060','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19093','31061','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19094','31062','component','deadlock');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19095','31062','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19096','31063','component','error');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19097','31063','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19098','31064','component','page');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19099','31065','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19100','31066','component','page');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19101','31066','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19102','31067','component','page');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19103','31067','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19104','31068','component','page');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19105','31068','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19106','31069','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19107','31070','component','page');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19108','31070','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19109','31071','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19110','31072','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19111','31073','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19112','31074','component','page');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19113','31075','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19114','31076','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19115','31077','component','wait-time');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19116','31078','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19117','31079','component','transaction');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19118','31080','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19119','31080','component','transaction');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19120','31081','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19121','31082','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19122','31083','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19123','31084','component','error');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19124','31084','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19125','31085','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19126','31086','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19127','31087','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19128','31088','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19129','31089','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19130','31090','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19131','31091','component','wait-time');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19132','31092','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19133','31093','component','wait-time');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19134','31094','component','wait-time');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19135','31095','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19136','31096','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19137','31097','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19138','31098','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19139','31099','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19140','31100','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19141','31100','component','page');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19142','31101','component','page');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19143','31101','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19144','31102','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19145','31103','component','page');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19146','31104','component','error');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19147','31104','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19148','31105','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19149','31106','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19150','31107','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19151','31108','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19152','31109','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19153','31110','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19154','31111','component','error');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19155','31111','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19156','31112','component','error');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19157','31112','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19158','31113','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19159','31113','component','wait-time');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19160','31114','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19161','31115','component','lock');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19162','31115','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19163','31116','component','lock');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19164','31116','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19165','31117','component','lock');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19166','31118','component','lock');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19167','31118','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19168','31119','component','log');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19169','31120','component','performance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19170','31121','component','log');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19171','31128','availability-group','{#GROUP_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19172','31128','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19173','31129','availability-group','{#GROUP_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19174','31129','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19175','31129','local-db','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19176','31130','component','mssql-mirroring');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19177','31130','mssql-mirroring','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19178','31132','availability-group','{#GROUP_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19179','31132','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19180','31132','replica','{#REPLICA_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19181','33941','availability-group','{#GROUP_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19182','33941','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19183','33941','non-local-db','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19184','31133','availability-group','{#GROUP_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19185','31133','component','availability-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19186','31134','availability-group','{#GROUP_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19187','31134','component','availability-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19188','31135','availability-group','{#GROUP_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19189','31135','component','availability-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19190','31136','availability-group','{#GROUP_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19191','31136','component','availability-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19192','31137','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19193','31137','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19194','31138','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19195','31138','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19196','31139','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19197','31139','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19198','31140','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19199','31140','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19200','31141','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19201','31141','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19202','31142','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19203','31142','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19204','31143','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19205','31143','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19206','31144','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19207','31144','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19208','31145','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19209','31145','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19210','31146','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19211','31146','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19212','31147','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19213','31147','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19214','31148','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19215','31148','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19216','31149','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19217','31149','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19218','31150','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19219','31150','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19220','31151','availability-group','{#GROUP_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19221','31151','component','local-db');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19222','31151','local-db','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19223','31152','availability-group','{#GROUP_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19224','31152','component','local-db');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19225','31152','local-db','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19226','31153','availability-group','{#GROUP_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19227','31153','component','local-db');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19228','31153','local-db','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19229','31154','component','mssql-mirroring');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19230','31154','mssql-mirroring','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19231','31155','component','mssql-mirroring');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19232','31155','mssql-mirroring','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19233','31156','component','mssql-mirroring');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19234','31156','mssql-mirroring','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19235','31157','component','mssql-mirroring');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19236','31157','mssql-mirroring','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19237','31158','component','mssql-mirroring');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19238','31158','mssql-mirroring','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19239','31161','availability-group','{#GROUP_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19240','31161','component','replica');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19241','31161','replica','{#REPLICA_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19242','31162','availability-group','{#GROUP_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19243','31162','component','replica');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19244','31162','replica','{#REPLICA_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19245','31163','availability-group','{#GROUP_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19246','31163','component','replica');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19247','31163','replica','{#REPLICA_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19248','31164','availability-group','{#GROUP_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19249','31164','component','replica');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19250','31164','replica','{#REPLICA_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19251','31165','availability-group','{#GROUP_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19252','31165','component','replica');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19253','31165','replica','{#REPLICA_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19254','31166','availability-group','{#GROUP_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19255','31166','component','replica');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19256','31166','replica','{#REPLICA_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19257','31167','availability-group','{#GROUP_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19258','31167','component','replica');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19259','31167','replica','{#REPLICA_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19260','33942','availability-group','{#GROUP_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19261','33942','component','non-local-db');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19262','33942','non-local-db','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19263','33943','availability-group','{#GROUP_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19264','33943','component','non-local-db');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19265','33943','non-local-db','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19266','34325','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19267','34325','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19268','34326','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19269','34326','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19270','34327','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19271','34327','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19272','34328','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19273','34328','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19274','34329','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19275','34329','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19276','34330','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19277','34330','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19278','34331','component','mssql-job');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19279','34331','mssql-job','{#JOBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19280','34332','component','mssql-job');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19281','34332','mssql-job','{#JOBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19282','34333','component','mssql-job');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19283','34333','mssql-job','{#JOBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19284','34334','component','mssql-job');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19285','34334','mssql-job','{#JOBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19286','34335','component','mssql-job');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19287','34335','mssql-job','{#JOBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19288','30431','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19289','30432','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19290','30432','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19291','30433','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19292','30434','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19293','30435','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19294','33126','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19295','30436','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19296','30436','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19297','30437','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19298','30437','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19299','30438','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19300','30438','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19301','30439','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19302','30439','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19303','30440','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19304','30440','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19305','30441','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19306','30442','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19307','30443','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19308','30443','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19309','30444','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19310','30445','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19311','30446','component','threads');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19312','30447','component','threads');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19313','30449','component','threads');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19314','30450','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19315','30451','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19316','30451','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19317','30452','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19318','30452','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19319','30453','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19320','30454','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19321','30455','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19322','30456','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19323','30457','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19324','30458','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19325','30459','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19326','30460','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19327','30461','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19328','30462','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19329','30463','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19330','30463','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19331','30464','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19332','30465','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19333','30466','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19334','30470','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19335','30471','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19336','31168','component','threads');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19337','31169','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19338','31169','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19339','31170','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19340','31171','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19341','31171','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19342','33127','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19343','33127','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19344','33128','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19345','33128','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19346','33129','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19347','33130','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19348','33131','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19349','33132','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19350','30474','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19351','30474','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19352','30475','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19353','30476','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19354','30477','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19355','30478','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19356','33134','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19357','33135','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19358','33136','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19359','33137','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19360','33138','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19361','33139','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19362','30637','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19363','30638','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19364','30638','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19365','30639','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19366','30640','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19367','30641','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19368','33140','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19369','30642','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19370','30642','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19371','30643','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19372','30643','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19373','30644','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19374','30644','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19375','30645','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19376','30645','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19377','30646','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19378','30646','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19379','30647','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19380','30648','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19381','30649','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19382','30649','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19383','30650','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19384','30651','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19385','30652','component','threads');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19386','30653','component','threads');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19387','30655','component','threads');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19388','30656','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19389','30657','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19390','30657','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19391','30658','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19392','30658','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19393','30659','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19394','30660','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19395','30661','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19396','30662','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19397','30663','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19398','30664','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19399','30665','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19400','30666','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19401','30667','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19402','30668','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19403','30669','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19404','30669','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19405','30670','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19406','30671','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19407','30672','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19408','30676','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19409','30677','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19410','31172','component','threads');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19411','31173','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19412','31173','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19413','31174','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19414','31175','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19415','31175','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19416','33141','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19417','33141','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19418','33142','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19419','33142','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19420','33143','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19421','33144','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19422','33145','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19423','33146','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19424','30680','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19425','30680','database','{#DATABASE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19426','30681','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19427','30682','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19428','30683','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19429','30684','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19430','33148','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19431','33149','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19432','33150','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19433','33151','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19434','33152','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19435','33153','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19436','30479','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19437','30480','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19438','30481','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19439','30481','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19440','30482','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19441','30483','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19442','33154','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19443','30484','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19444','30484','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19445','30485','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19446','30485','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19447','30486','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19448','30486','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19449','30487','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19450','30487','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19451','30488','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19452','30488','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19453','30489','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19454','30489','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19455','30490','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19456','30490','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19457','30491','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19458','30492','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19459','30493','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19460','30493','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19461','30494','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19462','30495','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19463','30496','component','threads');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19464','30497','component','threads');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19465','30499','component','threads');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19466','30500','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19467','30500','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19468','30503','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19469','30504','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19470','30505','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19471','30506','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19472','30507','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19473','30508','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19474','30509','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19475','30510','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19476','30512','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19477','30513','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19478','30514','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19479','30515','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19480','30516','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19481','30517','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19482','30518','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19483','30519','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19484','31176','component','threads');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19485','31177','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19486','31177','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19487','31178','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19488','31178','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19489','31179','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19490','33155','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19491','33155','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19492','33156','component','innodb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19493','33156','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19494','33157','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19495','33158','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19496','33159','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19497','33160','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19498','30522','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19499','30522','database','{#DATABASE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19500','30523','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19501','30524','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19502','30525','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19503','30526','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19504','33162','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19505','33163','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19506','33164','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19507','33165','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19508','33166','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19509','33167','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19510','31684','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19511','31684','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19512','31685','component','datafiles');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19513','31686','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19514','31687','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19515','31688','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19516','31689','component','pdb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19517','31689','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19518','31690','component','asm');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19519','31690','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19520','31691','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19521','31692','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19522','31693','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19523','31694','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19524','31695','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19525','31696','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19526','31697','component','archive-log');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19527','31697','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19528','31698','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19529','31699','component','cdb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19530','31699','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19531','31700','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19532','31700','component','tablespaces');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19533','31701','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19534','31702','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19535','31703','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19536','31704','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19537','31705','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19538','31706','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19539','31707','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19540','31708','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19541','31709','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19542','31710','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19543','31711','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19544','31712','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19545','31713','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19546','31713','component','sga');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19547','31714','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19548','31714','component','sga');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19549','31715','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19550','31715','component','sga');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19551','31716','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19552','31716','component','sga');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19553','31717','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19554','31717','component','sga');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19555','31718','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19556','31719','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19557','31720','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19558','31721','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19559','31721','component','pga');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19560','31722','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19561','31722','component','pga');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19562','31723','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19563','31723','component','pga');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19564','31724','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19565','31725','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19566','31726','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19567','31726','component','sga');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19568','31727','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19569','31728','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19570','31729','component','fra');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19571','31730','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19572','31731','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19573','31732','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19574','31733','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19575','31734','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19576','31735','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19577','31736','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19578','31737','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19579','31738','component','datafiles');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19580','31739','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19581','31740','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19582','31741','component','fra');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19583','31742','component','fra');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19584','31743','component','fra');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19585','31744','component','fra');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19586','31745','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19587','31746','component','fra');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19588','31747','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19589','31748','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19590','31749','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19591','31750','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19592','31751','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19593','31752','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19594','31753','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19595','31754','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19596','31755','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19597','31756','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19598','31756','component','pga');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19599','31757','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19600','31757','component','pga');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19601','31758','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19602','31759','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19603','31760','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19604','31766','component','archive-log');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19605','31766','destination','{#DEST_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19606','31767','component','archive-log');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19607','31767','destination','{#DEST_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19608','31768','component','archive-log');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19609','31768','destination','{#DEST_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19610','31769','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19611','31769','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19612','31769','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19613','31770','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19614','31770','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19615','31770','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19616','31771','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19617','31771','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19618','31771','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19619','31772','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19620','31772','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19621','31772','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19622','31773','component','asm');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19623','31773','disk-group','{#DG_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19624','31774','component','asm');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19625','31774','disk-group','{#DG_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19626','31775','component','asm');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19627','31775','disk-group','{#DG_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19628','31776','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19629','31776','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19630','31776','type','pdb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19631','31777','component','tablespaces');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19632','31777','contents','{#CONTENTS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19633','31777','tablespace','{#TABLESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19634','31778','component','tablespaces');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19635','31778','contents','{#CONTENTS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19636','31778','tablespace','{#TABLESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19637','31779','component','tablespaces');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19638','31779','contents','{#CONTENTS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19639','31779','tablespace','{#TABLESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19640','31780','component','tablespaces');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19641','31780','contents','{#CONTENTS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19642','31780','tablespace','{#TABLESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19643','31781','component','tablespaces');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19644','31781','contents','{#CONTENTS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19645','31781','tablespace','{#TABLESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19646','33168','component','tablespaces');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19647','33168','contents','{#CONTENTS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19648','33168','tablespace','{#TABLESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19649','33169','component','tablespaces');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19650','33169','contents','{#CONTENTS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19651','33169','tablespace','{#TABLESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19652','31180','component','archive-log');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19653','31180','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19654','31181','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19655','31181','component','tablespaces');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19656','31182','component','asm');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19657','31182','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19658','31183','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19659','31183','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19660','31184','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19661','31185','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19662','31186','component','cdb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19663','31186','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19664','31187','component','pdb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19665','31187','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19666','31188','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19667','31189','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19668','31190','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19669','31191','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19670','31192','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19671','31193','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19672','31194','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19673','31195','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19674','31196','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19675','31197','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19676','31198','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19677','31199','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19678','31200','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19679','31201','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19680','31202','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19681','31203','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19682','31204','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19683','31205','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19684','31205','component','sga');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19685','31206','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19686','31207','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19687','31207','component','sga');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19688','31208','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19689','31208','component','sga');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19690','31209','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19691','31209','component','sga');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19692','31210','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19693','31210','component','sga');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19694','31211','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19695','31212','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19696','31213','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19697','31214','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19698','31214','component','pga');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19699','31215','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19700','31215','component','pga');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19701','31216','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19702','31216','component','pga');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19703','31217','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19704','31218','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19705','31219','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19706','31219','component','sga');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19707','31220','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19708','31221','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19709','31222','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19710','31223','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19711','31224','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19712','31225','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19713','31226','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19714','31227','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19715','31228','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19716','31229','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19717','31230','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19718','31231','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19719','31232','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19720','31233','component','datafiles');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19721','31234','component','datafiles');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19722','31235','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19723','31236','component','fra');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19724','31237','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19725','31237','component','pga');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19726','31238','component','fra');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19727','31239','component','fra');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19728','31240','component','fra');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19729','31241','component','fra');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19730','31242','component','fra');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19731','31243','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19732','31244','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19733','31245','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19734','31246','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19735','31247','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19736','31248','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19737','31249','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19738','31250','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19739','31251','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19740','31251','component','pga');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19741','31252','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19742','31258','component','archive-log');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19743','31258','destination','{#DEST_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19744','31259','component','archive-log');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19745','31259','destination','{#DEST_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19746','31260','component','archive-log');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19747','31260','destination','{#DEST_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19748','31261','component','asm');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19749','31261','disk-group','{#DG_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19750','31262','component','asm');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19751','31262','disk-group','{#DG_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19752','31263','component','asm');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19753','31263','disk-group','{#DG_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19754','31264','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19755','31264','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19756','31264','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19757','31265','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19758','31265','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19759','31265','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19760','31266','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19761','31266','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19762','31266','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19763','31267','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19764','31267','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19765','31267','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19766','31268','component','database');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19767','31268','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19768','31268','type','pdb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19769','31269','component','tablespaces');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19770','31269','contents','{#CONTENTS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19771','31269','tablespace','{#TABLESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19772','31270','component','tablespaces');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19773','31270','contents','{#CONTENTS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19774','31270','tablespace','{#TABLESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19775','31271','component','tablespaces');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19776','31271','contents','{#CONTENTS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19777','31271','tablespace','{#TABLESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19778','31272','component','tablespaces');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19779','31272','contents','{#CONTENTS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19780','31272','tablespace','{#TABLESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19781','31273','component','tablespaces');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19782','31273','contents','{#CONTENTS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19783','31273','tablespace','{#TABLESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19784','33170','component','tablespaces');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19785','33170','contents','{#CONTENTS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19786','33170','tablespace','{#TABLESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19787','33171','component','tablespaces');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19788','33171','contents','{#CONTENTS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19789','33171','tablespace','{#TABLESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19790','32364','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19791','32365','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19792','32366','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19793','32366','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19794','32367','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19795','32367','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19796','32368','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19797','32369','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19798','32370','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19799','32371','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19800','32372','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19801','32373','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19802','32374','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19803','32375','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19804','32376','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19805','32377','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19806','32378','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19807','32379','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19808','32380','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19809','32381','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19810','32382','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19811','32383','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19812','32384','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19813','32385','component','wal');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19814','32386','component','bgwriter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19815','32387','component','bgwriter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19816','32388','component','bgwriter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19817','32389','component','bgwriter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19818','32390','component','bgwriter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19819','32391','component','bgwriter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19820','32392','component','bgwriter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19821','32393','component','bgwriter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19822','32394','component','bgwriter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19823','32395','component','bgwriter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19824','32396','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19825','32397','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19826','32398','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19827','32399','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19828','32400','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19829','32401','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19830','32402','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19831','32403','component','wal');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19832','32405','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19833','32405','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19834','32406','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19835','32406','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19836','32407','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19837','32407','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19838','32408','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19839','32408','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19840','32409','component','locks');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19841','32409','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19842','32410','component','scans');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19843','32410','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19844','32411','component','scans');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19845','32411','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19846','32412','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19847','32412','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19848','32413','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19849','32413','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19850','32414','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19851','32414','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19852','32415','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19853','32415','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19854','32416','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19855','32416','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19856','32417','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19857','32417','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19858','32418','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19859','32418','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19860','32419','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19861','32419','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19862','32420','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19863','32420','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19864','32421','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19865','32421','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19866','32422','component','deadlocks');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19867','32422','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19868','32423','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19869','32423','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19870','32424','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19871','32424','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19872','32425','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19873','32425','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19874','32426','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19875','32426','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19876','32427','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19877','32427','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19878','32428','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19879','32428','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19880','32429','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19881','32429','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19882','32430','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19883','32430','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19884','32431','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19885','32431','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19886','32432','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19887','32432','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19888','32433','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19889','32433','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19890','32434','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19891','32434','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19892','31274','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19893','31275','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19894','31276','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19895','31277','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19896','31279','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19897','31280','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19898','31282','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19899','31282','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19900','31283','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19901','31284','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19902','31285','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19903','31286','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19904','31287','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19905','31288','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19906','31289','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19907','31290','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19908','33172','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19909','33173','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19910','33174','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19911','33175','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19912','31291','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19913','31292','component','backends');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19914','31293','component','deadlocks');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19915','31294','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19916','31295','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19917','31296','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19918','31297','component','archive');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19919','31298','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19920','31299','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19921','31300','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19922','31301','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19923','31302','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19924','31303','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19925','31304','component','wal');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19926','31305','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19927','31306','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19928','31307','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19929','31309','component','archive');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19930','31310','component','archive');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19931','31311','component','bgwriter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19932','31312','component','bgwriter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19933','31313','component','bgwriter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19934','31314','component','bgwriter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19935','31315','component','bgwriter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19936','31316','component','bgwriter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19937','31317','component','bgwriter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19938','31318','component','bgwriter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19939','31319','component','bgwriter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19940','31320','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19941','31321','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19942','31322','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19943','31323','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19944','31324','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19945','31325','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19946','31326','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19947','31327','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19948','31328','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19949','31329','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19950','31330','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19951','31331','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19952','31332','component','archive');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19953','31333','component','wal');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19954','33176','component','bgwriter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19955','39821','component','wal');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19956','31335','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19957','31335','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19958','31336','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19959','31336','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19960','31337','component','tables');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19961','31337','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19962','31338','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19963','31338','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19964','31339','component','locks');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19965','31339','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19966','31340','component','locks');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19967','31340','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19968','31341','component','locks');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19969','31341','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19970','31342','component','locks');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19971','31342','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19972','31343','component','locks');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19973','31343','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19974','31344','component','locks');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19975','31344','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19976','31345','component','locks');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19977','31345','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19978','31346','component','locks');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19979','31346','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19980','31347','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19981','31347','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19982','31348','component','transactions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19983','31348','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19984','31349','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19985','31349','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19986','31350','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19987','31350','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19988','31351','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19989','31351','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19990','31352','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19991','31352','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19992','31353','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19993','31353','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19994','31354','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19995','31354','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19996','31355','component','backends');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19997','31355','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19998','31356','component','deadlocks');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('19999','31356','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20000','31357','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20001','31357','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20002','31358','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20003','31358','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20004','31359','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20005','31359','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20006','31360','component','cache');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20007','31360','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20008','31361','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20009','31361','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20010','31362','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20011','31362','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20012','31363','component','locks');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20013','31363','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20014','33178','application','{#APPLICATION_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20015','33178','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20016','33179','application','{#APPLICATION_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20017','33179','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20018','33180','application','{#APPLICATION_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20019','33180','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20020','30273','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20021','30273','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20022','30274','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20023','30275','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20024','30276','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20025','30277','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20026','30278','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20027','30279','component','keys');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20028','30280','component','keys');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20029','30281','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20030','30282','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20031','30283','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20032','30284','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20033','30285','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20034','30286','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20035','30287','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20036','30288','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20037','30289','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20038','30290','component','keys');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20039','30291','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20040','30292','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20041','30293','component','keys');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20042','30294','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20043','30295','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20044','30296','component','subscribes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20045','30297','component','subscribes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20046','30298','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20047','30299','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20048','30300','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20049','30301','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20050','30302','component','commands');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20051','30303','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20052','30304','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20053','30305','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20054','30306','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20055','30307','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20056','30308','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20057','30309','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20058','30310','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20059','30311','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20060','30312','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20061','30313','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20062','30314','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20063','30315','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20064','30316','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20065','30317','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20066','30318','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20067','30319','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20068','30320','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20069','30321','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20070','30322','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20071','30323','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20072','30324','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20073','30325','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20074','30326','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20075','30327','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20076','30328','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20077','30329','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20078','30330','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20079','30331','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20080','30332','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20081','30333','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20082','30334','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20083','30335','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20084','30336','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20085','30344','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20086','30345','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20087','30346','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20088','30347','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20089','30348','component','keys');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20090','30348','database','{#DB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20091','30349','component','keys');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20092','30349','database','{#DB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20093','30350','component','keys');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20094','30350','database','{#DB}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20095','30351','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20096','30352','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20097','30353','component','cycles');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20098','30354','component','keys');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20099','30355','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20100','30356','component','keys');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20101','30357','component','keys');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20102','30358','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20103','30359','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20104','30360','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20105','30361','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20106','30362','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20107','30363','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20108','30364','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20109','30365','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20110','30366','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20111','30367','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20112','30368','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20113','30369','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20114','30370','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20115','30371','component','keys');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20116','30372','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20117','30373','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20118','30374','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20119','30375','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20120','30376','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20121','30376','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20122','30377','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20123','30378','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20124','30379','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20125','30380','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20126','30380','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20127','30381','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20128','30382','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20129','30383','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20130','30384','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20131','30385','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20132','30386','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20133','30387','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20134','30388','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20135','30389','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20136','30390','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20137','30391','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20138','30392','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20139','30393','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20140','30394','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20141','30395','component','persistence');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20142','30396','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20143','30397','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20144','30398','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20145','30399','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20146','30400','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20147','30401','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20148','30402','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20149','30403','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20150','30404','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20151','34336','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20152','34337','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20153','34337','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20154','34338','component','grpc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20155','34339','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20156','34340','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20157','34341','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20158','34348','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20159','34348','component','regions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20160','34349','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20161','34349','component','peers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20162','34350','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20163','34350','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20164','34351','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20165','34351','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20166','34352','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20167','34352','component','stores');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20168','34353','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20169','34353','component','stores');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20170','34354','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20171','34354','component','stores');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20172','34355','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20173','34355','component','stores');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20174','34356','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20175','34356','component','stores');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20176','34357','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20177','34357','component','stores');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20178','34358','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20179','34358','component','stores');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20180','34359','component','grpc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20181','34359','grpc_method','{#GRPC_METHOD}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20182','34360','address','{#STORE_ADDRESS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20183','34360','component','regions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20184','34361','address','{#STORE_ADDRESS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20185','34361','component','regions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20186','34362','address','{#STORE_ADDRESS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20187','34362','component','regions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20188','34363','address','{#STORE_ADDRESS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20189','34363','component','regions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20190','34364','component','regions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20191','34364','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20192','34365','component','regions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20193','34365','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20194','34366','component','scheduler');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20195','34366','scheduler','{#KIND}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20196','34367','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20197','34367','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20198','34368','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20199','34369','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20200','34370','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20201','34371','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20202','34372','component','tikv-commands');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20203','34373','component','regions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20204','34374','component','tikv-commands');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20205','34375','component','tikv-commands');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20206','34376','component','server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20207','34377','component','server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20208','34378','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20209','34379','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20210','34380','component','sql');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20211','34381','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20212','34382','component','sessions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20213','34383','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20214','34384','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20215','34385','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20216','34386','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20217','34387','component','fds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20218','34388','component','fds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20219','34389','component','pd-commands');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20220','34390','component','pd-commands');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20221','34391','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20222','34392','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20223','34393','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20224','34394','component','goroutines');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20225','34395','component','sql');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20226','34396','component','domain');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20227','34397','component','domain');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20228','34398','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20229','34405','component','tikv-commands');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20230','34405','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20231','34406','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20232','34406','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20233','34407','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20234','34407','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20235','34408','component','sql');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20236','34408','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20237','34409','component','tikv-backoff');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20238','34409','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20239','34410','component','gc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20240','34410','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20241','34411','component','locks');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20242','34411','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20243','34412','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20244','34413','component','scheduler');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20245','34414','component','regions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20246','34415','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20247','34416','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20248','34417','component','commands');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20249','34418','component','snapshot');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20250','34419','component','snapshot');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20251','34420','component','snapshot');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20252','34421','component','scheduler');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20253','34422','component','snapshot');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20254','34423','component','scheduler');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20255','34424','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20256','34425','component','regions');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20257','34426','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20258','34427','component','scheduler');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20259','34428','component','grpc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20260','34429','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20261','34430','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20262','34431','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20263','34432','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20264','34433','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20265','34434','component','coprocessor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20266','34435','component','coprocessor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20267','34436','component','coprocessor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20268','34437','component','coprocessor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20269','34438','component','scheduler');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20270','34439','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20271','42676','component','scheduler');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20272','42677','component','coprocessor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20273','34444','component','coprocessor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20274','34444','request','{#REQ_TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20275','34445','component','coprocessor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20276','34445','request','{#REQ_TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20277','34446','component','coprocessor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20278','34446','request','{#REQ_TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20279','34447','component','coprocessor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20280','34447','request','{#REQ_TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20281','34448','component','grpc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20282','34448','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20283','34449','component','scheduler');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20284','34449','stage','{#STAGE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20285','34450','component','stores');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20286','34450','message-type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20287','34450','store','{#STORE_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20288','27032','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20289','27032','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20290','27032','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20291','27152','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20292','27154','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20293','27154','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20294','27157','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20295','29844','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20296','29845','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20297','29846','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20298','29847','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20299','29848','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20300','40190','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20301','40190','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20302','40191','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20303','40191','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20304','40192','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20305','40192','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20306','30142','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20307','40451','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20308','30157','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20309','30158','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20310','30159','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20311','30160','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20312','30160','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20313','30161','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20314','30161','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20315','30162','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20316','30162','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20317','40460','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20318','40460','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20319','40461','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20320','40461','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20321','40462','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20322','40462','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20323','40463','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20324','40464','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20325','40465','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20326','27065','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20327','27065','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20328','27066','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20329','27066','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20330','27067','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20331','27067','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20332','27079','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20333','27079','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20334','27079','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20335','27080','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20336','27080','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20337','27080','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20338','27081','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20339','27081','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20340','27081','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20341','27082','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20342','27082','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20343','27082','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20344','27083','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20345','27083','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20346','27083','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20347','27084','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20348','27084','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20349','27084','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20350','27085','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20351','27085','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20352','27085','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20353','27086','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20354','27086','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20355','27086','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20356','27087','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20357','27087','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20358','27087','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20359','27099','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20360','27099','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20361','27099','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20362','27100','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20363','27100','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20364','27100','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20365','27101','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20366','27101','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20367','27101','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20368','27102','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20369','27102','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20370','27102','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20371','27103','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20372','27103','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20373','27103','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20374','27104','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20375','27104','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20376','27104','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20377','27105','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20378','27105','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20379','27105','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20380','27106','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20381','27106','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20382','27106','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20383','27107','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20384','27107','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20385','27107','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20386','27119','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20387','27119','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20388','27119','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20389','27120','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20390','27120','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20391','27120','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20392','27121','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20393','27121','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20394','27121','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20395','27122','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20396','27122','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20397','27122','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20398','27123','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20399','27123','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20400','27123','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20401','27124','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20402','27124','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20403','27124','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20404','27125','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20405','27125','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20406','27125','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20407','27126','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20408','27126','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20409','27126','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20410','27127','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20411','27127','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20412','27127','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20477','22231','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20478','22232','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20479','23318','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20480','29544','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20481','29545','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20482','29546','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20483','29547','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20484','27203','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20485','27207','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20486','27208','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20487','30086','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20488','30087','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20489','30088','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20490','30089','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20491','40478','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20492','40478','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20493','40479','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20494','40480','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20495','40481','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20496','40482','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20497','40482','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20498','40483','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20499','40484','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20500','40485','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20501','40486','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20502','40487','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20503','40487','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20504','40488','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20505','40488','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20506','27212','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20507','27213','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20508','27214','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20509','30091','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20510','30092','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20511','40491','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20512','40491','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20513','40491','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20514','40492','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20515','40492','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20516','40492','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20517','40493','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20518','40493','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20519','40493','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20520','40494','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20521','40494','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20522','40494','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20523','40495','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20524','40495','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20525','40495','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20526','40496','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20527','40496','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20528','40496','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20529','40497','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20530','40497','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20531','40497','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20532','40498','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20533','40498','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20534','40498','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20535','40499','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20536','40499','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20537','40499','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20538','40500','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20539','40500','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20540','40500','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20541','33181','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20542','40501','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20543','40501','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20544','40502','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20545','40502','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20546','40503','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20547','40503','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20548','40504','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20549','40505','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20550','40506','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20551','40507','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20552','40508','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20553','40509','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20554','40510','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20555','40511','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20556','40512','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20557','40512','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20558','28323','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20559','28324','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20560','28325','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20561','28326','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20562','28327','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20563','28328','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20564','28329','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20565','33183','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20566','40517','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20567','40517','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20568','40517','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20569','40518','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20570','40518','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20571','40518','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20572','40519','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20573','40519','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20574','40519','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20575','40520','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20576','40520','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20577','40520','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20578','40521','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20579','40521','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20580','40521','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20581','40522','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20582','40522','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20583','40522','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20584','40523','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20585','40523','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20586','40523','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20587','40524','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20588','40524','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20589','40524','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20590','40525','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20591','40525','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20592','40525','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20593','40526','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20594','40526','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20595','40526','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20596','40527','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20597','40527','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20598','40528','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20599','40528','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20600','40529','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20601','40529','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20602','40530','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20603','40531','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20604','40532','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20605','27236','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20606','27237','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20607','27238','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20608','27240','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20609','30093','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20610','40533','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20611','40533','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20612','40534','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20613','40534','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20614','40535','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20615','40535','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20616','40536','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20617','40537','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20618','40538','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20619','40539','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20620','40540','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20621','40541','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20622','40542','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20623','40543','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20624','40543','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20625','27246','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20626','27247','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20627','27248','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20628','27249','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20629','27250','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20630','40545','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20631','40545','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20632','40545','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20633','40546','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20634','40546','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20635','40546','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20636','40547','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20637','40547','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20638','40547','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20639','40548','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20640','40548','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20641','40548','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20642','40549','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20643','40549','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20644','40549','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20645','40550','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20646','40550','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20647','40550','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20648','40551','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20649','40551','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20650','40551','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20651','40552','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20652','40552','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20653','40552','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20654','40553','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20655','40553','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20656','40553','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20657','27294','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20658','27295','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20659','27296','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20660','27297','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20661','30094','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20662','40554','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20663','40554','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20664','40555','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20665','40555','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20666','40556','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20667','40556','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20668','40557','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20669','40558','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20670','40559','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20671','40560','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20672','40561','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20673','40562','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20674','40563','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20675','40564','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20676','40565','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20677','40566','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20678','40566','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20679','40567','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20680','40567','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20681','40568','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20682','40568','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20683','40569','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20684','40569','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20685','40570','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20686','40571','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20687','40572','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20688','40573','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20689','40574','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20690','40575','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20691','40576','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20692','40577','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20693','40578','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20694','40579','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20695','40579','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20696','27312','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20697','27313','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20698','27314','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20699','27315','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20700','27316','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20701','27317','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20702','27318','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20703','27319','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20704','27320','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20705','40582','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20706','40582','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20707','40582','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20708','40583','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20709','40583','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20710','40583','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20711','40584','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20712','40584','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20713','40584','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20714','40585','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20715','40585','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20716','40585','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20717','40586','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20718','40586','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20719','40586','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20720','40587','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20721','40587','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20722','40587','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20723','40588','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20724','40588','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20725','40588','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20726','40589','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20727','40589','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20728','40589','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20729','40590','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20730','40590','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20731','40590','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20732','40591','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20733','40591','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20734','40591','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20735','40592','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20736','40592','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20737','40592','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20738','40593','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20739','40593','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20740','40593','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20741','40594','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20742','40594','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20743','40594','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20744','40595','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20745','40595','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20746','40595','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20747','40596','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20748','40596','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20749','40596','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20750','40597','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20751','40597','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20752','40597','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20753','40598','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20754','40598','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20755','40598','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20756','40599','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20757','40599','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20758','40599','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20759','35358','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20760','35359','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20761','35360','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20762','35361','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20763','35362','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20764','35363','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20765','35363','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20766','35369','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20767','35370','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20768','35371','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20769','35372','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20770','35373','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20771','35373','description','{#CISCO.IF.DESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20772','35373','interface','{#CISCO.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20773','35374','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20774','35374','description','{#CISCO.IF.DESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20775','35374','interface','{#CISCO.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20776','35375','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20777','35375','description','{#CISCO.IF.DESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20778','35375','interface','{#CISCO.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20779','35376','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20780','35376','description','{#CISCO.IF.DESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20781','35376','interface','{#CISCO.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20782','35377','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20783','35377','description','{#CISCO.IF.DESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20784','35377','interface','{#CISCO.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20785','35378','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20786','35378','description','{#CISCO.IF.DESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20787','35378','interface','{#CISCO.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20788','35379','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20789','35379','description','{#CISCO.IF.DESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20790','35379','interface','{#CISCO.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20791','35380','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20792','35380','description','{#CISCO.IF.DESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20793','35380','interface','{#CISCO.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20794','35381','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20795','35381','description','{#CISCO.IF.DESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20796','35381','interface','{#CISCO.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20797','35382','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20798','35382','description','{#CISCO.IF.DESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20799','35382','interface','{#CISCO.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20800','35383','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20801','35383','description','{#CISCO.IF.DESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20802','35383','interface','{#CISCO.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20803','35384','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20804','35384','description','{#CISCO.IF.DESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20805','35384','interface','{#CISCO.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20806','35385','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20807','35385','description','{#CISCO.IF.DESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20808','35385','interface','{#CISCO.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20809','35386','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20810','35386','description','{#CISCO.IF.DESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20811','35386','interface','{#CISCO.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20812','35387','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20813','35387','description','{#CISCO.IF.DESC}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20814','35387','interface','{#CISCO.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20815','35388','component','physical');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20816','35388','physical','{#CISCO.ASAV.PHYS.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20817','35389','component','physical');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20818','35389','physical','{#CISCO.ASAV.PHYS.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20819','35390','component','physical');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20820','35390','physical','{#CISCO.ASAV.PHYS.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20821','35391','component','physical');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20822','35391','physical','{#CISCO.ASAV.PHYS.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20823','35392','component','physical');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20824','35392','physical','{#CISCO.ASAV.PHYS.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20825','35393','component','physical');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20826','35393','physical','{#CISCO.ASAV.PHYS.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20827','35394','component','physical');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20828','35394','physical','{#CISCO.ASAV.PHYS.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20829','35395','component','physical');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20830','35395','physical','{#CISCO.ASAV.PHYS.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20831','35396','component','session');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20832','35396','session-index','{#CISCO.CRAS.INDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20833','35396','session-user','{#CISCO.CRAS.USER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20834','35397','component','session');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20835','35397','session-index','{#CISCO.CRAS.INDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20836','35397','session-user','{#CISCO.CRAS.USER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20837','35398','component','session');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20838','35398','session-index','{#CISCO.CRAS.INDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20839','35398','session-user','{#CISCO.CRAS.USER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20840','35399','component','session');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20841','35399','session-index','{#CISCO.CRAS.INDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20842','35399','session-user','{#CISCO.CRAS.USER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20843','35400','component','session');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20844','35400','session-index','{#CISCO.CRAS.INDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20845','35400','session-user','{#CISCO.CRAS.USER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20846','35401','component','session');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20847','35401','session-index','{#CISCO.CRAS.INDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20848','35401','session-user','{#CISCO.CRAS.USER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20849','35402','component','session');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20850','35402','session-index','{#CISCO.CRAS.INDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20851','35402','session-user','{#CISCO.CRAS.USER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20852','35403','component','session');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20853','35403','session-index','{#CISCO.CRAS.INDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20854','35403','session-user','{#CISCO.CRAS.USER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20855','35404','component','session');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20856','35404','session-index','{#CISCO.CRAS.INDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20857','35404','session-user','{#CISCO.CRAS.USER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20858','35405','component','session');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20859','35405','session-index','{#CISCO.CRAS.INDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20860','35405','session-user','{#CISCO.CRAS.USER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20861','33944','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20862','33944','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20863','33945','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20864','33945','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20865','33946','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20866','33946','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20867','33947','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20868','33948','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20869','33949','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20870','33950','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20871','33951','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20872','33952','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20873','33953','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20874','33954','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20875','33955','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20876','33956','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20877','33957','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20878','33966','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20879','33966','cpu-index','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20880','33967','component','serial-number');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20881','33967','entity','{#ENT_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20882','33968','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20883','33968','fan','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20884','33969','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20885','33969','memory','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20886','33970','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20887','33970','memory','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20888','33971','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20889','33971','memory','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20890','33972','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20891','33972','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20892','33972','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20893','33973','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20894','33973','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20895','33973','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20896','33974','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20897','33974','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20898','33974','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20899','33975','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20900','33975','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20901','33975','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20902','33976','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20903','33976','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20904','33976','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20905','33977','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20906','33977','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20907','33977','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20908','33978','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20909','33978','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20910','33978','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20911','33979','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20912','33979','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20913','33979','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20914','33980','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20915','33980','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20916','33980','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20917','33981','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20918','33981','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20919','33981','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20920','33982','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20921','33982','power-supply','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20922','33983','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20923','33983','sensor','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20924','33984','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20925','33984','sensor','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20926','33985','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20927','33985','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20928','33986','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20929','33986','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20930','33987','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20931','33987','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20932','33988','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20933','33989','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20934','33990','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20935','33991','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20936','33992','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20937','33993','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20938','33994','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20939','33995','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20940','33996','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20941','33997','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20942','33998','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20943','34007','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20944','34007','cpu-index','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20945','34008','component','serial-number');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20946','34008','entity','{#ENT_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20947','34009','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20948','34009','fan','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20949','34010','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20950','34010','memory','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20951','34011','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20952','34011','memory','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20953','34012','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20954','34012','memory','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20955','34013','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20956','34013','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20957','34013','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20958','34014','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20959','34014','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20960','34014','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20961','34015','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20962','34015','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20963','34015','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20964','34016','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20965','34016','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20966','34016','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20967','34017','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20968','34017','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20969','34017','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20970','34018','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20971','34018','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20972','34018','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20973','34019','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20974','34019','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20975','34019','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20976','34020','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20977','34020','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20978','34020','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20979','34021','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20980','34021','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20981','34021','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20982','34022','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20983','34022','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20984','34022','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20985','34023','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20986','34023','power-supply','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20987','34024','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20988','34024','sensor','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20989','34025','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20990','34025','sensor','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20991','34026','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20992','34026','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20993','34027','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20994','34027','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20995','34028','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20996','34028','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20997','34029','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20998','34030','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('20999','34031','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21000','34032','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21001','34033','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21002','34034','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21003','34035','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21004','34036','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21005','34037','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21006','34038','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21007','34039','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21008','34048','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21009','34048','cpu-index','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21010','34049','component','serial-number');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21011','34049','entity','{#ENT_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21012','34050','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21013','34050','fan','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21014','34051','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21015','34051','memory','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21016','34052','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21017','34052','memory','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21018','34053','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21019','34053','memory','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21020','34054','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21021','34054','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21022','34054','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21023','34055','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21024','34055','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21025','34055','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21026','34056','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21027','34056','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21028','34056','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21029','34057','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21030','34057','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21031','34057','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21032','34058','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21033','34058','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21034','34058','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21035','34059','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21036','34059','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21037','34059','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21038','34060','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21039','34060','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21040','34060','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21041','34061','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21042','34061','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21043','34061','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21044','34062','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21045','34062','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21046','34062','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21047','34063','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21048','34063','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21049','34063','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21050','34064','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21051','34064','power-supply','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21052','34065','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21053','34065','sensor','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21054','34066','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21055','34066','sensor','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21056','34067','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21057','34067','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21058','34068','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21059','34068','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21060','34069','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21061','34069','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21062','34070','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21063','34071','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21064','34072','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21065','34073','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21066','34074','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21067','34075','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21068','34076','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21069','34077','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21070','34078','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21071','34079','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21072','34080','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21073','34089','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21074','34089','cpu-index','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21075','34090','component','serial-number');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21076','34090','entity','{#ENT_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21077','34091','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21078','34091','fan','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21079','34092','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21080','34092','memory','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21081','34093','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21082','34093','memory','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21083','34094','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21084','34094','memory','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21085','34095','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21086','34095','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21087','34095','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21088','34096','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21089','34096','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21090','34096','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21091','34097','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21092','34097','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21093','34097','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21094','34098','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21095','34098','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21096','34098','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21097','34099','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21098','34099','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21099','34099','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21100','34100','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21101','34100','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21102','34100','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21103','34101','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21104','34101','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21105','34101','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21106','34102','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21107','34102','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21108','34102','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21109','34103','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21110','34103','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21111','34103','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21112','34104','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21113','34104','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21114','34104','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21115','34105','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21116','34105','power-supply','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21117','34106','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21118','34106','sensor','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21119','34107','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21120','34107','sensor','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21121','34108','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21122','34108','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21123','34109','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21124','34109','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21125','34110','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21126','34110','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21127','34111','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21128','34112','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21129','34113','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21130','34114','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21131','34115','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21132','34116','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21133','34117','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21134','34118','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21135','34119','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21136','34120','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21137','34121','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21138','34130','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21139','34130','cpu-index','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21140','34131','component','serial-number');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21141','34131','entity','{#ENT_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21142','34132','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21143','34132','fan','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21144','34133','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21145','34133','memory','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21146','34134','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21147','34134','memory','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21148','34135','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21149','34135','memory','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21150','34136','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21151','34136','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21152','34136','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21153','34137','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21154','34137','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21155','34137','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21156','34138','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21157','34138','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21158','34138','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21159','34139','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21160','34139','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21161','34139','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21162','34140','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21163','34140','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21164','34140','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21165','34141','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21166','34141','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21167','34141','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21168','34142','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21169','34142','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21170','34142','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21171','34143','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21172','34143','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21173','34143','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21174','34144','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21175','34144','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21176','34144','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21177','34145','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21178','34145','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21179','34145','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21180','34146','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21181','34146','power-supply','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21182','34147','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21183','34147','sensor','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21184','34148','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21185','34148','sensor','{#SNMPVALUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21186','27376','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21187','27378','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21188','27379','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21189','30097','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21190','40600','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21191','40600','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21192','40601','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21193','40601','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21194','40602','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21195','40602','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21196','40603','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21197','40604','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21198','40605','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21199','40606','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21200','40607','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21201','40608','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21202','40609','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21203','40610','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21204','40611','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21205','40612','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21206','40613','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21207','40614','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21208','40614','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21209','40615','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21210','40615','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21211','40616','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21212','40616','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21213','40617','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21214','40617','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21215','40618','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21216','40619','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21217','40620','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21218','40621','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21219','40622','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21220','40623','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21221','40624','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21222','40625','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21223','40626','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21224','40627','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21225','40628','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21226','40628','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21227','40629','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21228','40629','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21229','40630','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21230','40630','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21231','40631','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21232','40631','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21233','40632','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21234','40633','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21235','40634','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21236','40635','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21237','40636','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21238','40637','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21239','40638','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21240','40639','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21241','40640','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21242','40641','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21243','40642','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21244','40642','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21245','27415','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21246','27416','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21247','27417','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21248','27419','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21249','27420','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21250','27421','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21251','27422','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21252','27423','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21253','28246','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21254','30101','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21255','40663','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21256','40664','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21257','40665','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21258','40666','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21259','40667','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21260','40668','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21261','40669','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21262','40670','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21263','40671','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21264','40672','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21265','40673','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21266','40674','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21267','40675','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21268','40676','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21269','40677','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21270','40677','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21271','40677','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21272','40678','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21273','40678','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21274','40678','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21275','40679','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21276','40679','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21277','40679','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21278','40680','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21279','40680','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21280','40680','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21281','40681','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21282','40681','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21283','40681','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21284','40682','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21285','40682','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21286','40682','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21287','40683','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21288','40683','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21289','40683','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21290','40684','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21291','40684','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21292','40684','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21293','40685','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21294','40685','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21295','40685','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21296','40686','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21297','40686','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21298','40686','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21299','40687','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21300','40688','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21301','40689','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21302','40690','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21303','40691','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21304','40692','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21305','40693','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21306','40694','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21307','40695','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21308','40696','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21309','40696','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21310','40696','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21311','40697','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21312','40697','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21313','40697','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21314','40698','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21315','40698','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21316','40698','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21317','40699','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21318','40699','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21319','40699','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21320','40700','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21321','40700','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21322','40700','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21323','40701','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21324','40701','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21325','40701','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21326','40702','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21327','40702','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21328','40702','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21329','40703','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21330','40703','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21331','40703','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21332','40704','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21333','40704','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21334','40704','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21335','40705','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21336','40706','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21337','40707','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21338','40708','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21339','40708','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21340','40709','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21341','40709','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21342','40710','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21343','40710','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21344','40711','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21345','40712','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21346','40713','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21347','40714','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21348','40715','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21349','40716','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21350','40717','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21351','40718','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21352','40718','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21353','27478','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21354','27479','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21355','27480','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21356','27481','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21357','27482','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21358','27483','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21359','27484','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21360','27485','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21361','30105','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21362','40721','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21363','40721','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21364','40721','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21365','40722','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21366','40722','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21367','40722','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21368','40723','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21369','40723','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21370','40723','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21371','40724','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21372','40724','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21373','40724','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21374','40725','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21375','40725','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21376','40725','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21377','40726','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21378','40726','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21379','40726','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21380','40727','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21381','40727','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21382','40727','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21383','40728','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21384','40728','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21385','40728','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21386','40729','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21387','40729','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21388','40729','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21389','40730','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21390','40730','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21391','40730','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21392','27508','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21393','27509','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21394','27510','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21395','27511','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21396','30106','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21397','40731','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21398','40731','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21399','40732','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21400','40732','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21401','40733','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21402','40733','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21403','40734','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21404','40735','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21405','40736','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21406','40737','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21407','40738','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21408','40739','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21409','40740','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21410','40741','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21411','40741','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21412','27517','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21413','27518','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21414','27519','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21415','30107','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21416','40743','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21417','40743','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21418','40743','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21419','40744','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21420','40744','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21421','40744','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21422','40745','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21423','40745','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21424','40745','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21425','40746','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21426','40746','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21427','40746','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21428','40747','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21429','40747','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21430','40747','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21431','40748','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21432','40748','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21433','40748','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21434','40749','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21435','40749','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21436','40749','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21437','40750','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21438','40750','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21439','40750','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21440','40751','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21441','40751','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21442','40751','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21443','27543','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21444','27544','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21445','27545','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21446','27546','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21447','27547','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21448','40752','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21449','40752','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21450','40753','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21451','40753','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21452','40754','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21453','40754','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21454','40755','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21455','40756','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21456','40757','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21457','40758','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21458','40759','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21459','40760','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21460','40761','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21461','40762','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21462','40762','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21463','27553','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21464','27554','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21465','27555','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21466','30108','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21467','40765','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21468','40765','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21469','40765','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21470','40766','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21471','40766','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21472','40766','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21473','40767','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21474','40767','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21475','40767','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21476','40768','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21477','40768','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21478','40768','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21479','40769','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21480','40769','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21481','40769','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21482','40770','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21483','40770','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21484','40770','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21485','40771','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21486','40771','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21487','40771','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21488','40772','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21489','40772','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21490','40772','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21491','40773','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21492','40773','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21493','40773','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21494','40774','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21495','40774','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21496','40774','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21497','27579','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21498','27580','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21499','27582','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21500','27583','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21501','27584','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21502','27585','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21503','27586','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21504','30109','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21505','40775','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21506','40775','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21507','40776','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21508','40777','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21509','40778','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21510','40779','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21511','40780','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21512','40780','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21513','40781','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21514','40782','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21515','40783','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21516','40784','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21517','40784','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21518','40785','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21519','40785','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21520','27591','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21521','27593','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21522','27594','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21523','27595','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21524','30110','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21525','30111','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21526','40788','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21527','40788','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21528','40788','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21529','40789','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21530','40789','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21531','40789','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21532','40790','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21533','40790','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21534','40790','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21535','40791','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21536','40791','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21537','40791','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21538','40792','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21539','40792','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21540','40792','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21541','40793','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21542','40793','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21543','40793','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21544','40794','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21545','40794','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21546','40794','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21547','40795','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21548','40795','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21549','40795','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21550','40796','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21551','40796','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21552','40796','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21553','40797','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21554','40797','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21555','40797','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21556','35406','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21557','35407','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21558','35408','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21559','35409','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21560','35410','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21561','35411','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21562','35412','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21563','35413','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21564','35414','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21565','35415','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21566','35416','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21567','35417','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21568','35418','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21569','35419','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21570','35420','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21571','35421','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21572','35422','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21573','35423','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21574','36822','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21575','36823','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21576','35439','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21577','35439','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21578','35440','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21579','35440','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21580','35441','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21581','35441','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21582','35442','certificate','{#CERT.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21583','35442','component','certificate');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21584','35443','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21585','35443','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21586','35444','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21587','35444','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21588','35445','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21589','35446','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21590','35446','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21591','35447','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21592','35447','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21593','35447','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21594','35448','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21595','35448','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21596','35448','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21597','35449','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21598','35449','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21599','35449','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21600','35450','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21601','35450','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21602','35450','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21603','35451','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21604','35451','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21605','35451','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21606','35452','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21607','35452','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21608','35452','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21609','35453','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21610','35453','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21611','35453','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21612','35454','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21613','35454','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21614','35454','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21615','35455','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21616','35455','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21617','35455','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21618','35456','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21619','35456','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21620','35456','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21621','35457','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21622','35457','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21623','35457','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21624','35458','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21625','35458','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21626','35458','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21627','35459','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21628','35459','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21629','35459','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21630','35460','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21631','35460','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21632','35460','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21633','35461','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21634','35461','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21635','35461','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21636','35462','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21637','35462','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21638','35462','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21639','35463','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21640','35463','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21641','35463','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21642','35464','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21643','35464','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21644','35464','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21645','35465','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21646','35465','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21647','35465','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21648','35466','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21649','35466','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21650','35466','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21651','35467','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21652','35467','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21653','35467','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21654','35468','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21655','35468','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21656','35468','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21657','35469','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21658','35469','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21659','35469','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21660','35470','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21661','35470','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21662','35470','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21663','35471','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21664','35471','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21665','35471','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21666','35472','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21667','35472','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21668','35472','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21669','35473','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21670','35473','cpu-id','{#CPU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21671','35473','host-id','{#HOST.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21672','35474','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21673','35474','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21674','35475','component','name');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21675','35475','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21676','35476','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21677','35476','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21678','35477','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21679','35477','mount-point','{#PART.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21680','35478','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21681','35478','mount-point','{#PART.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21682','35479','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21683','35479','mount-point','{#PART.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21684','35480','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21685','35480','mount-point','{#PART.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21686','35481','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21687','35481','mount-point','{#PART.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21688','35482','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21689','35483','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21690','35484','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21691','35485','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21692','35486','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21693','35487','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21694','35488','component','module');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21695','35488','module','{#MODULE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21696','35489','component','module');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21697','35489','module','{#MODULE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21698','35490','component','module');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21699','35490','module','{#MODULE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21700','35491','component','module');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21701','35491','module','{#MODULE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21702','35492','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21703','35492','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21704','35492','interface','port-{#IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21705','35493','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21706','35493','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21707','35493','interface','port-{#IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21708','35494','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21709','35494','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21710','35494','interface','port-{#IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21711','35495','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21712','35495','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21713','35495','interface','port-{#IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21714','35496','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21715','35496','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21716','35496','interface','port-{#IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21717','35497','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21718','35497','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21719','35497','interface','port-{#IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21720','35498','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21721','35498','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21722','35498','interface','port-{#IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21723','35499','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21724','35499','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21725','35499','interface','port-{#IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21726','35500','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21727','35500','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21728','35500','interface','port-{#IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21729','35501','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21730','35501','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21731','35501','interface','port-{#IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21732','35502','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21733','35502','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21734','35502','interface','port-{#IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21735','35503','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21736','35503','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21737','35503','interface','port-{#IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21738','35504','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21739','35504','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21740','35504','interface','port-{#IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21741','35505','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21742','35505','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21743','35505','interface','port-{#IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21744','35506','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21745','35506','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21746','35506','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21747','35507','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21748','35507','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21749','35507','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21750','35508','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21751','35508','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21752','35508','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21753','35509','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21754','35509','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21755','35509','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21756','35510','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21757','35510','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21758','35510','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21759','35511','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21760','35511','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21761','35511','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21762','35512','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21763','35512','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21764','35512','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21765','35513','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21766','35513','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21767','35513','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21768','35514','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21769','35514','component','pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21770','35514','pool','{#POOL.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21771','35515','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21772','35515','component','pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21773','35515','pool','{#POOL.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21774','35516','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21775','35516','component','pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21776','35516','pool','{#POOL.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21777','35517','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21778','35517','component','pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21779','35517','pool','{#POOL.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21780','35518','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21781','35518','component','pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21782','35518','pool','{#POOL.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21783','35519','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21784','35519','component','pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21785','35519','pool','{#POOL.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21786','35520','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21787','35520','component','pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21788','35520','pool','{#POOL.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21789','35521','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21790','35521','component','pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21791','35521','pool','{#POOL.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21792','35522','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21793','35522','component','virtual-server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21794','35522','virtual-server','{#VSERVER.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21795','35523','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21796','35523','component','virtual-server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21797','35523','virtual-server','{#VSERVER.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21798','35524','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21799','35524','component','virtual-server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21800','35524','virtual-server','{#VSERVER.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21801','35525','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21802','35525','component','virtual-server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21803','35525','virtual-server','{#VSERVER.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21804','35526','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21805','35526','component','virtual-server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21806','35526','virtual-server','{#VSERVER.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21807','35527','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21808','35527','component','virtual-server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21809','35527','virtual-server','{#VSERVER.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21810','35528','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21811','35528','component','virtual-server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21812','35528','virtual-server','{#VSERVER.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21813','35529','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21814','35529','component','virtual-server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21815','35529','virtual-server','{#VSERVER.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21816','35530','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21817','35530','component','virtual-server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21818','35530','virtual-server','{#VSERVER.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21819','35531','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21820','35531','component','virtual-server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21821','35531','virtual-server','{#VSERVER.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21822','36824','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21823','36824','component','pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21824','36824','pool','{#POOL.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21825','36825','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21826','36825','component','pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21827','36825','pool','{#POOL.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21828','40798','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21829','40798','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21830','40799','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21831','40799','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21832','40800','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21833','40800','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21834','40801','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21835','40802','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21836','40803','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21837','40804','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21838','40805','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21839','40806','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21840','40807','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21841','40808','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21842','40808','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21843','40811','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21844','40811','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21845','40811','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21846','40812','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21847','40812','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21848','40812','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21849','40813','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21850','40813','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21851','40813','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21852','40814','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21853','40814','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21854','40814','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21855','40815','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21856','40815','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21857','40815','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21858','40816','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21859','40816','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21860','40816','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21861','40817','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21862','40817','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21863','40817','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21864','40818','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21865','40818','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21866','40818','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21867','40819','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21868','40819','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21869','40819','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21870','40820','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21871','40820','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21872','40820','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21873','40821','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21874','40821','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21875','40822','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21876','40822','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21877','40823','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21878','40823','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21879','40824','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21880','40825','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21881','40826','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21882','40827','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21883','40828','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21884','40829','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21885','40830','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21886','40831','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21887','40831','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21888','27671','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21889','27672','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21890','27673','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21891','27674','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21892','27675','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21893','27676','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21894','27677','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21895','27678','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21896','27679','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21897','30112','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21898','40834','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21899','40834','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21900','40834','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21901','40835','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21902','40835','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21903','40835','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21904','40836','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21905','40836','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21906','40836','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21907','40837','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21908','40837','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21909','40837','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21910','40838','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21911','40838','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21912','40838','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21913','40839','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21914','40839','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21915','40839','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21916','40840','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21917','40840','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21918','40840','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21919','40841','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21920','40841','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21921','40841','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21922','40842','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21923','40842','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21924','40842','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21925','40843','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21926','40843','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21927','40843','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21928','28141','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21929','28142','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21930','28143','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21931','40844','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21932','40844','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21933','40845','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21934','40845','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21935','40846','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21936','40846','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21937','40847','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21938','40848','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21939','40849','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21940','40850','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21941','40851','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21942','40852','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21943','40853','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21944','40854','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21945','40854','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21946','28150','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21947','28153','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21948','28154','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21949','28155','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21950','28156','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21951','28157','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21952','28158','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21953','30113','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21954','30114','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21955','30115','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21956','40857','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21957','40857','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21958','40857','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21959','40858','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21960','40858','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21961','40858','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21962','40859','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21963','40859','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21964','40859','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21965','40860','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21966','40860','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21967','40860','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21968','40861','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21969','40861','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21970','40861','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21971','40862','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21972','40862','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21973','40862','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21974','40863','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21975','40863','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21976','40863','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21977','40864','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21978','40864','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21979','40864','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21980','40865','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21981','40865','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21982','40865','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21983','40866','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21984','40866','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21985','40866','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21986','40867','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21987','40867','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21988','40868','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21989','40868','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21990','40869','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21991','40869','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21992','40870','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21993','40871','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21994','40872','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21995','40873','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21996','40874','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21997','40875','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21998','40876','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('21999','40877','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22000','40877','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22001','27748','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22002','27749','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22003','27750','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22004','27751','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22005','27753','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22006','27754','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22007','27755','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22008','30116','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22009','40880','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22010','40880','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22011','40880','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22012','40881','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22013','40881','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22014','40881','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22015','40882','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22016','40882','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22017','40882','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22018','40883','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22019','40883','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22020','40883','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22021','40884','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22022','40884','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22023','40884','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22024','40885','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22025','40885','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22026','40885','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22027','40886','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22028','40886','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22029','40886','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22030','40887','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22031','40887','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22032','40887','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22033','40888','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22034','40888','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22035','40888','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22036','40889','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22037','40889','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22038','40889','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22039','27777','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22040','27778','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22041','40890','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22042','40890','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22043','40891','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22044','40891','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22045','40892','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22046','40892','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22047','40893','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22048','40894','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22049','40895','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22050','40896','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22051','40897','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22052','40898','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22053','40899','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22054','40900','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22055','40900','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22056','27783','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22057','27784','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22058','27785','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22059','27786','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22060','27787','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22061','40902','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22062','40902','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22063','40902','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22064','40903','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22065','40903','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22066','40903','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22067','40904','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22068','40904','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22069','40904','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22070','40905','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22071','40905','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22072','40905','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22073','40906','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22074','40906','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22075','40906','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22076','40907','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22077','40907','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22078','40907','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22079','40908','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22080','40908','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22081','40908','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22082','40909','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22083','40909','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22084','40909','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22085','40910','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22086','40910','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22087','40910','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22088','27812','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22089','27813','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22090','27814','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22091','30117','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22092','40911','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22093','40911','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22094','40912','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22095','40912','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22096','40913','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22097','40913','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22098','40914','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22099','40915','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22100','40916','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22101','40917','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22102','40918','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22103','40919','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22104','40920','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22105','40921','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22106','40921','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22107','27821','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22108','27822','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22109','27823','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22110','28894','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22111','30118','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22112','40924','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22113','40924','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22114','40924','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22115','40925','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22116','40925','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22117','40925','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22118','40926','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22119','40926','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22120','40926','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22121','40927','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22122','40927','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22123','40927','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22124','40928','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22125','40928','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22126','40928','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22127','40929','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22128','40929','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22129','40929','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22130','40930','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22131','40930','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22132','40930','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22133','40931','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22134','40931','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22135','40931','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22136','40932','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22137','40932','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22138','40932','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22139','40933','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22140','40933','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22141','40933','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22142','34149','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22143','34149','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22144','34150','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22145','34150','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22146','34151','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22147','34151','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22148','34152','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22149','34153','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22150','34154','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22151','34155','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22152','34156','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22153','34157','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22154','34158','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22155','34159','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22156','34160','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22157','34160','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22158','28200','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22159','28201','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22160','28202','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22161','28203','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22162','28204','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22163','28205','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22164','28206','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22165','34164','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22166','34164','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22167','34164','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22168','34165','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22169','34165','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22170','34165','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22171','34166','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22172','34166','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22173','34166','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22174','34167','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22175','34167','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22176','34167','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22177','34168','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22178','34168','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22179','34168','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22180','34169','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22181','34169','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22182','34169','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22183','34170','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22184','34170','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22185','34170','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22186','34171','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22187','34171','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22188','34171','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22189','34172','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22190','34172','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22191','34172','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22192','34173','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22193','34173','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22194','34174','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22195','34174','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22196','34175','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22197','34175','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22198','34176','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22199','34177','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22200','34178','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22201','36847','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22202','36848','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22203','36849','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22204','36850','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22205','36851','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22206','36852','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22207','36853','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22208','40934','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22209','40934','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22210','40935','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22211','40936','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22212','40937','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22213','40938','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22214','40939','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22215','40939','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22216','40940','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22217','40941','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22218','40942','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22219','40943','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22220','40943','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22221','40944','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22222','40944','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22223','36861','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22224','36862','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22225','36863','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22226','36864','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22227','36864','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22228','36864','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22229','36865','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22230','36865','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22231','36865','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22232','36866','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22233','36866','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22234','36866','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22235','36867','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22236','36867','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22237','36867','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22238','36868','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22239','36868','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22240','36868','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22241','36869','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22242','36869','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22243','36869','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22244','36870','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22245','36870','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22246','36870','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22247','36871','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22248','36871','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22249','36871','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22250','36872','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22251','36872','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22252','36872','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22253','36873','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22254','36873','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22255','36873','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22256','36874','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22257','36874','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22258','36874','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22259','36875','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22260','36875','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22261','36875','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22262','36876','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22263','36876','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22264','36876','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22265','36877','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22266','36877','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22267','36878','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22268','36878','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22269','36879','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22270','36879','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22271','40946','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22272','40946','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22273','40946','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22274','40947','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22275','40947','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22276','40947','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22277','40948','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22278','40948','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22279','40948','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22280','40949','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22281','40949','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22282','40949','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22283','40950','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22284','40950','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22285','40950','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22286','40951','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22287','40951','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22288','40951','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22289','40952','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22290','40952','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22291','40952','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22292','40953','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22293','40953','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22294','40953','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22295','40954','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22296','40954','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22297','40954','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22298','36901','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22299','36902','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22300','36903','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22301','36904','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22302','36905','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22303','36906','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22304','36907','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22305','40955','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22306','40955','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22307','40956','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22308','40957','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22309','40958','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22310','40959','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22311','40960','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22312','40960','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22313','40961','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22314','40962','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22315','40963','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22316','40964','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22317','40964','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22318','40965','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22319','40965','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22320','36915','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22321','36916','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22322','36917','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22323','36918','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22324','36918','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22325','36918','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22326','36919','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22327','36919','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22328','36919','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22329','36920','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22330','36920','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22331','36920','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22332','36921','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22333','36921','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22334','36921','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22335','36922','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22336','36922','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22337','36922','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22338','36923','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22339','36923','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22340','36923','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22341','36924','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22342','36924','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22343','36924','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22344','36925','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22345','36925','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22346','36925','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22347','36926','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22348','36926','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22349','36926','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22350','36927','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22351','36927','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22352','36927','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22353','36928','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22354','36928','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22355','36928','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22356','36929','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22357','36929','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22358','36929','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22359','36930','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22360','36930','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22361','36930','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22362','36931','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22363','36931','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22364','36932','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22365','36932','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22366','36933','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22367','36933','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22368','40967','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22369','40967','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22370','40967','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22371','40968','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22372','40968','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22373','40968','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22374','40969','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22375','40969','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22376','40969','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22377','40970','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22378','40970','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22379','40970','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22380','40971','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22381','40971','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22382','40971','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22383','40972','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22384','40972','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22385','40972','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22386','40973','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22387','40973','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22388','40973','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22389','40974','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22390','40974','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22391','40974','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22392','40975','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22393','40975','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22394','40975','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22395','36955','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22396','36956','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22397','36957','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22398','36958','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22399','36959','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22400','36960','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22401','36961','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22402','40976','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22403','40976','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22404','40977','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22405','40978','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22406','40979','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22407','40980','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22408','40981','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22409','40981','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22410','40982','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22411','40983','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22412','40984','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22413','40985','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22414','40985','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22415','40986','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22416','40986','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22417','36969','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22418','36970','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22419','36971','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22420','36972','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22421','36972','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22422','36972','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22423','36973','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22424','36973','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22425','36973','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22426','36974','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22427','36974','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22428','36974','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22429','36975','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22430','36975','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22431','36975','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22432','36976','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22433','36976','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22434','36976','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22435','36977','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22436','36977','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22437','36977','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22438','36978','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22439','36978','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22440','36978','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22441','36979','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22442','36979','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22443','36979','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22444','36980','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22445','36980','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22446','36980','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22447','36981','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22448','36981','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22449','36981','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22450','36982','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22451','36982','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22452','36982','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22453','36983','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22454','36983','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22455','36983','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22456','36984','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22457','36984','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22458','36984','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22459','36985','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22460','36985','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22461','36986','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22462','36986','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22463','36987','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22464','36987','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22465','40988','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22466','40988','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22467','40988','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22468','40989','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22469','40989','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22470','40989','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22471','40990','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22472','40990','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22473','40990','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22474','40991','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22475','40991','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22476','40991','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22477','40992','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22478','40992','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22479','40992','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22480','40993','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22481','40993','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22482','40993','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22483','40994','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22484','40994','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22485','40994','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22486','40995','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22487','40995','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22488','40995','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22489','40996','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22490','40996','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22491','40996','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22492','37009','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22493','37010','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22494','37011','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22495','37012','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22496','37013','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22497','37014','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22498','37015','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22499','40997','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22500','40997','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22501','40998','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22502','40999','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22503','41000','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22504','41001','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22505','41002','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22506','41002','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22507','41003','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22508','41004','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22509','41005','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22510','41006','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22511','41006','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22512','41007','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22513','41007','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22514','37023','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22515','37024','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22516','37025','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22517','37026','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22518','37026','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22519','37026','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22520','37027','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22521','37027','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22522','37027','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22523','37028','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22524','37028','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22525','37028','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22526','37029','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22527','37029','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22528','37029','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22529','37030','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22530','37030','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22531','37030','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22532','37031','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22533','37031','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22534','37031','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22535','37032','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22536','37032','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22537','37032','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22538','37033','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22539','37033','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22540','37033','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22541','37034','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22542','37034','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22543','37034','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22544','37035','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22545','37035','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22546','37035','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22547','37036','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22548','37036','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22549','37036','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22550','37037','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22551','37037','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22552','37037','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22553','37038','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22554','37038','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22555','37038','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22556','37039','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22557','37039','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22558','37040','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22559','37040','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22560','37041','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22561','37041','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22562','41009','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22563','41009','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22564','41009','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22565','41010','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22566','41010','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22567','41010','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22568','41011','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22569','41011','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22570','41011','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22571','41012','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22572','41012','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22573','41012','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22574','41013','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22575','41013','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22576','41013','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22577','41014','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22578','41014','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22579','41014','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22580','41015','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22581','41015','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22582','41015','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22583','41016','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22584','41016','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22585','41016','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22586','41017','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22587','41017','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22588','41017','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22589','37063','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22590','37064','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22591','37065','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22592','37066','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22593','37067','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22594','37068','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22595','37069','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22596','41018','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22597','41018','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22598','41019','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22599','41020','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22600','41021','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22601','41022','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22602','41023','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22603','41023','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22604','41024','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22605','41025','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22606','41026','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22607','41027','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22608','41027','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22609','41028','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22610','41028','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22611','37077','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22612','37078','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22613','37079','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22614','37080','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22615','37080','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22616','37080','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22617','37081','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22618','37081','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22619','37081','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22620','37082','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22621','37082','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22622','37082','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22623','37083','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22624','37083','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22625','37083','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22626','37084','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22627','37084','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22628','37084','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22629','37085','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22630','37085','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22631','37085','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22632','37086','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22633','37086','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22634','37086','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22635','37087','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22636','37087','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22637','37087','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22638','37088','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22639','37088','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22640','37088','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22641','37089','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22642','37089','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22643','37089','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22644','37090','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22645','37090','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22646','37090','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22647','37091','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22648','37091','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22649','37091','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22650','37092','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22651','37092','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22652','37092','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22653','37093','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22654','37093','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22655','37094','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22656','37094','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22657','37095','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22658','37095','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22659','41030','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22660','41030','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22661','41030','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22662','41031','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22663','41031','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22664','41031','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22665','41032','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22666','41032','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22667','41032','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22668','41033','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22669','41033','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22670','41033','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22671','41034','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22672','41034','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22673','41034','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22674','41035','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22675','41035','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22676','41035','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22677','41036','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22678','41036','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22679','41036','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22680','41037','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22681','41037','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22682','41037','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22683','41038','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22684','41038','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22685','41038','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22686','37117','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22687','37118','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22688','37119','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22689','37120','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22690','37121','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22691','37122','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22692','37123','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22693','41039','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22694','41039','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22695','41040','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22696','41041','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22697','41042','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22698','41043','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22699','41044','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22700','41044','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22701','41045','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22702','41046','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22703','41047','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22704','41048','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22705','41048','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22706','41049','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22707','41049','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22708','37131','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22709','37132','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22710','37133','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22711','37134','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22712','37134','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22713','37134','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22714','37135','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22715','37135','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22716','37135','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22717','37136','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22718','37136','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22719','37136','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22720','37137','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22721','37137','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22722','37137','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22723','37138','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22724','37138','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22725','37138','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22726','37139','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22727','37139','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22728','37139','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22729','37140','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22730','37140','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22731','37140','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22732','37141','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22733','37141','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22734','37141','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22735','37142','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22736','37142','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22737','37142','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22738','37143','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22739','37143','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22740','37143','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22741','37144','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22742','37144','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22743','37144','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22744','37145','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22745','37145','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22746','37145','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22747','37146','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22748','37146','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22749','37146','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22750','37147','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22751','37147','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22752','37148','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22753','37148','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22754','37149','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22755','37149','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22756','41051','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22757','41051','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22758','41051','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22759','41052','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22760','41052','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22761','41052','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22762','41053','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22763','41053','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22764','41053','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22765','41054','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22766','41054','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22767','41054','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22768','41055','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22769','41055','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22770','41055','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22771','41056','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22772','41056','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22773','41056','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22774','41057','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22775','41057','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22776','41057','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22777','41058','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22778','41058','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22779','41058','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22780','41059','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22781','41059','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22782','41059','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22783','37171','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22784','37172','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22785','37173','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22786','37174','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22787','37175','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22788','37176','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22789','37177','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22790','41060','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22791','41060','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22792','41061','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22793','41062','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22794','41063','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22795','41064','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22796','41065','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22797','41065','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22798','41066','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22799','41067','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22800','41068','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22801','41069','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22802','41069','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22803','41070','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22804','41070','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22805','37185','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22806','37186','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22807','37187','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22808','37188','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22809','37188','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22810','37188','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22811','37189','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22812','37189','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22813','37189','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22814','37190','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22815','37190','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22816','37190','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22817','37191','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22818','37191','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22819','37191','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22820','37192','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22821','37192','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22822','37192','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22823','37193','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22824','37193','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22825','37193','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22826','37194','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22827','37194','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22828','37194','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22829','37195','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22830','37195','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22831','37195','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22832','37196','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22833','37196','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22834','37196','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22835','37197','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22836','37197','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22837','37197','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22838','37198','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22839','37198','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22840','37198','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22841','37199','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22842','37199','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22843','37199','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22844','37200','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22845','37200','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22846','37200','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22847','37201','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22848','37201','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22849','37202','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22850','37202','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22851','37203','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22852','37203','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22853','41072','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22854','41072','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22855','41072','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22856','41073','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22857','41073','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22858','41073','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22859','41074','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22860','41074','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22861','41074','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22862','41075','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22863','41075','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22864','41075','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22865','41076','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22866','41076','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22867','41076','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22868','41077','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22869','41077','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22870','41077','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22871','41078','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22872','41078','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22873','41078','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22874','41079','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22875','41079','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22876','41079','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22877','41080','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22878','41080','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22879','41080','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22880','37225','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22881','37226','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22882','37227','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22883','37228','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22884','37229','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22885','37230','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22886','37231','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22887','41081','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22888','41081','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22889','41082','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22890','41083','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22891','41084','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22892','41085','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22893','41086','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22894','41086','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22895','41087','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22896','41088','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22897','41089','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22898','41090','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22899','41090','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22900','41091','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22901','41091','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22902','37239','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22903','37240','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22904','37241','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22905','37242','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22906','37242','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22907','37242','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22908','37243','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22909','37243','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22910','37243','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22911','37244','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22912','37244','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22913','37244','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22914','37245','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22915','37245','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22916','37245','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22917','37246','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22918','37246','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22919','37246','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22920','37247','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22921','37247','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22922','37247','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22923','37248','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22924','37248','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22925','37248','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22926','37249','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22927','37249','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22928','37249','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22929','37250','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22930','37250','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22931','37250','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22932','37251','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22933','37251','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22934','37251','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22935','37252','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22936','37252','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22937','37252','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22938','37253','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22939','37253','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22940','37253','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22941','37254','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22942','37254','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22943','37254','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22944','37255','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22945','37255','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22946','37256','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22947','37256','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22948','37257','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22949','37257','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22950','41093','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22951','41093','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22952','41093','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22953','41094','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22954','41094','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22955','41094','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22956','41095','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22957','41095','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22958','41095','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22959','41096','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22960','41096','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22961','41096','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22962','41097','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22963','41097','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22964','41097','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22965','41098','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22966','41098','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22967','41098','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22968','41099','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22969','41099','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22970','41099','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22971','41100','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22972','41100','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22973','41100','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22974','41101','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22975','41101','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22976','41101','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22977','37279','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22978','37280','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22979','37281','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22980','37282','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22981','37283','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22982','37284','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22983','37285','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22984','41102','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22985','41102','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22986','41103','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22987','41104','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22988','41105','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22989','41106','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22990','41107','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22991','41107','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22992','41108','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22993','41109','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22994','41110','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22995','41111','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22996','41111','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22997','41112','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22998','41112','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('22999','37293','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23000','37294','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23001','37295','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23002','37296','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23003','37296','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23004','37296','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23005','37297','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23006','37297','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23007','37297','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23008','37298','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23009','37298','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23010','37298','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23011','37299','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23012','37299','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23013','37299','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23014','37300','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23015','37300','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23016','37300','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23017','37301','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23018','37301','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23019','37301','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23020','37302','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23021','37302','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23022','37302','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23023','37303','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23024','37303','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23025','37303','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23026','37304','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23027','37304','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23028','37304','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23029','37305','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23030','37305','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23031','37305','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23032','37306','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23033','37306','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23034','37306','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23035','37307','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23036','37307','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23037','37307','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23038','37308','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23039','37308','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23040','37308','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23041','37309','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23042','37309','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23043','37310','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23044','37310','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23045','37311','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23046','37311','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23047','41114','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23048','41114','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23049','41114','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23050','41115','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23051','41115','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23052','41115','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23053','41116','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23054','41116','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23055','41116','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23056','41117','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23057','41117','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23058','41117','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23059','41118','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23060','41118','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23061','41118','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23062','41119','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23063','41119','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23064','41119','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23065','41120','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23066','41120','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23067','41120','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23068','41121','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23069','41121','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23070','41121','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23071','41122','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23072','41122','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23073','41122','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23074','37333','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23075','37334','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23076','37335','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23077','37336','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23078','37337','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23079','37338','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23080','37339','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23081','41123','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23082','41123','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23083','41124','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23084','41125','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23085','41126','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23086','41127','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23087','41128','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23088','41128','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23089','41129','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23090','41130','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23091','41131','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23092','41132','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23093','41132','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23094','41133','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23095','41133','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23096','37347','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23097','37348','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23098','37349','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23099','37350','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23100','37350','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23101','37350','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23102','37351','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23103','37351','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23104','37351','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23105','37352','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23106','37352','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23107','37352','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23108','37353','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23109','37353','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23110','37353','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23111','37354','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23112','37354','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23113','37354','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23114','37355','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23115','37355','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23116','37355','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23117','37356','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23118','37356','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23119','37356','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23120','37357','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23121','37357','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23122','37357','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23123','37358','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23124','37358','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23125','37358','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23126','37359','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23127','37359','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23128','37359','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23129','37360','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23130','37360','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23131','37360','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23132','37361','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23133','37361','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23134','37361','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23135','37362','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23136','37362','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23137','37362','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23138','37363','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23139','37363','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23140','37364','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23141','37364','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23142','37365','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23143','37365','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23144','41135','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23145','41135','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23146','41135','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23147','41136','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23148','41136','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23149','41136','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23150','41137','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23151','41137','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23152','41137','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23153','41138','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23154','41138','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23155','41138','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23156','41139','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23157','41139','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23158','41139','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23159','41140','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23160','41140','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23161','41140','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23162','41141','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23163','41141','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23164','41141','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23165','41142','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23166','41142','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23167','41142','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23168','41143','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23169','41143','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23170','41143','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23171','37387','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23172','37388','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23173','37389','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23174','37390','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23175','37391','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23176','37392','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23177','37393','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23178','41144','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23179','41144','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23180','41145','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23181','41146','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23182','41147','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23183','41148','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23184','41149','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23185','41149','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23186','41150','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23187','41151','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23188','41152','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23189','41153','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23190','41153','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23191','41154','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23192','41154','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23193','37401','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23194','37402','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23195','37403','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23196','37404','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23197','37404','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23198','37404','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23199','37405','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23200','37405','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23201','37405','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23202','37406','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23203','37406','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23204','37406','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23205','37407','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23206','37407','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23207','37407','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23208','37408','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23209','37408','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23210','37408','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23211','37409','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23212','37409','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23213','37409','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23214','37410','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23215','37410','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23216','37410','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23217','37411','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23218','37411','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23219','37411','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23220','37412','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23221','37412','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23222','37412','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23223','37413','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23224','37413','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23225','37413','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23226','37414','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23227','37414','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23228','37414','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23229','37415','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23230','37415','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23231','37415','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23232','37416','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23233','37416','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23234','37416','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23235','37417','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23236','37417','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23237','37418','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23238','37418','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23239','37419','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23240','37419','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23241','41156','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23242','41156','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23243','41156','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23244','41157','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23245','41157','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23246','41157','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23247','41158','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23248','41158','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23249','41158','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23250','41159','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23251','41159','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23252','41159','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23253','41160','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23254','41160','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23255','41160','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23256','41161','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23257','41161','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23258','41161','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23259','41162','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23260','41162','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23261','41162','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23262','41163','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23263','41163','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23264','41163','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23265','41164','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23266','41164','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23267','41164','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23268','37441','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23269','37442','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23270','37443','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23271','37444','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23272','37445','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23273','37446','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23274','37447','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23275','41165','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23276','41165','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23277','41166','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23278','41167','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23279','41168','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23280','41169','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23281','41170','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23282','41170','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23283','41171','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23284','41172','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23285','41173','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23286','41174','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23287','41174','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23288','41175','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23289','41175','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23290','37455','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23291','37456','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23292','37457','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23293','37458','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23294','37458','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23295','37458','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23296','37459','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23297','37459','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23298','37459','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23299','37460','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23300','37460','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23301','37460','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23302','37461','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23303','37461','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23304','37461','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23305','37462','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23306','37462','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23307','37462','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23308','37463','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23309','37463','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23310','37463','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23311','37464','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23312','37464','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23313','37464','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23314','37465','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23315','37465','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23316','37465','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23317','37466','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23318','37466','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23319','37466','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23320','37467','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23321','37467','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23322','37467','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23323','37468','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23324','37468','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23325','37468','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23326','37469','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23327','37469','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23328','37469','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23329','37470','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23330','37470','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23331','37470','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23332','37471','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23333','37471','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23334','37472','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23335','37472','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23336','37473','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23337','37473','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23338','41177','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23339','41177','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23340','41177','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23341','41178','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23342','41178','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23343','41178','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23344','41179','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23345','41179','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23346','41179','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23347','41180','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23348','41180','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23349','41180','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23350','41181','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23351','41181','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23352','41181','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23353','41182','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23354','41182','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23355','41182','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23356','41183','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23357','41183','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23358','41183','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23359','41184','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23360','41184','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23361','41184','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23362','41185','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23363','41185','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23364','41185','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23365','37495','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23366','37496','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23367','37497','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23368','37498','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23369','37499','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23370','37500','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23371','37501','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23372','41186','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23373','41186','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23374','41187','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23375','41188','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23376','41189','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23377','41190','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23378','41191','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23379','41191','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23380','41192','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23381','41193','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23382','41194','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23383','41195','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23384','41195','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23385','41196','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23386','41196','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23387','37509','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23388','37510','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23389','37511','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23390','37512','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23391','37512','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23392','37512','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23393','37513','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23394','37513','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23395','37513','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23396','37514','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23397','37514','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23398','37514','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23399','37515','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23400','37515','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23401','37515','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23402','37516','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23403','37516','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23404','37516','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23405','37517','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23406','37517','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23407','37517','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23408','37518','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23409','37518','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23410','37518','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23411','37519','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23412','37519','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23413','37519','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23414','37520','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23415','37520','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23416','37520','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23417','37521','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23418','37521','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23419','37521','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23420','37522','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23421','37522','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23422','37522','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23423','37523','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23424','37523','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23425','37523','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23426','37524','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23427','37524','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23428','37524','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23429','37525','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23430','37525','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23431','37526','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23432','37526','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23433','37527','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23434','37527','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23435','41198','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23436','41198','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23437','41198','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23438','41199','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23439','41199','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23440','41199','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23441','41200','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23442','41200','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23443','41200','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23444','41201','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23445','41201','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23446','41201','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23447','41202','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23448','41202','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23449','41202','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23450','41203','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23451','41203','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23452','41203','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23453','41204','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23454','41204','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23455','41204','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23456','41205','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23457','41205','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23458','41205','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23459','41206','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23460','41206','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23461','41206','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23462','37549','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23463','37550','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23464','37551','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23465','37552','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23466','37553','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23467','37554','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23468','37555','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23469','41207','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23470','41207','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23471','41208','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23472','41209','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23473','41210','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23474','41211','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23475','41212','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23476','41212','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23477','41213','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23478','41214','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23479','41215','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23480','41216','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23481','41216','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23482','41217','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23483','41217','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23484','37563','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23485','37564','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23486','37565','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23487','37566','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23488','37566','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23489','37566','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23490','37567','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23491','37567','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23492','37567','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23493','37568','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23494','37568','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23495','37568','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23496','37569','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23497','37569','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23498','37569','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23499','37570','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23500','37570','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23501','37570','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23502','37571','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23503','37571','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23504','37571','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23505','37572','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23506','37572','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23507','37572','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23508','37573','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23509','37573','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23510','37573','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23511','37574','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23512','37574','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23513','37574','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23514','37575','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23515','37575','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23516','37575','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23517','37576','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23518','37576','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23519','37576','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23520','37577','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23521','37577','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23522','37577','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23523','37578','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23524','37578','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23525','37578','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23526','37579','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23527','37579','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23528','37580','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23529','37580','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23530','37581','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23531','37581','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23532','41219','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23533','41219','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23534','41219','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23535','41220','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23536','41220','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23537','41220','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23538','41221','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23539','41221','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23540','41221','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23541','41222','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23542','41222','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23543','41222','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23544','41223','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23545','41223','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23546','41223','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23547','41224','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23548','41224','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23549','41224','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23550','41225','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23551','41225','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23552','41225','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23553','41226','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23554','41226','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23555','41226','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23556','41227','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23557','41227','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23558','41227','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23559','37603','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23560','37604','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23561','37605','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23562','37606','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23563','37607','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23564','37608','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23565','37609','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23566','41228','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23567','41228','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23568','41229','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23569','41230','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23570','41231','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23571','41232','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23572','41233','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23573','41233','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23574','41234','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23575','41235','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23576','41236','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23577','41237','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23578','41237','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23579','41238','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23580','41238','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23581','37617','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23582','37618','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23583','37619','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23584','37620','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23585','37620','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23586','37620','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23587','37621','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23588','37621','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23589','37621','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23590','37622','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23591','37622','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23592','37622','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23593','37623','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23594','37623','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23595','37623','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23596','37624','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23597','37624','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23598','37624','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23599','37625','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23600','37625','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23601','37625','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23602','37626','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23603','37626','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23604','37626','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23605','37627','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23606','37627','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23607','37627','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23608','37628','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23609','37628','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23610','37628','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23611','37629','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23612','37629','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23613','37629','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23614','37630','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23615','37630','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23616','37630','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23617','37631','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23618','37631','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23619','37631','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23620','37632','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23621','37632','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23622','37632','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23623','37633','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23624','37633','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23625','37634','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23626','37634','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23627','37635','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23628','37635','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23629','41240','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23630','41240','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23631','41240','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23632','41241','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23633','41241','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23634','41241','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23635','41242','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23636','41242','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23637','41242','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23638','41243','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23639','41243','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23640','41243','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23641','41244','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23642','41244','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23643','41244','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23644','41245','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23645','41245','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23646','41245','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23647','41246','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23648','41246','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23649','41246','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23650','41247','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23651','41247','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23652','41247','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23653','41248','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23654','41248','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23655','41248','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23656','37657','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23657','37658','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23658','37659','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23659','37660','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23660','37661','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23661','37662','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23662','37663','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23663','41249','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23664','41249','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23665','41250','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23666','41251','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23667','41252','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23668','41253','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23669','41254','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23670','41254','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23671','41255','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23672','41256','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23673','41257','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23674','41258','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23675','41258','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23676','41259','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23677','41259','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23678','37671','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23679','37672','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23680','37673','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23681','37674','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23682','37674','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23683','37674','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23684','37675','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23685','37675','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23686','37675','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23687','37676','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23688','37676','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23689','37676','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23690','37677','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23691','37677','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23692','37677','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23693','37678','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23694','37678','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23695','37678','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23696','37679','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23697','37679','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23698','37679','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23699','37680','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23700','37680','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23701','37680','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23702','37681','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23703','37681','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23704','37681','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23705','37682','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23706','37682','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23707','37682','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23708','37683','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23709','37683','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23710','37683','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23711','37684','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23712','37684','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23713','37684','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23714','37685','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23715','37685','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23716','37685','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23717','37686','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23718','37686','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23719','37686','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23720','37687','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23721','37687','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23722','37688','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23723','37688','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23724','37689','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23725','37689','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23726','41261','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23727','41261','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23728','41261','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23729','41262','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23730','41262','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23731','41262','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23732','41263','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23733','41263','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23734','41263','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23735','41264','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23736','41264','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23737','41264','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23738','41265','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23739','41265','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23740','41265','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23741','41266','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23742','41266','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23743','41266','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23744','41267','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23745','41267','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23746','41267','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23747','41268','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23748','41268','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23749','41268','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23750','41269','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23751','41269','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23752','41269','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23753','37711','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23754','37712','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23755','37713','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23756','37714','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23757','37715','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23758','37716','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23759','37717','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23760','41270','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23761','41270','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23762','41271','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23763','41272','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23764','41273','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23765','41274','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23766','41275','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23767','41275','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23768','41276','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23769','41277','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23770','41278','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23771','41279','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23772','41279','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23773','41280','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23774','41280','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23775','37725','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23776','37726','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23777','37727','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23778','37728','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23779','37728','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23780','37728','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23781','37729','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23782','37729','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23783','37729','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23784','37730','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23785','37730','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23786','37730','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23787','37731','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23788','37731','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23789','37731','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23790','37732','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23791','37732','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23792','37732','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23793','37733','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23794','37733','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23795','37733','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23796','37734','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23797','37734','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23798','37734','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23799','37735','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23800','37735','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23801','37735','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23802','37736','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23803','37736','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23804','37736','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23805','37737','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23806','37737','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23807','37737','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23808','37738','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23809','37738','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23810','37738','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23811','37739','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23812','37739','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23813','37739','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23814','37740','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23815','37740','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23816','37740','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23817','37741','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23818','37741','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23819','37742','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23820','37742','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23821','37743','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23822','37743','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23823','41282','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23824','41282','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23825','41282','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23826','41283','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23827','41283','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23828','41283','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23829','41284','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23830','41284','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23831','41284','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23832','41285','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23833','41285','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23834','41285','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23835','41286','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23836','41286','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23837','41286','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23838','41287','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23839','41287','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23840','41287','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23841','41288','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23842','41288','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23843','41288','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23844','41289','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23845','41289','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23846','41289','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23847','41290','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23848','41290','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23849','41290','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23850','37765','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23851','37766','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23852','37767','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23853','37768','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23854','37769','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23855','37770','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23856','37771','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23857','41291','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23858','41291','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23859','41292','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23860','41293','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23861','41294','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23862','41295','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23863','41296','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23864','41296','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23865','41297','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23866','41298','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23867','41299','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23868','41300','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23869','41300','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23870','41301','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23871','41301','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23872','37779','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23873','37780','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23874','37781','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23875','37782','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23876','37782','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23877','37782','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23878','37783','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23879','37783','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23880','37783','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23881','37784','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23882','37784','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23883','37784','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23884','37785','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23885','37785','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23886','37785','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23887','37786','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23888','37786','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23889','37786','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23890','37787','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23891','37787','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23892','37787','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23893','37788','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23894','37788','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23895','37788','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23896','37789','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23897','37789','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23898','37789','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23899','37790','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23900','37790','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23901','37790','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23902','37791','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23903','37791','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23904','37791','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23905','37792','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23906','37792','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23907','37792','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23908','37793','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23909','37793','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23910','37793','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23911','37794','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23912','37794','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23913','37794','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23914','37795','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23915','37795','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23916','37796','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23917','37796','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23918','37797','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23919','37797','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23920','41303','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23921','41303','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23922','41303','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23923','41304','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23924','41304','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23925','41304','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23926','41305','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23927','41305','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23928','41305','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23929','41306','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23930','41306','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23931','41306','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23932','41307','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23933','41307','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23934','41307','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23935','41308','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23936','41308','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23937','41308','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23938','41309','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23939','41309','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23940','41309','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23941','41310','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23942','41310','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23943','41310','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23944','41311','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23945','41311','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23946','41311','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23947','37819','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23948','37820','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23949','37821','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23950','37822','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23951','37823','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23952','37824','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23953','37825','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23954','41312','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23955','41312','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23956','41313','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23957','41314','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23958','41315','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23959','41316','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23960','41317','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23961','41317','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23962','41318','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23963','41319','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23964','41320','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23965','41321','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23966','41321','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23967','41322','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23968','41322','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23969','37833','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23970','37834','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23971','37835','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23972','37836','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23973','37836','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23974','37836','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23975','37837','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23976','37837','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23977','37837','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23978','37838','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23979','37838','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23980','37838','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23981','37839','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23982','37839','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23983','37839','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23984','37840','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23985','37840','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23986','37840','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23987','37841','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23988','37841','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23989','37841','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23990','37842','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23991','37842','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23992','37842','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23993','37843','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23994','37843','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23995','37843','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23996','37844','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23997','37844','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23998','37844','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('23999','37845','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24000','37845','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24001','37845','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24002','37846','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24003','37846','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24004','37846','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24005','37847','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24006','37847','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24007','37847','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24008','37848','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24009','37848','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24010','37848','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24011','37849','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24012','37849','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24013','37850','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24014','37850','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24015','37851','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24016','37851','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24017','41324','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24018','41324','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24019','41324','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24020','41325','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24021','41325','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24022','41325','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24023','41326','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24024','41326','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24025','41326','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24026','41327','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24027','41327','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24028','41327','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24029','41328','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24030','41328','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24031','41328','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24032','41329','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24033','41329','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24034','41329','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24035','41330','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24036','41330','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24037','41330','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24038','41331','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24039','41331','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24040','41331','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24041','41332','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24042','41332','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24043','41332','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24044','37873','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24045','37874','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24046','37875','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24047','37876','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24048','37877','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24049','37878','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24050','37879','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24051','41333','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24052','41333','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24053','41334','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24054','41335','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24055','41336','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24056','41337','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24057','41338','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24058','41338','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24059','41339','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24060','41340','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24061','41341','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24062','41342','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24063','41342','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24064','41343','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24065','41343','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24066','37887','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24067','37888','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24068','37889','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24069','37890','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24070','37890','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24071','37890','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24072','37891','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24073','37891','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24074','37891','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24075','37892','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24076','37892','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24077','37892','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24078','37893','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24079','37893','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24080','37893','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24081','37894','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24082','37894','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24083','37894','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24084','37895','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24085','37895','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24086','37895','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24087','37896','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24088','37896','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24089','37896','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24090','37897','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24091','37897','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24092','37897','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24093','37898','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24094','37898','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24095','37898','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24096','37899','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24097','37899','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24098','37899','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24099','37900','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24100','37900','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24101','37900','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24102','37901','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24103','37901','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24104','37901','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24105','37902','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24106','37902','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24107','37902','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24108','37903','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24109','37903','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24110','37904','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24111','37904','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24112','37905','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24113','37905','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24114','41345','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24115','41345','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24116','41345','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24117','41346','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24118','41346','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24119','41346','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24120','41347','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24121','41347','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24122','41347','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24123','41348','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24124','41348','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24125','41348','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24126','41349','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24127','41349','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24128','41349','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24129','41350','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24130','41350','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24131','41350','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24132','41351','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24133','41351','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24134','41351','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24135','41352','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24136','41352','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24137','41352','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24138','41353','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24139','41353','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24140','41353','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24141','37927','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24142','37928','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24143','37929','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24144','37930','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24145','37931','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24146','37932','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24147','37933','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24148','41354','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24149','41354','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24150','41355','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24151','41356','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24152','41357','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24153','41358','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24154','41359','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24155','41359','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24156','41360','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24157','41361','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24158','41362','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24159','41363','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24160','41363','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24161','41364','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24162','41364','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24163','37941','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24164','37942','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24165','37943','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24166','37944','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24167','37944','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24168','37944','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24169','37945','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24170','37945','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24171','37945','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24172','37946','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24173','37946','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24174','37946','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24175','37947','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24176','37947','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24177','37947','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24178','37948','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24179','37948','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24180','37948','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24181','37949','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24182','37949','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24183','37949','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24184','37950','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24185','37950','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24186','37950','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24187','37951','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24188','37951','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24189','37951','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24190','37952','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24191','37952','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24192','37952','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24193','37953','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24194','37953','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24195','37953','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24196','37954','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24197','37954','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24198','37954','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24199','37955','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24200','37955','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24201','37955','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24202','37956','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24203','37956','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24204','37956','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24205','37957','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24206','37957','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24207','37958','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24208','37958','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24209','37959','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24210','37959','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24211','41366','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24212','41366','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24213','41366','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24214','41367','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24215','41367','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24216','41367','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24217','41368','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24218','41368','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24219','41368','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24220','41369','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24221','41369','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24222','41369','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24223','41370','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24224','41370','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24225','41370','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24226','41371','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24227','41371','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24228','41371','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24229','41372','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24230','41372','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24231','41372','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24232','41373','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24233','41373','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24234','41373','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24235','41374','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24236','41374','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24237','41374','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24238','37981','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24239','37982','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24240','37983','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24241','37984','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24242','37985','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24243','37986','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24244','37987','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24245','41375','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24246','41375','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24247','41376','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24248','41377','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24249','41378','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24250','41379','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24251','41380','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24252','41380','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24253','41381','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24254','41382','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24255','41383','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24256','41384','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24257','41384','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24258','41385','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24259','41385','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24260','37995','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24261','37996','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24262','37997','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24263','37998','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24264','37998','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24265','37998','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24266','37999','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24267','37999','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24268','37999','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24269','38000','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24270','38000','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24271','38000','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24272','38001','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24273','38001','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24274','38001','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24275','38002','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24276','38002','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24277','38002','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24278','38003','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24279','38003','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24280','38003','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24281','38004','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24282','38004','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24283','38004','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24284','38005','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24285','38005','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24286','38005','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24287','38006','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24288','38006','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24289','38006','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24290','38007','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24291','38007','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24292','38007','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24293','38008','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24294','38008','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24295','38008','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24296','38009','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24297','38009','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24298','38009','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24299','38010','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24300','38010','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24301','38010','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24302','38011','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24303','38011','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24304','38012','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24305','38012','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24306','38013','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24307','38013','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24308','41387','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24309','41387','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24310','41387','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24311','41388','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24312','41388','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24313','41388','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24314','41389','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24315','41389','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24316','41389','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24317','41390','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24318','41390','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24319','41390','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24320','41391','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24321','41391','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24322','41391','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24323','41392','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24324','41392','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24325','41392','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24326','41393','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24327','41393','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24328','41393','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24329','41394','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24330','41394','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24331','41394','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24332','41395','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24333','41395','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24334','41395','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24335','38035','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24336','38036','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24337','38037','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24338','38038','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24339','38039','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24340','38040','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24341','38041','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24342','41396','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24343','41396','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24344','41397','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24345','41398','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24346','41399','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24347','41400','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24348','41401','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24349','41401','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24350','41402','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24351','41403','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24352','41404','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24353','41405','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24354','41405','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24355','41406','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24356','41406','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24357','38049','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24358','38050','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24359','38051','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24360','38052','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24361','38052','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24362','38052','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24363','38053','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24364','38053','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24365','38053','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24366','38054','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24367','38054','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24368','38054','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24369','38055','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24370','38055','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24371','38055','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24372','38056','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24373','38056','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24374','38056','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24375','38057','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24376','38057','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24377','38057','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24378','38058','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24379','38058','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24380','38058','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24381','38059','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24382','38059','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24383','38059','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24384','38060','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24385','38060','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24386','38060','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24387','38061','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24388','38061','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24389','38061','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24390','38062','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24391','38062','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24392','38062','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24393','38063','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24394','38063','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24395','38063','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24396','38064','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24397','38064','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24398','38064','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24399','38065','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24400','38065','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24401','38066','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24402','38066','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24403','38067','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24404','38067','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24405','41408','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24406','41408','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24407','41408','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24408','41409','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24409','41409','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24410','41409','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24411','41410','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24412','41410','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24413','41410','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24414','41411','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24415','41411','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24416','41411','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24417','41412','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24418','41412','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24419','41412','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24420','41413','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24421','41413','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24422','41413','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24423','41414','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24424','41414','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24425','41414','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24426','41415','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24427','41415','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24428','41415','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24429','41416','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24430','41416','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24431','41416','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24432','38089','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24433','38090','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24434','38091','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24435','38092','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24436','38093','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24437','38094','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24438','38095','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24439','41417','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24440','41417','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24441','41418','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24442','41419','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24443','41420','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24444','41421','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24445','41422','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24446','41422','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24447','41423','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24448','41424','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24449','41425','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24450','41426','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24451','41426','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24452','41427','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24453','41427','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24454','38103','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24455','38104','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24456','38105','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24457','38106','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24458','38106','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24459','38106','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24460','38107','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24461','38107','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24462','38107','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24463','38108','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24464','38108','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24465','38108','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24466','38109','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24467','38109','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24468','38109','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24469','38110','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24470','38110','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24471','38110','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24472','38111','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24473','38111','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24474','38111','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24475','38112','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24476','38112','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24477','38112','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24478','38113','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24479','38113','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24480','38113','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24481','38114','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24482','38114','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24483','38114','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24484','38115','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24485','38115','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24486','38115','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24487','38116','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24488','38116','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24489','38116','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24490','38117','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24491','38117','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24492','38117','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24493','38118','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24494','38118','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24495','38118','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24496','38119','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24497','38119','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24498','38120','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24499','38120','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24500','38121','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24501','38121','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24502','41429','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24503','41429','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24504','41429','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24505','41430','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24506','41430','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24507','41430','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24508','41431','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24509','41431','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24510','41431','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24511','41432','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24512','41432','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24513','41432','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24514','41433','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24515','41433','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24516','41433','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24517','41434','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24518','41434','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24519','41434','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24520','41435','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24521','41435','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24522','41435','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24523','41436','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24524','41436','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24525','41436','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24526','41437','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24527','41437','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24528','41437','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24529','38143','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24530','38144','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24531','38145','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24532','38146','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24533','38147','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24534','38148','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24535','38149','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24536','41438','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24537','41438','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24538','41439','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24539','41440','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24540','41441','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24541','41442','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24542','41443','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24543','41443','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24544','41444','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24545','41445','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24546','41446','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24547','41447','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24548','41447','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24549','41448','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24550','41448','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24551','38157','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24552','38158','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24553','38159','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24554','38160','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24555','38160','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24556','38160','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24557','38161','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24558','38161','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24559','38161','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24560','38162','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24561','38162','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24562','38162','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24563','38163','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24564','38163','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24565','38163','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24566','38164','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24567','38164','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24568','38164','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24569','38165','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24570','38165','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24571','38165','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24572','38166','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24573','38166','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24574','38166','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24575','38167','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24576','38167','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24577','38167','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24578','38168','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24579','38168','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24580','38168','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24581','38169','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24582','38169','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24583','38169','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24584','38170','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24585','38170','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24586','38170','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24587','38171','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24588','38171','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24589','38171','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24590','38172','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24591','38172','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24592','38172','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24593','38173','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24594','38173','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24595','38174','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24596','38174','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24597','38175','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24598','38175','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24599','41450','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24600','41450','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24601','41450','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24602','41451','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24603','41451','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24604','41451','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24605','41452','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24606','41452','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24607','41452','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24608','41453','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24609','41453','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24610','41453','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24611','41454','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24612','41454','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24613','41454','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24614','41455','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24615','41455','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24616','41455','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24617','41456','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24618','41456','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24619','41456','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24620','41457','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24621','41457','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24622','41457','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24623','41458','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24624','41458','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24625','41458','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24626','38197','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24627','38198','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24628','38199','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24629','38200','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24630','38201','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24631','38202','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24632','38203','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24633','41459','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24634','41459','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24635','41460','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24636','41461','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24637','41462','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24638','41463','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24639','41464','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24640','41464','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24641','41465','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24642','41466','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24643','41467','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24644','41468','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24645','41468','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24646','41469','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24647','41469','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24648','38211','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24649','38212','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24650','38213','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24651','38214','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24652','38214','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24653','38214','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24654','38215','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24655','38215','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24656','38215','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24657','38216','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24658','38216','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24659','38216','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24660','38217','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24661','38217','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24662','38217','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24663','38218','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24664','38218','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24665','38218','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24666','38219','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24667','38219','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24668','38219','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24669','38220','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24670','38220','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24671','38220','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24672','38221','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24673','38221','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24674','38221','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24675','38222','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24676','38222','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24677','38222','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24678','38223','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24679','38223','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24680','38223','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24681','38224','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24682','38224','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24683','38224','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24684','38225','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24685','38225','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24686','38225','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24687','38226','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24688','38226','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24689','38226','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24690','38227','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24691','38227','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24692','38228','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24693','38228','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24694','38229','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24695','38229','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24696','41471','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24697','41471','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24698','41471','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24699','41472','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24700','41472','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24701','41472','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24702','41473','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24703','41473','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24704','41473','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24705','41474','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24706','41474','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24707','41474','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24708','41475','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24709','41475','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24710','41475','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24711','41476','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24712','41476','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24713','41476','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24714','41477','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24715','41477','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24716','41477','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24717','41478','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24718','41478','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24719','41478','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24720','41479','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24721','41479','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24722','41479','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24723','38251','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24724','38252','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24725','38253','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24726','38254','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24727','38255','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24728','38256','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24729','38257','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24730','41480','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24731','41480','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24732','41481','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24733','41482','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24734','41483','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24735','41484','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24736','41485','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24737','41485','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24738','41486','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24739','41487','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24740','41488','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24741','41489','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24742','41489','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24743','41490','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24744','41490','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24745','38265','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24746','38266','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24747','38267','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24748','38268','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24749','38268','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24750','38268','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24751','38269','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24752','38269','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24753','38269','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24754','38270','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24755','38270','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24756','38270','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24757','38271','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24758','38271','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24759','38271','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24760','38272','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24761','38272','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24762','38272','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24763','38273','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24764','38273','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24765','38273','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24766','38274','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24767','38274','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24768','38274','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24769','38275','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24770','38275','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24771','38275','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24772','38276','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24773','38276','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24774','38276','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24775','38277','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24776','38277','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24777','38277','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24778','38278','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24779','38278','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24780','38278','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24781','38279','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24782','38279','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24783','38279','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24784','38280','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24785','38280','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24786','38280','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24787','38281','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24788','38281','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24789','38282','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24790','38282','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24791','38283','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24792','38283','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24793','41492','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24794','41492','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24795','41492','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24796','41493','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24797','41493','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24798','41493','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24799','41494','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24800','41494','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24801','41494','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24802','41495','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24803','41495','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24804','41495','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24805','41496','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24806','41496','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24807','41496','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24808','41497','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24809','41497','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24810','41497','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24811','41498','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24812','41498','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24813','41498','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24814','41499','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24815','41499','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24816','41499','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24817','41500','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24818','41500','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24819','41500','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24820','38305','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24821','38306','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24822','38307','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24823','38308','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24824','38309','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24825','38310','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24826','38311','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24827','41501','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24828','41501','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24829','41502','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24830','41503','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24831','41504','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24832','41505','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24833','41506','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24834','41506','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24835','41507','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24836','41508','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24837','41509','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24838','41510','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24839','41510','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24840','41511','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24841','41511','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24842','38319','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24843','38320','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24844','38321','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24845','38322','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24846','38322','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24847','38322','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24848','38323','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24849','38323','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24850','38323','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24851','38324','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24852','38324','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24853','38324','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24854','38325','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24855','38325','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24856','38325','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24857','38326','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24858','38326','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24859','38326','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24860','38327','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24861','38327','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24862','38327','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24863','38328','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24864','38328','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24865','38328','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24866','38329','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24867','38329','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24868','38329','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24869','38330','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24870','38330','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24871','38330','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24872','38331','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24873','38331','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24874','38331','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24875','38332','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24876','38332','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24877','38332','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24878','38333','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24879','38333','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24880','38333','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24881','38334','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24882','38334','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24883','38334','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24884','38335','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24885','38335','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24886','38336','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24887','38336','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24888','38337','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24889','38337','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24890','41513','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24891','41513','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24892','41513','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24893','41514','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24894','41514','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24895','41514','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24896','41515','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24897','41515','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24898','41515','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24899','41516','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24900','41516','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24901','41516','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24902','41517','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24903','41517','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24904','41517','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24905','41518','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24906','41518','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24907','41518','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24908','41519','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24909','41519','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24910','41519','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24911','41520','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24912','41520','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24913','41520','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24914','41521','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24915','41521','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24916','41521','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24917','38359','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24918','38360','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24919','38361','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24920','38362','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24921','38363','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24922','38364','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24923','38365','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24924','41522','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24925','41522','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24926','41523','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24927','41524','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24928','41525','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24929','41526','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24930','41527','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24931','41527','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24932','41528','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24933','41529','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24934','41530','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24935','41531','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24936','41531','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24937','41532','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24938','41532','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24939','38373','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24940','38374','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24941','38375','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24942','38376','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24943','38376','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24944','38376','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24945','38377','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24946','38377','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24947','38377','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24948','38378','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24949','38378','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24950','38378','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24951','38379','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24952','38379','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24953','38379','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24954','38380','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24955','38380','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24956','38380','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24957','38381','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24958','38381','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24959','38381','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24960','38382','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24961','38382','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24962','38382','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24963','38383','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24964','38383','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24965','38383','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24966','38384','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24967','38384','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24968','38384','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24969','38385','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24970','38385','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24971','38385','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24972','38386','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24973','38386','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24974','38386','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24975','38387','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24976','38387','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24977','38387','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24978','38388','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24979','38388','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24980','38388','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24981','38389','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24982','38389','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24983','38390','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24984','38390','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24985','38391','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24986','38391','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24987','41534','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24988','41534','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24989','41534','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24990','41535','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24991','41535','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24992','41535','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24993','41536','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24994','41536','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24995','41536','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24996','41537','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24997','41537','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24998','41537','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('24999','41538','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25000','41538','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25001','41538','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25002','41539','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25003','41539','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25004','41539','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25005','41540','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25006','41540','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25007','41540','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25008','41541','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25009','41541','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25010','41541','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25011','41542','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25012','41542','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25013','41542','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25014','38413','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25015','38414','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25016','38415','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25017','38416','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25018','38417','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25019','38418','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25020','38419','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25021','41543','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25022','41543','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25023','41544','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25024','41545','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25025','41546','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25026','41547','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25027','41548','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25028','41548','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25029','41549','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25030','41550','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25031','41551','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25032','41552','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25033','41552','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25034','41553','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25035','41553','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25036','38427','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25037','38428','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25038','38429','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25039','38430','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25040','38430','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25041','38430','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25042','38431','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25043','38431','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25044','38431','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25045','38432','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25046','38432','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25047','38432','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25048','38433','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25049','38433','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25050','38433','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25051','38434','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25052','38434','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25053','38434','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25054','38435','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25055','38435','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25056','38435','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25057','38436','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25058','38436','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25059','38436','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25060','38437','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25061','38437','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25062','38437','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25063','38438','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25064','38438','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25065','38438','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25066','38439','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25067','38439','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25068','38439','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25069','38440','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25070','38440','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25071','38440','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25072','38441','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25073','38441','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25074','38441','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25075','38442','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25076','38442','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25077','38442','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25078','38443','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25079','38443','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25080','38444','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25081','38444','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25082','38445','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25083','38445','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25084','41555','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25085','41555','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25086','41555','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25087','41556','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25088','41556','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25089','41556','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25090','41557','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25091','41557','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25092','41557','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25093','41558','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25094','41558','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25095','41558','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25096','41559','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25097','41559','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25098','41559','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25099','41560','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25100','41560','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25101','41560','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25102','41561','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25103','41561','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25104','41561','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25105','41562','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25106','41562','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25107','41562','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25108','41563','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25109','41563','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25110','41563','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25111','38467','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25112','38468','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25113','38469','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25114','38470','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25115','38471','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25116','38472','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25117','38473','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25118','41564','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25119','41564','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25120','41565','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25121','41566','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25122','41567','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25123','41568','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25124','41569','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25125','41569','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25126','41570','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25127','41571','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25128','41572','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25129','41573','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25130','41573','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25131','41574','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25132','41574','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25133','38481','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25134','38482','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25135','38483','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25136','38484','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25137','38484','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25138','38484','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25139','38485','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25140','38485','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25141','38485','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25142','38486','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25143','38486','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25144','38486','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25145','38487','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25146','38487','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25147','38487','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25148','38488','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25149','38488','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25150','38488','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25151','38489','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25152','38489','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25153','38489','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25154','38490','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25155','38490','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25156','38490','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25157','38491','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25158','38491','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25159','38491','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25160','38492','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25161','38492','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25162','38492','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25163','38493','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25164','38493','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25165','38493','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25166','38494','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25167','38494','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25168','38494','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25169','38495','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25170','38495','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25171','38495','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25172','38496','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25173','38496','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25174','38496','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25175','38497','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25176','38497','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25177','38498','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25178','38498','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25179','38499','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25180','38499','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25181','41576','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25182','41576','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25183','41576','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25184','41577','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25185','41577','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25186','41577','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25187','41578','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25188','41578','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25189','41578','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25190','41579','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25191','41579','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25192','41579','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25193','41580','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25194','41580','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25195','41580','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25196','41581','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25197','41581','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25198','41581','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25199','41582','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25200','41582','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25201','41582','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25202','41583','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25203','41583','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25204','41583','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25205','41584','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25206','41584','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25207','41584','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25208','38521','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25209','38522','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25210','38523','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25211','38524','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25212','38525','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25213','38526','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25214','38527','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25215','41585','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25216','41585','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25217','41586','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25218','41587','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25219','41588','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25220','41589','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25221','41590','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25222','41590','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25223','41591','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25224','41592','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25225','41593','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25226','41594','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25227','41594','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25228','41595','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25229','41595','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25230','38535','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25231','38536','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25232','38537','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25233','38538','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25234','38538','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25235','38538','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25236','38539','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25237','38539','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25238','38539','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25239','38540','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25240','38540','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25241','38540','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25242','38541','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25243','38541','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25244','38541','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25245','38542','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25246','38542','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25247','38542','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25248','38543','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25249','38543','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25250','38543','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25251','38544','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25252','38544','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25253','38544','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25254','38545','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25255','38545','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25256','38545','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25257','38546','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25258','38546','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25259','38546','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25260','38547','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25261','38547','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25262','38547','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25263','38548','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25264','38548','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25265','38548','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25266','38549','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25267','38549','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25268','38549','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25269','38550','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25270','38550','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25271','38550','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25272','38551','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25273','38551','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25274','38552','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25275','38552','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25276','38553','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25277','38553','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25278','41597','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25279','41597','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25280','41597','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25281','41598','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25282','41598','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25283','41598','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25284','41599','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25285','41599','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25286','41599','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25287','41600','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25288','41600','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25289','41600','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25290','41601','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25291','41601','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25292','41601','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25293','41602','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25294','41602','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25295','41602','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25296','41603','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25297','41603','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25298','41603','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25299','41604','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25300','41604','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25301','41604','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25302','41605','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25303','41605','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25304','41605','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25305','38575','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25306','38576','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25307','38577','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25308','38578','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25309','38579','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25310','38580','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25311','38581','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25312','41606','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25313','41606','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25314','41607','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25315','41608','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25316','41609','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25317','41610','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25318','41611','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25319','41611','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25320','41612','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25321','41613','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25322','41614','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25323','41615','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25324','41615','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25325','41616','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25326','41616','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25327','38589','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25328','38590','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25329','38591','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25330','38592','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25331','38592','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25332','38592','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25333','38593','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25334','38593','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25335','38593','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25336','38594','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25337','38594','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25338','38594','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25339','38595','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25340','38595','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25341','38595','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25342','38596','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25343','38596','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25344','38596','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25345','38597','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25346','38597','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25347','38597','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25348','38598','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25349','38598','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25350','38598','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25351','38599','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25352','38599','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25353','38599','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25354','38600','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25355','38600','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25356','38600','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25357','38601','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25358','38601','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25359','38601','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25360','38602','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25361','38602','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25362','38602','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25363','38603','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25364','38603','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25365','38603','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25366','38604','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25367','38604','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25368','38604','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25369','38605','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25370','38605','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25371','38606','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25372','38606','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25373','38607','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25374','38607','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25375','41618','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25376','41618','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25377','41618','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25378','41619','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25379','41619','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25380','41619','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25381','41620','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25382','41620','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25383','41620','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25384','41621','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25385','41621','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25386','41621','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25387','41622','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25388','41622','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25389','41622','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25390','41623','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25391','41623','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25392','41623','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25393','41624','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25394','41624','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25395','41624','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25396','41625','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25397','41625','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25398','41625','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25399','41626','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25400','41626','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25401','41626','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25402','38629','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25403','38630','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25404','38631','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25405','38632','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25406','38633','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25407','38634','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25408','38635','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25409','41627','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25410','41627','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25411','41628','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25412','41629','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25413','41630','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25414','41631','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25415','41632','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25416','41632','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25417','41633','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25418','41634','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25419','41635','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25420','41636','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25421','41636','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25422','41637','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25423','41637','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25424','38643','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25425','38644','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25426','38645','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25427','38646','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25428','38646','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25429','38646','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25430','38647','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25431','38647','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25432','38647','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25433','38648','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25434','38648','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25435','38648','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25436','38649','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25437','38649','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25438','38649','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25439','38650','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25440','38650','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25441','38650','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25442','38651','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25443','38651','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25444','38651','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25445','38652','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25446','38652','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25447','38652','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25448','38653','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25449','38653','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25450','38653','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25451','38654','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25452','38654','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25453','38654','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25454','38655','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25455','38655','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25456','38655','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25457','38656','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25458','38656','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25459','38656','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25460','38657','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25461','38657','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25462','38657','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25463','38658','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25464','38658','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25465','38658','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25466','38659','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25467','38659','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25468','38660','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25469','38660','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25470','38661','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25471','38661','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25472','41639','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25473','41639','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25474','41639','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25475','41640','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25476','41640','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25477','41640','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25478','41641','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25479','41641','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25480','41641','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25481','41642','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25482','41642','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25483','41642','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25484','41643','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25485','41643','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25486','41643','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25487','41644','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25488','41644','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25489','41644','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25490','41645','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25491','41645','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25492','41645','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25493','41646','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25494','41646','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25495','41646','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25496','41647','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25497','41647','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25498','41647','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25499','38683','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25500','38684','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25501','38685','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25502','38686','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25503','38687','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25504','38688','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25505','38689','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25506','41648','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25507','41648','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25508','41649','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25509','41650','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25510','41651','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25511','41652','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25512','41653','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25513','41653','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25514','41654','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25515','41655','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25516','41656','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25517','41657','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25518','41657','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25519','41658','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25520','41658','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25521','38697','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25522','38698','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25523','38699','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25524','38700','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25525','38700','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25526','38700','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25527','38701','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25528','38701','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25529','38701','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25530','38702','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25531','38702','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25532','38702','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25533','38703','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25534','38703','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25535','38703','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25536','38704','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25537','38704','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25538','38704','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25539','38705','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25540','38705','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25541','38705','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25542','38706','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25543','38706','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25544','38706','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25545','38707','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25546','38707','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25547','38707','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25548','38708','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25549','38708','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25550','38708','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25551','38709','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25552','38709','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25553','38709','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25554','38710','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25555','38710','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25556','38710','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25557','38711','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25558','38711','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25559','38711','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25560','38712','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25561','38712','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25562','38712','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25563','38713','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25564','38713','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25565','38714','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25566','38714','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25567','38715','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25568','38715','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25569','41660','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25570','41660','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25571','41660','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25572','41661','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25573','41661','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25574','41661','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25575','41662','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25576','41662','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25577','41662','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25578','41663','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25579','41663','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25580','41663','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25581','41664','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25582','41664','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25583','41664','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25584','41665','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25585','41665','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25586','41665','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25587','41666','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25588','41666','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25589','41666','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25590','41667','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25591','41667','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25592','41667','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25593','41668','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25594','41668','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25595','41668','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25596','38737','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25597','38738','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25598','38739','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25599','38740','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25600','38741','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25601','38742','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25602','38743','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25603','41669','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25604','41669','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25605','41670','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25606','41671','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25607','41672','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25608','41673','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25609','41674','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25610','41674','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25611','41675','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25612','41676','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25613','41677','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25614','41678','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25615','41678','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25616','41679','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25617','41679','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25618','38751','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25619','38752','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25620','38753','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25621','38754','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25622','38754','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25623','38754','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25624','38755','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25625','38755','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25626','38755','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25627','38756','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25628','38756','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25629','38756','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25630','38757','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25631','38757','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25632','38757','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25633','38758','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25634','38758','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25635','38758','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25636','38759','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25637','38759','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25638','38759','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25639','38760','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25640','38760','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25641','38760','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25642','38761','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25643','38761','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25644','38761','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25645','38762','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25646','38762','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25647','38762','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25648','38763','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25649','38763','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25650','38763','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25651','38764','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25652','38764','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25653','38764','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25654','38765','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25655','38765','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25656','38765','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25657','38766','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25658','38766','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25659','38766','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25660','38767','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25661','38767','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25662','38768','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25663','38768','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25664','38769','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25665','38769','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25666','41681','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25667','41681','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25668','41681','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25669','41682','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25670','41682','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25671','41682','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25672','41683','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25673','41683','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25674','41683','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25675','41684','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25676','41684','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25677','41684','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25678','41685','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25679','41685','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25680','41685','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25681','41686','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25682','41686','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25683','41686','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25684','41687','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25685','41687','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25686','41687','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25687','41688','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25688','41688','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25689','41688','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25690','41689','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25691','41689','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25692','41689','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25693','38791','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25694','38792','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25695','38793','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25696','38794','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25697','38795','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25698','38796','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25699','38797','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25700','41690','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25701','41690','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25702','41691','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25703','41692','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25704','41693','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25705','41694','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25706','41695','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25707','41695','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25708','41696','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25709','41697','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25710','41698','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25711','41699','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25712','41699','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25713','41700','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25714','41700','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25715','38805','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25716','38806','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25717','38807','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25718','38808','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25719','38808','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25720','38808','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25721','38809','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25722','38809','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25723','38809','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25724','38810','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25725','38810','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25726','38810','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25727','38811','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25728','38811','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25729','38811','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25730','38812','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25731','38812','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25732','38812','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25733','38813','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25734','38813','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25735','38813','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25736','38814','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25737','38814','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25738','38814','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25739','38815','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25740','38815','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25741','38815','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25742','38816','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25743','38816','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25744','38816','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25745','38817','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25746','38817','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25747','38817','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25748','38818','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25749','38818','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25750','38818','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25751','38819','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25752','38819','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25753','38819','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25754','38820','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25755','38820','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25756','38820','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25757','38821','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25758','38821','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25759','38822','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25760','38822','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25761','38823','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25762','38823','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25763','41702','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25764','41702','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25765','41702','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25766','41703','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25767','41703','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25768','41703','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25769','41704','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25770','41704','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25771','41704','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25772','41705','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25773','41705','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25774','41705','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25775','41706','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25776','41706','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25777','41706','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25778','41707','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25779','41707','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25780','41707','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25781','41708','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25782','41708','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25783','41708','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25784','41709','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25785','41709','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25786','41709','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25787','41710','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25788','41710','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25789','41710','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25790','38845','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25791','38846','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25792','38847','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25793','38848','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25794','38849','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25795','38850','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25796','38851','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25797','41711','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25798','41711','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25799','41712','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25800','41713','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25801','41714','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25802','41715','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25803','41716','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25804','41716','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25805','41717','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25806','41718','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25807','41719','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25808','41720','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25809','41720','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25810','41721','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25811','41721','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25812','38859','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25813','38860','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25814','38861','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25815','38862','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25816','38862','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25817','38862','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25818','38863','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25819','38863','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25820','38863','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25821','38864','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25822','38864','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25823','38864','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25824','38865','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25825','38865','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25826','38865','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25827','38866','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25828','38866','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25829','38866','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25830','38867','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25831','38867','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25832','38867','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25833','38868','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25834','38868','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25835','38868','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25836','38869','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25837','38869','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25838','38869','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25839','38870','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25840','38870','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25841','38870','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25842','38871','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25843','38871','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25844','38871','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25845','38872','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25846','38872','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25847','38872','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25848','38873','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25849','38873','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25850','38873','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25851','38874','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25852','38874','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25853','38874','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25854','38875','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25855','38875','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25856','38876','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25857','38876','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25858','38877','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25859','38877','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25860','41723','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25861','41723','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25862','41723','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25863','41724','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25864','41724','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25865','41724','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25866','41725','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25867','41725','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25868','41725','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25869','41726','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25870','41726','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25871','41726','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25872','41727','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25873','41727','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25874','41727','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25875','41728','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25876','41728','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25877','41728','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25878','41729','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25879','41729','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25880','41729','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25881','41730','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25882','41730','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25883','41730','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25884','41731','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25885','41731','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25886','41731','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25887','38899','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25888','38900','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25889','38901','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25890','38902','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25891','38903','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25892','38904','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25893','38905','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25894','41732','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25895','41732','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25896','41733','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25897','41734','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25898','41735','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25899','41736','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25900','41737','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25901','41737','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25902','41738','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25903','41739','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25904','41740','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25905','41741','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25906','41741','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25907','41742','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25908','41742','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25909','38913','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25910','38914','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25911','38915','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25912','38916','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25913','38916','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25914','38916','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25915','38917','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25916','38917','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25917','38917','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25918','38918','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25919','38918','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25920','38918','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25921','38919','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25922','38919','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25923','38919','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25924','38920','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25925','38920','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25926','38920','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25927','38921','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25928','38921','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25929','38921','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25930','38922','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25931','38922','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25932','38922','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25933','38923','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25934','38923','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25935','38923','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25936','38924','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25937','38924','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25938','38924','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25939','38925','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25940','38925','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25941','38925','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25942','38926','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25943','38926','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25944','38926','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25945','38927','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25946','38927','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25947','38927','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25948','38928','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25949','38928','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25950','38928','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25951','38929','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25952','38929','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25953','38930','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25954','38930','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25955','38931','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25956','38931','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25957','41744','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25958','41744','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25959','41744','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25960','41745','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25961','41745','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25962','41745','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25963','41746','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25964','41746','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25965','41746','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25966','41747','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25967','41747','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25968','41747','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25969','41748','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25970','41748','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25971','41748','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25972','41749','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25973','41749','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25974','41749','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25975','41750','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25976','41750','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25977','41750','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25978','41751','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25979','41751','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25980','41751','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25981','41752','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25982','41752','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25983','41752','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25984','38953','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25985','38954','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25986','38955','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25987','38956','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25988','38957','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25989','38958','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25990','38959','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25991','41753','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25992','41753','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25993','41754','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25994','41755','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25995','41756','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25996','41757','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25997','41758','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25998','41758','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('25999','41759','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26000','41760','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26001','41761','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26002','41762','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26003','41762','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26004','41763','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26005','41763','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26006','38967','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26007','38968','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26008','38969','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26009','38970','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26010','38970','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26011','38970','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26012','38971','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26013','38971','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26014','38971','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26015','38972','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26016','38972','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26017','38972','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26018','38973','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26019','38973','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26020','38973','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26021','38974','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26022','38974','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26023','38974','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26024','38975','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26025','38975','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26026','38975','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26027','38976','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26028','38976','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26029','38976','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26030','38977','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26031','38977','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26032','38977','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26033','38978','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26034','38978','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26035','38978','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26036','38979','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26037','38979','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26038','38979','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26039','38980','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26040','38980','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26041','38980','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26042','38981','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26043','38981','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26044','38981','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26045','38982','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26046','38982','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26047','38982','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26048','38983','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26049','38983','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26050','38984','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26051','38984','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26052','38985','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26053','38985','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26054','41765','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26055','41765','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26056','41765','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26057','41766','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26058','41766','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26059','41766','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26060','41767','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26061','41767','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26062','41767','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26063','41768','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26064','41768','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26065','41768','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26066','41769','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26067','41769','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26068','41769','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26069','41770','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26070','41770','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26071','41770','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26072','41771','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26073','41771','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26074','41771','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26075','41772','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26076','41772','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26077','41772','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26078','41773','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26079','41773','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26080','41773','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26081','39007','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26082','39008','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26083','39009','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26084','39010','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26085','39011','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26086','39012','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26087','39013','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26088','41774','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26089','41774','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26090','41775','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26091','41776','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26092','41777','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26093','41778','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26094','41779','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26095','41779','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26096','41780','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26097','41781','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26098','41782','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26099','41783','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26100','41783','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26101','41784','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26102','41784','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26103','39021','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26104','39022','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26105','39023','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26106','39024','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26107','39024','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26108','39024','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26109','39025','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26110','39025','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26111','39025','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26112','39026','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26113','39026','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26114','39026','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26115','39027','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26116','39027','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26117','39027','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26118','39028','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26119','39028','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26120','39028','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26121','39029','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26122','39029','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26123','39029','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26124','39030','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26125','39030','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26126','39030','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26127','39031','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26128','39031','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26129','39031','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26130','39032','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26131','39032','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26132','39032','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26133','39033','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26134','39033','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26135','39033','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26136','39034','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26137','39034','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26138','39034','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26139','39035','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26140','39035','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26141','39035','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26142','39036','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26143','39036','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26144','39036','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26145','39037','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26146','39037','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26147','39038','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26148','39038','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26149','39039','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26150','39039','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26151','41786','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26152','41786','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26153','41786','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26154','41787','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26155','41787','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26156','41787','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26157','41788','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26158','41788','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26159','41788','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26160','41789','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26161','41789','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26162','41789','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26163','41790','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26164','41790','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26165','41790','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26166','41791','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26167','41791','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26168','41791','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26169','41792','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26170','41792','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26171','41792','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26172','41793','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26173','41793','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26174','41793','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26175','41794','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26176','41794','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26177','41794','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26178','39061','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26179','39062','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26180','39063','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26181','39064','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26182','39065','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26183','39066','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26184','39067','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26185','41795','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26186','41795','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26187','41796','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26188','41797','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26189','41798','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26190','41799','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26191','41800','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26192','41800','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26193','41801','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26194','41802','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26195','41803','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26196','41804','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26197','41804','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26198','41805','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26199','41805','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26200','39075','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26201','39076','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26202','39077','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26203','39078','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26204','39078','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26205','39078','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26206','39079','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26207','39079','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26208','39079','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26209','39080','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26210','39080','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26211','39080','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26212','39081','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26213','39081','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26214','39081','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26215','39082','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26216','39082','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26217','39082','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26218','39083','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26219','39083','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26220','39083','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26221','39084','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26222','39084','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26223','39084','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26224','39085','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26225','39085','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26226','39085','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26227','39086','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26228','39086','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26229','39086','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26230','39087','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26231','39087','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26232','39087','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26233','39088','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26234','39088','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26235','39088','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26236','39089','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26237','39089','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26238','39089','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26239','39090','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26240','39090','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26241','39090','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26242','39091','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26243','39091','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26244','39092','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26245','39092','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26246','39093','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26247','39093','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26248','41807','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26249','41807','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26250','41807','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26251','41808','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26252','41808','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26253','41808','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26254','41809','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26255','41809','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26256','41809','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26257','41810','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26258','41810','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26259','41810','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26260','41811','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26261','41811','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26262','41811','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26263','41812','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26264','41812','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26265','41812','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26266','41813','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26267','41813','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26268','41813','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26269','41814','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26270','41814','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26271','41814','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26272','41815','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26273','41815','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26274','41815','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26275','39115','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26276','39116','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26277','39117','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26278','39118','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26279','39119','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26280','39120','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26281','39121','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26282','41816','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26283','41816','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26284','41817','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26285','41818','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26286','41819','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26287','41820','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26288','41821','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26289','41821','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26290','41822','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26291','41823','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26292','41824','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26293','41825','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26294','41825','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26295','41826','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26296','41826','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26297','39129','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26298','39130','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26299','39131','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26300','39132','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26301','39132','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26302','39132','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26303','39133','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26304','39133','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26305','39133','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26306','39134','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26307','39134','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26308','39134','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26309','39135','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26310','39135','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26311','39135','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26312','39136','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26313','39136','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26314','39136','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26315','39137','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26316','39137','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26317','39137','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26318','39138','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26319','39138','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26320','39138','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26321','39139','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26322','39139','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26323','39139','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26324','39140','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26325','39140','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26326','39140','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26327','39141','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26328','39141','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26329','39141','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26330','39142','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26331','39142','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26332','39142','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26333','39143','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26334','39143','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26335','39143','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26336','39144','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26337','39144','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26338','39144','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26339','39145','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26340','39145','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26341','39146','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26342','39146','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26343','39147','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26344','39147','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26345','41828','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26346','41828','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26347','41828','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26348','41829','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26349','41829','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26350','41829','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26351','41830','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26352','41830','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26353','41830','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26354','41831','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26355','41831','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26356','41831','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26357','41832','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26358','41832','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26359','41832','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26360','41833','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26361','41833','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26362','41833','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26363','41834','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26364','41834','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26365','41834','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26366','41835','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26367','41835','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26368','41835','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26369','41836','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26370','41836','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26371','41836','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26372','39169','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26373','39170','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26374','39171','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26375','39172','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26376','39173','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26377','39174','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26378','39175','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26379','41837','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26380','41837','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26381','41838','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26382','41839','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26383','41840','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26384','41841','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26385','41842','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26386','41842','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26387','41843','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26388','41844','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26389','41845','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26390','41846','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26391','41846','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26392','41847','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26393','41847','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26394','39183','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26395','39184','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26396','39185','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26397','39186','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26398','39186','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26399','39186','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26400','39187','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26401','39187','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26402','39187','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26403','39188','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26404','39188','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26405','39188','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26406','39189','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26407','39189','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26408','39189','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26409','39190','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26410','39190','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26411','39190','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26412','39191','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26413','39191','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26414','39191','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26415','39192','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26416','39192','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26417','39192','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26418','39193','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26419','39193','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26420','39193','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26421','39194','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26422','39194','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26423','39194','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26424','39195','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26425','39195','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26426','39195','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26427','39196','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26428','39196','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26429','39196','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26430','39197','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26431','39197','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26432','39197','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26433','39198','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26434','39198','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26435','39198','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26436','39199','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26437','39199','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26438','39200','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26439','39200','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26440','39201','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26441','39201','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26442','41849','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26443','41849','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26444','41849','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26445','41850','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26446','41850','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26447','41850','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26448','41851','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26449','41851','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26450','41851','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26451','41852','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26452','41852','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26453','41852','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26454','41853','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26455','41853','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26456','41853','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26457','41854','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26458','41854','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26459','41854','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26460','41855','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26461','41855','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26462','41855','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26463','41856','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26464','41856','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26465','41856','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26466','41857','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26467','41857','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26468','41857','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26469','39223','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26470','39224','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26471','39225','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26472','39226','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26473','39227','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26474','39228','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26475','39229','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26476','41858','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26477','41858','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26478','41859','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26479','41860','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26480','41861','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26481','41862','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26482','41863','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26483','41863','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26484','41864','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26485','41865','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26486','41866','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26487','41867','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26488','41867','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26489','41868','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26490','41868','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26491','39237','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26492','39238','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26493','39239','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26494','39240','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26495','39240','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26496','39240','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26497','39241','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26498','39241','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26499','39241','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26500','39242','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26501','39242','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26502','39242','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26503','39243','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26504','39243','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26505','39243','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26506','39244','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26507','39244','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26508','39244','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26509','39245','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26510','39245','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26511','39245','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26512','39246','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26513','39246','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26514','39246','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26515','39247','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26516','39247','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26517','39247','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26518','39248','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26519','39248','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26520','39248','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26521','39249','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26522','39249','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26523','39249','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26524','39250','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26525','39250','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26526','39250','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26527','39251','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26528','39251','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26529','39251','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26530','39252','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26531','39252','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26532','39252','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26533','39253','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26534','39253','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26535','39254','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26536','39254','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26537','39255','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26538','39255','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26539','41870','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26540','41870','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26541','41870','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26542','41871','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26543','41871','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26544','41871','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26545','41872','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26546','41872','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26547','41872','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26548','41873','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26549','41873','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26550','41873','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26551','41874','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26552','41874','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26553','41874','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26554','41875','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26555','41875','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26556','41875','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26557','41876','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26558','41876','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26559','41876','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26560','41877','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26561','41877','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26562','41877','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26563','41878','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26564','41878','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26565','41878','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26566','39277','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26567','39278','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26568','39279','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26569','39280','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26570','39281','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26571','39282','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26572','39283','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26573','41879','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26574','41879','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26575','41880','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26576','41881','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26577','41882','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26578','41883','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26579','41884','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26580','41884','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26581','41885','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26582','41886','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26583','41887','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26584','41888','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26585','41888','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26586','41889','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26587','41889','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26588','39291','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26589','39292','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26590','39293','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26591','39294','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26592','39294','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26593','39294','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26594','39295','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26595','39295','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26596','39295','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26597','39296','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26598','39296','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26599','39296','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26600','39297','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26601','39297','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26602','39297','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26603','39298','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26604','39298','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26605','39298','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26606','39299','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26607','39299','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26608','39299','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26609','39300','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26610','39300','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26611','39300','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26612','39301','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26613','39301','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26614','39301','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26615','39302','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26616','39302','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26617','39302','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26618','39303','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26619','39303','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26620','39303','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26621','39304','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26622','39304','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26623','39304','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26624','39305','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26625','39305','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26626','39305','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26627','39306','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26628','39306','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26629','39306','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26630','39307','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26631','39307','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26632','39308','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26633','39308','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26634','39309','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26635','39309','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26636','41891','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26637','41891','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26638','41891','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26639','41892','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26640','41892','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26641','41892','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26642','41893','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26643','41893','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26644','41893','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26645','41894','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26646','41894','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26647','41894','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26648','41895','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26649','41895','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26650','41895','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26651','41896','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26652','41896','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26653','41896','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26654','41897','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26655','41897','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26656','41897','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26657','41898','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26658','41898','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26659','41898','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26660','41899','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26661','41899','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26662','41899','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26663','39331','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26664','39332','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26665','39333','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26666','39334','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26667','39335','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26668','39336','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26669','39337','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26670','41900','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26671','41900','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26672','41901','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26673','41902','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26674','41903','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26675','41904','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26676','41905','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26677','41905','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26678','41906','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26679','41907','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26680','41908','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26681','41909','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26682','41909','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26683','41910','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26684','41910','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26685','39345','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26686','39346','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26687','39347','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26688','39348','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26689','39348','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26690','39348','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26691','39349','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26692','39349','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26693','39349','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26694','39350','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26695','39350','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26696','39350','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26697','39351','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26698','39351','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26699','39351','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26700','39352','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26701','39352','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26702','39352','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26703','39353','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26704','39353','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26705','39353','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26706','39354','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26707','39354','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26708','39354','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26709','39355','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26710','39355','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26711','39355','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26712','39356','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26713','39356','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26714','39356','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26715','39357','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26716','39357','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26717','39357','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26718','39358','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26719','39358','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26720','39358','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26721','39359','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26722','39359','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26723','39359','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26724','39360','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26725','39360','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26726','39360','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26727','39361','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26728','39361','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26729','39362','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26730','39362','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26731','39363','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26732','39363','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26733','41912','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26734','41912','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26735','41912','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26736','41913','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26737','41913','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26738','41913','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26739','41914','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26740','41914','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26741','41914','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26742','41915','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26743','41915','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26744','41915','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26745','41916','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26746','41916','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26747','41916','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26748','41917','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26749','41917','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26750','41917','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26751','41918','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26752','41918','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26753','41918','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26754','41919','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26755','41919','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26756','41919','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26757','41920','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26758','41920','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26759','41920','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26760','39385','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26761','39386','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26762','39387','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26763','39388','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26764','39389','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26765','39390','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26766','39391','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26767','41921','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26768','41921','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26769','41922','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26770','41923','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26771','41924','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26772','41925','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26773','41926','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26774','41926','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26775','41927','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26776','41928','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26777','41929','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26778','41930','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26779','41930','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26780','41931','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26781','41931','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26782','39399','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26783','39400','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26784','39401','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26785','39402','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26786','39402','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26787','39402','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26788','39403','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26789','39403','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26790','39403','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26791','39404','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26792','39404','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26793','39404','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26794','39405','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26795','39405','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26796','39405','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26797','39406','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26798','39406','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26799','39406','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26800','39407','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26801','39407','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26802','39407','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26803','39408','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26804','39408','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26805','39408','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26806','39409','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26807','39409','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26808','39409','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26809','39410','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26810','39410','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26811','39410','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26812','39411','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26813','39411','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26814','39411','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26815','39412','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26816','39412','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26817','39412','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26818','39413','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26819','39413','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26820','39413','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26821','39414','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26822','39414','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26823','39414','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26824','39415','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26825','39415','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26826','39416','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26827','39416','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26828','39417','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26829','39417','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26830','41933','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26831','41933','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26832','41933','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26833','41934','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26834','41934','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26835','41934','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26836','41935','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26837','41935','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26838','41935','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26839','41936','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26840','41936','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26841','41936','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26842','41937','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26843','41937','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26844','41937','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26845','41938','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26846','41938','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26847','41938','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26848','41939','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26849','41939','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26850','41939','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26851','41940','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26852','41940','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26853','41940','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26854','41941','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26855','41941','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26856','41941','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26857','39439','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26858','39440','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26859','39441','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26860','39442','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26861','39443','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26862','39444','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26863','39445','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26864','41942','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26865','41942','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26866','41943','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26867','41944','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26868','41945','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26869','41946','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26870','41947','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26871','41947','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26872','41948','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26873','41949','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26874','41950','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26875','41951','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26876','41951','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26877','41952','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26878','41952','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26879','39453','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26880','39454','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26881','39455','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26882','39456','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26883','39456','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26884','39456','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26885','39457','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26886','39457','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26887','39457','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26888','39458','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26889','39458','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26890','39458','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26891','39459','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26892','39459','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26893','39459','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26894','39460','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26895','39460','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26896','39460','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26897','39461','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26898','39461','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26899','39461','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26900','39462','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26901','39462','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26902','39462','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26903','39463','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26904','39463','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26905','39463','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26906','39464','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26907','39464','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26908','39464','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26909','39465','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26910','39465','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26911','39465','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26912','39466','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26913','39466','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26914','39466','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26915','39467','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26916','39467','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26917','39467','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26918','39468','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26919','39468','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26920','39468','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26921','39469','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26922','39469','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26923','39470','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26924','39470','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26925','39471','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26926','39471','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26927','41954','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26928','41954','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26929','41954','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26930','41955','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26931','41955','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26932','41955','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26933','41956','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26934','41956','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26935','41956','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26936','41957','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26937','41957','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26938','41957','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26939','41958','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26940','41958','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26941','41958','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26942','41959','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26943','41959','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26944','41959','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26945','41960','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26946','41960','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26947','41960','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26948','41961','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26949','41961','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26950','41961','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26951','41962','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26952','41962','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26953','41962','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26954','39493','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26955','39494','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26956','39495','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26957','39496','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26958','39497','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26959','39498','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26960','39499','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26961','41963','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26962','41963','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26963','41964','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26964','41965','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26965','41966','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26966','41967','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26967','41968','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26968','41968','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26969','41969','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26970','41970','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26971','41971','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26972','41972','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26973','41972','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26974','41973','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26975','41973','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26976','39507','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26977','39508','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26978','39509','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26979','39510','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26980','39510','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26981','39510','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26982','39511','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26983','39511','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26984','39511','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26985','39512','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26986','39512','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26987','39512','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26988','39513','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26989','39513','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26990','39513','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26991','39514','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26992','39514','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26993','39514','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26994','39515','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26995','39515','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26996','39515','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26997','39516','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26998','39516','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('26999','39516','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27000','39517','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27001','39517','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27002','39517','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27003','39518','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27004','39518','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27005','39518','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27006','39519','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27007','39519','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27008','39519','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27009','39520','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27010','39520','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27011','39520','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27012','39521','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27013','39521','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27014','39521','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27015','39522','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27016','39522','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27017','39522','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27018','39523','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27019','39523','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27020','39524','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27021','39524','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27022','39525','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27023','39525','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27024','41975','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27025','41975','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27026','41975','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27027','41976','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27028','41976','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27029','41976','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27030','41977','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27031','41977','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27032','41977','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27033','41978','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27034','41978','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27035','41978','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27036','41979','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27037','41979','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27038','41979','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27039','41980','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27040','41980','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27041','41980','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27042','41981','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27043','41981','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27044','41981','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27045','41982','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27046','41982','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27047','41982','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27048','41983','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27049','41983','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27050','41983','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27051','39547','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27052','39548','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27053','39549','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27054','39550','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27055','39551','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27056','39552','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27057','39553','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27058','41984','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27059','41984','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27060','41985','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27061','41986','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27062','41987','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27063','41988','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27064','41989','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27065','41989','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27066','41990','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27067','41991','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27068','41992','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27069','41993','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27070','41993','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27071','41994','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27072','41994','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27073','39561','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27074','39562','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27075','39563','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27076','39564','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27077','39564','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27078','39564','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27079','39565','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27080','39565','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27081','39565','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27082','39566','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27083','39566','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27084','39566','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27085','39567','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27086','39567','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27087','39567','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27088','39568','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27089','39568','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27090','39568','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27091','39569','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27092','39569','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27093','39569','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27094','39570','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27095','39570','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27096','39570','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27097','39571','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27098','39571','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27099','39571','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27100','39572','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27101','39572','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27102','39572','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27103','39573','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27104','39573','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27105','39573','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27106','39574','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27107','39574','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27108','39574','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27109','39575','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27110','39575','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27111','39575','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27112','39576','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27113','39576','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27114','39576','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27115','39577','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27116','39577','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27117','39578','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27118','39578','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27119','39579','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27120','39579','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27121','41996','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27122','41996','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27123','41996','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27124','41997','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27125','41997','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27126','41997','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27127','41998','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27128','41998','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27129','41998','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27130','41999','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27131','41999','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27132','41999','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27133','42000','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27134','42000','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27135','42000','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27136','42001','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27137','42001','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27138','42001','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27139','42002','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27140','42002','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27141','42002','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27142','42003','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27143','42003','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27144','42003','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27145','42004','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27146','42004','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27147','42004','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27148','39601','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27149','39602','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27150','39603','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27151','39604','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27152','39605','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27153','39606','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27154','39607','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27155','42005','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27156','42005','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27157','42006','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27158','42007','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27159','42008','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27160','42009','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27161','42010','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27162','42010','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27163','42011','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27164','42012','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27165','42013','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27166','42014','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27167','42014','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27168','42015','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27169','42015','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27170','39615','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27171','39616','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27172','39617','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27173','39618','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27174','39618','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27175','39618','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27176','39619','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27177','39619','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27178','39619','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27179','39620','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27180','39620','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27181','39620','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27182','39621','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27183','39621','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27184','39621','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27185','39622','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27186','39622','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27187','39622','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27188','39623','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27189','39623','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27190','39623','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27191','39624','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27192','39624','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27193','39624','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27194','39625','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27195','39625','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27196','39625','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27197','39626','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27198','39626','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27199','39626','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27200','39627','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27201','39627','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27202','39627','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27203','39628','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27204','39628','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27205','39628','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27206','39629','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27207','39629','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27208','39629','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27209','39630','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27210','39630','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27211','39630','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27212','39631','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27213','39631','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27214','39632','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27215','39632','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27216','39633','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27217','39633','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27218','42017','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27219','42017','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27220','42017','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27221','42018','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27222','42018','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27223','42018','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27224','42019','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27225','42019','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27226','42019','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27227','42020','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27228','42020','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27229','42020','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27230','42021','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27231','42021','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27232','42021','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27233','42022','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27234','42022','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27235','42022','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27236','42023','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27237','42023','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27238','42023','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27239','42024','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27240','42024','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27241','42024','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27242','42025','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27243','42025','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27244','42025','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27245','39655','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27246','39656','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27247','39657','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27248','39658','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27249','39659','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27250','39660','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27251','39661','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27252','42026','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27253','42026','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27254','42027','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27255','42028','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27256','42029','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27257','42030','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27258','42031','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27259','42031','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27260','42032','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27261','42033','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27262','42034','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27263','42035','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27264','42035','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27265','42036','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27266','42036','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27267','39669','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27268','39670','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27269','39671','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27270','39672','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27271','39672','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27272','39672','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27273','39673','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27274','39673','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27275','39673','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27276','39674','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27277','39674','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27278','39674','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27279','39675','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27280','39675','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27281','39675','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27282','39676','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27283','39676','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27284','39676','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27285','39677','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27286','39677','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27287','39677','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27288','39678','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27289','39678','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27290','39678','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27291','39679','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27292','39679','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27293','39679','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27294','39680','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27295','39680','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27296','39680','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27297','39681','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27298','39681','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27299','39681','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27300','39682','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27301','39682','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27302','39682','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27303','39683','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27304','39683','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27305','39683','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27306','39684','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27307','39684','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27308','39684','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27309','39685','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27310','39685','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27311','39686','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27312','39686','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27313','39687','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27314','39687','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27315','42038','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27316','42038','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27317','42038','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27318','42039','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27319','42039','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27320','42039','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27321','42040','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27322','42040','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27323','42040','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27324','42041','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27325','42041','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27326','42041','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27327','42042','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27328','42042','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27329','42042','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27330','42043','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27331','42043','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27332','42043','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27333','42044','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27334','42044','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27335','42044','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27336','42045','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27337','42045','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27338','42045','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27339','42046','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27340','42046','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27341','42046','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27342','39709','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27343','39710','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27344','39711','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27345','39712','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27346','39713','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27347','39714','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27348','39715','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27349','42047','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27350','42047','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27351','42048','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27352','42049','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27353','42050','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27354','42051','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27355','42052','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27356','42052','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27357','42053','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27358','42054','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27359','42055','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27360','42056','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27361','42056','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27362','42057','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27363','42057','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27364','39723','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27365','39724','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27366','39725','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27367','39726','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27368','39726','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27369','39726','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27370','39727','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27371','39727','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27372','39727','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27373','39728','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27374','39728','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27375','39728','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27376','39729','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27377','39729','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27378','39729','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27379','39730','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27380','39730','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27381','39730','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27382','39731','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27383','39731','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27384','39731','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27385','39732','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27386','39732','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27387','39732','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27388','39733','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27389','39733','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27390','39733','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27391','39734','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27392','39734','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27393','39734','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27394','39735','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27395','39735','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27396','39735','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27397','39736','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27398','39736','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27399','39736','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27400','39737','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27401','39737','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27402','39737','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27403','39738','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27404','39738','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27405','39738','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27406','39739','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27407','39739','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27408','39740','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27409','39740','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27410','39741','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27411','39741','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27412','42059','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27413','42059','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27414','42059','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27415','42060','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27416','42060','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27417','42060','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27418','42061','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27419','42061','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27420','42061','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27421','42062','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27422','42062','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27423','42062','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27424','42063','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27425','42063','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27426','42063','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27427','42064','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27428','42064','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27429','42064','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27430','42065','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27431','42065','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27432','42065','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27433','42066','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27434','42066','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27435','42066','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27436','42067','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27437','42067','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27438','42067','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27439','27893','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27440','27894','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27441','27895','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27442','27898','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27443','27900','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27444','30119','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27445','30120','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27446','42068','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27447','42068','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27448','42069','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27449','42070','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27450','42071','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27451','42072','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27452','42073','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27453','42073','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27454','42074','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27455','42075','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27456','42076','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27457','42077','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27458','42077','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27459','42078','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27460','42078','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27461','27904','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27462','27905','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27463','27906','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27464','27906','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27465','27907','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27466','27907','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27467','27908','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27468','27908','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27469','31560','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27470','31561','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27471','31561','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27472','31561','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27473','31562','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27474','31562','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27475','31562','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27476','31563','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27477','31563','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27478','31563','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27479','31564','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27480','31564','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27481','31564','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27482','31565','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27483','31565','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27484','31565','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27485','31566','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27486','31566','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27487','31566','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27488','31567','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27489','31567','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27490','31567','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27491','31568','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27492','31568','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27493','31568','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27494','31569','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27495','31569','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27496','31569','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27497','32436','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27498','32436','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27499','32436','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27500','32437','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27501','32437','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27502','32437','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27503','32438','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27504','32438','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27505','32438','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27506','32439','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27507','32439','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27508','32439','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27509','42080','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27510','42080','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27511','42080','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27512','42081','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27513','42081','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27514','42081','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27515','42082','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27516','42082','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27517','42082','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27518','42083','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27519','42083','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27520','42083','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27521','42084','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27522','42084','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27523','42084','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27524','42085','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27525','42085','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27526','42085','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27527','42086','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27528','42086','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27529','42086','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27530','42087','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27531','42087','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27532','42087','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27533','42088','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27534','42088','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27535','42088','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27536','33184','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27537','33185','component','load');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27538','33186','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27539','33187','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27540','33188','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27541','33189','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27542','33190','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27543','33191','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27544','33192','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27545','33193','component','load');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27546','33194','component','load');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27547','33195','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27548','33196','component','counter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27549','33197','component','counter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27550','33198','component','counter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27551','33199','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27552','33200','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27553','33201','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27554','33201','component','discovery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27555','33201','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27556','33202','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27557','33203','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27558','33204','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27559','33206','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27560','33207','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27561','33208','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27562','33209','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27563','33210','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27564','33211','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27565','33212','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27566','33213','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27567','33214','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27568','33215','component','load');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27569','33216','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27570','33216','component','discovery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27571','33216','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27572','33217','component','load');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27573','33218','component','load');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27574','33219','component','counter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27575','33220','component','counter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27576','33221','component','counter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27577','33222','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27578','33223','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27579','33224','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27580','33226','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27581','33227','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27582','33228','component','load');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27583','33229','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27584','33230','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27585','33231','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27586','33232','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27587','33233','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27588','33234','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27589','33235','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27590','33236','component','load');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27591','33237','component','load');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27592','33238','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27593','33239','component','counter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27594','33240','component','counter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27595','33241','component','counter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27596','33242','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27597','33243','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27598','33244','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27599','33244','component','discovery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27600','33244','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27601','33245','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27602','33246','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27603','33247','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27604','33249','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27605','33250','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27606','33250','component','discovery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27607','33250','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27608','33251','component','load');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27609','33252','component','load');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27610','33253','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27611','33254','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27612','33255','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27613','33256','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27614','33258','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27615','33259','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27616','33260','component','counter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27617','33261','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27618','33262','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27619','33263','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27620','33264','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27621','33265','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27622','33266','component','counter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27623','33267','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27624','33268','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27625','33269','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27626','33270','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27627','33271','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27628','33271','component','discovery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27629','33271','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27630','33272','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27631','33273','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27632','33274','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27633','33275','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27634','33277','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27635','33278','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27636','33279','component','counter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27637','33280','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27638','33281','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27639','33282','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27640','33283','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27641','33284','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27642','33285','component','counter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27643','33286','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27644','33287','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27645','33288','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27646','33289','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27647','33290','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27648','33290','component','discovery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27649','33290','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27650','33291','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27651','33292','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27652','33293','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27653','33294','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27654','33296','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27655','33297','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27656','33297','component','discovery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27657','33297','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27658','33298','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27659','33299','component','counter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27660','33300','component','counter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27661','33301','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27662','33302','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27663','33303','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27664','33304','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27665','33305','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27666','33312','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27667','33313','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27668','33314','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27669','33315','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27670','33316','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27671','33317','component','load');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27672','33318','component','load');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27673','33319','component','load');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27674','33320','component','load');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27675','27930','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27676','27931','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27677','27935','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27678','27936','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27679','30121','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27680','30122','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27681','30123','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27682','42089','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27683','42089','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27684','42090','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27685','42091','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27686','42092','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27687','42093','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27688','42094','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27689','42094','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27690','42095','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27691','42096','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27692','42097','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27693','42098','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27694','42098','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27695','42099','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27696','42099','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27697','27940','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27698','27941','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27699','27942','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27700','27943','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27701','42101','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27702','42101','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27703','42101','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27704','42102','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27705','42102','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27706','42102','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27707','42103','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27708','42103','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27709','42103','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27710','42104','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27711','42104','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27712','42104','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27713','42105','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27714','42105','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27715','42105','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27716','42106','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27717','42106','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27718','42106','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27719','42107','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27720','42107','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27721','42107','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27722','42108','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27723','42108','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27724','42108','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27725','42109','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27726','42109','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27727','42109','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27728','27967','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27729','27968','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27730','27970','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27731','27971','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27732','27972','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27733','27973','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27734','27975','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27735','30124','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27736','30125','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27737','30126','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27738','42110','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27739','42110','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27740','42111','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27741','42112','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27742','42113','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27743','42114','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27744','42115','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27745','42115','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27746','42116','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27747','42117','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27748','42118','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27749','42119','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27750','42119','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27751','42120','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27752','42120','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27753','30129','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27754','30130','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27755','42123','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27756','42123','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27757','42123','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27758','42124','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27759','42124','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27760','42124','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27761','42125','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27762','42125','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27763','42125','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27764','42126','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27765','42126','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27766','42126','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27767','42127','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27768','42127','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27769','42127','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27770','42128','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27771','42128','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27772','42128','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27773','42129','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27774','42129','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27775','42129','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27776','42130','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27777','42130','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27778','42130','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27779','42131','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27780','42131','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27781','42131','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27782','42132','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27783','42132','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27784','42132','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27785','27997','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27786','27998','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27787','27999','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27788','28000','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27789','42133','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27790','42133','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27791','42134','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27792','42134','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27793','42135','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27794','42135','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27795','42136','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27796','42137','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27797','42138','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27798','42139','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27799','42140','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27800','42141','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27801','42142','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27802','42143','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27803','42143','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27804','28003','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27805','30131','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27806','42145','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27807','42145','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27808','42145','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27809','42146','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27810','42146','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27811','42146','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27812','42147','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27813','42147','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27814','42147','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27815','42148','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27816','42148','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27817','42148','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27818','42149','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27819','42149','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27820','42149','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27821','42150','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27822','42150','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27823','42150','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27824','42151','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27825','42151','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27826','42151','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27827','42152','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27828','42152','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27829','42152','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27830','42153','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27831','42153','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27832','42153','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27833','28026','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27834','28027','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27835','28031','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27836','30132','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27837','30133','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27838','30134','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27839','30135','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27840','30136','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27841','42154','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27842','42154','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27843','42155','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27844','42156','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27845','42157','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27846','42158','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27847','42159','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27848','42159','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27849','42160','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27850','42161','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27851','42162','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27852','42163','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27853','42163','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27854','42164','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27855','42164','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27856','42166','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27857','42166','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27858','42166','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27859','42167','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27860','42167','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27861','42167','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27862','42168','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27863','42168','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27864','42168','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27865','42169','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27866','42169','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27867','42169','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27868','42170','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27869','42170','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27870','42170','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27871','42171','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27872','42171','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27873','42171','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27874','42172','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27875','42172','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27876','42172','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27877','42173','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27878','42173','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27879','42173','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27880','42174','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27881','42174','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27882','42174','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27883','39742','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27884','39743','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27885','39744','component','orchestrator');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27886','39745','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27887','39746','component','orchestrator');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27888','39747','component','orchestrator');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27889','39748','component','orchestrator');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27890','39754','component','edge');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27891','39755','component','edge');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27892','39756','component','edge');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27893','39757','component','edge');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27894','39758','component','edge');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27895','39759','component','edge');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27896','39760','component','edge');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27897','39761','component','edge');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27898','39762','component','gateway');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27899','39763','component','gateway');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27900','39764','component','gateway');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27901','39765','component','gateway');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27902','39766','component','gateway');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27903','39767','component','gateway');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27904','39768','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27905','39768','component','gateway');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27906','39769','component','gateway');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27907','39770','component','gateway');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27908','39770','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27909','39771','component','gateway');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27910','39772','component','link');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27911','39772','interface','{#IF}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27912','39772','ip','{#IP}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27913','39773','component','link');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27914','39773','interface','{#IF}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27915','39773','ip','{#IP}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27916','39774','component','link');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27917','39774','interface','{#IF}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27918','39774','ip','{#IP}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27919','39775','component','link');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27920','39775','interface','{#IF}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27921','39775','ip','{#IP}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27922','39776','component','link');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27923','39776','interface','{#IF}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27924','39776','ip','{#IP}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27925','39777','component','link');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27926','39777','interface','{#IF}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27927','39777','ip','{#IP}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27928','39778','component','link');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27929','39778','interface','{#IF}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27930','39778','ip','{#IP}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27931','39779','component','link');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27932','39779','interface','{#IF}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27933','39779','ip','{#IP}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27934','39780','component','link');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27935','39780','interface','{#IF}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27936','39780','ip','{#IP}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27937','39781','component','link');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27938','39781','interface','{#IF}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27939','39781','ip','{#IP}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27940','39782','component','sdwan-path');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27941','39782','destination','{#DESTINATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27942','39782','source','{#SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27943','39783','component','sdwan-path');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27944','39783','destination','{#DESTINATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27945','39783','source','{#SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27946','39784','component','sdwan-path');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27947','39784','destination','{#DESTINATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27948','39784','source','{#SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27949','39785','component','sdwan-path');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27950','39785','destination','{#DESTINATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27951','39785','source','{#SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27952','39786','component','sdwan-path');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27953','39786','destination','{#DESTINATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27954','39786','source','{#SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27955','39787','component','sdwan-path');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27956','39787','destination','{#DESTINATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27957','39787','source','{#SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27958','39788','component','sdwan-path');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27959','39788','destination','{#DESTINATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27960','39788','source','{#SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27961','39789','component','sdwan-path');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27962','39789','destination','{#DESTINATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27963','39789','source','{#SOURCE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27964','39790','component','sdwan-peer');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27965','39790','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27966','39791','component','sdwan-peer');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27967','39791','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27968','39792','component','sdwan-peer');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27969','39792','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27970','39793','component','sdwan-peer');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27971','39793','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27972','39794','component','sdwan-peer');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27973','39794','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27974','39795','component','sdwan-peer');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27975','39795','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27976','39796','component','sdwan-peer');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27977','39796','type','{#TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27978','35532','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27979','35533','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27980','35534','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27981','35535','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27982','35536','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27983','35537','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27984','35538','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27985','35539','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27986','35540','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27987','35540','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27988','35541','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27989','35546','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27990','35546','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27991','35546','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27992','35547','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27993','35547','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27994','35547','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27995','35548','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27996','35548','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27997','35548','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27998','35549','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('27999','35549','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28000','35549','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28001','35550','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28002','35550','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28003','35550','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28004','35551','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28005','35551','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28006','35551','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28007','35552','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28008','35552','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28009','35552','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28010','35553','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28011','35553','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28012','35553','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28013','35554','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28014','35554','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28015','35554','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28016','35555','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28017','35555','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28018','35555','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28019','35556','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28020','35556','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28021','35556','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28022','35557','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28023','35557','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28024','35557','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28025','35558','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28026','35558','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28027','35558','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28028','35559','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28029','35559','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28030','35559','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28031','35560','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28032','35560','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28033','35560','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28034','35561','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28035','35561','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28036','35561','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28037','35562','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28038','35562','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28039','35563','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28040','35563','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28041','35564','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28042','35565','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28043','35566','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28044','35567','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28045','35568','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28046','35569','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28047','35570','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28048','35571','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28049','35572','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28050','35573','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28051','35580','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28052','35581','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28053','35581','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28054','35581','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28055','35582','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28056','35582','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28057','35582','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28058','35583','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28059','35583','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28060','35583','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28061','35584','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28062','35584','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28063','35584','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28064','35585','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28065','35585','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28066','35585','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28067','35586','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28068','35586','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28069','35586','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28070','35587','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28071','35587','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28072','35587','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28073','35588','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28074','35588','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28075','35588','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28076','35589','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28077','35589','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28078','35589','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28079','35590','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28080','35590','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28081','35590','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28082','35591','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28083','35591','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28084','35591','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28085','35592','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28086','35592','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28087','35592','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28088','35593','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28089','35593','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28090','35593','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28091','35594','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28092','35594','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28093','35594','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28094','35595','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28095','35595','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28096','35595','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28097','35596','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28098','35596','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28099','35596','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28100','35597','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28101','35597','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28102','35597','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28103','35598','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28104','35598','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28105','35598','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28106','35599','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28107','35599','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28108','35599','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28109','35600','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28110','35600','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28111','35600','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28112','35601','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28113','35601','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28114','35601','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28115','35602','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28116','35602','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28117','35602','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28118','35603','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28119','35603','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28120','35603','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28121','35604','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28122','35604','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28123','35604','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28124','35605','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28125','35605','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28126','35605','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28127','35606','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28128','35606','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28129','35607','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28130','35607','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28131','35608','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28132','35609','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28133','35610','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28134','35611','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28135','35612','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28136','35613','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28137','35614','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28138','35615','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28139','35616','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28140','35617','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28141','35622','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28142','35622','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28143','35623','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28144','35623','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28145','35623','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28146','35624','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28147','35624','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28148','35624','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28149','35625','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28150','35625','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28151','35625','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28152','35626','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28153','35626','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28154','35626','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28155','35627','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28156','35627','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28157','35627','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28158','35628','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28159','35628','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28160','35628','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28161','35629','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28162','35629','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28163','35629','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28164','35630','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28165','35630','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28166','35630','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28167','35631','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28168','35631','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28169','35631','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28170','35632','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28171','35632','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28172','35632','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28173','35633','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28174','35633','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28175','35633','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28176','35634','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28177','35634','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28178','35634','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28179','35635','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28180','35635','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28181','35635','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28182','35636','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28183','35636','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28184','35636','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28185','35637','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28186','35637','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28187','35637','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28188','35638','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28189','35638','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28190','35638','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28191','35639','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28192','35639','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28193','35639','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28194','35640','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28195','35640','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28196','35641','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28197','35641','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28198','35642','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28199','35643','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28200','35644','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28201','35645','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28202','35646','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28203','35647','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28204','35648','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28205','35658','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28206','35659','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28207','35660','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28208','35660','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28209','35661','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28210','35662','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28211','35662','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28212','35662','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28213','35663','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28214','35663','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28215','35663','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28216','35664','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28217','35664','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28218','35664','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28219','35665','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28220','35665','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28221','35665','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28222','35666','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28223','35666','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28224','35666','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28225','35667','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28226','35667','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28227','35667','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28228','35668','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28229','35668','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28230','35668','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28231','35669','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28232','35669','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28233','35669','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28234','35670','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28235','35670','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28236','35670','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28237','35671','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28238','35671','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28239','35671','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28240','35672','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28241','35672','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28242','35672','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28243','35673','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28244','35673','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28245','35673','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28246','35674','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28247','35674','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28248','35674','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28249','35675','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28250','35675','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28251','35675','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28252','35676','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28253','35676','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28254','35676','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28255','35677','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28256','35677','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28257','35677','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28258','35678','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28259','35678','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28260','35678','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28261','35679','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28262','35679','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28263','35679','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28264','35680','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28265','35680','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28266','35680','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28267','35681','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28268','35681','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28269','35681','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28270','35682','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28271','35682','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28272','35682','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28273','35683','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28274','35683','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28275','35683','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28276','35684','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28277','35684','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28278','35684','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28279','35685','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28280','35685','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28281','35685','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28282','35686','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28283','35686','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28284','35686','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28285','35687','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28286','35687','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28287','35687','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28288','35688','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28289','35688','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28290','35688','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28291','35689','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28292','35689','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28293','35689','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28294','35690','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28295','35690','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28296','35690','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28297','35691','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28298','35691','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28299','35691','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28300','35692','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28301','35692','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28302','35692','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28303','35693','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28304','35693','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28305','35693','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28306','35694','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28307','35694','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28308','35694','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28309','35695','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28310','35695','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28311','35696','component','firmware');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28312','35696','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28313','35696','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28314','35697','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28315','35697','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28316','35698','component','firmware');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28317','35698','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28318','35698','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28319','35699','component','firmware');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28320','35699','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28321','35699','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28322','35700','component','firmware');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28323','35700','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28324','35700','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28325','35701','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28326','35701','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28327','35702','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28328','35702','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28329','35703','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28330','35703','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28331','35704','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28332','35704','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28333','35705','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28334','35705','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28335','35706','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28336','35706','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28337','35707','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28338','35707','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28339','35708','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28340','35708','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28341','35709','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28342','35710','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28343','35711','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28344','35712','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28345','35713','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28346','35714','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28347','35715','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28348','35725','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28349','35726','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28350','35727','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28351','35727','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28352','35728','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28353','35729','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28354','35729','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28355','35729','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28356','35730','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28357','35730','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28358','35730','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28359','35731','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28360','35731','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28361','35731','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28362','35732','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28363','35732','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28364','35732','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28365','35733','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28366','35733','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28367','35733','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28368','35734','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28369','35734','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28370','35734','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28371','35735','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28372','35735','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28373','35735','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28374','35736','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28375','35736','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28376','35736','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28377','35737','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28378','35737','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28379','35737','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28380','35738','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28381','35738','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28382','35738','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28383','35739','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28384','35739','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28385','35739','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28386','35740','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28387','35740','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28388','35740','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28389','35741','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28390','35741','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28391','35741','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28392','35742','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28393','35742','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28394','35742','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28395','35743','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28396','35743','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28397','35743','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28398','35744','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28399','35744','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28400','35744','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28401','35745','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28402','35745','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28403','35745','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28404','35746','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28405','35746','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28406','35746','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28407','35747','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28408','35747','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28409','35747','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28410','35748','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28411','35748','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28412','35748','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28413','35749','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28414','35749','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28415','35749','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28416','35750','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28417','35750','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28418','35750','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28419','35751','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28420','35751','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28421','35751','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28422','35752','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28423','35752','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28424','35752','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28425','35753','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28426','35753','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28427','35753','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28428','35754','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28429','35754','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28430','35754','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28431','35755','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28432','35755','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28433','35755','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28434','35756','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28435','35756','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28436','35756','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28437','35757','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28438','35757','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28439','35757','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28440','35758','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28441','35758','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28442','35758','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28443','35759','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28444','35759','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28445','35759','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28446','35760','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28447','35760','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28448','35760','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28449','35761','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28450','35761','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28451','35761','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28452','35762','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28453','35762','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28454','35763','component','firmware');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28455','35763','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28456','35763','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28457','35764','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28458','35764','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28459','35765','component','firmware');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28460','35765','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28461','35765','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28462','35766','component','firmware');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28463','35766','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28464','35766','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28465','35767','component','firmware');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28466','35767','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28467','35767','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28468','35768','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28469','35768','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28470','35769','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28471','35769','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28472','35770','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28473','35770','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28474','35771','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28475','35771','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28476','35772','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28477','35772','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28478','35773','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28479','35773','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28480','35774','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28481','35774','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28482','35775','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28483','35775','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28484','35776','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28485','35777','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28486','35778','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28487','35779','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28488','35780','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28489','35781','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28490','35782','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28491','35783','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28492','35784','component','line-card');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28493','35784','interface','slot-{#ZYXEL.SLOT.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28494','35785','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28495','35791','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28496','35791','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28497','35792','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28498','35792','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28499','35792','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28500','35793','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28501','35793','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28502','35793','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28503','35794','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28504','35794','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28505','35794','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28506','35795','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28507','35795','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28508','35795','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28509','35796','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28510','35796','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28511','35796','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28512','35797','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28513','35797','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28514','35797','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28515','35798','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28516','35798','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28517','35798','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28518','35799','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28519','35799','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28520','35799','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28521','35800','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28522','35800','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28523','35800','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28524','35801','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28525','35801','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28526','35801','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28527','35802','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28528','35802','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28529','35802','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28530','35803','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28531','35803','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28532','35803','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28533','35804','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28534','35804','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28535','35804','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28536','35805','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28537','35805','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28538','35805','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28539','35806','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28540','35806','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28541','35806','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28542','35807','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28543','35807','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28544','35807','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28545','35808','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28546','35808','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28547','35809','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28548','35809','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28549','35810','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28550','35811','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28551','35812','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28552','35813','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28553','35814','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28554','35815','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28555','35816','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28556','35817','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28557','35818','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28558','35819','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28559','35823','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28560','35823','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28561','35823','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28562','35824','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28563','35824','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28564','35824','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28565','35825','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28566','35825','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28567','35825','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28568','35826','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28569','35826','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28570','35826','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28571','35827','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28572','35827','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28573','35827','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28574','35828','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28575','35828','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28576','35828','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28577','35829','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28578','35829','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28579','35829','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28580','35830','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28581','35830','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28582','35830','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28583','35831','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28584','35831','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28585','35831','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28586','35832','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28587','35832','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28588','35832','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28589','35833','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28590','35833','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28591','35833','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28592','35834','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28593','35834','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28594','35834','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28595','35835','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28596','35835','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28597','35835','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28598','35836','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28599','35836','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28600','35836','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28601','35837','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28602','35837','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28603','35837','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28604','35838','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28605','35838','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28606','35838','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28607','35839','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28608','35839','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28609','35839','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28610','35840','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28611','35840','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28612','35840','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28613','35841','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28614','35841','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28615','35841','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28616','35842','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28617','35842','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28618','35842','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28619','35843','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28620','35843','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28621','35843','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28622','35844','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28623','35844','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28624','35844','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28625','35845','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28626','35845','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28627','35845','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28628','35846','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28629','35846','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28630','35846','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28631','35847','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28632','35847','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28633','35847','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28634','35848','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28635','35849','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28636','35850','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28637','35851','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28638','35852','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28639','35853','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28640','35854','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28641','35855','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28642','35856','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28643','35857','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28644','35864','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28645','35865','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28646','35865','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28647','35865','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28648','35866','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28649','35866','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28650','35866','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28651','35867','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28652','35867','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28653','35867','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28654','35868','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28655','35868','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28656','35868','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28657','35869','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28658','35869','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28659','35869','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28660','35870','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28661','35870','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28662','35870','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28663','35871','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28664','35871','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28665','35871','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28666','35872','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28667','35872','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28668','35872','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28669','35873','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28670','35873','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28671','35873','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28672','35874','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28673','35874','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28674','35874','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28675','35875','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28676','35875','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28677','35875','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28678','35876','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28679','35876','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28680','35876','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28681','35877','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28682','35877','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28683','35877','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28684','35878','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28685','35878','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28686','35878','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28687','35879','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28688','35879','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28689','35879','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28690','35880','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28691','35880','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28692','35880','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28693','35881','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28694','35881','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28695','35881','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28696','35882','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28697','35882','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28698','35882','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28699','35883','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28700','35883','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28701','35883','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28702','35884','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28703','35884','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28704','35884','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28705','35885','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28706','35885','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28707','35885','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28708','35886','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28709','35886','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28710','35886','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28711','35887','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28712','35887','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28713','35887','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28714','35888','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28715','35888','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28716','35888','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28717','35889','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28718','35889','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28719','35889','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28720','35890','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28721','35890','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28722','35891','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28723','35891','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28724','35892','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28725','35893','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28726','35894','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28727','35895','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28728','35896','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28729','35897','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28730','35898','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28731','35899','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28732','35900','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28733','35901','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28734','35908','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28735','35909','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28736','35909','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28737','35909','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28738','35910','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28739','35910','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28740','35910','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28741','35911','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28742','35911','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28743','35911','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28744','35912','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28745','35912','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28746','35912','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28747','35913','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28748','35913','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28749','35913','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28750','35914','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28751','35914','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28752','35914','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28753','35915','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28754','35915','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28755','35915','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28756','35916','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28757','35916','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28758','35916','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28759','35917','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28760','35917','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28761','35917','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28762','35918','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28763','35918','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28764','35918','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28765','35919','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28766','35919','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28767','35919','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28768','35920','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28769','35920','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28770','35920','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28771','35921','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28772','35921','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28773','35921','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28774','35922','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28775','35922','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28776','35922','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28777','35923','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28778','35923','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28779','35923','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28780','35924','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28781','35924','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28782','35924','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28783','35925','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28784','35925','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28785','35925','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28786','35926','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28787','35926','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28788','35926','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28789','35927','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28790','35927','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28791','35927','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28792','35928','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28793','35928','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28794','35928','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28795','35929','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28796','35929','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28797','35929','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28798','35930','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28799','35930','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28800','35930','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28801','35931','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28802','35931','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28803','35931','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28804','35932','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28805','35932','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28806','35932','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28807','35933','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28808','35933','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28809','35933','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28810','35934','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28811','35934','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28812','35935','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28813','35935','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28814','35936','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28815','35937','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28816','35938','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28817','35939','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28818','35940','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28819','35941','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28820','35942','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28821','35943','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28822','35944','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28823','35945','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28824','35952','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28825','35952','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28826','35953','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28827','35953','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28828','35953','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28829','35954','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28830','35954','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28831','35954','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28832','35955','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28833','35955','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28834','35955','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28835','35956','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28836','35956','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28837','35956','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28838','35957','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28839','35957','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28840','35957','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28841','35958','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28842','35958','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28843','35958','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28844','35959','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28845','35959','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28846','35959','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28847','35960','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28848','35960','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28849','35960','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28850','35961','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28851','35961','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28852','35961','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28853','35962','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28854','35962','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28855','35962','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28856','35963','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28857','35963','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28858','35963','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28859','35964','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28860','35964','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28861','35964','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28862','35965','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28863','35965','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28864','35965','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28865','35966','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28866','35966','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28867','35966','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28868','35967','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28869','35967','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28870','35967','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28871','35968','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28872','35968','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28873','35968','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28874','35969','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28875','35969','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28876','35969','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28877','35970','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28878','35970','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28879','35970','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28880','35971','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28881','35971','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28882','35971','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28883','35972','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28884','35972','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28885','35972','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28886','35973','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28887','35973','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28888','35973','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28889','35974','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28890','35974','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28891','35974','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28892','35975','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28893','35975','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28894','35975','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28895','35976','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28896','35976','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28897','35976','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28898','35977','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28899','35977','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28900','35977','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28901','35978','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28902','35978','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28903','35979','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28904','35979','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28905','35980','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28906','35981','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28907','35982','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28908','35983','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28909','35984','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28910','35985','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28911','35986','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28912','35987','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28913','35988','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28914','35989','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28915','35996','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28916','35996','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28917','35997','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28918','35997','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28919','35997','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28920','35998','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28921','35998','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28922','35998','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28923','35999','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28924','35999','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28925','35999','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28926','36000','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28927','36000','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28928','36000','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28929','36001','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28930','36001','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28931','36001','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28932','36002','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28933','36002','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28934','36002','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28935','36003','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28936','36003','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28937','36003','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28938','36004','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28939','36004','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28940','36004','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28941','36005','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28942','36005','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28943','36005','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28944','36006','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28945','36006','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28946','36006','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28947','36007','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28948','36007','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28949','36007','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28950','36008','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28951','36008','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28952','36008','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28953','36009','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28954','36009','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28955','36009','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28956','36010','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28957','36010','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28958','36010','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28959','36011','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28960','36011','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28961','36011','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28962','36012','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28963','36012','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28964','36012','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28965','36013','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28966','36013','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28967','36013','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28968','36014','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28969','36014','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28970','36014','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28971','36015','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28972','36015','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28973','36015','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28974','36016','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28975','36016','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28976','36016','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28977','36017','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28978','36017','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28979','36017','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28980','36018','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28981','36018','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28982','36018','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28983','36019','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28984','36019','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28985','36019','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28986','36020','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28987','36020','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28988','36020','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28989','36021','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28990','36021','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28991','36021','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28992','36022','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28993','36022','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28994','36023','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28995','36023','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28996','36024','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28997','36025','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28998','36026','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('28999','36027','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29000','36028','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29001','36029','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29002','36030','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29003','36031','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29004','36032','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29005','36033','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29006','36034','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29007','36041','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29008','36041','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29009','36042','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29010','36042','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29011','36042','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29012','36043','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29013','36043','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29014','36043','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29015','36044','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29016','36044','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29017','36044','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29018','36045','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29019','36045','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29020','36045','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29021','36046','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29022','36046','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29023','36046','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29024','36047','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29025','36047','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29026','36047','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29027','36048','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29028','36048','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29029','36048','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29030','36049','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29031','36049','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29032','36049','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29033','36050','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29034','36050','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29035','36050','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29036','36051','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29037','36051','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29038','36051','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29039','36052','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29040','36052','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29041','36052','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29042','36053','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29043','36053','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29044','36053','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29045','36054','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29046','36054','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29047','36054','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29048','36055','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29049','36055','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29050','36055','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29051','36056','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29052','36056','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29053','36056','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29054','36057','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29055','36057','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29056','36057','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29057','36058','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29058','36058','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29059','36058','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29060','36059','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29061','36059','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29062','36059','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29063','36060','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29064','36060','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29065','36060','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29066','36061','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29067','36061','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29068','36061','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29069','36062','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29070','36062','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29071','36062','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29072','36063','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29073','36063','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29074','36063','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29075','36064','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29076','36064','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29077','36064','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29078','36065','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29079','36065','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29080','36065','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29081','36066','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29082','36066','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29083','36066','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29084','36067','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29085','36067','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29086','36068','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29087','36068','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29088','36069','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29089','36070','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29090','36071','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29091','36072','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29092','36073','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29093','36074','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29094','36075','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29095','36076','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29096','36077','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29097','36078','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29098','36079','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29099','36086','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29100','36086','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29101','36087','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29102','36087','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29103','36087','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29104','36088','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29105','36088','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29106','36088','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29107','36089','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29108','36089','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29109','36089','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29110','36090','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29111','36090','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29112','36090','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29113','36091','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29114','36091','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29115','36091','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29116','36092','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29117','36092','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29118','36092','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29119','36093','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29120','36093','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29121','36093','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29122','36094','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29123','36094','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29124','36094','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29125','36095','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29126','36095','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29127','36095','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29128','36096','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29129','36096','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29130','36096','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29131','36097','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29132','36097','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29133','36097','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29134','36098','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29135','36098','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29136','36098','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29137','36099','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29138','36099','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29139','36099','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29140','36100','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29141','36100','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29142','36100','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29143','36101','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29144','36101','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29145','36101','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29146','36102','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29147','36102','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29148','36102','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29149','36103','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29150','36103','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29151','36103','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29152','36104','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29153','36104','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29154','36104','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29155','36105','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29156','36105','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29157','36105','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29158','36106','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29159','36106','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29160','36106','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29161','36107','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29162','36107','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29163','36107','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29164','36108','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29165','36108','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29166','36108','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29167','36109','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29168','36109','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29169','36109','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29170','36110','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29171','36110','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29172','36110','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29173','36111','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29174','36111','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29175','36111','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29176','36112','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29177','36112','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29178','36113','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29179','36113','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29180','36114','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29181','36115','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29182','36116','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29183','36117','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29184','36118','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29185','36119','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29186','36120','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29187','36121','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29188','36122','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29189','36123','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29190','36131','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29191','36131','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29192','36132','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29193','36133','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29194','36133','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29195','36133','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29196','36134','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29197','36134','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29198','36134','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29199','36135','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29200','36135','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29201','36135','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29202','36136','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29203','36136','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29204','36136','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29205','36137','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29206','36137','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29207','36137','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29208','36138','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29209','36138','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29210','36138','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29211','36139','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29212','36139','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29213','36139','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29214','36140','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29215','36140','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29216','36140','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29217','36141','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29218','36141','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29219','36141','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29220','36142','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29221','36142','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29222','36142','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29223','36143','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29224','36143','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29225','36143','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29226','36144','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29227','36144','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29228','36144','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29229','36145','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29230','36145','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29231','36145','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29232','36146','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29233','36146','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29234','36146','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29235','36147','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29236','36147','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29237','36147','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29238','36148','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29239','36148','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29240','36148','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29241','36149','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29242','36149','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29243','36149','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29244','36150','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29245','36150','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29246','36150','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29247','36151','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29248','36151','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29249','36151','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29250','36152','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29251','36152','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29252','36152','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29253','36153','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29254','36153','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29255','36153','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29256','36154','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29257','36154','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29258','36154','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29259','36155','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29260','36155','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29261','36155','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29262','36156','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29263','36156','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29264','36156','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29265','36157','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29266','36157','description','{#ZYXEL.IF.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29267','36157','interface','{#SNMPINDEX}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29268','36158','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29269','36158','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29270','36159','component','sensor');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29271','36159','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29272','22917','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29273','22917','component','processes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29274','22918','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29275','22918','component','processes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29276','22920','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29277','22921','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29278','22922','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29279','22923','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29280','22924','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29281','22933','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29282','22934','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29283','22938','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29284','22939','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29285','22940','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29286','22941','component','security');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29287','22942','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29288','22943','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29289','23108','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29290','23109','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29291','23110','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29292','23111','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29293','23112','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29294','23113','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29295','23114','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29296','23115','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29297','23116','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29298','23117','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29299','23118','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29300','23119','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29301','23120','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29302','23121','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29303','23122','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29304','23123','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29305','23124','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29306','23125','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29307','23126','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29308','23127','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29309','23128','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29310','23129','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29311','23130','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29312','23131','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29313','42175','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29314','42176','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29315','42177','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29316','42178','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29317','22945','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29318','22945','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29319','22946','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29320','22946','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29321','22948','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29322','22948','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29323','22949','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29324','22949','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29325','22950','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29326','22950','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29327','22951','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29328','22951','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29329','22952','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29330','22952','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29331','22875','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29332','22876','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29333','22876','component','processes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29334','22877','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29335','22877','component','processes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29336','22878','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29337','22878','component','processes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29338','22879','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29339','22880','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29340','22881','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29341','22882','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29342','22883','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29343','22884','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29344','22885','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29345','22886','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29346','22888','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29347','22891','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29348','22892','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29349','22893','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29350','22894','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29351','22895','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29352','22896','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29353','22897','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29354','22898','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29355','22899','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29356','22900','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29357','22901','component','security');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29358','22902','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29359','22903','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29360','42179','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29361','42180','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29362','42181','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29363','42182','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29364','22908','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29365','22908','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29366','22909','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29367','22909','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29368','22910','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29369','22910','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29370','22911','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29371','22911','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29372','22912','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29373','22912','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29374','23073','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29375','23073','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29376','23074','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29377','23074','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29378','22961','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29379','22962','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29380','22963','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29381','22965','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29382','22968','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29383','22971','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29384','22972','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29385','22973','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29386','22974','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29387','22978','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29388','22980','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29389','22981','component','security');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29390','22982','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29391','22983','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29392','42183','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29393','42184','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29394','42185','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29395','42186','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29396','22985','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29397','22985','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29398','22986','component','interface');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29399','22986','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29400','22988','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29401','22988','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29402','22989','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29403','22989','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29404','22990','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29405','22990','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29406','22991','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29407','22991','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29408','22992','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29409','22992','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29410','29087','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29411','29088','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29412','29089','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29413','29090','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29414','29091','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29415','29092','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29416','29093','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29417','29094','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29418','29095','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29419','29096','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29420','29097','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29421','29098','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29422','29099','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29423','29100','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29424','29101','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29425','29102','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29426','29103','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29427','29104','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29428','29105','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29429','29106','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29430','29106','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29431','29107','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29432','29107','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29433','29108','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29434','29108','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29435','29110','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29436','29111','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29437','29112','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29438','29113','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29439','29114','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29440','29115','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29441','29116','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29442','29117','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29443','29118','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29444','29119','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29445','29120','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29446','29121','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29447','29122','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29448','29123','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29449','42187','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29450','42188','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29451','42188','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29452','42189','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29453','42190','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29454','42191','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29455','42192','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29456','42193','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29457','42194','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29458','42195','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29459','42196','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29460','42196','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29461','42197','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29462','42198','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29463','42198','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29464','42199','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29465','42200','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29466','42201','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29467','42202','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29468','42203','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29469','42204','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29470','42205','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29471','42206','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29472','42207','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29473','42208','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29474','42209','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29475','42210','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29476','42211','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29477','42212','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29478','42213','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29479','42214','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29480','42215','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29481','42216','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29482','42217','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29483','42218','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29484','42219','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29485','42220','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29486','42221','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29487','42222','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29488','42223','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29489','42224','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29490','42225','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29491','42226','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29492','42227','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29493','42228','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29494','42228','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29495','42229','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29496','42230','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29497','42231','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29498','42232','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29499','42233','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29500','42234','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29501','42235','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29502','42236','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29503','42236','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29504','42237','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29505','42238','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29506','42238','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29507','42239','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29508','42240','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29509','42241','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29510','42242','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29511','42243','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29512','42244','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29513','42245','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29514','42246','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29515','42247','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29516','42248','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29517','42249','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29518','42250','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29519','42251','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29520','42252','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29521','42253','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29522','42254','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29523','42255','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29524','42256','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29525','42257','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29526','42258','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29527','42259','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29528','42260','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29529','42261','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29530','42262','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29531','42263','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29532','42264','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29533','42265','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29534','42266','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29535','29198','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29536','31364','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29537','42267','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29538','42268','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29539','42269','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29540','42270','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29541','29210','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29542','29210','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29543','29211','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29544','29211','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29545','29212','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29546','29212','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29547','29213','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29548','29213','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29549','29216','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29551','29216','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29552','29217','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29554','29217','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29555','29218','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29557','29218','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29558','29219','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29560','29219','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29561','29220','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29563','29220','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29564','29221','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29566','29221','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29567','29222','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29569','29222','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29570','29223','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29572','29223','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29573','31370','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29574','31370','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29575','31371','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29576','31371','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29577','31372','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29578','42277','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29580','42277','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29581','42278','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29583','42278','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29584','42279','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29586','42279','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29587','42280','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29589','42280','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29590','42281','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29592','42281','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29593','42282','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29595','42282','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29596','42283','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29598','42283','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29599','42284','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29601','42284','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29602','42285','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29603','42285','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29604','42286','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29605','42286','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29606','42287','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29607','42288','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29608','42288','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29609','42289','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29610','42289','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29611','42290','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29612','42290','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29613','42291','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29614','42291','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29615','42292','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29617','42292','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29618','42293','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29620','42293','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29621','42294','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29623','42294','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29624','42295','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29626','42295','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29627','42296','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29629','42296','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29630','42297','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29632','42297','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29633','42298','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29635','42298','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29636','42299','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29638','42299','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29639','42300','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29640','42300','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29641','42301','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29642','42301','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29643','42302','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29644','42303','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29645','42303','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29646','42304','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29647','42304','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29648','42305','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29649','42305','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29650','42306','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29651','42306','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29652','31379','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29653','31379','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29654','31380','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29655','31380','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29656','31381','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29657','31381','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29658','31382','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29659','31382','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29660','31383','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29661','31383','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29662','31384','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29663','31384','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29664','42307','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29665','42307','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29666','42308','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29667','42308','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29668','42309','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29669','42309','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29670','42310','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29671','42310','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29672','42311','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29673','42311','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29674','42312','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29675','42312','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29676','42313','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29677','42313','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29678','42314','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29679','42314','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29680','42315','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29681','42315','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29682','42316','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29683','42316','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29684','42317','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29685','42317','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29686','42318','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29687','42318','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29688','31820','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29689','31821','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29690','31822','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29691','31823','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29692','31824','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29693','31825','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29694','31826','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29695','31827','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29696','31828','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29697','31829','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29698','31830','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29699','31831','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29700','31832','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29701','31833','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29702','31834','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29703','31835','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29704','31836','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29705','31837','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29706','31838','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29707','31839','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29708','31840','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29709','31841','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29710','31842','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29711','31843','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29712','31844','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29713','31845','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29714','31846','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29715','31847','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29716','31848','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29717','31849','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29718','31850','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29719','31850','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29720','31851','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29721','31851','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29722','31852','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29723','31852','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29724','31853','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29725','31854','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29726','31855','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29727','42319','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29728','42320','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29729','42320','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29730','42321','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29731','42322','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29732','42323','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29733','42324','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29734','42325','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29735','42326','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29736','42327','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29737','42328','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29738','42328','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29739','42329','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29740','42330','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29741','42330','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29742','42331','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29743','42332','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29744','42333','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29745','42334','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29746','42335','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29747','42336','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29748','42337','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29749','42338','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29750','42339','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29751','42340','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29752','42341','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29753','42342','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29754','42343','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29755','42344','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29756','42345','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29757','42346','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29758','42347','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29759','42348','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29760','42349','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29761','42350','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29762','42351','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29763','42352','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29764','42353','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29765','42354','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29766','42355','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29767','42356','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29768','42357','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29769','31892','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29770','31893','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29771','42358','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29772','42359','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29773','31902','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29774','31902','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29775','31903','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29776','31903','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29777','31904','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29778','31905','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29779','31905','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29780','31906','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29781','31906','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29782','31907','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29783','31907','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29784','31908','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29785','31908','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29786','31909','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29788','31909','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29789','31910','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29791','31910','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29792','31911','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29794','31911','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29795','31912','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29797','31912','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29798','31913','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29800','31913','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29801','31914','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29803','31914','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29804','31915','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29806','31915','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29807','31916','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29809','31916','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29810','42363','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29812','42363','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29813','42364','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29815','42364','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29816','42365','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29818','42365','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29819','42366','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29821','42366','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29822','42367','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29824','42367','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29825','42368','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29827','42368','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29828','42369','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29830','42369','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29831','42370','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29833','42370','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29834','42371','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29835','42371','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29836','42372','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29837','42372','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29838','42373','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29839','42374','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29840','42374','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29841','42375','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29842','42375','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29843','42376','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29844','42376','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29845','42377','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29846','42377','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29847','31932','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29848','31932','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29849','31933','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29850','31933','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29851','31934','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29852','31934','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29853','31935','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29854','31935','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29855','31936','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29856','31936','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29857','31937','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29858','31937','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29859','42378','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29860','42378','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29861','42379','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29862','42379','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29863','42380','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29864','42380','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29865','42381','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29866','42381','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29867','42382','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29868','42382','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29869','42383','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29870','42383','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29871','29395','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29872','29396','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29873','29397','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29874','29397','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29875','29398','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29876','29399','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29877','29400','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29878','29400','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29879','29401','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29880','29401','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29881','29402','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29882','29403','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29883','29404','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29884','29405','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29885','29406','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29886','29407','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29887','29408','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29888','29409','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29889','29410','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29890','29411','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29891','29412','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29892','29413','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29893','29414','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29894','29415','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29895','29416','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29896','29417','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29897','29418','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29898','29419','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29899','29420','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29900','29421','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29901','29422','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29902','29423','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29903','29424','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29904','29425','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29905','29426','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29906','29427','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29907','29428','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29908','29432','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29909','29432','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29910','29433','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29911','29433','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29912','29434','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29913','29434','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29914','29435','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29915','29435','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29916','29436','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29917','29436','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29918','29436','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29919','29437','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29920','29437','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29921','29437','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29922','29438','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29923','29438','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29924','29438','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29925','29439','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29926','29439','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29927','29439','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29928','29440','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29929','29440','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29930','29440','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29931','29441','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29932','29441','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29933','29441','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29934','29442','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29935','29442','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29936','29442','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29937','29443','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29938','29443','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29939','29443','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29940','29444','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29941','29444','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29942','29444','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29943','29445','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29944','29445','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29945','29446','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29946','29446','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29947','29447','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29948','29447','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29949','29448','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29950','29448','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29951','29449','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29952','29449','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29953','29450','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29954','29450','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29955','29451','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29956','29451','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29957','29452','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29958','29452','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29959','29453','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29960','29453','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29961','28978','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29962','28979','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29963','28980','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29964','28981','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29965','28982','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29966','28983','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29967','28984','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29968','28984','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29969','28985','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29970','28985','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29971','28986','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29972','28986','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29973','28987','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29974','28988','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29975','28989','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29976','28990','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29977','28991','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29978','28992','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29979','42384','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29980','42384','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29981','42385','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29982','42386','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29983','42387','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29984','42388','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29985','42389','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29986','42390','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29987','42391','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29988','42392','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29989','42393','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29990','42393','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29991','42394','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29992','42394','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29993','42395','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29994','42395','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29995','42396','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29996','42397','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29997','42397','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29998','42398','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('29999','42399','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30000','42400','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30001','42401','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30002','42402','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30003','42403','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30004','42404','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30005','42405','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30006','42406','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30007','42407','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30008','42408','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30009','42408','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30010','42409','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30011','42409','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30012','29014','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30013','29014','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30014','29015','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30015','29015','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30016','29016','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30017','29016','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30018','29017','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30019','29018','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30020','29019','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30021','29020','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30022','29021','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30023','29022','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30024','29023','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30025','29024','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30026','29025','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30027','29026','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30028','29027','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30029','29027','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30030','29028','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30031','29028','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30032','29029','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30033','29029','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30034','29030','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30035','29030','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30036','42415','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30037','42416','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30038','42417','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30039','42418','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30040','42419','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30041','42420','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30042','42421','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30043','42422','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30044','42423','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30045','42424','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30046','42425','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30047','42425','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30048','42425','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30049','42426','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30050','42426','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30051','42426','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30052','42427','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30053','42427','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30054','42427','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30055','42428','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30056','42428','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30057','42428','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30058','42429','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30059','42429','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30060','42429','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30061','42430','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30062','42430','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30063','42430','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30064','42431','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30065','42431','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30066','42431','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30067','42432','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30068','42432','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30069','42432','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30070','42433','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30071','42433','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30072','42433','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30073','42434','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30074','42434','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30075','42434','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30076','42435','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30077','42435','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30078','42436','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30079','42436','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30080','42437','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30081','42437','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30082','42438','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30083','42438','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30084','42439','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30085','42439','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30086','42440','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30087','42440','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30088','42441','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30089','42441','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30090','29048','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30091','42442','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30092','23035','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30093','23036','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30094','23039','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30095','23041','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30096','23042','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30097','23043','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30098','23053','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30099','23054','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30100','23058','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30101','23059','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30102','23060','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30103','23060','component','security');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30104','23061','component','security');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30105','23062','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30106','23063','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30107','23077','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30108','23078','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30109','42443','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30110','42444','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30111','42445','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30112','42446','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30113','23068','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30114','23068','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30115','23069','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30116','23069','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30117','23070','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30118','23070','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30119','23071','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30120','23071','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30121','23072','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30122','23072','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30123','22835','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30124','22836','component','processes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30125','22837','component','processes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30126','22838','component','processes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30127','22839','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30128','22840','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30129','22841','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30130','22842','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30131','22843','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30132','22844','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30133','22845','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30134','22846','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30135','22848','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30136','22851','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30137','22852','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30138','22853','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30139','22854','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30140','22855','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30141','22856','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30142','22857','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30143','22858','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30144','22859','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30145','22860','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30146','22860','component','security');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30147','22861','component','security');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30148','22862','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30149','22863','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30150','42447','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30151','42448','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30152','42449','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30153','42450','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30154','22868','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30155','22868','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30156','22869','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30157','22869','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30158','22870','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30159','22870','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30160','22871','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30161','22871','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30162','22872','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30163','22872','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30164','23075','component','interfaces');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30165','23075','interfaces','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30166','23076','component','interfaces');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30167','23076','interfaces','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30168','22996','component','processes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30169','22997','component','processes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30170','22998','component','processes');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30171','22999','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30172','23000','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30173','23001','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30174','23002','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30175','23003','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30176','23004','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30177','23005','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30178','23007','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30179','23011','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30180','23012','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30181','23013','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30182','23014','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30183','23015','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30184','23016','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30185','23017','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30186','23018','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30187','23019','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30188','23020','component','security');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30189','23021','component','security');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30190','23022','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30191','23023','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30192','42451','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30193','42452','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30194','42453','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30195','42454','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30196','23025','component','interfaces');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30197','23025','interfaces','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30198','23026','component','interfaces');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30199','23026','interfaces','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30200','23028','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30201','23028','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30202','23029','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30203','23029','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30204','23030','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30205','23030','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30206','23031','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30207','23031','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30208','23032','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30209','23032','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30210','29454','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30211','29455','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30212','29456','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30213','29457','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30214','29458','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30215','29459','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30216','29460','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30217','29461','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30218','29462','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30219','29463','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30220','29466','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30221','29466','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30222','29467','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30223','29468','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30224','29469','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30225','29470','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30226','29472','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30227','29473','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30228','29474','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30229','29475','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30230','29476','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30231','29477','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30232','29478','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30233','30137','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30234','31419','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30235','31420','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30236','31420','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30237','31421','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30238','31421','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30239','31422','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30240','42455','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30241','42456','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30242','42457','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30243','42458','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30244','42459','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30245','42460','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30246','42461','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30247','42462','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30248','42463','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30249','42464','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30250','42464','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30251','42465','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30252','42465','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30253','42466','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30254','42467','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30255','42468','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30256','42469','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30257','42470','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30258','42471','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30259','42472','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30260','42473','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30261','42474','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30262','42475','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30263','42476','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30264','42477','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30265','42478','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30266','42478','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30267','42479','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30268','42480','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30269','42481','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30270','42482','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30271','42483','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30272','42484','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30273','42485','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30274','31427','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30275','31427','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30276','42486','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30277','42486','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30278','29512','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30279','29512','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30280','29513','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30281','29513','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30282','29514','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30283','29514','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30284','30425','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30285','30425','name','{#SERVICE.DISPLAYNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30286','30425','service','{#SERVICE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30287','31433','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30288','31433','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30289','31433','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30290','31434','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30291','31434','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30292','31434','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30293','31435','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30294','31435','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30295','31435','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30296','31436','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30297','31436','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30298','31436','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30299','31437','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30300','31437','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30301','31437','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30302','31438','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30303','31438','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30304','31438','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30305','31439','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30306','31439','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30307','31440','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30308','31440','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30309','31441','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30310','31441','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30311','31442','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30312','31442','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30313','33321','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30314','33321','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30315','33322','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30316','33322','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30317','33323','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30318','33323','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30319','33324','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30320','33324','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30321','42491','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30322','42491','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30323','42491','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30324','42492','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30325','42492','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30326','42492','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30327','42493','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30328','42493','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30329','42493','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30330','42494','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30331','42494','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30332','42494','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30333','42495','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30334','42495','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30335','42495','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30336','42496','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30337','42496','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30338','42496','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30339','42497','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30340','42497','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30341','42498','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30342','42498','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30343','42499','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30344','42499','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30345','42500','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30346','42500','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30347','42501','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30348','42501','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30349','42502','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30350','42502','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30351','42503','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30352','42503','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30353','42504','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30354','42504','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30355','42505','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30356','42505','name','{#SERVICE.DISPLAYNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30357','42505','service','{#SERVICE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30358','42506','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30359','42506','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30360','42507','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30361','42507','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30362','42508','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30363','42508','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30364','31453','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30365','31453','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30366','31453','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30367','31454','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30368','31454','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30369','31454','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30370','31455','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30371','31455','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30372','31455','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30373','42509','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30374','42509','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30375','42509','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30376','42510','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30377','42510','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30378','42510','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30379','42511','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30380','42511','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30381','42511','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30382','31948','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30383','31949','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30384','31950','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30385','31951','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30386','31952','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30387','31953','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30388','31954','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30389','31955','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30390','31956','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30391','31957','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30392','31958','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30393','31959','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30394','31960','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30395','31961','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30396','31962','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30397','31963','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30398','31964','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30399','31965','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30400','31966','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30401','31967','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30402','31968','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30403','31968','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30404','31969','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30405','31969','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30406','31970','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30407','31970','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30408','31971','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30409','31972','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30410','31973','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30411','31974','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30412','42512','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30413','42513','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30414','42514','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30415','42515','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30416','42516','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30417','42517','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30418','42518','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30419','42519','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30420','42520','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30421','42520','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30422','42521','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30423','42521','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30424','42522','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30425','42523','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30426','42524','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30427','42525','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30428','42526','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30429','42527','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30430','42528','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30431','42529','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30432','42530','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30433','42531','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30434','42532','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30435','42533','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30436','42534','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30437','42534','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30438','42535','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30439','42536','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30440','42537','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30441','42538','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30442','42539','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30443','42540','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30444','42541','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30445','32002','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30446','32002','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30447','42542','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30448','42542','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30449','32012','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30450','32012','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30451','32013','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30452','32013','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30453','32014','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30454','32014','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30455','32015','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30456','32015','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30457','32015','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30458','32016','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30459','32016','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30460','32016','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30461','32017','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30462','32017','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30463','32017','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30464','32018','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30465','32018','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30466','32018','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30467','32019','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30468','32019','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30469','32019','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30470','32020','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30471','32020','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30472','32020','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30473','32021','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30474','32021','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30475','32022','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30476','32022','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30477','32023','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30478','32023','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30479','32024','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30480','32024','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30481','32025','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30482','32025','name','{#SERVICE.DISPLAYNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30483','32025','service','{#SERVICE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30484','33329','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30485','33329','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30486','33330','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30487','33330','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30488','33331','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30489','33331','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30490','33332','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30491','33332','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30492','42547','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30493','42547','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30494','42547','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30495','42548','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30496','42548','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30497','42548','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30498','42549','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30499','42549','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30500','42549','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30501','42550','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30502','42550','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30503','42550','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30504','42551','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30505','42551','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30506','42551','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30507','42552','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30508','42552','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30509','42552','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30510','42553','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30511','42553','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30512','42554','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30513','42554','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30514','42555','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30515','42555','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30516','42556','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30517','42556','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30518','42557','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30519','42557','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30520','42558','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30521','42558','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30522','42559','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30523','42559','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30524','42560','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30525','42560','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30526','42561','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30527','42561','name','{#SERVICE.DISPLAYNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30528','42561','service','{#SERVICE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30529','42562','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30530','42562','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30531','42563','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30532','42563','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30533','42564','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30534','42564','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30535','32040','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30536','32040','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30537','32040','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30538','32041','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30539','32041','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30540','32041','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30541','32042','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30542','32042','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30543','32042','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30544','42565','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30545','42565','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30546','42565','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30547','42566','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30548','42566','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30549','42566','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30550','42567','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30551','42567','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30552','42567','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30553','42568','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30554','42568','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30555','42569','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30556','42569','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30557','42570','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30558','42570','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30559','42571','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30560','42572','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30561','42573','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30562','42574','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30563','42575','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30564','42576','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30565','42577','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30566','42578','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30567','42579','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30568','42579','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30569','42583','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30570','42583','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30571','42583','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30572','42584','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30573','42584','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30574','42584','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30575','42585','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30576','42585','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30577','42585','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30578','42586','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30579','42586','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30580','42586','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30581','42587','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30582','42587','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30583','42587','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30584','42588','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30585','42588','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30586','42588','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30587','42589','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30588','42589','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30589','42589','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30590','42590','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30591','42590','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30592','42590','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30593','42591','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30594','42591','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30595','42591','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30596','42592','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30597','42592','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30598','42593','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30599','42593','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30600','42594','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30601','42594','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30602','42595','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30603','42596','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30604','42597','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30605','34451','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30606','34452','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30607','34452','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30608','34453','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30609','34454','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30610','34455','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30611','34456','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30612','34457','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30613','34458','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30614','34459','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30615','34460','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30616','34461','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30617','34462','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30618','34463','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30619','34464','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30620','34465','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30621','34466','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30622','34467','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30623','34468','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30624','34469','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30625','34470','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30626','34471','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30627','34471','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30628','34472','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30629','34473','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30630','34474','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30631','34475','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30632','34475','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30633','34482','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30634','34483','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30635','34483','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30636','34484','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30637','34484','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30638','34485','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30639','34485','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30640','34486','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30641','34487','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30642','34488','component','humidity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30643','34488','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30644','34489','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30645','34489','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30646','34490','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30647','34490','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30648','34491','component','humidity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30649','34491','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30650','34492','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30651','34492','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30652','34493','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30653','34493','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30654','34494','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30655','34495','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30656','34496','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30657','34497','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30658','34498','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30659','34499','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30660','34500','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30661','34500','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30662','34501','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30663','34502','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30664','34503','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30665','34504','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30666','34505','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30667','34506','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30668','34507','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30669','34508','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30670','34509','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30671','34510','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30672','34511','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30673','34512','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30674','34513','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30675','34514','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30676','34515','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30677','34516','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30678','34517','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30679','34518','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30680','34519','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30681','34519','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30682','34520','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30683','34521','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30684','34522','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30685','34523','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30686','34523','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30687','34530','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30688','34531','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30689','34531','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30690','34532','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30691','34532','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30692','34533','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30693','34533','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30694','34534','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30695','34535','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30696','34536','component','humidity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30697','34536','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30698','34537','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30699','34537','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30700','34538','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30701','34538','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30702','34539','component','humidity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30703','34539','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30704','34540','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30705','34540','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30706','34541','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30707','34541','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30708','34542','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30709','34543','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30710','34544','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30711','34545','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30712','34546','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30713','34547','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30714','34548','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30715','34548','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30716','34549','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30717','34550','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30718','34551','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30719','34552','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30720','34553','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30721','34554','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30722','34555','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30723','34556','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30724','34557','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30725','34558','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30726','34559','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30727','34560','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30728','34561','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30729','34562','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30730','34563','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30731','34564','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30732','34565','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30733','34566','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30734','34567','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30735','34567','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30736','34568','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30737','34569','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30738','34570','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30739','34571','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30740','34571','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30741','34578','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30742','34579','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30743','34579','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30744','34580','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30745','34580','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30746','34581','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30747','34581','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30748','34582','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30749','34583','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30750','34584','component','humidity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30751','34584','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30752','34585','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30753','34585','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30754','34586','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30755','34586','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30756','34587','component','humidity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30757','34587','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30758','34588','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30759','34588','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30760','34589','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30761','34589','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30762','34590','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30763','34591','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30764','34592','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30765','34593','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30766','34594','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30767','34595','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30768','34596','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30769','34596','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30770','34597','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30771','34598','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30772','34599','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30773','34600','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30774','34601','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30775','34602','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30776','34603','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30777','34604','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30778','34605','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30779','34606','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30780','34607','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30781','34608','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30782','34609','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30783','34610','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30784','34611','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30785','34612','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30786','34613','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30787','34614','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30788','34615','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30789','34615','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30790','34616','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30791','34617','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30792','34618','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30793','34619','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30794','34619','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30795','34626','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30796','34627','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30797','34627','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30798','34628','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30799','34628','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30800','34629','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30801','34629','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30802','34630','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30803','34631','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30804','34632','component','humidity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30805','34632','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30806','34633','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30807','34633','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30808','34634','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30809','34634','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30810','34635','component','humidity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30811','34635','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30812','34636','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30813','34636','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30814','34637','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30815','34637','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30816','34638','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30817','34639','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30818','34640','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30819','34641','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30820','34642','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30821','34643','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30822','34644','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30823','34644','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30824','34645','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30825','34646','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30826','34647','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30827','34648','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30828','34649','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30829','34650','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30830','34651','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30831','34652','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30832','34653','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30833','34654','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30834','34655','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30835','34656','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30836','34657','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30837','34658','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30838','34659','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30839','34660','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30840','34661','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30841','34662','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30842','34663','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30843','34663','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30844','34664','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30845','34665','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30846','34666','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30847','34667','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30848','34667','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30849','34674','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30850','34675','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30851','34675','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30852','34676','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30853','34676','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30854','34677','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30855','34677','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30856','34678','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30857','34679','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30858','34680','component','humidity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30859','34680','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30860','34681','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30861','34681','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30862','34682','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30863','34682','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30864','34683','component','humidity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30865','34683','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30866','34684','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30867','34684','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30868','34685','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30869','34685','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30870','34686','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30871','34687','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30872','34688','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30873','34689','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30874','34690','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30875','35016','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30876','35017','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30877','35017','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30878','35018','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30879','35019','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30880','35020','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30881','35021','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30882','35022','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30883','35023','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30884','35024','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30885','35025','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30886','35026','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30887','35027','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30888','35028','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30889','35029','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30890','35030','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30891','35031','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30892','35032','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30893','35033','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30894','35034','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30895','35035','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30896','35036','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30897','35036','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30898','35037','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30899','35038','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30900','35039','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30901','35040','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30902','35040','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30903','35047','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30904','35048','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30905','35048','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30906','35049','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30907','35049','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30908','35050','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30909','35050','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30910','35051','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30911','35052','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30912','35053','component','humidity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30913','35053','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30914','35054','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30915','35054','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30916','35055','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30917','35055','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30918','35056','component','humidity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30919','35056','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30920','35057','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30921','35057','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30922','35058','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30923','35058','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30924','35059','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30925','35060','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30926','35061','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30927','35062','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30928','35063','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30929','34739','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30930','34740','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30931','34740','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30932','34741','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30933','34742','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30934','34743','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30935','34744','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30936','34745','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30937','34746','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30938','34747','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30939','34748','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30940','34749','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30941','34750','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30942','34751','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30943','34752','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30944','34753','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30945','34754','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30946','34755','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30947','34756','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30948','34757','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30949','34758','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30950','34759','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30951','34759','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30952','34760','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30953','34761','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30954','34762','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30955','34763','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30956','34763','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30957','34770','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30958','34771','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30959','34771','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30960','34772','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30961','34772','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30962','34773','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30963','34773','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30964','34774','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30965','34775','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30966','34776','component','humidity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30967','34776','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30968','34777','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30969','34777','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30970','34778','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30971','34778','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30972','34779','component','humidity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30973','34779','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30974','34780','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30975','34780','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30976','34781','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30977','34781','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30978','34782','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30979','34783','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30980','34784','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30981','34785','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30982','34786','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30983','34180','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30984','34181','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30985','34182','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30986','34183','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30987','34185','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30988','34186','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30989','34187','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30990','34188','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30991','34189','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30992','34190','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30993','34191','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30994','34191','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30995','34192','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30996','34193','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30997','34194','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30998','34195','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('30999','34196','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31000','34200','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31001','34201','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31002','34202','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31003','34202','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31004','34203','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31005','34204','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31006','34205','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31007','34206','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31008','34206','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31009','34787','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31010','34788','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31011','34212','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31012','34213','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31013','34213','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31014','34214','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31015','34214','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31016','34215','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31017','34215','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31018','34216','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31019','34217','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31020','34218','component','humidity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31021','34218','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31022','34219','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31023','34219','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31024','34220','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31025','34220','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31026','34221','component','humidity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31027','34221','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31028','34222','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31029','34222','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31030','34223','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31031','34223','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31032','34224','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31033','34225','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31034','34790','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31035','34791','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31036','34792','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31037','34793','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31038','34794','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31039','34794','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31040','34795','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31041','34796','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31042','34797','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31043','34798','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31044','34799','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31045','34800','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31046','34801','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31047','34802','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31048','34803','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31049','34804','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31050','34805','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31051','34806','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31052','34807','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31053','34808','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31054','34809','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31055','34810','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31056','34811','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31057','34812','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31058','34813','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31059','34813','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31060','34814','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31061','34815','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31062','34816','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31063','34817','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31064','34817','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31065','34824','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31066','34825','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31067','34825','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31068','34826','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31069','34826','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31070','34827','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31071','34827','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31072','34828','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31073','34829','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31074','34830','component','humidity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31075','34830','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31076','34831','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31077','34831','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31078','34832','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31079','34832','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31080','34833','component','humidity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31081','34833','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31082','34834','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31083','34834','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31084','34835','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31085','34835','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31086','34836','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31087','34837','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31088','34838','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31089','34839','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31090','34840','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31091','34841','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31092','34842','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31093','34842','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31094','34843','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31095','34844','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31096','34845','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31097','34846','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31098','34847','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31099','34848','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31100','34849','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31101','34850','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31102','34851','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31103','34852','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31104','34853','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31105','34854','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31106','34855','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31107','34856','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31108','34857','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31109','34858','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31110','34859','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31111','34860','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31112','34861','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31113','34861','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31114','34862','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31115','34863','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31116','34864','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31117','34865','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31118','34865','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31119','34872','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31120','34873','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31121','34873','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31122','34874','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31123','34874','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31124','34875','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31125','34875','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31126','34876','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31127','34877','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31128','34878','component','humidity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31129','34878','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31130','34879','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31131','34879','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31132','34880','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31133','34880','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31134','34881','component','humidity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31135','34881','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31136','34882','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31137','34882','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31138','34883','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31139','34883','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31140','34884','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31141','34885','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31142','34886','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31143','34887','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31144','34888','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31145','34889','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31146','34890','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31147','34890','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31148','34891','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31149','34892','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31150','34893','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31151','34894','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31152','34895','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31153','34896','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31154','34897','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31155','34898','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31156','34899','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31157','34900','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31158','34901','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31159','34902','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31160','34903','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31161','34904','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31162','34905','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31163','34906','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31164','34907','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31165','34908','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31166','34909','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31167','34909','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31168','34910','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31169','34911','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31170','34912','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31171','34913','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31172','34913','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31173','34920','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31174','34921','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31175','34921','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31176','34922','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31177','34922','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31178','34923','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31179','34923','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31180','34924','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31181','34925','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31182','34926','component','humidity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31183','34926','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31184','34927','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31185','34927','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31186','34928','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31187','34928','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31188','34929','component','humidity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31189','34929','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31190','34930','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31191','34930','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31192','34931','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31193','34931','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31194','34932','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31195','34933','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31196','34934','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31197','34935','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31198','34936','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31199','33691','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31200','33691','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31201','33692','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31202','33693','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31203','33694','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31204','42598','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31205','42598','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31206','42599','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31207','42599','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31208','42600','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31209','42600','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31210','42601','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31211','42602','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31212','42603','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31213','42604','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31214','42605','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31215','42606','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31216','42607','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31217','42608','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31218','42608','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31219','33703','bbu','{#ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31220','33703','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31221','33703','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31222','33703','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31223','33704','bbu','{#ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31224','33704','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31225','33704','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31226','33704','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31227','33705','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31228','33705','controller','{#ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31229','33706','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31230','33706','controller','{#ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31231','33707','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31232','33707','controller','{#ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31233','33708','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31234','33708','controller','{#ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31235','33709','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31236','33709','controller','{#ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31237','33710','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31238','33710','disk','{#MODEL}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31239','33710','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31240','33711','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31241','33711','disk','{#MODEL}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31242','33711','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31243','33712','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31244','33712','disk','{#MODEL}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31245','33712','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31246','33713','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31247','33713','disk','{#MODEL}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31248','33713','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31249','33714','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31250','33714','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31251','33715','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31252','33715','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31253','33716','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31254','33716','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31255','33717','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31256','33717','fan','{#ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31257','33717','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31258','33718','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31259','33718','fan','{#ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31260','33718','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31261','33719','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31262','33719','lun','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31263','33720','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31264','33720','lun','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31265','33721','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31266','33721','lun','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31267','33722','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31268','33722','lun','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31269','33723','component','traffic');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31270','33723','lun','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31271','33724','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31272','33724','lun','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31273','33725','component','traffic');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31274','33725','lun','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31275','33726','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31276','33726','lun','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31277','33727','component','traffic');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31278','33727','lun','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31279','33728','component','traffic');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31280','33728','lun','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31281','33729','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31282','33729','lun','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31283','33730','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31284','33730','node','{#NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31285','33731','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31286','33731','node','{#NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31287','33732','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31288','33732','node','{#NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31289','33733','component','traffic');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31290','33733','node','{#NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31291','33734','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31292','33734','node','{#NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31293','33735','component','traffic');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31294','33735','node','{#NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31295','33736','component','operations');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31296','33736','node','{#NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31297','33737','component','traffic');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31298','33737','node','{#NODE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31299','33738','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31300','33738','pool','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31301','33739','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31302','33739','pool','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31303','33740','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31304','33740','pool','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31305','33741','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31306','33741','pool','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31307','33742','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31308','33742','pool','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31309','33743','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31310','33743','pool','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31311','34226','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31312','34227','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31313','34227','component','latency');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31314','34228','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31315','34229','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31316','34230','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31317','34231','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31318','34232','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31319','34233','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31320','34234','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31321','34235','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31322','34236','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31323','34236','component','latency');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31324','34237','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31325','34237','component','latency');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31326','34238','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31327','34239','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31328','34239','component','latency');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31329','34240','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31330','34241','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31331','34242','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31332','34243','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31333','34243','component','iops');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31334','34244','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31335','34244','component','iops');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31336','34245','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31337','34245','component','iops');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31338','34246','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31339','34246','component','iops');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31340','34247','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31341','34247','component','iops');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31342','34248','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31343','34249','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31344','34249','component','throughput');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31345','34250','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31346','34250','component','iops');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31347','34251','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31348','34251','component','throughput');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31349','34252','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31350','34252','component','throughput');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31351','34253','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31352','34253','component','throughput');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31353','34254','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31354','34254','component','latency');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31355','34255','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31356','34255','component','latency');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31357','34256','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31358','34256','component','iops');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31359','34257','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31360','34257','component','latency');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31361','34258','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31362','34258','component','iops');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31363','34259','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31364','34259','component','latency');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31365','34269','component','latency');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31366','34269','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31367','34269','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31368','34270','component','latency');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31369','34270','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31370','34270','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31371','34271','component','latency');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31372','34271','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31373','34271','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31374','34272','component','latency');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31375','34272','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31376','34272','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31377','34273','chassis','{#ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31378','34273','component','chassis');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31379','34274','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31380','34274','disk','{#DISKNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31381','34274','node','{#NODENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31382','34275','chassis','{#CHASSISID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31383','34275','component','fru');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31384','34275','fru','{#FRUID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31385','34276','component','lun');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31386','34276','lun','{#LUNNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31387','34276','svm','{#SVMNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31388','34277','component','lun');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31389','34277','lun','{#LUNNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31390','34277','svm','{#SVMNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31391','34278','component','lun');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31392','34278','lun','{#LUNNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31393','34278','svm','{#SVMNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31394','34279','component','lun');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31395','34279','lun','{#LUNNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31396','34279','svm','{#SVMNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31397','34280','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31398','34280','node','{#NODENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31399','34281','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31400','34281','node','{#NODENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31401','34282','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31402','34282','node','{#NODENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31403','34283','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31404','34283','node','{#NODENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31405','34284','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31406','34284','node','{#NODENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31407','34285','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31408','34285','node','{#NODENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31409','34286','component','interfaces');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31410','34286','interfaces','{#ETHPORTNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31411','34286','node','{#NODENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31412','34287','component','fc-port');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31413','34287','fc-port','{#FCPORTNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31414','34287','node','{#NODENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31415','34288','component','fc-port');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31416','34288','fc-port','{#FCPORTNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31417','34288','node','{#NODENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31418','34289','component','svm');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31419','34289','svm','{#SVMNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31420','34290','component','svm');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31421','34290','svm','{#SVMNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31422','34291','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31423','34291','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31424','34292','component','throughput');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31425','34292','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31426','34292','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31427','34293','component','throughput');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31428','34293','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31429','34293','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31430','34294','component','throughput');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31431','34294','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31432','34294','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31433','34295','component','throughput');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31434','34295','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31435','34295','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31436','34296','component','latency');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31437','34296','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31438','34296','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31439','34297','component','latency');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31440','34297','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31441','34297','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31442','34298','component','latency');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31443','34298','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31444','34298','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31445','34299','component','latency');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31446','34299','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31447','34299','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31448','34300','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31449','34300','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31450','34301','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31451','34301','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31452','34302','component','iops');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31453','34302','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31454','34302','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31455','34303','component','iops');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31456','34303','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31457','34303','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31458','34304','component','iops');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31459','34304','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31460','34304','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31461','34305','component','iops');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31462','34305','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31463','34305','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31464','34306','component','iops');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31465','34306','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31466','34306','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31467','34307','component','iops');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31468','34307','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31469','34307','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31470','34308','component','iops');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31471','34308','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31472','34308','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31473','34309','component','iops');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31474','34309','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31475','34309','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31476','34310','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31477','34310','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31478','34311','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31479','34311','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31480','34312','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31481','34312','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31482','34313','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31483','34313','volume','{#VOLUMENAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31484','33348','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31485','33349','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31486','33350','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31487','33351','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31488','42609','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31489','42609','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31490','42610','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31491','42610','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31492','42611','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31493','42611','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31494','42612','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31495','42613','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31496','42614','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31497','42615','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31498','42616','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31499','42617','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31500','42618','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31501','42619','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31502','42619','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31503','33357','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31504','33357','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31505','33358','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31506','33358','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31507','33359','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31508','33359','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31509','33360','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31510','33360','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31511','33361','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31512','33361','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31513','33362','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31514','33362','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31515','33362','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31516','33363','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31517','33363','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31518','33364','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31519','33364','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31520','33365','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31521','33365','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31522','33366','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31523','33366','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31524','33367','component','node');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31525','33367','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31526','33368','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31527','33368','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31528','33369','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31529','33369','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31530','33369','vserver','{#VSERVER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31531','33370','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31532','33370','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31533','33370','vserver','{#VSERVER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31534','33371','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31535','33371','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31536','33371','vserver','{#VSERVER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31537','33372','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31538','33372','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31539','33372','vserver','{#VSERVER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31540','33373','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31541','33373','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31542','33373','vserver','{#VSERVER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31543','33374','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31544','33374','filesystem','{#FSNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31545','33374','vserver','{#VSERVER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31546','33375','component','ha');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31547','33375','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31548','33376','component','ha');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31549','33376','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31550','33377','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31551','33377','description','{#IFDESCR}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31552','33377','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31553','33378','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31554','33378','description','{#IFDESCR}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31555','33378','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31556','33379','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31557','33379','description','{#IFDESCR}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31558','33379','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31559','33380','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31560','33380','description','{#IFDESCR}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31561','33380','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31562','33381','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31563','33381','description','{#IFDESCR}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31564','33381','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31565','33382','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31566','33382','description','{#IFDESCR}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31567','33382','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31568','33383','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31569','33383','description','{#IFDESCR}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31570','33383','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31571','33384','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31572','33384','description','{#IFDESCR}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31573','33384','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31574','33385','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31575','33385','description','{#IFDESCR}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31576','33385','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31577','33386','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31578','33386','description','{#IFDESCR}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31579','33386','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31580','33387','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31581','33387','description','{#IFDESCR}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31582','33387','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31583','33388','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31584','33388','description','{#IFDESCR}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31585','33388','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31586','30685','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31587','30688','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31588','30688','sensor','{#SENSOR_TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31589','30689','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31590','30689','sensor','{#SENSOR_TYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31591','36160','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31592','36161','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31593','36162','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31594','36163','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31595','36164','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31596','36165','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31597','36166','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31598','36167','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31599','36167','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31600','36178','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31601','36178','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31602','36178','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31603','36179','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31604','36179','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31605','36179','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31606','36180','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31607','36180','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31608','36180','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31609','36181','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31610','36182','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31611','36182','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31612','36182','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31613','36183','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31614','36183','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31615','36183','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31616','36184','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31617','36184','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31618','36184','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31619','36185','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31620','36185','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31621','36185','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31622','36186','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31623','36186','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31624','36186','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31625','36187','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31626','36187','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31627','36187','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31628','36188','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31629','36188','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31630','36188','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31631','36189','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31632','36189','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31633','36189','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31634','36190','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31635','36190','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31636','36190','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31637','36191','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31638','36191','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31639','36191','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31640','36192','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31641','36192','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31642','36192','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31643','36193','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31644','36193','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31645','36193','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31646','36194','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31647','36194','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31648','36194','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31649','36195','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31650','36195','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31651','36195','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31652','36196','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31653','36196','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31654','36197','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31655','36197','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31656','36198','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31657','36198','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31658','36199','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31659','36199','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31660','36200','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31661','36200','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31662','36201','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31663','36202','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31664','36203','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31665','36204','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31666','36205','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31667','36206','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31668','36207','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31669','36208','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31670','36209','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31671','36210','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31672','36210','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31673','36211','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31674','36211','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31675','36212','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31676','36212','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31677','42620','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31678','42620','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31679','42621','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31680','42621','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31681','42622','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31682','42622','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31683','42623','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31684','42624','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31685','42625','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31686','42626','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31687','42627','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31688','42628','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31689','42629','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31690','42630','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31691','42630','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31692','30066','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31693','30067','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31694','30068','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31695','30069','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31696','30070','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31697','30071','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31698','30072','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31699','30073','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31700','30074','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31701','30075','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31702','30076','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31703','30076','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31704','30077','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31705','30077','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31706','30078','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31707','30078','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31708','30079','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31709','30079','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31710','30080','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31711','30080','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31712','30081','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31713','30081','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31714','30082','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31715','30082','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31716','30083','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31717','30083','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31718','30083','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31719','30084','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31720','30084','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31721','30084','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31722','30085','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31723','30085','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31724','30085','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31725','36213','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31726','36214','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31727','36214','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31728','36215','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31729','36216','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31730','36217','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31731','36218','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31732','36227','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31733','36227','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31734','36228','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31735','36228','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31736','36229','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31737','36229','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31738','36230','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31739','36230','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31740','36231','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31741','36231','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31742','36231','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31743','36232','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31744','36232','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31745','36233','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31746','36233','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31747','36234','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31748','36234','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31749','36235','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31750','36236','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31751','36237','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31752','36238','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31753','36239','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31754','36240','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31755','36241','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31756','36241','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31757','36242','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31758','36242','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31759','36243','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31760','36243','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31761','36244','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31762','36244','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31763','36245','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31764','36245','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31765','36246','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31766','36247','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31767','36248','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31768','36249','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31769','36249','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31770','36250','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31771','36250','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31772','36251','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31773','36251','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31774','36252','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31775','36252','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31776','36253','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31777','36253','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31778','36254','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31779','36254','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31780','36255','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31781','36256','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31782','36257','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31783','36258','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31784','36259','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31785','36260','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31786','36261','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31787','36262','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31788','36263','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31789','36263','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31790','36264','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31791','36265','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31792','36266','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31793','36267','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31794','36267','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31795','36275','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31796','36275','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31797','36276','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31798','36276','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31799','36277','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31800','36277','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31801','36278','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31802','36279','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31803','36280','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31804','36280','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31805','36281','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31806','36281','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31807','36282','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31808','36282','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31809','36283','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31810','36283','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31811','36284','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31812','36284','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31813','36285','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31814','36285','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31815','36286','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31816','36287','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31817','36288','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31818','36289','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31819','36289','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31820','36290','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31821','36290','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31822','36291','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31823','36291','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31824','36292','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31825','36292','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31826','36293','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31827','36293','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31828','36294','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31829','36294','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31830','36295','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31831','36296','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31832','36296','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31833','36297','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31834','36298','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31835','36299','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31836','36300','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31837','36300','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31838','36309','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31839','36309','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31840','36310','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31841','36310','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31842','36311','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31843','36311','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31844','36312','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31845','36312','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31846','36313','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31847','36313','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31848','36313','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31849','36314','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31850','36314','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31851','36315','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31852','36315','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31853','36316','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31854','36316','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31855','36317','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31856','36318','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31857','36319','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31858','36320','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31859','36321','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31860','36322','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31861','36323','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31862','36323','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31863','36324','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31864','36324','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31865','36325','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31866','36325','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31867','36326','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31868','36326','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31869','36327','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31870','36327','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31871','36328','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31872','36329','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31873','36330','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31874','36331','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31875','36331','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31876','36332','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31877','36332','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31878','36333','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31879','36333','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31880','36334','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31881','36334','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31882','36335','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31883','36335','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31884','36336','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31885','36336','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31886','36337','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31887','36338','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31888','36339','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31889','36340','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31890','36341','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31891','36342','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31892','36343','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31893','36344','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31894','36345','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31895','36345','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31896','36346','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31897','36347','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31898','36348','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31899','36349','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31900','36349','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31901','36357','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31902','36357','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31903','36358','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31904','36358','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31905','36359','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31906','36359','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31907','36360','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31908','36361','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31909','36362','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31910','36362','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31911','36363','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31912','36363','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31913','36364','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31914','36364','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31915','36365','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31916','36365','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31917','36366','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31918','36366','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31919','36367','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31920','36367','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31921','36368','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31922','36369','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31923','36370','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31924','36371','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31925','36371','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31926','36372','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31927','36372','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31928','36373','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31929','36373','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31930','36374','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31931','36374','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31932','36375','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31933','36375','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31934','36376','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31935','36376','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31936','36377','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31937','36378','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31938','36378','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31939','36379','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31940','36380','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31941','36381','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31942','36382','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31943','36382','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31944','36391','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31945','36391','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31946','36392','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31947','36392','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31948','36393','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31949','36393','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31950','36394','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31951','36394','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31952','36395','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31953','36395','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31954','36395','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31955','36396','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31956','36396','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31957','36397','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31958','36397','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31959','36398','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31960','36398','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31961','36399','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31962','36400','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31963','36401','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31964','36402','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31965','36403','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31966','36404','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31967','36405','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31968','36405','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31969','36406','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31970','36406','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31971','36407','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31972','36407','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31973','36408','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31974','36408','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31975','36409','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31976','36409','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31977','36410','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31978','36411','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31979','36412','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31980','36413','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31981','36413','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31982','36414','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31983','36414','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31984','36415','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31985','36415','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31986','36416','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31987','36416','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31988','36417','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31989','36417','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31990','36418','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31991','36418','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31992','36419','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31993','36420','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31994','36421','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31995','36422','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31996','36423','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31997','36424','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31998','36425','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('31999','36426','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32000','36427','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32001','36427','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32002','36428','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32003','36429','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32004','36430','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32005','36431','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32006','36431','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32007','36439','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32008','36439','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32009','36440','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32010','36440','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32011','36441','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32012','36441','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32013','36442','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32014','36443','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32015','36444','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32016','36444','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32017','36445','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32018','36445','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32019','36446','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32020','36446','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32021','36447','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32022','36447','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32023','36448','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32024','36448','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32025','36449','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32026','36449','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32027','36450','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32028','36451','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32029','36452','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32030','36453','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32031','36453','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32032','36454','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32033','36454','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32034','36455','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32035','36455','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32036','36456','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32037','36456','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32038','36457','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32039','36457','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32040','36458','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32041','36458','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32042','36459','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32043','36460','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32044','36460','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32045','36461','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32046','36462','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32047','36463','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32048','36464','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32049','36464','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32050','36473','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32051','36473','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32052','36474','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32053','36474','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32054','36475','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32055','36475','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32056','36476','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32057','36476','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32058','36477','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32059','36477','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32060','36477','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32061','36478','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32062','36478','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32063','36479','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32064','36479','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32065','36480','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32066','36480','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32067','36481','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32068','36482','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32069','36483','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32070','36484','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32071','36485','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32072','36486','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32073','36487','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32074','36487','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32075','36488','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32076','36488','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32077','36489','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32078','36489','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32079','36490','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32080','36490','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32081','36491','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32082','36491','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32083','36492','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32084','36493','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32085','36494','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32086','36495','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32087','36495','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32088','36496','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32089','36496','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32090','36497','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32091','36497','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32092','36498','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32093','36498','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32094','36499','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32095','36499','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32096','36500','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32097','36500','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32098','36501','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32099','36502','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32100','36503','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32101','36504','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32102','36505','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32103','36506','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32104','36507','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32105','36508','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32106','36509','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32107','36509','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32108','36510','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32109','36511','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32110','36512','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32111','36513','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32112','36513','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32113','36521','component','battery');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32114','36521','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32115','36522','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32116','36522','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32117','36523','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32118','36523','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32119','36524','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32120','36525','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32121','36526','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32122','36526','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32123','36527','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32124','36527','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32125','36528','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32126','36528','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32127','36529','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32128','36529','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32129','36530','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32130','36530','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32131','36531','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32132','36531','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32133','36532','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32134','36533','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32135','36534','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32136','36535','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32137','36535','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32138','36536','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32139','36536','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32140','36537','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32141','36537','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32142','36538','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32143','36538','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32144','36539','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32145','36539','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32146','36540','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32147','36540','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32148','28341','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32149','28342','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32150','28344','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32151','28345','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32152','30141','component','os');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32153','42631','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32154','42631','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32155','42632','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32156','42632','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32157','42633','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32158','42633','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32159','42634','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32160','42635','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32161','42636','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32162','42637','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32163','42638','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32164','42639','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32165','42640','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32166','42641','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32167','42641','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32168','28354','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32169','28355','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32170','28356','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32171','28357','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32172','28358','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32173','28359','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32174','28360','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32175','28361','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32176','28361','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32177','28362','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32178','28362','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32179','28363','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32180','28363','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32181','28364','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32182','28364','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32183','28365','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32184','28365','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32185','28366','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32186','28366','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32187','28367','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32188','28367','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32189','28368','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32190','28368','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32191','28369','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32192','28369','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32193','28370','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32194','28370','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32195','28371','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32196','28371','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32197','28372','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32198','28372','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32199','28373','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32200','28373','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32201','28374','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32202','28374','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32203','28374','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32204','28375','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32205','28375','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32206','28375','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32207','28376','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32208','28376','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32209','28376','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32210','36541','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32211','36542','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32212','36543','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32213','36544','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32214','36545','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32215','36546','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32216','36547','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32217','36548','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32218','36549','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32219','36549','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32220','36550','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32221','36551','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32222','36552','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32223','36552','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32224','36567','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32225','36567','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32226','36568','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32227','36568','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32228','36569','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32229','36569','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32230','36570','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32231','36570','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32232','36571','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32233','36572','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32234','36573','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32235','36573','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32236','36574','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32237','36574','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32238','36575','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32239','36575','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32240','36576','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32241','36576','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32242','36577','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32243','36577','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32244','36578','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32245','36578','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32246','36579','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32247','36580','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32248','36581','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32249','36582','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32250','36582','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32251','36583','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32252','36583','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32253','36584','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32254','36585','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32255','36586','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32256','36587','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32257','36588','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32258','36589','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32259','36589','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32260','36590','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32261','36590','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32262','36591','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32263','36591','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32264','36592','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32265','36592','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32266','36593','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32267','36594','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32268','36595','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32269','36595','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32270','36596','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32271','36596','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32272','36597','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32273','36597','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32274','36598','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32275','36599','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32276','36600','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32277','36601','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32278','36602','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32279','36603','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32280','36604','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32281','36605','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32282','36606','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32283','36606','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32284','36607','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32285','36608','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32286','36609','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32287','36609','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32288','36624','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32289','36624','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32290','36625','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32291','36625','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32292','36626','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32293','36626','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32294','36627','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32295','36627','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32296','36628','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32297','36629','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32298','36630','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32299','36630','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32300','36631','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32301','36631','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32302','36632','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32303','36632','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32304','36633','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32305','36633','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32306','36634','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32307','36634','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32308','36635','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32309','36635','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32310','36636','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32311','36637','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32312','36638','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32313','36639','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32314','36639','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32315','36640','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32316','36640','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32317','36641','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32318','36642','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32319','36643','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32320','36644','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32321','36645','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32322','36646','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32323','36646','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32324','36647','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32325','36647','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32326','36648','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32327','36648','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32328','36649','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32329','36649','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32330','36650','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32331','36651','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32332','36652','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32333','36652','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32334','36653','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32335','36653','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32336','36654','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32337','36654','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32338','36655','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32339','36656','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32340','36657','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32341','36658','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32342','36659','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32343','36660','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32344','36661','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32345','36662','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32346','36663','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32347','36663','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32348','36664','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32349','36665','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32350','36666','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32351','36666','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32352','36681','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32353','36681','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32354','36682','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32355','36682','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32356','36683','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32357','36683','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32358','36684','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32359','36684','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32360','36685','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32361','36686','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32362','36687','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32363','36687','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32364','36688','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32365','36688','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32366','36689','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32367','36689','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32368','36690','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32369','36690','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32370','36691','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32371','36691','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32372','36692','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32373','36692','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32374','36693','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32375','36694','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32376','36695','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32377','36696','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32378','36696','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32379','36697','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32380','36697','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32381','36698','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32382','36699','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32383','36700','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32384','36701','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32385','36702','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32386','36703','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32387','36703','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32388','36704','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32389','36704','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32390','36705','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32391','36705','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32392','36706','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32393','36706','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32394','36707','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32395','36708','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32396','36709','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32397','36709','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32398','36710','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32399','36710','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32400','36711','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32401','36711','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32402','36712','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32403','36713','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32404','36714','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32405','36715','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32406','36716','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32407','36717','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32408','36718','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32409','36719','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32410','36720','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32411','36720','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32412','36721','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32413','36722','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32414','36723','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32415','36723','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32416','36738','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32417','36738','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32418','36739','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32419','36739','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32420','36740','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32421','36740','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32422','36741','component','diskarray');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32423','36741','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32424','36742','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32425','36743','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32426','36744','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32427','36744','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32428','36745','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32429','36745','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32430','36746','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32431','36746','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32432','36747','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32433','36747','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32434','36748','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32435','36748','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32436','36749','component','physicaldisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32437','36749','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32438','36750','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32439','36751','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32440','36752','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32441','36753','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32442','36753','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32443','36754','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32444','36754','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32445','36755','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32446','36756','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32447','36757','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32448','36758','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32449','36759','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32450','36760','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32451','36760','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32452','36761','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32453','36761','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32454','36762','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32455','36762','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32456','36763','component','psu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32457','36763','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32458','36764','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32459','36765','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32460','36766','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32461','36766','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32462','36767','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32463','36767','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32464','36768','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32465','36768','component','virtualdisk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32466','28388','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32467','28390','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32468','28391','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32469','29994','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32470','42642','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32471','42642','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32472','42643','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32473','42643','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32474','42644','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32475','42644','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32476','42645','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32477','42646','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32478','42647','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32479','42648','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32480','42649','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32481','42650','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32482','42651','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32483','42652','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32484','42652','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32485','28404','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32486','28405','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32487','28406','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32488','28407','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32489','28408','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32490','28409','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32491','28411','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32492','28412','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32493','28413','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32494','28413','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32495','28413','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32496','28414','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32497','28414','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32498','28414','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32499','28415','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32500','28415','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32501','28415','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32502','28416','component','array');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32503','28416','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32504','28416','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32505','28417','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32506','28417','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32507','28418','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32508','28418','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32509','28419','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32510','28419','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32511','28420','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32512','28420','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32513','28421','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32514','28421','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32515','28422','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32516','28422','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32517','28423','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32518','28423','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32519','28424','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32520','28424','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32521','28425','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32522','28425','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32523','33621','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32524','33622','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32525','33623','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32526','33624','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32527','33625','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32528','33626','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32529','33627','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32530','33628','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32531','33629','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32532','28465','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32533','28466','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32534','28467','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32535','42653','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32536','42653','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32537','42654','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32538','42654','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32539','42655','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32540','42655','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32541','42656','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32542','42657','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32543','42658','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32544','42659','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32545','42660','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32546','42661','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32547','42662','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32548','42663','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32549','42663','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32550','28474','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32551','28475','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32552','28476','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32553','28477','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32554','28478','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32555','28479','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32556','28480','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32557','28480','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32558','28481','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32559','28481','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32560','26925','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32561','26925','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32562','26926','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32563','26926','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32564','26927','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32565','26927','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32566','26928','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32567','26928','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32568','26929','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32569','26929','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32570','26930','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32571','26930','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32572','26931','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32573','26931','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32574','26932','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32575','26932','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32576','26933','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32577','26933','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32578','26934','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32579','26934','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32580','26935','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32581','26935','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32582','26936','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32583','26936','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32584','26937','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32585','26937','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32586','26938','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32587','26938','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32588','26939','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32589','26939','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32590','26940','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32591','26940','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32592','26941','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32593','26941','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32594','26942','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32595','26942','component','voltage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32596','26943','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32597','26943','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32598','42664','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32599','42664','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32600','42665','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32601','42665','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32602','42666','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32603','42666','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32604','42667','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32605','42668','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32606','42669','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32607','42670','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32608','42671','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32609','42672','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32610','42673','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32611','42674','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32612','42674','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32613','28495','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32614','28496','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32615','31782','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32616','31782','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32617','31783','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32618','31784','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32619','31785','component','peers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32620','31786','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32621','31787','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32622','31788','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32623','31789','component','queues');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32624','31790','component','peers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32625','31791','component','peers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32626','31792','component','calls');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32627','31793','component','peers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32628','31794','component','channels');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32629','31795','component','peers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32630','31796','component','peers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32631','31797','component','peers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32632','31798','component','peers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32633','31799','component','peers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32634','31800','component','calls');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32635','31801','component','calls');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32636','31802','component','peers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32637','33389','component','peers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32638','33390','component','peers');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32639','36769','component','channels');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32640','36770','component','channels');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32641','36771','component','channels');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32642','31807','component','channels');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32643','31807','trunk','{#OBJECTNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32644','31808','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32645','31808','trunk','{#OBJECTNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32646','31809','component','channels');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32647','31809','trunk','{#OBJECTNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32648','31810','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32649','31810','trunk','{#OBJECTNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32650','31811','component','members');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32651','31811','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32652','31812','component','calls');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32653','31812','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32654','31813','component','members');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32655','31813','queue','{#QUEUE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32656','31814','component','channels');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32657','31814','trunk','{#OBJECTNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32658','31815','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32659','31815','trunk','{#OBJECTNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32660','40059','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32661','40060','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32662','40061','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32663','40062','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32664','40063','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32665','40064','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32666','40065','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32667','40066','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32668','40067','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32669','40068','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32670','40069','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32671','40070','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32672','40071','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32673','40072','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32674','40073','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32675','40074','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32676','40075','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32762','42679','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32763','42679','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32764','42680','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32765','42680','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32766','42681','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32767','42681','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32768','42682','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32769','42682','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32770','42683','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32771','42683','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32772','42684','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('32773','42686','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33108','42691','collection','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33109','42691','component','garbage-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33110','42692','collection','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33111','42692','component','garbage-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33112','42693','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33113','42693','pool','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33114','42694','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33115','42694','pool','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33116','42695','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33117','42695','pool','{#JMXNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33200','42696','component','client-certificate');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33201','42697','component','binding');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33202','42698','component','binding');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33203','42699','component','binding');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33204','42700','component','binding');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33205','42701','component','scheduling-algorithm');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33206','42702','component','scheduling-algorithm');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33207','42703','component','scheduling-algorithm');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33208','42704','component','scheduling-algorithm');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33209','42705','component','cronjob');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33210','42706','component','endpoint');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33211','42707','component','job');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33212','40036','status','healthy');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33213','40043','status','available');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33214','40045','status','unavailable');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33215','40046','status','updated');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33216','40049','status','available');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33217','40050','status','not-ready');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33218','40053','status','allocatable');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33219','40054','status','capacity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33220','40055','status','allocatable');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33221','40056','status','capacity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33222','40057','status','allocatable');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33223','40058','status','capacity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33224','40059','resource','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33225','40060','phase','failed');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33226','40061','status','scheduled');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33227','40062','status','ready');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33228','40063','phase','unknown');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33229','40064','phase','succeeded');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33230','40065','phase','running');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33231','40066','phase','pending');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33232','40067','status','waiting');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33233','40068','resource','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33234','40069','status','terminated');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33235','40070','status','running');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33236','40071','status','restarts');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33237','40072','status','ready');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33238','40073','resource','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33239','40074','resource','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33240','40075','status','unschedulable');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33241','40076','phase','requested');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33242','40077','phase','active');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33243','40078','phase','active');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33244','40079','phase','bound');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33245','40080','phase','bound');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33246','40081','phase','lost');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33247','40082','phase','lost');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33248','40083','phase','pending');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33249','40083','pvc','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33250','40084','phase','pending');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33251','40086','status','fully-labeled');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33252','40087','status','ready');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33253','40089','status','desired');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33254','40092','status','ready');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33255','40093','status','ready');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33256','40094','status','updated');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33257','42711','component','cronjob');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33258','42711','cronjob','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33259','42711','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33260','42712','component','cronjob');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33261','42712','cronjob','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33262','42712','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33263','42713','component','cronjob');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33264','42713','cronjob','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33265','42713','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33266','42714','component','cronjob');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33267','42714','cronjob','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33268','42714','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33269','42715','component','cronjob');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33270','42715','cronjob','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33271','42715','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33272','42716','component','cronjob');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33273','42716','cronjob','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33274','42716','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33275','42717','component','cronjob');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33276','42717','cronjob','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33277','42717','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33278','42718','component','cronjob');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33279','42718','cronjob','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33280','42718','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33281','42719','component','job');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33282','42719','job','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33283','42719','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33284','42720','component','job');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33285','42720','job','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33286','42720','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33287','42721','component','job');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33288','42721','job','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33289','42721','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33290','42722','component','job');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33291','42722','job','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33292','42722','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33293','42723','component','ephemeral-storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33294','42723','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33295','42723','status','capacity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33296','42724','component','ephemeral-storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33297','42724','node','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33298','42724','status','capacity');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33299','42725','component','pdb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33300','42725','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33301','42725','pdb','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33302','42726','component','pdb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33303','42726','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33304','42726','pdb','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33305','42727','component','pdb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33306','42727','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33307','42727','pdb','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33308','42728','component','pdb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33309','42728','namespace','{#NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33310','42728','pdb','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33311','42729','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33312','42730','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33313','42730','component','errors');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33314','42732','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33315','42732','country','{#COUNTRY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33316','42732','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33317','42733','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33318','42733','country','{#COUNTRY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33319','42733','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33320','42734','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33321','42734','country','{#COUNTRY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33322','42734','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33323','42735','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33324','42735','country','{#COUNTRY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33325','42735','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33326','42736','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33327','42736','country','{#COUNTRY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33328','42736','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33329','42737','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33330','42737','country','{#COUNTRY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33331','42737','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33332','42738','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33333','42738','country','{#COUNTRY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33334','42738','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33335','42739','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33336','42739','country','{#COUNTRY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33337','42739','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33338','42740','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33339','42740','country','{#COUNTRY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33340','42740','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33341','42741','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33342','42741','country','{#COUNTRY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33343','42741','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33344','42742','component','environment');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33345','42742','country','{#COUNTRY}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33346','42742','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33388','28585','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33389','28586','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33390','28587','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33391','28588','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33392','28589','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33393','28590','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33394','28591','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33395','28592','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33396','28593','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33397','28594','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33398','28595','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33399','28596','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33400','28597','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33401','28598','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33402','28599','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33403','28600','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33404','28601','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33405','28602','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33406','28603','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33407','28604','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33408','28605','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33409','28606','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33410','28607','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33411','28608','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33412','28609','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33413','28610','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33414','28611','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33415','28612','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33416','28613','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33417','28614','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33418','28615','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33419','28616','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33420','31052','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33421','33012','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33422','33013','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33423','39825','component','data-collector');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33424','40185','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33425','40186','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33426','40187','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33427','40188','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33428','40189','component','internal-process');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33429','42743','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33430','42744','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33431','42744','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33432','42745','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33433','42745','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33434','42746','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33435','42746','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33436','42747','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33437','42747','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33438','42748','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33439','42748','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33440','42749','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33441','42749','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33442','42750','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33443','42750','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33444','42751','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33445','42751','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33446','42752','component','queries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33447','42752','database','{#DBNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33448','42753','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33449','42754','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33450','42755','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33451','42761','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33452','42762','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33453','42763','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33454','42764','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33455','42765','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33456','42766','cluster','{#RESOURCE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33457','42766','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33458','42767','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33459','42767','lxc','{#LXC.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33460','42767','name','{#LXC.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33461','42767','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33462','42768','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33463','42768','lxc','{#LXC.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33464','42768','name','{#LXC.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33465','42768','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33466','42769','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33467','42769','lxc','{#LXC.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33468','42769','name','{#LXC.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33469','42769','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33470','42770','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33471','42770','lxc','{#LXC.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33472','42770','name','{#LXC.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33473','42770','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33474','42771','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33475','42771','lxc','{#LXC.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33476','42771','name','{#LXC.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33477','42771','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33478','42772','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33479','42772','lxc','{#LXC.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33480','42772','name','{#LXC.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33481','42772','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33482','42773','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33483','42773','lxc','{#LXC.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33484','42773','name','{#LXC.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33485','42773','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33486','42774','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33487','42775','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33488','42776','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33489','42776','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33490','42777','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33491','42777','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33492','42778','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33493','42779','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33494','42779','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33495','42780','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33496','42780','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33497','42781','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33498','42781','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33499','42782','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33500','42782','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33501','42783','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33502','42784','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33503','42784','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33504','42785','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33505','42785','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33506','42786','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33507','42786','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33508','42787','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33509','42787','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33510','42788','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33511','42788','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33512','42789','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33513','42789','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33514','42790','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33515','42790','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33516','42791','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33517','42791','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33518','42792','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33519','42793','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33520','42793','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33521','42794','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33522','42794','name','{#QEMU.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33523','42794','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33524','42794','qemu','{#QEMU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33525','42795','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33526','42795','name','{#QEMU.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33527','42795','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33528','42795','qemu','{#QEMU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33529','42796','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33530','42796','name','{#QEMU.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33531','42796','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33532','42796','qemu','{#QEMU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33533','42797','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33534','42797','name','{#QEMU.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33535','42797','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33536','42797','qemu','{#QEMU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33537','42798','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33538','42798','name','{#QEMU.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33539','42798','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33540','42798','qemu','{#QEMU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33541','42799','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33542','42799','name','{#QEMU.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33543','42799','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33544','42799','qemu','{#QEMU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33545','42800','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33546','42800','name','{#QEMU.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33547','42800','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33548','42800','qemu','{#QEMU.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33549','42801','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33550','42802','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33551','42803','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33552','42803','name','{#STORAGE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33553','42803','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33554','42804','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33555','42804','name','{#STORAGE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33556','42804','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33557','42805','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33558','42805','name','{#STORAGE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33559','42805','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33560','42806','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33561','42806','name','{#STORAGE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33562','42806','node','{#NODE.NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33563','42807','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33564','42807','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33565','42808','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33566','42808','component','zfs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33567','42809','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33568','42809','component','zfs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33569','42810','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33570','42810','component','zfs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33571','42811','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33572','42811','component','zfs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33573','42812','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33574','42812','component','zfs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33575','42813','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33576','42813','component','zfs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33577','42814','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33578','42814','component','zfs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33579','42815','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33580','42815','component','zfs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33581','42816','component','log');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33582','42816','component','zfs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33583','42817','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33584','42817','component','zfs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33585','42818','component','log');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33586','42818','component','zfs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33587','42819','component','log');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33588','42819','component','zfs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33589','42820','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33590','42821','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33591','42822','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33592','42823','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33593','42824','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33594','42825','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33595','42826','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33596','42826','component','zfs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33597','42827','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33598','42827','component','zfs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33599','42828','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33600','42828','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33601','42829','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33602','42830','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33603','42830','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33604','42831','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33605','42832','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33606','42833','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33607','42834','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33608','42835','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33609','42836','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33610','42837','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33611','42838','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33612','42839','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33613','42839','component','zfs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33614','42840','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33615','42841','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33616','42842','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33617','42842','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33618','42843','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33619','42843','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33620','42844','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33621','42844','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33622','42845','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33623','42846','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33624','42846','component','zfs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33625','42847','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33626','42847','component','zfs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33627','42848','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33628','42848','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33629','42856','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33630','42857','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33631','42858','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33632','42859','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33633','42860','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33634','42861','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33635','42862','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33636','42862','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33637','42862','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33638','42863','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33639','42863','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33640','42863','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33641','42864','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33642','42864','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33643','42864','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33644','42865','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33645','42865','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33646','42865','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33647','42866','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33648','42866','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33649','42866','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33650','42867','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33651','42867','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33652','42867','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33653','42868','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33654','42868','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33655','42868','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33656','42869','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33657','42869','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33658','42869','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33659','42870','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33660','42870','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33661','42870','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33662','42871','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33663','42871','disk','{#DISK_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33664','42872','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33665','42872','dataset','{#DATASET_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33666','42873','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33667','42873','dataset','{#DATASET_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33668','42874','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33669','42874','dataset','{#DATASET_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33670','42875','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33671','42875','dataset','{#DATASET_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33672','42876','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33673','42876','pool','{#POOLNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33674','42877','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33675','42877','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33676','42877','pool','{#POOLNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33677','42878','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33678','42878','pool','{#POOLNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33679','42879','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33680','42879','pool','{#POOLNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33681','42880','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33682','42880','pool','{#POOLNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33683','42881','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33684','42881','pool','{#POOLNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33685','42882','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33686','42882','pool','{#POOLNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33687','42883','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33688','42883','pool','{#POOLNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33689','42884','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33690','42884','pool','{#POOLNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33691','42885','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33692','42885','volume','{#ZVOL_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33693','42886','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33694','42886','volume','{#ZVOL_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33695','42887','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33696','42887','volume','{#ZVOL_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33697','42888','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33698','42888','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33699','42889','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33700','42889','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33701','42890','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33702','42890','disk','{#DEVNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33703','42891','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33704','42892','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33705','42892','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33706','42893','component','attribute');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33707','42893','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33708','42893','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33709','42893','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33710','42894','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33711','42894','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33712','42894','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33713','42895','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33714','42895','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33715','42895','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33716','42896','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33717','42896','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33718','42896','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33719','42897','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33720','42897','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33721','42897','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33722','42898','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33723','42898','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33724','42898','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33725','42899','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33726','42899','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33727','42899','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33728','42900','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33729','42900','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33730','42900','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33731','42901','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33732','42901','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33733','42901','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33734','42902','component','attribute');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33735','42902','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33736','42902','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33737','42902','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33738','42903','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33739','42903','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33740','42903','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33741','42904','component','attribute');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33742','42904','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33743','42904','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33744','42904','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33745','42905','component','attribute');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33746','42905','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33747','42905','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33748','42905','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33749','42906','component','attribute');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33750','42906','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33751','42906','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33752','42906','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33753','42907','component','attribute');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33754','42907','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33755','42907','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33756','42907','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33757','42908','component','attribute');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33758','42908','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33759','42908','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33760','42908','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33761','42909','component','attribute');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33762','42909','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33763','42909','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33764','42909','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33765','42910','component','attribute');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33766','42910','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33767','42910','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33768','42910','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33769','42911','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33770','42911','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33771','42911','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33772','42912','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33773','42912','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33774','42913','component','attribute');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33775','42913','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33776','42913','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33777','42913','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33778','42914','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33779','42914','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33780','42914','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33781','42915','component','temperature');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33782','42915','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33783','42915','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33784','42916','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33785','42916','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33786','42916','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33787','42917','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33788','42917','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33789','42917','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33790','42918','component','inventory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33791','42918','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33792','42918','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33793','42919','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33794','42919','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33795','42919','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33796','42920','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33797','42920','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33798','42920','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33799','42921','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33800','42921','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33801','42921','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33802','42922','component','attribute');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33803','42922','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33804','42922','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33805','42922','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33806','42923','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33807','42923','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33808','42923','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33809','42924','component','attribute');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33810','42924','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33811','42924','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33812','42924','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33813','42925','component','attribute');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33814','42925','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33815','42925','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33816','42925','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33817','42926','component','attribute');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33818','42926','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33819','42926','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33820','42926','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33821','42927','component','attribute');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33822','42927','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33823','42927','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33824','42927','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33825','42928','component','attribute');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33826','42928','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33827','42928','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33828','42928','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33829','42929','component','attribute');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33830','42929','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33831','42929','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33832','42929','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33833','42930','component','attribute');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33834','42930','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33835','42930','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33836','42930','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33837','42931','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33838','42931','diskname','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33839','42931','disktype','{#DISKTYPE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33840','42932','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33841','42933','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33842','42934','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33843','42934','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33844','42935','component','serf');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33845','42936','component','tcp');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33846','42937','component','tcp');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33847','42938','component','udp');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33848','42939','component','udp');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33849','42940','component','fds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33850','42941','component','fds');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33851','42942','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33852','42943','component','consul');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33853','42944','component','serf');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33854','42945','component','serf');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33855','42946','component','acl');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33856','42947','component','serf');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33857','42948','component','memberlist');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33858','42949','component','serf');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33859','42950','component','consul');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33860','42951','component','snapshot');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33861','42952','component','snapshot');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33862','42953','component','snapshot');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33863','42954','component','snapshot');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33864','42955','component','snapshot');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33865','42956','component','snapshot');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33866','42957','component','consul');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33867','42958','component','tcp');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33868','42959','component','memberlist');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33869','42960','component','memberlist');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33870','42961','component','goroutines');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33871','42962','component','catalog');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33872','42963','component','consul');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33873','42964','component','consul');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33874','42965','component','rpc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33875','42966','component','rpc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33876','42967','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33877','42968','component','gs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33878','42969','component','gc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33879','42970','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33880','42971','component','kvs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33881','42972','component','catalog');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33882','42973','component','kvs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33883','42974','component','kvs');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33884','42975','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33885','42976','component','gossip');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33886','42977','component','gossip');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33887','42978','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33888','42979','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33889','42980','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33890','42981','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33891','42982','component','memberlist');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33892','42983','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33893','42988','component','api');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33894','42988','verb','{#HTTP_METHOD}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33895','42989','component','api');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33896','42989','verb','{#HTTP_METHOD}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33897','42990','component','api');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33898','42990','verb','{#HTTP_METHOD}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33899','42991','component','service');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33900','42991','service','{#SERVICE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33901','42992','check','{#SERVICE_CHECK_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33902','42992','component','service');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33903','42992','service','{#SERVICE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33904','42993','check','{#SERVICE_CHECK_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33905','42993','component','service');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33906','42993','service','{#SERVICE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33907','42994','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33908','42995','component','raft');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33909','42996','component','raft');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33910','42997','component','raft');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33911','42998','component','raft');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33912','42999','component','raft');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33913','43000','component','raft');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33914','43001','component','raft');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33915','43002','component','raft');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33916','43003','component','raft');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33917','43004','component','raft');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33918','43005','component','raft');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33919','43006','component','raft');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33920','43007','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33921','43008','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33922','43008','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33923','43009','component','leader');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33924','43009','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33925','43010','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33926','43011','component','raft');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33927','43012','component','consul');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33928','43013','component','consul');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33929','43014','component','consul');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33930','43015','component','consul');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33931','43016','component','consul');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33932','43019','component','service');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33933','43019','service','{#SERVICE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33934','43020','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33935','43021','component','service');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33936','43021','service','{#SERVICE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33937','43022','component','service');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33938','43022','service','{#SERVICE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33939','43023','component','service');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33940','43023','service','{#SERVICE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33941','43024','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33942','43025','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33943','43026','component','listener');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33944','43027','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33945','43028','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33946','43029','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33947','43030','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33948','43031','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33949','43032','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33950','43033','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33951','43034','component','certificate');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33952','43035','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33953','43036','component','listener-manager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33954','43037','component','listener');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33955','43038','component','listener');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33956','43039','component','listener');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33957','43040','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33958','43041','component','listener');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33959','43042','component','listener');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33960','43043','component','listener');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33961','43044','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33962','43045','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33963','43046','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33964','43047','component','filesystem');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33965','43048','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33966','43049','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33967','43050','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33968','43051','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33969','43052','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33970','43056','cluster','{#CLUSTER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33971','43056','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33972','43057','cluster','{#CLUSTER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33973','43057','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33974','43058','cluster','{#CLUSTER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33975','43058','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33976','43058','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33977','43059','cluster','{#CLUSTER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33978','43059','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33979','43059','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33980','43060','cluster','{#CLUSTER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33981','43060','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33982','43060','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33983','43061','cluster','{#CLUSTER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33984','43061','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33985','43061','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33986','43062','cluster','{#CLUSTER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33987','43062','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33988','43062','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33989','43063','cluster','{#CLUSTER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33990','43063','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33991','43063','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33992','43064','cluster','{#CLUSTER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33993','43064','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33994','43064','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33995','43065','cluster','{#CLUSTER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33996','43065','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33997','43065','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33998','43066','cluster','{#CLUSTER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('33999','43066','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34000','43067','cluster','{#CLUSTER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34001','43067','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34002','43067','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34003','43068','cluster','{#CLUSTER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34004','43068','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34005','43068','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34006','43069','cluster','{#CLUSTER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34007','43069','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34008','43069','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34009','43070','cluster','{#CLUSTER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34010','43070','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34011','43070','component','connections');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34012','43071','cluster','{#CLUSTER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34013','43071','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34014','43072','cluster','{#CLUSTER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34015','43072','component','cluster');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34016','43072','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34017','43073','component','http');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34018','43073','connection-manager','{#CONN_MANAGER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34019','43074','component','http');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34020','43074','connection-manager','{#CONN_MANAGER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34021','43075','component','http');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34022','43075','connection-manager','{#CONN_MANAGER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34023','43076','component','http');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34024','43076','connection-manager','{#CONN_MANAGER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34025','43077','component','http');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34026','43077','connection-manager','{#CONN_MANAGER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34027','43078','component','http');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34028','43078','connection-manager','{#CONN_MANAGER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34029','43079','component','http');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34030','43079','connection-manager','{#CONN_MANAGER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34031','43080','component','listener');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34032','43080','listener-address','{#LISTENER_ADDRESS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34033','43081','component','listener');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34034','43081','listener-address','{#LISTENER_ADDRESS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34035','43082','component','listener');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34036','43082','listener-address','{#LISTENER_ADDRESS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34037','43083','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34038','43083','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34039','43084','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34040','43085','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34041','43086','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34042','43087','component','sql');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34043','43088','component','sql');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34044','43089','component','sql');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34045','43090','component','sql');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34046','43091','component','sql');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34047','43092','component','sql');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34048','43093','component','sql');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34049','43094','component','sql');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34050','43095','component','sql');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34051','43096','component','sql');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34052','43097','component','sql');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34053','43098','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34054','43099','component','sql');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34055','43100','component','sql');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34056','43101','component','sql');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34057','43102','component','sql');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34058','43103','component','sql');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34059','43104','component','sql');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34060','43105','component','sql');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34061','43106','component','sql');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34062','43107','component','timeseries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34063','43108','component','timeseries');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34064','43109','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34065','43110','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34066','43111','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34067','43112','component','ca-certificate');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34068','43113','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34069','43114','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34070','43115','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34071','43116','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34072','43117','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34073','43118','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34074','43119','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34075','43120','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34076','43121','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34077','43122','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34078','43123','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34079','43124','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34080','43125','component','gc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34081','43126','component','node-certificate');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34082','43127','component','gc');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34083','43128','component','go');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34084','43129','component','liveness');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34085','43130','component','kv');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34086','43131','component','kv');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34087','43132','component','liveness');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34088','43133','component','cgo');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34089','43133','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34090','43134','component','cgo');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34091','43134','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34092','43135','component','go');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34093','43135','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34094','43136','component','go');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34095','43136','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34096','43137','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34097','43137','component','sql');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34098','43138','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34099','43140','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34100','43141','component','rocksdb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34101','43142','component','queues');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34102','43143','component','rocksdb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34103','43144','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34104','43145','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34105','43146','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34106','43147','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34107','43148','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34108','43149','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34109','43150','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34110','43151','component','requests');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34111','43152','component','rocksdb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34112','43153','component','rocksdb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34113','43154','component','rocksdb');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34114','43155','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34115','43156','component','queues');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34116','43157','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34117','43158','component','replication');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34118','43159','component','rebalancing');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34119','43160','component','rebalancing');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34120','43161','component','ranges');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34121','43162','component','ranges');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34122','43163','component','ranges');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34123','43164','component','queues');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34124','43165','component','queues');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34125','43166','component','queues');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34126','43167','component','queues');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34127','43168','component','queues');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34128','43169','component','queues');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34129','43170','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34130','33774','component','cursors');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34131','33806','component','cursors');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34132','43171','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34133','43172','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34134','43172','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34135','43173','component','errors');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34136','43174','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34137','43175','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34138','43175','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34139','43176','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34140','43177','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34141','43178','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34142','43179','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34143','43180','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34144','43191','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34145','43191','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34146','43192','component','pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34147','43192','pool','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34148','43193','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34149','43193','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34150','43194','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34151','43194','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34152','43195','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34153','43195','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34154','43195','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34155','43196','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34156','43196','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34157','43197','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34158','43197','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34159','43198','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34160','43198','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34161','43199','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34162','43199','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34163','43200','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34164','43200','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34165','43200','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34166','43201','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34167','43201','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34168','43202','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34169','43202','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34170','43203','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34171','43203','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34172','43204','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34173','43204','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34174','43205','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34175','43205','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34176','43206','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34177','43206','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34178','43207','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34179','43207','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34180','43208','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34181','43208','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34182','43209','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34183','43209','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34184','43210','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34185','43210','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34186','43211','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34187','43211','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34188','43212','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34189','43212','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34190','43213','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34191','43213','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34192','43214','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34193','43214','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34194','43215','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34195','43215','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34196','43216','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34197','43216','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34198','43217','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34199','43217','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34200','43218','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34201','43218','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34202','43219','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34203','43219','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34204','43219','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34205','43220','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34206','43220','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34207','43221','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34208','43221','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34209','43222','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34210','43222','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34211','43223','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34212','43223','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34213','43224','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34214','43224','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34215','43224','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34216','43225','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34217','43225','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34218','43226','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34219','43226','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34220','43227','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34221','43227','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34222','43228','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34223','43228','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34224','43229','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34225','43229','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34226','43229','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34227','43230','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34228','43230','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34229','43231','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34230','43231','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34231','43232','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34232','43232','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34233','43233','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34234','43233','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34235','43234','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34236','43234','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34237','43235','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34238','43235','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34239','43236','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34240','43236','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34241','43237','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34242','43237','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34243','43238','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34244','43238','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34245','43239','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34246','43239','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34247','43240','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34248','43240','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34249','43241','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34250','43241','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34251','43242','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34252','43242','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34253','43242','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34254','43243','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34255','43243','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34256','43243','enclosure','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34257','43244','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34258','43244','enclosure','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34259','43245','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34260','43245','enclosure','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34261','43246','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34262','43246','enclosure','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34263','43247','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34264','43247','enclosure','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34265','43248','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34266','43248','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34267','43248','enclosure','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34268','43249','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34269','43249','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34270','43249','fan','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34271','43250','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34272','43250','fan','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34273','43251','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34274','43251','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34275','43251','fan','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34276','43252','component','fru');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34277','43252','fru','Enclosure {#ENCLOSURE.ID}: {#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34278','43253','component','fru');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34279','43253','fru','Enclosure {#ENCLOSURE.ID}: {#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34280','43254','component','fru');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34281','43254','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34282','43254','fru','Enclosure {#ENCLOSURE.ID}: {#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34283','43255','component','pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34284','43255','pool','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34285','43256','component','pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34286','43256','pool','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34287','43257','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34288','43257','component','pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34289','43257','pool','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34290','43258','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34291','43258','component','port');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34292','43258','port','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34293','43259','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34294','43259','component','port');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34295','43259','port','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34296','43260','component','port');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34297','43260','port','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34298','43261','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34299','43261','component','power-supply');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34300','43261','power-supply','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34301','43262','component','power-supply');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34302','43262','power-supply','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34303','43263','component','power-supply');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34304','43263','power-supply','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34305','43264','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34306','43264','component','power-supply');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34307','43264','power-supply','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34308','43265','component','power-supply');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34309','43265','power-supply','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34310','43266','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34311','43266','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34312','43267','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34313','43267','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34314','43268','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34315','43268','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34316','43269','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34317','43269','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34318','43270','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34319','43270','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34320','43271','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34321','43271','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34322','43272','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34323','43272','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34324','43273','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34325','43273','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34326','43274','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34327','43274','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34328','43275','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34329','43275','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34330','43276','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34331','43276','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34332','43277','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34333','43277','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34334','43278','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34335','43279','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34336','43279','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34337','43280','component','errors');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34338','43281','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34339','43282','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34340','43282','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34341','43283','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34342','43284','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34343','43285','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34344','43286','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34345','43287','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34346','43298','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34347','43298','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34348','43299','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34349','43299','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34350','43300','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34351','43300','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34352','43301','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34353','43301','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34354','43302','component','pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34355','43302','pool','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34356','43303','component','pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34357','43303','pool','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34358','43304','component','pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34359','43304','pool','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34360','43305','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34361','43305','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34362','43306','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34363','43306','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34364','43307','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34365','43307','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34366','43308','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34367','43308','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34368','43309','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34369','43309','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34370','43309','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34371','43310','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34372','43310','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34373','43311','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34374','43311','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34375','43312','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34376','43312','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34377','43313','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34378','43313','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34379','43314','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34380','43314','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34381','43314','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34382','43315','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34383','43315','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34384','43316','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34385','43316','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34386','43317','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34387','43317','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34388','43318','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34389','43318','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34390','43319','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34391','43319','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34392','43320','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34393','43320','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34394','43321','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34395','43321','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34396','43322','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34397','43322','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34398','43323','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34399','43323','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34400','43324','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34401','43324','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34402','43325','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34403','43325','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34404','43326','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34405','43326','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34406','43327','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34407','43327','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34408','43328','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34409','43328','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34410','43329','component','controller');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34411','43329','controller','{#CONTROLLER.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34412','43330','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34413','43330','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34414','43331','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34415','43331','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34416','43332','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34417','43332','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34418','43333','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34419','43333','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34420','43334','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34421','43334','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34422','43334','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34423','43335','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34424','43335','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34425','43336','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34426','43336','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34427','43337','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34428','43337','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34429','43338','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34430','43338','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34431','43339','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34432','43339','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34433','43339','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34434','43340','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34435','43340','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34436','43341','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34437','43341','disk','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34438','43342','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34439','43342','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34440','43343','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34441','43343','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34442','43344','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34443','43344','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34444','43344','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34445','43345','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34446','43345','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34447','43346','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34448','43346','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34449','43347','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34450','43347','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34451','43348','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34452','43348','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34453','43349','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34454','43349','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34455','43350','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34456','43350','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34457','43351','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34458','43351','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34459','43352','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34460','43352','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34461','43353','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34462','43353','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34463','43354','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34464','43354','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34465','43355','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34466','43355','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34467','43356','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34468','43356','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34469','43357','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34470','43357','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34471','43358','component','disk-group');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34472','43358','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34473','43358','disk-group','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34474','43359','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34475','43359','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34476','43359','enclosure','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34477','43360','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34478','43360','enclosure','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34479','43361','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34480','43361','enclosure','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34481','43362','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34482','43362','enclosure','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34483','43363','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34484','43363','enclosure','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34485','43364','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34486','43364','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34487','43364','enclosure','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34488','43365','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34489','43365','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34490','43365','fan','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34491','43366','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34492','43366','fan','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34493','43367','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34494','43367','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34495','43367','fan','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34496','43368','component','fru');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34497','43368','fru','Enclosure {#ENCLOSURE.ID}: {#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34498','43369','component','fru');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34499','43369','fru','Enclosure {#ENCLOSURE.ID}: {#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34500','43370','component','fru');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34501','43370','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34502','43370','fru','Enclosure {#ENCLOSURE.ID}: {#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34503','43371','component','pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34504','43371','pool','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34505','43372','component','pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34506','43372','pool','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34507','43373','component','pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34508','43373','pool','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34509','43374','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34510','43374','component','pool');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34511','43374','pool','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34512','43375','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34513','43375','component','port');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34514','43375','port','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34515','43376','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34516','43376','component','port');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34517','43376','port','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34518','43377','component','port');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34519','43377','port','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34520','43378','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34521','43378','component','power-supply');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34522','43378','power-supply','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34523','43379','component','power-supply');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34524','43379','power-supply','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34525','43380','component','power-supply');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34526','43380','power-supply','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34527','43381','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34528','43381','component','power-supply');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34529','43381','power-supply','{#DURABLE.ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34530','43382','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34531','43382','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34532','43383','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34533','43383','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34534','43384','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34535','43384','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34536','43385','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34537','43385','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34538','43386','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34539','43386','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34540','43387','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34541','43387','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34542','43388','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34543','43388','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34544','43389','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34545','43389','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34546','43390','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34547','43390','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34548','43391','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34549','43391','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34550','43392','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34551','43392','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34552','43393','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34553','43393','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34554','43394','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34555','43394','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34556','43395','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34557','43395','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34558','43396','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34559','43397','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34560','43398','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34561','43399','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34562','43400','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34563','43401','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34564','43402','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34565','43403','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34566','43404','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34567','43405','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34568','43405','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34569','43406','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34570','43406','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34571','43407','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34572','43407','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34573','43408','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34574','43408','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34575','43409','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34576','43409','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34577','43410','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34578','43410','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34579','43411','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34580','43418','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34581','43418','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34582','43418','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34583','43419','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34584','43419','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34585','43419','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34586','43420','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34587','43420','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34588','43420','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34589','43421','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34590','43421','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34591','43421','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34592','43422','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34593','43422','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34594','43422','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34595','43423','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34596','43423','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34597','43423','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34598','43424','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34599','43424','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34600','43424','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34601','43425','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34602','43425','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34603','43425','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34604','43426','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34605','43426','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34606','43426','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34607','43427','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34608','43427','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34609','43427','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34610','43428','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34611','43428','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34612','43428','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34613','43429','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34614','43429','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34615','43429','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34616','43430','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34617','43430','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34618','43430','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34619','43431','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34620','43431','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34621','43431','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34622','43432','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34623','43432','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34624','43432','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34625','43433','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34626','43433','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34627','43433','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34628','43434','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34629','43434','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34630','43434','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34631','43435','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34632','43435','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34633','43435','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34634','43436','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34635','43436','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34636','43436','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34637','43437','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34638','43437','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34639','43437','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34640','43438','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34641','43438','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34642','43438','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34643','43439','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34644','43439','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34645','43439','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34646','43440','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34647','43440','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34648','43441','component','cpg');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34649','43441','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34650','43441','cpg','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34651','43442','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34652','43442','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34653','43442','disk','{#POSITION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34654','43443','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34655','43443','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34656','43443','disk','{#POSITION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34657','43444','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34658','43444','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34659','43444','disk','{#POSITION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34660','43445','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34661','43445','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34662','43445','disk','{#POSITION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34663','43446','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34664','43446','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34665','43446','disk','{#POSITION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34666','43447','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34667','43447','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34668','43447','disk','{#POSITION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34669','43448','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34670','43448','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34671','43448','disk','{#POSITION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34672','43449','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34673','43449','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34674','43449','disk','{#POSITION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34675','43450','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34676','43450','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34677','43450','disk','{#POSITION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34678','43451','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34679','43451','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34680','43451','disk','{#POSITION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34681','43452','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34682','43452','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34683','43452','disk','{#POSITION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34684','43453','component','disk');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34685','43453','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34686','43453','disk','{#POSITION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34687','43454','component','host');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34688','43454','host','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34689','43455','component','host');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34690','43455','host','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34691','43456','component','host');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34692','43456','host','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34693','43457','component','host');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34694','43457','host','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34695','43458','component','host');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34696','43458','host','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34697','43459','component','host');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34698','43459','host','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34699','43460','component','port');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34700','43460','port','{#NODE}:{#SLOT}:{#CARD.PORT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34701','43461','component','port');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34702','43461','port','{#NODE}:{#SLOT}:{#CARD.PORT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34703','43462','component','port');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34704','43462','port','{#NODE}:{#SLOT}:{#CARD.PORT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34705','43463','component','port');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34706','43463','port','{#NODE}:{#SLOT}:{#CARD.PORT}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34707','43464','component','task');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34708','43464','task','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34709','43465','component','task');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34710','43465','task','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34711','43466','component','task');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34712','43466','task','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34713','43467','component','task');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34714','43467','task','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34715','43468','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34716','43468','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34717','43468','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34718','43469','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34719','43469','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34720','43469','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34721','43470','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34722','43470','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34723','43470','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34724','43471','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34725','43471','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34726','43471','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34727','43472','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34728','43472','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34729','43472','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34730','43473','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34731','43473','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34732','43473','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34733','43474','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34734','43474','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34735','43474','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34736','43475','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34737','43475','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34738','43475','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34739','43476','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34740','43476','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34741','43476','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34742','43477','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34743','43477','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34744','43477','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34745','43478','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34746','43478','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34747','43478','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34748','43479','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34749','43479','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34750','43479','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34751','43480','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34752','43480','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34753','43480','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34754','43481','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34755','43481','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34756','43481','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34757','43482','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34758','43482','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34759','43482','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34760','43483','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34761','43483','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34762','43483','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34763','43484','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34764','43484','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34765','43484','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34766','43485','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34767','43485','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34768','43485','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34769','43486','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34770','43486','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34771','43486','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34772','43487','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34773','43487','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34774','43487','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34775','43488','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34776','43488','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34777','43488','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34778','43489','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34779','43489','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34780','43489','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34781','43490','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34782','43490','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34783','43490','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34784','43491','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34785','43491','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34786','43491','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34787','43492','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34788','43492','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34789','43492','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34790','43493','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34791','43493','component','volume');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34792','43493','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34793','42991','namespace','{#SERVICE_NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34794','42992','namespace','{#SERVICE_NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34795','42993','namespace','{#SERVICE_NAMESPACE}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34796','43494','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34797','43495','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34798','43495','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34799','43496','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34800','43497','component','raw');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34801','43519','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34802','43519','component','appliance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34803','43519','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34804','43520','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34805','43520','component','appliance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34806','43520','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34807','43521','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34808','43521','component','appliance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34809','43521','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34810','43522','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34811','43522','component','appliance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34812','43522','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34813','43523','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34814','43523','component','appliance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34815','43523','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34816','43524','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34817','43524','component','appliance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34818','43524','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34819','43525','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34820','43525','component','appliance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34821','43525','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34822','43526','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34823','43526','component','appliance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34824','43526','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34825','43527','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34826','43527','component','crossbar');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34827','43527','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34828','43528','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34829','43528','component','crossbar');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34830','43528','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34831','43529','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34832','43529','component','crossbar');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34833','43529','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34834','43530','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34835','43530','component','crossbar');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34836','43530','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34837','43531','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34838','43531','component','crossbar');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34839','43531','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34840','43532','component','datacenter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34841','43532','datacenter','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34842','43533','component','datacenter');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34843','43533','datacenter','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34844','43534','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34845','43534','component','device');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34846','43534','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34847','43535','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34848','43535','component','device');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34849','43535','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34850','43536','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34851','43536','component','device');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34852','43536','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34853','43537','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34854','43537','component','device');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34855','43537','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34856','43538','component','appliance');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34857','43538','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34858','43538','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34859','43539','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34860','43539','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34861','43540','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34862','43540','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34863','43541','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34864','43541','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34865','43542','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34866','43542','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34867','43543','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34868','43543','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34869','43544','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34870','43544','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34871','43544','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34872','43545','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34873','43545','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34874','43545','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34875','43546','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34876','43546','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34877','43546','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34878','43547','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34879','43547','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34880','43547','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34881','43548','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34882','43548','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34883','43549','component','device');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34884','43549','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34885','43549','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34886','43550','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34887','43550','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34888','43550','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34889','43551','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34890','43551','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34891','43551','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34892','43552','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34893','43552','component','interconnect');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34894','43552','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34895','43553','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34896','43553','component','interconnect');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34897','43553','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34898','43554','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34899','43554','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34900','43555','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34901','43555','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34902','43555','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34903','43556','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34904','43556','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34905','43556','component','management');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34906','43556','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34907','43556','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34908','43557','component','device');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34909','43557','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34910','43557','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34911','43558','component','enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34912','43558','enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34913','43559','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34914','43559','network','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34915','43560','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34916','43560','network','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34917','43561','component','fabric');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34918','43561','fabric','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34919','43562','component','fabric');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34920','43562','fabric','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34921','43563','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34922','43563','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34923','43563','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34924','43564','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34925','43564','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34926','43564','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34927','43565','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34928','43565','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34929','43565','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34930','43566','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34931','43566','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34932','43566','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34933','43567','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34934','43567','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34935','43567','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34936','43568','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34937','43568','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34938','43568','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34939','43569','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34940','43569','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34941','43569','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34942','43570','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34943','43570','component','fan');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34944','43570','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34945','43571','component','fc-network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34946','43571','fc-network','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34947','43572','component','fc-network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34948','43572','fc-network','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34949','43573','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34950','43573','component','manager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34951','43573','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34952','43574','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34953','43574','component','manager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34954','43574','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34955','43575','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34956','43575','component','manager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34957','43575','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34958','43576','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34959','43576','component','manager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34960','43576','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34961','43577','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34962','43577','component','manager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34963','43577','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34964','43578','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34965','43578','component','manager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34966','43578','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34967','43579','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34968','43579','component','manager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34969','43579','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34970','43580','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34971','43580','component','manager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34972','43580','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34973','43581','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34974','43581','component','manager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34975','43581','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34976','43582','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34977','43582','component','manager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34978','43582','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34979','43583','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34980','43583','component','manager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34981','43583','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34982','43584','component','hypervisor-manager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34983','43584','hypervisor-manager','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34984','43585','component','hypervisor-manager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34985','43585','hypervisor-manager','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34986','43586','component','hypervisor-manager');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34987','43586','hypervisor-manager','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34988','43587','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34989','43587','component','interconnect');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34990','43587','interconnect','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34991','43588','component','interconnect');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34992','43588','interconnect','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34993','43589','component','interconnect');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34994','43589','interconnect','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34995','43590','component','interconnect');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34996','43590','interconnect','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34997','43591','component','interconnect');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34998','43591','interconnect','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('34999','43592','component','interconnect');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35000','43592','interconnect','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35001','43593','component','interconnect');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35002','43593','interconnect','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35003','43594','component','interconnect');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35004','43594','interconnect','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35005','43595','component','logical-enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35006','43595','logical-enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35007','43596','component','logical-enclosure');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35008','43596','logical-enclosure','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35009','43597','component','partition');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35010','43597','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35011','43597','partition','{#PARTITION_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35012','43598','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35013','43598','component','partition');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35014','43598','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35015','43598','partition','{#PARTITION_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35016','43599','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35017','43599','component','partition');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35018','43599','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35019','43599','partition','{#PARTITION_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35020','43600','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35021','43600','component','partition');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35022','43600','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35023','43600','partition','{#PARTITION_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35024','43601','component','partition');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35025','43601','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35026','43601','partition','{#PARTITION_ID}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35027','43602','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35028','43602','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35029','43602','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35030','43603','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35031','43603','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35032','43603','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35033','43604','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35034','43604','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35035','43604','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35036','43605','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35037','43605','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35038','43605','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35039','43606','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35040','43606','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35041','43606','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35042','43607','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35043','43607','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35044','43607','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35045','43608','bay-number','{#BAY_NUMBER}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35046','43608','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35047','43608','enclosure','{#ENCLOSURE_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35048','43609','component','rack');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35049','43609','rack','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35050','43610','component','rack');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35051','43610','rack','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35052','43611','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35053','43611','component','server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35054','43611','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35055','43611','server','{#SERVER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35056','43612','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35057','43612','component','server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35058','43612','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35059','43612','server','{#SERVER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35060','43613','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35061','43613','component','server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35062','43613','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35063','43613','server','{#SERVER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35064','43614','component','cpu');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35065','43614','component','server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35066','43614','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35067','43614','server','{#SERVER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35068','43615','component','server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35069','43615','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35070','43615','server','{#SERVER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35071','43616','component','server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35072','43616','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35073','43616','server','{#SERVER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35074','43617','component','memory');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35075','43617','component','server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35076','43617','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35077','43617','server','{#SERVER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35078','43618','component','server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35079','43618','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35080','43618','server','{#SERVER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35081','43619','component','server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35082','43619','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35083','43619','server','{#SERVER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35084','43620','component','server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35085','43620','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35086','43620','server','{#SERVER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35087','43621','component','power');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35088','43621','component','server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35089','43621','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35090','43621','server','{#SERVER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35091','43622','component','server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35092','43622','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35093','43622','server','{#SERVER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35094','43623','component','server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35095','43623','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35096','43623','server','{#SERVER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35097','43624','component','server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35098','43624','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35099','43624','server','{#SERVER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35100','43625','component','server');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35101','43625','location','{#LOCATION}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35102','43625','server','{#SERVER_NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35103','43626','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35104','43626','pool','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35105','43627','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35106','43627','pool','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35107','43628','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35108','43628','pool','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35109','43629','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35110','43629','pool','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35111','43630','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35112','43630','pool','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35113','43631','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35114','43631','pool','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35115','43632','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35116','43632','system','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35117','43633','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35118','43633','system','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35119','43634','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35120','43634','system','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35121','43635','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35122','43635','system','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35123','43636','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35124','43636','system','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35125','43637','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35126','43637','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35127','43638','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35128','43638','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35129','43639','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35130','43639','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35131','43640','component','storage');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35132','43640','volume','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35133','43641','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35134','43641','component','uplink-set');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35135','43641','uplink-set','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35136','43642','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35137','43642','component','uplink-set');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35138','43642','uplink-set','{#NAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35139','43643','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35140','43644','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35141','43645','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35142','43646','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35143','43647','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35144','43648','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35145','43649','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35146','43650','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35147','43651','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35148','43651','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35149','43652','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35150','43653','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35151','43654','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35152','43655','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35153','43656','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35154','43657','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35155','43658','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35156','43659','component','application');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35157','43660','component','health');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35158','43660','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35159','43662','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35160','43662','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35161','43662','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35162','43662','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35163','43663','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35164','43663','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35165','43663','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35166','43663','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35167','43664','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35168','43664','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35169','43664','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35170','43665','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35171','43665','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35172','43665','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35173','43666','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35174','43666','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35175','43666','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35176','43666','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35177','43667','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35178','43667','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35179','43667','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35180','43668','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35181','43668','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35182','43668','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35183','43668','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35184','43669','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35185','43669','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35186','43669','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35187','43669','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35188','43670','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35189','43670','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35190','43670','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35191','43670','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35192','43671','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35193','43671','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35194','43671','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35195','43671','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35196','43672','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35197','43672','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35198','43672','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35199','43673','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35200','43673','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35201','43673','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35202','43674','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35203','43674','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35204','43674','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35205','43674','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35206','43675','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35207','43675','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35208','43675','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35209','43675','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35210','43676','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35211','43676','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35212','43676','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35213','43676','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35214','43677','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35215','43677','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35216','43677','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35217','43677','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35218','43678','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35219','43678','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35220','43678','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35221','43679','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35222','43679','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35223','43679','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35224','43679','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35225','43680','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35226','43680','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35227','43680','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35228','43680','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35229','43681','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35230','43681','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35231','43681','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35232','43681','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35233','43682','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35234','43682','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35235','43682','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35236','43682','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35237','43683','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35238','43683','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35239','43683','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35240','43684','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35241','43684','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35242','43684','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35243','43685','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35244','43685','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35245','43685','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35246','43685','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35247','43686','component','firewall');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35248','43686','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35249','43686','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35250','43686','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35251','43687','component','network');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35252','43687','description','{#IFALIAS}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35253','43687','interface','{#IFNAME}');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35254','30836','component','zookeeper');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35255','30842','component','zookeeper');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35256','30843','component','zookeeper');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35257','30844','component','zookeeper');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35258','30845','component','zookeeper');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35259','30873','component','zookeeper');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35260','34320','component','zookeeper');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35261','43688','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35262','43689','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35263','43690','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35264','43691','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35265','43692','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35266','43693','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35267','43694','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35268','43695','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35269','43696','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35270','43697','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35271','43698','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35272','43699','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35273','43700','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35274','43701','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35275','43702','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35276','43703','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35277','43704','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35278','43705','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35279','43706','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35280','43707','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35281','43708','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35282','43709','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35283','43710','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35284','43711','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35285','43712','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35286','43713','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35287','43714','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35288','43715','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35289','43716','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35290','43717','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35291','43718','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35292','43719','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35293','43720','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35294','43721','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35295','43722','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35296','43723','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35297','43724','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35298','43725','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35299','43726','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35300','43727','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35301','43728','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35302','43729','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35303','43730','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35304','43731','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35305','43732','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35306','43733','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35307','43734','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35308','43735','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35309','43736','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35310','43737','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35311','43738','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35312','43739','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35313','43740','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35314','43741','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35315','43742','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35316','43743','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35317','43744','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35318','43745','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35319','43746','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35320','43747','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35321','43748','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35322','43749','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35323','43750','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35324','43751','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35325','43752','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35326','43753','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35327','43754','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35328','43755','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35329','43756','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35330','43757','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35331','43758','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35332','43759','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35333','43760','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35334','43761','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35335','43762','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35336','43763','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35337','43764','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35338','43765','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35339','43766','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35340','43767','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35341','43768','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35342','43769','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35343','43770','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35344','43771','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35345','43772','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35346','43773','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35347','43774','component','status');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35348','43775','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35349','43776','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35350','43777','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35351','43778','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35352','43779','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35353','43780','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35354','43781','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35355','43782','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35356','43783','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35357','43784','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35358','43785','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35359','43786','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35360','43787','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35361','43788','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35362','43789','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35363','43790','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35364','43791','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35365','43792','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35366','43793','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35367','43794','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35368','43795','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35369','43796','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35370','43797','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35371','43798','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35372','43799','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35373','43800','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35374','43801','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35375','43802','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35376','43803','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35377','43804','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35378','43805','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35379','43806','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35380','43807','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35381','43808','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35382','43809','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35383','43810','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35384','43811','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35385','43812','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35386','43813','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35387','43814','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35388','43815','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35389','43816','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35390','43817','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35391','43818','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35392','43819','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35393','43820','component','system');
INSERT INTO `item_tag` (`itemtagid`,`itemid`,`tag`,`value`) values ('35394','43821','component','system');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('1','Global view','1','0',NULL,'30','1','');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('2','Zabbix server health','1','1',NULL,'30','1','');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('3','Apache performance',NULL,'1','10265','30','1','a328c9e713424465a8e1adec7322b0dc');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('4','Apache performance',NULL,'1','10264','30','1','c27c68fb9c234a09b4023076b45affc1');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('5','Docker overview',NULL,'1','10318','30','1','7eb6472d07ac4c379e6b730b59a12507');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('7','Redis performance',NULL,'1','10310','30','1','ee4c29eb7a0f443fafb7e7d3b9df7b24');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('8','RabbitMQ overview',NULL,'1','10300','30','1','a886a871a00d47e28b8648cadae3bc99');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('9','RabbitMQ node status',NULL,'1','10301','30','1','ce0af043ed2c4e7c988674c9ecb787d6');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('10','Network interfaces',NULL,'1','10285','30','1','19dac6b780aa49558bf4a3782ba4b3b6');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('11','System performance',NULL,'1','10285','30','1','558606056f464970a7c544ba75d544f2');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('12','RabbitMQ overview',NULL,'1','10302','30','1','1b64af348f284f74a1f7f03de1d55f7b');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('13','RabbitMQ node status',NULL,'1','10303','30','1','5e70f5ff6706442abc83ec1b206d9fe4');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('14','Network interfaces',NULL,'1','10342','30','1','4c72409900b84a29bfcfd02648535a2b');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('15','System performance',NULL,'1','10343','30','1','3e6ceed431734cc29836019e93b5f89e');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('16','Network interfaces',NULL,'1','10276','30','1','1cbc445224b14af1b72f1580d7444ba5');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('17','System performance',NULL,'1','10001','30','1','e9ca2f8e715f428b8edc0129aa0c79de');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('18','PostgreSQL databases',NULL,'1','10329','30','1','e3ae726b06cc4663a3eef5a73909f796');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('19','Network interfaces',NULL,'1','10348','30','1','1f4737b4a5364b35a8358dccedf6a492');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('20','System performance',NULL,'1','10351','30','1','234161507ccb4d83b111cb31e0db8ae5');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('21','Network interfaces',NULL,'1','10291','30','1','9ddc1ce7e9ea4d7dba8e282366084f3b');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('22','System performance',NULL,'1','10081','30','1','5f494fac9dc94bf3827b67ea212240f2');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('23','MySQL performance',NULL,'1','10316','30','1','ce2f9d7bb18e469f97e692baee02841d');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('24','MySQL performance',NULL,'1','10320','30','1','ca5006123e0f4eb8bc0155027e663d2c');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('26','Network interfaces',NULL,'1','10192','30','1','8283a27e39a9451283ce74aca085ffaa');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('27','Network interfaces',NULL,'1','10190','30','1','b06fc59c5e744962b1ac5314e7e12cec');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('28','Nginx performance',NULL,'1','10266','30','1','9d071e3a148c405e85c53ef25d54efaf');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('29','System performance',NULL,'1','10185','30','1','623ea1bf76fc4e509e2b33b0642fb208');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('30','Nginx performance',NULL,'1','10267','30','1','7d0bf76f09204bb7ba9ee995bf161d46');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('31','System performance',NULL,'1','10079','30','1','d66f39e86e2047289acea0bc9a218807');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('32','System performance',NULL,'1','10074','30','1','b4606920366049bd98e2e6d31c602d67');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('33','System performance',NULL,'1','10078','30','1','774e5b14c75c49b4a3a4196ce1ccdaf7');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('36','Zabbix server health',NULL,'1','10047','30','1','6815a90fb9b745fd8f1b1f47697893d6');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('37','Zabbix proxy health',NULL,'1','10048','30','1','c12bdb602db645a292d0cbba39d58e9f');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('38','Zabbix server health',NULL,'1','10261','30','1','acf492c7fb70451ba2afc6938e745a3a');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('39','Zabbix proxy health',NULL,'1','10262','30','1','73c77a8555bc4a7d814d2cf54164f15f');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('40','HAProxy Backend performance',NULL,'1','10309','30','1','7910c0c96e014d68966c5ac989e9ebb7');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('41','HAProxy Frontend performance',NULL,'1','10309','30','1','d6ba5079de1c49bb9e0e5c47112b3ff9');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('42','HAProxy Server performance',NULL,'1','10309','30','1','f41c3a3976dc483d98a386273ab5678f');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('43','HAProxy Backend performance',NULL,'1','10308','30','1','6d515de988274ac6b31938eebd175973');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('44','HAProxy Frontend performance',NULL,'1','10308','30','1','7c4decb2fefc4cfe9c4a3f8717d710ca');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('45','HAProxy Server performance',NULL,'1','10308','30','1','ebc5a517fa544fada42550059c014c5b');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('48','PostgreSQL databases',NULL,'1','10357','30','1','d95f29826778497a9ed265e0c335fd0f');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('49','PostgreSQL stat',NULL,'1','10357','30','1','f2ceabf59fd64ca9828ea55e9b9668bd');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('50','System performance',NULL,'1','10076','30','1','873e38e16ef94f2b9b743a3251db0fbb');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('51','System performance',NULL,'1','10075','30','1','618c8fc9d4b640999b3389960f5bead4');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('52','System performance',NULL,'1','10077','30','1','cbac7a8959574b308d1c1e23cf3760ee');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('53','MySQL performance',NULL,'1','10317','30','1','d56c53704c264552a09cf3e59a1835f3');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('54','Network interfaces',NULL,'1','10188','30','1','2e6a063b22c6428db5f47ac6805fd263');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('55','System performance',NULL,'1','10248','30','1','59f09fada3ab43d1bdb70091f92e77f1');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('56','Redis overview',NULL,'1','10310','30','1','7c5bdd7bc74648c4891abc6649d105d0');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('57','Zabbix server','1','1',NULL,'30','1','');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('58','Overview',NULL,'1','10414','30','1','51f1013e8a3d492faed27fe80b68fc53');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('59','Zabbix server processes',NULL,'1','10047','30','1','32994a87287449eab12bed911880ef13');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('60','Zabbix server processes',NULL,'1','10261','30','1','6b2f06c17f804d97b3ff5a2fb4cae3a0');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('61','Network interfaces',NULL,'1','10207','30','1','2a5bbc386c5a4b04a0494455a6c9e1a7');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('62','Network interfaces',NULL,'1','10254','30','1','68febeb1572f44dc9eb5f88c60112e47');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('63','System performance',NULL,'1','10254','30','1','1e995dbde06f4d869f2cc4314117c397');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('64','Network interfaces',NULL,'1','10208','30','1','3cf4d180b2a64e938124274ec468491f');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('65','Network interfaces',NULL,'1','10210','30','1','881c7f5e3dc444f988b314bdb810cb6c');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('66','Network interfaces',NULL,'1','10211','30','1','ee74d182515b4ca6a8a31792c91da381');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('67','Network interfaces',NULL,'1','10218','30','1','9b817c34b74842c8a21827e5d84c4692');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('68','Network interfaces',NULL,'1','10253','30','1','19aa552abf004e729044a7af05a5544a');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('69','Network interfaces',NULL,'1','10221','30','1','5074235070b54485bd6c72688d013cb9');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('70','Network interfaces',NULL,'1','10222','30','1','b0a1600fd45442e0adec8990b2216f0b');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('71','Network interfaces',NULL,'1','10223','30','1','46b0449a409740cabef1f03f10b5e453');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('72','Network interfaces',NULL,'1','10224','30','1','93462451b410409ab1e1d174c55f6d62');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('73','Network interfaces',NULL,'1','10226','30','1','fa7619be2ccf481db4f7a334b380e2ab');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('74','Network interfaces',NULL,'1','10227','30','1','bb5d0711937d47d989653b53b7772cea');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('75','Network interfaces',NULL,'1','10250','30','1','1a7c19ddd4904430bac2389eecfe785d');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('76','Network interfaces',NULL,'1','10229','30','1','861eb1017c334f1d8e7e2a0271f69d57');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('77','Network interfaces',NULL,'1','10230','30','1','01b7f2c33ed343e68e995f7132ec61eb');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('78','Network interfaces',NULL,'1','10231','30','1','1276b12d41594e38afa2308925983a50');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('79','Network interfaces',NULL,'1','10251','30','1','5d189179d9144198b020fce10f645872');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('80','System performance',NULL,'1','10251','30','1','e41382f2a3394e52b885bb6a70df35ff');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('81','Network interfaces',NULL,'1','10449','30','1','3158fa8c915745868e30c75801bf433d');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('82','Network interfaces',NULL,'1','10450','30','1','c06ee9736d6d444cbe6cfde86394a15b');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('83','Network interfaces',NULL,'1','10451','30','1','0398dc9ff82744d089a193fe64a00480');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('84','Network interfaces',NULL,'1','10452','30','1','b5193a924df34134bea5fac4b48bbe6b');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('85','Network interfaces',NULL,'1','10453','30','1','ca98d3d85acf4089a385c73161cd21f3');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('86','Network interfaces',NULL,'1','10454','30','1','2ffe3d5cb94d42128d5cb4878dfff782');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('87','Network interfaces',NULL,'1','10455','30','1','1c4f714f41f74cbfa256e0999e6b2f17');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('88','Network interfaces',NULL,'1','10456','30','1','75c255d9ccd84db5a4b563c943b1394e');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('89','Network interfaces',NULL,'1','10457','30','1','2b37432780ce4af3922f006a0ed8eb63');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('90','Network interfaces',NULL,'1','10458','30','1','b345a2e35375411a8ae107777b096913');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('91','Network interfaces',NULL,'1','10459','30','1','88d61cb2e33944898e872a940b580ca1');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('92','Network interfaces',NULL,'1','10460','30','1','e2986b7cca904d68bfd5c352aa62b32b');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('93','Network interfaces',NULL,'1','10461','30','1','08304929e31a4d689aec39f78d1fca80');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('94','Network interfaces',NULL,'1','10462','30','1','badd26bb058f4428a7c97e494f3f2227');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('95','Network interfaces',NULL,'1','10463','30','1','570775cf710d4eb691bc6fe845efcbd7');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('96','Network interfaces',NULL,'1','10464','30','1','6e57a58b51b341bf828b3f92b133b9e6');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('97','Network interfaces',NULL,'1','10465','30','1','fcbcab2ca09b4d4999eb0859295cb963');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('98','Network interfaces',NULL,'1','10466','30','1','59d4feda0f174139b003b27082d4b059');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('99','Network interfaces',NULL,'1','10467','30','1','a2c6241af2e442c99bb8c7d6e7823c23');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('100','Network interfaces',NULL,'1','10468','30','1','4a20a27d388446f681a1358cdaf89d9d');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('101','Network interfaces',NULL,'1','10469','30','1','d5ebf6a997a349dd97f98f67a834b4f4');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('102','Network interfaces',NULL,'1','10470','30','1','9ce3a017e197470db9b39966ea51aa5d');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('103','Network interfaces',NULL,'1','10471','30','1','4f4091a87a0d435ab92568db06d36ffe');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('104','Network interfaces',NULL,'1','10472','30','1','bc391a462a284f21885756c03c2c3daf');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('105','Network interfaces',NULL,'1','10473','30','1','bef70b8d3fd14ea1ad975577b29b2e5b');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('106','Network interfaces',NULL,'1','10474','30','1','7996a3f76d5040d5982c3a0a9d595d1a');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('107','Network interfaces',NULL,'1','10475','30','1','8513d32bcdec4f60bd84b07e6872b569');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('108','Network interfaces',NULL,'1','10476','30','1','c0e5f7b4a5184e1e8f5e19a23855609c');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('109','Network interfaces',NULL,'1','10477','30','1','8f97de1bd5144af7b14fb9097749a81a');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('110','Network interfaces',NULL,'1','10478','30','1','e50dfcb32f8047e58bd8e91b737f71df');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('111','Network interfaces',NULL,'1','10479','30','1','a85c673dcc1341bba006e0d470efed2c');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('112','Network interfaces',NULL,'1','10480','30','1','6e0118842c0647b0912381641c32dd58');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('113','Network interfaces',NULL,'1','10481','30','1','673e849d79e04b75906b07ad07638ab4');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('114','Network interfaces',NULL,'1','10482','30','1','937a2e998cc646edbef90dbdfbb0decc');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('115','Network interfaces',NULL,'1','10483','30','1','396ad7256a594155952a4839602732d7');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('116','Network interfaces',NULL,'1','10484','30','1','a1345c7902dd465592348b76510238c9');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('117','Network interfaces',NULL,'1','10485','30','1','e848207815d94d19887b222429470149');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('118','Network interfaces',NULL,'1','10486','30','1','46721e19b5304ad8ad382516baf7ba07');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('119','Network interfaces',NULL,'1','10487','30','1','6aedd7d284f340df953d23ee7b4d64e5');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('120','Network interfaces',NULL,'1','10488','30','1','a5687679ec9a4536982216615fb1bbd7');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('121','Network interfaces',NULL,'1','10489','30','1','e0dfcd8e68824f2ea2f664f275b645c3');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('122','Network interfaces',NULL,'1','10490','30','1','8a034f262a594a178e3217819351dc82');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('123','Network interfaces',NULL,'1','10491','30','1','514547d1c2dd434085dbec53129fdf77');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('124','Network interfaces',NULL,'1','10492','30','1','25f120220f3f49d8be3e12e012f209f9');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('125','Network interfaces',NULL,'1','10493','30','1','516ccdb91ce146ab9cacdd1e93718fe1');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('126','Network interfaces',NULL,'1','10494','30','1','3366c40065164cf58152f97429c8c887');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('127','Network interfaces',NULL,'1','10495','30','1','ae1482044eea4bb4aa74e9af57d31d70');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('128','Network interfaces',NULL,'1','10496','30','1','95207c4a8cad4b5f99b4b58209708729');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('129','Network interfaces',NULL,'1','10497','30','1','2b3d352479314a8880a7ddde6d1d6643');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('130','Network interfaces',NULL,'1','10498','30','1','81857ffb204a485b99208a77b586b832');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('131','Network interfaces',NULL,'1','10499','30','1','cf82d0817db8409c8b958e856dbb8efd');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('132','Network interfaces',NULL,'1','10500','30','1','7ff2abdc0f9c4964aa65d0701617bf79');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('133','Network interfaces',NULL,'1','10501','30','1','e9e056862ff440babb9a536a15e98e83');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('134','Network interfaces',NULL,'1','10502','30','1','78517ddff9974a36958c6256a91fb119');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('135','Network interfaces',NULL,'1','10233','30','1','8b7ab7a9d83940378822ff337d638670');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('136','Network interfaces',NULL,'1','10234','30','1','f554c8db428d4c05909ec48a0f014ef1');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('137','Network interfaces',NULL,'1','10235','30','1','5dd8ed66d2e14cfeb0df6b1cf6aa19ec');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('138','Network interfaces',NULL,'1','10236','30','1','badebb168da14b07856c04774bf07102');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('139','Network interfaces',NULL,'1','10237','30','1','9f32e8b35c17466dbf695110eb21c03d');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('140','Network interfaces',NULL,'1','10001','30','1','14aa11c326a54ec390d4c209d30cc741');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('141','Network interfaces',NULL,'1','10343','30','1','6d179c1f45c2438e9e6a3aa567d46b0c');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('142','Network interfaces',NULL,'1','10248','30','1','e0f04b83911a47ba8ee30fa91b4f63a9');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('143','Network interfaces',NULL,'1','10081','30','1','49212562a208434d9766aa82240230fd');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('144','Network interfaces',NULL,'1','10351','30','1','59033ebe1b084a86b820fc59049db125');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('145','Network interfaces',NULL,'1','10249','30','1','8aeb65d3f8b645d28994cdc680c0f0fd');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('146','System performance',NULL,'1','10249','30','1','3b28bdbfdb6d4cf1a69c7466a4f059f3');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('147','UPS Summary',NULL,'1','10400','30','1','23bf458b1bbc4ae0b145597292d098cb');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('148','UPS Summary',NULL,'1','10401','30','1','ac27c888a2c547b2b71fe6bf1aad69b1');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('149','UPS Summary',NULL,'1','10402','30','1','829373d305ce44cc9441714fc9d828a5');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('150','UPS Summary',NULL,'1','10403','30','1','2fba6e227f9b4d8fa584664bfd600cf4');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('151','UPS Summary',NULL,'1','10404','30','1','8e5f02a3eab44a5f85011b7331696284');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('152','UPS Summary',NULL,'1','10412','30','1','ceb28c7c39e44859a4c1076978a40788');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('153','UPS Summary',NULL,'1','10406','30','1','268ead40a9dd40798df6d75f554ec1bb');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('154','UPS Summary',NULL,'1','10395','30','1','e1b2126fa06d44e3b0984f5bb904cd9a');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('155','UPS Summary',NULL,'1','10407','30','1','fbf5cb79251d48bdbe4bc7b81dbd2d65');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('156','UPS Summary',NULL,'1','10408','30','1','3d8fa7f93f9f4a0bbc0b9f70282aa5cd');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('157','UPS Summary',NULL,'1','10409','30','1','b070a774806547ffa7e688b2746c8d58');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('158','Network interfaces',NULL,'1','10434','30','1','b28e8cdadce64ba299c56054a18ea31d');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('159','Hardware',NULL,'1','10523','30','1','fda49a1847d34b84be2fe5d9d12b8444');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('160','Replication',NULL,'1','10523','30','1','41dce007bcf54762ad321ac944a8b63e');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('161','Runtime',NULL,'1','10523','30','1','0d9a3feb76ad403dac7379dbe04298f0');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('162','Slow requests',NULL,'1','10523','30','1','ac89b176f2c34fc1b885ee1ed43df590');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('163','SQL',NULL,'1','10523','30','1','b1086a92f1b54c45be99efd996b33457');
INSERT INTO `dashboard` (`dashboardid`,`name`,`userid`,`private`,`templateid`,`display_period`,`auto_start`,`uuid`) values ('164','Storage',NULL,'1','10523','30','1','aa41ca45023c4d0eb126596f89f20f98');
INSERT INTO `dashboard_usrgrp` (`dashboard_usrgrpid`,`dashboardid`,`usrgrpid`,`permission`) values ('1','2','7','3');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('1','1','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2','2','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('57','57','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2088','4','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2089','3','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2090','58','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2091','5','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2092','43','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2093','44','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2094','45','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2095','40','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2096','41','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2097','42','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2098','28','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2099','30','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2100','8','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2101','9','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2102','12','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2103','13','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2104','37','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2105','39','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2106','36','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2107','59','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2108','38','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2109','60','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2110','159','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2111','160','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2112','161','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2113','162','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2114','163','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2115','164','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2116','23','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2117','24','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2118','53','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2119','48','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2120','49','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2121','18','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2122','56','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2123','7','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2124','29','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2125','54','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2126','27','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2127','26','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2128','16','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2129','14','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2130','21','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2131','19','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2132','61','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2133','62','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2134','63','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2135','64','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2136','65','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2137','66','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2138','67','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2139','68','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2140','69','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2141','70','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2142','71','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2143','72','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2144','73','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2145','74','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2146','75','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2147','76','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2148','77','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2149','78','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2150','79','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2151','80','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2152','81','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2153','82','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2154','83','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2155','84','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2156','85','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2157','86','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2158','87','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2159','88','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2160','89','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2161','90','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2162','91','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2163','92','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2164','93','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2165','94','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2166','95','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2167','96','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2168','97','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2169','98','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2170','99','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2171','100','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2172','101','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2173','102','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2174','103','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2175','104','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2176','105','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2177','106','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2178','107','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2179','108','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2180','109','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2181','110','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2182','111','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2183','112','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2184','113','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2185','114','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2186','115','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2187','116','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2188','117','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2189','118','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2190','119','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2191','120','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2192','121','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2193','122','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2194','123','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2195','124','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2196','125','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2197','126','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2198','127','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2199','128','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2200','129','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2201','130','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2202','131','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2203','132','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2204','133','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2205','134','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2206','135','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2207','136','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2208','137','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2209','138','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2210','139','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2211','50','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2212','51','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2213','52','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2214','140','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2215','17','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2216','141','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2217','15','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2218','10','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2219','11','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2220','142','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2221','55','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2222','31','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2223','32','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2224','33','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2225','143','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2226','22','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2227','144','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2228','20','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2229','145','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2230','146','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2231','147','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2232','148','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2233','149','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2234','150','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2235','151','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2236','152','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2237','153','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2238','154','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2239','155','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2240','156','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2241','157','','0','0');
INSERT INTO `dashboard_page` (`dashboard_pageid`,`dashboardid`,`name`,`display_period`,`sortorder`) values ('2242','158','','0','0');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('1','systeminfo','','0','0','8','4','0','1');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('2','hostavail','','8','0','12','2','1','1');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('3','problemsbysv','','8','2','12','2','1','1');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('4','clock','','20','0','4','4','1','1');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5','problems','','0','4','20','10','0','1');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6','favmaps','','20','4','4','5','0','1');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('7','favgraphs','','20','9','4','5','0','1');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('8','problems','Zabbix server problems','0','0','20','4','0','2');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('9','clock','Local time','20','0','4','4','1','2');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('10','svggraph','Values processed per second','0','4','8','5','0','2');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('11','svggraph','Utilization of data collectors','8','4','8','5','0','2');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('12','svggraph','Utilization of internal processes','16','4','8','5','0','2');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('13','svggraph','Cache usage','0','9','8','5','0','2');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('14','svggraph','Value cache effectiveness','8','9','8','5','0','2');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('15','svggraph','Queue size','16','9','8','5','0','2');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('400','map','','0','0','24','4','0','57');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5777','graph','','0','0','12','5','0','2088');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5778','graph','','12','0','12','5','0','2088');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5779','graphprototype','','0','5','12','5','0','2088');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5780','graphprototype','','12','5','12','5','0','2088');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5781','graph','','0','10','12','5','0','2088');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5782','graph','','0','0','12','5','0','2089');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5783','graph','','12','0','12','5','0','2089');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5784','graphprototype','','0','5','12','5','0','2089');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5785','graphprototype','','12','5','12','5','0','2089');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5786','graph','','0','10','12','5','0','2089');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5787','graph','','0','0','12','5','0','2090');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5788','graph','','12','0','12','5','0','2090');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5789','graph','','0','5','12','5','0','2090');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5790','graph','','12','5','12','5','0','2090');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5791','graph','','0','10','12','5','0','2090');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5792','graph','','12','10','12','5','0','2090');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5793','graph','','0','15','12','5','0','2090');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5794','graph','','0','0','12','5','0','2091');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5795','graph','','12','0','12','5','0','2091');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5796','graph','','0','5','12','5','0','2091');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5797','graph','','12','5','12','5','0','2091');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5798','graph','','0','10','12','5','0','2091');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5799','graphprototype','','0','0','24','5','0','2092');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5800','graphprototype','','0','5','24','5','0','2092');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5801','graphprototype','','0','10','24','5','0','2092');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5802','graphprototype','','0','0','24','5','0','2093');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5803','graphprototype','','0','5','24','5','0','2093');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5804','graphprototype','','0','10','24','5','0','2093');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5805','graphprototype','','0','15','24','5','0','2093');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5806','graphprototype','','0','0','24','5','0','2094');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5807','graphprototype','','0','5','24','5','0','2094');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5808','graphprototype','','0','10','24','5','0','2094');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5809','graphprototype','','0','0','24','5','0','2095');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5810','graphprototype','','0','5','24','5','0','2095');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5811','graphprototype','','0','10','24','5','0','2095');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5812','graphprototype','','0','0','24','5','0','2096');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5813','graphprototype','','0','5','24','5','0','2096');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5814','graphprototype','','0','10','24','5','0','2096');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5815','graphprototype','','0','15','24','5','0','2096');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5816','graphprototype','','0','0','24','5','0','2097');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5817','graphprototype','','0','5','24','5','0','2097');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5818','graphprototype','','0','10','24','5','0','2097');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5819','graph','','0','0','12','5','0','2098');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5820','graph','','12','0','12','5','0','2098');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5821','graph','','0','5','12','5','0','2098');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5822','graph','','0','0','12','5','0','2099');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5823','graph','','12','0','12','5','0','2099');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5824','graph','','0','5','12','5','0','2099');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5825','graph','','0','0','12','5','0','2100');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5826','graph','','12','0','12','5','0','2100');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5827','graph','','0','5','12','5','0','2100');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5828','graph','','12','5','12','5','0','2100');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5829','graph','','0','10','12','5','0','2100');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5830','graph','','0','0','12','5','0','2101');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5831','graph','','12','0','12','5','0','2101');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5832','graph','','0','5','12','5','0','2101');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5833','graph','','12','5','12','5','0','2101');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5834','graph','','0','10','12','5','0','2101');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5835','graph','','12','10','12','5','0','2101');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5836','graph','','0','0','12','5','0','2102');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5837','graph','','12','0','12','5','0','2102');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5838','graph','','0','5','12','5','0','2102');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5839','graph','','12','5','12','5','0','2102');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5840','graph','','0','10','12','5','0','2102');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5841','graph','','0','0','12','5','0','2103');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5842','graph','','12','0','12','5','0','2103');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5843','graph','','0','5','12','5','0','2103');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5844','graph','','12','5','12','5','0','2103');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5845','graph','','0','10','12','5','0','2103');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5846','graph','','12','10','12','5','0','2103');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5847','graph','','0','0','12','5','0','2104');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5848','graph','','12','0','12','5','0','2104');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5849','graph','','0','5','12','5','0','2104');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5850','graph','','12','5','12','5','0','2104');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5851','graph','','0','0','12','5','0','2105');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5852','graph','','12','0','12','5','0','2105');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5853','graph','','0','5','12','5','0','2105');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5854','graph','','12','5','12','5','0','2105');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5855','graph','','0','0','12','5','0','2106');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5856','graph','','12','0','12','5','0','2106');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5857','graph','','0','5','12','5','0','2106');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5858','graph','','12','5','12','5','0','2106');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5859','graph','','0','10','12','5','0','2106');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5860','graph','','12','10','12','5','0','2106');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5861','graph','','0','0','12','5','0','2107');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5862','graph','','12','0','12','5','0','2107');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5863','graph','','0','5','12','5','0','2107');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5864','graph','','12','5','12','5','0','2107');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5865','graph','','0','0','12','5','0','2108');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5866','graph','','12','0','12','5','0','2108');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5867','graph','','0','5','12','5','0','2108');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5868','graph','','12','5','12','5','0','2108');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5869','graph','','0','10','12','5','0','2108');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5870','graph','','12','10','12','5','0','2108');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5871','graph','','0','0','12','5','0','2109');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5872','graph','','12','0','12','5','0','2109');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5873','graph','','0','5','12','5','0','2109');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5874','graph','','12','5','12','5','0','2109');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5875','graph','','0','0','24','5','0','2110');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5876','graph','','0','5','24','5','0','2110');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5877','graphprototype','','0','10','24','5','0','2110');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5878','graph','','0','15','24','5','0','2110');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5879','graph','','0','20','24','5','0','2110');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5880','graph','','0','25','24','5','0','2110');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5881','graph','','0','30','24','5','0','2110');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5882','graphprototype','','0','0','24','5','0','2111');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5883','graphprototype','','0','5','24','5','0','2111');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5884','graphprototype','','0','10','24','5','0','2111');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5885','graphprototype','','0','15','24','5','0','2111');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5886','graph','','0','0','24','5','0','2112');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5887','graph','','0','5','24','5','0','2112');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5888','graph','','0','10','24','5','0','2112');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5889','graph','','0','15','24','5','0','2112');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5890','graph','','0','20','24','5','0','2112');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5891','graph','','0','25','24','5','0','2112');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5892','graph','','0','30','24','5','0','2112');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5893','graphprototype','','0','0','24','5','0','2113');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5894','graph','','0','5','24','5','0','2113');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5895','graphprototype','','0','10','24','5','0','2113');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5896','graphprototype','','0','15','24','5','0','2113');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5897','graph','','0','0','12','5','0','2114');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5898','graph','','12','0','12','5','0','2114');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5899','graph','','0','5','12','5','0','2114');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5900','graph','','12','5','12','5','0','2114');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5901','graph','','0','10','12','5','0','2114');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5902','graph','','12','10','12','5','0','2114');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5903','graph','','0','15','12','5','0','2114');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5904','graph','','12','15','12','5','0','2114');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5905','graph','','0','20','24','5','0','2114');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5906','graph','','0','25','12','5','0','2114');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5907','graph','','12','25','12','5','0','2114');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5908','graph','','0','30','24','5','0','2114');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5909','graphprototype','','0','0','12','5','0','2115');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5910','graphprototype','','12','0','12','5','0','2115');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5911','graphprototype','','0','5','12','5','0','2115');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5912','graphprototype','','12','5','12','5','0','2115');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5913','graph','','0','10','12','5','0','2115');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5914','graph','','12','10','12','5','0','2115');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5915','graph','','0','0','12','5','0','2116');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5916','graph','','12','0','12','5','0','2116');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5917','graph','','0','5','12','5','0','2116');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5918','graph','','12','5','12','5','0','2116');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5919','graph','','0','10','12','5','0','2116');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5920','graph','','12','10','12','5','0','2116');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5921','graph','','0','0','12','5','0','2117');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5922','graph','','12','0','12','5','0','2117');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5923','graph','','0','5','12','5','0','2117');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5924','graph','','12','5','12','5','0','2117');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5925','graph','','0','10','12','5','0','2117');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5926','graph','','12','10','12','5','0','2117');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5927','graph','','0','0','12','5','0','2118');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5928','graph','','12','0','12','5','0','2118');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5929','graph','','0','5','12','5','0','2118');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5930','graph','','12','5','12','5','0','2118');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5931','graph','','0','10','12','5','0','2118');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5932','graph','','12','10','12','5','0','2118');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5933','graphprototype','','0','0','12','5','0','2119');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5934','graphprototype','','12','0','12','5','0','2119');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5935','graphprototype','','0','5','12','5','0','2119');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5936','graphprototype','','12','5','12','5','0','2119');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5937','graphprototype','','0','10','12','5','0','2119');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5938','graphprototype','','12','10','12','5','0','2119');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5939','graphprototype','','0','15','12','5','0','2119');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5940','graphprototype','','12','15','12','5','0','2119');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5941','graph','','0','0','12','5','0','2120');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5942','graph','','12','0','12','5','0','2120');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5943','graph','','0','5','12','5','0','2120');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5944','graph','','12','5','12','5','0','2120');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5945','graph','','0','10','12','5','0','2120');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5946','graph','','12','10','12','5','0','2120');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5947','graph','','0','15','12','5','0','2120');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5948','graph','','12','15','12','5','0','2120');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5949','graphprototype','','0','0','12','5','0','2121');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5950','graphprototype','','12','0','12','5','0','2121');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5951','graphprototype','','0','5','12','5','0','2121');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5952','graphprototype','','12','5','12','5','0','2121');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5953','graphprototype','','0','10','12','5','0','2121');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5954','graphprototype','','12','10','12','5','0','2121');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5955','graph','','0','0','12','5','0','2122');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5956','graph','','12','0','12','5','0','2122');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5957','graph','','0','5','12','5','0','2122');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5958','graph','','12','5','12','5','0','2122');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5959','graph','','0','10','12','5','0','2122');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5960','graph','','12','10','12','5','0','2122');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5961','graph','','0','15','12','5','0','2122');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5962','graph','','12','15','12','5','0','2122');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5963','graphprototype','','0','20','12','5','0','2122');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5964','graph','','0','0','12','5','0','2123');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5965','graph','','12','0','12','5','0','2123');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5966','graph','','0','5','12','5','0','2123');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5967','graph','','12','5','12','5','0','2123');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5968','graph','','0','0','12','5','0','2124');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5969','graphprototype','','0','5','12','5','0','2124');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5970','graphprototype','','0','10','12','5','0','2124');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5971','graphprototype','','0','0','24','5','0','2125');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5972','graphprototype','','0','0','24','5','0','2126');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5973','graphprototype','','0','0','24','5','0','2127');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5974','graphprototype','','0','0','24','5','0','2128');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5975','graphprototype','','0','0','24','5','0','2129');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5976','graphprototype','','0','0','24','5','0','2130');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5977','graphprototype','','0','0','24','5','0','2131');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5978','graphprototype','','0','0','24','5','0','2132');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5979','graphprototype','','0','0','24','5','0','2133');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5980','graph','','0','0','12','5','0','2134');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5981','graphprototype','','0','5','12','5','0','2134');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5982','graphprototype','','0','10','12','5','0','2134');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5983','graphprototype','','0','0','24','5','0','2135');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5984','graphprototype','','0','0','24','5','0','2136');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5985','graphprototype','','0','0','24','5','0','2137');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5986','graphprototype','','0','0','24','5','0','2138');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5987','graphprototype','','0','0','24','5','0','2139');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5988','graphprototype','','0','0','24','5','0','2140');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5989','graphprototype','','0','0','24','5','0','2141');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5990','graphprototype','','0','0','24','5','0','2142');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5991','graphprototype','','0','0','24','5','0','2143');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5992','graphprototype','','0','0','24','5','0','2144');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5993','graphprototype','','0','0','24','5','0','2145');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5994','graphprototype','','0','0','24','5','0','2146');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5995','graphprototype','','0','0','24','5','0','2147');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5996','graphprototype','','0','0','24','5','0','2148');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5997','graphprototype','','0','0','24','5','0','2149');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5998','graphprototype','','0','0','24','5','0','2150');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('5999','graph','','0','0','12','5','0','2151');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6000','graphprototype','','0','5','12','5','0','2151');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6001','graphprototype','','0','10','12','5','0','2151');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6002','graphprototype','','0','0','24','5','0','2152');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6003','graphprototype','','0','0','24','5','0','2153');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6004','graphprototype','','0','0','24','5','0','2154');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6005','graphprototype','','0','0','24','5','0','2155');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6006','graphprototype','','0','0','24','5','0','2156');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6007','graphprototype','','0','0','24','5','0','2157');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6008','graphprototype','','0','0','24','5','0','2158');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6009','graphprototype','','0','0','24','5','0','2159');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6010','graphprototype','','0','0','24','5','0','2160');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6011','graphprototype','','0','0','24','5','0','2161');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6012','graphprototype','','0','0','24','5','0','2162');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6013','graphprototype','','0','0','24','5','0','2163');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6014','graphprototype','','0','0','24','5','0','2164');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6015','graphprototype','','0','0','24','5','0','2165');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6016','graphprototype','','0','0','24','5','0','2166');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6017','graphprototype','','0','0','24','5','0','2167');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6018','graphprototype','','0','0','24','5','0','2168');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6019','graphprototype','','0','0','24','5','0','2169');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6020','graphprototype','','0','0','24','5','0','2170');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6021','graphprototype','','0','0','24','5','0','2171');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6022','graphprototype','','0','0','24','5','0','2172');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6023','graphprototype','','0','0','24','5','0','2173');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6024','graphprototype','','0','0','24','5','0','2174');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6025','graphprototype','','0','0','24','5','0','2175');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6026','graphprototype','','0','0','24','5','0','2176');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6027','graphprototype','','0','0','24','5','0','2177');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6028','graphprototype','','0','0','24','5','0','2178');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6029','graphprototype','','0','0','24','5','0','2179');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6030','graphprototype','','0','0','24','5','0','2180');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6031','graphprototype','','0','0','24','5','0','2181');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6032','graphprototype','','0','0','24','5','0','2182');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6033','graphprototype','','0','0','24','5','0','2183');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6034','graphprototype','','0','0','24','5','0','2184');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6035','graphprototype','','0','0','24','5','0','2185');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6036','graphprototype','','0','0','24','5','0','2186');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6037','graphprototype','','0','0','24','5','0','2187');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6038','graphprototype','','0','0','24','5','0','2188');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6039','graphprototype','','0','0','24','5','0','2189');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6040','graphprototype','','0','0','24','5','0','2190');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6041','graphprototype','','0','0','24','5','0','2191');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6042','graphprototype','','0','0','24','5','0','2192');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6043','graphprototype','','0','0','24','5','0','2193');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6044','graphprototype','','0','0','24','5','0','2194');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6045','graphprototype','','0','0','24','5','0','2195');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6046','graphprototype','','0','0','24','5','0','2196');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6047','graphprototype','','0','0','24','5','0','2197');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6048','graphprototype','','0','0','24','5','0','2198');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6049','graphprototype','','0','0','24','5','0','2199');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6050','graphprototype','','0','0','24','5','0','2200');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6051','graphprototype','','0','0','24','5','0','2201');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6052','graphprototype','','0','0','24','5','0','2202');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6053','graphprototype','','0','0','24','5','0','2203');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6054','graphprototype','','0','0','24','5','0','2204');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6055','graphprototype','','0','0','24','5','0','2205');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6056','graphprototype','','0','0','24','5','0','2206');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6057','graphprototype','','0','0','24','5','0','2207');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6058','graphprototype','','0','0','24','5','0','2208');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6059','graphprototype','','0','0','24','5','0','2209');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6060','graphprototype','','0','0','24','5','0','2210');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6061','graph','','0','0','12','5','0','2211');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6062','graph','','12','0','12','5','0','2211');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6063','graph','','0','5','12','5','0','2211');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6064','graph','','12','5','12','5','0','2211');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6065','graph','','0','0','12','5','0','2212');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6066','graph','','12','0','12','5','0','2212');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6067','graph','','0','5','12','5','0','2212');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6068','graph','','12','5','12','5','0','2212');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6069','graph','','0','0','12','5','0','2213');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6070','graph','','12','0','12','5','0','2213');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6071','graph','','0','5','12','5','0','2213');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6072','graphprototype','','0','0','24','5','0','2214');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6073','graph','','0','0','12','5','0','2215');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6074','graph','','12','0','12','5','0','2215');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6075','graph','','0','5','12','5','0','2215');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6076','graph','','12','5','12','5','0','2215');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6077','graphprototype','','0','10','24','5','0','2215');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6078','graphprototype','','0','15','24','5','0','2215');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6079','graphprototype','','0','20','24','5','0','2215');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6080','graphprototype','','0','25','24','5','0','2215');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6081','graphprototype','','0','30','24','5','0','2215');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6082','graphprototype','','0','0','24','5','0','2216');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6083','graph','','0','0','12','5','0','2217');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6084','graph','','12','0','12','5','0','2217');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6085','graph','','0','5','12','5','0','2217');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6086','graph','','12','5','12','5','0','2217');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6087','graphprototype','','0','10','24','5','0','2217');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6088','graphprototype','','0','15','24','5','0','2217');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6089','graphprototype','','0','20','24','5','0','2217');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6090','graphprototype','','0','25','24','5','0','2217');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6091','graphprototype','','0','30','24','5','0','2217');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6092','graphprototype','','0','0','24','5','0','2218');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6093','graph','','0','0','12','5','0','2219');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6094','graph','','12','0','12','5','0','2219');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6095','graph','','0','5','12','5','0','2219');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6096','graph','','12','5','12','5','0','2219');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6097','graphprototype','','0','10','24','5','0','2219');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6098','graphprototype','','0','15','24','5','0','2219');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6099','graphprototype','','0','20','24','5','0','2219');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6100','graphprototype','','0','25','24','5','0','2219');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6101','graphprototype','','0','30','24','5','0','2219');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6102','graphprototype','','0','0','24','5','0','2220');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6103','graph','','0','0','12','5','0','2221');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6104','graphprototype','','12','0','12','5','0','2221');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6105','graph','','0','5','12','5','0','2221');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6106','graph','','12','5','12','5','0','2221');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6107','graphprototype','','0','10','24','5','0','2221');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6108','graphprototype','','0','15','24','5','0','2221');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6109','graphprototype','','0','20','24','5','0','2221');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6110','graphprototype','','0','25','24','5','0','2221');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6111','graph','','0','0','24','5','0','2222');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6112','graph','','0','5','24','5','0','2222');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6113','graph','','0','0','12','5','0','2223');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6114','graph','','12','0','12','5','0','2223');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6115','graph','','0','5','12','5','0','2223');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6116','graph','','12','5','12','5','0','2223');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6117','graph','','0','0','12','5','0','2224');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6118','graph','','12','0','12','5','0','2224');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6119','graph','','0','5','12','5','0','2224');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6120','graph','','12','5','12','5','0','2224');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6121','graph','','0','10','12','5','0','2224');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6122','graph','','12','10','12','5','0','2224');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6123','graphprototype','','0','0','24','5','0','2225');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6124','graph','','0','0','12','5','0','2226');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6125','graph','','12','0','12','5','0','2226');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6126','graph','','0','5','12','5','0','2226');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6127','graph','','12','5','12','5','0','2226');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6128','graphprototype','','0','10','24','5','0','2226');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6129','graphprototype','','0','15','24','5','0','2226');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6130','graphprototype','','0','20','24','5','0','2226');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6131','graphprototype','','0','25','24','5','0','2226');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6132','graphprototype','','0','0','24','5','0','2227');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6133','graph','','0','0','12','5','0','2228');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6134','graph','','12','0','12','5','0','2228');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6135','graph','','0','5','12','5','0','2228');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6136','graph','','12','5','12','5','0','2228');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6137','graphprototype','','0','10','24','5','0','2228');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6138','graphprototype','','0','15','24','5','0','2228');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6139','graphprototype','','0','20','24','5','0','2228');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6140','graphprototype','','0','25','24','5','0','2228');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6141','graphprototype','','0','0','24','5','0','2229');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6142','graph','','0','0','12','5','0','2230');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6143','graphprototype','','0','5','12','5','0','2230');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6144','graphprototype','','0','10','12','5','0','2230');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6145','plaintext','','0','0','8','2','0','2231');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6146','plaintext','','8','0','8','2','0','2231');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6147','plaintext','','16','0','8','2','0','2231');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6148','plaintext','','0','2','8','2','0','2231');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6149','plaintext','','8','2','8','2','0','2231');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6150','plaintext','','16','2','8','2','0','2231');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6151','graph','','0','4','8','7','0','2231');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6152','graph','','8','4','8','7','0','2231');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6153','graph','','16','4','8','7','0','2231');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6154','plaintext','','0','0','8','2','0','2232');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6155','plaintext','','8','0','8','2','0','2232');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6156','plaintext','','16','0','8','2','0','2232');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6157','plaintext','','0','2','8','2','0','2232');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6158','plaintext','','8','2','8','2','0','2232');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6159','plaintext','','16','2','8','2','0','2232');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6160','graph','','0','4','8','7','0','2232');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6161','graph','','8','4','8','7','0','2232');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6162','graph','','16','4','8','7','0','2232');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6163','plaintext','','0','0','8','2','0','2233');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6164','plaintext','','8','0','8','2','0','2233');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6165','plaintext','','16','0','8','2','0','2233');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6166','plaintext','','0','2','8','2','0','2233');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6167','plaintext','','8','2','8','2','0','2233');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6168','plaintext','','16','2','8','2','0','2233');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6169','graph','','0','4','8','7','0','2233');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6170','graph','','8','4','8','7','0','2233');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6171','graph','','16','4','8','7','0','2233');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6172','plaintext','','0','0','8','2','0','2234');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6173','plaintext','','8','0','8','2','0','2234');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6174','plaintext','','16','0','8','2','0','2234');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6175','plaintext','','0','2','8','2','0','2234');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6176','plaintext','','8','2','8','2','0','2234');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6177','plaintext','','16','2','8','2','0','2234');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6178','graph','','0','4','8','7','0','2234');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6179','graph','','8','4','8','7','0','2234');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6180','graph','','16','4','8','7','0','2234');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6181','plaintext','','0','0','8','2','0','2235');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6182','plaintext','','8','0','8','2','0','2235');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6183','plaintext','','16','0','8','2','0','2235');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6184','plaintext','','0','2','8','2','0','2235');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6185','plaintext','','8','2','8','2','0','2235');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6186','plaintext','','16','2','8','2','0','2235');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6187','graph','','0','4','8','7','0','2235');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6188','graph','','8','4','8','7','0','2235');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6189','graph','','16','4','8','7','0','2235');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6190','plaintext','','0','0','8','2','0','2236');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6191','plaintext','','8','0','8','2','0','2236');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6192','plaintext','','16','0','8','2','0','2236');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6193','plaintext','','0','2','8','2','0','2236');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6194','plaintext','','8','2','8','2','0','2236');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6195','plaintext','','16','2','8','2','0','2236');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6196','graph','','0','4','8','7','0','2236');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6197','graph','','8','4','8','7','0','2236');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6198','graph','','16','4','8','7','0','2236');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6199','plaintext','','0','0','8','2','0','2237');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6200','plaintext','','8','0','8','2','0','2237');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6201','plaintext','','16','0','8','2','0','2237');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6202','plaintext','','0','2','8','2','0','2237');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6203','plaintext','','8','2','8','2','0','2237');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6204','plaintext','','16','2','8','2','0','2237');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6205','graph','','0','4','8','7','0','2237');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6206','graph','','8','4','8','7','0','2237');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6207','graph','','16','4','8','7','0','2237');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6208','plaintext','','0','0','8','2','0','2238');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6209','plaintext','','8','0','8','2','0','2238');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6210','plaintext','','16','0','8','2','0','2238');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6211','plaintext','','0','2','8','2','0','2238');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6212','plaintext','','8','2','8','2','0','2238');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6213','plaintext','','16','2','8','2','0','2238');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6214','graph','','0','4','8','7','0','2238');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6215','graph','','8','4','8','7','0','2238');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6216','graph','','16','4','8','7','0','2238');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6217','plaintext','','0','0','8','2','0','2239');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6218','plaintext','','8','0','8','2','0','2239');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6219','plaintext','','16','0','8','2','0','2239');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6220','plaintext','','0','2','8','2','0','2239');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6221','plaintext','','8','2','8','2','0','2239');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6222','plaintext','','16','2','8','2','0','2239');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6223','graph','','0','4','8','7','0','2239');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6224','graph','','8','4','8','7','0','2239');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6225','graph','','16','4','8','7','0','2239');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6226','plaintext','','0','0','8','2','0','2240');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6227','plaintext','','8','0','8','2','0','2240');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6228','plaintext','','16','0','8','2','0','2240');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6229','plaintext','','0','2','8','2','0','2240');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6230','plaintext','','8','2','8','2','0','2240');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6231','plaintext','','16','2','8','2','0','2240');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6232','graph','','0','4','8','7','0','2240');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6233','graph','','8','4','8','7','0','2240');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6234','graph','','16','4','8','7','0','2240');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6235','plaintext','','0','0','8','2','0','2241');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6236','plaintext','','8','0','8','2','0','2241');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6237','plaintext','','16','0','8','2','0','2241');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6238','plaintext','','0','2','8','2','0','2241');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6239','plaintext','','8','2','8','2','0','2241');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6240','plaintext','','16','2','8','2','0','2241');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6241','graph','','0','4','8','7','0','2241');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6242','graph','','8','4','8','7','0','2241');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6243','graph','','16','4','8','7','0','2241');
INSERT INTO `widget` (`widgetid`,`type`,`name`,`x`,`y`,`width`,`height`,`view_mode`,`dashboard_pageid`) values ('6244','graphprototype','','0','0','24','5','0','2242');
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('1','2','0','interface_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('2','3','0','show_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('3','5','0','show','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('4','5','0','show_tags','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('5','8','3','hostids','0','',NULL,'10084',NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('9','10','0','ds.transparency.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('13','10','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('14','10','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('15','10','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('16','10','1','ds.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17','10','1','ds.hosts.0.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18','10','1','ds.items.0.0','0','*: Number of processed *values per second',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('20','10','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('21','10','1','problemhosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('25','11','0','ds.transparency.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('29','11','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('30','11','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('31','11','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('32','11','1','ds.color.0','0','E57373',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('33','11','1','ds.hosts.0.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('34','11','1','ds.items.0.0','0','*: Utilization of * data collector *',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('36','11','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('37','11','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('38','11','1','problemhosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('42','12','0','ds.transparency.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('46','12','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('47','12','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('48','12','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('49','12','1','ds.color.0','0','E57373',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('50','12','1','ds.hosts.0.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('51','12','1','ds.items.0.0','0','*: Utilization of * internal *',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('53','12','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('54','12','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('55','12','1','problemhosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('57','13','0','ds.fill.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('59','13','0','ds.transparency.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('61','13','0','ds.width.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('63','13','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('64','13','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('65','13','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('66','13','1','ds.color.0','0','4DB6AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('67','13','1','ds.hosts.0.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('68','13','1','ds.items.0.0','0','*cache*% used',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('70','13','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('71','13','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('72','13','1','problemhosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('79','14','0','ds.transparency.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('80','14','0','ds.transparency.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('83','14','0','ds.width.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('84','14','0','ds.width.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('86','14','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('87','14','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('88','14','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('89','14','1','ds.color.0','0','9CCC65',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('91','14','1','ds.hosts.0.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('92','14','1','ds.hosts.1.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('93','14','1','ds.items.0.0','0','Zabbix server: Value cache hits',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('94','14','1','ds.items.1.0','0','Zabbix server: Value cache misses',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('97','14','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('98','14','1','problemhosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('102','15','0','ds.fill.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('103','15','0','ds.fill.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('104','15','0','ds.fill.2','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('108','15','0','ds.transparency.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('109','15','0','ds.transparency.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('110','15','0','ds.transparency.2','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('114','15','0','ds.width.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('115','15','0','ds.width.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('116','15','0','ds.width.2','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('118','15','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('119','15','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('120','15','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('121','15','1','ds.color.0','0','B0AF07',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('122','15','1','ds.color.1','0','E53935',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('123','15','1','ds.color.2','0','0275B8',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('124','15','1','ds.hosts.0.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('125','15','1','ds.hosts.1.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('126','15','1','ds.hosts.2.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('127','15','1','ds.items.0.0','0','Zabbix server: Queue',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('128','15','1','ds.items.1.0','0','Zabbix server: Queue over 10 minutes',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('129','15','1','ds.items.2.0','0','Zabbix server: Preprocessing queue',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('133','15','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('134','15','1','problemhosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('1175','400','8','sysmapid','0','',NULL,NULL,NULL,NULL,'1',NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('1176','400','1','reference','0','NWLRB',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('1177','15','1','ds.hosts.3.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('1178','15','1','ds.items.3.0','0','Zabbix server: LLD queue',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('1179','15','1','ds.color.3','0','524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17068','5777','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17069','5777','6','graphid','0','',NULL,NULL,NULL,'1174',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17070','5778','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17071','5778','6','graphid','0','',NULL,NULL,NULL,'1176',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17072','5779','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17073','5779','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17074','5779','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17075','5779','7','graphid','0','',NULL,NULL,NULL,'1172',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17076','5780','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17077','5780','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17078','5780','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17079','5780','7','graphid','0','',NULL,NULL,NULL,'1173',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17080','5781','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17081','5781','6','graphid','0','',NULL,NULL,NULL,'1175',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17082','5782','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17083','5782','6','graphid','0','',NULL,NULL,NULL,'838',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17084','5783','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17085','5783','6','graphid','0','',NULL,NULL,NULL,'839',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17086','5784','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17087','5784','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17088','5784','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17089','5784','7','graphid','0','',NULL,NULL,NULL,'836',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17090','5785','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17091','5785','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17092','5785','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17093','5785','7','graphid','0','',NULL,NULL,NULL,'837',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17094','5786','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17095','5786','6','graphid','0','',NULL,NULL,NULL,'840',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17096','5787','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17097','5787','6','graphid','0','',NULL,NULL,NULL,'1622',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17098','5788','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17099','5788','6','graphid','0','',NULL,NULL,NULL,'1628',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17100','5789','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17101','5789','6','graphid','0','',NULL,NULL,NULL,'1624',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17102','5790','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17103','5790','6','graphid','0','',NULL,NULL,NULL,'1623',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17104','5791','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17105','5791','6','graphid','0','',NULL,NULL,NULL,'1626',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17106','5792','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17107','5792','6','graphid','0','',NULL,NULL,NULL,'1627',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17108','5793','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17109','5793','6','graphid','0','',NULL,NULL,NULL,'1625',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17110','5794','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17111','5794','6','graphid','0','',NULL,NULL,NULL,'1125',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17112','5795','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17113','5795','6','graphid','0','',NULL,NULL,NULL,'1129',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17114','5796','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17115','5796','6','graphid','0','',NULL,NULL,NULL,'1128',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17116','5797','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17117','5797','6','graphid','0','',NULL,NULL,NULL,'1126',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17118','5798','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17119','5798','6','graphid','0','',NULL,NULL,NULL,'1127',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17120','5799','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17121','5799','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17122','5799','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17123','5799','7','graphid','0','',NULL,NULL,NULL,'1075',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17124','5800','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17125','5800','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17126','5800','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17127','5800','7','graphid','0','',NULL,NULL,NULL,'1630',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17128','5801','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17129','5801','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17130','5801','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17131','5801','7','graphid','0','',NULL,NULL,NULL,'1629',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17132','5802','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17133','5802','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17134','5802','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17135','5802','7','graphid','0','',NULL,NULL,NULL,'1078',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17136','5803','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17137','5803','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17138','5803','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17139','5803','7','graphid','0','',NULL,NULL,NULL,'1076',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17140','5804','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17141','5804','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17142','5804','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17143','5804','7','graphid','0','',NULL,NULL,NULL,'1079',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17144','5805','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17145','5805','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17146','5805','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17147','5805','7','graphid','0','',NULL,NULL,NULL,'1077',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17148','5806','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17149','5806','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17150','5806','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17151','5806','7','graphid','0','',NULL,NULL,NULL,'1080',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17152','5807','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17153','5807','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17154','5807','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17155','5807','7','graphid','0','',NULL,NULL,NULL,'1632',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17156','5808','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17157','5808','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17158','5808','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17159','5808','7','graphid','0','',NULL,NULL,NULL,'1631',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17160','5809','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17161','5809','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17162','5809','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17163','5809','7','graphid','0','',NULL,NULL,NULL,'1081',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17164','5810','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17165','5810','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17166','5810','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17167','5810','7','graphid','0','',NULL,NULL,NULL,'1634',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17168','5811','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17169','5811','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17170','5811','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17171','5811','7','graphid','0','',NULL,NULL,NULL,'1633',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17172','5812','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17173','5812','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17174','5812','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17175','5812','7','graphid','0','',NULL,NULL,NULL,'1084',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17176','5813','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17177','5813','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17178','5813','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17179','5813','7','graphid','0','',NULL,NULL,NULL,'1082',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17180','5814','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17181','5814','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17182','5814','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17183','5814','7','graphid','0','',NULL,NULL,NULL,'1085',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17184','5815','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17185','5815','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17186','5815','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17187','5815','7','graphid','0','',NULL,NULL,NULL,'1083',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17188','5816','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17189','5816','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17190','5816','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17191','5816','7','graphid','0','',NULL,NULL,NULL,'1086',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17192','5817','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17193','5817','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17194','5817','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17195','5817','7','graphid','0','',NULL,NULL,NULL,'1636',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17196','5818','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17197','5818','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17198','5818','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17199','5818','7','graphid','0','',NULL,NULL,NULL,'1635',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17200','5819','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17201','5819','6','graphid','0','',NULL,NULL,NULL,'841',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17202','5820','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17203','5820','6','graphid','0','',NULL,NULL,NULL,'843',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17204','5821','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17205','5821','6','graphid','0','',NULL,NULL,NULL,'842',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17206','5822','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17207','5822','6','graphid','0','',NULL,NULL,NULL,'845',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17208','5823','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17209','5823','6','graphid','0','',NULL,NULL,NULL,'847',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17210','5824','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17211','5824','6','graphid','0','',NULL,NULL,NULL,'846',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17212','5825','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17213','5825','6','graphid','0','',NULL,NULL,NULL,'1029',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17214','5826','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17215','5826','6','graphid','0','',NULL,NULL,NULL,'1027',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17216','5827','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17217','5827','6','graphid','0','',NULL,NULL,NULL,'1030',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17218','5828','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17219','5828','6','graphid','0','',NULL,NULL,NULL,'1028',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17220','5829','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17221','5829','6','graphid','0','',NULL,NULL,NULL,'1031',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17222','5830','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17223','5830','6','graphid','0','',NULL,NULL,NULL,'1011',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17224','5831','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17225','5831','6','graphid','0','',NULL,NULL,NULL,'1012',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17226','5832','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17227','5832','6','graphid','0','',NULL,NULL,NULL,'1008',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17228','5833','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17229','5833','6','graphid','0','',NULL,NULL,NULL,'1009',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17230','5834','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17231','5834','6','graphid','0','',NULL,NULL,NULL,'1007',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17232','5835','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17233','5835','6','graphid','0','',NULL,NULL,NULL,'1010',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17234','5836','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17235','5836','6','graphid','0','',NULL,NULL,NULL,'1018',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17236','5837','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17237','5837','6','graphid','0','',NULL,NULL,NULL,'1016',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17238','5838','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17239','5838','6','graphid','0','',NULL,NULL,NULL,'1019',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17240','5839','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17241','5839','6','graphid','0','',NULL,NULL,NULL,'1017',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17242','5840','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17243','5840','6','graphid','0','',NULL,NULL,NULL,'1020',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17244','5841','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17245','5841','6','graphid','0','',NULL,NULL,NULL,'1025',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17246','5842','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17247','5842','6','graphid','0','',NULL,NULL,NULL,'1026',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17248','5843','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17249','5843','6','graphid','0','',NULL,NULL,NULL,'1022',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17250','5844','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17251','5844','6','graphid','0','',NULL,NULL,NULL,'1023',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17252','5845','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17253','5845','6','graphid','0','',NULL,NULL,NULL,'1021',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17254','5846','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17255','5846','6','graphid','0','',NULL,NULL,NULL,'1024',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17256','5847','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17257','5847','6','graphid','0','',NULL,NULL,NULL,'532',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17258','5848','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17259','5848','6','graphid','0','',NULL,NULL,NULL,'530',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17260','5849','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17261','5849','6','graphid','0','',NULL,NULL,NULL,'531',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17262','5850','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17263','5850','6','graphid','0','',NULL,NULL,NULL,'529',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17264','5851','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17265','5851','6','graphid','0','',NULL,NULL,NULL,'806',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17266','5852','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17267','5852','6','graphid','0','',NULL,NULL,NULL,'804',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17268','5853','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17269','5853','6','graphid','0','',NULL,NULL,NULL,'805',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17270','5854','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17271','5854','6','graphid','0','',NULL,NULL,NULL,'803',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17272','5855','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17273','5855','6','graphid','0','',NULL,NULL,NULL,'392',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17274','5856','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17275','5856','6','graphid','0','',NULL,NULL,NULL,'404',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17276','5857','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17277','5857','6','graphid','0','',NULL,NULL,NULL,'406',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17278','5858','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17279','5858','6','graphid','0','',NULL,NULL,NULL,'410',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17280','5859','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17281','5859','6','graphid','0','',NULL,NULL,NULL,'527',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17282','5860','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17283','5860','6','graphid','0','',NULL,NULL,NULL,'788',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17284','5861','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17285','5861','6','graphid','0','',NULL,NULL,NULL,'1651',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17286','5862','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17287','5862','6','graphid','0','',NULL,NULL,NULL,'1653',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17288','5863','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17289','5863','6','graphid','0','',NULL,NULL,NULL,'1652',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17290','5864','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17291','5864','6','graphid','0','',NULL,NULL,NULL,'1445',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17292','5865','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17293','5865','6','graphid','0','',NULL,NULL,NULL,'802',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17294','5866','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17295','5866','6','graphid','0','',NULL,NULL,NULL,'799',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17296','5867','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17297','5867','6','graphid','0','',NULL,NULL,NULL,'800',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17298','5868','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17299','5868','6','graphid','0','',NULL,NULL,NULL,'798',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17300','5869','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17301','5869','6','graphid','0','',NULL,NULL,NULL,'797',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17302','5870','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17303','5870','6','graphid','0','',NULL,NULL,NULL,'801',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17304','5871','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17305','5871','6','graphid','0','',NULL,NULL,NULL,'1659',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17306','5872','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17307','5872','6','graphid','0','',NULL,NULL,NULL,'1661',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17308','5873','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17309','5873','6','graphid','0','',NULL,NULL,NULL,'1660',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17310','5874','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17311','5874','6','graphid','0','',NULL,NULL,NULL,'1444',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17312','5875','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17313','5875','4','itemid','0','',NULL,NULL,'43118',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17314','5876','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17315','5876','6','graphid','0','',NULL,NULL,NULL,'2349',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17316','5877','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17317','5877','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17318','5877','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17319','5877','7','graphid','0','',NULL,NULL,NULL,'2340',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17320','5878','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17321','5878','6','graphid','0','',NULL,NULL,NULL,'2345',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17322','5879','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17323','5879','6','graphid','0','',NULL,NULL,NULL,'2346',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17324','5880','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17325','5880','4','itemid','0','',NULL,NULL,'43121',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17326','5881','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17327','5881','6','graphid','0','',NULL,NULL,NULL,'2350',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17328','5882','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17329','5882','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17330','5882','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17331','5882','7','graphid','0','',NULL,NULL,NULL,'2342',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17332','5883','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17333','5883','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17334','5883','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17335','5883','5','itemid','0','',NULL,NULL,'43155',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17336','5884','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17337','5884','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17338','5884','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17339','5884','5','itemid','0','',NULL,NULL,'43160',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17340','5885','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17341','5885','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17342','5885','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17343','5885','7','graphid','0','',NULL,NULL,NULL,'2343',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17344','5886','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17345','5886','4','itemid','0','',NULL,NULL,'43132',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17346','5887','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17347','5887','6','graphid','0','',NULL,NULL,NULL,'2349',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17348','5888','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17349','5888','4','itemid','0','',NULL,NULL,'43128',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17350','5889','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17351','5889','4','itemid','0','',NULL,NULL,'43127',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17352','5890','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17353','5890','4','itemid','0','',NULL,NULL,'43125',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17354','5891','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17355','5891','6','graphid','0','',NULL,NULL,NULL,'2344',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17356','5892','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17357','5892','4','itemid','0','',NULL,NULL,'43115',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17358','5893','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17359','5893','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17360','5893','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17361','5893','5','itemid','0','',NULL,NULL,'43149',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17362','5894','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17363','5894','4','itemid','0','',NULL,NULL,'43111',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17364','5895','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17365','5895','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17366','5895','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17367','5895','5','itemid','0','',NULL,NULL,'43150',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17368','5896','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17369','5896','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17370','5896','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17371','5896','5','itemid','0','',NULL,NULL,'43151',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17372','5897','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17373','5897','4','itemid','0','',NULL,NULL,'43090',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17374','5898','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17375','5898','4','itemid','0','',NULL,NULL,'43105',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17376','5899','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17377','5899','4','itemid','0','',NULL,NULL,'43091',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17378','5900','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17379','5900','6','graphid','0','',NULL,NULL,NULL,'2351',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17380','5901','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17381','5901','6','graphid','0','',NULL,NULL,NULL,'2352',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17382','5902','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17383','5902','4','itemid','0','',NULL,NULL,'43095',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17384','5903','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17385','5903','4','itemid','0','',NULL,NULL,'43092',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17386','5904','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17387','5904','4','itemid','0','',NULL,NULL,'43097',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17388','5905','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17389','5905','6','graphid','0','',NULL,NULL,NULL,'2353',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17390','5906','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17391','5906','4','itemid','0','',NULL,NULL,'43137',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17392','5907','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17393','5907','4','itemid','0','',NULL,NULL,'43089',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17394','5908','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17395','5908','4','itemid','0','',NULL,NULL,'43094',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17396','5909','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17397','5909','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17398','5909','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17399','5909','7','graphid','0','',NULL,NULL,NULL,'2340',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17400','5910','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17401','5910','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17402','5910','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17403','5910','7','graphid','0','',NULL,NULL,NULL,'2339',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17404','5911','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17405','5911','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17406','5911','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17407','5911','5','itemid','0','',NULL,NULL,'43153',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17408','5912','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17409','5912','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17410','5912','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17411','5912','5','itemid','0','',NULL,NULL,'43152',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17412','5913','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17413','5913','6','graphid','0','',NULL,NULL,NULL,'2347',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17414','5914','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17415','5914','6','graphid','0','',NULL,NULL,NULL,'2354',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17416','5915','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17417','5915','6','graphid','0','',NULL,NULL,NULL,'1112',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17418','5916','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17419','5916','6','graphid','0','',NULL,NULL,NULL,'1113',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17420','5917','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17421','5917','6','graphid','0','',NULL,NULL,NULL,'1110',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17422','5918','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17423','5918','6','graphid','0','',NULL,NULL,NULL,'1109',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17424','5919','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17425','5919','6','graphid','0','',NULL,NULL,NULL,'1111',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17426','5920','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17427','5920','6','graphid','0','',NULL,NULL,NULL,'1114',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17428','5921','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17429','5921','6','graphid','0','',NULL,NULL,NULL,'1139',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17430','5922','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17431','5922','6','graphid','0','',NULL,NULL,NULL,'1140',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17432','5923','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17433','5923','6','graphid','0','',NULL,NULL,NULL,'1137',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17434','5924','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17435','5924','6','graphid','0','',NULL,NULL,NULL,'1136',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17436','5925','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17437','5925','6','graphid','0','',NULL,NULL,NULL,'1138',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17438','5926','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17439','5926','6','graphid','0','',NULL,NULL,NULL,'1141',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17440','5927','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17441','5927','6','graphid','0','',NULL,NULL,NULL,'1118',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17442','5928','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17443','5928','6','graphid','0','',NULL,NULL,NULL,'1119',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17444','5929','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17445','5929','6','graphid','0','',NULL,NULL,NULL,'1116',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17446','5930','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17447','5930','6','graphid','0','',NULL,NULL,NULL,'1115',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17448','5931','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17449','5931','6','graphid','0','',NULL,NULL,NULL,'1117',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17450','5932','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17451','5932','6','graphid','0','',NULL,NULL,NULL,'1120',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17452','5933','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17453','5933','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17454','5933','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17455','5933','7','graphid','0','',NULL,NULL,NULL,'1387',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17456','5934','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17457','5934','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17458','5934','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17459','5934','7','graphid','0','',NULL,NULL,NULL,'1382',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17460','5935','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17461','5935','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17462','5935','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17463','5935','7','graphid','0','',NULL,NULL,NULL,'1380',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17464','5936','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17465','5936','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17466','5936','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17467','5936','7','graphid','0','',NULL,NULL,NULL,'1386',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17468','5937','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17469','5937','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17470','5937','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17471','5937','7','graphid','0','',NULL,NULL,NULL,'1383',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17472','5938','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17473','5938','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17474','5938','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17475','5938','7','graphid','0','',NULL,NULL,NULL,'1381',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17476','5939','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17477','5939','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17478','5939','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17479','5939','7','graphid','0','',NULL,NULL,NULL,'1384',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17480','5940','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17481','5940','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17482','5940','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17483','5940','7','graphid','0','',NULL,NULL,NULL,'1385',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17484','5941','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17485','5941','6','graphid','0','',NULL,NULL,NULL,'1390',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17486','5942','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17487','5942','6','graphid','0','',NULL,NULL,NULL,'1393',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17488','5943','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17489','5943','6','graphid','0','',NULL,NULL,NULL,'1391',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17490','5944','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17491','5944','6','graphid','0','',NULL,NULL,NULL,'1394',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17492','5945','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17493','5945','6','graphid','0','',NULL,NULL,NULL,'1392',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17494','5946','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17495','5946','6','graphid','0','',NULL,NULL,NULL,'1395',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17496','5947','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17497','5947','6','graphid','0','',NULL,NULL,NULL,'1388',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17498','5948','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17499','5948','6','graphid','0','',NULL,NULL,NULL,'1389',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17500','5949','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17501','5949','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17502','5949','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17503','5949','7','graphid','0','',NULL,NULL,NULL,'1221',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17504','5950','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17505','5950','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17506','5950','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17507','5950','7','graphid','0','',NULL,NULL,NULL,'1219',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17508','5951','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17509','5951','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17510','5951','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17511','5951','7','graphid','0','',NULL,NULL,NULL,'1222',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17512','5952','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17513','5952','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17514','5952','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17515','5952','7','graphid','0','',NULL,NULL,NULL,'1220',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17516','5953','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17517','5953','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17518','5953','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17519','5953','7','graphid','0','',NULL,NULL,NULL,'2295',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17520','5954','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17521','5954','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17522','5954','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17523','5954','7','graphid','0','',NULL,NULL,NULL,'2296',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17524','5955','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17525','5955','6','graphid','0','',NULL,NULL,NULL,'1091',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17526','5956','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17527','5956','6','graphid','0','',NULL,NULL,NULL,'1095',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17528','5957','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17529','5957','6','graphid','0','',NULL,NULL,NULL,'1092',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17530','5958','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17531','5958','6','graphid','0','',NULL,NULL,NULL,'1094',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17532','5959','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17533','5959','6','graphid','0','',NULL,NULL,NULL,'1099',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17534','5960','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17535','5960','6','graphid','0','',NULL,NULL,NULL,'1100',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17536','5961','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17537','5961','6','graphid','0','',NULL,NULL,NULL,'1101',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17538','5962','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17539','5962','6','graphid','0','',NULL,NULL,NULL,'1102',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17540','5963','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17541','5963','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17542','5963','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17543','5963','7','graphid','0','',NULL,NULL,NULL,'1090',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17544','5964','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17545','5964','6','graphid','0','',NULL,NULL,NULL,'1093',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17546','5965','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17547','5965','6','graphid','0','',NULL,NULL,NULL,'1098',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17548','5966','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17549','5966','6','graphid','0','',NULL,NULL,NULL,'1096',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17550','5967','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17551','5967','6','graphid','0','',NULL,NULL,NULL,'1097',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17552','5968','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17553','5968','6','graphid','0','',NULL,NULL,NULL,'2120',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17554','5969','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17555','5969','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17556','5969','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17557','5969','7','graphid','0','',NULL,NULL,NULL,'2115',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17558','5970','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17559','5970','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17560','5970','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17561','5970','7','graphid','0','',NULL,NULL,NULL,'2114',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17562','5971','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17563','5971','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17564','5971','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17565','5971','7','graphid','0','',NULL,NULL,NULL,'741',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17566','5972','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17567','5972','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17568','5972','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17569','5972','7','graphid','0','',NULL,NULL,NULL,'745',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17570','5973','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17571','5973','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17572','5973','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17573','5973','7','graphid','0','',NULL,NULL,NULL,'766',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17574','5974','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17575','5974','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17576','5974','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17577','5974','7','graphid','0','',NULL,NULL,NULL,'899',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17578','5975','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17579','5975','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17580','5975','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17581','5975','7','graphid','0','',NULL,NULL,NULL,'1287',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17582','5976','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17583','5976','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17584','5976','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17585','5976','7','graphid','0','',NULL,NULL,NULL,'1238',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17586','5977','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17587','5977','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17588','5977','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17589','5977','7','graphid','0','',NULL,NULL,NULL,'1307',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17590','5978','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17591','5978','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17592','5978','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17593','5978','7','graphid','0','',NULL,NULL,NULL,'2123',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17594','5979','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17595','5979','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17596','5979','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17597','5979','7','graphid','0','',NULL,NULL,NULL,'2124',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17598','5980','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17599','5980','6','graphid','0','',NULL,NULL,NULL,'2127',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17600','5981','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17601','5981','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17602','5981','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17603','5981','7','graphid','0','',NULL,NULL,NULL,'2126',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17604','5982','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17605','5982','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17606','5982','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17607','5982','7','graphid','0','',NULL,NULL,NULL,'2125',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17608','5983','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17609','5983','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17610','5983','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17611','5983','7','graphid','0','',NULL,NULL,NULL,'2128',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17612','5984','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17613','5984','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17614','5984','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17615','5984','7','graphid','0','',NULL,NULL,NULL,'2129',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17616','5985','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17617','5985','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17618','5985','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17619','5985','7','graphid','0','',NULL,NULL,NULL,'2130',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17620','5986','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17621','5986','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17622','5986','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17623','5986','7','graphid','0','',NULL,NULL,NULL,'2138',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17624','5987','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17625','5987','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17626','5987','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17627','5987','7','graphid','0','',NULL,NULL,NULL,'2141',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17628','5988','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17629','5988','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17630','5988','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17631','5988','7','graphid','0','',NULL,NULL,NULL,'2143',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17632','5989','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17633','5989','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17634','5989','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17635','5989','7','graphid','0','',NULL,NULL,NULL,'2144',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17636','5990','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17637','5990','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17638','5990','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17639','5990','7','graphid','0','',NULL,NULL,NULL,'2145',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17640','5991','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17641','5991','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17642','5991','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17643','5991','7','graphid','0','',NULL,NULL,NULL,'2146',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17644','5992','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17645','5992','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17646','5992','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17647','5992','7','graphid','0','',NULL,NULL,NULL,'2147',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17648','5993','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17649','5993','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17650','5993','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17651','5993','7','graphid','0','',NULL,NULL,NULL,'2148',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17652','5994','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17653','5994','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17654','5994','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17655','5994','7','graphid','0','',NULL,NULL,NULL,'2149',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17656','5995','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17657','5995','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17658','5995','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17659','5995','7','graphid','0','',NULL,NULL,NULL,'2150',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17660','5996','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17661','5996','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17662','5996','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17663','5996','7','graphid','0','',NULL,NULL,NULL,'2151',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17664','5997','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17665','5997','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17666','5997','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17667','5997','7','graphid','0','',NULL,NULL,NULL,'2152',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17668','5998','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17669','5998','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17670','5998','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17671','5998','7','graphid','0','',NULL,NULL,NULL,'1564',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17672','5999','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17673','5999','6','graphid','0','',NULL,NULL,NULL,'1567',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17674','6000','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17675','6000','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17676','6000','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17677','6000','7','graphid','0','',NULL,NULL,NULL,'1566',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17678','6001','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17679','6001','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17680','6001','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17681','6001','7','graphid','0','',NULL,NULL,NULL,'1565',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17682','6002','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17683','6002','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17684','6002','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17685','6002','7','graphid','0','',NULL,NULL,NULL,'2153',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17686','6003','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17687','6003','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17688','6003','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17689','6003','7','graphid','0','',NULL,NULL,NULL,'2154',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17690','6004','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17691','6004','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17692','6004','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17693','6004','7','graphid','0','',NULL,NULL,NULL,'2155',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17694','6005','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17695','6005','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17696','6005','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17697','6005','7','graphid','0','',NULL,NULL,NULL,'2156',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17698','6006','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17699','6006','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17700','6006','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17701','6006','7','graphid','0','',NULL,NULL,NULL,'2157',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17702','6007','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17703','6007','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17704','6007','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17705','6007','7','graphid','0','',NULL,NULL,NULL,'2158',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17706','6008','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17707','6008','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17708','6008','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17709','6008','7','graphid','0','',NULL,NULL,NULL,'2159',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17710','6009','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17711','6009','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17712','6009','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17713','6009','7','graphid','0','',NULL,NULL,NULL,'2160',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17714','6010','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17715','6010','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17716','6010','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17717','6010','7','graphid','0','',NULL,NULL,NULL,'2161',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17718','6011','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17719','6011','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17720','6011','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17721','6011','7','graphid','0','',NULL,NULL,NULL,'2162',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17722','6012','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17723','6012','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17724','6012','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17725','6012','7','graphid','0','',NULL,NULL,NULL,'2163',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17726','6013','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17727','6013','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17728','6013','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17729','6013','7','graphid','0','',NULL,NULL,NULL,'2164',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17730','6014','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17731','6014','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17732','6014','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17733','6014','7','graphid','0','',NULL,NULL,NULL,'2165',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17734','6015','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17735','6015','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17736','6015','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17737','6015','7','graphid','0','',NULL,NULL,NULL,'2166',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17738','6016','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17739','6016','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17740','6016','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17741','6016','7','graphid','0','',NULL,NULL,NULL,'2167',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17742','6017','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17743','6017','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17744','6017','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17745','6017','7','graphid','0','',NULL,NULL,NULL,'2168',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17746','6018','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17747','6018','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17748','6018','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17749','6018','7','graphid','0','',NULL,NULL,NULL,'2169',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17750','6019','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17751','6019','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17752','6019','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17753','6019','7','graphid','0','',NULL,NULL,NULL,'2170',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17754','6020','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17755','6020','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17756','6020','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17757','6020','7','graphid','0','',NULL,NULL,NULL,'2171',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17758','6021','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17759','6021','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17760','6021','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17761','6021','7','graphid','0','',NULL,NULL,NULL,'2172',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17762','6022','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17763','6022','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17764','6022','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17765','6022','7','graphid','0','',NULL,NULL,NULL,'2173',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17766','6023','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17767','6023','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17768','6023','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17769','6023','7','graphid','0','',NULL,NULL,NULL,'2174',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17770','6024','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17771','6024','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17772','6024','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17773','6024','7','graphid','0','',NULL,NULL,NULL,'2175',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17774','6025','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17775','6025','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17776','6025','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17777','6025','7','graphid','0','',NULL,NULL,NULL,'2176',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17778','6026','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17779','6026','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17780','6026','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17781','6026','7','graphid','0','',NULL,NULL,NULL,'2177',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17782','6027','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17783','6027','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17784','6027','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17785','6027','7','graphid','0','',NULL,NULL,NULL,'2178',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17786','6028','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17787','6028','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17788','6028','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17789','6028','7','graphid','0','',NULL,NULL,NULL,'2179',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17790','6029','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17791','6029','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17792','6029','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17793','6029','7','graphid','0','',NULL,NULL,NULL,'2180',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17794','6030','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17795','6030','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17796','6030','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17797','6030','7','graphid','0','',NULL,NULL,NULL,'2181',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17798','6031','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17799','6031','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17800','6031','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17801','6031','7','graphid','0','',NULL,NULL,NULL,'2182',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17802','6032','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17803','6032','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17804','6032','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17805','6032','7','graphid','0','',NULL,NULL,NULL,'2183',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17806','6033','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17807','6033','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17808','6033','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17809','6033','7','graphid','0','',NULL,NULL,NULL,'2184',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17810','6034','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17811','6034','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17812','6034','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17813','6034','7','graphid','0','',NULL,NULL,NULL,'2185',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17814','6035','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17815','6035','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17816','6035','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17817','6035','7','graphid','0','',NULL,NULL,NULL,'2186',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17818','6036','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17819','6036','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17820','6036','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17821','6036','7','graphid','0','',NULL,NULL,NULL,'2187',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17822','6037','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17823','6037','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17824','6037','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17825','6037','7','graphid','0','',NULL,NULL,NULL,'2188',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17826','6038','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17827','6038','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17828','6038','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17829','6038','7','graphid','0','',NULL,NULL,NULL,'2189',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17830','6039','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17831','6039','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17832','6039','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17833','6039','7','graphid','0','',NULL,NULL,NULL,'2190',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17834','6040','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17835','6040','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17836','6040','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17837','6040','7','graphid','0','',NULL,NULL,NULL,'2191',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17838','6041','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17839','6041','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17840','6041','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17841','6041','7','graphid','0','',NULL,NULL,NULL,'2192',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17842','6042','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17843','6042','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17844','6042','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17845','6042','7','graphid','0','',NULL,NULL,NULL,'2193',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17846','6043','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17847','6043','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17848','6043','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17849','6043','7','graphid','0','',NULL,NULL,NULL,'2194',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17850','6044','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17851','6044','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17852','6044','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17853','6044','7','graphid','0','',NULL,NULL,NULL,'2195',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17854','6045','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17855','6045','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17856','6045','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17857','6045','7','graphid','0','',NULL,NULL,NULL,'2196',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17858','6046','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17859','6046','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17860','6046','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17861','6046','7','graphid','0','',NULL,NULL,NULL,'2197',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17862','6047','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17863','6047','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17864','6047','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17865','6047','7','graphid','0','',NULL,NULL,NULL,'2198',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17866','6048','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17867','6048','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17868','6048','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17869','6048','7','graphid','0','',NULL,NULL,NULL,'2199',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17870','6049','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17871','6049','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17872','6049','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17873','6049','7','graphid','0','',NULL,NULL,NULL,'2200',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17874','6050','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17875','6050','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17876','6050','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17877','6050','7','graphid','0','',NULL,NULL,NULL,'2201',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17878','6051','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17879','6051','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17880','6051','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17881','6051','7','graphid','0','',NULL,NULL,NULL,'2202',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17882','6052','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17883','6052','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17884','6052','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17885','6052','7','graphid','0','',NULL,NULL,NULL,'2203',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17886','6053','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17887','6053','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17888','6053','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17889','6053','7','graphid','0','',NULL,NULL,NULL,'2204',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17890','6054','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17891','6054','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17892','6054','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17893','6054','7','graphid','0','',NULL,NULL,NULL,'2205',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17894','6055','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17895','6055','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17896','6055','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17897','6055','7','graphid','0','',NULL,NULL,NULL,'2206',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17898','6056','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17899','6056','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17900','6056','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17901','6056','7','graphid','0','',NULL,NULL,NULL,'2207',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17902','6057','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17903','6057','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17904','6057','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17905','6057','7','graphid','0','',NULL,NULL,NULL,'2208',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17906','6058','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17907','6058','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17908','6058','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17909','6058','7','graphid','0','',NULL,NULL,NULL,'2209',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17910','6059','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17911','6059','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17912','6059','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17913','6059','7','graphid','0','',NULL,NULL,NULL,'2210',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17914','6060','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17915','6060','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17916','6060','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17917','6060','7','graphid','0','',NULL,NULL,NULL,'2211',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17918','6061','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17919','6061','6','graphid','0','',NULL,NULL,NULL,'469',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17920','6062','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17921','6062','6','graphid','0','',NULL,NULL,NULL,'471',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17922','6063','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17923','6063','6','graphid','0','',NULL,NULL,NULL,'498',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17924','6064','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17925','6064','6','graphid','0','',NULL,NULL,NULL,'540',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17926','6065','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17927','6065','6','graphid','0','',NULL,NULL,NULL,'463',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17928','6066','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17929','6066','6','graphid','0','',NULL,NULL,NULL,'462',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17930','6067','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17931','6067','6','graphid','0','',NULL,NULL,NULL,'541',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17932','6068','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17933','6068','6','graphid','0','',NULL,NULL,NULL,'464',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17934','6069','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17935','6069','6','graphid','0','',NULL,NULL,NULL,'475',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17936','6070','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17937','6070','6','graphid','0','',NULL,NULL,NULL,'474',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17938','6071','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17939','6071','6','graphid','0','',NULL,NULL,NULL,'542',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17940','6072','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17941','6072','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17942','6072','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17943','6072','7','graphid','0','',NULL,NULL,NULL,'2212',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17944','6073','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17945','6073','6','graphid','0','',NULL,NULL,NULL,'2229',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17946','6074','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17947','6074','6','graphid','0','',NULL,NULL,NULL,'2223',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17948','6075','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17949','6075','6','graphid','0','',NULL,NULL,NULL,'2225',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17950','6076','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17951','6076','6','graphid','0','',NULL,NULL,NULL,'2228',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17952','6077','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17953','6077','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17954','6077','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17955','6077','7','graphid','0','',NULL,NULL,NULL,'2216',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17956','6078','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17957','6078','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17958','6078','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17959','6078','7','graphid','0','',NULL,NULL,NULL,'2214',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17960','6079','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17961','6079','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17962','6079','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17963','6079','7','graphid','0','',NULL,NULL,NULL,'2213',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17964','6080','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17965','6080','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17966','6080','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17967','6080','7','graphid','0','',NULL,NULL,NULL,'2215',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17968','6081','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17969','6081','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17970','6081','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17971','6081','7','graphid','0','',NULL,NULL,NULL,'2212',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17972','6082','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17973','6082','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17974','6082','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17975','6082','7','graphid','0','',NULL,NULL,NULL,'2238',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17976','6083','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17977','6083','6','graphid','0','',NULL,NULL,NULL,'2250',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17978','6084','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17979','6084','6','graphid','0','',NULL,NULL,NULL,'2244',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17980','6085','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17981','6085','6','graphid','0','',NULL,NULL,NULL,'2246',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17982','6086','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17983','6086','6','graphid','0','',NULL,NULL,NULL,'2249',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17984','6087','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17985','6087','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17986','6087','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17987','6087','7','graphid','0','',NULL,NULL,NULL,'2242',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17988','6088','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17989','6088','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17990','6088','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17991','6088','7','graphid','0','',NULL,NULL,NULL,'2240',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17992','6089','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17993','6089','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17994','6089','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17995','6089','7','graphid','0','',NULL,NULL,NULL,'2239',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17996','6090','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17997','6090','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17998','6090','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('17999','6090','7','graphid','0','',NULL,NULL,NULL,'2241',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18000','6091','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18001','6091','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18002','6091','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18003','6091','7','graphid','0','',NULL,NULL,NULL,'2238',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18004','6092','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18005','6092','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18006','6092','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18007','6092','7','graphid','0','',NULL,NULL,NULL,'952',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18008','6093','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18009','6093','6','graphid','0','',NULL,NULL,NULL,'957',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18010','6094','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18011','6094','6','graphid','0','',NULL,NULL,NULL,'959',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18012','6095','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18013','6095','6','graphid','0','',NULL,NULL,NULL,'962',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18014','6096','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18015','6096','6','graphid','0','',NULL,NULL,NULL,'963',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18016','6097','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18017','6097','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18018','6097','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18019','6097','7','graphid','0','',NULL,NULL,NULL,'953',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18020','6098','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18021','6098','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18022','6098','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18023','6098','7','graphid','0','',NULL,NULL,NULL,'954',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18024','6099','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18025','6099','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18026','6099','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18027','6099','7','graphid','0','',NULL,NULL,NULL,'955',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18028','6100','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18029','6100','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18030','6100','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18031','6100','7','graphid','0','',NULL,NULL,NULL,'956',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18032','6101','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18033','6101','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18034','6101','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18035','6101','7','graphid','0','',NULL,NULL,NULL,'952',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18036','6102','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18037','6102','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18038','6102','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18039','6102','7','graphid','0','',NULL,NULL,NULL,'2253',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18040','6103','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18041','6103','6','graphid','0','',NULL,NULL,NULL,'2260',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18042','6104','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18043','6104','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18044','6104','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18045','6104','7','graphid','0','',NULL,NULL,NULL,'2251',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18046','6105','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18047','6105','6','graphid','0','',NULL,NULL,NULL,'2257',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18048','6106','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18049','6106','6','graphid','0','',NULL,NULL,NULL,'2259',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18050','6107','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18051','6107','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18052','6107','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18053','6107','7','graphid','0','',NULL,NULL,NULL,'2255',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18054','6108','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18055','6108','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18056','6108','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18057','6108','7','graphid','0','',NULL,NULL,NULL,'2254',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18058','6109','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18059','6109','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18060','6109','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18061','6109','5','itemid','0','',NULL,NULL,'42436',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18062','6110','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18063','6110','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18064','6110','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18065','6110','7','graphid','0','',NULL,NULL,NULL,'2253',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18066','6111','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18067','6111','6','graphid','0','',NULL,NULL,NULL,'487',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18068','6112','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18069','6112','6','graphid','0','',NULL,NULL,NULL,'543',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18070','6113','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18071','6113','6','graphid','0','',NULL,NULL,NULL,'457',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18072','6114','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18073','6114','6','graphid','0','',NULL,NULL,NULL,'456',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18074','6115','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18075','6115','6','graphid','0','',NULL,NULL,NULL,'544',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18076','6116','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18077','6116','6','graphid','0','',NULL,NULL,NULL,'458',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18078','6117','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18079','6117','6','graphid','0','',NULL,NULL,NULL,'481',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18080','6118','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18081','6118','6','graphid','0','',NULL,NULL,NULL,'480',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18082','6119','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18083','6119','6','graphid','0','',NULL,NULL,NULL,'545',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18084','6120','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18085','6120','6','graphid','0','',NULL,NULL,NULL,'482',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18086','6121','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18087','6121','4','itemid','0','',NULL,NULL,'22998',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18088','6122','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18089','6122','4','itemid','0','',NULL,NULL,'22997',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18090','6123','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18091','6123','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18092','6123','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18093','6123','7','graphid','0','',NULL,NULL,NULL,'2261',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18094','6124','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18095','6124','6','graphid','0','',NULL,NULL,NULL,'2268',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18096','6125','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18097','6125','4','itemid','0','',NULL,NULL,'42472',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18098','6126','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18099','6126','6','graphid','0','',NULL,NULL,NULL,'2270',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18100','6127','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18101','6127','6','graphid','0','',NULL,NULL,NULL,'2271',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18102','6128','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18103','6128','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18104','6128','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18105','6128','7','graphid','0','',NULL,NULL,NULL,'2266',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18106','6129','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18107','6129','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18108','6129','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18109','6129','7','graphid','0','',NULL,NULL,NULL,'2264',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18110','6130','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18111','6130','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18112','6130','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18113','6130','7','graphid','0','',NULL,NULL,NULL,'2265',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18114','6131','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18115','6131','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18116','6131','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18117','6131','7','graphid','0','',NULL,NULL,NULL,'2261',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18118','6132','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18119','6132','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18120','6132','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18121','6132','7','graphid','0','',NULL,NULL,NULL,'2272',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18122','6133','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18123','6133','6','graphid','0','',NULL,NULL,NULL,'2279',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18124','6134','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18125','6134','4','itemid','0','',NULL,NULL,'42528',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18126','6135','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18127','6135','6','graphid','0','',NULL,NULL,NULL,'2281',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18128','6136','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18129','6136','6','graphid','0','',NULL,NULL,NULL,'2282',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18130','6137','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18131','6137','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18132','6137','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18133','6137','7','graphid','0','',NULL,NULL,NULL,'2277',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18134','6138','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18135','6138','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18136','6138','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18137','6138','7','graphid','0','',NULL,NULL,NULL,'2275',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18138','6139','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18139','6139','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18140','6139','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18141','6139','7','graphid','0','',NULL,NULL,NULL,'2276',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18142','6140','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18143','6140','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18144','6140','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18145','6140','7','graphid','0','',NULL,NULL,NULL,'2272',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18146','6141','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18147','6141','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18148','6141','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18149','6141','7','graphid','0','',NULL,NULL,NULL,'2283',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18150','6142','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18151','6142','6','graphid','0','',NULL,NULL,NULL,'2286',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18152','6143','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18153','6143','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18154','6143','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18155','6143','7','graphid','0','',NULL,NULL,NULL,'2285',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18156','6144','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18157','6144','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18158','6144','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18159','6144','7','graphid','0','',NULL,NULL,NULL,'2284',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18160','6145','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18161','6145','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18162','6145','4','itemids','0','',NULL,NULL,'34453',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18163','6146','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18164','6146','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18165','6146','4','itemids','0','',NULL,NULL,'34468',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18166','6147','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18167','6147','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18168','6147','4','itemids','0','',NULL,NULL,'34452',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18169','6148','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18170','6148','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18171','6148','4','itemids','0','',NULL,NULL,'34471',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18172','6149','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18173','6149','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18174','6149','4','itemids','0','',NULL,NULL,'34472',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18175','6150','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18176','6150','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18177','6150','4','itemids','0','',NULL,NULL,'34474',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18178','6151','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18179','6151','6','graphid','0','',NULL,NULL,NULL,'1583',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18180','6152','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18181','6152','6','graphid','0','',NULL,NULL,NULL,'1585',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18182','6153','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18183','6153','6','graphid','0','',NULL,NULL,NULL,'1584',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18184','6154','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18185','6154','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18186','6154','4','itemids','0','',NULL,NULL,'34501',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18187','6155','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18188','6155','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18189','6155','4','itemids','0','',NULL,NULL,'34516',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18190','6156','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18191','6156','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18192','6156','4','itemids','0','',NULL,NULL,'34500',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18193','6157','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18194','6157','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18195','6157','4','itemids','0','',NULL,NULL,'34519',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18196','6158','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18197','6158','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18198','6158','4','itemids','0','',NULL,NULL,'34520',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18199','6159','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18200','6159','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18201','6159','4','itemids','0','',NULL,NULL,'34522',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18202','6160','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18203','6160','6','graphid','0','',NULL,NULL,NULL,'1586',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18204','6161','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18205','6161','6','graphid','0','',NULL,NULL,NULL,'1588',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18206','6162','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18207','6162','6','graphid','0','',NULL,NULL,NULL,'1587',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18208','6163','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18209','6163','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18210','6163','4','itemids','0','',NULL,NULL,'34549',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18211','6164','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18212','6164','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18213','6164','4','itemids','0','',NULL,NULL,'34564',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18214','6165','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18215','6165','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18216','6165','4','itemids','0','',NULL,NULL,'34548',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18217','6166','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18218','6166','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18219','6166','4','itemids','0','',NULL,NULL,'34567',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18220','6167','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18221','6167','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18222','6167','4','itemids','0','',NULL,NULL,'34568',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18223','6168','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18224','6168','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18225','6168','4','itemids','0','',NULL,NULL,'34570',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18226','6169','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18227','6169','6','graphid','0','',NULL,NULL,NULL,'1589',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18228','6170','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18229','6170','6','graphid','0','',NULL,NULL,NULL,'1591',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18230','6171','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18231','6171','6','graphid','0','',NULL,NULL,NULL,'1590',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18232','6172','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18233','6172','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18234','6172','4','itemids','0','',NULL,NULL,'34597',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18235','6173','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18236','6173','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18237','6173','4','itemids','0','',NULL,NULL,'34612',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18238','6174','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18239','6174','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18240','6174','4','itemids','0','',NULL,NULL,'34596',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18241','6175','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18242','6175','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18243','6175','4','itemids','0','',NULL,NULL,'34615',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18244','6176','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18245','6176','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18246','6176','4','itemids','0','',NULL,NULL,'34616',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18247','6177','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18248','6177','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18249','6177','4','itemids','0','',NULL,NULL,'34618',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18250','6178','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18251','6178','6','graphid','0','',NULL,NULL,NULL,'1592',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18252','6179','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18253','6179','6','graphid','0','',NULL,NULL,NULL,'1594',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18254','6180','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18255','6180','6','graphid','0','',NULL,NULL,NULL,'1593',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18256','6181','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18257','6181','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18258','6181','4','itemids','0','',NULL,NULL,'34645',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18259','6182','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18260','6182','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18261','6182','4','itemids','0','',NULL,NULL,'34660',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18262','6183','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18263','6183','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18264','6183','4','itemids','0','',NULL,NULL,'34644',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18265','6184','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18266','6184','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18267','6184','4','itemids','0','',NULL,NULL,'34663',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18268','6185','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18269','6185','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18270','6185','4','itemids','0','',NULL,NULL,'34664',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18271','6186','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18272','6186','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18273','6186','4','itemids','0','',NULL,NULL,'34666',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18274','6187','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18275','6187','6','graphid','0','',NULL,NULL,NULL,'1595',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18276','6188','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18277','6188','6','graphid','0','',NULL,NULL,NULL,'1597',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18278','6189','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18279','6189','6','graphid','0','',NULL,NULL,NULL,'1596',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18280','6190','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18281','6190','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18282','6190','4','itemids','0','',NULL,NULL,'35018',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18283','6191','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18284','6191','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18285','6191','4','itemids','0','',NULL,NULL,'35033',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18286','6192','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18287','6192','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18288','6192','4','itemids','0','',NULL,NULL,'35017',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18289','6193','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18290','6193','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18291','6193','4','itemids','0','',NULL,NULL,'35036',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18292','6194','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18293','6194','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18294','6194','4','itemids','0','',NULL,NULL,'35037',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18295','6195','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18296','6195','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18297','6195','4','itemids','0','',NULL,NULL,'35039',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18298','6196','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18299','6196','6','graphid','0','',NULL,NULL,NULL,'1619',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18300','6197','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18301','6197','6','graphid','0','',NULL,NULL,NULL,'1621',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18302','6198','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18303','6198','6','graphid','0','',NULL,NULL,NULL,'1620',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18304','6199','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18305','6199','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18306','6199','4','itemids','0','',NULL,NULL,'34741',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18307','6200','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18308','6200','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18309','6200','4','itemids','0','',NULL,NULL,'34756',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18310','6201','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18311','6201','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18312','6201','4','itemids','0','',NULL,NULL,'34740',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18313','6202','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18314','6202','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18315','6202','4','itemids','0','',NULL,NULL,'34759',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18316','6203','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18317','6203','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18318','6203','4','itemids','0','',NULL,NULL,'34760',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18319','6204','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18320','6204','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18321','6204','4','itemids','0','',NULL,NULL,'34762',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18322','6205','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18323','6205','6','graphid','0','',NULL,NULL,NULL,'1601',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18324','6206','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18325','6206','6','graphid','0','',NULL,NULL,NULL,'1603',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18326','6207','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18327','6207','6','graphid','0','',NULL,NULL,NULL,'1602',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18328','6208','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18329','6208','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18330','6208','4','itemids','0','',NULL,NULL,'34181',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18331','6209','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18332','6209','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18333','6209','4','itemids','0','',NULL,NULL,'34196',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18334','6210','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18335','6210','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18336','6210','4','itemids','0','',NULL,NULL,'34191',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18337','6211','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18338','6211','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18339','6211','4','itemids','0','',NULL,NULL,'34202',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18340','6212','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18341','6212','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18342','6212','4','itemids','0','',NULL,NULL,'34203',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18343','6213','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18344','6213','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18345','6213','4','itemids','0','',NULL,NULL,'34205',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18346','6214','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18347','6214','6','graphid','0','',NULL,NULL,NULL,'1604',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18348','6215','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18349','6215','6','graphid','0','',NULL,NULL,NULL,'1570',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18350','6216','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18351','6216','6','graphid','0','',NULL,NULL,NULL,'1569',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18352','6217','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18353','6217','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18354','6217','4','itemids','0','',NULL,NULL,'34795',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18355','6218','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18356','6218','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18357','6218','4','itemids','0','',NULL,NULL,'34810',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18358','6219','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18359','6219','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18360','6219','4','itemids','0','',NULL,NULL,'34794',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18361','6220','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18362','6220','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18363','6220','4','itemids','0','',NULL,NULL,'34813',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18364','6221','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18365','6221','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18366','6221','4','itemids','0','',NULL,NULL,'34814',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18367','6222','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18368','6222','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18369','6222','4','itemids','0','',NULL,NULL,'34816',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18370','6223','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18371','6223','6','graphid','0','',NULL,NULL,NULL,'1605',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18372','6224','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18373','6224','6','graphid','0','',NULL,NULL,NULL,'1607',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18374','6225','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18375','6225','6','graphid','0','',NULL,NULL,NULL,'1606',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18376','6226','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18377','6226','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18378','6226','4','itemids','0','',NULL,NULL,'34843',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18379','6227','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18380','6227','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18381','6227','4','itemids','0','',NULL,NULL,'34858',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18382','6228','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18383','6228','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18384','6228','4','itemids','0','',NULL,NULL,'34842',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18385','6229','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18386','6229','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18387','6229','4','itemids','0','',NULL,NULL,'34861',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18388','6230','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18389','6230','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18390','6230','4','itemids','0','',NULL,NULL,'34862',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18391','6231','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18392','6231','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18393','6231','4','itemids','0','',NULL,NULL,'34864',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18394','6232','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18395','6232','6','graphid','0','',NULL,NULL,NULL,'1608',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18396','6233','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18397','6233','6','graphid','0','',NULL,NULL,NULL,'1610',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18398','6234','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18399','6234','6','graphid','0','',NULL,NULL,NULL,'1609',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18400','6235','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18401','6235','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18402','6235','4','itemids','0','',NULL,NULL,'34891',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18403','6236','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18404','6236','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18405','6236','4','itemids','0','',NULL,NULL,'34906',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18406','6237','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18407','6237','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18408','6237','4','itemids','0','',NULL,NULL,'34890',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18409','6238','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18410','6238','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18411','6238','4','itemids','0','',NULL,NULL,'34909',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18412','6239','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18413','6239','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18414','6239','4','itemids','0','',NULL,NULL,'34910',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18415','6240','0','show_as_html','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18416','6240','0','show_lines','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18417','6240','4','itemids','0','',NULL,NULL,'34912',NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18418','6241','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18419','6241','6','graphid','0','',NULL,NULL,NULL,'1611',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18420','6242','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18421','6242','6','graphid','0','',NULL,NULL,NULL,'1613',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18422','6243','0','source_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18423','6243','6','graphid','0','',NULL,NULL,NULL,'1612',NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18424','6244','0','source_type','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18425','6244','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18426','6244','0','rows','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `widget_field` (`widget_fieldid`,`widgetid`,`type`,`name`,`value_int`,`value_str`,`value_groupid`,`value_hostid`,`value_itemid`,`value_graphid`,`value_sysmapid`,`value_serviceid`,`value_slaid`) values ('18427','6244','7','graphid','0','',NULL,NULL,NULL,'1805',NULL,NULL,NULL);
COMMIT;